ARM: SAMSUNG: Add device definition for HSMMC3
[pandora-kernel.git] / arch / arm / plat-samsung / include / plat / sdhci.h
1 /* linux/arch/arm/plat-s3c/include/plat/sdhci.h
2  *
3  * Copyright 2008 Openmoko, Inc.
4  * Copyright 2008 Simtec Electronics
5  *      http://armlinux.simtec.co.uk/
6  *      Ben Dooks <ben@simtec.co.uk>
7  *
8  * S3C Platform - SDHCI (HSMMC) platform data definitions
9  *
10  * This program is free software; you can redistribute it and/or modify
11  * it under the terms of the GNU General Public License version 2 as
12  * published by the Free Software Foundation.
13 */
14
15 #ifndef __PLAT_S3C_SDHCI_H
16 #define __PLAT_S3C_SDHCI_H __FILE__
17
18 struct platform_device;
19 struct mmc_host;
20 struct mmc_card;
21 struct mmc_ios;
22
23 /**
24  * struct s3c_sdhci_platdata() - Platform device data for Samsung SDHCI
25  * @max_width: The maximum number of data bits supported.
26  * @host_caps: Standard MMC host capabilities bit field.
27  * @cfg_gpio: Configure the GPIO for a specific card bit-width
28  * @cfg_card: Configure the interface for a specific card and speed. This
29  *            is necessary the controllers and/or GPIO blocks require the
30  *            changing of driver-strength and other controls dependant on
31  *            the card and speed of operation.
32  *
33  * Initialisation data specific to either the machine or the platform
34  * for the device driver to use or call-back when configuring gpio or
35  * card speed information.
36 */
37 struct s3c_sdhci_platdata {
38         unsigned int    max_width;
39         unsigned int    host_caps;
40
41         char            **clocks;       /* set of clock sources */
42
43         void    (*cfg_gpio)(struct platform_device *dev, int width);
44         void    (*cfg_card)(struct platform_device *dev,
45                             void __iomem *regbase,
46                             struct mmc_ios *ios,
47                             struct mmc_card *card);
48 };
49
50 /**
51  * s3c_sdhci0_set_platdata - Set platform data for S3C SDHCI device.
52  * @pd: Platform data to register to device.
53  *
54  * Register the given platform data for use withe S3C SDHCI device.
55  * The call will copy the platform data, so the board definitions can
56  * make the structure itself __initdata.
57  */
58 extern void s3c_sdhci0_set_platdata(struct s3c_sdhci_platdata *pd);
59 extern void s3c_sdhci1_set_platdata(struct s3c_sdhci_platdata *pd);
60 extern void s3c_sdhci2_set_platdata(struct s3c_sdhci_platdata *pd);
61 extern void s3c_sdhci3_set_platdata(struct s3c_sdhci_platdata *pd);
62
63 /* Default platform data, exported so that per-cpu initialisation can
64  * set the correct one when there are more than one cpu type selected.
65 */
66
67 extern struct s3c_sdhci_platdata s3c_hsmmc0_def_platdata;
68 extern struct s3c_sdhci_platdata s3c_hsmmc1_def_platdata;
69 extern struct s3c_sdhci_platdata s3c_hsmmc2_def_platdata;
70 extern struct s3c_sdhci_platdata s3c_hsmmc3_def_platdata;
71
72 /* Helper function availablity */
73
74 extern void s3c64xx_setup_sdhci0_cfg_gpio(struct platform_device *, int w);
75 extern void s3c64xx_setup_sdhci1_cfg_gpio(struct platform_device *, int w);
76 extern void s5pc100_setup_sdhci0_cfg_gpio(struct platform_device *, int w);
77 extern void s5pc100_setup_sdhci1_cfg_gpio(struct platform_device *, int w);
78 extern void s5pc100_setup_sdhci2_cfg_gpio(struct platform_device *, int w);
79 extern void s3c64xx_setup_sdhci2_cfg_gpio(struct platform_device *, int w);
80 extern void s5pv210_setup_sdhci0_cfg_gpio(struct platform_device *, int w);
81 extern void s5pv210_setup_sdhci1_cfg_gpio(struct platform_device *, int w);
82 extern void s5pv210_setup_sdhci2_cfg_gpio(struct platform_device *, int w);
83
84 /* S3C6400 SDHCI setup */
85
86 #ifdef CONFIG_S3C64XX_SETUP_SDHCI
87 extern char *s3c64xx_hsmmc_clksrcs[4];
88
89 #ifdef CONFIG_S3C_DEV_HSMMC
90 extern void s3c6400_setup_sdhci_cfg_card(struct platform_device *dev,
91                                          void __iomem *r,
92                                          struct mmc_ios *ios,
93                                          struct mmc_card *card);
94
95 static inline void s3c6400_default_sdhci0(void)
96 {
97         s3c_hsmmc0_def_platdata.clocks = s3c64xx_hsmmc_clksrcs;
98         s3c_hsmmc0_def_platdata.cfg_gpio = s3c64xx_setup_sdhci0_cfg_gpio;
99         s3c_hsmmc0_def_platdata.cfg_card = s3c6400_setup_sdhci_cfg_card;
100 }
101
102 #else
103 static inline void s3c6400_default_sdhci0(void) { }
104 #endif  /* CONFIG_S3C_DEV_HSMMC */
105
106 #ifdef CONFIG_S3C_DEV_HSMMC1
107 static inline void s3c6400_default_sdhci1(void)
108 {
109         s3c_hsmmc1_def_platdata.clocks = s3c64xx_hsmmc_clksrcs;
110         s3c_hsmmc1_def_platdata.cfg_gpio = s3c64xx_setup_sdhci1_cfg_gpio;
111         s3c_hsmmc1_def_platdata.cfg_card = s3c6400_setup_sdhci_cfg_card;
112 }
113 #else
114 static inline void s3c6400_default_sdhci1(void) { }
115 #endif /* CONFIG_S3C_DEV_HSMMC1 */
116
117 #ifdef CONFIG_S3C_DEV_HSMMC2
118 static inline void s3c6400_default_sdhci2(void)
119 {
120         s3c_hsmmc2_def_platdata.clocks = s3c64xx_hsmmc_clksrcs;
121         s3c_hsmmc2_def_platdata.cfg_gpio = s3c64xx_setup_sdhci2_cfg_gpio;
122         s3c_hsmmc2_def_platdata.cfg_card = s3c6400_setup_sdhci_cfg_card;
123 }
124 #else
125 static inline void s3c6400_default_sdhci2(void) { }
126 #endif /* CONFIG_S3C_DEV_HSMMC2 */
127
128 /* S3C6410 SDHCI setup */
129
130 extern void s3c6410_setup_sdhci_cfg_card(struct platform_device *dev,
131                                          void __iomem *r,
132                                          struct mmc_ios *ios,
133                                          struct mmc_card *card);
134
135 #ifdef CONFIG_S3C_DEV_HSMMC
136 static inline void s3c6410_default_sdhci0(void)
137 {
138         s3c_hsmmc0_def_platdata.clocks = s3c64xx_hsmmc_clksrcs;
139         s3c_hsmmc0_def_platdata.cfg_gpio = s3c64xx_setup_sdhci0_cfg_gpio;
140         s3c_hsmmc0_def_platdata.cfg_card = s3c6410_setup_sdhci_cfg_card;
141 }
142 #else
143 static inline void s3c6410_default_sdhci0(void) { }
144 #endif /* CONFIG_S3C_DEV_HSMMC */
145
146 #ifdef CONFIG_S3C_DEV_HSMMC1
147 static inline void s3c6410_default_sdhci1(void)
148 {
149         s3c_hsmmc1_def_platdata.clocks = s3c64xx_hsmmc_clksrcs;
150         s3c_hsmmc1_def_platdata.cfg_gpio = s3c64xx_setup_sdhci1_cfg_gpio;
151         s3c_hsmmc1_def_platdata.cfg_card = s3c6410_setup_sdhci_cfg_card;
152 }
153 #else
154 static inline void s3c6410_default_sdhci1(void) { }
155 #endif /* CONFIG_S3C_DEV_HSMMC1 */
156
157 #ifdef CONFIG_S3C_DEV_HSMMC2
158 static inline void s3c6410_default_sdhci2(void)
159 {
160         s3c_hsmmc2_def_platdata.clocks = s3c64xx_hsmmc_clksrcs;
161         s3c_hsmmc2_def_platdata.cfg_gpio = s3c64xx_setup_sdhci2_cfg_gpio;
162         s3c_hsmmc2_def_platdata.cfg_card = s3c6410_setup_sdhci_cfg_card;
163 }
164 #else
165 static inline void s3c6410_default_sdhci2(void) { }
166 #endif /* CONFIG_S3C_DEV_HSMMC2 */
167
168 #else
169 static inline void s3c6410_default_sdhci0(void) { }
170 static inline void s3c6410_default_sdhci1(void) { }
171 static inline void s3c6410_default_sdhci2(void) { }
172 static inline void s3c6400_default_sdhci0(void) { }
173 static inline void s3c6400_default_sdhci1(void) { }
174 static inline void s3c6400_default_sdhci2(void) { }
175
176 #endif /* CONFIG_S3C64XX_SETUP_SDHCI */
177
178 /* S5PC100 SDHCI setup */
179
180 #ifdef CONFIG_S5PC100_SETUP_SDHCI
181 extern char *s5pc100_hsmmc_clksrcs[4];
182
183 extern void s5pc100_setup_sdhci0_cfg_card(struct platform_device *dev,
184                                            void __iomem *r,
185                                            struct mmc_ios *ios,
186                                            struct mmc_card *card);
187
188 #ifdef CONFIG_S3C_DEV_HSMMC
189 static inline void s5pc100_default_sdhci0(void)
190 {
191         s3c_hsmmc0_def_platdata.clocks = s5pc100_hsmmc_clksrcs;
192         s3c_hsmmc0_def_platdata.cfg_gpio = s5pc100_setup_sdhci0_cfg_gpio;
193         s3c_hsmmc0_def_platdata.cfg_card = s5pc100_setup_sdhci0_cfg_card;
194 }
195 #else
196 static inline void s5pc100_default_sdhci0(void) { }
197 #endif /* CONFIG_S3C_DEV_HSMMC */
198
199 #ifdef CONFIG_S3C_DEV_HSMMC1
200 static inline void s5pc100_default_sdhci1(void)
201 {
202         s3c_hsmmc1_def_platdata.clocks = s5pc100_hsmmc_clksrcs;
203         s3c_hsmmc1_def_platdata.cfg_gpio = s5pc100_setup_sdhci1_cfg_gpio;
204         s3c_hsmmc1_def_platdata.cfg_card = s5pc100_setup_sdhci0_cfg_card;
205 }
206 #else
207 static inline void s5pc100_default_sdhci1(void) { }
208 #endif /* CONFIG_S3C_DEV_HSMMC1 */
209
210 #ifdef CONFIG_S3C_DEV_HSMMC2
211 static inline void s5pc100_default_sdhci2(void)
212 {
213         s3c_hsmmc2_def_platdata.clocks = s5pc100_hsmmc_clksrcs;
214         s3c_hsmmc2_def_platdata.cfg_gpio = s5pc100_setup_sdhci2_cfg_gpio;
215         s3c_hsmmc2_def_platdata.cfg_card = s5pc100_setup_sdhci0_cfg_card;
216 }
217 #else
218 static inline void s5pc100_default_sdhci2(void) { }
219 #endif /* CONFIG_S3C_DEV_HSMMC1 */
220
221
222 #else
223 static inline void s5pc100_default_sdhci0(void) { }
224 static inline void s5pc100_default_sdhci1(void) { }
225 static inline void s5pc100_default_sdhci2(void) { }
226 #endif /* CONFIG_S5PC100_SETUP_SDHCI */
227
228
229 /* S5PC110 SDHCI setup */
230 #ifdef CONFIG_S5PV210_SETUP_SDHCI
231 extern char *s5pv210_hsmmc_clksrcs[4];
232
233 extern void s5pv210_setup_sdhci_cfg_card(struct platform_device *dev,
234                                            void __iomem *r,
235                                            struct mmc_ios *ios,
236                                            struct mmc_card *card);
237
238 #ifdef CONFIG_S3C_DEV_HSMMC
239 static inline void s5pv210_default_sdhci0(void)
240 {
241         s3c_hsmmc0_def_platdata.clocks = s5pv210_hsmmc_clksrcs;
242         s3c_hsmmc0_def_platdata.cfg_gpio = s5pv210_setup_sdhci0_cfg_gpio;
243         s3c_hsmmc0_def_platdata.cfg_card = s5pv210_setup_sdhci_cfg_card;
244 }
245 #else
246 static inline void s5pv210_default_sdhci0(void) { }
247 #endif /* CONFIG_S3C_DEV_HSMMC */
248
249 #ifdef CONFIG_S3C_DEV_HSMMC1
250 static inline void s5pv210_default_sdhci1(void)
251 {
252         s3c_hsmmc1_def_platdata.clocks = s5pv210_hsmmc_clksrcs;
253         s3c_hsmmc1_def_platdata.cfg_gpio = s5pv210_setup_sdhci1_cfg_gpio;
254         s3c_hsmmc1_def_platdata.cfg_card = s5pv210_setup_sdhci_cfg_card;
255 }
256 #else
257 static inline void s5pv210_default_sdhci1(void) { }
258 #endif /* CONFIG_S3C_DEV_HSMMC1 */
259
260 #ifdef CONFIG_S3C_DEV_HSMMC2
261 static inline void s5pv210_default_sdhci2(void)
262 {
263         s3c_hsmmc2_def_platdata.clocks = s5pv210_hsmmc_clksrcs;
264         s3c_hsmmc2_def_platdata.cfg_gpio = s5pv210_setup_sdhci2_cfg_gpio;
265         s3c_hsmmc2_def_platdata.cfg_card = s5pv210_setup_sdhci_cfg_card;
266 }
267 #else
268 static inline void s5pv210_default_sdhci2(void) { }
269 #endif /* CONFIG_S3C_DEV_HSMMC2 */
270
271 #else
272 static inline void s5pv210_default_sdhci0(void) { }
273 static inline void s5pv210_default_sdhci1(void) { }
274 static inline void s5pv210_default_sdhci2(void) { }
275 #endif /* CONFIG_S5PC100_SETUP_SDHCI */
276
277
278
279
280 #endif /* __PLAT_S3C_SDHCI_H */