2003-06-15 22:40:42 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2003
|
|
|
|
* Kyle Harris, kharris@nexus-tech.net
|
|
|
|
*
|
|
|
|
* See file CREDITS for list of people who contributed to this
|
|
|
|
* project.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of
|
|
|
|
* the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
|
|
* MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <command.h>
|
|
|
|
#include <mmc.h>
|
|
|
|
|
2009-06-15 01:35:21 +00:00
|
|
|
static int curr_device = -1;
|
2011-05-02 16:26:25 +00:00
|
|
|
#ifndef CONFIG_GENERIC_MMC
|
2010-06-28 20:00:46 +00:00
|
|
|
int do_mmc (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
|
2003-06-15 22:40:42 +00:00
|
|
|
{
|
2009-03-30 05:55:51 +00:00
|
|
|
int dev;
|
|
|
|
|
2010-07-16 23:06:04 +00:00
|
|
|
if (argc < 2)
|
2011-12-10 08:44:01 +00:00
|
|
|
return CMD_RET_USAGE;
|
2009-03-30 05:55:51 +00:00
|
|
|
|
|
|
|
if (strcmp(argv[1], "init") == 0) {
|
|
|
|
if (argc == 2) {
|
|
|
|
if (curr_device < 0)
|
|
|
|
dev = 1;
|
|
|
|
else
|
|
|
|
dev = curr_device;
|
|
|
|
} else if (argc == 3) {
|
|
|
|
dev = (int)simple_strtoul(argv[2], NULL, 10);
|
|
|
|
} else {
|
2011-12-10 08:44:01 +00:00
|
|
|
return CMD_RET_USAGE;
|
2009-03-30 05:55:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (mmc_legacy_init(dev) != 0) {
|
|
|
|
puts("No MMC card found\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
curr_device = dev;
|
|
|
|
printf("mmc%d is available\n", curr_device);
|
|
|
|
} else if (strcmp(argv[1], "device") == 0) {
|
|
|
|
if (argc == 2) {
|
|
|
|
if (curr_device < 0) {
|
|
|
|
puts("No MMC device available\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
} else if (argc == 3) {
|
|
|
|
dev = (int)simple_strtoul(argv[2], NULL, 10);
|
|
|
|
|
|
|
|
#ifdef CONFIG_SYS_MMC_SET_DEV
|
|
|
|
if (mmc_set_dev(dev) != 0)
|
|
|
|
return 1;
|
|
|
|
#endif
|
|
|
|
curr_device = dev;
|
|
|
|
} else {
|
2011-12-10 08:44:01 +00:00
|
|
|
return CMD_RET_USAGE;
|
2009-03-30 05:55:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
printf("mmc%d is current device\n", curr_device);
|
|
|
|
} else {
|
2011-12-10 08:44:01 +00:00
|
|
|
return CMD_RET_USAGE;
|
2003-06-15 22:40:42 +00:00
|
|
|
}
|
2009-03-30 05:55:51 +00:00
|
|
|
|
2003-06-15 22:40:42 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2003-07-01 21:06:45 +00:00
|
|
|
U_BOOT_CMD(
|
2009-03-30 05:55:51 +00:00
|
|
|
mmc, 3, 1, do_mmc,
|
|
|
|
"MMC sub-system",
|
|
|
|
"init [dev] - init MMC sub system\n"
|
2009-05-24 15:06:54 +00:00
|
|
|
"mmc device [dev] - show or set current device"
|
2003-06-29 21:03:46 +00:00
|
|
|
);
|
2009-02-18 18:59:39 +00:00
|
|
|
#else /* !CONFIG_GENERIC_MMC */
|
2008-10-30 21:41:01 +00:00
|
|
|
|
2011-06-22 17:03:30 +00:00
|
|
|
enum mmc_state {
|
|
|
|
MMC_INVALID,
|
|
|
|
MMC_READ,
|
|
|
|
MMC_WRITE,
|
2011-06-22 17:03:31 +00:00
|
|
|
MMC_ERASE,
|
2011-06-22 17:03:30 +00:00
|
|
|
};
|
2008-10-30 21:41:01 +00:00
|
|
|
static void print_mmcinfo(struct mmc *mmc)
|
|
|
|
{
|
|
|
|
printf("Device: %s\n", mmc->name);
|
|
|
|
printf("Manufacturer ID: %x\n", mmc->cid[0] >> 24);
|
|
|
|
printf("OEM: %x\n", (mmc->cid[0] >> 8) & 0xffff);
|
|
|
|
printf("Name: %c%c%c%c%c \n", mmc->cid[0] & 0xff,
|
|
|
|
(mmc->cid[1] >> 24), (mmc->cid[1] >> 16) & 0xff,
|
|
|
|
(mmc->cid[1] >> 8) & 0xff, mmc->cid[1] & 0xff);
|
|
|
|
|
|
|
|
printf("Tran Speed: %d\n", mmc->tran_speed);
|
|
|
|
printf("Rd Block Len: %d\n", mmc->read_bl_len);
|
|
|
|
|
|
|
|
printf("%s version %d.%d\n", IS_SD(mmc) ? "SD" : "MMC",
|
|
|
|
(mmc->version >> 4) & 0xf, mmc->version & 0xf);
|
|
|
|
|
|
|
|
printf("High Capacity: %s\n", mmc->high_capacity ? "Yes" : "No");
|
2011-01-04 01:04:19 +00:00
|
|
|
puts("Capacity: ");
|
|
|
|
print_size(mmc->capacity, "\n");
|
2008-10-30 21:41:01 +00:00
|
|
|
|
|
|
|
printf("Bus Width: %d-bit\n", mmc->bus_width);
|
|
|
|
}
|
|
|
|
|
2010-06-28 20:00:46 +00:00
|
|
|
int do_mmcinfo (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
|
2008-10-30 21:41:01 +00:00
|
|
|
{
|
|
|
|
struct mmc *mmc;
|
|
|
|
|
2011-05-02 16:26:25 +00:00
|
|
|
if (curr_device < 0) {
|
|
|
|
if (get_mmc_num() > 0)
|
|
|
|
curr_device = 0;
|
|
|
|
else {
|
|
|
|
puts("No MMC device available\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
2008-10-30 21:41:01 +00:00
|
|
|
|
2011-05-02 16:26:25 +00:00
|
|
|
mmc = find_mmc_device(curr_device);
|
2008-10-30 21:41:01 +00:00
|
|
|
|
|
|
|
if (mmc) {
|
|
|
|
mmc_init(mmc);
|
|
|
|
|
|
|
|
print_mmcinfo(mmc);
|
2011-05-02 16:26:25 +00:00
|
|
|
return 0;
|
|
|
|
} else {
|
|
|
|
printf("no mmc device at slot %x\n", curr_device);
|
|
|
|
return 1;
|
2008-10-30 21:41:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-07-31 13:01:53 +00:00
|
|
|
U_BOOT_CMD(
|
2011-05-02 16:26:25 +00:00
|
|
|
mmcinfo, 1, 0, do_mmcinfo,
|
2010-07-31 13:01:52 +00:00
|
|
|
"display MMC info",
|
2010-09-09 22:16:19 +00:00
|
|
|
" - device number of the device to dislay info of\n"
|
2009-05-24 15:06:54 +00:00
|
|
|
""
|
|
|
|
);
|
2008-10-30 21:41:01 +00:00
|
|
|
|
2010-06-28 20:00:46 +00:00
|
|
|
int do_mmcops(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
|
2008-10-30 21:41:01 +00:00
|
|
|
{
|
2011-06-22 17:03:30 +00:00
|
|
|
enum mmc_state state;
|
|
|
|
|
2011-05-02 16:26:25 +00:00
|
|
|
if (argc < 2)
|
2011-12-10 08:44:01 +00:00
|
|
|
return CMD_RET_USAGE;
|
2008-10-30 21:41:01 +00:00
|
|
|
|
2011-05-02 16:26:25 +00:00
|
|
|
if (curr_device < 0) {
|
|
|
|
if (get_mmc_num() > 0)
|
|
|
|
curr_device = 0;
|
|
|
|
else {
|
|
|
|
puts("No MMC device available\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
2008-10-30 21:41:01 +00:00
|
|
|
|
2011-05-02 16:26:25 +00:00
|
|
|
if (strcmp(argv[1], "rescan") == 0) {
|
|
|
|
struct mmc *mmc = find_mmc_device(curr_device);
|
2009-04-05 08:00:53 +00:00
|
|
|
|
2011-05-02 16:26:25 +00:00
|
|
|
if (!mmc) {
|
|
|
|
printf("no mmc device at slot %x\n", curr_device);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2011-05-02 16:26:26 +00:00
|
|
|
mmc->has_init = 0;
|
2008-10-30 21:41:01 +00:00
|
|
|
|
2011-07-14 23:09:43 +00:00
|
|
|
if (mmc_init(mmc))
|
|
|
|
return 1;
|
|
|
|
else
|
|
|
|
return 0;
|
2011-05-02 16:26:25 +00:00
|
|
|
} else if (strncmp(argv[1], "part", 4) == 0) {
|
|
|
|
block_dev_desc_t *mmc_dev;
|
|
|
|
struct mmc *mmc = find_mmc_device(curr_device);
|
|
|
|
|
|
|
|
if (!mmc) {
|
|
|
|
printf("no mmc device at slot %x\n", curr_device);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
mmc_init(mmc);
|
|
|
|
mmc_dev = mmc_get_dev(curr_device);
|
|
|
|
if (mmc_dev != NULL &&
|
|
|
|
mmc_dev->type != DEV_TYPE_UNKNOWN) {
|
|
|
|
print_part(mmc_dev);
|
2008-10-30 21:41:01 +00:00
|
|
|
return 0;
|
2011-05-02 16:26:25 +00:00
|
|
|
}
|
2010-09-13 14:07:28 +00:00
|
|
|
|
2011-05-02 16:26:25 +00:00
|
|
|
puts("get mmc type error!\n");
|
|
|
|
return 1;
|
|
|
|
} else if (strcmp(argv[1], "list") == 0) {
|
|
|
|
print_mmc_devices('\n');
|
|
|
|
return 0;
|
|
|
|
} else if (strcmp(argv[1], "dev") == 0) {
|
2011-05-02 16:26:26 +00:00
|
|
|
int dev, part = -1;
|
2011-05-02 16:26:25 +00:00
|
|
|
struct mmc *mmc;
|
|
|
|
|
|
|
|
if (argc == 2)
|
|
|
|
dev = curr_device;
|
|
|
|
else if (argc == 3)
|
|
|
|
dev = simple_strtoul(argv[2], NULL, 10);
|
2011-05-02 16:26:26 +00:00
|
|
|
else if (argc == 4) {
|
|
|
|
dev = (int)simple_strtoul(argv[2], NULL, 10);
|
|
|
|
part = (int)simple_strtoul(argv[3], NULL, 10);
|
|
|
|
if (part > PART_ACCESS_MASK) {
|
|
|
|
printf("#part_num shouldn't be larger"
|
|
|
|
" than %d\n", PART_ACCESS_MASK);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
} else
|
2011-12-10 08:44:01 +00:00
|
|
|
return CMD_RET_USAGE;
|
2010-09-13 14:07:28 +00:00
|
|
|
|
2011-05-02 16:26:25 +00:00
|
|
|
mmc = find_mmc_device(dev);
|
|
|
|
if (!mmc) {
|
|
|
|
printf("no mmc device at slot %x\n", dev);
|
2010-09-13 14:07:28 +00:00
|
|
|
return 1;
|
2008-10-30 21:41:01 +00:00
|
|
|
}
|
|
|
|
|
2011-05-02 16:26:26 +00:00
|
|
|
mmc_init(mmc);
|
|
|
|
if (part != -1) {
|
|
|
|
int ret;
|
|
|
|
if (mmc->part_config == MMCPART_NOAVAILABLE) {
|
|
|
|
printf("Card doesn't support part_switch\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (part != mmc->part_num) {
|
|
|
|
ret = mmc_switch_part(dev, part);
|
|
|
|
if (!ret)
|
|
|
|
mmc->part_num = part;
|
|
|
|
|
|
|
|
printf("switch to partions #%d, %s\n",
|
|
|
|
part, (!ret) ? "OK" : "ERROR");
|
|
|
|
}
|
|
|
|
}
|
2011-05-02 16:26:25 +00:00
|
|
|
curr_device = dev;
|
2011-05-02 16:26:26 +00:00
|
|
|
if (mmc->part_config == MMCPART_NOAVAILABLE)
|
|
|
|
printf("mmc%d is current device\n", curr_device);
|
|
|
|
else
|
|
|
|
printf("mmc%d(part %d) is current device\n",
|
|
|
|
curr_device, mmc->part_num);
|
2008-10-30 21:41:01 +00:00
|
|
|
|
2011-05-02 16:26:25 +00:00
|
|
|
return 0;
|
2011-06-22 17:03:30 +00:00
|
|
|
}
|
2008-10-30 21:41:01 +00:00
|
|
|
|
2011-06-22 17:03:30 +00:00
|
|
|
if (strcmp(argv[1], "read") == 0)
|
|
|
|
state = MMC_READ;
|
|
|
|
else if (strcmp(argv[1], "write") == 0)
|
|
|
|
state = MMC_WRITE;
|
2011-06-22 17:03:31 +00:00
|
|
|
else if (strcmp(argv[1], "erase") == 0)
|
|
|
|
state = MMC_ERASE;
|
2011-06-22 17:03:30 +00:00
|
|
|
else
|
|
|
|
state = MMC_INVALID;
|
2008-10-30 21:41:01 +00:00
|
|
|
|
2011-06-22 17:03:30 +00:00
|
|
|
if (state != MMC_INVALID) {
|
|
|
|
struct mmc *mmc = find_mmc_device(curr_device);
|
2011-06-22 17:03:31 +00:00
|
|
|
int idx = 2;
|
|
|
|
u32 blk, cnt, n;
|
|
|
|
void *addr;
|
|
|
|
|
|
|
|
if (state != MMC_ERASE) {
|
|
|
|
addr = (void *)simple_strtoul(argv[idx], NULL, 16);
|
|
|
|
++idx;
|
|
|
|
} else
|
|
|
|
addr = 0;
|
|
|
|
blk = simple_strtoul(argv[idx], NULL, 16);
|
|
|
|
cnt = simple_strtoul(argv[idx + 1], NULL, 16);
|
2008-10-30 21:41:01 +00:00
|
|
|
|
2011-05-02 16:26:25 +00:00
|
|
|
if (!mmc) {
|
|
|
|
printf("no mmc device at slot %x\n", curr_device);
|
|
|
|
return 1;
|
|
|
|
}
|
2009-04-05 08:00:53 +00:00
|
|
|
|
2011-06-22 17:03:30 +00:00
|
|
|
printf("\nMMC %s: dev # %d, block # %d, count %d ... ",
|
|
|
|
argv[1], curr_device, blk, cnt);
|
2008-10-30 21:41:01 +00:00
|
|
|
|
2011-05-02 16:26:25 +00:00
|
|
|
mmc_init(mmc);
|
2008-10-30 21:41:01 +00:00
|
|
|
|
2011-06-22 17:03:30 +00:00
|
|
|
switch (state) {
|
|
|
|
case MMC_READ:
|
|
|
|
n = mmc->block_dev.block_read(curr_device, blk,
|
|
|
|
cnt, addr);
|
|
|
|
/* flush cache after read */
|
|
|
|
flush_cache((ulong)addr, cnt * 512); /* FIXME */
|
|
|
|
break;
|
|
|
|
case MMC_WRITE:
|
|
|
|
n = mmc->block_dev.block_write(curr_device, blk,
|
|
|
|
cnt, addr);
|
|
|
|
break;
|
2011-06-22 17:03:31 +00:00
|
|
|
case MMC_ERASE:
|
|
|
|
n = mmc->block_dev.block_erase(curr_device, blk, cnt);
|
|
|
|
break;
|
2011-06-22 17:03:30 +00:00
|
|
|
default:
|
|
|
|
BUG();
|
|
|
|
}
|
2008-10-30 21:41:01 +00:00
|
|
|
|
2011-06-22 17:03:30 +00:00
|
|
|
printf("%d blocks %s: %s\n",
|
|
|
|
n, argv[1], (n == cnt) ? "OK" : "ERROR");
|
2011-05-02 16:26:25 +00:00
|
|
|
return (n == cnt) ? 0 : 1;
|
2008-10-30 21:41:01 +00:00
|
|
|
}
|
2011-05-02 16:26:25 +00:00
|
|
|
|
2011-12-10 08:44:01 +00:00
|
|
|
return CMD_RET_USAGE;
|
2008-10-30 21:41:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
U_BOOT_CMD(
|
|
|
|
mmc, 6, 1, do_mmcops,
|
2009-03-24 02:27:34 +00:00
|
|
|
"MMC sub system",
|
2011-05-02 16:26:25 +00:00
|
|
|
"read addr blk# cnt\n"
|
|
|
|
"mmc write addr blk# cnt\n"
|
2011-06-22 17:03:31 +00:00
|
|
|
"mmc erase blk# cnt\n"
|
2011-05-02 16:26:25 +00:00
|
|
|
"mmc rescan\n"
|
|
|
|
"mmc part - lists available partition on current mmc device\n"
|
2011-05-02 16:26:26 +00:00
|
|
|
"mmc dev [dev] [part] - show or set current mmc device [partition]\n"
|
2009-05-24 15:06:54 +00:00
|
|
|
"mmc list - lists available devices");
|
2009-02-18 18:59:39 +00:00
|
|
|
#endif
|