Russell King | fa0fe48 | 2006-01-13 21:30:48 +0000 | [diff] [blame] | 1 | config ARM_GIC |
Rob Herring | 4294f8b | 2011-09-28 21:25:31 -0500 | [diff] [blame] | 2 | select IRQ_DOMAIN |
Marc Zyngier | 08d33b2 | 2011-09-06 13:27:10 +0100 | [diff] [blame] | 3 | select MULTI_IRQ_HANDLER |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 4 | bool |
| 5 | |
Marc Zyngier | db0d4db | 2011-11-12 16:09:49 +0000 | [diff] [blame] | 6 | config GIC_NON_BANKED |
| 7 | bool |
| 8 | |
Russell King | fa0fe48 | 2006-01-13 21:30:48 +0000 | [diff] [blame] | 9 | config ARM_VIC |
Jamie Iles | f9b28cc | 2011-09-27 11:00:46 +0100 | [diff] [blame] | 10 | select IRQ_DOMAIN |
Jamie Iles | 11f1c5d | 2011-11-03 17:32:39 +0000 | [diff] [blame] | 11 | select MULTI_IRQ_HANDLER |
Russell King | fa0fe48 | 2006-01-13 21:30:48 +0000 | [diff] [blame] | 12 | bool |
| 13 | |
Ben Dooks | c07f87f | 2009-03-24 15:30:07 +0000 | [diff] [blame] | 14 | config ARM_VIC_NR |
| 15 | int |
Kukjin Kim | 6cc6b33 | 2011-02-24 02:12:00 +0100 | [diff] [blame] | 16 | default 4 if ARCH_S5PV210 |
Kukjin Kim | a73ddc6 | 2011-05-11 16:27:51 +0900 | [diff] [blame] | 17 | default 3 if ARCH_S5PC100 |
Ben Dooks | c07f87f | 2009-03-24 15:30:07 +0000 | [diff] [blame] | 18 | default 2 |
Russell King | 0aacfe1 | 2009-06-01 18:17:53 +0100 | [diff] [blame] | 19 | depends on ARM_VIC |
Ben Dooks | c07f87f | 2009-03-24 15:30:07 +0000 | [diff] [blame] | 20 | help |
| 21 | The maximum number of VICs available in the system, for |
| 22 | power management. |
| 23 | |
Russell King | c5a0adb | 2010-01-16 20:16:10 +0000 | [diff] [blame] | 24 | config ICST |
Russell King | f27ecac | 2005-08-18 21:31:00 +0100 | [diff] [blame] | 25 | bool |
| 26 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | config SA1111 |
| 28 | bool |
Nicolas Pitre | 3bca103 | 2008-10-07 20:14:55 +0100 | [diff] [blame] | 29 | select DMABOUNCE if !ARCH_PXA |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | |
| 31 | config DMABOUNCE |
| 32 | bool |
Russell King | 485bdde | 2008-10-17 14:00:43 +0100 | [diff] [blame] | 33 | select ZONE_DMA |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | config SHARP_LOCOMO |
| 36 | bool |
| 37 | |
| 38 | config SHARP_PARAM |
| 39 | bool |
| 40 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | config SHARP_SCOOP |
| 42 | bool |
Arve Hjønnevåg | 997e655 | 2010-09-27 17:50:00 -0700 | [diff] [blame] | 43 | |
| 44 | config FIQ_GLUE |
| 45 | bool |
| 46 | select FIQ |
Iliyan Malchev | 09688d1 | 2010-06-05 17:36:24 -0700 | [diff] [blame^] | 47 | |
| 48 | config 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 | |
| 59 | config 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 | |
| 68 | config 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 | |
| 78 | config 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 | |
| 86 | config 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. |