Merge remote-tracking branch 'spi/topic/build' into spi-next
[deliverable/linux.git] / arch / arm / mach-s3c24xx / Kconfig
CommitLineData
85fd6d63
KK
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
10if ARCH_S3C24XX
11
09ec1d7e
KK
12config PLAT_S3C24XX
13 def_bool y
14 select ARCH_REQUIRE_GPIOLIB
15 select NO_IOPORT
16 select S3C_DEV_NAND
17 select IRQ_DOMAIN
18 help
19 Base platform code for any Samsung S3C24XX device
20
85fd6d63
KK
21menu "SAMSUNG S3C24XX SoCs Support"
22
23comment "S3C24XX SoCs"
24
25config CPU_S3C2410
26 bool "SAMSUNG S3C2410"
27 default y
28 select CPU_ARM920T
85fd6d63 29 select CPU_LLSERIAL_S3C2410
b1b3f49c 30 select S3C2410_CLOCK
f023f8dd 31 select ARM_S3C2410_CPUFREQ if ARM_S3C24XX_CPUFREQ
b1b3f49c 32 select S3C2410_PM if PM
7f78b6eb 33 select SAMSUNG_HRT
88f59738 34 select SAMSUNG_WDT_RESET
85fd6d63
KK
35 help
36 Support for S3C2410 and S3C2410A family from the S3C24XX line
37 of Samsung Mobile CPUs.
38
85e2a26f
KK
39config CPU_S3C2412
40 bool "SAMSUNG S3C2412"
85e2a26f
KK
41 select CPU_ARM926T
42 select CPU_LLSERIAL_S3C2440
85e2a26f 43 select S3C2412_DMA if S3C24XX_DMA
b1b3f49c 44 select S3C2412_PM if PM
7f78b6eb 45 select SAMSUNG_HRT
85e2a26f
KK
46 help
47 Support for the S3C2412 and S3C2413 SoCs from the S3C24XX line
48
26febf8e
KK
49config CPU_S3C2416
50 bool "SAMSUNG S3C2416/S3C2450"
26febf8e
KK
51 select CPU_ARM926T
52 select CPU_LLSERIAL_S3C2440
b1b3f49c 53 select S3C2416_PM if PM
8c3d7c30 54 select S3C2443_COMMON
46cdaba1 55 select S3C2443_DMA if S3C24XX_DMA
b1b3f49c 56 select SAMSUNG_CLKSRC
7f78b6eb 57 select SAMSUNG_HRT
26febf8e
KK
58 help
59 Support for the S3C2416 SoC from the S3C24XX line
60
dd6f01b5
KK
61config CPU_S3C2440
62 bool "SAMSUNG S3C2440"
63 select CPU_ARM920T
64 select CPU_LLSERIAL_S3C2440
65 select S3C2410_CLOCK
66 select S3C2410_PM if PM
67 select S3C2440_DMA if S3C24XX_DMA
7f78b6eb 68 select SAMSUNG_HRT
dd6f01b5
KK
69 help
70 Support for S3C2440 Samsung Mobile CPU based systems.
71
72config CPU_S3C2442
73 bool "SAMSUNG S3C2442"
74 select CPU_ARM920T
75 select CPU_LLSERIAL_S3C2440
76 select S3C2410_CLOCK
77 select S3C2410_PM if PM
7f78b6eb 78 select SAMSUNG_HRT
dd6f01b5
KK
79 help
80 Support for S3C2442 Samsung Mobile CPU based systems.
81
82config CPU_S3C244X
83 def_bool y
84 depends on CPU_S3C2440 || CPU_S3C2442
88f59738 85 select SAMSUNG_WDT_RESET
dd6f01b5 86
84c028b9
KK
87config CPU_S3C2443
88 bool "SAMSUNG S3C2443"
84c028b9
KK
89 select CPU_ARM920T
90 select CPU_LLSERIAL_S3C2440
8c3d7c30 91 select S3C2443_COMMON
84c028b9 92 select S3C2443_DMA if S3C24XX_DMA
b1b3f49c 93 select SAMSUNG_CLKSRC
7f78b6eb 94 select SAMSUNG_HRT
84c028b9
KK
95 help
96 Support for the S3C2443 SoC from the S3C24XX line
97
28c569f6
HS
98# common code
99
09ec1d7e
KK
100config S3C2410_CLOCK
101 bool
102 help
103 Clock code for the S3C2410, and similar processors which
104 is currently includes the S3C2410, S3C2440, S3C2442.
105
106config S3C24XX_DCLK
107 bool
108 help
109 Clock code for supporting DCLK/CLKOUT on S3C24XX architectures
110
28c569f6
HS
111config S3C24XX_SMDK
112 bool
113 help
114 Common machine code for SMDK2410 and SMDK2440
115
9072dc98
HS
116config S3C24XX_SIMTEC_AUDIO
117 bool
118 depends on (ARCH_BAST || MACH_VR1000 || MACH_OSIRIS || MACH_ANUBIS)
119 default y
120 help
121 Add audio devices for common Simtec S3C24XX boards
122
123config S3C24XX_SIMTEC_PM
124 bool
125 help
126 Common power management code for systems that are
127 compatible with the Simtec style of power management
128
ec2cc753
HS
129config S3C24XX_SIMTEC_USB
130 bool
131 help
132 USB management code for common Simtec S3C24XX boards
133
2c5689a7
HS
134config S3C24XX_SETUP_TS
135 bool
136 help
137 Compile in platform device definition for Samsung TouchScreen.
138
09ec1d7e
KK
139config S3C24XX_DMA
140 bool "S3C2410 DMA support"
09ec1d7e
KK
141 select S3C_DMA
142 help
143 S3C2410 DMA support. This is needed for drivers like sound which
144 use the S3C2410's DMA system to move data to and from the
145 peripheral blocks.
146
147config S3C2410_DMA_DEBUG
148 bool "S3C2410 DMA support debug"
1c13786d 149 depends on S3C2410_DMA
09ec1d7e
KK
150 help
151 Enable debugging output for the DMA code. This option sends info
152 to the kernel log, at priority KERN_DEBUG.
153
85fd6d63
KK
154config S3C2410_DMA
155 bool
dd6f01b5
KK
156 depends on S3C24XX_DMA && (CPU_S3C2410 || CPU_S3C2442)
157 default y if CPU_S3C2410 || CPU_S3C2442
85fd6d63
KK
158 help
159 DMA device selection for S3C2410 and compatible CPUs
160
161config S3C2410_PM
162 bool
163 help
164 Power Management code common to S3C2410 and better
165
09ec1d7e
KK
166# low-level serial option nodes
167
168config CPU_LLSERIAL_S3C2410_ONLY
169 bool
170 default y if CPU_LLSERIAL_S3C2410 && !CPU_LLSERIAL_S3C2440
171
172config CPU_LLSERIAL_S3C2440_ONLY
173 bool
174 default y if CPU_LLSERIAL_S3C2440 && !CPU_LLSERIAL_S3C2410
175
176config CPU_LLSERIAL_S3C2410
177 bool
178 help
179 Selected if there is an S3C2410 (or register compatible) serial
180 low-level implementation needed
181
182config CPU_LLSERIAL_S3C2440
183 bool
184 help
185 Selected if there is an S3C2440 (or register compatible) serial
186 low-level implementation needed
187
188# gpio configurations
189
190config S3C24XX_GPIO_EXTRA
191 int
192 default 128 if S3C24XX_GPIO_EXTRA128
193 default 64 if S3C24XX_GPIO_EXTRA64
194 default 16 if ARCH_H1940
195 default 0
196
197config S3C24XX_GPIO_EXTRA64
198 bool
199 help
200 Add an extra 64 gpio numbers to the available GPIO pool. This is
201 available for boards that need extra gpios for external devices.
202
203config S3C24XX_GPIO_EXTRA128
204 bool
205 help
206 Add an extra 128 gpio numbers to the available GPIO pool. This is
207 available for boards that need extra gpios for external devices.
208
f023f8dd
VK
209config S3C24XX_PLL
210 bool "Support CPUfreq changing of PLL frequency (EXPERIMENTAL)"
3715534a 211 depends on ARM_S3C24XX_CPUFREQ
f023f8dd
VK
212 help
213 Compile in support for changing the PLL frequency from the
214 S3C24XX series CPUfreq driver. The PLL takes time to settle
215 after a frequency change, so by default it is not enabled.
216
217 This also means that the PLL tables for the selected CPU(s) will
218 be built which may increase the size of the kernel image.
219
09ec1d7e
KK
220# cpu frequency items common between s3c2410 and s3c2440/s3c2442
221
222config S3C2410_IOTIMING
223 bool
f023f8dd 224 depends on ARM_S3C24XX_CPUFREQ
09ec1d7e
KK
225 help
226 Internal node to select io timing code that is common to the s3c2410
227 and s3c2440/s3c2442 cpu frequency support.
228
229config S3C2410_CPUFREQ_UTILS
f023f8dd
VK
230 bool
231 depends on ARM_S3C24XX_CPUFREQ
232 help
233 Internal node to select timing code that is common to the s3c2410
234 and s3c2440/s3c244 cpu frequency support.
09ec1d7e
KK
235
236# cpu frequency support common to s3c2412, s3c2413 and s3c2442
237
238config S3C2412_IOTIMING
239 bool
f023f8dd 240 depends on ARM_S3C24XX_CPUFREQ && (CPU_S3C2412 || CPU_S3C2443)
09ec1d7e
KK
241 help
242 Intel node to select io timing code that is common to the s3c2412
243 and the s3c2443.
244
7518dde9
KK
245# cpu-specific sections
246
247if CPU_S3C2410
248
82c18712
KK
249config S3C2410_PLL
250 bool
f023f8dd 251 depends on ARM_S3C2410_CPUFREQ && S3C24XX_PLL
82c18712
KK
252 default y
253 help
254 Select the PLL table for the S3C2410
255
ec2cc753 256config S3C24XX_SIMTEC_NOR
85fd6d63
KK
257 bool
258 help
259 Internal node to specify machine has simtec NOR mapping
260
261config MACH_BAST_IDE
262 bool
263 select HAVE_PATA_PLATFORM
264 help
265 Internal node for machines with an BAST style IDE
266 interface
267
268comment "S3C2410 Boards"
269
270#
271# The "S3C2410 Boards" list is ordered alphabetically by option text.
272# (without ARCH_ or MACH_)
273#
274
275config MACH_AML_M5900
276 bool "AML M5900 Series"
9072dc98 277 select S3C24XX_SIMTEC_PM if PM
85fd6d63
KK
278 select S3C_DEV_USB_HOST
279 help
280 Say Y here if you are using the American Microsystems M5900 Series
281 <http://www.amltd.com>
282
283config ARCH_BAST
284 bool "Simtec Electronics BAST (EB2410ITX)"
b1b3f49c
RK
285 select ISA
286 select MACH_BAST_IDE
f023f8dd 287 select S3C2410_IOTIMING if ARM_S3C2410_CPUFREQ
b1b3f49c 288 select S3C24XX_DCLK
ec2cc753 289 select S3C24XX_SIMTEC_NOR
b1b3f49c 290 select S3C24XX_SIMTEC_PM if PM
ec2cc753 291 select S3C24XX_SIMTEC_USB
85fd6d63 292 select S3C_DEV_HWMON
85fd6d63 293 select S3C_DEV_NAND
b1b3f49c 294 select S3C_DEV_USB_HOST
85fd6d63
KK
295 help
296 Say Y here if you are using the Simtec Electronics EB2410ITX
297 development board (also known as BAST)
298
299config BAST_PC104_IRQ
300 bool "BAST PC104 IRQ support"
301 depends on ARCH_BAST
302 default y
303 help
304 Say Y here to enable the PC104 IRQ routing on the
305 Simtec BAST (EB2410ITX)
306
307config ARCH_H1940
308 bool "IPAQ H1940"
309 select PM_H1940 if PM
2c5689a7 310 select S3C24XX_SETUP_TS
b1b3f49c
RK
311 select S3C_DEV_NAND
312 select S3C_DEV_USB_HOST
85fd6d63
KK
313 help
314 Say Y here if you are using the HP IPAQ H1940
315
316config H1940BT
317 tristate "Control the state of H1940 bluetooth chip"
318 depends on ARCH_H1940
319 select RFKILL
320 help
321 This is a simple driver that is able to control
322 the state of built in bluetooth chip on h1940.
323
324config PM_H1940
325 bool
326 help
327 Internal node for H1940 and related PM
328
329config MACH_N30
330 bool "Acer N30 family"
85fd6d63 331 select S3C_DEV_NAND
b1b3f49c 332 select S3C_DEV_USB_HOST
85fd6d63
KK
333 help
334 Say Y here if you want suppt for the Acer N30, Acer N35,
335 Navman PiN570, Yakumo AlphaX or Airis NC05 PDAs.
336
337config MACH_OTOM
338 bool "NexVision OTOM Board"
85fd6d63 339 select S3C_DEV_NAND
b1b3f49c 340 select S3C_DEV_USB_HOST
85fd6d63
KK
341 help
342 Say Y here if you are using the Nex Vision OTOM board
343
344config MACH_QT2410
345 bool "QT2410"
85fd6d63 346 select S3C_DEV_NAND
b1b3f49c 347 select S3C_DEV_USB_HOST
85fd6d63
KK
348 help
349 Say Y here if you are using the Armzone QT2410
350
351config ARCH_SMDK2410
352 bool "SMDK2410/A9M2410"
28c569f6 353 select S3C24XX_SMDK
1a4c2a19 354 select S3C_DEV_USB_HOST
85fd6d63
KK
355 help
356 Say Y here if you are using the SMDK2410 or the derived module A9M2410
357 <http://www.fsforth.de>
358
359config MACH_TCT_HAMMER
360 bool "TCT Hammer Board"
361 select S3C_DEV_USB_HOST
362 help
363 Say Y here if you are using the TinCanTools Hammer Board
364 <http://www.tincantools.com>
365
366config MACH_VR1000
367 bool "Thorcom VR1000"
b1b3f49c 368 select MACH_BAST_IDE
85fd6d63 369 select S3C24XX_DCLK
ec2cc753 370 select S3C24XX_SIMTEC_NOR
b1b3f49c 371 select S3C24XX_SIMTEC_PM if PM
ec2cc753 372 select S3C24XX_SIMTEC_USB
b1b3f49c 373 select S3C_DEV_USB_HOST
85fd6d63
KK
374 help
375 Say Y here if you are using the Thorcom VR1000 board.
376
377endif # CPU_S3C2410
378
85e2a26f
KK
379config S3C2412_PM_SLEEP
380 bool
381 help
382 Internal config node to apply sleep for S3C2412 power management.
383 Can be selected by another SoCs such as S3C2416 with similar
384 sleep procedure.
385
386if CPU_S3C2412
387
388config CPU_S3C2412_ONLY
389 bool
1c13786d 390 depends on !CPU_S3C2410 && !CPU_S3C2416 && !CPU_S3C2440 && \
a4e4d22c 391 !CPU_S3C2442 && !CPU_S3C2443
85e2a26f
KK
392 default y
393
394config S3C2412_DMA
395 bool
396 help
397 Internal config node for S3C2412 DMA support
398
399config S3C2412_PM
400 bool
7eae354f 401 select S3C2412_PM_SLEEP
59295708 402 select SAMSUNG_WAKEMASK
85e2a26f
KK
403 help
404 Internal config node to apply S3C2412 power management
405
406comment "S3C2412 Boards"
407
408#
409# The "S3C2412 Boards" list is ordered alphabetically by option text.
410# (without ARCH_ or MACH_)
411#
412
413config MACH_JIVE
414 bool "Logitech Jive"
85e2a26f 415 select S3C_DEV_NAND
b1b3f49c 416 select S3C_DEV_USB_HOST
85e2a26f
KK
417 help
418 Say Y here if you are using the Logitech Jive.
419
420config MACH_JIVE_SHOW_BOOTLOADER
5ec9b067
KC
421 bool "Allow access to bootloader partitions in MTD"
422 depends on MACH_JIVE
85e2a26f
KK
423
424config MACH_S3C2413
425 bool
426 help
427 Internal node for S3C2413 version of SMDK2413, so that
428 machine_is_s3c2413() will work when MACH_SMDK2413 is
429 selected
430
431config MACH_SMDK2412
432 bool "SMDK2412"
433 select MACH_SMDK2413
434 help
435 Say Y here if you are using an SMDK2412
436
437 Note, this shares support with SMDK2413, so will automatically
438 select MACH_SMDK2413.
439
440config MACH_SMDK2413
441 bool "SMDK2413"
442 select MACH_S3C2413
28c569f6 443 select S3C24XX_SMDK
85e2a26f 444 select S3C_DEV_NAND
b1b3f49c 445 select S3C_DEV_USB_HOST
85e2a26f
KK
446 help
447 Say Y here if you are using an SMDK2413
448
449config MACH_VSTMS
450 bool "VMSTMS"
85e2a26f 451 select S3C_DEV_NAND
b1b3f49c 452 select S3C_DEV_USB_HOST
85e2a26f
KK
453 help
454 Say Y here if you are using an VSTMS board
455
456endif # CPU_S3C2412
457
26febf8e
KK
458if CPU_S3C2416
459
460config S3C2416_PM
461 bool
462 select S3C2412_PM_SLEEP
463 help
464 Internal config node to apply S3C2416 power management
465
466config S3C2416_SETUP_SDHCI
467 bool
468 select S3C2416_SETUP_SDHCI_GPIO
469 help
470 Internal helper functions for S3C2416 based SDHCI systems
471
472config S3C2416_SETUP_SDHCI_GPIO
473 bool
474 help
475 Common setup code for SDHCI gpio.
476
477comment "S3C2416 Boards"
478
479config MACH_SMDK2416
480 bool "SMDK2416"
b1b3f49c 481 select S3C2416_SETUP_SDHCI
28c569f6 482 select S3C24XX_SMDK
26febf8e
KK
483 select S3C_DEV_FB
484 select S3C_DEV_HSMMC
485 select S3C_DEV_HSMMC1
486 select S3C_DEV_NAND
487 select S3C_DEV_USB_HOST
26febf8e
KK
488 help
489 Say Y here if you are using an SMDK2416
490
35aca364
HS
491config MACH_S3C2416_DT
492 bool "Samsung S3C2416 machine using devicetree"
493 select CLKSRC_OF
494 select USE_OF
495 select PINCTRL
496 select PINCTRL_S3C24XX
497 help
498 Machine support for Samsung S3C2416 machines with device tree enabled.
499 Select this if a fdt blob is available for the S3C2416 SoC based board.
500 Note: This is under development and not all peripherals can be supported
501 with this machine file.
502
26febf8e
KK
503endif # CPU_S3C2416
504
dd6f01b5
KK
505if CPU_S3C2440
506
507config S3C2440_DMA
508 bool
509 help
510 Support for S3C2440 specific DMA code5A
511
acf2d41d
KK
512config S3C2440_XTAL_12000000
513 bool
514 help
515 Indicate that the build needs to support 12MHz system
516 crystal.
517
518config S3C2440_XTAL_16934400
519 bool
520 help
521 Indicate that the build needs to support 16.9344MHz system
522 crystal.
523
524config S3C2440_PLL_12000000
525 bool
f023f8dd
VK
526 depends on ARM_S3C2440_CPUFREQ && S3C2440_XTAL_12000000
527 default y if S3C24XX_PLL
acf2d41d
KK
528 help
529 PLL tables for S3C2440 or S3C2442 CPUs with 12MHz crystals.
530
531config S3C2440_PLL_16934400
532 bool
f023f8dd
VK
533 depends on ARM_S3C2440_CPUFREQ && S3C2440_XTAL_16934400
534 default y if S3C24XX_PLL
acf2d41d
KK
535 help
536 PLL tables for S3C2440 or S3C2442 CPUs with 16.934MHz crystals.
537
dd6f01b5
KK
538comment "S3C2440 Boards"
539
540#
541# The "S3C2440 Boards" list is ordered alphabetically by option text.
542# (without ARCH_ or MACH_)
543#
544
545config MACH_ANUBIS
546 bool "Simtec Electronics ANUBIS"
dd6f01b5 547 select HAVE_PATA_PLATFORM
dd6f01b5 548 select S3C2440_XTAL_12000000
b1b3f49c
RK
549 select S3C24XX_DCLK
550 select S3C24XX_GPIO_EXTRA64
551 select S3C24XX_SIMTEC_PM if PM
dd6f01b5
KK
552 select S3C_DEV_USB_HOST
553 help
554 Say Y here if you are using the Simtec Electronics ANUBIS
555 development system
556
557config MACH_AT2440EVB
558 bool "Avantech AT2440EVB development board"
dd6f01b5 559 select S3C_DEV_NAND
b1b3f49c 560 select S3C_DEV_USB_HOST
dd6f01b5
KK
561 help
562 Say Y here if you are using the AT2440EVB development board
563
564config MACH_MINI2440
565 bool "MINI2440 development board"
566 select EEPROM_AT24
dd6f01b5 567 select LEDS_CLASS
678a0990 568 select LEDS_TRIGGERS
dd6f01b5 569 select LEDS_TRIGGER_BACKLIGHT
b1b3f49c 570 select NEW_LEDS
dd6f01b5
KK
571 select S3C_DEV_NAND
572 select S3C_DEV_USB_HOST
e51d5486 573 select S3C_SETUP_CAMIF
dd6f01b5
KK
574 help
575 Say Y here to select support for the MINI2440. Is a 10cm x 10cm board
576 available via various sources. It can come with a 3.5" or 7" touch LCD.
577
578config MACH_NEXCODER_2440
579 bool "NexVision NEXCODER 2440 Light Board"
580 select S3C2440_XTAL_12000000
dd6f01b5 581 select S3C_DEV_NAND
b1b3f49c 582 select S3C_DEV_USB_HOST
dd6f01b5
KK
583 help
584 Say Y here if you are using the Nex Vision NEXCODER 2440 Light Board
585
586config MACH_OSIRIS
587 bool "Simtec IM2440D20 (OSIRIS) module"
f023f8dd 588 select S3C2410_IOTIMING if ARM_S3C2440_CPUFREQ
b1b3f49c 589 select S3C2440_XTAL_12000000
dd6f01b5 590 select S3C24XX_DCLK
dd6f01b5 591 select S3C24XX_GPIO_EXTRA128
b1b3f49c 592 select S3C24XX_SIMTEC_PM if PM
dd6f01b5 593 select S3C_DEV_NAND
b1b3f49c 594 select S3C_DEV_USB_HOST
dd6f01b5
KK
595 help
596 Say Y here if you are using the Simtec IM2440D20 module, also
597 known as the Osiris.
598
599config MACH_OSIRIS_DVS
600 tristate "Simtec IM2440D20 (OSIRIS) Dynamic Voltage Scaling driver"
601 depends on MACH_OSIRIS
602 select TPS65010
603 help
604 Say Y/M here if you want to have dynamic voltage scaling support
605 on the Simtec IM2440D20 (OSIRIS) module via the TPS65011.
606
607 The DVS driver alters the voltage supplied to the ARM core
608 depending on the frequency it is running at. The driver itself
609 does not do any of the frequency alteration, which is left up
610 to the cpufreq driver.
611
612config MACH_RX3715
613 bool "HP iPAQ rx3715"
dd6f01b5 614 select PM_H1940 if PM
b1b3f49c 615 select S3C2440_XTAL_16934400
dd6f01b5
KK
616 select S3C_DEV_NAND
617 help
618 Say Y here if you are using the HP iPAQ rx3715.
619
620config ARCH_S3C2440
621 bool "SMDK2440"
622 select S3C2440_XTAL_16934400
28c569f6 623 select S3C24XX_SMDK
dd6f01b5 624 select S3C_DEV_NAND
b1b3f49c 625 select S3C_DEV_USB_HOST
dd6f01b5
KK
626 help
627 Say Y here if you are using the SMDK2440.
628
629config SMDK2440_CPU2440
630 bool "SMDK2440 with S3C2440 CPU module"
631 default y if ARCH_S3C2440
632 select S3C2440_XTAL_16934400
633
634endif # CPU_S3C2440
635
636if CPU_S3C2442
637
638comment "S3C2442 Boards"
639
640#
641# The "S3C2442 Boards" list is ordered alphabetically by option text.
642# (without ARCH_ or MACH_)
643#
644
645config MACH_NEO1973_GTA02
646 bool "Openmoko GTA02 / Freerunner phone"
b1b3f49c 647 select I2C
dd6f01b5
KK
648 select MFD_PCF50633
649 select PCF50633_GPIO
dd6f01b5 650 select POWER_SUPPLY
35e79061 651 select S3C24XX_PWM
dd6f01b5
KK
652 select S3C_DEV_USB_HOST
653 help
654 Say Y here if you are using the Openmoko GTA02 / Freerunner GSM Phone
655
656config MACH_RX1950
657 bool "HP iPAQ rx1950"
dd6f01b5 658 select I2C
b1b3f49c 659 select PM_H1940 if PM
f023f8dd 660 select S3C2410_IOTIMING if ARM_S3C2440_CPUFREQ
dd6f01b5 661 select S3C2440_XTAL_16934400
b1b3f49c
RK
662 select S3C24XX_DCLK
663 select S3C24XX_PWM
664 select S3C_DEV_NAND
dd6f01b5
KK
665 help
666 Say Y here if you're using HP iPAQ rx1950
667
bd338d07 668endif # CPU_S3C2442
dd6f01b5 669
8c3d7c30
HS
670if CPU_S3C2443 || CPU_S3C2416
671
672config S3C2443_COMMON
673 bool
674 help
675 Common code for the S3C2443 and similar processors, which includes
676 the S3C2416 and S3C2450.
677
84c028b9
KK
678config S3C2443_DMA
679 bool
680 help
681 Internal config node for S3C2443 DMA support
682
f03eb25e
HS
683config S3C2443_SETUP_SPI
684 bool
685 help
686 Common setup code for SPI GPIO configurations
687
46cdaba1
HS
688endif # CPU_S3C2443 || CPU_S3C2416
689
690if CPU_S3C2443
691
84c028b9
KK
692comment "S3C2443 Boards"
693
694config MACH_SMDK2443
695 bool "SMDK2443"
28c569f6 696 select S3C24XX_SMDK
84c028b9
KK
697 select S3C_DEV_HSMMC1
698 help
699 Say Y here if you are using an SMDK2443
700
701endif # CPU_S3C2443
702
85fd6d63
KK
703endmenu # SAMSUNG S3C24XX SoCs Support
704
705endif # ARCH_S3C24XX
This page took 0.252808 seconds and 5 git commands to generate.