blob: 0104fd142e705da2ff6c9298725c675b83729726 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001if ARCH_PXA
2
3menu "Intel PXA2xx Implementations"
4
5choice
6 prompt "Select target board"
7
8config ARCH_LUBBOCK
9 bool "Intel DBPXA250 Development Platform"
10 select PXA25x
11 select SA1111
12
Lennert Buytenheke9937d42006-03-28 21:08:13 +010013config MACH_LOGICPD_PXA270
14 bool "LogicPD PXA270 Card Engine Development Platform"
15 select PXA27x
16 select IWMMXT
17
Linus Torvalds1da177e2005-04-16 15:20:36 -070018config MACH_MAINSTONE
19 bool "Intel HCDDBBVA0 Development Platform"
20 select PXA27x
21 select IWMMXT
22
23config ARCH_PXA_IDP
24 bool "Accelent Xscale IDP"
25 select PXA25x
26
27config PXA_SHARPSL
Richard Purdie0dd28f12005-09-13 01:25:34 -070028 bool "SHARP Zaurus SL-5600, SL-C7xx and SL-Cxx00 Models"
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 select SHARP_SCOOP
30 select SHARP_PARAM
31 help
32 Say Y here if you intend to run this kernel on a
Richard Purdie0dd28f12005-09-13 01:25:34 -070033 Sharp Zaurus SL-5600 (Poodle), SL-C700 (Corgi),
34 SL-C750 (Shepherd), SL-C760 (Husky), SL-C1000 (Akita),
Dirk Opfer8459c152005-11-06 14:27:52 +000035 SL-C3000 (Spitz), SL-C3100 (Borzoi) or SL-C6000x (Tosa)
36 handheld computer.
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38endchoice
39
Richard Purdie0dd28f12005-09-13 01:25:34 -070040if PXA_SHARPSL
41
42choice
43 prompt "Select target Sharp Zaurus device range"
44
45config PXA_SHARPSL_25x
Dirk Opfer8459c152005-11-06 14:27:52 +000046 bool "Sharp PXA25x models (SL-5600, SL-C7xx and SL-C6000x)"
Richard Purdie0dd28f12005-09-13 01:25:34 -070047 select PXA25x
48
49config PXA_SHARPSL_27x
50 bool "Sharp PXA270 models (SL-Cxx00)"
51 select PXA27x
Richard Purdie243077f2005-11-28 18:08:44 +000052 select IWMMXT
Richard Purdie0dd28f12005-09-13 01:25:34 -070053
54endchoice
55
56endif
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058endmenu
59
60config MACH_POODLE
61 bool "Enable Sharp SL-5600 (Poodle) Support"
Richard Purdie0dd28f12005-09-13 01:25:34 -070062 depends PXA_SHARPSL_25x
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 select SHARP_LOCOMO
64
65config MACH_CORGI
66 bool "Enable Sharp SL-C700 (Corgi) Support"
Richard Purdie0dd28f12005-09-13 01:25:34 -070067 depends PXA_SHARPSL_25x
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 select PXA_SHARP_C7xx
69
70config MACH_SHEPHERD
71 bool "Enable Sharp SL-C750 (Shepherd) Support"
Richard Purdie0dd28f12005-09-13 01:25:34 -070072 depends PXA_SHARPSL_25x
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 select PXA_SHARP_C7xx
74
75config MACH_HUSKY
76 bool "Enable Sharp SL-C760 (Husky) Support"
Richard Purdie0dd28f12005-09-13 01:25:34 -070077 depends PXA_SHARPSL_25x
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 select PXA_SHARP_C7xx
79
Richard Purdie94cabd02005-11-12 18:53:48 +000080config MACH_AKITA
81 bool "Enable Sharp SL-1000 (Akita) Support"
82 depends PXA_SHARPSL_27x
83 select PXA_SHARP_Cxx00
84 select MACH_SPITZ
Richard Purdie08af2952005-12-01 15:52:47 +000085 select I2C
86 select I2C_PXA
Richard Purdie94cabd02005-11-12 18:53:48 +000087
Richard Purdie0dd28f12005-09-13 01:25:34 -070088config MACH_SPITZ
89 bool "Enable Sharp Zaurus SL-3000 (Spitz) Support"
90 depends PXA_SHARPSL_27x
91 select PXA_SHARP_Cxx00
92
93config MACH_BORZOI
94 bool "Enable Sharp Zaurus SL-3100 (Borzoi) Support"
95 depends PXA_SHARPSL_27x
96 select PXA_SHARP_Cxx00
97
Dirk Opfer8459c152005-11-06 14:27:52 +000098config MACH_TOSA
99 bool "Enable Sharp SL-6000x (Tosa) Support"
Richard Purdie243077f2005-11-28 18:08:44 +0000100 depends PXA_SHARPSL_25x
Dirk Opfer8459c152005-11-06 14:27:52 +0000101
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102config PXA25x
103 bool
104 help
105 Select code specific to PXA21x/25x/26x variants
106
107config PXA27x
108 bool
109 help
110 Select code specific to PXA27x variants
111
112config IWMMXT
113 bool
114 help
115 Enable support for iWMMXt
116
117config PXA_SHARP_C7xx
118 bool
Liam Girdwoodb216c012005-11-10 17:45:39 +0000119 select PXA_SSP
Richard Purdieb7557de2006-01-05 20:44:55 +0000120 select SHARPSL_PM
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 help
122 Enable support for all Sharp C7xx models
123
Richard Purdie0dd28f12005-09-13 01:25:34 -0700124config PXA_SHARP_Cxx00
125 bool
Liam Girdwoodb216c012005-11-10 17:45:39 +0000126 select PXA_SSP
Richard Purdieb7557de2006-01-05 20:44:55 +0000127 select SHARPSL_PM
Richard Purdie0dd28f12005-09-13 01:25:34 -0700128 help
129 Enable common support for Sharp Cxx00 models
130
Liam Girdwoodb216c012005-11-10 17:45:39 +0000131config PXA_SSP
132 tristate
133 help
134 Enable support for PXA2xx SSP ports
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135endif