Kconfig 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. # arch/arm/mach-exynos/Kconfig
  2. #
  3. # Copyright (c) 2010-2011 Samsung Electronics Co., Ltd.
  4. # http://www.samsung.com/
  5. #
  6. # Licensed under GPLv2
  7. # Configuration options for the EXYNOS4
  8. if ARCH_EXYNOS
  9. menu "SAMSUNG EXYNOS SoCs Support"
  10. config ARCH_EXYNOS4
  11. bool "SAMSUNG EXYNOS4"
  12. default y
  13. select HAVE_ARM_SCU if SMP
  14. select HAVE_SMP
  15. select MIGHT_HAVE_CACHE_L2X0
  16. help
  17. Samsung EXYNOS4 SoCs based systems
  18. config ARCH_EXYNOS5
  19. bool "SAMSUNG EXYNOS5"
  20. select HAVE_ARM_SCU if SMP
  21. select HAVE_SMP
  22. help
  23. Samsung EXYNOS5 (Cortex-A15) SoC based systems
  24. comment "EXYNOS SoCs"
  25. config CPU_EXYNOS4210
  26. bool "SAMSUNG EXYNOS4210"
  27. default y
  28. depends on ARCH_EXYNOS4
  29. select ARM_CPU_SUSPEND if PM
  30. select PM_GENERIC_DOMAINS
  31. select S5P_PM if PM
  32. select S5P_SLEEP if PM
  33. select SAMSUNG_DMADEV
  34. help
  35. Enable EXYNOS4210 CPU support
  36. config SOC_EXYNOS4212
  37. bool "SAMSUNG EXYNOS4212"
  38. default y
  39. depends on ARCH_EXYNOS4
  40. select S5P_PM if PM
  41. select S5P_SLEEP if PM
  42. select SAMSUNG_DMADEV
  43. help
  44. Enable EXYNOS4212 SoC support
  45. config SOC_EXYNOS4412
  46. bool "SAMSUNG EXYNOS4412"
  47. default y
  48. depends on ARCH_EXYNOS4
  49. select SAMSUNG_DMADEV
  50. help
  51. Enable EXYNOS4412 SoC support
  52. config SOC_EXYNOS5250
  53. bool "SAMSUNG EXYNOS5250"
  54. default y
  55. depends on ARCH_EXYNOS5
  56. select PM_GENERIC_DOMAINS if PM
  57. select S5P_PM if PM
  58. select S5P_SLEEP if PM
  59. select S5P_DEV_MFC
  60. select SAMSUNG_DMADEV
  61. help
  62. Enable EXYNOS5250 SoC support
  63. config SOC_EXYNOS5440
  64. bool "SAMSUNG EXYNOS5440"
  65. default y
  66. depends on ARCH_EXYNOS5
  67. select ARCH_HAS_OPP
  68. select ARM_ARCH_TIMER
  69. select AUTO_ZRELADDR
  70. select PINCTRL
  71. select PINCTRL_EXYNOS5440
  72. select PM_OPP
  73. help
  74. Enable EXYNOS5440 SoC support
  75. comment "Flattened Device Tree based board for EXYNOS SoCs"
  76. config MACH_EXYNOS4_DT
  77. bool "Samsung Exynos4 Machine using device tree"
  78. default y
  79. depends on ARCH_EXYNOS4
  80. select ARM_AMBA
  81. select CLKSRC_OF
  82. select CLKSRC_SAMSUNG_PWM if CPU_EXYNOS4210
  83. select CPU_EXYNOS4210
  84. select KEYBOARD_SAMSUNG if INPUT_KEYBOARD
  85. select PINCTRL
  86. select PINCTRL_EXYNOS
  87. select S5P_DEV_MFC
  88. help
  89. Machine support for Samsung Exynos4 machine with device tree enabled.
  90. Select this if a fdt blob is available for the Exynos4 SoC based board.
  91. Note: This is under development and not all peripherals can be supported
  92. with this machine file.
  93. config MACH_EXYNOS5_DT
  94. bool "SAMSUNG EXYNOS5 Machine using device tree"
  95. default y
  96. depends on ARCH_EXYNOS5
  97. select ARM_AMBA
  98. select CLKSRC_OF
  99. help
  100. Machine support for Samsung EXYNOS5 machine with device tree enabled.
  101. Select this if a fdt blob is available for the EXYNOS5 SoC based board.
  102. if ARCH_EXYNOS4
  103. comment "Configuration for HSMMC 8-bit bus width"
  104. config EXYNOS4_SDHCI_CH0_8BIT
  105. bool "Channel 0 with 8-bit bus"
  106. help
  107. Support HSMMC Channel 0 8-bit bus.
  108. If selected, Channel 1 is disabled.
  109. config EXYNOS4_SDHCI_CH2_8BIT
  110. bool "Channel 2 with 8-bit bus"
  111. help
  112. Support HSMMC Channel 2 8-bit bus.
  113. If selected, Channel 3 is disabled.
  114. endif
  115. endmenu
  116. endif