Kconfig 1.8 KB

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