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 * Host is being removed. Free up the current card.
170 static void mmc_sdio_remove(struct mmc_host *host)
177 for (i = 0;i < host->card->sdio_funcs;i++) {
178 if (host->card->sdio_func[i]) {
179 sdio_remove_func(host->card->sdio_func[i]);
180 host->card->sdio_func[i] = NULL;
184 mmc_remove_card(host->card);
189 * Card detection callback from host.
191 static void mmc_sdio_detect(struct mmc_host *host)
198 mmc_claim_host(host);
201 * Just check if our card has been removed.
203 err = mmc_select_card(host->card);
205 mmc_release_host(host);
208 mmc_sdio_remove(host);
210 mmc_claim_host(host);
211 mmc_detach_bus(host);
212 mmc_release_host(host);
217 static const struct mmc_bus_ops mmc_sdio_ops = {
218 .remove = mmc_sdio_remove,
219 .detect = mmc_sdio_detect,
224 * Starting point for SDIO card init.
226 int mmc_attach_sdio(struct mmc_host *host, u32 ocr)
230 struct mmc_card *card;
233 WARN_ON(!host->claimed);
235 mmc_attach_bus(host, &mmc_sdio_ops);
238 * Sanity check the voltages that the card claims to
242 printk(KERN_WARNING "%s: card claims to support voltages "
243 "below the defined range. These will be ignored.\n",
248 if (ocr & MMC_VDD_165_195) {
249 printk(KERN_WARNING "%s: SDIO card claims to support the "
250 "incompletely defined 'low voltage range'. This "
251 "will be ignored.\n", mmc_hostname(host));
252 ocr &= ~MMC_VDD_165_195;
255 host->ocr = mmc_select_voltage(host, ocr);
258 * Can we support the voltage(s) of the card(s)?
266 * Inform the card of the voltage
268 err = mmc_send_io_op_cond(host, host->ocr, &ocr);
273 * For SPI, enable CRC as appropriate.
275 if (mmc_host_is_spi(host)) {
276 err = mmc_spi_set_crc(host, use_spi_crc);
282 * The number of functions on the card is encoded inside
285 funcs = (ocr & 0x70000000) >> 28;
288 * Allocate card structure.
290 card = mmc_alloc_card(host);
296 card->type = MMC_TYPE_SDIO;
297 card->sdio_funcs = funcs;
302 * For native busses: set card RCA and quit open drain mode.
304 if (!mmc_host_is_spi(host)) {
305 err = mmc_send_relative_addr(host, &card->rca);
309 mmc_set_bus_mode(host, MMC_BUSMODE_PUSHPULL);
313 * Select card, as all following commands rely on that.
315 if (!mmc_host_is_spi(host)) {
316 err = mmc_select_card(card);
322 * Read the common registers.
324 err = sdio_read_cccr(card);
329 * Read the common CIS tuples.
331 err = sdio_read_common_cis(card);
336 * No support for high-speed yet, so just set
337 * the card's maximum speed.
339 mmc_set_clock(host, card->cis.max_dtr);
342 * Switch to wider bus (if supported).
344 err = sdio_enable_wide(card);
349 * Initialize (but don't add) all present functions.
351 for (i = 0;i < funcs;i++) {
352 err = sdio_init_func(host->card, i + 1);
357 mmc_release_host(host);
360 * First add the card to the driver model...
362 err = mmc_add_card(host->card);
367 * ...then the SDIO functions.
369 for (i = 0;i < funcs;i++) {
370 err = sdio_add_func(host->card->sdio_func[i]);
379 /* Remove without lock if the device has been added. */
380 mmc_sdio_remove(host);
381 mmc_claim_host(host);
383 /* And with lock if it hasn't been added. */
385 mmc_sdio_remove(host);
387 mmc_detach_bus(host);
388 mmc_release_host(host);
390 printk(KERN_ERR "%s: error %d whilst initialising SDIO card\n",
391 mmc_hostname(host), err);