blob: 7464f8d00cd2d9d94e01e01937aede0986f829cc [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenk7a428cc2003-06-15 22:40:42 +00002/*
3 * (C) Copyright 2003
4 * Kyle Harris, kharris@nexus-tech.net
wdenk7a428cc2003-06-15 22:40:42 +00005 */
6
7#include <common.h>
Simon Glass655306c2020-05-10 11:39:58 -06008#include <blk.h>
wdenk7a428cc2003-06-15 22:40:42 +00009#include <command.h>
Simon Glassa73bda42015-11-08 23:47:45 -070010#include <console.h>
Marek Vasutdfff8ed2020-06-20 14:28:25 +020011#include <memalign.h>
wdenk7a428cc2003-06-15 22:40:42 +000012#include <mmc.h>
Simon Glass655306c2020-05-10 11:39:58 -060013#include <part.h>
Jassi Brar814a9752018-04-06 12:05:24 +053014#include <sparse_format.h>
15#include <image-sparse.h>
wdenk7a428cc2003-06-15 22:40:42 +000016
Mike Frysinger0289fe62009-06-14 21:35:21 -040017static int curr_device = -1;
Andy Flemingad347bb2008-10-30 16:41:01 -050018
19static void print_mmcinfo(struct mmc *mmc)
20{
Diego Santa Cruz99ca0282014-12-23 10:50:16 +010021 int i;
22
Pantelis Antoniou2c850462014-03-11 19:34:20 +020023 printf("Device: %s\n", mmc->cfg->name);
Andy Flemingad347bb2008-10-30 16:41:01 -050024 printf("Manufacturer ID: %x\n", mmc->cid[0] >> 24);
Max Merchel1414ada2022-02-10 10:16:39 +010025 if (IS_SD(mmc)) {
26 printf("OEM: %x\n", (mmc->cid[0] >> 8) & 0xffff);
27 printf("Name: %c%c%c%c%c \n", mmc->cid[0] & 0xff,
28 (mmc->cid[1] >> 24), (mmc->cid[1] >> 16) & 0xff,
29 (mmc->cid[1] >> 8) & 0xff, mmc->cid[1] & 0xff);
30 } else {
31 printf("OEM: %x\n", (mmc->cid[0] >> 8) & 0xff);
32 printf("Name: %c%c%c%c%c%c \n", mmc->cid[0] & 0xff,
33 (mmc->cid[1] >> 24), (mmc->cid[1] >> 16) & 0xff,
34 (mmc->cid[1] >> 8) & 0xff, mmc->cid[1] & 0xff,
35 (mmc->cid[2] >> 24));
36 }
Andy Flemingad347bb2008-10-30 16:41:01 -050037
Jean-Jacques Hiblotf62caf92017-09-21 16:29:56 +020038 printf("Bus Speed: %d\n", mmc->clock);
Jean-Jacques Hiblot93c31d12017-11-30 17:43:54 +010039#if CONFIG_IS_ENABLED(MMC_VERBOSE)
Marek Vasutd1e63462019-03-18 04:49:21 +010040 printf("Mode: %s\n", mmc_mode_name(mmc->selected_mode));
Jean-Jacques Hiblot93c31d12017-11-30 17:43:54 +010041 mmc_dump_capabilities("card capabilities", mmc->card_caps);
42 mmc_dump_capabilities("host capabilities", mmc->host_caps);
43#endif
Andy Flemingad347bb2008-10-30 16:41:01 -050044 printf("Rd Block Len: %d\n", mmc->read_bl_len);
45
Pantelis Antonioua095bfd2015-01-23 12:12:01 +020046 printf("%s version %d.%d", IS_SD(mmc) ? "SD" : "MMC",
47 EXTRACT_SDMMC_MAJOR_VERSION(mmc->version),
48 EXTRACT_SDMMC_MINOR_VERSION(mmc->version));
49 if (EXTRACT_SDMMC_CHANGE_VERSION(mmc->version) != 0)
50 printf(".%d", EXTRACT_SDMMC_CHANGE_VERSION(mmc->version));
51 printf("\n");
Andy Flemingad347bb2008-10-30 16:41:01 -050052
53 printf("High Capacity: %s\n", mmc->high_capacity ? "Yes" : "No");
Minkyu Kang316f81a2011-01-04 01:04:19 +000054 puts("Capacity: ");
55 print_size(mmc->capacity, "\n");
Andy Flemingad347bb2008-10-30 16:41:01 -050056
Andrew Gabbasov9fc2a412014-12-01 06:59:09 -060057 printf("Bus Width: %d-bit%s\n", mmc->bus_width,
58 mmc->ddr_mode ? " DDR" : "");
Diego Santa Cruz99ca0282014-12-23 10:50:16 +010059
Jean-Jacques Hiblot27edffe2018-01-04 15:23:34 +010060#if CONFIG_IS_ENABLED(MMC_WRITE)
Diego Santa Cruz173c79e2014-12-23 10:50:26 +010061 puts("Erase Group Size: ");
62 print_size(((u64)mmc->erase_grp_size) << 9, "\n");
Jean-Jacques Hiblot27edffe2018-01-04 15:23:34 +010063#endif
Diego Santa Cruz173c79e2014-12-23 10:50:26 +010064
Diego Santa Cruz1f69e222014-12-23 10:50:19 +010065 if (!IS_SD(mmc) && mmc->version >= MMC_VERSION_4_41) {
Diego Santa Cruzc145f9e2014-12-23 10:50:17 +010066 bool has_enh = (mmc->part_support & ENHNCD_SUPPORT) != 0;
Diego Santa Cruz2b45f582014-12-23 10:50:23 +010067 bool usr_enh = has_enh && (mmc->part_attr & EXT_CSD_ENH_USR);
Marek Vasutdfff8ed2020-06-20 14:28:25 +020068 ALLOC_CACHE_ALIGN_BUFFER(u8, ext_csd, MMC_MAX_BLOCK_LEN);
69 u8 wp;
Heinrich Schuchardt0c8ffff2020-03-30 07:24:18 +020070 int ret;
Diego Santa Cruz173c79e2014-12-23 10:50:26 +010071
Jean-Jacques Hiblotba54ab82018-01-04 15:23:36 +010072#if CONFIG_IS_ENABLED(MMC_HW_PARTITIONING)
Diego Santa Cruz173c79e2014-12-23 10:50:26 +010073 puts("HC WP Group Size: ");
74 print_size(((u64)mmc->hc_wp_grp_size) << 9, "\n");
Jean-Jacques Hiblotba54ab82018-01-04 15:23:36 +010075#endif
Diego Santa Cruz173c79e2014-12-23 10:50:26 +010076
Diego Santa Cruz99ca0282014-12-23 10:50:16 +010077 puts("User Capacity: ");
Diego Santa Cruz37a50b92014-12-23 10:50:33 +010078 print_size(mmc->capacity_user, usr_enh ? " ENH" : "");
79 if (mmc->wr_rel_set & EXT_CSD_WR_DATA_REL_USR)
80 puts(" WRREL\n");
81 else
82 putc('\n');
Diego Santa Cruz2b45f582014-12-23 10:50:23 +010083 if (usr_enh) {
84 puts("User Enhanced Start: ");
85 print_size(mmc->enh_user_start, "\n");
86 puts("User Enhanced Size: ");
87 print_size(mmc->enh_user_size, "\n");
88 }
Diego Santa Cruz99ca0282014-12-23 10:50:16 +010089 puts("Boot Capacity: ");
Diego Santa Cruzc145f9e2014-12-23 10:50:17 +010090 print_size(mmc->capacity_boot, has_enh ? " ENH\n" : "\n");
Diego Santa Cruz99ca0282014-12-23 10:50:16 +010091 puts("RPMB Capacity: ");
Diego Santa Cruzc145f9e2014-12-23 10:50:17 +010092 print_size(mmc->capacity_rpmb, has_enh ? " ENH\n" : "\n");
Diego Santa Cruz173c79e2014-12-23 10:50:26 +010093
Diego Santa Cruz99ca0282014-12-23 10:50:16 +010094 for (i = 0; i < ARRAY_SIZE(mmc->capacity_gp); i++) {
Diego Santa Cruzc145f9e2014-12-23 10:50:17 +010095 bool is_enh = has_enh &&
96 (mmc->part_attr & EXT_CSD_ENH_GP(i));
Diego Santa Cruz99ca0282014-12-23 10:50:16 +010097 if (mmc->capacity_gp[i]) {
Diego Santa Cruzd8358432014-12-23 10:50:18 +010098 printf("GP%i Capacity: ", i+1);
Diego Santa Cruzc145f9e2014-12-23 10:50:17 +010099 print_size(mmc->capacity_gp[i],
Diego Santa Cruz37a50b92014-12-23 10:50:33 +0100100 is_enh ? " ENH" : "");
101 if (mmc->wr_rel_set & EXT_CSD_WR_DATA_REL_GP(i))
102 puts(" WRREL\n");
103 else
104 putc('\n');
Diego Santa Cruz99ca0282014-12-23 10:50:16 +0100105 }
106 }
Heinrich Schuchardt0c8ffff2020-03-30 07:24:18 +0200107 ret = mmc_send_ext_csd(mmc, ext_csd);
108 if (ret)
109 return;
110 wp = ext_csd[EXT_CSD_BOOT_WP_STATUS];
111 for (i = 0; i < 2; ++i) {
112 printf("Boot area %d is ", i);
113 switch (wp & 3) {
114 case 0:
115 printf("not write protected\n");
116 break;
117 case 1:
118 printf("power on protected\n");
119 break;
120 case 2:
121 printf("permanently protected\n");
122 break;
123 default:
124 printf("in reserved protection state\n");
125 break;
126 }
127 wp >>= 2;
128 }
Diego Santa Cruz99ca0282014-12-23 10:50:16 +0100129 }
Andy Flemingad347bb2008-10-30 16:41:01 -0500130}
Aswath Govindrajubb5b9fe2021-08-13 23:04:41 +0530131
132static struct mmc *__init_mmc_device(int dev, bool force_init,
133 enum bus_mode speed_mode)
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200134{
135 struct mmc *mmc;
136 mmc = find_mmc_device(dev);
137 if (!mmc) {
138 printf("no mmc device at slot %x\n", dev);
139 return NULL;
140 }
Eric Nelsonbc181662016-03-27 12:00:14 -0700141
Marek Vasutcb5df5d2019-01-03 22:09:43 +0100142 if (!mmc_getcd(mmc))
143 force_init = true;
144
Stephen Warrenb627f4b2014-05-23 13:24:45 -0600145 if (force_init)
146 mmc->has_init = 0;
Aswath Govindrajubb5b9fe2021-08-13 23:04:41 +0530147
148 if (IS_ENABLED(CONFIG_MMC_SPEED_MODE_SET))
149 mmc->user_speed_mode = speed_mode;
150
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200151 if (mmc_init(mmc))
152 return NULL;
Marek Vasut829540f2019-01-03 22:09:44 +0100153
154#ifdef CONFIG_BLOCK_CACHE
155 struct blk_desc *bd = mmc_get_blk_desc(mmc);
156 blkcache_invalidate(bd->if_type, bd->devnum);
157#endif
158
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200159 return mmc;
160}
Simon Glassed38aef2020-05-10 11:40:03 -0600161
Aswath Govindrajubb5b9fe2021-08-13 23:04:41 +0530162static struct mmc *init_mmc_device(int dev, bool force_init)
163{
164 return __init_mmc_device(dev, force_init, MMC_MODES_END);
165}
166
Simon Glassed38aef2020-05-10 11:40:03 -0600167static int do_mmcinfo(struct cmd_tbl *cmdtp, int flag, int argc,
168 char *const argv[])
Andy Flemingad347bb2008-10-30 16:41:01 -0500169{
170 struct mmc *mmc;
Andy Flemingad347bb2008-10-30 16:41:01 -0500171
Lei Wend430d7c2011-05-02 16:26:25 +0000172 if (curr_device < 0) {
173 if (get_mmc_num() > 0)
174 curr_device = 0;
175 else {
176 puts("No MMC device available\n");
177 return 1;
178 }
179 }
Andy Flemingad347bb2008-10-30 16:41:01 -0500180
Stephen Warrenb627f4b2014-05-23 13:24:45 -0600181 mmc = init_mmc_device(curr_device, false);
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200182 if (!mmc)
183 return CMD_RET_FAILURE;
Andy Flemingad347bb2008-10-30 16:41:01 -0500184
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200185 print_mmcinfo(mmc);
186 return CMD_RET_SUCCESS;
187}
Andy Flemingad347bb2008-10-30 16:41:01 -0500188
Alex Kiernan60e0f612018-05-08 04:43:31 +0000189#if CONFIG_IS_ENABLED(CMD_MMC_RPMB)
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200190static int confirm_key_prog(void)
191{
192 puts("Warning: Programming authentication key can be done only once !\n"
193 " Use this command only if you are sure of what you are doing,\n"
194 "Really perform the key programming? <y/N> ");
195 if (confirm_yesno())
Lei Wend430d7c2011-05-02 16:26:25 +0000196 return 1;
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200197
198 puts("Authentication key programming aborted\n");
199 return 0;
200}
Simon Glassed38aef2020-05-10 11:40:03 -0600201
202static int do_mmcrpmb_key(struct cmd_tbl *cmdtp, int flag,
203 int argc, char *const argv[])
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200204{
205 void *key_addr;
206 struct mmc *mmc = find_mmc_device(curr_device);
207
208 if (argc != 2)
209 return CMD_RET_USAGE;
210
Simon Glass3ff49ec2021-07-24 09:03:29 -0600211 key_addr = (void *)hextoul(argv[1], NULL);
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200212 if (!confirm_key_prog())
213 return CMD_RET_FAILURE;
214 if (mmc_rpmb_set_key(mmc, key_addr)) {
215 printf("ERROR - Key already programmed ?\n");
216 return CMD_RET_FAILURE;
Andy Flemingad347bb2008-10-30 16:41:01 -0500217 }
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200218 return CMD_RET_SUCCESS;
Andy Flemingad347bb2008-10-30 16:41:01 -0500219}
Simon Glassed38aef2020-05-10 11:40:03 -0600220
221static int do_mmcrpmb_read(struct cmd_tbl *cmdtp, int flag,
222 int argc, char *const argv[])
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200223{
224 u16 blk, cnt;
225 void *addr;
226 int n;
227 void *key_addr = NULL;
228 struct mmc *mmc = find_mmc_device(curr_device);
Andy Flemingad347bb2008-10-30 16:41:01 -0500229
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200230 if (argc < 4)
231 return CMD_RET_USAGE;
Andy Flemingad347bb2008-10-30 16:41:01 -0500232
Simon Glass3ff49ec2021-07-24 09:03:29 -0600233 addr = (void *)hextoul(argv[1], NULL);
234 blk = hextoul(argv[2], NULL);
235 cnt = hextoul(argv[3], NULL);
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200236
237 if (argc == 5)
Simon Glass3ff49ec2021-07-24 09:03:29 -0600238 key_addr = (void *)hextoul(argv[4], NULL);
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200239
240 printf("\nMMC RPMB read: dev # %d, block # %d, count %d ... ",
241 curr_device, blk, cnt);
242 n = mmc_rpmb_read(mmc, addr, blk, cnt, key_addr);
243
244 printf("%d RPMB blocks read: %s\n", n, (n == cnt) ? "OK" : "ERROR");
245 if (n != cnt)
246 return CMD_RET_FAILURE;
247 return CMD_RET_SUCCESS;
248}
Simon Glassed38aef2020-05-10 11:40:03 -0600249
250static int do_mmcrpmb_write(struct cmd_tbl *cmdtp, int flag,
251 int argc, char *const argv[])
Andy Flemingad347bb2008-10-30 16:41:01 -0500252{
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200253 u16 blk, cnt;
254 void *addr;
255 int n;
256 void *key_addr;
257 struct mmc *mmc = find_mmc_device(curr_device);
Lei Wen64b2b1e2011-06-22 17:03:30 +0000258
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200259 if (argc != 5)
Simon Glassa06dfc72011-12-10 08:44:01 +0000260 return CMD_RET_USAGE;
Andy Flemingad347bb2008-10-30 16:41:01 -0500261
Simon Glass3ff49ec2021-07-24 09:03:29 -0600262 addr = (void *)hextoul(argv[1], NULL);
263 blk = hextoul(argv[2], NULL);
264 cnt = hextoul(argv[3], NULL);
265 key_addr = (void *)hextoul(argv[4], NULL);
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200266
267 printf("\nMMC RPMB write: dev # %d, block # %d, count %d ... ",
268 curr_device, blk, cnt);
269 n = mmc_rpmb_write(mmc, addr, blk, cnt, key_addr);
270
271 printf("%d RPMB blocks written: %s\n", n, (n == cnt) ? "OK" : "ERROR");
272 if (n != cnt)
273 return CMD_RET_FAILURE;
274 return CMD_RET_SUCCESS;
275}
Simon Glassed38aef2020-05-10 11:40:03 -0600276
277static int do_mmcrpmb_counter(struct cmd_tbl *cmdtp, int flag,
278 int argc, char *const argv[])
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200279{
280 unsigned long counter;
281 struct mmc *mmc = find_mmc_device(curr_device);
282
283 if (mmc_rpmb_get_counter(mmc, &counter))
284 return CMD_RET_FAILURE;
285 printf("RPMB Write counter= %lx\n", counter);
286 return CMD_RET_SUCCESS;
287}
288
Simon Glassed38aef2020-05-10 11:40:03 -0600289static struct cmd_tbl cmd_rpmb[] = {
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200290 U_BOOT_CMD_MKENT(key, 2, 0, do_mmcrpmb_key, "", ""),
291 U_BOOT_CMD_MKENT(read, 5, 1, do_mmcrpmb_read, "", ""),
292 U_BOOT_CMD_MKENT(write, 5, 0, do_mmcrpmb_write, "", ""),
293 U_BOOT_CMD_MKENT(counter, 1, 1, do_mmcrpmb_counter, "", ""),
294};
295
Simon Glassed38aef2020-05-10 11:40:03 -0600296static int do_mmcrpmb(struct cmd_tbl *cmdtp, int flag,
297 int argc, char *const argv[])
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200298{
Simon Glassed38aef2020-05-10 11:40:03 -0600299 struct cmd_tbl *cp;
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200300 struct mmc *mmc;
301 char original_part;
302 int ret;
303
304 cp = find_cmd_tbl(argv[1], cmd_rpmb, ARRAY_SIZE(cmd_rpmb));
305
306 /* Drop the rpmb subcommand */
307 argc--;
308 argv++;
309
310 if (cp == NULL || argc > cp->maxargs)
311 return CMD_RET_USAGE;
Boris Brezillonc71dfd12018-12-03 22:54:20 +0100312 if (flag == CMD_FLAG_REPEAT && !cmd_is_repeatable(cp))
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200313 return CMD_RET_SUCCESS;
314
Stephen Warrenb627f4b2014-05-23 13:24:45 -0600315 mmc = init_mmc_device(curr_device, false);
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200316 if (!mmc)
317 return CMD_RET_FAILURE;
318
319 if (!(mmc->version & MMC_VERSION_MMC)) {
Heinrich Schuchardteeb191c2020-03-29 19:26:57 +0000320 printf("It is not an eMMC device\n");
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200321 return CMD_RET_FAILURE;
Lei Wend430d7c2011-05-02 16:26:25 +0000322 }
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200323 if (mmc->version < MMC_VERSION_4_41) {
324 printf("RPMB not supported before version 4.41\n");
325 return CMD_RET_FAILURE;
326 }
327 /* Switch to the RPMB partition */
Kever Yangcb5f1932017-06-08 09:20:03 +0800328#ifndef CONFIG_BLK
Marek Vasuta62cf492016-05-04 16:35:25 +0200329 original_part = mmc->block_dev.hwpart;
Kever Yangcb5f1932017-06-08 09:20:03 +0800330#else
331 original_part = mmc_get_blk_desc(mmc)->hwpart;
332#endif
Simon Glass11f2bb62016-05-01 13:52:29 -0600333 if (blk_select_hwpart_devnum(IF_TYPE_MMC, curr_device, MMC_PART_RPMB) !=
334 0)
Stephen Warren1e0f92a2015-12-07 11:38:49 -0700335 return CMD_RET_FAILURE;
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200336 ret = cp->cmd(cmdtp, flag, argc, argv);
Andy Flemingad347bb2008-10-30 16:41:01 -0500337
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200338 /* Return to original partition */
Simon Glass11f2bb62016-05-01 13:52:29 -0600339 if (blk_select_hwpart_devnum(IF_TYPE_MMC, curr_device, original_part) !=
340 0)
Stephen Warren1e0f92a2015-12-07 11:38:49 -0700341 return CMD_RET_FAILURE;
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200342 return ret;
343}
344#endif
Rabin Vincent3e448aa2009-04-05 13:30:53 +0530345
Simon Glassed38aef2020-05-10 11:40:03 -0600346static int do_mmc_read(struct cmd_tbl *cmdtp, int flag,
347 int argc, char *const argv[])
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200348{
349 struct mmc *mmc;
350 u32 blk, cnt, n;
351 void *addr;
Stephen Warren18faca72013-04-01 11:50:28 +0000352
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200353 if (argc != 4)
354 return CMD_RET_USAGE;
Andy Flemingad347bb2008-10-30 16:41:01 -0500355
Simon Glass3ff49ec2021-07-24 09:03:29 -0600356 addr = (void *)hextoul(argv[1], NULL);
357 blk = hextoul(argv[2], NULL);
358 cnt = hextoul(argv[3], NULL);
Lei Wen61dba932010-09-13 22:07:28 +0800359
Stephen Warrenb627f4b2014-05-23 13:24:45 -0600360 mmc = init_mmc_device(curr_device, false);
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200361 if (!mmc)
362 return CMD_RET_FAILURE;
Lei Wen61dba932010-09-13 22:07:28 +0800363
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200364 printf("\nMMC read: dev # %d, block # %d, count %d ... ",
365 curr_device, blk, cnt);
Stephen Warren18faca72013-04-01 11:50:28 +0000366
Simon Glasse5db1152016-05-01 13:52:35 -0600367 n = blk_dread(mmc_get_blk_desc(mmc), blk, cnt, addr);
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200368 printf("%d blocks read: %s\n", n, (n == cnt) ? "OK" : "ERROR");
Lei Wend430d7c2011-05-02 16:26:25 +0000369
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200370 return (n == cnt) ? CMD_RET_SUCCESS : CMD_RET_FAILURE;
371}
Jean-Jacques Hiblot27edffe2018-01-04 15:23:34 +0100372
Alex Kiernanc568bcb2018-05-29 15:30:52 +0000373#if CONFIG_IS_ENABLED(CMD_MMC_SWRITE)
Jassi Brar814a9752018-04-06 12:05:24 +0530374static lbaint_t mmc_sparse_write(struct sparse_storage *info, lbaint_t blk,
375 lbaint_t blkcnt, const void *buffer)
376{
377 struct blk_desc *dev_desc = info->priv;
378
379 return blk_dwrite(dev_desc, blk, blkcnt, buffer);
380}
381
382static lbaint_t mmc_sparse_reserve(struct sparse_storage *info,
383 lbaint_t blk, lbaint_t blkcnt)
384{
385 return blkcnt;
386}
387
Simon Glassed38aef2020-05-10 11:40:03 -0600388static int do_mmc_sparse_write(struct cmd_tbl *cmdtp, int flag,
389 int argc, char *const argv[])
Jassi Brar814a9752018-04-06 12:05:24 +0530390{
391 struct sparse_storage sparse;
392 struct blk_desc *dev_desc;
393 struct mmc *mmc;
394 char dest[11];
395 void *addr;
396 u32 blk;
397
398 if (argc != 3)
399 return CMD_RET_USAGE;
400
Simon Glass3ff49ec2021-07-24 09:03:29 -0600401 addr = (void *)hextoul(argv[1], NULL);
402 blk = hextoul(argv[2], NULL);
Jassi Brar814a9752018-04-06 12:05:24 +0530403
404 if (!is_sparse_image(addr)) {
405 printf("Not a sparse image\n");
406 return CMD_RET_FAILURE;
407 }
408
409 mmc = init_mmc_device(curr_device, false);
410 if (!mmc)
411 return CMD_RET_FAILURE;
412
413 printf("\nMMC Sparse write: dev # %d, block # %d ... ",
414 curr_device, blk);
415
416 if (mmc_getwp(mmc) == 1) {
417 printf("Error: card is write protected!\n");
418 return CMD_RET_FAILURE;
419 }
420
421 dev_desc = mmc_get_blk_desc(mmc);
422 sparse.priv = dev_desc;
423 sparse.blksz = 512;
424 sparse.start = blk;
425 sparse.size = dev_desc->lba - blk;
426 sparse.write = mmc_sparse_write;
427 sparse.reserve = mmc_sparse_reserve;
428 sparse.mssg = NULL;
429 sprintf(dest, "0x" LBAF, sparse.start * sparse.blksz);
430
Alex Kiernan27b69de2018-05-29 15:30:40 +0000431 if (write_sparse_image(&sparse, dest, addr, NULL))
Jassi Brar814a9752018-04-06 12:05:24 +0530432 return CMD_RET_FAILURE;
433 else
434 return CMD_RET_SUCCESS;
435}
436#endif
437
Alex Kiernanc568bcb2018-05-29 15:30:52 +0000438#if CONFIG_IS_ENABLED(MMC_WRITE)
Simon Glassed38aef2020-05-10 11:40:03 -0600439static int do_mmc_write(struct cmd_tbl *cmdtp, int flag,
440 int argc, char *const argv[])
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200441{
442 struct mmc *mmc;
443 u32 blk, cnt, n;
444 void *addr;
Andy Flemingad347bb2008-10-30 16:41:01 -0500445
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200446 if (argc != 4)
447 return CMD_RET_USAGE;
Lei Wend430d7c2011-05-02 16:26:25 +0000448
Simon Glass3ff49ec2021-07-24 09:03:29 -0600449 addr = (void *)hextoul(argv[1], NULL);
450 blk = hextoul(argv[2], NULL);
451 cnt = hextoul(argv[3], NULL);
Lei Wend430d7c2011-05-02 16:26:25 +0000452
Stephen Warrenb627f4b2014-05-23 13:24:45 -0600453 mmc = init_mmc_device(curr_device, false);
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200454 if (!mmc)
455 return CMD_RET_FAILURE;
Lei Wen31b99802011-05-02 16:26:26 +0000456
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200457 printf("\nMMC write: dev # %d, block # %d, count %d ... ",
458 curr_device, blk, cnt);
Lei Wen31b99802011-05-02 16:26:26 +0000459
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200460 if (mmc_getwp(mmc) == 1) {
461 printf("Error: card is write protected!\n");
462 return CMD_RET_FAILURE;
463 }
Simon Glasse5db1152016-05-01 13:52:35 -0600464 n = blk_dwrite(mmc_get_blk_desc(mmc), blk, cnt, addr);
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200465 printf("%d blocks written: %s\n", n, (n == cnt) ? "OK" : "ERROR");
Lei Wend430d7c2011-05-02 16:26:25 +0000466
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200467 return (n == cnt) ? CMD_RET_SUCCESS : CMD_RET_FAILURE;
468}
Simon Glassed38aef2020-05-10 11:40:03 -0600469
470static int do_mmc_erase(struct cmd_tbl *cmdtp, int flag,
471 int argc, char *const argv[])
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200472{
473 struct mmc *mmc;
474 u32 blk, cnt, n;
Tom Rinif8c6f792014-02-05 10:24:21 -0500475
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200476 if (argc != 3)
477 return CMD_RET_USAGE;
Tom Rinif8c6f792014-02-05 10:24:21 -0500478
Simon Glass3ff49ec2021-07-24 09:03:29 -0600479 blk = hextoul(argv[1], NULL);
480 cnt = hextoul(argv[2], NULL);
Amar3ccad532013-04-27 11:43:00 +0530481
Stephen Warrenb627f4b2014-05-23 13:24:45 -0600482 mmc = init_mmc_device(curr_device, false);
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200483 if (!mmc)
484 return CMD_RET_FAILURE;
Tom Rinif8c6f792014-02-05 10:24:21 -0500485
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200486 printf("\nMMC erase: dev # %d, block # %d, count %d ... ",
487 curr_device, blk, cnt);
Tom Rini4cf854c2014-02-05 10:24:22 -0500488
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200489 if (mmc_getwp(mmc) == 1) {
490 printf("Error: card is write protected!\n");
491 return CMD_RET_FAILURE;
492 }
Simon Glasse5db1152016-05-01 13:52:35 -0600493 n = blk_derase(mmc_get_blk_desc(mmc), blk, cnt);
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200494 printf("%d blocks erased: %s\n", n, (n == cnt) ? "OK" : "ERROR");
Tom Rini4cf854c2014-02-05 10:24:22 -0500495
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200496 return (n == cnt) ? CMD_RET_SUCCESS : CMD_RET_FAILURE;
497}
Jean-Jacques Hiblot27edffe2018-01-04 15:23:34 +0100498#endif
499
Simon Glassed38aef2020-05-10 11:40:03 -0600500static int do_mmc_rescan(struct cmd_tbl *cmdtp, int flag,
501 int argc, char *const argv[])
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200502{
503 struct mmc *mmc;
Aswath Govindrajubb5b9fe2021-08-13 23:04:41 +0530504 enum bus_mode speed_mode = MMC_MODES_END;
505
506 if (argc == 1) {
507 mmc = init_mmc_device(curr_device, true);
508 } else if (argc == 2) {
509 speed_mode = (int)dectoul(argv[1], NULL);
510 mmc = __init_mmc_device(curr_device, true, speed_mode);
511 } else {
512 return CMD_RET_USAGE;
513 }
Tom Rini4cf854c2014-02-05 10:24:22 -0500514
Stephen Warren07ec4e72014-05-23 13:24:46 -0600515 if (!mmc)
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200516 return CMD_RET_FAILURE;
Tom Rini4cf854c2014-02-05 10:24:22 -0500517
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200518 return CMD_RET_SUCCESS;
519}
Simon Glassed38aef2020-05-10 11:40:03 -0600520
521static int do_mmc_part(struct cmd_tbl *cmdtp, int flag,
522 int argc, char *const argv[])
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200523{
Simon Glasse3394752016-02-29 15:25:34 -0700524 struct blk_desc *mmc_dev;
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200525 struct mmc *mmc;
Amar3ccad532013-04-27 11:43:00 +0530526
Stephen Warrenb627f4b2014-05-23 13:24:45 -0600527 mmc = init_mmc_device(curr_device, false);
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200528 if (!mmc)
529 return CMD_RET_FAILURE;
Amar3ccad532013-04-27 11:43:00 +0530530
Simon Glassfa255112016-05-01 11:36:15 -0600531 mmc_dev = blk_get_devnum_by_type(IF_TYPE_MMC, curr_device);
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200532 if (mmc_dev != NULL && mmc_dev->type != DEV_TYPE_UNKNOWN) {
Simon Glassb89a8442016-02-29 15:25:48 -0700533 part_print(mmc_dev);
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200534 return CMD_RET_SUCCESS;
535 }
Amar3ccad532013-04-27 11:43:00 +0530536
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200537 puts("get mmc type error!\n");
538 return CMD_RET_FAILURE;
539}
Simon Glassed38aef2020-05-10 11:40:03 -0600540
541static int do_mmc_dev(struct cmd_tbl *cmdtp, int flag,
542 int argc, char *const argv[])
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200543{
Stephen Warren18549802014-05-23 12:48:10 -0600544 int dev, part = 0, ret;
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200545 struct mmc *mmc;
Aswath Govindrajubb5b9fe2021-08-13 23:04:41 +0530546 enum bus_mode speed_mode = MMC_MODES_END;
Tom Rini35a3ea12014-02-07 14:15:20 -0500547
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200548 if (argc == 1) {
549 dev = curr_device;
Aswath Govindrajubb5b9fe2021-08-13 23:04:41 +0530550 mmc = init_mmc_device(dev, true);
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200551 } else if (argc == 2) {
Aswath Govindrajubb5b9fe2021-08-13 23:04:41 +0530552 dev = (int)dectoul(argv[1], NULL);
553 mmc = init_mmc_device(dev, true);
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200554 } else if (argc == 3) {
Simon Glassff9b9032021-07-24 09:03:30 -0600555 dev = (int)dectoul(argv[1], NULL);
556 part = (int)dectoul(argv[2], NULL);
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200557 if (part > PART_ACCESS_MASK) {
558 printf("#part_num shouldn't be larger than %d\n",
559 PART_ACCESS_MASK);
560 return CMD_RET_FAILURE;
Tom Rini35a3ea12014-02-07 14:15:20 -0500561 }
Aswath Govindrajubb5b9fe2021-08-13 23:04:41 +0530562 mmc = init_mmc_device(dev, true);
563 } else if (argc == 4) {
564 dev = (int)dectoul(argv[1], NULL);
565 part = (int)dectoul(argv[2], NULL);
566 if (part > PART_ACCESS_MASK) {
567 printf("#part_num shouldn't be larger than %d\n",
568 PART_ACCESS_MASK);
569 return CMD_RET_FAILURE;
570 }
571 speed_mode = (int)dectoul(argv[3], NULL);
572 mmc = __init_mmc_device(dev, true, speed_mode);
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200573 } else {
574 return CMD_RET_USAGE;
575 }
Tom Rini35a3ea12014-02-07 14:15:20 -0500576
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200577 if (!mmc)
578 return CMD_RET_FAILURE;
Tom Rini35a3ea12014-02-07 14:15:20 -0500579
Simon Glass11f2bb62016-05-01 13:52:29 -0600580 ret = blk_select_hwpart_devnum(IF_TYPE_MMC, dev, part);
Stephen Warren18549802014-05-23 12:48:10 -0600581 printf("switch to partitions #%d, %s\n",
582 part, (!ret) ? "OK" : "ERROR");
583 if (ret)
584 return 1;
585
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200586 curr_device = dev;
587 if (mmc->part_config == MMCPART_NOAVAILABLE)
588 printf("mmc%d is current device\n", curr_device);
589 else
590 printf("mmc%d(part %d) is current device\n",
Simon Glasse5db1152016-05-01 13:52:35 -0600591 curr_device, mmc_get_blk_desc(mmc)->hwpart);
Tom Rini35a3ea12014-02-07 14:15:20 -0500592
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200593 return CMD_RET_SUCCESS;
594}
Simon Glassed38aef2020-05-10 11:40:03 -0600595
596static int do_mmc_list(struct cmd_tbl *cmdtp, int flag,
597 int argc, char *const argv[])
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200598{
599 print_mmc_devices('\n');
600 return CMD_RET_SUCCESS;
601}
Diego Santa Cruz420fc162014-12-23 10:50:30 +0100602
Jean-Jacques Hiblot1d7769a2017-11-30 17:44:02 +0100603#if CONFIG_IS_ENABLED(MMC_HW_PARTITIONING)
Marek Vasut94e39952021-09-15 11:43:13 +0200604static void parse_hwpart_user_enh_size(struct mmc *mmc,
605 struct mmc_hwpart_conf *pconf,
606 char *argv)
607{
Marek Vasut30d29662022-01-17 22:54:29 +0100608 int i, ret;
Marek Vasut94e39952021-09-15 11:43:13 +0200609
610 pconf->user.enh_size = 0;
611
612 if (!strcmp(argv, "-")) { /* The rest of eMMC */
613 ALLOC_CACHE_ALIGN_BUFFER(u8, ext_csd, MMC_MAX_BLOCK_LEN);
614 ret = mmc_send_ext_csd(mmc, ext_csd);
615 if (ret)
616 return;
Marek Vasut30d29662022-01-17 22:54:29 +0100617 /* The enh_size value is in 512B block units */
Marek Vasut94e39952021-09-15 11:43:13 +0200618 pconf->user.enh_size =
619 ((ext_csd[EXT_CSD_MAX_ENH_SIZE_MULT + 2] << 16) +
620 (ext_csd[EXT_CSD_MAX_ENH_SIZE_MULT + 1] << 8) +
621 ext_csd[EXT_CSD_MAX_ENH_SIZE_MULT]) * 1024 *
622 ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE] *
623 ext_csd[EXT_CSD_HC_WP_GRP_SIZE];
624 pconf->user.enh_size -= pconf->user.enh_start;
Marek Vasut30d29662022-01-17 22:54:29 +0100625 for (i = 0; i < ARRAY_SIZE(mmc->capacity_gp); i++) {
626 /*
627 * If the eMMC already has GP partitions set,
628 * subtract their size from the maximum USER
629 * partition size.
630 *
631 * Else, if the command was used to configure new
632 * GP partitions, subtract their size from maximum
633 * USER partition size.
634 */
635 if (mmc->capacity_gp[i]) {
636 /* The capacity_gp is in 1B units */
637 pconf->user.enh_size -= mmc->capacity_gp[i] >> 9;
638 } else if (pconf->gp_part[i].size) {
639 /* The gp_part[].size is in 512B units */
640 pconf->user.enh_size -= pconf->gp_part[i].size;
641 }
642 }
Marek Vasut94e39952021-09-15 11:43:13 +0200643 } else {
644 pconf->user.enh_size = dectoul(argv, NULL);
645 }
646}
647
648static int parse_hwpart_user(struct mmc *mmc, struct mmc_hwpart_conf *pconf,
Simon Glassed38aef2020-05-10 11:40:03 -0600649 int argc, char *const argv[])
Diego Santa Cruz58bda792014-12-23 10:50:32 +0100650{
651 int i = 0;
652
653 memset(&pconf->user, 0, sizeof(pconf->user));
654
655 while (i < argc) {
656 if (!strcmp(argv[i], "enh")) {
657 if (i + 2 >= argc)
658 return -1;
659 pconf->user.enh_start =
Simon Glassff9b9032021-07-24 09:03:30 -0600660 dectoul(argv[i + 1], NULL);
Marek Vasut94e39952021-09-15 11:43:13 +0200661 parse_hwpart_user_enh_size(mmc, pconf, argv[i + 2]);
Diego Santa Cruz58bda792014-12-23 10:50:32 +0100662 i += 3;
663 } else if (!strcmp(argv[i], "wrrel")) {
664 if (i + 1 >= argc)
665 return -1;
666 pconf->user.wr_rel_change = 1;
667 if (!strcmp(argv[i+1], "on"))
668 pconf->user.wr_rel_set = 1;
669 else if (!strcmp(argv[i+1], "off"))
670 pconf->user.wr_rel_set = 0;
671 else
672 return -1;
673 i += 2;
674 } else {
675 break;
676 }
677 }
678 return i;
679}
680
681static int parse_hwpart_gp(struct mmc_hwpart_conf *pconf, int pidx,
Simon Glassed38aef2020-05-10 11:40:03 -0600682 int argc, char *const argv[])
Diego Santa Cruz58bda792014-12-23 10:50:32 +0100683{
684 int i;
685
686 memset(&pconf->gp_part[pidx], 0, sizeof(pconf->gp_part[pidx]));
687
688 if (1 >= argc)
689 return -1;
Simon Glassff9b9032021-07-24 09:03:30 -0600690 pconf->gp_part[pidx].size = dectoul(argv[0], NULL);
Diego Santa Cruz58bda792014-12-23 10:50:32 +0100691
692 i = 1;
693 while (i < argc) {
694 if (!strcmp(argv[i], "enh")) {
695 pconf->gp_part[pidx].enhanced = 1;
696 i += 1;
697 } else if (!strcmp(argv[i], "wrrel")) {
698 if (i + 1 >= argc)
699 return -1;
700 pconf->gp_part[pidx].wr_rel_change = 1;
701 if (!strcmp(argv[i+1], "on"))
702 pconf->gp_part[pidx].wr_rel_set = 1;
703 else if (!strcmp(argv[i+1], "off"))
704 pconf->gp_part[pidx].wr_rel_set = 0;
705 else
706 return -1;
707 i += 2;
708 } else {
709 break;
710 }
711 }
712 return i;
713}
714
Simon Glassed38aef2020-05-10 11:40:03 -0600715static int do_mmc_hwpartition(struct cmd_tbl *cmdtp, int flag,
716 int argc, char *const argv[])
Diego Santa Cruz420fc162014-12-23 10:50:30 +0100717{
718 struct mmc *mmc;
719 struct mmc_hwpart_conf pconf = { };
720 enum mmc_hwpart_conf_mode mode = MMC_HWPART_CONF_CHECK;
Diego Santa Cruz58bda792014-12-23 10:50:32 +0100721 int i, r, pidx;
Diego Santa Cruz420fc162014-12-23 10:50:30 +0100722
723 mmc = init_mmc_device(curr_device, false);
724 if (!mmc)
725 return CMD_RET_FAILURE;
726
Jaehoon Chungffbba622021-09-24 09:23:34 +0900727 if (IS_SD(mmc)) {
728 puts("SD doesn't support partitioning\n");
729 return CMD_RET_FAILURE;
730 }
731
Diego Santa Cruz420fc162014-12-23 10:50:30 +0100732 if (argc < 1)
733 return CMD_RET_USAGE;
734 i = 1;
735 while (i < argc) {
Diego Santa Cruz58bda792014-12-23 10:50:32 +0100736 if (!strcmp(argv[i], "user")) {
737 i++;
Marek Vasut94e39952021-09-15 11:43:13 +0200738 r = parse_hwpart_user(mmc, &pconf, argc - i, &argv[i]);
Diego Santa Cruz58bda792014-12-23 10:50:32 +0100739 if (r < 0)
Diego Santa Cruz420fc162014-12-23 10:50:30 +0100740 return CMD_RET_USAGE;
Diego Santa Cruz58bda792014-12-23 10:50:32 +0100741 i += r;
Diego Santa Cruz420fc162014-12-23 10:50:30 +0100742 } else if (!strncmp(argv[i], "gp", 2) &&
743 strlen(argv[i]) == 3 &&
744 argv[i][2] >= '1' && argv[i][2] <= '4') {
Diego Santa Cruz420fc162014-12-23 10:50:30 +0100745 pidx = argv[i][2] - '1';
Diego Santa Cruz58bda792014-12-23 10:50:32 +0100746 i++;
747 r = parse_hwpart_gp(&pconf, pidx, argc-i, &argv[i]);
748 if (r < 0)
749 return CMD_RET_USAGE;
750 i += r;
Diego Santa Cruz420fc162014-12-23 10:50:30 +0100751 } else if (!strcmp(argv[i], "check")) {
752 mode = MMC_HWPART_CONF_CHECK;
753 i++;
754 } else if (!strcmp(argv[i], "set")) {
755 mode = MMC_HWPART_CONF_SET;
756 i++;
757 } else if (!strcmp(argv[i], "complete")) {
758 mode = MMC_HWPART_CONF_COMPLETE;
759 i++;
760 } else {
761 return CMD_RET_USAGE;
762 }
763 }
764
765 puts("Partition configuration:\n");
766 if (pconf.user.enh_size) {
767 puts("\tUser Enhanced Start: ");
768 print_size(((u64)pconf.user.enh_start) << 9, "\n");
769 puts("\tUser Enhanced Size: ");
770 print_size(((u64)pconf.user.enh_size) << 9, "\n");
771 } else {
772 puts("\tNo enhanced user data area\n");
773 }
Diego Santa Cruz58bda792014-12-23 10:50:32 +0100774 if (pconf.user.wr_rel_change)
775 printf("\tUser partition write reliability: %s\n",
776 pconf.user.wr_rel_set ? "on" : "off");
Diego Santa Cruz420fc162014-12-23 10:50:30 +0100777 for (pidx = 0; pidx < 4; pidx++) {
778 if (pconf.gp_part[pidx].size) {
779 printf("\tGP%i Capacity: ", pidx+1);
780 print_size(((u64)pconf.gp_part[pidx].size) << 9,
781 pconf.gp_part[pidx].enhanced ?
782 " ENH\n" : "\n");
783 } else {
784 printf("\tNo GP%i partition\n", pidx+1);
785 }
Diego Santa Cruz58bda792014-12-23 10:50:32 +0100786 if (pconf.gp_part[pidx].wr_rel_change)
787 printf("\tGP%i write reliability: %s\n", pidx+1,
788 pconf.gp_part[pidx].wr_rel_set ? "on" : "off");
Diego Santa Cruz420fc162014-12-23 10:50:30 +0100789 }
790
791 if (!mmc_hwpart_config(mmc, &pconf, mode)) {
792 if (mode == MMC_HWPART_CONF_COMPLETE)
793 puts("Partitioning successful, "
794 "power-cycle to make effective\n");
795 return CMD_RET_SUCCESS;
796 } else {
Diego Santa Cruz58bda792014-12-23 10:50:32 +0100797 puts("Failed!\n");
Diego Santa Cruz420fc162014-12-23 10:50:30 +0100798 return CMD_RET_FAILURE;
799 }
800}
Jean-Jacques Hiblot1d7769a2017-11-30 17:44:02 +0100801#endif
Diego Santa Cruz420fc162014-12-23 10:50:30 +0100802
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200803#ifdef CONFIG_SUPPORT_EMMC_BOOT
Simon Glassed38aef2020-05-10 11:40:03 -0600804static int do_mmc_bootbus(struct cmd_tbl *cmdtp, int flag,
805 int argc, char *const argv[])
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200806{
807 int dev;
808 struct mmc *mmc;
809 u8 width, reset, mode;
810
811 if (argc != 5)
812 return CMD_RET_USAGE;
Simon Glassff9b9032021-07-24 09:03:30 -0600813 dev = dectoul(argv[1], NULL);
814 width = dectoul(argv[2], NULL);
815 reset = dectoul(argv[3], NULL);
816 mode = dectoul(argv[4], NULL);
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200817
Stephen Warrenb627f4b2014-05-23 13:24:45 -0600818 mmc = init_mmc_device(dev, false);
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200819 if (!mmc)
820 return CMD_RET_FAILURE;
821
822 if (IS_SD(mmc)) {
823 puts("BOOT_BUS_WIDTH only exists on eMMC\n");
824 return CMD_RET_FAILURE;
Amar3ccad532013-04-27 11:43:00 +0530825 }
Markus Niebel03951412013-12-16 13:40:46 +0100826
Jaehoon Chung7483dd32021-02-26 18:38:20 +0900827 /*
828 * BOOT_BUS_CONDITIONS[177]
829 * BOOT_MODE[4:3]
830 * 0x0 : Use SDR + Backward compatible timing in boot operation
831 * 0x1 : Use SDR + High Speed Timing in boot operation mode
832 * 0x2 : Use DDR in boot operation
833 * RESET_BOOT_BUS_CONDITIONS
834 * 0x0 : Reset bus width to x1, SDR, Backward compatible
835 * 0x1 : Retain BOOT_BUS_WIDTH and BOOT_MODE
836 * BOOT_BUS_WIDTH
837 * 0x0 : x1(sdr) or x4 (ddr) buswidth
838 * 0x1 : x4(sdr/ddr) buswith
839 * 0x2 : x8(sdr/ddr) buswith
840 *
841 */
842 if (width >= 0x3) {
843 printf("boot_bus_width %d is invalid\n", width);
844 return CMD_RET_FAILURE;
845 }
846
847 if (reset >= 0x2) {
848 printf("reset_boot_bus_width %d is invalid\n", reset);
849 return CMD_RET_FAILURE;
850 }
851
852 if (mode >= 0x3) {
853 printf("reset_boot_bus_width %d is invalid\n", mode);
854 return CMD_RET_FAILURE;
855 }
856
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200857 /* acknowledge to be sent during boot operation */
Jaehoon Chung7483dd32021-02-26 18:38:20 +0900858 if (mmc_set_boot_bus_width(mmc, width, reset, mode)) {
859 puts("BOOT_BUS_WIDTH is failed to change.\n");
860 return CMD_RET_FAILURE;
861 }
862
863 printf("Set to BOOT_BUS_WIDTH = 0x%x, RESET = 0x%x, BOOT_MODE = 0x%x\n",
864 width, reset, mode);
865 return CMD_RET_SUCCESS;
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200866}
Simon Glassed38aef2020-05-10 11:40:03 -0600867
868static int do_mmc_boot_resize(struct cmd_tbl *cmdtp, int flag,
869 int argc, char *const argv[])
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200870{
871 int dev;
872 struct mmc *mmc;
873 u32 bootsize, rpmbsize;
Markus Niebel03951412013-12-16 13:40:46 +0100874
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200875 if (argc != 4)
876 return CMD_RET_USAGE;
Simon Glassff9b9032021-07-24 09:03:30 -0600877 dev = dectoul(argv[1], NULL);
878 bootsize = dectoul(argv[2], NULL);
879 rpmbsize = dectoul(argv[3], NULL);
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200880
Stephen Warrenb627f4b2014-05-23 13:24:45 -0600881 mmc = init_mmc_device(dev, false);
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200882 if (!mmc)
883 return CMD_RET_FAILURE;
884
885 if (IS_SD(mmc)) {
Heinrich Schuchardteeb191c2020-03-29 19:26:57 +0000886 printf("It is not an eMMC device\n");
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200887 return CMD_RET_FAILURE;
Markus Niebel03951412013-12-16 13:40:46 +0100888 }
889
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200890 if (mmc_boot_partition_size_change(mmc, bootsize, rpmbsize)) {
891 printf("EMMC boot partition Size change Failed.\n");
892 return CMD_RET_FAILURE;
893 }
Andy Flemingad347bb2008-10-30 16:41:01 -0500894
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200895 printf("EMMC boot partition Size %d MB\n", bootsize);
896 printf("EMMC RPMB partition Size %d MB\n", rpmbsize);
897 return CMD_RET_SUCCESS;
898}
Angelo Dureghellof54f7532017-08-01 14:27:10 +0200899
Reuben Dowle55a81ad2021-05-14 10:15:43 +1200900static int mmc_partconf_print(struct mmc *mmc, const char *varname)
Angelo Dureghellof54f7532017-08-01 14:27:10 +0200901{
902 u8 ack, access, part;
903
904 if (mmc->part_config == MMCPART_NOAVAILABLE) {
905 printf("No part_config info for ver. 0x%x\n", mmc->version);
906 return CMD_RET_FAILURE;
907 }
908
909 access = EXT_CSD_EXTRACT_PARTITION_ACCESS(mmc->part_config);
910 ack = EXT_CSD_EXTRACT_BOOT_ACK(mmc->part_config);
911 part = EXT_CSD_EXTRACT_BOOT_PART(mmc->part_config);
912
Reuben Dowle55a81ad2021-05-14 10:15:43 +1200913 if(varname)
914 env_set_hex(varname, part);
915
Angelo Dureghellof54f7532017-08-01 14:27:10 +0200916 printf("EXT_CSD[179], PARTITION_CONFIG:\n"
917 "BOOT_ACK: 0x%x\n"
918 "BOOT_PARTITION_ENABLE: 0x%x\n"
919 "PARTITION_ACCESS: 0x%x\n", ack, part, access);
920
921 return CMD_RET_SUCCESS;
922}
923
Simon Glassed38aef2020-05-10 11:40:03 -0600924static int do_mmc_partconf(struct cmd_tbl *cmdtp, int flag,
925 int argc, char *const argv[])
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200926{
927 int dev;
928 struct mmc *mmc;
929 u8 ack, part_num, access;
Lei Wenea526762011-06-22 17:03:31 +0000930
Reuben Dowle55a81ad2021-05-14 10:15:43 +1200931 if (argc != 2 && argc != 3 && argc != 5)
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200932 return CMD_RET_USAGE;
Andy Flemingad347bb2008-10-30 16:41:01 -0500933
Simon Glassff9b9032021-07-24 09:03:30 -0600934 dev = dectoul(argv[1], NULL);
Rabin Vincent3e448aa2009-04-05 13:30:53 +0530935
Stephen Warrenb627f4b2014-05-23 13:24:45 -0600936 mmc = init_mmc_device(dev, false);
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200937 if (!mmc)
938 return CMD_RET_FAILURE;
Andy Flemingad347bb2008-10-30 16:41:01 -0500939
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200940 if (IS_SD(mmc)) {
941 puts("PARTITION_CONFIG only exists on eMMC\n");
942 return CMD_RET_FAILURE;
943 }
Andy Flemingad347bb2008-10-30 16:41:01 -0500944
Reuben Dowle55a81ad2021-05-14 10:15:43 +1200945 if (argc == 2 || argc == 3)
946 return mmc_partconf_print(mmc, argc == 3 ? argv[2] : NULL);
Angelo Dureghellof54f7532017-08-01 14:27:10 +0200947
Simon Glassff9b9032021-07-24 09:03:30 -0600948 ack = dectoul(argv[2], NULL);
949 part_num = dectoul(argv[3], NULL);
950 access = dectoul(argv[4], NULL);
Angelo Dureghellof54f7532017-08-01 14:27:10 +0200951
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200952 /* acknowledge to be sent during boot operation */
953 return mmc_set_part_conf(mmc, ack, part_num, access);
954}
Simon Glassed38aef2020-05-10 11:40:03 -0600955
956static int do_mmc_rst_func(struct cmd_tbl *cmdtp, int flag,
957 int argc, char *const argv[])
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200958{
959 int dev;
960 struct mmc *mmc;
961 u8 enable;
Nikita Kiryanov020f2612012-12-03 02:19:46 +0000962
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200963 /*
964 * Set the RST_n_ENABLE bit of RST_n_FUNCTION
965 * The only valid values are 0x0, 0x1 and 0x2 and writing
966 * a value of 0x1 or 0x2 sets the value permanently.
967 */
968 if (argc != 3)
969 return CMD_RET_USAGE;
970
Simon Glassff9b9032021-07-24 09:03:30 -0600971 dev = dectoul(argv[1], NULL);
972 enable = dectoul(argv[2], NULL);
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200973
Peng Fanb1e455a2015-11-25 17:16:21 +0800974 if (enable > 2) {
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200975 puts("Invalid RST_n_ENABLE value\n");
976 return CMD_RET_USAGE;
977 }
978
Stephen Warrenb627f4b2014-05-23 13:24:45 -0600979 mmc = init_mmc_device(dev, false);
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200980 if (!mmc)
981 return CMD_RET_FAILURE;
982
983 if (IS_SD(mmc)) {
984 puts("RST_n_FUNCTION only exists on eMMC\n");
985 return CMD_RET_FAILURE;
986 }
987
988 return mmc_set_rst_n_function(mmc, enable);
989}
990#endif
Simon Glassed38aef2020-05-10 11:40:03 -0600991static int do_mmc_setdsr(struct cmd_tbl *cmdtp, int flag,
992 int argc, char *const argv[])
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200993{
994 struct mmc *mmc;
995 u32 val;
996 int ret;
Andy Flemingad347bb2008-10-30 16:41:01 -0500997
Pierre Aubertbcc302c2014-04-24 10:30:08 +0200998 if (argc != 2)
999 return CMD_RET_USAGE;
Simon Glass3ff49ec2021-07-24 09:03:29 -06001000 val = hextoul(argv[1], NULL);
Pierre Aubertbcc302c2014-04-24 10:30:08 +02001001
1002 mmc = find_mmc_device(curr_device);
1003 if (!mmc) {
1004 printf("no mmc device at slot %x\n", curr_device);
1005 return CMD_RET_FAILURE;
1006 }
1007 ret = mmc_set_dsr(mmc, val);
1008 printf("set dsr %s\n", (!ret) ? "OK, force rescan" : "ERROR");
1009 if (!ret) {
1010 mmc->has_init = 0;
1011 if (mmc_init(mmc))
1012 return CMD_RET_FAILURE;
1013 else
1014 return CMD_RET_SUCCESS;
Andy Flemingad347bb2008-10-30 16:41:01 -05001015 }
Pierre Aubertbcc302c2014-04-24 10:30:08 +02001016 return ret;
1017}
Lei Wend430d7c2011-05-02 16:26:25 +00001018
Tomas Melinc17dae52016-11-25 11:01:03 +02001019#ifdef CONFIG_CMD_BKOPS_ENABLE
Simon Glassed38aef2020-05-10 11:40:03 -06001020static int do_mmc_bkops_enable(struct cmd_tbl *cmdtp, int flag,
1021 int argc, char *const argv[])
Tomas Melinc17dae52016-11-25 11:01:03 +02001022{
1023 int dev;
1024 struct mmc *mmc;
1025
1026 if (argc != 2)
1027 return CMD_RET_USAGE;
1028
Simon Glassff9b9032021-07-24 09:03:30 -06001029 dev = dectoul(argv[1], NULL);
Tomas Melinc17dae52016-11-25 11:01:03 +02001030
1031 mmc = init_mmc_device(dev, false);
1032 if (!mmc)
1033 return CMD_RET_FAILURE;
1034
1035 if (IS_SD(mmc)) {
1036 puts("BKOPS_EN only exists on eMMC\n");
1037 return CMD_RET_FAILURE;
1038 }
1039
1040 return mmc_set_bkops_enable(mmc);
1041}
1042#endif
1043
Simon Glassed38aef2020-05-10 11:40:03 -06001044static int do_mmc_boot_wp(struct cmd_tbl *cmdtp, int flag,
Heinrich Schuchardt75e5a642020-03-30 07:24:19 +02001045 int argc, char * const argv[])
1046{
1047 int err;
1048 struct mmc *mmc;
1049
1050 mmc = init_mmc_device(curr_device, false);
1051 if (!mmc)
1052 return CMD_RET_FAILURE;
1053 if (IS_SD(mmc)) {
1054 printf("It is not an eMMC device\n");
1055 return CMD_RET_FAILURE;
1056 }
1057 err = mmc_boot_wp(mmc);
1058 if (err)
1059 return CMD_RET_FAILURE;
1060 printf("boot areas protected\n");
1061 return CMD_RET_SUCCESS;
1062}
1063
Simon Glassed38aef2020-05-10 11:40:03 -06001064static struct cmd_tbl cmd_mmc[] = {
Pierre Aubertbcc302c2014-04-24 10:30:08 +02001065 U_BOOT_CMD_MKENT(info, 1, 0, do_mmcinfo, "", ""),
1066 U_BOOT_CMD_MKENT(read, 4, 1, do_mmc_read, "", ""),
Heinrich Schuchardt75e5a642020-03-30 07:24:19 +02001067 U_BOOT_CMD_MKENT(wp, 1, 0, do_mmc_boot_wp, "", ""),
Jean-Jacques Hiblot27edffe2018-01-04 15:23:34 +01001068#if CONFIG_IS_ENABLED(MMC_WRITE)
Pierre Aubertbcc302c2014-04-24 10:30:08 +02001069 U_BOOT_CMD_MKENT(write, 4, 0, do_mmc_write, "", ""),
1070 U_BOOT_CMD_MKENT(erase, 3, 0, do_mmc_erase, "", ""),
Jean-Jacques Hiblot27edffe2018-01-04 15:23:34 +01001071#endif
Alex Kiernanc568bcb2018-05-29 15:30:52 +00001072#if CONFIG_IS_ENABLED(CMD_MMC_SWRITE)
1073 U_BOOT_CMD_MKENT(swrite, 3, 0, do_mmc_sparse_write, "", ""),
1074#endif
Aswath Govindrajubb5b9fe2021-08-13 23:04:41 +05301075 U_BOOT_CMD_MKENT(rescan, 2, 1, do_mmc_rescan, "", ""),
Pierre Aubertbcc302c2014-04-24 10:30:08 +02001076 U_BOOT_CMD_MKENT(part, 1, 1, do_mmc_part, "", ""),
Aswath Govindrajubb5b9fe2021-08-13 23:04:41 +05301077 U_BOOT_CMD_MKENT(dev, 4, 0, do_mmc_dev, "", ""),
Pierre Aubertbcc302c2014-04-24 10:30:08 +02001078 U_BOOT_CMD_MKENT(list, 1, 1, do_mmc_list, "", ""),
Jean-Jacques Hiblot1d7769a2017-11-30 17:44:02 +01001079#if CONFIG_IS_ENABLED(MMC_HW_PARTITIONING)
Diego Santa Cruz58bda792014-12-23 10:50:32 +01001080 U_BOOT_CMD_MKENT(hwpartition, 28, 0, do_mmc_hwpartition, "", ""),
Jean-Jacques Hiblot1d7769a2017-11-30 17:44:02 +01001081#endif
Pierre Aubertbcc302c2014-04-24 10:30:08 +02001082#ifdef CONFIG_SUPPORT_EMMC_BOOT
1083 U_BOOT_CMD_MKENT(bootbus, 5, 0, do_mmc_bootbus, "", ""),
Wally Yehd49c4aa2014-09-25 23:00:16 +08001084 U_BOOT_CMD_MKENT(bootpart-resize, 4, 0, do_mmc_boot_resize, "", ""),
Pierre Aubertbcc302c2014-04-24 10:30:08 +02001085 U_BOOT_CMD_MKENT(partconf, 5, 0, do_mmc_partconf, "", ""),
1086 U_BOOT_CMD_MKENT(rst-function, 3, 0, do_mmc_rst_func, "", ""),
1087#endif
Alex Kiernan60e0f612018-05-08 04:43:31 +00001088#if CONFIG_IS_ENABLED(CMD_MMC_RPMB)
Pierre Aubertbcc302c2014-04-24 10:30:08 +02001089 U_BOOT_CMD_MKENT(rpmb, CONFIG_SYS_MAXARGS, 1, do_mmcrpmb, "", ""),
1090#endif
1091 U_BOOT_CMD_MKENT(setdsr, 2, 0, do_mmc_setdsr, "", ""),
Tomas Melinc17dae52016-11-25 11:01:03 +02001092#ifdef CONFIG_CMD_BKOPS_ENABLE
1093 U_BOOT_CMD_MKENT(bkops-enable, 2, 0, do_mmc_bkops_enable, "", ""),
1094#endif
Pierre Aubertbcc302c2014-04-24 10:30:08 +02001095};
1096
Simon Glassed38aef2020-05-10 11:40:03 -06001097static int do_mmcops(struct cmd_tbl *cmdtp, int flag, int argc,
1098 char *const argv[])
Pierre Aubertbcc302c2014-04-24 10:30:08 +02001099{
Simon Glassed38aef2020-05-10 11:40:03 -06001100 struct cmd_tbl *cp;
Pierre Aubertbcc302c2014-04-24 10:30:08 +02001101
1102 cp = find_cmd_tbl(argv[1], cmd_mmc, ARRAY_SIZE(cmd_mmc));
1103
1104 /* Drop the mmc command */
1105 argc--;
1106 argv++;
1107
1108 if (cp == NULL || argc > cp->maxargs)
1109 return CMD_RET_USAGE;
Boris Brezillonc71dfd12018-12-03 22:54:20 +01001110 if (flag == CMD_FLAG_REPEAT && !cmd_is_repeatable(cp))
Pierre Aubertbcc302c2014-04-24 10:30:08 +02001111 return CMD_RET_SUCCESS;
1112
1113 if (curr_device < 0) {
1114 if (get_mmc_num() > 0) {
1115 curr_device = 0;
1116 } else {
1117 puts("No MMC device available\n");
1118 return CMD_RET_FAILURE;
1119 }
1120 }
1121 return cp->cmd(cmdtp, flag, argc, argv);
Andy Flemingad347bb2008-10-30 16:41:01 -05001122}
1123
1124U_BOOT_CMD(
Diego Santa Cruz58bda792014-12-23 10:50:32 +01001125 mmc, 29, 1, do_mmcops,
Mike Frysinger27e1e622009-03-23 22:27:34 -04001126 "MMC sub system",
Pierre Aubertbcc302c2014-04-24 10:30:08 +02001127 "info - display info of the current MMC device\n"
1128 "mmc read addr blk# cnt\n"
Lei Wend430d7c2011-05-02 16:26:25 +00001129 "mmc write addr blk# cnt\n"
Alex Kiernanc568bcb2018-05-29 15:30:52 +00001130#if CONFIG_IS_ENABLED(CMD_MMC_SWRITE)
Jassi Brar814a9752018-04-06 12:05:24 +05301131 "mmc swrite addr blk#\n"
1132#endif
Lei Wenea526762011-06-22 17:03:31 +00001133 "mmc erase blk# cnt\n"
Aswath Govindrajubb5b9fe2021-08-13 23:04:41 +05301134 "mmc rescan [mode]\n"
Lei Wend430d7c2011-05-02 16:26:25 +00001135 "mmc part - lists available partition on current mmc device\n"
Aswath Govindrajubb5b9fe2021-08-13 23:04:41 +05301136 "mmc dev [dev] [part] [mode] - show or set current mmc device [partition] and set mode\n"
1137 " - the required speed mode is passed as the index from the following list\n"
1138 " [MMC_LEGACY, MMC_HS, SD_HS, MMC_HS_52, MMC_DDR_52, UHS_SDR12, UHS_SDR25,\n"
1139 " UHS_SDR50, UHS_DDR50, UHS_SDR104, MMC_HS_200, MMC_HS_400, MMC_HS_400_ES]\n"
Amar3ccad532013-04-27 11:43:00 +05301140 "mmc list - lists available devices\n"
Michal Simek21f753c2020-06-05 11:45:12 +02001141 "mmc wp - power on write protect boot partitions\n"
Alex Kiernan72d80462018-06-11 16:20:09 +00001142#if CONFIG_IS_ENABLED(MMC_HW_PARTITIONING)
Jaehoon Chung94a47572021-02-26 16:07:18 +09001143 "mmc hwpartition <USER> <GP> <MODE> - does hardware partitioning\n"
Diego Santa Cruz420fc162014-12-23 10:50:30 +01001144 " arguments (sizes in 512-byte blocks):\n"
Jaehoon Chung94a47572021-02-26 16:07:18 +09001145 " USER - <user> <enh> <start> <cnt> <wrrel> <{on|off}>\n"
1146 " : sets user data area attributes\n"
1147 " GP - <{gp1|gp2|gp3|gp4}> <cnt> <enh> <wrrel> <{on|off}>\n"
1148 " : general purpose partition\n"
1149 " MODE - <{check|set|complete}>\n"
1150 " : mode, complete set partitioning completed\n"
Diego Santa Cruz58bda792014-12-23 10:50:32 +01001151 " WARNING: Partitioning is a write-once setting once it is set to complete.\n"
1152 " Power cycling is required to initialize partitions after set to complete.\n"
Alex Kiernan72d80462018-06-11 16:20:09 +00001153#endif
Amar3ccad532013-04-27 11:43:00 +05301154#ifdef CONFIG_SUPPORT_EMMC_BOOT
Jaehoon Chung8460b912020-12-16 07:24:50 +09001155 "mmc bootbus <dev> <boot_bus_width> <reset_boot_bus_width> <boot_mode>\n"
Tom Rini4cf854c2014-02-05 10:24:22 -05001156 " - Set the BOOT_BUS_WIDTH field of the specified device\n"
Tom Rini79919462014-02-05 10:24:20 -05001157 "mmc bootpart-resize <dev> <boot part size MB> <RPMB part size MB>\n"
1158 " - Change sizes of boot and RPMB partitions of specified device\n"
Reuben Dowle55a81ad2021-05-14 10:15:43 +12001159 "mmc partconf <dev> [[varname] | [<boot_ack> <boot_partition> <partition_access>]]\n"
Angelo Dureghellof54f7532017-08-01 14:27:10 +02001160 " - Show or change the bits of the PARTITION_CONFIG field of the specified device\n"
Reuben Dowle55a81ad2021-05-14 10:15:43 +12001161 " If showing the bits, optionally store the boot_partition field into varname\n"
Jaehoon Chung8460b912020-12-16 07:24:50 +09001162 "mmc rst-function <dev> <value>\n"
Tom Rini35a3ea12014-02-07 14:15:20 -05001163 " - Change the RST_n_FUNCTION field of the specified device\n"
1164 " WARNING: This is a write-once field and 0 / 1 / 2 are the only valid values.\n"
Dirk Behmedf8852a2009-02-18 19:59:39 +01001165#endif
Alex Kiernan60e0f612018-05-08 04:43:31 +00001166#if CONFIG_IS_ENABLED(CMD_MMC_RPMB)
Pierre Aubertbcc302c2014-04-24 10:30:08 +02001167 "mmc rpmb read addr blk# cnt [address of auth-key] - block size is 256 bytes\n"
1168 "mmc rpmb write addr blk# cnt <address of auth-key> - block size is 256 bytes\n"
1169 "mmc rpmb key <address of auth-key> - program the RPMB authentication key.\n"
1170 "mmc rpmb counter - read the value of the write counter\n"
1171#endif
1172 "mmc setdsr <value> - set DSR register value\n"
Tomas Melinc17dae52016-11-25 11:01:03 +02001173#ifdef CONFIG_CMD_BKOPS_ENABLE
1174 "mmc bkops-enable <dev> - enable background operations handshake on device\n"
1175 " WARNING: This is a write-once setting.\n"
1176#endif
Amar3ccad532013-04-27 11:43:00 +05301177 );
Pierre Aubertbcc302c2014-04-24 10:30:08 +02001178
1179/* Old command kept for compatibility. Same as 'mmc info' */
1180U_BOOT_CMD(
1181 mmcinfo, 1, 0, do_mmcinfo,
1182 "display MMC info",
1183 "- display info of the current MMC device"
1184);