Kconfig 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. comment "Interrupt controller options"
  2. config INTC_USERIMASK
  3. bool "Userspace interrupt masking support"
  4. depends on ARCH_SHMOBILE || (SUPERH && CPU_SH4A)
  5. help
  6. This enables support for hardware-assisted userspace hardirq
  7. masking.
  8. SH-4A and newer interrupt blocks all support a special shadowed
  9. page with all non-masking registers obscured when mapped in to
  10. userspace. This is primarily for use by userspace device
  11. drivers that are using special priority levels.
  12. If in doubt, say N.
  13. config INTC_BALANCING
  14. bool "Hardware IRQ balancing support"
  15. depends on SMP && SUPERH && CPU_SHX3
  16. help
  17. This enables support for IRQ auto-distribution mode on SH-X3
  18. SMP parts. All of the balancing and CPU wakeup decisions are
  19. taken care of automatically by hardware for distributed
  20. vectors.
  21. If in doubt, say N.
  22. config INTC_MAPPING_DEBUG
  23. bool "Expose IRQ to per-controller id mapping via debugfs"
  24. depends on DEBUG_FS
  25. help
  26. This will create a debugfs entry for showing the relationship
  27. between system IRQs and the per-controller id tables.
  28. If in doubt, say N.