blob: 2e3eec6608647cafa6d1a435cc3681931b35f970 [file] [log] [blame]
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +01001if ARCH_OMAP
2
3menu "TI OMAP Implementations"
4
5config ARCH_OMAP_OTG
6 bool
7
8choice
9 prompt "OMAP System Type"
10 default ARCH_OMAP1
11
12config ARCH_OMAP1
13 bool "TI OMAP1"
Russell Kingd7e8f1f2009-01-18 23:03:15 +000014 select COMMON_CLKDEV
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010015
16config ARCH_OMAP2
17 bool "TI OMAP2"
Russell Kingc7508152008-10-26 10:55:14 +000018 select CPU_V6
Russell King8ad8ff62009-01-19 15:27:29 +000019 select COMMON_CLKDEV
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010020
Syed Mohammed, Khasimcc26b3b2008-10-09 17:51:41 +030021config ARCH_OMAP3
22 bool "TI OMAP3"
Russell Kingc7508152008-10-26 10:55:14 +000023 select CPU_V7
Russell King44dc9d02009-01-19 15:51:11 +000024 select COMMON_CLKDEV
Kukjin Kimd6d502f2010-02-22 00:02:59 +010025 select ARM_L1_CACHE_SHIFT_6
Syed Mohammed, Khasimcc26b3b2008-10-09 17:51:41 +030026
Santosh Shilimkar46ba0ab2009-05-28 14:16:05 -070027config ARCH_OMAP4
28 bool "TI OMAP4"
29 select CPU_V7
30 select ARM_GIC
Rajendra Nayakd79b1262009-12-09 00:01:44 +053031 select COMMON_CLKDEV
Santosh Shilimkar46ba0ab2009-05-28 14:16:05 -070032
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010033endchoice
34
35comment "OMAP Feature Selections"
36
David Brownellf6049312006-12-06 17:14:03 -080037config OMAP_DEBUG_DEVICES
David Brownell994c84e2006-12-06 17:14:03 -080038 bool
39 help
David Brownellf6049312006-12-06 17:14:03 -080040 For debug cards on TI reference boards.
41
42config OMAP_DEBUG_LEDS
43 bool
44 depends on OMAP_DEBUG_DEVICES
45 default y if LEDS || LEDS_OMAP_DEBUG
David Brownell994c84e2006-12-06 17:14:03 -080046
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +010047config OMAP_RESET_CLOCKS
48 bool "Reset unused clocks during boot"
49 depends on ARCH_OMAP
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +010050 help
51 Say Y if you want to reset unused clocks during boot.
52 This option saves power, but assumes all drivers are
53 using the clock framework. Broken drivers that do not
54 yet use clock framework may not work with this option.
55 If you are booting from another operating system, you
56 probably do not want this option enabled until your
57 device drivers work properly.
58
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010059config OMAP_MUX
60 bool "OMAP multiplexing support"
Paul Walmsley33903eb2009-12-08 16:33:10 -070061 depends on ARCH_OMAP
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010062 default y
Paul Walmsley33903eb2009-12-08 16:33:10 -070063 help
64 Pin multiplexing support for OMAP boards. If your bootloader
65 sets the multiplexing correctly, say N. Otherwise, or if unsure,
66 say Y.
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010067
68config OMAP_MUX_DEBUG
69 bool "Multiplexing debug output"
Paul Walmsley33903eb2009-12-08 16:33:10 -070070 depends on OMAP_MUX
71 help
72 Makes the multiplexing functions print out a lot of debug info.
73 This is useful if you want to find out the correct values of the
74 multiplexing registers.
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010075
76config OMAP_MUX_WARNINGS
77 bool "Warn about pins the bootloader didn't set up"
Paul Walmsley33903eb2009-12-08 16:33:10 -070078 depends on OMAP_MUX
79 default y
80 help
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010081 Choose Y here to warn whenever driver initialization logic needs
Paul Walmsley33903eb2009-12-08 16:33:10 -070082 to change the pin multiplexing setup. When there are no warnings
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010083 printed, it's safe to deselect OMAP_MUX for your product.
84
Tony Lindgrenc40fae92006-12-07 13:58:10 -080085config OMAP_MCBSP
86 bool "McBSP support"
87 depends on ARCH_OMAP
88 default y
89 help
90 Say Y here if you want support for the OMAP Multichannel
91 Buffered Serial Port.
92
Hiroshi DOYU6c20a682009-03-23 18:07:23 -070093config OMAP_MBOX_FWK
94 tristate "Mailbox framework support"
95 depends on ARCH_OMAP
Hiroshi DOYU6c20a682009-03-23 18:07:23 -070096 help
97 Say Y here if you want to use OMAP Mailbox framework support for
98 DSP, IVA1.0 and IVA2 in OMAP1/2/3.
99
Hiroshi DOYUe7694212009-01-28 21:32:08 +0200100config OMAP_IOMMU
101 tristate
102
Hiroshi DOYU14e0e672009-08-28 10:54:41 -0700103config OMAP_IOMMU_DEBUG
104 depends on OMAP_IOMMU
105 tristate
106
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100107choice
Paul Walmsley33903eb2009-12-08 16:33:10 -0700108 prompt "System timer"
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100109 default OMAP_MPU_TIMER
110
111config OMAP_MPU_TIMER
112 bool "Use mpu timer"
113 help
114 Select this option if you want to use the OMAP mpu timer. This
115 timer provides more intra-tick resolution than the 32KHz timer,
116 but consumes more power.
117
118config OMAP_32K_TIMER
119 bool "Use 32KHz timer"
Santosh Shilimkar46ba0ab2009-05-28 14:16:05 -0700120 depends on ARCH_OMAP16XX || ARCH_OMAP24XX || ARCH_OMAP34XX || ARCH_OMAP4
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100121 help
122 Select this option if you want to enable the OMAP 32KHz timer.
123 This timer saves power compared to the OMAP_MPU_TIMER, and has
124 support for no tick during idle. The 32KHz timer provides less
125 intra-tick resolution than OMAP_MPU_TIMER. The 32KHz timer is
Santosh Shilimkar46ba0ab2009-05-28 14:16:05 -0700126 currently only available for OMAP16XX, 24XX, 34XX and OMAP4.
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100127
128endchoice
129
130config OMAP_32K_TIMER_HZ
Paul Walmsley33903eb2009-12-08 16:33:10 -0700131 int "Kernel internal timer frequency for 32KHz timer"
132 range 32 1024
133 depends on OMAP_32K_TIMER
134 default "128"
135 help
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100136 Kernel internal timer frequency should be a divisor of 32768,
137 such as 64 or 128.
138
Tony Lindgren92105bb2005-09-07 17:20:26 +0100139config OMAP_DM_TIMER
140 bool "Use dual-mode timer"
Santosh Shilimkar46ba0ab2009-05-28 14:16:05 -0700141 depends on ARCH_OMAP16XX || ARCH_OMAP24XX || ARCH_OMAP34XX || ARCH_OMAP4
Tony Lindgren92105bb2005-09-07 17:20:26 +0100142 help
143 Select this option if you want to use OMAP Dual-Mode timers.
144
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100145choice
146 prompt "Low-level debug console UART"
147 depends on ARCH_OMAP
vikram panditad9f50072009-11-22 10:10:49 -0800148 default OMAP_LL_DEBUG_NONE
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100149
150config OMAP_LL_DEBUG_UART1
151 bool "UART1"
152
153config OMAP_LL_DEBUG_UART2
154 bool "UART2"
155
156config OMAP_LL_DEBUG_UART3
157 bool "UART3"
158
vikram panditad9f50072009-11-22 10:10:49 -0800159config OMAP_LL_DEBUG_NONE
160 bool "None"
161
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100162endchoice
163
Tony Lindgren92105bb2005-09-07 17:20:26 +0100164config OMAP_SERIAL_WAKE
165 bool "Enable wake-up events for serial ports"
Kevin Hilman8bd22942009-05-28 10:56:16 -0700166 depends on ARCH_OMAP1 && OMAP_MUX
Tony Lindgren92105bb2005-09-07 17:20:26 +0100167 default y
168 help
169 Select this option if you want to have your system wake up
170 to data on the serial RX line. This allows you to wake the
171 system from serial console.
172
Paul Walmsleyc0407a92009-09-03 20:14:01 +0300173choice
174 prompt "OMAP PM layer selection"
175 depends on ARCH_OMAP
176 default OMAP_PM_NOOP
177
178config OMAP_PM_NONE
179 bool "No PM layer"
180
181config OMAP_PM_NOOP
182 bool "No-op/debug PM layer"
183
184endchoice
185
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100186endmenu
187
188endif