blob: 18ed6600e6526be0065e2a127122bcdc030c955b [file] [log] [blame]
wdenk71f95112003-06-15 22:40:42 +00001/*
2 * (C) Copyright 2003
3 * Kyle Harris, kharris@nexus-tech.net
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
wdenk71f95112003-06-15 22:40:42 +00006 */
7
8#include <common.h>
9#include <command.h>
wdenk71f95112003-06-15 22:40:42 +000010#include <mmc.h>
11
Mike Frysinger02e22c22009-06-14 21:35:21 -040012static int curr_device = -1;
Lei Wenea6ebe22011-05-02 16:26:25 +000013#ifndef CONFIG_GENERIC_MMC
Wolfgang Denk54841ab2010-06-28 22:00:46 +020014int do_mmc (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk71f95112003-06-15 22:40:42 +000015{
Minkyu Kang869f6bf2009-03-30 14:55:51 +090016 int dev;
17
Wolfgang Denk47e26b12010-07-17 01:06:04 +020018 if (argc < 2)
Simon Glass4c12eeb2011-12-10 08:44:01 +000019 return CMD_RET_USAGE;
Minkyu Kang869f6bf2009-03-30 14:55:51 +090020
21 if (strcmp(argv[1], "init") == 0) {
22 if (argc == 2) {
23 if (curr_device < 0)
24 dev = 1;
25 else
26 dev = curr_device;
27 } else if (argc == 3) {
28 dev = (int)simple_strtoul(argv[2], NULL, 10);
29 } else {
Simon Glass4c12eeb2011-12-10 08:44:01 +000030 return CMD_RET_USAGE;
Minkyu Kang869f6bf2009-03-30 14:55:51 +090031 }
32
33 if (mmc_legacy_init(dev) != 0) {
34 puts("No MMC card found\n");
35 return 1;
36 }
37
38 curr_device = dev;
39 printf("mmc%d is available\n", curr_device);
40 } else if (strcmp(argv[1], "device") == 0) {
41 if (argc == 2) {
42 if (curr_device < 0) {
43 puts("No MMC device available\n");
44 return 1;
45 }
46 } else if (argc == 3) {
47 dev = (int)simple_strtoul(argv[2], NULL, 10);
48
49#ifdef CONFIG_SYS_MMC_SET_DEV
50 if (mmc_set_dev(dev) != 0)
51 return 1;
52#endif
53 curr_device = dev;
54 } else {
Simon Glass4c12eeb2011-12-10 08:44:01 +000055 return CMD_RET_USAGE;
Minkyu Kang869f6bf2009-03-30 14:55:51 +090056 }
57
58 printf("mmc%d is current device\n", curr_device);
59 } else {
Simon Glass4c12eeb2011-12-10 08:44:01 +000060 return CMD_RET_USAGE;
Minkyu Kang869f6bf2009-03-30 14:55:51 +090061 }
62
wdenk71f95112003-06-15 22:40:42 +000063 return 0;
64}
65
wdenk0d498392003-07-01 21:06:45 +000066U_BOOT_CMD(
Minkyu Kang869f6bf2009-03-30 14:55:51 +090067 mmc, 3, 1, do_mmc,
68 "MMC sub-system",
69 "init [dev] - init MMC sub system\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +020070 "mmc device [dev] - show or set current device"
wdenkb0fce992003-06-29 21:03:46 +000071);
Dirk Behme3511b4e2009-02-18 19:59:39 +010072#else /* !CONFIG_GENERIC_MMC */
Andy Fleming272cc702008-10-30 16:41:01 -050073
74static void print_mmcinfo(struct mmc *mmc)
75{
Diego Santa Cruzc5f0d3f2014-12-23 10:50:16 +010076 int i;
77
Pantelis Antoniou93bfd612014-03-11 19:34:20 +020078 printf("Device: %s\n", mmc->cfg->name);
Andy Fleming272cc702008-10-30 16:41:01 -050079 printf("Manufacturer ID: %x\n", mmc->cid[0] >> 24);
80 printf("OEM: %x\n", (mmc->cid[0] >> 8) & 0xffff);
81 printf("Name: %c%c%c%c%c \n", mmc->cid[0] & 0xff,
82 (mmc->cid[1] >> 24), (mmc->cid[1] >> 16) & 0xff,
83 (mmc->cid[1] >> 8) & 0xff, mmc->cid[1] & 0xff);
84
85 printf("Tran Speed: %d\n", mmc->tran_speed);
86 printf("Rd Block Len: %d\n", mmc->read_bl_len);
87
88 printf("%s version %d.%d\n", IS_SD(mmc) ? "SD" : "MMC",
Jaehoon Chung64f4a612013-01-29 19:31:16 +000089 (mmc->version >> 8) & 0xf, mmc->version & 0xff);
Andy Fleming272cc702008-10-30 16:41:01 -050090
91 printf("High Capacity: %s\n", mmc->high_capacity ? "Yes" : "No");
Minkyu Kang940e0782011-01-04 01:04:19 +000092 puts("Capacity: ");
93 print_size(mmc->capacity, "\n");
Andy Fleming272cc702008-10-30 16:41:01 -050094
Andrew Gabbasov786e8f82014-12-01 06:59:09 -060095 printf("Bus Width: %d-bit%s\n", mmc->bus_width,
96 mmc->ddr_mode ? " DDR" : "");
Diego Santa Cruzc5f0d3f2014-12-23 10:50:16 +010097
Diego Santa Cruzb0361522014-12-23 10:50:26 +010098 puts("Erase Group Size: ");
99 print_size(((u64)mmc->erase_grp_size) << 9, "\n");
100
Diego Santa Cruz525ada22014-12-23 10:50:19 +0100101 if (!IS_SD(mmc) && mmc->version >= MMC_VERSION_4_41) {
Diego Santa Cruzc3dbb4f2014-12-23 10:50:17 +0100102 bool has_enh = (mmc->part_support & ENHNCD_SUPPORT) != 0;
Diego Santa Cruzbeb98a12014-12-23 10:50:23 +0100103 bool usr_enh = has_enh && (mmc->part_attr & EXT_CSD_ENH_USR);
Diego Santa Cruzb0361522014-12-23 10:50:26 +0100104
105 puts("HC WP Group Size: ");
106 print_size(((u64)mmc->hc_wp_grp_size) << 9, "\n");
107
Diego Santa Cruzc5f0d3f2014-12-23 10:50:16 +0100108 puts("User Capacity: ");
Diego Santa Cruzbeb98a12014-12-23 10:50:23 +0100109 print_size(mmc->capacity_user, usr_enh ? " ENH\n" : "\n");
110 if (usr_enh) {
111 puts("User Enhanced Start: ");
112 print_size(mmc->enh_user_start, "\n");
113 puts("User Enhanced Size: ");
114 print_size(mmc->enh_user_size, "\n");
115 }
Diego Santa Cruzc5f0d3f2014-12-23 10:50:16 +0100116 puts("Boot Capacity: ");
Diego Santa Cruzc3dbb4f2014-12-23 10:50:17 +0100117 print_size(mmc->capacity_boot, has_enh ? " ENH\n" : "\n");
Diego Santa Cruzc5f0d3f2014-12-23 10:50:16 +0100118 puts("RPMB Capacity: ");
Diego Santa Cruzc3dbb4f2014-12-23 10:50:17 +0100119 print_size(mmc->capacity_rpmb, has_enh ? " ENH\n" : "\n");
Diego Santa Cruzb0361522014-12-23 10:50:26 +0100120
Diego Santa Cruzc5f0d3f2014-12-23 10:50:16 +0100121 for (i = 0; i < ARRAY_SIZE(mmc->capacity_gp); i++) {
Diego Santa Cruzc3dbb4f2014-12-23 10:50:17 +0100122 bool is_enh = has_enh &&
123 (mmc->part_attr & EXT_CSD_ENH_GP(i));
Diego Santa Cruzc5f0d3f2014-12-23 10:50:16 +0100124 if (mmc->capacity_gp[i]) {
Diego Santa Cruzf289fd72014-12-23 10:50:18 +0100125 printf("GP%i Capacity: ", i+1);
Diego Santa Cruzc3dbb4f2014-12-23 10:50:17 +0100126 print_size(mmc->capacity_gp[i],
127 is_enh ? " ENH\n" : "\n");
Diego Santa Cruzc5f0d3f2014-12-23 10:50:16 +0100128 }
129 }
130 }
Andy Fleming272cc702008-10-30 16:41:01 -0500131}
Stephen Warren1ae24a52014-05-23 13:24:45 -0600132static struct mmc *init_mmc_device(int dev, bool force_init)
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200133{
134 struct mmc *mmc;
135 mmc = find_mmc_device(dev);
136 if (!mmc) {
137 printf("no mmc device at slot %x\n", dev);
138 return NULL;
139 }
Stephen Warren1ae24a52014-05-23 13:24:45 -0600140 if (force_init)
141 mmc->has_init = 0;
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200142 if (mmc_init(mmc))
143 return NULL;
144 return mmc;
145}
Kim Phillips088f1b12012-10-29 13:34:31 +0000146static int do_mmcinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Andy Fleming272cc702008-10-30 16:41:01 -0500147{
148 struct mmc *mmc;
Andy Fleming272cc702008-10-30 16:41:01 -0500149
Lei Wenea6ebe22011-05-02 16:26:25 +0000150 if (curr_device < 0) {
151 if (get_mmc_num() > 0)
152 curr_device = 0;
153 else {
154 puts("No MMC device available\n");
155 return 1;
156 }
157 }
Andy Fleming272cc702008-10-30 16:41:01 -0500158
Stephen Warren1ae24a52014-05-23 13:24:45 -0600159 mmc = init_mmc_device(curr_device, false);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200160 if (!mmc)
161 return CMD_RET_FAILURE;
Andy Fleming272cc702008-10-30 16:41:01 -0500162
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200163 print_mmcinfo(mmc);
164 return CMD_RET_SUCCESS;
Andy Fleming272cc702008-10-30 16:41:01 -0500165}
166
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200167#ifdef CONFIG_SUPPORT_EMMC_RPMB
168static int confirm_key_prog(void)
169{
170 puts("Warning: Programming authentication key can be done only once !\n"
171 " Use this command only if you are sure of what you are doing,\n"
172 "Really perform the key programming? <y/N> ");
173 if (confirm_yesno())
174 return 1;
175
176 puts("Authentication key programming aborted\n");
177 return 0;
178}
179static int do_mmcrpmb_key(cmd_tbl_t *cmdtp, int flag,
180 int argc, char * const argv[])
181{
182 void *key_addr;
183 struct mmc *mmc = find_mmc_device(curr_device);
184
185 if (argc != 2)
186 return CMD_RET_USAGE;
187
188 key_addr = (void *)simple_strtoul(argv[1], NULL, 16);
189 if (!confirm_key_prog())
190 return CMD_RET_FAILURE;
191 if (mmc_rpmb_set_key(mmc, key_addr)) {
192 printf("ERROR - Key already programmed ?\n");
193 return CMD_RET_FAILURE;
194 }
195 return CMD_RET_SUCCESS;
196}
197static int do_mmcrpmb_read(cmd_tbl_t *cmdtp, int flag,
198 int argc, char * const argv[])
199{
200 u16 blk, cnt;
201 void *addr;
202 int n;
203 void *key_addr = NULL;
204 struct mmc *mmc = find_mmc_device(curr_device);
205
206 if (argc < 4)
207 return CMD_RET_USAGE;
208
209 addr = (void *)simple_strtoul(argv[1], NULL, 16);
210 blk = simple_strtoul(argv[2], NULL, 16);
211 cnt = simple_strtoul(argv[3], NULL, 16);
212
213 if (argc == 5)
214 key_addr = (void *)simple_strtoul(argv[4], NULL, 16);
215
216 printf("\nMMC RPMB read: dev # %d, block # %d, count %d ... ",
217 curr_device, blk, cnt);
218 n = mmc_rpmb_read(mmc, addr, blk, cnt, key_addr);
219
220 printf("%d RPMB blocks read: %s\n", n, (n == cnt) ? "OK" : "ERROR");
221 if (n != cnt)
222 return CMD_RET_FAILURE;
223 return CMD_RET_SUCCESS;
224}
225static int do_mmcrpmb_write(cmd_tbl_t *cmdtp, int flag,
226 int argc, char * const argv[])
227{
228 u16 blk, cnt;
229 void *addr;
230 int n;
231 void *key_addr;
232 struct mmc *mmc = find_mmc_device(curr_device);
233
234 if (argc != 5)
235 return CMD_RET_USAGE;
236
237 addr = (void *)simple_strtoul(argv[1], NULL, 16);
238 blk = simple_strtoul(argv[2], NULL, 16);
239 cnt = simple_strtoul(argv[3], NULL, 16);
240 key_addr = (void *)simple_strtoul(argv[4], NULL, 16);
241
242 printf("\nMMC RPMB write: dev # %d, block # %d, count %d ... ",
243 curr_device, blk, cnt);
244 n = mmc_rpmb_write(mmc, addr, blk, cnt, key_addr);
245
246 printf("%d RPMB blocks written: %s\n", n, (n == cnt) ? "OK" : "ERROR");
247 if (n != cnt)
248 return CMD_RET_FAILURE;
249 return CMD_RET_SUCCESS;
250}
251static int do_mmcrpmb_counter(cmd_tbl_t *cmdtp, int flag,
252 int argc, char * const argv[])
253{
254 unsigned long counter;
255 struct mmc *mmc = find_mmc_device(curr_device);
256
257 if (mmc_rpmb_get_counter(mmc, &counter))
258 return CMD_RET_FAILURE;
259 printf("RPMB Write counter= %lx\n", counter);
260 return CMD_RET_SUCCESS;
261}
262
263static cmd_tbl_t cmd_rpmb[] = {
264 U_BOOT_CMD_MKENT(key, 2, 0, do_mmcrpmb_key, "", ""),
265 U_BOOT_CMD_MKENT(read, 5, 1, do_mmcrpmb_read, "", ""),
266 U_BOOT_CMD_MKENT(write, 5, 0, do_mmcrpmb_write, "", ""),
267 U_BOOT_CMD_MKENT(counter, 1, 1, do_mmcrpmb_counter, "", ""),
268};
269
270static int do_mmcrpmb(cmd_tbl_t *cmdtp, int flag,
271 int argc, char * const argv[])
272{
273 cmd_tbl_t *cp;
274 struct mmc *mmc;
275 char original_part;
276 int ret;
277
278 cp = find_cmd_tbl(argv[1], cmd_rpmb, ARRAY_SIZE(cmd_rpmb));
279
280 /* Drop the rpmb subcommand */
281 argc--;
282 argv++;
283
284 if (cp == NULL || argc > cp->maxargs)
285 return CMD_RET_USAGE;
286 if (flag == CMD_FLAG_REPEAT && !cp->repeatable)
287 return CMD_RET_SUCCESS;
288
Stephen Warren1ae24a52014-05-23 13:24:45 -0600289 mmc = init_mmc_device(curr_device, false);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200290 if (!mmc)
291 return CMD_RET_FAILURE;
292
293 if (!(mmc->version & MMC_VERSION_MMC)) {
294 printf("It is not a EMMC device\n");
295 return CMD_RET_FAILURE;
296 }
297 if (mmc->version < MMC_VERSION_4_41) {
298 printf("RPMB not supported before version 4.41\n");
299 return CMD_RET_FAILURE;
300 }
301 /* Switch to the RPMB partition */
302 original_part = mmc->part_num;
303 if (mmc->part_num != MMC_PART_RPMB) {
304 if (mmc_switch_part(curr_device, MMC_PART_RPMB) != 0)
305 return CMD_RET_FAILURE;
306 mmc->part_num = MMC_PART_RPMB;
307 }
308 ret = cp->cmd(cmdtp, flag, argc, argv);
309
310 /* Return to original partition */
311 if (mmc->part_num != original_part) {
312 if (mmc_switch_part(curr_device, original_part) != 0)
313 return CMD_RET_FAILURE;
314 mmc->part_num = original_part;
315 }
316 return ret;
317}
318#endif
319
320static int do_mmc_read(cmd_tbl_t *cmdtp, int flag,
321 int argc, char * const argv[])
322{
323 struct mmc *mmc;
324 u32 blk, cnt, n;
325 void *addr;
326
327 if (argc != 4)
328 return CMD_RET_USAGE;
329
330 addr = (void *)simple_strtoul(argv[1], NULL, 16);
331 blk = simple_strtoul(argv[2], NULL, 16);
332 cnt = simple_strtoul(argv[3], NULL, 16);
333
Stephen Warren1ae24a52014-05-23 13:24:45 -0600334 mmc = init_mmc_device(curr_device, false);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200335 if (!mmc)
336 return CMD_RET_FAILURE;
337
338 printf("\nMMC read: dev # %d, block # %d, count %d ... ",
339 curr_device, blk, cnt);
340
341 n = mmc->block_dev.block_read(curr_device, blk, cnt, addr);
342 /* flush cache after read */
343 flush_cache((ulong)addr, cnt * 512); /* FIXME */
344 printf("%d blocks read: %s\n", n, (n == cnt) ? "OK" : "ERROR");
345
346 return (n == cnt) ? CMD_RET_SUCCESS : CMD_RET_FAILURE;
347}
348static int do_mmc_write(cmd_tbl_t *cmdtp, int flag,
349 int argc, char * const argv[])
350{
351 struct mmc *mmc;
352 u32 blk, cnt, n;
353 void *addr;
354
355 if (argc != 4)
356 return CMD_RET_USAGE;
357
358 addr = (void *)simple_strtoul(argv[1], NULL, 16);
359 blk = simple_strtoul(argv[2], NULL, 16);
360 cnt = simple_strtoul(argv[3], NULL, 16);
361
Stephen Warren1ae24a52014-05-23 13:24:45 -0600362 mmc = init_mmc_device(curr_device, false);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200363 if (!mmc)
364 return CMD_RET_FAILURE;
365
366 printf("\nMMC write: dev # %d, block # %d, count %d ... ",
367 curr_device, blk, cnt);
368
369 if (mmc_getwp(mmc) == 1) {
370 printf("Error: card is write protected!\n");
371 return CMD_RET_FAILURE;
372 }
373 n = mmc->block_dev.block_write(curr_device, blk, cnt, addr);
374 printf("%d blocks written: %s\n", n, (n == cnt) ? "OK" : "ERROR");
375
376 return (n == cnt) ? CMD_RET_SUCCESS : CMD_RET_FAILURE;
377}
378static int do_mmc_erase(cmd_tbl_t *cmdtp, int flag,
379 int argc, char * const argv[])
380{
381 struct mmc *mmc;
382 u32 blk, cnt, n;
383
384 if (argc != 3)
385 return CMD_RET_USAGE;
386
387 blk = simple_strtoul(argv[1], NULL, 16);
388 cnt = simple_strtoul(argv[2], NULL, 16);
389
Stephen Warren1ae24a52014-05-23 13:24:45 -0600390 mmc = init_mmc_device(curr_device, false);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200391 if (!mmc)
392 return CMD_RET_FAILURE;
393
394 printf("\nMMC erase: dev # %d, block # %d, count %d ... ",
395 curr_device, blk, cnt);
396
397 if (mmc_getwp(mmc) == 1) {
398 printf("Error: card is write protected!\n");
399 return CMD_RET_FAILURE;
400 }
401 n = mmc->block_dev.block_erase(curr_device, blk, cnt);
402 printf("%d blocks erased: %s\n", n, (n == cnt) ? "OK" : "ERROR");
403
404 return (n == cnt) ? CMD_RET_SUCCESS : CMD_RET_FAILURE;
405}
406static int do_mmc_rescan(cmd_tbl_t *cmdtp, int flag,
407 int argc, char * const argv[])
408{
409 struct mmc *mmc;
410
Stephen Warren941944e2014-05-23 13:24:46 -0600411 mmc = init_mmc_device(curr_device, true);
412 if (!mmc)
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200413 return CMD_RET_FAILURE;
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200414
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200415 return CMD_RET_SUCCESS;
416}
417static int do_mmc_part(cmd_tbl_t *cmdtp, int flag,
418 int argc, char * const argv[])
419{
420 block_dev_desc_t *mmc_dev;
421 struct mmc *mmc;
422
Stephen Warren1ae24a52014-05-23 13:24:45 -0600423 mmc = init_mmc_device(curr_device, false);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200424 if (!mmc)
425 return CMD_RET_FAILURE;
426
427 mmc_dev = mmc_get_dev(curr_device);
428 if (mmc_dev != NULL && mmc_dev->type != DEV_TYPE_UNKNOWN) {
429 print_part(mmc_dev);
430 return CMD_RET_SUCCESS;
431 }
432
433 puts("get mmc type error!\n");
434 return CMD_RET_FAILURE;
435}
436static int do_mmc_dev(cmd_tbl_t *cmdtp, int flag,
437 int argc, char * const argv[])
438{
Stephen Warren60dc58f2014-05-23 12:48:10 -0600439 int dev, part = 0, ret;
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200440 struct mmc *mmc;
441
442 if (argc == 1) {
443 dev = curr_device;
444 } else if (argc == 2) {
445 dev = simple_strtoul(argv[1], NULL, 10);
446 } else if (argc == 3) {
447 dev = (int)simple_strtoul(argv[1], NULL, 10);
448 part = (int)simple_strtoul(argv[2], NULL, 10);
449 if (part > PART_ACCESS_MASK) {
450 printf("#part_num shouldn't be larger than %d\n",
451 PART_ACCESS_MASK);
452 return CMD_RET_FAILURE;
453 }
454 } else {
455 return CMD_RET_USAGE;
456 }
457
Stephen Warrena5710922014-05-23 13:24:47 -0600458 mmc = init_mmc_device(dev, true);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200459 if (!mmc)
460 return CMD_RET_FAILURE;
461
Stephen Warren60dc58f2014-05-23 12:48:10 -0600462 ret = mmc_select_hwpart(dev, part);
463 printf("switch to partitions #%d, %s\n",
464 part, (!ret) ? "OK" : "ERROR");
465 if (ret)
466 return 1;
467
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200468 curr_device = dev;
469 if (mmc->part_config == MMCPART_NOAVAILABLE)
470 printf("mmc%d is current device\n", curr_device);
471 else
472 printf("mmc%d(part %d) is current device\n",
473 curr_device, mmc->part_num);
474
475 return CMD_RET_SUCCESS;
476}
477static int do_mmc_list(cmd_tbl_t *cmdtp, int flag,
478 int argc, char * const argv[])
479{
480 print_mmc_devices('\n');
481 return CMD_RET_SUCCESS;
482}
483#ifdef CONFIG_SUPPORT_EMMC_BOOT
484static int do_mmc_bootbus(cmd_tbl_t *cmdtp, int flag,
485 int argc, char * const argv[])
486{
487 int dev;
488 struct mmc *mmc;
489 u8 width, reset, mode;
490
491 if (argc != 5)
492 return CMD_RET_USAGE;
493 dev = simple_strtoul(argv[1], NULL, 10);
494 width = simple_strtoul(argv[2], NULL, 10);
495 reset = simple_strtoul(argv[3], NULL, 10);
496 mode = simple_strtoul(argv[4], NULL, 10);
497
Stephen Warren1ae24a52014-05-23 13:24:45 -0600498 mmc = init_mmc_device(dev, false);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200499 if (!mmc)
500 return CMD_RET_FAILURE;
501
502 if (IS_SD(mmc)) {
503 puts("BOOT_BUS_WIDTH only exists on eMMC\n");
504 return CMD_RET_FAILURE;
505 }
506
507 /* acknowledge to be sent during boot operation */
508 return mmc_set_boot_bus_width(mmc, width, reset, mode);
509}
510static int do_mmc_boot_resize(cmd_tbl_t *cmdtp, int flag,
511 int argc, char * const argv[])
512{
513 int dev;
514 struct mmc *mmc;
515 u32 bootsize, rpmbsize;
516
517 if (argc != 4)
518 return CMD_RET_USAGE;
519 dev = simple_strtoul(argv[1], NULL, 10);
520 bootsize = simple_strtoul(argv[2], NULL, 10);
521 rpmbsize = simple_strtoul(argv[3], NULL, 10);
522
Stephen Warren1ae24a52014-05-23 13:24:45 -0600523 mmc = init_mmc_device(dev, false);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200524 if (!mmc)
525 return CMD_RET_FAILURE;
526
527 if (IS_SD(mmc)) {
528 printf("It is not a EMMC device\n");
529 return CMD_RET_FAILURE;
530 }
531
532 if (mmc_boot_partition_size_change(mmc, bootsize, rpmbsize)) {
533 printf("EMMC boot partition Size change Failed.\n");
534 return CMD_RET_FAILURE;
535 }
536
537 printf("EMMC boot partition Size %d MB\n", bootsize);
538 printf("EMMC RPMB partition Size %d MB\n", rpmbsize);
539 return CMD_RET_SUCCESS;
540}
541static int do_mmc_partconf(cmd_tbl_t *cmdtp, int flag,
542 int argc, char * const argv[])
543{
544 int dev;
545 struct mmc *mmc;
546 u8 ack, part_num, access;
547
548 if (argc != 5)
549 return CMD_RET_USAGE;
550
551 dev = simple_strtoul(argv[1], NULL, 10);
552 ack = simple_strtoul(argv[2], NULL, 10);
553 part_num = simple_strtoul(argv[3], NULL, 10);
554 access = simple_strtoul(argv[4], NULL, 10);
555
Stephen Warren1ae24a52014-05-23 13:24:45 -0600556 mmc = init_mmc_device(dev, false);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200557 if (!mmc)
558 return CMD_RET_FAILURE;
559
560 if (IS_SD(mmc)) {
561 puts("PARTITION_CONFIG only exists on eMMC\n");
562 return CMD_RET_FAILURE;
563 }
564
565 /* acknowledge to be sent during boot operation */
566 return mmc_set_part_conf(mmc, ack, part_num, access);
567}
568static int do_mmc_rst_func(cmd_tbl_t *cmdtp, int flag,
569 int argc, char * const argv[])
570{
571 int dev;
572 struct mmc *mmc;
573 u8 enable;
574
575 /*
576 * Set the RST_n_ENABLE bit of RST_n_FUNCTION
577 * The only valid values are 0x0, 0x1 and 0x2 and writing
578 * a value of 0x1 or 0x2 sets the value permanently.
579 */
580 if (argc != 3)
581 return CMD_RET_USAGE;
582
583 dev = simple_strtoul(argv[1], NULL, 10);
584 enable = simple_strtoul(argv[2], NULL, 10);
585
586 if (enable > 2 || enable < 0) {
587 puts("Invalid RST_n_ENABLE value\n");
588 return CMD_RET_USAGE;
589 }
590
Stephen Warren1ae24a52014-05-23 13:24:45 -0600591 mmc = init_mmc_device(dev, false);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200592 if (!mmc)
593 return CMD_RET_FAILURE;
594
595 if (IS_SD(mmc)) {
596 puts("RST_n_FUNCTION only exists on eMMC\n");
597 return CMD_RET_FAILURE;
598 }
599
600 return mmc_set_rst_n_function(mmc, enable);
601}
602#endif
603static int do_mmc_setdsr(cmd_tbl_t *cmdtp, int flag,
604 int argc, char * const argv[])
605{
606 struct mmc *mmc;
607 u32 val;
608 int ret;
609
610 if (argc != 2)
611 return CMD_RET_USAGE;
612 val = simple_strtoul(argv[2], NULL, 16);
613
614 mmc = find_mmc_device(curr_device);
615 if (!mmc) {
616 printf("no mmc device at slot %x\n", curr_device);
617 return CMD_RET_FAILURE;
618 }
619 ret = mmc_set_dsr(mmc, val);
620 printf("set dsr %s\n", (!ret) ? "OK, force rescan" : "ERROR");
621 if (!ret) {
622 mmc->has_init = 0;
623 if (mmc_init(mmc))
624 return CMD_RET_FAILURE;
625 else
626 return CMD_RET_SUCCESS;
627 }
628 return ret;
629}
630
631static cmd_tbl_t cmd_mmc[] = {
632 U_BOOT_CMD_MKENT(info, 1, 0, do_mmcinfo, "", ""),
633 U_BOOT_CMD_MKENT(read, 4, 1, do_mmc_read, "", ""),
634 U_BOOT_CMD_MKENT(write, 4, 0, do_mmc_write, "", ""),
635 U_BOOT_CMD_MKENT(erase, 3, 0, do_mmc_erase, "", ""),
636 U_BOOT_CMD_MKENT(rescan, 1, 1, do_mmc_rescan, "", ""),
637 U_BOOT_CMD_MKENT(part, 1, 1, do_mmc_part, "", ""),
638 U_BOOT_CMD_MKENT(dev, 3, 0, do_mmc_dev, "", ""),
639 U_BOOT_CMD_MKENT(list, 1, 1, do_mmc_list, "", ""),
640#ifdef CONFIG_SUPPORT_EMMC_BOOT
641 U_BOOT_CMD_MKENT(bootbus, 5, 0, do_mmc_bootbus, "", ""),
Wally Yehfa7b8852014-09-25 23:00:16 +0800642 U_BOOT_CMD_MKENT(bootpart-resize, 4, 0, do_mmc_boot_resize, "", ""),
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200643 U_BOOT_CMD_MKENT(partconf, 5, 0, do_mmc_partconf, "", ""),
644 U_BOOT_CMD_MKENT(rst-function, 3, 0, do_mmc_rst_func, "", ""),
645#endif
646#ifdef CONFIG_SUPPORT_EMMC_RPMB
647 U_BOOT_CMD_MKENT(rpmb, CONFIG_SYS_MAXARGS, 1, do_mmcrpmb, "", ""),
648#endif
649 U_BOOT_CMD_MKENT(setdsr, 2, 0, do_mmc_setdsr, "", ""),
650};
Andy Fleming272cc702008-10-30 16:41:01 -0500651
Kim Phillips088f1b12012-10-29 13:34:31 +0000652static int do_mmcops(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Andy Fleming272cc702008-10-30 16:41:01 -0500653{
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200654 cmd_tbl_t *cp;
Lei Wen6be95cc2011-06-22 17:03:30 +0000655
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200656 cp = find_cmd_tbl(argv[1], cmd_mmc, ARRAY_SIZE(cmd_mmc));
657
658 /* Drop the mmc command */
659 argc--;
660 argv++;
661
662 if (cp == NULL || argc > cp->maxargs)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000663 return CMD_RET_USAGE;
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200664 if (flag == CMD_FLAG_REPEAT && !cp->repeatable)
665 return CMD_RET_SUCCESS;
Andy Fleming272cc702008-10-30 16:41:01 -0500666
Lei Wenea6ebe22011-05-02 16:26:25 +0000667 if (curr_device < 0) {
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200668 if (get_mmc_num() > 0) {
Lei Wenea6ebe22011-05-02 16:26:25 +0000669 curr_device = 0;
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200670 } else {
Lei Wenea6ebe22011-05-02 16:26:25 +0000671 puts("No MMC device available\n");
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200672 return CMD_RET_FAILURE;
Lei Wenea6ebe22011-05-02 16:26:25 +0000673 }
674 }
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200675 return cp->cmd(cmdtp, flag, argc, argv);
Andy Fleming272cc702008-10-30 16:41:01 -0500676}
677
678U_BOOT_CMD(
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200679 mmc, 7, 1, do_mmcops,
Mike Frysinger852dbfd2009-03-23 22:27:34 -0400680 "MMC sub system",
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200681 "info - display info of the current MMC device\n"
682 "mmc read addr blk# cnt\n"
Lei Wenea6ebe22011-05-02 16:26:25 +0000683 "mmc write addr blk# cnt\n"
Lei Wene6f99a52011-06-22 17:03:31 +0000684 "mmc erase blk# cnt\n"
Lei Wenea6ebe22011-05-02 16:26:25 +0000685 "mmc rescan\n"
686 "mmc part - lists available partition on current mmc device\n"
Lei Wenbc897b12011-05-02 16:26:26 +0000687 "mmc dev [dev] [part] - show or set current mmc device [partition]\n"
Amar2a91c912013-04-27 11:43:00 +0530688 "mmc list - lists available devices\n"
689#ifdef CONFIG_SUPPORT_EMMC_BOOT
Tom Rini5a99b9d2014-02-05 10:24:22 -0500690 "mmc bootbus dev boot_bus_width reset_boot_bus_width boot_mode\n"
691 " - Set the BOOT_BUS_WIDTH field of the specified device\n"
Tom Rinif1fd9572014-02-05 10:24:20 -0500692 "mmc bootpart-resize <dev> <boot part size MB> <RPMB part size MB>\n"
693 " - Change sizes of boot and RPMB partitions of specified device\n"
Tom Rini792970b2014-02-05 10:24:21 -0500694 "mmc partconf dev boot_ack boot_partition partition_access\n"
695 " - Change the bits of the PARTITION_CONFIG field of the specified device\n"
Tom Rini33ace362014-02-07 14:15:20 -0500696 "mmc rst-function dev value\n"
697 " - Change the RST_n_FUNCTION field of the specified device\n"
698 " WARNING: This is a write-once field and 0 / 1 / 2 are the only valid values.\n"
Dirk Behme3511b4e2009-02-18 19:59:39 +0100699#endif
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200700#ifdef CONFIG_SUPPORT_EMMC_RPMB
701 "mmc rpmb read addr blk# cnt [address of auth-key] - block size is 256 bytes\n"
702 "mmc rpmb write addr blk# cnt <address of auth-key> - block size is 256 bytes\n"
703 "mmc rpmb key <address of auth-key> - program the RPMB authentication key.\n"
704 "mmc rpmb counter - read the value of the write counter\n"
705#endif
706 "mmc setdsr <value> - set DSR register value\n"
Amar2a91c912013-04-27 11:43:00 +0530707 );
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200708
709/* Old command kept for compatibility. Same as 'mmc info' */
710U_BOOT_CMD(
711 mmcinfo, 1, 0, do_mmcinfo,
712 "display MMC info",
713 "- display info of the current MMC device"
714);
715
Amar2a91c912013-04-27 11:43:00 +0530716#endif /* !CONFIG_GENERIC_MMC */