Kukjin Kim | 85fd6d6 | 2012-02-06 09:38:19 +0900 | [diff] [blame] | 1 | # arch/arm/mach-s3c24xx/Kconfig |
| 2 | # |
| 3 | # Copyright (c) 2012 Samsung Electronics Co., Ltd. |
| 4 | # http://www.samsung.com/ |
| 5 | # |
| 6 | # Copyright 2007 Simtec Electronics |
| 7 | # |
| 8 | # Licensed under GPLv2 |
| 9 | |
| 10 | if ARCH_S3C24XX |
| 11 | |
| 12 | menu "SAMSUNG S3C24XX SoCs Support" |
| 13 | |
| 14 | comment "S3C24XX SoCs" |
| 15 | |
| 16 | config CPU_S3C2410 |
| 17 | bool "SAMSUNG S3C2410" |
| 18 | default y |
| 19 | select CPU_ARM920T |
Kukjin Kim | 85fd6d6 | 2012-02-06 09:38:19 +0900 | [diff] [blame] | 20 | select CPU_LLSERIAL_S3C2410 |
Russell King | b1b3f49 | 2012-10-06 17:12:25 +0100 | [diff] [blame] | 21 | select S3C2410_CLOCK |
Kukjin Kim | 85fd6d6 | 2012-02-06 09:38:19 +0900 | [diff] [blame] | 22 | select S3C2410_CPUFREQ if CPU_FREQ_S3C24XX |
Russell King | b1b3f49 | 2012-10-06 17:12:25 +0100 | [diff] [blame] | 23 | select S3C2410_PM if PM |
Kukjin Kim | 85fd6d6 | 2012-02-06 09:38:19 +0900 | [diff] [blame] | 24 | help |
| 25 | Support for S3C2410 and S3C2410A family from the S3C24XX line |
| 26 | of Samsung Mobile CPUs. |
| 27 | |
Kukjin Kim | 85e2a26 | 2012-02-06 10:02:01 +0900 | [diff] [blame] | 28 | config CPU_S3C2412 |
| 29 | bool "SAMSUNG S3C2412" |
| 30 | depends on ARCH_S3C24XX |
| 31 | select CPU_ARM926T |
| 32 | select CPU_LLSERIAL_S3C2440 |
Kukjin Kim | 85e2a26 | 2012-02-06 10:02:01 +0900 | [diff] [blame] | 33 | select S3C2412_DMA if S3C24XX_DMA |
Russell King | b1b3f49 | 2012-10-06 17:12:25 +0100 | [diff] [blame] | 34 | select S3C2412_PM if PM |
Kukjin Kim | 85e2a26 | 2012-02-06 10:02:01 +0900 | [diff] [blame] | 35 | help |
| 36 | Support for the S3C2412 and S3C2413 SoCs from the S3C24XX line |
| 37 | |
Kukjin Kim | 26febf8 | 2012-02-06 10:59:47 +0900 | [diff] [blame] | 38 | config CPU_S3C2416 |
| 39 | bool "SAMSUNG S3C2416/S3C2450" |
| 40 | depends on ARCH_S3C24XX |
| 41 | select CPU_ARM926T |
| 42 | select CPU_LLSERIAL_S3C2440 |
Russell King | b1b3f49 | 2012-10-06 17:12:25 +0100 | [diff] [blame] | 43 | select S3C2416_PM if PM |
Heiko Stuebner | 8c3d7c3 | 2012-03-03 07:49:12 +0900 | [diff] [blame] | 44 | select S3C2443_COMMON |
Heiko Stuebner | 46cdaba | 2012-03-07 01:53:17 -0800 | [diff] [blame] | 45 | select S3C2443_DMA if S3C24XX_DMA |
Russell King | b1b3f49 | 2012-10-06 17:12:25 +0100 | [diff] [blame] | 46 | select SAMSUNG_CLKSRC |
Kukjin Kim | 26febf8 | 2012-02-06 10:59:47 +0900 | [diff] [blame] | 47 | help |
| 48 | Support for the S3C2416 SoC from the S3C24XX line |
| 49 | |
Kukjin Kim | dd6f01b | 2012-02-06 13:10:11 +0900 | [diff] [blame] | 50 | config CPU_S3C2440 |
| 51 | bool "SAMSUNG S3C2440" |
| 52 | select CPU_ARM920T |
| 53 | select CPU_LLSERIAL_S3C2440 |
| 54 | select S3C2410_CLOCK |
| 55 | select S3C2410_PM if PM |
| 56 | select S3C2440_DMA if S3C24XX_DMA |
| 57 | help |
| 58 | Support for S3C2440 Samsung Mobile CPU based systems. |
| 59 | |
| 60 | config CPU_S3C2442 |
| 61 | bool "SAMSUNG S3C2442" |
| 62 | select CPU_ARM920T |
| 63 | select CPU_LLSERIAL_S3C2440 |
| 64 | select S3C2410_CLOCK |
| 65 | select S3C2410_PM if PM |
| 66 | help |
| 67 | Support for S3C2442 Samsung Mobile CPU based systems. |
| 68 | |
| 69 | config CPU_S3C244X |
| 70 | def_bool y |
| 71 | depends on CPU_S3C2440 || CPU_S3C2442 |
| 72 | |
Kukjin Kim | 84c028b | 2012-02-06 13:21:03 +0900 | [diff] [blame] | 73 | config CPU_S3C2443 |
| 74 | bool "SAMSUNG S3C2443" |
| 75 | depends on ARCH_S3C24XX |
| 76 | select CPU_ARM920T |
| 77 | select CPU_LLSERIAL_S3C2440 |
Heiko Stuebner | 8c3d7c3 | 2012-03-03 07:49:12 +0900 | [diff] [blame] | 78 | select S3C2443_COMMON |
Kukjin Kim | 84c028b | 2012-02-06 13:21:03 +0900 | [diff] [blame] | 79 | select S3C2443_DMA if S3C24XX_DMA |
Russell King | b1b3f49 | 2012-10-06 17:12:25 +0100 | [diff] [blame] | 80 | select SAMSUNG_CLKSRC |
Kukjin Kim | 84c028b | 2012-02-06 13:21:03 +0900 | [diff] [blame] | 81 | help |
| 82 | Support for the S3C2443 SoC from the S3C24XX line |
| 83 | |
Heiko Stuebner | 28c569f | 2012-03-07 01:47:01 -0800 | [diff] [blame] | 84 | # common code |
| 85 | |
| 86 | config S3C24XX_SMDK |
| 87 | bool |
| 88 | help |
| 89 | Common machine code for SMDK2410 and SMDK2440 |
| 90 | |
Heiko Stuebner | 9072dc9 | 2012-03-07 01:47:05 -0800 | [diff] [blame] | 91 | config S3C24XX_SIMTEC_AUDIO |
| 92 | bool |
| 93 | depends on (ARCH_BAST || MACH_VR1000 || MACH_OSIRIS || MACH_ANUBIS) |
| 94 | default y |
| 95 | help |
| 96 | Add audio devices for common Simtec S3C24XX boards |
| 97 | |
| 98 | config S3C24XX_SIMTEC_PM |
| 99 | bool |
| 100 | help |
| 101 | Common power management code for systems that are |
| 102 | compatible with the Simtec style of power management |
| 103 | |
Heiko Stuebner | ec2cc75 | 2012-03-07 01:47:11 -0800 | [diff] [blame] | 104 | config S3C24XX_SIMTEC_USB |
| 105 | bool |
| 106 | help |
| 107 | USB management code for common Simtec S3C24XX boards |
| 108 | |
Heiko Stuebner | 2c5689a | 2012-03-07 01:47:15 -0800 | [diff] [blame] | 109 | config S3C24XX_SETUP_TS |
| 110 | bool |
| 111 | help |
| 112 | Compile in platform device definition for Samsung TouchScreen. |
| 113 | |
Kukjin Kim | 85fd6d6 | 2012-02-06 09:38:19 +0900 | [diff] [blame] | 114 | config S3C2410_DMA |
| 115 | bool |
Kukjin Kim | dd6f01b | 2012-02-06 13:10:11 +0900 | [diff] [blame] | 116 | depends on S3C24XX_DMA && (CPU_S3C2410 || CPU_S3C2442) |
| 117 | default y if CPU_S3C2410 || CPU_S3C2442 |
Kukjin Kim | 85fd6d6 | 2012-02-06 09:38:19 +0900 | [diff] [blame] | 118 | help |
| 119 | DMA device selection for S3C2410 and compatible CPUs |
| 120 | |
| 121 | config S3C2410_PM |
| 122 | bool |
| 123 | help |
| 124 | Power Management code common to S3C2410 and better |
| 125 | |
Kukjin Kim | 7518dde | 2012-04-21 07:55:33 -0700 | [diff] [blame] | 126 | # cpu-specific sections |
| 127 | |
| 128 | if CPU_S3C2410 |
| 129 | |
Kukjin Kim | 98713e4 | 2013-01-21 14:51:08 -0800 | [diff] [blame] | 130 | config S3C2410_CPUFREQ |
| 131 | bool |
| 132 | depends on CPU_FREQ_S3C24XX && CPU_S3C2410 |
| 133 | select S3C2410_CPUFREQ_UTILS |
| 134 | help |
| 135 | CPU Frequency scaling support for S3C2410 |
| 136 | |
Kukjin Kim | 82c1871 | 2013-01-21 15:16:35 -0800 | [diff] [blame] | 137 | config S3C2410_PLL |
| 138 | bool |
| 139 | depends on S3C2410_CPUFREQ && CPU_FREQ_S3C24XX_PLL |
| 140 | default y |
| 141 | help |
| 142 | Select the PLL table for the S3C2410 |
| 143 | |
Heiko Stuebner | ec2cc75 | 2012-03-07 01:47:11 -0800 | [diff] [blame] | 144 | config S3C24XX_SIMTEC_NOR |
Kukjin Kim | 85fd6d6 | 2012-02-06 09:38:19 +0900 | [diff] [blame] | 145 | bool |
| 146 | help |
| 147 | Internal node to specify machine has simtec NOR mapping |
| 148 | |
| 149 | config MACH_BAST_IDE |
| 150 | bool |
| 151 | select HAVE_PATA_PLATFORM |
| 152 | help |
| 153 | Internal node for machines with an BAST style IDE |
| 154 | interface |
| 155 | |
| 156 | comment "S3C2410 Boards" |
| 157 | |
| 158 | # |
| 159 | # The "S3C2410 Boards" list is ordered alphabetically by option text. |
| 160 | # (without ARCH_ or MACH_) |
| 161 | # |
| 162 | |
| 163 | config MACH_AML_M5900 |
| 164 | bool "AML M5900 Series" |
Heiko Stuebner | 9072dc9 | 2012-03-07 01:47:05 -0800 | [diff] [blame] | 165 | select S3C24XX_SIMTEC_PM if PM |
Kukjin Kim | 85fd6d6 | 2012-02-06 09:38:19 +0900 | [diff] [blame] | 166 | select S3C_DEV_USB_HOST |
| 167 | help |
| 168 | Say Y here if you are using the American Microsystems M5900 Series |
| 169 | <http://www.amltd.com> |
| 170 | |
| 171 | config ARCH_BAST |
| 172 | bool "Simtec Electronics BAST (EB2410ITX)" |
Kukjin Kim | 85fd6d6 | 2012-02-06 09:38:19 +0900 | [diff] [blame] | 173 | select ISA |
Russell King | b1b3f49 | 2012-10-06 17:12:25 +0100 | [diff] [blame] | 174 | select MACH_BAST_IDE |
| 175 | select S3C2410_IOTIMING if S3C2410_CPUFREQ |
| 176 | select S3C24XX_DCLK |
| 177 | select S3C24XX_SIMTEC_NOR |
| 178 | select S3C24XX_SIMTEC_PM if PM |
| 179 | select S3C24XX_SIMTEC_USB |
Kukjin Kim | 85fd6d6 | 2012-02-06 09:38:19 +0900 | [diff] [blame] | 180 | select S3C_DEV_HWMON |
Kukjin Kim | 85fd6d6 | 2012-02-06 09:38:19 +0900 | [diff] [blame] | 181 | select S3C_DEV_NAND |
Russell King | b1b3f49 | 2012-10-06 17:12:25 +0100 | [diff] [blame] | 182 | select S3C_DEV_USB_HOST |
Kukjin Kim | 85fd6d6 | 2012-02-06 09:38:19 +0900 | [diff] [blame] | 183 | help |
| 184 | Say Y here if you are using the Simtec Electronics EB2410ITX |
| 185 | development board (also known as BAST) |
| 186 | |
| 187 | config BAST_PC104_IRQ |
| 188 | bool "BAST PC104 IRQ support" |
| 189 | depends on ARCH_BAST |
| 190 | default y |
| 191 | help |
| 192 | Say Y here to enable the PC104 IRQ routing on the |
| 193 | Simtec BAST (EB2410ITX) |
| 194 | |
| 195 | config ARCH_H1940 |
| 196 | bool "IPAQ H1940" |
| 197 | select PM_H1940 if PM |
Heiko Stuebner | 2c5689a | 2012-03-07 01:47:15 -0800 | [diff] [blame] | 198 | select S3C24XX_SETUP_TS |
Russell King | b1b3f49 | 2012-10-06 17:12:25 +0100 | [diff] [blame] | 199 | select S3C_DEV_NAND |
| 200 | select S3C_DEV_USB_HOST |
Kukjin Kim | 85fd6d6 | 2012-02-06 09:38:19 +0900 | [diff] [blame] | 201 | help |
| 202 | Say Y here if you are using the HP IPAQ H1940 |
| 203 | |
| 204 | config H1940BT |
| 205 | tristate "Control the state of H1940 bluetooth chip" |
| 206 | depends on ARCH_H1940 |
| 207 | select RFKILL |
| 208 | help |
| 209 | This is a simple driver that is able to control |
| 210 | the state of built in bluetooth chip on h1940. |
| 211 | |
| 212 | config PM_H1940 |
| 213 | bool |
| 214 | help |
| 215 | Internal node for H1940 and related PM |
| 216 | |
| 217 | config MACH_N30 |
| 218 | bool "Acer N30 family" |
| 219 | select MACH_N35 |
Kukjin Kim | 85fd6d6 | 2012-02-06 09:38:19 +0900 | [diff] [blame] | 220 | select S3C_DEV_NAND |
Russell King | b1b3f49 | 2012-10-06 17:12:25 +0100 | [diff] [blame] | 221 | select S3C_DEV_USB_HOST |
Kukjin Kim | 85fd6d6 | 2012-02-06 09:38:19 +0900 | [diff] [blame] | 222 | help |
| 223 | Say Y here if you want suppt for the Acer N30, Acer N35, |
| 224 | Navman PiN570, Yakumo AlphaX or Airis NC05 PDAs. |
| 225 | |
| 226 | config MACH_OTOM |
| 227 | bool "NexVision OTOM Board" |
Kukjin Kim | 85fd6d6 | 2012-02-06 09:38:19 +0900 | [diff] [blame] | 228 | select S3C_DEV_NAND |
Russell King | b1b3f49 | 2012-10-06 17:12:25 +0100 | [diff] [blame] | 229 | select S3C_DEV_USB_HOST |
Kukjin Kim | 85fd6d6 | 2012-02-06 09:38:19 +0900 | [diff] [blame] | 230 | help |
| 231 | Say Y here if you are using the Nex Vision OTOM board |
| 232 | |
| 233 | config MACH_QT2410 |
| 234 | bool "QT2410" |
Kukjin Kim | 85fd6d6 | 2012-02-06 09:38:19 +0900 | [diff] [blame] | 235 | select S3C_DEV_NAND |
Russell King | b1b3f49 | 2012-10-06 17:12:25 +0100 | [diff] [blame] | 236 | select S3C_DEV_USB_HOST |
Kukjin Kim | 85fd6d6 | 2012-02-06 09:38:19 +0900 | [diff] [blame] | 237 | help |
| 238 | Say Y here if you are using the Armzone QT2410 |
| 239 | |
| 240 | config ARCH_SMDK2410 |
| 241 | bool "SMDK2410/A9M2410" |
Heiko Stuebner | 28c569f | 2012-03-07 01:47:01 -0800 | [diff] [blame] | 242 | select S3C24XX_SMDK |
Kukjin Kim | 85fd6d6 | 2012-02-06 09:38:19 +0900 | [diff] [blame] | 243 | help |
| 244 | Say Y here if you are using the SMDK2410 or the derived module A9M2410 |
| 245 | <http://www.fsforth.de> |
| 246 | |
| 247 | config MACH_TCT_HAMMER |
| 248 | bool "TCT Hammer Board" |
| 249 | select S3C_DEV_USB_HOST |
| 250 | help |
| 251 | Say Y here if you are using the TinCanTools Hammer Board |
| 252 | <http://www.tincantools.com> |
| 253 | |
| 254 | config MACH_VR1000 |
| 255 | bool "Thorcom VR1000" |
Russell King | b1b3f49 | 2012-10-06 17:12:25 +0100 | [diff] [blame] | 256 | select MACH_BAST_IDE |
Kukjin Kim | 85fd6d6 | 2012-02-06 09:38:19 +0900 | [diff] [blame] | 257 | select S3C24XX_DCLK |
Heiko Stuebner | ec2cc75 | 2012-03-07 01:47:11 -0800 | [diff] [blame] | 258 | select S3C24XX_SIMTEC_NOR |
Russell King | b1b3f49 | 2012-10-06 17:12:25 +0100 | [diff] [blame] | 259 | select S3C24XX_SIMTEC_PM if PM |
Heiko Stuebner | ec2cc75 | 2012-03-07 01:47:11 -0800 | [diff] [blame] | 260 | select S3C24XX_SIMTEC_USB |
Russell King | b1b3f49 | 2012-10-06 17:12:25 +0100 | [diff] [blame] | 261 | select S3C_DEV_USB_HOST |
Kukjin Kim | 85fd6d6 | 2012-02-06 09:38:19 +0900 | [diff] [blame] | 262 | help |
| 263 | Say Y here if you are using the Thorcom VR1000 board. |
| 264 | |
| 265 | endif # CPU_S3C2410 |
| 266 | |
Kukjin Kim | 85e2a26 | 2012-02-06 10:02:01 +0900 | [diff] [blame] | 267 | config S3C2412_PM_SLEEP |
| 268 | bool |
| 269 | help |
| 270 | Internal config node to apply sleep for S3C2412 power management. |
| 271 | Can be selected by another SoCs such as S3C2416 with similar |
| 272 | sleep procedure. |
| 273 | |
| 274 | if CPU_S3C2412 |
| 275 | |
| 276 | config CPU_S3C2412_ONLY |
| 277 | bool |
| 278 | depends on ARCH_S3C24XX && !CPU_S3C2410 && \ |
| 279 | !CPU_S3C2416 && !CPU_S3C2440 && !CPU_S3C2442 && \ |
| 280 | !CPU_S3C2443 && CPU_S3C2412 |
| 281 | default y |
| 282 | |
Kukjin Kim | dbb8fd3 | 2013-01-21 15:24:34 -0800 | [diff] [blame^] | 283 | config S3C2412_CPUFREQ |
| 284 | bool |
| 285 | depends on CPU_FREQ_S3C24XX && CPU_S3C2412 |
| 286 | default y |
| 287 | select S3C2412_IOTIMING |
| 288 | help |
| 289 | CPU Frequency scaling support for S3C2412 and S3C2413 SoC CPUs. |
| 290 | |
Kukjin Kim | 85e2a26 | 2012-02-06 10:02:01 +0900 | [diff] [blame] | 291 | config S3C2412_DMA |
| 292 | bool |
| 293 | help |
| 294 | Internal config node for S3C2412 DMA support |
| 295 | |
| 296 | config S3C2412_PM |
| 297 | bool |
| 298 | help |
| 299 | Internal config node to apply S3C2412 power management |
| 300 | |
| 301 | comment "S3C2412 Boards" |
| 302 | |
| 303 | # |
| 304 | # The "S3C2412 Boards" list is ordered alphabetically by option text. |
| 305 | # (without ARCH_ or MACH_) |
| 306 | # |
| 307 | |
| 308 | config MACH_JIVE |
| 309 | bool "Logitech Jive" |
Kukjin Kim | 85e2a26 | 2012-02-06 10:02:01 +0900 | [diff] [blame] | 310 | select S3C_DEV_NAND |
Russell King | b1b3f49 | 2012-10-06 17:12:25 +0100 | [diff] [blame] | 311 | select S3C_DEV_USB_HOST |
Kukjin Kim | 85e2a26 | 2012-02-06 10:02:01 +0900 | [diff] [blame] | 312 | help |
| 313 | Say Y here if you are using the Logitech Jive. |
| 314 | |
| 315 | config MACH_JIVE_SHOW_BOOTLOADER |
| 316 | bool "Allow access to bootloader partitions in MTD (EXPERIMENTAL)" |
| 317 | depends on MACH_JIVE && EXPERIMENTAL |
| 318 | |
| 319 | config MACH_S3C2413 |
| 320 | bool |
| 321 | help |
| 322 | Internal node for S3C2413 version of SMDK2413, so that |
| 323 | machine_is_s3c2413() will work when MACH_SMDK2413 is |
| 324 | selected |
| 325 | |
| 326 | config MACH_SMDK2412 |
| 327 | bool "SMDK2412" |
| 328 | select MACH_SMDK2413 |
| 329 | help |
| 330 | Say Y here if you are using an SMDK2412 |
| 331 | |
| 332 | Note, this shares support with SMDK2413, so will automatically |
| 333 | select MACH_SMDK2413. |
| 334 | |
| 335 | config MACH_SMDK2413 |
| 336 | bool "SMDK2413" |
| 337 | select MACH_S3C2413 |
Heiko Stuebner | 28c569f | 2012-03-07 01:47:01 -0800 | [diff] [blame] | 338 | select S3C24XX_SMDK |
Kukjin Kim | 85e2a26 | 2012-02-06 10:02:01 +0900 | [diff] [blame] | 339 | select S3C_DEV_NAND |
Russell King | b1b3f49 | 2012-10-06 17:12:25 +0100 | [diff] [blame] | 340 | select S3C_DEV_USB_HOST |
Kukjin Kim | 85e2a26 | 2012-02-06 10:02:01 +0900 | [diff] [blame] | 341 | help |
| 342 | Say Y here if you are using an SMDK2413 |
| 343 | |
| 344 | config MACH_VSTMS |
| 345 | bool "VMSTMS" |
Kukjin Kim | 85e2a26 | 2012-02-06 10:02:01 +0900 | [diff] [blame] | 346 | select S3C_DEV_NAND |
Russell King | b1b3f49 | 2012-10-06 17:12:25 +0100 | [diff] [blame] | 347 | select S3C_DEV_USB_HOST |
Kukjin Kim | 85e2a26 | 2012-02-06 10:02:01 +0900 | [diff] [blame] | 348 | help |
| 349 | Say Y here if you are using an VSTMS board |
| 350 | |
| 351 | endif # CPU_S3C2412 |
| 352 | |
Kukjin Kim | 26febf8 | 2012-02-06 10:59:47 +0900 | [diff] [blame] | 353 | if CPU_S3C2416 |
| 354 | |
| 355 | config S3C2416_PM |
| 356 | bool |
| 357 | select S3C2412_PM_SLEEP |
| 358 | help |
| 359 | Internal config node to apply S3C2416 power management |
| 360 | |
| 361 | config S3C2416_SETUP_SDHCI |
| 362 | bool |
| 363 | select S3C2416_SETUP_SDHCI_GPIO |
| 364 | help |
| 365 | Internal helper functions for S3C2416 based SDHCI systems |
| 366 | |
| 367 | config S3C2416_SETUP_SDHCI_GPIO |
| 368 | bool |
| 369 | help |
| 370 | Common setup code for SDHCI gpio. |
| 371 | |
| 372 | comment "S3C2416 Boards" |
| 373 | |
| 374 | config MACH_SMDK2416 |
| 375 | bool "SMDK2416" |
Russell King | b1b3f49 | 2012-10-06 17:12:25 +0100 | [diff] [blame] | 376 | select S3C2416_SETUP_SDHCI |
Heiko Stuebner | 28c569f | 2012-03-07 01:47:01 -0800 | [diff] [blame] | 377 | select S3C24XX_SMDK |
Kukjin Kim | 26febf8 | 2012-02-06 10:59:47 +0900 | [diff] [blame] | 378 | select S3C_DEV_FB |
| 379 | select S3C_DEV_HSMMC |
| 380 | select S3C_DEV_HSMMC1 |
| 381 | select S3C_DEV_NAND |
| 382 | select S3C_DEV_USB_HOST |
Kukjin Kim | 26febf8 | 2012-02-06 10:59:47 +0900 | [diff] [blame] | 383 | help |
| 384 | Say Y here if you are using an SMDK2416 |
| 385 | |
| 386 | endif # CPU_S3C2416 |
| 387 | |
Kukjin Kim | dd6f01b | 2012-02-06 13:10:11 +0900 | [diff] [blame] | 388 | if CPU_S3C2440 |
| 389 | |
| 390 | config S3C2440_DMA |
| 391 | bool |
| 392 | help |
| 393 | Support for S3C2440 specific DMA code5A |
| 394 | |
| 395 | comment "S3C2440 Boards" |
| 396 | |
| 397 | # |
| 398 | # The "S3C2440 Boards" list is ordered alphabetically by option text. |
| 399 | # (without ARCH_ or MACH_) |
| 400 | # |
| 401 | |
| 402 | config MACH_ANUBIS |
| 403 | bool "Simtec Electronics ANUBIS" |
Kukjin Kim | dd6f01b | 2012-02-06 13:10:11 +0900 | [diff] [blame] | 404 | select HAVE_PATA_PLATFORM |
Kukjin Kim | dd6f01b | 2012-02-06 13:10:11 +0900 | [diff] [blame] | 405 | select S3C2440_XTAL_12000000 |
Russell King | b1b3f49 | 2012-10-06 17:12:25 +0100 | [diff] [blame] | 406 | select S3C24XX_DCLK |
| 407 | select S3C24XX_GPIO_EXTRA64 |
| 408 | select S3C24XX_SIMTEC_PM if PM |
Kukjin Kim | dd6f01b | 2012-02-06 13:10:11 +0900 | [diff] [blame] | 409 | select S3C_DEV_USB_HOST |
| 410 | help |
| 411 | Say Y here if you are using the Simtec Electronics ANUBIS |
| 412 | development system |
| 413 | |
| 414 | config MACH_AT2440EVB |
| 415 | bool "Avantech AT2440EVB development board" |
Kukjin Kim | dd6f01b | 2012-02-06 13:10:11 +0900 | [diff] [blame] | 416 | select S3C_DEV_NAND |
Russell King | b1b3f49 | 2012-10-06 17:12:25 +0100 | [diff] [blame] | 417 | select S3C_DEV_USB_HOST |
Kukjin Kim | dd6f01b | 2012-02-06 13:10:11 +0900 | [diff] [blame] | 418 | help |
| 419 | Say Y here if you are using the AT2440EVB development board |
| 420 | |
| 421 | config MACH_MINI2440 |
| 422 | bool "MINI2440 development board" |
| 423 | select EEPROM_AT24 |
Kukjin Kim | dd6f01b | 2012-02-06 13:10:11 +0900 | [diff] [blame] | 424 | select LEDS_CLASS |
Alexander Shiyan | 678a099 | 2012-11-25 18:53:40 +0400 | [diff] [blame] | 425 | select LEDS_TRIGGERS |
Kukjin Kim | dd6f01b | 2012-02-06 13:10:11 +0900 | [diff] [blame] | 426 | select LEDS_TRIGGER_BACKLIGHT |
Russell King | b1b3f49 | 2012-10-06 17:12:25 +0100 | [diff] [blame] | 427 | select NEW_LEDS |
Kukjin Kim | dd6f01b | 2012-02-06 13:10:11 +0900 | [diff] [blame] | 428 | select S3C_DEV_NAND |
| 429 | select S3C_DEV_USB_HOST |
Sylwester Nawrocki | e51d548 | 2012-11-22 14:29:18 +0900 | [diff] [blame] | 430 | select S3C_SETUP_CAMIF |
Kukjin Kim | dd6f01b | 2012-02-06 13:10:11 +0900 | [diff] [blame] | 431 | help |
| 432 | Say Y here to select support for the MINI2440. Is a 10cm x 10cm board |
| 433 | available via various sources. It can come with a 3.5" or 7" touch LCD. |
| 434 | |
| 435 | config MACH_NEXCODER_2440 |
| 436 | bool "NexVision NEXCODER 2440 Light Board" |
| 437 | select S3C2440_XTAL_12000000 |
Kukjin Kim | dd6f01b | 2012-02-06 13:10:11 +0900 | [diff] [blame] | 438 | select S3C_DEV_NAND |
Russell King | b1b3f49 | 2012-10-06 17:12:25 +0100 | [diff] [blame] | 439 | select S3C_DEV_USB_HOST |
Kukjin Kim | dd6f01b | 2012-02-06 13:10:11 +0900 | [diff] [blame] | 440 | help |
| 441 | Say Y here if you are using the Nex Vision NEXCODER 2440 Light Board |
| 442 | |
| 443 | config MACH_OSIRIS |
| 444 | bool "Simtec IM2440D20 (OSIRIS) module" |
Kukjin Kim | dd6f01b | 2012-02-06 13:10:11 +0900 | [diff] [blame] | 445 | select S3C2410_IOTIMING if S3C2440_CPUFREQ |
Russell King | b1b3f49 | 2012-10-06 17:12:25 +0100 | [diff] [blame] | 446 | select S3C2440_XTAL_12000000 |
| 447 | select S3C24XX_DCLK |
| 448 | select S3C24XX_GPIO_EXTRA128 |
| 449 | select S3C24XX_SIMTEC_PM if PM |
Kukjin Kim | dd6f01b | 2012-02-06 13:10:11 +0900 | [diff] [blame] | 450 | select S3C_DEV_NAND |
Russell King | b1b3f49 | 2012-10-06 17:12:25 +0100 | [diff] [blame] | 451 | select S3C_DEV_USB_HOST |
Kukjin Kim | dd6f01b | 2012-02-06 13:10:11 +0900 | [diff] [blame] | 452 | help |
| 453 | Say Y here if you are using the Simtec IM2440D20 module, also |
| 454 | known as the Osiris. |
| 455 | |
| 456 | config MACH_OSIRIS_DVS |
| 457 | tristate "Simtec IM2440D20 (OSIRIS) Dynamic Voltage Scaling driver" |
| 458 | depends on MACH_OSIRIS |
| 459 | select TPS65010 |
| 460 | help |
| 461 | Say Y/M here if you want to have dynamic voltage scaling support |
| 462 | on the Simtec IM2440D20 (OSIRIS) module via the TPS65011. |
| 463 | |
| 464 | The DVS driver alters the voltage supplied to the ARM core |
| 465 | depending on the frequency it is running at. The driver itself |
| 466 | does not do any of the frequency alteration, which is left up |
| 467 | to the cpufreq driver. |
| 468 | |
| 469 | config MACH_RX3715 |
| 470 | bool "HP iPAQ rx3715" |
Kukjin Kim | dd6f01b | 2012-02-06 13:10:11 +0900 | [diff] [blame] | 471 | select PM_H1940 if PM |
Russell King | b1b3f49 | 2012-10-06 17:12:25 +0100 | [diff] [blame] | 472 | select S3C2440_XTAL_16934400 |
Kukjin Kim | dd6f01b | 2012-02-06 13:10:11 +0900 | [diff] [blame] | 473 | select S3C_DEV_NAND |
| 474 | help |
| 475 | Say Y here if you are using the HP iPAQ rx3715. |
| 476 | |
| 477 | config ARCH_S3C2440 |
| 478 | bool "SMDK2440" |
| 479 | select S3C2440_XTAL_16934400 |
Heiko Stuebner | 28c569f | 2012-03-07 01:47:01 -0800 | [diff] [blame] | 480 | select S3C24XX_SMDK |
Kukjin Kim | dd6f01b | 2012-02-06 13:10:11 +0900 | [diff] [blame] | 481 | select S3C_DEV_NAND |
Russell King | b1b3f49 | 2012-10-06 17:12:25 +0100 | [diff] [blame] | 482 | select S3C_DEV_USB_HOST |
Kukjin Kim | dd6f01b | 2012-02-06 13:10:11 +0900 | [diff] [blame] | 483 | help |
| 484 | Say Y here if you are using the SMDK2440. |
| 485 | |
| 486 | config SMDK2440_CPU2440 |
| 487 | bool "SMDK2440 with S3C2440 CPU module" |
| 488 | default y if ARCH_S3C2440 |
| 489 | select S3C2440_XTAL_16934400 |
| 490 | |
| 491 | endif # CPU_S3C2440 |
| 492 | |
| 493 | if CPU_S3C2442 |
| 494 | |
| 495 | comment "S3C2442 Boards" |
| 496 | |
| 497 | # |
| 498 | # The "S3C2442 Boards" list is ordered alphabetically by option text. |
| 499 | # (without ARCH_ or MACH_) |
| 500 | # |
| 501 | |
| 502 | config MACH_NEO1973_GTA02 |
| 503 | bool "Openmoko GTA02 / Freerunner phone" |
Russell King | b1b3f49 | 2012-10-06 17:12:25 +0100 | [diff] [blame] | 504 | select I2C |
| 505 | select MACH_NEO1973 |
Kukjin Kim | dd6f01b | 2012-02-06 13:10:11 +0900 | [diff] [blame] | 506 | select MFD_PCF50633 |
| 507 | select PCF50633_GPIO |
Kukjin Kim | dd6f01b | 2012-02-06 13:10:11 +0900 | [diff] [blame] | 508 | select POWER_SUPPLY |
Arnd Bergmann | 35e7906 | 2012-08-04 07:52:19 +0000 | [diff] [blame] | 509 | select S3C24XX_PWM |
Kukjin Kim | dd6f01b | 2012-02-06 13:10:11 +0900 | [diff] [blame] | 510 | select S3C_DEV_USB_HOST |
| 511 | help |
| 512 | Say Y here if you are using the Openmoko GTA02 / Freerunner GSM Phone |
| 513 | |
| 514 | config MACH_RX1950 |
| 515 | bool "HP iPAQ rx1950" |
Kukjin Kim | dd6f01b | 2012-02-06 13:10:11 +0900 | [diff] [blame] | 516 | select I2C |
Russell King | b1b3f49 | 2012-10-06 17:12:25 +0100 | [diff] [blame] | 517 | select PM_H1940 if PM |
Kukjin Kim | dd6f01b | 2012-02-06 13:10:11 +0900 | [diff] [blame] | 518 | select S3C2410_IOTIMING if S3C2440_CPUFREQ |
| 519 | select S3C2440_XTAL_16934400 |
Russell King | b1b3f49 | 2012-10-06 17:12:25 +0100 | [diff] [blame] | 520 | select S3C24XX_DCLK |
| 521 | select S3C24XX_PWM |
| 522 | select S3C_DEV_NAND |
Kukjin Kim | dd6f01b | 2012-02-06 13:10:11 +0900 | [diff] [blame] | 523 | help |
| 524 | Say Y here if you're using HP iPAQ rx1950 |
| 525 | |
| 526 | config SMDK2440_CPU2442 |
| 527 | bool "SMDM2440 with S3C2442 CPU module" |
| 528 | |
| 529 | endif # CPU_S3C2440 |
| 530 | |
Heiko Stuebner | 8c3d7c3 | 2012-03-03 07:49:12 +0900 | [diff] [blame] | 531 | if CPU_S3C2443 || CPU_S3C2416 |
| 532 | |
| 533 | config S3C2443_COMMON |
| 534 | bool |
| 535 | help |
| 536 | Common code for the S3C2443 and similar processors, which includes |
| 537 | the S3C2416 and S3C2450. |
| 538 | |
Kukjin Kim | 84c028b | 2012-02-06 13:21:03 +0900 | [diff] [blame] | 539 | config S3C2443_DMA |
| 540 | bool |
| 541 | help |
| 542 | Internal config node for S3C2443 DMA support |
| 543 | |
Heiko Stuebner | f03eb25 | 2012-04-24 18:07:10 -0700 | [diff] [blame] | 544 | config S3C2443_SETUP_SPI |
| 545 | bool |
| 546 | help |
| 547 | Common setup code for SPI GPIO configurations |
| 548 | |
Heiko Stuebner | 46cdaba | 2012-03-07 01:53:17 -0800 | [diff] [blame] | 549 | endif # CPU_S3C2443 || CPU_S3C2416 |
| 550 | |
| 551 | if CPU_S3C2443 |
| 552 | |
Kukjin Kim | 84c028b | 2012-02-06 13:21:03 +0900 | [diff] [blame] | 553 | comment "S3C2443 Boards" |
| 554 | |
| 555 | config MACH_SMDK2443 |
| 556 | bool "SMDK2443" |
Heiko Stuebner | 28c569f | 2012-03-07 01:47:01 -0800 | [diff] [blame] | 557 | select S3C24XX_SMDK |
Kukjin Kim | 84c028b | 2012-02-06 13:21:03 +0900 | [diff] [blame] | 558 | select S3C_DEV_HSMMC1 |
| 559 | help |
| 560 | Say Y here if you are using an SMDK2443 |
| 561 | |
| 562 | endif # CPU_S3C2443 |
| 563 | |
Kukjin Kim | 85fd6d6 | 2012-02-06 09:38:19 +0900 | [diff] [blame] | 564 | endmenu # SAMSUNG S3C24XX SoCs Support |
| 565 | |
| 566 | endif # ARCH_S3C24XX |