ARM: SAMSUNG: updates sdhci.h for Samsung SoCs
[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 enum cd_types {
24         S3C_SDHCI_CD_INTERNAL,  /* use mmc internal CD line */
25         S3C_SDHCI_CD_EXTERNAL,  /* use external callback */
26         S3C_SDHCI_CD_GPIO,      /* use external gpio pin for CD line */
27         S3C_SDHCI_CD_NONE,      /* no CD line, use polling to detect card */
28         S3C_SDHCI_CD_PERMANENT, /* no CD line, card permanently wired to host */
29 };
30
31 /**
32  * struct s3c_sdhci_platdata() - Platform device data for Samsung SDHCI
33  * @max_width: The maximum number of data bits supported.
34  * @host_caps: Standard MMC host capabilities bit field.
35  * @cd_type: Type of Card Detection method (see cd_types enum above)
36  * @ext_cd_init: Initialize external card detect subsystem. Called on
37  *               sdhci-s3c driver probe when cd_type == S3C_SDHCI_CD_EXTERNAL.
38  *               notify_func argument is a callback to the sdhci-s3c driver
39  *               that triggers the card detection event. Callback arguments:
40  *               dev is pointer to platform device of the host controller,
41  *               state is new state of the card (0 - removed, 1 - inserted).
42  * @ext_cd_cleanup: Cleanup external card detect subsystem. Called on
43  *               sdhci-s3c driver remove when cd_type == S3C_SDHCI_CD_EXTERNAL.
44  *               notify_func argument is the same callback as for ext_cd_init.
45  * @ext_cd_gpio: gpio pin used for external CD line, valid only if
46  *               cd_type == S3C_SDHCI_CD_GPIO
47  * @ext_cd_gpio_invert: invert values for external CD gpio line
48  * @cfg_gpio: Configure the GPIO for a specific card bit-width
49  * @cfg_card: Configure the interface for a specific card and speed. This
50  *            is necessary the controllers and/or GPIO blocks require the
51  *            changing of driver-strength and other controls dependant on
52  *            the card and speed of operation.
53  *
54  * Initialisation data specific to either the machine or the platform
55  * for the device driver to use or call-back when configuring gpio or
56  * card speed information.
57 */
58 struct s3c_sdhci_platdata {
59         unsigned int    max_width;
60         unsigned int    host_caps;
61         enum cd_types   cd_type;
62
63         char            **clocks;       /* set of clock sources */
64
65         int             ext_cd_gpio;
66         bool            ext_cd_gpio_invert;
67         int     (*ext_cd_init)(void (*notify_func)(struct platform_device *,
68                                                    int state));
69         int     (*ext_cd_cleanup)(void (*notify_func)(struct platform_device *,
70                                                       int state));
71
72         void    (*cfg_gpio)(struct platform_device *dev, int width);
73         void    (*cfg_card)(struct platform_device *dev,
74                             void __iomem *regbase,
75                             struct mmc_ios *ios,
76                             struct mmc_card *card);
77 };
78
79 /**
80  * s3c_sdhci0_set_platdata - Set platform data for S3C SDHCI device.
81  * @pd: Platform data to register to device.
82  *
83  * Register the given platform data for use withe S3C SDHCI device.
84  * The call will copy the platform data, so the board definitions can
85  * make the structure itself __initdata.
86  */
87 extern void s3c_sdhci0_set_platdata(struct s3c_sdhci_platdata *pd);
88 extern void s3c_sdhci1_set_platdata(struct s3c_sdhci_platdata *pd);
89 extern void s3c_sdhci2_set_platdata(struct s3c_sdhci_platdata *pd);
90 extern void s3c_sdhci3_set_platdata(struct s3c_sdhci_platdata *pd);
91
92 /* Default platform data, exported so that per-cpu initialisation can
93  * set the correct one when there are more than one cpu type selected.
94 */
95
96 extern struct s3c_sdhci_platdata s3c_hsmmc0_def_platdata;
97 extern struct s3c_sdhci_platdata s3c_hsmmc1_def_platdata;
98 extern struct s3c_sdhci_platdata s3c_hsmmc2_def_platdata;
99 extern struct s3c_sdhci_platdata s3c_hsmmc3_def_platdata;
100
101 /* Helper function availablity */
102
103 extern void s3c64xx_setup_sdhci0_cfg_gpio(struct platform_device *, int w);
104 extern void s3c64xx_setup_sdhci1_cfg_gpio(struct platform_device *, int w);
105 extern void s5pc100_setup_sdhci0_cfg_gpio(struct platform_device *, int w);
106 extern void s5pc100_setup_sdhci1_cfg_gpio(struct platform_device *, int w);
107 extern void s5pc100_setup_sdhci2_cfg_gpio(struct platform_device *, int w);
108 extern void s3c64xx_setup_sdhci2_cfg_gpio(struct platform_device *, int w);
109 extern void s5pv210_setup_sdhci0_cfg_gpio(struct platform_device *, int w);
110 extern void s5pv210_setup_sdhci1_cfg_gpio(struct platform_device *, int w);
111 extern void s5pv210_setup_sdhci2_cfg_gpio(struct platform_device *, int w);
112
113 /* S3C64XX SDHCI setup */
114
115 #ifdef CONFIG_S3C64XX_SETUP_SDHCI
116 extern char *s3c64xx_hsmmc_clksrcs[4];
117
118 extern void s3c6400_setup_sdhci_cfg_card(struct platform_device *dev,
119                                          void __iomem *r,
120                                          struct mmc_ios *ios,
121                                          struct mmc_card *card);
122
123 static inline void s3c6400_default_sdhci0(void)
124 {
125 #ifdef CONFIG_S3C_DEV_HSMMC
126         s3c_hsmmc0_def_platdata.clocks = s3c64xx_hsmmc_clksrcs;
127         s3c_hsmmc0_def_platdata.cfg_gpio = s3c64xx_setup_sdhci0_cfg_gpio;
128         s3c_hsmmc0_def_platdata.cfg_card = s3c6400_setup_sdhci_cfg_card;
129 #endif
130 }
131
132 static inline void s3c6400_default_sdhci1(void)
133 {
134 #ifdef CONFIG_S3C_DEV_HSMMC1
135         s3c_hsmmc1_def_platdata.clocks = s3c64xx_hsmmc_clksrcs;
136         s3c_hsmmc1_def_platdata.cfg_gpio = s3c64xx_setup_sdhci1_cfg_gpio;
137         s3c_hsmmc1_def_platdata.cfg_card = s3c6400_setup_sdhci_cfg_card;
138 #endif
139 }
140
141 static inline void s3c6400_default_sdhci2(void)
142 {
143 #ifdef CONFIG_S3C_DEV_HSMMC2
144         s3c_hsmmc2_def_platdata.clocks = s3c64xx_hsmmc_clksrcs;
145         s3c_hsmmc2_def_platdata.cfg_gpio = s3c64xx_setup_sdhci2_cfg_gpio;
146         s3c_hsmmc2_def_platdata.cfg_card = s3c6400_setup_sdhci_cfg_card;
147 #endif
148 }
149
150 extern void s3c6410_setup_sdhci_cfg_card(struct platform_device *dev,
151                                          void __iomem *r,
152                                          struct mmc_ios *ios,
153                                          struct mmc_card *card);
154
155 static inline void s3c6410_default_sdhci0(void)
156 {
157 #ifdef CONFIG_S3C_DEV_HSMMC
158         s3c_hsmmc0_def_platdata.clocks = s3c64xx_hsmmc_clksrcs;
159         s3c_hsmmc0_def_platdata.cfg_gpio = s3c64xx_setup_sdhci0_cfg_gpio;
160         s3c_hsmmc0_def_platdata.cfg_card = s3c6410_setup_sdhci_cfg_card;
161 #endif
162 }
163
164 static inline void s3c6410_default_sdhci1(void)
165 {
166 #ifdef CONFIG_S3C_DEV_HSMMC1
167         s3c_hsmmc1_def_platdata.clocks = s3c64xx_hsmmc_clksrcs;
168         s3c_hsmmc1_def_platdata.cfg_gpio = s3c64xx_setup_sdhci1_cfg_gpio;
169         s3c_hsmmc1_def_platdata.cfg_card = s3c6410_setup_sdhci_cfg_card;
170 #endif
171 }
172
173 static inline void s3c6410_default_sdhci2(void)
174 {
175 #ifdef CONFIG_S3C_DEV_HSMMC2
176         s3c_hsmmc2_def_platdata.clocks = s3c64xx_hsmmc_clksrcs;
177         s3c_hsmmc2_def_platdata.cfg_gpio = s3c64xx_setup_sdhci2_cfg_gpio;
178         s3c_hsmmc2_def_platdata.cfg_card = s3c6410_setup_sdhci_cfg_card;
179 #endif
180 }
181
182 #else
183 static inline void s3c6410_default_sdhci0(void) { }
184 static inline void s3c6410_default_sdhci1(void) { }
185 static inline void s3c6410_default_sdhci2(void) { }
186 static inline void s3c6400_default_sdhci0(void) { }
187 static inline void s3c6400_default_sdhci1(void) { }
188 static inline void s3c6400_default_sdhci2(void) { }
189
190 #endif /* CONFIG_S3C64XX_SETUP_SDHCI */
191
192 /* S5PC100 SDHCI setup */
193
194 #ifdef CONFIG_S5PC100_SETUP_SDHCI
195 extern char *s5pc100_hsmmc_clksrcs[4];
196
197 extern void s5pc100_setup_sdhci0_cfg_card(struct platform_device *dev,
198                                            void __iomem *r,
199                                            struct mmc_ios *ios,
200                                            struct mmc_card *card);
201
202 static inline void s5pc100_default_sdhci0(void)
203 {
204 #ifdef CONFIG_S3C_DEV_HSMMC
205         s3c_hsmmc0_def_platdata.clocks = s5pc100_hsmmc_clksrcs;
206         s3c_hsmmc0_def_platdata.cfg_gpio = s5pc100_setup_sdhci0_cfg_gpio;
207         s3c_hsmmc0_def_platdata.cfg_card = s5pc100_setup_sdhci0_cfg_card;
208 #endif
209 }
210
211 static inline void s5pc100_default_sdhci1(void)
212 {
213 #ifdef CONFIG_S3C_DEV_HSMMC1
214         s3c_hsmmc1_def_platdata.clocks = s5pc100_hsmmc_clksrcs;
215         s3c_hsmmc1_def_platdata.cfg_gpio = s5pc100_setup_sdhci1_cfg_gpio;
216         s3c_hsmmc1_def_platdata.cfg_card = s5pc100_setup_sdhci0_cfg_card;
217 #endif
218 }
219
220 static inline void s5pc100_default_sdhci2(void)
221 {
222 #ifdef CONFIG_S3C_DEV_HSMMC2
223         s3c_hsmmc2_def_platdata.clocks = s5pc100_hsmmc_clksrcs;
224         s3c_hsmmc2_def_platdata.cfg_gpio = s5pc100_setup_sdhci2_cfg_gpio;
225         s3c_hsmmc2_def_platdata.cfg_card = s5pc100_setup_sdhci0_cfg_card;
226 #endif
227 }
228
229 #else
230 static inline void s5pc100_default_sdhci0(void) { }
231 static inline void s5pc100_default_sdhci1(void) { }
232 static inline void s5pc100_default_sdhci2(void) { }
233
234 #endif /* CONFIG_S5PC100_SETUP_SDHCI */
235
236 /* S5PV210 SDHCI setup */
237
238 #ifdef CONFIG_S5PV210_SETUP_SDHCI
239 extern char *s5pv210_hsmmc_clksrcs[4];
240
241 extern void s5pv210_setup_sdhci_cfg_card(struct platform_device *dev,
242                                            void __iomem *r,
243                                            struct mmc_ios *ios,
244                                            struct mmc_card *card);
245
246 static inline void s5pv210_default_sdhci0(void)
247 {
248 #ifdef CONFIG_S3C_DEV_HSMMC
249         s3c_hsmmc0_def_platdata.clocks = s5pv210_hsmmc_clksrcs;
250         s3c_hsmmc0_def_platdata.cfg_gpio = s5pv210_setup_sdhci0_cfg_gpio;
251         s3c_hsmmc0_def_platdata.cfg_card = s5pv210_setup_sdhci_cfg_card;
252 #endif
253 }
254
255 static inline void s5pv210_default_sdhci1(void)
256 {
257 #ifdef CONFIG_S3C_DEV_HSMMC1
258         s3c_hsmmc1_def_platdata.clocks = s5pv210_hsmmc_clksrcs;
259         s3c_hsmmc1_def_platdata.cfg_gpio = s5pv210_setup_sdhci1_cfg_gpio;
260         s3c_hsmmc1_def_platdata.cfg_card = s5pv210_setup_sdhci_cfg_card;
261 #endif
262 }
263
264 static inline void s5pv210_default_sdhci2(void)
265 {
266 #ifdef CONFIG_S3C_DEV_HSMMC2
267         s3c_hsmmc2_def_platdata.clocks = s5pv210_hsmmc_clksrcs;
268         s3c_hsmmc2_def_platdata.cfg_gpio = s5pv210_setup_sdhci2_cfg_gpio;
269         s3c_hsmmc2_def_platdata.cfg_card = s5pv210_setup_sdhci_cfg_card;
270 #endif
271 }
272
273 #else
274 static inline void s5pv210_default_sdhci0(void) { }
275 static inline void s5pv210_default_sdhci1(void) { }
276 static inline void s5pv210_default_sdhci2(void) { }
277
278 #endif /* CONFIG_S5PV210_SETUP_SDHCI */
279
280 #endif /* __PLAT_S3C_SDHCI_H */