Kconfig 815 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. select HAVE_PWM
  9. config SOC_IMX28
  10. bool
  11. select CPU_ARM926T
  12. select HAVE_PWM
  13. comment "MXS platforms:"
  14. config MACH_MX23EVK
  15. bool "Support MX23EVK Platform"
  16. select SOC_IMX23
  17. select MXS_HAVE_AMBA_DUART
  18. select MXS_HAVE_PLATFORM_AUART
  19. default y
  20. help
  21. Include support for MX23EVK platform. This includes specific
  22. configurations for the board and its peripherals.
  23. config MACH_MX28EVK
  24. bool "Support MX28EVK Platform"
  25. select SOC_IMX28
  26. select MXS_HAVE_AMBA_DUART
  27. select MXS_HAVE_PLATFORM_AUART
  28. select MXS_HAVE_PLATFORM_FEC
  29. select MXS_OCOTP
  30. default y
  31. help
  32. Include support for MX28EVK platform. This includes specific
  33. configurations for the board and its peripherals.
  34. endif