Kconfig 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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 SL-5600 and SL-C7xx Models"
  18. select PXA25x
  19. select SHARP_SCOOP
  20. select SHARP_PARAM
  21. help
  22. Say Y here if you intend to run this kernel on a
  23. Sharp SL-5600 (Poodle), Sharp SL-C700 (Corgi),
  24. SL-C750 (Shepherd) or a Sharp SL-C760 (Husky)
  25. handheld computer.
  26. endchoice
  27. endmenu
  28. config MACH_POODLE
  29. bool "Enable Sharp SL-5600 (Poodle) Support"
  30. depends PXA_SHARPSL
  31. select SHARP_LOCOMO
  32. config MACH_CORGI
  33. bool "Enable Sharp SL-C700 (Corgi) Support"
  34. depends PXA_SHARPSL
  35. select PXA_SHARP_C7xx
  36. config MACH_SHEPHERD
  37. bool "Enable Sharp SL-C750 (Shepherd) Support"
  38. depends PXA_SHARPSL
  39. select PXA_SHARP_C7xx
  40. config MACH_HUSKY
  41. bool "Enable Sharp SL-C760 (Husky) Support"
  42. depends PXA_SHARPSL
  43. select PXA_SHARP_C7xx
  44. config PXA25x
  45. bool
  46. help
  47. Select code specific to PXA21x/25x/26x variants
  48. config PXA27x
  49. bool
  50. help
  51. Select code specific to PXA27x variants
  52. config IWMMXT
  53. bool
  54. help
  55. Enable support for iWMMXt
  56. config PXA_SHARP_C7xx
  57. bool
  58. help
  59. Enable support for all Sharp C7xx models
  60. endif