blob: 6201f3086a0226d1810aab52067d0a33e22206fe [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/drivers/mmc/mmc.c
3 *
4 * Copyright (C) 2003-2004 Russell King, All Rights Reserved.
Pierre Ossman5b4fd9a2005-09-06 15:18:56 -07005 * SD support Copyright (C) 2004 Ian Molton, All Rights Reserved.
6 * SD support Copyright (C) 2005 Pierre Ossman, All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 */
12#include <linux/config.h>
13#include <linux/module.h>
14#include <linux/init.h>
15#include <linux/interrupt.h>
16#include <linux/completion.h>
17#include <linux/device.h>
18#include <linux/delay.h>
19#include <linux/pagemap.h>
20#include <linux/err.h>
Pierre Ossmanb57c43a2005-09-06 15:18:53 -070021#include <asm/scatterlist.h>
22#include <linux/scatterlist.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24#include <linux/mmc/card.h>
25#include <linux/mmc/host.h>
26#include <linux/mmc/protocol.h>
27
28#include "mmc.h"
29
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#define CMD_RETRIES 3
31
32/*
33 * OCR Bit positions to 10s of Vdd mV.
34 */
35static const unsigned short mmc_ocr_bit_to_vdd[] = {
36 150, 155, 160, 165, 170, 180, 190, 200,
37 210, 220, 230, 240, 250, 260, 270, 280,
38 290, 300, 310, 320, 330, 340, 350, 360
39};
40
41static const unsigned int tran_exp[] = {
42 10000, 100000, 1000000, 10000000,
43 0, 0, 0, 0
44};
45
46static const unsigned char tran_mant[] = {
47 0, 10, 12, 13, 15, 20, 25, 30,
48 35, 40, 45, 50, 55, 60, 70, 80,
49};
50
51static const unsigned int tacc_exp[] = {
52 1, 10, 100, 1000, 10000, 100000, 1000000, 10000000,
53};
54
55static const unsigned int tacc_mant[] = {
56 0, 10, 12, 13, 15, 20, 25, 30,
57 35, 40, 45, 50, 55, 60, 70, 80,
58};
59
60
61/**
Russell Kingfe10c6a2006-05-04 13:51:45 +010062 * mmc_request_done - finish processing an MMC request
63 * @host: MMC host which completed request
64 * @mrq: MMC request which request
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 *
66 * MMC drivers should call this function when they have completed
Russell Kingfe10c6a2006-05-04 13:51:45 +010067 * their processing of a request.
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 */
69void mmc_request_done(struct mmc_host *host, struct mmc_request *mrq)
70{
71 struct mmc_command *cmd = mrq->cmd;
Russell King920e70c2006-05-04 18:22:51 +010072 int err = cmd->error;
73
74 pr_debug("%s: req done (CMD%u): %d/%d/%d: %08x %08x %08x %08x\n",
75 mmc_hostname(host), cmd->opcode, err,
76 mrq->data ? mrq->data->error : 0,
77 mrq->stop ? mrq->stop->error : 0,
78 cmd->resp[0], cmd->resp[1], cmd->resp[2], cmd->resp[3]);
Linus Torvalds1da177e2005-04-16 15:20:36 -070079
80 if (err && cmd->retries) {
81 cmd->retries--;
82 cmd->error = 0;
83 host->ops->request(host, mrq);
84 } else if (mrq->done) {
85 mrq->done(mrq);
86 }
87}
88
89EXPORT_SYMBOL(mmc_request_done);
90
91/**
92 * mmc_start_request - start a command on a host
93 * @host: MMC host to start command on
94 * @mrq: MMC request to start
95 *
96 * Queue a command on the specified host. We expect the
97 * caller to be holding the host lock with interrupts disabled.
98 */
99void
100mmc_start_request(struct mmc_host *host, struct mmc_request *mrq)
101{
Russell King920e70c2006-05-04 18:22:51 +0100102 pr_debug("%s: starting CMD%u arg %08x flags %08x\n",
103 mmc_hostname(host), mrq->cmd->opcode,
104 mrq->cmd->arg, mrq->cmd->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
106 WARN_ON(host->card_busy == NULL);
107
108 mrq->cmd->error = 0;
109 mrq->cmd->mrq = mrq;
110 if (mrq->data) {
111 mrq->cmd->data = mrq->data;
112 mrq->data->error = 0;
113 mrq->data->mrq = mrq;
114 if (mrq->stop) {
115 mrq->data->stop = mrq->stop;
116 mrq->stop->error = 0;
117 mrq->stop->mrq = mrq;
118 }
119 }
120 host->ops->request(host, mrq);
121}
122
123EXPORT_SYMBOL(mmc_start_request);
124
125static void mmc_wait_done(struct mmc_request *mrq)
126{
127 complete(mrq->done_data);
128}
129
130int mmc_wait_for_req(struct mmc_host *host, struct mmc_request *mrq)
131{
132 DECLARE_COMPLETION(complete);
133
134 mrq->done_data = &complete;
135 mrq->done = mmc_wait_done;
136
137 mmc_start_request(host, mrq);
138
139 wait_for_completion(&complete);
140
141 return 0;
142}
143
144EXPORT_SYMBOL(mmc_wait_for_req);
145
146/**
147 * mmc_wait_for_cmd - start a command and wait for completion
148 * @host: MMC host to start command
149 * @cmd: MMC command to start
150 * @retries: maximum number of retries
151 *
152 * Start a new MMC command for a host, and wait for the command
153 * to complete. Return any error that occurred while the command
154 * was executing. Do not attempt to parse the response.
155 */
156int mmc_wait_for_cmd(struct mmc_host *host, struct mmc_command *cmd, int retries)
157{
158 struct mmc_request mrq;
159
160 BUG_ON(host->card_busy == NULL);
161
162 memset(&mrq, 0, sizeof(struct mmc_request));
163
164 memset(cmd->resp, 0, sizeof(cmd->resp));
165 cmd->retries = retries;
166
167 mrq.cmd = cmd;
168 cmd->data = NULL;
169
170 mmc_wait_for_req(host, &mrq);
171
172 return cmd->error;
173}
174
175EXPORT_SYMBOL(mmc_wait_for_cmd);
176
Pierre Ossman335eadf2005-09-06 15:18:50 -0700177/**
178 * mmc_wait_for_app_cmd - start an application command and wait for
179 completion
180 * @host: MMC host to start command
181 * @rca: RCA to send MMC_APP_CMD to
182 * @cmd: MMC command to start
183 * @retries: maximum number of retries
184 *
185 * Sends a MMC_APP_CMD, checks the card response, sends the command
186 * in the parameter and waits for it to complete. Return any error
187 * that occurred while the command was executing. Do not attempt to
188 * parse the response.
189 */
190int mmc_wait_for_app_cmd(struct mmc_host *host, unsigned int rca,
191 struct mmc_command *cmd, int retries)
192{
193 struct mmc_request mrq;
194 struct mmc_command appcmd;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Pierre Ossman335eadf2005-09-06 15:18:50 -0700196 int i, err;
197
198 BUG_ON(host->card_busy == NULL);
199 BUG_ON(retries < 0);
200
201 err = MMC_ERR_INVALID;
202
203 /*
204 * We have to resend MMC_APP_CMD for each attempt so
205 * we cannot use the retries field in mmc_command.
206 */
207 for (i = 0;i <= retries;i++) {
208 memset(&mrq, 0, sizeof(struct mmc_request));
209
210 appcmd.opcode = MMC_APP_CMD;
211 appcmd.arg = rca << 16;
Russell Kinge9225172006-02-02 12:23:12 +0000212 appcmd.flags = MMC_RSP_R1 | MMC_CMD_AC;
Pierre Ossman335eadf2005-09-06 15:18:50 -0700213 appcmd.retries = 0;
214 memset(appcmd.resp, 0, sizeof(appcmd.resp));
215 appcmd.data = NULL;
216
217 mrq.cmd = &appcmd;
218 appcmd.data = NULL;
219
220 mmc_wait_for_req(host, &mrq);
221
222 if (appcmd.error) {
223 err = appcmd.error;
224 continue;
225 }
226
227 /* Check that card supported application commands */
228 if (!(appcmd.resp[0] & R1_APP_CMD))
229 return MMC_ERR_FAILED;
230
231 memset(&mrq, 0, sizeof(struct mmc_request));
232
233 memset(cmd->resp, 0, sizeof(cmd->resp));
234 cmd->retries = 0;
235
236 mrq.cmd = cmd;
237 cmd->data = NULL;
238
239 mmc_wait_for_req(host, &mrq);
240
241 err = cmd->error;
242 if (cmd->error == MMC_ERR_NONE)
243 break;
244 }
245
246 return err;
247}
248
249EXPORT_SYMBOL(mmc_wait_for_app_cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Pierre Ossmanb57c43a2005-09-06 15:18:53 -0700251static int mmc_select_card(struct mmc_host *host, struct mmc_card *card);
252
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253/**
254 * __mmc_claim_host - exclusively claim a host
255 * @host: mmc host to claim
256 * @card: mmc card to claim host for
257 *
258 * Claim a host for a set of operations. If a valid card
259 * is passed and this wasn't the last card selected, select
260 * the card before returning.
261 *
262 * Note: you should use mmc_card_claim_host or mmc_claim_host.
263 */
264int __mmc_claim_host(struct mmc_host *host, struct mmc_card *card)
265{
266 DECLARE_WAITQUEUE(wait, current);
267 unsigned long flags;
268 int err = 0;
269
270 add_wait_queue(&host->wq, &wait);
271 spin_lock_irqsave(&host->lock, flags);
272 while (1) {
273 set_current_state(TASK_UNINTERRUPTIBLE);
274 if (host->card_busy == NULL)
275 break;
276 spin_unlock_irqrestore(&host->lock, flags);
277 schedule();
278 spin_lock_irqsave(&host->lock, flags);
279 }
280 set_current_state(TASK_RUNNING);
281 host->card_busy = card;
282 spin_unlock_irqrestore(&host->lock, flags);
283 remove_wait_queue(&host->wq, &wait);
284
Pierre Ossmanb57c43a2005-09-06 15:18:53 -0700285 if (card != (void *)-1) {
286 err = mmc_select_card(host, card);
287 if (err != MMC_ERR_NONE)
288 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 }
290
291 return err;
292}
293
294EXPORT_SYMBOL(__mmc_claim_host);
295
296/**
297 * mmc_release_host - release a host
298 * @host: mmc host to release
299 *
300 * Release a MMC host, allowing others to claim the host
301 * for their operations.
302 */
303void mmc_release_host(struct mmc_host *host)
304{
305 unsigned long flags;
306
307 BUG_ON(host->card_busy == NULL);
308
309 spin_lock_irqsave(&host->lock, flags);
310 host->card_busy = NULL;
311 spin_unlock_irqrestore(&host->lock, flags);
312
313 wake_up(&host->wq);
314}
315
316EXPORT_SYMBOL(mmc_release_host);
317
Russell King920e70c2006-05-04 18:22:51 +0100318static inline void mmc_set_ios(struct mmc_host *host)
319{
320 struct mmc_ios *ios = &host->ios;
321
322 pr_debug("%s: clock %uHz busmode %u powermode %u cs %u Vdd %u width %u\n",
323 mmc_hostname(host), ios->clock, ios->bus_mode,
324 ios->power_mode, ios->chip_select, ios->vdd,
325 ios->bus_width);
326
327 host->ops->set_ios(host, ios);
328}
329
Pierre Ossmanb57c43a2005-09-06 15:18:53 -0700330static int mmc_select_card(struct mmc_host *host, struct mmc_card *card)
331{
332 int err;
333 struct mmc_command cmd;
334
335 BUG_ON(host->card_busy == NULL);
336
337 if (host->card_selected == card)
338 return MMC_ERR_NONE;
339
340 host->card_selected = card;
341
342 cmd.opcode = MMC_SELECT_CARD;
343 cmd.arg = card->rca << 16;
Russell Kinge9225172006-02-02 12:23:12 +0000344 cmd.flags = MMC_RSP_R1 | MMC_CMD_AC;
Pierre Ossmanb57c43a2005-09-06 15:18:53 -0700345
346 err = mmc_wait_for_cmd(host, &cmd, CMD_RETRIES);
347 if (err != MMC_ERR_NONE)
348 return err;
349
Pierre Ossmanf2182782005-09-06 15:18:55 -0700350 /*
351 * Default bus width is 1 bit.
352 */
353 host->ios.bus_width = MMC_BUS_WIDTH_1;
354
355 /*
356 * We can only change the bus width of the selected
357 * card so therefore we have to put the handling
358 * here.
359 */
360 if (host->caps & MMC_CAP_4_BIT_DATA) {
361 /*
362 * The card is in 1 bit mode by default so
363 * we only need to change if it supports the
364 * wider version.
365 */
366 if (mmc_card_sd(card) &&
367 (card->scr.bus_widths & SD_SCR_BUS_WIDTH_4)) {
368 struct mmc_command cmd;
369 cmd.opcode = SD_APP_SET_BUS_WIDTH;
370 cmd.arg = SD_BUS_WIDTH_4;
Russell Kinge9225172006-02-02 12:23:12 +0000371 cmd.flags = MMC_RSP_R1 | MMC_CMD_AC;
Pierre Ossmanf2182782005-09-06 15:18:55 -0700372
373 err = mmc_wait_for_app_cmd(host, card->rca, &cmd,
374 CMD_RETRIES);
375 if (err != MMC_ERR_NONE)
376 return err;
377
378 host->ios.bus_width = MMC_BUS_WIDTH_4;
379 }
380 }
381
Russell King920e70c2006-05-04 18:22:51 +0100382 mmc_set_ios(host);
Pierre Ossmanf2182782005-09-06 15:18:55 -0700383
Pierre Ossmanb57c43a2005-09-06 15:18:53 -0700384 return MMC_ERR_NONE;
385}
386
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387/*
388 * Ensure that no card is selected.
389 */
390static void mmc_deselect_cards(struct mmc_host *host)
391{
392 struct mmc_command cmd;
393
394 if (host->card_selected) {
395 host->card_selected = NULL;
396
397 cmd.opcode = MMC_SELECT_CARD;
398 cmd.arg = 0;
Russell Kinge9225172006-02-02 12:23:12 +0000399 cmd.flags = MMC_RSP_NONE | MMC_CMD_AC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
401 mmc_wait_for_cmd(host, &cmd, 0);
402 }
403}
404
405
406static inline void mmc_delay(unsigned int ms)
407{
408 if (ms < HZ / 1000) {
409 yield();
410 mdelay(ms);
411 } else {
412 msleep_interruptible (ms);
413 }
414}
415
416/*
417 * Mask off any voltages we don't support and select
418 * the lowest voltage
419 */
420static u32 mmc_select_voltage(struct mmc_host *host, u32 ocr)
421{
422 int bit;
423
424 ocr &= host->ocr_avail;
425
426 bit = ffs(ocr);
427 if (bit) {
428 bit -= 1;
429
430 ocr = 3 << bit;
431
432 host->ios.vdd = bit;
Russell King920e70c2006-05-04 18:22:51 +0100433 mmc_set_ios(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 } else {
435 ocr = 0;
436 }
437
438 return ocr;
439}
440
441#define UNSTUFF_BITS(resp,start,size) \
442 ({ \
443 const int __size = size; \
444 const u32 __mask = (__size < 32 ? 1 << __size : 0) - 1; \
445 const int __off = 3 - ((start) / 32); \
446 const int __shft = (start) & 31; \
447 u32 __res; \
448 \
449 __res = resp[__off] >> __shft; \
450 if (__size + __shft > 32) \
451 __res |= resp[__off-1] << ((32 - __shft) % 32); \
452 __res & __mask; \
453 })
454
455/*
456 * Given the decoded CSD structure, decode the raw CID to our CID structure.
457 */
458static void mmc_decode_cid(struct mmc_card *card)
459{
460 u32 *resp = card->raw_cid;
461
462 memset(&card->cid, 0, sizeof(struct mmc_cid));
463
Pierre Ossman335eadf2005-09-06 15:18:50 -0700464 if (mmc_card_sd(card)) {
465 /*
466 * SD doesn't currently have a version field so we will
467 * have to assume we can parse this.
468 */
469 card->cid.manfid = UNSTUFF_BITS(resp, 120, 8);
470 card->cid.oemid = UNSTUFF_BITS(resp, 104, 16);
471 card->cid.prod_name[0] = UNSTUFF_BITS(resp, 96, 8);
472 card->cid.prod_name[1] = UNSTUFF_BITS(resp, 88, 8);
473 card->cid.prod_name[2] = UNSTUFF_BITS(resp, 80, 8);
474 card->cid.prod_name[3] = UNSTUFF_BITS(resp, 72, 8);
475 card->cid.prod_name[4] = UNSTUFF_BITS(resp, 64, 8);
476 card->cid.hwrev = UNSTUFF_BITS(resp, 60, 4);
477 card->cid.fwrev = UNSTUFF_BITS(resp, 56, 4);
478 card->cid.serial = UNSTUFF_BITS(resp, 24, 32);
479 card->cid.year = UNSTUFF_BITS(resp, 12, 8);
480 card->cid.month = UNSTUFF_BITS(resp, 8, 4);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
Pierre Ossman335eadf2005-09-06 15:18:50 -0700482 card->cid.year += 2000; /* SD cards year offset */
Pierre Ossmana00fc092005-09-06 15:18:52 -0700483 } else {
Pierre Ossman335eadf2005-09-06 15:18:50 -0700484 /*
485 * The selection of the format here is based upon published
486 * specs from sandisk and from what people have reported.
487 */
488 switch (card->csd.mmca_vsn) {
489 case 0: /* MMC v1.0 - v1.2 */
490 case 1: /* MMC v1.4 */
491 card->cid.manfid = UNSTUFF_BITS(resp, 104, 24);
492 card->cid.prod_name[0] = UNSTUFF_BITS(resp, 96, 8);
493 card->cid.prod_name[1] = UNSTUFF_BITS(resp, 88, 8);
494 card->cid.prod_name[2] = UNSTUFF_BITS(resp, 80, 8);
495 card->cid.prod_name[3] = UNSTUFF_BITS(resp, 72, 8);
496 card->cid.prod_name[4] = UNSTUFF_BITS(resp, 64, 8);
497 card->cid.prod_name[5] = UNSTUFF_BITS(resp, 56, 8);
498 card->cid.prod_name[6] = UNSTUFF_BITS(resp, 48, 8);
499 card->cid.hwrev = UNSTUFF_BITS(resp, 44, 4);
500 card->cid.fwrev = UNSTUFF_BITS(resp, 40, 4);
501 card->cid.serial = UNSTUFF_BITS(resp, 16, 24);
502 card->cid.month = UNSTUFF_BITS(resp, 12, 4);
503 card->cid.year = UNSTUFF_BITS(resp, 8, 4) + 1997;
504 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
Pierre Ossman335eadf2005-09-06 15:18:50 -0700506 case 2: /* MMC v2.0 - v2.2 */
507 case 3: /* MMC v3.1 - v3.3 */
Pierre Ossmancb757b42006-01-08 14:23:02 +0000508 case 4: /* MMC v4 */
Pierre Ossman335eadf2005-09-06 15:18:50 -0700509 card->cid.manfid = UNSTUFF_BITS(resp, 120, 8);
510 card->cid.oemid = UNSTUFF_BITS(resp, 104, 16);
511 card->cid.prod_name[0] = UNSTUFF_BITS(resp, 96, 8);
512 card->cid.prod_name[1] = UNSTUFF_BITS(resp, 88, 8);
513 card->cid.prod_name[2] = UNSTUFF_BITS(resp, 80, 8);
514 card->cid.prod_name[3] = UNSTUFF_BITS(resp, 72, 8);
515 card->cid.prod_name[4] = UNSTUFF_BITS(resp, 64, 8);
516 card->cid.prod_name[5] = UNSTUFF_BITS(resp, 56, 8);
517 card->cid.serial = UNSTUFF_BITS(resp, 16, 32);
518 card->cid.month = UNSTUFF_BITS(resp, 12, 4);
519 card->cid.year = UNSTUFF_BITS(resp, 8, 4) + 1997;
520 break;
521
522 default:
523 printk("%s: card has unknown MMCA version %d\n",
524 mmc_hostname(card->host), card->csd.mmca_vsn);
525 mmc_card_set_bad(card);
526 break;
527 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 }
529}
530
531/*
532 * Given a 128-bit response, decode to our card CSD structure.
533 */
534static void mmc_decode_csd(struct mmc_card *card)
535{
536 struct mmc_csd *csd = &card->csd;
537 unsigned int e, m, csd_struct;
538 u32 *resp = card->raw_csd;
539
Pierre Ossman335eadf2005-09-06 15:18:50 -0700540 if (mmc_card_sd(card)) {
541 csd_struct = UNSTUFF_BITS(resp, 126, 2);
542 if (csd_struct != 0) {
543 printk("%s: unrecognised CSD structure version %d\n",
544 mmc_hostname(card->host), csd_struct);
545 mmc_card_set_bad(card);
546 return;
547 }
548
549 m = UNSTUFF_BITS(resp, 115, 4);
550 e = UNSTUFF_BITS(resp, 112, 3);
551 csd->tacc_ns = (tacc_exp[e] * tacc_mant[m] + 9) / 10;
552 csd->tacc_clks = UNSTUFF_BITS(resp, 104, 8) * 100;
553
554 m = UNSTUFF_BITS(resp, 99, 4);
555 e = UNSTUFF_BITS(resp, 96, 3);
556 csd->max_dtr = tran_exp[e] * tran_mant[m];
557 csd->cmdclass = UNSTUFF_BITS(resp, 84, 12);
558
559 e = UNSTUFF_BITS(resp, 47, 3);
560 m = UNSTUFF_BITS(resp, 62, 12);
561 csd->capacity = (1 + m) << (e + 2);
562
563 csd->read_blkbits = UNSTUFF_BITS(resp, 80, 4);
Russell Kinga6f6c962006-01-03 22:38:44 +0000564 csd->read_partial = UNSTUFF_BITS(resp, 79, 1);
565 csd->write_misalign = UNSTUFF_BITS(resp, 78, 1);
566 csd->read_misalign = UNSTUFF_BITS(resp, 77, 1);
Russell King37be4e72006-05-02 17:24:59 +0100567 csd->r2w_factor = UNSTUFF_BITS(resp, 26, 3);
Russell Kinga6f6c962006-01-03 22:38:44 +0000568 csd->write_blkbits = UNSTUFF_BITS(resp, 22, 4);
569 csd->write_partial = UNSTUFF_BITS(resp, 21, 1);
Pierre Ossmana00fc092005-09-06 15:18:52 -0700570 } else {
Pierre Ossman335eadf2005-09-06 15:18:50 -0700571 /*
572 * We only understand CSD structure v1.1 and v1.2.
573 * v1.2 has extra information in bits 15, 11 and 10.
574 */
575 csd_struct = UNSTUFF_BITS(resp, 126, 2);
576 if (csd_struct != 1 && csd_struct != 2) {
577 printk("%s: unrecognised CSD structure version %d\n",
578 mmc_hostname(card->host), csd_struct);
579 mmc_card_set_bad(card);
580 return;
581 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582
Pierre Ossman335eadf2005-09-06 15:18:50 -0700583 csd->mmca_vsn = UNSTUFF_BITS(resp, 122, 4);
584 m = UNSTUFF_BITS(resp, 115, 4);
585 e = UNSTUFF_BITS(resp, 112, 3);
586 csd->tacc_ns = (tacc_exp[e] * tacc_mant[m] + 9) / 10;
587 csd->tacc_clks = UNSTUFF_BITS(resp, 104, 8) * 100;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
Pierre Ossman335eadf2005-09-06 15:18:50 -0700589 m = UNSTUFF_BITS(resp, 99, 4);
590 e = UNSTUFF_BITS(resp, 96, 3);
591 csd->max_dtr = tran_exp[e] * tran_mant[m];
592 csd->cmdclass = UNSTUFF_BITS(resp, 84, 12);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
Pierre Ossman335eadf2005-09-06 15:18:50 -0700594 e = UNSTUFF_BITS(resp, 47, 3);
595 m = UNSTUFF_BITS(resp, 62, 12);
596 csd->capacity = (1 + m) << (e + 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
Pierre Ossman335eadf2005-09-06 15:18:50 -0700598 csd->read_blkbits = UNSTUFF_BITS(resp, 80, 4);
Russell Kinga6f6c962006-01-03 22:38:44 +0000599 csd->read_partial = UNSTUFF_BITS(resp, 79, 1);
600 csd->write_misalign = UNSTUFF_BITS(resp, 78, 1);
601 csd->read_misalign = UNSTUFF_BITS(resp, 77, 1);
Russell King37be4e72006-05-02 17:24:59 +0100602 csd->r2w_factor = UNSTUFF_BITS(resp, 26, 3);
Russell Kinga6f6c962006-01-03 22:38:44 +0000603 csd->write_blkbits = UNSTUFF_BITS(resp, 22, 4);
604 csd->write_partial = UNSTUFF_BITS(resp, 21, 1);
Pierre Ossman335eadf2005-09-06 15:18:50 -0700605 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606}
607
608/*
Pierre Ossmanb57c43a2005-09-06 15:18:53 -0700609 * Given a 64-bit response, decode to our card SCR structure.
610 */
611static void mmc_decode_scr(struct mmc_card *card)
612{
613 struct sd_scr *scr = &card->scr;
614 unsigned int scr_struct;
615 u32 resp[4];
616
617 BUG_ON(!mmc_card_sd(card));
618
619 resp[3] = card->raw_scr[1];
620 resp[2] = card->raw_scr[0];
621
622 scr_struct = UNSTUFF_BITS(resp, 60, 4);
623 if (scr_struct != 0) {
624 printk("%s: unrecognised SCR structure version %d\n",
625 mmc_hostname(card->host), scr_struct);
626 mmc_card_set_bad(card);
627 return;
628 }
629
630 scr->sda_vsn = UNSTUFF_BITS(resp, 56, 4);
631 scr->bus_widths = UNSTUFF_BITS(resp, 48, 4);
632}
633
634/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635 * Locate a MMC card on this MMC host given a raw CID.
636 */
637static struct mmc_card *mmc_find_card(struct mmc_host *host, u32 *raw_cid)
638{
639 struct mmc_card *card;
640
641 list_for_each_entry(card, &host->cards, node) {
642 if (memcmp(card->raw_cid, raw_cid, sizeof(card->raw_cid)) == 0)
643 return card;
644 }
645 return NULL;
646}
647
648/*
649 * Allocate a new MMC card, and assign a unique RCA.
650 */
651static struct mmc_card *
652mmc_alloc_card(struct mmc_host *host, u32 *raw_cid, unsigned int *frca)
653{
654 struct mmc_card *card, *c;
655 unsigned int rca = *frca;
656
657 card = kmalloc(sizeof(struct mmc_card), GFP_KERNEL);
658 if (!card)
659 return ERR_PTR(-ENOMEM);
660
661 mmc_init_card(card, host);
662 memcpy(card->raw_cid, raw_cid, sizeof(card->raw_cid));
663
664 again:
665 list_for_each_entry(c, &host->cards, node)
666 if (c->rca == rca) {
667 rca++;
668 goto again;
669 }
670
671 card->rca = rca;
672
673 *frca = rca;
674
675 return card;
676}
677
678/*
679 * Tell attached cards to go to IDLE state
680 */
681static void mmc_idle_cards(struct mmc_host *host)
682{
683 struct mmc_command cmd;
684
Pierre Ossman865e9f12005-09-03 16:45:02 +0100685 host->ios.chip_select = MMC_CS_HIGH;
Russell King920e70c2006-05-04 18:22:51 +0100686 mmc_set_ios(host);
Pierre Ossman865e9f12005-09-03 16:45:02 +0100687
688 mmc_delay(1);
689
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 cmd.opcode = MMC_GO_IDLE_STATE;
691 cmd.arg = 0;
Russell Kinge9225172006-02-02 12:23:12 +0000692 cmd.flags = MMC_RSP_NONE | MMC_CMD_BC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
694 mmc_wait_for_cmd(host, &cmd, 0);
695
696 mmc_delay(1);
Pierre Ossman865e9f12005-09-03 16:45:02 +0100697
698 host->ios.chip_select = MMC_CS_DONTCARE;
Russell King920e70c2006-05-04 18:22:51 +0100699 mmc_set_ios(host);
Pierre Ossman865e9f12005-09-03 16:45:02 +0100700
701 mmc_delay(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702}
703
704/*
Russell King45f82452005-12-14 14:57:35 +0000705 * Apply power to the MMC stack. This is a two-stage process.
706 * First, we enable power to the card without the clock running.
707 * We then wait a bit for the power to stabilise. Finally,
708 * enable the bus drivers and clock to the card.
709 *
710 * We must _NOT_ enable the clock prior to power stablising.
711 *
712 * If a host does all the power sequencing itself, ignore the
713 * initial MMC_POWER_UP stage.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 */
715static void mmc_power_up(struct mmc_host *host)
716{
717 int bit = fls(host->ocr_avail) - 1;
718
719 host->ios.vdd = bit;
720 host->ios.bus_mode = MMC_BUSMODE_OPENDRAIN;
Pierre Ossman865e9f12005-09-03 16:45:02 +0100721 host->ios.chip_select = MMC_CS_DONTCARE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 host->ios.power_mode = MMC_POWER_UP;
Pierre Ossmanf2182782005-09-06 15:18:55 -0700723 host->ios.bus_width = MMC_BUS_WIDTH_1;
Russell King920e70c2006-05-04 18:22:51 +0100724 mmc_set_ios(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
726 mmc_delay(1);
727
728 host->ios.clock = host->f_min;
729 host->ios.power_mode = MMC_POWER_ON;
Russell King920e70c2006-05-04 18:22:51 +0100730 mmc_set_ios(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731
732 mmc_delay(2);
733}
734
735static void mmc_power_off(struct mmc_host *host)
736{
737 host->ios.clock = 0;
738 host->ios.vdd = 0;
739 host->ios.bus_mode = MMC_BUSMODE_OPENDRAIN;
Pierre Ossman865e9f12005-09-03 16:45:02 +0100740 host->ios.chip_select = MMC_CS_DONTCARE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 host->ios.power_mode = MMC_POWER_OFF;
Pierre Ossmanf2182782005-09-06 15:18:55 -0700742 host->ios.bus_width = MMC_BUS_WIDTH_1;
Russell King920e70c2006-05-04 18:22:51 +0100743 mmc_set_ios(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744}
745
746static int mmc_send_op_cond(struct mmc_host *host, u32 ocr, u32 *rocr)
747{
748 struct mmc_command cmd;
749 int i, err = 0;
750
751 cmd.opcode = MMC_SEND_OP_COND;
752 cmd.arg = ocr;
Russell Kinge9225172006-02-02 12:23:12 +0000753 cmd.flags = MMC_RSP_R3 | MMC_CMD_BCR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
755 for (i = 100; i; i--) {
756 err = mmc_wait_for_cmd(host, &cmd, 0);
757 if (err != MMC_ERR_NONE)
758 break;
759
760 if (cmd.resp[0] & MMC_CARD_BUSY || ocr == 0)
761 break;
762
763 err = MMC_ERR_TIMEOUT;
764
765 mmc_delay(10);
766 }
767
768 if (rocr)
769 *rocr = cmd.resp[0];
770
771 return err;
772}
773
Pierre Ossman335eadf2005-09-06 15:18:50 -0700774static int mmc_send_app_op_cond(struct mmc_host *host, u32 ocr, u32 *rocr)
775{
776 struct mmc_command cmd;
777 int i, err = 0;
778
779 cmd.opcode = SD_APP_OP_COND;
780 cmd.arg = ocr;
Russell Kinge9225172006-02-02 12:23:12 +0000781 cmd.flags = MMC_RSP_R3 | MMC_CMD_BCR;
Pierre Ossman335eadf2005-09-06 15:18:50 -0700782
783 for (i = 100; i; i--) {
784 err = mmc_wait_for_app_cmd(host, 0, &cmd, CMD_RETRIES);
785 if (err != MMC_ERR_NONE)
786 break;
787
788 if (cmd.resp[0] & MMC_CARD_BUSY || ocr == 0)
789 break;
790
791 err = MMC_ERR_TIMEOUT;
792
793 mmc_delay(10);
794 }
795
796 if (rocr)
797 *rocr = cmd.resp[0];
798
799 return err;
800}
801
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802/*
803 * Discover cards by requesting their CID. If this command
804 * times out, it is not an error; there are no further cards
805 * to be discovered. Add new cards to the list.
806 *
807 * Create a mmc_card entry for each discovered card, assigning
808 * it an RCA, and save the raw CID for decoding later.
809 */
810static void mmc_discover_cards(struct mmc_host *host)
811{
812 struct mmc_card *card;
813 unsigned int first_rca = 1, err;
814
815 while (1) {
816 struct mmc_command cmd;
817
818 cmd.opcode = MMC_ALL_SEND_CID;
819 cmd.arg = 0;
Russell Kinge9225172006-02-02 12:23:12 +0000820 cmd.flags = MMC_RSP_R2 | MMC_CMD_BCR;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821
822 err = mmc_wait_for_cmd(host, &cmd, CMD_RETRIES);
823 if (err == MMC_ERR_TIMEOUT) {
824 err = MMC_ERR_NONE;
825 break;
826 }
827 if (err != MMC_ERR_NONE) {
828 printk(KERN_ERR "%s: error requesting CID: %d\n",
Russell Kingd366b642005-08-19 09:40:08 +0100829 mmc_hostname(host), err);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 break;
831 }
832
833 card = mmc_find_card(host, cmd.resp);
834 if (!card) {
835 card = mmc_alloc_card(host, cmd.resp, &first_rca);
836 if (IS_ERR(card)) {
837 err = PTR_ERR(card);
838 break;
839 }
840 list_add(&card->node, &host->cards);
841 }
842
843 card->state &= ~MMC_STATE_DEAD;
844
Pierre Ossman335eadf2005-09-06 15:18:50 -0700845 if (host->mode == MMC_MODE_SD) {
846 mmc_card_set_sd(card);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
Pierre Ossman335eadf2005-09-06 15:18:50 -0700848 cmd.opcode = SD_SEND_RELATIVE_ADDR;
849 cmd.arg = 0;
Russell Kinge9225172006-02-02 12:23:12 +0000850 cmd.flags = MMC_RSP_R6 | MMC_CMD_BCR;
Pierre Ossman335eadf2005-09-06 15:18:50 -0700851
852 err = mmc_wait_for_cmd(host, &cmd, CMD_RETRIES);
853 if (err != MMC_ERR_NONE)
854 mmc_card_set_dead(card);
Pierre Ossmana00fc092005-09-06 15:18:52 -0700855 else {
Pierre Ossman335eadf2005-09-06 15:18:50 -0700856 card->rca = cmd.resp[0] >> 16;
Pierre Ossmana00fc092005-09-06 15:18:52 -0700857
858 if (!host->ops->get_ro) {
859 printk(KERN_WARNING "%s: host does not "
860 "support reading read-only "
861 "switch. assuming write-enable.\n",
862 mmc_hostname(host));
863 } else {
864 if (host->ops->get_ro(host))
865 mmc_card_set_readonly(card);
866 }
867 }
868 } else {
Pierre Ossman335eadf2005-09-06 15:18:50 -0700869 cmd.opcode = MMC_SET_RELATIVE_ADDR;
870 cmd.arg = card->rca << 16;
Russell Kinge9225172006-02-02 12:23:12 +0000871 cmd.flags = MMC_RSP_R1 | MMC_CMD_AC;
Pierre Ossman335eadf2005-09-06 15:18:50 -0700872
873 err = mmc_wait_for_cmd(host, &cmd, CMD_RETRIES);
874 if (err != MMC_ERR_NONE)
875 mmc_card_set_dead(card);
876 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 }
878}
879
880static void mmc_read_csds(struct mmc_host *host)
881{
882 struct mmc_card *card;
883
884 list_for_each_entry(card, &host->cards, node) {
885 struct mmc_command cmd;
886 int err;
887
888 if (card->state & (MMC_STATE_DEAD|MMC_STATE_PRESENT))
889 continue;
890
891 cmd.opcode = MMC_SEND_CSD;
892 cmd.arg = card->rca << 16;
Russell Kinge9225172006-02-02 12:23:12 +0000893 cmd.flags = MMC_RSP_R2 | MMC_CMD_AC;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894
895 err = mmc_wait_for_cmd(host, &cmd, CMD_RETRIES);
896 if (err != MMC_ERR_NONE) {
897 mmc_card_set_dead(card);
898 continue;
899 }
900
901 memcpy(card->raw_csd, cmd.resp, sizeof(card->raw_csd));
902
903 mmc_decode_csd(card);
904 mmc_decode_cid(card);
905 }
906}
907
Pierre Ossmanb57c43a2005-09-06 15:18:53 -0700908static void mmc_read_scrs(struct mmc_host *host)
909{
910 int err;
911 struct mmc_card *card;
912
913 struct mmc_request mrq;
914 struct mmc_command cmd;
915 struct mmc_data data;
916
917 struct scatterlist sg;
918
919 list_for_each_entry(card, &host->cards, node) {
920 if (card->state & (MMC_STATE_DEAD|MMC_STATE_PRESENT))
921 continue;
922 if (!mmc_card_sd(card))
923 continue;
924
925 err = mmc_select_card(host, card);
926 if (err != MMC_ERR_NONE) {
927 mmc_card_set_dead(card);
928 continue;
929 }
930
931 memset(&cmd, 0, sizeof(struct mmc_command));
932
933 cmd.opcode = MMC_APP_CMD;
934 cmd.arg = card->rca << 16;
Russell Kinge9225172006-02-02 12:23:12 +0000935 cmd.flags = MMC_RSP_R1 | MMC_CMD_AC;
Pierre Ossmanb57c43a2005-09-06 15:18:53 -0700936
937 err = mmc_wait_for_cmd(host, &cmd, 0);
938 if ((err != MMC_ERR_NONE) || !(cmd.resp[0] & R1_APP_CMD)) {
939 mmc_card_set_dead(card);
940 continue;
941 }
942
943 memset(&cmd, 0, sizeof(struct mmc_command));
944
945 cmd.opcode = SD_APP_SEND_SCR;
946 cmd.arg = 0;
Russell Kinge9225172006-02-02 12:23:12 +0000947 cmd.flags = MMC_RSP_R1 | MMC_CMD_ADTC;
Pierre Ossmanb57c43a2005-09-06 15:18:53 -0700948
949 memset(&data, 0, sizeof(struct mmc_data));
950
951 data.timeout_ns = card->csd.tacc_ns * 10;
952 data.timeout_clks = card->csd.tacc_clks * 10;
953 data.blksz_bits = 3;
Pavel Pisa2c171bf2006-05-19 21:48:03 +0100954 data.blksz = 1 << 3;
Pierre Ossmanb57c43a2005-09-06 15:18:53 -0700955 data.blocks = 1;
956 data.flags = MMC_DATA_READ;
957 data.sg = &sg;
958 data.sg_len = 1;
959
960 memset(&mrq, 0, sizeof(struct mmc_request));
961
962 mrq.cmd = &cmd;
963 mrq.data = &data;
964
965 sg_init_one(&sg, (u8*)card->raw_scr, 8);
966
Pierre Ossmane781de42005-12-05 10:00:50 +0000967 mmc_wait_for_req(host, &mrq);
968
969 if (cmd.error != MMC_ERR_NONE || data.error != MMC_ERR_NONE) {
Pierre Ossmanb57c43a2005-09-06 15:18:53 -0700970 mmc_card_set_dead(card);
971 continue;
972 }
973
974 card->raw_scr[0] = ntohl(card->raw_scr[0]);
975 card->raw_scr[1] = ntohl(card->raw_scr[1]);
976
977 mmc_decode_scr(card);
978 }
979
980 mmc_deselect_cards(host);
981}
982
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983static unsigned int mmc_calculate_clock(struct mmc_host *host)
984{
985 struct mmc_card *card;
986 unsigned int max_dtr = host->f_max;
987
988 list_for_each_entry(card, &host->cards, node)
989 if (!mmc_card_dead(card) && max_dtr > card->csd.max_dtr)
990 max_dtr = card->csd.max_dtr;
991
Russell King920e70c2006-05-04 18:22:51 +0100992 pr_debug("%s: selected %d.%03dMHz transfer rate\n",
993 mmc_hostname(host),
Russell Kingc6563172006-03-29 09:30:20 +0100994 max_dtr / 1000000, (max_dtr / 1000) % 1000);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
996 return max_dtr;
997}
998
999/*
1000 * Check whether cards we already know about are still present.
1001 * We do this by requesting status, and checking whether a card
1002 * responds.
1003 *
1004 * A request for status does not cause a state change in data
1005 * transfer mode.
1006 */
1007static void mmc_check_cards(struct mmc_host *host)
1008{
1009 struct list_head *l, *n;
1010
1011 mmc_deselect_cards(host);
1012
1013 list_for_each_safe(l, n, &host->cards) {
1014 struct mmc_card *card = mmc_list_to_card(l);
1015 struct mmc_command cmd;
1016 int err;
1017
1018 cmd.opcode = MMC_SEND_STATUS;
1019 cmd.arg = card->rca << 16;
Russell Kinge9225172006-02-02 12:23:12 +00001020 cmd.flags = MMC_RSP_R1 | MMC_CMD_AC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021
1022 err = mmc_wait_for_cmd(host, &cmd, CMD_RETRIES);
1023 if (err == MMC_ERR_NONE)
1024 continue;
1025
1026 mmc_card_set_dead(card);
1027 }
1028}
1029
1030static void mmc_setup(struct mmc_host *host)
1031{
1032 if (host->ios.power_mode != MMC_POWER_ON) {
1033 int err;
1034 u32 ocr;
1035
Pierre Ossmana00fc092005-09-06 15:18:52 -07001036 host->mode = MMC_MODE_SD;
Pierre Ossman335eadf2005-09-06 15:18:50 -07001037
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 mmc_power_up(host);
1039 mmc_idle_cards(host);
1040
Pierre Ossmana00fc092005-09-06 15:18:52 -07001041 err = mmc_send_app_op_cond(host, 0, &ocr);
Pierre Ossman335eadf2005-09-06 15:18:50 -07001042
1043 /*
Pierre Ossmana00fc092005-09-06 15:18:52 -07001044 * If we fail to detect any SD cards then try
1045 * searching for MMC cards.
Pierre Ossman335eadf2005-09-06 15:18:50 -07001046 */
Pierre Ossmana00fc092005-09-06 15:18:52 -07001047 if (err != MMC_ERR_NONE) {
1048 host->mode = MMC_MODE_MMC;
1049
1050 err = mmc_send_op_cond(host, 0, &ocr);
Pierre Ossman335eadf2005-09-06 15:18:50 -07001051 if (err != MMC_ERR_NONE)
1052 return;
Pierre Ossman335eadf2005-09-06 15:18:50 -07001053 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054
1055 host->ocr = mmc_select_voltage(host, ocr);
1056
1057 /*
1058 * Since we're changing the OCR value, we seem to
1059 * need to tell some cards to go back to the idle
1060 * state. We wait 1ms to give cards time to
1061 * respond.
1062 */
1063 if (host->ocr)
1064 mmc_idle_cards(host);
1065 } else {
1066 host->ios.bus_mode = MMC_BUSMODE_OPENDRAIN;
1067 host->ios.clock = host->f_min;
Russell King920e70c2006-05-04 18:22:51 +01001068 mmc_set_ios(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069
1070 /*
1071 * We should remember the OCR mask from the existing
1072 * cards, and detect the new cards OCR mask, combine
1073 * the two and re-select the VDD. However, if we do
1074 * change VDD, we should do an idle, and then do a
1075 * full re-initialisation. We would need to notify
1076 * drivers so that they can re-setup the cards as
1077 * well, while keeping their queues at bay.
1078 *
1079 * For the moment, we take the easy way out - if the
1080 * new cards don't like our currently selected VDD,
1081 * they drop off the bus.
1082 */
1083 }
1084
1085 if (host->ocr == 0)
1086 return;
1087
1088 /*
1089 * Send the selected OCR multiple times... until the cards
1090 * all get the idea that they should be ready for CMD2.
1091 * (My SanDisk card seems to need this.)
1092 */
Pierre Ossman335eadf2005-09-06 15:18:50 -07001093 if (host->mode == MMC_MODE_SD)
1094 mmc_send_app_op_cond(host, host->ocr, NULL);
1095 else
1096 mmc_send_op_cond(host, host->ocr, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097
1098 mmc_discover_cards(host);
1099
1100 /*
1101 * Ok, now switch to push-pull mode.
1102 */
1103 host->ios.bus_mode = MMC_BUSMODE_PUSHPULL;
Russell King920e70c2006-05-04 18:22:51 +01001104 mmc_set_ios(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105
1106 mmc_read_csds(host);
Pierre Ossmanb57c43a2005-09-06 15:18:53 -07001107
1108 if (host->mode == MMC_MODE_SD)
1109 mmc_read_scrs(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110}
1111
1112
1113/**
1114 * mmc_detect_change - process change of state on a MMC socket
1115 * @host: host which changed state.
Richard Purdie8dc00332005-09-08 17:53:01 +01001116 * @delay: optional delay to wait before detection (jiffies)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 *
1118 * All we know is that card(s) have been inserted or removed
1119 * from the socket(s). We don't know which socket or cards.
1120 */
Richard Purdie8dc00332005-09-08 17:53:01 +01001121void mmc_detect_change(struct mmc_host *host, unsigned long delay)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122{
Richard Purdie8dc00332005-09-08 17:53:01 +01001123 if (delay)
1124 schedule_delayed_work(&host->detect, delay);
1125 else
1126 schedule_work(&host->detect);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127}
1128
1129EXPORT_SYMBOL(mmc_detect_change);
1130
1131
1132static void mmc_rescan(void *data)
1133{
1134 struct mmc_host *host = data;
1135 struct list_head *l, *n;
1136
1137 mmc_claim_host(host);
1138
1139 if (host->ios.power_mode == MMC_POWER_ON)
1140 mmc_check_cards(host);
1141
1142 mmc_setup(host);
1143
1144 if (!list_empty(&host->cards)) {
1145 /*
1146 * (Re-)calculate the fastest clock rate which the
1147 * attached cards and the host support.
1148 */
1149 host->ios.clock = mmc_calculate_clock(host);
Russell King920e70c2006-05-04 18:22:51 +01001150 mmc_set_ios(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 }
1152
1153 mmc_release_host(host);
1154
1155 list_for_each_safe(l, n, &host->cards) {
1156 struct mmc_card *card = mmc_list_to_card(l);
1157
1158 /*
1159 * If this is a new and good card, register it.
1160 */
1161 if (!mmc_card_present(card) && !mmc_card_dead(card)) {
1162 if (mmc_register_card(card))
1163 mmc_card_set_dead(card);
1164 else
1165 mmc_card_set_present(card);
1166 }
1167
1168 /*
1169 * If this card is dead, destroy it.
1170 */
1171 if (mmc_card_dead(card)) {
1172 list_del(&card->node);
1173 mmc_remove_card(card);
1174 }
1175 }
1176
1177 /*
1178 * If we discover that there are no cards on the
1179 * bus, turn off the clock and power down.
1180 */
1181 if (list_empty(&host->cards))
1182 mmc_power_off(host);
1183}
1184
1185
1186/**
1187 * mmc_alloc_host - initialise the per-host structure.
1188 * @extra: sizeof private data structure
1189 * @dev: pointer to host device model structure
1190 *
1191 * Initialise the per-host structure.
1192 */
1193struct mmc_host *mmc_alloc_host(int extra, struct device *dev)
1194{
1195 struct mmc_host *host;
1196
Russell King00b137c2005-08-19 09:41:24 +01001197 host = mmc_alloc_host_sysfs(extra, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 if (host) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199 spin_lock_init(&host->lock);
1200 init_waitqueue_head(&host->wq);
1201 INIT_LIST_HEAD(&host->cards);
1202 INIT_WORK(&host->detect, mmc_rescan, host);
1203
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 /*
1205 * By default, hosts do not support SGIO or large requests.
1206 * They have to set these according to their abilities.
1207 */
1208 host->max_hw_segs = 1;
1209 host->max_phys_segs = 1;
1210 host->max_sectors = 1 << (PAGE_CACHE_SHIFT - 9);
1211 host->max_seg_size = PAGE_CACHE_SIZE;
1212 }
1213
1214 return host;
1215}
1216
1217EXPORT_SYMBOL(mmc_alloc_host);
1218
1219/**
1220 * mmc_add_host - initialise host hardware
1221 * @host: mmc host
1222 */
1223int mmc_add_host(struct mmc_host *host)
1224{
Russell King00b137c2005-08-19 09:41:24 +01001225 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226
Russell King00b137c2005-08-19 09:41:24 +01001227 ret = mmc_add_host_sysfs(host);
1228 if (ret == 0) {
1229 mmc_power_off(host);
Richard Purdie8dc00332005-09-08 17:53:01 +01001230 mmc_detect_change(host, 0);
Russell King00b137c2005-08-19 09:41:24 +01001231 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
Russell King00b137c2005-08-19 09:41:24 +01001233 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234}
1235
1236EXPORT_SYMBOL(mmc_add_host);
1237
1238/**
1239 * mmc_remove_host - remove host hardware
1240 * @host: mmc host
1241 *
1242 * Unregister and remove all cards associated with this host,
1243 * and power down the MMC bus.
1244 */
1245void mmc_remove_host(struct mmc_host *host)
1246{
1247 struct list_head *l, *n;
1248
1249 list_for_each_safe(l, n, &host->cards) {
1250 struct mmc_card *card = mmc_list_to_card(l);
1251
1252 mmc_remove_card(card);
1253 }
1254
1255 mmc_power_off(host);
Russell King00b137c2005-08-19 09:41:24 +01001256 mmc_remove_host_sysfs(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257}
1258
1259EXPORT_SYMBOL(mmc_remove_host);
1260
1261/**
1262 * mmc_free_host - free the host structure
1263 * @host: mmc host
1264 *
1265 * Free the host once all references to it have been dropped.
1266 */
1267void mmc_free_host(struct mmc_host *host)
1268{
1269 flush_scheduled_work();
Russell King00b137c2005-08-19 09:41:24 +01001270 mmc_free_host_sysfs(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271}
1272
1273EXPORT_SYMBOL(mmc_free_host);
1274
1275#ifdef CONFIG_PM
1276
1277/**
1278 * mmc_suspend_host - suspend a host
1279 * @host: mmc host
1280 * @state: suspend mode (PM_SUSPEND_xxx)
1281 */
Pavel Macheke5378ca2005-04-16 15:25:29 -07001282int mmc_suspend_host(struct mmc_host *host, pm_message_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283{
1284 mmc_claim_host(host);
1285 mmc_deselect_cards(host);
1286 mmc_power_off(host);
1287 mmc_release_host(host);
1288
1289 return 0;
1290}
1291
1292EXPORT_SYMBOL(mmc_suspend_host);
1293
1294/**
1295 * mmc_resume_host - resume a previously suspended host
1296 * @host: mmc host
1297 */
1298int mmc_resume_host(struct mmc_host *host)
1299{
Uli Luckas896937a2005-11-07 21:22:07 +00001300 mmc_rescan(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301
1302 return 0;
1303}
1304
1305EXPORT_SYMBOL(mmc_resume_host);
1306
1307#endif
1308
1309MODULE_LICENSE("GPL");