Kconfig 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. if ARCH_MMP
  2. menu "Marvell PXA168/910/MMP2 Implmentations"
  3. config MACH_ASPENITE
  4. bool "Marvell's PXA168 Aspenite Development Board"
  5. select CPU_PXA168
  6. help
  7. Say 'Y' here if you want to support the Marvell PXA168-based
  8. Aspenite Development Board.
  9. config MACH_ZYLONITE2
  10. bool "Marvell's PXA168 Zylonite2 Development Board"
  11. select CPU_PXA168
  12. help
  13. Say 'Y' here if you want to support the Marvell PXA168-based
  14. Zylonite2 Development Board.
  15. config MACH_AVENGERS_LITE
  16. bool "Marvell's PXA168 Avengers Lite Development Board"
  17. select CPU_PXA168
  18. help
  19. Say 'Y' here if you want to support the Marvell PXA168-based
  20. Avengers Lite Development Board.
  21. config MACH_TAVOREVB
  22. bool "Marvell's PXA910 TavorEVB Development Board"
  23. select CPU_PXA910
  24. help
  25. Say 'Y' here if you want to support the Marvell PXA910-based
  26. TavorEVB Development Board.
  27. config MACH_TTC_DKB
  28. bool "Marvell's PXA910 TavorEVB Development Board"
  29. select CPU_PXA910
  30. help
  31. Say 'Y' here if you want to support the Marvell PXA910-based
  32. TTC_DKB Development Board.
  33. config MACH_FLINT
  34. bool "Marvell's Flint Development Platform"
  35. select CPU_MMP2
  36. help
  37. Say 'Y' here if you want to support the Marvell MMP2-based
  38. Flint Development Platform.
  39. MMP2-based board can't be co-existed with PXA168-based &
  40. PXA910-based development board. Since MMP2 is compatible to
  41. ARMv6 architecture.
  42. config MACH_MARVELL_JASPER
  43. bool "Marvell's Jasper Development Platform"
  44. select CPU_MMP2
  45. help
  46. Say 'Y' here if you want to support the Marvell MMP2-base
  47. Jasper Development Platform.
  48. MMP2-based board can't be co-existed with PXA168-based &
  49. PXA910-based development board. Since MMP2 is compatible to
  50. ARMv6 architecture.
  51. endmenu
  52. config CPU_PXA168
  53. bool
  54. select CPU_MOHAWK
  55. help
  56. Select code specific to PXA168
  57. config CPU_PXA910
  58. bool
  59. select CPU_MOHAWK
  60. help
  61. Select code specific to PXA910
  62. config CPU_MMP2
  63. bool
  64. select CPU_V6
  65. select CPU_32v6K
  66. help
  67. Select code specific to MMP2. MMP2 is ARMv6 compatible.
  68. endif