sdio.c 4.1 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>
P
Pierre Ossman 已提交
16
#include <linux/mmc/sdio_func.h>
P
Pierre Ossman 已提交
17 18 19

#include "core.h"
#include "bus.h"
P
Pierre Ossman 已提交
20
#include "sdio_bus.h"
P
Pierre Ossman 已提交
21 22 23 24
#include "mmc_ops.h"
#include "sd_ops.h"
#include "sdio_ops.h"

P
Pierre Ossman 已提交
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41
static int sdio_init_func(struct mmc_card *card, unsigned int fn)
{
	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;

	card->sdio_func[fn - 1] = func;

	return 0;
}

P
Pierre Ossman 已提交
42 43 44 45 46
/*
 * Host is being removed. Free up the current card.
 */
static void mmc_sdio_remove(struct mmc_host *host)
{
P
Pierre Ossman 已提交
47 48
	int i;

P
Pierre Ossman 已提交
49 50 51
	BUG_ON(!host);
	BUG_ON(!host->card);

P
Pierre Ossman 已提交
52 53 54 55 56 57 58
	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 已提交
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103
	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);
	}
}


static const struct mmc_bus_ops mmc_sdio_ops = {
	.remove = mmc_sdio_remove,
	.detect = mmc_sdio_detect,
};


/*
 * Starting point for SDIO card init.
 */
int mmc_attach_sdio(struct mmc_host *host, u32 ocr)
{
	int err;
P
Pierre Ossman 已提交
104
	int i, funcs;
P
Pierre Ossman 已提交
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 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
	struct mmc_card *card;

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

	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;
	}

	if (ocr & MMC_VDD_165_195) {
		printk(KERN_WARNING "%s: SDIO card claims to support the "
		       "incompletely defined 'low voltage range'. This "
		       "will be ignored.\n", mmc_hostname(host));
		ocr &= ~MMC_VDD_165_195;
	}

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

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

	/*
	 * Inform the card of the voltage
	 */
	err = mmc_send_io_op_cond(host, host->ocr, &ocr);
	if (err)
		goto err;

	/*
	 * The number of functions on the card is encoded inside
	 * the ocr.
	 */
	funcs = (ocr & 0x70000000) >> 28;

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

	card->type = MMC_TYPE_SDIO;
P
Pierre Ossman 已提交
163 164 165
	card->sdio_funcs = funcs;

	host->card = card;
P
Pierre Ossman 已提交
166 167 168 169 170 171

	/*
	 * Set card RCA.
	 */
	err = mmc_send_relative_addr(host, &card->rca);
	if (err)
P
Pierre Ossman 已提交
172
		goto remove;
P
Pierre Ossman 已提交
173 174 175 176 177 178 179 180

	mmc_set_bus_mode(host, MMC_BUSMODE_PUSHPULL);

	/*
	 * Select card, as all following commands rely on that.
	 */
	err = mmc_select_card(card);
	if (err)
P
Pierre Ossman 已提交
181
		goto remove;
P
Pierre Ossman 已提交
182

P
Pierre Ossman 已提交
183 184 185 186 187 188 189 190
	/*
	 * Initialize (but don't add) all present functions.
	 */
	for (i = 0;i < funcs;i++) {
		err = sdio_init_func(host->card, i + 1);
		if (err)
			goto remove;
	}
P
Pierre Ossman 已提交
191 192 193

	mmc_release_host(host);

P
Pierre Ossman 已提交
194 195 196
	/*
	 * First add the card to the driver model...
	 */
P
Pierre Ossman 已提交
197 198
	err = mmc_add_card(host->card);
	if (err)
P
Pierre Ossman 已提交
199 200 201 202 203 204 205 206 207 208
		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 已提交
209 210 211

	return 0;

P
Pierre Ossman 已提交
212 213 214 215

remove_added:
	/* Remove without lock if the device has been added. */
	mmc_sdio_remove(host);
P
Pierre Ossman 已提交
216
	mmc_claim_host(host);
P
Pierre Ossman 已提交
217 218 219 220
remove:
	/* And with lock if it hasn't been added. */
	if (host->card)
		mmc_sdio_remove(host);
P
Pierre Ossman 已提交
221 222 223 224 225 226 227 228 229 230
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;
}