blob: 9a95293753ce3a9986a6a6faa8ca9115fd74f5ca [file] [log] [blame]
wdenk71f95112003-06-15 22:40:42 +00001/*
2 * (C) Copyright 2003
3 * Kyle Harris, kharris@nexus-tech.net
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
wdenk71f95112003-06-15 22:40:42 +00006 */
7
8#include <common.h>
9#include <command.h>
Simon Glass24b852a2015-11-08 23:47:45 -070010#include <console.h>
wdenk71f95112003-06-15 22:40:42 +000011#include <mmc.h>
12
Mike Frysinger02e22c22009-06-14 21:35:21 -040013static int curr_device = -1;
Andy Fleming272cc702008-10-30 16:41:01 -050014
15static void print_mmcinfo(struct mmc *mmc)
16{
Diego Santa Cruzc5f0d3f2014-12-23 10:50:16 +010017 int i;
18
Pantelis Antoniou93bfd612014-03-11 19:34:20 +020019 printf("Device: %s\n", mmc->cfg->name);
Andy Fleming272cc702008-10-30 16:41:01 -050020 printf("Manufacturer ID: %x\n", mmc->cid[0] >> 24);
21 printf("OEM: %x\n", (mmc->cid[0] >> 8) & 0xffff);
22 printf("Name: %c%c%c%c%c \n", mmc->cid[0] & 0xff,
23 (mmc->cid[1] >> 24), (mmc->cid[1] >> 16) & 0xff,
24 (mmc->cid[1] >> 8) & 0xff, mmc->cid[1] & 0xff);
25
Jean-Jacques Hiblot7a96ec72017-09-21 16:29:56 +020026 printf("Bus Speed: %d\n", mmc->clock);
Jean-Jacques Hiblot52d241d2017-11-30 17:43:54 +010027#if CONFIG_IS_ENABLED(MMC_VERBOSE)
Jean-Jacques Hiblot7a96ec72017-09-21 16:29:56 +020028 printf("Mode : %s\n", mmc_mode_name(mmc->selected_mode));
Jean-Jacques Hiblot52d241d2017-11-30 17:43:54 +010029 mmc_dump_capabilities("card capabilities", mmc->card_caps);
30 mmc_dump_capabilities("host capabilities", mmc->host_caps);
31#endif
Andy Fleming272cc702008-10-30 16:41:01 -050032 printf("Rd Block Len: %d\n", mmc->read_bl_len);
33
Pantelis Antoniou4b7cee52015-01-23 12:12:01 +020034 printf("%s version %d.%d", IS_SD(mmc) ? "SD" : "MMC",
35 EXTRACT_SDMMC_MAJOR_VERSION(mmc->version),
36 EXTRACT_SDMMC_MINOR_VERSION(mmc->version));
37 if (EXTRACT_SDMMC_CHANGE_VERSION(mmc->version) != 0)
38 printf(".%d", EXTRACT_SDMMC_CHANGE_VERSION(mmc->version));
39 printf("\n");
Andy Fleming272cc702008-10-30 16:41:01 -050040
41 printf("High Capacity: %s\n", mmc->high_capacity ? "Yes" : "No");
Minkyu Kang940e0782011-01-04 01:04:19 +000042 puts("Capacity: ");
43 print_size(mmc->capacity, "\n");
Andy Fleming272cc702008-10-30 16:41:01 -050044
Andrew Gabbasov786e8f82014-12-01 06:59:09 -060045 printf("Bus Width: %d-bit%s\n", mmc->bus_width,
46 mmc->ddr_mode ? " DDR" : "");
Diego Santa Cruzc5f0d3f2014-12-23 10:50:16 +010047
Diego Santa Cruzb0361522014-12-23 10:50:26 +010048 puts("Erase Group Size: ");
49 print_size(((u64)mmc->erase_grp_size) << 9, "\n");
50
Diego Santa Cruz525ada22014-12-23 10:50:19 +010051 if (!IS_SD(mmc) && mmc->version >= MMC_VERSION_4_41) {
Diego Santa Cruzc3dbb4f2014-12-23 10:50:17 +010052 bool has_enh = (mmc->part_support & ENHNCD_SUPPORT) != 0;
Diego Santa Cruzbeb98a12014-12-23 10:50:23 +010053 bool usr_enh = has_enh && (mmc->part_attr & EXT_CSD_ENH_USR);
Diego Santa Cruzb0361522014-12-23 10:50:26 +010054
55 puts("HC WP Group Size: ");
56 print_size(((u64)mmc->hc_wp_grp_size) << 9, "\n");
57
Diego Santa Cruzc5f0d3f2014-12-23 10:50:16 +010058 puts("User Capacity: ");
Diego Santa Cruz9e41a002014-12-23 10:50:33 +010059 print_size(mmc->capacity_user, usr_enh ? " ENH" : "");
60 if (mmc->wr_rel_set & EXT_CSD_WR_DATA_REL_USR)
61 puts(" WRREL\n");
62 else
63 putc('\n');
Diego Santa Cruzbeb98a12014-12-23 10:50:23 +010064 if (usr_enh) {
65 puts("User Enhanced Start: ");
66 print_size(mmc->enh_user_start, "\n");
67 puts("User Enhanced Size: ");
68 print_size(mmc->enh_user_size, "\n");
69 }
Diego Santa Cruzc5f0d3f2014-12-23 10:50:16 +010070 puts("Boot Capacity: ");
Diego Santa Cruzc3dbb4f2014-12-23 10:50:17 +010071 print_size(mmc->capacity_boot, has_enh ? " ENH\n" : "\n");
Diego Santa Cruzc5f0d3f2014-12-23 10:50:16 +010072 puts("RPMB Capacity: ");
Diego Santa Cruzc3dbb4f2014-12-23 10:50:17 +010073 print_size(mmc->capacity_rpmb, has_enh ? " ENH\n" : "\n");
Diego Santa Cruzb0361522014-12-23 10:50:26 +010074
Diego Santa Cruzc5f0d3f2014-12-23 10:50:16 +010075 for (i = 0; i < ARRAY_SIZE(mmc->capacity_gp); i++) {
Diego Santa Cruzc3dbb4f2014-12-23 10:50:17 +010076 bool is_enh = has_enh &&
77 (mmc->part_attr & EXT_CSD_ENH_GP(i));
Diego Santa Cruzc5f0d3f2014-12-23 10:50:16 +010078 if (mmc->capacity_gp[i]) {
Diego Santa Cruzf289fd72014-12-23 10:50:18 +010079 printf("GP%i Capacity: ", i+1);
Diego Santa Cruzc3dbb4f2014-12-23 10:50:17 +010080 print_size(mmc->capacity_gp[i],
Diego Santa Cruz9e41a002014-12-23 10:50:33 +010081 is_enh ? " ENH" : "");
82 if (mmc->wr_rel_set & EXT_CSD_WR_DATA_REL_GP(i))
83 puts(" WRREL\n");
84 else
85 putc('\n');
Diego Santa Cruzc5f0d3f2014-12-23 10:50:16 +010086 }
87 }
88 }
Andy Fleming272cc702008-10-30 16:41:01 -050089}
Stephen Warren1ae24a52014-05-23 13:24:45 -060090static struct mmc *init_mmc_device(int dev, bool force_init)
Pierre Aubert1fd93c62014-04-24 10:30:08 +020091{
92 struct mmc *mmc;
93 mmc = find_mmc_device(dev);
94 if (!mmc) {
95 printf("no mmc device at slot %x\n", dev);
96 return NULL;
97 }
Eric Nelsonbcfde7f2016-03-27 12:00:14 -070098
Stephen Warren1ae24a52014-05-23 13:24:45 -060099 if (force_init)
100 mmc->has_init = 0;
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200101 if (mmc_init(mmc))
102 return NULL;
103 return mmc;
104}
Kim Phillips088f1b12012-10-29 13:34:31 +0000105static int do_mmcinfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Andy Fleming272cc702008-10-30 16:41:01 -0500106{
107 struct mmc *mmc;
Andy Fleming272cc702008-10-30 16:41:01 -0500108
Lei Wenea6ebe22011-05-02 16:26:25 +0000109 if (curr_device < 0) {
110 if (get_mmc_num() > 0)
111 curr_device = 0;
112 else {
113 puts("No MMC device available\n");
114 return 1;
115 }
116 }
Andy Fleming272cc702008-10-30 16:41:01 -0500117
Stephen Warren1ae24a52014-05-23 13:24:45 -0600118 mmc = init_mmc_device(curr_device, false);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200119 if (!mmc)
120 return CMD_RET_FAILURE;
Andy Fleming272cc702008-10-30 16:41:01 -0500121
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200122 print_mmcinfo(mmc);
123 return CMD_RET_SUCCESS;
Andy Fleming272cc702008-10-30 16:41:01 -0500124}
125
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200126#ifdef CONFIG_SUPPORT_EMMC_RPMB
127static int confirm_key_prog(void)
128{
129 puts("Warning: Programming authentication key can be done only once !\n"
130 " Use this command only if you are sure of what you are doing,\n"
131 "Really perform the key programming? <y/N> ");
132 if (confirm_yesno())
133 return 1;
134
135 puts("Authentication key programming aborted\n");
136 return 0;
137}
138static int do_mmcrpmb_key(cmd_tbl_t *cmdtp, int flag,
139 int argc, char * const argv[])
140{
141 void *key_addr;
142 struct mmc *mmc = find_mmc_device(curr_device);
143
144 if (argc != 2)
145 return CMD_RET_USAGE;
146
147 key_addr = (void *)simple_strtoul(argv[1], NULL, 16);
148 if (!confirm_key_prog())
149 return CMD_RET_FAILURE;
150 if (mmc_rpmb_set_key(mmc, key_addr)) {
151 printf("ERROR - Key already programmed ?\n");
152 return CMD_RET_FAILURE;
153 }
154 return CMD_RET_SUCCESS;
155}
156static int do_mmcrpmb_read(cmd_tbl_t *cmdtp, int flag,
157 int argc, char * const argv[])
158{
159 u16 blk, cnt;
160 void *addr;
161 int n;
162 void *key_addr = NULL;
163 struct mmc *mmc = find_mmc_device(curr_device);
164
165 if (argc < 4)
166 return CMD_RET_USAGE;
167
168 addr = (void *)simple_strtoul(argv[1], NULL, 16);
169 blk = simple_strtoul(argv[2], NULL, 16);
170 cnt = simple_strtoul(argv[3], NULL, 16);
171
172 if (argc == 5)
173 key_addr = (void *)simple_strtoul(argv[4], NULL, 16);
174
175 printf("\nMMC RPMB read: dev # %d, block # %d, count %d ... ",
176 curr_device, blk, cnt);
177 n = mmc_rpmb_read(mmc, addr, blk, cnt, key_addr);
178
179 printf("%d RPMB blocks read: %s\n", n, (n == cnt) ? "OK" : "ERROR");
180 if (n != cnt)
181 return CMD_RET_FAILURE;
182 return CMD_RET_SUCCESS;
183}
184static int do_mmcrpmb_write(cmd_tbl_t *cmdtp, int flag,
185 int argc, char * const argv[])
186{
187 u16 blk, cnt;
188 void *addr;
189 int n;
190 void *key_addr;
191 struct mmc *mmc = find_mmc_device(curr_device);
192
193 if (argc != 5)
194 return CMD_RET_USAGE;
195
196 addr = (void *)simple_strtoul(argv[1], NULL, 16);
197 blk = simple_strtoul(argv[2], NULL, 16);
198 cnt = simple_strtoul(argv[3], NULL, 16);
199 key_addr = (void *)simple_strtoul(argv[4], NULL, 16);
200
201 printf("\nMMC RPMB write: dev # %d, block # %d, count %d ... ",
202 curr_device, blk, cnt);
203 n = mmc_rpmb_write(mmc, addr, blk, cnt, key_addr);
204
205 printf("%d RPMB blocks written: %s\n", n, (n == cnt) ? "OK" : "ERROR");
206 if (n != cnt)
207 return CMD_RET_FAILURE;
208 return CMD_RET_SUCCESS;
209}
210static int do_mmcrpmb_counter(cmd_tbl_t *cmdtp, int flag,
211 int argc, char * const argv[])
212{
213 unsigned long counter;
214 struct mmc *mmc = find_mmc_device(curr_device);
215
216 if (mmc_rpmb_get_counter(mmc, &counter))
217 return CMD_RET_FAILURE;
218 printf("RPMB Write counter= %lx\n", counter);
219 return CMD_RET_SUCCESS;
220}
221
222static cmd_tbl_t cmd_rpmb[] = {
223 U_BOOT_CMD_MKENT(key, 2, 0, do_mmcrpmb_key, "", ""),
224 U_BOOT_CMD_MKENT(read, 5, 1, do_mmcrpmb_read, "", ""),
225 U_BOOT_CMD_MKENT(write, 5, 0, do_mmcrpmb_write, "", ""),
226 U_BOOT_CMD_MKENT(counter, 1, 1, do_mmcrpmb_counter, "", ""),
227};
228
229static int do_mmcrpmb(cmd_tbl_t *cmdtp, int flag,
230 int argc, char * const argv[])
231{
232 cmd_tbl_t *cp;
233 struct mmc *mmc;
234 char original_part;
235 int ret;
236
237 cp = find_cmd_tbl(argv[1], cmd_rpmb, ARRAY_SIZE(cmd_rpmb));
238
239 /* Drop the rpmb subcommand */
240 argc--;
241 argv++;
242
243 if (cp == NULL || argc > cp->maxargs)
244 return CMD_RET_USAGE;
245 if (flag == CMD_FLAG_REPEAT && !cp->repeatable)
246 return CMD_RET_SUCCESS;
247
Stephen Warren1ae24a52014-05-23 13:24:45 -0600248 mmc = init_mmc_device(curr_device, false);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200249 if (!mmc)
250 return CMD_RET_FAILURE;
251
252 if (!(mmc->version & MMC_VERSION_MMC)) {
253 printf("It is not a EMMC device\n");
254 return CMD_RET_FAILURE;
255 }
256 if (mmc->version < MMC_VERSION_4_41) {
257 printf("RPMB not supported before version 4.41\n");
258 return CMD_RET_FAILURE;
259 }
260 /* Switch to the RPMB partition */
Kever Yang4dc80c82017-06-08 09:20:03 +0800261#ifndef CONFIG_BLK
Marek Vasutb955e422016-05-04 16:35:25 +0200262 original_part = mmc->block_dev.hwpart;
Kever Yang4dc80c82017-06-08 09:20:03 +0800263#else
264 original_part = mmc_get_blk_desc(mmc)->hwpart;
265#endif
Simon Glass69f45cd2016-05-01 13:52:29 -0600266 if (blk_select_hwpart_devnum(IF_TYPE_MMC, curr_device, MMC_PART_RPMB) !=
267 0)
Stephen Warren873cc1d2015-12-07 11:38:49 -0700268 return CMD_RET_FAILURE;
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200269 ret = cp->cmd(cmdtp, flag, argc, argv);
270
271 /* Return to original partition */
Simon Glass69f45cd2016-05-01 13:52:29 -0600272 if (blk_select_hwpart_devnum(IF_TYPE_MMC, curr_device, original_part) !=
273 0)
Stephen Warren873cc1d2015-12-07 11:38:49 -0700274 return CMD_RET_FAILURE;
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200275 return ret;
276}
277#endif
278
279static int do_mmc_read(cmd_tbl_t *cmdtp, int flag,
280 int argc, char * const argv[])
281{
282 struct mmc *mmc;
283 u32 blk, cnt, n;
284 void *addr;
285
286 if (argc != 4)
287 return CMD_RET_USAGE;
288
289 addr = (void *)simple_strtoul(argv[1], NULL, 16);
290 blk = simple_strtoul(argv[2], NULL, 16);
291 cnt = simple_strtoul(argv[3], NULL, 16);
292
Stephen Warren1ae24a52014-05-23 13:24:45 -0600293 mmc = init_mmc_device(curr_device, false);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200294 if (!mmc)
295 return CMD_RET_FAILURE;
296
297 printf("\nMMC read: dev # %d, block # %d, count %d ... ",
298 curr_device, blk, cnt);
299
Simon Glassc40fdca2016-05-01 13:52:35 -0600300 n = blk_dread(mmc_get_blk_desc(mmc), blk, cnt, addr);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200301 printf("%d blocks read: %s\n", n, (n == cnt) ? "OK" : "ERROR");
302
303 return (n == cnt) ? CMD_RET_SUCCESS : CMD_RET_FAILURE;
304}
305static int do_mmc_write(cmd_tbl_t *cmdtp, int flag,
306 int argc, char * const argv[])
307{
308 struct mmc *mmc;
309 u32 blk, cnt, n;
310 void *addr;
311
312 if (argc != 4)
313 return CMD_RET_USAGE;
314
315 addr = (void *)simple_strtoul(argv[1], NULL, 16);
316 blk = simple_strtoul(argv[2], NULL, 16);
317 cnt = simple_strtoul(argv[3], NULL, 16);
318
Stephen Warren1ae24a52014-05-23 13:24:45 -0600319 mmc = init_mmc_device(curr_device, false);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200320 if (!mmc)
321 return CMD_RET_FAILURE;
322
323 printf("\nMMC write: dev # %d, block # %d, count %d ... ",
324 curr_device, blk, cnt);
325
326 if (mmc_getwp(mmc) == 1) {
327 printf("Error: card is write protected!\n");
328 return CMD_RET_FAILURE;
329 }
Simon Glassc40fdca2016-05-01 13:52:35 -0600330 n = blk_dwrite(mmc_get_blk_desc(mmc), blk, cnt, addr);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200331 printf("%d blocks written: %s\n", n, (n == cnt) ? "OK" : "ERROR");
332
333 return (n == cnt) ? CMD_RET_SUCCESS : CMD_RET_FAILURE;
334}
335static int do_mmc_erase(cmd_tbl_t *cmdtp, int flag,
336 int argc, char * const argv[])
337{
338 struct mmc *mmc;
339 u32 blk, cnt, n;
340
341 if (argc != 3)
342 return CMD_RET_USAGE;
343
344 blk = simple_strtoul(argv[1], NULL, 16);
345 cnt = simple_strtoul(argv[2], NULL, 16);
346
Stephen Warren1ae24a52014-05-23 13:24:45 -0600347 mmc = init_mmc_device(curr_device, false);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200348 if (!mmc)
349 return CMD_RET_FAILURE;
350
351 printf("\nMMC erase: dev # %d, block # %d, count %d ... ",
352 curr_device, blk, cnt);
353
354 if (mmc_getwp(mmc) == 1) {
355 printf("Error: card is write protected!\n");
356 return CMD_RET_FAILURE;
357 }
Simon Glassc40fdca2016-05-01 13:52:35 -0600358 n = blk_derase(mmc_get_blk_desc(mmc), blk, cnt);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200359 printf("%d blocks erased: %s\n", n, (n == cnt) ? "OK" : "ERROR");
360
361 return (n == cnt) ? CMD_RET_SUCCESS : CMD_RET_FAILURE;
362}
363static int do_mmc_rescan(cmd_tbl_t *cmdtp, int flag,
364 int argc, char * const argv[])
365{
366 struct mmc *mmc;
367
Stephen Warren941944e2014-05-23 13:24:46 -0600368 mmc = init_mmc_device(curr_device, true);
369 if (!mmc)
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200370 return CMD_RET_FAILURE;
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200371
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200372 return CMD_RET_SUCCESS;
373}
374static int do_mmc_part(cmd_tbl_t *cmdtp, int flag,
375 int argc, char * const argv[])
376{
Simon Glass4101f682016-02-29 15:25:34 -0700377 struct blk_desc *mmc_dev;
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200378 struct mmc *mmc;
379
Stephen Warren1ae24a52014-05-23 13:24:45 -0600380 mmc = init_mmc_device(curr_device, false);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200381 if (!mmc)
382 return CMD_RET_FAILURE;
383
Simon Glass3c457f42016-05-01 11:36:15 -0600384 mmc_dev = blk_get_devnum_by_type(IF_TYPE_MMC, curr_device);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200385 if (mmc_dev != NULL && mmc_dev->type != DEV_TYPE_UNKNOWN) {
Simon Glass3e8bd462016-02-29 15:25:48 -0700386 part_print(mmc_dev);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200387 return CMD_RET_SUCCESS;
388 }
389
390 puts("get mmc type error!\n");
391 return CMD_RET_FAILURE;
392}
393static int do_mmc_dev(cmd_tbl_t *cmdtp, int flag,
394 int argc, char * const argv[])
395{
Stephen Warren60dc58f2014-05-23 12:48:10 -0600396 int dev, part = 0, ret;
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200397 struct mmc *mmc;
398
399 if (argc == 1) {
400 dev = curr_device;
401 } else if (argc == 2) {
402 dev = simple_strtoul(argv[1], NULL, 10);
403 } else if (argc == 3) {
404 dev = (int)simple_strtoul(argv[1], NULL, 10);
405 part = (int)simple_strtoul(argv[2], NULL, 10);
406 if (part > PART_ACCESS_MASK) {
407 printf("#part_num shouldn't be larger than %d\n",
408 PART_ACCESS_MASK);
409 return CMD_RET_FAILURE;
410 }
411 } else {
412 return CMD_RET_USAGE;
413 }
414
Stephen Warrena5710922014-05-23 13:24:47 -0600415 mmc = init_mmc_device(dev, true);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200416 if (!mmc)
417 return CMD_RET_FAILURE;
418
Simon Glass69f45cd2016-05-01 13:52:29 -0600419 ret = blk_select_hwpart_devnum(IF_TYPE_MMC, dev, part);
Stephen Warren60dc58f2014-05-23 12:48:10 -0600420 printf("switch to partitions #%d, %s\n",
421 part, (!ret) ? "OK" : "ERROR");
422 if (ret)
423 return 1;
424
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200425 curr_device = dev;
426 if (mmc->part_config == MMCPART_NOAVAILABLE)
427 printf("mmc%d is current device\n", curr_device);
428 else
429 printf("mmc%d(part %d) is current device\n",
Simon Glassc40fdca2016-05-01 13:52:35 -0600430 curr_device, mmc_get_blk_desc(mmc)->hwpart);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200431
432 return CMD_RET_SUCCESS;
433}
434static int do_mmc_list(cmd_tbl_t *cmdtp, int flag,
435 int argc, char * const argv[])
436{
437 print_mmc_devices('\n');
438 return CMD_RET_SUCCESS;
439}
Diego Santa Cruzc599f532014-12-23 10:50:30 +0100440
Jean-Jacques Hiblotcf177892017-11-30 17:44:02 +0100441#if CONFIG_IS_ENABLED(MMC_HW_PARTITIONING)
Diego Santa Cruz189f9632014-12-23 10:50:32 +0100442static int parse_hwpart_user(struct mmc_hwpart_conf *pconf,
443 int argc, char * const argv[])
444{
445 int i = 0;
446
447 memset(&pconf->user, 0, sizeof(pconf->user));
448
449 while (i < argc) {
450 if (!strcmp(argv[i], "enh")) {
451 if (i + 2 >= argc)
452 return -1;
453 pconf->user.enh_start =
454 simple_strtoul(argv[i+1], NULL, 10);
455 pconf->user.enh_size =
456 simple_strtoul(argv[i+2], NULL, 10);
457 i += 3;
458 } else if (!strcmp(argv[i], "wrrel")) {
459 if (i + 1 >= argc)
460 return -1;
461 pconf->user.wr_rel_change = 1;
462 if (!strcmp(argv[i+1], "on"))
463 pconf->user.wr_rel_set = 1;
464 else if (!strcmp(argv[i+1], "off"))
465 pconf->user.wr_rel_set = 0;
466 else
467 return -1;
468 i += 2;
469 } else {
470 break;
471 }
472 }
473 return i;
474}
475
476static int parse_hwpart_gp(struct mmc_hwpart_conf *pconf, int pidx,
477 int argc, char * const argv[])
478{
479 int i;
480
481 memset(&pconf->gp_part[pidx], 0, sizeof(pconf->gp_part[pidx]));
482
483 if (1 >= argc)
484 return -1;
485 pconf->gp_part[pidx].size = simple_strtoul(argv[0], NULL, 10);
486
487 i = 1;
488 while (i < argc) {
489 if (!strcmp(argv[i], "enh")) {
490 pconf->gp_part[pidx].enhanced = 1;
491 i += 1;
492 } else if (!strcmp(argv[i], "wrrel")) {
493 if (i + 1 >= argc)
494 return -1;
495 pconf->gp_part[pidx].wr_rel_change = 1;
496 if (!strcmp(argv[i+1], "on"))
497 pconf->gp_part[pidx].wr_rel_set = 1;
498 else if (!strcmp(argv[i+1], "off"))
499 pconf->gp_part[pidx].wr_rel_set = 0;
500 else
501 return -1;
502 i += 2;
503 } else {
504 break;
505 }
506 }
507 return i;
508}
509
Diego Santa Cruzc599f532014-12-23 10:50:30 +0100510static int do_mmc_hwpartition(cmd_tbl_t *cmdtp, int flag,
511 int argc, char * const argv[])
512{
513 struct mmc *mmc;
514 struct mmc_hwpart_conf pconf = { };
515 enum mmc_hwpart_conf_mode mode = MMC_HWPART_CONF_CHECK;
Diego Santa Cruz189f9632014-12-23 10:50:32 +0100516 int i, r, pidx;
Diego Santa Cruzc599f532014-12-23 10:50:30 +0100517
518 mmc = init_mmc_device(curr_device, false);
519 if (!mmc)
520 return CMD_RET_FAILURE;
521
522 if (argc < 1)
523 return CMD_RET_USAGE;
524 i = 1;
525 while (i < argc) {
Diego Santa Cruz189f9632014-12-23 10:50:32 +0100526 if (!strcmp(argv[i], "user")) {
527 i++;
528 r = parse_hwpart_user(&pconf, argc-i, &argv[i]);
529 if (r < 0)
Diego Santa Cruzc599f532014-12-23 10:50:30 +0100530 return CMD_RET_USAGE;
Diego Santa Cruz189f9632014-12-23 10:50:32 +0100531 i += r;
Diego Santa Cruzc599f532014-12-23 10:50:30 +0100532 } else if (!strncmp(argv[i], "gp", 2) &&
533 strlen(argv[i]) == 3 &&
534 argv[i][2] >= '1' && argv[i][2] <= '4') {
Diego Santa Cruzc599f532014-12-23 10:50:30 +0100535 pidx = argv[i][2] - '1';
Diego Santa Cruz189f9632014-12-23 10:50:32 +0100536 i++;
537 r = parse_hwpart_gp(&pconf, pidx, argc-i, &argv[i]);
538 if (r < 0)
539 return CMD_RET_USAGE;
540 i += r;
Diego Santa Cruzc599f532014-12-23 10:50:30 +0100541 } else if (!strcmp(argv[i], "check")) {
542 mode = MMC_HWPART_CONF_CHECK;
543 i++;
544 } else if (!strcmp(argv[i], "set")) {
545 mode = MMC_HWPART_CONF_SET;
546 i++;
547 } else if (!strcmp(argv[i], "complete")) {
548 mode = MMC_HWPART_CONF_COMPLETE;
549 i++;
550 } else {
551 return CMD_RET_USAGE;
552 }
553 }
554
555 puts("Partition configuration:\n");
556 if (pconf.user.enh_size) {
557 puts("\tUser Enhanced Start: ");
558 print_size(((u64)pconf.user.enh_start) << 9, "\n");
559 puts("\tUser Enhanced Size: ");
560 print_size(((u64)pconf.user.enh_size) << 9, "\n");
561 } else {
562 puts("\tNo enhanced user data area\n");
563 }
Diego Santa Cruz189f9632014-12-23 10:50:32 +0100564 if (pconf.user.wr_rel_change)
565 printf("\tUser partition write reliability: %s\n",
566 pconf.user.wr_rel_set ? "on" : "off");
Diego Santa Cruzc599f532014-12-23 10:50:30 +0100567 for (pidx = 0; pidx < 4; pidx++) {
568 if (pconf.gp_part[pidx].size) {
569 printf("\tGP%i Capacity: ", pidx+1);
570 print_size(((u64)pconf.gp_part[pidx].size) << 9,
571 pconf.gp_part[pidx].enhanced ?
572 " ENH\n" : "\n");
573 } else {
574 printf("\tNo GP%i partition\n", pidx+1);
575 }
Diego Santa Cruz189f9632014-12-23 10:50:32 +0100576 if (pconf.gp_part[pidx].wr_rel_change)
577 printf("\tGP%i write reliability: %s\n", pidx+1,
578 pconf.gp_part[pidx].wr_rel_set ? "on" : "off");
Diego Santa Cruzc599f532014-12-23 10:50:30 +0100579 }
580
581 if (!mmc_hwpart_config(mmc, &pconf, mode)) {
582 if (mode == MMC_HWPART_CONF_COMPLETE)
583 puts("Partitioning successful, "
584 "power-cycle to make effective\n");
585 return CMD_RET_SUCCESS;
586 } else {
Diego Santa Cruz189f9632014-12-23 10:50:32 +0100587 puts("Failed!\n");
Diego Santa Cruzc599f532014-12-23 10:50:30 +0100588 return CMD_RET_FAILURE;
589 }
590}
Jean-Jacques Hiblotcf177892017-11-30 17:44:02 +0100591#endif
Diego Santa Cruzc599f532014-12-23 10:50:30 +0100592
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200593#ifdef CONFIG_SUPPORT_EMMC_BOOT
594static int do_mmc_bootbus(cmd_tbl_t *cmdtp, int flag,
595 int argc, char * const argv[])
596{
597 int dev;
598 struct mmc *mmc;
599 u8 width, reset, mode;
600
601 if (argc != 5)
602 return CMD_RET_USAGE;
603 dev = simple_strtoul(argv[1], NULL, 10);
604 width = simple_strtoul(argv[2], NULL, 10);
605 reset = simple_strtoul(argv[3], NULL, 10);
606 mode = simple_strtoul(argv[4], NULL, 10);
607
Stephen Warren1ae24a52014-05-23 13:24:45 -0600608 mmc = init_mmc_device(dev, false);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200609 if (!mmc)
610 return CMD_RET_FAILURE;
611
612 if (IS_SD(mmc)) {
613 puts("BOOT_BUS_WIDTH only exists on eMMC\n");
614 return CMD_RET_FAILURE;
615 }
616
617 /* acknowledge to be sent during boot operation */
618 return mmc_set_boot_bus_width(mmc, width, reset, mode);
619}
620static int do_mmc_boot_resize(cmd_tbl_t *cmdtp, int flag,
621 int argc, char * const argv[])
622{
623 int dev;
624 struct mmc *mmc;
625 u32 bootsize, rpmbsize;
626
627 if (argc != 4)
628 return CMD_RET_USAGE;
629 dev = simple_strtoul(argv[1], NULL, 10);
630 bootsize = simple_strtoul(argv[2], NULL, 10);
631 rpmbsize = simple_strtoul(argv[3], NULL, 10);
632
Stephen Warren1ae24a52014-05-23 13:24:45 -0600633 mmc = init_mmc_device(dev, false);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200634 if (!mmc)
635 return CMD_RET_FAILURE;
636
637 if (IS_SD(mmc)) {
638 printf("It is not a EMMC device\n");
639 return CMD_RET_FAILURE;
640 }
641
642 if (mmc_boot_partition_size_change(mmc, bootsize, rpmbsize)) {
643 printf("EMMC boot partition Size change Failed.\n");
644 return CMD_RET_FAILURE;
645 }
646
647 printf("EMMC boot partition Size %d MB\n", bootsize);
648 printf("EMMC RPMB partition Size %d MB\n", rpmbsize);
649 return CMD_RET_SUCCESS;
650}
Angelo Dureghellobdb60992017-08-01 14:27:10 +0200651
652static int mmc_partconf_print(struct mmc *mmc)
653{
654 u8 ack, access, part;
655
656 if (mmc->part_config == MMCPART_NOAVAILABLE) {
657 printf("No part_config info for ver. 0x%x\n", mmc->version);
658 return CMD_RET_FAILURE;
659 }
660
661 access = EXT_CSD_EXTRACT_PARTITION_ACCESS(mmc->part_config);
662 ack = EXT_CSD_EXTRACT_BOOT_ACK(mmc->part_config);
663 part = EXT_CSD_EXTRACT_BOOT_PART(mmc->part_config);
664
665 printf("EXT_CSD[179], PARTITION_CONFIG:\n"
666 "BOOT_ACK: 0x%x\n"
667 "BOOT_PARTITION_ENABLE: 0x%x\n"
668 "PARTITION_ACCESS: 0x%x\n", ack, part, access);
669
670 return CMD_RET_SUCCESS;
671}
672
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200673static int do_mmc_partconf(cmd_tbl_t *cmdtp, int flag,
674 int argc, char * const argv[])
675{
676 int dev;
677 struct mmc *mmc;
678 u8 ack, part_num, access;
679
Angelo Dureghellobdb60992017-08-01 14:27:10 +0200680 if (argc != 2 && argc != 5)
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200681 return CMD_RET_USAGE;
682
683 dev = simple_strtoul(argv[1], NULL, 10);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200684
Stephen Warren1ae24a52014-05-23 13:24:45 -0600685 mmc = init_mmc_device(dev, false);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200686 if (!mmc)
687 return CMD_RET_FAILURE;
688
689 if (IS_SD(mmc)) {
690 puts("PARTITION_CONFIG only exists on eMMC\n");
691 return CMD_RET_FAILURE;
692 }
693
Angelo Dureghellobdb60992017-08-01 14:27:10 +0200694 if (argc == 2)
695 return mmc_partconf_print(mmc);
696
697 ack = simple_strtoul(argv[2], NULL, 10);
698 part_num = simple_strtoul(argv[3], NULL, 10);
699 access = simple_strtoul(argv[4], NULL, 10);
700
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200701 /* acknowledge to be sent during boot operation */
702 return mmc_set_part_conf(mmc, ack, part_num, access);
703}
704static int do_mmc_rst_func(cmd_tbl_t *cmdtp, int flag,
705 int argc, char * const argv[])
706{
707 int dev;
708 struct mmc *mmc;
709 u8 enable;
710
711 /*
712 * Set the RST_n_ENABLE bit of RST_n_FUNCTION
713 * The only valid values are 0x0, 0x1 and 0x2 and writing
714 * a value of 0x1 or 0x2 sets the value permanently.
715 */
716 if (argc != 3)
717 return CMD_RET_USAGE;
718
719 dev = simple_strtoul(argv[1], NULL, 10);
720 enable = simple_strtoul(argv[2], NULL, 10);
721
Peng Fan678e9312015-11-25 17:16:21 +0800722 if (enable > 2) {
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200723 puts("Invalid RST_n_ENABLE value\n");
724 return CMD_RET_USAGE;
725 }
726
Stephen Warren1ae24a52014-05-23 13:24:45 -0600727 mmc = init_mmc_device(dev, false);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200728 if (!mmc)
729 return CMD_RET_FAILURE;
730
731 if (IS_SD(mmc)) {
732 puts("RST_n_FUNCTION only exists on eMMC\n");
733 return CMD_RET_FAILURE;
734 }
735
736 return mmc_set_rst_n_function(mmc, enable);
737}
738#endif
739static int do_mmc_setdsr(cmd_tbl_t *cmdtp, int flag,
740 int argc, char * const argv[])
741{
742 struct mmc *mmc;
743 u32 val;
744 int ret;
745
746 if (argc != 2)
747 return CMD_RET_USAGE;
Markus Niebel84c1dfe2017-02-03 15:26:36 +0100748 val = simple_strtoul(argv[1], NULL, 16);
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200749
750 mmc = find_mmc_device(curr_device);
751 if (!mmc) {
752 printf("no mmc device at slot %x\n", curr_device);
753 return CMD_RET_FAILURE;
754 }
755 ret = mmc_set_dsr(mmc, val);
756 printf("set dsr %s\n", (!ret) ? "OK, force rescan" : "ERROR");
757 if (!ret) {
758 mmc->has_init = 0;
759 if (mmc_init(mmc))
760 return CMD_RET_FAILURE;
761 else
762 return CMD_RET_SUCCESS;
763 }
764 return ret;
765}
766
Tomas Melincd3d4882016-11-25 11:01:03 +0200767#ifdef CONFIG_CMD_BKOPS_ENABLE
768static int do_mmc_bkops_enable(cmd_tbl_t *cmdtp, int flag,
769 int argc, char * const argv[])
770{
771 int dev;
772 struct mmc *mmc;
773
774 if (argc != 2)
775 return CMD_RET_USAGE;
776
777 dev = simple_strtoul(argv[1], NULL, 10);
778
779 mmc = init_mmc_device(dev, false);
780 if (!mmc)
781 return CMD_RET_FAILURE;
782
783 if (IS_SD(mmc)) {
784 puts("BKOPS_EN only exists on eMMC\n");
785 return CMD_RET_FAILURE;
786 }
787
788 return mmc_set_bkops_enable(mmc);
789}
790#endif
791
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200792static cmd_tbl_t cmd_mmc[] = {
793 U_BOOT_CMD_MKENT(info, 1, 0, do_mmcinfo, "", ""),
794 U_BOOT_CMD_MKENT(read, 4, 1, do_mmc_read, "", ""),
795 U_BOOT_CMD_MKENT(write, 4, 0, do_mmc_write, "", ""),
796 U_BOOT_CMD_MKENT(erase, 3, 0, do_mmc_erase, "", ""),
797 U_BOOT_CMD_MKENT(rescan, 1, 1, do_mmc_rescan, "", ""),
798 U_BOOT_CMD_MKENT(part, 1, 1, do_mmc_part, "", ""),
799 U_BOOT_CMD_MKENT(dev, 3, 0, do_mmc_dev, "", ""),
800 U_BOOT_CMD_MKENT(list, 1, 1, do_mmc_list, "", ""),
Jean-Jacques Hiblotcf177892017-11-30 17:44:02 +0100801#if CONFIG_IS_ENABLED(MMC_HW_PARTITIONING)
Diego Santa Cruz189f9632014-12-23 10:50:32 +0100802 U_BOOT_CMD_MKENT(hwpartition, 28, 0, do_mmc_hwpartition, "", ""),
Jean-Jacques Hiblotcf177892017-11-30 17:44:02 +0100803#endif
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200804#ifdef CONFIG_SUPPORT_EMMC_BOOT
805 U_BOOT_CMD_MKENT(bootbus, 5, 0, do_mmc_bootbus, "", ""),
Wally Yehfa7b8852014-09-25 23:00:16 +0800806 U_BOOT_CMD_MKENT(bootpart-resize, 4, 0, do_mmc_boot_resize, "", ""),
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200807 U_BOOT_CMD_MKENT(partconf, 5, 0, do_mmc_partconf, "", ""),
808 U_BOOT_CMD_MKENT(rst-function, 3, 0, do_mmc_rst_func, "", ""),
809#endif
810#ifdef CONFIG_SUPPORT_EMMC_RPMB
811 U_BOOT_CMD_MKENT(rpmb, CONFIG_SYS_MAXARGS, 1, do_mmcrpmb, "", ""),
812#endif
813 U_BOOT_CMD_MKENT(setdsr, 2, 0, do_mmc_setdsr, "", ""),
Tomas Melincd3d4882016-11-25 11:01:03 +0200814#ifdef CONFIG_CMD_BKOPS_ENABLE
815 U_BOOT_CMD_MKENT(bkops-enable, 2, 0, do_mmc_bkops_enable, "", ""),
816#endif
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200817};
Andy Fleming272cc702008-10-30 16:41:01 -0500818
Kim Phillips088f1b12012-10-29 13:34:31 +0000819static int do_mmcops(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Andy Fleming272cc702008-10-30 16:41:01 -0500820{
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200821 cmd_tbl_t *cp;
Lei Wen6be95cc2011-06-22 17:03:30 +0000822
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200823 cp = find_cmd_tbl(argv[1], cmd_mmc, ARRAY_SIZE(cmd_mmc));
824
825 /* Drop the mmc command */
826 argc--;
827 argv++;
828
829 if (cp == NULL || argc > cp->maxargs)
Simon Glass4c12eeb2011-12-10 08:44:01 +0000830 return CMD_RET_USAGE;
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200831 if (flag == CMD_FLAG_REPEAT && !cp->repeatable)
832 return CMD_RET_SUCCESS;
Andy Fleming272cc702008-10-30 16:41:01 -0500833
Lei Wenea6ebe22011-05-02 16:26:25 +0000834 if (curr_device < 0) {
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200835 if (get_mmc_num() > 0) {
Lei Wenea6ebe22011-05-02 16:26:25 +0000836 curr_device = 0;
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200837 } else {
Lei Wenea6ebe22011-05-02 16:26:25 +0000838 puts("No MMC device available\n");
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200839 return CMD_RET_FAILURE;
Lei Wenea6ebe22011-05-02 16:26:25 +0000840 }
841 }
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200842 return cp->cmd(cmdtp, flag, argc, argv);
Andy Fleming272cc702008-10-30 16:41:01 -0500843}
844
845U_BOOT_CMD(
Diego Santa Cruz189f9632014-12-23 10:50:32 +0100846 mmc, 29, 1, do_mmcops,
Mike Frysinger852dbfd2009-03-23 22:27:34 -0400847 "MMC sub system",
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200848 "info - display info of the current MMC device\n"
849 "mmc read addr blk# cnt\n"
Lei Wenea6ebe22011-05-02 16:26:25 +0000850 "mmc write addr blk# cnt\n"
Lei Wene6f99a52011-06-22 17:03:31 +0000851 "mmc erase blk# cnt\n"
Lei Wenea6ebe22011-05-02 16:26:25 +0000852 "mmc rescan\n"
853 "mmc part - lists available partition on current mmc device\n"
Lei Wenbc897b12011-05-02 16:26:26 +0000854 "mmc dev [dev] [part] - show or set current mmc device [partition]\n"
Amar2a91c912013-04-27 11:43:00 +0530855 "mmc list - lists available devices\n"
Diego Santa Cruzc599f532014-12-23 10:50:30 +0100856 "mmc hwpartition [args...] - does hardware partitioning\n"
857 " arguments (sizes in 512-byte blocks):\n"
Diego Santa Cruz189f9632014-12-23 10:50:32 +0100858 " [user [enh start cnt] [wrrel {on|off}]] - sets user data area attributes\n"
859 " [gp1|gp2|gp3|gp4 cnt [enh] [wrrel {on|off}]] - general purpose partition\n"
Diego Santa Cruzc599f532014-12-23 10:50:30 +0100860 " [check|set|complete] - mode, complete set partitioning completed\n"
Diego Santa Cruz189f9632014-12-23 10:50:32 +0100861 " WARNING: Partitioning is a write-once setting once it is set to complete.\n"
862 " Power cycling is required to initialize partitions after set to complete.\n"
Amar2a91c912013-04-27 11:43:00 +0530863#ifdef CONFIG_SUPPORT_EMMC_BOOT
Tom Rini5a99b9d2014-02-05 10:24:22 -0500864 "mmc bootbus dev boot_bus_width reset_boot_bus_width boot_mode\n"
865 " - Set the BOOT_BUS_WIDTH field of the specified device\n"
Tom Rinif1fd9572014-02-05 10:24:20 -0500866 "mmc bootpart-resize <dev> <boot part size MB> <RPMB part size MB>\n"
867 " - Change sizes of boot and RPMB partitions of specified device\n"
Angelo Dureghellobdb60992017-08-01 14:27:10 +0200868 "mmc partconf dev [boot_ack boot_partition partition_access]\n"
869 " - Show or change the bits of the PARTITION_CONFIG field of the specified device\n"
Tom Rini33ace362014-02-07 14:15:20 -0500870 "mmc rst-function dev value\n"
871 " - Change the RST_n_FUNCTION field of the specified device\n"
872 " WARNING: This is a write-once field and 0 / 1 / 2 are the only valid values.\n"
Dirk Behme3511b4e2009-02-18 19:59:39 +0100873#endif
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200874#ifdef CONFIG_SUPPORT_EMMC_RPMB
875 "mmc rpmb read addr blk# cnt [address of auth-key] - block size is 256 bytes\n"
876 "mmc rpmb write addr blk# cnt <address of auth-key> - block size is 256 bytes\n"
877 "mmc rpmb key <address of auth-key> - program the RPMB authentication key.\n"
878 "mmc rpmb counter - read the value of the write counter\n"
879#endif
880 "mmc setdsr <value> - set DSR register value\n"
Tomas Melincd3d4882016-11-25 11:01:03 +0200881#ifdef CONFIG_CMD_BKOPS_ENABLE
882 "mmc bkops-enable <dev> - enable background operations handshake on device\n"
883 " WARNING: This is a write-once setting.\n"
884#endif
Amar2a91c912013-04-27 11:43:00 +0530885 );
Pierre Aubert1fd93c62014-04-24 10:30:08 +0200886
887/* Old command kept for compatibility. Same as 'mmc info' */
888U_BOOT_CMD(
889 mmcinfo, 1, 0, do_mmcinfo,
890 "display MMC info",
891 "- display info of the current MMC device"
892);