Kconfig 755 B

1234567891011121314151617181920212223242526272829303132333435
  1. if ARCH_U300
  2. menu "ST-Ericsson AB U300/U335 Platform"
  3. comment "ST-Ericsson Mobile Platform Products"
  4. config MACH_U300
  5. bool "U300"
  6. select PINCTRL
  7. select PINCTRL_COH901
  8. select PINCTRL_U300
  9. comment "ST-Ericsson U300/U335 Feature Selections"
  10. config U300_DEBUG
  11. bool "Debug support for U300"
  12. depends on PM
  13. help
  14. Debug support for U300 in sysfs, procfs etc.
  15. config MACH_U300_SPIDUMMY
  16. bool "SSP/SPI dummy chip"
  17. select SPI
  18. select SPI_MASTER
  19. select SPI_PL022
  20. help
  21. This creates a small kernel module that creates a dummy
  22. SPI device to be used for loopback tests. Regularly used
  23. to test reference designs. If you're not testing SPI,
  24. you don't need it. Selecting this will activate the
  25. SPI framework and ARM PL022 support.
  26. endmenu
  27. endif