Kconfig 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. if ARCH_MX2
  2. choice
  3. prompt "CPUs:"
  4. default MACH_MX21
  5. config MACH_MX21
  6. bool "i.MX21 support"
  7. help
  8. This enables support for Freescale's MX2 based i.MX21 processor.
  9. config MACH_MX27
  10. bool "i.MX27 support"
  11. help
  12. This enables support for Freescale's MX2 based i.MX27 processor.
  13. endchoice
  14. comment "MX2 platforms:"
  15. config MACH_MX21ADS
  16. bool "MX21ADS platform"
  17. depends on MACH_MX21
  18. help
  19. Include support for MX21ADS platform. This includes specific
  20. configurations for the board and its peripherals.
  21. config MACH_MX27ADS
  22. bool "MX27ADS platform"
  23. depends on MACH_MX27
  24. help
  25. Include support for MX27ADS platform. This includes specific
  26. configurations for the board and its peripherals.
  27. config MACH_PCM038
  28. bool "Phytec phyCORE-i.MX27 CPU module (pcm038)"
  29. depends on MACH_MX27
  30. help
  31. Include support for phyCORE-i.MX27 (aka pcm038) platform. This
  32. includes specific configurations for the module and its peripherals.
  33. choice
  34. prompt "Baseboard"
  35. depends on MACH_PCM038
  36. default MACH_PCM970_BASEBOARD
  37. config MACH_PCM970_BASEBOARD
  38. prompt "PHYTEC PCM970 development board"
  39. bool
  40. help
  41. This adds board specific devices that can be found on Phytec's
  42. PCM970 evaluation board.
  43. endchoice
  44. config MACH_MX27_3DS
  45. bool "MX27PDK platform"
  46. depends on MACH_MX27
  47. help
  48. Include support for MX27PDK platform. This includes specific
  49. configurations for the board and its peripherals.
  50. config MACH_MX27LITE
  51. bool "LogicPD MX27 LITEKIT platform"
  52. depends on MACH_MX27
  53. help
  54. Include support for MX27 LITEKIT platform. This includes specific
  55. configurations for the board and its peripherals.
  56. endif