Kconfig 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  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_DEV_PD
  15. bool
  16. help
  17. Compile in platform device definitions for Power Domain
  18. config S5PV310_SETUP_I2C1
  19. bool
  20. help
  21. Common setup code for i2c bus 1.
  22. config S5PV310_SETUP_I2C2
  23. bool
  24. help
  25. Common setup code for i2c bus 2.
  26. config S5PV310_SETUP_I2C3
  27. bool
  28. help
  29. Common setup code for i2c bus 3.
  30. config S5PV310_SETUP_I2C4
  31. bool
  32. help
  33. Common setup code for i2c bus 4.
  34. config S5PV310_SETUP_I2C5
  35. bool
  36. help
  37. Common setup code for i2c bus 5.
  38. config S5PV310_SETUP_I2C6
  39. bool
  40. help
  41. Common setup code for i2c bus 6.
  42. config S5PV310_SETUP_I2C7
  43. bool
  44. help
  45. Common setup code for i2c bus 7.
  46. config S5PV310_SETUP_SDHCI
  47. bool
  48. select S5PV310_SETUP_SDHCI_GPIO
  49. help
  50. Internal helper functions for S5PV310 based SDHCI systems.
  51. config S5PV310_SETUP_SDHCI_GPIO
  52. bool
  53. help
  54. Common setup code for SDHCI gpio.
  55. config S5PV310_DEV_SYSMMU
  56. bool
  57. help
  58. Common setup code for SYSTEM MMU in S5PV310
  59. # machine support
  60. menu "S5PC210 Machines"
  61. config MACH_SMDKC210
  62. bool "SMDKC210"
  63. select CPU_S5PV310
  64. select S3C_DEV_RTC
  65. select S3C_DEV_WDT
  66. select S3C_DEV_I2C1
  67. select S3C_DEV_HSMMC
  68. select S3C_DEV_HSMMC1
  69. select S3C_DEV_HSMMC2
  70. select S3C_DEV_HSMMC3
  71. select S5PV310_DEV_PD
  72. select S5PV310_SETUP_I2C1
  73. select S5PV310_SETUP_SDHCI
  74. select S5PV310_DEV_SYSMMU
  75. help
  76. Machine support for Samsung SMDKC210
  77. S5PC210(MCP) is one of package option of S5PV310
  78. config MACH_UNIVERSAL_C210
  79. bool "Mobile UNIVERSAL_C210 Board"
  80. select CPU_S5PV310
  81. select S5P_DEV_ONENAND
  82. select S3C_DEV_HSMMC
  83. select S3C_DEV_HSMMC2
  84. select S3C_DEV_HSMMC3
  85. select S5PV310_SETUP_SDHCI
  86. select S3C_DEV_I2C1
  87. select S5PV310_SETUP_I2C1
  88. help
  89. Machine support for Samsung Mobile Universal S5PC210 Reference
  90. Board. S5PC210(MCP) is one of package option of S5PV310
  91. endmenu
  92. menu "S5PV310 Machines"
  93. config MACH_SMDKV310
  94. bool "SMDKV310"
  95. select CPU_S5PV310
  96. select S3C_DEV_RTC
  97. select S3C_DEV_WDT
  98. select S3C_DEV_I2C1
  99. select S3C_DEV_HSMMC
  100. select S3C_DEV_HSMMC1
  101. select S3C_DEV_HSMMC2
  102. select S3C_DEV_HSMMC3
  103. select S5PV310_DEV_PD
  104. select S5PV310_SETUP_I2C1
  105. select S5PV310_SETUP_SDHCI
  106. help
  107. Machine support for Samsung SMDKV310
  108. endmenu
  109. comment "Configuration for HSMMC bus width"
  110. menu "Use 8-bit bus width"
  111. config S5PV310_SDHCI_CH0_8BIT
  112. bool "Channel 0 with 8-bit bus"
  113. help
  114. Support HSMMC Channel 0 8-bit bus.
  115. If selected, Channel 1 is disabled.
  116. config S5PV310_SDHCI_CH2_8BIT
  117. bool "Channel 2 with 8-bit bus"
  118. help
  119. Support HSMMC Channel 2 8-bit bus.
  120. If selected, Channel 3 is disabled.
  121. endmenu
  122. endif