Kconfig 781 B

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