blob: 90372131055be75f45be8b4b3fd5186203609b5b [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
Syed Mohammed, Khasimcc26b3b2008-10-09 17:51:41 +030024
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010025endchoice
26
27comment "OMAP Feature Selections"
28
David Brownellf6049312006-12-06 17:14:03 -080029config OMAP_DEBUG_DEVICES
David Brownell994c84e2006-12-06 17:14:03 -080030 bool
31 help
David Brownellf6049312006-12-06 17:14:03 -080032 For debug cards on TI reference boards.
33
34config OMAP_DEBUG_LEDS
35 bool
36 depends on OMAP_DEBUG_DEVICES
37 default y if LEDS || LEDS_OMAP_DEBUG
David Brownell994c84e2006-12-06 17:14:03 -080038
Paul Walmsleyad67ef62008-08-19 11:08:40 +030039config OMAP_DEBUG_POWERDOMAIN
40 bool "Emit debug messages from powerdomain layer"
41 depends on ARCH_OMAP2 || ARCH_OMAP3
42 default n
43 help
44 Say Y here if you want to compile in powerdomain layer
45 debugging messages for OMAP2/3. These messages can
46 provide more detail as to why some powerdomain calls
47 may be failing, and will also emit a descriptive message
48 for every powerdomain register write. However, the
49 extra detail costs some memory.
50
Paul Walmsleyd459bfe2008-08-19 11:08:43 +030051config OMAP_DEBUG_CLOCKDOMAIN
52 bool "Emit debug messages from clockdomain layer"
53 depends on ARCH_OMAP2 || ARCH_OMAP3
54 default n
55 help
56 Say Y here if you want to compile in clockdomain layer
57 debugging messages for OMAP2/3. These messages can
58 provide more detail as to why some clockdomain calls
59 may be failing, and will also emit a descriptive message
60 for every clockdomain register write. However, the
61 extra detail costs some memory.
62
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +010063config OMAP_RESET_CLOCKS
64 bool "Reset unused clocks during boot"
65 depends on ARCH_OMAP
Tony Lindgrenbb13b5f2005-07-10 19:58:18 +010066 help
67 Say Y if you want to reset unused clocks during boot.
68 This option saves power, but assumes all drivers are
69 using the clock framework. Broken drivers that do not
70 yet use clock framework may not work with this option.
71 If you are booting from another operating system, you
72 probably do not want this option enabled until your
73 device drivers work properly.
74
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010075config OMAP_MUX
76 bool "OMAP multiplexing support"
77 depends on ARCH_OMAP
78 default y
79 help
80 Pin multiplexing support for OMAP boards. If your bootloader
81 sets the multiplexing correctly, say N. Otherwise, or if unsure,
82 say Y.
83
84config OMAP_MUX_DEBUG
85 bool "Multiplexing debug output"
86 depends on OMAP_MUX
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +010087 help
88 Makes the multiplexing functions print out a lot of debug info.
89 This is useful if you want to find out the correct values of the
90 multiplexing registers.
91
92config OMAP_MUX_WARNINGS
93 bool "Warn about pins the bootloader didn't set up"
94 depends on OMAP_MUX
95 default y
96 help
97 Choose Y here to warn whenever driver initialization logic needs
98 to change the pin multiplexing setup. When there are no warnings
99 printed, it's safe to deselect OMAP_MUX for your product.
100
Tony Lindgrenc40fae952006-12-07 13:58:10 -0800101config OMAP_MCBSP
102 bool "McBSP support"
103 depends on ARCH_OMAP
104 default y
105 help
106 Say Y here if you want support for the OMAP Multichannel
107 Buffered Serial Port.
108
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100109choice
110 prompt "System timer"
111 default OMAP_MPU_TIMER
112
113config OMAP_MPU_TIMER
114 bool "Use mpu timer"
115 help
116 Select this option if you want to use the OMAP mpu timer. This
117 timer provides more intra-tick resolution than the 32KHz timer,
118 but consumes more power.
119
120config OMAP_32K_TIMER
121 bool "Use 32KHz timer"
Syed Mohammed, Khasimcc26b3b2008-10-09 17:51:41 +0300122 depends on ARCH_OMAP16XX || ARCH_OMAP24XX || ARCH_OMAP34XX
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100123 help
124 Select this option if you want to enable the OMAP 32KHz timer.
125 This timer saves power compared to the OMAP_MPU_TIMER, and has
126 support for no tick during idle. The 32KHz timer provides less
127 intra-tick resolution than OMAP_MPU_TIMER. The 32KHz timer is
Syed Mohammed, Khasimcc26b3b2008-10-09 17:51:41 +0300128 currently only available for OMAP16XX, 24XX and 34XX.
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100129
130endchoice
131
132config OMAP_32K_TIMER_HZ
133 int "Kernel internal timer frequency for 32KHz timer"
134 range 32 1024
135 depends on OMAP_32K_TIMER
136 default "128"
137 help
138 Kernel internal timer frequency should be a divisor of 32768,
139 such as 64 or 128.
140
Tony Lindgren92105bb2005-09-07 17:20:26 +0100141config OMAP_DM_TIMER
142 bool "Use dual-mode timer"
Syed Mohammed, Khasimcc26b3b2008-10-09 17:51:41 +0300143 depends on ARCH_OMAP16XX || ARCH_OMAP24XX || ARCH_OMAP34XX
Tony Lindgren92105bb2005-09-07 17:20:26 +0100144 help
145 Select this option if you want to use OMAP Dual-Mode timers.
146
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100147choice
148 prompt "Low-level debug console UART"
149 depends on ARCH_OMAP
150 default OMAP_LL_DEBUG_UART1
151
152config OMAP_LL_DEBUG_UART1
153 bool "UART1"
154
155config OMAP_LL_DEBUG_UART2
156 bool "UART2"
157
158config OMAP_LL_DEBUG_UART3
159 bool "UART3"
160
161endchoice
162
Tony Lindgren92105bb2005-09-07 17:20:26 +0100163config OMAP_SERIAL_WAKE
164 bool "Enable wake-up events for serial ports"
Robert P. J. Daybef1f402006-12-12 20:04:19 +0100165 depends on OMAP_MUX
Tony Lindgren92105bb2005-09-07 17:20:26 +0100166 default y
167 help
168 Select this option if you want to have your system wake up
169 to data on the serial RX line. This allows you to wake the
170 system from serial console.
171
Tony Lindgren5e1c5ff2005-07-10 19:58:15 +0100172endmenu
173
174endif