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