Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2003 |
| 4 | * Kyle Harris, kharris@nexus-tech.net |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <common.h> |
Simon Glass | e6f6f9e | 2020-05-10 11:39:58 -0600 | [diff] [blame] | 8 | #include <blk.h> |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 9 | #include <command.h> |
Simon Glass | 24b852a | 2015-11-08 23:47:45 -0700 | [diff] [blame] | 10 | #include <console.h> |
Marek Vasut | d581076 | 2020-06-20 14:28:25 +0200 | [diff] [blame] | 11 | #include <memalign.h> |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 12 | #include <mmc.h> |
Simon Glass | e6f6f9e | 2020-05-10 11:39:58 -0600 | [diff] [blame] | 13 | #include <part.h> |
Jassi Brar | 732bc7c | 2018-04-06 12:05:24 +0530 | [diff] [blame] | 14 | #include <sparse_format.h> |
| 15 | #include <image-sparse.h> |
wdenk | 71f9511 | 2003-06-15 22:40:42 +0000 | [diff] [blame] | 16 | |
Mike Frysinger | 02e22c2 | 2009-06-14 21:35:21 -0400 | [diff] [blame] | 17 | static int curr_device = -1; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 18 | |
| 19 | static void print_mmcinfo(struct mmc *mmc) |
| 20 | { |
Diego Santa Cruz | c5f0d3f | 2014-12-23 10:50:16 +0100 | [diff] [blame] | 21 | int i; |
| 22 | |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 23 | printf("Device: %s\n", mmc->cfg->name); |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 24 | printf("Manufacturer ID: %x\n", mmc->cid[0] >> 24); |
Max Merchel | 84191f7 | 2022-02-10 10:16:39 +0100 | [diff] [blame] | 25 | 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 Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 37 | |
Jean-Jacques Hiblot | 7a96ec7 | 2017-09-21 16:29:56 +0200 | [diff] [blame] | 38 | printf("Bus Speed: %d\n", mmc->clock); |
Jean-Jacques Hiblot | 52d241d | 2017-11-30 17:43:54 +0100 | [diff] [blame] | 39 | #if CONFIG_IS_ENABLED(MMC_VERBOSE) |
Marek Vasut | 41e30dc | 2019-03-18 04:49:21 +0100 | [diff] [blame] | 40 | printf("Mode: %s\n", mmc_mode_name(mmc->selected_mode)); |
Jean-Jacques Hiblot | 52d241d | 2017-11-30 17:43:54 +0100 | [diff] [blame] | 41 | mmc_dump_capabilities("card capabilities", mmc->card_caps); |
| 42 | mmc_dump_capabilities("host capabilities", mmc->host_caps); |
| 43 | #endif |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 44 | printf("Rd Block Len: %d\n", mmc->read_bl_len); |
| 45 | |
Pantelis Antoniou | 4b7cee5 | 2015-01-23 12:12:01 +0200 | [diff] [blame] | 46 | 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 Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 52 | |
| 53 | printf("High Capacity: %s\n", mmc->high_capacity ? "Yes" : "No"); |
Minkyu Kang | 940e078 | 2011-01-04 01:04:19 +0000 | [diff] [blame] | 54 | puts("Capacity: "); |
| 55 | print_size(mmc->capacity, "\n"); |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 56 | |
Andrew Gabbasov | 786e8f8 | 2014-12-01 06:59:09 -0600 | [diff] [blame] | 57 | printf("Bus Width: %d-bit%s\n", mmc->bus_width, |
| 58 | mmc->ddr_mode ? " DDR" : ""); |
Diego Santa Cruz | c5f0d3f | 2014-12-23 10:50:16 +0100 | [diff] [blame] | 59 | |
Jean-Jacques Hiblot | e6fa5a5 | 2018-01-04 15:23:34 +0100 | [diff] [blame] | 60 | #if CONFIG_IS_ENABLED(MMC_WRITE) |
Diego Santa Cruz | b036152 | 2014-12-23 10:50:26 +0100 | [diff] [blame] | 61 | puts("Erase Group Size: "); |
| 62 | print_size(((u64)mmc->erase_grp_size) << 9, "\n"); |
Jean-Jacques Hiblot | e6fa5a5 | 2018-01-04 15:23:34 +0100 | [diff] [blame] | 63 | #endif |
Diego Santa Cruz | b036152 | 2014-12-23 10:50:26 +0100 | [diff] [blame] | 64 | |
Diego Santa Cruz | 525ada2 | 2014-12-23 10:50:19 +0100 | [diff] [blame] | 65 | if (!IS_SD(mmc) && mmc->version >= MMC_VERSION_4_41) { |
Diego Santa Cruz | c3dbb4f | 2014-12-23 10:50:17 +0100 | [diff] [blame] | 66 | bool has_enh = (mmc->part_support & ENHNCD_SUPPORT) != 0; |
Diego Santa Cruz | beb98a1 | 2014-12-23 10:50:23 +0100 | [diff] [blame] | 67 | bool usr_enh = has_enh && (mmc->part_attr & EXT_CSD_ENH_USR); |
Marek Vasut | d581076 | 2020-06-20 14:28:25 +0200 | [diff] [blame] | 68 | ALLOC_CACHE_ALIGN_BUFFER(u8, ext_csd, MMC_MAX_BLOCK_LEN); |
| 69 | u8 wp; |
Heinrich Schuchardt | d5210e4 | 2020-03-30 07:24:18 +0200 | [diff] [blame] | 70 | int ret; |
Diego Santa Cruz | b036152 | 2014-12-23 10:50:26 +0100 | [diff] [blame] | 71 | |
Jean-Jacques Hiblot | b7a6e2c | 2018-01-04 15:23:36 +0100 | [diff] [blame] | 72 | #if CONFIG_IS_ENABLED(MMC_HW_PARTITIONING) |
Diego Santa Cruz | b036152 | 2014-12-23 10:50:26 +0100 | [diff] [blame] | 73 | puts("HC WP Group Size: "); |
| 74 | print_size(((u64)mmc->hc_wp_grp_size) << 9, "\n"); |
Jean-Jacques Hiblot | b7a6e2c | 2018-01-04 15:23:36 +0100 | [diff] [blame] | 75 | #endif |
Diego Santa Cruz | b036152 | 2014-12-23 10:50:26 +0100 | [diff] [blame] | 76 | |
Diego Santa Cruz | c5f0d3f | 2014-12-23 10:50:16 +0100 | [diff] [blame] | 77 | puts("User Capacity: "); |
Diego Santa Cruz | 9e41a00 | 2014-12-23 10:50:33 +0100 | [diff] [blame] | 78 | 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 Cruz | beb98a1 | 2014-12-23 10:50:23 +0100 | [diff] [blame] | 83 | 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 Cruz | c5f0d3f | 2014-12-23 10:50:16 +0100 | [diff] [blame] | 89 | puts("Boot Capacity: "); |
Diego Santa Cruz | c3dbb4f | 2014-12-23 10:50:17 +0100 | [diff] [blame] | 90 | print_size(mmc->capacity_boot, has_enh ? " ENH\n" : "\n"); |
Diego Santa Cruz | c5f0d3f | 2014-12-23 10:50:16 +0100 | [diff] [blame] | 91 | puts("RPMB Capacity: "); |
Diego Santa Cruz | c3dbb4f | 2014-12-23 10:50:17 +0100 | [diff] [blame] | 92 | print_size(mmc->capacity_rpmb, has_enh ? " ENH\n" : "\n"); |
Diego Santa Cruz | b036152 | 2014-12-23 10:50:26 +0100 | [diff] [blame] | 93 | |
Diego Santa Cruz | c5f0d3f | 2014-12-23 10:50:16 +0100 | [diff] [blame] | 94 | for (i = 0; i < ARRAY_SIZE(mmc->capacity_gp); i++) { |
Diego Santa Cruz | c3dbb4f | 2014-12-23 10:50:17 +0100 | [diff] [blame] | 95 | bool is_enh = has_enh && |
| 96 | (mmc->part_attr & EXT_CSD_ENH_GP(i)); |
Diego Santa Cruz | c5f0d3f | 2014-12-23 10:50:16 +0100 | [diff] [blame] | 97 | if (mmc->capacity_gp[i]) { |
Diego Santa Cruz | f289fd7 | 2014-12-23 10:50:18 +0100 | [diff] [blame] | 98 | printf("GP%i Capacity: ", i+1); |
Diego Santa Cruz | c3dbb4f | 2014-12-23 10:50:17 +0100 | [diff] [blame] | 99 | print_size(mmc->capacity_gp[i], |
Diego Santa Cruz | 9e41a00 | 2014-12-23 10:50:33 +0100 | [diff] [blame] | 100 | 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 Cruz | c5f0d3f | 2014-12-23 10:50:16 +0100 | [diff] [blame] | 105 | } |
| 106 | } |
Heinrich Schuchardt | d5210e4 | 2020-03-30 07:24:18 +0200 | [diff] [blame] | 107 | 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 Cruz | c5f0d3f | 2014-12-23 10:50:16 +0100 | [diff] [blame] | 129 | } |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 130 | } |
Aswath Govindraju | 19f7a34 | 2021-08-13 23:04:41 +0530 | [diff] [blame] | 131 | |
| 132 | static struct mmc *__init_mmc_device(int dev, bool force_init, |
| 133 | enum bus_mode speed_mode) |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 134 | { |
| 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 Nelson | bcfde7f | 2016-03-27 12:00:14 -0700 | [diff] [blame] | 141 | |
Marek Vasut | d2a0836 | 2019-01-03 22:09:43 +0100 | [diff] [blame] | 142 | if (!mmc_getcd(mmc)) |
| 143 | force_init = true; |
| 144 | |
Stephen Warren | 1ae24a5 | 2014-05-23 13:24:45 -0600 | [diff] [blame] | 145 | if (force_init) |
| 146 | mmc->has_init = 0; |
Aswath Govindraju | 19f7a34 | 2021-08-13 23:04:41 +0530 | [diff] [blame] | 147 | |
| 148 | if (IS_ENABLED(CONFIG_MMC_SPEED_MODE_SET)) |
| 149 | mmc->user_speed_mode = speed_mode; |
| 150 | |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 151 | if (mmc_init(mmc)) |
| 152 | return NULL; |
Marek Vasut | 1d044d3 | 2019-01-03 22:09:44 +0100 | [diff] [blame] | 153 | |
| 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 Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 159 | return mmc; |
| 160 | } |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 161 | |
Aswath Govindraju | 19f7a34 | 2021-08-13 23:04:41 +0530 | [diff] [blame] | 162 | static 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 Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 167 | static int do_mmcinfo(struct cmd_tbl *cmdtp, int flag, int argc, |
| 168 | char *const argv[]) |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 169 | { |
| 170 | struct mmc *mmc; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 171 | |
Lei Wen | ea6ebe2 | 2011-05-02 16:26:25 +0000 | [diff] [blame] | 172 | 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 Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 180 | |
Stephen Warren | 1ae24a5 | 2014-05-23 13:24:45 -0600 | [diff] [blame] | 181 | mmc = init_mmc_device(curr_device, false); |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 182 | if (!mmc) |
| 183 | return CMD_RET_FAILURE; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 184 | |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 185 | print_mmcinfo(mmc); |
| 186 | return CMD_RET_SUCCESS; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 187 | } |
| 188 | |
Alex Kiernan | 5a7b11e | 2018-05-08 04:43:31 +0000 | [diff] [blame] | 189 | #if CONFIG_IS_ENABLED(CMD_MMC_RPMB) |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 190 | static 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()) |
| 196 | return 1; |
| 197 | |
| 198 | puts("Authentication key programming aborted\n"); |
| 199 | return 0; |
| 200 | } |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 201 | |
| 202 | static int do_mmcrpmb_key(struct cmd_tbl *cmdtp, int flag, |
| 203 | int argc, char *const argv[]) |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 204 | { |
| 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 Glass | 7e5f460 | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 211 | key_addr = (void *)hextoul(argv[1], NULL); |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 212 | 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; |
| 217 | } |
| 218 | return CMD_RET_SUCCESS; |
| 219 | } |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 220 | |
| 221 | static int do_mmcrpmb_read(struct cmd_tbl *cmdtp, int flag, |
| 222 | int argc, char *const argv[]) |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 223 | { |
| 224 | u16 blk, cnt; |
| 225 | void *addr; |
| 226 | int n; |
| 227 | void *key_addr = NULL; |
| 228 | struct mmc *mmc = find_mmc_device(curr_device); |
| 229 | |
| 230 | if (argc < 4) |
| 231 | return CMD_RET_USAGE; |
| 232 | |
Simon Glass | 7e5f460 | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 233 | addr = (void *)hextoul(argv[1], NULL); |
| 234 | blk = hextoul(argv[2], NULL); |
| 235 | cnt = hextoul(argv[3], NULL); |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 236 | |
| 237 | if (argc == 5) |
Simon Glass | 7e5f460 | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 238 | key_addr = (void *)hextoul(argv[4], NULL); |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 239 | |
| 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 Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 249 | |
| 250 | static int do_mmcrpmb_write(struct cmd_tbl *cmdtp, int flag, |
| 251 | int argc, char *const argv[]) |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 252 | { |
| 253 | u16 blk, cnt; |
| 254 | void *addr; |
| 255 | int n; |
| 256 | void *key_addr; |
| 257 | struct mmc *mmc = find_mmc_device(curr_device); |
| 258 | |
| 259 | if (argc != 5) |
| 260 | return CMD_RET_USAGE; |
| 261 | |
Simon Glass | 7e5f460 | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 262 | 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 Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 266 | |
| 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 Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 276 | |
| 277 | static int do_mmcrpmb_counter(struct cmd_tbl *cmdtp, int flag, |
| 278 | int argc, char *const argv[]) |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 279 | { |
| 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 Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 289 | static struct cmd_tbl cmd_rpmb[] = { |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 290 | 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 Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 296 | static int do_mmcrpmb(struct cmd_tbl *cmdtp, int flag, |
| 297 | int argc, char *const argv[]) |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 298 | { |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 299 | struct cmd_tbl *cp; |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 300 | 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 Brezillon | 80a48dd | 2018-12-03 22:54:20 +0100 | [diff] [blame] | 312 | if (flag == CMD_FLAG_REPEAT && !cmd_is_repeatable(cp)) |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 313 | return CMD_RET_SUCCESS; |
| 314 | |
Stephen Warren | 1ae24a5 | 2014-05-23 13:24:45 -0600 | [diff] [blame] | 315 | mmc = init_mmc_device(curr_device, false); |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 316 | if (!mmc) |
| 317 | return CMD_RET_FAILURE; |
| 318 | |
| 319 | if (!(mmc->version & MMC_VERSION_MMC)) { |
Heinrich Schuchardt | 71a3e5c | 2020-03-29 19:26:57 +0000 | [diff] [blame] | 320 | printf("It is not an eMMC device\n"); |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 321 | return CMD_RET_FAILURE; |
| 322 | } |
| 323 | 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 Yang | 4dc80c8 | 2017-06-08 09:20:03 +0800 | [diff] [blame] | 328 | #ifndef CONFIG_BLK |
Marek Vasut | b955e42 | 2016-05-04 16:35:25 +0200 | [diff] [blame] | 329 | original_part = mmc->block_dev.hwpart; |
Kever Yang | 4dc80c8 | 2017-06-08 09:20:03 +0800 | [diff] [blame] | 330 | #else |
| 331 | original_part = mmc_get_blk_desc(mmc)->hwpart; |
| 332 | #endif |
Simon Glass | 69f45cd | 2016-05-01 13:52:29 -0600 | [diff] [blame] | 333 | if (blk_select_hwpart_devnum(IF_TYPE_MMC, curr_device, MMC_PART_RPMB) != |
| 334 | 0) |
Stephen Warren | 873cc1d | 2015-12-07 11:38:49 -0700 | [diff] [blame] | 335 | return CMD_RET_FAILURE; |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 336 | ret = cp->cmd(cmdtp, flag, argc, argv); |
| 337 | |
| 338 | /* Return to original partition */ |
Simon Glass | 69f45cd | 2016-05-01 13:52:29 -0600 | [diff] [blame] | 339 | if (blk_select_hwpart_devnum(IF_TYPE_MMC, curr_device, original_part) != |
| 340 | 0) |
Stephen Warren | 873cc1d | 2015-12-07 11:38:49 -0700 | [diff] [blame] | 341 | return CMD_RET_FAILURE; |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 342 | return ret; |
| 343 | } |
| 344 | #endif |
| 345 | |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 346 | static int do_mmc_read(struct cmd_tbl *cmdtp, int flag, |
| 347 | int argc, char *const argv[]) |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 348 | { |
| 349 | struct mmc *mmc; |
| 350 | u32 blk, cnt, n; |
| 351 | void *addr; |
| 352 | |
| 353 | if (argc != 4) |
| 354 | return CMD_RET_USAGE; |
| 355 | |
Simon Glass | 7e5f460 | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 356 | addr = (void *)hextoul(argv[1], NULL); |
| 357 | blk = hextoul(argv[2], NULL); |
| 358 | cnt = hextoul(argv[3], NULL); |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 359 | |
Stephen Warren | 1ae24a5 | 2014-05-23 13:24:45 -0600 | [diff] [blame] | 360 | mmc = init_mmc_device(curr_device, false); |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 361 | if (!mmc) |
| 362 | return CMD_RET_FAILURE; |
| 363 | |
| 364 | printf("\nMMC read: dev # %d, block # %d, count %d ... ", |
| 365 | curr_device, blk, cnt); |
| 366 | |
Simon Glass | c40fdca | 2016-05-01 13:52:35 -0600 | [diff] [blame] | 367 | n = blk_dread(mmc_get_blk_desc(mmc), blk, cnt, addr); |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 368 | printf("%d blocks read: %s\n", n, (n == cnt) ? "OK" : "ERROR"); |
| 369 | |
| 370 | return (n == cnt) ? CMD_RET_SUCCESS : CMD_RET_FAILURE; |
| 371 | } |
Jean-Jacques Hiblot | e6fa5a5 | 2018-01-04 15:23:34 +0100 | [diff] [blame] | 372 | |
Alex Kiernan | c232d14 | 2018-05-29 15:30:52 +0000 | [diff] [blame] | 373 | #if CONFIG_IS_ENABLED(CMD_MMC_SWRITE) |
Jassi Brar | 732bc7c | 2018-04-06 12:05:24 +0530 | [diff] [blame] | 374 | static 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 | |
| 382 | static lbaint_t mmc_sparse_reserve(struct sparse_storage *info, |
| 383 | lbaint_t blk, lbaint_t blkcnt) |
| 384 | { |
| 385 | return blkcnt; |
| 386 | } |
| 387 | |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 388 | static int do_mmc_sparse_write(struct cmd_tbl *cmdtp, int flag, |
| 389 | int argc, char *const argv[]) |
Jassi Brar | 732bc7c | 2018-04-06 12:05:24 +0530 | [diff] [blame] | 390 | { |
| 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 Glass | 7e5f460 | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 401 | addr = (void *)hextoul(argv[1], NULL); |
| 402 | blk = hextoul(argv[2], NULL); |
Jassi Brar | 732bc7c | 2018-04-06 12:05:24 +0530 | [diff] [blame] | 403 | |
| 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 Kiernan | c4ded03 | 2018-05-29 15:30:40 +0000 | [diff] [blame] | 431 | if (write_sparse_image(&sparse, dest, addr, NULL)) |
Jassi Brar | 732bc7c | 2018-04-06 12:05:24 +0530 | [diff] [blame] | 432 | return CMD_RET_FAILURE; |
| 433 | else |
| 434 | return CMD_RET_SUCCESS; |
| 435 | } |
| 436 | #endif |
| 437 | |
Alex Kiernan | c232d14 | 2018-05-29 15:30:52 +0000 | [diff] [blame] | 438 | #if CONFIG_IS_ENABLED(MMC_WRITE) |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 439 | static int do_mmc_write(struct cmd_tbl *cmdtp, int flag, |
| 440 | int argc, char *const argv[]) |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 441 | { |
| 442 | struct mmc *mmc; |
| 443 | u32 blk, cnt, n; |
| 444 | void *addr; |
| 445 | |
| 446 | if (argc != 4) |
| 447 | return CMD_RET_USAGE; |
| 448 | |
Simon Glass | 7e5f460 | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 449 | addr = (void *)hextoul(argv[1], NULL); |
| 450 | blk = hextoul(argv[2], NULL); |
| 451 | cnt = hextoul(argv[3], NULL); |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 452 | |
Stephen Warren | 1ae24a5 | 2014-05-23 13:24:45 -0600 | [diff] [blame] | 453 | mmc = init_mmc_device(curr_device, false); |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 454 | if (!mmc) |
| 455 | return CMD_RET_FAILURE; |
| 456 | |
| 457 | printf("\nMMC write: dev # %d, block # %d, count %d ... ", |
| 458 | curr_device, blk, cnt); |
| 459 | |
| 460 | if (mmc_getwp(mmc) == 1) { |
| 461 | printf("Error: card is write protected!\n"); |
| 462 | return CMD_RET_FAILURE; |
| 463 | } |
Simon Glass | c40fdca | 2016-05-01 13:52:35 -0600 | [diff] [blame] | 464 | n = blk_dwrite(mmc_get_blk_desc(mmc), blk, cnt, addr); |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 465 | printf("%d blocks written: %s\n", n, (n == cnt) ? "OK" : "ERROR"); |
| 466 | |
| 467 | return (n == cnt) ? CMD_RET_SUCCESS : CMD_RET_FAILURE; |
| 468 | } |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 469 | |
| 470 | static int do_mmc_erase(struct cmd_tbl *cmdtp, int flag, |
| 471 | int argc, char *const argv[]) |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 472 | { |
| 473 | struct mmc *mmc; |
| 474 | u32 blk, cnt, n; |
| 475 | |
| 476 | if (argc != 3) |
| 477 | return CMD_RET_USAGE; |
| 478 | |
Simon Glass | 7e5f460 | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 479 | blk = hextoul(argv[1], NULL); |
| 480 | cnt = hextoul(argv[2], NULL); |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 481 | |
Stephen Warren | 1ae24a5 | 2014-05-23 13:24:45 -0600 | [diff] [blame] | 482 | mmc = init_mmc_device(curr_device, false); |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 483 | if (!mmc) |
| 484 | return CMD_RET_FAILURE; |
| 485 | |
| 486 | printf("\nMMC erase: dev # %d, block # %d, count %d ... ", |
| 487 | curr_device, blk, cnt); |
| 488 | |
| 489 | if (mmc_getwp(mmc) == 1) { |
| 490 | printf("Error: card is write protected!\n"); |
| 491 | return CMD_RET_FAILURE; |
| 492 | } |
Simon Glass | c40fdca | 2016-05-01 13:52:35 -0600 | [diff] [blame] | 493 | n = blk_derase(mmc_get_blk_desc(mmc), blk, cnt); |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 494 | printf("%d blocks erased: %s\n", n, (n == cnt) ? "OK" : "ERROR"); |
| 495 | |
| 496 | return (n == cnt) ? CMD_RET_SUCCESS : CMD_RET_FAILURE; |
| 497 | } |
Jean-Jacques Hiblot | e6fa5a5 | 2018-01-04 15:23:34 +0100 | [diff] [blame] | 498 | #endif |
| 499 | |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 500 | static int do_mmc_rescan(struct cmd_tbl *cmdtp, int flag, |
| 501 | int argc, char *const argv[]) |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 502 | { |
| 503 | struct mmc *mmc; |
| 504 | |
Aswath Govindraju | 19f7a34 | 2021-08-13 23:04:41 +0530 | [diff] [blame] | 505 | if (argc == 1) { |
| 506 | mmc = init_mmc_device(curr_device, true); |
| 507 | } else if (argc == 2) { |
Heinrich Schuchardt | 2743470 | 2022-04-25 23:11:06 +0200 | [diff] [blame] | 508 | enum bus_mode speed_mode; |
| 509 | |
Aswath Govindraju | 19f7a34 | 2021-08-13 23:04:41 +0530 | [diff] [blame] | 510 | speed_mode = (int)dectoul(argv[1], NULL); |
| 511 | mmc = __init_mmc_device(curr_device, true, speed_mode); |
| 512 | } else { |
| 513 | return CMD_RET_USAGE; |
| 514 | } |
| 515 | |
Stephen Warren | 941944e | 2014-05-23 13:24:46 -0600 | [diff] [blame] | 516 | if (!mmc) |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 517 | return CMD_RET_FAILURE; |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 518 | |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 519 | return CMD_RET_SUCCESS; |
| 520 | } |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 521 | |
| 522 | static int do_mmc_part(struct cmd_tbl *cmdtp, int flag, |
| 523 | int argc, char *const argv[]) |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 524 | { |
Simon Glass | 4101f68 | 2016-02-29 15:25:34 -0700 | [diff] [blame] | 525 | struct blk_desc *mmc_dev; |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 526 | struct mmc *mmc; |
| 527 | |
Stephen Warren | 1ae24a5 | 2014-05-23 13:24:45 -0600 | [diff] [blame] | 528 | mmc = init_mmc_device(curr_device, false); |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 529 | if (!mmc) |
| 530 | return CMD_RET_FAILURE; |
| 531 | |
Simon Glass | 3c457f4 | 2016-05-01 11:36:15 -0600 | [diff] [blame] | 532 | mmc_dev = blk_get_devnum_by_type(IF_TYPE_MMC, curr_device); |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 533 | if (mmc_dev != NULL && mmc_dev->type != DEV_TYPE_UNKNOWN) { |
Simon Glass | 3e8bd46 | 2016-02-29 15:25:48 -0700 | [diff] [blame] | 534 | part_print(mmc_dev); |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 535 | return CMD_RET_SUCCESS; |
| 536 | } |
| 537 | |
| 538 | puts("get mmc type error!\n"); |
| 539 | return CMD_RET_FAILURE; |
| 540 | } |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 541 | |
| 542 | static int do_mmc_dev(struct cmd_tbl *cmdtp, int flag, |
| 543 | int argc, char *const argv[]) |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 544 | { |
Stephen Warren | 60dc58f | 2014-05-23 12:48:10 -0600 | [diff] [blame] | 545 | int dev, part = 0, ret; |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 546 | struct mmc *mmc; |
| 547 | |
| 548 | if (argc == 1) { |
| 549 | dev = curr_device; |
Aswath Govindraju | 19f7a34 | 2021-08-13 23:04:41 +0530 | [diff] [blame] | 550 | mmc = init_mmc_device(dev, true); |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 551 | } else if (argc == 2) { |
Aswath Govindraju | 19f7a34 | 2021-08-13 23:04:41 +0530 | [diff] [blame] | 552 | dev = (int)dectoul(argv[1], NULL); |
| 553 | mmc = init_mmc_device(dev, true); |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 554 | } else if (argc == 3) { |
Simon Glass | 0b1284e | 2021-07-24 09:03:30 -0600 | [diff] [blame] | 555 | dev = (int)dectoul(argv[1], NULL); |
| 556 | part = (int)dectoul(argv[2], NULL); |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 557 | 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; |
| 561 | } |
Aswath Govindraju | 19f7a34 | 2021-08-13 23:04:41 +0530 | [diff] [blame] | 562 | mmc = init_mmc_device(dev, true); |
| 563 | } else if (argc == 4) { |
Heinrich Schuchardt | 2743470 | 2022-04-25 23:11:06 +0200 | [diff] [blame] | 564 | enum bus_mode speed_mode; |
| 565 | |
Aswath Govindraju | 19f7a34 | 2021-08-13 23:04:41 +0530 | [diff] [blame] | 566 | dev = (int)dectoul(argv[1], NULL); |
| 567 | part = (int)dectoul(argv[2], NULL); |
| 568 | if (part > PART_ACCESS_MASK) { |
| 569 | printf("#part_num shouldn't be larger than %d\n", |
| 570 | PART_ACCESS_MASK); |
| 571 | return CMD_RET_FAILURE; |
| 572 | } |
| 573 | speed_mode = (int)dectoul(argv[3], NULL); |
| 574 | mmc = __init_mmc_device(dev, true, speed_mode); |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 575 | } else { |
| 576 | return CMD_RET_USAGE; |
| 577 | } |
| 578 | |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 579 | if (!mmc) |
| 580 | return CMD_RET_FAILURE; |
| 581 | |
Simon Glass | 69f45cd | 2016-05-01 13:52:29 -0600 | [diff] [blame] | 582 | ret = blk_select_hwpart_devnum(IF_TYPE_MMC, dev, part); |
Stephen Warren | 60dc58f | 2014-05-23 12:48:10 -0600 | [diff] [blame] | 583 | printf("switch to partitions #%d, %s\n", |
| 584 | part, (!ret) ? "OK" : "ERROR"); |
| 585 | if (ret) |
| 586 | return 1; |
| 587 | |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 588 | curr_device = dev; |
| 589 | if (mmc->part_config == MMCPART_NOAVAILABLE) |
| 590 | printf("mmc%d is current device\n", curr_device); |
| 591 | else |
| 592 | printf("mmc%d(part %d) is current device\n", |
Simon Glass | c40fdca | 2016-05-01 13:52:35 -0600 | [diff] [blame] | 593 | curr_device, mmc_get_blk_desc(mmc)->hwpart); |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 594 | |
| 595 | return CMD_RET_SUCCESS; |
| 596 | } |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 597 | |
| 598 | static int do_mmc_list(struct cmd_tbl *cmdtp, int flag, |
| 599 | int argc, char *const argv[]) |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 600 | { |
| 601 | print_mmc_devices('\n'); |
| 602 | return CMD_RET_SUCCESS; |
| 603 | } |
Diego Santa Cruz | c599f53 | 2014-12-23 10:50:30 +0100 | [diff] [blame] | 604 | |
Jean-Jacques Hiblot | cf17789 | 2017-11-30 17:44:02 +0100 | [diff] [blame] | 605 | #if CONFIG_IS_ENABLED(MMC_HW_PARTITIONING) |
Marek Vasut | f702dc1 | 2021-09-15 11:43:13 +0200 | [diff] [blame] | 606 | static void parse_hwpart_user_enh_size(struct mmc *mmc, |
| 607 | struct mmc_hwpart_conf *pconf, |
| 608 | char *argv) |
| 609 | { |
Marek Vasut | 1d4b3b2 | 2022-01-17 22:54:29 +0100 | [diff] [blame] | 610 | int i, ret; |
Marek Vasut | f702dc1 | 2021-09-15 11:43:13 +0200 | [diff] [blame] | 611 | |
| 612 | pconf->user.enh_size = 0; |
| 613 | |
| 614 | if (!strcmp(argv, "-")) { /* The rest of eMMC */ |
| 615 | ALLOC_CACHE_ALIGN_BUFFER(u8, ext_csd, MMC_MAX_BLOCK_LEN); |
| 616 | ret = mmc_send_ext_csd(mmc, ext_csd); |
| 617 | if (ret) |
| 618 | return; |
Marek Vasut | 1d4b3b2 | 2022-01-17 22:54:29 +0100 | [diff] [blame] | 619 | /* The enh_size value is in 512B block units */ |
Marek Vasut | f702dc1 | 2021-09-15 11:43:13 +0200 | [diff] [blame] | 620 | pconf->user.enh_size = |
| 621 | ((ext_csd[EXT_CSD_MAX_ENH_SIZE_MULT + 2] << 16) + |
| 622 | (ext_csd[EXT_CSD_MAX_ENH_SIZE_MULT + 1] << 8) + |
| 623 | ext_csd[EXT_CSD_MAX_ENH_SIZE_MULT]) * 1024 * |
| 624 | ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE] * |
| 625 | ext_csd[EXT_CSD_HC_WP_GRP_SIZE]; |
| 626 | pconf->user.enh_size -= pconf->user.enh_start; |
Marek Vasut | 1d4b3b2 | 2022-01-17 22:54:29 +0100 | [diff] [blame] | 627 | for (i = 0; i < ARRAY_SIZE(mmc->capacity_gp); i++) { |
| 628 | /* |
| 629 | * If the eMMC already has GP partitions set, |
| 630 | * subtract their size from the maximum USER |
| 631 | * partition size. |
| 632 | * |
| 633 | * Else, if the command was used to configure new |
| 634 | * GP partitions, subtract their size from maximum |
| 635 | * USER partition size. |
| 636 | */ |
| 637 | if (mmc->capacity_gp[i]) { |
| 638 | /* The capacity_gp is in 1B units */ |
| 639 | pconf->user.enh_size -= mmc->capacity_gp[i] >> 9; |
| 640 | } else if (pconf->gp_part[i].size) { |
| 641 | /* The gp_part[].size is in 512B units */ |
| 642 | pconf->user.enh_size -= pconf->gp_part[i].size; |
| 643 | } |
| 644 | } |
Marek Vasut | f702dc1 | 2021-09-15 11:43:13 +0200 | [diff] [blame] | 645 | } else { |
| 646 | pconf->user.enh_size = dectoul(argv, NULL); |
| 647 | } |
| 648 | } |
| 649 | |
| 650 | static int parse_hwpart_user(struct mmc *mmc, struct mmc_hwpart_conf *pconf, |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 651 | int argc, char *const argv[]) |
Diego Santa Cruz | 189f963 | 2014-12-23 10:50:32 +0100 | [diff] [blame] | 652 | { |
| 653 | int i = 0; |
| 654 | |
| 655 | memset(&pconf->user, 0, sizeof(pconf->user)); |
| 656 | |
| 657 | while (i < argc) { |
| 658 | if (!strcmp(argv[i], "enh")) { |
| 659 | if (i + 2 >= argc) |
| 660 | return -1; |
| 661 | pconf->user.enh_start = |
Simon Glass | 0b1284e | 2021-07-24 09:03:30 -0600 | [diff] [blame] | 662 | dectoul(argv[i + 1], NULL); |
Marek Vasut | f702dc1 | 2021-09-15 11:43:13 +0200 | [diff] [blame] | 663 | parse_hwpart_user_enh_size(mmc, pconf, argv[i + 2]); |
Diego Santa Cruz | 189f963 | 2014-12-23 10:50:32 +0100 | [diff] [blame] | 664 | i += 3; |
| 665 | } else if (!strcmp(argv[i], "wrrel")) { |
| 666 | if (i + 1 >= argc) |
| 667 | return -1; |
| 668 | pconf->user.wr_rel_change = 1; |
| 669 | if (!strcmp(argv[i+1], "on")) |
| 670 | pconf->user.wr_rel_set = 1; |
| 671 | else if (!strcmp(argv[i+1], "off")) |
| 672 | pconf->user.wr_rel_set = 0; |
| 673 | else |
| 674 | return -1; |
| 675 | i += 2; |
| 676 | } else { |
| 677 | break; |
| 678 | } |
| 679 | } |
| 680 | return i; |
| 681 | } |
| 682 | |
| 683 | static int parse_hwpart_gp(struct mmc_hwpart_conf *pconf, int pidx, |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 684 | int argc, char *const argv[]) |
Diego Santa Cruz | 189f963 | 2014-12-23 10:50:32 +0100 | [diff] [blame] | 685 | { |
| 686 | int i; |
| 687 | |
| 688 | memset(&pconf->gp_part[pidx], 0, sizeof(pconf->gp_part[pidx])); |
| 689 | |
| 690 | if (1 >= argc) |
| 691 | return -1; |
Simon Glass | 0b1284e | 2021-07-24 09:03:30 -0600 | [diff] [blame] | 692 | pconf->gp_part[pidx].size = dectoul(argv[0], NULL); |
Diego Santa Cruz | 189f963 | 2014-12-23 10:50:32 +0100 | [diff] [blame] | 693 | |
| 694 | i = 1; |
| 695 | while (i < argc) { |
| 696 | if (!strcmp(argv[i], "enh")) { |
| 697 | pconf->gp_part[pidx].enhanced = 1; |
| 698 | i += 1; |
| 699 | } else if (!strcmp(argv[i], "wrrel")) { |
| 700 | if (i + 1 >= argc) |
| 701 | return -1; |
| 702 | pconf->gp_part[pidx].wr_rel_change = 1; |
| 703 | if (!strcmp(argv[i+1], "on")) |
| 704 | pconf->gp_part[pidx].wr_rel_set = 1; |
| 705 | else if (!strcmp(argv[i+1], "off")) |
| 706 | pconf->gp_part[pidx].wr_rel_set = 0; |
| 707 | else |
| 708 | return -1; |
| 709 | i += 2; |
| 710 | } else { |
| 711 | break; |
| 712 | } |
| 713 | } |
| 714 | return i; |
| 715 | } |
| 716 | |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 717 | static int do_mmc_hwpartition(struct cmd_tbl *cmdtp, int flag, |
| 718 | int argc, char *const argv[]) |
Diego Santa Cruz | c599f53 | 2014-12-23 10:50:30 +0100 | [diff] [blame] | 719 | { |
| 720 | struct mmc *mmc; |
| 721 | struct mmc_hwpart_conf pconf = { }; |
| 722 | enum mmc_hwpart_conf_mode mode = MMC_HWPART_CONF_CHECK; |
Diego Santa Cruz | 189f963 | 2014-12-23 10:50:32 +0100 | [diff] [blame] | 723 | int i, r, pidx; |
Diego Santa Cruz | c599f53 | 2014-12-23 10:50:30 +0100 | [diff] [blame] | 724 | |
| 725 | mmc = init_mmc_device(curr_device, false); |
| 726 | if (!mmc) |
| 727 | return CMD_RET_FAILURE; |
| 728 | |
Jaehoon Chung | 0d453c8 | 2021-09-24 09:23:34 +0900 | [diff] [blame] | 729 | if (IS_SD(mmc)) { |
| 730 | puts("SD doesn't support partitioning\n"); |
| 731 | return CMD_RET_FAILURE; |
| 732 | } |
| 733 | |
Diego Santa Cruz | c599f53 | 2014-12-23 10:50:30 +0100 | [diff] [blame] | 734 | if (argc < 1) |
| 735 | return CMD_RET_USAGE; |
| 736 | i = 1; |
| 737 | while (i < argc) { |
Diego Santa Cruz | 189f963 | 2014-12-23 10:50:32 +0100 | [diff] [blame] | 738 | if (!strcmp(argv[i], "user")) { |
| 739 | i++; |
Marek Vasut | f702dc1 | 2021-09-15 11:43:13 +0200 | [diff] [blame] | 740 | r = parse_hwpart_user(mmc, &pconf, argc - i, &argv[i]); |
Diego Santa Cruz | 189f963 | 2014-12-23 10:50:32 +0100 | [diff] [blame] | 741 | if (r < 0) |
Diego Santa Cruz | c599f53 | 2014-12-23 10:50:30 +0100 | [diff] [blame] | 742 | return CMD_RET_USAGE; |
Diego Santa Cruz | 189f963 | 2014-12-23 10:50:32 +0100 | [diff] [blame] | 743 | i += r; |
Diego Santa Cruz | c599f53 | 2014-12-23 10:50:30 +0100 | [diff] [blame] | 744 | } else if (!strncmp(argv[i], "gp", 2) && |
| 745 | strlen(argv[i]) == 3 && |
| 746 | argv[i][2] >= '1' && argv[i][2] <= '4') { |
Diego Santa Cruz | c599f53 | 2014-12-23 10:50:30 +0100 | [diff] [blame] | 747 | pidx = argv[i][2] - '1'; |
Diego Santa Cruz | 189f963 | 2014-12-23 10:50:32 +0100 | [diff] [blame] | 748 | i++; |
| 749 | r = parse_hwpart_gp(&pconf, pidx, argc-i, &argv[i]); |
| 750 | if (r < 0) |
| 751 | return CMD_RET_USAGE; |
| 752 | i += r; |
Diego Santa Cruz | c599f53 | 2014-12-23 10:50:30 +0100 | [diff] [blame] | 753 | } else if (!strcmp(argv[i], "check")) { |
| 754 | mode = MMC_HWPART_CONF_CHECK; |
| 755 | i++; |
| 756 | } else if (!strcmp(argv[i], "set")) { |
| 757 | mode = MMC_HWPART_CONF_SET; |
| 758 | i++; |
| 759 | } else if (!strcmp(argv[i], "complete")) { |
| 760 | mode = MMC_HWPART_CONF_COMPLETE; |
| 761 | i++; |
| 762 | } else { |
| 763 | return CMD_RET_USAGE; |
| 764 | } |
| 765 | } |
| 766 | |
| 767 | puts("Partition configuration:\n"); |
| 768 | if (pconf.user.enh_size) { |
| 769 | puts("\tUser Enhanced Start: "); |
| 770 | print_size(((u64)pconf.user.enh_start) << 9, "\n"); |
| 771 | puts("\tUser Enhanced Size: "); |
| 772 | print_size(((u64)pconf.user.enh_size) << 9, "\n"); |
| 773 | } else { |
| 774 | puts("\tNo enhanced user data area\n"); |
| 775 | } |
Diego Santa Cruz | 189f963 | 2014-12-23 10:50:32 +0100 | [diff] [blame] | 776 | if (pconf.user.wr_rel_change) |
| 777 | printf("\tUser partition write reliability: %s\n", |
| 778 | pconf.user.wr_rel_set ? "on" : "off"); |
Diego Santa Cruz | c599f53 | 2014-12-23 10:50:30 +0100 | [diff] [blame] | 779 | for (pidx = 0; pidx < 4; pidx++) { |
| 780 | if (pconf.gp_part[pidx].size) { |
| 781 | printf("\tGP%i Capacity: ", pidx+1); |
| 782 | print_size(((u64)pconf.gp_part[pidx].size) << 9, |
| 783 | pconf.gp_part[pidx].enhanced ? |
| 784 | " ENH\n" : "\n"); |
| 785 | } else { |
| 786 | printf("\tNo GP%i partition\n", pidx+1); |
| 787 | } |
Diego Santa Cruz | 189f963 | 2014-12-23 10:50:32 +0100 | [diff] [blame] | 788 | if (pconf.gp_part[pidx].wr_rel_change) |
| 789 | printf("\tGP%i write reliability: %s\n", pidx+1, |
| 790 | pconf.gp_part[pidx].wr_rel_set ? "on" : "off"); |
Diego Santa Cruz | c599f53 | 2014-12-23 10:50:30 +0100 | [diff] [blame] | 791 | } |
| 792 | |
| 793 | if (!mmc_hwpart_config(mmc, &pconf, mode)) { |
| 794 | if (mode == MMC_HWPART_CONF_COMPLETE) |
| 795 | puts("Partitioning successful, " |
| 796 | "power-cycle to make effective\n"); |
| 797 | return CMD_RET_SUCCESS; |
| 798 | } else { |
Diego Santa Cruz | 189f963 | 2014-12-23 10:50:32 +0100 | [diff] [blame] | 799 | puts("Failed!\n"); |
Diego Santa Cruz | c599f53 | 2014-12-23 10:50:30 +0100 | [diff] [blame] | 800 | return CMD_RET_FAILURE; |
| 801 | } |
| 802 | } |
Jean-Jacques Hiblot | cf17789 | 2017-11-30 17:44:02 +0100 | [diff] [blame] | 803 | #endif |
Diego Santa Cruz | c599f53 | 2014-12-23 10:50:30 +0100 | [diff] [blame] | 804 | |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 805 | #ifdef CONFIG_SUPPORT_EMMC_BOOT |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 806 | static int do_mmc_bootbus(struct cmd_tbl *cmdtp, int flag, |
| 807 | int argc, char *const argv[]) |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 808 | { |
| 809 | int dev; |
| 810 | struct mmc *mmc; |
| 811 | u8 width, reset, mode; |
| 812 | |
| 813 | if (argc != 5) |
| 814 | return CMD_RET_USAGE; |
Simon Glass | 0b1284e | 2021-07-24 09:03:30 -0600 | [diff] [blame] | 815 | dev = dectoul(argv[1], NULL); |
| 816 | width = dectoul(argv[2], NULL); |
| 817 | reset = dectoul(argv[3], NULL); |
| 818 | mode = dectoul(argv[4], NULL); |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 819 | |
Stephen Warren | 1ae24a5 | 2014-05-23 13:24:45 -0600 | [diff] [blame] | 820 | mmc = init_mmc_device(dev, false); |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 821 | if (!mmc) |
| 822 | return CMD_RET_FAILURE; |
| 823 | |
| 824 | if (IS_SD(mmc)) { |
| 825 | puts("BOOT_BUS_WIDTH only exists on eMMC\n"); |
| 826 | return CMD_RET_FAILURE; |
| 827 | } |
| 828 | |
Jaehoon Chung | e9978b1 | 2021-02-26 18:38:20 +0900 | [diff] [blame] | 829 | /* |
| 830 | * BOOT_BUS_CONDITIONS[177] |
| 831 | * BOOT_MODE[4:3] |
| 832 | * 0x0 : Use SDR + Backward compatible timing in boot operation |
| 833 | * 0x1 : Use SDR + High Speed Timing in boot operation mode |
| 834 | * 0x2 : Use DDR in boot operation |
| 835 | * RESET_BOOT_BUS_CONDITIONS |
| 836 | * 0x0 : Reset bus width to x1, SDR, Backward compatible |
| 837 | * 0x1 : Retain BOOT_BUS_WIDTH and BOOT_MODE |
| 838 | * BOOT_BUS_WIDTH |
| 839 | * 0x0 : x1(sdr) or x4 (ddr) buswidth |
| 840 | * 0x1 : x4(sdr/ddr) buswith |
| 841 | * 0x2 : x8(sdr/ddr) buswith |
| 842 | * |
| 843 | */ |
| 844 | if (width >= 0x3) { |
| 845 | printf("boot_bus_width %d is invalid\n", width); |
| 846 | return CMD_RET_FAILURE; |
| 847 | } |
| 848 | |
| 849 | if (reset >= 0x2) { |
| 850 | printf("reset_boot_bus_width %d is invalid\n", reset); |
| 851 | return CMD_RET_FAILURE; |
| 852 | } |
| 853 | |
| 854 | if (mode >= 0x3) { |
| 855 | printf("reset_boot_bus_width %d is invalid\n", mode); |
| 856 | return CMD_RET_FAILURE; |
| 857 | } |
| 858 | |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 859 | /* acknowledge to be sent during boot operation */ |
Jaehoon Chung | e9978b1 | 2021-02-26 18:38:20 +0900 | [diff] [blame] | 860 | if (mmc_set_boot_bus_width(mmc, width, reset, mode)) { |
| 861 | puts("BOOT_BUS_WIDTH is failed to change.\n"); |
| 862 | return CMD_RET_FAILURE; |
| 863 | } |
| 864 | |
| 865 | printf("Set to BOOT_BUS_WIDTH = 0x%x, RESET = 0x%x, BOOT_MODE = 0x%x\n", |
| 866 | width, reset, mode); |
| 867 | return CMD_RET_SUCCESS; |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 868 | } |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 869 | |
| 870 | static int do_mmc_boot_resize(struct cmd_tbl *cmdtp, int flag, |
| 871 | int argc, char *const argv[]) |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 872 | { |
| 873 | int dev; |
| 874 | struct mmc *mmc; |
| 875 | u32 bootsize, rpmbsize; |
| 876 | |
| 877 | if (argc != 4) |
| 878 | return CMD_RET_USAGE; |
Simon Glass | 0b1284e | 2021-07-24 09:03:30 -0600 | [diff] [blame] | 879 | dev = dectoul(argv[1], NULL); |
| 880 | bootsize = dectoul(argv[2], NULL); |
| 881 | rpmbsize = dectoul(argv[3], NULL); |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 882 | |
Stephen Warren | 1ae24a5 | 2014-05-23 13:24:45 -0600 | [diff] [blame] | 883 | mmc = init_mmc_device(dev, false); |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 884 | if (!mmc) |
| 885 | return CMD_RET_FAILURE; |
| 886 | |
| 887 | if (IS_SD(mmc)) { |
Heinrich Schuchardt | 71a3e5c | 2020-03-29 19:26:57 +0000 | [diff] [blame] | 888 | printf("It is not an eMMC device\n"); |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 889 | return CMD_RET_FAILURE; |
| 890 | } |
| 891 | |
| 892 | if (mmc_boot_partition_size_change(mmc, bootsize, rpmbsize)) { |
| 893 | printf("EMMC boot partition Size change Failed.\n"); |
| 894 | return CMD_RET_FAILURE; |
| 895 | } |
| 896 | |
| 897 | printf("EMMC boot partition Size %d MB\n", bootsize); |
| 898 | printf("EMMC RPMB partition Size %d MB\n", rpmbsize); |
| 899 | return CMD_RET_SUCCESS; |
| 900 | } |
Angelo Dureghello | bdb6099 | 2017-08-01 14:27:10 +0200 | [diff] [blame] | 901 | |
Reuben Dowle | 5c2beda | 2021-05-14 10:15:43 +1200 | [diff] [blame] | 902 | static int mmc_partconf_print(struct mmc *mmc, const char *varname) |
Angelo Dureghello | bdb6099 | 2017-08-01 14:27:10 +0200 | [diff] [blame] | 903 | { |
| 904 | u8 ack, access, part; |
| 905 | |
| 906 | if (mmc->part_config == MMCPART_NOAVAILABLE) { |
| 907 | printf("No part_config info for ver. 0x%x\n", mmc->version); |
| 908 | return CMD_RET_FAILURE; |
| 909 | } |
| 910 | |
| 911 | access = EXT_CSD_EXTRACT_PARTITION_ACCESS(mmc->part_config); |
| 912 | ack = EXT_CSD_EXTRACT_BOOT_ACK(mmc->part_config); |
| 913 | part = EXT_CSD_EXTRACT_BOOT_PART(mmc->part_config); |
| 914 | |
Reuben Dowle | 5c2beda | 2021-05-14 10:15:43 +1200 | [diff] [blame] | 915 | if(varname) |
| 916 | env_set_hex(varname, part); |
| 917 | |
Angelo Dureghello | bdb6099 | 2017-08-01 14:27:10 +0200 | [diff] [blame] | 918 | printf("EXT_CSD[179], PARTITION_CONFIG:\n" |
| 919 | "BOOT_ACK: 0x%x\n" |
| 920 | "BOOT_PARTITION_ENABLE: 0x%x\n" |
| 921 | "PARTITION_ACCESS: 0x%x\n", ack, part, access); |
| 922 | |
| 923 | return CMD_RET_SUCCESS; |
| 924 | } |
| 925 | |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 926 | static int do_mmc_partconf(struct cmd_tbl *cmdtp, int flag, |
| 927 | int argc, char *const argv[]) |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 928 | { |
| 929 | int dev; |
| 930 | struct mmc *mmc; |
| 931 | u8 ack, part_num, access; |
| 932 | |
Reuben Dowle | 5c2beda | 2021-05-14 10:15:43 +1200 | [diff] [blame] | 933 | if (argc != 2 && argc != 3 && argc != 5) |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 934 | return CMD_RET_USAGE; |
| 935 | |
Simon Glass | 0b1284e | 2021-07-24 09:03:30 -0600 | [diff] [blame] | 936 | dev = dectoul(argv[1], NULL); |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 937 | |
Stephen Warren | 1ae24a5 | 2014-05-23 13:24:45 -0600 | [diff] [blame] | 938 | mmc = init_mmc_device(dev, false); |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 939 | if (!mmc) |
| 940 | return CMD_RET_FAILURE; |
| 941 | |
| 942 | if (IS_SD(mmc)) { |
| 943 | puts("PARTITION_CONFIG only exists on eMMC\n"); |
| 944 | return CMD_RET_FAILURE; |
| 945 | } |
| 946 | |
Reuben Dowle | 5c2beda | 2021-05-14 10:15:43 +1200 | [diff] [blame] | 947 | if (argc == 2 || argc == 3) |
| 948 | return mmc_partconf_print(mmc, argc == 3 ? argv[2] : NULL); |
Angelo Dureghello | bdb6099 | 2017-08-01 14:27:10 +0200 | [diff] [blame] | 949 | |
Simon Glass | 0b1284e | 2021-07-24 09:03:30 -0600 | [diff] [blame] | 950 | ack = dectoul(argv[2], NULL); |
| 951 | part_num = dectoul(argv[3], NULL); |
| 952 | access = dectoul(argv[4], NULL); |
Angelo Dureghello | bdb6099 | 2017-08-01 14:27:10 +0200 | [diff] [blame] | 953 | |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 954 | /* acknowledge to be sent during boot operation */ |
| 955 | return mmc_set_part_conf(mmc, ack, part_num, access); |
| 956 | } |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 957 | |
| 958 | static int do_mmc_rst_func(struct cmd_tbl *cmdtp, int flag, |
| 959 | int argc, char *const argv[]) |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 960 | { |
| 961 | int dev; |
| 962 | struct mmc *mmc; |
| 963 | u8 enable; |
| 964 | |
| 965 | /* |
| 966 | * Set the RST_n_ENABLE bit of RST_n_FUNCTION |
| 967 | * The only valid values are 0x0, 0x1 and 0x2 and writing |
| 968 | * a value of 0x1 or 0x2 sets the value permanently. |
| 969 | */ |
| 970 | if (argc != 3) |
| 971 | return CMD_RET_USAGE; |
| 972 | |
Simon Glass | 0b1284e | 2021-07-24 09:03:30 -0600 | [diff] [blame] | 973 | dev = dectoul(argv[1], NULL); |
| 974 | enable = dectoul(argv[2], NULL); |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 975 | |
Peng Fan | 678e931 | 2015-11-25 17:16:21 +0800 | [diff] [blame] | 976 | if (enable > 2) { |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 977 | puts("Invalid RST_n_ENABLE value\n"); |
| 978 | return CMD_RET_USAGE; |
| 979 | } |
| 980 | |
Stephen Warren | 1ae24a5 | 2014-05-23 13:24:45 -0600 | [diff] [blame] | 981 | mmc = init_mmc_device(dev, false); |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 982 | if (!mmc) |
| 983 | return CMD_RET_FAILURE; |
| 984 | |
| 985 | if (IS_SD(mmc)) { |
| 986 | puts("RST_n_FUNCTION only exists on eMMC\n"); |
| 987 | return CMD_RET_FAILURE; |
| 988 | } |
| 989 | |
| 990 | return mmc_set_rst_n_function(mmc, enable); |
| 991 | } |
| 992 | #endif |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 993 | static int do_mmc_setdsr(struct cmd_tbl *cmdtp, int flag, |
| 994 | int argc, char *const argv[]) |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 995 | { |
| 996 | struct mmc *mmc; |
| 997 | u32 val; |
| 998 | int ret; |
| 999 | |
| 1000 | if (argc != 2) |
| 1001 | return CMD_RET_USAGE; |
Simon Glass | 7e5f460 | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 1002 | val = hextoul(argv[1], NULL); |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 1003 | |
| 1004 | mmc = find_mmc_device(curr_device); |
| 1005 | if (!mmc) { |
| 1006 | printf("no mmc device at slot %x\n", curr_device); |
| 1007 | return CMD_RET_FAILURE; |
| 1008 | } |
| 1009 | ret = mmc_set_dsr(mmc, val); |
| 1010 | printf("set dsr %s\n", (!ret) ? "OK, force rescan" : "ERROR"); |
| 1011 | if (!ret) { |
| 1012 | mmc->has_init = 0; |
| 1013 | if (mmc_init(mmc)) |
| 1014 | return CMD_RET_FAILURE; |
| 1015 | else |
| 1016 | return CMD_RET_SUCCESS; |
| 1017 | } |
| 1018 | return ret; |
| 1019 | } |
| 1020 | |
Tomas Melin | cd3d488 | 2016-11-25 11:01:03 +0200 | [diff] [blame] | 1021 | #ifdef CONFIG_CMD_BKOPS_ENABLE |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 1022 | static int do_mmc_bkops_enable(struct cmd_tbl *cmdtp, int flag, |
| 1023 | int argc, char *const argv[]) |
Tomas Melin | cd3d488 | 2016-11-25 11:01:03 +0200 | [diff] [blame] | 1024 | { |
| 1025 | int dev; |
| 1026 | struct mmc *mmc; |
| 1027 | |
| 1028 | if (argc != 2) |
| 1029 | return CMD_RET_USAGE; |
| 1030 | |
Simon Glass | 0b1284e | 2021-07-24 09:03:30 -0600 | [diff] [blame] | 1031 | dev = dectoul(argv[1], NULL); |
Tomas Melin | cd3d488 | 2016-11-25 11:01:03 +0200 | [diff] [blame] | 1032 | |
| 1033 | mmc = init_mmc_device(dev, false); |
| 1034 | if (!mmc) |
| 1035 | return CMD_RET_FAILURE; |
| 1036 | |
| 1037 | if (IS_SD(mmc)) { |
| 1038 | puts("BKOPS_EN only exists on eMMC\n"); |
| 1039 | return CMD_RET_FAILURE; |
| 1040 | } |
| 1041 | |
| 1042 | return mmc_set_bkops_enable(mmc); |
| 1043 | } |
| 1044 | #endif |
| 1045 | |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 1046 | static int do_mmc_boot_wp(struct cmd_tbl *cmdtp, int flag, |
Heinrich Schuchardt | 0469d84 | 2020-03-30 07:24:19 +0200 | [diff] [blame] | 1047 | int argc, char * const argv[]) |
| 1048 | { |
| 1049 | int err; |
| 1050 | struct mmc *mmc; |
| 1051 | |
| 1052 | mmc = init_mmc_device(curr_device, false); |
| 1053 | if (!mmc) |
| 1054 | return CMD_RET_FAILURE; |
| 1055 | if (IS_SD(mmc)) { |
| 1056 | printf("It is not an eMMC device\n"); |
| 1057 | return CMD_RET_FAILURE; |
| 1058 | } |
| 1059 | err = mmc_boot_wp(mmc); |
| 1060 | if (err) |
| 1061 | return CMD_RET_FAILURE; |
| 1062 | printf("boot areas protected\n"); |
| 1063 | return CMD_RET_SUCCESS; |
| 1064 | } |
| 1065 | |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 1066 | static struct cmd_tbl cmd_mmc[] = { |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 1067 | U_BOOT_CMD_MKENT(info, 1, 0, do_mmcinfo, "", ""), |
| 1068 | U_BOOT_CMD_MKENT(read, 4, 1, do_mmc_read, "", ""), |
Heinrich Schuchardt | 0469d84 | 2020-03-30 07:24:19 +0200 | [diff] [blame] | 1069 | U_BOOT_CMD_MKENT(wp, 1, 0, do_mmc_boot_wp, "", ""), |
Jean-Jacques Hiblot | e6fa5a5 | 2018-01-04 15:23:34 +0100 | [diff] [blame] | 1070 | #if CONFIG_IS_ENABLED(MMC_WRITE) |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 1071 | U_BOOT_CMD_MKENT(write, 4, 0, do_mmc_write, "", ""), |
| 1072 | U_BOOT_CMD_MKENT(erase, 3, 0, do_mmc_erase, "", ""), |
Jean-Jacques Hiblot | e6fa5a5 | 2018-01-04 15:23:34 +0100 | [diff] [blame] | 1073 | #endif |
Alex Kiernan | c232d14 | 2018-05-29 15:30:52 +0000 | [diff] [blame] | 1074 | #if CONFIG_IS_ENABLED(CMD_MMC_SWRITE) |
| 1075 | U_BOOT_CMD_MKENT(swrite, 3, 0, do_mmc_sparse_write, "", ""), |
| 1076 | #endif |
Aswath Govindraju | 19f7a34 | 2021-08-13 23:04:41 +0530 | [diff] [blame] | 1077 | U_BOOT_CMD_MKENT(rescan, 2, 1, do_mmc_rescan, "", ""), |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 1078 | U_BOOT_CMD_MKENT(part, 1, 1, do_mmc_part, "", ""), |
Aswath Govindraju | 19f7a34 | 2021-08-13 23:04:41 +0530 | [diff] [blame] | 1079 | U_BOOT_CMD_MKENT(dev, 4, 0, do_mmc_dev, "", ""), |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 1080 | U_BOOT_CMD_MKENT(list, 1, 1, do_mmc_list, "", ""), |
Jean-Jacques Hiblot | cf17789 | 2017-11-30 17:44:02 +0100 | [diff] [blame] | 1081 | #if CONFIG_IS_ENABLED(MMC_HW_PARTITIONING) |
Diego Santa Cruz | 189f963 | 2014-12-23 10:50:32 +0100 | [diff] [blame] | 1082 | U_BOOT_CMD_MKENT(hwpartition, 28, 0, do_mmc_hwpartition, "", ""), |
Jean-Jacques Hiblot | cf17789 | 2017-11-30 17:44:02 +0100 | [diff] [blame] | 1083 | #endif |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 1084 | #ifdef CONFIG_SUPPORT_EMMC_BOOT |
| 1085 | U_BOOT_CMD_MKENT(bootbus, 5, 0, do_mmc_bootbus, "", ""), |
Wally Yeh | fa7b885 | 2014-09-25 23:00:16 +0800 | [diff] [blame] | 1086 | U_BOOT_CMD_MKENT(bootpart-resize, 4, 0, do_mmc_boot_resize, "", ""), |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 1087 | U_BOOT_CMD_MKENT(partconf, 5, 0, do_mmc_partconf, "", ""), |
| 1088 | U_BOOT_CMD_MKENT(rst-function, 3, 0, do_mmc_rst_func, "", ""), |
| 1089 | #endif |
Alex Kiernan | 5a7b11e | 2018-05-08 04:43:31 +0000 | [diff] [blame] | 1090 | #if CONFIG_IS_ENABLED(CMD_MMC_RPMB) |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 1091 | U_BOOT_CMD_MKENT(rpmb, CONFIG_SYS_MAXARGS, 1, do_mmcrpmb, "", ""), |
| 1092 | #endif |
| 1093 | U_BOOT_CMD_MKENT(setdsr, 2, 0, do_mmc_setdsr, "", ""), |
Tomas Melin | cd3d488 | 2016-11-25 11:01:03 +0200 | [diff] [blame] | 1094 | #ifdef CONFIG_CMD_BKOPS_ENABLE |
| 1095 | U_BOOT_CMD_MKENT(bkops-enable, 2, 0, do_mmc_bkops_enable, "", ""), |
| 1096 | #endif |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 1097 | }; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1098 | |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 1099 | static int do_mmcops(struct cmd_tbl *cmdtp, int flag, int argc, |
| 1100 | char *const argv[]) |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1101 | { |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 1102 | struct cmd_tbl *cp; |
Lei Wen | 6be95cc | 2011-06-22 17:03:30 +0000 | [diff] [blame] | 1103 | |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 1104 | cp = find_cmd_tbl(argv[1], cmd_mmc, ARRAY_SIZE(cmd_mmc)); |
| 1105 | |
| 1106 | /* Drop the mmc command */ |
| 1107 | argc--; |
| 1108 | argv++; |
| 1109 | |
| 1110 | if (cp == NULL || argc > cp->maxargs) |
Simon Glass | 4c12eeb | 2011-12-10 08:44:01 +0000 | [diff] [blame] | 1111 | return CMD_RET_USAGE; |
Boris Brezillon | 80a48dd | 2018-12-03 22:54:20 +0100 | [diff] [blame] | 1112 | if (flag == CMD_FLAG_REPEAT && !cmd_is_repeatable(cp)) |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 1113 | return CMD_RET_SUCCESS; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1114 | |
Lei Wen | ea6ebe2 | 2011-05-02 16:26:25 +0000 | [diff] [blame] | 1115 | if (curr_device < 0) { |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 1116 | if (get_mmc_num() > 0) { |
Lei Wen | ea6ebe2 | 2011-05-02 16:26:25 +0000 | [diff] [blame] | 1117 | curr_device = 0; |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 1118 | } else { |
Lei Wen | ea6ebe2 | 2011-05-02 16:26:25 +0000 | [diff] [blame] | 1119 | puts("No MMC device available\n"); |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 1120 | return CMD_RET_FAILURE; |
Lei Wen | ea6ebe2 | 2011-05-02 16:26:25 +0000 | [diff] [blame] | 1121 | } |
| 1122 | } |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 1123 | return cp->cmd(cmdtp, flag, argc, argv); |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1124 | } |
| 1125 | |
| 1126 | U_BOOT_CMD( |
Diego Santa Cruz | 189f963 | 2014-12-23 10:50:32 +0100 | [diff] [blame] | 1127 | mmc, 29, 1, do_mmcops, |
Mike Frysinger | 852dbfd | 2009-03-23 22:27:34 -0400 | [diff] [blame] | 1128 | "MMC sub system", |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 1129 | "info - display info of the current MMC device\n" |
| 1130 | "mmc read addr blk# cnt\n" |
Lei Wen | ea6ebe2 | 2011-05-02 16:26:25 +0000 | [diff] [blame] | 1131 | "mmc write addr blk# cnt\n" |
Alex Kiernan | c232d14 | 2018-05-29 15:30:52 +0000 | [diff] [blame] | 1132 | #if CONFIG_IS_ENABLED(CMD_MMC_SWRITE) |
Jassi Brar | 732bc7c | 2018-04-06 12:05:24 +0530 | [diff] [blame] | 1133 | "mmc swrite addr blk#\n" |
| 1134 | #endif |
Lei Wen | e6f99a5 | 2011-06-22 17:03:31 +0000 | [diff] [blame] | 1135 | "mmc erase blk# cnt\n" |
Aswath Govindraju | 19f7a34 | 2021-08-13 23:04:41 +0530 | [diff] [blame] | 1136 | "mmc rescan [mode]\n" |
Lei Wen | ea6ebe2 | 2011-05-02 16:26:25 +0000 | [diff] [blame] | 1137 | "mmc part - lists available partition on current mmc device\n" |
Aswath Govindraju | 19f7a34 | 2021-08-13 23:04:41 +0530 | [diff] [blame] | 1138 | "mmc dev [dev] [part] [mode] - show or set current mmc device [partition] and set mode\n" |
| 1139 | " - the required speed mode is passed as the index from the following list\n" |
| 1140 | " [MMC_LEGACY, MMC_HS, SD_HS, MMC_HS_52, MMC_DDR_52, UHS_SDR12, UHS_SDR25,\n" |
| 1141 | " UHS_SDR50, UHS_DDR50, UHS_SDR104, MMC_HS_200, MMC_HS_400, MMC_HS_400_ES]\n" |
Amar | 2a91c91 | 2013-04-27 11:43:00 +0530 | [diff] [blame] | 1142 | "mmc list - lists available devices\n" |
Michal Simek | a633a80 | 2020-06-05 11:45:12 +0200 | [diff] [blame] | 1143 | "mmc wp - power on write protect boot partitions\n" |
Alex Kiernan | 8459367 | 2018-06-11 16:20:09 +0000 | [diff] [blame] | 1144 | #if CONFIG_IS_ENABLED(MMC_HW_PARTITIONING) |
Jaehoon Chung | 8ae82c4 | 2021-02-26 16:07:18 +0900 | [diff] [blame] | 1145 | "mmc hwpartition <USER> <GP> <MODE> - does hardware partitioning\n" |
Diego Santa Cruz | c599f53 | 2014-12-23 10:50:30 +0100 | [diff] [blame] | 1146 | " arguments (sizes in 512-byte blocks):\n" |
Jaehoon Chung | 8ae82c4 | 2021-02-26 16:07:18 +0900 | [diff] [blame] | 1147 | " USER - <user> <enh> <start> <cnt> <wrrel> <{on|off}>\n" |
| 1148 | " : sets user data area attributes\n" |
| 1149 | " GP - <{gp1|gp2|gp3|gp4}> <cnt> <enh> <wrrel> <{on|off}>\n" |
| 1150 | " : general purpose partition\n" |
| 1151 | " MODE - <{check|set|complete}>\n" |
| 1152 | " : mode, complete set partitioning completed\n" |
Diego Santa Cruz | 189f963 | 2014-12-23 10:50:32 +0100 | [diff] [blame] | 1153 | " WARNING: Partitioning is a write-once setting once it is set to complete.\n" |
| 1154 | " Power cycling is required to initialize partitions after set to complete.\n" |
Alex Kiernan | 8459367 | 2018-06-11 16:20:09 +0000 | [diff] [blame] | 1155 | #endif |
Amar | 2a91c91 | 2013-04-27 11:43:00 +0530 | [diff] [blame] | 1156 | #ifdef CONFIG_SUPPORT_EMMC_BOOT |
Jaehoon Chung | 1019b19 | 2020-12-16 07:24:50 +0900 | [diff] [blame] | 1157 | "mmc bootbus <dev> <boot_bus_width> <reset_boot_bus_width> <boot_mode>\n" |
Tom Rini | 5a99b9d | 2014-02-05 10:24:22 -0500 | [diff] [blame] | 1158 | " - Set the BOOT_BUS_WIDTH field of the specified device\n" |
Tom Rini | f1fd957 | 2014-02-05 10:24:20 -0500 | [diff] [blame] | 1159 | "mmc bootpart-resize <dev> <boot part size MB> <RPMB part size MB>\n" |
| 1160 | " - Change sizes of boot and RPMB partitions of specified device\n" |
Reuben Dowle | 5c2beda | 2021-05-14 10:15:43 +1200 | [diff] [blame] | 1161 | "mmc partconf <dev> [[varname] | [<boot_ack> <boot_partition> <partition_access>]]\n" |
Angelo Dureghello | bdb6099 | 2017-08-01 14:27:10 +0200 | [diff] [blame] | 1162 | " - Show or change the bits of the PARTITION_CONFIG field of the specified device\n" |
Reuben Dowle | 5c2beda | 2021-05-14 10:15:43 +1200 | [diff] [blame] | 1163 | " If showing the bits, optionally store the boot_partition field into varname\n" |
Jaehoon Chung | 1019b19 | 2020-12-16 07:24:50 +0900 | [diff] [blame] | 1164 | "mmc rst-function <dev> <value>\n" |
Tom Rini | 33ace36 | 2014-02-07 14:15:20 -0500 | [diff] [blame] | 1165 | " - Change the RST_n_FUNCTION field of the specified device\n" |
| 1166 | " WARNING: This is a write-once field and 0 / 1 / 2 are the only valid values.\n" |
Dirk Behme | 3511b4e | 2009-02-18 19:59:39 +0100 | [diff] [blame] | 1167 | #endif |
Alex Kiernan | 5a7b11e | 2018-05-08 04:43:31 +0000 | [diff] [blame] | 1168 | #if CONFIG_IS_ENABLED(CMD_MMC_RPMB) |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 1169 | "mmc rpmb read addr blk# cnt [address of auth-key] - block size is 256 bytes\n" |
| 1170 | "mmc rpmb write addr blk# cnt <address of auth-key> - block size is 256 bytes\n" |
| 1171 | "mmc rpmb key <address of auth-key> - program the RPMB authentication key.\n" |
| 1172 | "mmc rpmb counter - read the value of the write counter\n" |
| 1173 | #endif |
| 1174 | "mmc setdsr <value> - set DSR register value\n" |
Tomas Melin | cd3d488 | 2016-11-25 11:01:03 +0200 | [diff] [blame] | 1175 | #ifdef CONFIG_CMD_BKOPS_ENABLE |
| 1176 | "mmc bkops-enable <dev> - enable background operations handshake on device\n" |
| 1177 | " WARNING: This is a write-once setting.\n" |
| 1178 | #endif |
Amar | 2a91c91 | 2013-04-27 11:43:00 +0530 | [diff] [blame] | 1179 | ); |
Pierre Aubert | 1fd93c6 | 2014-04-24 10:30:08 +0200 | [diff] [blame] | 1180 | |
| 1181 | /* Old command kept for compatibility. Same as 'mmc info' */ |
| 1182 | U_BOOT_CMD( |
| 1183 | mmcinfo, 1, 0, do_mmcinfo, |
| 1184 | "display MMC info", |
| 1185 | "- display info of the current MMC device" |
| 1186 | ); |