blob: dc129f79c2b7fbe369001b44a796b2fd5f3b367f [file] [log] [blame]
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001/*
Pierre Ossman70f10482007-07-11 20:04:50 +02002 * linux/drivers/mmc/core/sd.c
Pierre Ossman7ea239d2006-12-31 00:11:32 +01003 *
4 * Copyright (C) 2003-2004 Russell King, All Rights Reserved.
5 * SD support Copyright (C) 2004 Ian Molton, All Rights Reserved.
6 * Copyright (C) 2005-2007 Pierre Ossman, All Rights Reserved.
7 *
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
13#include <linux/err.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/slab.h>
Paul Gortmaker0205a902011-07-15 12:01:27 -040015#include <linux/stat.h>
Pierre Ossman7ea239d2006-12-31 00:11:32 +010016
17#include <linux/mmc/host.h>
18#include <linux/mmc/card.h>
19#include <linux/mmc/mmc.h>
Pierre Ossman3373c0a2007-05-31 22:25:11 +020020#include <linux/mmc/sd.h>
Asutosh Dasbbc84782013-02-11 15:31:35 +053021#include <linux/pm_runtime.h>
Pierre Ossman7ea239d2006-12-31 00:11:32 +010022
23#include "core.h"
Pierre Ossman4101c162007-05-19 13:39:01 +020024#include "bus.h"
Pierre Ossman7ea239d2006-12-31 00:11:32 +010025#include "mmc_ops.h"
Mark Brownce101492011-02-10 10:58:37 +000026#include "sd.h"
Pierre Ossman7ea239d2006-12-31 00:11:32 +010027#include "sd_ops.h"
28
Pierre Ossman7ea239d2006-12-31 00:11:32 +010029static const unsigned int tran_exp[] = {
30 10000, 100000, 1000000, 10000000,
31 0, 0, 0, 0
32};
33
34static const unsigned char tran_mant[] = {
35 0, 10, 12, 13, 15, 20, 25, 30,
36 35, 40, 45, 50, 55, 60, 70, 80,
37};
38
39static const unsigned int tacc_exp[] = {
40 1, 10, 100, 1000, 10000, 100000, 1000000, 10000000,
41};
42
43static const unsigned int tacc_mant[] = {
44 0, 10, 12, 13, 15, 20, 25, 30,
45 35, 40, 45, 50, 55, 60, 70, 80,
46};
47
48#define UNSTUFF_BITS(resp,start,size) \
49 ({ \
50 const int __size = size; \
51 const u32 __mask = (__size < 32 ? 1 << __size : 0) - 1; \
52 const int __off = 3 - ((start) / 32); \
53 const int __shft = (start) & 31; \
54 u32 __res; \
55 \
56 __res = resp[__off] >> __shft; \
57 if (__size + __shft > 32) \
58 __res |= resp[__off-1] << ((32 - __shft) % 32); \
59 __res & __mask; \
60 })
61
62/*
63 * Given the decoded CSD structure, decode the raw CID to our CID structure.
64 */
Michal Miroslaw71578a12010-08-10 18:01:40 -070065void mmc_decode_cid(struct mmc_card *card)
Pierre Ossman7ea239d2006-12-31 00:11:32 +010066{
67 u32 *resp = card->raw_cid;
68
69 memset(&card->cid, 0, sizeof(struct mmc_cid));
70
71 /*
72 * SD doesn't currently have a version field so we will
73 * have to assume we can parse this.
74 */
75 card->cid.manfid = UNSTUFF_BITS(resp, 120, 8);
76 card->cid.oemid = UNSTUFF_BITS(resp, 104, 16);
77 card->cid.prod_name[0] = UNSTUFF_BITS(resp, 96, 8);
78 card->cid.prod_name[1] = UNSTUFF_BITS(resp, 88, 8);
79 card->cid.prod_name[2] = UNSTUFF_BITS(resp, 80, 8);
80 card->cid.prod_name[3] = UNSTUFF_BITS(resp, 72, 8);
81 card->cid.prod_name[4] = UNSTUFF_BITS(resp, 64, 8);
82 card->cid.hwrev = UNSTUFF_BITS(resp, 60, 4);
83 card->cid.fwrev = UNSTUFF_BITS(resp, 56, 4);
84 card->cid.serial = UNSTUFF_BITS(resp, 24, 32);
85 card->cid.year = UNSTUFF_BITS(resp, 12, 8);
86 card->cid.month = UNSTUFF_BITS(resp, 8, 4);
87
88 card->cid.year += 2000; /* SD cards year offset */
89}
90
91/*
92 * Given a 128-bit response, decode to our card CSD structure.
93 */
Pierre Ossmanbd766312007-05-01 16:11:57 +020094static int mmc_decode_csd(struct mmc_card *card)
Pierre Ossman7ea239d2006-12-31 00:11:32 +010095{
96 struct mmc_csd *csd = &card->csd;
97 unsigned int e, m, csd_struct;
98 u32 *resp = card->raw_csd;
99
100 csd_struct = UNSTUFF_BITS(resp, 126, 2);
101
102 switch (csd_struct) {
103 case 0:
104 m = UNSTUFF_BITS(resp, 115, 4);
105 e = UNSTUFF_BITS(resp, 112, 3);
106 csd->tacc_ns = (tacc_exp[e] * tacc_mant[m] + 9) / 10;
107 csd->tacc_clks = UNSTUFF_BITS(resp, 104, 8) * 100;
108
109 m = UNSTUFF_BITS(resp, 99, 4);
110 e = UNSTUFF_BITS(resp, 96, 3);
111 csd->max_dtr = tran_exp[e] * tran_mant[m];
112 csd->cmdclass = UNSTUFF_BITS(resp, 84, 12);
113
114 e = UNSTUFF_BITS(resp, 47, 3);
115 m = UNSTUFF_BITS(resp, 62, 12);
116 csd->capacity = (1 + m) << (e + 2);
117
118 csd->read_blkbits = UNSTUFF_BITS(resp, 80, 4);
119 csd->read_partial = UNSTUFF_BITS(resp, 79, 1);
120 csd->write_misalign = UNSTUFF_BITS(resp, 78, 1);
121 csd->read_misalign = UNSTUFF_BITS(resp, 77, 1);
122 csd->r2w_factor = UNSTUFF_BITS(resp, 26, 3);
123 csd->write_blkbits = UNSTUFF_BITS(resp, 22, 4);
124 csd->write_partial = UNSTUFF_BITS(resp, 21, 1);
Adrian Hunterdfe86cb2010-08-11 14:17:46 -0700125
126 if (UNSTUFF_BITS(resp, 46, 1)) {
127 csd->erase_size = 1;
128 } else if (csd->write_blkbits >= 9) {
129 csd->erase_size = UNSTUFF_BITS(resp, 39, 7) + 1;
130 csd->erase_size <<= csd->write_blkbits - 9;
131 }
Pierre Ossman7ea239d2006-12-31 00:11:32 +0100132 break;
133 case 1:
134 /*
Arindam Nath3a303512011-05-05 12:19:03 +0530135 * This is a block-addressed SDHC or SDXC card. Most
Pierre Ossman7ea239d2006-12-31 00:11:32 +0100136 * interesting fields are unused and have fixed
137 * values. To avoid getting tripped by buggy cards,
138 * we assume those fixed values ourselves.
139 */
140 mmc_card_set_blockaddr(card);
141
142 csd->tacc_ns = 0; /* Unused */
143 csd->tacc_clks = 0; /* Unused */
144
145 m = UNSTUFF_BITS(resp, 99, 4);
146 e = UNSTUFF_BITS(resp, 96, 3);
147 csd->max_dtr = tran_exp[e] * tran_mant[m];
148 csd->cmdclass = UNSTUFF_BITS(resp, 84, 12);
Arindam Nath3a303512011-05-05 12:19:03 +0530149 csd->c_size = UNSTUFF_BITS(resp, 48, 22);
150
151 /* SDXC cards have a minimum C_SIZE of 0x00FFFF */
152 if (csd->c_size >= 0xFFFF)
153 mmc_card_set_ext_capacity(card);
Pierre Ossman7ea239d2006-12-31 00:11:32 +0100154
155 m = UNSTUFF_BITS(resp, 48, 22);
156 csd->capacity = (1 + m) << 10;
157
158 csd->read_blkbits = 9;
159 csd->read_partial = 0;
160 csd->write_misalign = 0;
161 csd->read_misalign = 0;
162 csd->r2w_factor = 4; /* Unused */
163 csd->write_blkbits = 9;
164 csd->write_partial = 0;
Adrian Hunterdfe86cb2010-08-11 14:17:46 -0700165 csd->erase_size = 1;
Pierre Ossman7ea239d2006-12-31 00:11:32 +0100166 break;
167 default:
Girish K Sa3c76eb2011-10-11 11:44:09 +0530168 pr_err("%s: unrecognised CSD structure version %d\n",
Pierre Ossman7ea239d2006-12-31 00:11:32 +0100169 mmc_hostname(card->host), csd_struct);
Pierre Ossmanbd766312007-05-01 16:11:57 +0200170 return -EINVAL;
Pierre Ossman7ea239d2006-12-31 00:11:32 +0100171 }
Pierre Ossmanbd766312007-05-01 16:11:57 +0200172
Adrian Hunterdfe86cb2010-08-11 14:17:46 -0700173 card->erase_size = csd->erase_size;
174
Pierre Ossmanbd766312007-05-01 16:11:57 +0200175 return 0;
Pierre Ossman7ea239d2006-12-31 00:11:32 +0100176}
177
178/*
179 * Given a 64-bit response, decode to our card SCR structure.
180 */
Pierre Ossmanbd766312007-05-01 16:11:57 +0200181static int mmc_decode_scr(struct mmc_card *card)
Pierre Ossman7ea239d2006-12-31 00:11:32 +0100182{
183 struct sd_scr *scr = &card->scr;
184 unsigned int scr_struct;
185 u32 resp[4];
186
Pierre Ossman7ea239d2006-12-31 00:11:32 +0100187 resp[3] = card->raw_scr[1];
188 resp[2] = card->raw_scr[0];
189
190 scr_struct = UNSTUFF_BITS(resp, 60, 4);
191 if (scr_struct != 0) {
Girish K Sa3c76eb2011-10-11 11:44:09 +0530192 pr_err("%s: unrecognised SCR structure version %d\n",
Pierre Ossman7ea239d2006-12-31 00:11:32 +0100193 mmc_hostname(card->host), scr_struct);
Pierre Ossmanbd766312007-05-01 16:11:57 +0200194 return -EINVAL;
Pierre Ossman7ea239d2006-12-31 00:11:32 +0100195 }
196
197 scr->sda_vsn = UNSTUFF_BITS(resp, 56, 4);
198 scr->bus_widths = UNSTUFF_BITS(resp, 48, 4);
Arindam Nath013909c2011-05-05 12:18:58 +0530199 if (scr->sda_vsn == SCR_SPEC_VER_2)
200 /* Check if Physical Layer Spec v3.0 is supported */
201 scr->sda_spec3 = UNSTUFF_BITS(resp, 47, 1);
Pierre Ossmanbd766312007-05-01 16:11:57 +0200202
Adrian Hunterdfe86cb2010-08-11 14:17:46 -0700203 if (UNSTUFF_BITS(resp, 55, 1))
204 card->erased_byte = 0xFF;
205 else
206 card->erased_byte = 0x0;
207
Andrei Warkentinf0d89972011-05-23 15:06:38 -0500208 if (scr->sda_spec3)
209 scr->cmds = UNSTUFF_BITS(resp, 32, 2);
Pierre Ossmanbd766312007-05-01 16:11:57 +0200210 return 0;
Pierre Ossman7ea239d2006-12-31 00:11:32 +0100211}
212
213/*
Adrian Hunterdfe86cb2010-08-11 14:17:46 -0700214 * Fetch and process SD Status register.
215 */
216static int mmc_read_ssr(struct mmc_card *card)
217{
218 unsigned int au, es, et, eo;
219 int err, i;
220 u32 *ssr;
221
222 if (!(card->csd.cmdclass & CCC_APP_SPEC)) {
Girish K Sa3c76eb2011-10-11 11:44:09 +0530223 pr_warning("%s: card lacks mandatory SD Status "
Adrian Hunterdfe86cb2010-08-11 14:17:46 -0700224 "function.\n", mmc_hostname(card->host));
225 return 0;
226 }
227
228 ssr = kmalloc(64, GFP_KERNEL);
229 if (!ssr)
230 return -ENOMEM;
231
232 err = mmc_app_sd_status(card, ssr);
233 if (err) {
Girish K Sa3c76eb2011-10-11 11:44:09 +0530234 pr_warning("%s: problem reading SD Status "
Adrian Hunterdfe86cb2010-08-11 14:17:46 -0700235 "register.\n", mmc_hostname(card->host));
236 err = 0;
237 goto out;
238 }
239
240 for (i = 0; i < 16; i++)
241 ssr[i] = be32_to_cpu(ssr[i]);
242
243 /*
244 * UNSTUFF_BITS only works with four u32s so we have to offset the
245 * bitfield positions accordingly.
246 */
247 au = UNSTUFF_BITS(ssr, 428 - 384, 4);
248 if (au > 0 || au <= 9) {
249 card->ssr.au = 1 << (au + 4);
250 es = UNSTUFF_BITS(ssr, 408 - 384, 16);
251 et = UNSTUFF_BITS(ssr, 402 - 384, 6);
252 eo = UNSTUFF_BITS(ssr, 400 - 384, 2);
253 if (es && et) {
254 card->ssr.erase_timeout = (et * 1000) / es;
255 card->ssr.erase_offset = eo * 1000;
256 }
257 } else {
Girish K Sa3c76eb2011-10-11 11:44:09 +0530258 pr_warning("%s: SD Status: Invalid Allocation Unit "
Adrian Hunterdfe86cb2010-08-11 14:17:46 -0700259 "size.\n", mmc_hostname(card->host));
260 }
261out:
262 kfree(ssr);
263 return err;
264}
265
266/*
Pierre Ossman1addfcd2007-05-01 14:46:08 +0200267 * Fetches and decodes switch information
Pierre Ossman7ea239d2006-12-31 00:11:32 +0100268 */
Pierre Ossman1addfcd2007-05-01 14:46:08 +0200269static int mmc_read_switch(struct mmc_card *card)
Pierre Ossman7ea239d2006-12-31 00:11:32 +0100270{
271 int err;
272 u8 *status;
273
Pierre Ossman3373c0a2007-05-31 22:25:11 +0200274 if (card->scr.sda_vsn < SCR_SPEC_VER_1)
Pierre Ossman17b04292007-07-22 22:18:46 +0200275 return 0;
Pierre Ossman3373c0a2007-05-31 22:25:11 +0200276
277 if (!(card->csd.cmdclass & CCC_SWITCH)) {
Girish K Sa3c76eb2011-10-11 11:44:09 +0530278 pr_warning("%s: card lacks mandatory switch "
Pierre Ossman3373c0a2007-05-31 22:25:11 +0200279 "function, performance might suffer.\n",
280 mmc_hostname(card->host));
Pierre Ossman17b04292007-07-22 22:18:46 +0200281 return 0;
Pierre Ossman3373c0a2007-05-31 22:25:11 +0200282 }
283
Pierre Ossman17b04292007-07-22 22:18:46 +0200284 err = -EIO;
Pierre Ossman7ea239d2006-12-31 00:11:32 +0100285
286 status = kmalloc(64, GFP_KERNEL);
287 if (!status) {
Girish K Sa3c76eb2011-10-11 11:44:09 +0530288 pr_err("%s: could not allocate a buffer for "
Arindam Nath013909c2011-05-05 12:18:58 +0530289 "switch capabilities.\n",
290 mmc_hostname(card->host));
Pierre Ossman17b04292007-07-22 22:18:46 +0200291 return -ENOMEM;
Pierre Ossman7ea239d2006-12-31 00:11:32 +0100292 }
293
Arindam Nath013909c2011-05-05 12:18:58 +0530294 /* Find out the supported Bus Speed Modes. */
Pierre Ossman7ea239d2006-12-31 00:11:32 +0100295 err = mmc_sd_switch(card, 0, 0, 1, status);
Pierre Ossman17b04292007-07-22 22:18:46 +0200296 if (err) {
Arindam Nath013909c2011-05-05 12:18:58 +0530297 /*
298 * If the host or the card can't do the switch,
299 * fail more gracefully.
300 */
301 if (err != -EINVAL && err != -ENOSYS && err != -EFAULT)
Pierre Ossmanadf66a02007-07-22 23:08:30 +0200302 goto out;
303
Girish K Sa3c76eb2011-10-11 11:44:09 +0530304 pr_warning("%s: problem reading Bus Speed modes.\n",
Pierre Ossman3373c0a2007-05-31 22:25:11 +0200305 mmc_hostname(card->host));
Pierre Ossman17b04292007-07-22 22:18:46 +0200306 err = 0;
Pierre Ossmanadf66a02007-07-22 23:08:30 +0200307
Pierre Ossman7ea239d2006-12-31 00:11:32 +0100308 goto out;
309 }
310
Qiang Liufffe5d52011-11-08 08:43:08 -0500311 if (status[13] & SD_MODE_HIGH_SPEED)
312 card->sw_caps.hs_max_dtr = HIGH_SPEED_MAX_DTR;
Subhash Jadavanif2815f62011-08-10 11:16:01 +0530313
Arindam Nath013909c2011-05-05 12:18:58 +0530314 if (card->scr.sda_spec3) {
315 card->sw_caps.sd3_bus_mode = status[13];
316
317 /* Find out Driver Strengths supported by the card */
318 err = mmc_sd_switch(card, 0, 2, 1, status);
319 if (err) {
320 /*
321 * If the host or the card can't do the switch,
322 * fail more gracefully.
323 */
324 if (err != -EINVAL && err != -ENOSYS && err != -EFAULT)
325 goto out;
326
Girish K Sa3c76eb2011-10-11 11:44:09 +0530327 pr_warning("%s: problem reading "
Arindam Nath013909c2011-05-05 12:18:58 +0530328 "Driver Strength.\n",
329 mmc_hostname(card->host));
330 err = 0;
331
332 goto out;
333 }
334
335 card->sw_caps.sd3_drv_type = status[9];
336
337 /* Find out Current Limits supported by the card */
338 err = mmc_sd_switch(card, 0, 3, 1, status);
339 if (err) {
340 /*
341 * If the host or the card can't do the switch,
342 * fail more gracefully.
343 */
344 if (err != -EINVAL && err != -ENOSYS && err != -EFAULT)
345 goto out;
346
Girish K Sa3c76eb2011-10-11 11:44:09 +0530347 pr_warning("%s: problem reading "
Arindam Nath013909c2011-05-05 12:18:58 +0530348 "Current Limit.\n",
349 mmc_hostname(card->host));
350 err = 0;
351
352 goto out;
353 }
354
355 card->sw_caps.sd3_curr_limit = status[7];
Arindam Nath013909c2011-05-05 12:18:58 +0530356 }
Pierre Ossman7ea239d2006-12-31 00:11:32 +0100357
Pierre Ossman1addfcd2007-05-01 14:46:08 +0200358out:
359 kfree(status);
360
361 return err;
362}
363
364/*
365 * Test if the card supports high-speed mode and, if so, switch to it.
366 */
Michal Miroslaw71578a12010-08-10 18:01:40 -0700367int mmc_sd_switch_hs(struct mmc_card *card)
Pierre Ossman1addfcd2007-05-01 14:46:08 +0200368{
369 int err;
370 u8 *status;
371
Pierre Ossman3373c0a2007-05-31 22:25:11 +0200372 if (card->scr.sda_vsn < SCR_SPEC_VER_1)
Pierre Ossman17b04292007-07-22 22:18:46 +0200373 return 0;
Pierre Ossman3373c0a2007-05-31 22:25:11 +0200374
375 if (!(card->csd.cmdclass & CCC_SWITCH))
Pierre Ossman17b04292007-07-22 22:18:46 +0200376 return 0;
Pierre Ossman3373c0a2007-05-31 22:25:11 +0200377
Pierre Ossman1addfcd2007-05-01 14:46:08 +0200378 if (!(card->host->caps & MMC_CAP_SD_HIGHSPEED))
Pierre Ossman17b04292007-07-22 22:18:46 +0200379 return 0;
Pierre Ossman1addfcd2007-05-01 14:46:08 +0200380
381 if (card->sw_caps.hs_max_dtr == 0)
Pierre Ossman17b04292007-07-22 22:18:46 +0200382 return 0;
Pierre Ossman1addfcd2007-05-01 14:46:08 +0200383
Pierre Ossman17b04292007-07-22 22:18:46 +0200384 err = -EIO;
Pierre Ossman1addfcd2007-05-01 14:46:08 +0200385
386 status = kmalloc(64, GFP_KERNEL);
387 if (!status) {
Girish K Sa3c76eb2011-10-11 11:44:09 +0530388 pr_err("%s: could not allocate a buffer for "
Pierre Ossmanfacba912007-07-24 21:53:43 +0200389 "switch capabilities.\n", mmc_hostname(card->host));
Pierre Ossman17b04292007-07-22 22:18:46 +0200390 return -ENOMEM;
Pierre Ossman1addfcd2007-05-01 14:46:08 +0200391 }
392
Pierre Ossman7ea239d2006-12-31 00:11:32 +0100393 err = mmc_sd_switch(card, 1, 0, 1, status);
Pierre Ossman17b04292007-07-22 22:18:46 +0200394 if (err)
Pierre Ossman7ea239d2006-12-31 00:11:32 +0100395 goto out;
396
397 if ((status[16] & 0xF) != 1) {
Girish K Sa3c76eb2011-10-11 11:44:09 +0530398 pr_warning("%s: Problem switching card "
Pierre Ossman7ea239d2006-12-31 00:11:32 +0100399 "into high-speed mode!\n",
400 mmc_hostname(card->host));
Michal Miroslaw71578a12010-08-10 18:01:40 -0700401 err = 0;
Pierre Ossman7ea239d2006-12-31 00:11:32 +0100402 } else {
Michal Miroslaw71578a12010-08-10 18:01:40 -0700403 err = 1;
Pierre Ossman7ea239d2006-12-31 00:11:32 +0100404 }
405
406out:
407 kfree(status);
408
409 return err;
410}
411
Arindam Nathd6d50a12011-05-05 12:18:59 +0530412static int sd_select_driver_type(struct mmc_card *card, u8 *status)
413{
Philip Rakityca8e99b2011-07-06 08:51:32 -0700414 int host_drv_type = SD_DRIVER_TYPE_B;
415 int card_drv_type = SD_DRIVER_TYPE_B;
416 int drive_strength;
Arindam Nathd6d50a12011-05-05 12:18:59 +0530417 int err;
418
419 /*
420 * If the host doesn't support any of the Driver Types A,C or D,
Philip Rakityca8e99b2011-07-06 08:51:32 -0700421 * or there is no board specific handler then default Driver
422 * Type B is used.
Arindam Nathd6d50a12011-05-05 12:18:59 +0530423 */
424 if (!(card->host->caps & (MMC_CAP_DRIVER_TYPE_A | MMC_CAP_DRIVER_TYPE_C
425 | MMC_CAP_DRIVER_TYPE_D)))
426 return 0;
427
Philip Rakityca8e99b2011-07-06 08:51:32 -0700428 if (!card->host->ops->select_drive_strength)
429 return 0;
Arindam Nathd6d50a12011-05-05 12:18:59 +0530430
Philip Rakityca8e99b2011-07-06 08:51:32 -0700431 if (card->host->caps & MMC_CAP_DRIVER_TYPE_A)
432 host_drv_type |= SD_DRIVER_TYPE_A;
433
434 if (card->host->caps & MMC_CAP_DRIVER_TYPE_C)
435 host_drv_type |= SD_DRIVER_TYPE_C;
436
437 if (card->host->caps & MMC_CAP_DRIVER_TYPE_D)
438 host_drv_type |= SD_DRIVER_TYPE_D;
439
440 if (card->sw_caps.sd3_drv_type & SD_DRIVER_TYPE_A)
441 card_drv_type |= SD_DRIVER_TYPE_A;
442
443 if (card->sw_caps.sd3_drv_type & SD_DRIVER_TYPE_C)
444 card_drv_type |= SD_DRIVER_TYPE_C;
445
446 if (card->sw_caps.sd3_drv_type & SD_DRIVER_TYPE_D)
447 card_drv_type |= SD_DRIVER_TYPE_D;
448
449 /*
450 * The drive strength that the hardware can support
451 * depends on the board design. Pass the appropriate
452 * information and let the hardware specific code
453 * return what is possible given the options
454 */
Sujit Reddy Thumma2c4967f742012-02-04 16:14:50 -0500455 mmc_host_clk_hold(card->host);
Philip Rakityca8e99b2011-07-06 08:51:32 -0700456 drive_strength = card->host->ops->select_drive_strength(
457 card->sw_caps.uhs_max_dtr,
458 host_drv_type, card_drv_type);
Sujit Reddy Thumma2c4967f742012-02-04 16:14:50 -0500459 mmc_host_clk_release(card->host);
Philip Rakityca8e99b2011-07-06 08:51:32 -0700460
461 err = mmc_sd_switch(card, 1, 2, drive_strength, status);
Arindam Nathd6d50a12011-05-05 12:18:59 +0530462 if (err)
463 return err;
464
Philip Rakityca8e99b2011-07-06 08:51:32 -0700465 if ((status[15] & 0xF) != drive_strength) {
Girish K Sa3c76eb2011-10-11 11:44:09 +0530466 pr_warning("%s: Problem setting drive strength!\n",
Arindam Nathd6d50a12011-05-05 12:18:59 +0530467 mmc_hostname(card->host));
468 return 0;
469 }
470
Philip Rakityca8e99b2011-07-06 08:51:32 -0700471 mmc_set_driver_type(card->host, drive_strength);
Arindam Nathd6d50a12011-05-05 12:18:59 +0530472
473 return 0;
474}
475
Subhash Jadavani93c712f2011-08-09 12:19:31 +0530476static void sd_update_bus_speed_mode(struct mmc_card *card)
Arindam Nath49c468f2011-05-05 12:19:01 +0530477{
Arindam Nath49c468f2011-05-05 12:19:01 +0530478 /*
479 * If the host doesn't support any of the UHS-I modes, fallback on
480 * default speed.
481 */
482 if (!(card->host->caps & (MMC_CAP_UHS_SDR12 | MMC_CAP_UHS_SDR25 |
Subhash Jadavani93c712f2011-08-09 12:19:31 +0530483 MMC_CAP_UHS_SDR50 | MMC_CAP_UHS_SDR104 | MMC_CAP_UHS_DDR50))) {
484 card->sd_bus_speed = 0;
485 return;
486 }
Arindam Nath49c468f2011-05-05 12:19:01 +0530487
488 if ((card->host->caps & MMC_CAP_UHS_SDR104) &&
489 (card->sw_caps.sd3_bus_mode & SD_MODE_UHS_SDR104)) {
Subhash Jadavani93c712f2011-08-09 12:19:31 +0530490 card->sd_bus_speed = UHS_SDR104_BUS_SPEED;
Arindam Nath49c468f2011-05-05 12:19:01 +0530491 } else if ((card->host->caps & MMC_CAP_UHS_DDR50) &&
492 (card->sw_caps.sd3_bus_mode & SD_MODE_UHS_DDR50)) {
Subhash Jadavani93c712f2011-08-09 12:19:31 +0530493 card->sd_bus_speed = UHS_DDR50_BUS_SPEED;
Arindam Nath49c468f2011-05-05 12:19:01 +0530494 } else if ((card->host->caps & (MMC_CAP_UHS_SDR104 |
495 MMC_CAP_UHS_SDR50)) && (card->sw_caps.sd3_bus_mode &
496 SD_MODE_UHS_SDR50)) {
Subhash Jadavani93c712f2011-08-09 12:19:31 +0530497 card->sd_bus_speed = UHS_SDR50_BUS_SPEED;
Arindam Nath49c468f2011-05-05 12:19:01 +0530498 } else if ((card->host->caps & (MMC_CAP_UHS_SDR104 |
499 MMC_CAP_UHS_SDR50 | MMC_CAP_UHS_SDR25)) &&
500 (card->sw_caps.sd3_bus_mode & SD_MODE_UHS_SDR25)) {
Subhash Jadavani93c712f2011-08-09 12:19:31 +0530501 card->sd_bus_speed = UHS_SDR25_BUS_SPEED;
Arindam Nath49c468f2011-05-05 12:19:01 +0530502 } else if ((card->host->caps & (MMC_CAP_UHS_SDR104 |
503 MMC_CAP_UHS_SDR50 | MMC_CAP_UHS_SDR25 |
504 MMC_CAP_UHS_SDR12)) && (card->sw_caps.sd3_bus_mode &
505 SD_MODE_UHS_SDR12)) {
Subhash Jadavani93c712f2011-08-09 12:19:31 +0530506 card->sd_bus_speed = UHS_SDR12_BUS_SPEED;
507 }
508}
509
510static int sd_set_bus_speed_mode(struct mmc_card *card, u8 *status)
511{
512 int err;
513 unsigned int timing = 0;
514
515 switch (card->sd_bus_speed) {
516 case UHS_SDR104_BUS_SPEED:
517 timing = MMC_TIMING_UHS_SDR104;
518 card->sw_caps.uhs_max_dtr = UHS_SDR104_MAX_DTR;
519 break;
520 case UHS_DDR50_BUS_SPEED:
521 timing = MMC_TIMING_UHS_DDR50;
522 card->sw_caps.uhs_max_dtr = UHS_DDR50_MAX_DTR;
523 break;
524 case UHS_SDR50_BUS_SPEED:
525 timing = MMC_TIMING_UHS_SDR50;
526 card->sw_caps.uhs_max_dtr = UHS_SDR50_MAX_DTR;
527 break;
528 case UHS_SDR25_BUS_SPEED:
529 timing = MMC_TIMING_UHS_SDR25;
530 card->sw_caps.uhs_max_dtr = UHS_SDR25_MAX_DTR;
531 break;
532 case UHS_SDR12_BUS_SPEED:
533 timing = MMC_TIMING_UHS_SDR12;
534 card->sw_caps.uhs_max_dtr = UHS_SDR12_MAX_DTR;
535 break;
536 default:
537 return 0;
Arindam Nath49c468f2011-05-05 12:19:01 +0530538 }
539
Subhash Jadavani93c712f2011-08-09 12:19:31 +0530540 err = mmc_sd_switch(card, 1, 0, card->sd_bus_speed, status);
Arindam Nath49c468f2011-05-05 12:19:01 +0530541 if (err)
542 return err;
543
Subhash Jadavani93c712f2011-08-09 12:19:31 +0530544 if ((status[16] & 0xF) != card->sd_bus_speed)
Girish K Sa3c76eb2011-10-11 11:44:09 +0530545 pr_warning("%s: Problem setting bus speed mode!\n",
Arindam Nath49c468f2011-05-05 12:19:01 +0530546 mmc_hostname(card->host));
547 else {
548 mmc_set_timing(card->host, timing);
549 mmc_set_clock(card->host, card->sw_caps.uhs_max_dtr);
550 }
551
552 return 0;
553}
554
Arindam Nath5371c922011-05-05 12:19:02 +0530555static int sd_set_current_limit(struct mmc_card *card, u8 *status)
556{
557 int current_limit = 0;
558 int err;
559
560 /*
561 * Current limit switch is only defined for SDR50, SDR104, and DDR50
562 * bus speed modes. For other bus speed modes, we set the default
563 * current limit of 200mA.
564 */
565 if ((card->sd_bus_speed == UHS_SDR50_BUS_SPEED) ||
566 (card->sd_bus_speed == UHS_SDR104_BUS_SPEED) ||
567 (card->sd_bus_speed == UHS_DDR50_BUS_SPEED)) {
568 if (card->host->caps & MMC_CAP_MAX_CURRENT_800) {
569 if (card->sw_caps.sd3_curr_limit & SD_MAX_CURRENT_800)
570 current_limit = SD_SET_CURRENT_LIMIT_800;
571 else if (card->sw_caps.sd3_curr_limit &
572 SD_MAX_CURRENT_600)
573 current_limit = SD_SET_CURRENT_LIMIT_600;
574 else if (card->sw_caps.sd3_curr_limit &
575 SD_MAX_CURRENT_400)
576 current_limit = SD_SET_CURRENT_LIMIT_400;
577 else if (card->sw_caps.sd3_curr_limit &
578 SD_MAX_CURRENT_200)
579 current_limit = SD_SET_CURRENT_LIMIT_200;
580 } else if (card->host->caps & MMC_CAP_MAX_CURRENT_600) {
581 if (card->sw_caps.sd3_curr_limit & SD_MAX_CURRENT_600)
582 current_limit = SD_SET_CURRENT_LIMIT_600;
583 else if (card->sw_caps.sd3_curr_limit &
584 SD_MAX_CURRENT_400)
585 current_limit = SD_SET_CURRENT_LIMIT_400;
586 else if (card->sw_caps.sd3_curr_limit &
587 SD_MAX_CURRENT_200)
588 current_limit = SD_SET_CURRENT_LIMIT_200;
589 } else if (card->host->caps & MMC_CAP_MAX_CURRENT_400) {
590 if (card->sw_caps.sd3_curr_limit & SD_MAX_CURRENT_400)
591 current_limit = SD_SET_CURRENT_LIMIT_400;
592 else if (card->sw_caps.sd3_curr_limit &
593 SD_MAX_CURRENT_200)
594 current_limit = SD_SET_CURRENT_LIMIT_200;
595 } else if (card->host->caps & MMC_CAP_MAX_CURRENT_200) {
596 if (card->sw_caps.sd3_curr_limit & SD_MAX_CURRENT_200)
597 current_limit = SD_SET_CURRENT_LIMIT_200;
598 }
599 } else
600 current_limit = SD_SET_CURRENT_LIMIT_200;
601
602 err = mmc_sd_switch(card, 1, 3, current_limit, status);
603 if (err)
604 return err;
605
606 if (((status[15] >> 4) & 0x0F) != current_limit)
Girish K Sa3c76eb2011-10-11 11:44:09 +0530607 pr_warning("%s: Problem setting current limit!\n",
Arindam Nath5371c922011-05-05 12:19:02 +0530608 mmc_hostname(card->host));
609
610 return 0;
611}
612
Sujit Reddy Thumma1cd61b72012-08-06 11:23:21 +0530613/**
614 * mmc_sd_change_bus_speed() - Change SD card bus frequency at runtime
615 * @host: pointer to mmc host structure
616 * @freq: pointer to desired frequency to be set
617 *
618 * Change the SD card bus frequency at runtime after the card is
619 * initialized. Callers are expected to make sure of the card's
620 * state (DATA/RCV/TRANSFER) beforing changing the frequency at runtime.
621 *
622 * If the frequency to change is greater than max. supported by card,
623 * *freq is changed to max. supported by card and if it is less than min.
624 * supported by host, *freq is changed to min. supported by host.
625 */
626static int mmc_sd_change_bus_speed(struct mmc_host *host, unsigned long *freq)
627{
628 int err = 0;
629 struct mmc_card *card;
630
631 mmc_claim_host(host);
632 /*
633 * Assign card pointer after claiming host to avoid race
634 * conditions that may arise during removal of the card.
635 */
636 card = host->card;
637
638 /* sanity checks */
639 if (!card || !freq) {
640 err = -EINVAL;
641 goto out;
642 }
643
644 if (mmc_card_uhs(card)) {
645 if (*freq > card->sw_caps.uhs_max_dtr)
646 *freq = card->sw_caps.uhs_max_dtr;
647 } else {
648 if (*freq > mmc_sd_get_max_clock(card))
649 *freq = mmc_sd_get_max_clock(card);
650 }
651
652 if (*freq < host->f_min)
653 *freq = host->f_min;
654
655 mmc_set_clock(host, (unsigned int) (*freq));
656
657 if (!mmc_host_is_spi(card->host) && mmc_sd_card_uhs(card)
658 && card->host->ops->execute_tuning) {
659 /*
660 * We try to probe host driver for tuning for any
661 * frequency, it is host driver responsibility to
662 * perform actual tuning only when required.
663 */
664 mmc_host_clk_hold(card->host);
665 err = card->host->ops->execute_tuning(card->host,
666 MMC_SEND_TUNING_BLOCK);
667 mmc_host_clk_release(card->host);
668
669 if (err)
670 pr_warn("%s: %s: tuning execution failed %d\n",
671 mmc_hostname(card->host), __func__, err);
672 }
673
674out:
675 mmc_release_host(host);
676 return err;
677}
678
Arindam Nathd6d50a12011-05-05 12:18:59 +0530679/*
680 * UHS-I specific initialization procedure
681 */
682static int mmc_sd_init_uhs_card(struct mmc_card *card)
683{
684 int err;
685 u8 *status;
686
687 if (!card->scr.sda_spec3)
688 return 0;
689
690 if (!(card->csd.cmdclass & CCC_SWITCH))
691 return 0;
692
693 status = kmalloc(64, GFP_KERNEL);
694 if (!status) {
Girish K Sa3c76eb2011-10-11 11:44:09 +0530695 pr_err("%s: could not allocate a buffer for "
Arindam Nathd6d50a12011-05-05 12:18:59 +0530696 "switch capabilities.\n", mmc_hostname(card->host));
697 return -ENOMEM;
698 }
699
700 /* Set 4-bit bus width */
701 if ((card->host->caps & MMC_CAP_4_BIT_DATA) &&
702 (card->scr.bus_widths & SD_SCR_BUS_WIDTH_4)) {
703 err = mmc_app_set_bus_width(card, MMC_BUS_WIDTH_4);
704 if (err)
705 goto out;
706
707 mmc_set_bus_width(card->host, MMC_BUS_WIDTH_4);
708 }
709
Subhash Jadavani93c712f2011-08-09 12:19:31 +0530710 /*
711 * Select the bus speed mode depending on host
712 * and card capability.
713 */
714 sd_update_bus_speed_mode(card);
715
Arindam Nathd6d50a12011-05-05 12:18:59 +0530716 /* Set the driver strength for the card */
717 err = sd_select_driver_type(card, status);
Arindam Nath49c468f2011-05-05 12:19:01 +0530718 if (err)
719 goto out;
720
Subhash Jadavani93c712f2011-08-09 12:19:31 +0530721 /* Set current limit for the card */
722 err = sd_set_current_limit(card, status);
Arindam Nath5371c922011-05-05 12:19:02 +0530723 if (err)
724 goto out;
725
Subhash Jadavani93c712f2011-08-09 12:19:31 +0530726 /* Set bus speed mode of the card */
727 err = sd_set_bus_speed_mode(card, status);
Arindam Nathb513ea22011-05-05 12:19:04 +0530728 if (err)
729 goto out;
730
731 /* SPI mode doesn't define CMD19 */
Sujit Reddy Thumma2c4967f742012-02-04 16:14:50 -0500732 if (!mmc_host_is_spi(card->host) && card->host->ops->execute_tuning) {
733 mmc_host_clk_hold(card->host);
Girish K Sa4924c72012-01-11 14:04:52 -0500734 err = card->host->ops->execute_tuning(card->host,
735 MMC_SEND_TUNING_BLOCK);
Sujit Reddy Thumma2c4967f742012-02-04 16:14:50 -0500736 mmc_host_clk_release(card->host);
737 }
Arindam Nathd6d50a12011-05-05 12:18:59 +0530738
739out:
740 kfree(status);
741
742 return err;
743}
744
Pierre Ossman51ec92e2008-03-21 23:54:50 +0100745MMC_DEV_ATTR(cid, "%08x%08x%08x%08x\n", card->raw_cid[0], card->raw_cid[1],
746 card->raw_cid[2], card->raw_cid[3]);
747MMC_DEV_ATTR(csd, "%08x%08x%08x%08x\n", card->raw_csd[0], card->raw_csd[1],
748 card->raw_csd[2], card->raw_csd[3]);
749MMC_DEV_ATTR(scr, "%08x%08x\n", card->raw_scr[0], card->raw_scr[1]);
750MMC_DEV_ATTR(date, "%02d/%04d\n", card->cid.month, card->cid.year);
Adrian Hunterdfe86cb2010-08-11 14:17:46 -0700751MMC_DEV_ATTR(erase_size, "%u\n", card->erase_size << 9);
752MMC_DEV_ATTR(preferred_erase_size, "%u\n", card->pref_erase << 9);
Pierre Ossman51ec92e2008-03-21 23:54:50 +0100753MMC_DEV_ATTR(fwrev, "0x%x\n", card->cid.fwrev);
754MMC_DEV_ATTR(hwrev, "0x%x\n", card->cid.hwrev);
755MMC_DEV_ATTR(manfid, "0x%06x\n", card->cid.manfid);
756MMC_DEV_ATTR(name, "%s\n", card->cid.prod_name);
757MMC_DEV_ATTR(oemid, "0x%04x\n", card->cid.oemid);
758MMC_DEV_ATTR(serial, "0x%08x\n", card->cid.serial);
759
760
761static struct attribute *sd_std_attrs[] = {
762 &dev_attr_cid.attr,
763 &dev_attr_csd.attr,
764 &dev_attr_scr.attr,
765 &dev_attr_date.attr,
Adrian Hunterdfe86cb2010-08-11 14:17:46 -0700766 &dev_attr_erase_size.attr,
767 &dev_attr_preferred_erase_size.attr,
Pierre Ossman51ec92e2008-03-21 23:54:50 +0100768 &dev_attr_fwrev.attr,
769 &dev_attr_hwrev.attr,
770 &dev_attr_manfid.attr,
771 &dev_attr_name.attr,
772 &dev_attr_oemid.attr,
773 &dev_attr_serial.attr,
774 NULL,
775};
776
777static struct attribute_group sd_std_attr_group = {
778 .attrs = sd_std_attrs,
779};
780
David Brownella4dbd672009-06-24 10:06:31 -0700781static const struct attribute_group *sd_attr_groups[] = {
Pierre Ossman51ec92e2008-03-21 23:54:50 +0100782 &sd_std_attr_group,
783 NULL,
784};
785
Michal Miroslaw71578a12010-08-10 18:01:40 -0700786struct device_type sd_type = {
Pierre Ossman51ec92e2008-03-21 23:54:50 +0100787 .groups = sd_attr_groups,
788};
789
Pierre Ossman7ea239d2006-12-31 00:11:32 +0100790/*
Michal Miroslaw71578a12010-08-10 18:01:40 -0700791 * Fetch CID from card.
Pierre Ossman6abaa0c2007-05-01 16:00:02 +0200792 */
Arindam Nathd6d50a12011-05-05 12:18:59 +0530793int mmc_sd_get_cid(struct mmc_host *host, u32 ocr, u32 *cid, u32 *rocr)
Pierre Ossman6abaa0c2007-05-01 16:00:02 +0200794{
Pierre Ossman6abaa0c2007-05-01 16:00:02 +0200795 int err;
Pierre Ossman6abaa0c2007-05-01 16:00:02 +0200796
797 /*
798 * Since we're changing the OCR value, we seem to
799 * need to tell some cards to go back to the idle
800 * state. We wait 1ms to give cards time to
801 * respond.
802 */
803 mmc_go_idle(host);
804
805 /*
806 * If SD_SEND_IF_COND indicates an SD 2.0
807 * compliant card and we should set bit 30
808 * of the ocr to indicate that we can handle
809 * block-addressed SDHC cards.
810 */
811 err = mmc_send_if_cond(host, ocr);
Pierre Ossman17b04292007-07-22 22:18:46 +0200812 if (!err)
Arindam Nathf2119df2011-05-05 12:18:57 +0530813 ocr |= SD_OCR_CCS;
Pierre Ossman6abaa0c2007-05-01 16:00:02 +0200814
Arindam Nathf2119df2011-05-05 12:18:57 +0530815 /*
816 * If the host supports one of UHS-I modes, request the card
817 * to switch to 1.8V signaling level.
818 */
819 if (host->caps & (MMC_CAP_UHS_SDR12 | MMC_CAP_UHS_SDR25 |
820 MMC_CAP_UHS_SDR50 | MMC_CAP_UHS_SDR104 | MMC_CAP_UHS_DDR50))
821 ocr |= SD_OCR_S18R;
822
823 /* If the host can supply more than 150mA, XPC should be set to 1. */
824 if (host->caps & (MMC_CAP_SET_XPC_330 | MMC_CAP_SET_XPC_300 |
825 MMC_CAP_SET_XPC_180))
826 ocr |= SD_OCR_XPC;
827
828try_again:
Arindam Nathd6d50a12011-05-05 12:18:59 +0530829 err = mmc_send_app_op_cond(host, ocr, rocr);
Pierre Ossman17b04292007-07-22 22:18:46 +0200830 if (err)
Michal Miroslaw71578a12010-08-10 18:01:40 -0700831 return err;
Pierre Ossman6abaa0c2007-05-01 16:00:02 +0200832
Arindam Nathf2119df2011-05-05 12:18:57 +0530833 /*
834 * In case CCS and S18A in the response is set, start Signal Voltage
835 * Switch procedure. SPI mode doesn't support CMD11.
836 */
Arindam Nathd6d50a12011-05-05 12:18:59 +0530837 if (!mmc_host_is_spi(host) && rocr &&
838 ((*rocr & 0x41000000) == 0x41000000)) {
Philip Rakity261bbd42011-05-13 11:17:17 +0530839 err = mmc_set_signal_voltage(host, MMC_SIGNAL_VOLTAGE_180, true);
Arindam Nathf2119df2011-05-05 12:18:57 +0530840 if (err) {
841 ocr &= ~SD_OCR_S18R;
842 goto try_again;
843 }
844 }
845
David Brownellaf517152007-08-08 09:11:32 -0700846 if (mmc_host_is_spi(host))
847 err = mmc_send_cid(host, cid);
848 else
849 err = mmc_all_send_cid(host, cid);
Michal Miroslaw71578a12010-08-10 18:01:40 -0700850
851 return err;
852}
853
854int mmc_sd_get_csd(struct mmc_host *host, struct mmc_card *card)
855{
856 int err;
857
858 /*
859 * Fetch CSD from card.
860 */
861 err = mmc_send_csd(card, card->raw_csd);
Pierre Ossman17b04292007-07-22 22:18:46 +0200862 if (err)
Michal Miroslaw71578a12010-08-10 18:01:40 -0700863 return err;
Pierre Ossman6abaa0c2007-05-01 16:00:02 +0200864
Michal Miroslaw71578a12010-08-10 18:01:40 -0700865 err = mmc_decode_csd(card);
866 if (err)
867 return err;
Pierre Ossman6abaa0c2007-05-01 16:00:02 +0200868
Michal Miroslaw71578a12010-08-10 18:01:40 -0700869 return 0;
870}
Pierre Ossman6abaa0c2007-05-01 16:00:02 +0200871
Michal Miroslaw71578a12010-08-10 18:01:40 -0700872int mmc_sd_setup_card(struct mmc_host *host, struct mmc_card *card,
873 bool reinit)
874{
875 int err;
San Mehat8ed5a662008-12-04 11:18:00 -0800876#ifdef CONFIG_MMC_PARANOID_SD_INIT
877 int retries;
878#endif
Pierre Ossman6abaa0c2007-05-01 16:00:02 +0200879
Michal Miroslaw71578a12010-08-10 18:01:40 -0700880 if (!reinit) {
Pierre Ossman6abaa0c2007-05-01 16:00:02 +0200881 /*
882 * Fetch SCR from card.
883 */
884 err = mmc_app_send_scr(card, card->raw_scr);
Pierre Ossman17b04292007-07-22 22:18:46 +0200885 if (err)
Michal Miroslaw71578a12010-08-10 18:01:40 -0700886 return err;
Pierre Ossman6abaa0c2007-05-01 16:00:02 +0200887
Pierre Ossmanbd766312007-05-01 16:11:57 +0200888 err = mmc_decode_scr(card);
Michal Miroslaw71578a12010-08-10 18:01:40 -0700889 if (err)
890 return err;
Pierre Ossman6abaa0c2007-05-01 16:00:02 +0200891
892 /*
Adrian Hunterdfe86cb2010-08-11 14:17:46 -0700893 * Fetch and process SD Status register.
894 */
895 err = mmc_read_ssr(card);
896 if (err)
897 return err;
898
899 /* Erase init depends on CSD and SSR */
900 mmc_init_erase(card);
901
902 /*
Pierre Ossman6abaa0c2007-05-01 16:00:02 +0200903 * Fetch switch information from card.
904 */
San Mehatc80f5462008-11-11 09:35:36 -0800905#ifdef CONFIG_MMC_PARANOID_SD_INIT
906 for (retries = 1; retries <= 3; retries++) {
907 err = mmc_read_switch(card);
908 if (!err) {
909 if (retries > 1) {
910 printk(KERN_WARNING
911 "%s: recovered\n",
912 mmc_hostname(host));
913 }
914 break;
915 } else {
916 printk(KERN_WARNING
917 "%s: read switch failed (attempt %d)\n",
918 mmc_hostname(host), retries);
919 }
920 }
921#else
Pierre Ossman6abaa0c2007-05-01 16:00:02 +0200922 err = mmc_read_switch(card);
San Mehatc80f5462008-11-11 09:35:36 -0800923#endif
924
Pierre Ossman17b04292007-07-22 22:18:46 +0200925 if (err)
Michal Miroslaw71578a12010-08-10 18:01:40 -0700926 return err;
Pierre Ossman6abaa0c2007-05-01 16:00:02 +0200927 }
928
929 /*
Wolfgang Muees9d9f25c2009-04-07 14:48:16 +0100930 * For SPI, enable CRC as appropriate.
931 * This CRC enable is located AFTER the reading of the
932 * card registers because some SDHC cards are not able
933 * to provide valid CRCs for non-512-byte blocks.
934 */
935 if (mmc_host_is_spi(host)) {
936 err = mmc_spi_set_crc(host, use_spi_crc);
937 if (err)
Michal Miroslaw71578a12010-08-10 18:01:40 -0700938 return err;
Wolfgang Muees9d9f25c2009-04-07 14:48:16 +0100939 }
940
941 /*
Michal Miroslaw71578a12010-08-10 18:01:40 -0700942 * Check if read-only switch is active.
Pierre Ossman6abaa0c2007-05-01 16:00:02 +0200943 */
Michal Miroslaw71578a12010-08-10 18:01:40 -0700944 if (!reinit) {
945 int ro = -1;
Pierre Ossman6abaa0c2007-05-01 16:00:02 +0200946
Sujit Reddy Thumma2c4967f742012-02-04 16:14:50 -0500947 if (host->ops->get_ro) {
Stephen Boyd3f113aa2013-02-11 14:30:14 -0800948 mmc_host_clk_hold(card->host);
Michal Miroslaw71578a12010-08-10 18:01:40 -0700949 ro = host->ops->get_ro(host);
Stephen Boyd3f113aa2013-02-11 14:30:14 -0800950 mmc_host_clk_release(card->host);
Sujit Reddy Thumma2c4967f742012-02-04 16:14:50 -0500951 }
Michal Miroslaw71578a12010-08-10 18:01:40 -0700952
953 if (ro < 0) {
Girish K Sa3c76eb2011-10-11 11:44:09 +0530954 pr_warning("%s: host does not "
Michal Miroslaw71578a12010-08-10 18:01:40 -0700955 "support reading read-only "
956 "switch. assuming write-enable.\n",
957 mmc_hostname(host));
958 } else if (ro > 0) {
959 mmc_card_set_readonly(card);
960 }
961 }
962
963 return 0;
964}
965
966unsigned mmc_sd_get_max_clock(struct mmc_card *card)
967{
968 unsigned max_dtr = (unsigned int)-1;
Pierre Ossman6abaa0c2007-05-01 16:00:02 +0200969
970 if (mmc_card_highspeed(card)) {
971 if (max_dtr > card->sw_caps.hs_max_dtr)
972 max_dtr = card->sw_caps.hs_max_dtr;
973 } else if (max_dtr > card->csd.max_dtr) {
974 max_dtr = card->csd.max_dtr;
975 }
976
Michal Miroslaw71578a12010-08-10 18:01:40 -0700977 return max_dtr;
978}
979
980void mmc_sd_go_highspeed(struct mmc_card *card)
981{
982 mmc_card_set_highspeed(card);
983 mmc_set_timing(card->host, MMC_TIMING_SD_HS);
984}
985
986/*
987 * Handle the detection and initialisation of a card.
988 *
989 * In the case of a resume, "oldcard" will contain the card
990 * we're trying to reinitialise.
991 */
992static int mmc_sd_init_card(struct mmc_host *host, u32 ocr,
993 struct mmc_card *oldcard)
994{
995 struct mmc_card *card;
996 int err;
997 u32 cid[4];
Arindam Nathd6d50a12011-05-05 12:18:59 +0530998 u32 rocr = 0;
Michal Miroslaw71578a12010-08-10 18:01:40 -0700999
1000 BUG_ON(!host);
1001 WARN_ON(!host->claimed);
1002
Ulf Hanssone7747472012-03-01 13:18:05 +01001003 /* The initialization should be done at 3.3 V I/O voltage. */
1004 mmc_set_signal_voltage(host, MMC_SIGNAL_VOLTAGE_330, 0);
1005
Arindam Nathd6d50a12011-05-05 12:18:59 +05301006 err = mmc_sd_get_cid(host, ocr, cid, &rocr);
Michal Miroslaw71578a12010-08-10 18:01:40 -07001007 if (err)
1008 return err;
1009
1010 if (oldcard) {
1011 if (memcmp(cid, oldcard->raw_cid, sizeof(cid)) != 0)
1012 return -ENOENT;
1013
1014 card = oldcard;
1015 } else {
1016 /*
1017 * Allocate card structure.
1018 */
1019 card = mmc_alloc_card(host, &sd_type);
1020 if (IS_ERR(card))
1021 return PTR_ERR(card);
1022
1023 card->type = MMC_TYPE_SD;
1024 memcpy(card->raw_cid, cid, sizeof(card->raw_cid));
1025 }
1026
1027 /*
1028 * For native busses: get card RCA and quit open drain mode.
1029 */
1030 if (!mmc_host_is_spi(host)) {
1031 err = mmc_send_relative_addr(host, &card->rca);
1032 if (err)
1033 return err;
Michal Miroslaw71578a12010-08-10 18:01:40 -07001034 }
1035
1036 if (!oldcard) {
1037 err = mmc_sd_get_csd(host, card);
1038 if (err)
1039 return err;
1040
1041 mmc_decode_cid(card);
1042 }
1043
1044 /*
1045 * Select card, as all following commands rely on that.
1046 */
1047 if (!mmc_host_is_spi(host)) {
1048 err = mmc_select_card(card);
1049 if (err)
1050 return err;
1051 }
1052
1053 err = mmc_sd_setup_card(host, card, oldcard != NULL);
1054 if (err)
1055 goto free_card;
1056
Arindam Nathd6d50a12011-05-05 12:18:59 +05301057 /* Initialization sequence for UHS-I cards */
1058 if (rocr & SD_ROCR_S18A) {
1059 err = mmc_sd_init_uhs_card(card);
Pierre Ossman17b04292007-07-22 22:18:46 +02001060 if (err)
Pierre Ossman6abaa0c2007-05-01 16:00:02 +02001061 goto free_card;
Arindam Nath3a303512011-05-05 12:19:03 +05301062
1063 /* Card is an ultra-high-speed card */
Philip Rakitya303c532011-11-14 19:14:38 -08001064 mmc_card_set_uhs(card);
Arindam Nath4d55c5a2011-05-05 12:19:05 +05301065
1066 /*
1067 * Since initialization is now complete, enable preset
1068 * value registers for UHS-I cards.
1069 */
Sujit Reddy Thumma2c4967f742012-02-04 16:14:50 -05001070 if (host->ops->enable_preset_value) {
Stephen Boyd3f113aa2013-02-11 14:30:14 -08001071 mmc_host_clk_hold(card->host);
Arindam Nath4d55c5a2011-05-05 12:19:05 +05301072 host->ops->enable_preset_value(host, true);
Stephen Boyd3f113aa2013-02-11 14:30:14 -08001073 mmc_host_clk_release(card->host);
Sujit Reddy Thumma2c4967f742012-02-04 16:14:50 -05001074 }
Arindam Nathd6d50a12011-05-05 12:18:59 +05301075 } else {
1076 /*
1077 * Attempt to change to high-speed (if supported)
1078 */
1079 err = mmc_sd_switch_hs(card);
1080 if (err > 0)
1081 mmc_sd_go_highspeed(card);
1082 else if (err)
1083 goto free_card;
Pierre Ossman6abaa0c2007-05-01 16:00:02 +02001084
Arindam Nathd6d50a12011-05-05 12:18:59 +05301085 /*
1086 * Set bus speed.
1087 */
1088 mmc_set_clock(host, mmc_sd_get_max_clock(card));
1089
1090 /*
1091 * Switch to wider bus (if supported).
1092 */
1093 if ((host->caps & MMC_CAP_4_BIT_DATA) &&
1094 (card->scr.bus_widths & SD_SCR_BUS_WIDTH_4)) {
1095 err = mmc_app_set_bus_width(card, MMC_BUS_WIDTH_4);
1096 if (err)
1097 goto free_card;
1098
1099 mmc_set_bus_width(host, MMC_BUS_WIDTH_4);
1100 }
Pierre Ossman6abaa0c2007-05-01 16:00:02 +02001101 }
1102
Michal Miroslaw71578a12010-08-10 18:01:40 -07001103 host->card = card;
Pierre Ossman17b04292007-07-22 22:18:46 +02001104 return 0;
Pierre Ossman6abaa0c2007-05-01 16:00:02 +02001105
1106free_card:
1107 if (!oldcard)
1108 mmc_remove_card(card);
Pierre Ossman6abaa0c2007-05-01 16:00:02 +02001109
Pierre Ossmanadf66a02007-07-22 23:08:30 +02001110 return err;
Pierre Ossman6abaa0c2007-05-01 16:00:02 +02001111}
1112
1113/*
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001114 * Host is being removed. Free up the current card.
1115 */
1116static void mmc_sd_remove(struct mmc_host *host)
1117{
1118 BUG_ON(!host);
1119 BUG_ON(!host->card);
1120
1121 mmc_remove_card(host->card);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001122
1123 mmc_claim_host(host);
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001124 host->card = NULL;
Sujit Reddy Thumma51d57b32012-10-11 17:17:03 +05301125 mmc_exit_clk_scaling(host);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001126 mmc_release_host(host);
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001127}
1128
1129/*
Adrian Hunterd3049502011-11-28 16:22:00 +02001130 * Card detection - card is alive.
1131 */
1132static int mmc_sd_alive(struct mmc_host *host)
1133{
1134 return mmc_send_status(host->card, NULL);
1135}
1136
1137/*
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001138 * Card detection callback from host.
1139 */
1140static void mmc_sd_detect(struct mmc_host *host)
1141{
San Mehat8ed5a662008-12-04 11:18:00 -08001142 int err = 0;
1143#ifdef CONFIG_MMC_PARANOID_SD_INIT
1144 int retries = 5;
1145#endif
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001146
1147 BUG_ON(!host);
1148 BUG_ON(!host->card);
Asutosh Dasbbc84782013-02-11 15:31:35 +05301149
1150 mmc_rpm_hold(host, &host->card->dev);
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001151 mmc_claim_host(host);
1152
1153 /*
1154 * Just check if our card has been removed.
1155 */
San Mehat8ed5a662008-12-04 11:18:00 -08001156#ifdef CONFIG_MMC_PARANOID_SD_INIT
1157 while(retries) {
1158 err = mmc_send_status(host->card, NULL);
1159 if (err) {
1160 retries--;
1161 udelay(5);
1162 continue;
1163 }
1164 break;
1165 }
1166 if (!retries) {
1167 printk(KERN_ERR "%s(%s): Unable to re-detect card (%d)\n",
1168 __func__, mmc_hostname(host), err);
1169 }
1170#else
Adrian Hunterd3049502011-11-28 16:22:00 +02001171 err = _mmc_detect_card_removed(host);
San Mehat8ed5a662008-12-04 11:18:00 -08001172#endif
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001173 mmc_release_host(host);
1174
Asutosh Dasbbc84782013-02-11 15:31:35 +05301175 /*
1176 * if detect fails, the device would be removed anyway;
1177 * the rpm framework would mark the device state suspended.
1178 */
1179 if (!err)
1180 mmc_rpm_release(host, &host->card->dev);
1181
Pierre Ossman17b04292007-07-22 22:18:46 +02001182 if (err) {
Pierre Ossman4101c162007-05-19 13:39:01 +02001183 mmc_sd_remove(host);
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001184
1185 mmc_claim_host(host);
1186 mmc_detach_bus(host);
Ulf Hansson7f7e4122011-09-21 14:08:13 -04001187 mmc_power_off(host);
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001188 mmc_release_host(host);
1189 }
1190}
1191
Pierre Ossman6abaa0c2007-05-01 16:00:02 +02001192/*
1193 * Suspend callback from host.
1194 */
Nicolas Pitre95cdfb72009-09-22 16:45:29 -07001195static int mmc_sd_suspend(struct mmc_host *host)
Pierre Ossman6abaa0c2007-05-01 16:00:02 +02001196{
1197 BUG_ON(!host);
1198 BUG_ON(!host->card);
1199
Sujit Reddy Thumma51d57b32012-10-11 17:17:03 +05301200 /*
1201 * Disable clock scaling before suspend and enable it after resume so
1202 * as to avoid clock scaling decisions kicking in during this window.
1203 */
1204 mmc_disable_clk_scaling(host);
1205
Pierre Ossman6abaa0c2007-05-01 16:00:02 +02001206 mmc_claim_host(host);
David Brownellaf517152007-08-08 09:11:32 -07001207 if (!mmc_host_is_spi(host))
1208 mmc_deselect_cards(host);
Pierre Ossman6abaa0c2007-05-01 16:00:02 +02001209 host->card->state &= ~MMC_STATE_HIGHSPEED;
1210 mmc_release_host(host);
Nicolas Pitre95cdfb72009-09-22 16:45:29 -07001211
1212 return 0;
Pierre Ossman6abaa0c2007-05-01 16:00:02 +02001213}
1214
1215/*
1216 * Resume callback from host.
1217 *
1218 * This function tries to determine if the same card is still present
1219 * and, if so, restore all state to it.
1220 */
Nicolas Pitre95cdfb72009-09-22 16:45:29 -07001221static int mmc_sd_resume(struct mmc_host *host)
Pierre Ossman6abaa0c2007-05-01 16:00:02 +02001222{
1223 int err;
San Mehat05063bf2008-12-01 08:52:34 -08001224#ifdef CONFIG_MMC_PARANOID_SD_INIT
1225 int retries;
1226#endif
Pierre Ossman6abaa0c2007-05-01 16:00:02 +02001227
1228 BUG_ON(!host);
1229 BUG_ON(!host->card);
1230
1231 mmc_claim_host(host);
San Mehat05063bf2008-12-01 08:52:34 -08001232#ifdef CONFIG_MMC_PARANOID_SD_INIT
1233 retries = 5;
1234 while (retries) {
1235 err = mmc_sd_init_card(host, host->ocr, host->card);
1236
1237 if (err) {
1238 printk(KERN_ERR "%s: Re-init card rc = %d (retries = %d)\n",
1239 mmc_hostname(host), err, retries);
San Mehat05063bf2008-12-01 08:52:34 -08001240 retries--;
Subhash Jadavani4dd5c442012-03-13 00:33:00 +05301241 mmc_power_off(host);
1242 usleep_range(5000, 5500);
1243 mmc_power_up(host);
1244 mmc_select_voltage(host, host->ocr);
San Mehat05063bf2008-12-01 08:52:34 -08001245 continue;
1246 }
1247 break;
1248 }
1249#else
Pierre Ossman6abaa0c2007-05-01 16:00:02 +02001250 err = mmc_sd_init_card(host, host->ocr, host->card);
San Mehat05063bf2008-12-01 08:52:34 -08001251#endif
Pierre Ossman2986d0b2007-07-22 17:52:06 +02001252 mmc_release_host(host);
1253
Sujit Reddy Thumma51d57b32012-10-11 17:17:03 +05301254 /*
1255 * We have done full initialization of the card,
1256 * reset the clk scale stats and current frequency.
1257 */
1258 if (mmc_can_scale_clk(host))
1259 mmc_init_clk_scaling(host);
1260
Nicolas Pitre95cdfb72009-09-22 16:45:29 -07001261 return err;
Pierre Ossman6abaa0c2007-05-01 16:00:02 +02001262}
1263
Ohad Ben-Cohen12ae6372010-10-02 13:54:06 +02001264static int mmc_sd_power_restore(struct mmc_host *host)
Adrian Huntereae1aee2009-09-22 16:44:33 -07001265{
Ohad Ben-Cohen12ae6372010-10-02 13:54:06 +02001266 int ret;
1267
Sujit Reddy Thumma51d57b32012-10-11 17:17:03 +05301268 /* Disable clk scaling to avoid switching frequencies intermittently */
1269 mmc_disable_clk_scaling(host);
1270
Adrian Huntereae1aee2009-09-22 16:44:33 -07001271 host->card->state &= ~MMC_STATE_HIGHSPEED;
1272 mmc_claim_host(host);
Ohad Ben-Cohen12ae6372010-10-02 13:54:06 +02001273 ret = mmc_sd_init_card(host, host->ocr, host->card);
Adrian Huntereae1aee2009-09-22 16:44:33 -07001274 mmc_release_host(host);
Ohad Ben-Cohen12ae6372010-10-02 13:54:06 +02001275
Sujit Reddy Thumma51d57b32012-10-11 17:17:03 +05301276 if (mmc_can_scale_clk(host))
1277 mmc_init_clk_scaling(host);
1278
Ohad Ben-Cohen12ae6372010-10-02 13:54:06 +02001279 return ret;
Adrian Huntereae1aee2009-09-22 16:44:33 -07001280}
1281
Adrian Hunter9feae242009-09-22 16:44:32 -07001282static const struct mmc_bus_ops mmc_sd_ops = {
1283 .remove = mmc_sd_remove,
1284 .detect = mmc_sd_detect,
1285 .suspend = NULL,
1286 .resume = NULL,
Adrian Huntereae1aee2009-09-22 16:44:33 -07001287 .power_restore = mmc_sd_power_restore,
Adrian Hunterd3049502011-11-28 16:22:00 +02001288 .alive = mmc_sd_alive,
Sujit Reddy Thumma1cd61b72012-08-06 11:23:21 +05301289 .change_bus_speed = mmc_sd_change_bus_speed,
Adrian Hunter9feae242009-09-22 16:44:32 -07001290};
1291
1292static const struct mmc_bus_ops mmc_sd_ops_unsafe = {
1293 .remove = mmc_sd_remove,
1294 .detect = mmc_sd_detect,
1295 .suspend = mmc_sd_suspend,
1296 .resume = mmc_sd_resume,
Adrian Huntereae1aee2009-09-22 16:44:33 -07001297 .power_restore = mmc_sd_power_restore,
Adrian Hunterd3049502011-11-28 16:22:00 +02001298 .alive = mmc_sd_alive,
Sujit Reddy Thumma1cd61b72012-08-06 11:23:21 +05301299 .change_bus_speed = mmc_sd_change_bus_speed,
Adrian Hunter9feae242009-09-22 16:44:32 -07001300};
1301
1302static void mmc_sd_attach_bus_ops(struct mmc_host *host)
1303{
1304 const struct mmc_bus_ops *bus_ops;
1305
Matt Fleming71d7d3d2010-09-27 09:42:19 +01001306 if (!mmc_card_is_removable(host))
Adrian Hunter9feae242009-09-22 16:44:32 -07001307 bus_ops = &mmc_sd_ops_unsafe;
1308 else
1309 bus_ops = &mmc_sd_ops;
1310 mmc_attach_bus(host, bus_ops);
1311}
1312
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001313/*
1314 * Starting point for SD card init.
1315 */
Andy Ross807e8e42011-01-03 10:36:56 -08001316int mmc_attach_sd(struct mmc_host *host)
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001317{
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001318 int err;
Andy Ross807e8e42011-01-03 10:36:56 -08001319 u32 ocr;
San Mehat8ed5a662008-12-04 11:18:00 -08001320#ifdef CONFIG_MMC_PARANOID_SD_INIT
1321 int retries;
1322#endif
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001323
1324 BUG_ON(!host);
Pierre Ossmand84075c82007-08-09 13:23:56 +02001325 WARN_ON(!host->claimed);
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001326
Arindam Nath4d55c5a2011-05-05 12:19:05 +05301327 /* Disable preset value enable if already set since last time */
Sujit Reddy Thumma2c4967f742012-02-04 16:14:50 -05001328 if (host->ops->enable_preset_value) {
1329 mmc_host_clk_hold(host);
Arindam Nath4d55c5a2011-05-05 12:19:05 +05301330 host->ops->enable_preset_value(host, false);
Sujit Reddy Thumma2c4967f742012-02-04 16:14:50 -05001331 mmc_host_clk_release(host);
1332 }
Arindam Nath4d55c5a2011-05-05 12:19:05 +05301333
Andy Ross807e8e42011-01-03 10:36:56 -08001334 err = mmc_send_app_op_cond(host, 0, &ocr);
1335 if (err)
1336 return err;
1337
Adrian Hunter9feae242009-09-22 16:44:32 -07001338 mmc_sd_attach_bus_ops(host);
Takashi Iwai8f230f42010-12-08 10:04:30 +01001339 if (host->ocr_avail_sd)
1340 host->ocr_avail = host->ocr_avail_sd;
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001341
Philip Langdale55556da2007-03-16 19:39:00 -07001342 /*
David Brownellaf517152007-08-08 09:11:32 -07001343 * We need to get OCR a different way for SPI.
1344 */
1345 if (mmc_host_is_spi(host)) {
1346 mmc_go_idle(host);
1347
1348 err = mmc_spi_read_ocr(host, 0, &ocr);
1349 if (err)
1350 goto err;
1351 }
1352
1353 /*
Philip Langdale55556da2007-03-16 19:39:00 -07001354 * Sanity check the voltages that the card claims to
1355 * support.
1356 */
1357 if (ocr & 0x7F) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05301358 pr_warning("%s: card claims to support voltages "
Philip Langdale55556da2007-03-16 19:39:00 -07001359 "below the defined range. These will be ignored.\n",
1360 mmc_hostname(host));
1361 ocr &= ~0x7F;
1362 }
1363
Takashi Iwai8f230f42010-12-08 10:04:30 +01001364 if ((ocr & MMC_VDD_165_195) &&
1365 !(host->ocr_avail_sd & MMC_VDD_165_195)) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05301366 pr_warning("%s: SD card claims to support the "
Philip Langdale55556da2007-03-16 19:39:00 -07001367 "incompletely defined 'low voltage range'. This "
1368 "will be ignored.\n", mmc_hostname(host));
1369 ocr &= ~MMC_VDD_165_195;
1370 }
1371
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001372 host->ocr = mmc_select_voltage(host, ocr);
1373
1374 /*
1375 * Can we support the voltage(s) of the card(s)?
1376 */
Pierre Ossman109b5be2007-07-23 00:12:10 +02001377 if (!host->ocr) {
1378 err = -EINVAL;
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001379 goto err;
Pierre Ossman109b5be2007-07-23 00:12:10 +02001380 }
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001381
1382 /*
Pierre Ossman6abaa0c2007-05-01 16:00:02 +02001383 * Detect and init the card.
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001384 */
San Mehat8ed5a662008-12-04 11:18:00 -08001385#ifdef CONFIG_MMC_PARANOID_SD_INIT
1386 retries = 5;
1387 while (retries) {
1388 err = mmc_sd_init_card(host, host->ocr, NULL);
1389 if (err) {
1390 retries--;
Subhash Jadavani4dd5c442012-03-13 00:33:00 +05301391 mmc_power_off(host);
1392 usleep_range(5000, 5500);
1393 mmc_power_up(host);
1394 mmc_select_voltage(host, host->ocr);
San Mehat8ed5a662008-12-04 11:18:00 -08001395 continue;
1396 }
1397 break;
1398 }
1399
1400 if (!retries) {
1401 printk(KERN_ERR "%s: mmc_sd_init_card() failure (err = %d)\n",
1402 mmc_hostname(host), err);
1403 goto err;
1404 }
1405#else
Pierre Ossman6abaa0c2007-05-01 16:00:02 +02001406 err = mmc_sd_init_card(host, host->ocr, NULL);
Pierre Ossman17b04292007-07-22 22:18:46 +02001407 if (err)
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001408 goto err;
San Mehat8ed5a662008-12-04 11:18:00 -08001409#endif
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001410
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001411 mmc_release_host(host);
Pierre Ossman4101c162007-05-19 13:39:01 +02001412 err = mmc_add_card(host->card);
Andy Ross807e8e42011-01-03 10:36:56 -08001413 mmc_claim_host(host);
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001414 if (err)
Pierre Ossman2986d0b2007-07-22 17:52:06 +02001415 goto remove_card;
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001416
Sujit Reddy Thumma51d57b32012-10-11 17:17:03 +05301417 /* Initialize clock scaling only for high frequency modes */
1418 if (mmc_card_uhs(host->card))
1419 mmc_init_clk_scaling(host);
1420
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001421 return 0;
1422
Pierre Ossman2986d0b2007-07-22 17:52:06 +02001423remove_card:
Andy Ross807e8e42011-01-03 10:36:56 -08001424 mmc_release_host(host);
Pierre Ossman6abaa0c2007-05-01 16:00:02 +02001425 mmc_remove_card(host->card);
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001426 host->card = NULL;
Pierre Ossman2986d0b2007-07-22 17:52:06 +02001427 mmc_claim_host(host);
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001428err:
1429 mmc_detach_bus(host);
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001430
Girish K Sa3c76eb2011-10-11 11:44:09 +05301431 pr_err("%s: error %d whilst initialising SD card\n",
Pierre Ossman109b5be2007-07-23 00:12:10 +02001432 mmc_hostname(host), err);
1433
Pierre Ossmanadf66a02007-07-22 23:08:30 +02001434 return err;
Pierre Ossman7ea239d2006-12-31 00:11:32 +01001435}
1436