blob: 5da7a68204920c5c67a26f8003f80ffd168e48cc [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001if ARCH_PXA
2
eric miao2c8086a2007-09-11 19:13:17 -07003menu "Intel PXA2xx/PXA3xx Implementations"
4
5if PXA3xx
6
7menu "Supported PXA3xx Processor Variants"
8
9config CPU_PXA300
10 bool "PXA300 (codename Monahans-L)"
11
12config CPU_PXA310
13 bool "PXA310 (codename Monahans-LV)"
14 select CPU_PXA300
15
16config CPU_PXA320
17 bool "PXA320 (codename Monahans-P)"
18
19endmenu
20
21endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
23choice
24 prompt "Select target board"
25
Jaya Kumar90b8fc32008-03-15 05:11:07 +010026config ARCH_GUMSTIX
27 bool "Gumstix XScale boards"
28 help
29 Say Y here if you intend to run this kernel on a
30 Gumstix Full Function Minature Computer.
31
Linus Torvalds1da177e2005-04-16 15:20:36 -070032config ARCH_LUBBOCK
33 bool "Intel DBPXA250 Development Platform"
34 select PXA25x
35 select SA1111
36
Lennert Buytenheke9937d42006-03-28 21:08:13 +010037config MACH_LOGICPD_PXA270
38 bool "LogicPD PXA270 Card Engine Development Platform"
39 select PXA27x
Lennert Buytenheke9937d42006-03-28 21:08:13 +010040
Linus Torvalds1da177e2005-04-16 15:20:36 -070041config MACH_MAINSTONE
42 bool "Intel HCDDBBVA0 Development Platform"
43 select PXA27x
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45config ARCH_PXA_IDP
46 bool "Accelent Xscale IDP"
47 select PXA25x
48
49config PXA_SHARPSL
Richard Purdie0dd28f12005-09-13 01:25:34 -070050 bool "SHARP Zaurus SL-5600, SL-C7xx and SL-Cxx00 Models"
Linus Torvalds1da177e2005-04-16 15:20:36 -070051 select SHARP_SCOOP
52 select SHARP_PARAM
53 help
54 Say Y here if you intend to run this kernel on a
Richard Purdie0dd28f12005-09-13 01:25:34 -070055 Sharp Zaurus SL-5600 (Poodle), SL-C700 (Corgi),
56 SL-C750 (Shepherd), SL-C760 (Husky), SL-C1000 (Akita),
Dirk Opfer8459c152005-11-06 14:27:52 +000057 SL-C3000 (Spitz), SL-C3100 (Borzoi) or SL-C6000x (Tosa)
58 handheld computer.
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Ian Molton3abcd192007-11-19 13:16:56 +010060config ARCH_PXA_ESERIES
61 bool "PXA based Toshiba e-series PDAs"
62 select PXA25x
63
64config MACH_E330
65 bool "Toshiba e330"
66 default y
67 depends on ARCH_PXA_ESERIES
68 help
69 Say Y here if you intend to run this kernel on a Toshiba
70 e330 family PDA.
71
72config MACH_E740
73 bool "Toshiba e740"
74 default y
75 depends on ARCH_PXA_ESERIES
76 help
77 Say Y here if you intend to run this kernel on a Toshiba
78 e740 family PDA.
79
80config MACH_E750
81 bool "Toshiba e750"
82 default y
83 depends on ARCH_PXA_ESERIES
84 help
85 Say Y here if you intend to run this kernel on a Toshiba
86 e750 family PDA.
87
88config MACH_E400
89 bool "Toshiba e400"
90 default y
91 depends on ARCH_PXA_ESERIES
92 help
93 Say Y here if you intend to run this kernel on a Toshiba
94 e400 family PDA.
95
96config MACH_E800
97 bool "Toshiba e800"
98 default y
99 depends on ARCH_PXA_ESERIES
100 help
101 Say Y here if you intend to run this kernel on a Toshiba
102 e800 family PDA.
103
Jürgen Schindele326764a2006-06-29 16:01:43 +0100104config MACH_TRIZEPS4
105 bool "Keith und Koep Trizeps4 DIMM-Module"
106 select PXA27x
107
Mike Rapoport3d505272007-07-18 11:31:46 +0100108config MACH_EM_X270
109 bool "CompuLab EM-x270 platform"
110 select PXA27x
111
Daniel Mack4e4fc052008-01-23 14:54:50 +0100112config MACH_COLIBRI
113 bool "Toradex Colibri PX27x"
114 select PXA27x
115
eric miao2c8086a2007-09-11 19:13:17 -0700116config MACH_ZYLONITE
117 bool "PXA3xx Development Platform"
118 select PXA3xx
119
eric miaoe1d9b952007-12-13 10:41:43 +0800120config MACH_LITTLETON
121 bool "PXA3xx Form Factor Platform (aka Littleton)"
122 select PXA3xx
123 select PXA_SSP
124
Mike Rapoport3696a8a2007-09-23 15:59:26 +0100125config MACH_ARMCORE
126 bool "CompuLab CM-X270 modules"
127 select PXA27x
128 select IWMMXT
129
Philipp Zabele5c271e2007-11-22 17:59:11 +0100130config MACH_MAGICIAN
131 bool "Enable HTC Magician Support"
132 depends on ARCH_PXA
133 select PXA27x
134 select IWMMXT
135
Robert Schwebel34e31d82008-01-08 08:44:23 +0100136config MACH_PCM027
137 bool "Phytec phyCORE-PXA270 CPU module (PCM-027)"
138 select PXA27x
139 select IWMMXT
140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141endchoice
142
Robert Schwebel2e927b72008-01-08 08:52:04 +0100143choice
144 prompt "Used baseboard"
145 depends on MACH_PCM027
146
147config MACH_PCM990_BASEBOARD
148 bool "PHYTEC PCM-990 development board"
149
150endchoice
151
Richard Purdie0dd28f12005-09-13 01:25:34 -0700152if PXA_SHARPSL
153
154choice
155 prompt "Select target Sharp Zaurus device range"
156
157config PXA_SHARPSL_25x
Dirk Opfer8459c152005-11-06 14:27:52 +0000158 bool "Sharp PXA25x models (SL-5600, SL-C7xx and SL-C6000x)"
Richard Purdie0dd28f12005-09-13 01:25:34 -0700159 select PXA25x
160
161config PXA_SHARPSL_27x
162 bool "Sharp PXA270 models (SL-Cxx00)"
163 select PXA27x
164
165endchoice
166
167endif
168
Jaya Kumar90b8fc32008-03-15 05:11:07 +0100169if ARCH_GUMSTIX
170
171choice
172 prompt "Select target Gumstix board"
173
174config MACH_GUMSTIX_F
175 bool "Basix, Connex, ws-200ax, ws-400ax systems"
176 select PXA25x
177
178endchoice
179
180endif
181
182
Jürgen Schindele326764a2006-06-29 16:01:43 +0100183if MACH_TRIZEPS4
184
185choice
186 prompt "Select base board for Trizeps 4 module"
187
188config MACH_TRIZEPS4_CONXS
189 bool "ConXS Eval Board"
190
191config MACH_TRIZEPS4_ANY
192 bool "another Board"
193
194endchoice
195
196endif
197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198endmenu
199
200config MACH_POODLE
201 bool "Enable Sharp SL-5600 (Poodle) Support"
Robert P. J. Daybef1f402006-12-12 20:04:19 +0100202 depends on PXA_SHARPSL_25x
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 select SHARP_LOCOMO
Richard Purdiefaed5682006-06-19 20:46:05 +0100204 select PXA_SSP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205
206config MACH_CORGI
207 bool "Enable Sharp SL-C700 (Corgi) Support"
Robert P. J. Daybef1f402006-12-12 20:04:19 +0100208 depends on PXA_SHARPSL_25x
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 select PXA_SHARP_C7xx
210
211config MACH_SHEPHERD
212 bool "Enable Sharp SL-C750 (Shepherd) Support"
Robert P. J. Daybef1f402006-12-12 20:04:19 +0100213 depends on PXA_SHARPSL_25x
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 select PXA_SHARP_C7xx
215
216config MACH_HUSKY
217 bool "Enable Sharp SL-C760 (Husky) Support"
Robert P. J. Daybef1f402006-12-12 20:04:19 +0100218 depends on PXA_SHARPSL_25x
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 select PXA_SHARP_C7xx
220
Richard Purdie94cabd02005-11-12 18:53:48 +0000221config MACH_AKITA
222 bool "Enable Sharp SL-1000 (Akita) Support"
Robert P. J. Daybef1f402006-12-12 20:04:19 +0100223 depends on PXA_SHARPSL_27x
Richard Purdie94cabd02005-11-12 18:53:48 +0000224 select PXA_SHARP_Cxx00
225 select MACH_SPITZ
Richard Purdie08af2952005-12-01 15:52:47 +0000226 select I2C
227 select I2C_PXA
Richard Purdie94cabd02005-11-12 18:53:48 +0000228
Richard Purdie0dd28f12005-09-13 01:25:34 -0700229config MACH_SPITZ
230 bool "Enable Sharp Zaurus SL-3000 (Spitz) Support"
Robert P. J. Daybef1f402006-12-12 20:04:19 +0100231 depends on PXA_SHARPSL_27x
Richard Purdie0dd28f12005-09-13 01:25:34 -0700232 select PXA_SHARP_Cxx00
233
234config MACH_BORZOI
235 bool "Enable Sharp Zaurus SL-3100 (Borzoi) Support"
Robert P. J. Daybef1f402006-12-12 20:04:19 +0100236 depends on PXA_SHARPSL_27x
Richard Purdie0dd28f12005-09-13 01:25:34 -0700237 select PXA_SHARP_Cxx00
238
Dirk Opfer8459c152005-11-06 14:27:52 +0000239config MACH_TOSA
240 bool "Enable Sharp SL-6000x (Tosa) Support"
Robert P. J. Daybef1f402006-12-12 20:04:19 +0100241 depends on PXA_SHARPSL_25x
Dirk Opfer8459c152005-11-06 14:27:52 +0000242
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243config PXA25x
244 bool
245 help
246 Select code specific to PXA21x/25x/26x variants
247
248config PXA27x
249 bool
250 help
251 Select code specific to PXA27x variants
252
eric miao2c8086a2007-09-11 19:13:17 -0700253config PXA3xx
254 bool
255 help
256 Select code specific to PXA3xx variants
257
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258config PXA_SHARP_C7xx
259 bool
Liam Girdwoodb216c012005-11-10 17:45:39 +0000260 select PXA_SSP
Richard Purdieb7557de2006-01-05 20:44:55 +0000261 select SHARPSL_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 help
263 Enable support for all Sharp C7xx models
264
Richard Purdie0dd28f12005-09-13 01:25:34 -0700265config PXA_SHARP_Cxx00
266 bool
Liam Girdwoodb216c012005-11-10 17:45:39 +0000267 select PXA_SSP
Richard Purdieb7557de2006-01-05 20:44:55 +0000268 select SHARPSL_PM
Richard Purdie0dd28f12005-09-13 01:25:34 -0700269 help
270 Enable common support for Sharp Cxx00 models
271
Liam Girdwoodb216c012005-11-10 17:45:39 +0000272config PXA_SSP
273 tristate
274 help
275 Enable support for PXA2xx SSP ports
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276endif