x86/amd-iommu: Add per IOMMU reference counting
[linux/fpc-iii.git] / drivers / mmc / core / sdio.c
blobcdb845b68ab5e37222048b47769014fa32186b8a
1 /*
2 * linux/drivers/mmc/sdio.c
4 * Copyright 2006-2007 Pierre Ossman
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.
12 #include <linux/err.h>
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>
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"
27 static int sdio_read_fbr(struct sdio_func *func)
29 int ret;
30 unsigned char data;
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;
37 data &= 0x0f;
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;
46 func->class = data;
48 out:
49 return ret;
52 static int sdio_init_func(struct mmc_card *card, unsigned int fn)
54 int ret;
55 struct sdio_func *func;
57 BUG_ON(fn > SDIO_MAX_FUNCS);
59 func = sdio_alloc_func(card);
60 if (IS_ERR(func))
61 return PTR_ERR(func);
63 func->num = fn;
65 ret = sdio_read_fbr(func);
66 if (ret)
67 goto fail;
69 ret = sdio_read_func_cis(func);
70 if (ret)
71 goto fail;
73 card->sdio_func[fn - 1] = func;
75 return 0;
77 fail:
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.
82 sdio_remove_func(func);
83 return ret;
86 static int sdio_read_cccr(struct mmc_card *card)
88 int ret;
89 int cccr_vsn;
90 unsigned char data;
92 memset(&card->cccr, 0, sizeof(struct sdio_cccr));
94 ret = mmc_io_rw_direct(card, 0, 0, SDIO_CCCR_CCCR, 0, &data);
95 if (ret)
96 goto out;
98 cccr_vsn = data & 0x0f;
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;
106 card->cccr.sdio_vsn = (data & 0xf0) >> 4;
108 ret = mmc_io_rw_direct(card, 0, 0, SDIO_CCCR_CAPS, 0, &data);
109 if (ret)
110 goto out;
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;
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;
124 if (data & SDIO_POWER_SMPC)
125 card->cccr.high_power = 1;
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;
133 if (data & SDIO_SPEED_SHS)
134 card->cccr.high_speed = 1;
137 out:
138 return ret;
141 static int sdio_enable_wide(struct mmc_card *card)
143 int ret;
144 u8 ctrl;
146 if (!(card->host->caps & MMC_CAP_4_BIT_DATA))
147 return 0;
149 if (card->cccr.low_speed && !card->cccr.wide_bus)
150 return 0;
152 ret = mmc_io_rw_direct(card, 0, 0, SDIO_CCCR_IF, 0, &ctrl);
153 if (ret)
154 return ret;
156 ctrl |= SDIO_BUS_WIDTH_4BIT;
158 ret = mmc_io_rw_direct(card, 1, 0, SDIO_CCCR_IF, ctrl, NULL);
159 if (ret)
160 return ret;
162 mmc_set_bus_width(card->host, MMC_BUS_WIDTH_4);
164 return 0;
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.
173 static int sdio_disable_cd(struct mmc_card *card)
175 int ret;
176 u8 ctrl;
178 if (!card->cccr.disable_cd)
179 return 0;
181 ret = mmc_io_rw_direct(card, 0, 0, SDIO_CCCR_IF, 0, &ctrl);
182 if (ret)
183 return ret;
185 ctrl |= SDIO_BUS_CD_DISABLE;
187 return mmc_io_rw_direct(card, 1, 0, SDIO_CCCR_IF, ctrl, NULL);
191 * Test if the card supports high-speed mode and, if so, switch to it.
193 static int sdio_enable_hs(struct mmc_card *card)
195 int ret;
196 u8 speed;
198 if (!(card->host->caps & MMC_CAP_SD_HIGHSPEED))
199 return 0;
201 if (!card->cccr.high_speed)
202 return 0;
204 ret = mmc_io_rw_direct(card, 0, 0, SDIO_CCCR_SPEED, 0, &speed);
205 if (ret)
206 return ret;
208 speed |= SDIO_SPEED_EHS;
210 ret = mmc_io_rw_direct(card, 1, 0, SDIO_CCCR_SPEED, speed, NULL);
211 if (ret)
212 return ret;
214 mmc_card_set_highspeed(card);
215 mmc_set_timing(card->host, MMC_TIMING_SD_HS);
217 return 0;
221 * Handle the detection and initialisation of a card.
223 * In the case of a resume, "oldcard" will contain the card
224 * we're trying to reinitialise.
226 static int mmc_sdio_init_card(struct mmc_host *host, u32 ocr,
227 struct mmc_card *oldcard)
229 struct mmc_card *card;
230 int err;
232 BUG_ON(!host);
233 WARN_ON(!host->claimed);
236 * Inform the card of the voltage
238 err = mmc_send_io_op_cond(host, host->ocr, &ocr);
239 if (err)
240 goto err;
243 * For SPI, enable CRC as appropriate.
245 if (mmc_host_is_spi(host)) {
246 err = mmc_spi_set_crc(host, use_spi_crc);
247 if (err)
248 goto err;
252 * Allocate card structure.
254 card = mmc_alloc_card(host, NULL);
255 if (IS_ERR(card)) {
256 err = PTR_ERR(card);
257 goto err;
260 card->type = MMC_TYPE_SDIO;
263 * For native busses: set card RCA and quit open drain mode.
265 if (!mmc_host_is_spi(host)) {
266 err = mmc_send_relative_addr(host, &card->rca);
267 if (err)
268 goto remove;
270 mmc_set_bus_mode(host, MMC_BUSMODE_PUSHPULL);
274 * Select card, as all following commands rely on that.
276 if (!mmc_host_is_spi(host)) {
277 err = mmc_select_card(card);
278 if (err)
279 goto remove;
283 * Read the common registers.
285 err = sdio_read_cccr(card);
286 if (err)
287 goto remove;
290 * Read the common CIS tuples.
292 err = sdio_read_common_cis(card);
293 if (err)
294 goto remove;
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;
304 card = oldcard;
305 return 0;
309 * Switch to high-speed (if supported).
311 err = sdio_enable_hs(card);
312 if (err)
313 goto remove;
316 * Change to the card's maximum speed.
318 if (mmc_card_highspeed(card)) {
320 * The SDIO specification doesn't mention how
321 * the CIS transfer speed register relates to
322 * high-speed, but it seems that 50 MHz is
323 * mandatory.
325 mmc_set_clock(host, 50000000);
326 } else {
327 mmc_set_clock(host, card->cis.max_dtr);
331 * Switch to wider bus (if supported).
333 err = sdio_enable_wide(card);
334 if (err)
335 goto remove;
337 if (!oldcard)
338 host->card = card;
339 return 0;
341 remove:
342 if (!oldcard)
343 mmc_remove_card(card);
345 err:
346 return err;
350 * Host is being removed. Free up the current card.
352 static void mmc_sdio_remove(struct mmc_host *host)
354 int i;
356 BUG_ON(!host);
357 BUG_ON(!host->card);
359 for (i = 0;i < host->card->sdio_funcs;i++) {
360 if (host->card->sdio_func[i]) {
361 sdio_remove_func(host->card->sdio_func[i]);
362 host->card->sdio_func[i] = NULL;
366 mmc_remove_card(host->card);
367 host->card = NULL;
371 * Card detection callback from host.
373 static void mmc_sdio_detect(struct mmc_host *host)
375 int err;
377 BUG_ON(!host);
378 BUG_ON(!host->card);
380 mmc_claim_host(host);
383 * Just check if our card has been removed.
385 err = mmc_select_card(host->card);
387 mmc_release_host(host);
389 if (err) {
390 mmc_sdio_remove(host);
392 mmc_claim_host(host);
393 mmc_detach_bus(host);
394 mmc_release_host(host);
399 * SDIO suspend. We need to suspend all functions separately.
400 * Therefore all registered functions must have drivers with suspend
401 * and resume methods. Failing that we simply remove the whole card.
403 static int mmc_sdio_suspend(struct mmc_host *host)
405 int i, err = 0;
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 /* force removal of entire card in that case */
413 err = -ENOSYS;
414 } else
415 err = pmops->suspend(&func->dev);
416 if (err)
417 break;
420 while (err && --i >= 0) {
421 struct sdio_func *func = host->card->sdio_func[i];
422 if (func && sdio_func_present(func) && func->dev.driver) {
423 const struct dev_pm_ops *pmops = func->dev.driver->pm;
424 pmops->resume(&func->dev);
428 return err;
431 static int mmc_sdio_resume(struct mmc_host *host)
433 int i, err;
435 BUG_ON(!host);
436 BUG_ON(!host->card);
438 /* Basic card reinitialization. */
439 mmc_claim_host(host);
440 err = mmc_sdio_init_card(host, host->ocr, host->card);
441 mmc_release_host(host);
444 * If the card looked to be the same as before suspending, then
445 * we proceed to resume all card functions. If one of them returns
446 * an error then we simply return that error to the core and the
447 * card will be redetected as new. It is the responsibility of
448 * the function driver to perform further tests with the extra
449 * knowledge it has of the card to confirm the card is indeed the
450 * same as before suspending (same MAC address for network cards,
451 * etc.) and return an error otherwise.
453 for (i = 0; !err && i < host->card->sdio_funcs; i++) {
454 struct sdio_func *func = host->card->sdio_func[i];
455 if (func && sdio_func_present(func) && func->dev.driver) {
456 const struct dev_pm_ops *pmops = func->dev.driver->pm;
457 err = pmops->resume(&func->dev);
461 return err;
464 static const struct mmc_bus_ops mmc_sdio_ops = {
465 .remove = mmc_sdio_remove,
466 .detect = mmc_sdio_detect,
467 .suspend = mmc_sdio_suspend,
468 .resume = mmc_sdio_resume,
473 * Starting point for SDIO card init.
475 int mmc_attach_sdio(struct mmc_host *host, u32 ocr)
477 int err;
478 int i, funcs;
479 struct mmc_card *card;
481 BUG_ON(!host);
482 WARN_ON(!host->claimed);
484 mmc_attach_bus(host, &mmc_sdio_ops);
487 * Sanity check the voltages that the card claims to
488 * support.
490 if (ocr & 0x7F) {
491 printk(KERN_WARNING "%s: card claims to support voltages "
492 "below the defined range. These will be ignored.\n",
493 mmc_hostname(host));
494 ocr &= ~0x7F;
497 host->ocr = mmc_select_voltage(host, ocr);
500 * Can we support the voltage(s) of the card(s)?
502 if (!host->ocr) {
503 err = -EINVAL;
504 goto err;
508 * Detect and init the card.
510 err = mmc_sdio_init_card(host, host->ocr, NULL);
511 if (err)
512 goto err;
513 card = host->card;
516 * The number of functions on the card is encoded inside
517 * the ocr.
519 card->sdio_funcs = funcs = (ocr & 0x70000000) >> 28;
522 * If needed, disconnect card detection pull-up resistor.
524 err = sdio_disable_cd(card);
525 if (err)
526 goto remove;
529 * Initialize (but don't add) all present functions.
531 for (i = 0;i < funcs;i++) {
532 err = sdio_init_func(host->card, i + 1);
533 if (err)
534 goto remove;
537 mmc_release_host(host);
540 * First add the card to the driver model...
542 err = mmc_add_card(host->card);
543 if (err)
544 goto remove_added;
547 * ...then the SDIO functions.
549 for (i = 0;i < funcs;i++) {
550 err = sdio_add_func(host->card->sdio_func[i]);
551 if (err)
552 goto remove_added;
555 return 0;
558 remove_added:
559 /* Remove without lock if the device has been added. */
560 mmc_sdio_remove(host);
561 mmc_claim_host(host);
562 remove:
563 /* And with lock if it hasn't been added. */
564 if (host->card)
565 mmc_sdio_remove(host);
566 err:
567 mmc_detach_bus(host);
568 mmc_release_host(host);
570 printk(KERN_ERR "%s: error %d whilst initialising SDIO card\n",
571 mmc_hostname(host), err);
573 return err;