2 * Copyright 2008, Freescale Semiconductor, Inc
5 * Based vaguely on the Linux code
7 * SPDX-License-Identifier: GPL-2.0+
17 #include <linux/list.h>
19 #include "mmc_private.h"
21 static struct list_head mmc_devices;
22 static int cur_dev_num = -1;
24 __weak int board_mmc_getwp(struct mmc *mmc)
29 int mmc_getwp(struct mmc *mmc)
33 wp = board_mmc_getwp(mmc);
36 if (mmc->cfg->ops->getwp)
37 wp = mmc->cfg->ops->getwp(mmc);
45 __weak int board_mmc_getcd(struct mmc *mmc)
50 int mmc_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd, struct mmc_data *data)
54 #ifdef CONFIG_MMC_TRACE
58 printf("CMD_SEND:%d\n", cmd->cmdidx);
59 printf("\t\tARG\t\t\t 0x%08X\n", cmd->cmdarg);
60 ret = mmc->cfg->ops->send_cmd(mmc, cmd, data);
61 switch (cmd->resp_type) {
63 printf("\t\tMMC_RSP_NONE\n");
66 printf("\t\tMMC_RSP_R1,5,6,7 \t 0x%08X \n",
70 printf("\t\tMMC_RSP_R1b\t\t 0x%08X \n",
74 printf("\t\tMMC_RSP_R2\t\t 0x%08X \n",
76 printf("\t\t \t\t 0x%08X \n",
78 printf("\t\t \t\t 0x%08X \n",
80 printf("\t\t \t\t 0x%08X \n",
83 printf("\t\t\t\t\tDUMPING DATA\n");
84 for (i = 0; i < 4; i++) {
86 printf("\t\t\t\t\t%03d - ", i*4);
87 ptr = (u8 *)&cmd->response[i];
89 for (j = 0; j < 4; j++)
90 printf("%02X ", *ptr--);
95 printf("\t\tMMC_RSP_R3,4\t\t 0x%08X \n",
99 printf("\t\tERROR MMC rsp not supported\n");
103 ret = mmc->cfg->ops->send_cmd(mmc, cmd, data);
108 int mmc_send_status(struct mmc *mmc, int timeout)
111 int err, retries = 5;
112 #ifdef CONFIG_MMC_TRACE
116 cmd.cmdidx = MMC_CMD_SEND_STATUS;
117 cmd.resp_type = MMC_RSP_R1;
118 if (!mmc_host_is_spi(mmc))
119 cmd.cmdarg = mmc->rca << 16;
122 err = mmc_send_cmd(mmc, &cmd, NULL);
124 if ((cmd.response[0] & MMC_STATUS_RDY_FOR_DATA) &&
125 (cmd.response[0] & MMC_STATUS_CURR_STATE) !=
128 else if (cmd.response[0] & MMC_STATUS_MASK) {
129 #if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT)
130 printf("Status Error: 0x%08X\n",
135 } else if (--retries < 0)
144 #ifdef CONFIG_MMC_TRACE
145 status = (cmd.response[0] & MMC_STATUS_CURR_STATE) >> 9;
146 printf("CURR STATE:%d\n", status);
149 #if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT)
150 printf("Timeout waiting card ready\n");
154 if (cmd.response[0] & MMC_STATUS_SWITCH_ERROR)
160 int mmc_set_blocklen(struct mmc *mmc, int len)
167 cmd.cmdidx = MMC_CMD_SET_BLOCKLEN;
168 cmd.resp_type = MMC_RSP_R1;
171 return mmc_send_cmd(mmc, &cmd, NULL);
174 struct mmc *find_mmc_device(int dev_num)
177 struct list_head *entry;
179 list_for_each(entry, &mmc_devices) {
180 m = list_entry(entry, struct mmc, link);
182 if (m->block_dev.dev == dev_num)
186 #if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT)
187 printf("MMC Device %d not found\n", dev_num);
193 static int mmc_read_blocks(struct mmc *mmc, void *dst, lbaint_t start,
197 struct mmc_data data;
200 cmd.cmdidx = MMC_CMD_READ_MULTIPLE_BLOCK;
202 cmd.cmdidx = MMC_CMD_READ_SINGLE_BLOCK;
204 if (mmc->high_capacity)
207 cmd.cmdarg = start * mmc->read_bl_len;
209 cmd.resp_type = MMC_RSP_R1;
212 data.blocks = blkcnt;
213 data.blocksize = mmc->read_bl_len;
214 data.flags = MMC_DATA_READ;
216 if (mmc_send_cmd(mmc, &cmd, &data))
220 cmd.cmdidx = MMC_CMD_STOP_TRANSMISSION;
222 cmd.resp_type = MMC_RSP_R1b;
223 if (mmc_send_cmd(mmc, &cmd, NULL)) {
224 #if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT)
225 printf("mmc fail to send stop cmd\n");
234 static ulong mmc_bread(int dev_num, lbaint_t start, lbaint_t blkcnt, void *dst)
236 lbaint_t cur, blocks_todo = blkcnt;
241 struct mmc *mmc = find_mmc_device(dev_num);
245 if ((start + blkcnt) > mmc->block_dev.lba) {
246 #if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT)
247 printf("MMC: block number 0x" LBAF " exceeds max(0x" LBAF ")\n",
248 start + blkcnt, mmc->block_dev.lba);
253 if (mmc_set_blocklen(mmc, mmc->read_bl_len))
257 cur = (blocks_todo > mmc->cfg->b_max) ?
258 mmc->cfg->b_max : blocks_todo;
259 if(mmc_read_blocks(mmc, dst, start, cur) != cur)
263 dst += cur * mmc->read_bl_len;
264 } while (blocks_todo > 0);
269 static int mmc_go_idle(struct mmc *mmc)
276 cmd.cmdidx = MMC_CMD_GO_IDLE_STATE;
278 cmd.resp_type = MMC_RSP_NONE;
280 err = mmc_send_cmd(mmc, &cmd, NULL);
290 static int sd_send_op_cond(struct mmc *mmc)
297 cmd.cmdidx = MMC_CMD_APP_CMD;
298 cmd.resp_type = MMC_RSP_R1;
301 err = mmc_send_cmd(mmc, &cmd, NULL);
306 cmd.cmdidx = SD_CMD_APP_SEND_OP_COND;
307 cmd.resp_type = MMC_RSP_R3;
310 * Most cards do not answer if some reserved bits
311 * in the ocr are set. However, Some controller
312 * can set bit 7 (reserved for low voltages), but
313 * how to manage low voltages SD card is not yet
316 cmd.cmdarg = mmc_host_is_spi(mmc) ? 0 :
317 (mmc->cfg->voltages & 0xff8000);
319 if (mmc->version == SD_VERSION_2)
320 cmd.cmdarg |= OCR_HCS;
322 err = mmc_send_cmd(mmc, &cmd, NULL);
327 if (cmd.response[0] & OCR_BUSY)
336 if (mmc->version != SD_VERSION_2)
337 mmc->version = SD_VERSION_1_0;
339 if (mmc_host_is_spi(mmc)) { /* read OCR for spi */
340 cmd.cmdidx = MMC_CMD_SPI_READ_OCR;
341 cmd.resp_type = MMC_RSP_R3;
344 err = mmc_send_cmd(mmc, &cmd, NULL);
350 mmc->ocr = cmd.response[0];
352 mmc->high_capacity = ((mmc->ocr & OCR_HCS) == OCR_HCS);
358 static int mmc_send_op_cond_iter(struct mmc *mmc, int use_arg)
363 cmd.cmdidx = MMC_CMD_SEND_OP_COND;
364 cmd.resp_type = MMC_RSP_R3;
366 if (use_arg && !mmc_host_is_spi(mmc))
367 cmd.cmdarg = OCR_HCS |
368 (mmc->cfg->voltages &
369 (mmc->ocr & OCR_VOLTAGE_MASK)) |
370 (mmc->ocr & OCR_ACCESS_MODE);
372 err = mmc_send_cmd(mmc, &cmd, NULL);
375 mmc->ocr = cmd.response[0];
379 static int mmc_send_op_cond(struct mmc *mmc)
383 /* Some cards seem to need this */
386 /* Asking to the card its capabilities */
387 for (i = 0; i < 2; i++) {
388 err = mmc_send_op_cond_iter(mmc, i != 0);
392 /* exit if not busy (flag seems to be inverted) */
393 if (mmc->ocr & OCR_BUSY)
396 mmc->op_cond_pending = 1;
400 static int mmc_complete_op_cond(struct mmc *mmc)
407 mmc->op_cond_pending = 0;
408 if (!(mmc->ocr & OCR_BUSY)) {
409 start = get_timer(0);
411 err = mmc_send_op_cond_iter(mmc, 1);
414 if (mmc->ocr & OCR_BUSY)
416 if (get_timer(start) > timeout)
422 if (mmc_host_is_spi(mmc)) { /* read OCR for spi */
423 cmd.cmdidx = MMC_CMD_SPI_READ_OCR;
424 cmd.resp_type = MMC_RSP_R3;
427 err = mmc_send_cmd(mmc, &cmd, NULL);
432 mmc->ocr = cmd.response[0];
435 mmc->version = MMC_VERSION_UNKNOWN;
437 mmc->high_capacity = ((mmc->ocr & OCR_HCS) == OCR_HCS);
444 static int mmc_send_ext_csd(struct mmc *mmc, u8 *ext_csd)
447 struct mmc_data data;
450 /* Get the Card Status Register */
451 cmd.cmdidx = MMC_CMD_SEND_EXT_CSD;
452 cmd.resp_type = MMC_RSP_R1;
455 data.dest = (char *)ext_csd;
457 data.blocksize = MMC_MAX_BLOCK_LEN;
458 data.flags = MMC_DATA_READ;
460 err = mmc_send_cmd(mmc, &cmd, &data);
466 static int mmc_switch(struct mmc *mmc, u8 set, u8 index, u8 value)
472 cmd.cmdidx = MMC_CMD_SWITCH;
473 cmd.resp_type = MMC_RSP_R1b;
474 cmd.cmdarg = (MMC_SWITCH_MODE_WRITE_BYTE << 24) |
478 ret = mmc_send_cmd(mmc, &cmd, NULL);
480 /* Waiting for the ready status */
482 ret = mmc_send_status(mmc, timeout);
488 static int mmc_change_freq(struct mmc *mmc)
490 ALLOC_CACHE_ALIGN_BUFFER(u8, ext_csd, MMC_MAX_BLOCK_LEN);
496 if (mmc_host_is_spi(mmc))
499 /* Only version 4 supports high-speed */
500 if (mmc->version < MMC_VERSION_4)
503 mmc->card_caps |= MMC_MODE_4BIT | MMC_MODE_8BIT;
505 err = mmc_send_ext_csd(mmc, ext_csd);
510 cardtype = ext_csd[EXT_CSD_CARD_TYPE] & 0xf;
512 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL, EXT_CSD_HS_TIMING, 1);
515 return err == SWITCH_ERR ? 0 : err;
517 /* Now check to see that it worked */
518 err = mmc_send_ext_csd(mmc, ext_csd);
523 /* No high-speed support */
524 if (!ext_csd[EXT_CSD_HS_TIMING])
527 /* High Speed is set, there are two types: 52MHz and 26MHz */
528 if (cardtype & EXT_CSD_CARD_TYPE_52) {
529 if (cardtype & EXT_CSD_CARD_TYPE_DDR_1_8V)
530 mmc->card_caps |= MMC_MODE_DDR_52MHz;
531 mmc->card_caps |= MMC_MODE_HS_52MHz | MMC_MODE_HS;
533 mmc->card_caps |= MMC_MODE_HS;
539 static int mmc_set_capacity(struct mmc *mmc, int part_num)
543 mmc->capacity = mmc->capacity_user;
547 mmc->capacity = mmc->capacity_boot;
550 mmc->capacity = mmc->capacity_rpmb;
556 mmc->capacity = mmc->capacity_gp[part_num - 4];
562 mmc->block_dev.lba = lldiv(mmc->capacity, mmc->read_bl_len);
567 int mmc_select_hwpart(int dev_num, int hwpart)
569 struct mmc *mmc = find_mmc_device(dev_num);
575 if (mmc->part_num == hwpart)
578 if (mmc->part_config == MMCPART_NOAVAILABLE) {
579 printf("Card doesn't support part_switch\n");
583 ret = mmc_switch_part(dev_num, hwpart);
587 mmc->part_num = hwpart;
593 int mmc_switch_part(int dev_num, unsigned int part_num)
595 struct mmc *mmc = find_mmc_device(dev_num);
601 ret = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL, EXT_CSD_PART_CONF,
602 (mmc->part_config & ~PART_ACCESS_MASK)
603 | (part_num & PART_ACCESS_MASK));
606 * Set the capacity if the switch succeeded or was intended
607 * to return to representing the raw device.
609 if ((ret == 0) || ((ret == -ENODEV) && (part_num == 0)))
610 ret = mmc_set_capacity(mmc, part_num);
615 int mmc_hwpart_config(struct mmc *mmc,
616 const struct mmc_hwpart_conf *conf,
617 enum mmc_hwpart_conf_mode mode)
623 u32 max_enh_size_mult;
624 u32 tot_enh_size_mult = 0;
627 ALLOC_CACHE_ALIGN_BUFFER(u8, ext_csd, MMC_MAX_BLOCK_LEN);
629 if (mode < MMC_HWPART_CONF_CHECK || mode > MMC_HWPART_CONF_COMPLETE)
632 if (IS_SD(mmc) || (mmc->version < MMC_VERSION_4_41)) {
633 printf("eMMC >= 4.4 required for enhanced user data area\n");
637 if (!(mmc->part_support & PART_SUPPORT)) {
638 printf("Card does not support partitioning\n");
642 if (!mmc->hc_wp_grp_size) {
643 printf("Card does not define HC WP group size\n");
647 /* check partition alignment and total enhanced size */
648 if (conf->user.enh_size) {
649 if (conf->user.enh_size % mmc->hc_wp_grp_size ||
650 conf->user.enh_start % mmc->hc_wp_grp_size) {
651 printf("User data enhanced area not HC WP group "
655 part_attrs |= EXT_CSD_ENH_USR;
656 enh_size_mult = conf->user.enh_size / mmc->hc_wp_grp_size;
657 if (mmc->high_capacity) {
658 enh_start_addr = conf->user.enh_start;
660 enh_start_addr = (conf->user.enh_start << 9);
666 tot_enh_size_mult += enh_size_mult;
668 for (pidx = 0; pidx < 4; pidx++) {
669 if (conf->gp_part[pidx].size % mmc->hc_wp_grp_size) {
670 printf("GP%i partition not HC WP group size "
671 "aligned\n", pidx+1);
674 gp_size_mult[pidx] = conf->gp_part[pidx].size / mmc->hc_wp_grp_size;
675 if (conf->gp_part[pidx].size && conf->gp_part[pidx].enhanced) {
676 part_attrs |= EXT_CSD_ENH_GP(pidx);
677 tot_enh_size_mult += gp_size_mult[pidx];
681 if (part_attrs && ! (mmc->part_support & ENHNCD_SUPPORT)) {
682 printf("Card does not support enhanced attribute\n");
686 err = mmc_send_ext_csd(mmc, ext_csd);
691 (ext_csd[EXT_CSD_MAX_ENH_SIZE_MULT+2] << 16) +
692 (ext_csd[EXT_CSD_MAX_ENH_SIZE_MULT+1] << 8) +
693 ext_csd[EXT_CSD_MAX_ENH_SIZE_MULT];
694 if (tot_enh_size_mult > max_enh_size_mult) {
695 printf("Total enhanced size exceeds maximum (%u > %u)\n",
696 tot_enh_size_mult, max_enh_size_mult);
700 /* The default value of EXT_CSD_WR_REL_SET is device
701 * dependent, the values can only be changed if the
702 * EXT_CSD_HS_CTRL_REL bit is set. The values can be
703 * changed only once and before partitioning is completed. */
704 wr_rel_set = ext_csd[EXT_CSD_WR_REL_SET];
705 if (conf->user.wr_rel_change) {
706 if (conf->user.wr_rel_set)
707 wr_rel_set |= EXT_CSD_WR_DATA_REL_USR;
709 wr_rel_set &= ~EXT_CSD_WR_DATA_REL_USR;
711 for (pidx = 0; pidx < 4; pidx++) {
712 if (conf->gp_part[pidx].wr_rel_change) {
713 if (conf->gp_part[pidx].wr_rel_set)
714 wr_rel_set |= EXT_CSD_WR_DATA_REL_GP(pidx);
716 wr_rel_set &= ~EXT_CSD_WR_DATA_REL_GP(pidx);
720 if (wr_rel_set != ext_csd[EXT_CSD_WR_REL_SET] &&
721 !(ext_csd[EXT_CSD_WR_REL_PARAM] & EXT_CSD_HS_CTRL_REL)) {
722 puts("Card does not support host controlled partition write "
723 "reliability settings\n");
727 if (ext_csd[EXT_CSD_PARTITION_SETTING] &
728 EXT_CSD_PARTITION_SETTING_COMPLETED) {
729 printf("Card already partitioned\n");
733 if (mode == MMC_HWPART_CONF_CHECK)
736 /* Partitioning requires high-capacity size definitions */
737 if (!(ext_csd[EXT_CSD_ERASE_GROUP_DEF] & 0x01)) {
738 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
739 EXT_CSD_ERASE_GROUP_DEF, 1);
744 ext_csd[EXT_CSD_ERASE_GROUP_DEF] = 1;
746 /* update erase group size to be high-capacity */
747 mmc->erase_grp_size =
748 ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE] * 1024;
752 /* all OK, write the configuration */
753 for (i = 0; i < 4; i++) {
754 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
755 EXT_CSD_ENH_START_ADDR+i,
756 (enh_start_addr >> (i*8)) & 0xFF);
760 for (i = 0; i < 3; i++) {
761 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
762 EXT_CSD_ENH_SIZE_MULT+i,
763 (enh_size_mult >> (i*8)) & 0xFF);
767 for (pidx = 0; pidx < 4; pidx++) {
768 for (i = 0; i < 3; i++) {
769 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
770 EXT_CSD_GP_SIZE_MULT+pidx*3+i,
771 (gp_size_mult[pidx] >> (i*8)) & 0xFF);
776 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
777 EXT_CSD_PARTITIONS_ATTRIBUTE, part_attrs);
781 if (mode == MMC_HWPART_CONF_SET)
784 /* The WR_REL_SET is a write-once register but shall be
785 * written before setting PART_SETTING_COMPLETED. As it is
786 * write-once we can only write it when completing the
788 if (wr_rel_set != ext_csd[EXT_CSD_WR_REL_SET]) {
789 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
790 EXT_CSD_WR_REL_SET, wr_rel_set);
795 /* Setting PART_SETTING_COMPLETED confirms the partition
796 * configuration but it only becomes effective after power
797 * cycle, so we do not adjust the partition related settings
798 * in the mmc struct. */
800 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
801 EXT_CSD_PARTITION_SETTING,
802 EXT_CSD_PARTITION_SETTING_COMPLETED);
809 int mmc_getcd(struct mmc *mmc)
813 cd = board_mmc_getcd(mmc);
816 if (mmc->cfg->ops->getcd)
817 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 /* frequency bases */
957 /* divided by 10 to be nice to platforms without floating point */
958 static const int fbase[] = {
965 /* Multiplier values for TRAN_SPEED. Multiplied by 10 to be nice
966 * to platforms without floating point.
968 static const int multipliers[] = {
987 static void mmc_set_ios(struct mmc *mmc)
989 if (mmc->cfg->ops->set_ios)
990 mmc->cfg->ops->set_ios(mmc);
993 void mmc_set_clock(struct mmc *mmc, uint clock)
995 if (clock > mmc->cfg->f_max)
996 clock = mmc->cfg->f_max;
998 if (clock < mmc->cfg->f_min)
999 clock = mmc->cfg->f_min;
1006 static void mmc_set_bus_width(struct mmc *mmc, uint width)
1008 mmc->bus_width = width;
1013 static int mmc_startup(struct mmc *mmc)
1017 u64 cmult, csize, capacity;
1019 ALLOC_CACHE_ALIGN_BUFFER(u8, ext_csd, MMC_MAX_BLOCK_LEN);
1020 ALLOC_CACHE_ALIGN_BUFFER(u8, test_csd, MMC_MAX_BLOCK_LEN);
1022 bool has_parts = false;
1023 bool part_completed;
1025 #ifdef CONFIG_MMC_SPI_CRC_ON
1026 if (mmc_host_is_spi(mmc)) { /* enable CRC check for spi */
1027 cmd.cmdidx = MMC_CMD_SPI_CRC_ON_OFF;
1028 cmd.resp_type = MMC_RSP_R1;
1030 err = mmc_send_cmd(mmc, &cmd, NULL);
1037 /* Put the Card in Identify Mode */
1038 cmd.cmdidx = mmc_host_is_spi(mmc) ? MMC_CMD_SEND_CID :
1039 MMC_CMD_ALL_SEND_CID; /* cmd not supported in spi */
1040 cmd.resp_type = MMC_RSP_R2;
1043 err = mmc_send_cmd(mmc, &cmd, NULL);
1048 memcpy(mmc->cid, cmd.response, 16);
1051 * For MMC cards, set the Relative Address.
1052 * For SD cards, get the Relatvie Address.
1053 * This also puts the cards into Standby State
1055 if (!mmc_host_is_spi(mmc)) { /* cmd not supported in spi */
1056 cmd.cmdidx = SD_CMD_SEND_RELATIVE_ADDR;
1057 cmd.cmdarg = mmc->rca << 16;
1058 cmd.resp_type = MMC_RSP_R6;
1060 err = mmc_send_cmd(mmc, &cmd, NULL);
1066 mmc->rca = (cmd.response[0] >> 16) & 0xffff;
1069 /* Get the Card-Specific Data */
1070 cmd.cmdidx = MMC_CMD_SEND_CSD;
1071 cmd.resp_type = MMC_RSP_R2;
1072 cmd.cmdarg = mmc->rca << 16;
1074 err = mmc_send_cmd(mmc, &cmd, NULL);
1076 /* Waiting for the ready status */
1077 mmc_send_status(mmc, timeout);
1082 mmc->csd[0] = cmd.response[0];
1083 mmc->csd[1] = cmd.response[1];
1084 mmc->csd[2] = cmd.response[2];
1085 mmc->csd[3] = cmd.response[3];
1087 if (mmc->version == MMC_VERSION_UNKNOWN) {
1088 int version = (cmd.response[0] >> 26) & 0xf;
1092 mmc->version = MMC_VERSION_1_2;
1095 mmc->version = MMC_VERSION_1_4;
1098 mmc->version = MMC_VERSION_2_2;
1101 mmc->version = MMC_VERSION_3;
1104 mmc->version = MMC_VERSION_4;
1107 mmc->version = MMC_VERSION_1_2;
1112 /* divide frequency by 10, since the mults are 10x bigger */
1113 freq = fbase[(cmd.response[0] & 0x7)];
1114 mult = multipliers[((cmd.response[0] >> 3) & 0xf)];
1116 mmc->tran_speed = freq * mult;
1118 mmc->dsr_imp = ((cmd.response[1] >> 12) & 0x1);
1119 mmc->read_bl_len = 1 << ((cmd.response[1] >> 16) & 0xf);
1122 mmc->write_bl_len = mmc->read_bl_len;
1124 mmc->write_bl_len = 1 << ((cmd.response[3] >> 22) & 0xf);
1126 if (mmc->high_capacity) {
1127 csize = (mmc->csd[1] & 0x3f) << 16
1128 | (mmc->csd[2] & 0xffff0000) >> 16;
1131 csize = (mmc->csd[1] & 0x3ff) << 2
1132 | (mmc->csd[2] & 0xc0000000) >> 30;
1133 cmult = (mmc->csd[2] & 0x00038000) >> 15;
1136 mmc->capacity_user = (csize + 1) << (cmult + 2);
1137 mmc->capacity_user *= mmc->read_bl_len;
1138 mmc->capacity_boot = 0;
1139 mmc->capacity_rpmb = 0;
1140 for (i = 0; i < 4; i++)
1141 mmc->capacity_gp[i] = 0;
1143 if (mmc->read_bl_len > MMC_MAX_BLOCK_LEN)
1144 mmc->read_bl_len = MMC_MAX_BLOCK_LEN;
1146 if (mmc->write_bl_len > MMC_MAX_BLOCK_LEN)
1147 mmc->write_bl_len = MMC_MAX_BLOCK_LEN;
1149 if ((mmc->dsr_imp) && (0xffffffff != mmc->dsr)) {
1150 cmd.cmdidx = MMC_CMD_SET_DSR;
1151 cmd.cmdarg = (mmc->dsr & 0xffff) << 16;
1152 cmd.resp_type = MMC_RSP_NONE;
1153 if (mmc_send_cmd(mmc, &cmd, NULL))
1154 printf("MMC: SET_DSR failed\n");
1157 /* Select the card, and put it into Transfer Mode */
1158 if (!mmc_host_is_spi(mmc)) { /* cmd not supported in spi */
1159 cmd.cmdidx = MMC_CMD_SELECT_CARD;
1160 cmd.resp_type = MMC_RSP_R1;
1161 cmd.cmdarg = mmc->rca << 16;
1162 err = mmc_send_cmd(mmc, &cmd, NULL);
1169 * For SD, its erase group is always one sector
1171 mmc->erase_grp_size = 1;
1172 mmc->part_config = MMCPART_NOAVAILABLE;
1173 if (!IS_SD(mmc) && (mmc->version >= MMC_VERSION_4)) {
1174 /* check ext_csd version and capacity */
1175 err = mmc_send_ext_csd(mmc, ext_csd);
1178 if (ext_csd[EXT_CSD_REV] >= 2) {
1180 * According to the JEDEC Standard, the value of
1181 * ext_csd's capacity is valid if the value is more
1184 capacity = ext_csd[EXT_CSD_SEC_CNT] << 0
1185 | ext_csd[EXT_CSD_SEC_CNT + 1] << 8
1186 | ext_csd[EXT_CSD_SEC_CNT + 2] << 16
1187 | ext_csd[EXT_CSD_SEC_CNT + 3] << 24;
1188 capacity *= MMC_MAX_BLOCK_LEN;
1189 if ((capacity >> 20) > 2 * 1024)
1190 mmc->capacity_user = capacity;
1193 switch (ext_csd[EXT_CSD_REV]) {
1195 mmc->version = MMC_VERSION_4_1;
1198 mmc->version = MMC_VERSION_4_2;
1201 mmc->version = MMC_VERSION_4_3;
1204 mmc->version = MMC_VERSION_4_41;
1207 mmc->version = MMC_VERSION_4_5;
1210 mmc->version = MMC_VERSION_5_0;
1214 /* The partition data may be non-zero but it is only
1215 * effective if PARTITION_SETTING_COMPLETED is set in
1216 * EXT_CSD, so ignore any data if this bit is not set,
1217 * except for enabling the high-capacity group size
1218 * definition (see below). */
1219 part_completed = !!(ext_csd[EXT_CSD_PARTITION_SETTING] &
1220 EXT_CSD_PARTITION_SETTING_COMPLETED);
1222 /* store the partition info of emmc */
1223 mmc->part_support = ext_csd[EXT_CSD_PARTITIONING_SUPPORT];
1224 if ((ext_csd[EXT_CSD_PARTITIONING_SUPPORT] & PART_SUPPORT) ||
1225 ext_csd[EXT_CSD_BOOT_MULT])
1226 mmc->part_config = ext_csd[EXT_CSD_PART_CONF];
1227 if (part_completed &&
1228 (ext_csd[EXT_CSD_PARTITIONING_SUPPORT] & ENHNCD_SUPPORT))
1229 mmc->part_attr = ext_csd[EXT_CSD_PARTITIONS_ATTRIBUTE];
1231 mmc->capacity_boot = ext_csd[EXT_CSD_BOOT_MULT] << 17;
1233 mmc->capacity_rpmb = ext_csd[EXT_CSD_RPMB_MULT] << 17;
1235 for (i = 0; i < 4; i++) {
1236 int idx = EXT_CSD_GP_SIZE_MULT + i * 3;
1237 uint mult = (ext_csd[idx + 2] << 16) +
1238 (ext_csd[idx + 1] << 8) + ext_csd[idx];
1241 if (!part_completed)
1243 mmc->capacity_gp[i] = mult;
1244 mmc->capacity_gp[i] *=
1245 ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE];
1246 mmc->capacity_gp[i] *= ext_csd[EXT_CSD_HC_WP_GRP_SIZE];
1247 mmc->capacity_gp[i] <<= 19;
1250 if (part_completed) {
1251 mmc->enh_user_size =
1252 (ext_csd[EXT_CSD_ENH_SIZE_MULT+2] << 16) +
1253 (ext_csd[EXT_CSD_ENH_SIZE_MULT+1] << 8) +
1254 ext_csd[EXT_CSD_ENH_SIZE_MULT];
1255 mmc->enh_user_size *= ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE];
1256 mmc->enh_user_size *= ext_csd[EXT_CSD_HC_WP_GRP_SIZE];
1257 mmc->enh_user_size <<= 19;
1258 mmc->enh_user_start =
1259 (ext_csd[EXT_CSD_ENH_START_ADDR+3] << 24) +
1260 (ext_csd[EXT_CSD_ENH_START_ADDR+2] << 16) +
1261 (ext_csd[EXT_CSD_ENH_START_ADDR+1] << 8) +
1262 ext_csd[EXT_CSD_ENH_START_ADDR];
1263 if (mmc->high_capacity)
1264 mmc->enh_user_start <<= 9;
1268 * Host needs to enable ERASE_GRP_DEF bit if device is
1269 * partitioned. This bit will be lost every time after a reset
1270 * or power off. This will affect erase size.
1274 if ((ext_csd[EXT_CSD_PARTITIONING_SUPPORT] & PART_SUPPORT) &&
1275 (ext_csd[EXT_CSD_PARTITIONS_ATTRIBUTE] & PART_ENH_ATTRIB))
1278 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
1279 EXT_CSD_ERASE_GROUP_DEF, 1);
1284 ext_csd[EXT_CSD_ERASE_GROUP_DEF] = 1;
1287 if (ext_csd[EXT_CSD_ERASE_GROUP_DEF] & 0x01) {
1288 /* Read out group size from ext_csd */
1289 mmc->erase_grp_size =
1290 ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE] * 1024;
1292 * if high capacity and partition setting completed
1293 * SEC_COUNT is valid even if it is smaller than 2 GiB
1294 * JEDEC Standard JESD84-B45, 6.2.4
1296 if (mmc->high_capacity && part_completed) {
1297 capacity = (ext_csd[EXT_CSD_SEC_CNT]) |
1298 (ext_csd[EXT_CSD_SEC_CNT + 1] << 8) |
1299 (ext_csd[EXT_CSD_SEC_CNT + 2] << 16) |
1300 (ext_csd[EXT_CSD_SEC_CNT + 3] << 24);
1301 capacity *= MMC_MAX_BLOCK_LEN;
1302 mmc->capacity_user = capacity;
1305 /* Calculate the group size from the csd value. */
1306 int erase_gsz, erase_gmul;
1307 erase_gsz = (mmc->csd[2] & 0x00007c00) >> 10;
1308 erase_gmul = (mmc->csd[2] & 0x000003e0) >> 5;
1309 mmc->erase_grp_size = (erase_gsz + 1)
1313 mmc->hc_wp_grp_size = 1024
1314 * ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE]
1315 * ext_csd[EXT_CSD_HC_WP_GRP_SIZE];
1317 mmc->wr_rel_set = ext_csd[EXT_CSD_WR_REL_SET];
1320 err = mmc_set_capacity(mmc, mmc->part_num);
1325 err = sd_change_freq(mmc);
1327 err = mmc_change_freq(mmc);
1332 /* Restrict card's capabilities by what the host can do */
1333 mmc->card_caps &= mmc->cfg->host_caps;
1336 if (mmc->card_caps & MMC_MODE_4BIT) {
1337 cmd.cmdidx = MMC_CMD_APP_CMD;
1338 cmd.resp_type = MMC_RSP_R1;
1339 cmd.cmdarg = mmc->rca << 16;
1341 err = mmc_send_cmd(mmc, &cmd, NULL);
1345 cmd.cmdidx = SD_CMD_APP_SET_BUS_WIDTH;
1346 cmd.resp_type = MMC_RSP_R1;
1348 err = mmc_send_cmd(mmc, &cmd, NULL);
1352 mmc_set_bus_width(mmc, 4);
1355 if (mmc->card_caps & MMC_MODE_HS)
1356 mmc->tran_speed = 50000000;
1358 mmc->tran_speed = 25000000;
1359 } else if (mmc->version >= MMC_VERSION_4) {
1360 /* Only version 4 of MMC supports wider bus widths */
1363 /* An array of possible bus widths in order of preference */
1364 static unsigned ext_csd_bits[] = {
1365 EXT_CSD_DDR_BUS_WIDTH_8,
1366 EXT_CSD_DDR_BUS_WIDTH_4,
1367 EXT_CSD_BUS_WIDTH_8,
1368 EXT_CSD_BUS_WIDTH_4,
1369 EXT_CSD_BUS_WIDTH_1,
1372 /* An array to map CSD bus widths to host cap bits */
1373 static unsigned ext_to_hostcaps[] = {
1374 [EXT_CSD_DDR_BUS_WIDTH_4] =
1375 MMC_MODE_DDR_52MHz | MMC_MODE_4BIT,
1376 [EXT_CSD_DDR_BUS_WIDTH_8] =
1377 MMC_MODE_DDR_52MHz | MMC_MODE_8BIT,
1378 [EXT_CSD_BUS_WIDTH_4] = MMC_MODE_4BIT,
1379 [EXT_CSD_BUS_WIDTH_8] = MMC_MODE_8BIT,
1382 /* An array to map chosen bus width to an integer */
1383 static unsigned widths[] = {
1387 for (idx=0; idx < ARRAY_SIZE(ext_csd_bits); idx++) {
1388 unsigned int extw = ext_csd_bits[idx];
1389 unsigned int caps = ext_to_hostcaps[extw];
1392 * If the bus width is still not changed,
1393 * don't try to set the default again.
1394 * Otherwise, recover from switch attempts
1395 * by switching to 1-bit bus width.
1397 if (extw == EXT_CSD_BUS_WIDTH_1 &&
1398 mmc->bus_width == 1) {
1404 * Check to make sure the card and controller support
1405 * these capabilities
1407 if ((mmc->card_caps & caps) != caps)
1410 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
1411 EXT_CSD_BUS_WIDTH, extw);
1416 mmc->ddr_mode = (caps & MMC_MODE_DDR_52MHz) ? 1 : 0;
1417 mmc_set_bus_width(mmc, widths[idx]);
1419 err = mmc_send_ext_csd(mmc, test_csd);
1424 /* Only compare read only fields */
1425 if (ext_csd[EXT_CSD_PARTITIONING_SUPPORT]
1426 == test_csd[EXT_CSD_PARTITIONING_SUPPORT] &&
1427 ext_csd[EXT_CSD_HC_WP_GRP_SIZE]
1428 == test_csd[EXT_CSD_HC_WP_GRP_SIZE] &&
1429 ext_csd[EXT_CSD_REV]
1430 == test_csd[EXT_CSD_REV] &&
1431 ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE]
1432 == test_csd[EXT_CSD_HC_ERASE_GRP_SIZE] &&
1433 memcmp(&ext_csd[EXT_CSD_SEC_CNT],
1434 &test_csd[EXT_CSD_SEC_CNT], 4) == 0)
1443 if (mmc->card_caps & MMC_MODE_HS) {
1444 if (mmc->card_caps & MMC_MODE_HS_52MHz)
1445 mmc->tran_speed = 52000000;
1447 mmc->tran_speed = 26000000;
1451 mmc_set_clock(mmc, mmc->tran_speed);
1453 /* Fix the block length for DDR mode */
1454 if (mmc->ddr_mode) {
1455 mmc->read_bl_len = MMC_MAX_BLOCK_LEN;
1456 mmc->write_bl_len = MMC_MAX_BLOCK_LEN;
1459 /* fill in device description */
1460 mmc->block_dev.lun = 0;
1461 mmc->block_dev.type = 0;
1462 mmc->block_dev.blksz = mmc->read_bl_len;
1463 mmc->block_dev.log2blksz = LOG2(mmc->block_dev.blksz);
1464 mmc->block_dev.lba = lldiv(mmc->capacity, mmc->read_bl_len);
1465 #if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT)
1466 sprintf(mmc->block_dev.vendor, "Man %06x Snr %04x%04x",
1467 mmc->cid[0] >> 24, (mmc->cid[2] & 0xffff),
1468 (mmc->cid[3] >> 16) & 0xffff);
1469 sprintf(mmc->block_dev.product, "%c%c%c%c%c%c", mmc->cid[0] & 0xff,
1470 (mmc->cid[1] >> 24), (mmc->cid[1] >> 16) & 0xff,
1471 (mmc->cid[1] >> 8) & 0xff, mmc->cid[1] & 0xff,
1472 (mmc->cid[2] >> 24) & 0xff);
1473 sprintf(mmc->block_dev.revision, "%d.%d", (mmc->cid[2] >> 20) & 0xf,
1474 (mmc->cid[2] >> 16) & 0xf);
1476 mmc->block_dev.vendor[0] = 0;
1477 mmc->block_dev.product[0] = 0;
1478 mmc->block_dev.revision[0] = 0;
1480 #if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBDISK_SUPPORT)
1481 init_part(&mmc->block_dev);
1487 static int mmc_send_if_cond(struct mmc *mmc)
1492 cmd.cmdidx = SD_CMD_SEND_IF_COND;
1493 /* We set the bit if the host supports voltages between 2.7 and 3.6 V */
1494 cmd.cmdarg = ((mmc->cfg->voltages & 0xff8000) != 0) << 8 | 0xaa;
1495 cmd.resp_type = MMC_RSP_R7;
1497 err = mmc_send_cmd(mmc, &cmd, NULL);
1502 if ((cmd.response[0] & 0xff) != 0xaa)
1503 return UNUSABLE_ERR;
1505 mmc->version = SD_VERSION_2;
1510 /* not used any more */
1511 int __deprecated mmc_register(struct mmc *mmc)
1513 #if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT)
1514 printf("%s is deprecated! use mmc_create() instead.\n", __func__);
1519 struct mmc *mmc_create(const struct mmc_config *cfg, void *priv)
1523 /* quick validation */
1524 if (cfg == NULL || cfg->ops == NULL || cfg->ops->send_cmd == NULL ||
1525 cfg->f_min == 0 || cfg->f_max == 0 || cfg->b_max == 0)
1528 mmc = calloc(1, sizeof(*mmc));
1535 /* the following chunk was mmc_register() */
1537 /* Setup dsr related values */
1539 mmc->dsr = 0xffffffff;
1540 /* Setup the universal parts of the block interface just once */
1541 mmc->block_dev.if_type = IF_TYPE_MMC;
1542 mmc->block_dev.dev = cur_dev_num++;
1543 mmc->block_dev.removable = 1;
1544 mmc->block_dev.block_read = mmc_bread;
1545 mmc->block_dev.block_write = mmc_bwrite;
1546 mmc->block_dev.block_erase = mmc_berase;
1548 /* setup initial part type */
1549 mmc->block_dev.part_type = mmc->cfg->part_type;
1551 INIT_LIST_HEAD(&mmc->link);
1553 list_add_tail(&mmc->link, &mmc_devices);
1558 void mmc_destroy(struct mmc *mmc)
1560 /* only freeing memory for now */
1564 #ifdef CONFIG_PARTITIONS
1565 block_dev_desc_t *mmc_get_dev(int dev)
1567 struct mmc *mmc = find_mmc_device(dev);
1568 if (!mmc || mmc_init(mmc))
1571 return &mmc->block_dev;
1575 /* board-specific MMC power initializations. */
1576 __weak void board_mmc_power_init(void)
1580 int mmc_start_init(struct mmc *mmc)
1584 /* we pretend there's no card when init is NULL */
1585 if (mmc_getcd(mmc) == 0 || mmc->cfg->ops->init == NULL) {
1587 #if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT)
1588 printf("MMC: no card present\n");
1596 #ifdef CONFIG_FSL_ESDHC_ADAPTER_IDENT
1597 mmc_adapter_card_type_ident();
1599 board_mmc_power_init();
1601 /* made sure it's not NULL earlier */
1602 err = mmc->cfg->ops->init(mmc);
1608 mmc_set_bus_width(mmc, 1);
1609 mmc_set_clock(mmc, 1);
1611 /* Reset the Card */
1612 err = mmc_go_idle(mmc);
1617 /* The internal partition reset to user partition(0) at every CMD0*/
1620 /* Test for SD version 2 */
1621 err = mmc_send_if_cond(mmc);
1623 /* Now try to get the SD card's operating condition */
1624 err = sd_send_op_cond(mmc);
1626 /* If the command timed out, we check for an MMC card */
1627 if (err == TIMEOUT) {
1628 err = mmc_send_op_cond(mmc);
1631 #if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT)
1632 printf("Card did not respond to voltage select!\n");
1634 return UNUSABLE_ERR;
1639 mmc->init_in_progress = 1;
1644 static int mmc_complete_init(struct mmc *mmc)
1648 mmc->init_in_progress = 0;
1649 if (mmc->op_cond_pending)
1650 err = mmc_complete_op_cond(mmc);
1653 err = mmc_startup(mmc);
1661 int mmc_init(struct mmc *mmc)
1669 start = get_timer(0);
1671 if (!mmc->init_in_progress)
1672 err = mmc_start_init(mmc);
1675 err = mmc_complete_init(mmc);
1676 debug("%s: %d, time %lu\n", __func__, err, get_timer(start));
1680 int mmc_set_dsr(struct mmc *mmc, u16 val)
1686 /* CPU-specific MMC initializations */
1687 __weak int cpu_mmc_init(bd_t *bis)
1692 /* board-specific MMC initializations. */
1693 __weak int board_mmc_init(bd_t *bis)
1698 #if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT)
1700 void print_mmc_devices(char separator)
1703 struct list_head *entry;
1706 list_for_each(entry, &mmc_devices) {
1707 m = list_entry(entry, struct mmc, link);
1710 mmc_type = IS_SD(m) ? "SD" : "eMMC";
1714 printf("%s: %d", m->cfg->name, m->block_dev.dev);
1716 printf(" (%s)", mmc_type);
1718 if (entry->next != &mmc_devices) {
1719 printf("%c", separator);
1720 if (separator != '\n')
1729 void print_mmc_devices(char separator) { }
1732 int get_mmc_num(void)
1737 void mmc_set_preinit(struct mmc *mmc, int preinit)
1739 mmc->preinit = preinit;
1742 static void do_preinit(void)
1745 struct list_head *entry;
1747 list_for_each(entry, &mmc_devices) {
1748 m = list_entry(entry, struct mmc, link);
1750 #ifdef CONFIG_FSL_ESDHC_ADAPTER_IDENT
1751 mmc_set_preinit(m, 1);
1759 int mmc_initialize(bd_t *bis)
1761 INIT_LIST_HEAD (&mmc_devices);
1764 #ifndef CONFIG_DM_MMC
1765 if (board_mmc_init(bis) < 0)
1769 #ifndef CONFIG_SPL_BUILD
1770 print_mmc_devices(',');
1777 #ifdef CONFIG_SUPPORT_EMMC_BOOT
1779 * This function changes the size of boot partition and the size of rpmb
1780 * partition present on EMMC devices.
1783 * struct *mmc: pointer for the mmc device strcuture
1784 * bootsize: size of boot partition
1785 * rpmbsize: size of rpmb partition
1787 * Returns 0 on success.
1790 int mmc_boot_partition_size_change(struct mmc *mmc, unsigned long bootsize,
1791 unsigned long rpmbsize)
1796 /* Only use this command for raw EMMC moviNAND. Enter backdoor mode */
1797 cmd.cmdidx = MMC_CMD_RES_MAN;
1798 cmd.resp_type = MMC_RSP_R1b;
1799 cmd.cmdarg = MMC_CMD62_ARG1;
1801 err = mmc_send_cmd(mmc, &cmd, NULL);
1803 debug("mmc_boot_partition_size_change: Error1 = %d\n", err);
1807 /* Boot partition changing mode */
1808 cmd.cmdidx = MMC_CMD_RES_MAN;
1809 cmd.resp_type = MMC_RSP_R1b;
1810 cmd.cmdarg = MMC_CMD62_ARG2;
1812 err = mmc_send_cmd(mmc, &cmd, NULL);
1814 debug("mmc_boot_partition_size_change: Error2 = %d\n", err);
1817 /* boot partition size is multiple of 128KB */
1818 bootsize = (bootsize * 1024) / 128;
1820 /* Arg: boot partition size */
1821 cmd.cmdidx = MMC_CMD_RES_MAN;
1822 cmd.resp_type = MMC_RSP_R1b;
1823 cmd.cmdarg = bootsize;
1825 err = mmc_send_cmd(mmc, &cmd, NULL);
1827 debug("mmc_boot_partition_size_change: Error3 = %d\n", err);
1830 /* RPMB partition size is multiple of 128KB */
1831 rpmbsize = (rpmbsize * 1024) / 128;
1832 /* Arg: RPMB partition size */
1833 cmd.cmdidx = MMC_CMD_RES_MAN;
1834 cmd.resp_type = MMC_RSP_R1b;
1835 cmd.cmdarg = rpmbsize;
1837 err = mmc_send_cmd(mmc, &cmd, NULL);
1839 debug("mmc_boot_partition_size_change: Error4 = %d\n", err);
1846 * Modify EXT_CSD[177] which is BOOT_BUS_WIDTH
1847 * based on the passed in values for BOOT_BUS_WIDTH, RESET_BOOT_BUS_WIDTH
1850 * Returns 0 on success.
1852 int mmc_set_boot_bus_width(struct mmc *mmc, u8 width, u8 reset, u8 mode)
1856 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL, EXT_CSD_BOOT_BUS_WIDTH,
1857 EXT_CSD_BOOT_BUS_WIDTH_MODE(mode) |
1858 EXT_CSD_BOOT_BUS_WIDTH_RESET(reset) |
1859 EXT_CSD_BOOT_BUS_WIDTH_WIDTH(width));
1867 * Modify EXT_CSD[179] which is PARTITION_CONFIG (formerly BOOT_CONFIG)
1868 * based on the passed in values for BOOT_ACK, BOOT_PARTITION_ENABLE and
1871 * Returns 0 on success.
1873 int mmc_set_part_conf(struct mmc *mmc, u8 ack, u8 part_num, u8 access)
1877 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL, EXT_CSD_PART_CONF,
1878 EXT_CSD_BOOT_ACK(ack) |
1879 EXT_CSD_BOOT_PART_NUM(part_num) |
1880 EXT_CSD_PARTITION_ACCESS(access));
1888 * Modify EXT_CSD[162] which is RST_n_FUNCTION based on the given value
1889 * for enable. Note that this is a write-once field for non-zero values.
1891 * Returns 0 on success.
1893 int mmc_set_rst_n_function(struct mmc *mmc, u8 enable)
1895 return mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL, EXT_CSD_RST_N_FUNCTION,