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>
27 static int sdio_read_fbr(struct sdio_func
*func
)
32 ret
= mmc_io_rw_direct(func
->card
, 0, 0,
33 SDIO_FBR_BASE(func
->num
) + SDIO_FBR_STD_IF
, 0, &data
);
40 ret
= mmc_io_rw_direct(func
->card
, 0, 0,
41 SDIO_FBR_BASE(func
->num
) + SDIO_FBR_STD_IF_EXT
, 0, &data
);
52 static int sdio_init_func(struct mmc_card
*card
, unsigned int fn
)
55 struct sdio_func
*func
;
57 BUG_ON(fn
> SDIO_MAX_FUNCS
);
59 func
= sdio_alloc_func(card
);
65 ret
= sdio_read_fbr(func
);
69 ret
= sdio_read_func_cis(func
);
73 card
->sdio_func
[fn
- 1] = func
;
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
);
86 static int sdio_read_cccr(struct mmc_card
*card
)
92 memset(&card
->cccr
, 0, sizeof(struct sdio_cccr
));
94 ret
= mmc_io_rw_direct(card
, 0, 0, SDIO_CCCR_CCCR
, 0, &data
);
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
);
106 card
->cccr
.sdio_vsn
= (data
& 0xf0) >> 4;
108 ret
= mmc_io_rw_direct(card
, 0, 0, SDIO_CCCR_CAPS
, 0, &data
);
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
);
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
);
133 if (data
& SDIO_SPEED_SHS
)
134 card
->cccr
.high_speed
= 1;
141 static int sdio_enable_wide(struct mmc_card
*card
)
146 if (!(card
->host
->caps
& MMC_CAP_4_BIT_DATA
))
149 if (card
->cccr
.low_speed
&& !card
->cccr
.wide_bus
)
152 ret
= mmc_io_rw_direct(card
, 0, 0, SDIO_CCCR_IF
, 0, &ctrl
);
156 ctrl
|= SDIO_BUS_WIDTH_4BIT
;
158 ret
= mmc_io_rw_direct(card
, 1, 0, SDIO_CCCR_IF
, ctrl
, NULL
);
162 mmc_set_bus_width(card
->host
, MMC_BUS_WIDTH_4
);
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
)
178 if (!card
->cccr
.disable_cd
)
181 ret
= mmc_io_rw_direct(card
, 0, 0, SDIO_CCCR_IF
, 0, &ctrl
);
185 ctrl
|= SDIO_BUS_CD_DISABLE
;
187 return mmc_io_rw_direct(card
, 1, 0, SDIO_CCCR_IF
, ctrl
, NULL
);
191 * Devices that remain active during a system suspend are
192 * put back into 1-bit mode.
194 static int sdio_disable_wide(struct mmc_card
*card
)
199 if (!(card
->host
->caps
& MMC_CAP_4_BIT_DATA
))
202 if (card
->cccr
.low_speed
&& !card
->cccr
.wide_bus
)
205 ret
= mmc_io_rw_direct(card
, 0, 0, SDIO_CCCR_IF
, 0, &ctrl
);
209 if (!(ctrl
& SDIO_BUS_WIDTH_4BIT
))
212 ctrl
&= ~SDIO_BUS_WIDTH_4BIT
;
213 ctrl
|= SDIO_BUS_ASYNC_INT
;
215 ret
= mmc_io_rw_direct(card
, 1, 0, SDIO_CCCR_IF
, ctrl
, NULL
);
219 mmc_set_bus_width(card
->host
, MMC_BUS_WIDTH_1
);
225 * Test if the card supports high-speed mode and, if so, switch to it.
227 static int sdio_enable_hs(struct mmc_card
*card
)
232 if (!(card
->host
->caps
& MMC_CAP_SD_HIGHSPEED
))
235 if (!card
->cccr
.high_speed
)
238 ret
= mmc_io_rw_direct(card
, 0, 0, SDIO_CCCR_SPEED
, 0, &speed
);
242 speed
|= SDIO_SPEED_EHS
;
244 ret
= mmc_io_rw_direct(card
, 1, 0, SDIO_CCCR_SPEED
, speed
, NULL
);
248 mmc_card_set_highspeed(card
);
249 mmc_set_timing(card
->host
, MMC_TIMING_SD_HS
);
255 * Handle the detection and initialisation of a card.
257 * In the case of a resume, "oldcard" will contain the card
258 * we're trying to reinitialise.
260 static int mmc_sdio_init_card(struct mmc_host
*host
, u32 ocr
,
261 struct mmc_card
*oldcard
, int powered_resume
)
263 struct mmc_card
*card
;
267 WARN_ON(!host
->claimed
);
270 * Inform the card of the voltage
272 if (!powered_resume
) {
273 err
= mmc_send_io_op_cond(host
, host
->ocr
, &ocr
);
279 * For SPI, enable CRC as appropriate.
281 if (mmc_host_is_spi(host
)) {
282 err
= mmc_spi_set_crc(host
, use_spi_crc
);
288 * Allocate card structure.
290 card
= mmc_alloc_card(host
, NULL
);
296 card
->type
= MMC_TYPE_SDIO
;
299 * Call the optional HC's init_card function to handle quirks.
301 if (host
->ops
->init_card
)
302 host
->ops
->init_card(host
, card
);
305 * For native busses: set card RCA and quit open drain mode.
307 if (!powered_resume
&& !mmc_host_is_spi(host
)) {
308 err
= mmc_send_relative_addr(host
, &card
->rca
);
312 mmc_set_bus_mode(host
, MMC_BUSMODE_PUSHPULL
);
316 * Select card, as all following commands rely on that.
318 if (!powered_resume
&& !mmc_host_is_spi(host
)) {
319 err
= mmc_select_card(card
);
325 * Read the common registers.
327 err
= sdio_read_cccr(card
);
332 * Read the common CIS tuples.
334 err
= sdio_read_common_cis(card
);
339 int same
= (card
->cis
.vendor
== oldcard
->cis
.vendor
&&
340 card
->cis
.device
== oldcard
->cis
.device
);
341 mmc_remove_card(card
);
351 * Switch to high-speed (if supported).
353 err
= sdio_enable_hs(card
);
358 * Change to the card's maximum speed.
360 if (mmc_card_highspeed(card
)) {
362 * The SDIO specification doesn't mention how
363 * the CIS transfer speed register relates to
364 * high-speed, but it seems that 50 MHz is
367 mmc_set_clock(host
, 50000000);
369 mmc_set_clock(host
, card
->cis
.max_dtr
);
373 * Switch to wider bus (if supported).
375 err
= sdio_enable_wide(card
);
385 mmc_remove_card(card
);
392 * Host is being removed. Free up the current card.
394 static void mmc_sdio_remove(struct mmc_host
*host
)
401 for (i
= 0;i
< host
->card
->sdio_funcs
;i
++) {
402 if (host
->card
->sdio_func
[i
]) {
403 sdio_remove_func(host
->card
->sdio_func
[i
]);
404 host
->card
->sdio_func
[i
] = NULL
;
408 mmc_remove_card(host
->card
);
413 * Card detection callback from host.
415 static void mmc_sdio_detect(struct mmc_host
*host
)
422 mmc_claim_host(host
);
425 * Just check if our card has been removed.
427 err
= mmc_select_card(host
->card
);
429 mmc_release_host(host
);
432 mmc_sdio_remove(host
);
434 mmc_claim_host(host
);
435 mmc_detach_bus(host
);
436 mmc_release_host(host
);
441 * SDIO suspend. We need to suspend all functions separately.
442 * Therefore all registered functions must have drivers with suspend
443 * and resume methods. Failing that we simply remove the whole card.
445 static int mmc_sdio_suspend(struct mmc_host
*host
)
449 for (i
= 0; i
< host
->card
->sdio_funcs
; i
++) {
450 struct sdio_func
*func
= host
->card
->sdio_func
[i
];
451 if (func
&& sdio_func_present(func
) && func
->dev
.driver
) {
452 const struct dev_pm_ops
*pmops
= func
->dev
.driver
->pm
;
453 if (!pmops
|| !pmops
->suspend
|| !pmops
->resume
) {
454 /* force removal of entire card in that case */
457 err
= pmops
->suspend(&func
->dev
);
462 while (err
&& --i
>= 0) {
463 struct sdio_func
*func
= host
->card
->sdio_func
[i
];
464 if (func
&& sdio_func_present(func
) && func
->dev
.driver
) {
465 const struct dev_pm_ops
*pmops
= func
->dev
.driver
->pm
;
466 pmops
->resume(&func
->dev
);
470 if (!err
&& host
->pm_flags
& MMC_PM_KEEP_POWER
) {
471 mmc_claim_host(host
);
472 sdio_disable_wide(host
->card
);
473 mmc_release_host(host
);
479 static int mmc_sdio_resume(struct mmc_host
*host
)
486 /* Basic card reinitialization. */
487 mmc_claim_host(host
);
488 err
= mmc_sdio_init_card(host
, host
->ocr
, host
->card
,
489 (host
->pm_flags
& MMC_PM_KEEP_POWER
));
491 /* We may have switched to 1-bit mode during suspend. */
492 err
= sdio_enable_wide(host
->card
);
493 if (!err
&& host
->sdio_irqs
)
494 mmc_signal_sdio_irq(host
);
495 mmc_release_host(host
);
498 * If the card looked to be the same as before suspending, then
499 * we proceed to resume all card functions. If one of them returns
500 * an error then we simply return that error to the core and the
501 * card will be redetected as new. It is the responsibility of
502 * the function driver to perform further tests with the extra
503 * knowledge it has of the card to confirm the card is indeed the
504 * same as before suspending (same MAC address for network cards,
505 * etc.) and return an error otherwise.
507 for (i
= 0; !err
&& i
< host
->card
->sdio_funcs
; i
++) {
508 struct sdio_func
*func
= host
->card
->sdio_func
[i
];
509 if (func
&& sdio_func_present(func
) && func
->dev
.driver
) {
510 const struct dev_pm_ops
*pmops
= func
->dev
.driver
->pm
;
511 err
= pmops
->resume(&func
->dev
);
518 static const struct mmc_bus_ops mmc_sdio_ops
= {
519 .remove
= mmc_sdio_remove
,
520 .detect
= mmc_sdio_detect
,
521 .suspend
= mmc_sdio_suspend
,
522 .resume
= mmc_sdio_resume
,
527 * Starting point for SDIO card init.
529 int mmc_attach_sdio(struct mmc_host
*host
, u32 ocr
)
533 struct mmc_card
*card
;
536 WARN_ON(!host
->claimed
);
538 mmc_attach_bus(host
, &mmc_sdio_ops
);
541 * Sanity check the voltages that the card claims to
545 printk(KERN_WARNING
"%s: card claims to support voltages "
546 "below the defined range. These will be ignored.\n",
551 host
->ocr
= mmc_select_voltage(host
, ocr
);
554 * Can we support the voltage(s) of the card(s)?
562 * Detect and init the card.
564 err
= mmc_sdio_init_card(host
, host
->ocr
, NULL
, 0);
570 * The number of functions on the card is encoded inside
573 funcs
= (ocr
& 0x70000000) >> 28;
574 card
->sdio_funcs
= 0;
577 * If needed, disconnect card detection pull-up resistor.
579 err
= sdio_disable_cd(card
);
584 * Initialize (but don't add) all present functions.
586 for (i
= 0; i
< funcs
; i
++, card
->sdio_funcs
++) {
587 err
= sdio_init_func(host
->card
, i
+ 1);
592 mmc_release_host(host
);
595 * First add the card to the driver model...
597 err
= mmc_add_card(host
->card
);
602 * ...then the SDIO functions.
604 for (i
= 0;i
< funcs
;i
++) {
605 err
= sdio_add_func(host
->card
->sdio_func
[i
]);
614 /* Remove without lock if the device has been added. */
615 mmc_sdio_remove(host
);
616 mmc_claim_host(host
);
618 /* And with lock if it hasn't been added. */
620 mmc_sdio_remove(host
);
622 mmc_detach_bus(host
);
623 mmc_release_host(host
);
625 printk(KERN_ERR
"%s: error %d whilst initialising SDIO card\n",
626 mmc_hostname(host
), err
);