Kconfig 717 B

1234567891011121314151617181920212223242526272829303132333435363738
  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. default y
  17. help
  18. Include support for MX23EVK platform. This includes specific
  19. configurations for the board and its peripherals.
  20. config MACH_MX28EVK
  21. bool "Support MX28EVK Platform"
  22. select SOC_IMX28
  23. select MXS_HAVE_AMBA_DUART
  24. select MXS_HAVE_PLATFORM_FEC
  25. select MXS_OCOTP
  26. default y
  27. help
  28. Include support for MX28EVK platform. This includes specific
  29. configurations for the board and its peripherals.
  30. endif