blob: 3e5f69bb5ac40764427b4d0d09ee1bedb040c1e9 [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
13config MACH_MAINSTONE
14 bool "Intel HCDDBBVA0 Development Platform"
15 select PXA27x
16 select IWMMXT
17
18config ARCH_PXA_IDP
19 bool "Accelent Xscale IDP"
20 select PXA25x
21
22config PXA_SHARPSL
Richard Purdie0dd28f12005-09-13 01:25:34 -070023 bool "SHARP Zaurus SL-5600, SL-C7xx and SL-Cxx00 Models"
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 select SHARP_SCOOP
25 select SHARP_PARAM
26 help
27 Say Y here if you intend to run this kernel on a
Richard Purdie0dd28f12005-09-13 01:25:34 -070028 Sharp Zaurus SL-5600 (Poodle), SL-C700 (Corgi),
29 SL-C750 (Shepherd), SL-C760 (Husky), SL-C1000 (Akita),
30 SL-C3000 (Spitz) or SL-C3100 (Borzoi) handheld computer.
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32endchoice
33
Richard Purdie0dd28f12005-09-13 01:25:34 -070034if PXA_SHARPSL
35
36choice
37 prompt "Select target Sharp Zaurus device range"
38
39config PXA_SHARPSL_25x
40 bool "Sharp PXA25x models (SL-5600 and SL-C7xx)"
41 select PXA25x
42
43config PXA_SHARPSL_27x
44 bool "Sharp PXA270 models (SL-Cxx00)"
45 select PXA27x
46
47endchoice
48
49endif
50
Linus Torvalds1da177e2005-04-16 15:20:36 -070051endmenu
52
53config MACH_POODLE
54 bool "Enable Sharp SL-5600 (Poodle) Support"
Richard Purdie0dd28f12005-09-13 01:25:34 -070055 depends PXA_SHARPSL_25x
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 select SHARP_LOCOMO
57
58config MACH_CORGI
59 bool "Enable Sharp SL-C700 (Corgi) Support"
Richard Purdie0dd28f12005-09-13 01:25:34 -070060 depends PXA_SHARPSL_25x
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 select PXA_SHARP_C7xx
62
63config MACH_SHEPHERD
64 bool "Enable Sharp SL-C750 (Shepherd) Support"
Richard Purdie0dd28f12005-09-13 01:25:34 -070065 depends PXA_SHARPSL_25x
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 select PXA_SHARP_C7xx
67
68config MACH_HUSKY
69 bool "Enable Sharp SL-C760 (Husky) Support"
Richard Purdie0dd28f12005-09-13 01:25:34 -070070 depends PXA_SHARPSL_25x
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 select PXA_SHARP_C7xx
72
Richard Purdie0dd28f12005-09-13 01:25:34 -070073config MACH_SPITZ
74 bool "Enable Sharp Zaurus SL-3000 (Spitz) Support"
75 depends PXA_SHARPSL_27x
76 select PXA_SHARP_Cxx00
77
78config MACH_BORZOI
79 bool "Enable Sharp Zaurus SL-3100 (Borzoi) Support"
80 depends PXA_SHARPSL_27x
81 select PXA_SHARP_Cxx00
82
Linus Torvalds1da177e2005-04-16 15:20:36 -070083config PXA25x
84 bool
85 help
86 Select code specific to PXA21x/25x/26x variants
87
88config PXA27x
89 bool
90 help
91 Select code specific to PXA27x variants
92
93config IWMMXT
94 bool
95 help
96 Enable support for iWMMXt
97
98config PXA_SHARP_C7xx
99 bool
100 help
101 Enable support for all Sharp C7xx models
102
Richard Purdie0dd28f12005-09-13 01:25:34 -0700103config PXA_SHARP_Cxx00
104 bool
105 help
106 Enable common support for Sharp Cxx00 models
107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108endif