2 * Copyright 2008, Freescale Semiconductor, Inc
5 * Based vaguely on the Linux code
7 * SPDX-License-Identifier: GPL-2.0+
14 #include <dm/device-internal.h>
20 #include <linux/list.h>
22 #include "mmc_private.h"
24 static const unsigned int sd_au_size[] = {
25 0, SZ_16K / 512, SZ_32K / 512,
26 SZ_64K / 512, SZ_128K / 512, SZ_256K / 512,
27 SZ_512K / 512, SZ_1M / 512, SZ_2M / 512,
28 SZ_4M / 512, SZ_8M / 512, (SZ_8M + SZ_4M) / 512,
29 SZ_16M / 512, (SZ_16M + SZ_8M) / 512, SZ_32M / 512, SZ_64M / 512,
32 #ifndef CONFIG_DM_MMC_OPS
33 __weak int board_mmc_getwp(struct mmc *mmc)
38 int mmc_getwp(struct mmc *mmc)
42 wp = board_mmc_getwp(mmc);
45 if (mmc->cfg->ops->getwp)
46 wp = mmc->cfg->ops->getwp(mmc);
54 __weak int board_mmc_getcd(struct mmc *mmc)
60 #ifdef CONFIG_MMC_TRACE
61 void mmmc_trace_before_send(struct mmc *mmc, struct mmc_cmd *cmd)
63 printf("CMD_SEND:%d\n", cmd->cmdidx);
64 printf("\t\tARG\t\t\t 0x%08X\n", cmd->cmdarg);
67 void mmmc_trace_after_send(struct mmc *mmc, struct mmc_cmd *cmd, int ret)
73 printf("\t\tRET\t\t\t %d\n", ret);
75 switch (cmd->resp_type) {
77 printf("\t\tMMC_RSP_NONE\n");
80 printf("\t\tMMC_RSP_R1,5,6,7 \t 0x%08X \n",
84 printf("\t\tMMC_RSP_R1b\t\t 0x%08X \n",
88 printf("\t\tMMC_RSP_R2\t\t 0x%08X \n",
90 printf("\t\t \t\t 0x%08X \n",
92 printf("\t\t \t\t 0x%08X \n",
94 printf("\t\t \t\t 0x%08X \n",
97 printf("\t\t\t\t\tDUMPING DATA\n");
98 for (i = 0; i < 4; i++) {
100 printf("\t\t\t\t\t%03d - ", i*4);
101 ptr = (u8 *)&cmd->response[i];
103 for (j = 0; j < 4; j++)
104 printf("%02X ", *ptr--);
109 printf("\t\tMMC_RSP_R3,4\t\t 0x%08X \n",
113 printf("\t\tERROR MMC rsp not supported\n");
119 void mmc_trace_state(struct mmc *mmc, struct mmc_cmd *cmd)
123 status = (cmd->response[0] & MMC_STATUS_CURR_STATE) >> 9;
124 printf("CURR STATE:%d\n", status);
128 #ifndef CONFIG_DM_MMC_OPS
129 int mmc_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd, struct mmc_data *data)
133 mmmc_trace_before_send(mmc, cmd);
134 ret = mmc->cfg->ops->send_cmd(mmc, cmd, data);
135 mmmc_trace_after_send(mmc, cmd, ret);
141 int mmc_send_status(struct mmc *mmc, int timeout)
144 int err, retries = 5;
146 cmd.cmdidx = MMC_CMD_SEND_STATUS;
147 cmd.resp_type = MMC_RSP_R1;
148 if (!mmc_host_is_spi(mmc))
149 cmd.cmdarg = mmc->rca << 16;
152 err = mmc_send_cmd(mmc, &cmd, NULL);
154 if ((cmd.response[0] & MMC_STATUS_RDY_FOR_DATA) &&
155 (cmd.response[0] & MMC_STATUS_CURR_STATE) !=
158 else if (cmd.response[0] & MMC_STATUS_MASK) {
159 #if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT)
160 printf("Status Error: 0x%08X\n",
165 } else if (--retries < 0)
174 mmc_trace_state(mmc, &cmd);
176 #if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT)
177 printf("Timeout waiting card ready\n");
185 int mmc_set_blocklen(struct mmc *mmc, int len)
192 cmd.cmdidx = MMC_CMD_SET_BLOCKLEN;
193 cmd.resp_type = MMC_RSP_R1;
196 return mmc_send_cmd(mmc, &cmd, NULL);
199 static int mmc_read_blocks(struct mmc *mmc, void *dst, lbaint_t start,
203 struct mmc_data data;
206 cmd.cmdidx = MMC_CMD_READ_MULTIPLE_BLOCK;
208 cmd.cmdidx = MMC_CMD_READ_SINGLE_BLOCK;
210 if (mmc->high_capacity)
213 cmd.cmdarg = start * mmc->read_bl_len;
215 cmd.resp_type = MMC_RSP_R1;
218 data.blocks = blkcnt;
219 data.blocksize = mmc->read_bl_len;
220 data.flags = MMC_DATA_READ;
222 if (mmc_send_cmd(mmc, &cmd, &data))
226 cmd.cmdidx = MMC_CMD_STOP_TRANSMISSION;
228 cmd.resp_type = MMC_RSP_R1b;
229 if (mmc_send_cmd(mmc, &cmd, NULL)) {
230 #if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT)
231 printf("mmc fail to send stop cmd\n");
241 ulong mmc_bread(struct udevice *dev, lbaint_t start, lbaint_t blkcnt, void *dst)
243 ulong mmc_bread(struct blk_desc *block_dev, lbaint_t start, lbaint_t blkcnt,
248 struct blk_desc *block_dev = dev_get_uclass_platdata(dev);
250 int dev_num = block_dev->devnum;
252 lbaint_t cur, blocks_todo = blkcnt;
257 struct mmc *mmc = find_mmc_device(dev_num);
261 err = blk_dselect_hwpart(block_dev, block_dev->hwpart);
265 if ((start + blkcnt) > block_dev->lba) {
266 #if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT)
267 printf("MMC: block number 0x" LBAF " exceeds max(0x" LBAF ")\n",
268 start + blkcnt, block_dev->lba);
273 if (mmc_set_blocklen(mmc, mmc->read_bl_len)) {
274 debug("%s: Failed to set blocklen\n", __func__);
279 cur = (blocks_todo > mmc->cfg->b_max) ?
280 mmc->cfg->b_max : blocks_todo;
281 if (mmc_read_blocks(mmc, dst, start, cur) != cur) {
282 debug("%s: Failed to read blocks\n", __func__);
287 dst += cur * mmc->read_bl_len;
288 } while (blocks_todo > 0);
293 static int mmc_go_idle(struct mmc *mmc)
300 cmd.cmdidx = MMC_CMD_GO_IDLE_STATE;
302 cmd.resp_type = MMC_RSP_NONE;
304 err = mmc_send_cmd(mmc, &cmd, NULL);
314 static int sd_send_op_cond(struct mmc *mmc)
321 cmd.cmdidx = MMC_CMD_APP_CMD;
322 cmd.resp_type = MMC_RSP_R1;
325 err = mmc_send_cmd(mmc, &cmd, NULL);
330 cmd.cmdidx = SD_CMD_APP_SEND_OP_COND;
331 cmd.resp_type = MMC_RSP_R3;
334 * Most cards do not answer if some reserved bits
335 * in the ocr are set. However, Some controller
336 * can set bit 7 (reserved for low voltages), but
337 * how to manage low voltages SD card is not yet
340 cmd.cmdarg = mmc_host_is_spi(mmc) ? 0 :
341 (mmc->cfg->voltages & 0xff8000);
343 if (mmc->version == SD_VERSION_2)
344 cmd.cmdarg |= OCR_HCS;
346 err = mmc_send_cmd(mmc, &cmd, NULL);
351 if (cmd.response[0] & OCR_BUSY)
360 if (mmc->version != SD_VERSION_2)
361 mmc->version = SD_VERSION_1_0;
363 if (mmc_host_is_spi(mmc)) { /* read OCR for spi */
364 cmd.cmdidx = MMC_CMD_SPI_READ_OCR;
365 cmd.resp_type = MMC_RSP_R3;
368 err = mmc_send_cmd(mmc, &cmd, NULL);
374 mmc->ocr = cmd.response[0];
376 mmc->high_capacity = ((mmc->ocr & OCR_HCS) == OCR_HCS);
382 static int mmc_send_op_cond_iter(struct mmc *mmc, int use_arg)
387 cmd.cmdidx = MMC_CMD_SEND_OP_COND;
388 cmd.resp_type = MMC_RSP_R3;
390 if (use_arg && !mmc_host_is_spi(mmc))
391 cmd.cmdarg = OCR_HCS |
392 (mmc->cfg->voltages &
393 (mmc->ocr & OCR_VOLTAGE_MASK)) |
394 (mmc->ocr & OCR_ACCESS_MODE);
396 err = mmc_send_cmd(mmc, &cmd, NULL);
399 mmc->ocr = cmd.response[0];
403 static int mmc_send_op_cond(struct mmc *mmc)
407 /* Some cards seem to need this */
410 /* Asking to the card its capabilities */
411 for (i = 0; i < 2; i++) {
412 err = mmc_send_op_cond_iter(mmc, i != 0);
416 /* exit if not busy (flag seems to be inverted) */
417 if (mmc->ocr & OCR_BUSY)
420 mmc->op_cond_pending = 1;
424 static int mmc_complete_op_cond(struct mmc *mmc)
431 mmc->op_cond_pending = 0;
432 if (!(mmc->ocr & OCR_BUSY)) {
433 /* Some cards seem to need this */
436 start = get_timer(0);
438 err = mmc_send_op_cond_iter(mmc, 1);
441 if (mmc->ocr & OCR_BUSY)
443 if (get_timer(start) > timeout)
449 if (mmc_host_is_spi(mmc)) { /* read OCR for spi */
450 cmd.cmdidx = MMC_CMD_SPI_READ_OCR;
451 cmd.resp_type = MMC_RSP_R3;
454 err = mmc_send_cmd(mmc, &cmd, NULL);
459 mmc->ocr = cmd.response[0];
462 mmc->version = MMC_VERSION_UNKNOWN;
464 mmc->high_capacity = ((mmc->ocr & OCR_HCS) == OCR_HCS);
471 static int mmc_send_ext_csd(struct mmc *mmc, u8 *ext_csd)
474 struct mmc_data data;
477 /* Get the Card Status Register */
478 cmd.cmdidx = MMC_CMD_SEND_EXT_CSD;
479 cmd.resp_type = MMC_RSP_R1;
482 data.dest = (char *)ext_csd;
484 data.blocksize = MMC_MAX_BLOCK_LEN;
485 data.flags = MMC_DATA_READ;
487 err = mmc_send_cmd(mmc, &cmd, &data);
492 int mmc_switch(struct mmc *mmc, u8 set, u8 index, u8 value)
498 cmd.cmdidx = MMC_CMD_SWITCH;
499 cmd.resp_type = MMC_RSP_R1b;
500 cmd.cmdarg = (MMC_SWITCH_MODE_WRITE_BYTE << 24) |
504 ret = mmc_send_cmd(mmc, &cmd, NULL);
506 /* Waiting for the ready status */
508 ret = mmc_send_status(mmc, timeout);
514 static int mmc_change_freq(struct mmc *mmc)
516 ALLOC_CACHE_ALIGN_BUFFER(u8, ext_csd, MMC_MAX_BLOCK_LEN);
522 if (mmc_host_is_spi(mmc))
525 /* Only version 4 supports high-speed */
526 if (mmc->version < MMC_VERSION_4)
529 mmc->card_caps |= MMC_MODE_4BIT | MMC_MODE_8BIT;
531 err = mmc_send_ext_csd(mmc, ext_csd);
536 cardtype = ext_csd[EXT_CSD_CARD_TYPE] & 0xf;
538 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL, EXT_CSD_HS_TIMING, 1);
543 /* Now check to see that it worked */
544 err = mmc_send_ext_csd(mmc, ext_csd);
549 /* No high-speed support */
550 if (!ext_csd[EXT_CSD_HS_TIMING])
553 /* High Speed is set, there are two types: 52MHz and 26MHz */
554 if (cardtype & EXT_CSD_CARD_TYPE_52) {
555 if (cardtype & EXT_CSD_CARD_TYPE_DDR_1_8V)
556 mmc->card_caps |= MMC_MODE_DDR_52MHz;
557 mmc->card_caps |= MMC_MODE_HS_52MHz | MMC_MODE_HS;
559 mmc->card_caps |= MMC_MODE_HS;
565 static int mmc_set_capacity(struct mmc *mmc, int part_num)
569 mmc->capacity = mmc->capacity_user;
573 mmc->capacity = mmc->capacity_boot;
576 mmc->capacity = mmc->capacity_rpmb;
582 mmc->capacity = mmc->capacity_gp[part_num - 4];
588 mmc_get_blk_desc(mmc)->lba = lldiv(mmc->capacity, mmc->read_bl_len);
593 int mmc_switch_part(struct mmc *mmc, unsigned int part_num)
597 ret = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL, EXT_CSD_PART_CONF,
598 (mmc->part_config & ~PART_ACCESS_MASK)
599 | (part_num & PART_ACCESS_MASK));
602 * Set the capacity if the switch succeeded or was intended
603 * to return to representing the raw device.
605 if ((ret == 0) || ((ret == -ENODEV) && (part_num == 0))) {
606 ret = mmc_set_capacity(mmc, part_num);
607 mmc_get_blk_desc(mmc)->hwpart = part_num;
613 int mmc_hwpart_config(struct mmc *mmc,
614 const struct mmc_hwpart_conf *conf,
615 enum mmc_hwpart_conf_mode mode)
621 u32 max_enh_size_mult;
622 u32 tot_enh_size_mult = 0;
625 ALLOC_CACHE_ALIGN_BUFFER(u8, ext_csd, MMC_MAX_BLOCK_LEN);
627 if (mode < MMC_HWPART_CONF_CHECK || mode > MMC_HWPART_CONF_COMPLETE)
630 if (IS_SD(mmc) || (mmc->version < MMC_VERSION_4_41)) {
631 printf("eMMC >= 4.4 required for enhanced user data area\n");
635 if (!(mmc->part_support & PART_SUPPORT)) {
636 printf("Card does not support partitioning\n");
640 if (!mmc->hc_wp_grp_size) {
641 printf("Card does not define HC WP group size\n");
645 /* check partition alignment and total enhanced size */
646 if (conf->user.enh_size) {
647 if (conf->user.enh_size % mmc->hc_wp_grp_size ||
648 conf->user.enh_start % mmc->hc_wp_grp_size) {
649 printf("User data enhanced area not HC WP group "
653 part_attrs |= EXT_CSD_ENH_USR;
654 enh_size_mult = conf->user.enh_size / mmc->hc_wp_grp_size;
655 if (mmc->high_capacity) {
656 enh_start_addr = conf->user.enh_start;
658 enh_start_addr = (conf->user.enh_start << 9);
664 tot_enh_size_mult += enh_size_mult;
666 for (pidx = 0; pidx < 4; pidx++) {
667 if (conf->gp_part[pidx].size % mmc->hc_wp_grp_size) {
668 printf("GP%i partition not HC WP group size "
669 "aligned\n", pidx+1);
672 gp_size_mult[pidx] = conf->gp_part[pidx].size / mmc->hc_wp_grp_size;
673 if (conf->gp_part[pidx].size && conf->gp_part[pidx].enhanced) {
674 part_attrs |= EXT_CSD_ENH_GP(pidx);
675 tot_enh_size_mult += gp_size_mult[pidx];
679 if (part_attrs && ! (mmc->part_support & ENHNCD_SUPPORT)) {
680 printf("Card does not support enhanced attribute\n");
684 err = mmc_send_ext_csd(mmc, ext_csd);
689 (ext_csd[EXT_CSD_MAX_ENH_SIZE_MULT+2] << 16) +
690 (ext_csd[EXT_CSD_MAX_ENH_SIZE_MULT+1] << 8) +
691 ext_csd[EXT_CSD_MAX_ENH_SIZE_MULT];
692 if (tot_enh_size_mult > max_enh_size_mult) {
693 printf("Total enhanced size exceeds maximum (%u > %u)\n",
694 tot_enh_size_mult, max_enh_size_mult);
698 /* The default value of EXT_CSD_WR_REL_SET is device
699 * dependent, the values can only be changed if the
700 * EXT_CSD_HS_CTRL_REL bit is set. The values can be
701 * changed only once and before partitioning is completed. */
702 wr_rel_set = ext_csd[EXT_CSD_WR_REL_SET];
703 if (conf->user.wr_rel_change) {
704 if (conf->user.wr_rel_set)
705 wr_rel_set |= EXT_CSD_WR_DATA_REL_USR;
707 wr_rel_set &= ~EXT_CSD_WR_DATA_REL_USR;
709 for (pidx = 0; pidx < 4; pidx++) {
710 if (conf->gp_part[pidx].wr_rel_change) {
711 if (conf->gp_part[pidx].wr_rel_set)
712 wr_rel_set |= EXT_CSD_WR_DATA_REL_GP(pidx);
714 wr_rel_set &= ~EXT_CSD_WR_DATA_REL_GP(pidx);
718 if (wr_rel_set != ext_csd[EXT_CSD_WR_REL_SET] &&
719 !(ext_csd[EXT_CSD_WR_REL_PARAM] & EXT_CSD_HS_CTRL_REL)) {
720 puts("Card does not support host controlled partition write "
721 "reliability settings\n");
725 if (ext_csd[EXT_CSD_PARTITION_SETTING] &
726 EXT_CSD_PARTITION_SETTING_COMPLETED) {
727 printf("Card already partitioned\n");
731 if (mode == MMC_HWPART_CONF_CHECK)
734 /* Partitioning requires high-capacity size definitions */
735 if (!(ext_csd[EXT_CSD_ERASE_GROUP_DEF] & 0x01)) {
736 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
737 EXT_CSD_ERASE_GROUP_DEF, 1);
742 ext_csd[EXT_CSD_ERASE_GROUP_DEF] = 1;
744 /* update erase group size to be high-capacity */
745 mmc->erase_grp_size =
746 ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE] * 1024;
750 /* all OK, write the configuration */
751 for (i = 0; i < 4; i++) {
752 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
753 EXT_CSD_ENH_START_ADDR+i,
754 (enh_start_addr >> (i*8)) & 0xFF);
758 for (i = 0; i < 3; i++) {
759 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
760 EXT_CSD_ENH_SIZE_MULT+i,
761 (enh_size_mult >> (i*8)) & 0xFF);
765 for (pidx = 0; pidx < 4; pidx++) {
766 for (i = 0; i < 3; i++) {
767 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
768 EXT_CSD_GP_SIZE_MULT+pidx*3+i,
769 (gp_size_mult[pidx] >> (i*8)) & 0xFF);
774 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
775 EXT_CSD_PARTITIONS_ATTRIBUTE, part_attrs);
779 if (mode == MMC_HWPART_CONF_SET)
782 /* The WR_REL_SET is a write-once register but shall be
783 * written before setting PART_SETTING_COMPLETED. As it is
784 * write-once we can only write it when completing the
786 if (wr_rel_set != ext_csd[EXT_CSD_WR_REL_SET]) {
787 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
788 EXT_CSD_WR_REL_SET, wr_rel_set);
793 /* Setting PART_SETTING_COMPLETED confirms the partition
794 * configuration but it only becomes effective after power
795 * cycle, so we do not adjust the partition related settings
796 * in the mmc struct. */
798 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
799 EXT_CSD_PARTITION_SETTING,
800 EXT_CSD_PARTITION_SETTING_COMPLETED);
807 #ifndef CONFIG_DM_MMC_OPS
808 int mmc_getcd(struct mmc *mmc)
812 cd = board_mmc_getcd(mmc);
815 if (mmc->cfg->ops->getcd)
816 cd = mmc->cfg->ops->getcd(mmc);
825 static int sd_switch(struct mmc *mmc, int mode, int group, u8 value, u8 *resp)
828 struct mmc_data data;
830 /* Switch the frequency */
831 cmd.cmdidx = SD_CMD_SWITCH_FUNC;
832 cmd.resp_type = MMC_RSP_R1;
833 cmd.cmdarg = (mode << 31) | 0xffffff;
834 cmd.cmdarg &= ~(0xf << (group * 4));
835 cmd.cmdarg |= value << (group * 4);
837 data.dest = (char *)resp;
840 data.flags = MMC_DATA_READ;
842 return mmc_send_cmd(mmc, &cmd, &data);
846 static int sd_change_freq(struct mmc *mmc)
850 ALLOC_CACHE_ALIGN_BUFFER(uint, scr, 2);
851 ALLOC_CACHE_ALIGN_BUFFER(uint, switch_status, 16);
852 struct mmc_data data;
857 if (mmc_host_is_spi(mmc))
860 /* Read the SCR to find out if this card supports higher speeds */
861 cmd.cmdidx = MMC_CMD_APP_CMD;
862 cmd.resp_type = MMC_RSP_R1;
863 cmd.cmdarg = mmc->rca << 16;
865 err = mmc_send_cmd(mmc, &cmd, NULL);
870 cmd.cmdidx = SD_CMD_APP_SEND_SCR;
871 cmd.resp_type = MMC_RSP_R1;
877 data.dest = (char *)scr;
880 data.flags = MMC_DATA_READ;
882 err = mmc_send_cmd(mmc, &cmd, &data);
891 mmc->scr[0] = __be32_to_cpu(scr[0]);
892 mmc->scr[1] = __be32_to_cpu(scr[1]);
894 switch ((mmc->scr[0] >> 24) & 0xf) {
896 mmc->version = SD_VERSION_1_0;
899 mmc->version = SD_VERSION_1_10;
902 mmc->version = SD_VERSION_2;
903 if ((mmc->scr[0] >> 15) & 0x1)
904 mmc->version = SD_VERSION_3;
907 mmc->version = SD_VERSION_1_0;
911 if (mmc->scr[0] & SD_DATA_4BIT)
912 mmc->card_caps |= MMC_MODE_4BIT;
914 /* Version 1.0 doesn't support switching */
915 if (mmc->version == SD_VERSION_1_0)
920 err = sd_switch(mmc, SD_SWITCH_CHECK, 0, 1,
921 (u8 *)switch_status);
926 /* The high-speed function is busy. Try again */
927 if (!(__be32_to_cpu(switch_status[7]) & SD_HIGHSPEED_BUSY))
931 /* If high-speed isn't supported, we return */
932 if (!(__be32_to_cpu(switch_status[3]) & SD_HIGHSPEED_SUPPORTED))
936 * If the host doesn't support SD_HIGHSPEED, do not switch card to
937 * HIGHSPEED mode even if the card support SD_HIGHSPPED.
938 * This can avoid furthur problem when the card runs in different
939 * mode between the host.
941 if (!((mmc->cfg->host_caps & MMC_MODE_HS_52MHz) &&
942 (mmc->cfg->host_caps & MMC_MODE_HS)))
945 err = sd_switch(mmc, SD_SWITCH_SWITCH, 0, 1, (u8 *)switch_status);
950 if ((__be32_to_cpu(switch_status[4]) & 0x0f000000) == 0x01000000)
951 mmc->card_caps |= MMC_MODE_HS;
956 static int sd_read_ssr(struct mmc *mmc)
960 ALLOC_CACHE_ALIGN_BUFFER(uint, ssr, 16);
961 struct mmc_data data;
963 unsigned int au, eo, et, es;
965 cmd.cmdidx = MMC_CMD_APP_CMD;
966 cmd.resp_type = MMC_RSP_R1;
967 cmd.cmdarg = mmc->rca << 16;
969 err = mmc_send_cmd(mmc, &cmd, NULL);
973 cmd.cmdidx = SD_CMD_APP_SD_STATUS;
974 cmd.resp_type = MMC_RSP_R1;
978 data.dest = (char *)ssr;
981 data.flags = MMC_DATA_READ;
983 err = mmc_send_cmd(mmc, &cmd, &data);
991 for (i = 0; i < 16; i++)
992 ssr[i] = be32_to_cpu(ssr[i]);
994 au = (ssr[2] >> 12) & 0xF;
995 if ((au <= 9) || (mmc->version == SD_VERSION_3)) {
996 mmc->ssr.au = sd_au_size[au];
997 es = (ssr[3] >> 24) & 0xFF;
998 es |= (ssr[2] & 0xFF) << 8;
999 et = (ssr[3] >> 18) & 0x3F;
1001 eo = (ssr[3] >> 16) & 0x3;
1002 mmc->ssr.erase_timeout = (et * 1000) / es;
1003 mmc->ssr.erase_offset = eo * 1000;
1006 debug("Invalid Allocation Unit Size.\n");
1012 /* frequency bases */
1013 /* divided by 10 to be nice to platforms without floating point */
1014 static const int fbase[] = {
1021 /* Multiplier values for TRAN_SPEED. Multiplied by 10 to be nice
1022 * to platforms without floating point.
1024 static const u8 multipliers[] = {
1043 #ifndef CONFIG_DM_MMC_OPS
1044 static void mmc_set_ios(struct mmc *mmc)
1046 if (mmc->cfg->ops->set_ios)
1047 mmc->cfg->ops->set_ios(mmc);
1051 void mmc_set_clock(struct mmc *mmc, uint clock)
1053 if (clock > mmc->cfg->f_max)
1054 clock = mmc->cfg->f_max;
1056 if (clock < mmc->cfg->f_min)
1057 clock = mmc->cfg->f_min;
1064 static void mmc_set_bus_width(struct mmc *mmc, uint width)
1066 mmc->bus_width = width;
1071 static int mmc_startup(struct mmc *mmc)
1075 u64 cmult, csize, capacity;
1077 ALLOC_CACHE_ALIGN_BUFFER(u8, ext_csd, MMC_MAX_BLOCK_LEN);
1078 ALLOC_CACHE_ALIGN_BUFFER(u8, test_csd, MMC_MAX_BLOCK_LEN);
1080 bool has_parts = false;
1081 bool part_completed;
1082 struct blk_desc *bdesc;
1084 #ifdef CONFIG_MMC_SPI_CRC_ON
1085 if (mmc_host_is_spi(mmc)) { /* enable CRC check for spi */
1086 cmd.cmdidx = MMC_CMD_SPI_CRC_ON_OFF;
1087 cmd.resp_type = MMC_RSP_R1;
1089 err = mmc_send_cmd(mmc, &cmd, NULL);
1096 /* Put the Card in Identify Mode */
1097 cmd.cmdidx = mmc_host_is_spi(mmc) ? MMC_CMD_SEND_CID :
1098 MMC_CMD_ALL_SEND_CID; /* cmd not supported in spi */
1099 cmd.resp_type = MMC_RSP_R2;
1102 err = mmc_send_cmd(mmc, &cmd, NULL);
1107 memcpy(mmc->cid, cmd.response, 16);
1110 * For MMC cards, set the Relative Address.
1111 * For SD cards, get the Relatvie Address.
1112 * This also puts the cards into Standby State
1114 if (!mmc_host_is_spi(mmc)) { /* cmd not supported in spi */
1115 cmd.cmdidx = SD_CMD_SEND_RELATIVE_ADDR;
1116 cmd.cmdarg = mmc->rca << 16;
1117 cmd.resp_type = MMC_RSP_R6;
1119 err = mmc_send_cmd(mmc, &cmd, NULL);
1125 mmc->rca = (cmd.response[0] >> 16) & 0xffff;
1128 /* Get the Card-Specific Data */
1129 cmd.cmdidx = MMC_CMD_SEND_CSD;
1130 cmd.resp_type = MMC_RSP_R2;
1131 cmd.cmdarg = mmc->rca << 16;
1133 err = mmc_send_cmd(mmc, &cmd, NULL);
1135 /* Waiting for the ready status */
1136 mmc_send_status(mmc, timeout);
1141 mmc->csd[0] = cmd.response[0];
1142 mmc->csd[1] = cmd.response[1];
1143 mmc->csd[2] = cmd.response[2];
1144 mmc->csd[3] = cmd.response[3];
1146 if (mmc->version == MMC_VERSION_UNKNOWN) {
1147 int version = (cmd.response[0] >> 26) & 0xf;
1151 mmc->version = MMC_VERSION_1_2;
1154 mmc->version = MMC_VERSION_1_4;
1157 mmc->version = MMC_VERSION_2_2;
1160 mmc->version = MMC_VERSION_3;
1163 mmc->version = MMC_VERSION_4;
1166 mmc->version = MMC_VERSION_1_2;
1171 /* divide frequency by 10, since the mults are 10x bigger */
1172 freq = fbase[(cmd.response[0] & 0x7)];
1173 mult = multipliers[((cmd.response[0] >> 3) & 0xf)];
1175 mmc->tran_speed = freq * mult;
1177 mmc->dsr_imp = ((cmd.response[1] >> 12) & 0x1);
1178 mmc->read_bl_len = 1 << ((cmd.response[1] >> 16) & 0xf);
1181 mmc->write_bl_len = mmc->read_bl_len;
1183 mmc->write_bl_len = 1 << ((cmd.response[3] >> 22) & 0xf);
1185 if (mmc->high_capacity) {
1186 csize = (mmc->csd[1] & 0x3f) << 16
1187 | (mmc->csd[2] & 0xffff0000) >> 16;
1190 csize = (mmc->csd[1] & 0x3ff) << 2
1191 | (mmc->csd[2] & 0xc0000000) >> 30;
1192 cmult = (mmc->csd[2] & 0x00038000) >> 15;
1195 mmc->capacity_user = (csize + 1) << (cmult + 2);
1196 mmc->capacity_user *= mmc->read_bl_len;
1197 mmc->capacity_boot = 0;
1198 mmc->capacity_rpmb = 0;
1199 for (i = 0; i < 4; i++)
1200 mmc->capacity_gp[i] = 0;
1202 if (mmc->read_bl_len > MMC_MAX_BLOCK_LEN)
1203 mmc->read_bl_len = MMC_MAX_BLOCK_LEN;
1205 if (mmc->write_bl_len > MMC_MAX_BLOCK_LEN)
1206 mmc->write_bl_len = MMC_MAX_BLOCK_LEN;
1208 if ((mmc->dsr_imp) && (0xffffffff != mmc->dsr)) {
1209 cmd.cmdidx = MMC_CMD_SET_DSR;
1210 cmd.cmdarg = (mmc->dsr & 0xffff) << 16;
1211 cmd.resp_type = MMC_RSP_NONE;
1212 if (mmc_send_cmd(mmc, &cmd, NULL))
1213 printf("MMC: SET_DSR failed\n");
1216 /* Select the card, and put it into Transfer Mode */
1217 if (!mmc_host_is_spi(mmc)) { /* cmd not supported in spi */
1218 cmd.cmdidx = MMC_CMD_SELECT_CARD;
1219 cmd.resp_type = MMC_RSP_R1;
1220 cmd.cmdarg = mmc->rca << 16;
1221 err = mmc_send_cmd(mmc, &cmd, NULL);
1228 * For SD, its erase group is always one sector
1230 mmc->erase_grp_size = 1;
1231 mmc->part_config = MMCPART_NOAVAILABLE;
1232 if (!IS_SD(mmc) && (mmc->version >= MMC_VERSION_4)) {
1233 /* check ext_csd version and capacity */
1234 err = mmc_send_ext_csd(mmc, ext_csd);
1237 if (ext_csd[EXT_CSD_REV] >= 2) {
1239 * According to the JEDEC Standard, the value of
1240 * ext_csd's capacity is valid if the value is more
1243 capacity = ext_csd[EXT_CSD_SEC_CNT] << 0
1244 | ext_csd[EXT_CSD_SEC_CNT + 1] << 8
1245 | ext_csd[EXT_CSD_SEC_CNT + 2] << 16
1246 | ext_csd[EXT_CSD_SEC_CNT + 3] << 24;
1247 capacity *= MMC_MAX_BLOCK_LEN;
1248 if ((capacity >> 20) > 2 * 1024)
1249 mmc->capacity_user = capacity;
1252 switch (ext_csd[EXT_CSD_REV]) {
1254 mmc->version = MMC_VERSION_4_1;
1257 mmc->version = MMC_VERSION_4_2;
1260 mmc->version = MMC_VERSION_4_3;
1263 mmc->version = MMC_VERSION_4_41;
1266 mmc->version = MMC_VERSION_4_5;
1269 mmc->version = MMC_VERSION_5_0;
1272 mmc->version = MMC_VERSION_5_1;
1276 /* The partition data may be non-zero but it is only
1277 * effective if PARTITION_SETTING_COMPLETED is set in
1278 * EXT_CSD, so ignore any data if this bit is not set,
1279 * except for enabling the high-capacity group size
1280 * definition (see below). */
1281 part_completed = !!(ext_csd[EXT_CSD_PARTITION_SETTING] &
1282 EXT_CSD_PARTITION_SETTING_COMPLETED);
1284 /* store the partition info of emmc */
1285 mmc->part_support = ext_csd[EXT_CSD_PARTITIONING_SUPPORT];
1286 if ((ext_csd[EXT_CSD_PARTITIONING_SUPPORT] & PART_SUPPORT) ||
1287 ext_csd[EXT_CSD_BOOT_MULT])
1288 mmc->part_config = ext_csd[EXT_CSD_PART_CONF];
1289 if (part_completed &&
1290 (ext_csd[EXT_CSD_PARTITIONING_SUPPORT] & ENHNCD_SUPPORT))
1291 mmc->part_attr = ext_csd[EXT_CSD_PARTITIONS_ATTRIBUTE];
1293 mmc->capacity_boot = ext_csd[EXT_CSD_BOOT_MULT] << 17;
1295 mmc->capacity_rpmb = ext_csd[EXT_CSD_RPMB_MULT] << 17;
1297 for (i = 0; i < 4; i++) {
1298 int idx = EXT_CSD_GP_SIZE_MULT + i * 3;
1299 uint mult = (ext_csd[idx + 2] << 16) +
1300 (ext_csd[idx + 1] << 8) + ext_csd[idx];
1303 if (!part_completed)
1305 mmc->capacity_gp[i] = mult;
1306 mmc->capacity_gp[i] *=
1307 ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE];
1308 mmc->capacity_gp[i] *= ext_csd[EXT_CSD_HC_WP_GRP_SIZE];
1309 mmc->capacity_gp[i] <<= 19;
1312 if (part_completed) {
1313 mmc->enh_user_size =
1314 (ext_csd[EXT_CSD_ENH_SIZE_MULT+2] << 16) +
1315 (ext_csd[EXT_CSD_ENH_SIZE_MULT+1] << 8) +
1316 ext_csd[EXT_CSD_ENH_SIZE_MULT];
1317 mmc->enh_user_size *= ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE];
1318 mmc->enh_user_size *= ext_csd[EXT_CSD_HC_WP_GRP_SIZE];
1319 mmc->enh_user_size <<= 19;
1320 mmc->enh_user_start =
1321 (ext_csd[EXT_CSD_ENH_START_ADDR+3] << 24) +
1322 (ext_csd[EXT_CSD_ENH_START_ADDR+2] << 16) +
1323 (ext_csd[EXT_CSD_ENH_START_ADDR+1] << 8) +
1324 ext_csd[EXT_CSD_ENH_START_ADDR];
1325 if (mmc->high_capacity)
1326 mmc->enh_user_start <<= 9;
1330 * Host needs to enable ERASE_GRP_DEF bit if device is
1331 * partitioned. This bit will be lost every time after a reset
1332 * or power off. This will affect erase size.
1336 if ((ext_csd[EXT_CSD_PARTITIONING_SUPPORT] & PART_SUPPORT) &&
1337 (ext_csd[EXT_CSD_PARTITIONS_ATTRIBUTE] & PART_ENH_ATTRIB))
1340 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
1341 EXT_CSD_ERASE_GROUP_DEF, 1);
1346 ext_csd[EXT_CSD_ERASE_GROUP_DEF] = 1;
1349 if (ext_csd[EXT_CSD_ERASE_GROUP_DEF] & 0x01) {
1350 /* Read out group size from ext_csd */
1351 mmc->erase_grp_size =
1352 ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE] * 1024;
1354 * if high capacity and partition setting completed
1355 * SEC_COUNT is valid even if it is smaller than 2 GiB
1356 * JEDEC Standard JESD84-B45, 6.2.4
1358 if (mmc->high_capacity && part_completed) {
1359 capacity = (ext_csd[EXT_CSD_SEC_CNT]) |
1360 (ext_csd[EXT_CSD_SEC_CNT + 1] << 8) |
1361 (ext_csd[EXT_CSD_SEC_CNT + 2] << 16) |
1362 (ext_csd[EXT_CSD_SEC_CNT + 3] << 24);
1363 capacity *= MMC_MAX_BLOCK_LEN;
1364 mmc->capacity_user = capacity;
1367 /* Calculate the group size from the csd value. */
1368 int erase_gsz, erase_gmul;
1369 erase_gsz = (mmc->csd[2] & 0x00007c00) >> 10;
1370 erase_gmul = (mmc->csd[2] & 0x000003e0) >> 5;
1371 mmc->erase_grp_size = (erase_gsz + 1)
1375 mmc->hc_wp_grp_size = 1024
1376 * ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE]
1377 * ext_csd[EXT_CSD_HC_WP_GRP_SIZE];
1379 mmc->wr_rel_set = ext_csd[EXT_CSD_WR_REL_SET];
1382 err = mmc_set_capacity(mmc, mmc_get_blk_desc(mmc)->hwpart);
1387 err = sd_change_freq(mmc);
1389 err = mmc_change_freq(mmc);
1394 /* Restrict card's capabilities by what the host can do */
1395 mmc->card_caps &= mmc->cfg->host_caps;
1398 if (mmc->card_caps & MMC_MODE_4BIT) {
1399 cmd.cmdidx = MMC_CMD_APP_CMD;
1400 cmd.resp_type = MMC_RSP_R1;
1401 cmd.cmdarg = mmc->rca << 16;
1403 err = mmc_send_cmd(mmc, &cmd, NULL);
1407 cmd.cmdidx = SD_CMD_APP_SET_BUS_WIDTH;
1408 cmd.resp_type = MMC_RSP_R1;
1410 err = mmc_send_cmd(mmc, &cmd, NULL);
1414 mmc_set_bus_width(mmc, 4);
1417 err = sd_read_ssr(mmc);
1421 if (mmc->card_caps & MMC_MODE_HS)
1422 mmc->tran_speed = 50000000;
1424 mmc->tran_speed = 25000000;
1425 } else if (mmc->version >= MMC_VERSION_4) {
1426 /* Only version 4 of MMC supports wider bus widths */
1429 /* An array of possible bus widths in order of preference */
1430 static unsigned ext_csd_bits[] = {
1431 EXT_CSD_DDR_BUS_WIDTH_8,
1432 EXT_CSD_DDR_BUS_WIDTH_4,
1433 EXT_CSD_BUS_WIDTH_8,
1434 EXT_CSD_BUS_WIDTH_4,
1435 EXT_CSD_BUS_WIDTH_1,
1438 /* An array to map CSD bus widths to host cap bits */
1439 static unsigned ext_to_hostcaps[] = {
1440 [EXT_CSD_DDR_BUS_WIDTH_4] =
1441 MMC_MODE_DDR_52MHz | MMC_MODE_4BIT,
1442 [EXT_CSD_DDR_BUS_WIDTH_8] =
1443 MMC_MODE_DDR_52MHz | MMC_MODE_8BIT,
1444 [EXT_CSD_BUS_WIDTH_4] = MMC_MODE_4BIT,
1445 [EXT_CSD_BUS_WIDTH_8] = MMC_MODE_8BIT,
1448 /* An array to map chosen bus width to an integer */
1449 static unsigned widths[] = {
1453 for (idx=0; idx < ARRAY_SIZE(ext_csd_bits); idx++) {
1454 unsigned int extw = ext_csd_bits[idx];
1455 unsigned int caps = ext_to_hostcaps[extw];
1458 * If the bus width is still not changed,
1459 * don't try to set the default again.
1460 * Otherwise, recover from switch attempts
1461 * by switching to 1-bit bus width.
1463 if (extw == EXT_CSD_BUS_WIDTH_1 &&
1464 mmc->bus_width == 1) {
1470 * Check to make sure the card and controller support
1471 * these capabilities
1473 if ((mmc->card_caps & caps) != caps)
1476 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
1477 EXT_CSD_BUS_WIDTH, extw);
1482 mmc->ddr_mode = (caps & MMC_MODE_DDR_52MHz) ? 1 : 0;
1483 mmc_set_bus_width(mmc, widths[idx]);
1485 err = mmc_send_ext_csd(mmc, test_csd);
1490 /* Only compare read only fields */
1491 if (ext_csd[EXT_CSD_PARTITIONING_SUPPORT]
1492 == test_csd[EXT_CSD_PARTITIONING_SUPPORT] &&
1493 ext_csd[EXT_CSD_HC_WP_GRP_SIZE]
1494 == test_csd[EXT_CSD_HC_WP_GRP_SIZE] &&
1495 ext_csd[EXT_CSD_REV]
1496 == test_csd[EXT_CSD_REV] &&
1497 ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE]
1498 == test_csd[EXT_CSD_HC_ERASE_GRP_SIZE] &&
1499 memcmp(&ext_csd[EXT_CSD_SEC_CNT],
1500 &test_csd[EXT_CSD_SEC_CNT], 4) == 0)
1509 if (mmc->card_caps & MMC_MODE_HS) {
1510 if (mmc->card_caps & MMC_MODE_HS_52MHz)
1511 mmc->tran_speed = 52000000;
1513 mmc->tran_speed = 26000000;
1517 mmc_set_clock(mmc, mmc->tran_speed);
1519 /* Fix the block length for DDR mode */
1520 if (mmc->ddr_mode) {
1521 mmc->read_bl_len = MMC_MAX_BLOCK_LEN;
1522 mmc->write_bl_len = MMC_MAX_BLOCK_LEN;
1525 /* fill in device description */
1526 bdesc = mmc_get_blk_desc(mmc);
1530 bdesc->blksz = mmc->read_bl_len;
1531 bdesc->log2blksz = LOG2(bdesc->blksz);
1532 bdesc->lba = lldiv(mmc->capacity, mmc->read_bl_len);
1533 #if !defined(CONFIG_SPL_BUILD) || \
1534 (defined(CONFIG_SPL_LIBCOMMON_SUPPORT) && \
1535 !defined(CONFIG_USE_TINY_PRINTF))
1536 sprintf(bdesc->vendor, "Man %06x Snr %04x%04x",
1537 mmc->cid[0] >> 24, (mmc->cid[2] & 0xffff),
1538 (mmc->cid[3] >> 16) & 0xffff);
1539 sprintf(bdesc->product, "%c%c%c%c%c%c", mmc->cid[0] & 0xff,
1540 (mmc->cid[1] >> 24), (mmc->cid[1] >> 16) & 0xff,
1541 (mmc->cid[1] >> 8) & 0xff, mmc->cid[1] & 0xff,
1542 (mmc->cid[2] >> 24) & 0xff);
1543 sprintf(bdesc->revision, "%d.%d", (mmc->cid[2] >> 20) & 0xf,
1544 (mmc->cid[2] >> 16) & 0xf);
1546 bdesc->vendor[0] = 0;
1547 bdesc->product[0] = 0;
1548 bdesc->revision[0] = 0;
1550 #if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBDISK_SUPPORT)
1557 static int mmc_send_if_cond(struct mmc *mmc)
1562 cmd.cmdidx = SD_CMD_SEND_IF_COND;
1563 /* We set the bit if the host supports voltages between 2.7 and 3.6 V */
1564 cmd.cmdarg = ((mmc->cfg->voltages & 0xff8000) != 0) << 8 | 0xaa;
1565 cmd.resp_type = MMC_RSP_R7;
1567 err = mmc_send_cmd(mmc, &cmd, NULL);
1572 if ((cmd.response[0] & 0xff) != 0xaa)
1575 mmc->version = SD_VERSION_2;
1580 /* board-specific MMC power initializations. */
1581 __weak void board_mmc_power_init(void)
1585 int mmc_start_init(struct mmc *mmc)
1590 /* we pretend there's no card when init is NULL */
1591 no_card = mmc_getcd(mmc) == 0;
1592 #ifndef CONFIG_DM_MMC_OPS
1593 no_card = no_card || (mmc->cfg->ops->init == NULL);
1597 #if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT)
1598 printf("MMC: no card present\n");
1606 #ifdef CONFIG_FSL_ESDHC_ADAPTER_IDENT
1607 mmc_adapter_card_type_ident();
1609 board_mmc_power_init();
1611 #ifdef CONFIG_DM_MMC_OPS
1612 /* The device has already been probed ready for use */
1614 /* made sure it's not NULL earlier */
1615 err = mmc->cfg->ops->init(mmc);
1620 mmc_set_bus_width(mmc, 1);
1621 mmc_set_clock(mmc, 1);
1623 /* Reset the Card */
1624 err = mmc_go_idle(mmc);
1629 /* The internal partition reset to user partition(0) at every CMD0*/
1630 mmc_get_blk_desc(mmc)->hwpart = 0;
1632 /* Test for SD version 2 */
1633 err = mmc_send_if_cond(mmc);
1635 /* Now try to get the SD card's operating condition */
1636 err = sd_send_op_cond(mmc);
1638 /* If the command timed out, we check for an MMC card */
1639 if (err == -ETIMEDOUT) {
1640 err = mmc_send_op_cond(mmc);
1643 #if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT)
1644 printf("Card did not respond to voltage select!\n");
1651 mmc->init_in_progress = 1;
1656 static int mmc_complete_init(struct mmc *mmc)
1660 mmc->init_in_progress = 0;
1661 if (mmc->op_cond_pending)
1662 err = mmc_complete_op_cond(mmc);
1665 err = mmc_startup(mmc);
1673 int mmc_init(struct mmc *mmc)
1677 #ifdef CONFIG_DM_MMC
1678 struct mmc_uclass_priv *upriv = dev_get_uclass_priv(mmc->dev);
1685 start = get_timer(0);
1687 if (!mmc->init_in_progress)
1688 err = mmc_start_init(mmc);
1691 err = mmc_complete_init(mmc);
1692 debug("%s: %d, time %lu\n", __func__, err, get_timer(start));
1696 int mmc_set_dsr(struct mmc *mmc, u16 val)
1702 /* CPU-specific MMC initializations */
1703 __weak int cpu_mmc_init(bd_t *bis)
1708 /* board-specific MMC initializations. */
1709 __weak int board_mmc_init(bd_t *bis)
1714 void mmc_set_preinit(struct mmc *mmc, int preinit)
1716 mmc->preinit = preinit;
1719 #if defined(CONFIG_DM_MMC) && defined(CONFIG_SPL_BUILD)
1720 static int mmc_probe(bd_t *bis)
1724 #elif defined(CONFIG_DM_MMC)
1725 static int mmc_probe(bd_t *bis)
1729 struct udevice *dev;
1731 ret = uclass_get(UCLASS_MMC, &uc);
1736 * Try to add them in sequence order. Really with driver model we
1737 * should allow holes, but the current MMC list does not allow that.
1738 * So if we request 0, 1, 3 we will get 0, 1, 2.
1740 for (i = 0; ; i++) {
1741 ret = uclass_get_device_by_seq(UCLASS_MMC, i, &dev);
1745 uclass_foreach_dev(dev, uc) {
1746 ret = device_probe(dev);
1748 printf("%s - probe failed: %d\n", dev->name, ret);
1754 static int mmc_probe(bd_t *bis)
1756 if (board_mmc_init(bis) < 0)
1763 int mmc_initialize(bd_t *bis)
1765 static int initialized = 0;
1767 if (initialized) /* Avoid initializing mmc multiple times */
1774 ret = mmc_probe(bis);
1778 #ifndef CONFIG_SPL_BUILD
1779 print_mmc_devices(',');