Kconfig 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. config ARM_GIC
  2. select IRQ_DOMAIN
  3. select MULTI_IRQ_HANDLER
  4. select MSM_SHOW_RESUME_IRQ
  5. bool
  6. config GIC_NON_BANKED
  7. bool
  8. config GIC_SECURE
  9. bool
  10. depends on ARM_GIC
  11. config ARM_VIC
  12. select IRQ_DOMAIN
  13. select MULTI_IRQ_HANDLER
  14. bool
  15. config ARM_VIC_NR
  16. int
  17. default 4 if ARCH_S5PV210
  18. default 3 if ARCH_S5PC100
  19. default 2
  20. depends on ARM_VIC
  21. help
  22. The maximum number of VICs available in the system, for
  23. power management.
  24. config ICST
  25. bool
  26. config SA1111
  27. bool
  28. select DMABOUNCE if !ARCH_PXA
  29. config DMABOUNCE
  30. bool
  31. select ZONE_DMA
  32. config SHARP_LOCOMO
  33. bool
  34. config SHARP_PARAM
  35. bool
  36. config SHARP_SCOOP
  37. bool
  38. config FIQ_GLUE
  39. bool
  40. select FIQ
  41. config FIQ_DEBUGGER
  42. bool "FIQ Mode Serial Debugger"
  43. select FIQ
  44. select FIQ_GLUE
  45. default n
  46. help
  47. The FIQ serial debugger can accept commands even when the
  48. kernel is unresponsive due to being stuck with interrupts
  49. disabled.
  50. config FIQ_DEBUGGER_NO_SLEEP
  51. bool "Keep serial debugger active"
  52. depends on FIQ_DEBUGGER
  53. default n
  54. help
  55. Enables the serial debugger at boot. Passing
  56. fiq_debugger.no_sleep on the kernel commandline will
  57. override this config option.
  58. config FIQ_DEBUGGER_WAKEUP_IRQ_ALWAYS_ON
  59. bool "Don't disable wakeup IRQ when debugger is active"
  60. depends on FIQ_DEBUGGER
  61. default n
  62. help
  63. Don't disable the wakeup irq when enabling the uart clock. This will
  64. cause extra interrupts, but it makes the serial debugger usable with
  65. on some MSM radio builds that ignore the uart clock request in power
  66. collapse.
  67. config FIQ_DEBUGGER_CONSOLE
  68. bool "Console on FIQ Serial Debugger port"
  69. depends on FIQ_DEBUGGER
  70. default n
  71. help
  72. Enables a console so that printk messages are displayed on
  73. the debugger serial port as the occur.
  74. config FIQ_DEBUGGER_CONSOLE_DEFAULT_ENABLE
  75. bool "Put the FIQ debugger into console mode by default"
  76. depends on FIQ_DEBUGGER_CONSOLE
  77. default n
  78. help
  79. If enabled, this puts the fiq debugger into console mode by default.
  80. Otherwise, the fiq debugger will start out in debug mode.