]> git.ipfire.org Git - thirdparty/kernel/stable.git/blame - drivers/mmc/core/mmc.c
mmc: vub300: Don't use mmc_card_present() when validating for inserted card
[thirdparty/kernel/stable.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>
81f8a7be 14#include <linux/of.h>
5a0e3ad6 15#include <linux/slab.h>
0205a904 16#include <linux/stat.h>
0cb403a2 17#include <linux/pm_runtime.h>
7ea239d9
PO
18
19#include <linux/mmc/host.h>
20#include <linux/mmc/card.h>
21#include <linux/mmc/mmc.h>
22
23#include "core.h"
436f8daa 24#include "host.h"
4101c16a 25#include "bus.h"
7ea239d9 26#include "mmc_ops.h"
4c4cb171 27#include "sd_ops.h"
7ea239d9 28
fe1b5700
UH
29#define DEFAULT_CMD6_TIMEOUT_MS 500
30
7ea239d9
PO
31static const unsigned int tran_exp[] = {
32 10000, 100000, 1000000, 10000000,
33 0, 0, 0, 0
34};
35
36static const unsigned char tran_mant[] = {
37 0, 10, 12, 13, 15, 20, 25, 30,
38 35, 40, 45, 50, 55, 60, 70, 80,
39};
40
41static const unsigned int tacc_exp[] = {
42 1, 10, 100, 1000, 10000, 100000, 1000000, 10000000,
43};
44
45static const unsigned int tacc_mant[] = {
46 0, 10, 12, 13, 15, 20, 25, 30,
47 35, 40, 45, 50, 55, 60, 70, 80,
48};
49
5320226a
P
50static const struct mmc_fixup mmc_ext_csd_fixups[] = {
51 /*
52 * Certain Hynix eMMC 4.41 cards might get broken when HPI feature
53 * is used so disable the HPI feature for such buggy cards.
54 */
55 MMC_FIXUP_EXT_CSD_REV(CID_NAME_ANY, CID_MANFID_HYNIX,
56 0x014a, add_quirk, MMC_QUIRK_BROKEN_HPI, 5),
57
58 END_FIXUP
59};
60
7ea239d9
PO
61#define UNSTUFF_BITS(resp,start,size) \
62 ({ \
63 const int __size = size; \
64 const u32 __mask = (__size < 32 ? 1 << __size : 0) - 1; \
65 const int __off = 3 - ((start) / 32); \
66 const int __shft = (start) & 31; \
67 u32 __res; \
68 \
69 __res = resp[__off] >> __shft; \
70 if (__size + __shft > 32) \
71 __res |= resp[__off-1] << ((32 - __shft) % 32); \
72 __res & __mask; \
73 })
74
75/*
76 * Given the decoded CSD structure, decode the raw CID to our CID structure.
77 */
bd766312 78static int mmc_decode_cid(struct mmc_card *card)
7ea239d9
PO
79{
80 u32 *resp = card->raw_cid;
81
82 /*
83 * The selection of the format here is based upon published
84 * specs from sandisk and from what people have reported.
85 */
86 switch (card->csd.mmca_vsn) {
87 case 0: /* MMC v1.0 - v1.2 */
88 case 1: /* MMC v1.4 */
89 card->cid.manfid = UNSTUFF_BITS(resp, 104, 24);
90 card->cid.prod_name[0] = UNSTUFF_BITS(resp, 96, 8);
91 card->cid.prod_name[1] = UNSTUFF_BITS(resp, 88, 8);
92 card->cid.prod_name[2] = UNSTUFF_BITS(resp, 80, 8);
93 card->cid.prod_name[3] = UNSTUFF_BITS(resp, 72, 8);
94 card->cid.prod_name[4] = UNSTUFF_BITS(resp, 64, 8);
95 card->cid.prod_name[5] = UNSTUFF_BITS(resp, 56, 8);
96 card->cid.prod_name[6] = UNSTUFF_BITS(resp, 48, 8);
97 card->cid.hwrev = UNSTUFF_BITS(resp, 44, 4);
98 card->cid.fwrev = UNSTUFF_BITS(resp, 40, 4);
99 card->cid.serial = UNSTUFF_BITS(resp, 16, 24);
100 card->cid.month = UNSTUFF_BITS(resp, 12, 4);
101 card->cid.year = UNSTUFF_BITS(resp, 8, 4) + 1997;
102 break;
103
104 case 2: /* MMC v2.0 - v2.2 */
105 case 3: /* MMC v3.1 - v3.3 */
106 case 4: /* MMC v4 */
107 card->cid.manfid = UNSTUFF_BITS(resp, 120, 8);
108 card->cid.oemid = UNSTUFF_BITS(resp, 104, 16);
109 card->cid.prod_name[0] = UNSTUFF_BITS(resp, 96, 8);
110 card->cid.prod_name[1] = UNSTUFF_BITS(resp, 88, 8);
111 card->cid.prod_name[2] = UNSTUFF_BITS(resp, 80, 8);
112 card->cid.prod_name[3] = UNSTUFF_BITS(resp, 72, 8);
113 card->cid.prod_name[4] = UNSTUFF_BITS(resp, 64, 8);
114 card->cid.prod_name[5] = UNSTUFF_BITS(resp, 56, 8);
51e7e8b6 115 card->cid.prv = UNSTUFF_BITS(resp, 48, 8);
7ea239d9
PO
116 card->cid.serial = UNSTUFF_BITS(resp, 16, 32);
117 card->cid.month = UNSTUFF_BITS(resp, 12, 4);
118 card->cid.year = UNSTUFF_BITS(resp, 8, 4) + 1997;
119 break;
120
121 default:
a3c76eb9 122 pr_err("%s: card has unknown MMCA version %d\n",
7ea239d9 123 mmc_hostname(card->host), card->csd.mmca_vsn);
bd766312 124 return -EINVAL;
7ea239d9 125 }
bd766312
PO
126
127 return 0;
7ea239d9
PO
128}
129
dfe86cba
AH
130static void mmc_set_erase_size(struct mmc_card *card)
131{
132 if (card->ext_csd.erase_group_def & 1)
133 card->erase_size = card->ext_csd.hc_erase_size;
134 else
135 card->erase_size = card->csd.erase_size;
136
137 mmc_init_erase(card);
138}
139
7ea239d9
PO
140/*
141 * Given a 128-bit response, decode to our card CSD structure.
142 */
bd766312 143static int mmc_decode_csd(struct mmc_card *card)
7ea239d9
PO
144{
145 struct mmc_csd *csd = &card->csd;
dfe86cba 146 unsigned int e, m, a, b;
7ea239d9
PO
147 u32 *resp = card->raw_csd;
148
149 /*
150 * We only understand CSD structure v1.1 and v1.2.
151 * v1.2 has extra information in bits 15, 11 and 10.
6da24b78 152 * We also support eMMC v4.4 & v4.41.
7ea239d9 153 */
6da24b78
KP
154 csd->structure = UNSTUFF_BITS(resp, 126, 2);
155 if (csd->structure == 0) {
a3c76eb9 156 pr_err("%s: unrecognised CSD structure version %d\n",
6da24b78 157 mmc_hostname(card->host), csd->structure);
bd766312 158 return -EINVAL;
7ea239d9
PO
159 }
160
161 csd->mmca_vsn = UNSTUFF_BITS(resp, 122, 4);
162 m = UNSTUFF_BITS(resp, 115, 4);
163 e = UNSTUFF_BITS(resp, 112, 3);
164 csd->tacc_ns = (tacc_exp[e] * tacc_mant[m] + 9) / 10;
165 csd->tacc_clks = UNSTUFF_BITS(resp, 104, 8) * 100;
166
167 m = UNSTUFF_BITS(resp, 99, 4);
168 e = UNSTUFF_BITS(resp, 96, 3);
169 csd->max_dtr = tran_exp[e] * tran_mant[m];
170 csd->cmdclass = UNSTUFF_BITS(resp, 84, 12);
171
172 e = UNSTUFF_BITS(resp, 47, 3);
173 m = UNSTUFF_BITS(resp, 62, 12);
174 csd->capacity = (1 + m) << (e + 2);
175
176 csd->read_blkbits = UNSTUFF_BITS(resp, 80, 4);
177 csd->read_partial = UNSTUFF_BITS(resp, 79, 1);
178 csd->write_misalign = UNSTUFF_BITS(resp, 78, 1);
179 csd->read_misalign = UNSTUFF_BITS(resp, 77, 1);
3d705d14 180 csd->dsr_imp = UNSTUFF_BITS(resp, 76, 1);
7ea239d9
PO
181 csd->r2w_factor = UNSTUFF_BITS(resp, 26, 3);
182 csd->write_blkbits = UNSTUFF_BITS(resp, 22, 4);
183 csd->write_partial = UNSTUFF_BITS(resp, 21, 1);
bd766312 184
dfe86cba
AH
185 if (csd->write_blkbits >= 9) {
186 a = UNSTUFF_BITS(resp, 42, 5);
187 b = UNSTUFF_BITS(resp, 37, 5);
188 csd->erase_size = (a + 1) * (b + 1);
189 csd->erase_size <<= csd->write_blkbits - 9;
190 }
191
bd766312 192 return 0;
7ea239d9
PO
193}
194
96cf5f02
SJ
195static void mmc_select_card_type(struct mmc_card *card)
196{
197 struct mmc_host *host = card->host;
0a5b6438 198 u8 card_type = card->ext_csd.raw_card_type;
5f1a4dd0 199 u32 caps = host->caps, caps2 = host->caps2;
577fb131 200 unsigned int hs_max_dtr = 0, hs200_max_dtr = 0;
2415c0ef 201 unsigned int avail_type = 0;
96cf5f02 202
2415c0ef
SJ
203 if (caps & MMC_CAP_MMC_HIGHSPEED &&
204 card_type & EXT_CSD_CARD_TYPE_HS_26) {
96cf5f02 205 hs_max_dtr = MMC_HIGH_26_MAX_DTR;
2415c0ef
SJ
206 avail_type |= EXT_CSD_CARD_TYPE_HS_26;
207 }
96cf5f02
SJ
208
209 if (caps & MMC_CAP_MMC_HIGHSPEED &&
2415c0ef 210 card_type & EXT_CSD_CARD_TYPE_HS_52) {
96cf5f02 211 hs_max_dtr = MMC_HIGH_52_MAX_DTR;
2415c0ef
SJ
212 avail_type |= EXT_CSD_CARD_TYPE_HS_52;
213 }
96cf5f02 214
2415c0ef
SJ
215 if (caps & MMC_CAP_1_8V_DDR &&
216 card_type & EXT_CSD_CARD_TYPE_DDR_1_8V) {
96cf5f02 217 hs_max_dtr = MMC_HIGH_DDR_MAX_DTR;
2415c0ef
SJ
218 avail_type |= EXT_CSD_CARD_TYPE_DDR_1_8V;
219 }
220
221 if (caps & MMC_CAP_1_2V_DDR &&
222 card_type & EXT_CSD_CARD_TYPE_DDR_1_2V) {
223 hs_max_dtr = MMC_HIGH_DDR_MAX_DTR;
224 avail_type |= EXT_CSD_CARD_TYPE_DDR_1_2V;
225 }
96cf5f02 226
2415c0ef
SJ
227 if (caps2 & MMC_CAP2_HS200_1_8V_SDR &&
228 card_type & EXT_CSD_CARD_TYPE_HS200_1_8V) {
577fb131 229 hs200_max_dtr = MMC_HS200_MAX_DTR;
2415c0ef
SJ
230 avail_type |= EXT_CSD_CARD_TYPE_HS200_1_8V;
231 }
232
233 if (caps2 & MMC_CAP2_HS200_1_2V_SDR &&
234 card_type & EXT_CSD_CARD_TYPE_HS200_1_2V) {
577fb131 235 hs200_max_dtr = MMC_HS200_MAX_DTR;
2415c0ef
SJ
236 avail_type |= EXT_CSD_CARD_TYPE_HS200_1_2V;
237 }
96cf5f02 238
0a5b6438
SJ
239 if (caps2 & MMC_CAP2_HS400_1_8V &&
240 card_type & EXT_CSD_CARD_TYPE_HS400_1_8V) {
241 hs200_max_dtr = MMC_HS200_MAX_DTR;
242 avail_type |= EXT_CSD_CARD_TYPE_HS400_1_8V;
243 }
244
245 if (caps2 & MMC_CAP2_HS400_1_2V &&
246 card_type & EXT_CSD_CARD_TYPE_HS400_1_2V) {
247 hs200_max_dtr = MMC_HS200_MAX_DTR;
248 avail_type |= EXT_CSD_CARD_TYPE_HS400_1_2V;
249 }
250
81ac2af6
SL
251 if ((caps2 & MMC_CAP2_HS400_ES) &&
252 card->ext_csd.strobe_support &&
253 (avail_type & EXT_CSD_CARD_TYPE_HS400))
254 avail_type |= EXT_CSD_CARD_TYPE_HS400ES;
255
96cf5f02 256 card->ext_csd.hs_max_dtr = hs_max_dtr;
577fb131 257 card->ext_csd.hs200_max_dtr = hs200_max_dtr;
2415c0ef 258 card->mmc_avail_type = avail_type;
96cf5f02
SJ
259}
260
b4493eea
GS
261static void mmc_manage_enhanced_area(struct mmc_card *card, u8 *ext_csd)
262{
994324bb
GS
263 u8 hc_erase_grp_sz, hc_wp_grp_sz;
264
265 /*
266 * Disable these attributes by default
267 */
268 card->ext_csd.enhanced_area_offset = -EINVAL;
269 card->ext_csd.enhanced_area_size = -EINVAL;
b4493eea
GS
270
271 /*
272 * Enhanced area feature support -- check whether the eMMC
273 * card has the Enhanced area enabled. If so, export enhanced
274 * area offset and size to user by adding sysfs interface.
275 */
276 if ((ext_csd[EXT_CSD_PARTITION_SUPPORT] & 0x2) &&
277 (ext_csd[EXT_CSD_PARTITION_ATTRIBUTE] & 0x1)) {
994324bb
GS
278 if (card->ext_csd.partition_setting_completed) {
279 hc_erase_grp_sz =
280 ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE];
281 hc_wp_grp_sz =
282 ext_csd[EXT_CSD_HC_WP_GRP_SIZE];
b4493eea 283
994324bb
GS
284 /*
285 * calculate the enhanced data area offset, in bytes
286 */
287 card->ext_csd.enhanced_area_offset =
ded8a5f9
KM
288 (((unsigned long long)ext_csd[139]) << 24) +
289 (((unsigned long long)ext_csd[138]) << 16) +
290 (((unsigned long long)ext_csd[137]) << 8) +
291 (((unsigned long long)ext_csd[136]));
994324bb
GS
292 if (mmc_card_blockaddr(card))
293 card->ext_csd.enhanced_area_offset <<= 9;
294 /*
295 * calculate the enhanced data area size, in kilobytes
296 */
297 card->ext_csd.enhanced_area_size =
298 (ext_csd[142] << 16) + (ext_csd[141] << 8) +
299 ext_csd[140];
300 card->ext_csd.enhanced_area_size *=
301 (size_t)(hc_erase_grp_sz * hc_wp_grp_sz);
302 card->ext_csd.enhanced_area_size <<= 9;
303 } else {
304 pr_warn("%s: defines enhanced area without partition setting complete\n",
305 mmc_hostname(card->host));
306 }
b4493eea
GS
307 }
308}
309
310static void mmc_manage_gp_partitions(struct mmc_card *card, u8 *ext_csd)
311{
b4493eea 312 int idx;
994324bb
GS
313 u8 hc_erase_grp_sz, hc_wp_grp_sz;
314 unsigned int part_size;
b4493eea
GS
315
316 /*
317 * General purpose partition feature support --
318 * If ext_csd has the size of general purpose partitions,
319 * set size, part_cfg, partition name in mmc_part.
320 */
321 if (ext_csd[EXT_CSD_PARTITION_SUPPORT] &
322 EXT_CSD_PART_SUPPORT_PART_EN) {
994324bb
GS
323 hc_erase_grp_sz =
324 ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE];
325 hc_wp_grp_sz =
326 ext_csd[EXT_CSD_HC_WP_GRP_SIZE];
b4493eea
GS
327
328 for (idx = 0; idx < MMC_NUM_GP_PARTITION; idx++) {
329 if (!ext_csd[EXT_CSD_GP_SIZE_MULT + idx * 3] &&
330 !ext_csd[EXT_CSD_GP_SIZE_MULT + idx * 3 + 1] &&
331 !ext_csd[EXT_CSD_GP_SIZE_MULT + idx * 3 + 2])
332 continue;
994324bb
GS
333 if (card->ext_csd.partition_setting_completed == 0) {
334 pr_warn("%s: has partition size defined without partition complete\n",
335 mmc_hostname(card->host));
336 break;
337 }
b4493eea
GS
338 part_size =
339 (ext_csd[EXT_CSD_GP_SIZE_MULT + idx * 3 + 2]
340 << 16) +
341 (ext_csd[EXT_CSD_GP_SIZE_MULT + idx * 3 + 1]
342 << 8) +
343 ext_csd[EXT_CSD_GP_SIZE_MULT + idx * 3];
344 part_size *= (size_t)(hc_erase_grp_sz *
345 hc_wp_grp_sz);
346 mmc_part_add(card, part_size << 19,
347 EXT_CSD_PART_CONFIG_ACC_GP0 + idx,
348 "gp%d", idx, false,
349 MMC_BLK_DATA_AREA_GP);
350 }
351 }
352}
353
1c447116
AH
354/* Minimum partition switch timeout in milliseconds */
355#define MMC_MIN_PART_SWITCH_TIME 300
356
08ee80cc
PR
357/*
358 * Decode extended CSD.
359 */
076ec38a 360static int mmc_decode_ext_csd(struct mmc_card *card, u8 *ext_csd)
08ee80cc 361{
e0c368d5
NJ
362 int err = 0, idx;
363 unsigned int part_size;
81f8a7be
HG
364 struct device_node *np;
365 bool broken_hpi = false;
08ee80cc 366
6da24b78 367 /* Version is coded in the CSD_STRUCTURE byte in the EXT_CSD register */
f39b2dd9 368 card->ext_csd.raw_ext_csd_structure = ext_csd[EXT_CSD_STRUCTURE];
6da24b78 369 if (card->csd.structure == 3) {
f39b2dd9 370 if (card->ext_csd.raw_ext_csd_structure > 2) {
a3c76eb9 371 pr_err("%s: unrecognised EXT_CSD structure "
6da24b78 372 "version %d\n", mmc_hostname(card->host),
f39b2dd9 373 card->ext_csd.raw_ext_csd_structure);
6da24b78
KP
374 err = -EINVAL;
375 goto out;
376 }
377 }
378
81f8a7be
HG
379 np = mmc_of_find_child_device(card->host, 0);
380 if (np && of_device_is_compatible(np, "mmc-card"))
381 broken_hpi = of_property_read_bool(np, "broken-hpi");
382 of_node_put(np);
383
03a59437
RI
384 /*
385 * The EXT_CSD format is meant to be forward compatible. As long
386 * as CSD_STRUCTURE does not change, all values for EXT_CSD_REV
387 * are authorized, see JEDEC JESD84-B50 section B.8.
388 */
b1ebe384 389 card->ext_csd.rev = ext_csd[EXT_CSD_REV];
d7604d76 390
5320226a
P
391 /* fixup device after ext_csd revision field is updated */
392 mmc_fixup_device(card, mmc_ext_csd_fixups);
393
f39b2dd9
PR
394 card->ext_csd.raw_sectors[0] = ext_csd[EXT_CSD_SEC_CNT + 0];
395 card->ext_csd.raw_sectors[1] = ext_csd[EXT_CSD_SEC_CNT + 1];
396 card->ext_csd.raw_sectors[2] = ext_csd[EXT_CSD_SEC_CNT + 2];
397 card->ext_csd.raw_sectors[3] = ext_csd[EXT_CSD_SEC_CNT + 3];
b1ebe384 398 if (card->ext_csd.rev >= 2) {
d7604d76
PO
399 card->ext_csd.sectors =
400 ext_csd[EXT_CSD_SEC_CNT + 0] << 0 |
401 ext_csd[EXT_CSD_SEC_CNT + 1] << 8 |
402 ext_csd[EXT_CSD_SEC_CNT + 2] << 16 |
403 ext_csd[EXT_CSD_SEC_CNT + 3] << 24;
fc8a0985
HP
404
405 /* Cards with density > 2GiB are sector addressed */
406 if (card->ext_csd.sectors > (2u * 1024 * 1024 * 1024) / 512)
d7604d76
PO
407 mmc_card_set_blockaddr(card);
408 }
96cf5f02 409
81ac2af6 410 card->ext_csd.strobe_support = ext_csd[EXT_CSD_STROBE_SUPPORT];
f39b2dd9 411 card->ext_csd.raw_card_type = ext_csd[EXT_CSD_CARD_TYPE];
96cf5f02 412 mmc_select_card_type(card);
7ea239d9 413
f39b2dd9
PR
414 card->ext_csd.raw_s_a_timeout = ext_csd[EXT_CSD_S_A_TIMEOUT];
415 card->ext_csd.raw_erase_timeout_mult =
416 ext_csd[EXT_CSD_ERASE_TIMEOUT_MULT];
417 card->ext_csd.raw_hc_erase_grp_size =
418 ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE];
b1ebe384
JL
419 if (card->ext_csd.rev >= 3) {
420 u8 sa_shift = ext_csd[EXT_CSD_S_A_TIMEOUT];
371a689f
AW
421 card->ext_csd.part_config = ext_csd[EXT_CSD_PART_CONFIG];
422
423 /* EXT_CSD value is in units of 10ms, but we store in ms */
424 card->ext_csd.part_time = 10 * ext_csd[EXT_CSD_PART_SWITCH_TIME];
1c447116
AH
425 /* Some eMMC set the value too low so set a minimum */
426 if (card->ext_csd.part_time &&
427 card->ext_csd.part_time < MMC_MIN_PART_SWITCH_TIME)
428 card->ext_csd.part_time = MMC_MIN_PART_SWITCH_TIME;
b1ebe384
JL
429
430 /* Sleep / awake timeout in 100ns units */
431 if (sa_shift > 0 && sa_shift <= 0x17)
432 card->ext_csd.sa_timeout =
433 1 << ext_csd[EXT_CSD_S_A_TIMEOUT];
dfe86cba
AH
434 card->ext_csd.erase_group_def =
435 ext_csd[EXT_CSD_ERASE_GROUP_DEF];
436 card->ext_csd.hc_erase_timeout = 300 *
437 ext_csd[EXT_CSD_ERASE_TIMEOUT_MULT];
438 card->ext_csd.hc_erase_size =
439 ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE] << 10;
f4c5522b
AW
440
441 card->ext_csd.rel_sectors = ext_csd[EXT_CSD_REL_WR_SEC_C];
371a689f
AW
442
443 /*
444 * There are two boot regions of equal size, defined in
445 * multiples of 128K.
446 */
e0c368d5
NJ
447 if (ext_csd[EXT_CSD_BOOT_MULT] && mmc_boot_partition_access(card->host)) {
448 for (idx = 0; idx < MMC_NUM_BOOT_PARTITION; idx++) {
449 part_size = ext_csd[EXT_CSD_BOOT_MULT] << 17;
450 mmc_part_add(card, part_size,
451 EXT_CSD_PART_CONFIG_ACC_BOOT0 + idx,
add710ea
JR
452 "boot%d", idx, true,
453 MMC_BLK_DATA_AREA_BOOT);
e0c368d5
NJ
454 }
455 }
dfe86cba
AH
456 }
457
f39b2dd9 458 card->ext_csd.raw_hc_erase_gap_size =
dd13b4ed 459 ext_csd[EXT_CSD_HC_WP_GRP_SIZE];
f39b2dd9
PR
460 card->ext_csd.raw_sec_trim_mult =
461 ext_csd[EXT_CSD_SEC_TRIM_MULT];
462 card->ext_csd.raw_sec_erase_mult =
463 ext_csd[EXT_CSD_SEC_ERASE_MULT];
464 card->ext_csd.raw_sec_feature_support =
465 ext_csd[EXT_CSD_SEC_FEATURE_SUPPORT];
466 card->ext_csd.raw_trim_mult =
467 ext_csd[EXT_CSD_TRIM_MULT];
836dc2fe 468 card->ext_csd.raw_partition_support = ext_csd[EXT_CSD_PARTITION_SUPPORT];
b097e07f 469 card->ext_csd.raw_driver_strength = ext_csd[EXT_CSD_DRIVER_STRENGTH];
dfe86cba 470 if (card->ext_csd.rev >= 4) {
69803d4f
GS
471 if (ext_csd[EXT_CSD_PARTITION_SETTING_COMPLETED] &
472 EXT_CSD_PART_SETTING_COMPLETED)
473 card->ext_csd.partition_setting_completed = 1;
474 else
475 card->ext_csd.partition_setting_completed = 0;
476
b4493eea 477 mmc_manage_enhanced_area(card, ext_csd);
709de99d 478
b4493eea 479 mmc_manage_gp_partitions(card, ext_csd);
e0c368d5 480
dfe86cba
AH
481 card->ext_csd.sec_trim_mult =
482 ext_csd[EXT_CSD_SEC_TRIM_MULT];
483 card->ext_csd.sec_erase_mult =
484 ext_csd[EXT_CSD_SEC_ERASE_MULT];
485 card->ext_csd.sec_feature_support =
486 ext_csd[EXT_CSD_SEC_FEATURE_SUPPORT];
487 card->ext_csd.trim_timeout = 300 *
488 ext_csd[EXT_CSD_TRIM_MULT];
add710ea
JR
489
490 /*
491 * Note that the call to mmc_part_add above defaults to read
492 * only. If this default assumption is changed, the call must
493 * take into account the value of boot_locked below.
494 */
495 card->ext_csd.boot_ro_lock = ext_csd[EXT_CSD_BOOT_WP];
496 card->ext_csd.boot_ro_lockable = true;
60443712
FS
497
498 /* Save power class values */
499 card->ext_csd.raw_pwr_cl_52_195 =
500 ext_csd[EXT_CSD_PWR_CL_52_195];
501 card->ext_csd.raw_pwr_cl_26_195 =
502 ext_csd[EXT_CSD_PWR_CL_26_195];
503 card->ext_csd.raw_pwr_cl_52_360 =
504 ext_csd[EXT_CSD_PWR_CL_52_360];
505 card->ext_csd.raw_pwr_cl_26_360 =
506 ext_csd[EXT_CSD_PWR_CL_26_360];
507 card->ext_csd.raw_pwr_cl_200_195 =
508 ext_csd[EXT_CSD_PWR_CL_200_195];
509 card->ext_csd.raw_pwr_cl_200_360 =
510 ext_csd[EXT_CSD_PWR_CL_200_360];
511 card->ext_csd.raw_pwr_cl_ddr_52_195 =
512 ext_csd[EXT_CSD_PWR_CL_DDR_52_195];
513 card->ext_csd.raw_pwr_cl_ddr_52_360 =
514 ext_csd[EXT_CSD_PWR_CL_DDR_52_360];
0a5b6438
SJ
515 card->ext_csd.raw_pwr_cl_ddr_200_360 =
516 ext_csd[EXT_CSD_PWR_CL_DDR_200_360];
b1ebe384
JL
517 }
518
b2499518 519 if (card->ext_csd.rev >= 5) {
7c4f10ac
RI
520 /* Adjust production date as per JEDEC JESD84-B451 */
521 if (card->cid.year < 2010)
522 card->cid.year += 16;
523
950d56ac 524 /* check whether the eMMC card supports BKOPS */
5320226a
P
525 if (!mmc_card_broken_hpi(card) &&
526 ext_csd[EXT_CSD_BKOPS_SUPPORT] & 0x1) {
950d56ac 527 card->ext_csd.bkops = 1;
0501be64
AS
528 card->ext_csd.man_bkops_en =
529 (ext_csd[EXT_CSD_BKOPS_EN] &
530 EXT_CSD_MANUAL_BKOPS_MASK);
950d56ac
JC
531 card->ext_csd.raw_bkops_status =
532 ext_csd[EXT_CSD_BKOPS_STATUS];
0501be64 533 if (!card->ext_csd.man_bkops_en)
4ec96b4c 534 pr_debug("%s: MAN_BKOPS_EN bit is not set\n",
950d56ac
JC
535 mmc_hostname(card->host));
536 }
537
eb0d8f13 538 /* check whether the eMMC card supports HPI */
5320226a
P
539 if (!mmc_card_broken_hpi(card) &&
540 !broken_hpi && (ext_csd[EXT_CSD_HPI_FEATURES] & 0x1)) {
eb0d8f13
JC
541 card->ext_csd.hpi = 1;
542 if (ext_csd[EXT_CSD_HPI_FEATURES] & 0x2)
543 card->ext_csd.hpi_cmd = MMC_STOP_TRANSMISSION;
544 else
545 card->ext_csd.hpi_cmd = MMC_SEND_STATUS;
546 /*
547 * Indicate the maximum timeout to close
548 * a command interrupted by HPI
549 */
550 card->ext_csd.out_of_int_time =
551 ext_csd[EXT_CSD_OUT_OF_INTERRUPT_TIME] * 10;
552 }
553
f4c5522b 554 card->ext_csd.rel_param = ext_csd[EXT_CSD_WR_REL_PARAM];
b2499518 555 card->ext_csd.rst_n_function = ext_csd[EXT_CSD_RST_N_FUNCTION];
090d25fe
LP
556
557 /*
558 * RPMB regions are defined in multiples of 128K.
559 */
560 card->ext_csd.raw_rpmb_size_mult = ext_csd[EXT_CSD_RPMB_MULT];
d0123cca 561 if (ext_csd[EXT_CSD_RPMB_MULT] && mmc_host_cmd23(card->host)) {
090d25fe
LP
562 mmc_part_add(card, ext_csd[EXT_CSD_RPMB_MULT] << 17,
563 EXT_CSD_PART_CONFIG_ACC_RPMB,
564 "rpmb", 0, false,
565 MMC_BLK_DATA_AREA_RPMB);
566 }
b2499518 567 }
f4c5522b 568
5238acbe 569 card->ext_csd.raw_erased_mem_count = ext_csd[EXT_CSD_ERASED_MEM_CONT];
dfe86cba
AH
570 if (ext_csd[EXT_CSD_ERASED_MEM_CONT])
571 card->erased_byte = 0xFF;
572 else
573 card->erased_byte = 0x0;
574
336c716a 575 /* eMMC v4.5 or later */
fe1b5700 576 card->ext_csd.generic_cmd6_time = DEFAULT_CMD6_TIMEOUT_MS;
bec8726a 577 if (card->ext_csd.rev >= 6) {
336c716a
SJ
578 card->ext_csd.feature_support |= MMC_DISCARD_FEATURE;
579
b23cf0bd
SJ
580 card->ext_csd.generic_cmd6_time = 10 *
581 ext_csd[EXT_CSD_GENERIC_CMD6_TIME];
bec8726a
G
582 card->ext_csd.power_off_longtime = 10 *
583 ext_csd[EXT_CSD_POWER_OFF_LONG_TIME];
b23cf0bd 584
336c716a
SJ
585 card->ext_csd.cache_size =
586 ext_csd[EXT_CSD_CACHE_SIZE + 0] << 0 |
587 ext_csd[EXT_CSD_CACHE_SIZE + 1] << 8 |
588 ext_csd[EXT_CSD_CACHE_SIZE + 2] << 16 |
589 ext_csd[EXT_CSD_CACHE_SIZE + 3] << 24;
4265900e
SD
590
591 if (ext_csd[EXT_CSD_DATA_SECTOR_SIZE] == 1)
592 card->ext_csd.data_sector_size = 4096;
593 else
594 card->ext_csd.data_sector_size = 512;
595
596 if ((ext_csd[EXT_CSD_DATA_TAG_SUPPORT] & 1) &&
597 (ext_csd[EXT_CSD_TAG_UNIT_SIZE] <= 8)) {
598 card->ext_csd.data_tag_unit_size =
599 ((unsigned int) 1 << ext_csd[EXT_CSD_TAG_UNIT_SIZE]) *
600 (card->ext_csd.data_sector_size);
601 } else {
602 card->ext_csd.data_tag_unit_size = 0;
603 }
abd9ac14
SJ
604
605 card->ext_csd.max_packed_writes =
606 ext_csd[EXT_CSD_MAX_PACKED_WRITES];
607 card->ext_csd.max_packed_reads =
608 ext_csd[EXT_CSD_MAX_PACKED_READS];
a5075eb9
SD
609 } else {
610 card->ext_csd.data_sector_size = 512;
336c716a 611 }
881d1c25 612
0f762426
GG
613 /* eMMC v5 or later */
614 if (card->ext_csd.rev >= 7) {
615 memcpy(card->ext_csd.fwrev, &ext_csd[EXT_CSD_FIRMWARE_VERSION],
616 MMC_FIRMWARE_LEN);
617 card->ext_csd.ffu_capable =
618 (ext_csd[EXT_CSD_SUPPORTED_MODE] & 0x1) &&
619 !(ext_csd[EXT_CSD_FW_CONFIG] & 0x1);
46bc5c40
JL
620
621 card->ext_csd.pre_eol_info = ext_csd[EXT_CSD_PRE_EOL_INFO];
622 card->ext_csd.device_life_time_est_typ_a =
623 ext_csd[EXT_CSD_DEVICE_LIFE_TIME_EST_TYP_A];
624 card->ext_csd.device_life_time_est_typ_b =
625 ext_csd[EXT_CSD_DEVICE_LIFE_TIME_EST_TYP_B];
0f762426 626 }
925ff3a7
AH
627
628 /* eMMC v5.1 or later */
629 if (card->ext_csd.rev >= 8) {
630 card->ext_csd.cmdq_support = ext_csd[EXT_CSD_CMDQ_SUPPORT] &
631 EXT_CSD_CMDQ_SUPPORTED;
632 card->ext_csd.cmdq_depth = (ext_csd[EXT_CSD_CMDQ_DEPTH] &
633 EXT_CSD_CMDQ_DEPTH_MASK) + 1;
634 /* Exclude inefficiently small queue depths */
635 if (card->ext_csd.cmdq_depth <= 2) {
636 card->ext_csd.cmdq_support = false;
637 card->ext_csd.cmdq_depth = 0;
638 }
639 if (card->ext_csd.cmdq_support) {
640 pr_debug("%s: Command Queue supported depth %u\n",
641 mmc_hostname(card->host),
642 card->ext_csd.cmdq_depth);
643 }
644 }
7ea239d9 645out:
08ee80cc
PR
646 return err;
647}
648
076ec38a
UH
649static int mmc_read_ext_csd(struct mmc_card *card)
650{
c197787c 651 u8 *ext_csd;
076ec38a
UH
652 int err;
653
c197787c
UH
654 if (!mmc_can_ext_csd(card))
655 return 0;
656
076ec38a 657 err = mmc_get_ext_csd(card, &ext_csd);
c197787c
UH
658 if (err) {
659 /* If the host or the card can't do the switch,
660 * fail more gracefully. */
661 if ((err != -EINVAL)
662 && (err != -ENOSYS)
663 && (err != -EFAULT))
664 return err;
665
666 /*
667 * High capacity cards should have this "magic" size
668 * stored in their CSD.
669 */
670 if (card->csd.capacity == (4096 * 512)) {
671 pr_err("%s: unable to read EXT_CSD on a possible high capacity card. Card will be ignored.\n",
672 mmc_hostname(card->host));
673 } else {
674 pr_warn("%s: unable to read EXT_CSD, performance might suffer\n",
675 mmc_hostname(card->host));
676 err = 0;
677 }
678
076ec38a 679 return err;
c197787c 680 }
076ec38a
UH
681
682 err = mmc_decode_ext_csd(card, ext_csd);
683 kfree(ext_csd);
684 return err;
685}
686
f39b2dd9 687static int mmc_compare_ext_csds(struct mmc_card *card, unsigned bus_width)
08ee80cc
PR
688{
689 u8 *bw_ext_csd;
690 int err;
691
f39b2dd9
PR
692 if (bus_width == MMC_BUS_WIDTH_1)
693 return 0;
694
08ee80cc 695 err = mmc_get_ext_csd(card, &bw_ext_csd);
c197787c
UH
696 if (err)
697 return err;
08ee80cc 698
08ee80cc 699 /* only compare read only fields */
dd13b4ed 700 err = !((card->ext_csd.raw_partition_support ==
08ee80cc 701 bw_ext_csd[EXT_CSD_PARTITION_SUPPORT]) &&
f39b2dd9 702 (card->ext_csd.raw_erased_mem_count ==
08ee80cc 703 bw_ext_csd[EXT_CSD_ERASED_MEM_CONT]) &&
f39b2dd9 704 (card->ext_csd.rev ==
08ee80cc 705 bw_ext_csd[EXT_CSD_REV]) &&
f39b2dd9 706 (card->ext_csd.raw_ext_csd_structure ==
08ee80cc 707 bw_ext_csd[EXT_CSD_STRUCTURE]) &&
f39b2dd9 708 (card->ext_csd.raw_card_type ==
08ee80cc 709 bw_ext_csd[EXT_CSD_CARD_TYPE]) &&
f39b2dd9 710 (card->ext_csd.raw_s_a_timeout ==
08ee80cc 711 bw_ext_csd[EXT_CSD_S_A_TIMEOUT]) &&
f39b2dd9 712 (card->ext_csd.raw_hc_erase_gap_size ==
08ee80cc 713 bw_ext_csd[EXT_CSD_HC_WP_GRP_SIZE]) &&
f39b2dd9 714 (card->ext_csd.raw_erase_timeout_mult ==
08ee80cc 715 bw_ext_csd[EXT_CSD_ERASE_TIMEOUT_MULT]) &&
f39b2dd9 716 (card->ext_csd.raw_hc_erase_grp_size ==
08ee80cc 717 bw_ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE]) &&
f39b2dd9 718 (card->ext_csd.raw_sec_trim_mult ==
08ee80cc 719 bw_ext_csd[EXT_CSD_SEC_TRIM_MULT]) &&
f39b2dd9 720 (card->ext_csd.raw_sec_erase_mult ==
08ee80cc 721 bw_ext_csd[EXT_CSD_SEC_ERASE_MULT]) &&
f39b2dd9 722 (card->ext_csd.raw_sec_feature_support ==
08ee80cc 723 bw_ext_csd[EXT_CSD_SEC_FEATURE_SUPPORT]) &&
f39b2dd9 724 (card->ext_csd.raw_trim_mult ==
08ee80cc 725 bw_ext_csd[EXT_CSD_TRIM_MULT]) &&
f39b2dd9
PR
726 (card->ext_csd.raw_sectors[0] ==
727 bw_ext_csd[EXT_CSD_SEC_CNT + 0]) &&
728 (card->ext_csd.raw_sectors[1] ==
729 bw_ext_csd[EXT_CSD_SEC_CNT + 1]) &&
730 (card->ext_csd.raw_sectors[2] ==
731 bw_ext_csd[EXT_CSD_SEC_CNT + 2]) &&
732 (card->ext_csd.raw_sectors[3] ==
60443712
FS
733 bw_ext_csd[EXT_CSD_SEC_CNT + 3]) &&
734 (card->ext_csd.raw_pwr_cl_52_195 ==
735 bw_ext_csd[EXT_CSD_PWR_CL_52_195]) &&
736 (card->ext_csd.raw_pwr_cl_26_195 ==
737 bw_ext_csd[EXT_CSD_PWR_CL_26_195]) &&
738 (card->ext_csd.raw_pwr_cl_52_360 ==
739 bw_ext_csd[EXT_CSD_PWR_CL_52_360]) &&
740 (card->ext_csd.raw_pwr_cl_26_360 ==
741 bw_ext_csd[EXT_CSD_PWR_CL_26_360]) &&
742 (card->ext_csd.raw_pwr_cl_200_195 ==
743 bw_ext_csd[EXT_CSD_PWR_CL_200_195]) &&
744 (card->ext_csd.raw_pwr_cl_200_360 ==
745 bw_ext_csd[EXT_CSD_PWR_CL_200_360]) &&
746 (card->ext_csd.raw_pwr_cl_ddr_52_195 ==
747 bw_ext_csd[EXT_CSD_PWR_CL_DDR_52_195]) &&
748 (card->ext_csd.raw_pwr_cl_ddr_52_360 ==
0a5b6438
SJ
749 bw_ext_csd[EXT_CSD_PWR_CL_DDR_52_360]) &&
750 (card->ext_csd.raw_pwr_cl_ddr_200_360 ==
751 bw_ext_csd[EXT_CSD_PWR_CL_DDR_200_360]));
752
08ee80cc
PR
753 if (err)
754 err = -EINVAL;
755
00b41b58 756 kfree(bw_ext_csd);
7ea239d9
PO
757 return err;
758}
759
51ec92e2
PO
760MMC_DEV_ATTR(cid, "%08x%08x%08x%08x\n", card->raw_cid[0], card->raw_cid[1],
761 card->raw_cid[2], card->raw_cid[3]);
762MMC_DEV_ATTR(csd, "%08x%08x%08x%08x\n", card->raw_csd[0], card->raw_csd[1],
763 card->raw_csd[2], card->raw_csd[3]);
764MMC_DEV_ATTR(date, "%02d/%04d\n", card->cid.month, card->cid.year);
dfe86cba
AH
765MMC_DEV_ATTR(erase_size, "%u\n", card->erase_size << 9);
766MMC_DEV_ATTR(preferred_erase_size, "%u\n", card->pref_erase << 9);
0f762426 767MMC_DEV_ATTR(ffu_capable, "%d\n", card->ext_csd.ffu_capable);
51ec92e2
PO
768MMC_DEV_ATTR(hwrev, "0x%x\n", card->cid.hwrev);
769MMC_DEV_ATTR(manfid, "0x%06x\n", card->cid.manfid);
770MMC_DEV_ATTR(name, "%s\n", card->cid.prod_name);
771MMC_DEV_ATTR(oemid, "0x%04x\n", card->cid.oemid);
51e7e8b6 772MMC_DEV_ATTR(prv, "0x%x\n", card->cid.prv);
46bc5c40
JL
773MMC_DEV_ATTR(pre_eol_info, "%02x\n", card->ext_csd.pre_eol_info);
774MMC_DEV_ATTR(life_time, "0x%02x 0x%02x\n",
775 card->ext_csd.device_life_time_est_typ_a,
776 card->ext_csd.device_life_time_est_typ_b);
51ec92e2 777MMC_DEV_ATTR(serial, "0x%08x\n", card->cid.serial);
709de99d
CD
778MMC_DEV_ATTR(enhanced_area_offset, "%llu\n",
779 card->ext_csd.enhanced_area_offset);
780MMC_DEV_ATTR(enhanced_area_size, "%u\n", card->ext_csd.enhanced_area_size);
188cc042
LP
781MMC_DEV_ATTR(raw_rpmb_size_mult, "%#x\n", card->ext_csd.raw_rpmb_size_mult);
782MMC_DEV_ATTR(rel_sectors, "%#x\n", card->ext_csd.rel_sectors);
5fb06af7 783MMC_DEV_ATTR(ocr, "%08x\n", card->ocr);
51ec92e2 784
0f762426
GG
785static ssize_t mmc_fwrev_show(struct device *dev,
786 struct device_attribute *attr,
787 char *buf)
788{
789 struct mmc_card *card = mmc_dev_to_card(dev);
790
791 if (card->ext_csd.rev < 7) {
792 return sprintf(buf, "0x%x\n", card->cid.fwrev);
793 } else {
794 return sprintf(buf, "0x%*phN\n", MMC_FIRMWARE_LEN,
795 card->ext_csd.fwrev);
796 }
797}
798
799static DEVICE_ATTR(fwrev, S_IRUGO, mmc_fwrev_show, NULL);
800
6825a606
BP
801static ssize_t mmc_dsr_show(struct device *dev,
802 struct device_attribute *attr,
803 char *buf)
804{
805 struct mmc_card *card = mmc_dev_to_card(dev);
806 struct mmc_host *host = card->host;
807
808 if (card->csd.dsr_imp && host->dsr_req)
809 return sprintf(buf, "0x%x\n", host->dsr);
810 else
811 /* return default DSR value */
812 return sprintf(buf, "0x%x\n", 0x404);
813}
814
815static DEVICE_ATTR(dsr, S_IRUGO, mmc_dsr_show, NULL);
816
51ec92e2
PO
817static struct attribute *mmc_std_attrs[] = {
818 &dev_attr_cid.attr,
819 &dev_attr_csd.attr,
820 &dev_attr_date.attr,
dfe86cba
AH
821 &dev_attr_erase_size.attr,
822 &dev_attr_preferred_erase_size.attr,
51ec92e2 823 &dev_attr_fwrev.attr,
0f762426 824 &dev_attr_ffu_capable.attr,
51ec92e2
PO
825 &dev_attr_hwrev.attr,
826 &dev_attr_manfid.attr,
827 &dev_attr_name.attr,
828 &dev_attr_oemid.attr,
51e7e8b6 829 &dev_attr_prv.attr,
46bc5c40
JL
830 &dev_attr_pre_eol_info.attr,
831 &dev_attr_life_time.attr,
51ec92e2 832 &dev_attr_serial.attr,
709de99d
CD
833 &dev_attr_enhanced_area_offset.attr,
834 &dev_attr_enhanced_area_size.attr,
188cc042
LP
835 &dev_attr_raw_rpmb_size_mult.attr,
836 &dev_attr_rel_sectors.attr,
5fb06af7 837 &dev_attr_ocr.attr,
6825a606 838 &dev_attr_dsr.attr,
51ec92e2
PO
839 NULL,
840};
d1e58212 841ATTRIBUTE_GROUPS(mmc_std);
51ec92e2
PO
842
843static struct device_type mmc_type = {
d1e58212 844 .groups = mmc_std_groups,
51ec92e2
PO
845};
846
b87d8dbf
G
847/*
848 * Select the PowerClass for the current bus width
849 * If power class is defined for 4/8 bit bus in the
850 * extended CSD register, select it by executing the
851 * mmc_switch command.
852 */
2385049d
SJ
853static int __mmc_select_powerclass(struct mmc_card *card,
854 unsigned int bus_width)
b87d8dbf 855{
2385049d
SJ
856 struct mmc_host *host = card->host;
857 struct mmc_ext_csd *ext_csd = &card->ext_csd;
60443712 858 unsigned int pwrclass_val = 0;
2385049d 859 int err = 0;
b87d8dbf 860
b87d8dbf
G
861 switch (1 << host->ios.vdd) {
862 case MMC_VDD_165_195:
2385049d
SJ
863 if (host->ios.clock <= MMC_HIGH_26_MAX_DTR)
864 pwrclass_val = ext_csd->raw_pwr_cl_26_195;
865 else if (host->ios.clock <= MMC_HIGH_52_MAX_DTR)
60443712 866 pwrclass_val = (bus_width <= EXT_CSD_BUS_WIDTH_8) ?
2385049d
SJ
867 ext_csd->raw_pwr_cl_52_195 :
868 ext_csd->raw_pwr_cl_ddr_52_195;
869 else if (host->ios.clock <= MMC_HS200_MAX_DTR)
870 pwrclass_val = ext_csd->raw_pwr_cl_200_195;
b87d8dbf 871 break;
93fc5a47
SJ
872 case MMC_VDD_27_28:
873 case MMC_VDD_28_29:
874 case MMC_VDD_29_30:
875 case MMC_VDD_30_31:
876 case MMC_VDD_31_32:
b87d8dbf
G
877 case MMC_VDD_32_33:
878 case MMC_VDD_33_34:
879 case MMC_VDD_34_35:
880 case MMC_VDD_35_36:
2385049d
SJ
881 if (host->ios.clock <= MMC_HIGH_26_MAX_DTR)
882 pwrclass_val = ext_csd->raw_pwr_cl_26_360;
883 else if (host->ios.clock <= MMC_HIGH_52_MAX_DTR)
60443712 884 pwrclass_val = (bus_width <= EXT_CSD_BUS_WIDTH_8) ?
2385049d
SJ
885 ext_csd->raw_pwr_cl_52_360 :
886 ext_csd->raw_pwr_cl_ddr_52_360;
887 else if (host->ios.clock <= MMC_HS200_MAX_DTR)
0a5b6438
SJ
888 pwrclass_val = (bus_width == EXT_CSD_DDR_BUS_WIDTH_8) ?
889 ext_csd->raw_pwr_cl_ddr_200_360 :
890 ext_csd->raw_pwr_cl_200_360;
b87d8dbf
G
891 break;
892 default:
6606110d
JP
893 pr_warn("%s: Voltage range not supported for power class\n",
894 mmc_hostname(host));
b87d8dbf
G
895 return -EINVAL;
896 }
897
b87d8dbf
G
898 if (bus_width & (EXT_CSD_BUS_WIDTH_8 | EXT_CSD_DDR_BUS_WIDTH_8))
899 pwrclass_val = (pwrclass_val & EXT_CSD_PWR_CL_8BIT_MASK) >>
900 EXT_CSD_PWR_CL_8BIT_SHIFT;
901 else
902 pwrclass_val = (pwrclass_val & EXT_CSD_PWR_CL_4BIT_MASK) >>
903 EXT_CSD_PWR_CL_4BIT_SHIFT;
904
905 /* If the power class is different from the default value */
906 if (pwrclass_val > 0) {
907 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
908 EXT_CSD_POWER_CLASS,
909 pwrclass_val,
71fe3eb0 910 card->ext_csd.generic_cmd6_time);
b87d8dbf
G
911 }
912
913 return err;
914}
915
2385049d
SJ
916static int mmc_select_powerclass(struct mmc_card *card)
917{
918 struct mmc_host *host = card->host;
919 u32 bus_width, ext_csd_bits;
920 int err, ddr;
921
922 /* Power class selection is supported for versions >= 4.0 */
148bcab2 923 if (!mmc_can_ext_csd(card))
2385049d
SJ
924 return 0;
925
926 bus_width = host->ios.bus_width;
927 /* Power class values are defined only for 4/8 bit bus */
928 if (bus_width == MMC_BUS_WIDTH_1)
929 return 0;
930
931 ddr = card->mmc_avail_type & EXT_CSD_CARD_TYPE_DDR_52;
932 if (ddr)
933 ext_csd_bits = (bus_width == MMC_BUS_WIDTH_8) ?
934 EXT_CSD_DDR_BUS_WIDTH_8 : EXT_CSD_DDR_BUS_WIDTH_4;
935 else
936 ext_csd_bits = (bus_width == MMC_BUS_WIDTH_8) ?
937 EXT_CSD_BUS_WIDTH_8 : EXT_CSD_BUS_WIDTH_4;
938
939 err = __mmc_select_powerclass(card, ext_csd_bits);
940 if (err)
941 pr_warn("%s: power class selection to bus width %d ddr %d failed\n",
942 mmc_hostname(host), 1 << bus_width, ddr);
943
944 return err;
945}
946
a4924c71 947/*
577fb131 948 * Set the bus speed for the selected speed mode.
a4924c71 949 */
577fb131
SJ
950static void mmc_set_bus_speed(struct mmc_card *card)
951{
952 unsigned int max_dtr = (unsigned int)-1;
953
0a5b6438
SJ
954 if ((mmc_card_hs200(card) || mmc_card_hs400(card)) &&
955 max_dtr > card->ext_csd.hs200_max_dtr)
577fb131
SJ
956 max_dtr = card->ext_csd.hs200_max_dtr;
957 else if (mmc_card_hs(card) && max_dtr > card->ext_csd.hs_max_dtr)
958 max_dtr = card->ext_csd.hs_max_dtr;
959 else if (max_dtr > card->csd.max_dtr)
960 max_dtr = card->csd.max_dtr;
961
962 mmc_set_clock(card->host, max_dtr);
963}
964
965/*
966 * Select the bus width amoung 4-bit and 8-bit(SDR).
967 * If the bus width is changed successfully, return the selected width value.
968 * Zero is returned instead of error value if the wide width is not supported.
969 */
970static int mmc_select_bus_width(struct mmc_card *card)
a4924c71 971{
a4924c71 972 static unsigned ext_csd_bits[] = {
a4924c71 973 EXT_CSD_BUS_WIDTH_8,
577fb131 974 EXT_CSD_BUS_WIDTH_4,
a4924c71
G
975 };
976 static unsigned bus_widths[] = {
a4924c71 977 MMC_BUS_WIDTH_8,
577fb131 978 MMC_BUS_WIDTH_4,
a4924c71 979 };
577fb131
SJ
980 struct mmc_host *host = card->host;
981 unsigned idx, bus_width = 0;
982 int err = 0;
a4924c71 983
1c2d26e3 984 if (!mmc_can_ext_csd(card) ||
577fb131
SJ
985 !(host->caps & (MMC_CAP_4_BIT_DATA | MMC_CAP_8_BIT_DATA)))
986 return 0;
a4924c71 987
577fb131 988 idx = (host->caps & MMC_CAP_8_BIT_DATA) ? 0 : 1;
a4924c71
G
989
990 /*
991 * Unlike SD, MMC cards dont have a configuration register to notify
992 * supported bus width. So bus test command should be run to identify
993 * the supported bus width or compare the ext csd values of current
994 * bus width and ext csd values of 1 bit mode read earlier.
995 */
577fb131 996 for (; idx < ARRAY_SIZE(bus_widths); idx++) {
a4924c71
G
997 /*
998 * Host is capable of 8bit transfer, then switch
999 * the device to work in 8bit transfer mode. If the
1000 * mmc switch command returns error then switch to
1001 * 4bit transfer mode. On success set the corresponding
1002 * bus width on the host.
1003 */
1004 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
1005 EXT_CSD_BUS_WIDTH,
1006 ext_csd_bits[idx],
1007 card->ext_csd.generic_cmd6_time);
1008 if (err)
1009 continue;
1010
577fb131
SJ
1011 bus_width = bus_widths[idx];
1012 mmc_set_bus_width(host, bus_width);
a4924c71 1013
577fb131
SJ
1014 /*
1015 * If controller can't handle bus width test,
1016 * compare ext_csd previously read in 1 bit mode
1017 * against ext_csd at new bus width
1018 */
a4924c71 1019 if (!(host->caps & MMC_CAP_BUS_WIDTH_TEST))
577fb131 1020 err = mmc_compare_ext_csds(card, bus_width);
a4924c71 1021 else
577fb131
SJ
1022 err = mmc_bus_test(card, bus_width);
1023
1024 if (!err) {
1025 err = bus_width;
a4924c71 1026 break;
577fb131
SJ
1027 } else {
1028 pr_warn("%s: switch to bus width %d failed\n",
ed9feec7 1029 mmc_hostname(host), 1 << bus_width);
577fb131 1030 }
a4924c71
G
1031 }
1032
577fb131
SJ
1033 return err;
1034}
1035
1036/*
1037 * Switch to the high-speed mode
1038 */
1039static int mmc_select_hs(struct mmc_card *card)
1040{
1041 int err;
1042
1043 err = __mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
1044 EXT_CSD_HS_TIMING, EXT_CSD_TIMING_HS,
53e60650
UH
1045 card->ext_csd.generic_cmd6_time, MMC_TIMING_MMC_HS,
1046 true, true, true);
67d35960
JL
1047 if (err)
1048 pr_warn("%s: switch to high-speed failed, err:%d\n",
1049 mmc_hostname(card->host), err);
1050
577fb131
SJ
1051 return err;
1052}
1053
1054/*
1055 * Activate wide bus and DDR if supported.
1056 */
1057static int mmc_select_hs_ddr(struct mmc_card *card)
1058{
1059 struct mmc_host *host = card->host;
1060 u32 bus_width, ext_csd_bits;
1061 int err = 0;
1062
1063 if (!(card->mmc_avail_type & EXT_CSD_CARD_TYPE_DDR_52))
1064 return 0;
1065
1066 bus_width = host->ios.bus_width;
1067 if (bus_width == MMC_BUS_WIDTH_1)
1068 return 0;
1069
1070 ext_csd_bits = (bus_width == MMC_BUS_WIDTH_8) ?
1071 EXT_CSD_DDR_BUS_WIDTH_8 : EXT_CSD_DDR_BUS_WIDTH_4;
1072
e173f891
UH
1073 err = __mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
1074 EXT_CSD_BUS_WIDTH,
1075 ext_csd_bits,
1076 card->ext_csd.generic_cmd6_time,
1077 MMC_TIMING_MMC_DDR52,
1078 true, true, true);
577fb131 1079 if (err) {
4b75bffc 1080 pr_err("%s: switch to bus width %d ddr failed\n",
577fb131
SJ
1081 mmc_hostname(host), 1 << bus_width);
1082 return err;
1083 }
1084
1085 /*
1086 * eMMC cards can support 3.3V to 1.2V i/o (vccq)
1087 * signaling.
1088 *
1089 * EXT_CSD_CARD_TYPE_DDR_1_8V means 3.3V or 1.8V vccq.
1090 *
1091 * 1.8V vccq at 3.3V core voltage (vcc) is not required
1092 * in the JEDEC spec for DDR.
1093 *
312449ef
CD
1094 * Even (e)MMC card can support 3.3v to 1.2v vccq, but not all
1095 * host controller can support this, like some of the SDHCI
1096 * controller which connect to an eMMC device. Some of these
1097 * host controller still needs to use 1.8v vccq for supporting
1098 * DDR mode.
1099 *
1100 * So the sequence will be:
1101 * if (host and device can both support 1.2v IO)
1102 * use 1.2v IO;
1103 * else if (host and device can both support 1.8v IO)
1104 * use 1.8v IO;
1105 * so if host and device can only support 3.3v IO, this is the
1106 * last choice.
577fb131
SJ
1107 *
1108 * WARNING: eMMC rules are NOT the same as SD DDR
1109 */
312449ef
CD
1110 err = -EINVAL;
1111 if (card->mmc_avail_type & EXT_CSD_CARD_TYPE_DDR_1_2V)
1112 err = __mmc_set_signal_voltage(host, MMC_SIGNAL_VOLTAGE_120);
577fb131 1113
312449ef
CD
1114 if (err && (card->mmc_avail_type & EXT_CSD_CARD_TYPE_DDR_1_8V))
1115 err = __mmc_set_signal_voltage(host, MMC_SIGNAL_VOLTAGE_180);
1116
1117 /* make sure vccq is 3.3v after switching disaster */
1118 if (err)
1119 err = __mmc_set_signal_voltage(host, MMC_SIGNAL_VOLTAGE_330);
1120
577fb131
SJ
1121 return err;
1122}
1123
0a5b6438
SJ
1124static int mmc_select_hs400(struct mmc_card *card)
1125{
1126 struct mmc_host *host = card->host;
51b12f77 1127 unsigned int max_dtr;
0a5b6438 1128 int err = 0;
cc4f414c 1129 u8 val;
0a5b6438
SJ
1130
1131 /*
1132 * HS400 mode requires 8-bit bus width
1133 */
1134 if (!(card->mmc_avail_type & EXT_CSD_CARD_TYPE_HS400 &&
1135 host->ios.bus_width == MMC_BUS_WIDTH_8))
1136 return 0;
1137
51b12f77 1138 /* Switch card to HS mode */
adb24d42 1139 val = EXT_CSD_TIMING_HS;
0a5b6438 1140 err = __mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
cc4f414c 1141 EXT_CSD_HS_TIMING, val,
aa33ce3c 1142 card->ext_csd.generic_cmd6_time, 0,
08573eaf 1143 true, false, true);
0a5b6438 1144 if (err) {
4b75bffc 1145 pr_err("%s: switch to high-speed from hs200 failed, err:%d\n",
0a5b6438
SJ
1146 mmc_hostname(host), err);
1147 return err;
1148 }
1149
51b12f77
AH
1150 /* Set host controller to HS timing */
1151 mmc_set_timing(card->host, MMC_TIMING_MMC_HS);
1152
649c6059
ZX
1153 /* Reduce frequency to HS frequency */
1154 max_dtr = card->ext_csd.hs_max_dtr;
1155 mmc_set_clock(host, max_dtr);
1156
08573eaf
CJ
1157 err = mmc_switch_status(card);
1158 if (err)
1159 goto out_err;
d2302933
AH
1160
1161 /* Switch card to DDR */
0a5b6438
SJ
1162 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
1163 EXT_CSD_BUS_WIDTH,
1164 EXT_CSD_DDR_BUS_WIDTH_8,
1165 card->ext_csd.generic_cmd6_time);
1166 if (err) {
4b75bffc 1167 pr_err("%s: switch to bus width for hs400 failed, err:%d\n",
0a5b6438
SJ
1168 mmc_hostname(host), err);
1169 return err;
1170 }
1171
d2302933 1172 /* Switch card to HS400 */
cc4f414c
AH
1173 val = EXT_CSD_TIMING_HS400 |
1174 card->drive_strength << EXT_CSD_DRV_STR_SHIFT;
0a5b6438 1175 err = __mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
cc4f414c 1176 EXT_CSD_HS_TIMING, val,
aa33ce3c 1177 card->ext_csd.generic_cmd6_time, 0,
08573eaf 1178 true, false, true);
0a5b6438 1179 if (err) {
4b75bffc 1180 pr_err("%s: switch to hs400 failed, err:%d\n",
0a5b6438
SJ
1181 mmc_hostname(host), err);
1182 return err;
1183 }
1184
d2302933 1185 /* Set host controller to HS400 timing and frequency */
0a5b6438
SJ
1186 mmc_set_timing(host, MMC_TIMING_MMC_HS400);
1187 mmc_set_bus_speed(card);
1188
08573eaf
CJ
1189 err = mmc_switch_status(card);
1190 if (err)
1191 goto out_err;
d2302933 1192
0a5b6438 1193 return 0;
d2302933
AH
1194
1195out_err:
1196 pr_err("%s: %s failed, error %d\n", mmc_hostname(card->host),
1197 __func__, err);
1198 return err;
0a5b6438
SJ
1199}
1200
6376f69d
AH
1201int mmc_hs200_to_hs400(struct mmc_card *card)
1202{
1203 return mmc_select_hs400(card);
1204}
1205
6376f69d
AH
1206int mmc_hs400_to_hs200(struct mmc_card *card)
1207{
1208 struct mmc_host *host = card->host;
6376f69d
AH
1209 unsigned int max_dtr;
1210 int err;
cc4f414c 1211 u8 val;
6376f69d 1212
6376f69d
AH
1213 /* Reduce frequency to HS */
1214 max_dtr = card->ext_csd.hs_max_dtr;
1215 mmc_set_clock(host, max_dtr);
1216
1217 /* Switch HS400 to HS DDR */
adb24d42 1218 val = EXT_CSD_TIMING_HS;
6376f69d 1219 err = __mmc_switch(card, EXT_CSD_CMD_SET_NORMAL, EXT_CSD_HS_TIMING,
aa33ce3c 1220 val, card->ext_csd.generic_cmd6_time, 0,
08573eaf 1221 true, false, true);
6376f69d
AH
1222 if (err)
1223 goto out_err;
1224
1225 mmc_set_timing(host, MMC_TIMING_MMC_DDR52);
1226
08573eaf
CJ
1227 err = mmc_switch_status(card);
1228 if (err)
1229 goto out_err;
6376f69d
AH
1230
1231 /* Switch HS DDR to HS */
1232 err = __mmc_switch(card, EXT_CSD_CMD_SET_NORMAL, EXT_CSD_BUS_WIDTH,
1233 EXT_CSD_BUS_WIDTH_8, card->ext_csd.generic_cmd6_time,
aa33ce3c 1234 0, true, false, true);
6376f69d
AH
1235 if (err)
1236 goto out_err;
1237
1238 mmc_set_timing(host, MMC_TIMING_MMC_HS);
1239
08573eaf
CJ
1240 err = mmc_switch_status(card);
1241 if (err)
1242 goto out_err;
6376f69d
AH
1243
1244 /* Switch HS to HS200 */
cc4f414c
AH
1245 val = EXT_CSD_TIMING_HS200 |
1246 card->drive_strength << EXT_CSD_DRV_STR_SHIFT;
6376f69d 1247 err = __mmc_switch(card, EXT_CSD_CMD_SET_NORMAL, EXT_CSD_HS_TIMING,
aa33ce3c 1248 val, card->ext_csd.generic_cmd6_time, 0,
08573eaf 1249 true, false, true);
6376f69d
AH
1250 if (err)
1251 goto out_err;
1252
1253 mmc_set_timing(host, MMC_TIMING_MMC_HS200);
1254
ef3d2322
AH
1255 /*
1256 * For HS200, CRC errors are not a reliable way to know the switch
1257 * failed. If there really is a problem, we would expect tuning will
1258 * fail and the result ends up the same.
1259 */
1260 err = __mmc_switch_status(card, false);
08573eaf
CJ
1261 if (err)
1262 goto out_err;
6376f69d
AH
1263
1264 mmc_set_bus_speed(card);
1265
1266 return 0;
1267
1268out_err:
1269 pr_err("%s: %s failed, error %d\n", mmc_hostname(card->host),
1270 __func__, err);
1271 return err;
1272}
1273
81ac2af6
SL
1274static int mmc_select_hs400es(struct mmc_card *card)
1275{
1276 struct mmc_host *host = card->host;
1277 int err = 0;
1278 u8 val;
1279
1280 if (!(host->caps & MMC_CAP_8_BIT_DATA)) {
1281 err = -ENOTSUPP;
1282 goto out_err;
1283 }
1284
1720d354
SL
1285 if (card->mmc_avail_type & EXT_CSD_CARD_TYPE_HS400_1_2V)
1286 err = __mmc_set_signal_voltage(host, MMC_SIGNAL_VOLTAGE_120);
1287
1288 if (err && card->mmc_avail_type & EXT_CSD_CARD_TYPE_HS400_1_8V)
1289 err = __mmc_set_signal_voltage(host, MMC_SIGNAL_VOLTAGE_180);
1290
1291 /* If fails try again during next card power cycle */
1292 if (err)
1293 goto out_err;
1294
81ac2af6
SL
1295 err = mmc_select_bus_width(card);
1296 if (err < 0)
1297 goto out_err;
1298
1299 /* Switch card to HS mode */
53e60650
UH
1300 err = __mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
1301 EXT_CSD_HS_TIMING, EXT_CSD_TIMING_HS,
1302 card->ext_csd.generic_cmd6_time, 0,
1303 true, false, true);
1304 if (err) {
1305 pr_err("%s: switch to hs for hs400es failed, err:%d\n",
1306 mmc_hostname(host), err);
81ac2af6 1307 goto out_err;
53e60650 1308 }
81ac2af6 1309
53e60650 1310 mmc_set_timing(host, MMC_TIMING_MMC_HS);
81ac2af6
SL
1311 err = mmc_switch_status(card);
1312 if (err)
1313 goto out_err;
1314
53e60650
UH
1315 mmc_set_clock(host, card->ext_csd.hs_max_dtr);
1316
81ac2af6
SL
1317 /* Switch card to DDR with strobe bit */
1318 val = EXT_CSD_DDR_BUS_WIDTH_8 | EXT_CSD_BUS_WIDTH_STROBE;
1319 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
1320 EXT_CSD_BUS_WIDTH,
1321 val,
1322 card->ext_csd.generic_cmd6_time);
1323 if (err) {
1324 pr_err("%s: switch to bus width for hs400es failed, err:%d\n",
1325 mmc_hostname(host), err);
1326 goto out_err;
1327 }
1328
1329 /* Switch card to HS400 */
1330 val = EXT_CSD_TIMING_HS400 |
1331 card->drive_strength << EXT_CSD_DRV_STR_SHIFT;
1332 err = __mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
1333 EXT_CSD_HS_TIMING, val,
aa33ce3c 1334 card->ext_csd.generic_cmd6_time, 0,
81ac2af6
SL
1335 true, false, true);
1336 if (err) {
1337 pr_err("%s: switch to hs400es failed, err:%d\n",
1338 mmc_hostname(host), err);
1339 goto out_err;
1340 }
1341
1342 /* Set host controller to HS400 timing and frequency */
1343 mmc_set_timing(host, MMC_TIMING_MMC_HS400);
1344
1345 /* Controller enable enhanced strobe function */
1346 host->ios.enhanced_strobe = true;
1347 if (host->ops->hs400_enhanced_strobe)
1348 host->ops->hs400_enhanced_strobe(host, &host->ios);
1349
1350 err = mmc_switch_status(card);
1351 if (err)
1352 goto out_err;
1353
1354 return 0;
1355
1356out_err:
1357 pr_err("%s: %s failed, error %d\n", mmc_hostname(card->host),
1358 __func__, err);
1359 return err;
1360}
1361
cc4f414c
AH
1362static void mmc_select_driver_type(struct mmc_card *card)
1363{
1364 int card_drv_type, drive_strength, drv_type;
1365
1366 card_drv_type = card->ext_csd.raw_driver_strength |
1367 mmc_driver_type_mask(0);
1368
1369 drive_strength = mmc_select_drive_strength(card,
1370 card->ext_csd.hs200_max_dtr,
1371 card_drv_type, &drv_type);
1372
1373 card->drive_strength = drive_strength;
1374
1375 if (drv_type)
1376 mmc_set_driver_type(card->host, drv_type);
1377}
1378
577fb131
SJ
1379/*
1380 * For device supporting HS200 mode, the following sequence
1381 * should be done before executing the tuning process.
1382 * 1. set the desired bus width(4-bit or 8-bit, 1-bit is not supported)
1383 * 2. switch to HS200 mode
1384 * 3. set the clock to > 52Mhz and <=200MHz
1385 */
1386static int mmc_select_hs200(struct mmc_card *card)
1387{
1388 struct mmc_host *host = card->host;
e51534c8 1389 unsigned int old_timing, old_signal_voltage;
577fb131 1390 int err = -EINVAL;
cc4f414c 1391 u8 val;
577fb131 1392
e51534c8 1393 old_signal_voltage = host->ios.signal_voltage;
577fb131
SJ
1394 if (card->mmc_avail_type & EXT_CSD_CARD_TYPE_HS200_1_2V)
1395 err = __mmc_set_signal_voltage(host, MMC_SIGNAL_VOLTAGE_120);
1396
1397 if (err && card->mmc_avail_type & EXT_CSD_CARD_TYPE_HS200_1_8V)
1398 err = __mmc_set_signal_voltage(host, MMC_SIGNAL_VOLTAGE_180);
1399
1400 /* If fails try again during next card power cycle */
1401 if (err)
e51534c8 1402 return err;
577fb131 1403
cc4f414c
AH
1404 mmc_select_driver_type(card);
1405
577fb131
SJ
1406 /*
1407 * Set the bus width(4 or 8) with host's support and
1408 * switch to HS200 mode if bus width is set successfully.
1409 */
1410 err = mmc_select_bus_width(card);
8b7be8f2 1411 if (err > 0) {
cc4f414c
AH
1412 val = EXT_CSD_TIMING_HS200 |
1413 card->drive_strength << EXT_CSD_DRV_STR_SHIFT;
4509f847 1414 err = __mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
cc4f414c 1415 EXT_CSD_HS_TIMING, val,
aa33ce3c 1416 card->ext_csd.generic_cmd6_time, 0,
08573eaf 1417 true, false, true);
1815e61b
AH
1418 if (err)
1419 goto err;
1420 old_timing = host->ios.timing;
1421 mmc_set_timing(host, MMC_TIMING_MMC_HS200);
08573eaf 1422
ef3d2322
AH
1423 /*
1424 * For HS200, CRC errors are not a reliable way to know the
1425 * switch failed. If there really is a problem, we would expect
1426 * tuning will fail and the result ends up the same.
1427 */
1428 err = __mmc_switch_status(card, false);
1429
08573eaf
CJ
1430 /*
1431 * mmc_select_timing() assumes timing has not changed if
1432 * it is a switch error.
1433 */
1434 if (err == -EBADMSG)
1435 mmc_set_timing(host, old_timing);
577fb131 1436 }
a4924c71 1437err:
e51534c8
DA
1438 if (err) {
1439 /* fall back to the old signal voltage, if fails report error */
1440 if (__mmc_set_signal_voltage(host, old_signal_voltage))
1441 err = -EIO;
1442
1815e61b
AH
1443 pr_err("%s: %s failed, error %d\n", mmc_hostname(card->host),
1444 __func__, err);
e51534c8 1445 }
a4924c71
G
1446 return err;
1447}
1448
577fb131 1449/*
81ac2af6 1450 * Activate High Speed, HS200 or HS400ES mode if supported.
577fb131
SJ
1451 */
1452static int mmc_select_timing(struct mmc_card *card)
1453{
1454 int err = 0;
1455
148bcab2 1456 if (!mmc_can_ext_csd(card))
577fb131
SJ
1457 goto bus_speed;
1458
81ac2af6
SL
1459 if (card->mmc_avail_type & EXT_CSD_CARD_TYPE_HS400ES)
1460 err = mmc_select_hs400es(card);
1461 else if (card->mmc_avail_type & EXT_CSD_CARD_TYPE_HS200)
577fb131
SJ
1462 err = mmc_select_hs200(card);
1463 else if (card->mmc_avail_type & EXT_CSD_CARD_TYPE_HS)
1464 err = mmc_select_hs(card);
1465
1466 if (err && err != -EBADMSG)
1467 return err;
1468
577fb131
SJ
1469bus_speed:
1470 /*
1471 * Set the bus speed to the selected bus timing.
1472 * If timing is not selected, backward compatible is the default.
1473 */
1474 mmc_set_bus_speed(card);
0400ed0a 1475 return 0;
577fb131
SJ
1476}
1477
1478/*
1479 * Execute tuning sequence to seek the proper bus operating
0a5b6438 1480 * conditions for HS200 and HS400, which sends CMD21 to the device.
577fb131
SJ
1481 */
1482static int mmc_hs200_tuning(struct mmc_card *card)
1483{
1484 struct mmc_host *host = card->host;
577fb131 1485
0a5b6438
SJ
1486 /*
1487 * Timing should be adjusted to the HS400 target
1488 * operation frequency for tuning process
1489 */
1490 if (card->mmc_avail_type & EXT_CSD_CARD_TYPE_HS400 &&
1491 host->ios.bus_width == MMC_BUS_WIDTH_8)
1492 if (host->ops->prepare_hs400_tuning)
1493 host->ops->prepare_hs400_tuning(host, &host->ios);
1494
63e415c6 1495 return mmc_execute_tuning(card);
577fb131
SJ
1496}
1497
7ea239d9 1498/*
6abaa0c9
PO
1499 * Handle the detection and initialisation of a card.
1500 *
8769392b 1501 * In the case of a resume, "oldcard" will contain the card
6abaa0c9 1502 * we're trying to reinitialise.
7ea239d9 1503 */
8c75deae 1504static int mmc_init_card(struct mmc_host *host, u32 ocr,
6abaa0c9 1505 struct mmc_card *oldcard)
7ea239d9
PO
1506{
1507 struct mmc_card *card;
577fb131 1508 int err;
7ea239d9 1509 u32 cid[4];
b676f039 1510 u32 rocr;
7ea239d9 1511
d84075c8 1512 WARN_ON(!host->claimed);
7ea239d9 1513
44669034
SNX
1514 /* Set correct bus mode for MMC before attempting init */
1515 if (!mmc_host_is_spi(host))
1516 mmc_set_bus_mode(host, MMC_BUSMODE_OPENDRAIN);
1517
7ea239d9
PO
1518 /*
1519 * Since we're changing the OCR value, we seem to
1520 * need to tell some cards to go back to the idle
1521 * state. We wait 1ms to give cards time to
1522 * respond.
c3805467 1523 * mmc_go_idle is needed for eMMC that are asleep
7ea239d9
PO
1524 */
1525 mmc_go_idle(host);
1526
1527 /* The extra bit indicates that we support high capacity */
b676f039 1528 err = mmc_send_op_cond(host, ocr | (1 << 30), &rocr);
17b0429d 1529 if (err)
6abaa0c9 1530 goto err;
7ea239d9 1531
af517150
DB
1532 /*
1533 * For SPI, enable CRC as appropriate.
1534 */
1535 if (mmc_host_is_spi(host)) {
1536 err = mmc_spi_set_crc(host, use_spi_crc);
1537 if (err)
1538 goto err;
1539 }
1540
7ea239d9
PO
1541 /*
1542 * Fetch CID from card.
1543 */
af517150
DB
1544 if (mmc_host_is_spi(host))
1545 err = mmc_send_cid(host, cid);
1546 else
1547 err = mmc_all_send_cid(host, cid);
17b0429d 1548 if (err)
7ea239d9
PO
1549 goto err;
1550
6abaa0c9 1551 if (oldcard) {
adf66a0d
PO
1552 if (memcmp(cid, oldcard->raw_cid, sizeof(cid)) != 0) {
1553 err = -ENOENT;
6abaa0c9 1554 goto err;
adf66a0d 1555 }
6abaa0c9
PO
1556
1557 card = oldcard;
1558 } else {
1559 /*
1560 * Allocate card structure.
1561 */
51ec92e2 1562 card = mmc_alloc_card(host, &mmc_type);
adf66a0d
PO
1563 if (IS_ERR(card)) {
1564 err = PTR_ERR(card);
6abaa0c9 1565 goto err;
adf66a0d 1566 }
7ea239d9 1567
69041150 1568 card->ocr = ocr;
6abaa0c9
PO
1569 card->type = MMC_TYPE_MMC;
1570 card->rca = 1;
1571 memcpy(card->raw_cid, cid, sizeof(card->raw_cid));
1572 }
7ea239d9 1573
eac86321
DA
1574 /*
1575 * Call the optional HC's init_card function to handle quirks.
1576 */
1577 if (host->ops->init_card)
1578 host->ops->init_card(host, card);
1579
7ea239d9 1580 /*
af517150 1581 * For native busses: set card RCA and quit open drain mode.
7ea239d9 1582 */
af517150
DB
1583 if (!mmc_host_is_spi(host)) {
1584 err = mmc_set_relative_addr(card);
1585 if (err)
1586 goto free_card;
7ea239d9 1587
af517150
DB
1588 mmc_set_bus_mode(host, MMC_BUSMODE_PUSHPULL);
1589 }
7ea239d9 1590
6abaa0c9
PO
1591 if (!oldcard) {
1592 /*
1593 * Fetch CSD from card.
1594 */
1595 err = mmc_send_csd(card, card->raw_csd);
17b0429d 1596 if (err)
6abaa0c9 1597 goto free_card;
7ea239d9 1598
bd766312 1599 err = mmc_decode_csd(card);
adf66a0d 1600 if (err)
bd766312
PO
1601 goto free_card;
1602 err = mmc_decode_cid(card);
adf66a0d 1603 if (err)
bd766312 1604 goto free_card;
6abaa0c9 1605 }
7ea239d9 1606
3d705d14
SH
1607 /*
1608 * handling only for cards supporting DSR and hosts requesting
1609 * DSR configuration
1610 */
1611 if (card->csd.dsr_imp && host->dsr_req)
1612 mmc_set_dsr(host);
1613
7ea239d9 1614 /*
89a73cf5 1615 * Select card, as all following commands rely on that.
7ea239d9 1616 */
af517150
DB
1617 if (!mmc_host_is_spi(host)) {
1618 err = mmc_select_card(card);
1619 if (err)
1620 goto free_card;
1621 }
7ea239d9 1622
6abaa0c9 1623 if (!oldcard) {
076ec38a
UH
1624 /* Read extended CSD. */
1625 err = mmc_read_ext_csd(card);
17b0429d 1626 if (err)
6abaa0c9 1627 goto free_card;
b676f039 1628
87e88659
MY
1629 /*
1630 * If doing byte addressing, check if required to do sector
b676f039
PR
1631 * addressing. Handle the case of <2GB cards needing sector
1632 * addressing. See section 8.1 JEDEC Standard JED84-A441;
1633 * ocr register has bit 30 set for sector addressing.
1634 */
87e88659 1635 if (rocr & BIT(30))
b676f039
PR
1636 mmc_card_set_blockaddr(card);
1637
dfe86cba
AH
1638 /* Erase size depends on CSD and Extended CSD */
1639 mmc_set_erase_size(card);
6abaa0c9 1640 }
7ea239d9 1641
709de99d
CD
1642 /*
1643 * If enhanced_area_en is TRUE, host needs to enable ERASE_GRP_DEF
25985edc 1644 * bit. This bit will be lost every time after a reset or power off.
709de99d 1645 */
69803d4f 1646 if (card->ext_csd.partition_setting_completed ||
83bb24aa 1647 (card->ext_csd.rev >= 3 && (host->caps2 & MMC_CAP2_HC_ERASE_SZ))) {
709de99d 1648 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
b23cf0bd
SJ
1649 EXT_CSD_ERASE_GROUP_DEF, 1,
1650 card->ext_csd.generic_cmd6_time);
709de99d
CD
1651
1652 if (err && err != -EBADMSG)
1653 goto free_card;
1654
1655 if (err) {
1656 err = 0;
1657 /*
1658 * Just disable enhanced area off & sz
1659 * will try to enable ERASE_GROUP_DEF
1660 * during next time reinit
1661 */
1662 card->ext_csd.enhanced_area_offset = -EINVAL;
1663 card->ext_csd.enhanced_area_size = -EINVAL;
1664 } else {
1665 card->ext_csd.erase_group_def = 1;
1666 /*
1667 * enable ERASE_GRP_DEF successfully.
1668 * This will affect the erase size, so
1669 * here need to reset erase size
1670 */
1671 mmc_set_erase_size(card);
1672 }
1673 }
1674
41e2a489
PR
1675 /*
1676 * Ensure eMMC user default partition is enabled
1677 */
371a689f
AW
1678 if (card->ext_csd.part_config & EXT_CSD_PART_CONFIG_ACC_MASK) {
1679 card->ext_csd.part_config &= ~EXT_CSD_PART_CONFIG_ACC_MASK;
1680 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL, EXT_CSD_PART_CONFIG,
1681 card->ext_csd.part_config,
1682 card->ext_csd.part_time);
1683 if (err && err != -EBADMSG)
1684 goto free_card;
41e2a489
PR
1685 }
1686
bec8726a 1687 /*
43235679 1688 * Enable power_off_notification byte in the ext_csd register
bec8726a 1689 */
43235679 1690 if (card->ext_csd.rev >= 6) {
bec8726a
G
1691 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
1692 EXT_CSD_POWER_OFF_NOTIFICATION,
1693 EXT_CSD_POWER_ON,
1694 card->ext_csd.generic_cmd6_time);
1695 if (err && err != -EBADMSG)
1696 goto free_card;
bec8726a 1697
96a85d54
G
1698 /*
1699 * The err can be -EBADMSG or 0,
1700 * so check for success and update the flag
1701 */
1702 if (!err)
e6c08586 1703 card->ext_csd.power_off_notification = EXT_CSD_POWER_ON;
96a85d54 1704 }
bec8726a 1705
89a73cf5 1706 /*
577fb131 1707 * Select timing interface
dfc13e84 1708 */
577fb131
SJ
1709 err = mmc_select_timing(card);
1710 if (err)
1711 goto free_card;
dfc13e84 1712
a4924c71 1713 if (mmc_card_hs200(card)) {
577fb131
SJ
1714 err = mmc_hs200_tuning(card);
1715 if (err)
4b75bffc 1716 goto free_card;
0a5b6438
SJ
1717
1718 err = mmc_select_hs400(card);
1719 if (err)
4b75bffc 1720 goto free_card;
577fb131
SJ
1721 } else if (mmc_card_hs(card)) {
1722 /* Select the desired bus width optionally */
1723 err = mmc_select_bus_width(card);
8b7be8f2 1724 if (err > 0) {
577fb131
SJ
1725 err = mmc_select_hs_ddr(card);
1726 if (err)
4b75bffc 1727 goto free_card;
ef0b27d4 1728 }
89a73cf5
PO
1729 }
1730
2385049d
SJ
1731 /*
1732 * Choose the power class with selected bus interface
1733 */
1734 mmc_select_powerclass(card);
1735
52d0974e
SJ
1736 /*
1737 * Enable HPI feature (if supported)
1738 */
1739 if (card->ext_csd.hpi) {
1740 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
1741 EXT_CSD_HPI_MGMT, 1,
1742 card->ext_csd.generic_cmd6_time);
1743 if (err && err != -EBADMSG)
1744 goto free_card;
1745 if (err) {
6606110d
JP
1746 pr_warn("%s: Enabling HPI failed\n",
1747 mmc_hostname(card->host));
52d0974e
SJ
1748 err = 0;
1749 } else
1750 card->ext_csd.hpi_en = 1;
1751 }
1752
881d1c25
SJ
1753 /*
1754 * If cache size is higher than 0, this indicates
1755 * the existence of cache and it can be turned on.
1756 */
5320226a
P
1757 if (!mmc_card_broken_hpi(card) &&
1758 card->ext_csd.cache_size > 0) {
881d1c25 1759 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
8bc0678b
SJ
1760 EXT_CSD_CACHE_CTRL, 1,
1761 card->ext_csd.generic_cmd6_time);
881d1c25
SJ
1762 if (err && err != -EBADMSG)
1763 goto free_card;
1764
1765 /*
1766 * Only if no error, cache is turned on successfully.
1767 */
8bc0678b 1768 if (err) {
6606110d
JP
1769 pr_warn("%s: Cache is supported, but failed to turn on (%d)\n",
1770 mmc_hostname(card->host), err);
8bc0678b
SJ
1771 card->ext_csd.cache_ctrl = 0;
1772 err = 0;
1773 } else {
1774 card->ext_csd.cache_ctrl = 1;
1775 }
881d1c25
SJ
1776 }
1777
abd9ac14
SJ
1778 /*
1779 * The mandatory minimum values are defined for packed command.
1780 * read: 5, write: 3
1781 */
1782 if (card->ext_csd.max_packed_writes >= 3 &&
1783 card->ext_csd.max_packed_reads >= 5 &&
1784 host->caps2 & MMC_CAP2_PACKED_CMD) {
1785 err = mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
1786 EXT_CSD_EXP_EVENTS_CTRL,
1787 EXT_CSD_PACKED_EVENT_EN,
1788 card->ext_csd.generic_cmd6_time);
1789 if (err && err != -EBADMSG)
1790 goto free_card;
1791 if (err) {
1792 pr_warn("%s: Enabling packed event failed\n",
1793 mmc_hostname(card->host));
1794 card->ext_csd.packed_event_en = 0;
1795 err = 0;
1796 } else {
1797 card->ext_csd.packed_event_en = 1;
1798 }
1799 }
1800
6abaa0c9
PO
1801 if (!oldcard)
1802 host->card = card;
1803
17b0429d 1804 return 0;
6abaa0c9
PO
1805
1806free_card:
1807 if (!oldcard)
1808 mmc_remove_card(card);
1809err:
adf66a0d 1810 return err;
6abaa0c9
PO
1811}
1812
07a68216
UH
1813static int mmc_can_sleep(struct mmc_card *card)
1814{
1815 return (card && card->ext_csd.rev >= 3);
1816}
1817
1818static int mmc_sleep(struct mmc_host *host)
1819{
c7836d15 1820 struct mmc_command cmd = {};
07a68216 1821 struct mmc_card *card = host->card;
cb962e04 1822 unsigned int timeout_ms = DIV_ROUND_UP(card->ext_csd.sa_timeout, 10000);
07a68216
UH
1823 int err;
1824
436f8daa
AH
1825 /* Re-tuning can't be done once the card is deselected */
1826 mmc_retune_hold(host);
1827
07a68216
UH
1828 err = mmc_deselect_cards(host);
1829 if (err)
436f8daa 1830 goto out_release;
07a68216
UH
1831
1832 cmd.opcode = MMC_SLEEP_AWAKE;
1833 cmd.arg = card->rca << 16;
1834 cmd.arg |= 1 << 15;
1835
cb962e04
UH
1836 /*
1837 * If the max_busy_timeout of the host is specified, validate it against
1838 * the sleep cmd timeout. A failure means we need to prevent the host
1839 * from doing hw busy detection, which is done by converting to a R1
1840 * response instead of a R1B.
1841 */
1842 if (host->max_busy_timeout && (timeout_ms > host->max_busy_timeout)) {
1843 cmd.flags = MMC_RSP_R1 | MMC_CMD_AC;
1844 } else {
1845 cmd.flags = MMC_RSP_R1B | MMC_CMD_AC;
1846 cmd.busy_timeout = timeout_ms;
1847 }
1848
07a68216
UH
1849 err = mmc_wait_for_cmd(host, &cmd, 0);
1850 if (err)
436f8daa 1851 goto out_release;
07a68216
UH
1852
1853 /*
1854 * If the host does not wait while the card signals busy, then we will
1855 * will have to wait the sleep/awake timeout. Note, we cannot use the
1856 * SEND_STATUS command to poll the status because that command (and most
1857 * others) is invalid while the card sleeps.
1858 */
cb962e04
UH
1859 if (!cmd.busy_timeout || !(host->caps & MMC_CAP_WAIT_WHILE_BUSY))
1860 mmc_delay(timeout_ms);
07a68216 1861
436f8daa
AH
1862out_release:
1863 mmc_retune_release(host);
07a68216
UH
1864 return err;
1865}
1866
e6c08586
UH
1867static int mmc_can_poweroff_notify(const struct mmc_card *card)
1868{
1869 return card &&
1870 mmc_card_mmc(card) &&
1871 (card->ext_csd.power_off_notification == EXT_CSD_POWER_ON);
1872}
1873
1874static int mmc_poweroff_notify(struct mmc_card *card, unsigned int notify_type)
1875{
1876 unsigned int timeout = card->ext_csd.generic_cmd6_time;
1877 int err;
1878
1879 /* Use EXT_CSD_POWER_OFF_SHORT as default notification type. */
1880 if (notify_type == EXT_CSD_POWER_OFF_LONG)
1881 timeout = card->ext_csd.power_off_longtime;
1882
878e200b
UH
1883 err = __mmc_switch(card, EXT_CSD_CMD_SET_NORMAL,
1884 EXT_CSD_POWER_OFF_NOTIFICATION,
aa33ce3c 1885 notify_type, timeout, 0, true, false, false);
e6c08586
UH
1886 if (err)
1887 pr_err("%s: Power Off Notification timed out, %u\n",
1888 mmc_hostname(card->host), timeout);
1889
1890 /* Disable the power off notification after the switch operation. */
1891 card->ext_csd.power_off_notification = EXT_CSD_NO_POWER_NOTIFICATION;
1892
1893 return err;
1894}
1895
6abaa0c9
PO
1896/*
1897 * Host is being removed. Free up the current card.
1898 */
1899static void mmc_remove(struct mmc_host *host)
1900{
6abaa0c9
PO
1901 mmc_remove_card(host->card);
1902 host->card = NULL;
1903}
1904
d3049504
AH
1905/*
1906 * Card detection - card is alive.
1907 */
1908static int mmc_alive(struct mmc_host *host)
1909{
1910 return mmc_send_status(host->card, NULL);
1911}
1912
6abaa0c9
PO
1913/*
1914 * Card detection callback from host.
1915 */
1916static void mmc_detect(struct mmc_host *host)
1917{
1918 int err;
1919
e94cfef6 1920 mmc_get_card(host->card);
6abaa0c9
PO
1921
1922 /*
1923 * Just check if our card has been removed.
1924 */
d3049504 1925 err = _mmc_detect_card_removed(host);
6abaa0c9 1926
e94cfef6 1927 mmc_put_card(host->card);
6abaa0c9 1928
17b0429d 1929 if (err) {
4101c16a 1930 mmc_remove(host);
6abaa0c9
PO
1931
1932 mmc_claim_host(host);
1933 mmc_detach_bus(host);
7f7e4129 1934 mmc_power_off(host);
6abaa0c9
PO
1935 mmc_release_host(host);
1936 }
1937}
1938
03d071fc 1939static int _mmc_suspend(struct mmc_host *host, bool is_suspend)
6abaa0c9 1940{
c3805467 1941 int err = 0;
03d071fc
UH
1942 unsigned int notify_type = is_suspend ? EXT_CSD_POWER_OFF_SHORT :
1943 EXT_CSD_POWER_OFF_LONG;
c3805467 1944
6abaa0c9 1945 mmc_claim_host(host);
881d926d 1946
9ec775f7
UH
1947 if (mmc_card_suspended(host->card))
1948 goto out;
1949
39b9431b
UH
1950 if (mmc_card_doing_bkops(host->card)) {
1951 err = mmc_stop_bkops(host->card);
1952 if (err)
1953 goto out;
1954 }
1955
10e5d965 1956 err = mmc_flush_cache(host->card);
881d926d
ME
1957 if (err)
1958 goto out;
1959
43235679 1960 if (mmc_can_poweroff_notify(host->card) &&
53275c21 1961 ((host->caps2 & MMC_CAP2_FULL_PWR_CYCLE) || !is_suspend))
03d071fc 1962 err = mmc_poweroff_notify(host->card, notify_type);
07a68216
UH
1963 else if (mmc_can_sleep(host->card))
1964 err = mmc_sleep(host);
e6c08586 1965 else if (!mmc_host_is_spi(host))
85e727ed 1966 err = mmc_deselect_cards(host);
95cdfb72 1967
9ec775f7 1968 if (!err) {
74590263 1969 mmc_power_off(host);
9ec775f7
UH
1970 mmc_card_set_suspended(host->card);
1971 }
881d926d
ME
1972out:
1973 mmc_release_host(host);
c3805467 1974 return err;
6abaa0c9 1975}
7ea239d9 1976
03d071fc 1977/*
0cb403a2 1978 * Suspend callback
03d071fc
UH
1979 */
1980static int mmc_suspend(struct mmc_host *host)
1981{
0cb403a2
UH
1982 int err;
1983
1984 err = _mmc_suspend(host, true);
1985 if (!err) {
1986 pm_runtime_disable(&host->card->dev);
1987 pm_runtime_set_suspended(&host->card->dev);
1988 }
1989
1990 return err;
03d071fc
UH
1991}
1992
6abaa0c9 1993/*
6abaa0c9
PO
1994 * This function tries to determine if the same card is still present
1995 * and, if so, restore all state to it.
1996 */
0cb403a2 1997static int _mmc_resume(struct mmc_host *host)
6abaa0c9 1998{
9ec775f7 1999 int err = 0;
6abaa0c9 2000
6abaa0c9 2001 mmc_claim_host(host);
9ec775f7
UH
2002
2003 if (!mmc_card_suspended(host->card))
2004 goto out;
2005
69041150 2006 mmc_power_up(host, host->card->ocr);
69041150 2007 err = mmc_init_card(host, host->card->ocr, host->card);
9ec775f7 2008 mmc_card_clr_suspended(host->card);
2986d0bf 2009
9ec775f7
UH
2010out:
2011 mmc_release_host(host);
95cdfb72 2012 return err;
6abaa0c9
PO
2013}
2014
9ec775f7
UH
2015/*
2016 * Shutdown callback
2017 */
2018static int mmc_shutdown(struct mmc_host *host)
2019{
2020 int err = 0;
2021
2022 /*
2023 * In a specific case for poweroff notify, we need to resume the card
2024 * before we can shutdown it properly.
2025 */
2026 if (mmc_can_poweroff_notify(host->card) &&
2027 !(host->caps2 & MMC_CAP2_FULL_PWR_CYCLE))
0cb403a2 2028 err = _mmc_resume(host);
9ec775f7
UH
2029
2030 if (!err)
2031 err = _mmc_suspend(host, false);
2032
2033 return err;
2034}
c4d770d7 2035
0cb403a2
UH
2036/*
2037 * Callback for resume.
2038 */
2039static int mmc_resume(struct mmc_host *host)
2040{
0cb403a2 2041 pm_runtime_enable(&host->card->dev);
c29536e8 2042 return 0;
0cb403a2
UH
2043}
2044
c4d770d7
UH
2045/*
2046 * Callback for runtime_suspend.
2047 */
2048static int mmc_runtime_suspend(struct mmc_host *host)
2049{
2050 int err;
2051
2052 if (!(host->caps & MMC_CAP_AGGRESSIVE_PM))
2053 return 0;
2054
0cb403a2 2055 err = _mmc_suspend(host, true);
0cc81a8c 2056 if (err)
f42cf8d6 2057 pr_err("%s: error %d doing aggressive suspend\n",
c4d770d7 2058 mmc_hostname(host), err);
c4d770d7 2059
c4d770d7
UH
2060 return err;
2061}
2062
2063/*
2064 * Callback for runtime_resume.
2065 */
2066static int mmc_runtime_resume(struct mmc_host *host)
2067{
2068 int err;
2069
0cb403a2 2070 err = _mmc_resume(host);
520322d9 2071 if (err && err != -ENOMEDIUM)
c29536e8 2072 pr_err("%s: error %d doing runtime resume\n",
c4d770d7
UH
2073 mmc_hostname(host), err);
2074
c4d770d7
UH
2075 return 0;
2076}
2077
f855a371
JR
2078int mmc_can_reset(struct mmc_card *card)
2079{
2080 u8 rst_n_function;
2081
2082 rst_n_function = card->ext_csd.rst_n_function;
2083 if ((rst_n_function & EXT_CSD_RST_N_EN_MASK) != EXT_CSD_RST_N_ENABLED)
2084 return 0;
2085 return 1;
2086}
2087EXPORT_SYMBOL(mmc_can_reset);
2088
2089static int mmc_reset(struct mmc_host *host)
2090{
2091 struct mmc_card *card = host->card;
f855a371 2092
437db4c6
AH
2093 /*
2094 * In the case of recovery, we can't expect flushing the cache to work
2095 * always, but we have a go and ignore errors.
2096 */
2097 mmc_flush_cache(host->card);
2098
4e6c7178
GG
2099 if ((host->caps & MMC_CAP_HW_RESET) && host->ops->hw_reset &&
2100 mmc_can_reset(card)) {
2101 /* If the card accept RST_n signal, send it. */
2102 mmc_set_clock(host, host->f_init);
2103 host->ops->hw_reset(host);
2104 /* Set initial state and call mmc_set_ios */
2105 mmc_set_initial_state(host);
2106 } else {
2107 /* Do a brute force power cycle */
2108 mmc_power_cycle(host, card->ocr);
2109 }
364549dd 2110 return mmc_init_card(host, card->ocr, card);
f855a371
JR
2111}
2112
6abaa0c9
PO
2113static const struct mmc_bus_ops mmc_ops = {
2114 .remove = mmc_remove,
2115 .detect = mmc_detect,
2116 .suspend = mmc_suspend,
2117 .resume = mmc_resume,
c4d770d7
UH
2118 .runtime_suspend = mmc_runtime_suspend,
2119 .runtime_resume = mmc_runtime_resume,
d3049504 2120 .alive = mmc_alive,
486fdbbc 2121 .shutdown = mmc_shutdown,
f855a371 2122 .reset = mmc_reset,
6abaa0c9
PO
2123};
2124
2125/*
2126 * Starting point for MMC card init.
2127 */
807e8e40 2128int mmc_attach_mmc(struct mmc_host *host)
6abaa0c9
PO
2129{
2130 int err;
69041150 2131 u32 ocr, rocr;
6abaa0c9 2132
d84075c8 2133 WARN_ON(!host->claimed);
6abaa0c9 2134
44669034
SNX
2135 /* Set correct bus mode for MMC before attempting attach */
2136 if (!mmc_host_is_spi(host))
2137 mmc_set_bus_mode(host, MMC_BUSMODE_OPENDRAIN);
2138
807e8e40
AR
2139 err = mmc_send_op_cond(host, 0, &ocr);
2140 if (err)
2141 return err;
2142
2501c917 2143 mmc_attach_bus(host, &mmc_ops);
8f230f45
TI
2144 if (host->ocr_avail_mmc)
2145 host->ocr_avail = host->ocr_avail_mmc;
6abaa0c9 2146
af517150
DB
2147 /*
2148 * We need to get OCR a different way for SPI.
2149 */
2150 if (mmc_host_is_spi(host)) {
2151 err = mmc_spi_read_ocr(host, 1, &ocr);
2152 if (err)
2153 goto err;
2154 }
2155
69041150 2156 rocr = mmc_select_voltage(host, ocr);
6abaa0c9
PO
2157
2158 /*
2159 * Can we support the voltage of the card?
2160 */
69041150 2161 if (!rocr) {
109b5bed 2162 err = -EINVAL;
6abaa0c9 2163 goto err;
109b5bed 2164 }
6abaa0c9
PO
2165
2166 /*
2167 * Detect and init the card.
2168 */
69041150 2169 err = mmc_init_card(host, rocr, NULL);
17b0429d 2170 if (err)
6abaa0c9
PO
2171 goto err;
2172
2173 mmc_release_host(host);
4101c16a 2174 err = mmc_add_card(host->card);
7ea239d9 2175 if (err)
2986d0bf 2176 goto remove_card;
7ea239d9 2177
2860d060 2178 mmc_claim_host(host);
7ea239d9
PO
2179 return 0;
2180
2986d0bf 2181remove_card:
6abaa0c9 2182 mmc_remove_card(host->card);
2986d0bf 2183 mmc_claim_host(host);
807e8e40 2184 host->card = NULL;
7ea239d9
PO
2185err:
2186 mmc_detach_bus(host);
7ea239d9 2187
a3c76eb9 2188 pr_err("%s: error %d whilst initialising MMC card\n",
109b5bed
PO
2189 mmc_hostname(host), err);
2190
adf66a0d 2191 return err;
7ea239d9 2192}