3 * Kyle Harris, kharris@nexus-tech.net
5 * See file CREDITS for list of people who contributed to this
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
28 #ifndef CONFIG_GENERIC_MMC
29 int do_mmc (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
31 if (mmc_legacy_init (1) != 0) {
32 printf ("No MMC card found\n");
39 mmcinit, 1, 0, do_mmc,
43 #else /* !CONFIG_GENERIC_MMC */
45 static void print_mmcinfo(struct mmc *mmc)
47 printf("Device: %s\n", mmc->name);
48 printf("Manufacturer ID: %x\n", mmc->cid[0] >> 24);
49 printf("OEM: %x\n", (mmc->cid[0] >> 8) & 0xffff);
50 printf("Name: %c%c%c%c%c \n", mmc->cid[0] & 0xff,
51 (mmc->cid[1] >> 24), (mmc->cid[1] >> 16) & 0xff,
52 (mmc->cid[1] >> 8) & 0xff, mmc->cid[1] & 0xff);
54 printf("Tran Speed: %d\n", mmc->tran_speed);
55 printf("Rd Block Len: %d\n", mmc->read_bl_len);
57 printf("%s version %d.%d\n", IS_SD(mmc) ? "SD" : "MMC",
58 (mmc->version >> 4) & 0xf, mmc->version & 0xf);
60 printf("High Capacity: %s\n", mmc->high_capacity ? "Yes" : "No");
61 printf("Capacity: %lld\n", mmc->capacity);
63 printf("Bus Width: %d-bit\n", mmc->bus_width);
66 int do_mmcinfo (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
74 dev_num = simple_strtoul(argv[1], NULL, 0);
76 mmc = find_mmc_device(dev_num);
87 U_BOOT_CMD(mmcinfo, 2, 0, do_mmcinfo, "mmcinfo <dev num>-- display MMC info\n",
90 int do_mmcops(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
96 if (strcmp(argv[1], "rescan") == 0) {
97 int dev = simple_strtoul(argv[2], NULL, 10);
98 struct mmc *mmc = find_mmc_device(dev);
108 printf("Usage:\n%s\n", cmdtp->usage);
112 if (!strcmp(argv[1], "list")) {
113 print_mmc_devices('\n');
117 default: /* at least 5 args */
118 if (strcmp(argv[1], "read") == 0) {
119 int dev = simple_strtoul(argv[2], NULL, 10);
120 void *addr = (void *)simple_strtoul(argv[3], NULL, 16);
121 u32 cnt = simple_strtoul(argv[5], NULL, 16);
123 u32 blk = simple_strtoul(argv[4], NULL, 16);
124 struct mmc *mmc = find_mmc_device(dev);
126 printf("\nMMC read: dev # %d, block # %d, count %d ... ",
131 n = mmc->block_dev.block_read(dev, blk, cnt, addr);
133 /* flush cache after read */
134 flush_cache((ulong)addr, cnt * 512); /* FIXME */
136 printf("%d blocks read: %s\n",
137 n, (n==cnt) ? "OK" : "ERROR");
138 return (n == cnt) ? 0 : 1;
139 } else if (strcmp(argv[1], "write") == 0) {
140 int dev = simple_strtoul(argv[2], NULL, 10);
141 void *addr = (void *)simple_strtoul(argv[3], NULL, 16);
142 u32 cnt = simple_strtoul(argv[5], NULL, 16);
144 struct mmc *mmc = find_mmc_device(dev);
146 int blk = simple_strtoul(argv[4], NULL, 16);
148 printf("\nMMC write: dev # %d, block # %d, count %d ... ",
153 n = mmc->block_dev.block_write(dev, blk, cnt, addr);
155 printf("%d blocks written: %s\n",
156 n, (n == cnt) ? "OK" : "ERROR");
157 return (n == cnt) ? 0 : 1;
159 printf("Usage:\n%s\n", cmdtp->usage);
168 mmc, 6, 1, do_mmcops,
169 "mmc - MMC sub system\n",
170 "mmc read <device num> addr blk# cnt\n"
171 "mmc write <device num> addr blk# cnt\n"
172 "mmc rescan <device num>\n"
173 "mmc list - lists available devices\n");