Kconfig 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  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_SDHCI
  22. bool
  23. select S5PV310_SETUP_SDHCI_GPIO
  24. help
  25. Internal helper functions for S5PV310 based SDHCI systems.
  26. config S5PV310_SETUP_SDHCI_GPIO
  27. bool
  28. help
  29. Common setup code for SDHCI gpio.
  30. # machine support
  31. menu "S5PC210 Machines"
  32. config MACH_SMDKC210
  33. bool "SMDKC210"
  34. select CPU_S5PV310
  35. select S3C_DEV_RTC
  36. select S3C_DEV_WDT
  37. select S3C_DEV_HSMMC
  38. select S3C_DEV_HSMMC1
  39. select S3C_DEV_HSMMC2
  40. select S3C_DEV_HSMMC3
  41. select S5PV310_SETUP_SDHCI
  42. help
  43. Machine support for Samsung SMDKC210
  44. S5PC210(MCP) is one of package option of S5PV310
  45. config MACH_UNIVERSAL_C210
  46. bool "Mobile UNIVERSAL_C210 Board"
  47. select CPU_S5PV310
  48. select S5P_DEV_ONENAND
  49. select S3C_DEV_I2C1
  50. select S5PV310_SETUP_I2C1
  51. help
  52. Machine support for Samsung Mobile Universal S5PC210 Reference
  53. Board. S5PC210(MCP) is one of package option of S5PV310
  54. endmenu
  55. menu "S5PV310 Machines"
  56. config MACH_SMDKV310
  57. bool "SMDKV310"
  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_SETUP_SDHCI
  66. help
  67. Machine support for Samsung SMDKV310
  68. endmenu
  69. comment "Configuration for HSMMC bus width"
  70. menu "Use 8-bit bus width"
  71. config S5PV310_SDHCI_CH0_8BIT
  72. bool "Channel 0 with 8-bit bus"
  73. help
  74. Support HSMMC Channel 0 8-bit bus.
  75. If selected, Channel 1 is disabled.
  76. config S5PV310_SDHCI_CH2_8BIT
  77. bool "Channel 2 with 8-bit bus"
  78. help
  79. Support HSMMC Channel 2 8-bit bus.
  80. If selected, Channel 3 is disabled.
  81. endmenu
  82. endif