Kconfig 2.9 KB
Newer Older
1
# arch/arm/mach-exynos/Kconfig
2
#
3
# Copyright (c) 2010-2011 Samsung Electronics Co., Ltd.
4 5 6 7
#		http://www.samsung.com/
#
# Licensed under GPLv2

8
# Configuration options for the EXYNOS4
9

10 11 12 13 14 15
if ARCH_EXYNOS

menu "SAMSUNG EXYNOS SoCs Support"

config ARCH_EXYNOS4
	bool "SAMSUNG EXYNOS4"
16
	default y
17
	select HAVE_ARM_SCU if SMP
18
	select HAVE_SMP
19
	select MIGHT_HAVE_CACHE_L2X0
20 21 22
	help
	  Samsung EXYNOS4 SoCs based systems

23 24
config ARCH_EXYNOS5
	bool "SAMSUNG EXYNOS5"
25
	select HAVE_ARM_SCU if SMP
26 27 28
	select HAVE_SMP
	help
	  Samsung EXYNOS5 (Cortex-A15) SoC based systems
29 30

comment "EXYNOS SoCs"
31

32
config CPU_EXYNOS4210
33 34 35
	bool "SAMSUNG EXYNOS4210"
	default y
	depends on ARCH_EXYNOS4
36
	select ARM_CPU_SUSPEND if PM
37
	select PM_GENERIC_DOMAINS
38
	select S5P_PM if PM
39
	select S5P_SLEEP if PM
40
	select SAMSUNG_DMADEV
41
	help
42
	  Enable EXYNOS4210 CPU support
43

44
config SOC_EXYNOS4212
45 46 47
	bool "SAMSUNG EXYNOS4212"
	default y
	depends on ARCH_EXYNOS4
48
	select S5P_PM if PM
49
	select S5P_SLEEP if PM
50
	select SAMSUNG_DMADEV
51 52 53
	help
	  Enable EXYNOS4212 SoC support

54
config SOC_EXYNOS4412
55 56 57
	bool "SAMSUNG EXYNOS4412"
	default y
	depends on ARCH_EXYNOS4
58
	select SAMSUNG_DMADEV
59 60 61
	help
	  Enable EXYNOS4412 SoC support

62 63 64 65
config SOC_EXYNOS5250
	bool "SAMSUNG EXYNOS5250"
	default y
	depends on ARCH_EXYNOS5
66
	select PM_GENERIC_DOMAINS if PM
67 68
	select S5P_PM if PM
	select S5P_SLEEP if PM
69
	select S5P_DEV_MFC
70
	select SAMSUNG_DMADEV
71 72 73
	help
	  Enable EXYNOS5250 SoC support

74 75 76 77
config SOC_EXYNOS5440
	bool "SAMSUNG EXYNOS5440"
	default y
	depends on ARCH_EXYNOS5
78
	select ARCH_HAS_OPP
79 80
	select ARM_ARCH_TIMER
	select AUTO_ZRELADDR
81 82
	select PINCTRL
	select PINCTRL_EXYNOS5440
83
	select PM_OPP
84 85 86
	help
	  Enable EXYNOS5440 SoC support

87
comment "Flattened Device Tree based board for EXYNOS SoCs"
88 89 90

config MACH_EXYNOS4_DT
	bool "Samsung Exynos4 Machine using device tree"
91
	default y
92
	depends on ARCH_EXYNOS4
93
	select ARM_AMBA
94
	select CLKSRC_OF
95
	select CLKSRC_SAMSUNG_PWM if CPU_EXYNOS4210
96
	select CPU_EXYNOS4210
97
	select KEYBOARD_SAMSUNG if INPUT_KEYBOARD
98
	select PINCTRL
99
	select PINCTRL_EXYNOS
100
	select S5P_DEV_MFC
101
	select USE_OF
102 103 104 105 106 107
	help
	  Machine support for Samsung Exynos4 machine with device tree enabled.
	  Select this if a fdt blob is available for the Exynos4 SoC based board.
	  Note: This is under development and not all peripherals can be supported
	  with this machine file.

108 109
config MACH_EXYNOS5_DT
	bool "SAMSUNG EXYNOS5 Machine using device tree"
110
	default y
111
	depends on ARCH_EXYNOS5
112
	select ARM_AMBA
113
	select CLKSRC_OF
114 115
	select USE_OF
	help
116 117
	  Machine support for Samsung EXYNOS5 machine with device tree enabled.
	  Select this if a fdt blob is available for the EXYNOS5 SoC based board.
118

119
if ARCH_EXYNOS4
120

121
comment "Configuration for HSMMC 8-bit bus width"
122

123
config EXYNOS4_SDHCI_CH0_8BIT
124 125 126 127 128
	bool "Channel 0 with 8-bit bus"
	help
	  Support HSMMC Channel 0 8-bit bus.
	  If selected, Channel 1 is disabled.

129
config EXYNOS4_SDHCI_CH2_8BIT
130 131 132 133
	bool "Channel 2 with 8-bit bus"
	help
	  Support HSMMC Channel 2 8-bit bus.
	  If selected, Channel 3 is disabled.
134
endif
135 136 137

endmenu

138
endif