Kconfig 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. # arch/arm/mach-s5pv310/Kconfig
  2. #
  3. # Copyright (c) 2010 Samsung Electronics Co., Ltd.
  4. # http://www.samsung.com/
  5. #
  6. # Licensed under GPLv2
  7. # Configuration options for the S5PV310
  8. if ARCH_S5PV310
  9. config CPU_S5PV310
  10. bool
  11. select S3C_PL330_DMA
  12. help
  13. Enable S5PV310 CPU support
  14. config S5PV310_SETUP_I2C1
  15. bool
  16. help
  17. Common setup code for i2c bus 1.
  18. config S5PV310_SETUP_I2C2
  19. bool
  20. help
  21. Common setup code for i2c bus 2.
  22. config S5PV310_SETUP_I2C3
  23. bool
  24. help
  25. Common setup code for i2c bus 3.
  26. config S5PV310_SETUP_I2C4
  27. bool
  28. help
  29. Common setup code for i2c bus 4.
  30. config S5PV310_SETUP_I2C5
  31. bool
  32. help
  33. Common setup code for i2c bus 5.
  34. config S5PV310_SETUP_I2C6
  35. bool
  36. help
  37. Common setup code for i2c bus 6.
  38. config S5PV310_SETUP_I2C7
  39. bool
  40. help
  41. Common setup code for i2c bus 7.
  42. config S5PV310_SETUP_SDHCI
  43. bool
  44. select S5PV310_SETUP_SDHCI_GPIO
  45. help
  46. Internal helper functions for S5PV310 based SDHCI systems.
  47. config S5PV310_SETUP_SDHCI_GPIO
  48. bool
  49. help
  50. Common setup code for SDHCI gpio.
  51. # machine support
  52. menu "S5PC210 Machines"
  53. config MACH_SMDKC210
  54. bool "SMDKC210"
  55. select CPU_S5PV310
  56. select S3C_DEV_RTC
  57. select S3C_DEV_WDT
  58. select S3C_DEV_HSMMC
  59. select S3C_DEV_HSMMC1
  60. select S3C_DEV_HSMMC2
  61. select S3C_DEV_HSMMC3
  62. select S5PV310_SETUP_SDHCI
  63. help
  64. Machine support for Samsung SMDKC210
  65. S5PC210(MCP) is one of package option of S5PV310
  66. config MACH_UNIVERSAL_C210
  67. bool "Mobile UNIVERSAL_C210 Board"
  68. select CPU_S5PV310
  69. select S5P_DEV_ONENAND
  70. select S3C_DEV_I2C1
  71. select S5PV310_SETUP_I2C1
  72. help
  73. Machine support for Samsung Mobile Universal S5PC210 Reference
  74. Board. S5PC210(MCP) is one of package option of S5PV310
  75. endmenu
  76. menu "S5PV310 Machines"
  77. config MACH_SMDKV310
  78. bool "SMDKV310"
  79. select CPU_S5PV310
  80. select S3C_DEV_RTC
  81. select S3C_DEV_WDT
  82. select S3C_DEV_HSMMC
  83. select S3C_DEV_HSMMC1
  84. select S3C_DEV_HSMMC2
  85. select S3C_DEV_HSMMC3
  86. select S5PV310_SETUP_SDHCI
  87. help
  88. Machine support for Samsung SMDKV310
  89. endmenu
  90. comment "Configuration for HSMMC bus width"
  91. menu "Use 8-bit bus width"
  92. config S5PV310_SDHCI_CH0_8BIT
  93. bool "Channel 0 with 8-bit bus"
  94. help
  95. Support HSMMC Channel 0 8-bit bus.
  96. If selected, Channel 1 is disabled.
  97. config S5PV310_SDHCI_CH2_8BIT
  98. bool "Channel 2 with 8-bit bus"
  99. help
  100. Support HSMMC Channel 2 8-bit bus.
  101. If selected, Channel 3 is disabled.
  102. endmenu
  103. endif