Kconfig 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. if ARCH_U300
  2. menu "ST-Ericsson AB U300/U330/U335/U365 Platform"
  3. comment "ST-Ericsson Mobile Platform Products"
  4. config MACH_U300
  5. bool "U300"
  6. select PINCTRL
  7. select PINCTRL_U300
  8. select PINCTRL_COH901
  9. comment "ST-Ericsson U300/U330/U335/U365 Feature Selections"
  10. choice
  11. prompt "U300/U330/U335/U365 system type"
  12. default MACH_U300_BS2X
  13. ---help---
  14. You need to select the target system, i.e. the
  15. U300/U330/U335/U365 board that you want to compile your kernel
  16. for.
  17. config MACH_U300_BS2X
  18. bool "S26/S26/B25/B26 Test Products"
  19. depends on MACH_U300
  20. help
  21. Select this if you're developing on the
  22. S26/S25 test products. (Also works on
  23. B26/B25 big boards.)
  24. config MACH_U300_BS330
  25. bool "S330/B330 Test Products"
  26. depends on MACH_U300
  27. help
  28. Select this if you're developing on the
  29. S330/B330 test products.
  30. config MACH_U300_BS335
  31. bool "S335/B335 Test Products"
  32. depends on MACH_U300
  33. help
  34. Select this if you're developing on the
  35. S335/B335 test products.
  36. config MACH_U300_BS365
  37. bool "S365/B365 Test Products"
  38. depends on MACH_U300
  39. help
  40. Select this if you're developing on the
  41. S365/B365 test products.
  42. endchoice
  43. config U300_DEBUG
  44. bool "Debug support for U300"
  45. depends on PM
  46. help
  47. Debug support for U300 in sysfs, procfs etc.
  48. config MACH_U300_SPIDUMMY
  49. bool "SSP/SPI dummy chip"
  50. select SPI
  51. select SPI_MASTER
  52. select SPI_PL022
  53. help
  54. This creates a small kernel module that creates a dummy
  55. SPI device to be used for loopback tests. Regularly used
  56. to test reference designs. If you're not testing SPI,
  57. you don't need it. Selecting this will activate the
  58. SPI framework and ARM PL022 support.
  59. endmenu
  60. endif