Kconfig 1.2 KB

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