Kconfig 683 B

12345678910111213141516171819202122232425262728293031323334
  1. if ARCH_MXS
  2. source "arch/arm/mach-mxs/devices/Kconfig"
  3. config SOC_IMX23
  4. bool
  5. select CPU_ARM926T
  6. config SOC_IMX28
  7. bool
  8. select CPU_ARM926T
  9. comment "MXS platforms:"
  10. config MACH_MX23EVK
  11. bool "Support MX23EVK Platform"
  12. select SOC_IMX23
  13. select MXS_HAVE_PLATFORM_DUART
  14. default y
  15. help
  16. Include support for MX23EVK platform. This includes specific
  17. configurations for the board and its peripherals.
  18. config MACH_MX28EVK
  19. bool "Support MX28EVK Platform"
  20. select SOC_IMX28
  21. select MXS_HAVE_PLATFORM_DUART
  22. select MXS_HAVE_PLATFORM_FEC
  23. default y
  24. help
  25. Include support for MX28EVK platform. This includes specific
  26. configurations for the board and its peripherals.
  27. endif