Kconfig 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  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. help
  50. Machine support for Samsung Mobile Universal S5PC210 Reference
  51. Board. S5PC210(MCP) is one of package option of S5PV310
  52. endmenu
  53. menu "S5PV310 Machines"
  54. config MACH_SMDKV310
  55. bool "SMDKV310"
  56. select CPU_S5PV310
  57. select S3C_DEV_RTC
  58. select S3C_DEV_WDT
  59. select S3C_DEV_HSMMC
  60. select S3C_DEV_HSMMC1
  61. select S3C_DEV_HSMMC2
  62. select S3C_DEV_HSMMC3
  63. select S5PV310_SETUP_SDHCI
  64. help
  65. Machine support for Samsung SMDKV310
  66. endmenu
  67. comment "Configuration for HSMMC bus width"
  68. menu "Use 8-bit bus width"
  69. config S5PV310_SDHCI_CH0_8BIT
  70. bool "Channel 0 with 8-bit bus"
  71. help
  72. Support HSMMC Channel 0 8-bit bus.
  73. If selected, Channel 1 is disabled.
  74. config S5PV310_SDHCI_CH2_8BIT
  75. bool "Channel 2 with 8-bit bus"
  76. help
  77. Support HSMMC Channel 2 8-bit bus.
  78. If selected, Channel 3 is disabled.
  79. endmenu
  80. endif