Kconfig 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  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_I2C1
  75. select S5PV310_SETUP_I2C1
  76. help
  77. Machine support for Samsung Mobile Universal S5PC210 Reference
  78. Board. S5PC210(MCP) is one of package option of S5PV310
  79. endmenu
  80. menu "S5PV310 Machines"
  81. config MACH_SMDKV310
  82. bool "SMDKV310"
  83. select CPU_S5PV310
  84. select S3C_DEV_RTC
  85. select S3C_DEV_WDT
  86. select S3C_DEV_HSMMC
  87. select S3C_DEV_HSMMC1
  88. select S3C_DEV_HSMMC2
  89. select S3C_DEV_HSMMC3
  90. select S5PV310_DEV_PD
  91. select S5PV310_SETUP_SDHCI
  92. help
  93. Machine support for Samsung SMDKV310
  94. endmenu
  95. comment "Configuration for HSMMC bus width"
  96. menu "Use 8-bit bus width"
  97. config S5PV310_SDHCI_CH0_8BIT
  98. bool "Channel 0 with 8-bit bus"
  99. help
  100. Support HSMMC Channel 0 8-bit bus.
  101. If selected, Channel 1 is disabled.
  102. config S5PV310_SDHCI_CH2_8BIT
  103. bool "Channel 2 with 8-bit bus"
  104. help
  105. Support HSMMC Channel 2 8-bit bus.
  106. If selected, Channel 3 is disabled.
  107. endmenu
  108. endif