Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1if 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
23 bool "SHARP Zaurus SL-5600, SL-C7xx and SL-Cxx00 Models"
24 select SHARP_SCOOP
25 select SHARP_PARAM
26 help
27 Say Y here if you intend to run this kernel on a
28 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.
31
32endchoice
33
34if 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
51endmenu
52
53config MACH_POODLE
54 bool "Enable Sharp SL-5600 (Poodle) Support"
55 depends PXA_SHARPSL_25x
56 select SHARP_LOCOMO
57
58config MACH_CORGI
59 bool "Enable Sharp SL-C700 (Corgi) Support"
60 depends PXA_SHARPSL_25x
61 select PXA_SHARP_C7xx
62
63config MACH_SHEPHERD
64 bool "Enable Sharp SL-C750 (Shepherd) Support"
65 depends PXA_SHARPSL_25x
66 select PXA_SHARP_C7xx
67
68config MACH_HUSKY
69 bool "Enable Sharp SL-C760 (Husky) Support"
70 depends PXA_SHARPSL_25x
71 select PXA_SHARP_C7xx
72
73config 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
83config 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
103config PXA_SHARP_Cxx00
104 bool
105 help
106 Enable common support for Sharp Cxx00 models
107
108endif