sdio.c 14.5 KB
Newer Older
P
Pierre Ossman 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
/*
 *  linux/drivers/mmc/sdio.c
 *
 *  Copyright 2006-2007 Pierre Ossman
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or (at
 * your option) any later version.
 */

#include <linux/err.h>

#include <linux/mmc/host.h>
#include <linux/mmc/card.h>
16
#include <linux/mmc/sdio.h>
P
Pierre Ossman 已提交
17
#include <linux/mmc/sdio_func.h>
P
Pierre Ossman 已提交
18 19 20

#include "core.h"
#include "bus.h"
M
Michal Miroslaw 已提交
21
#include "sd.h"
P
Pierre Ossman 已提交
22
#include "sdio_bus.h"
P
Pierre Ossman 已提交
23 24 25
#include "mmc_ops.h"
#include "sd_ops.h"
#include "sdio_ops.h"
N
Nicolas Pitre 已提交
26
#include "sdio_cis.h"
P
Pierre Ossman 已提交
27

P
Pierre Ossman 已提交
28 29 30 31 32 33
static int sdio_read_fbr(struct sdio_func *func)
{
	int ret;
	unsigned char data;

	ret = mmc_io_rw_direct(func->card, 0, 0,
D
David Vrabel 已提交
34
		SDIO_FBR_BASE(func->num) + SDIO_FBR_STD_IF, 0, &data);
P
Pierre Ossman 已提交
35 36 37 38 39 40 41
	if (ret)
		goto out;

	data &= 0x0f;

	if (data == 0x0f) {
		ret = mmc_io_rw_direct(func->card, 0, 0,
D
David Vrabel 已提交
42
			SDIO_FBR_BASE(func->num) + SDIO_FBR_STD_IF_EXT, 0, &data);
P
Pierre Ossman 已提交
43 44 45 46 47 48 49 50 51 52
		if (ret)
			goto out;
	}

	func->class = data;

out:
	return ret;
}

P
Pierre Ossman 已提交
53 54
static int sdio_init_func(struct mmc_card *card, unsigned int fn)
{
P
Pierre Ossman 已提交
55
	int ret;
P
Pierre Ossman 已提交
56 57 58 59 60 61 62 63 64 65
	struct sdio_func *func;

	BUG_ON(fn > SDIO_MAX_FUNCS);

	func = sdio_alloc_func(card);
	if (IS_ERR(func))
		return PTR_ERR(func);

	func->num = fn;

P
Pierre Ossman 已提交
66 67 68 69
	ret = sdio_read_fbr(func);
	if (ret)
		goto fail;

70
	ret = sdio_read_func_cis(func);
N
Nicolas Pitre 已提交
71 72 73
	if (ret)
		goto fail;

P
Pierre Ossman 已提交
74 75 76
	card->sdio_func[fn - 1] = func;

	return 0;
P
Pierre Ossman 已提交
77 78 79 80 81 82 83 84

fail:
	/*
	 * It is okay to remove the function here even though we hold
	 * the host lock as we haven't registered the device yet.
	 */
	sdio_remove_func(func);
	return ret;
P
Pierre Ossman 已提交
85 86
}

