blob: f0d54fdf88d4c64415c07d0a27b950ee95b89d61 [file] [log] [blame]
Ben Dooksa21765a2007-02-11 18:31:01 +01001# arch/arm/plat-s3c24xx/Kconfig
2#
3# Copyright 2007 Simtec Electronics
4#
5# Licensed under GPLv2
6
7config PLAT_S3C24XX
8 bool
Ben Dooksbcae8ae2008-10-21 14:06:32 +01009 depends on ARCH_S3C2410 || ARCH_S3C24A0
10 default y
Ben Dooks7d477a02007-02-12 18:59:35 +010011 select NO_IOPORT
Russell Kingbb2b1802008-07-26 15:36:03 +010012 select ARCH_REQUIRE_GPIOLIB
Ben Dooksa21765a2007-02-11 18:31:01 +010013 help
Ben Dooksd58153d2007-07-22 16:07:09 +010014 Base platform code for any Samsung S3C24XX device
Ben Dooksa21765a2007-02-11 18:31:01 +010015
Ben Dooksb8870602007-02-11 20:33:13 +010016if PLAT_S3C24XX
17
Ben Dooks1b3ba682008-10-21 14:06:22 +010018# code that is shared between a number of the s3c24xx implementations
19
20config S3C2410_CLOCK
21 bool
22 help
23 Clock code for the S3C2410, and similar processors which
24 is currently includes the S3C2410, S3C2440, S3C2442.
25
Ben Dooks93bc6b62008-10-21 14:06:33 +010026config S3C24XX_DCLK
27 bool
28 help
29 Clock code for supporting DCLK/CLKOUT on S3C24XX architectures
30
Ben Dooksa21765a2007-02-11 18:31:01 +010031config CPU_S3C244X
32 bool
33 depends on ARCH_S3C2410 && (CPU_S3C2440 || CPU_S3C2442)
34 help
35 Support for S3C2440 and S3C2442 Samsung Mobile CPU based systems.
36
Ben Dooks6fc601e2008-07-01 13:17:24 +010037config S3C24XX_PWM
38 bool "PWM device support"
39 select HAVE_PWM
40 help
41 Support for exporting the PWM timer blocks via the pwm device
42 system.
43
Ben Dooksa21765a2007-02-11 18:31:01 +010044config PM_SIMTEC
45 bool
46 help
47 Common power management code for systems that are
48 compatible with the Simtec style of power management
49
Ben Dooksa21765a2007-02-11 18:31:01 +010050config S3C2410_DMA
51 bool "S3C2410 DMA support"
52 depends on ARCH_S3C2410
53 help
54 S3C2410 DMA support. This is needed for drivers like sound which
55 use the S3C2410's DMA system to move data to and from the
56 peripheral blocks.
57
58config S3C2410_DMA_DEBUG
59 bool "S3C2410 DMA support debug"
60 depends on ARCH_S3C2410 && S3C2410_DMA
61 help
62 Enable debugging output for the DMA code. This option sends info
63 to the kernel log, at priority KERN_DEBUG.
64
Ben Dooksb2a6cf32008-10-21 14:06:20 +010065# SPI default pin configuration code
66
67config S3C24XX_SPI_BUS0_GPE11_GPE12_GPE13
68 bool
69 help
70 SPI GPIO configuration code for BUS0 when connected to
71 GPE11, GPE12 and GPE13.
72
73config S3C24XX_SPI_BUS1_GPG5_GPG6_GPG7
74 bool
75 help
76 SPI GPIO configuration code for BUS 1 when connected to
77 GPG5, GPG6 and GPG7.
78
79# common code for s3c24xx based machines, such as the SMDKs.
80
Ben Dooksa21765a2007-02-11 18:31:01 +010081config MACH_SMDK
82 bool
83 help
84 Common machine code for SMDK2410 and SMDK2440
85
Ben Dooksb8870602007-02-11 20:33:13 +010086endif