Kconfig 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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_MX27ADS
  16. bool "MX27ADS platform"
  17. depends on MACH_MX27
  18. help
  19. Include support for MX27ADS platform. This includes specific
  20. configurations for the board and its peripherals.
  21. config MACH_PCM038
  22. bool "Phytec phyCORE-i.MX27 CPU module (pcm038)"
  23. depends on MACH_MX27
  24. help
  25. Include support for phyCORE-i.MX27 (aka pcm038) platform. This
  26. includes specific configurations for the module and its peripherals.
  27. choice
  28. prompt "Baseboard"
  29. depends on MACH_PCM038
  30. default MACH_PCM970_BASEBOARD
  31. config MACH_PCM970_BASEBOARD
  32. prompt "PHYTEC PCM970 development board"
  33. bool
  34. help
  35. This adds board specific devices that can be found on Phytec's
  36. PCM970 evaluation board.
  37. endchoice
  38. endif