87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
static int sdio_read_cccr(struct mmc_card *card)
{
	int ret;
	int cccr_vsn;
	unsigned char data;

	memset(&card->cccr, 0, sizeof(struct sdio_cccr));

	ret = mmc_io_rw_direct(card, 0, 0, SDIO_CCCR_CCCR, 0, &data);
	if (ret)
		goto out;

	cccr_vsn = data & 0x0f;

	if (cccr_vsn > SDIO_CCCR_REV_1_20) {
		printk(KERN_ERR "%s: unrecognised CCCR structure version %d\n",
			mmc_hostname(card->host), cccr_vsn);
		return -EINVAL;
	}

	card->cccr.sdio_vsn = (data & 0xf0) >> 4;

	ret = mmc_io_rw_direct(card, 0, 0, SDIO_CCCR_CAPS, 0, &data);
	if (ret)
		goto out;

	if (data & SDIO_CCCR_CAP_SMB)
		card->cccr.multi_block = 1;
	if (data & SDIO_CCCR_CAP_LSC)
		card->cccr.low_speed = 1;
	if (data & SDIO_CCCR_CAP_4BLS)
		card->cccr.wide_bus = 1;

	if (cccr_vsn >= SDIO_CCCR_REV_1_10) {
		ret = mmc_io_rw_direct(card, 0, 0, SDIO_CCCR_POWER, 0, &data);
		if (ret)
			goto out;

		if (data & SDIO_POWER_SMPC)
			card->cccr.high_power = 1;
	}

	if (cccr_vsn >= SDIO_CCCR_REV_1_20) {
		ret = mmc_io_rw_direct(card, 0, 0, SDIO_CCCR_SPEED, 0, &data);
		if (ret)
			goto out;

		if (data & SDIO_SPEED_SHS)
			card->cccr.high_speed = 1;
	}

out:
	return ret;
}

P
Pierre Ossman 已提交
142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
static int sdio_enable_wide(struct mmc_card *card)
{
	int ret;
	u8 ctrl;

	if (!(card->host->caps & MMC_CAP_4_BIT_DATA))
		return 0;

	if (card->cccr.low_speed && !card->cccr.wide_bus)
		return 0;

	ret = mmc_io_rw_direct(card, 0, 0, SDIO_CCCR_IF, 0, &ctrl);
	if (ret)
		return ret;

	ctrl |= SDIO_BUS_WIDTH_4BIT;

	ret = mmc_io_rw_direct(card, 1, 0, SDIO_CCCR_IF, ctrl, NULL);
	if (ret)
		return ret;

163
	return 1;
P
Pierre Ossman 已提交
164 165
}

O
Ohad Ben-Cohen 已提交
166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188
/*
 * If desired, disconnect the pull-up resistor on CD/DAT[3] (pin 1)
 * of the card. This may be required on certain setups of boards,
 * controllers and embedded sdio device which do not need the card's
 * pull-up. As a result, card detection is disabled and power is saved.
 */
static int sdio_disable_cd(struct mmc_card *card)
{
	int ret;
	u8 ctrl;

	if (!card->cccr.disable_cd)
		return 0;

	ret = mmc_io_rw_direct(card, 0, 0, SDIO_CCCR_IF, 0, &ctrl);
	if (ret)
		return ret;

	ctrl |= SDIO_BUS_CD_DISABLE;

	return mmc_io_rw_direct(card, 1, 0, SDIO_CCCR_IF, ctrl, NULL);
}

189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222
/*
 * Devices that remain active during a system suspend are
 * put back into 1-bit mode.
 */
static int sdio_disable_wide(struct mmc_card *card)
{
	int ret;
	u8 ctrl;

	if (!(card->host->caps & MMC_CAP_4_BIT_DATA))
		return 0;

	if (card->cccr.low_speed && !card->cccr.wide_bus)
		return 0;

	ret = mmc_io_rw_direct(card, 0, 0, SDIO_CCCR_IF, 0, &ctrl);
	if (ret)
		return ret;

	if (!(ctrl & SDIO_BUS_WIDTH_4BIT))
		return 0;

	ctrl &= ~SDIO_BUS_WIDTH_4BIT;
	ctrl |= SDIO_BUS_ASYNC_INT;

	ret = mmc_io_rw_direct(card, 1, 0, SDIO_CCCR_IF, ctrl, NULL);
	if (ret)
		return ret;

	mmc_set_bus_width(card->host, MMC_BUS_WIDTH_1);

	return 0;
}

223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246

static int sdio_enable_4bit_bus(struct mmc_card *card)
{
	int err;

	if (card->type == MMC_TYPE_SDIO)
		return sdio_enable_wide(card);

	if ((card->host->caps & MMC_CAP_4_BIT_DATA) &&
		(card->scr.bus_widths & SD_SCR_BUS_WIDTH_4)) {
		err = mmc_app_set_bus_width(card, MMC_BUS_WIDTH_4);
		if (err)
			return err;
	} else
		return 0;

	err = sdio_enable_wide(card);
	if (err <= 0)
		mmc_app_set_bus_width(card, MMC_BUS_WIDTH_1);

	return err;
}


