cmd_mmc.c 5.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
/*
 * (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>

A
Andy Fleming 已提交
28
#ifndef CONFIG_GENERIC_MMC
29
static int curr_device = -1;
30

31
int do_mmc (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
32
{
33 34
	int dev;

35 36
	if (argc < 2)
		return cmd_usage(cmdtp);
37 38 39 40 41 42 43 44 45 46

	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 {
47
			return cmd_usage(cmdtp);
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
		}

		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 {
72
			return cmd_usage(cmdtp);
73 74 75 76
		}

		printf("mmc%d is current device\n", curr_device);
	} else {
77
		return cmd_usage(cmdtp);
78
	}
79

80 81 82
	return 0;
}

W
wdenk 已提交
83
U_BOOT_CMD(
84 85 86
	mmc, 3, 1, do_mmc,
	"MMC sub-system",
	"init [dev] - init MMC sub system\n"
W
Wolfgang Denk 已提交
87
	"mmc device [dev] - show or set current device"
88
);
89
#else /* !CONFIG_GENERIC_MMC */
A
Andy Fleming 已提交
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106

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");
107 108
	puts("Capacity: ");
	print_size(mmc->capacity, "\n");
A
Andy Fleming 已提交
109 110 111 112

	printf("Bus Width: %d-bit\n", mmc->bus_width);
}

113
int do_mmcinfo (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
A
Andy Fleming 已提交
114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133
{
	struct mmc *mmc;
	int dev_num;

	if (argc < 2)
		dev_num = 0;
	else
		dev_num = simple_strtoul(argv[1], NULL, 0);

	mmc = find_mmc_device(dev_num);

	if (mmc) {
		mmc_init(mmc);

		print_mmcinfo(mmc);
	}

	return 0;
}

134 135
U_BOOT_CMD(
	mmcinfo, 2, 0, do_mmcinfo,
136
	"display MMC info",
137
	"<dev num>\n"
W
Wolfgang Denk 已提交
138
	"    - device number of the device to dislay info of\n"
W
Wolfgang Denk 已提交
139 140
	""
);
A
Andy Fleming 已提交
141

142
int do_mmcops(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
A
Andy Fleming 已提交
143 144 145 146 147 148 149 150 151
{
	int rc = 0;

	switch (argc) {
	case 3:
		if (strcmp(argv[1], "rescan") == 0) {
			int dev = simple_strtoul(argv[2], NULL, 10);
			struct mmc *mmc = find_mmc_device(dev);

152 153 154
			if (!mmc)
				return 1;

A
Andy Fleming 已提交
155 156 157
			mmc_init(mmc);

			return 0;
L
Lei Wen 已提交
158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
		} else if (strncmp(argv[1], "part", 4) == 0) {
			int dev = simple_strtoul(argv[2], NULL, 10);
			block_dev_desc_t *mmc_dev;
			struct mmc *mmc = find_mmc_device(dev);

			if (!mmc) {
				puts("no mmc devices available\n");
				return 1;
			}
			mmc_init(mmc);
			mmc_dev = mmc_get_dev(dev);
			if (mmc_dev != NULL &&
			    mmc_dev->type != DEV_TYPE_UNKNOWN) {
				print_part(mmc_dev);
				return 0;
			}

			puts("get mmc type error!\n");
			return 1;
A
Andy Fleming 已提交
177 178 179 180 181
		}

	case 0:
	case 1:
	case 4:
182
		return cmd_usage(cmdtp);
A
Andy Fleming 已提交
183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198

	case 2:
		if (!strcmp(argv[1], "list")) {
			print_mmc_devices('\n');
			return 0;
		}
		return 1;
	default: /* at least 5 args */
		if (strcmp(argv[1], "read") == 0) {
			int dev = simple_strtoul(argv[2], NULL, 10);
			void *addr = (void *)simple_strtoul(argv[3], NULL, 16);
			u32 cnt = simple_strtoul(argv[5], NULL, 16);
			u32 n;
			u32 blk = simple_strtoul(argv[4], NULL, 16);
			struct mmc *mmc = find_mmc_device(dev);

199 200 201
			if (!mmc)
				return 1;

A
Andy Fleming 已提交
202 203 204 205 206 207 208 209
			printf("\nMMC read: dev # %d, block # %d, count %d ... ",
				dev, blk, cnt);

			mmc_init(mmc);

			n = mmc->block_dev.block_read(dev, blk, cnt, addr);

			/* flush cache after read */
210
			flush_cache((ulong)addr, cnt * 512); /* FIXME */
A
Andy Fleming 已提交
211 212 213 214 215 216 217 218 219 220 221 222 223

			printf("%d blocks read: %s\n",
				n, (n==cnt) ? "OK" : "ERROR");
			return (n == cnt) ? 0 : 1;
		} else if (strcmp(argv[1], "write") == 0) {
			int dev = simple_strtoul(argv[2], NULL, 10);
			void *addr = (void *)simple_strtoul(argv[3], NULL, 16);
			u32 cnt = simple_strtoul(argv[5], NULL, 16);
			u32 n;
			struct mmc *mmc = find_mmc_device(dev);

			int blk = simple_strtoul(argv[4], NULL, 16);

224 225 226
			if (!mmc)
				return 1;

A
Andy Fleming 已提交
227 228 229 230 231 232 233 234 235 236
			printf("\nMMC write: dev # %d, block # %d, count %d ... ",
				dev, blk, cnt);

			mmc_init(mmc);

			n = mmc->block_dev.block_write(dev, blk, cnt, addr);

			printf("%d blocks written: %s\n",
				n, (n == cnt) ? "OK" : "ERROR");
			return (n == cnt) ? 0 : 1;
237 238
		} else
			rc = cmd_usage(cmdtp);
A
Andy Fleming 已提交
239 240 241 242 243 244 245

		return rc;
	}
}

U_BOOT_CMD(
	mmc, 6, 1, do_mmcops,
M
Mike Frysinger 已提交
246
	"MMC sub system",
R
Rabin Vincent 已提交
247
	"read <device num> addr blk# cnt\n"
A
Andy Fleming 已提交
248 249
	"mmc write <device num> addr blk# cnt\n"
	"mmc rescan <device num>\n"
L
Lei Wen 已提交
250
	"mmc part <device num> - lists available partition on mmc\n"
W
Wolfgang Denk 已提交
251
	"mmc list - lists available devices");
252
#endif