Kconfig 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  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_BROWNSTONE
  34. bool "Marvell's Brownstone Development Platform"
  35. depends on !CPU_MOHAWK
  36. select CPU_MMP2
  37. help
  38. Say 'Y' here if you want to support the Marvell MMP2-based
  39. Brown Development Platform.
  40. MMP2-based board can't be co-existed with PXA168-based &
  41. PXA910-based development board. Since MMP2 is compatible to
  42. ARMv7 architecture.
  43. config MACH_FLINT
  44. bool "Marvell's Flint Development Platform"
  45. select CPU_MMP2
  46. help
  47. Say 'Y' here if you want to support the Marvell MMP2-based
  48. Flint Development Platform.
  49. MMP2-based board can't be co-existed with PXA168-based &
  50. PXA910-based development board. Since MMP2 is compatible to
  51. ARMv7 architecture.
  52. config MACH_MARVELL_JASPER
  53. bool "Marvell's Jasper Development Platform"
  54. select CPU_MMP2
  55. help
  56. Say 'Y' here if you want to support the Marvell MMP2-base
  57. Jasper Development Platform.
  58. MMP2-based board can't be co-existed with PXA168-based &
  59. PXA910-based development board. Since MMP2 is compatible to
  60. ARMv7 architecture.
  61. config MACH_TETON_BGA
  62. bool "Marvell's PXA168 Teton BGA Development Board"
  63. select CPU_PXA168
  64. help
  65. Say 'Y' here if you want to support the Marvell PXA168-based
  66. Teton BGA Development Board.
  67. endmenu
  68. config CPU_PXA168
  69. bool
  70. select CPU_MOHAWK
  71. help
  72. Select code specific to PXA168
  73. config CPU_PXA910
  74. bool
  75. select CPU_MOHAWK
  76. help
  77. Select code specific to PXA910
  78. config CPU_MMP2
  79. bool
  80. select CPU_V6
  81. select CPU_32v6K
  82. help
  83. Select code specific to MMP2. MMP2 is ARMv6 compatible.
  84. endif