blob: 638256600ffe60f28dc05506861f9552d29a61f3 [file] [log] [blame]
Russell Kingfa0fe482006-01-13 21:30:48 +00001config ARM_GIC
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 bool
3
Russell Kingfa0fe482006-01-13 21:30:48 +00004config ARM_VIC
5 bool
6
Ben Dooksc07f87f2009-03-24 15:30:07 +00007config ARM_VIC_NR
8 int
Kukjin Kim6cc6b332011-02-24 02:12:00 +01009 default 4 if ARCH_S5PV210
Kukjin Kima73ddc62011-05-11 16:27:51 +090010 default 3 if ARCH_S5PC100
Ben Dooksc07f87f2009-03-24 15:30:07 +000011 default 2
Russell King0aacfe12009-06-01 18:17:53 +010012 depends on ARM_VIC
Ben Dooksc07f87f2009-03-24 15:30:07 +000013 help
14 The maximum number of VICs available in the system, for
15 power management.
16
Russell Kingc5a0adb2010-01-16 20:16:10 +000017config ICST
Russell Kingf27ecac2005-08-18 21:31:00 +010018 bool
19
Jassi Brar75070612010-05-14 15:18:54 +010020config PL330
Linus Torvalds1da177e2005-04-16 15:20:36 -070021 bool
22
23config SA1111
24 bool
Nicolas Pitre3bca1032008-10-07 20:14:55 +010025 select DMABOUNCE if !ARCH_PXA
Linus Torvalds1da177e2005-04-16 15:20:36 -070026
27config DMABOUNCE
28 bool
Russell King485bdde2008-10-17 14:00:43 +010029 select ZONE_DMA
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31config TIMER_ACORN
32 bool
33
34config SHARP_LOCOMO
35 bool
36
37config SHARP_PARAM
38 bool
39
Linus Torvalds1da177e2005-04-16 15:20:36 -070040config SHARP_SCOOP
41 bool
Arve Hjønnevåg73a0ce92010-09-27 17:50:00 -070042
43config FIQ_GLUE
44 bool
45 select FIQ
Iliyan Malchevc1db50b2010-06-05 17:36:24 -070046
47config FIQ_DEBUGGER
48 bool "FIQ Mode Serial Debugger"
49 select FIQ
50 select FIQ_GLUE
Iliyan Malchevc1db50b2010-06-05 17:36:24 -070051 default n
52 help
53 The FIQ serial debugger can accept commands even when the
54 kernel is unresponsive due to being stuck with interrupts
Dima Zavinb11ab5b2011-11-09 16:10:57 -080055 disabled.
Iliyan Malchevc1db50b2010-06-05 17:36:24 -070056
57
58config FIQ_DEBUGGER_NO_SLEEP
59 bool "Keep serial debugger active"
60 depends on FIQ_DEBUGGER
61 default n
62 help
63 Enables the serial debugger at boot. Passing
64 fiq_debugger.no_sleep on the kernel commandline will
65 override this config option.
66
67config FIQ_DEBUGGER_WAKEUP_IRQ_ALWAYS_ON
68 bool "Don't disable wakeup IRQ when debugger is active"
69 depends on FIQ_DEBUGGER
70 default n
71 help
72 Don't disable the wakeup irq when enabling the uart clock. This will
73 cause extra interrupts, but it makes the serial debugger usable with
74 on some MSM radio builds that ignore the uart clock request in power
75 collapse.
Colin Cross4df8d7b2010-08-16 14:51:51 -070076
77config FIQ_DEBUGGER_CONSOLE
78 bool "Console on FIQ Serial Debugger port"
79 depends on FIQ_DEBUGGER
80 default n
81 help
82 Enables a console so that printk messages are displayed on
83 the debugger serial port as the occur.
Dima Zavinc6fba162010-11-10 15:39:07 -080084
85config FIQ_DEBUGGER_CONSOLE_DEFAULT_ENABLE
86 bool "Put the FIQ debugger into console mode by default"
87 depends on FIQ_DEBUGGER_CONSOLE
88 default n
89 help
90 If enabled, this puts the fiq debugger into console mode by default.
91 Otherwise, the fiq debugger will start out in debug mode.