Kconfig 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. config IRQCHIP
  2. def_bool y
  3. depends on OF_IRQ
  4. config ARM_GIC
  5. bool
  6. select IRQ_DOMAIN
  7. select MULTI_IRQ_HANDLER
  8. config GIC_NON_BANKED
  9. bool
  10. config ARM_NVIC
  11. bool
  12. select IRQ_DOMAIN
  13. select GENERIC_IRQ_CHIP
  14. config ARM_VIC
  15. bool
  16. select IRQ_DOMAIN
  17. select MULTI_IRQ_HANDLER
  18. config ARM_VIC_NR
  19. int
  20. default 4 if ARCH_S5PV210
  21. default 3 if ARCH_S5PC100
  22. default 2
  23. depends on ARM_VIC
  24. help
  25. The maximum number of VICs available in the system, for
  26. power management.
  27. config BRCMSTB_L2_IRQ
  28. bool
  29. depends on ARM
  30. select GENERIC_IRQ_CHIP
  31. select IRQ_DOMAIN
  32. config DW_APB_ICTL
  33. bool
  34. select IRQ_DOMAIN
  35. config IMGPDC_IRQ
  36. bool
  37. select GENERIC_IRQ_CHIP
  38. select IRQ_DOMAIN
  39. config CLPS711X_IRQCHIP
  40. bool
  41. depends on ARCH_CLPS711X
  42. select IRQ_DOMAIN
  43. select MULTI_IRQ_HANDLER
  44. select SPARSE_IRQ
  45. default y
  46. config ORION_IRQCHIP
  47. bool
  48. select IRQ_DOMAIN
  49. select MULTI_IRQ_HANDLER
  50. config RENESAS_INTC_IRQPIN
  51. bool
  52. select IRQ_DOMAIN
  53. config RENESAS_IRQC
  54. bool
  55. select IRQ_DOMAIN
  56. config TB10X_IRQC
  57. bool
  58. select IRQ_DOMAIN
  59. select GENERIC_IRQ_CHIP
  60. config VERSATILE_FPGA_IRQ
  61. bool
  62. select IRQ_DOMAIN
  63. config VERSATILE_FPGA_IRQ_NR
  64. int
  65. default 4
  66. depends on VERSATILE_FPGA_IRQ
  67. config XTENSA_MX
  68. bool
  69. select IRQ_DOMAIN
  70. config IRQ_CROSSBAR
  71. bool
  72. help
  73. Support for a CROSSBAR ip that preceeds the main interrupt controller.
  74. The primary irqchip invokes the crossbar's callback which inturn allocates
  75. a free irq and configures the IP. Thus the peripheral interrupts are
  76. routed to one of the free irqchip interrupt lines.