]> git.karo-electronics.de Git - karo-tx-linux.git/blob - arch/arm/plat-samsung/include/plat/sdhci.h
Merge branches 'upstream-fixes', 'wacom' and 'waltop' into for-linus
[karo-tx-linux.git] / arch / arm / plat-samsung / include / plat / sdhci.h
1 /* linux/arch/arm/plat-samsung/include/plat/sdhci.h
2  *
3  * Copyright (c) 2011 Samsung Electronics Co., Ltd.
4  *              http://www.samsung.com
5  *
6  * Copyright 2008 Openmoko, Inc.
7  * Copyright 2008 Simtec Electronics
8  *      http://armlinux.simtec.co.uk/
9  *      Ben Dooks <ben@simtec.co.uk>
10  *
11  * S3C Platform - SDHCI (HSMMC) platform data definitions
12  *
13  * This program is free software; you can redistribute it and/or modify
14  * it under the terms of the GNU General Public License version 2 as
15  * published by the Free Software Foundation.
16 */
17
18 #ifndef __PLAT_S3C_SDHCI_H
19 #define __PLAT_S3C_SDHCI_H __FILE__
20
21 struct platform_device;
22 struct mmc_host;
23 struct mmc_card;
24 struct mmc_ios;
25
26 enum cd_types {
27         S3C_SDHCI_CD_INTERNAL,  /* use mmc internal CD line */
28         S3C_SDHCI_CD_EXTERNAL,  /* use external callback */
29         S3C_SDHCI_CD_GPIO,      /* use external gpio pin for CD line */
30         S3C_SDHCI_CD_NONE,      /* no CD line, use polling to detect card */
31         S3C_SDHCI_CD_PERMANENT, /* no CD line, card permanently wired to host */
32 };
33
34 enum clk_types {
35         S3C_SDHCI_CLK_DIV_INTERNAL,     /* use mmc internal clock divider */
36         S3C_SDHCI_CLK_DIV_EXTERNAL,     /* use external clock divider */
37 };
38
39 /**
40  * struct s3c_sdhci_platdata() - Platform device data for Samsung SDHCI
41  * @max_width: The maximum number of data bits supported.
42  * @host_caps: Standard MMC host capabilities bit field.
43  * @host_caps2: The second standard MMC host capabilities bit field.
44  * @cd_type: Type of Card Detection method (see cd_types enum above)
45  * @clk_type: Type of clock divider method (see clk_types enum above)
46  * @ext_cd_init: Initialize external card detect subsystem. Called on
47  *               sdhci-s3c driver probe when cd_type == S3C_SDHCI_CD_EXTERNAL.
48  *               notify_func argument is a callback to the sdhci-s3c driver
49  *               that triggers the card detection event. Callback arguments:
50  *               dev is pointer to platform device of the host controller,
51  *               state is new state of the card (0 - removed, 1 - inserted).
52  * @ext_cd_cleanup: Cleanup external card detect subsystem. Called on
53  *               sdhci-s3c driver remove when cd_type == S3C_SDHCI_CD_EXTERNAL.
54  *               notify_func argument is the same callback as for ext_cd_init.
55  * @ext_cd_gpio: gpio pin used for external CD line, valid only if
56  *               cd_type == S3C_SDHCI_CD_GPIO
57  * @ext_cd_gpio_invert: invert values for external CD gpio line
58  * @cfg_gpio: Configure the GPIO for a specific card bit-width
59  *
60  * Initialisation data specific to either the machine or the platform
61  * for the device driver to use or call-back when configuring gpio or
62  * card speed information.
63 */
64 struct s3c_sdhci_platdata {
65         unsigned int    max_width;
66         unsigned int    host_caps;
67         unsigned int    host_caps2;
68         unsigned int    pm_caps;
69         enum cd_types   cd_type;
70         enum clk_types  clk_type;
71
72         int             ext_cd_gpio;
73         bool            ext_cd_gpio_invert;
74         int     (*ext_cd_init)(void (*notify_func)(struct platform_device *,
75                                                    int state));
76         int     (*ext_cd_cleanup)(void (*notify_func)(struct platform_device *,
77                                                       int state));
78
79         void    (*cfg_gpio)(struct platform_device *dev, int width);
80 };
81
82 /* s3c_sdhci_set_platdata() - common helper for setting SDHCI platform data
83  * @pd: The default platform data for this device.
84  * @set: Pointer to the platform data to fill in.
85  */
86 extern void s3c_sdhci_set_platdata(struct s3c_sdhci_platdata *pd,
87                                     struct s3c_sdhci_platdata *set);
88
89 /**
90  * s3c_sdhci0_set_platdata - Set platform data for S3C SDHCI device.
91  * @pd: Platform data to register to device.
92  *
93  * Register the given platform data for use withe S3C SDHCI device.
94  * The call will copy the platform data, so the board definitions can
95  * make the structure itself __initdata.
96  */
97 extern void s3c_sdhci0_set_platdata(struct s3c_sdhci_platdata *pd);
98 extern void s3c_sdhci1_set_platdata(struct s3c_sdhci_platdata *pd);
99 extern void s3c_sdhci2_set_platdata(struct s3c_sdhci_platdata *pd);
100 extern void s3c_sdhci3_set_platdata(struct s3c_sdhci_platdata *pd);
101
102 /* Default platform data, exported so that per-cpu initialisation can
103  * set the correct one when there are more than one cpu type selected.
104 */
105
106 extern struct s3c_sdhci_platdata s3c_hsmmc0_def_platdata;
107 extern struct s3c_sdhci_platdata s3c_hsmmc1_def_platdata;
108 extern struct s3c_sdhci_platdata s3c_hsmmc2_def_platdata;
109 extern struct s3c_sdhci_platdata s3c_hsmmc3_def_platdata;
110
111 /* Helper function availability */
112
113 extern void s3c2416_setup_sdhci0_cfg_gpio(struct platform_device *, int w);
114 extern void s3c2416_setup_sdhci1_cfg_gpio(struct platform_device *, int w);
115 extern void s3c64xx_setup_sdhci0_cfg_gpio(struct platform_device *, int w);
116 extern void s3c64xx_setup_sdhci1_cfg_gpio(struct platform_device *, int w);
117 extern void s5pc100_setup_sdhci0_cfg_gpio(struct platform_device *, int w);
118 extern void s5pc100_setup_sdhci1_cfg_gpio(struct platform_device *, int w);
119 extern void s5pc100_setup_sdhci2_cfg_gpio(struct platform_device *, int w);
120 extern void s3c64xx_setup_sdhci2_cfg_gpio(struct platform_device *, int w);
121 extern void s5pv210_setup_sdhci0_cfg_gpio(struct platform_device *, int w);
122 extern void s5pv210_setup_sdhci1_cfg_gpio(struct platform_device *, int w);
123 extern void s5pv210_setup_sdhci2_cfg_gpio(struct platform_device *, int w);
124 extern void s5pv210_setup_sdhci3_cfg_gpio(struct platform_device *, int w);
125 extern void exynos4_setup_sdhci0_cfg_gpio(struct platform_device *, int w);
126 extern void exynos4_setup_sdhci1_cfg_gpio(struct platform_device *, int w);
127 extern void exynos4_setup_sdhci2_cfg_gpio(struct platform_device *, int w);
128 extern void exynos4_setup_sdhci3_cfg_gpio(struct platform_device *, int w);
129 extern void s5p64x0_setup_sdhci0_cfg_gpio(struct platform_device *, int w);
130 extern void s5p64x0_setup_sdhci1_cfg_gpio(struct platform_device *, int w);
131 extern void s5p6440_setup_sdhci2_cfg_gpio(struct platform_device *, int w);
132 extern void s5p6450_setup_sdhci2_cfg_gpio(struct platform_device *, int w);
133
134 /* S3C2416 SDHCI setup */
135
136 #ifdef CONFIG_S3C2416_SETUP_SDHCI
137 static inline void s3c2416_default_sdhci0(void)
138 {
139 #ifdef CONFIG_S3C_DEV_HSMMC
140         s3c_hsmmc0_def_platdata.cfg_gpio = s3c2416_setup_sdhci0_cfg_gpio;
141 #endif /* CONFIG_S3C_DEV_HSMMC */
142 }
143
144 static inline void s3c2416_default_sdhci1(void)
145 {
146 #ifdef CONFIG_S3C_DEV_HSMMC1
147         s3c_hsmmc1_def_platdata.cfg_gpio = s3c2416_setup_sdhci1_cfg_gpio;
148 #endif /* CONFIG_S3C_DEV_HSMMC1 */
149 }
150
151 #else
152 static inline void s3c2416_default_sdhci0(void) { }
153 static inline void s3c2416_default_sdhci1(void) { }
154
155 #endif /* CONFIG_S3C2416_SETUP_SDHCI */
156
157 /* S3C64XX SDHCI setup */
158
159 #ifdef CONFIG_S3C64XX_SETUP_SDHCI
160 static inline void s3c6400_default_sdhci0(void)
161 {
162 #ifdef CONFIG_S3C_DEV_HSMMC
163         s3c_hsmmc0_def_platdata.cfg_gpio = s3c64xx_setup_sdhci0_cfg_gpio;
164 #endif
165 }
166
167 static inline void s3c6400_default_sdhci1(void)
168 {
169 #ifdef CONFIG_S3C_DEV_HSMMC1
170         s3c_hsmmc1_def_platdata.cfg_gpio = s3c64xx_setup_sdhci1_cfg_gpio;
171 #endif
172 }
173
174 static inline void s3c6400_default_sdhci2(void)
175 {
176 #ifdef CONFIG_S3C_DEV_HSMMC2
177         s3c_hsmmc2_def_platdata.cfg_gpio = s3c64xx_setup_sdhci2_cfg_gpio;
178 #endif
179 }
180
181 static inline void s3c6410_default_sdhci0(void)
182 {
183 #ifdef CONFIG_S3C_DEV_HSMMC
184         s3c_hsmmc0_def_platdata.cfg_gpio = s3c64xx_setup_sdhci0_cfg_gpio;
185 #endif
186 }
187
188 static inline void s3c6410_default_sdhci1(void)
189 {
190 #ifdef CONFIG_S3C_DEV_HSMMC1
191         s3c_hsmmc1_def_platdata.cfg_gpio = s3c64xx_setup_sdhci1_cfg_gpio;
192 #endif
193 }
194
195 static inline void s3c6410_default_sdhci2(void)
196 {
197 #ifdef CONFIG_S3C_DEV_HSMMC2
198         s3c_hsmmc2_def_platdata.cfg_gpio = s3c64xx_setup_sdhci2_cfg_gpio;
199 #endif
200 }
201
202 #else
203 static inline void s3c6410_default_sdhci0(void) { }
204 static inline void s3c6410_default_sdhci1(void) { }
205 static inline void s3c6410_default_sdhci2(void) { }
206 static inline void s3c6400_default_sdhci0(void) { }
207 static inline void s3c6400_default_sdhci1(void) { }
208 static inline void s3c6400_default_sdhci2(void) { }
209
210 #endif /* CONFIG_S3C64XX_SETUP_SDHCI */
211
212 /* S5P64X0 SDHCI setup */
213
214 #ifdef CONFIG_S5P64X0_SETUP_SDHCI
215 static inline void s5p64x0_default_sdhci0(void)
216 {
217 #ifdef CONFIG_S3C_DEV_HSMMC
218         s3c_hsmmc0_def_platdata.cfg_gpio = s5p64x0_setup_sdhci0_cfg_gpio;
219 #endif
220 }
221
222 static inline void s5p64x0_default_sdhci1(void)
223 {
224 #ifdef CONFIG_S3C_DEV_HSMMC1
225         s3c_hsmmc1_def_platdata.cfg_gpio = s5p64x0_setup_sdhci1_cfg_gpio;
226 #endif
227 }
228
229 static inline void s5p6440_default_sdhci2(void)
230 {
231 #ifdef CONFIG_S3C_DEV_HSMMC2
232         s3c_hsmmc2_def_platdata.cfg_gpio = s5p6440_setup_sdhci2_cfg_gpio;
233 #endif
234 }
235
236 static inline void s5p6450_default_sdhci2(void)
237 {
238 #ifdef CONFIG_S3C_DEV_HSMMC2
239         s3c_hsmmc2_def_platdata.cfg_gpio = s5p6450_setup_sdhci2_cfg_gpio;
240 #endif
241 }
242
243 #else
244 static inline void s5p64x0_default_sdhci0(void) { }
245 static inline void s5p64x0_default_sdhci1(void) { }
246 static inline void s5p6440_default_sdhci2(void) { }
247 static inline void s5p6450_default_sdhci2(void) { }
248
249 #endif /* CONFIG_S5P64X0_SETUP_SDHCI */
250
251 /* S5PC100 SDHCI setup */
252
253 #ifdef CONFIG_S5PC100_SETUP_SDHCI
254 static inline void s5pc100_default_sdhci0(void)
255 {
256 #ifdef CONFIG_S3C_DEV_HSMMC
257         s3c_hsmmc0_def_platdata.cfg_gpio = s5pc100_setup_sdhci0_cfg_gpio;
258 #endif
259 }
260
261 static inline void s5pc100_default_sdhci1(void)
262 {
263 #ifdef CONFIG_S3C_DEV_HSMMC1
264         s3c_hsmmc1_def_platdata.cfg_gpio = s5pc100_setup_sdhci1_cfg_gpio;
265 #endif
266 }
267
268 static inline void s5pc100_default_sdhci2(void)
269 {
270 #ifdef CONFIG_S3C_DEV_HSMMC2
271         s3c_hsmmc2_def_platdata.cfg_gpio = s5pc100_setup_sdhci2_cfg_gpio;
272 #endif
273 }
274
275 #else
276 static inline void s5pc100_default_sdhci0(void) { }
277 static inline void s5pc100_default_sdhci1(void) { }
278 static inline void s5pc100_default_sdhci2(void) { }
279
280 #endif /* CONFIG_S5PC100_SETUP_SDHCI */
281
282 /* S5PV210 SDHCI setup */
283
284 #ifdef CONFIG_S5PV210_SETUP_SDHCI
285 static inline void s5pv210_default_sdhci0(void)
286 {
287 #ifdef CONFIG_S3C_DEV_HSMMC
288         s3c_hsmmc0_def_platdata.cfg_gpio = s5pv210_setup_sdhci0_cfg_gpio;
289 #endif
290 }
291
292 static inline void s5pv210_default_sdhci1(void)
293 {
294 #ifdef CONFIG_S3C_DEV_HSMMC1
295         s3c_hsmmc1_def_platdata.cfg_gpio = s5pv210_setup_sdhci1_cfg_gpio;
296 #endif
297 }
298
299 static inline void s5pv210_default_sdhci2(void)
300 {
301 #ifdef CONFIG_S3C_DEV_HSMMC2
302         s3c_hsmmc2_def_platdata.cfg_gpio = s5pv210_setup_sdhci2_cfg_gpio;
303 #endif
304 }
305
306 static inline void s5pv210_default_sdhci3(void)
307 {
308 #ifdef CONFIG_S3C_DEV_HSMMC3
309         s3c_hsmmc3_def_platdata.cfg_gpio = s5pv210_setup_sdhci3_cfg_gpio;
310 #endif
311 }
312
313 #else
314 static inline void s5pv210_default_sdhci0(void) { }
315 static inline void s5pv210_default_sdhci1(void) { }
316 static inline void s5pv210_default_sdhci2(void) { }
317 static inline void s5pv210_default_sdhci3(void) { }
318
319 #endif /* CONFIG_S5PV210_SETUP_SDHCI */
320
321 /* EXYNOS4 SDHCI setup */
322 #ifdef CONFIG_EXYNOS4_SETUP_SDHCI
323 static inline void exynos4_default_sdhci0(void)
324 {
325 #ifdef CONFIG_S3C_DEV_HSMMC
326         s3c_hsmmc0_def_platdata.cfg_gpio = exynos4_setup_sdhci0_cfg_gpio;
327 #endif
328 }
329
330 static inline void exynos4_default_sdhci1(void)
331 {
332 #ifdef CONFIG_S3C_DEV_HSMMC1
333         s3c_hsmmc1_def_platdata.cfg_gpio = exynos4_setup_sdhci1_cfg_gpio;
334 #endif
335 }
336
337 static inline void exynos4_default_sdhci2(void)
338 {
339 #ifdef CONFIG_S3C_DEV_HSMMC2
340         s3c_hsmmc2_def_platdata.cfg_gpio = exynos4_setup_sdhci2_cfg_gpio;
341 #endif
342 }
343
344 static inline void exynos4_default_sdhci3(void)
345 {
346 #ifdef CONFIG_S3C_DEV_HSMMC3
347         s3c_hsmmc3_def_platdata.cfg_gpio = exynos4_setup_sdhci3_cfg_gpio;
348 #endif
349 }
350
351 #else
352 static inline void exynos4_default_sdhci0(void) { }
353 static inline void exynos4_default_sdhci1(void) { }
354 static inline void exynos4_default_sdhci2(void) { }
355 static inline void exynos4_default_sdhci3(void) { }
356
357 #endif /* CONFIG_EXYNOS4_SETUP_SDHCI */
358
359 #endif /* __PLAT_S3C_SDHCI_H */