P
Pierre Ossman 已提交
247 248 249
/*
 * Test if the card supports high-speed mode and, if so, switch to it.
 */
250
static int mmc_sdio_switch_hs(struct mmc_card *card, int enable)
P
Pierre Ossman 已提交
251 252 253 254 255 256 257 258 259 260 261 262 263 264
{
	int ret;
	u8 speed;

	if (!(card->host->caps & MMC_CAP_SD_HIGHSPEED))
		return 0;

	if (!card->cccr.high_speed)
		return 0;

	ret = mmc_io_rw_direct(card, 0, 0, SDIO_CCCR_SPEED, 0, &speed);
	if (ret)
		return ret;

265 266 267 268
	if (enable)
		speed |= SDIO_SPEED_EHS;
	else
		speed &= ~SDIO_SPEED_EHS;
P
Pierre Ossman 已提交
269 270 271 272 273

	ret = mmc_io_rw_direct(card, 1, 0, SDIO_CCCR_SPEED, speed, NULL);
	if (ret)
		return ret;

M
Michal Miroslaw 已提交
274 275
	return 1;
}
P
Pierre Ossman 已提交
276

277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294
/*
 * Enable SDIO/combo card's high-speed mode. Return 0/1 if [not]supported.
 */
static int sdio_enable_hs(struct mmc_card *card)
{
	int ret;

	ret = mmc_sdio_switch_hs(card, true);
	if (ret <= 0 || card->type == MMC_TYPE_SDIO)
		return ret;

	ret = mmc_sd_switch_hs(card);
	if (ret <= 0)
		mmc_sdio_switch_hs(card, false);

	return ret;
}

M
Michal Miroslaw 已提交
295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310
static unsigned mmc_sdio_get_max_clock(struct mmc_card *card)
{
	unsigned max_dtr;

	if (mmc_card_highspeed(card)) {
		/*
		 * The SDIO specification doesn't mention how
		 * the CIS transfer speed register relates to
		 * high-speed, but it seems that 50 MHz is
		 * mandatory.
		 */
		max_dtr = 50000000;
	} else {
		max_dtr = card->cis.max_dtr;
	}

311 312 313
	if (card->type == MMC_TYPE_SD_COMBO)
		max_dtr = min(max_dtr, mmc_sd_get_max_clock(card));

M
Michal Miroslaw 已提交
314
	return max_dtr;
P
Pierre Ossman 已提交
315 316
}

317 318 319 320 321 322 323
/*
 * Handle the detection and initialisation of a card.
 *
 * In the case of a resume, "oldcard" will contain the card
 * we're trying to reinitialise.
 */
static int mmc_sdio_init_card(struct mmc_host *host, u32 ocr,
324
			      struct mmc_card *oldcard, int powered_resume)
