Tony Lindgren | 5e1c5ff | 2005-07-10 19:58:15 +0100 | [diff] [blame] | 1 | if ARCH_OMAP |
| 2 | |
| 3 | menu "TI OMAP Implementations" |
| 4 | |
| 5 | config ARCH_OMAP_OTG |
| 6 | bool |
| 7 | |
| 8 | choice |
| 9 | prompt "OMAP System Type" |
| 10 | default ARCH_OMAP1 |
| 11 | |
| 12 | config ARCH_OMAP1 |
| 13 | bool "TI OMAP1" |
Russell King | d7e8f1f | 2009-01-18 23:03:15 +0000 | [diff] [blame] | 14 | select COMMON_CLKDEV |
Tony Lindgren | 5e1c5ff | 2005-07-10 19:58:15 +0100 | [diff] [blame] | 15 | |
| 16 | config ARCH_OMAP2 |
| 17 | bool "TI OMAP2" |
Russell King | c750815 | 2008-10-26 10:55:14 +0000 | [diff] [blame] | 18 | select CPU_V6 |
Russell King | 8ad8ff6 | 2009-01-19 15:27:29 +0000 | [diff] [blame] | 19 | select COMMON_CLKDEV |
Tony Lindgren | 5e1c5ff | 2005-07-10 19:58:15 +0100 | [diff] [blame] | 20 | |
Syed Mohammed, Khasim | cc26b3b | 2008-10-09 17:51:41 +0300 | [diff] [blame] | 21 | config ARCH_OMAP3 |
| 22 | bool "TI OMAP3" |
Russell King | c750815 | 2008-10-26 10:55:14 +0000 | [diff] [blame] | 23 | select CPU_V7 |
Russell King | 44dc9d0 | 2009-01-19 15:51:11 +0000 | [diff] [blame] | 24 | select COMMON_CLKDEV |
Syed Mohammed, Khasim | cc26b3b | 2008-10-09 17:51:41 +0300 | [diff] [blame] | 25 | |
Santosh Shilimkar | 46ba0ab | 2009-05-28 14:16:05 -0700 | [diff] [blame] | 26 | config ARCH_OMAP4 |
| 27 | bool "TI OMAP4" |
| 28 | select CPU_V7 |
| 29 | select ARM_GIC |
Rajendra Nayak | d79b126 | 2009-12-09 00:01:44 +0530 | [diff] [blame] | 30 | select COMMON_CLKDEV |
Santosh Shilimkar | 46ba0ab | 2009-05-28 14:16:05 -0700 | [diff] [blame] | 31 | |
Tony Lindgren | 5e1c5ff | 2005-07-10 19:58:15 +0100 | [diff] [blame] | 32 | endchoice |
| 33 | |
| 34 | comment "OMAP Feature Selections" |
| 35 | |
David Brownell | f604931 | 2006-12-06 17:14:03 -0800 | [diff] [blame] | 36 | config OMAP_DEBUG_DEVICES |
David Brownell | 994c84e | 2006-12-06 17:14:03 -0800 | [diff] [blame] | 37 | bool |
| 38 | help |
David Brownell | f604931 | 2006-12-06 17:14:03 -0800 | [diff] [blame] | 39 | For debug cards on TI reference boards. |
| 40 | |
| 41 | config OMAP_DEBUG_LEDS |
| 42 | bool |
| 43 | depends on OMAP_DEBUG_DEVICES |
| 44 | default y if LEDS || LEDS_OMAP_DEBUG |
David Brownell | 994c84e | 2006-12-06 17:14:03 -0800 | [diff] [blame] | 45 | |
Tony Lindgren | bb13b5f | 2005-07-10 19:58:18 +0100 | [diff] [blame] | 46 | config OMAP_RESET_CLOCKS |
| 47 | bool "Reset unused clocks during boot" |
| 48 | depends on ARCH_OMAP |
Tony Lindgren | bb13b5f | 2005-07-10 19:58:18 +0100 | [diff] [blame] | 49 | help |
| 50 | Say Y if you want to reset unused clocks during boot. |
| 51 | This option saves power, but assumes all drivers are |
| 52 | using the clock framework. Broken drivers that do not |
| 53 | yet use clock framework may not work with this option. |
| 54 | If you are booting from another operating system, you |
| 55 | probably do not want this option enabled until your |
| 56 | device drivers work properly. |
| 57 | |
Tony Lindgren | 5e1c5ff | 2005-07-10 19:58:15 +0100 | [diff] [blame] | 58 | config OMAP_MUX |
| 59 | bool "OMAP multiplexing support" |
Paul Walmsley | 33903eb | 2009-12-08 16:33:10 -0700 | [diff] [blame] | 60 | depends on ARCH_OMAP |
Tony Lindgren | 5e1c5ff | 2005-07-10 19:58:15 +0100 | [diff] [blame] | 61 | default y |
Paul Walmsley | 33903eb | 2009-12-08 16:33:10 -0700 | [diff] [blame] | 62 | help |
| 63 | Pin multiplexing support for OMAP boards. If your bootloader |
| 64 | sets the multiplexing correctly, say N. Otherwise, or if unsure, |
| 65 | say Y. |
Tony Lindgren | 5e1c5ff | 2005-07-10 19:58:15 +0100 | [diff] [blame] | 66 | |
| 67 | config OMAP_MUX_DEBUG |
| 68 | bool "Multiplexing debug output" |
Paul Walmsley | 33903eb | 2009-12-08 16:33:10 -0700 | [diff] [blame] | 69 | depends on OMAP_MUX |
| 70 | help |
| 71 | Makes the multiplexing functions print out a lot of debug info. |
| 72 | This is useful if you want to find out the correct values of the |
| 73 | multiplexing registers. |
Tony Lindgren | 5e1c5ff | 2005-07-10 19:58:15 +0100 | [diff] [blame] | 74 | |
| 75 | config OMAP_MUX_WARNINGS |
| 76 | bool "Warn about pins the bootloader didn't set up" |
Paul Walmsley | 33903eb | 2009-12-08 16:33:10 -0700 | [diff] [blame] | 77 | depends on OMAP_MUX |
| 78 | default y |
| 79 | help |
Tony Lindgren | 5e1c5ff | 2005-07-10 19:58:15 +0100 | [diff] [blame] | 80 | Choose Y here to warn whenever driver initialization logic needs |
Paul Walmsley | 33903eb | 2009-12-08 16:33:10 -0700 | [diff] [blame] | 81 | to change the pin multiplexing setup. When there are no warnings |
Tony Lindgren | 5e1c5ff | 2005-07-10 19:58:15 +0100 | [diff] [blame] | 82 | printed, it's safe to deselect OMAP_MUX for your product. |
| 83 | |
Tony Lindgren | c40fae9 | 2006-12-07 13:58:10 -0800 | [diff] [blame] | 84 | config OMAP_MCBSP |
| 85 | bool "McBSP support" |
| 86 | depends on ARCH_OMAP |
| 87 | default y |
| 88 | help |
| 89 | Say Y here if you want support for the OMAP Multichannel |
| 90 | Buffered Serial Port. |
| 91 | |
Hiroshi DOYU | 6c20a68 | 2009-03-23 18:07:23 -0700 | [diff] [blame] | 92 | config OMAP_MBOX_FWK |
| 93 | tristate "Mailbox framework support" |
| 94 | depends on ARCH_OMAP |
Hiroshi DOYU | 6c20a68 | 2009-03-23 18:07:23 -0700 | [diff] [blame] | 95 | help |
| 96 | Say Y here if you want to use OMAP Mailbox framework support for |
| 97 | DSP, IVA1.0 and IVA2 in OMAP1/2/3. |
| 98 | |
Hiroshi DOYU | e769421 | 2009-01-28 21:32:08 +0200 | [diff] [blame] | 99 | config OMAP_IOMMU |
| 100 | tristate |
| 101 | |
Hiroshi DOYU | 14e0e67 | 2009-08-28 10:54:41 -0700 | [diff] [blame] | 102 | config OMAP_IOMMU_DEBUG |
| 103 | depends on OMAP_IOMMU |
| 104 | tristate |
| 105 | |
Tony Lindgren | 5e1c5ff | 2005-07-10 19:58:15 +0100 | [diff] [blame] | 106 | choice |
Paul Walmsley | 33903eb | 2009-12-08 16:33:10 -0700 | [diff] [blame] | 107 | prompt "System timer" |
Tony Lindgren | 5e1c5ff | 2005-07-10 19:58:15 +0100 | [diff] [blame] | 108 | default OMAP_MPU_TIMER |
| 109 | |
| 110 | config OMAP_MPU_TIMER |
| 111 | bool "Use mpu timer" |
| 112 | help |
| 113 | Select this option if you want to use the OMAP mpu timer. This |
| 114 | timer provides more intra-tick resolution than the 32KHz timer, |
| 115 | but consumes more power. |
| 116 | |
| 117 | config OMAP_32K_TIMER |
| 118 | bool "Use 32KHz timer" |
Santosh Shilimkar | 46ba0ab | 2009-05-28 14:16:05 -0700 | [diff] [blame] | 119 | depends on ARCH_OMAP16XX || ARCH_OMAP24XX || ARCH_OMAP34XX || ARCH_OMAP4 |
Tony Lindgren | 5e1c5ff | 2005-07-10 19:58:15 +0100 | [diff] [blame] | 120 | help |
| 121 | Select this option if you want to enable the OMAP 32KHz timer. |
| 122 | This timer saves power compared to the OMAP_MPU_TIMER, and has |
| 123 | support for no tick during idle. The 32KHz timer provides less |
| 124 | intra-tick resolution than OMAP_MPU_TIMER. The 32KHz timer is |
Santosh Shilimkar | 46ba0ab | 2009-05-28 14:16:05 -0700 | [diff] [blame] | 125 | currently only available for OMAP16XX, 24XX, 34XX and OMAP4. |
Tony Lindgren | 5e1c5ff | 2005-07-10 19:58:15 +0100 | [diff] [blame] | 126 | |
| 127 | endchoice |
| 128 | |
| 129 | config OMAP_32K_TIMER_HZ |
Paul Walmsley | 33903eb | 2009-12-08 16:33:10 -0700 | [diff] [blame] | 130 | int "Kernel internal timer frequency for 32KHz timer" |
| 131 | range 32 1024 |
| 132 | depends on OMAP_32K_TIMER |
| 133 | default "128" |
| 134 | help |
Tony Lindgren | 5e1c5ff | 2005-07-10 19:58:15 +0100 | [diff] [blame] | 135 | Kernel internal timer frequency should be a divisor of 32768, |
| 136 | such as 64 or 128. |
| 137 | |
Tony Lindgren | 92105bb | 2005-09-07 17:20:26 +0100 | [diff] [blame] | 138 | config OMAP_DM_TIMER |
| 139 | bool "Use dual-mode timer" |
Santosh Shilimkar | 46ba0ab | 2009-05-28 14:16:05 -0700 | [diff] [blame] | 140 | depends on ARCH_OMAP16XX || ARCH_OMAP24XX || ARCH_OMAP34XX || ARCH_OMAP4 |
Tony Lindgren | 92105bb | 2005-09-07 17:20:26 +0100 | [diff] [blame] | 141 | help |
| 142 | Select this option if you want to use OMAP Dual-Mode timers. |
| 143 | |
Tony Lindgren | 92105bb | 2005-09-07 17:20:26 +0100 | [diff] [blame] | 144 | config OMAP_SERIAL_WAKE |
| 145 | bool "Enable wake-up events for serial ports" |
Kevin Hilman | 8bd2294 | 2009-05-28 10:56:16 -0700 | [diff] [blame] | 146 | depends on ARCH_OMAP1 && OMAP_MUX |
Tony Lindgren | 92105bb | 2005-09-07 17:20:26 +0100 | [diff] [blame] | 147 | default y |
| 148 | help |
| 149 | Select this option if you want to have your system wake up |
| 150 | to data on the serial RX line. This allows you to wake the |
| 151 | system from serial console. |
| 152 | |
Paul Walmsley | c0407a9 | 2009-09-03 20:14:01 +0300 | [diff] [blame] | 153 | choice |
| 154 | prompt "OMAP PM layer selection" |
| 155 | depends on ARCH_OMAP |
| 156 | default OMAP_PM_NOOP |
| 157 | |
| 158 | config OMAP_PM_NONE |
| 159 | bool "No PM layer" |
| 160 | |
| 161 | config OMAP_PM_NOOP |
| 162 | bool "No-op/debug PM layer" |
| 163 | |
| 164 | endchoice |
| 165 | |
Tony Lindgren | 5e1c5ff | 2005-07-10 19:58:15 +0100 | [diff] [blame] | 166 | endmenu |
| 167 | |
| 168 | endif |