Kconfig 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. if ARCH_PXA
  2. menu "Intel PXA2xx Implementations"
  3. choice
  4. prompt "Select target board"
  5. config ARCH_LUBBOCK
  6. bool "Intel DBPXA250 Development Platform"
  7. select PXA25x
  8. select SA1111
  9. config MACH_MAINSTONE
  10. bool "Intel HCDDBBVA0 Development Platform"
  11. select PXA27x
  12. select IWMMXT
  13. config ARCH_PXA_IDP
  14. bool "Accelent Xscale IDP"
  15. select PXA25x
  16. config PXA_SHARPSL
  17. bool "SHARP Zaurus SL-5600, SL-C7xx and SL-Cxx00 Models"
  18. select SHARP_SCOOP
  19. select SHARP_PARAM
  20. help
  21. Say Y here if you intend to run this kernel on a
  22. Sharp Zaurus SL-5600 (Poodle), SL-C700 (Corgi),
  23. SL-C750 (Shepherd), SL-C760 (Husky), SL-C1000 (Akita),
  24. SL-C3000 (Spitz) or SL-C3100 (Borzoi) handheld computer.
  25. endchoice
  26. if PXA_SHARPSL
  27. choice
  28. prompt "Select target Sharp Zaurus device range"
  29. config PXA_SHARPSL_25x
  30. bool "Sharp PXA25x models (SL-5600 and SL-C7xx)"
  31. select PXA25x
  32. config PXA_SHARPSL_27x
  33. bool "Sharp PXA270 models (SL-Cxx00)"
  34. select PXA27x
  35. endchoice
  36. endif
  37. endmenu
  38. config MACH_POODLE
  39. bool "Enable Sharp SL-5600 (Poodle) Support"
  40. depends PXA_SHARPSL_25x
  41. select SHARP_LOCOMO
  42. config MACH_CORGI
  43. bool "Enable Sharp SL-C700 (Corgi) Support"
  44. depends PXA_SHARPSL_25x
  45. select PXA_SHARP_C7xx
  46. config MACH_SHEPHERD
  47. bool "Enable Sharp SL-C750 (Shepherd) Support"
  48. depends PXA_SHARPSL_25x
  49. select PXA_SHARP_C7xx
  50. config MACH_HUSKY
  51. bool "Enable Sharp SL-C760 (Husky) Support"
  52. depends PXA_SHARPSL_25x
  53. select PXA_SHARP_C7xx
  54. config MACH_SPITZ
  55. bool "Enable Sharp Zaurus SL-3000 (Spitz) Support"
  56. depends PXA_SHARPSL_27x
  57. select PXA_SHARP_Cxx00
  58. config MACH_BORZOI
  59. bool "Enable Sharp Zaurus SL-3100 (Borzoi) Support"
  60. depends PXA_SHARPSL_27x
  61. select PXA_SHARP_Cxx00
  62. config PXA25x
  63. bool
  64. help
  65. Select code specific to PXA21x/25x/26x variants
  66. config PXA27x
  67. bool
  68. help
  69. Select code specific to PXA27x variants
  70. config IWMMXT
  71. bool
  72. help
  73. Enable support for iWMMXt
  74. config PXA_SHARP_C7xx
  75. bool
  76. help
  77. Enable support for all Sharp C7xx models
  78. config PXA_SHARP_Cxx00
  79. bool
  80. help
  81. Enable common support for Sharp Cxx00 models
  82. endif