Kconfig 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. # arch/arm/mach-exynos4/Kconfig
  2. #
  3. # Copyright (c) 2010-2011 Samsung Electronics Co., Ltd.
  4. # http://www.samsung.com/
  5. #
  6. # Licensed under GPLv2
  7. # Configuration options for the EXYNOS4
  8. if ARCH_EXYNOS4
  9. config CPU_EXYNOS4210
  10. bool
  11. select S3C_PL330_DMA
  12. help
  13. Enable EXYNOS4210 CPU support
  14. config EXYNOS4_DEV_PD
  15. bool
  16. help
  17. Compile in platform device definitions for Power Domain
  18. config EXYNOS4_DEV_SYSMMU
  19. bool
  20. help
  21. Common setup code for SYSTEM MMU in EXYNOS4
  22. config EXYNOS4_SETUP_I2C1
  23. bool
  24. help
  25. Common setup code for i2c bus 1.
  26. config EXYNOS4_SETUP_I2C2
  27. bool
  28. help
  29. Common setup code for i2c bus 2.
  30. config EXYNOS4_SETUP_I2C3
  31. bool
  32. help
  33. Common setup code for i2c bus 3.
  34. config EXYNOS4_SETUP_I2C4
  35. bool
  36. help
  37. Common setup code for i2c bus 4.
  38. config EXYNOS4_SETUP_I2C5
  39. bool
  40. help
  41. Common setup code for i2c bus 5.
  42. config EXYNOS4_SETUP_I2C6
  43. bool
  44. help
  45. Common setup code for i2c bus 6.
  46. config EXYNOS4_SETUP_I2C7
  47. bool
  48. help
  49. Common setup code for i2c bus 7.
  50. config EXYNOS4_SETUP_SDHCI
  51. bool
  52. select EXYNOS4_SETUP_SDHCI_GPIO
  53. help
  54. Internal helper functions for EXYNOS4 based SDHCI systems.
  55. config EXYNOS4_SETUP_SDHCI_GPIO
  56. bool
  57. help
  58. Common setup code for SDHCI gpio.
  59. # machine support
  60. menu "EXYNOS4 Machines"
  61. config MACH_SMDKC210
  62. bool "SMDKC210"
  63. select CPU_EXYNOS4210
  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 EXYNOS4_DEV_PD
  72. select EXYNOS4_DEV_SYSMMU
  73. select EXYNOS4_SETUP_I2C1
  74. select EXYNOS4_SETUP_SDHCI
  75. help
  76. Machine support for Samsung SMDKC210
  77. config MACH_SMDKV310
  78. bool "SMDKV310"
  79. select CPU_EXYNOS4210
  80. select S3C_DEV_RTC
  81. select S3C_DEV_WDT
  82. select S3C_DEV_I2C1
  83. select S3C_DEV_HSMMC
  84. select S3C_DEV_HSMMC1
  85. select S3C_DEV_HSMMC2
  86. select S3C_DEV_HSMMC3
  87. select EXYNOS4_DEV_PD
  88. select EXYNOS4_DEV_SYSMMU
  89. select EXYNOS4_SETUP_I2C1
  90. select EXYNOS4_SETUP_SDHCI
  91. help
  92. Machine support for Samsung SMDKV310
  93. config MACH_UNIVERSAL_C210
  94. bool "Mobile UNIVERSAL_C210 Board"
  95. select CPU_EXYNOS4210
  96. select S3C_DEV_HSMMC
  97. select S3C_DEV_HSMMC2
  98. select S3C_DEV_HSMMC3
  99. select S3C_DEV_I2C1
  100. select S5P_DEV_ONENAND
  101. select EXYNOS4_SETUP_I2C1
  102. select EXYNOS4_SETUP_SDHCI
  103. help
  104. Machine support for Samsung Mobile Universal S5PC210 Reference
  105. Board.
  106. endmenu
  107. comment "Configuration for HSMMC bus width"
  108. menu "Use 8-bit bus width"
  109. config EXYNOS4_SDHCI_CH0_8BIT
  110. bool "Channel 0 with 8-bit bus"
  111. help
  112. Support HSMMC Channel 0 8-bit bus.
  113. If selected, Channel 1 is disabled.
  114. config EXYNOS4_SDHCI_CH2_8BIT
  115. bool "Channel 2 with 8-bit bus"
  116. help
  117. Support HSMMC Channel 2 8-bit bus.
  118. If selected, Channel 3 is disabled.
  119. endmenu
  120. endif