Kconfig 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  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. # machine support
  56. menu "S5PC210 Machines"
  57. config MACH_SMDKC210
  58. bool "SMDKC210"
  59. select CPU_S5PV310
  60. select S3C_DEV_RTC
  61. select S3C_DEV_WDT
  62. select S3C_DEV_I2C1
  63. select S3C_DEV_HSMMC
  64. select S3C_DEV_HSMMC1
  65. select S3C_DEV_HSMMC2
  66. select S3C_DEV_HSMMC3
  67. select S5PV310_DEV_PD
  68. select S5PV310_SETUP_I2C1
  69. select S5PV310_SETUP_SDHCI
  70. help
  71. Machine support for Samsung SMDKC210
  72. S5PC210(MCP) is one of package option of S5PV310
  73. config MACH_UNIVERSAL_C210
  74. bool "Mobile UNIVERSAL_C210 Board"
  75. select CPU_S5PV310
  76. select S5P_DEV_ONENAND
  77. select S3C_DEV_HSMMC
  78. select S3C_DEV_HSMMC2
  79. select S3C_DEV_HSMMC3
  80. select S5PV310_SETUP_SDHCI
  81. select S3C_DEV_I2C1
  82. select S5PV310_SETUP_I2C1
  83. help
  84. Machine support for Samsung Mobile Universal S5PC210 Reference
  85. Board. S5PC210(MCP) is one of package option of S5PV310
  86. endmenu
  87. menu "S5PV310 Machines"
  88. config MACH_SMDKV310
  89. bool "SMDKV310"
  90. select CPU_S5PV310
  91. select S3C_DEV_RTC
  92. select S3C_DEV_WDT
  93. select S3C_DEV_I2C1
  94. select S3C_DEV_HSMMC
  95. select S3C_DEV_HSMMC1
  96. select S3C_DEV_HSMMC2
  97. select S3C_DEV_HSMMC3
  98. select S5PV310_DEV_PD
  99. select S5PV310_SETUP_I2C1
  100. select S5PV310_SETUP_SDHCI
  101. help
  102. Machine support for Samsung SMDKV310
  103. endmenu
  104. comment "Configuration for HSMMC bus width"
  105. menu "Use 8-bit bus width"
  106. config S5PV310_SDHCI_CH0_8BIT
  107. bool "Channel 0 with 8-bit bus"
  108. help
  109. Support HSMMC Channel 0 8-bit bus.
  110. If selected, Channel 1 is disabled.
  111. config S5PV310_SDHCI_CH2_8BIT
  112. bool "Channel 2 with 8-bit bus"
  113. help
  114. Support HSMMC Channel 2 8-bit bus.
  115. If selected, Channel 3 is disabled.
  116. endmenu
  117. endif