Kconfig 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  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 MACH_TRIZEPS4
  40. bool "Keith und Koep Trizeps4 DIMM-Module"
  41. select PXA27x
  42. config MACH_EM_X270
  43. bool "CompuLab EM-x270 platform"
  44. select PXA27x
  45. config MACH_ZYLONITE
  46. bool "PXA3xx Development Platform"
  47. select PXA3xx
  48. endchoice
  49. if PXA_SHARPSL
  50. choice
  51. prompt "Select target Sharp Zaurus device range"
  52. config PXA_SHARPSL_25x
  53. bool "Sharp PXA25x models (SL-5600, SL-C7xx and SL-C6000x)"
  54. select PXA25x
  55. config PXA_SHARPSL_27x
  56. bool "Sharp PXA270 models (SL-Cxx00)"
  57. select PXA27x
  58. endchoice
  59. endif
  60. if MACH_TRIZEPS4
  61. choice
  62. prompt "Select base board for Trizeps 4 module"
  63. config MACH_TRIZEPS4_CONXS
  64. bool "ConXS Eval Board"
  65. config MACH_TRIZEPS4_ANY
  66. bool "another Board"
  67. endchoice
  68. endif
  69. endmenu
  70. config MACH_POODLE
  71. bool "Enable Sharp SL-5600 (Poodle) Support"
  72. depends on PXA_SHARPSL_25x
  73. select SHARP_LOCOMO
  74. select PXA_SSP
  75. config MACH_CORGI
  76. bool "Enable Sharp SL-C700 (Corgi) Support"
  77. depends on PXA_SHARPSL_25x
  78. select PXA_SHARP_C7xx
  79. config MACH_SHEPHERD
  80. bool "Enable Sharp SL-C750 (Shepherd) Support"
  81. depends on PXA_SHARPSL_25x
  82. select PXA_SHARP_C7xx
  83. config MACH_HUSKY
  84. bool "Enable Sharp SL-C760 (Husky) Support"
  85. depends on PXA_SHARPSL_25x
  86. select PXA_SHARP_C7xx
  87. config MACH_AKITA
  88. bool "Enable Sharp SL-1000 (Akita) Support"
  89. depends on PXA_SHARPSL_27x
  90. select PXA_SHARP_Cxx00
  91. select MACH_SPITZ
  92. select I2C
  93. select I2C_PXA
  94. config MACH_SPITZ
  95. bool "Enable Sharp Zaurus SL-3000 (Spitz) Support"
  96. depends on PXA_SHARPSL_27x
  97. select PXA_SHARP_Cxx00
  98. config MACH_BORZOI
  99. bool "Enable Sharp Zaurus SL-3100 (Borzoi) Support"
  100. depends on PXA_SHARPSL_27x
  101. select PXA_SHARP_Cxx00
  102. config MACH_TOSA
  103. bool "Enable Sharp SL-6000x (Tosa) Support"
  104. depends on PXA_SHARPSL_25x
  105. config PXA25x
  106. bool
  107. help
  108. Select code specific to PXA21x/25x/26x variants
  109. config PXA27x
  110. bool
  111. help
  112. Select code specific to PXA27x variants
  113. config PXA3xx
  114. bool
  115. help
  116. Select code specific to PXA3xx variants
  117. config PXA_SHARP_C7xx
  118. bool
  119. select PXA_SSP
  120. select SHARPSL_PM
  121. help
  122. Enable support for all Sharp C7xx models
  123. config PXA_SHARP_Cxx00
  124. bool
  125. select PXA_SSP
  126. select SHARPSL_PM
  127. help
  128. Enable common support for Sharp Cxx00 models
  129. config PXA_SSP
  130. tristate
  131. help
  132. Enable support for PXA2xx SSP ports
  133. endif