Kconfig 2.5 KB

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