Kconfig 990 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. # SPDX-License-Identifier: GPL-2.0
  2. menuconfig ARCH_U300
  3. bool "ST-Ericsson U300 Series"
  4. depends on ARCH_MULTI_V5 && MMU
  5. select ARM_AMBA
  6. select ARM_VIC
  7. select U300_TIMER
  8. select CPU_ARM926T
  9. select GPIOLIB
  10. select HAVE_TCM
  11. select PINCTRL
  12. select PINCTRL_COH901
  13. select PINCTRL_U300
  14. select MFD_SYSCON
  15. help
  16. Support for ST-Ericsson U300 series mobile platforms.
  17. if ARCH_U300
  18. config MACH_U300
  19. depends on ARCH_U300
  20. bool "U300"
  21. default y
  22. config U300_DEBUG
  23. depends on ARCH_U300
  24. bool "Debug support for U300"
  25. depends on PM
  26. help
  27. Debug support for U300 in sysfs, procfs etc.
  28. config MACH_U300_SPIDUMMY
  29. depends on ARCH_U300
  30. bool "SSP/SPI dummy chip"
  31. select SPI
  32. select SPI_MASTER
  33. select SPI_PL022
  34. help
  35. This creates a small kernel module that creates a dummy
  36. SPI device to be used for loopback tests. Regularly used
  37. to test reference designs. If you're not testing SPI,
  38. you don't need it. Selecting this will activate the
  39. SPI framework and ARM PL022 support.
  40. endif