diff options
Diffstat (limited to 'arch/arm/plat-s3c24xx/Kconfig')
-rw-r--r-- | arch/arm/plat-s3c24xx/Kconfig | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/arch/arm/plat-s3c24xx/Kconfig b/arch/arm/plat-s3c24xx/Kconfig index 5b0bc914f58e..9c7aca489643 100644 --- a/arch/arm/plat-s3c24xx/Kconfig +++ b/arch/arm/plat-s3c24xx/Kconfig | |||
@@ -10,6 +10,7 @@ config PLAT_S3C24XX | |||
10 | default y | 10 | default y |
11 | select NO_IOPORT | 11 | select NO_IOPORT |
12 | select ARCH_REQUIRE_GPIOLIB | 12 | select ARCH_REQUIRE_GPIOLIB |
13 | select S3C_DEVICE_NAND | ||
13 | help | 14 | help |
14 | Base platform code for any Samsung S3C24XX device | 15 | Base platform code for any Samsung S3C24XX device |
15 | 16 | ||
@@ -34,6 +35,40 @@ config CPU_S3C244X | |||
34 | help | 35 | help |
35 | Support for S3C2440 and S3C2442 Samsung Mobile CPU based systems. | 36 | Support for S3C2440 and S3C2442 Samsung Mobile CPU based systems. |
36 | 37 | ||
38 | config S3C2440_CPUFREQ | ||
39 | bool "S3C2440/S3C2442 CPU Frequency scaling support" | ||
40 | depends on CPU_FREQ_S3C24XX && (CPU_S3C2440 || CPU_S3C2442) | ||
41 | select S3C2410_CPUFREQ_UTILS | ||
42 | default y | ||
43 | help | ||
44 | CPU Frequency scaling support for S3C2440 and S3C2442 SoC CPUs. | ||
45 | |||
46 | config S3C2440_XTAL_12000000 | ||
47 | bool | ||
48 | help | ||
49 | Indicate that the build needs to support 12MHz system | ||
50 | crystal. | ||
51 | |||
52 | config S3C2440_XTAL_16934400 | ||
53 | bool | ||
54 | help | ||
55 | Indicate that the build needs to support 16.9344MHz system | ||
56 | crystal. | ||
57 | |||
58 | config S3C2440_PLL_12000000 | ||
59 | bool | ||
60 | depends on S3C2440_CPUFREQ && S3C2440_XTAL_12000000 | ||
61 | default y if CPU_FREQ_S3C24XX_PLL | ||
62 | help | ||
63 | PLL tables for S3C2440 or S3C2442 CPUs with 12MHz crystals. | ||
64 | |||
65 | config S3C2440_PLL_16934400 | ||
66 | bool | ||
67 | depends on S3C2440_CPUFREQ && S3C2440_XTAL_16934400 | ||
68 | default y if CPU_FREQ_S3C24XX_PLL | ||
69 | help | ||
70 | PLL tables for S3C2440 or S3C2442 CPUs with 16.934MHz crystals. | ||
71 | |||
37 | config S3C24XX_PWM | 72 | config S3C24XX_PWM |
38 | bool "PWM device support" | 73 | bool "PWM device support" |
39 | select HAVE_PWM | 74 | select HAVE_PWM |
@@ -105,8 +140,39 @@ config S3C24XX_SPI_BUS1_GPG5_GPG6_GPG7 | |||
105 | SPI GPIO configuration code for BUS 1 when connected to | 140 | SPI GPIO configuration code for BUS 1 when connected to |
106 | GPG5, GPG6 and GPG7. | 141 | GPG5, GPG6 and GPG7. |
107 | 142 | ||
143 | config S3C24XX_SPI_BUS1_GPD8_GPD9_GPD10 | ||
144 | bool | ||
145 | help | ||
146 | SPI GPIO configuration code for BUS 1 when connected to | ||
147 | GPD8, GPD9 and GPD10. | ||
148 | |||
108 | # common code for s3c24xx based machines, such as the SMDKs. | 149 | # common code for s3c24xx based machines, such as the SMDKs. |
109 | 150 | ||
151 | # cpu frequency items common between s3c2410 and s3c2440/s3c2442 | ||
152 | |||
153 | config S3C2410_IOTIMING | ||
154 | bool | ||
155 | depends on CPU_FREQ_S3C24XX | ||
156 | help | ||
157 | Internal node to select io timing code that is common to the s3c2410 | ||
158 | and s3c2440/s3c2442 cpu frequency support. | ||
159 | |||
160 | config S3C2410_CPUFREQ_UTILS | ||
161 | bool | ||
162 | depends on CPU_FREQ_S3C24XX | ||
163 | help | ||
164 | Internal node to select timing code that is common to the s3c2410 | ||
165 | and s3c2440/s3c244 cpu frequency support. | ||
166 | |||
167 | # cpu frequency support common to s3c2412, s3c2413 and s3c2442 | ||
168 | |||
169 | config S3C2412_IOTIMING | ||
170 | bool | ||
171 | depends on CPU_FREQ_S3C24XX && (CPU_S3C2412 || CPU_S3C2443) | ||
172 | help | ||
173 | Intel node to select io timing code that is common to the s3c2412 | ||
174 | and the s3c2443. | ||
175 | |||
110 | config MACH_SMDK | 176 | config MACH_SMDK |
111 | bool | 177 | bool |
112 | help | 178 | help |