]>
Commit | Line | Data |
---|---|---|
5c4e6f13 PO |
1 | /* |
2 | * linux/drivers/mmc/sdio.c | |
3 | * | |
4 | * Copyright 2006-2007 Pierre Ossman | |
5 | * | |
6 | * This program is free software; you can redistribute it and/or modify | |
7 | * it under the terms of the GNU General Public License as published by | |
8 | * the Free Software Foundation; either version 2 of the License, or (at | |
9 | * your option) any later version. | |
10 | */ | |
11 | ||
12 | #include <linux/err.h> | |
81968561 | 13 | #include <linux/pm_runtime.h> |
5c4e6f13 PO |
14 | |
15 | #include <linux/mmc/host.h> | |
16 | #include <linux/mmc/card.h> | |
a4924c71 | 17 | #include <linux/mmc/mmc.h> |
35c66c19 | 18 | #include <linux/mmc/sdio.h> |
e29a7d73 | 19 | #include <linux/mmc/sdio_func.h> |
eab40687 | 20 | #include <linux/mmc/sdio_ids.h> |
5c4e6f13 PO |
21 | |
22 | #include "core.h" | |
23 | #include "bus.h" | |
71578a1e | 24 | #include "sd.h" |
e29a7d73 | 25 | #include "sdio_bus.h" |
5c4e6f13 PO |
26 | #include "mmc_ops.h" |
27 | #include "sd_ops.h" | |
28 | #include "sdio_ops.h" | |
b7261261 | 29 | #include "sdio_cis.h" |
5c4e6f13 | 30 | |
0597007f PO |
31 | static int sdio_read_fbr(struct sdio_func *func) |
32 | { | |
33 | int ret; | |
34 | unsigned char data; | |
35 | ||
eab40687 OBC |
36 | if (mmc_card_nonstd_func_interface(func->card)) { |
37 | func->class = SDIO_CLASS_NONE; | |
38 | return 0; | |
39 | } | |
40 | ||
0597007f | 41 | ret = mmc_io_rw_direct(func->card, 0, 0, |
7616ee95 | 42 | SDIO_FBR_BASE(func->num) + SDIO_FBR_STD_IF, 0, &data); |
0597007f PO |
43 | if (ret) |
44 | goto out; | |
45 | ||
46 | data &= 0x0f; | |
47 | ||
48 | if (data == 0x0f) { | |
49 | ret = mmc_io_rw_direct(func->card, 0, 0, | |
7616ee95 | 50 | SDIO_FBR_BASE(func->num) + SDIO_FBR_STD_IF_EXT, 0, &data); |
0597007f PO |
51 | if (ret) |
52 | goto out; | |
53 | } | |
54 | ||
55 | func->class = data; | |
56 | ||
57 | out: | |
58 | return ret; | |
59 | } | |
60 | ||
e29a7d73 PO |
61 | static int sdio_init_func(struct mmc_card *card, unsigned int fn) |
62 | { | |
0597007f | 63 | int ret; |
e29a7d73 PO |
64 | struct sdio_func *func; |
65 | ||
66 | BUG_ON(fn > SDIO_MAX_FUNCS); | |
67 | ||
68 | func = sdio_alloc_func(card); | |
69 | if (IS_ERR(func)) | |
70 | return PTR_ERR(func); | |
71 | ||
72 | func->num = fn; | |
73 | ||
6f51be3d GI |
74 | if (!(card->quirks & MMC_QUIRK_NONSTD_SDIO)) { |
75 | ret = sdio_read_fbr(func); | |
76 | if (ret) | |
77 | goto fail; | |
0597007f | 78 | |
6f51be3d GI |
79 | ret = sdio_read_func_cis(func); |
80 | if (ret) | |
81 | goto fail; | |
82 | } else { | |
83 | func->vendor = func->card->cis.vendor; | |
84 | func->device = func->card->cis.device; | |
85 | func->max_blksize = func->card->cis.blksize; | |
86 | } | |
b7261261 | 87 | |
e29a7d73 PO |
88 | card->sdio_func[fn - 1] = func; |
89 | ||
90 | return 0; | |
0597007f PO |
91 | |
92 | fail: | |
93 | /* | |
94 | * It is okay to remove the function here even though we hold | |
95 | * the host lock as we haven't registered the device yet. | |
96 | */ | |
97 | sdio_remove_func(func); | |
98 | return ret; | |
e29a7d73 PO |
99 | } |
100 | ||
2d0d68f5 | 101 | static int sdio_read_cccr(struct mmc_card *card, u32 ocr) |
35c66c19 PO |
102 | { |
103 | int ret; | |
104 | int cccr_vsn; | |
2d0d68f5 | 105 | int uhs = ocr & R4_18V_PRESENT; |
35c66c19 | 106 | unsigned char data; |
a303c531 | 107 | unsigned char speed; |
35c66c19 PO |
108 | |
109 | memset(&card->cccr, 0, sizeof(struct sdio_cccr)); | |
110 | ||
111 | ret = mmc_io_rw_direct(card, 0, 0, SDIO_CCCR_CCCR, 0, &data); | |
112 | if (ret) | |
113 | goto out; | |
114 | ||
115 | cccr_vsn = data & 0x0f; | |
116 | ||
b4625dab | 117 | if (cccr_vsn > SDIO_CCCR_REV_3_00) { |
a3c76eb9 | 118 | pr_err("%s: unrecognised CCCR structure version %d\n", |
35c66c19 PO |
119 | mmc_hostname(card->host), cccr_vsn); |
120 | return -EINVAL; | |
121 | } | |
122 | ||
123 | card->cccr.sdio_vsn = (data & 0xf0) >> 4; | |
124 | ||
125 | ret = mmc_io_rw_direct(card, 0, 0, SDIO_CCCR_CAPS, 0, &data); | |
126 | if (ret) | |
127 | goto out; | |
128 | ||
129 | if (data & SDIO_CCCR_CAP_SMB) | |
130 | card->cccr.multi_block = 1; | |
131 | if (data & SDIO_CCCR_CAP_LSC) | |
132 | card->cccr.low_speed = 1; | |
133 | if (data & SDIO_CCCR_CAP_4BLS) | |
134 | card->cccr.wide_bus = 1; | |
135 | ||
136 | if (cccr_vsn >= SDIO_CCCR_REV_1_10) { | |
137 | ret = mmc_io_rw_direct(card, 0, 0, SDIO_CCCR_POWER, 0, &data); | |
138 | if (ret) | |
139 | goto out; | |
140 | ||
141 | if (data & SDIO_POWER_SMPC) | |
142 | card->cccr.high_power = 1; | |
143 | } | |
144 | ||
145 | if (cccr_vsn >= SDIO_CCCR_REV_1_20) { | |
a303c531 | 146 | ret = mmc_io_rw_direct(card, 0, 0, SDIO_CCCR_SPEED, 0, &speed); |
35c66c19 PO |
147 | if (ret) |
148 | goto out; | |
149 | ||
a303c531 PR |
150 | card->scr.sda_spec3 = 0; |
151 | card->sw_caps.sd3_bus_mode = 0; | |
152 | card->sw_caps.sd3_drv_type = 0; | |
2d0d68f5 | 153 | if (cccr_vsn >= SDIO_CCCR_REV_3_00 && uhs) { |
a303c531 PR |
154 | card->scr.sda_spec3 = 1; |
155 | ret = mmc_io_rw_direct(card, 0, 0, | |
156 | SDIO_CCCR_UHS, 0, &data); | |
157 | if (ret) | |
158 | goto out; | |
159 | ||
160 | if (card->host->caps & | |
161 | (MMC_CAP_UHS_SDR12 | MMC_CAP_UHS_SDR25 | | |
162 | MMC_CAP_UHS_SDR50 | MMC_CAP_UHS_SDR104 | | |
163 | MMC_CAP_UHS_DDR50)) { | |
164 | if (data & SDIO_UHS_DDR50) | |
165 | card->sw_caps.sd3_bus_mode | |
166 | |= SD_MODE_UHS_DDR50; | |
167 | ||
168 | if (data & SDIO_UHS_SDR50) | |
169 | card->sw_caps.sd3_bus_mode | |
170 | |= SD_MODE_UHS_SDR50; | |
171 | ||
172 | if (data & SDIO_UHS_SDR104) | |
173 | card->sw_caps.sd3_bus_mode | |
174 | |= SD_MODE_UHS_SDR104; | |
175 | } | |
176 | ||
177 | ret = mmc_io_rw_direct(card, 0, 0, | |
178 | SDIO_CCCR_DRIVE_STRENGTH, 0, &data); | |
179 | if (ret) | |
180 | goto out; | |
181 | ||
182 | if (data & SDIO_DRIVE_SDTA) | |
183 | card->sw_caps.sd3_drv_type |= SD_DRIVER_TYPE_A; | |
184 | if (data & SDIO_DRIVE_SDTC) | |
185 | card->sw_caps.sd3_drv_type |= SD_DRIVER_TYPE_C; | |
186 | if (data & SDIO_DRIVE_SDTD) | |
187 | card->sw_caps.sd3_drv_type |= SD_DRIVER_TYPE_D; | |
188 | } | |
189 | ||
190 | /* if no uhs mode ensure we check for high speed */ | |
191 | if (!card->sw_caps.sd3_bus_mode) { | |
192 | if (speed & SDIO_SPEED_SHS) { | |
193 | card->cccr.high_speed = 1; | |
194 | card->sw_caps.hs_max_dtr = 50000000; | |
195 | } else { | |
196 | card->cccr.high_speed = 0; | |
197 | card->sw_caps.hs_max_dtr = 25000000; | |
198 | } | |
199 | } | |
35c66c19 PO |
200 | } |
201 | ||
202 | out: | |
203 | return ret; | |
204 | } | |
205 | ||
4ff6471c PO |
206 | static int sdio_enable_wide(struct mmc_card *card) |
207 | { | |
208 | int ret; | |
209 | u8 ctrl; | |
210 | ||
211 | if (!(card->host->caps & MMC_CAP_4_BIT_DATA)) | |
212 | return 0; | |
213 | ||
214 | if (card->cccr.low_speed && !card->cccr.wide_bus) | |
215 | return 0; | |
216 | ||
217 | ret = mmc_io_rw_direct(card, 0, 0, SDIO_CCCR_IF, 0, &ctrl); | |
218 | if (ret) | |
219 | return ret; | |
220 | ||
221 | ctrl |= SDIO_BUS_WIDTH_4BIT; | |
222 | ||
223 | ret = mmc_io_rw_direct(card, 1, 0, SDIO_CCCR_IF, ctrl, NULL); | |
224 | if (ret) | |
225 | return ret; | |
226 | ||
7310ece8 | 227 | return 1; |
4ff6471c PO |
228 | } |
229 | ||
006ebd5d OBC |
230 | /* |
231 | * If desired, disconnect the pull-up resistor on CD/DAT[3] (pin 1) | |
232 | * of the card. This may be required on certain setups of boards, | |
233 | * controllers and embedded sdio device which do not need the card's | |
234 | * pull-up. As a result, card detection is disabled and power is saved. | |
235 | */ | |
236 | static int sdio_disable_cd(struct mmc_card *card) | |
237 | { | |
238 | int ret; | |
239 | u8 ctrl; | |
240 | ||
2059a02d | 241 | if (!mmc_card_disable_cd(card)) |
006ebd5d OBC |
242 | return 0; |
243 | ||
244 | ret = mmc_io_rw_direct(card, 0, 0, SDIO_CCCR_IF, 0, &ctrl); | |
245 | if (ret) | |
246 | return ret; | |
247 | ||
248 | ctrl |= SDIO_BUS_CD_DISABLE; | |
249 | ||
250 | return mmc_io_rw_direct(card, 1, 0, SDIO_CCCR_IF, ctrl, NULL); | |
251 | } | |
252 | ||
6b5eda36 DD |
253 | /* |
254 | * Devices that remain active during a system suspend are | |
255 | * put back into 1-bit mode. | |
256 | */ | |
257 | static int sdio_disable_wide(struct mmc_card *card) | |
258 | { | |
259 | int ret; | |
260 | u8 ctrl; | |
261 | ||
262 | if (!(card->host->caps & MMC_CAP_4_BIT_DATA)) | |
263 | return 0; | |
264 | ||
265 | if (card->cccr.low_speed && !card->cccr.wide_bus) | |
266 | return 0; | |
267 | ||
268 | ret = mmc_io_rw_direct(card, 0, 0, SDIO_CCCR_IF, 0, &ctrl); | |
269 | if (ret) | |
270 | return ret; | |
271 | ||
272 | if (!(ctrl & SDIO_BUS_WIDTH_4BIT)) | |
273 | return 0; | |
274 | ||
275 | ctrl &= ~SDIO_BUS_WIDTH_4BIT; | |
276 | ctrl |= SDIO_BUS_ASYNC_INT; | |
277 | ||
278 | ret = mmc_io_rw_direct(card, 1, 0, SDIO_CCCR_IF, ctrl, NULL); | |
279 | if (ret) | |
280 | return ret; | |
281 | ||
282 | mmc_set_bus_width(card->host, MMC_BUS_WIDTH_1); | |
283 | ||
284 | return 0; | |
285 | } | |
286 | ||
7310ece8 MM |
287 | |
288 | static int sdio_enable_4bit_bus(struct mmc_card *card) | |
289 | { | |
290 | int err; | |
291 | ||
292 | if (card->type == MMC_TYPE_SDIO) | |
293 | return sdio_enable_wide(card); | |
294 | ||
295 | if ((card->host->caps & MMC_CAP_4_BIT_DATA) && | |
296 | (card->scr.bus_widths & SD_SCR_BUS_WIDTH_4)) { | |
297 | err = mmc_app_set_bus_width(card, MMC_BUS_WIDTH_4); | |
298 | if (err) | |
299 | return err; | |
300 | } else | |
301 | return 0; | |
302 | ||
303 | err = sdio_enable_wide(card); | |
304 | if (err <= 0) | |
305 | mmc_app_set_bus_width(card, MMC_BUS_WIDTH_1); | |
306 | ||
307 | return err; | |
308 | } | |
309 | ||
310 | ||
d16f5770 PO |
311 | /* |
312 | * Test if the card supports high-speed mode and, if so, switch to it. | |
313 | */ | |
7310ece8 | 314 | static int mmc_sdio_switch_hs(struct mmc_card *card, int enable) |
d16f5770 PO |
315 | { |
316 | int ret; | |
317 | u8 speed; | |
318 | ||
319 | if (!(card->host->caps & MMC_CAP_SD_HIGHSPEED)) | |
320 | return 0; | |
321 | ||
322 | if (!card->cccr.high_speed) | |
323 | return 0; | |
324 | ||
325 | ret = mmc_io_rw_direct(card, 0, 0, SDIO_CCCR_SPEED, 0, &speed); | |
326 | if (ret) | |
327 | return ret; | |
328 | ||
7310ece8 MM |
329 | if (enable) |
330 | speed |= SDIO_SPEED_EHS; | |
331 | else | |
332 | speed &= ~SDIO_SPEED_EHS; | |
d16f5770 PO |
333 | |
334 | ret = mmc_io_rw_direct(card, 1, 0, SDIO_CCCR_SPEED, speed, NULL); | |
335 | if (ret) | |
336 | return ret; | |
337 | ||
71578a1e MM |
338 | return 1; |
339 | } | |
d16f5770 | 340 | |
7310ece8 MM |
341 | /* |
342 | * Enable SDIO/combo card's high-speed mode. Return 0/1 if [not]supported. | |
343 | */ | |
344 | static int sdio_enable_hs(struct mmc_card *card) | |
345 | { | |
346 | int ret; | |
347 | ||
348 | ret = mmc_sdio_switch_hs(card, true); | |
349 | if (ret <= 0 || card->type == MMC_TYPE_SDIO) | |
350 | return ret; | |
351 | ||
352 | ret = mmc_sd_switch_hs(card); | |
353 | if (ret <= 0) | |
354 | mmc_sdio_switch_hs(card, false); | |
355 | ||
356 | return ret; | |
357 | } | |
358 | ||
71578a1e MM |
359 | static unsigned mmc_sdio_get_max_clock(struct mmc_card *card) |
360 | { | |
361 | unsigned max_dtr; | |
362 | ||
363 | if (mmc_card_highspeed(card)) { | |
364 | /* | |
365 | * The SDIO specification doesn't mention how | |
366 | * the CIS transfer speed register relates to | |
367 | * high-speed, but it seems that 50 MHz is | |
368 | * mandatory. | |
369 | */ | |
370 | max_dtr = 50000000; | |
371 | } else { | |
372 | max_dtr = card->cis.max_dtr; | |
373 | } | |
374 | ||
7310ece8 MM |
375 | if (card->type == MMC_TYPE_SD_COMBO) |
376 | max_dtr = min(max_dtr, mmc_sd_get_max_clock(card)); | |
377 | ||
71578a1e | 378 | return max_dtr; |
d16f5770 PO |
379 | } |
380 | ||
a303c531 PR |
381 | static unsigned char host_drive_to_sdio_drive(int host_strength) |
382 | { | |
383 | switch (host_strength) { | |
384 | case MMC_SET_DRIVER_TYPE_A: | |
385 | return SDIO_DTSx_SET_TYPE_A; | |
386 | case MMC_SET_DRIVER_TYPE_B: | |
387 | return SDIO_DTSx_SET_TYPE_B; | |
388 | case MMC_SET_DRIVER_TYPE_C: | |
389 | return SDIO_DTSx_SET_TYPE_C; | |
390 | case MMC_SET_DRIVER_TYPE_D: | |
391 | return SDIO_DTSx_SET_TYPE_D; | |
392 | default: | |
393 | return SDIO_DTSx_SET_TYPE_B; | |
394 | } | |
395 | } | |
396 | ||
397 | static void sdio_select_driver_type(struct mmc_card *card) | |
398 | { | |
399 | int host_drv_type = SD_DRIVER_TYPE_B; | |
400 | int card_drv_type = SD_DRIVER_TYPE_B; | |
401 | int drive_strength; | |
402 | unsigned char card_strength; | |
403 | int err; | |
404 | ||
405 | /* | |
406 | * If the host doesn't support any of the Driver Types A,C or D, | |
407 | * or there is no board specific handler then default Driver | |
408 | * Type B is used. | |
409 | */ | |
410 | if (!(card->host->caps & | |
411 | (MMC_CAP_DRIVER_TYPE_A | | |
412 | MMC_CAP_DRIVER_TYPE_C | | |
413 | MMC_CAP_DRIVER_TYPE_D))) | |
414 | return; | |
415 | ||
416 | if (!card->host->ops->select_drive_strength) | |
417 | return; | |
418 | ||
419 | if (card->host->caps & MMC_CAP_DRIVER_TYPE_A) | |
420 | host_drv_type |= SD_DRIVER_TYPE_A; | |
421 | ||
422 | if (card->host->caps & MMC_CAP_DRIVER_TYPE_C) | |
423 | host_drv_type |= SD_DRIVER_TYPE_C; | |
424 | ||
425 | if (card->host->caps & MMC_CAP_DRIVER_TYPE_D) | |
426 | host_drv_type |= SD_DRIVER_TYPE_D; | |
427 | ||
428 | if (card->sw_caps.sd3_drv_type & SD_DRIVER_TYPE_A) | |
429 | card_drv_type |= SD_DRIVER_TYPE_A; | |
430 | ||
431 | if (card->sw_caps.sd3_drv_type & SD_DRIVER_TYPE_C) | |
432 | card_drv_type |= SD_DRIVER_TYPE_C; | |
433 | ||
434 | if (card->sw_caps.sd3_drv_type & SD_DRIVER_TYPE_D) | |
435 | card_drv_type |= SD_DRIVER_TYPE_D; | |
436 | ||
437 | /* | |
438 | * The drive strength that the hardware can support | |
439 | * depends on the board design. Pass the appropriate | |
440 | * information and let the hardware specific code | |
441 | * return what is possible given the options | |
442 | */ | |
443 | drive_strength = card->host->ops->select_drive_strength( | |
444 | card->sw_caps.uhs_max_dtr, | |
445 | host_drv_type, card_drv_type); | |
446 | ||
447 | /* if error just use default for drive strength B */ | |
448 | err = mmc_io_rw_direct(card, 0, 0, SDIO_CCCR_DRIVE_STRENGTH, 0, | |
449 | &card_strength); | |
450 | if (err) | |
451 | return; | |
452 | ||
453 | card_strength &= ~(SDIO_DRIVE_DTSx_MASK<<SDIO_DRIVE_DTSx_SHIFT); | |
454 | card_strength |= host_drive_to_sdio_drive(drive_strength); | |
455 | ||
456 | err = mmc_io_rw_direct(card, 1, 0, SDIO_CCCR_DRIVE_STRENGTH, | |
457 | card_strength, NULL); | |
458 | ||
459 | /* if error default to drive strength B */ | |
460 | if (!err) | |
461 | mmc_set_driver_type(card->host, drive_strength); | |
462 | } | |
463 | ||
464 | ||
465 | static int sdio_set_bus_speed_mode(struct mmc_card *card) | |
466 | { | |
467 | unsigned int bus_speed, timing; | |
468 | int err; | |
469 | unsigned char speed; | |
470 | ||
471 | /* | |
472 | * If the host doesn't support any of the UHS-I modes, fallback on | |
473 | * default speed. | |
474 | */ | |
475 | if (!(card->host->caps & (MMC_CAP_UHS_SDR12 | MMC_CAP_UHS_SDR25 | | |
476 | MMC_CAP_UHS_SDR50 | MMC_CAP_UHS_SDR104 | MMC_CAP_UHS_DDR50))) | |
477 | return 0; | |
478 | ||
479 | bus_speed = SDIO_SPEED_SDR12; | |
480 | timing = MMC_TIMING_UHS_SDR12; | |
481 | if ((card->host->caps & MMC_CAP_UHS_SDR104) && | |
482 | (card->sw_caps.sd3_bus_mode & SD_MODE_UHS_SDR104)) { | |
483 | bus_speed = SDIO_SPEED_SDR104; | |
484 | timing = MMC_TIMING_UHS_SDR104; | |
485 | card->sw_caps.uhs_max_dtr = UHS_SDR104_MAX_DTR; | |
486 | } else if ((card->host->caps & MMC_CAP_UHS_DDR50) && | |
487 | (card->sw_caps.sd3_bus_mode & SD_MODE_UHS_DDR50)) { | |
488 | bus_speed = SDIO_SPEED_DDR50; | |
489 | timing = MMC_TIMING_UHS_DDR50; | |
490 | card->sw_caps.uhs_max_dtr = UHS_DDR50_MAX_DTR; | |
491 | } else if ((card->host->caps & (MMC_CAP_UHS_SDR104 | | |
492 | MMC_CAP_UHS_SDR50)) && (card->sw_caps.sd3_bus_mode & | |
493 | SD_MODE_UHS_SDR50)) { | |
494 | bus_speed = SDIO_SPEED_SDR50; | |
495 | timing = MMC_TIMING_UHS_SDR50; | |
496 | card->sw_caps.uhs_max_dtr = UHS_SDR50_MAX_DTR; | |
497 | } else if ((card->host->caps & (MMC_CAP_UHS_SDR104 | | |
498 | MMC_CAP_UHS_SDR50 | MMC_CAP_UHS_SDR25)) && | |
499 | (card->sw_caps.sd3_bus_mode & SD_MODE_UHS_SDR25)) { | |
500 | bus_speed = SDIO_SPEED_SDR25; | |
501 | timing = MMC_TIMING_UHS_SDR25; | |
502 | card->sw_caps.uhs_max_dtr = UHS_SDR25_MAX_DTR; | |
503 | } else if ((card->host->caps & (MMC_CAP_UHS_SDR104 | | |
504 | MMC_CAP_UHS_SDR50 | MMC_CAP_UHS_SDR25 | | |
505 | MMC_CAP_UHS_SDR12)) && (card->sw_caps.sd3_bus_mode & | |
506 | SD_MODE_UHS_SDR12)) { | |
507 | bus_speed = SDIO_SPEED_SDR12; | |
508 | timing = MMC_TIMING_UHS_SDR12; | |
509 | card->sw_caps.uhs_max_dtr = UHS_SDR12_MAX_DTR; | |
510 | } | |
511 | ||
512 | err = mmc_io_rw_direct(card, 0, 0, SDIO_CCCR_SPEED, 0, &speed); | |
513 | if (err) | |
514 | return err; | |
515 | ||
516 | speed &= ~SDIO_SPEED_BSS_MASK; | |
517 | speed |= bus_speed; | |
518 | err = mmc_io_rw_direct(card, 1, 0, SDIO_CCCR_SPEED, speed, NULL); | |
519 | if (err) | |
520 | return err; | |
521 | ||
522 | if (bus_speed) { | |
523 | mmc_set_timing(card->host, timing); | |
524 | mmc_set_clock(card->host, card->sw_caps.uhs_max_dtr); | |
525 | } | |
526 | ||
527 | return 0; | |
528 | } | |
529 | ||
530 | /* | |
531 | * UHS-I specific initialization procedure | |
532 | */ | |
533 | static int mmc_sdio_init_uhs_card(struct mmc_card *card) | |
534 | { | |
535 | int err; | |
536 | ||
537 | if (!card->scr.sda_spec3) | |
538 | return 0; | |
539 | ||
540 | /* | |
541 | * Switch to wider bus (if supported). | |
542 | */ | |
543 | if (card->host->caps & MMC_CAP_4_BIT_DATA) { | |
544 | err = sdio_enable_4bit_bus(card); | |
545 | if (err > 0) { | |
546 | mmc_set_bus_width(card->host, MMC_BUS_WIDTH_4); | |
547 | err = 0; | |
548 | } | |
549 | } | |
550 | ||
551 | /* Set the driver strength for the card */ | |
552 | sdio_select_driver_type(card); | |
553 | ||
554 | /* Set bus speed mode of the card */ | |
555 | err = sdio_set_bus_speed_mode(card); | |
556 | if (err) | |
557 | goto out; | |
558 | ||
559 | /* Initialize and start re-tuning timer */ | |
560 | if (!mmc_host_is_spi(card->host) && card->host->ops->execute_tuning) | |
a4924c71 G |
561 | err = card->host->ops->execute_tuning(card->host, |
562 | MMC_SEND_TUNING_BLOCK); | |
a303c531 PR |
563 | |
564 | out: | |
565 | ||
566 | return err; | |
567 | } | |
568 | ||
17d33e14 NP |
569 | /* |
570 | * Handle the detection and initialisation of a card. | |
571 | * | |
572 | * In the case of a resume, "oldcard" will contain the card | |
573 | * we're trying to reinitialise. | |
574 | */ | |
575 | static int mmc_sdio_init_card(struct mmc_host *host, u32 ocr, | |
3bca4cf7 | 576 | struct mmc_card *oldcard, int powered_resume) |
17d33e14 NP |
577 | { |
578 | struct mmc_card *card; | |
579 | int err; | |
580 | ||
581 | BUG_ON(!host); | |
582 | WARN_ON(!host->claimed); | |
583 | ||
584 | /* | |
585 | * Inform the card of the voltage | |
586 | */ | |
3bca4cf7 CB |
587 | if (!powered_resume) { |
588 | err = mmc_send_io_op_cond(host, host->ocr, &ocr); | |
589 | if (err) | |
590 | goto err; | |
591 | } | |
17d33e14 NP |
592 | |
593 | /* | |
594 | * For SPI, enable CRC as appropriate. | |
595 | */ | |
596 | if (mmc_host_is_spi(host)) { | |
597 | err = mmc_spi_set_crc(host, use_spi_crc); | |
598 | if (err) | |
599 | goto err; | |
600 | } | |
601 | ||
602 | /* | |
603 | * Allocate card structure. | |
604 | */ | |
605 | card = mmc_alloc_card(host, NULL); | |
606 | if (IS_ERR(card)) { | |
607 | err = PTR_ERR(card); | |
608 | goto err; | |
609 | } | |
610 | ||
d6d50a15 AN |
611 | if ((ocr & R4_MEMORY_PRESENT) && |
612 | mmc_sd_get_cid(host, host->ocr & ocr, card->raw_cid, NULL) == 0) { | |
7310ece8 MM |
613 | card->type = MMC_TYPE_SD_COMBO; |
614 | ||
615 | if (oldcard && (oldcard->type != MMC_TYPE_SD_COMBO || | |
616 | memcmp(card->raw_cid, oldcard->raw_cid, sizeof(card->raw_cid)) != 0)) { | |
617 | mmc_remove_card(card); | |
618 | return -ENOENT; | |
619 | } | |
620 | } else { | |
621 | card->type = MMC_TYPE_SDIO; | |
622 | ||
623 | if (oldcard && oldcard->type != MMC_TYPE_SDIO) { | |
624 | mmc_remove_card(card); | |
625 | return -ENOENT; | |
626 | } | |
627 | } | |
17d33e14 | 628 | |
3fcb027d DM |
629 | /* |
630 | * Call the optional HC's init_card function to handle quirks. | |
631 | */ | |
632 | if (host->ops->init_card) | |
633 | host->ops->init_card(host, card); | |
634 | ||
a303c531 PR |
635 | /* |
636 | * If the host and card support UHS-I mode request the card | |
637 | * to switch to 1.8V signaling level. No 1.8v signalling if | |
638 | * UHS mode is not enabled to maintain compatibilty and some | |
639 | * systems that claim 1.8v signalling in fact do not support | |
640 | * it. | |
641 | */ | |
642 | if ((ocr & R4_18V_PRESENT) && | |
643 | (host->caps & | |
644 | (MMC_CAP_UHS_SDR12 | MMC_CAP_UHS_SDR25 | | |
645 | MMC_CAP_UHS_SDR50 | MMC_CAP_UHS_SDR104 | | |
646 | MMC_CAP_UHS_DDR50))) { | |
647 | err = mmc_set_signal_voltage(host, MMC_SIGNAL_VOLTAGE_180, | |
648 | true); | |
649 | if (err) { | |
650 | ocr &= ~R4_18V_PRESENT; | |
651 | host->ocr &= ~R4_18V_PRESENT; | |
652 | } | |
653 | err = 0; | |
654 | } else { | |
655 | ocr &= ~R4_18V_PRESENT; | |
656 | host->ocr &= ~R4_18V_PRESENT; | |
657 | } | |
658 | ||
17d33e14 NP |
659 | /* |
660 | * For native busses: set card RCA and quit open drain mode. | |
661 | */ | |
3bca4cf7 | 662 | if (!powered_resume && !mmc_host_is_spi(host)) { |
17d33e14 NP |
663 | err = mmc_send_relative_addr(host, &card->rca); |
664 | if (err) | |
665 | goto remove; | |
666 | ||
0aab3995 SNX |
667 | /* |
668 | * Update oldcard with the new RCA received from the SDIO | |
669 | * device -- we're doing this so that it's updated in the | |
670 | * "card" struct when oldcard overwrites that later. | |
671 | */ | |
672 | if (oldcard) | |
673 | oldcard->rca = card->rca; | |
17d33e14 NP |
674 | } |
675 | ||
7310ece8 MM |
676 | /* |
677 | * Read CSD, before selecting the card | |
678 | */ | |
679 | if (!oldcard && card->type == MMC_TYPE_SD_COMBO) { | |
680 | err = mmc_sd_get_csd(host, card); | |
681 | if (err) | |
682 | return err; | |
683 | ||
684 | mmc_decode_cid(card); | |
685 | } | |
686 | ||
17d33e14 NP |
687 | /* |
688 | * Select card, as all following commands rely on that. | |
689 | */ | |
3bca4cf7 | 690 | if (!powered_resume && !mmc_host_is_spi(host)) { |
17d33e14 NP |
691 | err = mmc_select_card(card); |
692 | if (err) | |
693 | goto remove; | |
694 | } | |
695 | ||
6f51be3d GI |
696 | if (card->quirks & MMC_QUIRK_NONSTD_SDIO) { |
697 | /* | |
698 | * This is non-standard SDIO device, meaning it doesn't | |
699 | * have any CIA (Common I/O area) registers present. | |
700 | * It's host's responsibility to fill cccr and cis | |
701 | * structures in init_card(). | |
702 | */ | |
703 | mmc_set_clock(host, card->cis.max_dtr); | |
704 | ||
705 | if (card->cccr.high_speed) { | |
706 | mmc_card_set_highspeed(card); | |
707 | mmc_set_timing(card->host, MMC_TIMING_SD_HS); | |
708 | } | |
709 | ||
710 | goto finish; | |
711 | } | |
712 | ||
17d33e14 NP |
713 | /* |
714 | * Read the common registers. | |
715 | */ | |
2d0d68f5 | 716 | err = sdio_read_cccr(card, ocr); |
17d33e14 NP |
717 | if (err) |
718 | goto remove; | |
719 | ||
720 | /* | |
721 | * Read the common CIS tuples. | |
722 | */ | |
723 | err = sdio_read_common_cis(card); | |
724 | if (err) | |
725 | goto remove; | |
726 | ||
727 | if (oldcard) { | |
728 | int same = (card->cis.vendor == oldcard->cis.vendor && | |
729 | card->cis.device == oldcard->cis.device); | |
730 | mmc_remove_card(card); | |
7310ece8 MM |
731 | if (!same) |
732 | return -ENOENT; | |
733 | ||
17d33e14 NP |
734 | card = oldcard; |
735 | } | |
32780cd1 | 736 | mmc_fixup_device(card, NULL); |
17d33e14 | 737 | |
7310ece8 MM |
738 | if (card->type == MMC_TYPE_SD_COMBO) { |
739 | err = mmc_sd_setup_card(host, card, oldcard != NULL); | |
740 | /* handle as SDIO-only card if memory init failed */ | |
741 | if (err) { | |
742 | mmc_go_idle(host); | |
743 | if (mmc_host_is_spi(host)) | |
744 | /* should not fail, as it worked previously */ | |
745 | mmc_spi_set_crc(host, use_spi_crc); | |
746 | card->type = MMC_TYPE_SDIO; | |
747 | } else | |
748 | card->dev.type = &sd_type; | |
749 | } | |
750 | ||
751 | /* | |
752 | * If needed, disconnect card detection pull-up resistor. | |
753 | */ | |
754 | err = sdio_disable_cd(card); | |
755 | if (err) | |
756 | goto remove; | |
757 | ||
a303c531 PR |
758 | /* Initialization sequence for UHS-I cards */ |
759 | /* Only if card supports 1.8v and UHS signaling */ | |
760 | if ((ocr & R4_18V_PRESENT) && card->sw_caps.sd3_bus_mode) { | |
761 | err = mmc_sdio_init_uhs_card(card); | |
762 | if (err) | |
763 | goto remove; | |
17d33e14 | 764 | |
a303c531 PR |
765 | /* Card is an ultra-high-speed card */ |
766 | mmc_card_set_uhs(card); | |
767 | } else { | |
768 | /* | |
769 | * Switch to high-speed (if supported). | |
770 | */ | |
771 | err = sdio_enable_hs(card); | |
772 | if (err > 0) | |
773 | mmc_sd_go_highspeed(card); | |
774 | else if (err) | |
775 | goto remove; | |
17d33e14 | 776 | |
a303c531 PR |
777 | /* |
778 | * Change to the card's maximum speed. | |
779 | */ | |
780 | mmc_set_clock(host, mmc_sdio_get_max_clock(card)); | |
17d33e14 | 781 | |
a303c531 PR |
782 | /* |
783 | * Switch to wider bus (if supported). | |
784 | */ | |
785 | err = sdio_enable_4bit_bus(card); | |
786 | if (err > 0) | |
787 | mmc_set_bus_width(card->host, MMC_BUS_WIDTH_4); | |
788 | else if (err) | |
789 | goto remove; | |
790 | } | |
6f51be3d | 791 | finish: |
17d33e14 NP |
792 | if (!oldcard) |
793 | host->card = card; | |
794 | return 0; | |
795 | ||
796 | remove: | |
797 | if (!oldcard) | |
798 | mmc_remove_card(card); | |
799 | ||
800 | err: | |
801 | return err; | |
802 | } | |
803 | ||
5c4e6f13 PO |
804 | /* |
805 | * Host is being removed. Free up the current card. | |
806 | */ | |
807 | static void mmc_sdio_remove(struct mmc_host *host) | |
808 | { | |
e29a7d73 PO |
809 | int i; |
810 | ||
5c4e6f13 PO |
811 | BUG_ON(!host); |
812 | BUG_ON(!host->card); | |
813 | ||
e29a7d73 PO |
814 | for (i = 0;i < host->card->sdio_funcs;i++) { |
815 | if (host->card->sdio_func[i]) { | |
816 | sdio_remove_func(host->card->sdio_func[i]); | |
817 | host->card->sdio_func[i] = NULL; | |
818 | } | |
819 | } | |
820 | ||
5c4e6f13 PO |
821 | mmc_remove_card(host->card); |
822 | host->card = NULL; | |
823 | } | |
824 | ||
d3049504 AH |
825 | /* |
826 | * Card detection - card is alive. | |
827 | */ | |
828 | static int mmc_sdio_alive(struct mmc_host *host) | |
829 | { | |
830 | return mmc_select_card(host->card); | |
831 | } | |
832 | ||
5c4e6f13 PO |
833 | /* |
834 | * Card detection callback from host. | |
835 | */ | |
836 | static void mmc_sdio_detect(struct mmc_host *host) | |
837 | { | |
838 | int err; | |
839 | ||
840 | BUG_ON(!host); | |
841 | BUG_ON(!host->card); | |
842 | ||
87973ba2 | 843 | /* Make sure card is powered before detecting it */ |
ed919b01 OBC |
844 | if (host->caps & MMC_CAP_POWER_OFF_CARD) { |
845 | err = pm_runtime_get_sync(&host->card->dev); | |
846 | if (err < 0) | |
847 | goto out; | |
848 | } | |
87973ba2 | 849 | |
5c4e6f13 PO |
850 | mmc_claim_host(host); |
851 | ||
852 | /* | |
853 | * Just check if our card has been removed. | |
854 | */ | |
d3049504 | 855 | err = _mmc_detect_card_removed(host); |
5c4e6f13 PO |
856 | |
857 | mmc_release_host(host); | |
858 | ||
4d0812c3 OBC |
859 | /* |
860 | * Tell PM core it's OK to power off the card now. | |
861 | * | |
862 | * The _sync variant is used in order to ensure that the card | |
863 | * is left powered off in case an error occurred, and the card | |
864 | * is going to be removed. | |
865 | * | |
866 | * Since there is no specific reason to believe a new user | |
867 | * is about to show up at this point, the _sync variant is | |
868 | * desirable anyway. | |
869 | */ | |
ed919b01 OBC |
870 | if (host->caps & MMC_CAP_POWER_OFF_CARD) |
871 | pm_runtime_put_sync(&host->card->dev); | |
4d0812c3 | 872 | |
87973ba2 | 873 | out: |
5c4e6f13 PO |
874 | if (err) { |
875 | mmc_sdio_remove(host); | |
876 | ||
877 | mmc_claim_host(host); | |
878 | mmc_detach_bus(host); | |
7f7e4129 | 879 | mmc_power_off(host); |
5c4e6f13 PO |
880 | mmc_release_host(host); |
881 | } | |
882 | } | |
883 | ||
17d33e14 NP |
884 | /* |
885 | * SDIO suspend. We need to suspend all functions separately. | |
886 | * Therefore all registered functions must have drivers with suspend | |
887 | * and resume methods. Failing that we simply remove the whole card. | |
888 | */ | |
95cdfb72 | 889 | static int mmc_sdio_suspend(struct mmc_host *host) |
17d33e14 | 890 | { |
95cdfb72 | 891 | int i, err = 0; |
17d33e14 | 892 | |
17d33e14 NP |
893 | for (i = 0; i < host->card->sdio_funcs; i++) { |
894 | struct sdio_func *func = host->card->sdio_func[i]; | |
895 | if (func && sdio_func_present(func) && func->dev.driver) { | |
896 | const struct dev_pm_ops *pmops = func->dev.driver->pm; | |
897 | if (!pmops || !pmops->suspend || !pmops->resume) { | |
95cdfb72 NP |
898 | /* force removal of entire card in that case */ |
899 | err = -ENOSYS; | |
900 | } else | |
901 | err = pmops->suspend(&func->dev); | |
902 | if (err) | |
903 | break; | |
17d33e14 NP |
904 | } |
905 | } | |
95cdfb72 | 906 | while (err && --i >= 0) { |
17d33e14 NP |
907 | struct sdio_func *func = host->card->sdio_func[i]; |
908 | if (func && sdio_func_present(func) && func->dev.driver) { | |
909 | const struct dev_pm_ops *pmops = func->dev.driver->pm; | |
95cdfb72 | 910 | pmops->resume(&func->dev); |
17d33e14 NP |
911 | } |
912 | } | |
95cdfb72 | 913 | |
6b93d01f | 914 | if (!err && mmc_card_keep_power(host) && mmc_card_wake_sdio_irq(host)) { |
6b5eda36 DD |
915 | mmc_claim_host(host); |
916 | sdio_disable_wide(host->card); | |
917 | mmc_release_host(host); | |
918 | } | |
919 | ||
95cdfb72 | 920 | return err; |
17d33e14 NP |
921 | } |
922 | ||
95cdfb72 | 923 | static int mmc_sdio_resume(struct mmc_host *host) |
17d33e14 | 924 | { |
080bc977 | 925 | int i, err = 0; |
17d33e14 NP |
926 | |
927 | BUG_ON(!host); | |
928 | BUG_ON(!host->card); | |
929 | ||
95cdfb72 | 930 | /* Basic card reinitialization. */ |
17d33e14 | 931 | mmc_claim_host(host); |
080bc977 OBC |
932 | |
933 | /* No need to reinitialize powered-resumed nonremovable cards */ | |
a5e9425d | 934 | if (mmc_card_is_removable(host) || !mmc_card_keep_power(host)) |
080bc977 | 935 | err = mmc_sdio_init_card(host, host->ocr, host->card, |
a5e9425d | 936 | mmc_card_keep_power(host)); |
6b93d01f | 937 | else if (mmc_card_keep_power(host) && mmc_card_wake_sdio_irq(host)) { |
080bc977 OBC |
938 | /* We may have switched to 1-bit mode during suspend */ |
939 | err = sdio_enable_4bit_bus(host->card); | |
940 | if (err > 0) { | |
941 | mmc_set_bus_width(host, MMC_BUS_WIDTH_4); | |
942 | err = 0; | |
943 | } | |
944 | } | |
945 | ||
40216842 NP |
946 | if (!err && host->sdio_irqs) |
947 | mmc_signal_sdio_irq(host); | |
17d33e14 | 948 | mmc_release_host(host); |
17d33e14 | 949 | |
95cdfb72 NP |
950 | /* |
951 | * If the card looked to be the same as before suspending, then | |
952 | * we proceed to resume all card functions. If one of them returns | |
953 | * an error then we simply return that error to the core and the | |
954 | * card will be redetected as new. It is the responsibility of | |
955 | * the function driver to perform further tests with the extra | |
956 | * knowledge it has of the card to confirm the card is indeed the | |
957 | * same as before suspending (same MAC address for network cards, | |
958 | * etc.) and return an error otherwise. | |
959 | */ | |
960 | for (i = 0; !err && i < host->card->sdio_funcs; i++) { | |
17d33e14 NP |
961 | struct sdio_func *func = host->card->sdio_func[i]; |
962 | if (func && sdio_func_present(func) && func->dev.driver) { | |
963 | const struct dev_pm_ops *pmops = func->dev.driver->pm; | |
95cdfb72 | 964 | err = pmops->resume(&func->dev); |
17d33e14 NP |
965 | } |
966 | } | |
95cdfb72 NP |
967 | |
968 | return err; | |
17d33e14 | 969 | } |
5c4e6f13 | 970 | |
d3fe37b1 OBC |
971 | static int mmc_sdio_power_restore(struct mmc_host *host) |
972 | { | |
973 | int ret; | |
c6e633ad | 974 | u32 ocr; |
d3fe37b1 OBC |
975 | |
976 | BUG_ON(!host); | |
977 | BUG_ON(!host->card); | |
978 | ||
979 | mmc_claim_host(host); | |
c6e633ad DD |
980 | |
981 | /* | |
982 | * Reset the card by performing the same steps that are taken by | |
983 | * mmc_rescan_try_freq() and mmc_attach_sdio() during a "normal" probe. | |
984 | * | |
985 | * sdio_reset() is technically not needed. Having just powered up the | |
986 | * hardware, it should already be in reset state. However, some | |
987 | * platforms (such as SD8686 on OLPC) do not instantly cut power, | |
988 | * meaning that a reset is required when restoring power soon after | |
989 | * powering off. It is harmless in other cases. | |
990 | * | |
991 | * The CMD5 reset (mmc_send_io_op_cond()), according to the SDIO spec, | |
992 | * is not necessary for non-removable cards. However, it is required | |
993 | * for OLPC SD8686 (which expects a [CMD5,5,3,7] init sequence), and | |
994 | * harmless in other situations. | |
995 | * | |
996 | * With these steps taken, mmc_select_voltage() is also required to | |
997 | * restore the correct voltage setting of the card. | |
998 | */ | |
999 | sdio_reset(host); | |
1000 | mmc_go_idle(host); | |
1001 | mmc_send_if_cond(host, host->ocr_avail); | |
1002 | ||
1003 | ret = mmc_send_io_op_cond(host, 0, &ocr); | |
1004 | if (ret) | |
1005 | goto out; | |
1006 | ||
1007 | if (host->ocr_avail_sdio) | |
1008 | host->ocr_avail = host->ocr_avail_sdio; | |
1009 | ||
1010 | host->ocr = mmc_select_voltage(host, ocr & ~0x7F); | |
1011 | if (!host->ocr) { | |
1012 | ret = -EINVAL; | |
1013 | goto out; | |
1014 | } | |
1015 | ||
d3fe37b1 | 1016 | ret = mmc_sdio_init_card(host, host->ocr, host->card, |
a5e9425d | 1017 | mmc_card_keep_power(host)); |
d3fe37b1 OBC |
1018 | if (!ret && host->sdio_irqs) |
1019 | mmc_signal_sdio_irq(host); | |
c6e633ad DD |
1020 | |
1021 | out: | |
d3fe37b1 OBC |
1022 | mmc_release_host(host); |
1023 | ||
1024 | return ret; | |
1025 | } | |
1026 | ||
5c4e6f13 PO |
1027 | static const struct mmc_bus_ops mmc_sdio_ops = { |
1028 | .remove = mmc_sdio_remove, | |
1029 | .detect = mmc_sdio_detect, | |
17d33e14 NP |
1030 | .suspend = mmc_sdio_suspend, |
1031 | .resume = mmc_sdio_resume, | |
d3fe37b1 | 1032 | .power_restore = mmc_sdio_power_restore, |
d3049504 | 1033 | .alive = mmc_sdio_alive, |
5c4e6f13 PO |
1034 | }; |
1035 | ||
1036 | ||
1037 | /* | |
1038 | * Starting point for SDIO card init. | |
1039 | */ | |
807e8e40 | 1040 | int mmc_attach_sdio(struct mmc_host *host) |
5c4e6f13 | 1041 | { |
807e8e40 AR |
1042 | int err, i, funcs; |
1043 | u32 ocr; | |
5c4e6f13 PO |
1044 | struct mmc_card *card; |
1045 | ||
1046 | BUG_ON(!host); | |
d84075c8 | 1047 | WARN_ON(!host->claimed); |
5c4e6f13 | 1048 | |
807e8e40 AR |
1049 | err = mmc_send_io_op_cond(host, 0, &ocr); |
1050 | if (err) | |
1051 | return err; | |
1052 | ||
5c4e6f13 | 1053 | mmc_attach_bus(host, &mmc_sdio_ops); |
8f230f45 TI |
1054 | if (host->ocr_avail_sdio) |
1055 | host->ocr_avail = host->ocr_avail_sdio; | |
5c4e6f13 PO |
1056 | |
1057 | /* | |
1058 | * Sanity check the voltages that the card claims to | |
1059 | * support. | |
1060 | */ | |
1061 | if (ocr & 0x7F) { | |
a3c76eb9 | 1062 | pr_warning("%s: card claims to support voltages " |
5c4e6f13 PO |
1063 | "below the defined range. These will be ignored.\n", |
1064 | mmc_hostname(host)); | |
1065 | ocr &= ~0x7F; | |
1066 | } | |
1067 | ||
5c4e6f13 PO |
1068 | host->ocr = mmc_select_voltage(host, ocr); |
1069 | ||
1070 | /* | |
1071 | * Can we support the voltage(s) of the card(s)? | |
1072 | */ | |
1073 | if (!host->ocr) { | |
1074 | err = -EINVAL; | |
1075 | goto err; | |
1076 | } | |
1077 | ||
1078 | /* | |
17d33e14 | 1079 | * Detect and init the card. |
5c4e6f13 | 1080 | */ |
3bca4cf7 | 1081 | err = mmc_sdio_init_card(host, host->ocr, NULL, 0); |
a303c531 PR |
1082 | if (err) { |
1083 | if (err == -EAGAIN) { | |
1084 | /* | |
1085 | * Retry initialization with S18R set to 0. | |
1086 | */ | |
1087 | host->ocr &= ~R4_18V_PRESENT; | |
1088 | err = mmc_sdio_init_card(host, host->ocr, NULL, 0); | |
1089 | } | |
1090 | if (err) | |
1091 | goto err; | |
1092 | } | |
17d33e14 | 1093 | card = host->card; |
af517150 | 1094 | |
81968561 | 1095 | /* |
ed919b01 | 1096 | * Enable runtime PM only if supported by host+card+board |
81968561 | 1097 | */ |
ed919b01 OBC |
1098 | if (host->caps & MMC_CAP_POWER_OFF_CARD) { |
1099 | /* | |
1100 | * Let runtime PM core know our card is active | |
1101 | */ | |
1102 | err = pm_runtime_set_active(&card->dev); | |
1103 | if (err) | |
1104 | goto remove; | |
81968561 | 1105 | |
ed919b01 OBC |
1106 | /* |
1107 | * Enable runtime PM for this card | |
1108 | */ | |
1109 | pm_runtime_enable(&card->dev); | |
1110 | } | |
81968561 | 1111 | |
5c4e6f13 PO |
1112 | /* |
1113 | * The number of functions on the card is encoded inside | |
1114 | * the ocr. | |
1115 | */ | |
e8812793 MF |
1116 | funcs = (ocr & 0x70000000) >> 28; |
1117 | card->sdio_funcs = 0; | |
4ff6471c | 1118 | |
e29a7d73 PO |
1119 | /* |
1120 | * Initialize (but don't add) all present functions. | |
1121 | */ | |
e8812793 | 1122 | for (i = 0; i < funcs; i++, card->sdio_funcs++) { |
e29a7d73 PO |
1123 | err = sdio_init_func(host->card, i + 1); |
1124 | if (err) | |
1125 | goto remove; | |
40bba0c1 OBC |
1126 | |
1127 | /* | |
ed919b01 | 1128 | * Enable Runtime PM for this func (if supported) |
40bba0c1 | 1129 | */ |
ed919b01 OBC |
1130 | if (host->caps & MMC_CAP_POWER_OFF_CARD) |
1131 | pm_runtime_enable(&card->sdio_func[i]->dev); | |
e29a7d73 | 1132 | } |
5c4e6f13 | 1133 | |
e29a7d73 PO |
1134 | /* |
1135 | * First add the card to the driver model... | |
1136 | */ | |
807e8e40 | 1137 | mmc_release_host(host); |
5c4e6f13 PO |
1138 | err = mmc_add_card(host->card); |
1139 | if (err) | |
e29a7d73 PO |
1140 | goto remove_added; |
1141 | ||
1142 | /* | |
1143 | * ...then the SDIO functions. | |
1144 | */ | |
1145 | for (i = 0;i < funcs;i++) { | |
1146 | err = sdio_add_func(host->card->sdio_func[i]); | |
1147 | if (err) | |
1148 | goto remove_added; | |
1149 | } | |
5c4e6f13 | 1150 | |
34497913 | 1151 | mmc_claim_host(host); |
5c4e6f13 PO |
1152 | return 0; |
1153 | ||
e29a7d73 PO |
1154 | |
1155 | remove_added: | |
1156 | /* Remove without lock if the device has been added. */ | |
1157 | mmc_sdio_remove(host); | |
5c4e6f13 | 1158 | mmc_claim_host(host); |
e29a7d73 PO |
1159 | remove: |
1160 | /* And with lock if it hasn't been added. */ | |
807e8e40 | 1161 | mmc_release_host(host); |
e29a7d73 PO |
1162 | if (host->card) |
1163 | mmc_sdio_remove(host); | |
807e8e40 | 1164 | mmc_claim_host(host); |
5c4e6f13 PO |
1165 | err: |
1166 | mmc_detach_bus(host); | |
5c4e6f13 | 1167 | |
a3c76eb9 | 1168 | pr_err("%s: error %d whilst initialising SDIO card\n", |
5c4e6f13 PO |
1169 | mmc_hostname(host), err); |
1170 | ||
1171 | return err; | |
1172 | } | |
1173 |