2 * Copyright 2008, Freescale Semiconductor, Inc
5 * Based vaguely on the Linux code
7 * See file CREDITS for list of people who contributed to this
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License as
12 * published by the Free Software Foundation; either version 2 of
13 * the License, or (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
32 #include <linux/list.h>
35 /* Set block count limit because of 16 bit register limit on some hardware*/
36 #ifndef CONFIG_SYS_MMC_MAX_BLK_COUNT
37 #define CONFIG_SYS_MMC_MAX_BLK_COUNT 65535
40 static struct list_head mmc_devices;
41 static int cur_dev_num = -1;
43 int __weak board_mmc_getwp(struct mmc *mmc)
48 int mmc_getwp(struct mmc *mmc)
52 wp = board_mmc_getwp(mmc);
64 int __board_mmc_getcd(struct mmc *mmc) {
68 int board_mmc_getcd(struct mmc *mmc)__attribute__((weak,
69 alias("__board_mmc_getcd")));
71 static int mmc_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd,
72 struct mmc_data *data)
74 struct mmc_data backup;
77 memset(&backup, 0, sizeof(backup));
79 #ifdef CONFIG_MMC_TRACE
83 printf("CMD_SEND:%d\n", cmd->cmdidx);
84 printf("\t\tARG\t\t\t 0x%08X\n", cmd->cmdarg);
85 ret = mmc->send_cmd(mmc, cmd, data);
86 switch (cmd->resp_type) {
88 printf("\t\tMMC_RSP_NONE\n");
91 printf("\t\tMMC_RSP_R1,5,6,7 \t 0x%08X \n",
95 printf("\t\tMMC_RSP_R1b\t\t 0x%08X \n",
99 printf("\t\tMMC_RSP_R2\t\t 0x%08X \n",
101 printf("\t\t \t\t 0x%08X \n",
103 printf("\t\t \t\t 0x%08X \n",
105 printf("\t\t \t\t 0x%08X \n",
108 printf("\t\t\t\t\tDUMPING DATA\n");
109 for (i = 0; i < 4; i++) {
111 printf("\t\t\t\t\t%03d - ", i*4);
112 ptr = (u8 *)&cmd->response[i];
114 for (j = 0; j < 4; j++)
115 printf("%02X ", *ptr--);
120 printf("\t\tMMC_RSP_R3,4\t\t 0x%08X \n",
124 printf("\t\tERROR MMC rsp not supported\n");
128 ret = mmc->send_cmd(mmc, cmd, data);
133 static int mmc_send_status(struct mmc *mmc, int timeout)
136 int err, retries = 5;
137 #ifdef CONFIG_MMC_TRACE
141 cmd.cmdidx = MMC_CMD_SEND_STATUS;
142 cmd.resp_type = MMC_RSP_R1;
143 if (!mmc_host_is_spi(mmc))
144 cmd.cmdarg = mmc->rca << 16;
147 err = mmc_send_cmd(mmc, &cmd, NULL);
149 if ((cmd.response[0] & MMC_STATUS_RDY_FOR_DATA) &&
150 (cmd.response[0] & MMC_STATUS_CURR_STATE) !=
153 else if (cmd.response[0] & MMC_STATUS_MASK) {
154 printf("Status Error: 0x%08X\n",
158 } else if (--retries < 0)
165 #ifdef CONFIG_MMC_TRACE
166 status = (cmd.response[0] & MMC_STATUS_CURR_STATE) >> 9;
167 printf("CURR STATE:%d\n", status);
170 printf("Timeout waiting card ready\n");
177 static int mmc_set_blocklen(struct mmc *mmc, int len)
181 cmd.cmdidx = MMC_CMD_SET_BLOCKLEN;
182 cmd.resp_type = MMC_RSP_R1;
185 return mmc_send_cmd(mmc, &cmd, NULL);
188 struct mmc *find_mmc_device(int dev_num)
191 struct list_head *entry;
193 list_for_each(entry, &mmc_devices) {
194 m = list_entry(entry, struct mmc, link);
196 if (m->block_dev.dev == dev_num)
200 printf("MMC Device %d not found\n", dev_num);
205 static ulong mmc_erase_t(struct mmc *mmc, ulong start, lbaint_t blkcnt)
209 int err, start_cmd, end_cmd;
211 if (mmc->high_capacity)
212 end = start + blkcnt - 1;
214 end = (start + blkcnt - 1) * mmc->write_bl_len;
215 start *= mmc->write_bl_len;
219 start_cmd = SD_CMD_ERASE_WR_BLK_START;
220 end_cmd = SD_CMD_ERASE_WR_BLK_END;
222 start_cmd = MMC_CMD_ERASE_GROUP_START;
223 end_cmd = MMC_CMD_ERASE_GROUP_END;
226 cmd.cmdidx = start_cmd;
228 cmd.resp_type = MMC_RSP_R1;
230 err = mmc_send_cmd(mmc, &cmd, NULL);
234 cmd.cmdidx = end_cmd;
237 err = mmc_send_cmd(mmc, &cmd, NULL);
241 cmd.cmdidx = MMC_CMD_ERASE;
242 cmd.cmdarg = SECURE_ERASE;
243 cmd.resp_type = MMC_RSP_R1b;
245 err = mmc_send_cmd(mmc, &cmd, NULL);
252 puts("mmc erase failed\n");
257 mmc_berase(int dev_num, unsigned long start, lbaint_t blkcnt)
260 struct mmc *mmc = find_mmc_device(dev_num);
261 lbaint_t blk = 0, blk_r = 0;
267 if ((start % mmc->erase_grp_size) || (blkcnt % mmc->erase_grp_size))
268 printf("\n\nCaution! Your devices Erase group is 0x%x\n"
269 "The erase range would be change to 0x%lx~0x%lx\n\n",
270 mmc->erase_grp_size, start & ~(mmc->erase_grp_size - 1),
271 ((start + blkcnt + mmc->erase_grp_size)
272 & ~(mmc->erase_grp_size - 1)) - 1);
274 while (blk < blkcnt) {
275 blk_r = ((blkcnt - blk) > mmc->erase_grp_size) ?
276 mmc->erase_grp_size : (blkcnt - blk);
277 err = mmc_erase_t(mmc, start + blk, blk_r);
283 /* Waiting for the ready status */
284 if (mmc_send_status(mmc, timeout))
292 mmc_write_blocks(struct mmc *mmc, ulong start, lbaint_t blkcnt, const void*src)
295 struct mmc_data data;
298 if ((start + blkcnt) > mmc->block_dev.lba) {
299 printf("MMC: block number 0x%lx exceeds max(0x%lx)\n",
300 start + blkcnt, mmc->block_dev.lba);
305 cmd.cmdidx = MMC_CMD_WRITE_MULTIPLE_BLOCK;
307 cmd.cmdidx = MMC_CMD_WRITE_SINGLE_BLOCK;
309 if (mmc->high_capacity)
312 cmd.cmdarg = start * mmc->write_bl_len;
314 cmd.resp_type = MMC_RSP_R1;
317 data.blocks = blkcnt;
318 data.blocksize = mmc->write_bl_len;
319 data.flags = MMC_DATA_WRITE;
321 if (mmc_send_cmd(mmc, &cmd, &data)) {
322 printf("mmc write failed\n");
326 /* SPI multiblock writes terminate using a special
327 * token, not a STOP_TRANSMISSION request.
329 if (!mmc_host_is_spi(mmc) && blkcnt > 1) {
330 cmd.cmdidx = MMC_CMD_STOP_TRANSMISSION;
332 cmd.resp_type = MMC_RSP_R1b;
333 if (mmc_send_cmd(mmc, &cmd, NULL)) {
334 printf("mmc fail to send stop cmd\n");
339 /* Waiting for the ready status */
340 if (mmc_send_status(mmc, timeout))
347 mmc_bwrite(int dev_num, ulong start, lbaint_t blkcnt, const void*src)
349 lbaint_t cur, blocks_todo = blkcnt;
351 struct mmc *mmc = find_mmc_device(dev_num);
355 if (mmc_set_blocklen(mmc, mmc->write_bl_len))
359 cur = (blocks_todo > mmc->b_max) ? mmc->b_max : blocks_todo;
360 if(mmc_write_blocks(mmc, start, cur, src) != cur)
364 src += cur * mmc->write_bl_len;
365 } while (blocks_todo > 0);
370 static int mmc_read_blocks(struct mmc *mmc, void *dst, ulong start,
374 struct mmc_data data;
377 cmd.cmdidx = MMC_CMD_READ_MULTIPLE_BLOCK;
379 cmd.cmdidx = MMC_CMD_READ_SINGLE_BLOCK;
381 if (mmc->high_capacity)
384 cmd.cmdarg = start * mmc->read_bl_len;
386 cmd.resp_type = MMC_RSP_R1;
389 data.blocks = blkcnt;
390 data.blocksize = mmc->read_bl_len;
391 data.flags = MMC_DATA_READ;
393 if (mmc_send_cmd(mmc, &cmd, &data))
397 cmd.cmdidx = MMC_CMD_STOP_TRANSMISSION;
399 cmd.resp_type = MMC_RSP_R1b;
400 if (mmc_send_cmd(mmc, &cmd, NULL)) {
401 printf("mmc fail to send stop cmd\n");
409 static ulong mmc_bread(int dev_num, ulong start, lbaint_t blkcnt, void *dst)
411 lbaint_t cur, blocks_todo = blkcnt;
416 struct mmc *mmc = find_mmc_device(dev_num);
420 if ((start + blkcnt) > mmc->block_dev.lba) {
421 printf("MMC: block number 0x%lx exceeds max(0x%lx)\n",
422 start + blkcnt, mmc->block_dev.lba);
426 if (mmc_set_blocklen(mmc, mmc->read_bl_len))
430 cur = (blocks_todo > mmc->b_max) ? mmc->b_max : blocks_todo;
431 if(mmc_read_blocks(mmc, dst, start, cur) != cur)
435 dst += cur * mmc->read_bl_len;
436 } while (blocks_todo > 0);
441 static int mmc_go_idle(struct mmc *mmc)
448 cmd.cmdidx = MMC_CMD_GO_IDLE_STATE;
450 cmd.resp_type = MMC_RSP_NONE;
452 err = mmc_send_cmd(mmc, &cmd, NULL);
462 static int sd_send_op_cond(struct mmc *mmc)
469 cmd.cmdidx = MMC_CMD_APP_CMD;
470 cmd.resp_type = MMC_RSP_R1;
473 err = mmc_send_cmd(mmc, &cmd, NULL);
478 cmd.cmdidx = SD_CMD_APP_SEND_OP_COND;
479 cmd.resp_type = MMC_RSP_R3;
482 * Most cards do not answer if some reserved bits
483 * in the ocr are set. However, Some controller
484 * can set bit 7 (reserved for low voltages), but
485 * how to manage low voltages SD card is not yet
488 cmd.cmdarg = mmc_host_is_spi(mmc) ? 0 :
489 (mmc->voltages & 0xff8000);
491 if (mmc->version == SD_VERSION_2)
492 cmd.cmdarg |= OCR_HCS;
494 err = mmc_send_cmd(mmc, &cmd, NULL);
500 } while ((!(cmd.response[0] & OCR_BUSY)) && timeout--);
505 if (mmc->version != SD_VERSION_2)
506 mmc->version = SD_VERSION_1_0;
508 if (mmc_host_is_spi(mmc)) { /* read OCR for spi */
509 cmd.cmdidx = MMC_CMD_SPI_READ_OCR;
510 cmd.resp_type = MMC_RSP_R3;
513 err = mmc_send_cmd(mmc, &cmd, NULL);
519 mmc->ocr = cmd.response[0];
521 mmc->high_capacity = ((mmc->ocr & OCR_HCS) == OCR_HCS);
527 static int mmc_send_op_cond(struct mmc *mmc)
533 /* Some cards seem to need this */
536 /* Asking to the card its capabilities */
537 cmd.cmdidx = MMC_CMD_SEND_OP_COND;
538 cmd.resp_type = MMC_RSP_R3;
541 err = mmc_send_cmd(mmc, &cmd, NULL);
549 cmd.cmdidx = MMC_CMD_SEND_OP_COND;
550 cmd.resp_type = MMC_RSP_R3;
551 cmd.cmdarg = (mmc_host_is_spi(mmc) ? 0 :
553 (cmd.response[0] & OCR_VOLTAGE_MASK)) |
554 (cmd.response[0] & OCR_ACCESS_MODE));
556 if (mmc->host_caps & MMC_MODE_HC)
557 cmd.cmdarg |= OCR_HCS;
559 err = mmc_send_cmd(mmc, &cmd, NULL);
565 } while (!(cmd.response[0] & OCR_BUSY) && timeout--);
570 if (mmc_host_is_spi(mmc)) { /* read OCR for spi */
571 cmd.cmdidx = MMC_CMD_SPI_READ_OCR;
572 cmd.resp_type = MMC_RSP_R3;
575 err = mmc_send_cmd(mmc, &cmd, NULL);
581 mmc->version = MMC_VERSION_UNKNOWN;
582 mmc->ocr = cmd.response[0];
584 mmc->high_capacity = ((mmc->ocr & OCR_HCS) == OCR_HCS);
591 static int mmc_send_ext_csd(struct mmc *mmc, u8 *ext_csd)
594 struct mmc_data data;
597 /* Get the Card Status Register */
598 cmd.cmdidx = MMC_CMD_SEND_EXT_CSD;
599 cmd.resp_type = MMC_RSP_R1;
602 data.dest = (char *)ext_csd;
604 data.blocksize = 512;
605 data.flags = MMC_DATA_READ;
607 err = mmc_send_cmd(mmc, &cmd, &data);
613 static int mmc_switch(struct mmc *mmc, u8 set, u8 index, u8 value)
619 cmd.cmdidx = MMC_CMD_SWITCH;
620 cmd.resp_type = MMC_RSP_R1b;
621 cmd.cmdarg = (MMC_SWITCH_MODE_WRITE_BYTE << 24) |
625 ret = mmc_send_cmd(mmc, &cmd, NULL);
627 /* Waiting for the ready status */
629 ret = mmc_send_status(mmc, timeout);
635 static int mmc_change_freq(struct mmc *mmc)
637 ALLOC_CACHE_ALIGN_BUFFER(u8, ext_csd, 512);
643 if (mmc_host_is_spi(mmc))
646 /* Only version 4 supports high-speed */
647 if (mmc->version < MMC_VERSION_4)
650 err = mmc_send_ext_csd(mmc, ext_csd);
655 cardtype = ext_csd[EXT_CSD_CARD_TYPE] & 0xf;
657 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL, EXT_CSD_HS_TIMING, 1);
662 /* Now check to see that it worked */
663 err = mmc_send_ext_csd(mmc, ext_csd);
668 /* No high-speed support */
669 if (!ext_csd[EXT_CSD_HS_TIMING])
672 /* High Speed is set, there are two types: 52MHz and 26MHz */
673 if (cardtype & MMC_HS_52MHZ)
674 mmc->card_caps |= MMC_MODE_HS_52MHz | MMC_MODE_HS;
676 mmc->card_caps |= MMC_MODE_HS;
681 int mmc_switch_part(int dev_num, unsigned int part_num)
683 struct mmc *mmc = find_mmc_device(dev_num);
688 return mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL, EXT_CSD_PART_CONF,
689 (mmc->part_config & ~PART_ACCESS_MASK)
690 | (part_num & PART_ACCESS_MASK));
693 int mmc_getcd(struct mmc *mmc)
697 cd = board_mmc_getcd(mmc);
701 cd = mmc->getcd(mmc);
709 static int sd_switch(struct mmc *mmc, int mode, int group, u8 value, u8 *resp)
712 struct mmc_data data;
714 /* Switch the frequency */
715 cmd.cmdidx = SD_CMD_SWITCH_FUNC;
716 cmd.resp_type = MMC_RSP_R1;
717 cmd.cmdarg = (mode << 31) | 0xffffff;
718 cmd.cmdarg &= ~(0xf << (group * 4));
719 cmd.cmdarg |= value << (group * 4);
721 data.dest = (char *)resp;
724 data.flags = MMC_DATA_READ;
726 return mmc_send_cmd(mmc, &cmd, &data);
730 static int sd_change_freq(struct mmc *mmc)
734 ALLOC_CACHE_ALIGN_BUFFER(uint, scr, 2);
735 ALLOC_CACHE_ALIGN_BUFFER(uint, switch_status, 16);
736 struct mmc_data data;
741 if (mmc_host_is_spi(mmc))
744 /* Read the SCR to find out if this card supports higher speeds */
745 cmd.cmdidx = MMC_CMD_APP_CMD;
746 cmd.resp_type = MMC_RSP_R1;
747 cmd.cmdarg = mmc->rca << 16;
749 err = mmc_send_cmd(mmc, &cmd, NULL);
754 cmd.cmdidx = SD_CMD_APP_SEND_SCR;
755 cmd.resp_type = MMC_RSP_R1;
761 data.dest = (char *)scr;
764 data.flags = MMC_DATA_READ;
766 err = mmc_send_cmd(mmc, &cmd, &data);
775 mmc->scr[0] = __be32_to_cpu(scr[0]);
776 mmc->scr[1] = __be32_to_cpu(scr[1]);
778 switch ((mmc->scr[0] >> 24) & 0xf) {
780 mmc->version = SD_VERSION_1_0;
783 mmc->version = SD_VERSION_1_10;
786 mmc->version = SD_VERSION_2;
789 mmc->version = SD_VERSION_1_0;
793 if (mmc->scr[0] & SD_DATA_4BIT)
794 mmc->card_caps |= MMC_MODE_4BIT;
796 /* Version 1.0 doesn't support switching */
797 if (mmc->version == SD_VERSION_1_0)
802 err = sd_switch(mmc, SD_SWITCH_CHECK, 0, 1,
803 (u8 *)switch_status);
808 /* The high-speed function is busy. Try again */
809 if (!(__be32_to_cpu(switch_status[7]) & SD_HIGHSPEED_BUSY))
813 /* If high-speed isn't supported, we return */
814 if (!(__be32_to_cpu(switch_status[3]) & SD_HIGHSPEED_SUPPORTED))
818 * If the host doesn't support SD_HIGHSPEED, do not switch card to
819 * HIGHSPEED mode even if the card support SD_HIGHSPPED.
820 * This can avoid furthur problem when the card runs in different
821 * mode between the host.
823 if (!((mmc->host_caps & MMC_MODE_HS_52MHz) &&
824 (mmc->host_caps & MMC_MODE_HS)))
827 err = sd_switch(mmc, SD_SWITCH_SWITCH, 0, 1, (u8 *)switch_status);
832 if ((__be32_to_cpu(switch_status[4]) & 0x0f000000) == 0x01000000)
833 mmc->card_caps |= MMC_MODE_HS;
838 /* frequency bases */
839 /* divided by 10 to be nice to platforms without floating point */
840 static const int fbase[] = {
847 /* Multiplier values for TRAN_SPEED. Multiplied by 10 to be nice
848 * to platforms without floating point.
850 static const int multipliers[] = {
869 static void mmc_set_ios(struct mmc *mmc)
874 void mmc_set_clock(struct mmc *mmc, uint clock)
876 if (clock > mmc->f_max)
879 if (clock < mmc->f_min)
887 static void mmc_set_bus_width(struct mmc *mmc, uint width)
889 mmc->bus_width = width;
894 static int mmc_startup(struct mmc *mmc)
898 u64 cmult, csize, capacity;
900 ALLOC_CACHE_ALIGN_BUFFER(u8, ext_csd, 512);
901 ALLOC_CACHE_ALIGN_BUFFER(u8, test_csd, 512);
904 #ifdef CONFIG_MMC_SPI_CRC_ON
905 if (mmc_host_is_spi(mmc)) { /* enable CRC check for spi */
906 cmd.cmdidx = MMC_CMD_SPI_CRC_ON_OFF;
907 cmd.resp_type = MMC_RSP_R1;
909 err = mmc_send_cmd(mmc, &cmd, NULL);
916 /* Put the Card in Identify Mode */
917 cmd.cmdidx = mmc_host_is_spi(mmc) ? MMC_CMD_SEND_CID :
918 MMC_CMD_ALL_SEND_CID; /* cmd not supported in spi */
919 cmd.resp_type = MMC_RSP_R2;
922 err = mmc_send_cmd(mmc, &cmd, NULL);
927 memcpy(mmc->cid, cmd.response, 16);
930 * For MMC cards, set the Relative Address.
931 * For SD cards, get the Relatvie Address.
932 * This also puts the cards into Standby State
934 if (!mmc_host_is_spi(mmc)) { /* cmd not supported in spi */
935 cmd.cmdidx = SD_CMD_SEND_RELATIVE_ADDR;
936 cmd.cmdarg = mmc->rca << 16;
937 cmd.resp_type = MMC_RSP_R6;
939 err = mmc_send_cmd(mmc, &cmd, NULL);
945 mmc->rca = (cmd.response[0] >> 16) & 0xffff;
948 /* Get the Card-Specific Data */
949 cmd.cmdidx = MMC_CMD_SEND_CSD;
950 cmd.resp_type = MMC_RSP_R2;
951 cmd.cmdarg = mmc->rca << 16;
953 err = mmc_send_cmd(mmc, &cmd, NULL);
955 /* Waiting for the ready status */
956 mmc_send_status(mmc, timeout);
961 mmc->csd[0] = cmd.response[0];
962 mmc->csd[1] = cmd.response[1];
963 mmc->csd[2] = cmd.response[2];
964 mmc->csd[3] = cmd.response[3];
966 if (mmc->version == MMC_VERSION_UNKNOWN) {
967 int version = (cmd.response[0] >> 26) & 0xf;
971 mmc->version = MMC_VERSION_1_2;
974 mmc->version = MMC_VERSION_1_4;
977 mmc->version = MMC_VERSION_2_2;
980 mmc->version = MMC_VERSION_3;
983 mmc->version = MMC_VERSION_4;
986 mmc->version = MMC_VERSION_1_2;
991 /* divide frequency by 10, since the mults are 10x bigger */
992 freq = fbase[(cmd.response[0] & 0x7)];
993 mult = multipliers[((cmd.response[0] >> 3) & 0xf)];
995 mmc->tran_speed = freq * mult;
997 mmc->read_bl_len = 1 << ((cmd.response[1] >> 16) & 0xf);
1000 mmc->write_bl_len = mmc->read_bl_len;
1002 mmc->write_bl_len = 1 << ((cmd.response[3] >> 22) & 0xf);
1004 if (mmc->high_capacity) {
1005 csize = (mmc->csd[1] & 0x3f) << 16
1006 | (mmc->csd[2] & 0xffff0000) >> 16;
1009 csize = (mmc->csd[1] & 0x3ff) << 2
1010 | (mmc->csd[2] & 0xc0000000) >> 30;
1011 cmult = (mmc->csd[2] & 0x00038000) >> 15;
1014 mmc->capacity = (csize + 1) << (cmult + 2);
1015 mmc->capacity *= mmc->read_bl_len;
1017 if (mmc->read_bl_len > 512)
1018 mmc->read_bl_len = 512;
1020 if (mmc->write_bl_len > 512)
1021 mmc->write_bl_len = 512;
1023 /* Select the card, and put it into Transfer Mode */
1024 if (!mmc_host_is_spi(mmc)) { /* cmd not supported in spi */
1025 cmd.cmdidx = MMC_CMD_SELECT_CARD;
1026 cmd.resp_type = MMC_RSP_R1;
1027 cmd.cmdarg = mmc->rca << 16;
1028 err = mmc_send_cmd(mmc, &cmd, NULL);
1035 * For SD, its erase group is always one sector
1037 mmc->erase_grp_size = 1;
1038 mmc->part_config = MMCPART_NOAVAILABLE;
1039 if (!IS_SD(mmc) && (mmc->version >= MMC_VERSION_4)) {
1040 /* check ext_csd version and capacity */
1041 err = mmc_send_ext_csd(mmc, ext_csd);
1042 if (!err && (ext_csd[EXT_CSD_REV] >= 2)) {
1044 * According to the JEDEC Standard, the value of
1045 * ext_csd's capacity is valid if the value is more
1048 capacity = ext_csd[EXT_CSD_SEC_CNT] << 0
1049 | ext_csd[EXT_CSD_SEC_CNT + 1] << 8
1050 | ext_csd[EXT_CSD_SEC_CNT + 2] << 16
1051 | ext_csd[EXT_CSD_SEC_CNT + 3] << 24;
1053 if ((capacity >> 20) > 2 * 1024)
1054 mmc->capacity = capacity;
1058 * Check whether GROUP_DEF is set, if yes, read out
1059 * group size from ext_csd directly, or calculate
1060 * the group size from the csd value.
1062 if (ext_csd[EXT_CSD_ERASE_GROUP_DEF])
1063 mmc->erase_grp_size =
1064 ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE] * 512 * 1024;
1066 int erase_gsz, erase_gmul;
1067 erase_gsz = (mmc->csd[2] & 0x00007c00) >> 10;
1068 erase_gmul = (mmc->csd[2] & 0x000003e0) >> 5;
1069 mmc->erase_grp_size = (erase_gsz + 1)
1073 /* store the partition info of emmc */
1074 if ((ext_csd[EXT_CSD_PARTITIONING_SUPPORT] & PART_SUPPORT) ||
1075 ext_csd[EXT_CSD_BOOT_MULT])
1076 mmc->part_config = ext_csd[EXT_CSD_PART_CONF];
1080 err = sd_change_freq(mmc);
1082 err = mmc_change_freq(mmc);
1087 /* Restrict card's capabilities by what the host can do */
1088 mmc->card_caps &= mmc->host_caps;
1091 if (mmc->card_caps & MMC_MODE_4BIT) {
1092 cmd.cmdidx = MMC_CMD_APP_CMD;
1093 cmd.resp_type = MMC_RSP_R1;
1094 cmd.cmdarg = mmc->rca << 16;
1096 err = mmc_send_cmd(mmc, &cmd, NULL);
1100 cmd.cmdidx = SD_CMD_APP_SET_BUS_WIDTH;
1101 cmd.resp_type = MMC_RSP_R1;
1103 err = mmc_send_cmd(mmc, &cmd, NULL);
1107 mmc_set_bus_width(mmc, 4);
1110 if (mmc->card_caps & MMC_MODE_HS)
1111 mmc->tran_speed = 50000000;
1113 mmc->tran_speed = 25000000;
1117 /* An array of possible bus widths in order of preference */
1118 static unsigned ext_csd_bits[] = {
1119 EXT_CSD_BUS_WIDTH_8,
1120 EXT_CSD_BUS_WIDTH_4,
1121 EXT_CSD_BUS_WIDTH_1,
1124 /* An array to map CSD bus widths to host cap bits */
1125 static unsigned ext_to_hostcaps[] = {
1126 [EXT_CSD_BUS_WIDTH_4] = MMC_MODE_4BIT,
1127 [EXT_CSD_BUS_WIDTH_8] = MMC_MODE_8BIT,
1130 /* An array to map chosen bus width to an integer */
1131 static unsigned widths[] = {
1135 for (idx=0; idx < ARRAY_SIZE(ext_csd_bits); idx++) {
1136 unsigned int extw = ext_csd_bits[idx];
1139 * Check to make sure the controller supports
1140 * this bus width, if it's more than 1
1142 if (extw != EXT_CSD_BUS_WIDTH_1 &&
1143 !(mmc->host_caps & ext_to_hostcaps[extw]))
1146 err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
1147 EXT_CSD_BUS_WIDTH, extw);
1152 mmc_set_bus_width(mmc, widths[idx]);
1154 err = mmc_send_ext_csd(mmc, test_csd);
1155 if (!err && ext_csd[EXT_CSD_PARTITIONING_SUPPORT] \
1156 == test_csd[EXT_CSD_PARTITIONING_SUPPORT]
1157 && ext_csd[EXT_CSD_ERASE_GROUP_DEF] \
1158 == test_csd[EXT_CSD_ERASE_GROUP_DEF] \
1159 && ext_csd[EXT_CSD_REV] \
1160 == test_csd[EXT_CSD_REV]
1161 && ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE] \
1162 == test_csd[EXT_CSD_HC_ERASE_GRP_SIZE]
1163 && memcmp(&ext_csd[EXT_CSD_SEC_CNT], \
1164 &test_csd[EXT_CSD_SEC_CNT], 4) == 0) {
1166 mmc->card_caps |= ext_to_hostcaps[extw];
1171 if (mmc->card_caps & MMC_MODE_HS) {
1172 if (mmc->card_caps & MMC_MODE_HS_52MHz)
1173 mmc->tran_speed = 52000000;
1175 mmc->tran_speed = 26000000;
1179 mmc_set_clock(mmc, mmc->tran_speed);
1181 /* fill in device description */
1182 mmc->block_dev.lun = 0;
1183 mmc->block_dev.type = 0;
1184 mmc->block_dev.blksz = mmc->read_bl_len;
1185 mmc->block_dev.lba = lldiv(mmc->capacity, mmc->read_bl_len);
1186 sprintf(mmc->block_dev.vendor, "Man %06x Snr %04x%04x",
1187 mmc->cid[0] >> 24, (mmc->cid[2] & 0xffff),
1188 (mmc->cid[3] >> 16) & 0xffff);
1189 sprintf(mmc->block_dev.product, "%c%c%c%c%c%c", mmc->cid[0] & 0xff,
1190 (mmc->cid[1] >> 24), (mmc->cid[1] >> 16) & 0xff,
1191 (mmc->cid[1] >> 8) & 0xff, mmc->cid[1] & 0xff,
1192 (mmc->cid[2] >> 24) & 0xff);
1193 sprintf(mmc->block_dev.revision, "%d.%d", (mmc->cid[2] >> 20) & 0xf,
1194 (mmc->cid[2] >> 16) & 0xf);
1195 #if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBDISK_SUPPORT)
1196 init_part(&mmc->block_dev);
1202 static int mmc_send_if_cond(struct mmc *mmc)
1207 cmd.cmdidx = SD_CMD_SEND_IF_COND;
1208 /* We set the bit if the host supports voltages between 2.7 and 3.6 V */
1209 cmd.cmdarg = ((mmc->voltages & 0xff8000) != 0) << 8 | 0xaa;
1210 cmd.resp_type = MMC_RSP_R7;
1212 err = mmc_send_cmd(mmc, &cmd, NULL);
1217 if ((cmd.response[0] & 0xff) != 0xaa)
1218 return UNUSABLE_ERR;
1220 mmc->version = SD_VERSION_2;
1225 int mmc_register(struct mmc *mmc)
1227 /* Setup the universal parts of the block interface just once */
1228 mmc->block_dev.if_type = IF_TYPE_MMC;
1229 mmc->block_dev.dev = cur_dev_num++;
1230 mmc->block_dev.removable = 1;
1231 mmc->block_dev.block_read = mmc_bread;
1232 mmc->block_dev.block_write = mmc_bwrite;
1233 mmc->block_dev.block_erase = mmc_berase;
1235 mmc->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
1237 INIT_LIST_HEAD (&mmc->link);
1239 list_add_tail (&mmc->link, &mmc_devices);
1244 #ifdef CONFIG_PARTITIONS
1245 block_dev_desc_t *mmc_get_dev(int dev)
1247 struct mmc *mmc = find_mmc_device(dev);
1248 if (!mmc || mmc_init(mmc))
1251 return &mmc->block_dev;
1255 int mmc_init(struct mmc *mmc)
1259 if (mmc_getcd(mmc) == 0) {
1261 printf("MMC: no card present\n");
1268 err = mmc->init(mmc);
1273 mmc_set_bus_width(mmc, 1);
1274 mmc_set_clock(mmc, 1);
1276 /* Reset the Card */
1277 err = mmc_go_idle(mmc);
1282 /* The internal partition reset to user partition(0) at every CMD0*/
1285 /* Test for SD version 2 */
1286 err = mmc_send_if_cond(mmc);
1288 /* Now try to get the SD card's operating condition */
1289 err = sd_send_op_cond(mmc);
1291 /* If the command timed out, we check for an MMC card */
1292 if (err == TIMEOUT) {
1293 err = mmc_send_op_cond(mmc);
1296 printf("Card did not respond to voltage select!\n");
1297 return UNUSABLE_ERR;
1301 err = mmc_startup(mmc);
1310 * CPU and board-specific MMC initializations. Aliased function
1311 * signals caller to move on
1313 static int __def_mmc_init(bd_t *bis)
1318 int cpu_mmc_init(bd_t *bis) __attribute__((weak, alias("__def_mmc_init")));
1319 int board_mmc_init(bd_t *bis) __attribute__((weak, alias("__def_mmc_init")));
1321 void print_mmc_devices(char separator)
1324 struct list_head *entry;
1326 list_for_each(entry, &mmc_devices) {
1327 m = list_entry(entry, struct mmc, link);
1329 printf("%s: %d", m->name, m->block_dev.dev);
1331 if (entry->next != &mmc_devices)
1332 printf("%c ", separator);
1338 int get_mmc_num(void)
1343 int mmc_initialize(bd_t *bis)
1345 INIT_LIST_HEAD (&mmc_devices);
1348 if (board_mmc_init(bis) < 0)
1351 print_mmc_devices(',');