Kconfig 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  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. endmenu
  43. config CPU_PXA168
  44. bool
  45. select CPU_MOHAWK
  46. help
  47. Select code specific to PXA168
  48. config CPU_PXA910
  49. bool
  50. select CPU_MOHAWK
  51. help
  52. Select code specific to PXA910
  53. config CPU_MMP2
  54. bool
  55. select CPU_V6
  56. select CPU_32v6K
  57. help
  58. Select code specific to MMP2. MMP2 is ARMv6 compatible.
  59. endif