Kconfig 2.5 KB

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