blob: 6142ec8e2058abda9f5eb425e83fd3eb246e2416 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenk71f95112003-06-15 22:40:42 +00002/*
3 * (C) Copyright 2003
4 * Kyle Harris, kharris@nexus-tech.net
wdenk71f95112003-06-15 22:40:42 +00005 */
6
7#include <common.h>
8#include <command.h>
Simon Glass24b852a2015-11-08 23:47:45 -07009#include <console.h>
wdenk71f95112003-06-15 22:40:42 +000010#include <mmc.h>
Jassi Brar732bc7c2018-04-06 12:05:24 +053011#include <sparse_format.h>
12#include <image-sparse.h>
wdenk71f95112003-06-15 22:40:42 +000013
Mike Frysinger02e22c22009-06-14 21:35:21 -040014static int curr_device = -1;
Andy Fleming272cc702008-10-30 16:41:01 -050015
16static void print_mmcinfo(struct mmc *mmc)
17{
Diego Santa Cruzc5f0d3f2014-12-23 10:50:16 +010018 int i;
19
Pantelis Antoniou93bfd612014-03-11 19:34:20 +020020 printf("Device: %s\n", mmc->cfg->name);
Andy Fleming272cc702008-10-30 16:41:01 -050021 printf("Manufacturer ID: %x\n", mmc->cid[0] >> 24);
22 printf("OEM: %x\n", (mmc->cid[0] >> 8) & 0xffff);
23 printf("Name: %c%c%c%c%c \n", mmc->cid[0] & 0xff,
24 (mmc->cid[1] >> 24), (mmc->cid[1] >> 16) & 0xff,
25 (mmc->cid[1] >> 8) & 0xff, mmc->cid[1] & 0xff);
26
Jean-Jacques Hiblot7a96ec72017-09-21 16:29:56 +020027 printf("Bus Speed: %d\n", mmc->clock);
Jean-Jacques Hiblot52d241d2017-11-30 17:43:54 +010028#if CONFIG_IS_ENABLED(MMC_VERBOSE)
Marek Vasut41e30dc2019-03-18 04:49:21 +010029 printf("Mode: %s\n", mmc_mode_name(mmc->selected_mode));
Jean-Jacques Hiblot52d241d2017-11-30 17:43:54 +010030 mmc_dump_capabilities("card capabilities", mmc->card_caps);
31 mmc_dump_capabilities("host capabilities", mmc->host_caps);
32#endif
Andy Fleming272cc702008-10-30 16:41:01 -050033 printf("Rd Block Len: %d\n", mmc->read_bl_len);
34
Pantelis Antoniou4b7cee52015-01-23 12:12:01 +020035 printf("%s version %d.%d", IS_SD(mmc) ? "SD" : "MMC",
36 EXTRACT_SDMMC_MAJOR_VERSION(mmc->version),
37 EXTRACT_SDMMC_MINOR_VERSION(mmc->version));
38 if (EXTRACT_SDMMC_CHANGE_VERSION(mmc->version) != 0)
39 printf(".%d", EXTRACT_SDMMC_CHANGE_VERSION(mmc->version));
40 printf("\n");
Andy Fleming272cc702008-10-30 16:41:01 -050041
42 printf("High Capacity: %s\n", mmc->high_capacity ? "Yes" : "No");
Minkyu Kang940e0782011-01-04 01:04:19 +000043 puts("Capacity: ");
44 print_size(mmc->capacity, "\n");
Andy Fleming272cc702008-10-30 16:41:01 -050045
Andrew Gabbasov786e8f82014-12-01 06:59:09 -060046 printf("Bus Width: %d-bit%s\n", mmc->bus_width,
47 mmc->ddr_mode ? " DDR" : "");
Diego Santa Cruzc5f0d3f2014-12-23 10:50:16 +010048
Jean-Jacques Hiblote6fa5a52018-01-04 15:23:34 +010049#if CONFIG_IS_ENABLED(MMC_WRITE)
Diego Santa Cruzb0361522014-12-23 10:50:26 +010050 puts("Erase Group Size: ");
51 print_size(((u64)mmc->erase_grp_size) << 9, "\n");
Jean-Jacques Hiblote6fa5a52018-01-04 15:23:34 +010052#endif
Diego Santa Cruzb0361522014-12-23 10:50:26 +010053
Diego Santa Cruz525ada22014-12-23 10:50:19 +010054 if (!IS_SD(mmc) && mmc->version >= MMC_VERSION_4_41) {
Diego Santa Cruzc3dbb4f2014-12-23 10:50:17 +010055 bool has_enh = (mmc->part_support & ENHNCD_SUPPORT) != 0;
Diego Santa Cruzbeb98a12014-12-23 10:50:23 +010056 bool usr_enh = has_enh && (mmc->part_attr & EXT_CSD_ENH_USR);
Heinrich Schuchardtd5210e42020-03-30 07:24:18 +020057 u8 wp, ext_csd[MMC_MAX_BLOCK_LEN];
58 int ret;
Diego Santa Cruzb0361522014-12-23 10:50:26 +010059
Jean-Jacques Hiblotb7a6e2c2018-01-04 15:23:36 +010060#if CONFIG_IS_ENABLED(MMC_HW_PARTITIONING)
Diego Santa Cruzb0361522014-12-23 10:50:26 +010061 puts("HC WP Group Size: ");
62 print_size(((u64)mmc->hc_wp_grp_size) << 9, "\n");
Jean-Jacques Hiblotb7a6e2c2018-01-04 15:23:36 +010063#endif
Diego Santa Cruzb0361522014-12-23 10:50:26 +010064
Diego Santa Cruzc5f0d3f2014-12-23 10:50:16 +010065 puts("User Capacity: ");
Diego Santa Cruz9e41a002014-12-23 10:50:33 +010066 print_size(mmc->capacity_user, usr_enh ? " ENH" : "");
67 if (mmc->wr_rel_set & EXT_CSD_WR_DATA_REL_USR)
68 puts(" WRREL\n");
69 else
70 putc('\n');
Diego Santa Cruzbeb98a12014-12-23 10:50:23 +010071 if (usr_enh) {
72 puts("User Enhanced Start: ");
73 print_size(mmc->enh_user_start, "\n");
74 puts("User Enhanced Size: ");
75 print_size(mmc->enh_user_size, "\n");
76 }
Diego Santa Cruzc5f0d3f2014-12-23 10:50:16 +010077 puts("Boot Capacity: ");
Diego Santa Cruzc3dbb4f2014-12-23 10:50:17 +010078 print_size(mmc->capacity_boot, has_enh ? " ENH\n" : "\n");
Diego Santa Cruzc5f0d3f2014-12-23 10:50:16 +010079 puts("RPMB Capacity: ");
Diego Santa Cruzc3dbb4f2014-12-23 10:50:17 +010080 print_size(mmc->capacity_rpmb, has_enh ? " ENH\n" : "\n");
Diego Santa Cruzb0361522014-12-23 10:50:26 +010081
Diego Santa Cruzc5f0d3f2014-12-23 10:50:16 +010082 for (i = 0; i < ARRAY_SIZE(mmc->capacity_gp); i++) {
Diego Santa Cruzc3dbb4f2014-12-23 10:50:17 +010083 bool is_enh = has_enh &&
84 (mmc->part_attr & EXT_CSD_ENH_GP(i));
Diego Santa Cruzc5f0d3f2014-12-23 10:50:16 +010085 if (mmc->capacity_gp[i]) {
Diego Santa Cruzf289fd72014-12-23 10:50:18 +010086 printf("GP%i Capacity: ", i+1);
Diego Santa Cruzc3dbb4f2014-12-23 10:50:17 +010087 print_size(mmc->capacity_gp[i],
Diego Santa Cruz9e41a002014-12-23 10:50:33 +010088 is_enh ? " ENH" : "");
89 if (mmc->wr_rel_set & EXT_CSD_WR_DATA_REL_GP(i))
90 puts(" WRREL\n");
91 else
92 putc('\n');
Diego Santa Cruzc5f0d3f2014-12-23 10:50:16 +010093 }
94 }
Heinrich Schuchardtd5210e42020-03-30 07:24:18 +020095 ret = mmc_send_ext_csd(mmc, ext_csd);
96 if (ret)
97 return;
98 wp = ext_csd[EXT_CSD_BOOT_WP_STATUS];
99 for (i = 0; i < 2; ++i) {
100 printf("Boot area %d is ", i);
101 switch (wp & 3) {
102 case 0:
103 printf("not write protected\n");
104 break;
105 case 1:
106 printf("power on protected\n");
107 break;
108 case 2:
109 printf("permanently protected\n");
110 break;
111 default:
112 printf("in reserved protection state\n");
113 break;
114 }
115 wp >>= 2;
116 }
Diego Santa Cruzc5f0d3f2014-12-23 10:50:16 +0100117 }
Andy Fleming272cc702008-10-30 16:41:01 -0500118}
Stephen Warren1ae24a52014-05-23 13:24:45 -0600119static struct mmc *init_mmc_device(int dev, bool force_init)
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200120{
121 struct mmc *mmc;
122 mmc = find_mmc_device(dev);
123 if (!mmc) {
124 printf("no mmc device at slot %x\n", dev);
125 return NULL;
126 }
Eric Nelsonbcfde7f2016-03-27 12:00:14 -0700127
Marek Vasutd2a08362019-01-03 22:09:43 +0100128 if (!mmc_getcd(mmc))
129 force_init = true;
130
Stephen Warren1ae24a52014-05-23 13:24:45 -0600131 if (force_init)
132 mmc->has_init = 0;
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200133 if (mmc_init(mmc))
134 return NULL;
Marek Vasut1d044d32019-01-03 22:09:44 +0100135
136#ifdef CONFIG_BLOCK_CACHE
137 struct blk_desc *bd = mmc_get_blk_desc(mmc);
138 blkcache_invalidate(bd->if_type, bd->devnum);
139#endif
140
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200141 return mmc;
142}
Kim Phillips088f1b12012-10-29 13:34:31 +0000143static int do_mmcinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Andy Fleming272cc702008-10-30 16:41:01 -0500144{
145 struct mmc *mmc;
Andy Fleming272cc702008-10-30 16:41:01 -0500146
Lei Wenea6ebe22011-05-02 16:26:25 +0000147 if (curr_device < 0) {
148 if (get_mmc_num() > 0)
149 curr_device = 0;
150 else {
151 puts("No MMC device available\n");
152 return 1;
153 }
154 }
Andy Fleming272cc702008-10-30 16:41:01 -0500155
Stephen Warren1ae24a52014-05-23 13:24:45 -0600156 mmc = init_mmc_device(curr_device, false);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200157 if (!mmc)
158 return CMD_RET_FAILURE;
Andy Fleming272cc702008-10-30 16:41:01 -0500159
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200160 print_mmcinfo(mmc);
161 return CMD_RET_SUCCESS;
Andy Fleming272cc702008-10-30 16:41:01 -0500162}
163
Alex Kiernan5a7b11e2018-05-08 04:43:31 +0000164#if CONFIG_IS_ENABLED(CMD_MMC_RPMB)
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200165static int confirm_key_prog(void)
166{
167 puts("Warning: Programming authentication key can be done only once !\n"
168 " Use this command only if you are sure of what you are doing,\n"
169 "Really perform the key programming? <y/N> ");
170 if (confirm_yesno())
171 return 1;
172
173 puts("Authentication key programming aborted\n");
174 return 0;
175}
176static int do_mmcrpmb_key(cmd_tbl_t *cmdtp, int flag,
177 int argc, char * const argv[])
178{
179 void *key_addr;
180 struct mmc *mmc = find_mmc_device(curr_device);
181
182 if (argc != 2)
183 return CMD_RET_USAGE;
184
185 key_addr = (void *)simple_strtoul(argv[1], NULL, 16);
186 if (!confirm_key_prog())
187 return CMD_RET_FAILURE;
188 if (mmc_rpmb_set_key(mmc, key_addr)) {
189 printf("ERROR - Key already programmed ?\n");
190 return CMD_RET_FAILURE;
191 }
192 return CMD_RET_SUCCESS;
193}
194static int do_mmcrpmb_read(cmd_tbl_t *cmdtp, int flag,
195 int argc, char * const argv[])
196{
197 u16 blk, cnt;
198 void *addr;
199 int n;
200 void *key_addr = NULL;
201 struct mmc *mmc = find_mmc_device(curr_device);
202
203 if (argc < 4)
204 return CMD_RET_USAGE;
205
206 addr = (void *)simple_strtoul(argv[1], NULL, 16);
207 blk = simple_strtoul(argv[2], NULL, 16);
208 cnt = simple_strtoul(argv[3], NULL, 16);
209
210 if (argc == 5)
211 key_addr = (void *)simple_strtoul(argv[4], NULL, 16);
212
213 printf("\nMMC RPMB read: dev # %d, block # %d, count %d ... ",
214 curr_device, blk, cnt);
215 n = mmc_rpmb_read(mmc, addr, blk, cnt, key_addr);
216
217 printf("%d RPMB blocks read: %s\n", n, (n == cnt) ? "OK" : "ERROR");
218 if (n != cnt)
219 return CMD_RET_FAILURE;
220 return CMD_RET_SUCCESS;
221}
222static int do_mmcrpmb_write(cmd_tbl_t *cmdtp, int flag,
223 int argc, char * const argv[])
224{
225 u16 blk, cnt;
226 void *addr;
227 int n;
228 void *key_addr;
229 struct mmc *mmc = find_mmc_device(curr_device);
230
231 if (argc != 5)
232 return CMD_RET_USAGE;
233
234 addr = (void *)simple_strtoul(argv[1], NULL, 16);
235 blk = simple_strtoul(argv[2], NULL, 16);
236 cnt = simple_strtoul(argv[3], NULL, 16);
237 key_addr = (void *)simple_strtoul(argv[4], NULL, 16);
238
239 printf("\nMMC RPMB write: dev # %d, block # %d, count %d ... ",
240 curr_device, blk, cnt);
241 n = mmc_rpmb_write(mmc, addr, blk, cnt, key_addr);
242
243 printf("%d RPMB blocks written: %s\n", n, (n == cnt) ? "OK" : "ERROR");
244 if (n != cnt)
245 return CMD_RET_FAILURE;
246 return CMD_RET_SUCCESS;
247}
248static int do_mmcrpmb_counter(cmd_tbl_t *cmdtp, int flag,
249 int argc, char * const argv[])
250{
251 unsigned long counter;
252 struct mmc *mmc = find_mmc_device(curr_device);
253
254 if (mmc_rpmb_get_counter(mmc, &counter))
255 return CMD_RET_FAILURE;
256 printf("RPMB Write counter= %lx\n", counter);
257 return CMD_RET_SUCCESS;
258}
259
260static cmd_tbl_t cmd_rpmb[] = {
261 U_BOOT_CMD_MKENT(key, 2, 0, do_mmcrpmb_key, "", ""),
262 U_BOOT_CMD_MKENT(read, 5, 1, do_mmcrpmb_read, "", ""),
263 U_BOOT_CMD_MKENT(write, 5, 0, do_mmcrpmb_write, "", ""),
264 U_BOOT_CMD_MKENT(counter, 1, 1, do_mmcrpmb_counter, "", ""),
265};
266
267static int do_mmcrpmb(cmd_tbl_t *cmdtp, int flag,
268 int argc, char * const argv[])
269{
270 cmd_tbl_t *cp;
271 struct mmc *mmc;
272 char original_part;
273 int ret;
274
275 cp = find_cmd_tbl(argv[1], cmd_rpmb, ARRAY_SIZE(cmd_rpmb));
276
277 /* Drop the rpmb subcommand */
278 argc--;
279 argv++;
280
281 if (cp == NULL || argc > cp->maxargs)
282 return CMD_RET_USAGE;
Boris Brezillon80a48dd2018-12-03 22:54:20 +0100283 if (flag == CMD_FLAG_REPEAT && !cmd_is_repeatable(cp))
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200284 return CMD_RET_SUCCESS;
285
Stephen Warren1ae24a52014-05-23 13:24:45 -0600286 mmc = init_mmc_device(curr_device, false);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200287 if (!mmc)
288 return CMD_RET_FAILURE;
289
290 if (!(mmc->version & MMC_VERSION_MMC)) {
Heinrich Schuchardt71a3e5c2020-03-29 19:26:57 +0000291 printf("It is not an eMMC device\n");
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200292 return CMD_RET_FAILURE;
293 }
294 if (mmc->version < MMC_VERSION_4_41) {
295 printf("RPMB not supported before version 4.41\n");
296 return CMD_RET_FAILURE;
297 }
298 /* Switch to the RPMB partition */
Kever Yang4dc80c82017-06-08 09:20:03 +0800299#ifndef CONFIG_BLK
Marek Vasutb955e422016-05-04 16:35:25 +0200300 original_part = mmc->block_dev.hwpart;
Kever Yang4dc80c82017-06-08 09:20:03 +0800301#else
302 original_part = mmc_get_blk_desc(mmc)->hwpart;
303#endif
Simon Glass69f45cd2016-05-01 13:52:29 -0600304 if (blk_select_hwpart_devnum(IF_TYPE_MMC, curr_device, MMC_PART_RPMB) !=
305 0)
Stephen Warren873cc1d2015-12-07 11:38:49 -0700306 return CMD_RET_FAILURE;
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200307 ret = cp->cmd(cmdtp, flag, argc, argv);
308
309 /* Return to original partition */
Simon Glass69f45cd2016-05-01 13:52:29 -0600310 if (blk_select_hwpart_devnum(IF_TYPE_MMC, curr_device, original_part) !=
311 0)
Stephen Warren873cc1d2015-12-07 11:38:49 -0700312 return CMD_RET_FAILURE;
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200313 return ret;
314}
315#endif
316
317static int do_mmc_read(cmd_tbl_t *cmdtp, int flag,
318 int argc, char * const argv[])
319{
320 struct mmc *mmc;
321 u32 blk, cnt, n;
322 void *addr;
323
324 if (argc != 4)
325 return CMD_RET_USAGE;
326
327 addr = (void *)simple_strtoul(argv[1], NULL, 16);
328 blk = simple_strtoul(argv[2], NULL, 16);
329 cnt = simple_strtoul(argv[3], NULL, 16);
330
Stephen Warren1ae24a52014-05-23 13:24:45 -0600331 mmc = init_mmc_device(curr_device, false);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200332 if (!mmc)
333 return CMD_RET_FAILURE;
334
335 printf("\nMMC read: dev # %d, block # %d, count %d ... ",
336 curr_device, blk, cnt);
337
Simon Glassc40fdca2016-05-01 13:52:35 -0600338 n = blk_dread(mmc_get_blk_desc(mmc), blk, cnt, addr);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200339 printf("%d blocks read: %s\n", n, (n == cnt) ? "OK" : "ERROR");
340
341 return (n == cnt) ? CMD_RET_SUCCESS : CMD_RET_FAILURE;
342}
Jean-Jacques Hiblote6fa5a52018-01-04 15:23:34 +0100343
Alex Kiernanc232d142018-05-29 15:30:52 +0000344#if CONFIG_IS_ENABLED(CMD_MMC_SWRITE)
Jassi Brar732bc7c2018-04-06 12:05:24 +0530345static lbaint_t mmc_sparse_write(struct sparse_storage *info, lbaint_t blk,
346 lbaint_t blkcnt, const void *buffer)
347{
348 struct blk_desc *dev_desc = info->priv;
349
350 return blk_dwrite(dev_desc, blk, blkcnt, buffer);
351}
352
353static lbaint_t mmc_sparse_reserve(struct sparse_storage *info,
354 lbaint_t blk, lbaint_t blkcnt)
355{
356 return blkcnt;
357}
358
359static int do_mmc_sparse_write(cmd_tbl_t *cmdtp, int flag,
360 int argc, char * const argv[])
361{
362 struct sparse_storage sparse;
363 struct blk_desc *dev_desc;
364 struct mmc *mmc;
365 char dest[11];
366 void *addr;
367 u32 blk;
368
369 if (argc != 3)
370 return CMD_RET_USAGE;
371
372 addr = (void *)simple_strtoul(argv[1], NULL, 16);
373 blk = simple_strtoul(argv[2], NULL, 16);
374
375 if (!is_sparse_image(addr)) {
376 printf("Not a sparse image\n");
377 return CMD_RET_FAILURE;
378 }
379
380 mmc = init_mmc_device(curr_device, false);
381 if (!mmc)
382 return CMD_RET_FAILURE;
383
384 printf("\nMMC Sparse write: dev # %d, block # %d ... ",
385 curr_device, blk);
386
387 if (mmc_getwp(mmc) == 1) {
388 printf("Error: card is write protected!\n");
389 return CMD_RET_FAILURE;
390 }
391
392 dev_desc = mmc_get_blk_desc(mmc);
393 sparse.priv = dev_desc;
394 sparse.blksz = 512;
395 sparse.start = blk;
396 sparse.size = dev_desc->lba - blk;
397 sparse.write = mmc_sparse_write;
398 sparse.reserve = mmc_sparse_reserve;
399 sparse.mssg = NULL;
400 sprintf(dest, "0x" LBAF, sparse.start * sparse.blksz);
401
Alex Kiernanc4ded032018-05-29 15:30:40 +0000402 if (write_sparse_image(&sparse, dest, addr, NULL))
Jassi Brar732bc7c2018-04-06 12:05:24 +0530403 return CMD_RET_FAILURE;
404 else
405 return CMD_RET_SUCCESS;
406}
407#endif
408
Alex Kiernanc232d142018-05-29 15:30:52 +0000409#if CONFIG_IS_ENABLED(MMC_WRITE)
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200410static int do_mmc_write(cmd_tbl_t *cmdtp, int flag,
411 int argc, char * const argv[])
412{
413 struct mmc *mmc;
414 u32 blk, cnt, n;
415 void *addr;
416
417 if (argc != 4)
418 return CMD_RET_USAGE;
419
420 addr = (void *)simple_strtoul(argv[1], NULL, 16);
421 blk = simple_strtoul(argv[2], NULL, 16);
422 cnt = simple_strtoul(argv[3], NULL, 16);
423
Stephen Warren1ae24a52014-05-23 13:24:45 -0600424 mmc = init_mmc_device(curr_device, false);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200425 if (!mmc)
426 return CMD_RET_FAILURE;
427
428 printf("\nMMC write: dev # %d, block # %d, count %d ... ",
429 curr_device, blk, cnt);
430
431 if (mmc_getwp(mmc) == 1) {
432 printf("Error: card is write protected!\n");
433 return CMD_RET_FAILURE;
434 }
Simon Glassc40fdca2016-05-01 13:52:35 -0600435 n = blk_dwrite(mmc_get_blk_desc(mmc), blk, cnt, addr);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200436 printf("%d blocks written: %s\n", n, (n == cnt) ? "OK" : "ERROR");
437
438 return (n == cnt) ? CMD_RET_SUCCESS : CMD_RET_FAILURE;
439}
440static int do_mmc_erase(cmd_tbl_t *cmdtp, int flag,
441 int argc, char * const argv[])
442{
443 struct mmc *mmc;
444 u32 blk, cnt, n;
445
446 if (argc != 3)
447 return CMD_RET_USAGE;
448
449 blk = simple_strtoul(argv[1], NULL, 16);
450 cnt = simple_strtoul(argv[2], NULL, 16);
451
Stephen Warren1ae24a52014-05-23 13:24:45 -0600452 mmc = init_mmc_device(curr_device, false);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200453 if (!mmc)
454 return CMD_RET_FAILURE;
455
456 printf("\nMMC erase: dev # %d, block # %d, count %d ... ",
457 curr_device, blk, cnt);
458
459 if (mmc_getwp(mmc) == 1) {
460 printf("Error: card is write protected!\n");
461 return CMD_RET_FAILURE;
462 }
Simon Glassc40fdca2016-05-01 13:52:35 -0600463 n = blk_derase(mmc_get_blk_desc(mmc), blk, cnt);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200464 printf("%d blocks erased: %s\n", n, (n == cnt) ? "OK" : "ERROR");
465
466 return (n == cnt) ? CMD_RET_SUCCESS : CMD_RET_FAILURE;
467}
Jean-Jacques Hiblote6fa5a52018-01-04 15:23:34 +0100468#endif
469
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200470static int do_mmc_rescan(cmd_tbl_t *cmdtp, int flag,
471 int argc, char * const argv[])
472{
473 struct mmc *mmc;
474
Stephen Warren941944e2014-05-23 13:24:46 -0600475 mmc = init_mmc_device(curr_device, true);
476 if (!mmc)
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200477 return CMD_RET_FAILURE;
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200478
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200479 return CMD_RET_SUCCESS;
480}
481static int do_mmc_part(cmd_tbl_t *cmdtp, int flag,
482 int argc, char * const argv[])
483{
Simon Glass4101f682016-02-29 15:25:34 -0700484 struct blk_desc *mmc_dev;
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200485 struct mmc *mmc;
486
Stephen Warren1ae24a52014-05-23 13:24:45 -0600487 mmc = init_mmc_device(curr_device, false);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200488 if (!mmc)
489 return CMD_RET_FAILURE;
490
Simon Glass3c457f42016-05-01 11:36:15 -0600491 mmc_dev = blk_get_devnum_by_type(IF_TYPE_MMC, curr_device);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200492 if (mmc_dev != NULL && mmc_dev->type != DEV_TYPE_UNKNOWN) {
Simon Glass3e8bd462016-02-29 15:25:48 -0700493 part_print(mmc_dev);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200494 return CMD_RET_SUCCESS;
495 }
496
497 puts("get mmc type error!\n");
498 return CMD_RET_FAILURE;
499}
500static int do_mmc_dev(cmd_tbl_t *cmdtp, int flag,
501 int argc, char * const argv[])
502{
Stephen Warren60dc58f2014-05-23 12:48:10 -0600503 int dev, part = 0, ret;
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200504 struct mmc *mmc;
505
506 if (argc == 1) {
507 dev = curr_device;
508 } else if (argc == 2) {
509 dev = simple_strtoul(argv[1], NULL, 10);
510 } else if (argc == 3) {
511 dev = (int)simple_strtoul(argv[1], NULL, 10);
512 part = (int)simple_strtoul(argv[2], NULL, 10);
513 if (part > PART_ACCESS_MASK) {
514 printf("#part_num shouldn't be larger than %d\n",
515 PART_ACCESS_MASK);
516 return CMD_RET_FAILURE;
517 }
518 } else {
519 return CMD_RET_USAGE;
520 }
521
Stephen Warrena5710922014-05-23 13:24:47 -0600522 mmc = init_mmc_device(dev, true);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200523 if (!mmc)
524 return CMD_RET_FAILURE;
525
Simon Glass69f45cd2016-05-01 13:52:29 -0600526 ret = blk_select_hwpart_devnum(IF_TYPE_MMC, dev, part);
Stephen Warren60dc58f2014-05-23 12:48:10 -0600527 printf("switch to partitions #%d, %s\n",
528 part, (!ret) ? "OK" : "ERROR");
529 if (ret)
530 return 1;
531
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200532 curr_device = dev;
533 if (mmc->part_config == MMCPART_NOAVAILABLE)
534 printf("mmc%d is current device\n", curr_device);
535 else
536 printf("mmc%d(part %d) is current device\n",
Simon Glassc40fdca2016-05-01 13:52:35 -0600537 curr_device, mmc_get_blk_desc(mmc)->hwpart);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200538
539 return CMD_RET_SUCCESS;
540}
541static int do_mmc_list(cmd_tbl_t *cmdtp, int flag,
542 int argc, char * const argv[])
543{
544 print_mmc_devices('\n');
545 return CMD_RET_SUCCESS;
546}
Diego Santa Cruzc599f532014-12-23 10:50:30 +0100547
Jean-Jacques Hiblotcf177892017-11-30 17:44:02 +0100548#if CONFIG_IS_ENABLED(MMC_HW_PARTITIONING)
Diego Santa Cruz189f9632014-12-23 10:50:32 +0100549static int parse_hwpart_user(struct mmc_hwpart_conf *pconf,
550 int argc, char * const argv[])
551{
552 int i = 0;
553
554 memset(&pconf->user, 0, sizeof(pconf->user));
555
556 while (i < argc) {
557 if (!strcmp(argv[i], "enh")) {
558 if (i + 2 >= argc)
559 return -1;
560 pconf->user.enh_start =
561 simple_strtoul(argv[i+1], NULL, 10);
562 pconf->user.enh_size =
563 simple_strtoul(argv[i+2], NULL, 10);
564 i += 3;
565 } else if (!strcmp(argv[i], "wrrel")) {
566 if (i + 1 >= argc)
567 return -1;
568 pconf->user.wr_rel_change = 1;
569 if (!strcmp(argv[i+1], "on"))
570 pconf->user.wr_rel_set = 1;
571 else if (!strcmp(argv[i+1], "off"))
572 pconf->user.wr_rel_set = 0;
573 else
574 return -1;
575 i += 2;
576 } else {
577 break;
578 }
579 }
580 return i;
581}
582
583static int parse_hwpart_gp(struct mmc_hwpart_conf *pconf, int pidx,
584 int argc, char * const argv[])
585{
586 int i;
587
588 memset(&pconf->gp_part[pidx], 0, sizeof(pconf->gp_part[pidx]));
589
590 if (1 >= argc)
591 return -1;
592 pconf->gp_part[pidx].size = simple_strtoul(argv[0], NULL, 10);
593
594 i = 1;
595 while (i < argc) {
596 if (!strcmp(argv[i], "enh")) {
597 pconf->gp_part[pidx].enhanced = 1;
598 i += 1;
599 } else if (!strcmp(argv[i], "wrrel")) {
600 if (i + 1 >= argc)
601 return -1;
602 pconf->gp_part[pidx].wr_rel_change = 1;
603 if (!strcmp(argv[i+1], "on"))
604 pconf->gp_part[pidx].wr_rel_set = 1;
605 else if (!strcmp(argv[i+1], "off"))
606 pconf->gp_part[pidx].wr_rel_set = 0;
607 else
608 return -1;
609 i += 2;
610 } else {
611 break;
612 }
613 }
614 return i;
615}
616
Diego Santa Cruzc599f532014-12-23 10:50:30 +0100617static int do_mmc_hwpartition(cmd_tbl_t *cmdtp, int flag,
618 int argc, char * const argv[])
619{
620 struct mmc *mmc;
621 struct mmc_hwpart_conf pconf = { };
622 enum mmc_hwpart_conf_mode mode = MMC_HWPART_CONF_CHECK;
Diego Santa Cruz189f9632014-12-23 10:50:32 +0100623 int i, r, pidx;
Diego Santa Cruzc599f532014-12-23 10:50:30 +0100624
625 mmc = init_mmc_device(curr_device, false);
626 if (!mmc)
627 return CMD_RET_FAILURE;
628
629 if (argc < 1)
630 return CMD_RET_USAGE;
631 i = 1;
632 while (i < argc) {
Diego Santa Cruz189f9632014-12-23 10:50:32 +0100633 if (!strcmp(argv[i], "user")) {
634 i++;
635 r = parse_hwpart_user(&pconf, argc-i, &argv[i]);
636 if (r < 0)
Diego Santa Cruzc599f532014-12-23 10:50:30 +0100637 return CMD_RET_USAGE;
Diego Santa Cruz189f9632014-12-23 10:50:32 +0100638 i += r;
Diego Santa Cruzc599f532014-12-23 10:50:30 +0100639 } else if (!strncmp(argv[i], "gp", 2) &&
640 strlen(argv[i]) == 3 &&
641 argv[i][2] >= '1' && argv[i][2] <= '4') {
Diego Santa Cruzc599f532014-12-23 10:50:30 +0100642 pidx = argv[i][2] - '1';
Diego Santa Cruz189f9632014-12-23 10:50:32 +0100643 i++;
644 r = parse_hwpart_gp(&pconf, pidx, argc-i, &argv[i]);
645 if (r < 0)
646 return CMD_RET_USAGE;
647 i += r;
Diego Santa Cruzc599f532014-12-23 10:50:30 +0100648 } else if (!strcmp(argv[i], "check")) {
649 mode = MMC_HWPART_CONF_CHECK;
650 i++;
651 } else if (!strcmp(argv[i], "set")) {
652 mode = MMC_HWPART_CONF_SET;
653 i++;
654 } else if (!strcmp(argv[i], "complete")) {
655 mode = MMC_HWPART_CONF_COMPLETE;
656 i++;
657 } else {
658 return CMD_RET_USAGE;
659 }
660 }
661
662 puts("Partition configuration:\n");
663 if (pconf.user.enh_size) {
664 puts("\tUser Enhanced Start: ");
665 print_size(((u64)pconf.user.enh_start) << 9, "\n");
666 puts("\tUser Enhanced Size: ");
667 print_size(((u64)pconf.user.enh_size) << 9, "\n");
668 } else {
669 puts("\tNo enhanced user data area\n");
670 }
Diego Santa Cruz189f9632014-12-23 10:50:32 +0100671 if (pconf.user.wr_rel_change)
672 printf("\tUser partition write reliability: %s\n",
673 pconf.user.wr_rel_set ? "on" : "off");
Diego Santa Cruzc599f532014-12-23 10:50:30 +0100674 for (pidx = 0; pidx < 4; pidx++) {
675 if (pconf.gp_part[pidx].size) {
676 printf("\tGP%i Capacity: ", pidx+1);
677 print_size(((u64)pconf.gp_part[pidx].size) << 9,
678 pconf.gp_part[pidx].enhanced ?
679 " ENH\n" : "\n");
680 } else {
681 printf("\tNo GP%i partition\n", pidx+1);
682 }
Diego Santa Cruz189f9632014-12-23 10:50:32 +0100683 if (pconf.gp_part[pidx].wr_rel_change)
684 printf("\tGP%i write reliability: %s\n", pidx+1,
685 pconf.gp_part[pidx].wr_rel_set ? "on" : "off");
Diego Santa Cruzc599f532014-12-23 10:50:30 +0100686 }
687
688 if (!mmc_hwpart_config(mmc, &pconf, mode)) {
689 if (mode == MMC_HWPART_CONF_COMPLETE)
690 puts("Partitioning successful, "
691 "power-cycle to make effective\n");
692 return CMD_RET_SUCCESS;
693 } else {
Diego Santa Cruz189f9632014-12-23 10:50:32 +0100694 puts("Failed!\n");
Diego Santa Cruzc599f532014-12-23 10:50:30 +0100695 return CMD_RET_FAILURE;
696 }
697}
Jean-Jacques Hiblotcf177892017-11-30 17:44:02 +0100698#endif
Diego Santa Cruzc599f532014-12-23 10:50:30 +0100699
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200700#ifdef CONFIG_SUPPORT_EMMC_BOOT
701static int do_mmc_bootbus(cmd_tbl_t *cmdtp, int flag,
702 int argc, char * const argv[])
703{
704 int dev;
705 struct mmc *mmc;
706 u8 width, reset, mode;
707
708 if (argc != 5)
709 return CMD_RET_USAGE;
710 dev = simple_strtoul(argv[1], NULL, 10);
711 width = simple_strtoul(argv[2], NULL, 10);
712 reset = simple_strtoul(argv[3], NULL, 10);
713 mode = simple_strtoul(argv[4], NULL, 10);
714
Stephen Warren1ae24a52014-05-23 13:24:45 -0600715 mmc = init_mmc_device(dev, false);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200716 if (!mmc)
717 return CMD_RET_FAILURE;
718
719 if (IS_SD(mmc)) {
720 puts("BOOT_BUS_WIDTH only exists on eMMC\n");
721 return CMD_RET_FAILURE;
722 }
723
724 /* acknowledge to be sent during boot operation */
725 return mmc_set_boot_bus_width(mmc, width, reset, mode);
726}
727static int do_mmc_boot_resize(cmd_tbl_t *cmdtp, int flag,
728 int argc, char * const argv[])
729{
730 int dev;
731 struct mmc *mmc;
732 u32 bootsize, rpmbsize;
733
734 if (argc != 4)
735 return CMD_RET_USAGE;
736 dev = simple_strtoul(argv[1], NULL, 10);
737 bootsize = simple_strtoul(argv[2], NULL, 10);
738 rpmbsize = simple_strtoul(argv[3], NULL, 10);
739
Stephen Warren1ae24a52014-05-23 13:24:45 -0600740 mmc = init_mmc_device(dev, false);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200741 if (!mmc)
742 return CMD_RET_FAILURE;
743
744 if (IS_SD(mmc)) {
Heinrich Schuchardt71a3e5c2020-03-29 19:26:57 +0000745 printf("It is not an eMMC device\n");
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200746 return CMD_RET_FAILURE;
747 }
748
749 if (mmc_boot_partition_size_change(mmc, bootsize, rpmbsize)) {
750 printf("EMMC boot partition Size change Failed.\n");
751 return CMD_RET_FAILURE;
752 }
753
754 printf("EMMC boot partition Size %d MB\n", bootsize);
755 printf("EMMC RPMB partition Size %d MB\n", rpmbsize);
756 return CMD_RET_SUCCESS;
757}
Angelo Dureghellobdb60992017-08-01 14:27:10 +0200758
759static int mmc_partconf_print(struct mmc *mmc)
760{
761 u8 ack, access, part;
762
763 if (mmc->part_config == MMCPART_NOAVAILABLE) {
764 printf("No part_config info for ver. 0x%x\n", mmc->version);
765 return CMD_RET_FAILURE;
766 }
767
768 access = EXT_CSD_EXTRACT_PARTITION_ACCESS(mmc->part_config);
769 ack = EXT_CSD_EXTRACT_BOOT_ACK(mmc->part_config);
770 part = EXT_CSD_EXTRACT_BOOT_PART(mmc->part_config);
771
772 printf("EXT_CSD[179], PARTITION_CONFIG:\n"
773 "BOOT_ACK: 0x%x\n"
774 "BOOT_PARTITION_ENABLE: 0x%x\n"
775 "PARTITION_ACCESS: 0x%x\n", ack, part, access);
776
777 return CMD_RET_SUCCESS;
778}
779
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200780static int do_mmc_partconf(cmd_tbl_t *cmdtp, int flag,
781 int argc, char * const argv[])
782{
783 int dev;
784 struct mmc *mmc;
785 u8 ack, part_num, access;
786
Angelo Dureghellobdb60992017-08-01 14:27:10 +0200787 if (argc != 2 && argc != 5)
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200788 return CMD_RET_USAGE;
789
790 dev = simple_strtoul(argv[1], NULL, 10);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200791
Stephen Warren1ae24a52014-05-23 13:24:45 -0600792 mmc = init_mmc_device(dev, false);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200793 if (!mmc)
794 return CMD_RET_FAILURE;
795
796 if (IS_SD(mmc)) {
797 puts("PARTITION_CONFIG only exists on eMMC\n");
798 return CMD_RET_FAILURE;
799 }
800
Angelo Dureghellobdb60992017-08-01 14:27:10 +0200801 if (argc == 2)
802 return mmc_partconf_print(mmc);
803
804 ack = simple_strtoul(argv[2], NULL, 10);
805 part_num = simple_strtoul(argv[3], NULL, 10);
806 access = simple_strtoul(argv[4], NULL, 10);
807
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200808 /* acknowledge to be sent during boot operation */
809 return mmc_set_part_conf(mmc, ack, part_num, access);
810}
811static int do_mmc_rst_func(cmd_tbl_t *cmdtp, int flag,
812 int argc, char * const argv[])
813{
814 int dev;
815 struct mmc *mmc;
816 u8 enable;
817
818 /*
819 * Set the RST_n_ENABLE bit of RST_n_FUNCTION
820 * The only valid values are 0x0, 0x1 and 0x2 and writing
821 * a value of 0x1 or 0x2 sets the value permanently.
822 */
823 if (argc != 3)
824 return CMD_RET_USAGE;
825
826 dev = simple_strtoul(argv[1], NULL, 10);
827 enable = simple_strtoul(argv[2], NULL, 10);
828
Peng Fan678e9312015-11-25 17:16:21 +0800829 if (enable > 2) {
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200830 puts("Invalid RST_n_ENABLE value\n");
831 return CMD_RET_USAGE;
832 }
833
Stephen Warren1ae24a52014-05-23 13:24:45 -0600834 mmc = init_mmc_device(dev, false);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200835 if (!mmc)
836 return CMD_RET_FAILURE;
837
838 if (IS_SD(mmc)) {
839 puts("RST_n_FUNCTION only exists on eMMC\n");
840 return CMD_RET_FAILURE;
841 }
842
843 return mmc_set_rst_n_function(mmc, enable);
844}
845#endif
846static int do_mmc_setdsr(cmd_tbl_t *cmdtp, int flag,
847 int argc, char * const argv[])
848{
849 struct mmc *mmc;
850 u32 val;
851 int ret;
852
853 if (argc != 2)
854 return CMD_RET_USAGE;
Markus Niebel84c1dfe2017-02-03 15:26:36 +0100855 val = simple_strtoul(argv[1], NULL, 16);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200856
857 mmc = find_mmc_device(curr_device);
858 if (!mmc) {
859 printf("no mmc device at slot %x\n", curr_device);
860 return CMD_RET_FAILURE;
861 }
862 ret = mmc_set_dsr(mmc, val);
863 printf("set dsr %s\n", (!ret) ? "OK, force rescan" : "ERROR");
864 if (!ret) {
865 mmc->has_init = 0;
866 if (mmc_init(mmc))
867 return CMD_RET_FAILURE;
868 else
869 return CMD_RET_SUCCESS;
870 }
871 return ret;
872}
873
Tomas Melincd3d4882016-11-25 11:01:03 +0200874#ifdef CONFIG_CMD_BKOPS_ENABLE
875static int do_mmc_bkops_enable(cmd_tbl_t *cmdtp, int flag,
876 int argc, char * const argv[])
877{
878 int dev;
879 struct mmc *mmc;
880
881 if (argc != 2)
882 return CMD_RET_USAGE;
883
884 dev = simple_strtoul(argv[1], NULL, 10);
885
886 mmc = init_mmc_device(dev, false);
887 if (!mmc)
888 return CMD_RET_FAILURE;
889
890 if (IS_SD(mmc)) {
891 puts("BKOPS_EN only exists on eMMC\n");
892 return CMD_RET_FAILURE;
893 }
894
895 return mmc_set_bkops_enable(mmc);
896}
897#endif
898
Heinrich Schuchardt0469d842020-03-30 07:24:19 +0200899static int do_mmc_boot_wp(cmd_tbl_t *cmdtp, int flag,
900 int argc, char * const argv[])
901{
902 int err;
903 struct mmc *mmc;
904
905 mmc = init_mmc_device(curr_device, false);
906 if (!mmc)
907 return CMD_RET_FAILURE;
908 if (IS_SD(mmc)) {
909 printf("It is not an eMMC device\n");
910 return CMD_RET_FAILURE;
911 }
912 err = mmc_boot_wp(mmc);
913 if (err)
914 return CMD_RET_FAILURE;
915 printf("boot areas protected\n");
916 return CMD_RET_SUCCESS;
917}
918
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200919static cmd_tbl_t cmd_mmc[] = {
920 U_BOOT_CMD_MKENT(info, 1, 0, do_mmcinfo, "", ""),
921 U_BOOT_CMD_MKENT(read, 4, 1, do_mmc_read, "", ""),
Heinrich Schuchardt0469d842020-03-30 07:24:19 +0200922 U_BOOT_CMD_MKENT(wp, 1, 0, do_mmc_boot_wp, "", ""),
Jean-Jacques Hiblote6fa5a52018-01-04 15:23:34 +0100923#if CONFIG_IS_ENABLED(MMC_WRITE)
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200924 U_BOOT_CMD_MKENT(write, 4, 0, do_mmc_write, "", ""),
925 U_BOOT_CMD_MKENT(erase, 3, 0, do_mmc_erase, "", ""),
Jean-Jacques Hiblote6fa5a52018-01-04 15:23:34 +0100926#endif
Alex Kiernanc232d142018-05-29 15:30:52 +0000927#if CONFIG_IS_ENABLED(CMD_MMC_SWRITE)
928 U_BOOT_CMD_MKENT(swrite, 3, 0, do_mmc_sparse_write, "", ""),
929#endif
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200930 U_BOOT_CMD_MKENT(rescan, 1, 1, do_mmc_rescan, "", ""),
931 U_BOOT_CMD_MKENT(part, 1, 1, do_mmc_part, "", ""),
932 U_BOOT_CMD_MKENT(dev, 3, 0, do_mmc_dev, "", ""),
933 U_BOOT_CMD_MKENT(list, 1, 1, do_mmc_list, "", ""),
Jean-Jacques Hiblotcf177892017-11-30 17:44:02 +0100934#if CONFIG_IS_ENABLED(MMC_HW_PARTITIONING)
Diego Santa Cruz189f9632014-12-23 10:50:32 +0100935 U_BOOT_CMD_MKENT(hwpartition, 28, 0, do_mmc_hwpartition, "", ""),
Jean-Jacques Hiblotcf177892017-11-30 17:44:02 +0100936#endif
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200937#ifdef CONFIG_SUPPORT_EMMC_BOOT
938 U_BOOT_CMD_MKENT(bootbus, 5, 0, do_mmc_bootbus, "", ""),
Wally Yehfa7b8852014-09-25 23:00:16 +0800939 U_BOOT_CMD_MKENT(bootpart-resize, 4, 0, do_mmc_boot_resize, "", ""),
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200940 U_BOOT_CMD_MKENT(partconf, 5, 0, do_mmc_partconf, "", ""),
941 U_BOOT_CMD_MKENT(rst-function, 3, 0, do_mmc_rst_func, "", ""),
942#endif
Alex Kiernan5a7b11e2018-05-08 04:43:31 +0000943#if CONFIG_IS_ENABLED(CMD_MMC_RPMB)
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200944 U_BOOT_CMD_MKENT(rpmb, CONFIG_SYS_MAXARGS, 1, do_mmcrpmb, "", ""),
945#endif
946 U_BOOT_CMD_MKENT(setdsr, 2, 0, do_mmc_setdsr, "", ""),
Tomas Melincd3d4882016-11-25 11:01:03 +0200947#ifdef CONFIG_CMD_BKOPS_ENABLE
948 U_BOOT_CMD_MKENT(bkops-enable, 2, 0, do_mmc_bkops_enable, "", ""),
949#endif
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200950};
Andy Fleming272cc702008-10-30 16:41:01 -0500951
Kim Phillips088f1b12012-10-29 13:34:31 +0000952static int do_mmcops(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Andy Fleming272cc702008-10-30 16:41:01 -0500953{
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200954 cmd_tbl_t *cp;
Lei Wen6be95cc2011-06-22 17:03:30 +0000955
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200956 cp = find_cmd_tbl(argv[1], cmd_mmc, ARRAY_SIZE(cmd_mmc));
957
958 /* Drop the mmc command */
959 argc--;
960 argv++;
961
962 if (cp == NULL || argc > cp->maxargs)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000963 return CMD_RET_USAGE;
Boris Brezillon80a48dd2018-12-03 22:54:20 +0100964 if (flag == CMD_FLAG_REPEAT && !cmd_is_repeatable(cp))
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200965 return CMD_RET_SUCCESS;
Andy Fleming272cc702008-10-30 16:41:01 -0500966
Lei Wenea6ebe22011-05-02 16:26:25 +0000967 if (curr_device < 0) {
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200968 if (get_mmc_num() > 0) {
Lei Wenea6ebe22011-05-02 16:26:25 +0000969 curr_device = 0;
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200970 } else {
Lei Wenea6ebe22011-05-02 16:26:25 +0000971 puts("No MMC device available\n");
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200972 return CMD_RET_FAILURE;
Lei Wenea6ebe22011-05-02 16:26:25 +0000973 }
974 }
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200975 return cp->cmd(cmdtp, flag, argc, argv);
Andy Fleming272cc702008-10-30 16:41:01 -0500976}
977
978U_BOOT_CMD(
Diego Santa Cruz189f9632014-12-23 10:50:32 +0100979 mmc, 29, 1, do_mmcops,
Mike Frysinger852dbfd2009-03-23 22:27:34 -0400980 "MMC sub system",
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200981 "info - display info of the current MMC device\n"
982 "mmc read addr blk# cnt\n"
Lei Wenea6ebe22011-05-02 16:26:25 +0000983 "mmc write addr blk# cnt\n"
Alex Kiernanc232d142018-05-29 15:30:52 +0000984#if CONFIG_IS_ENABLED(CMD_MMC_SWRITE)
Jassi Brar732bc7c2018-04-06 12:05:24 +0530985 "mmc swrite addr blk#\n"
986#endif
Lei Wene6f99a52011-06-22 17:03:31 +0000987 "mmc erase blk# cnt\n"
Lei Wenea6ebe22011-05-02 16:26:25 +0000988 "mmc rescan\n"
989 "mmc part - lists available partition on current mmc device\n"
Lei Wenbc897b12011-05-02 16:26:26 +0000990 "mmc dev [dev] [part] - show or set current mmc device [partition]\n"
Amar2a91c912013-04-27 11:43:00 +0530991 "mmc list - lists available devices\n"
Heinrich Schuchardt0469d842020-03-30 07:24:19 +0200992 "mmc wp - power on write protect booot partitions\n"
Alex Kiernan84593672018-06-11 16:20:09 +0000993#if CONFIG_IS_ENABLED(MMC_HW_PARTITIONING)
Diego Santa Cruzc599f532014-12-23 10:50:30 +0100994 "mmc hwpartition [args...] - does hardware partitioning\n"
995 " arguments (sizes in 512-byte blocks):\n"
Diego Santa Cruz189f9632014-12-23 10:50:32 +0100996 " [user [enh start cnt] [wrrel {on|off}]] - sets user data area attributes\n"
997 " [gp1|gp2|gp3|gp4 cnt [enh] [wrrel {on|off}]] - general purpose partition\n"
Diego Santa Cruzc599f532014-12-23 10:50:30 +0100998 " [check|set|complete] - mode, complete set partitioning completed\n"
Diego Santa Cruz189f9632014-12-23 10:50:32 +0100999 " WARNING: Partitioning is a write-once setting once it is set to complete.\n"
1000 " Power cycling is required to initialize partitions after set to complete.\n"
Alex Kiernan84593672018-06-11 16:20:09 +00001001#endif
Amar2a91c912013-04-27 11:43:00 +05301002#ifdef CONFIG_SUPPORT_EMMC_BOOT
Tom Rini5a99b9d2014-02-05 10:24:22 -05001003 "mmc bootbus dev boot_bus_width reset_boot_bus_width boot_mode\n"
1004 " - Set the BOOT_BUS_WIDTH field of the specified device\n"
Tom Rinif1fd9572014-02-05 10:24:20 -05001005 "mmc bootpart-resize <dev> <boot part size MB> <RPMB part size MB>\n"
1006 " - Change sizes of boot and RPMB partitions of specified device\n"
Angelo Dureghellobdb60992017-08-01 14:27:10 +02001007 "mmc partconf dev [boot_ack boot_partition partition_access]\n"
1008 " - Show or change the bits of the PARTITION_CONFIG field of the specified device\n"
Tom Rini33ace362014-02-07 14:15:20 -05001009 "mmc rst-function dev value\n"
1010 " - Change the RST_n_FUNCTION field of the specified device\n"
1011 " WARNING: This is a write-once field and 0 / 1 / 2 are the only valid values.\n"
Dirk Behme3511b4e2009-02-18 19:59:39 +01001012#endif
Alex Kiernan5a7b11e2018-05-08 04:43:31 +00001013#if CONFIG_IS_ENABLED(CMD_MMC_RPMB)
Pierre Aubert1fd93c62014-04-24 10:30:08 +02001014 "mmc rpmb read addr blk# cnt [address of auth-key] - block size is 256 bytes\n"
1015 "mmc rpmb write addr blk# cnt <address of auth-key> - block size is 256 bytes\n"
1016 "mmc rpmb key <address of auth-key> - program the RPMB authentication key.\n"
1017 "mmc rpmb counter - read the value of the write counter\n"
1018#endif
1019 "mmc setdsr <value> - set DSR register value\n"
Tomas Melincd3d4882016-11-25 11:01:03 +02001020#ifdef CONFIG_CMD_BKOPS_ENABLE
1021 "mmc bkops-enable <dev> - enable background operations handshake on device\n"
1022 " WARNING: This is a write-once setting.\n"
1023#endif
Amar2a91c912013-04-27 11:43:00 +05301024 );
Pierre Aubert1fd93c62014-04-24 10:30:08 +02001025
1026/* Old command kept for compatibility. Same as 'mmc info' */
1027U_BOOT_CMD(
1028 mmcinfo, 1, 0, do_mmcinfo,
1029 "display MMC info",
1030 "- display info of the current MMC device"
1031);