Kconfig 1.1 KB

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