mmc: core: eMMC signal voltage does not use CMD11
[linux-2.6-block.git] / drivers / mmc / core / mmc.c
CommitLineData
7ea239d9 1/*
70f10482 2 * linux/drivers/mmc/core/mmc.c
7ea239d9
PO
3 *
4 * Copyright (C) 2003-2004 Russell King, All Rights Reserved.
5 * Copyright (C) 2005-2007 Pierre Ossman, All Rights Reserved.
6 * MMCv4 support Copyright (C) 2006 Philip Langdale, 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>
5a0e3ad6 14#include <linux/slab.h>
7ea239d9
PO
15
16#include <linux/mmc/host.h>
17#include <linux/mmc/card.h>
18#include <linux/mmc/mmc.h>
19
20#include "core.h"
4101c16a 21#include "bus.h"
7ea239d9
PO
22#include "mmc_ops.h"
23
24static const unsigned int tran_exp[] = {
25 10000, 100000, 1000000, 10000000,
26 0, 0, 0, 0
27};
28
29static const unsigned char tran_mant[] = {
30 0, 10, 12, 13, 15, 20, 25, 30,
31 35, 40, 45, 50, 55, 60, 70, 80,
32};
33
34static const unsigned int tacc_exp[] = {
35 1, 10, 100, 1000, 10000, 100000, 1000000, 10000000,
36};
37
38static const unsigned int tacc_mant[] = {
39 0, 10, 12, 13, 15, 20, 25, 30,
40 35, 40, 45, 50, 55, 60, 70, 80,
41};
42
43#define UNSTUFF_BITS(resp,start,size) \
44 ({ \
45 const int __size = size; \
46 const u32 __mask = (__size < 32 ? 1 << __size : 0) - 1; \
47 const int __off = 3 - ((start) / 32); \
48 const int __shft = (start) & 31; \
49 u32 __res; \
50 \
51 __res = resp[__off] >> __shft; \
52 if (__size + __shft > 32) \
53 __res |= resp[__off-1] << ((32 - __shft) % 32); \
54 __res & __mask; \
55 })
56
57/*
58 * Given the decoded CSD structure, decode the raw CID to our CID structure.
59 */
bd766312 60static int mmc_decode_cid(struct mmc_card *card)
7ea239d9
PO
61{
62 u32 *resp = card->raw_cid;
63
64 /*
65 * The selection of the format here is based upon published
66 * specs from sandisk and from what people have reported.
67 */
68 switch (card->csd.mmca_vsn) {
69 case 0: /* MMC v1.0 - v1.2 */
70 case 1: /* MMC v1.4 */
71 card->cid.manfid = UNSTUFF_BITS(resp, 104, 24);
72 card->cid.prod_name[0] = UNSTUFF_BITS(resp, 96, 8);
73 card->cid.prod_name[1] = UNSTUFF_BITS(resp, 88, 8);
74 card->cid.prod_name[2] = UNSTUFF_BITS(resp, 80, 8);
75 card->cid.prod_name[3] = UNSTUFF_BITS(resp, 72, 8);
76 card->cid.prod_name[4] = UNSTUFF_BITS(resp, 64, 8);
77 card->cid.prod_name[5] = UNSTUFF_BITS(resp, 56, 8);
78 card->cid.prod_name[6] = UNSTUFF_BITS(resp, 48, 8);
79 card->cid.hwrev = UNSTUFF_BITS(resp, 44, 4);
80 card->cid.fwrev = UNSTUFF_BITS(resp, 40, 4);
81 card->cid.serial = UNSTUFF_BITS(resp, 16, 24);
82 card->cid.month = UNSTUFF_BITS(resp, 12, 4);
83 card->cid.year = UNSTUFF_BITS(resp, 8, 4) + 1997;
84 break;
85
86 case 2: /* MMC v2.0 - v2.2 */
87 case 3: /* MMC v3.1 - v3.3 */
88 case 4: /* MMC v4 */
89 card->cid.manfid = UNSTUFF_BITS(resp, 120, 8);
90 card->cid.oemid = UNSTUFF_BITS(resp, 104, 16);
91 card->cid.prod_name[0] = UNSTUFF_BITS(resp, 96, 8);
92 card->cid.prod_name[1] = UNSTUFF_BITS(resp, 88, 8);
93 card->cid.prod_name[2] = UNSTUFF_BITS(resp, 80, 8);
94 card->cid.prod_name[3] = UNSTUFF_BITS(resp, 72, 8);
95 card->cid.prod_name[4] = UNSTUFF_BITS(resp, 64, 8);
96 card->cid.prod_name[5] = UNSTUFF_BITS(resp, 56, 8);
97 card->cid.serial = UNSTUFF_BITS(resp, 16, 32);
98 card->cid.month = UNSTUFF_BITS(resp, 12, 4);
99 card->cid.year = UNSTUFF_BITS(resp, 8, 4) + 1997;
100 break;
101
102 default:
facba917 103 printk(KERN_ERR "%s: card has unknown MMCA version %d\n",
7ea239d9 104 mmc_hostname(card->host), card->csd.mmca_vsn);
bd766312 105 return -EINVAL;
7ea239d9 106 }
bd766312
PO
107
108 return 0;
7ea239d9
PO
109}
110
dfe86cba
AH
111static void mmc_set_erase_size(struct mmc_card *card)
112{
113 if (card->ext_csd.erase_group_def & 1)
114 card->erase_size = card->ext_csd.hc_erase_size;
115 else
116 card->erase_size = card->csd.erase_size;
117
118 mmc_init_erase(card);
119}
120
7ea239d9
PO
121/*
122 * Given a 128-bit response, decode to our card CSD structure.
123 */
bd766312 124static int mmc_decode_csd(struct mmc_card *card)
7ea239d9
PO
125{
126 struct mmc_csd *csd = &card->csd;
dfe86cba 127 unsigned int e, m, a, b;
7ea239d9
PO
128 u32 *resp = card->raw_csd;
129
130 /*
131 * We only understand CSD structure v1.1 and v1.2.
132 * v1.2 has extra information in bits 15, 11 and 10.
6da24b78 133 * We also support eMMC v4.4 & v4.41.
7ea239d9 134 */
6da24b78
KP
135 csd->structure = UNSTUFF_BITS(resp, 126, 2);
136 if (csd->structure == 0) {
facba917 137 printk(KERN_ERR "%s: unrecognised CSD structure version %d\n",
6da24b78 138 mmc_hostname(card->host), csd->structure);
bd766312 139 return -EINVAL;
7ea239d9
PO
140 }
141
142 csd->mmca_vsn = UNSTUFF_BITS(resp, 122, 4);
143 m = UNSTUFF_BITS(resp, 115, 4);
144 e = UNSTUFF_BITS(resp, 112, 3);
145 csd->tacc_ns = (tacc_exp[e] * tacc_mant[m] + 9) / 10;
146 csd->tacc_clks = UNSTUFF_BITS(resp, 104, 8) * 100;
147
148 m = UNSTUFF_BITS(resp, 99, 4);
149 e = UNSTUFF_BITS(resp, 96, 3);
150 csd->max_dtr = tran_exp[e] * tran_mant[m];
151 csd->cmdclass = UNSTUFF_BITS(resp, 84, 12);
152
153 e = UNSTUFF_BITS(resp, 47, 3);
154 m = UNSTUFF_BITS(resp, 62, 12);
155 csd->capacity = (1 + m) << (e + 2);
156
157 csd->read_blkbits = UNSTUFF_BITS(resp, 80, 4);
158 csd->read_partial = UNSTUFF_BITS(resp, 79, 1);
159 csd->write_misalign = UNSTUFF_BITS(resp, 78, 1);
160 csd->read_misalign = UNSTUFF_BITS(resp, 77, 1);
161 csd->r2w_factor = UNSTUFF_BITS(resp, 26, 3);
162 csd->write_blkbits = UNSTUFF_BITS(resp, 22, 4);
163 csd->write_partial = UNSTUFF_BITS(resp, 21, 1);
bd766312 164
dfe86cba
AH
165 if (csd->write_blkbits >= 9) {
166 a = UNSTUFF_BITS(resp, 42, 5);
167 b = UNSTUFF_BITS(resp, 37, 5);
168 csd->erase_size = (a + 1) * (b + 1);
169 csd->erase_size <<= csd->write_blkbits - 9;
170 }
171
bd766312 172 return 0;
7ea239d9
PO
173}
174
175/*
89a73cf5 176 * Read and decode extended CSD.
7ea239d9 177 */
89a73cf5 178static int mmc_read_ext_csd(struct mmc_card *card)
7ea239d9
PO
179{
180 int err;
181 u8 *ext_csd;
182
183 BUG_ON(!card);
184
7ea239d9 185 if (card->csd.mmca_vsn < CSD_SPEC_VER_4)
17b0429d 186 return 0;
7ea239d9
PO
187
188 /*
189 * As the ext_csd is so large and mostly unused, we don't store the
190 * raw block in mmc_card.
191 */
192 ext_csd = kmalloc(512, GFP_KERNEL);
193 if (!ext_csd) {
194 printk(KERN_ERR "%s: could not allocate a buffer to "
adf66a0d 195 "receive the ext_csd.\n", mmc_hostname(card->host));
17b0429d 196 return -ENOMEM;
7ea239d9
PO
197 }
198
199 err = mmc_send_ext_csd(card, ext_csd);
17b0429d 200 if (err) {
d08ebedd
WM
201 /* If the host or the card can't do the switch,
202 * fail more gracefully. */
203 if ((err != -EINVAL)
204 && (err != -ENOSYS)
205 && (err != -EFAULT))
adf66a0d
PO
206 goto out;
207
7ea239d9
PO
208 /*
209 * High capacity cards should have this "magic" size
210 * stored in their CSD.
211 */
212 if (card->csd.capacity == (4096 * 512)) {
213 printk(KERN_ERR "%s: unable to read EXT_CSD "
214 "on a possible high capacity card. "
215 "Card will be ignored.\n",
216 mmc_hostname(card->host));
217 } else {
218 printk(KERN_WARNING "%s: unable to read "
219 "EXT_CSD, performance might "
220 "suffer.\n",
221 mmc_hostname(card->host));
17b0429d 222 err = 0;
7ea239d9 223 }
adf66a0d 224
7ea239d9
PO
225 goto out;
226 }
227
6da24b78
KP
228 /* Version is coded in the CSD_STRUCTURE byte in the EXT_CSD register */
229 if (card->csd.structure == 3) {
230 int ext_csd_struct = ext_csd[EXT_CSD_STRUCTURE];
231 if (ext_csd_struct > 2) {
232 printk(KERN_ERR "%s: unrecognised EXT_CSD structure "
233 "version %d\n", mmc_hostname(card->host),
234 ext_csd_struct);
235 err = -EINVAL;
236 goto out;
237 }
238 }
239
b1ebe384 240 card->ext_csd.rev = ext_csd[EXT_CSD_REV];
11723ab1 241 if (card->ext_csd.rev > 5) {
6da24b78
KP
242 printk(KERN_ERR "%s: unrecognised EXT_CSD revision %d\n",
243 mmc_hostname(card->host), card->ext_csd.rev);
00cedfa6
FM
244 err = -EINVAL;
245 goto out;
d7604d76
PO
246 }
247
b1ebe384 248 if (card->ext_csd.rev >= 2) {
d7604d76
PO
249 card->ext_csd.sectors =
250 ext_csd[EXT_CSD_SEC_CNT + 0] << 0 |
251 ext_csd[EXT_CSD_SEC_CNT + 1] << 8 |
252 ext_csd[EXT_CSD_SEC_CNT + 2] << 16 |
253 ext_csd[EXT_CSD_SEC_CNT + 3] << 24;
fc8a0985
HP
254
255 /* Cards with density > 2GiB are sector addressed */
256 if (card->ext_csd.sectors > (2u * 1024 * 1024 * 1024) / 512)
d7604d76
PO
257 mmc_card_set_blockaddr(card);
258 }
7ea239d9 259
7198f3c9 260 switch (ext_csd[EXT_CSD_CARD_TYPE] & EXT_CSD_CARD_TYPE_MASK) {
dfc13e84
HP
261 case EXT_CSD_CARD_TYPE_DDR_52 | EXT_CSD_CARD_TYPE_52 |
262 EXT_CSD_CARD_TYPE_26:
263 card->ext_csd.hs_max_dtr = 52000000;
264 card->ext_csd.card_type = EXT_CSD_CARD_TYPE_DDR_52;
265 break;
266 case EXT_CSD_CARD_TYPE_DDR_1_2V | EXT_CSD_CARD_TYPE_52 |
267 EXT_CSD_CARD_TYPE_26:
268 card->ext_csd.hs_max_dtr = 52000000;
269 card->ext_csd.card_type = EXT_CSD_CARD_TYPE_DDR_1_2V;
270 break;
271 case EXT_CSD_CARD_TYPE_DDR_1_8V | EXT_CSD_CARD_TYPE_52 |
272 EXT_CSD_CARD_TYPE_26:
273 card->ext_csd.hs_max_dtr = 52000000;
274 card->ext_csd.card_type = EXT_CSD_CARD_TYPE_DDR_1_8V;
275 break;
7ea239d9
PO
276 case EXT_CSD_CARD_TYPE_52 | EXT_CSD_CARD_TYPE_26:
277 card->ext_csd.hs_max_dtr = 52000000;
278 break;
279 case EXT_CSD_CARD_TYPE_26:
280 card->ext_csd.hs_max_dtr = 26000000;
281 break;
282 default:
283 /* MMC v4 spec says this cannot happen */
284 printk(KERN_WARNING "%s: card is mmc v4 but doesn't "
285 "support any high-speed modes.\n",
286 mmc_hostname(card->host));
7ea239d9
PO
287 }
288
b1ebe384
JL
289 if (card->ext_csd.rev >= 3) {
290 u8 sa_shift = ext_csd[EXT_CSD_S_A_TIMEOUT];
371a689f
AW
291 card->ext_csd.part_config = ext_csd[EXT_CSD_PART_CONFIG];
292
293 /* EXT_CSD value is in units of 10ms, but we store in ms */
294 card->ext_csd.part_time = 10 * ext_csd[EXT_CSD_PART_SWITCH_TIME];
b1ebe384
JL
295
296 /* Sleep / awake timeout in 100ns units */
297 if (sa_shift > 0 && sa_shift <= 0x17)
298 card->ext_csd.sa_timeout =
299 1 << ext_csd[EXT_CSD_S_A_TIMEOUT];
dfe86cba
AH
300 card->ext_csd.erase_group_def =
301 ext_csd[EXT_CSD_ERASE_GROUP_DEF];
302 card->ext_csd.hc_erase_timeout = 300 *
303 ext_csd[EXT_CSD_ERASE_TIMEOUT_MULT];
304 card->ext_csd.hc_erase_size =
305 ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE] << 10;
f4c5522b
AW
306
307 card->ext_csd.rel_sectors = ext_csd[EXT_CSD_REL_WR_SEC_C];
371a689f
AW
308
309 /*
310 * There are two boot regions of equal size, defined in
311 * multiples of 128K.
312 */
313 card->ext_csd.boot_size = ext_csd[EXT_CSD_BOOT_MULT] << 17;
dfe86cba
AH
314 }
315
316 if (card->ext_csd.rev >= 4) {
709de99d
CD
317 /*
318 * Enhanced area feature support -- check whether the eMMC
319 * card has the Enhanced area enabled. If so, export enhanced
320 * area offset and size to user by adding sysfs interface.
321 */
322 if ((ext_csd[EXT_CSD_PARTITION_SUPPORT] & 0x2) &&
323 (ext_csd[EXT_CSD_PARTITION_ATTRIBUTE] & 0x1)) {
324 u8 hc_erase_grp_sz =
325 ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE];
326 u8 hc_wp_grp_sz =
327 ext_csd[EXT_CSD_HC_WP_GRP_SIZE];
328
329 card->ext_csd.enhanced_area_en = 1;
330 /*
331 * calculate the enhanced data area offset, in bytes
332 */
333 card->ext_csd.enhanced_area_offset =
334 (ext_csd[139] << 24) + (ext_csd[138] << 16) +
335 (ext_csd[137] << 8) + ext_csd[136];
336 if (mmc_card_blockaddr(card))
337 card->ext_csd.enhanced_area_offset <<= 9;
338 /*
339 * calculate the enhanced data area size, in kilobytes
340 */
341 card->ext_csd.enhanced_area_size =
342 (ext_csd[142] << 16) + (ext_csd[141] << 8) +
343 ext_csd[140];
344 card->ext_csd.enhanced_area_size *=
345 (size_t)(hc_erase_grp_sz * hc_wp_grp_sz);
346 card->ext_csd.enhanced_area_size <<= 9;
347 } else {
348 /*
349 * If the enhanced area is not enabled, disable these
350 * device attributes.
351 */
352 card->ext_csd.enhanced_area_offset = -EINVAL;
353 card->ext_csd.enhanced_area_size = -EINVAL;
354 }
dfe86cba
AH
355 card->ext_csd.sec_trim_mult =
356 ext_csd[EXT_CSD_SEC_TRIM_MULT];
357 card->ext_csd.sec_erase_mult =
358 ext_csd[EXT_CSD_SEC_ERASE_MULT];
359 card->ext_csd.sec_feature_support =
360 ext_csd[EXT_CSD_SEC_FEATURE_SUPPORT];
361 card->ext_csd.trim_timeout = 300 *
362 ext_csd[EXT_CSD_TRIM_MULT];
b1ebe384
JL
363 }
364
f4c5522b
AW
365 if (card->ext_csd.rev >= 5)
366 card->ext_csd.rel_param = ext_csd[EXT_CSD_WR_REL_PARAM];
367
dfe86cba
AH
368 if (ext_csd[EXT_CSD_ERASED_MEM_CONT])
369 card->erased_byte = 0xFF;
370 else
371 card->erased_byte = 0x0;
372
7ea239d9
PO
373out:
374 kfree(ext_csd);
375
376 return err;
377}
378
51ec92e2
PO
379MMC_DEV_ATTR(cid, "%08x%08x%08x%08x\n", card->raw_cid[0], card->raw_cid[1],
380 card->raw_cid[2], card->raw_cid[3]);
381MMC_DEV_ATTR(csd, "%08x%08x%08x%08x\n", card->raw_csd[0], card->raw_csd[1],
382 card->raw_csd[2], card->raw_csd[3]);
383MMC_DEV_ATTR(date, "%02d/%04d\n", card->cid.month, card->cid.year);
dfe86cba
AH
384MMC_DEV_ATTR(erase_size, "%u\n", card->erase_size << 9);
385MMC_DEV_ATTR(preferred_erase_size, "%u\n", card->pref_erase << 9);
51ec92e2
PO
386MMC_DEV_ATTR(fwrev, "0x%x\n", card->cid.fwrev);
387MMC_DEV_ATTR(hwrev, "0x%x\n", card->cid.hwrev);
388MMC_DEV_ATTR(manfid, "0x%06x\n", card->cid.manfid);
389MMC_DEV_ATTR(name, "%s\n", card->cid.prod_name);
390MMC_DEV_ATTR(oemid, "0x%04x\n", card->cid.oemid);
391MMC_DEV_ATTR(serial, "0x%08x\n", card->cid.serial);
709de99d
CD
392MMC_DEV_ATTR(enhanced_area_offset, "%llu\n",
393 card->ext_csd.enhanced_area_offset);
394MMC_DEV_ATTR(enhanced_area_size, "%u\n", card->ext_csd.enhanced_area_size);
51ec92e2
PO
395
396static struct attribute *mmc_std_attrs[] = {
397 &dev_attr_cid.attr,
398 &dev_attr_csd.attr,
399 &dev_attr_date.attr,
dfe86cba
AH
400 &dev_attr_erase_size.attr,
401 &dev_attr_preferred_erase_size.attr,
51ec92e2
PO
402 &dev_attr_fwrev.attr,
403 &dev_attr_hwrev.attr,
404 &dev_attr_manfid.attr,
405 &dev_attr_name.attr,
406 &dev_attr_oemid.attr,
407 &dev_attr_serial.attr,
709de99d
CD
408 &dev_attr_enhanced_area_offset.attr,
409 &dev_attr_enhanced_area_size.attr,
51ec92e2
PO
410 NULL,
411};
412
413static struct attribute_group mmc_std_attr_group = {
414 .attrs = mmc_std_attrs,
415};
416
a4dbd674 417static const struct attribute_group *mmc_attr_groups[] = {
51ec92e2
PO
418 &mmc_std_attr_group,
419 NULL,
420};
421
422static struct device_type mmc_type = {
423 .groups = mmc_attr_groups,
424};
425
7ea239d9 426/*
6abaa0c9
PO
427 * Handle the detection and initialisation of a card.
428 *
8769392b 429 * In the case of a resume, "oldcard" will contain the card
6abaa0c9 430 * we're trying to reinitialise.
7ea239d9 431 */
8c75deae 432static int mmc_init_card(struct mmc_host *host, u32 ocr,
6abaa0c9 433 struct mmc_card *oldcard)
7ea239d9
PO
434{
435 struct mmc_card *card;
25d5c699 436 int err, ddr = 0;
7ea239d9
PO
437 u32 cid[4];
438 unsigned int max_dtr;
b676f039 439 u32 rocr;
7ea239d9
PO
440
441 BUG_ON(!host);
d84075c8 442 WARN_ON(!host->claimed);
7ea239d9 443
7ea239d9
PO
444 /*
445 * Since we're changing the OCR value, we seem to
446 * need to tell some cards to go back to the idle
447 * state. We wait 1ms to give cards time to
448 * respond.
449 */
450 mmc_go_idle(host);
451
452 /* The extra bit indicates that we support high capacity */
b676f039 453 err = mmc_send_op_cond(host, ocr | (1 << 30), &rocr);
17b0429d 454 if (err)
6abaa0c9 455 goto err;
7ea239d9 456
af517150
DB
457 /*
458 * For SPI, enable CRC as appropriate.
459 */
460 if (mmc_host_is_spi(host)) {
461 err = mmc_spi_set_crc(host, use_spi_crc);
462 if (err)
463 goto err;
464 }
465
7ea239d9
PO
466 /*
467 * Fetch CID from card.
468 */
af517150
DB
469 if (mmc_host_is_spi(host))
470 err = mmc_send_cid(host, cid);
471 else
472 err = mmc_all_send_cid(host, cid);
17b0429d 473 if (err)
7ea239d9
PO
474 goto err;
475
6abaa0c9 476 if (oldcard) {
adf66a0d
PO
477 if (memcmp(cid, oldcard->raw_cid, sizeof(cid)) != 0) {
478 err = -ENOENT;
6abaa0c9 479 goto err;
adf66a0d 480 }
6abaa0c9
PO
481
482 card = oldcard;
483 } else {
484 /*
485 * Allocate card structure.
486 */
51ec92e2 487 card = mmc_alloc_card(host, &mmc_type);
adf66a0d
PO
488 if (IS_ERR(card)) {
489 err = PTR_ERR(card);
6abaa0c9 490 goto err;
adf66a0d 491 }
7ea239d9 492
6abaa0c9
PO
493 card->type = MMC_TYPE_MMC;
494 card->rca = 1;
495 memcpy(card->raw_cid, cid, sizeof(card->raw_cid));
496 }
7ea239d9
PO
497
498 /*
af517150 499 * For native busses: set card RCA and quit open drain mode.
7ea239d9 500 */
af517150
DB
501 if (!mmc_host_is_spi(host)) {
502 err = mmc_set_relative_addr(card);
503 if (err)
504 goto free_card;
7ea239d9 505
af517150
DB
506 mmc_set_bus_mode(host, MMC_BUSMODE_PUSHPULL);
507 }
7ea239d9 508
6abaa0c9
PO
509 if (!oldcard) {
510 /*
511 * Fetch CSD from card.
512 */
513 err = mmc_send_csd(card, card->raw_csd);
17b0429d 514 if (err)
6abaa0c9 515 goto free_card;
7ea239d9 516
bd766312 517 err = mmc_decode_csd(card);
adf66a0d 518 if (err)
bd766312
PO
519 goto free_card;
520 err = mmc_decode_cid(card);
adf66a0d 521 if (err)
bd766312 522 goto free_card;
6abaa0c9 523 }
7ea239d9
PO
524
525 /*
89a73cf5 526 * Select card, as all following commands rely on that.
7ea239d9 527 */
af517150
DB
528 if (!mmc_host_is_spi(host)) {
529 err = mmc_select_card(card);
530 if (err)
531 goto free_card;
532 }
7ea239d9 533
6abaa0c9
PO
534 if (!oldcard) {
535 /*
af517150 536 * Fetch and process extended CSD.
6abaa0c9
PO
537 */
538 err = mmc_read_ext_csd(card);
17b0429d 539 if (err)
6abaa0c9 540 goto free_card;
b676f039
PR
541
542 /* If doing byte addressing, check if required to do sector
543 * addressing. Handle the case of <2GB cards needing sector
544 * addressing. See section 8.1 JEDEC Standard JED84-A441;
545 * ocr register has bit 30 set for sector addressing.
546 */
547 if (!(mmc_card_blockaddr(card)) && (rocr & (1<<30)))
548 mmc_card_set_blockaddr(card);
549
dfe86cba
AH
550 /* Erase size depends on CSD and Extended CSD */
551 mmc_set_erase_size(card);
6abaa0c9 552 }
7ea239d9 553
709de99d
CD
554 /*
555 * If enhanced_area_en is TRUE, host needs to enable ERASE_GRP_DEF
25985edc 556 * bit. This bit will be lost every time after a reset or power off.
709de99d
CD
557 */
558 if (card->ext_csd.enhanced_area_en) {
559 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
d3a8d95d 560 EXT_CSD_ERASE_GROUP_DEF, 1, 0);
709de99d
CD
561
562 if (err && err != -EBADMSG)
563 goto free_card;
564
565 if (err) {
566 err = 0;
567 /*
568 * Just disable enhanced area off & sz
569 * will try to enable ERASE_GROUP_DEF
570 * during next time reinit
571 */
572 card->ext_csd.enhanced_area_offset = -EINVAL;
573 card->ext_csd.enhanced_area_size = -EINVAL;
574 } else {
575 card->ext_csd.erase_group_def = 1;
576 /*
577 * enable ERASE_GRP_DEF successfully.
578 * This will affect the erase size, so
579 * here need to reset erase size
580 */
581 mmc_set_erase_size(card);
582 }
583 }
584
41e2a489
PR
585 /*
586 * Ensure eMMC user default partition is enabled
587 */
371a689f
AW
588 if (card->ext_csd.part_config & EXT_CSD_PART_CONFIG_ACC_MASK) {
589 card->ext_csd.part_config &= ~EXT_CSD_PART_CONFIG_ACC_MASK;
590 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL, EXT_CSD_PART_CONFIG,
591 card->ext_csd.part_config,
592 card->ext_csd.part_time);
593 if (err && err != -EBADMSG)
594 goto free_card;
41e2a489
PR
595 }
596
89a73cf5
PO
597 /*
598 * Activate high speed (if supported)
599 */
600 if ((card->ext_csd.hs_max_dtr != 0) &&
601 (host->caps & MMC_CAP_MMC_HIGHSPEED)) {
602 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
d3a8d95d 603 EXT_CSD_HS_TIMING, 1, 0);
ef0b27d4 604 if (err && err != -EBADMSG)
89a73cf5
PO
605 goto free_card;
606
ef0b27d4
AH
607 if (err) {
608 printk(KERN_WARNING "%s: switch to highspeed failed\n",
609 mmc_hostname(card->host));
610 err = 0;
611 } else {
612 mmc_card_set_highspeed(card);
613 mmc_set_timing(card->host, MMC_TIMING_MMC_HS);
614 }
89a73cf5
PO
615 }
616
7ea239d9
PO
617 /*
618 * Compute bus speed.
619 */
620 max_dtr = (unsigned int)-1;
621
622 if (mmc_card_highspeed(card)) {
623 if (max_dtr > card->ext_csd.hs_max_dtr)
624 max_dtr = card->ext_csd.hs_max_dtr;
625 } else if (max_dtr > card->csd.max_dtr) {
626 max_dtr = card->csd.max_dtr;
627 }
628
629 mmc_set_clock(host, max_dtr);
630
dfc13e84 631 /*
0f8d8ea6 632 * Indicate DDR mode (if supported).
dfc13e84
HP
633 */
634 if (mmc_card_highspeed(card)) {
635 if ((card->ext_csd.card_type & EXT_CSD_CARD_TYPE_DDR_1_8V)
636 && (host->caps & (MMC_CAP_1_8V_DDR)))
49e3b5a4 637 ddr = MMC_1_8V_DDR_MODE;
dfc13e84
HP
638 else if ((card->ext_csd.card_type & EXT_CSD_CARD_TYPE_DDR_1_2V)
639 && (host->caps & (MMC_CAP_1_2V_DDR)))
49e3b5a4 640 ddr = MMC_1_2V_DDR_MODE;
dfc13e84
HP
641 }
642
89a73cf5 643 /*
0f8d8ea6 644 * Activate wide bus and DDR (if supported).
89a73cf5
PO
645 */
646 if ((card->csd.mmca_vsn >= CSD_SPEC_VER_4) &&
b30f8af3 647 (host->caps & (MMC_CAP_4_BIT_DATA | MMC_CAP_8_BIT_DATA))) {
22113efd
AL
648 static unsigned ext_csd_bits[][2] = {
649 { EXT_CSD_BUS_WIDTH_8, EXT_CSD_DDR_BUS_WIDTH_8 },
650 { EXT_CSD_BUS_WIDTH_4, EXT_CSD_DDR_BUS_WIDTH_4 },
651 { EXT_CSD_BUS_WIDTH_1, EXT_CSD_BUS_WIDTH_1 },
652 };
653 static unsigned bus_widths[] = {
654 MMC_BUS_WIDTH_8,
655 MMC_BUS_WIDTH_4,
656 MMC_BUS_WIDTH_1
657 };
658 unsigned idx, bus_width = 0;
659
660 if (host->caps & MMC_CAP_8_BIT_DATA)
661 idx = 0;
662 else
663 idx = 1;
664 for (; idx < ARRAY_SIZE(bus_widths); idx++) {
665 bus_width = bus_widths[idx];
666 if (bus_width == MMC_BUS_WIDTH_1)
667 ddr = 0; /* no DDR for 1-bit width */
668 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
669 EXT_CSD_BUS_WIDTH,
d3a8d95d
AW
670 ext_csd_bits[idx][0],
671 0);
22113efd 672 if (!err) {
08c82dfa
TI
673 mmc_set_bus_width_ddr(card->host,
674 bus_width, MMC_SDR_MODE);
22113efd
AL
675 /*
676 * If controller can't handle bus width test,
677 * use the highest bus width to maintain
678 * compatibility with previous MMC behavior.
679 */
680 if (!(host->caps & MMC_CAP_BUS_WIDTH_TEST))
681 break;
22113efd
AL
682 err = mmc_bus_test(card, bus_width);
683 if (!err)
684 break;
685 }
b30f8af3
JL
686 }
687
22113efd
AL
688 if (!err && ddr) {
689 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
d3a8d95d
AW
690 EXT_CSD_BUS_WIDTH,
691 ext_csd_bits[idx][1],
692 0);
22113efd 693 }
ef0b27d4 694 if (err) {
0f8d8ea6 695 printk(KERN_WARNING "%s: switch to bus width %d ddr %d "
22113efd
AL
696 "failed\n", mmc_hostname(card->host),
697 1 << bus_width, ddr);
698 goto free_card;
699 } else if (ddr) {
700 mmc_card_set_ddr_mode(card);
0f8d8ea6 701 mmc_set_bus_width_ddr(card->host, bus_width, ddr);
ef0b27d4 702 }
89a73cf5
PO
703 }
704
6abaa0c9
PO
705 if (!oldcard)
706 host->card = card;
707
17b0429d 708 return 0;
6abaa0c9
PO
709
710free_card:
711 if (!oldcard)
712 mmc_remove_card(card);
713err:
714
adf66a0d 715 return err;
6abaa0c9
PO
716}
717
718/*
719 * Host is being removed. Free up the current card.
720 */
721static void mmc_remove(struct mmc_host *host)
722{
723 BUG_ON(!host);
724 BUG_ON(!host->card);
725
726 mmc_remove_card(host->card);
727 host->card = NULL;
728}
729
730/*
731 * Card detection callback from host.
732 */
733static void mmc_detect(struct mmc_host *host)
734{
735 int err;
736
737 BUG_ON(!host);
738 BUG_ON(!host->card);
739
740 mmc_claim_host(host);
741
742 /*
743 * Just check if our card has been removed.
744 */
745 err = mmc_send_status(host->card, NULL);
746
747 mmc_release_host(host);
748
17b0429d 749 if (err) {
4101c16a 750 mmc_remove(host);
6abaa0c9
PO
751
752 mmc_claim_host(host);
753 mmc_detach_bus(host);
754 mmc_release_host(host);
755 }
756}
757
6abaa0c9
PO
758/*
759 * Suspend callback from host.
760 */
95cdfb72 761static int mmc_suspend(struct mmc_host *host)
6abaa0c9
PO
762{
763 BUG_ON(!host);
764 BUG_ON(!host->card);
7ea239d9 765
6abaa0c9 766 mmc_claim_host(host);
af517150
DB
767 if (!mmc_host_is_spi(host))
768 mmc_deselect_cards(host);
6abaa0c9 769 host->card->state &= ~MMC_STATE_HIGHSPEED;
7ea239d9 770 mmc_release_host(host);
95cdfb72
NP
771
772 return 0;
6abaa0c9 773}
7ea239d9 774
6abaa0c9
PO
775/*
776 * Resume callback from host.
777 *
778 * This function tries to determine if the same card is still present
779 * and, if so, restore all state to it.
780 */
95cdfb72 781static int mmc_resume(struct mmc_host *host)
6abaa0c9
PO
782{
783 int err;
784
785 BUG_ON(!host);
786 BUG_ON(!host->card);
787
788 mmc_claim_host(host);
8c75deae 789 err = mmc_init_card(host, host->ocr, host->card);
2986d0bf
PO
790 mmc_release_host(host);
791
95cdfb72 792 return err;
6abaa0c9
PO
793}
794
12ae637f 795static int mmc_power_restore(struct mmc_host *host)
eae1aeee 796{
12ae637f
OBC
797 int ret;
798
eae1aeee
AH
799 host->card->state &= ~MMC_STATE_HIGHSPEED;
800 mmc_claim_host(host);
12ae637f 801 ret = mmc_init_card(host, host->ocr, host->card);
eae1aeee 802 mmc_release_host(host);
12ae637f
OBC
803
804 return ret;
eae1aeee
AH
805}
806
b1ebe384
JL
807static int mmc_sleep(struct mmc_host *host)
808{
809 struct mmc_card *card = host->card;
810 int err = -ENOSYS;
811
812 if (card && card->ext_csd.rev >= 3) {
813 err = mmc_card_sleepawake(host, 1);
814 if (err < 0)
815 pr_debug("%s: Error %d while putting card into sleep",
816 mmc_hostname(host), err);
817 }
818
819 return err;
820}
821
822static int mmc_awake(struct mmc_host *host)
823{
824 struct mmc_card *card = host->card;
825 int err = -ENOSYS;
826
827 if (card && card->ext_csd.rev >= 3) {
828 err = mmc_card_sleepawake(host, 0);
829 if (err < 0)
830 pr_debug("%s: Error %d while awaking sleeping card",
831 mmc_hostname(host), err);
832 }
833
834 return err;
835}
836
6abaa0c9 837static const struct mmc_bus_ops mmc_ops = {
b1ebe384
JL
838 .awake = mmc_awake,
839 .sleep = mmc_sleep,
9feae246
AH
840 .remove = mmc_remove,
841 .detect = mmc_detect,
842 .suspend = NULL,
843 .resume = NULL,
eae1aeee 844 .power_restore = mmc_power_restore,
9feae246
AH
845};
846
847static const struct mmc_bus_ops mmc_ops_unsafe = {
b1ebe384
JL
848 .awake = mmc_awake,
849 .sleep = mmc_sleep,
6abaa0c9
PO
850 .remove = mmc_remove,
851 .detect = mmc_detect,
852 .suspend = mmc_suspend,
853 .resume = mmc_resume,
eae1aeee 854 .power_restore = mmc_power_restore,
6abaa0c9
PO
855};
856
9feae246
AH
857static void mmc_attach_bus_ops(struct mmc_host *host)
858{
859 const struct mmc_bus_ops *bus_ops;
860
71d7d3d1 861 if (!mmc_card_is_removable(host))
9feae246
AH
862 bus_ops = &mmc_ops_unsafe;
863 else
864 bus_ops = &mmc_ops;
865 mmc_attach_bus(host, bus_ops);
866}
867
6abaa0c9
PO
868/*
869 * Starting point for MMC card init.
870 */
807e8e40 871int mmc_attach_mmc(struct mmc_host *host)
6abaa0c9
PO
872{
873 int err;
807e8e40 874 u32 ocr;
6abaa0c9
PO
875
876 BUG_ON(!host);
d84075c8 877 WARN_ON(!host->claimed);
6abaa0c9 878
807e8e40
AR
879 err = mmc_send_op_cond(host, 0, &ocr);
880 if (err)
881 return err;
882
9feae246 883 mmc_attach_bus_ops(host);
8f230f45
TI
884 if (host->ocr_avail_mmc)
885 host->ocr_avail = host->ocr_avail_mmc;
6abaa0c9 886
af517150
DB
887 /*
888 * We need to get OCR a different way for SPI.
889 */
890 if (mmc_host_is_spi(host)) {
891 err = mmc_spi_read_ocr(host, 1, &ocr);
892 if (err)
893 goto err;
894 }
895
6abaa0c9
PO
896 /*
897 * Sanity check the voltages that the card claims to
898 * support.
899 */
900 if (ocr & 0x7F) {
901 printk(KERN_WARNING "%s: card claims to support voltages "
902 "below the defined range. These will be ignored.\n",
903 mmc_hostname(host));
904 ocr &= ~0x7F;
905 }
906
907 host->ocr = mmc_select_voltage(host, ocr);
908
909 /*
910 * Can we support the voltage of the card?
911 */
109b5bed
PO
912 if (!host->ocr) {
913 err = -EINVAL;
6abaa0c9 914 goto err;
109b5bed 915 }
6abaa0c9
PO
916
917 /*
918 * Detect and init the card.
919 */
8c75deae 920 err = mmc_init_card(host, host->ocr, NULL);
17b0429d 921 if (err)
6abaa0c9
PO
922 goto err;
923
924 mmc_release_host(host);
4101c16a 925 err = mmc_add_card(host->card);
807e8e40 926 mmc_claim_host(host);
7ea239d9 927 if (err)
2986d0bf 928 goto remove_card;
7ea239d9
PO
929
930 return 0;
931
2986d0bf 932remove_card:
807e8e40 933 mmc_release_host(host);
6abaa0c9 934 mmc_remove_card(host->card);
2986d0bf 935 mmc_claim_host(host);
807e8e40 936 host->card = NULL;
7ea239d9
PO
937err:
938 mmc_detach_bus(host);
7ea239d9 939
109b5bed
PO
940 printk(KERN_ERR "%s: error %d whilst initialising MMC card\n",
941 mmc_hostname(host), err);
942
adf66a0d 943 return err;
7ea239d9 944}