blob: a9f3e9d70988682d9e2f485637086c23d8b5d6b2 [file] [log] [blame]
Russell Kingfa0fe482006-01-13 21:30:48 +00001config ARM_GIC
Rob Herringc383e042011-09-28 21:25:31 -05002 select IRQ_DOMAIN
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 bool
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07004 select MSM_SHOW_RESUME_IRQ
Linus Torvalds1da177e2005-04-16 15:20:36 -07005
Russell Kingfa0fe482006-01-13 21:30:48 +00006config ARM_VIC
7 bool
8
Ben Dooksc07f87f2009-03-24 15:30:07 +00009config ARM_VIC_NR
10 int
Kukjin Kim6cc6b332011-02-24 02:12:00 +010011 default 4 if ARCH_S5PV210
Kukjin Kima73ddc62011-05-11 16:27:51 +090012 default 3 if ARCH_S5PC100
Ben Dooksc07f87f2009-03-24 15:30:07 +000013 default 2
Russell King0aacfe12009-06-01 18:17:53 +010014 depends on ARM_VIC
Ben Dooksc07f87f2009-03-24 15:30:07 +000015 help
16 The maximum number of VICs available in the system, for
17 power management.
18
Russell Kingc5a0adb2010-01-16 20:16:10 +000019config ICST
Russell Kingf27ecac2005-08-18 21:31:00 +010020 bool
21
Jassi Brar75070612010-05-14 15:18:54 +010022config PL330
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 bool
24
25config SA1111
26 bool
Nicolas Pitre3bca1032008-10-07 20:14:55 +010027 select DMABOUNCE if !ARCH_PXA
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
29config DMABOUNCE
30 bool
Russell King485bdde2008-10-17 14:00:43 +010031 select ZONE_DMA
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33config TIMER_ACORN
34 bool
35
36config SHARP_LOCOMO
37 bool
38
39config SHARP_PARAM
40 bool
41
Linus Torvalds1da177e2005-04-16 15:20:36 -070042config SHARP_SCOOP
43 bool
Arve Hjønnevåg73a0ce92010-09-27 17:50:00 -070044
45config FIQ_GLUE
46 bool
47 select FIQ
Iliyan Malchevc1db50b2010-06-05 17:36:24 -070048
49config FIQ_DEBUGGER
50 bool "FIQ Mode Serial Debugger"
51 select FIQ
52 select FIQ_GLUE
Iliyan Malchevc1db50b2010-06-05 17:36:24 -070053 default n
54 help
55 The FIQ serial debugger can accept commands even when the
56 kernel is unresponsive due to being stuck with interrupts
Dima Zavinb11ab5b2011-11-09 16:10:57 -080057 disabled.
Iliyan Malchevc1db50b2010-06-05 17:36:24 -070058
59
60config FIQ_DEBUGGER_NO_SLEEP
61 bool "Keep serial debugger active"
62 depends on FIQ_DEBUGGER
63 default n
64 help
65 Enables the serial debugger at boot. Passing
66 fiq_debugger.no_sleep on the kernel commandline will
67 override this config option.
68
69config FIQ_DEBUGGER_WAKEUP_IRQ_ALWAYS_ON
70 bool "Don't disable wakeup IRQ when debugger is active"
71 depends on FIQ_DEBUGGER
72 default n
73 help
74 Don't disable the wakeup irq when enabling the uart clock. This will
75 cause extra interrupts, but it makes the serial debugger usable with
76 on some MSM radio builds that ignore the uart clock request in power
77 collapse.
Colin Cross4df8d7b2010-08-16 14:51:51 -070078
79config FIQ_DEBUGGER_CONSOLE
80 bool "Console on FIQ Serial Debugger port"
81 depends on FIQ_DEBUGGER
82 default n
83 help
84 Enables a console so that printk messages are displayed on
85 the debugger serial port as the occur.
Dima Zavinc6fba162010-11-10 15:39:07 -080086
87config FIQ_DEBUGGER_CONSOLE_DEFAULT_ENABLE
88 bool "Put the FIQ debugger into console mode by default"
89 depends on FIQ_DEBUGGER_CONSOLE
90 default n
91 help
92 If enabled, this puts the fiq debugger into console mode by default.
93 Otherwise, the fiq debugger will start out in debug mode.