Kconfig 2.4 KB

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