Kconfig 749 B

123456789101112131415161718192021222324252627282930313233343536373839
  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_FEC
  26. select MXS_OCOTP
  27. default y
  28. help
  29. Include support for MX28EVK platform. This includes specific
  30. configurations for the board and its peripherals.
  31. endif