325 326 327 328 329 330 331 332 333 334
{
	struct mmc_card *card;
	int err;

	BUG_ON(!host);
	WARN_ON(!host->claimed);

	/*
	 * Inform the card of the voltage
	 */
335 336 337 338 339
	if (!powered_resume) {
		err = mmc_send_io_op_cond(host, host->ocr, &ocr);
		if (err)
			goto err;
	}
340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358

	/*
	 * For SPI, enable CRC as appropriate.
	 */
	if (mmc_host_is_spi(host)) {
		err = mmc_spi_set_crc(host, use_spi_crc);
		if (err)
			goto err;
	}

	/*
	 * Allocate card structure.
	 */
	card = mmc_alloc_card(host, NULL);
	if (IS_ERR(card)) {
		err = PTR_ERR(card);
		goto err;
	}

359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376
	err = mmc_sd_get_cid(host, host->ocr & ocr, card->raw_cid);

	if (!err) {
		card->type = MMC_TYPE_SD_COMBO;

		if (oldcard && (oldcard->type != MMC_TYPE_SD_COMBO ||
		    memcmp(card->raw_cid, oldcard->raw_cid, sizeof(card->raw_cid)) != 0)) {
			mmc_remove_card(card);
			return -ENOENT;
		}
	} else {
		card->type = MMC_TYPE_SDIO;

		if (oldcard && oldcard->type != MMC_TYPE_SDIO) {
			mmc_remove_card(card);
			return -ENOENT;
		}
	}
377

378 379 380 381 382 383
	/*
	 * Call the optional HC's init_card function to handle quirks.
	 */
	if (host->ops->init_card)
		host->ops->init_card(host, card);

384 385 386
	/*
	 * For native busses:  set card RCA and quit open drain mode.
	 */
387
	if (!powered_resume && !mmc_host_is_spi(host)) {
388 389 390 391 392 393 394
		err = mmc_send_relative_addr(host, &card->rca);
		if (err)
			goto remove;

		mmc_set_bus_mode(host, MMC_BUSMODE_PUSHPULL);
	}

395 396 397 398 399 400 401 402 403 404 405
	/*
	 * Read CSD, before selecting the card
	 */
	if (!oldcard && card->type == MMC_TYPE_SD_COMBO) {
		err = mmc_sd_get_csd(host, card);
		if (err)
			return err;

		mmc_decode_cid(card);
	}

406 407 408
	/*
	 * Select card, as all following commands rely on that.
	 */
409
	if (!powered_resume && !mmc_host_is_spi(host)) {
410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432
		err = mmc_select_card(card);
		if (err)
			goto remove;
	}

	/*
	 * Read the common registers.
	 */
	err = sdio_read_cccr(card);
	if (err)
		goto remove;

	/*
	 * Read the common CIS tuples.
	 */
	err = sdio_read_common_cis(card);
	if (err)
		goto remove;

	if (oldcard) {
		int same = (card->cis.vendor == oldcard->cis.vendor &&
			    card->cis.device == oldcard->cis.device);
		mmc_remove_card(card);
433 434 435
		if (!same)
			return -ENOENT;

436
		card = oldcard;
437
		return 0;
438 439
	}

440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459
	if (card->type == MMC_TYPE_SD_COMBO) {
		err = mmc_sd_setup_card(host, card, oldcard != NULL);
		/* handle as SDIO-only card if memory init failed */
		if (err) {
			mmc_go_idle(host);
			if (mmc_host_is_spi(host))
				/* should not fail, as it worked previously */
				mmc_spi_set_crc(host, use_spi_crc);
			card->type = MMC_TYPE_SDIO;
		} else
			card->dev.type = &sd_type;
	}

	/*
	 * If needed, disconnect card detection pull-up resistor.
	 */
	err = sdio_disable_cd(card);
	if (err)
		goto remove;

460 461 462 463
	/*
	 * Switch to high-speed (if supported).
	 */
	err = sdio_enable_hs(card);
M
Michal Miroslaw 已提交
464 465 466
	if (err > 0)
		mmc_sd_go_highspeed(card);
	else if (err)
467 468 469 470 471
		goto remove;

	/*
	 * Change to the card's maximum speed.
	 */
M
Michal Miroslaw 已提交
472
	mmc_set_clock(host, mmc_sdio_get_max_clock(card));
473 474 475 476

	/*
	 * Switch to wider bus (if supported).
	 */
477 478 479 480
	err = sdio_enable_4bit_bus(card);
	if (err > 0)
		mmc_set_bus_width(card->host, MMC_BUS_WIDTH_4);
	else if (err)
481 482 483 484 485 486 487 488 489 490 491 492 493 494
		goto remove;

	if (!oldcard)
		host->card = card;
	return 0;

remove:
	if (!oldcard)
		mmc_remove_card(card);

err:
	return err;
}

P
Pierre Ossman 已提交
495 496 497 498 499
/*
 * Host is being removed. Free up the current card.
 */
