Kconfig 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. if ARCH_PXA
  2. menu "Intel PXA2xx/PXA3xx Implementations"
  3. if PXA3xx
  4. menu "Supported PXA3xx Processor Variants"
  5. config CPU_PXA300
  6. bool "PXA300 (codename Monahans-L)"
  7. config CPU_PXA310
  8. bool "PXA310 (codename Monahans-LV)"
  9. select CPU_PXA300
  10. config CPU_PXA320
  11. bool "PXA320 (codename Monahans-P)"
  12. endmenu
  13. endif
  14. choice
  15. prompt "Select target board"
  16. config ARCH_LUBBOCK
  17. bool "Intel DBPXA250 Development Platform"
  18. select PXA25x
  19. select SA1111
  20. config MACH_LOGICPD_PXA270
  21. bool "LogicPD PXA270 Card Engine Development Platform"
  22. select PXA27x
  23. config MACH_MAINSTONE
  24. bool "Intel HCDDBBVA0 Development Platform"
  25. select PXA27x
  26. config ARCH_PXA_IDP
  27. bool "Accelent Xscale IDP"
  28. select PXA25x
  29. config PXA_SHARPSL
  30. bool "SHARP Zaurus SL-5600, SL-C7xx and SL-Cxx00 Models"
  31. select SHARP_SCOOP
  32. select SHARP_PARAM
  33. help
  34. Say Y here if you intend to run this kernel on a
  35. Sharp Zaurus SL-5600 (Poodle), SL-C700 (Corgi),
  36. SL-C750 (Shepherd), SL-C760 (Husky), SL-C1000 (Akita),
  37. SL-C3000 (Spitz), SL-C3100 (Borzoi) or SL-C6000x (Tosa)
  38. handheld computer.
  39. config ARCH_PXA_ESERIES
  40. bool "PXA based Toshiba e-series PDAs"
  41. select PXA25x
  42. config MACH_E330
  43. bool "Toshiba e330"
  44. default y
  45. depends on ARCH_PXA_ESERIES
  46. help
  47. Say Y here if you intend to run this kernel on a Toshiba
  48. e330 family PDA.
  49. config MACH_E740
  50. bool "Toshiba e740"
  51. default y
  52. depends on ARCH_PXA_ESERIES
  53. help
  54. Say Y here if you intend to run this kernel on a Toshiba
  55. e740 family PDA.
  56. config MACH_E750
  57. bool "Toshiba e750"
  58. default y
  59. depends on ARCH_PXA_ESERIES
  60. help
  61. Say Y here if you intend to run this kernel on a Toshiba
  62. e750 family PDA.
  63. config MACH_E400
  64. bool "Toshiba e400"
  65. default y
  66. depends on ARCH_PXA_ESERIES
  67. help
  68. Say Y here if you intend to run this kernel on a Toshiba
  69. e400 family PDA.
  70. config MACH_E800
  71. bool "Toshiba e800"
  72. default y
  73. depends on ARCH_PXA_ESERIES
  74. help
  75. Say Y here if you intend to run this kernel on a Toshiba
  76. e800 family PDA.
  77. config MACH_TRIZEPS4
  78. bool "Keith und Koep Trizeps4 DIMM-Module"
  79. select PXA27x
  80. config MACH_EM_X270
  81. bool "CompuLab EM-x270 platform"
  82. select PXA27x
  83. config MACH_ZYLONITE
  84. bool "PXA3xx Development Platform"
  85. select PXA3xx
  86. config MACH_ARMCORE
  87. bool "CompuLab CM-X270 modules"
  88. select PXA27x
  89. select IWMMXT
  90. endchoice
  91. if PXA_SHARPSL
  92. choice
  93. prompt "Select target Sharp Zaurus device range"
  94. config PXA_SHARPSL_25x
  95. bool "Sharp PXA25x models (SL-5600, SL-C7xx and SL-C6000x)"
  96. select PXA25x
  97. config PXA_SHARPSL_27x
  98. bool "Sharp PXA270 models (SL-Cxx00)"
  99. select PXA27x
  100. endchoice
  101. endif
  102. if MACH_TRIZEPS4
  103. choice
  104. prompt "Select base board for Trizeps 4 module"
  105. config MACH_TRIZEPS4_CONXS
  106. bool "ConXS Eval Board"
  107. config MACH_TRIZEPS4_ANY
  108. bool "another Board"
  109. endchoice
  110. endif
  111. endmenu
  112. config MACH_POODLE
  113. bool "Enable Sharp SL-5600 (Poodle) Support"
  114. depends on PXA_SHARPSL_25x
  115. select SHARP_LOCOMO
  116. select PXA_SSP
  117. config MACH_CORGI
  118. bool "Enable Sharp SL-C700 (Corgi) Support"
  119. depends on PXA_SHARPSL_25x
  120. select PXA_SHARP_C7xx
  121. config MACH_SHEPHERD
  122. bool "Enable Sharp SL-C750 (Shepherd) Support"
  123. depends on PXA_SHARPSL_25x
  124. select PXA_SHARP_C7xx
  125. config MACH_HUSKY
  126. bool "Enable Sharp SL-C760 (Husky) Support"
  127. depends on PXA_SHARPSL_25x
  128. select PXA_SHARP_C7xx
  129. config MACH_AKITA
  130. bool "Enable Sharp SL-1000 (Akita) Support"
  131. depends on PXA_SHARPSL_27x
  132. select PXA_SHARP_Cxx00
  133. select MACH_SPITZ
  134. select I2C
  135. select I2C_PXA
  136. config MACH_SPITZ
  137. bool "Enable Sharp Zaurus SL-3000 (Spitz) Support"
  138. depends on PXA_SHARPSL_27x
  139. select PXA_SHARP_Cxx00
  140. config MACH_BORZOI
  141. bool "Enable Sharp Zaurus SL-3100 (Borzoi) Support"
  142. depends on PXA_SHARPSL_27x
  143. select PXA_SHARP_Cxx00
  144. config MACH_TOSA
  145. bool "Enable Sharp SL-6000x (Tosa) Support"
  146. depends on PXA_SHARPSL_25x
  147. config PXA25x
  148. bool
  149. help
  150. Select code specific to PXA21x/25x/26x variants
  151. config PXA27x
  152. bool
  153. help
  154. Select code specific to PXA27x variants
  155. config PXA3xx
  156. bool
  157. help
  158. Select code specific to PXA3xx variants
  159. config PXA_SHARP_C7xx
  160. bool
  161. select PXA_SSP
  162. select SHARPSL_PM
  163. help
  164. Enable support for all Sharp C7xx models
  165. config PXA_SHARP_Cxx00
  166. bool
  167. select PXA_SSP
  168. select SHARPSL_PM
  169. help
  170. Enable common support for Sharp Cxx00 models
  171. config PXA_SSP
  172. tristate
  173. help
  174. Enable support for PXA2xx SSP ports
  175. endif