2019-05-19 12:07:45 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
2010-09-27 12:45:59 +00:00
|
|
|
menu "IRQ subsystem"
|
|
|
|
# Options selectable by the architecture code
|
2011-03-08 18:52:55 +00:00
|
|
|
|
|
|
|
# Make sparse irq Kconfig switch below available
|
2012-01-26 02:02:40 +00:00
|
|
|
config MAY_HAVE_SPARSE_IRQ
|
2011-02-17 13:39:05 +00:00
|
|
|
bool
|
2010-09-27 12:45:59 +00:00
|
|
|
|
2014-05-07 15:44:22 +00:00
|
|
|
# Legacy support, required for itanic
|
|
|
|
config GENERIC_IRQ_LEGACY
|
|
|
|
bool
|
|
|
|
|
2011-03-08 18:52:55 +00:00
|
|
|
# Enable the generic irq autoprobe mechanism
|
2010-09-27 12:45:59 +00:00
|
|
|
config GENERIC_IRQ_PROBE
|
2011-02-17 13:39:05 +00:00
|
|
|
bool
|
2010-09-27 12:45:59 +00:00
|
|
|
|
2011-03-08 18:52:55 +00:00
|
|
|
# Use the generic /proc/interrupts implementation
|
2010-12-16 16:21:47 +00:00
|
|
|
config GENERIC_IRQ_SHOW
|
2011-02-17 13:39:05 +00:00
|
|
|
bool
|
2010-12-16 16:21:47 +00:00
|
|
|
|
2011-03-25 15:48:50 +00:00
|
|
|
# Print level/edge extra information
|
|
|
|
config GENERIC_IRQ_SHOW_LEVEL
|
|
|
|
bool
|
|
|
|
|
2017-06-19 23:37:38 +00:00
|
|
|
# Supports effective affinity mask
|
|
|
|
config GENERIC_IRQ_EFFECTIVE_AFF_MASK
|
2022-07-01 20:00:51 +00:00
|
|
|
depends on SMP
|
2017-06-19 23:37:38 +00:00
|
|
|
bool
|
|
|
|
|
2011-03-08 18:52:55 +00:00
|
|
|
# Support for delayed migration from interrupt context
|
2010-09-27 12:45:59 +00:00
|
|
|
config GENERIC_PENDING_IRQ
|
2011-02-17 13:39:05 +00:00
|
|
|
bool
|
2010-09-27 12:45:59 +00:00
|
|
|
|
2015-09-24 09:32:13 +00:00
|
|
|
# Support for generic irq migrating off cpu before the cpu is offline.
|
|
|
|
config GENERIC_IRQ_MIGRATION
|
|
|
|
bool
|
|
|
|
|
2011-03-08 18:52:55 +00:00
|
|
|
# Alpha specific irq affinity mechanism
|
2010-09-27 12:45:59 +00:00
|
|
|
config AUTO_IRQ_AFFINITY
|
2011-02-17 13:39:05 +00:00
|
|
|
bool
|
2010-09-27 12:45:59 +00:00
|
|
|
|
2020-03-06 13:03:47 +00:00
|
|
|
# Interrupt injection mechanism
|
|
|
|
config GENERIC_IRQ_INJECTION
|
|
|
|
bool
|
|
|
|
|
2011-03-08 18:52:55 +00:00
|
|
|
# Tasklet based software resend for pending interrupts on enable_irq()
|
2010-09-27 12:45:59 +00:00
|
|
|
config HARDIRQS_SW_RESEND
|
2011-02-17 13:39:05 +00:00
|
|
|
bool
|
2010-09-27 12:45:59 +00:00
|
|
|
|
2011-03-28 14:13:24 +00:00
|
|
|
# Edge style eoi based handler (cell)
|
|
|
|
config IRQ_EDGE_EOI_HANDLER
|
|
|
|
bool
|
|
|
|
|
2011-05-02 16:16:22 +00:00
|
|
|
# Generic configurable interrupt chip implementation
|
|
|
|
config GENERIC_IRQ_CHIP
|
|
|
|
bool
|
2014-01-31 00:50:10 +00:00
|
|
|
select IRQ_DOMAIN
|
2011-05-02 16:16:22 +00:00
|
|
|
|
2011-07-26 09:19:06 +00:00
|
|
|
# Generic irq_domain hw <--> linux irq number translation
|
|
|
|
config IRQ_DOMAIN
|
|
|
|
bool
|
|
|
|
|
2017-08-14 14:53:16 +00:00
|
|
|
# Support for simulated interrupts
|
|
|
|
config IRQ_SIM
|
|
|
|
bool
|
|
|
|
select IRQ_WORK
|
2020-05-14 08:39:01 +00:00
|
|
|
select IRQ_DOMAIN
|
2017-08-14 14:53:16 +00:00
|
|
|
|
2014-11-06 14:20:14 +00:00
|
|
|
# Support for hierarchical irq domains
|
|
|
|
config IRQ_DOMAIN_HIERARCHY
|
|
|
|
bool
|
|
|
|
select IRQ_DOMAIN
|
|
|
|
|
2021-04-04 12:06:39 +00:00
|
|
|
# Support for obsolete non-mapping irq domains
|
|
|
|
config IRQ_DOMAIN_NOMAP
|
|
|
|
bool
|
|
|
|
select IRQ_DOMAIN
|
|
|
|
|
2017-08-18 00:53:31 +00:00
|
|
|
# Support for hierarchical fasteoi+edge and fasteoi+level handlers
|
|
|
|
config IRQ_FASTEOI_HIERARCHY_HANDLERS
|
|
|
|
bool
|
|
|
|
|
2015-12-08 13:20:14 +00:00
|
|
|
# Generic IRQ IPI support
|
|
|
|
config GENERIC_IRQ_IPI
|
|
|
|
bool
|
2022-07-01 20:00:50 +00:00
|
|
|
depends on SMP
|
2020-10-15 20:41:44 +00:00
|
|
|
select IRQ_DOMAIN_HIERARCHY
|
2015-12-08 13:20:14 +00:00
|
|
|
|
2023-01-03 14:12:15 +00:00
|
|
|
# Generic IRQ IPI Mux support
|
|
|
|
config GENERIC_IRQ_IPI_MUX
|
|
|
|
bool
|
|
|
|
depends on SMP
|
|
|
|
|
2014-11-12 10:39:03 +00:00
|
|
|
# Generic MSI hierarchical interrupt domain support
|
2022-11-11 13:54:40 +00:00
|
|
|
config GENERIC_MSI_IRQ
|
2014-11-12 10:39:03 +00:00
|
|
|
bool
|
|
|
|
select IRQ_DOMAIN_HIERARCHY
|
|
|
|
|
2019-05-01 13:58:18 +00:00
|
|
|
config IRQ_MSI_IOMMU
|
|
|
|
bool
|
|
|
|
|
2017-06-23 14:11:07 +00:00
|
|
|
config IRQ_TIMINGS
|
|
|
|
bool
|
|
|
|
|
2017-09-13 21:29:14 +00:00
|
|
|
config GENERIC_IRQ_MATRIX_ALLOCATOR
|
|
|
|
bool
|
|
|
|
|
2017-10-17 07:54:57 +00:00
|
|
|
config GENERIC_IRQ_RESERVATION_MODE
|
|
|
|
bool
|
|
|
|
|
2011-03-08 18:52:55 +00:00
|
|
|
# Support forced irq threading
|
2011-02-23 23:52:23 +00:00
|
|
|
config IRQ_FORCED_THREADING
|
|
|
|
bool
|
|
|
|
|
2010-09-27 12:45:59 +00:00
|
|
|
config SPARSE_IRQ
|
2012-01-26 02:02:40 +00:00
|
|
|
bool "Support sparse irq numbering" if MAY_HAVE_SPARSE_IRQ
|
2020-06-13 16:50:22 +00:00
|
|
|
help
|
2010-09-27 12:45:59 +00:00
|
|
|
|
|
|
|
Sparse irq numbering is useful for distro kernels that want
|
|
|
|
to define a high CONFIG_NR_CPUS value but still want to have
|
|
|
|
low kernel memory footprint on smaller machines.
|
|
|
|
|
|
|
|
( Sparse irqs can also be beneficial on NUMA boxes, as they spread
|
|
|
|
out the interrupt descriptors in a more NUMA-friendly way. )
|
|
|
|
|
|
|
|
If you don't know what to do here, say N.
|
|
|
|
|
2017-06-19 23:37:17 +00:00
|
|
|
config GENERIC_IRQ_DEBUGFS
|
|
|
|
bool "Expose irq internals in debugfs"
|
|
|
|
depends on DEBUG_FS
|
2020-03-06 13:03:47 +00:00
|
|
|
select GENERIC_IRQ_INJECTION
|
2017-06-19 23:37:17 +00:00
|
|
|
default n
|
2020-06-13 16:50:22 +00:00
|
|
|
help
|
2017-06-19 23:37:17 +00:00
|
|
|
|
|
|
|
Exposes internal state information through debugfs. Mostly for
|
|
|
|
developers and debugging of hard to diagnose interrupt problems.
|
|
|
|
|
|
|
|
If you don't know what to do here, say N.
|
|
|
|
|
2010-09-27 12:45:59 +00:00
|
|
|
endmenu
|
2018-03-07 23:57:27 +00:00
|
|
|
|
|
|
|
config GENERIC_IRQ_MULTI_HANDLER
|
|
|
|
bool
|
|
|
|
help
|
|
|
|
Allow to specify the low level IRQ handler at run time.
|
2021-10-21 17:04:14 +00:00
|
|
|
|
|
|
|
# Cavium Octeon is the last system to use this deprecated option
|
|
|
|
# Do not even think of enabling this on any new platform
|
|
|
|
config DEPRECATED_IRQ_CPU_ONOFFLINE
|
|
|
|
bool
|
|
|
|
depends on CAVIUM_OCTEON_SOC
|
|
|
|
default CAVIUM_OCTEON_SOC
|