blob: 69e9fbfea9175a7e09b5e86c500a9e47ebd82d8c [file] [log] [blame]
Ben Dooksa08ab632008-10-21 14:06:39 +01001# Copyright 2008 Openmoko, Inc.
Ben Dooks431107e2010-01-26 10:11:04 +09002# Simtec Electronics, Ben Dooks <ben@simtec.co.uk>
Ben Dooksa08ab632008-10-21 14:06:39 +01003#
4# Licensed under GPLv2
5
Ben Dooks110d85a2010-02-22 23:26:47 +00006# temporary until we can eliminate all drivers using it.
7config PLAT_S3C64XX
8 bool
9 depends on ARCH_S3C64XX
10 default y
11 help
12 Base platform code for any Samsung S3C64XX device
13
14
Ben Dooksa08ab632008-10-21 14:06:39 +010015# Configuration options for the S3C6410 CPU
Ben Dooksd626aee2008-10-21 14:06:50 +010016
Ben Dooks431107e2010-01-26 10:11:04 +090017config CPU_S3C6400
18 bool
Ben Dooks431107e2010-01-26 10:11:04 +090019 help
20 Enable S3C6400 CPU support
21
Ben Dooksd626aee2008-10-21 14:06:50 +010022config CPU_S3C6410
23 bool
24 help
25 Enable S3C6410 CPU support
26
Ben Dooksf7be9ab2010-01-26 13:41:30 +090027config S3C64XX_DMA
28 bool "S3C64XX DMA"
29 select S3C_DMA
30
Ben Dooks2f6c2ac2010-01-26 10:38:52 +090031config S3C64XX_SETUP_SDHCI
Ben Dooks4faf68672009-03-25 11:01:24 +000032 select S3C64XX_SETUP_SDHCI_GPIO
Ben Dooks2f6c2ac2010-01-26 10:38:52 +090033 bool
Ben Dooks5cc7fd82008-10-31 16:14:38 +000034 help
Ben Dooks2f6c2ac2010-01-26 10:38:52 +090035 Internal configuration for default SDHCI setup for S3C6400 and
36 S3C6410 SoCs.
Ben Dooks5cc7fd82008-10-31 16:14:38 +000037
Ben Dooks88fc68a2010-01-26 11:19:18 +090038# platform specific device setup
39
40config S3C64XX_SETUP_I2C0
41 bool
42 default y
43 help
44 Common setup code for i2c bus 0.
45
46 Note, currently since i2c0 is always compiled, this setup helper
47 is always compiled with it.
48
49config S3C64XX_SETUP_I2C1
50 bool
51 help
52 Common setup code for i2c bus 1.
53
54config S3C64XX_SETUP_FB_24BPP
55 bool
56 help
57 Common setup code for S3C64XX with an 24bpp RGB display helper.
58
59config S3C64XX_SETUP_SDHCI_GPIO
60 bool
61 help
62 Common setup code for S3C64XX SDHCI GPIO configurations
63
Ben Dooks431107e2010-01-26 10:11:04 +090064# S36400 Macchine support
65
66config MACH_SMDK6400
67 bool "SMDK6400"
68 select CPU_S3C6400
69 select S3C_DEV_HSMMC
70 select S3C_DEV_NAND
Ben Dooks2f6c2ac2010-01-26 10:38:52 +090071 select S3C64XX_SETUP_SDHCI
Ben Dooks431107e2010-01-26 10:11:04 +090072 help
73 Machine support for the Samsung SMDK6400
74
75# S3C6410 machine support
76
Kwangwoo Lee1f26a8a2009-04-28 10:35:57 +090077config MACH_ANW6410
78 bool "A&W6410"
79 select CPU_S3C6410
80 select S3C_DEV_FB
81 select S3C64XX_SETUP_FB_24BPP
82 help
83 Machine support for the A&W6410
84
Ben Dooks5718df92008-10-21 14:07:09 +010085config MACH_SMDK6410
86 bool "SMDK6410"
87 select CPU_S3C6410
Naveen Krishna4f7cdc32010-05-13 22:06:36 +090088 select SAMSUNG_DEV_ADC
Ben Dooks5b323c72008-10-31 16:14:28 +000089 select S3C_DEV_HSMMC
Ben Dooksb24636c2008-11-03 20:14:53 +000090 select S3C_DEV_HSMMC1
Ben Dooksd7ea3742008-10-31 16:14:57 +000091 select S3C_DEV_I2C1
Ben Dooks438a5d42008-11-19 15:41:34 +000092 select S3C_DEV_FB
Ben Dooks98fd63b2009-03-06 19:49:49 +000093 select S3C_DEV_USB_HOST
Ben Dooks06fa1d32009-05-16 22:11:20 +010094 select S3C_DEV_USB_HSOTG
Ben Dooks2f6c2ac2010-01-26 10:38:52 +090095 select S3C64XX_SETUP_SDHCI
Ben Dooksd7ea3742008-10-31 16:14:57 +000096 select S3C64XX_SETUP_I2C1
Ben Dooks438a5d42008-11-19 15:41:34 +000097 select S3C64XX_SETUP_FB_24BPP
Ben Dooks5718df92008-10-21 14:07:09 +010098 help
99 Machine support for the Samsung SMDK6410
Ben Dooksb24636c2008-11-03 20:14:53 +0000100
101# At least some of the SMDK6410s were shipped with the card detect
102# for the MMC/SD slots connected to the same input. This means that
103# either the boards need to be altered to have channel0 to an alternate
104# configuration or that only one slot can be used.
105
106choice
107 prompt "SMDK6410 MMC/SD slot setup"
108 depends on MACH_SMDK6410
109
110config SMDK6410_SD_CH0
111 bool "Use channel 0 only"
112 depends on MACH_SMDK6410
113 help
114 Select CON7 (channel 0) as the MMC/SD slot, as
115 at least some SMDK6410 boards come with the
116 resistors fitted so that the card detects for
117 channels 0 and 1 are the same.
Ben Dooks431107e2010-01-26 10:11:04 +0900118
Ben Dooksb24636c2008-11-03 20:14:53 +0000119config SMDK6410_SD_CH1
120 bool "Use channel 1 only"
121 depends on MACH_SMDK6410
122 help
123 Select CON6 (channel 1) as the MMC/SD slot, as
124 at least some SMDK6410 boards come with the
125 resistors fitted so that the card detects for
126 channels 0 and 1 are the same.
127
128endchoice
Mark Brownecc558a2009-02-17 15:59:38 +0000129
130config SMDK6410_WM1190_EV1
131 bool "Support Wolfson Microelectronics 1190-EV1 PMIC card"
132 depends on MACH_SMDK6410
133 select REGULATOR
134 select REGULATOR_WM8350
Mark Brownc7a19782009-11-03 14:42:10 +0000135 select S3C24XX_GPIO_EXTRA64
Mark Brownecc558a2009-02-17 15:59:38 +0000136 select MFD_WM8350_I2C
137 select MFD_WM8350_CONFIG_MODE_0
138 select MFD_WM8350_CONFIG_MODE_3
139 select MFD_WM8352_CONFIG_MODE_0
140 help
141 The Wolfson Microelectronics 1190-EV1 is a WM835x based PMIC
142 and audio daughtercard for the Samsung SMDK6410 reference
143 platform. Enabling this option will build support for this
144 module into the kernel. The presence of the module will be
145 detected at runtime so the the resulting kernel can be used
146 with or without the 1190-EV1 fitted.
Kyungmin Park87c41222009-03-11 11:05:55 +0900147
Mark Brown60f91012010-02-17 18:19:29 +0000148config SMDK6410_WM1192_EV1
149 bool "Support Wolfson Microelectronics 1192-EV1 PMIC card"
150 depends on MACH_SMDK6410
151 select REGULATOR
152 select REGULATOR_WM831X
153 select S3C24XX_GPIO_EXTRA64
154 select MFD_WM831X
155 help
156 The Wolfson Microelectronics 1192-EV1 is a WM831x based PMIC
157 daughtercard for the Samsung SMDK6410 reference platform.
158 Enabling this option will build support for this module into
159 the kernel. The presence of the daughtercard will be
160 detected at runtime so the the resulting kernel can be used
161 with or without the 1192-EV1 fitted.
162
Kyungmin Park87c41222009-03-11 11:05:55 +0900163config MACH_NCP
164 bool "NCP"
165 select CPU_S3C6410
166 select S3C_DEV_I2C1
167 select S3C_DEV_HSMMC1
168 select S3C64XX_SETUP_I2C1
169 help
170 Machine support for the Samsung NCP
Peter Korsgaard2896bda2009-07-01 17:47:09 +0200171
172config MACH_HMT
173 bool "Airgoo HMT"
174 select CPU_S3C6410
175 select S3C_DEV_FB
Ben Dooksd23b3512009-09-17 00:01:54 +0100176 select S3C_DEV_NAND
Peter Korsgaard2896bda2009-07-01 17:47:09 +0200177 select S3C_DEV_USB_HOST
178 select S3C64XX_SETUP_FB_24BPP
179 select HAVE_PWM
180 help
181 Machine support for the Airgoo HMT