static void mmc_sdio_remove(struct mmc_host *host)
{
P
Pierre Ossman 已提交
500 501
	int i;

P
Pierre Ossman 已提交
502 503 504
	BUG_ON(!host);
	BUG_ON(!host->card);

P
Pierre Ossman 已提交
505 506 507 508 509 510 511
	for (i = 0;i < host->card->sdio_funcs;i++) {
		if (host->card->sdio_func[i]) {
			sdio_remove_func(host->card->sdio_func[i]);
			host->card->sdio_func[i] = NULL;
		}
	}

P
Pierre Ossman 已提交
512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543
	mmc_remove_card(host->card);
	host->card = NULL;
}

/*
 * Card detection callback from host.
 */
static void mmc_sdio_detect(struct mmc_host *host)
{
	int err;

	BUG_ON(!host);
	BUG_ON(!host->card);

	mmc_claim_host(host);

	/*
	 * Just check if our card has been removed.
	 */
	err = mmc_select_card(host->card);

	mmc_release_host(host);

	if (err) {
		mmc_sdio_remove(host);

		mmc_claim_host(host);
		mmc_detach_bus(host);
		mmc_release_host(host);
	}
}

544 545 546 547 548
/*
 * SDIO suspend.  We need to suspend all functions separately.
 * Therefore all registered functions must have drivers with suspend
 * and resume methods.  Failing that we simply remove the whole card.
 */
549
static int mmc_sdio_suspend(struct mmc_host *host)
550
{
551
	int i, err = 0;
552 553 554 555 556 557

	for (i = 0; i < host->card->sdio_funcs; i++) {
		struct sdio_func *func = host->card->sdio_func[i];
		if (func && sdio_func_present(func) && func->dev.driver) {
			const struct dev_pm_ops *pmops = func->dev.driver->pm;
			if (!pmops || !pmops->suspend || !pmops->resume) {
558 559 560 561 562 563
				/* force removal of entire card in that case */
				err = -ENOSYS;
			} else
				err = pmops->suspend(&func->dev);
			if (err)
				break;
564 565
		}
	}
566
	while (err && --i >= 0) {
567 568 569
		struct sdio_func *func = host->card->sdio_func[i];
		if (func && sdio_func_present(func) && func->dev.driver) {
			const struct dev_pm_ops *pmops = func->dev.driver->pm;
570
			pmops->resume(&func->dev);
571 572
		}
	}
573

574 575 576 577 578 579
	if (!err && host->pm_flags & MMC_PM_KEEP_POWER) {
		mmc_claim_host(host);
		sdio_disable_wide(host->card);
		mmc_release_host(host);
	}

580
	return err;
581 582
}

583
static int mmc_sdio_resume(struct mmc_host *host)
584 585 586 587 588 589
{
	int i, err;

	BUG_ON(!host);
	BUG_ON(!host->card);

590
	/* Basic card reinitialization. */
591
	mmc_claim_host(host);
592 593
	err = mmc_sdio_init_card(host, host->ocr, host->card,
				 (host->pm_flags & MMC_PM_KEEP_POWER));
594
	if (!err) {
595
		/* We may have switched to 1-bit mode during suspend. */
596 597 598 599 600 601
		err = sdio_enable_4bit_bus(host->card);
		if (err > 0) {
			mmc_set_bus_width(host, MMC_BUS_WIDTH_4);
			err = 0;
		}
	}
602 603
	if (!err && host->sdio_irqs)
		mmc_signal_sdio_irq(host);
604 605
	mmc_release_host(host);

606 607 608 609 610 611 612 613 614 615 616
	/*
	 * If the card looked to be the same as before suspending, then
	 * we proceed to resume all card functions.  If one of them returns
	 * an error then we simply return that error to the core and the
	 * card will be redetected as new.  It is the responsibility of
	 * the function driver to perform further tests with the extra
	 * knowledge it has of the card to confirm the card is indeed the
	 * same as before suspending (same MAC address for network cards,
	 * etc.) and return an error otherwise.
	 */
	for (i = 0; !err && i < host->card->sdio_funcs; i++) {
617 618 619
		struct sdio_func *func = host->card->sdio_func[i];
		if (func && sdio_func_present(func) && func->dev.driver) {
			const struct dev_pm_ops *pmops = func->dev.driver->pm;
620
			err = pmops->resume(&func->dev);
621 622
		}
	}
623 624

	return err;
625
}
P
Pierre Ossman 已提交
626 627 628 629

