mmc: core SDIO suspend/resume support
[safe/jmp/linux-2.6] / drivers / mmc / core / sdio.c
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>
13
14 #include <linux/mmc/host.h>
15 #include <linux/mmc/card.h>
16 #include <linux/mmc/sdio.h>
17 #include <linux/mmc/sdio_func.h>
18
19 #include "core.h"
20 #include "bus.h"
21 #include "sdio_bus.h"
22 #include "mmc_ops.h"
23 #include "sd_ops.h"
24 #include "sdio_ops.h"
25 #include "sdio_cis.h"
26
27 static int sdio_read_fbr(struct sdio_func *func)
28 {
29         int ret;
30         unsigned char data;
31
32         ret = mmc_io_rw_direct(func->card, 0, 0,
33                 SDIO_FBR_BASE(func->num) + SDIO_FBR_STD_IF, 0, &data);
34         if (ret)
35                 goto out;
36
37         data &= 0x0f;
38
39         if (data == 0x0f) {
40                 ret = mmc_io_rw_direct(func->card, 0, 0,
41                         SDIO_FBR_BASE(func->num) + SDIO_FBR_STD_IF_EXT, 0, &data);
42                 if (ret)
43                         goto out;
44         }
45
46         func->class = data;
47
48 out:
49         return ret;
50 }
51
52 static int sdio_init_func(struct mmc_card *card, unsigned int fn)
53 {
54         int ret;
55         struct sdio_func *func;
56
57         BUG_ON(fn > SDIO_MAX_FUNCS);
58
59         func = sdio_alloc_func(card);
60         if (IS_ERR(func))
61                 return PTR_ERR(func);
62
63         func->num = fn;
64
65         ret = sdio_read_fbr(func);
66         if (ret)
67                 goto fail;
68
69         ret = sdio_read_func_cis(func);
70         if (ret)
71                 goto fail;
72
73         card->sdio_func[fn - 1] = func;
74
75         return 0;
76
77 fail:
78         /*
79          * It is okay to remove the function here even though we hold
80          * the host lock as we haven't registered the device yet.
81          */
82         sdio_remove_func(func);
83         return ret;
84 }
85
86 static int sdio_read_cccr(struct mmc_card *card)
87 {
88         int ret;
89         int cccr_vsn;
90         unsigned char data;
91
92         memset(&card->cccr, 0, sizeof(struct sdio_cccr));
93
94         ret = mmc_io_rw_direct(card, 0, 0, SDIO_CCCR_CCCR, 0, &data);
95         if (ret)
96                 goto out;
97
98         cccr_vsn = data & 0x0f;
99
100         if (cccr_vsn > SDIO_CCCR_REV_1_20) {
101                 printk(KERN_ERR "%s: unrecognised CCCR structure version %d\n",
102                         mmc_hostname(card->host), cccr_vsn);
103                 return -EINVAL;
104         }
105
106         card->cccr.sdio_vsn = (data & 0xf0) >> 4;
107
108         ret = mmc_io_rw_direct(card, 0, 0, SDIO_CCCR_CAPS, 0, &data);
109         if (ret)
110                 goto out;
111
112         if (data & SDIO_CCCR_CAP_SMB)
113                 card->cccr.multi_block = 1;
114         if (data & SDIO_CCCR_CAP_LSC)
115                 card->cccr.low_speed = 1;
116         if (data & SDIO_CCCR_CAP_4BLS)
117                 card->cccr.wide_bus = 1;
118
119         if (cccr_vsn >= SDIO_CCCR_REV_1_10) {
120                 ret = mmc_io_rw_direct(card, 0, 0, SDIO_CCCR_POWER, 0, &data);
121                 if (ret)
122                         goto out;
123
124                 if (data & SDIO_POWER_SMPC)
125                         card->cccr.high_power = 1;
126         }
127
128         if (cccr_vsn >= SDIO_CCCR_REV_1_20) {
129                 ret = mmc_io_rw_direct(card, 0, 0, SDIO_CCCR_SPEED, 0, &data);
130                 if (ret)
131                         goto out;
132
133                 if (data & SDIO_SPEED_SHS)
134                         card->cccr.high_speed = 1;
135         }
136
137 out:
138         return ret;
139 }
140
141 static int sdio_enable_wide(struct mmc_card *card)
142 {
143         int ret;
144         u8 ctrl;
145
146         if (!(card->host->caps & MMC_CAP_4_BIT_DATA))
147                 return 0;
148
149         if (card->cccr.low_speed && !card->cccr.wide_bus)
150                 return 0;
151
152         ret = mmc_io_rw_direct(card, 0, 0, SDIO_CCCR_IF, 0, &ctrl);
153         if (ret)
154                 return ret;
155
156         ctrl |= SDIO_BUS_WIDTH_4BIT;
157
158         ret = mmc_io_rw_direct(card, 1, 0, SDIO_CCCR_IF, ctrl, NULL);
159         if (ret)
160                 return ret;
161
162         mmc_set_bus_width(card->host, MMC_BUS_WIDTH_4);
163
164         return 0;
165 }
166
167 /*
168  * If desired, disconnect the pull-up resistor on CD/DAT[3] (pin 1)
169  * of the card. This may be required on certain setups of boards,
170  * controllers and embedded sdio device which do not need the card's
171  * pull-up. As a result, card detection is disabled and power is saved.
172  */
173 static int sdio_disable_cd(struct mmc_card *card)
174 {
175         int ret;
176         u8 ctrl;
177
178         if (!card->cccr.disable_cd)
179                 return 0;
180
181         ret = mmc_io_rw_direct(card, 0, 0, SDIO_CCCR_IF, 0, &ctrl);
182         if (ret)
183                 return ret;
184
185         ctrl |= SDIO_BUS_CD_DISABLE;
186
187         return mmc_io_rw_direct(card, 1, 0, SDIO_CCCR_IF, ctrl, NULL);
188 }
189
190 /*
191  * Test if the card supports high-speed mode and, if so, switch to it.
192  */
193 static int sdio_enable_hs(struct mmc_card *card)
194 {
195         int ret;
196         u8 speed;
197
198         if (!(card->host->caps & MMC_CAP_SD_HIGHSPEED))
199                 return 0;
200
201         if (!card->cccr.high_speed)
202                 return 0;
203
204         ret = mmc_io_rw_direct(card, 0, 0, SDIO_CCCR_SPEED, 0, &speed);
205         if (ret)
206                 return ret;
207
208         speed |= SDIO_SPEED_EHS;
209
210         ret = mmc_io_rw_direct(card, 1, 0, SDIO_CCCR_SPEED, speed, NULL);
211         if (ret)
212                 return ret;
213
214         mmc_card_set_highspeed(card);
215         mmc_set_timing(card->host, MMC_TIMING_SD_HS);
216
217         return 0;
218 }
219
220 /*
221  * Handle the detection and initialisation of a card.
222  *
223  * In the case of a resume, "oldcard" will contain the card
224  * we're trying to reinitialise.
225  */
226 static int mmc_sdio_init_card(struct mmc_host *host, u32 ocr,
227                               struct mmc_card *oldcard)
228 {
229         struct mmc_card *card;
230         int err;
231
232         BUG_ON(!host);
233         WARN_ON(!host->claimed);
234
235         /*
236          * Inform the card of the voltage
237          */
238         err = mmc_send_io_op_cond(host, host->ocr, &ocr);
239         if (err)
240                 goto err;
241
242         /*
243          * For SPI, enable CRC as appropriate.
244          */
245         if (mmc_host_is_spi(host)) {
246                 err = mmc_spi_set_crc(host, use_spi_crc);
247                 if (err)
248                         goto err;
249         }
250
251         /*
252          * Allocate card structure.
253          */
254         card = mmc_alloc_card(host, NULL);
255         if (IS_ERR(card)) {
256                 err = PTR_ERR(card);
257                 goto err;
258         }
259
260         card->type = MMC_TYPE_SDIO;
261
262         /*
263          * For native busses:  set card RCA and quit open drain mode.
264          */
265         if (!mmc_host_is_spi(host)) {
266                 err = mmc_send_relative_addr(host, &card->rca);
267                 if (err)
268                         goto remove;
269
270                 mmc_set_bus_mode(host, MMC_BUSMODE_PUSHPULL);
271         }
272
273         /*
274          * Select card, as all following commands rely on that.
275          */
276         if (!mmc_host_is_spi(host)) {
277                 err = mmc_select_card(card);
278                 if (err)
279                         goto remove;
280         }
281
282         /*
283          * Read the common registers.
284          */
285         err = sdio_read_cccr(card);
286         if (err)
287                 goto remove;
288
289         /*
290          * Read the common CIS tuples.
291          */
292         err = sdio_read_common_cis(card);
293         if (err)
294                 goto remove;
295
296         if (oldcard) {
297                 int same = (card->cis.vendor == oldcard->cis.vendor &&
298                             card->cis.device == oldcard->cis.device);
299                 mmc_remove_card(card);
300                 if (!same) {
301                         err = -ENOENT;
302                         goto err;
303                 }
304                 card = oldcard;
305         }
306
307         /*
308          * Switch to high-speed (if supported).
309          */
310         err = sdio_enable_hs(card);
311         if (err)
312                 goto remove;
313
314         /*
315          * Change to the card's maximum speed.
316          */
317         if (mmc_card_highspeed(card)) {
318                 /*
319                  * The SDIO specification doesn't mention how
320                  * the CIS transfer speed register relates to
321                  * high-speed, but it seems that 50 MHz is
322                  * mandatory.
323                  */
324                 mmc_set_clock(host, 50000000);
325         } else {
326                 mmc_set_clock(host, card->cis.max_dtr);
327         }
328
329         /*
330          * Switch to wider bus (if supported).
331          */
332         err = sdio_enable_wide(card);
333         if (err)
334                 goto remove;
335
336         if (!oldcard)
337                 host->card = card;
338         return 0;
339
340 remove:
341         if (!oldcard)
342                 mmc_remove_card(card);
343
344 err:
345         return err;
346 }
347
348 /*
349  * Host is being removed. Free up the current card.
350  */
351 static void mmc_sdio_remove(struct mmc_host *host)
352 {
353         int i;
354
355         BUG_ON(!host);
356         BUG_ON(!host->card);
357
358         for (i = 0;i < host->card->sdio_funcs;i++) {
359                 if (host->card->sdio_func[i]) {
360                         sdio_remove_func(host->card->sdio_func[i]);
361                         host->card->sdio_func[i] = NULL;
362                 }
363         }
364
365         mmc_remove_card(host->card);
366         host->card = NULL;
367 }
368
369 /*
370  * Card detection callback from host.
371  */
372 static void mmc_sdio_detect(struct mmc_host *host)
373 {
374         int err;
375
376         BUG_ON(!host);
377         BUG_ON(!host->card);
378
379         mmc_claim_host(host);
380
381         /*
382          * Just check if our card has been removed.
383          */
384         err = mmc_select_card(host->card);
385
386         mmc_release_host(host);
387
388         if (err) {
389                 mmc_sdio_remove(host);
390
391                 mmc_claim_host(host);
392                 mmc_detach_bus(host);
393                 mmc_release_host(host);
394         }
395 }
396
397 /*
398  * SDIO suspend.  We need to suspend all functions separately.
399  * Therefore all registered functions must have drivers with suspend
400  * and resume methods.  Failing that we simply remove the whole card.
401  */
402 static void mmc_sdio_suspend(struct mmc_host *host)
403 {
404         int i;
405
406         /* make sure all registered functions can suspend/resume */
407         for (i = 0; i < host->card->sdio_funcs; i++) {
408                 struct sdio_func *func = host->card->sdio_func[i];
409                 if (func && sdio_func_present(func) && func->dev.driver) {
410                         const struct dev_pm_ops *pmops = func->dev.driver->pm;
411                         if (!pmops || !pmops->suspend || !pmops->resume) {
412                                 /* just remove the entire card in that case */
413                                 mmc_sdio_remove(host);
414                                 mmc_claim_host(host);
415                                 mmc_detach_bus(host);
416                                 mmc_release_host(host);
417                                 return;
418                         }
419                 }
420         }
421
422         /* now suspend them */
423         for (i = 0; i < host->card->sdio_funcs; i++) {
424                 struct sdio_func *func = host->card->sdio_func[i];
425                 if (func && sdio_func_present(func) && func->dev.driver) {
426                         const struct dev_pm_ops *pmops = func->dev.driver->pm;
427                         pmops->suspend(&func->dev);
428                 }
429         }
430 }
431
432 static void mmc_sdio_resume(struct mmc_host *host)
433 {
434         int i, err;
435
436         BUG_ON(!host);
437         BUG_ON(!host->card);
438
439         mmc_claim_host(host);
440         err = mmc_sdio_init_card(host, host->ocr, host->card);
441         mmc_release_host(host);
442         if (err) {
443                 mmc_sdio_remove(host);
444                 mmc_claim_host(host);
445                 mmc_detach_bus(host);
446                 mmc_release_host(host);
447                 return;
448         }
449
450         /* resume all functions */
451         for (i = 0; i < host->card->sdio_funcs; i++) {
452                 struct sdio_func *func = host->card->sdio_func[i];
453                 if (func && sdio_func_present(func) && func->dev.driver) {
454                         const struct dev_pm_ops *pmops = func->dev.driver->pm;
455                         pmops->resume(&func->dev);
456                 }
457         }
458 }
459
460 static const struct mmc_bus_ops mmc_sdio_ops = {
461         .remove = mmc_sdio_remove,
462         .detect = mmc_sdio_detect,
463         .suspend = mmc_sdio_suspend,
464         .resume = mmc_sdio_resume,
465 };
466
467
468 /*
469  * Starting point for SDIO card init.
470  */
471 int mmc_attach_sdio(struct mmc_host *host, u32 ocr)
472 {
473         int err;
474         int i, funcs;
475         struct mmc_card *card;
476
477         BUG_ON(!host);
478         WARN_ON(!host->claimed);
479
480         mmc_attach_bus(host, &mmc_sdio_ops);
481
482         /*
483          * Sanity check the voltages that the card claims to
484          * support.
485          */
486         if (ocr & 0x7F) {
487                 printk(KERN_WARNING "%s: card claims to support voltages "
488                        "below the defined range. These will be ignored.\n",
489                        mmc_hostname(host));
490                 ocr &= ~0x7F;
491         }
492
493         host->ocr = mmc_select_voltage(host, ocr);
494
495         /*
496          * Can we support the voltage(s) of the card(s)?
497          */
498         if (!host->ocr) {
499                 err = -EINVAL;
500                 goto err;
501         }
502
503         /*
504          * Detect and init the card.
505          */
506         err = mmc_sdio_init_card(host, host->ocr, NULL);
507         if (err)
508                 goto err;
509         card = host->card;
510
511         /*
512          * The number of functions on the card is encoded inside
513          * the ocr.
514          */
515         card->sdio_funcs = funcs = (ocr & 0x70000000) >> 28;
516
517         /*
518          * If needed, disconnect card detection pull-up resistor.
519          */
520         err = sdio_disable_cd(card);
521         if (err)
522                 goto remove;
523
524         /*
525          * Initialize (but don't add) all present functions.
526          */
527         for (i = 0;i < funcs;i++) {
528                 err = sdio_init_func(host->card, i + 1);
529                 if (err)
530                         goto remove;
531         }
532
533         mmc_release_host(host);
534
535         /*
536          * First add the card to the driver model...
537          */
538         err = mmc_add_card(host->card);
539         if (err)
540                 goto remove_added;
541
542         /*
543          * ...then the SDIO functions.
544          */
545         for (i = 0;i < funcs;i++) {
546                 err = sdio_add_func(host->card->sdio_func[i]);
547                 if (err)
548                         goto remove_added;
549         }
550
551         return 0;
552
553
554 remove_added:
555         /* Remove without lock if the device has been added. */
556         mmc_sdio_remove(host);
557         mmc_claim_host(host);
558 remove:
559         /* And with lock if it hasn't been added. */
560         if (host->card)
561                 mmc_sdio_remove(host);
562 err:
563         mmc_detach_bus(host);
564         mmc_release_host(host);
565
566         printk(KERN_ERR "%s: error %d whilst initialising SDIO card\n",
567                 mmc_hostname(host), err);
568
569         return err;
570 }
571