Kconfig 2.3 KB

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