static const struct mmc_bus_ops mmc_sdio_ops = {
	.remove = mmc_sdio_remove,
	.detect = mmc_sdio_detect,
630 631
	.suspend = mmc_sdio_suspend,
	.resume = mmc_sdio_resume,
P
Pierre Ossman 已提交
632 633 634 635 636 637 638 639 640
};


/*
 * Starting point for SDIO card init.
 */
int mmc_attach_sdio(struct mmc_host *host, u32 ocr)
{
	int err;
P
Pierre Ossman 已提交
641
	int i, funcs;
P
Pierre Ossman 已提交
642 643 644
	struct mmc_card *card;

	BUG_ON(!host);
P
Pierre Ossman 已提交
645
	WARN_ON(!host->claimed);
P
Pierre Ossman 已提交
646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670

	mmc_attach_bus(host, &mmc_sdio_ops);

	/*
	 * Sanity check the voltages that the card claims to
	 * support.
	 */
	if (ocr & 0x7F) {
		printk(KERN_WARNING "%s: card claims to support voltages "
		       "below the defined range. These will be ignored.\n",
		       mmc_hostname(host));
		ocr &= ~0x7F;
	}

	host->ocr = mmc_select_voltage(host, ocr);

	/*
	 * Can we support the voltage(s) of the card(s)?
	 */
	if (!host->ocr) {
		err = -EINVAL;
		goto err;
	}

	/*
671
	 * Detect and init the card.
P
Pierre Ossman 已提交
672
	 */
673
	err = mmc_sdio_init_card(host, host->ocr, NULL, 0);
P
Pierre Ossman 已提交
674 675
	if (err)
		goto err;
676
	card = host->card;
D
David Brownell 已提交
677

P
Pierre Ossman 已提交
678 679 680 681
	/*
	 * The number of functions on the card is encoded inside
	 * the ocr.
	 */
682 683
	funcs = (ocr & 0x70000000) >> 28;
	card->sdio_funcs = 0;
P
Pierre Ossman 已提交
684

P
Pierre Ossman 已提交
685 686 687
	/*
	 * Initialize (but don't add) all present functions.
	 */
688
	for (i = 0; i < funcs; i++, card->sdio_funcs++) {
P
Pierre Ossman 已提交
689 690 691 692
		err = sdio_init_func(host->card, i + 1);
		if (err)
			goto remove;
	}
P
Pierre Ossman 已提交
693 694 695

	mmc_release_host(host);

P
Pierre Ossman 已提交
696 697 698
	/*
	 * First add the card to the driver model...
	 */
P
Pierre Ossman 已提交
699 700
	err = mmc_add_card(host->card);
	if (err)
P
Pierre Ossman 已提交
701 702 703 704 705 706 707 708 709 710
		goto remove_added;

	/*
	 * ...then the SDIO functions.
	 */
	for (i = 0;i < funcs;i++) {
		err = sdio_add_func(host->card->sdio_func[i]);
		if (err)
			goto remove_added;
	}
P
Pierre Ossman 已提交
711 712 713

	return 0;

P
Pierre Ossman 已提交
714 715 716 717

remove_added:
	/* Remove without lock if the device has been added. */
	mmc_sdio_remove(host);
P
Pierre Ossman 已提交
718
	mmc_claim_host(host);
P
Pierre Ossman 已提交
719 720 721 722
remove:
	/* And with lock if it hasn't been added. */
	if (host->card)
		mmc_sdio_remove(host);
P
Pierre Ossman 已提交
723 724 725 726 727 728 729 730 731 732
err:
	mmc_detach_bus(host);
	mmc_release_host(host);

	printk(KERN_ERR "%s: error %d whilst initialising SDIO card\n",
		mmc_hostname(host), err);

	return err;
}