aboutsummaryrefslogtreecommitdiffstats
path: root/package/kernel/button-hotplug
Commit message (Expand)AuthorAgeFilesLines
* kernel: replace SUBDIRS with M in package recipesTomasz Maciej Nowak2020-02-221-1/+1
* button-hotplug: add KEY_POWER2 handlingAlan Swanson2019-05-301-0/+1
* build: use KERNEL_MAKE_FLAGS for kernel file compilationsKarl Vogel2017-10-291-2/+1
* treewide: add license tagsFlorian Eckert2017-06-241-0/+1
* kernel/button-hotplug: drop Build/Prepare rule in favor of default oneAlexandru Ardelean2016-10-151-5/+0
* treewide: replace nbd@openwrt.org with nbd@nbd.nameFelix Fietkau2016-06-071-1/+1
* button-hotplug: remove #ifdef CONFIG_HOTPLUG, it is gone in newer kernelsFelix Fietkau2014-05-231-7/+0
* button-hotplug: describe module a bit better & mention gpio-button-hotplugHauke Mehrtens2014-05-141-1/+2
* gpio-button-hotplug: add wwan buttonHauke Mehrtens2014-01-141-2/+1
* button-hotplug: sync list of supported keys with gpio-button-hotplugJohn Crispin2013-11-071-0/+1
* button-hotplug: add missing dependency on kmod-input-coreFelix Fietkau2013-07-191-0/+1
* button-hotplug: Add KEY_POWER handlingJohn Crispin2013-07-041-0/+1
* packages: clean up the package folderJohn Crispin2013-06-214-0/+405
/* * nextpnr -- Next Generation Place and Route * * Copyright (C) 2022 gatecat <gatecat@ds0.me> * * Permission to use, copy, modify, and/or distribute this software for any * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. * */ #ifndef FAB_DEFS_H #define FAB_DEFS_H #include <cstdint> #include "nextpnr_namespaces.h" NEXTPNR_NAMESPACE_BEGIN /* This defines some compile-time maximums for the fabulous arch */ static constexpr unsigned MAX_LUTK = 6; // max number of LUT inputs typedef uint64_t route_mask_t; // the width of this type defines the max number of FFs in a CLB (for defining control // set route patterns) NEXTPNR_NAMESPACE_END #endif