Kconfig 969 B

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