Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 2 | /* |
Marcel Ziswiler | 75b9327 | 2020-01-28 14:42:23 +0100 | [diff] [blame] | 3 | * Copyright (c) 2016-2020 Toradex |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 4 | */ |
| 5 | |
Tom Rini | dec7ea0 | 2024-05-20 13:35:03 -0600 | [diff] [blame] | 6 | #include <config.h> |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 7 | #include <asm/global_data.h> |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 8 | #include "tdx-cfg-block.h" |
Igor Opaniuk | 67c9bfc | 2020-07-15 13:30:55 +0300 | [diff] [blame] | 9 | #include "tdx-eeprom.h" |
| 10 | |
Simon Glass | ed38aef | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 11 | #include <command.h> |
Simon Glass | 274e0b0 | 2020-05-10 11:39:56 -0600 | [diff] [blame] | 12 | #include <asm/cache.h> |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 13 | |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 14 | #include <cli.h> |
| 15 | #include <console.h> |
Simon Glass | 0af6e2d | 2019-08-01 09:46:52 -0600 | [diff] [blame] | 16 | #include <env.h> |
Tom Rini | 063c938 | 2022-07-23 13:05:03 -0400 | [diff] [blame] | 17 | #ifdef CONFIG_TDX_CFG_BLOCK_IS_IN_NOR |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 18 | #include <flash.h> |
Tom Rini | 063c938 | 2022-07-23 13:05:03 -0400 | [diff] [blame] | 19 | #endif |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 20 | #include <malloc.h> |
| 21 | #include <mmc.h> |
| 22 | #include <nand.h> |
Simon Glass | 0ffb9d6 | 2017-05-31 19:47:48 -0600 | [diff] [blame] | 23 | #include <asm/mach-types.h> |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 24 | |
| 25 | DECLARE_GLOBAL_DATA_PTR; |
| 26 | |
| 27 | #define TAG_VALID 0xcf01 |
| 28 | #define TAG_MAC 0x0000 |
Igor Opaniuk | 67c9bfc | 2020-07-15 13:30:55 +0300 | [diff] [blame] | 29 | #define TAG_CAR_SERIAL 0x0021 |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 30 | #define TAG_HW 0x0008 |
| 31 | #define TAG_INVALID 0xffff |
| 32 | |
| 33 | #define TAG_FLAG_VALID 0x1 |
| 34 | |
Igor Opaniuk | 67c9bfc | 2020-07-15 13:30:55 +0300 | [diff] [blame] | 35 | #define TDX_EEPROM_ID_MODULE 0 |
| 36 | #define TDX_EEPROM_ID_CARRIER 1 |
| 37 | |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 38 | #if defined(CONFIG_TDX_CFG_BLOCK_IS_IN_MMC) |
| 39 | #define TDX_CFG_BLOCK_MAX_SIZE 512 |
| 40 | #elif defined(CONFIG_TDX_CFG_BLOCK_IS_IN_NAND) |
| 41 | #define TDX_CFG_BLOCK_MAX_SIZE 64 |
| 42 | #elif defined(CONFIG_TDX_CFG_BLOCK_IS_IN_NOR) |
| 43 | #define TDX_CFG_BLOCK_MAX_SIZE 64 |
Igor Opaniuk | 67c9bfc | 2020-07-15 13:30:55 +0300 | [diff] [blame] | 44 | #elif defined(CONFIG_TDX_CFG_BLOCK_IS_IN_EEPROM) |
| 45 | #define TDX_CFG_BLOCK_MAX_SIZE 64 |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 46 | #else |
| 47 | #error Toradex config block location not set |
| 48 | #endif |
| 49 | |
Igor Opaniuk | 67c9bfc | 2020-07-15 13:30:55 +0300 | [diff] [blame] | 50 | #ifdef CONFIG_TDX_CFG_BLOCK_EXTRA |
| 51 | #define TDX_CFG_BLOCK_EXTRA_MAX_SIZE 64 |
| 52 | #endif |
| 53 | |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 54 | struct toradex_tag { |
| 55 | u32 len:14; |
| 56 | u32 flags:2; |
| 57 | u32 id:16; |
| 58 | }; |
| 59 | |
| 60 | bool valid_cfgblock; |
| 61 | struct toradex_hw tdx_hw_tag; |
| 62 | struct toradex_eth_addr tdx_eth_addr; |
| 63 | u32 tdx_serial; |
Igor Opaniuk | 67c9bfc | 2020-07-15 13:30:55 +0300 | [diff] [blame] | 64 | #ifdef CONFIG_TDX_CFG_BLOCK_EXTRA |
| 65 | u32 tdx_car_serial; |
| 66 | bool valid_cfgblock_carrier; |
| 67 | struct toradex_hw tdx_car_hw_tag; |
| 68 | #endif |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 69 | |
Francesco Dolcini | fed3bc7 | 2022-07-21 15:17:34 +0200 | [diff] [blame] | 70 | #define TARGET_IS_ENABLED(x) IS_ENABLED(CONFIG_TARGET_ ## x) |
| 71 | |
| 72 | const struct toradex_som toradex_modules[] = { |
Francesco Dolcini | 5afd858 | 2022-07-21 15:17:37 +0200 | [diff] [blame] | 73 | [0] = { "UNKNOWN MODULE", 0 }, |
| 74 | [1] = { "Colibri PXA270 312MHz", 0 }, |
| 75 | [2] = { "Colibri PXA270 520MHz", 0 }, |
| 76 | [3] = { "Colibri PXA320 806MHz", 0 }, |
| 77 | [4] = { "Colibri PXA300 208MHz", 0 }, |
| 78 | [5] = { "Colibri PXA310 624MHz", 0 }, |
| 79 | [6] = { "Colibri PXA320IT 806MHz", 0 }, |
| 80 | [7] = { "Colibri PXA300 208MHz XT", 0 }, |
| 81 | [8] = { "Colibri PXA270 312MHz", 0 }, |
| 82 | [9] = { "Colibri PXA270 520MHz", 0 }, |
| 83 | [10] = { "Colibri VF50 128MB", TARGET_IS_ENABLED(COLIBRI_VF) }, |
| 84 | [11] = { "Colibri VF61 256MB", TARGET_IS_ENABLED(COLIBRI_VF) }, |
| 85 | [12] = { "Colibri VF61 256MB IT", TARGET_IS_ENABLED(COLIBRI_VF) }, |
| 86 | [13] = { "Colibri VF50 128MB IT", TARGET_IS_ENABLED(COLIBRI_VF) }, |
| 87 | [14] = { "Colibri iMX6S 256MB", TARGET_IS_ENABLED(COLIBRI_IMX6) }, |
| 88 | [15] = { "Colibri iMX6DL 512MB", TARGET_IS_ENABLED(COLIBRI_IMX6) }, |
| 89 | [16] = { "Colibri iMX6S 256MB IT", TARGET_IS_ENABLED(COLIBRI_IMX6) }, |
| 90 | [17] = { "Colibri iMX6DL 512MB IT", TARGET_IS_ENABLED(COLIBRI_IMX6) }, |
| 91 | [18] = { "UNKNOWN MODULE", 0 }, |
| 92 | [19] = { "UNKNOWN MODULE", 0 }, |
| 93 | [20] = { "Colibri T20 256MB", TARGET_IS_ENABLED(COLIBRI_T20) }, |
| 94 | [21] = { "Colibri T20 512MB", TARGET_IS_ENABLED(COLIBRI_T20) }, |
| 95 | [22] = { "Colibri T20 512MB IT", TARGET_IS_ENABLED(COLIBRI_T20) }, |
| 96 | [23] = { "Colibri T30 1GB", TARGET_IS_ENABLED(COLIBRI_T30) }, |
| 97 | [24] = { "Colibri T20 256MB IT", TARGET_IS_ENABLED(COLIBRI_T20) }, |
| 98 | [25] = { "Apalis T30 2GB", TARGET_IS_ENABLED(APALIS_T30) }, |
| 99 | [26] = { "Apalis T30 1GB", TARGET_IS_ENABLED(APALIS_T30) }, |
| 100 | [27] = { "Apalis iMX6Q 1GB", TARGET_IS_ENABLED(APALIS_IMX6) }, |
| 101 | [28] = { "Apalis iMX6Q 2GB IT", TARGET_IS_ENABLED(APALIS_IMX6) }, |
| 102 | [29] = { "Apalis iMX6D 512MB", TARGET_IS_ENABLED(APALIS_IMX6) }, |
| 103 | [30] = { "Colibri T30 1GB IT", TARGET_IS_ENABLED(COLIBRI_T30) }, |
| 104 | [31] = { "Apalis T30 1GB IT", TARGET_IS_ENABLED(APALIS_T30) }, |
| 105 | [32] = { "Colibri iMX7S 256MB", TARGET_IS_ENABLED(COLIBRI_IMX7) }, |
| 106 | [33] = { "Colibri iMX7D 512MB", TARGET_IS_ENABLED(COLIBRI_IMX7) }, |
| 107 | [34] = { "Apalis TK1 2GB", TARGET_IS_ENABLED(APALIS_TK1) }, |
| 108 | [35] = { "Apalis iMX6D 1GB IT", TARGET_IS_ENABLED(APALIS_IMX6) }, |
| 109 | [36] = { "Colibri iMX6ULL 256MB", TARGET_IS_ENABLED(COLIBRI_IMX6ULL) }, |
| 110 | [37] = { "Apalis iMX8QM 4GB WB IT", TARGET_IS_ENABLED(APALIS_IMX8) }, |
| 111 | [38] = { "Colibri iMX8QXP 2GB WB IT", TARGET_IS_ENABLED(COLIBRI_IMX8X) }, |
| 112 | [39] = { "Colibri iMX7D 1GB", TARGET_IS_ENABLED(COLIBRI_IMX7) }, |
| 113 | [40] = { "Colibri iMX6ULL 512MB WB IT", TARGET_IS_ENABLED(COLIBRI_IMX6ULL) }, |
| 114 | [41] = { "Colibri iMX7D 512MB EPDC", TARGET_IS_ENABLED(COLIBRI_IMX7) }, |
| 115 | [42] = { "Apalis TK1 4GB", TARGET_IS_ENABLED(APALIS_TK1) }, |
| 116 | [43] = { "Colibri T20 512MB IT SETEK", TARGET_IS_ENABLED(COLIBRI_T20) }, |
| 117 | [44] = { "Colibri iMX6ULL 512MB IT", TARGET_IS_ENABLED(COLIBRI_IMX6ULL) }, |
| 118 | [45] = { "Colibri iMX6ULL 512MB WB", TARGET_IS_ENABLED(COLIBRI_IMX6ULL) }, |
| 119 | [46] = { "Apalis iMX8QXP 2GB WB IT", 0 }, |
| 120 | [47] = { "Apalis iMX8QM 4GB IT", TARGET_IS_ENABLED(APALIS_IMX8) }, |
| 121 | [48] = { "Apalis iMX8QP 2GB WB", TARGET_IS_ENABLED(APALIS_IMX8) }, |
| 122 | [49] = { "Apalis iMX8QP 2GB", TARGET_IS_ENABLED(APALIS_IMX8) }, |
| 123 | [50] = { "Colibri iMX8QXP 2GB IT", TARGET_IS_ENABLED(COLIBRI_IMX8X) }, |
| 124 | [51] = { "Colibri iMX8DX 1GB WB", TARGET_IS_ENABLED(COLIBRI_IMX8X) }, |
| 125 | [52] = { "Colibri iMX8DX 1GB", TARGET_IS_ENABLED(COLIBRI_IMX8X) }, |
| 126 | [53] = { "Apalis iMX8QXP 2GB ECC IT", 0 }, |
| 127 | [54] = { "Apalis iMX8DXP 1GB", TARGET_IS_ENABLED(APALIS_IMX8) }, |
| 128 | [55] = { "Verdin iMX8M Mini Quad 2GB WB IT", TARGET_IS_ENABLED(VERDIN_IMX8MM) }, |
| 129 | [56] = { "Verdin iMX8M Nano Quad 1GB WB", 0 }, |
| 130 | [57] = { "Verdin iMX8M Mini DualLite 1GB", TARGET_IS_ENABLED(VERDIN_IMX8MM) }, |
| 131 | [58] = { "Verdin iMX8M Plus Quad 4GB WB IT", TARGET_IS_ENABLED(VERDIN_IMX8MP) }, |
| 132 | [59] = { "Verdin iMX8M Mini Quad 2GB IT", TARGET_IS_ENABLED(VERDIN_IMX8MM) }, |
| 133 | [60] = { "Verdin iMX8M Mini DualLite 1GB WB IT", TARGET_IS_ENABLED(VERDIN_IMX8MM) }, |
| 134 | [61] = { "Verdin iMX8M Plus Quad 2GB", TARGET_IS_ENABLED(VERDIN_IMX8MP) }, |
| 135 | [62] = { "Colibri iMX6ULL 1GB IT", TARGET_IS_ENABLED(COLIBRI_IMX6ULL) }, |
| 136 | [63] = { "Verdin iMX8M Plus Quad 4GB IT", TARGET_IS_ENABLED(VERDIN_IMX8MP) }, |
| 137 | [64] = { "Verdin iMX8M Plus Quad 2GB WB IT", TARGET_IS_ENABLED(VERDIN_IMX8MP) }, |
| 138 | [65] = { "Verdin iMX8M Plus QuadLite 1GB IT", TARGET_IS_ENABLED(VERDIN_IMX8MP) }, |
| 139 | [66] = { "Verdin iMX8M Plus Quad 8GB WB", TARGET_IS_ENABLED(VERDIN_IMX8MP) }, |
| 140 | [67] = { "Apalis iMX8QM 8GB WB IT", TARGET_IS_ENABLED(APALIS_IMX8) }, |
| 141 | [68] = { "Verdin iMX8M Mini Quad 2GB WB IT", TARGET_IS_ENABLED(VERDIN_IMX8MM) }, |
Marcel Ziswiler | 2bb00b8 | 2023-08-04 12:08:05 +0200 | [diff] [blame] | 142 | [69] = { "Verdin AM62 Quad 1GB WB IT", TARGET_IS_ENABLED(VERDIN_AM62_A53) }, |
Emanuele Ghidoli | 898cdec | 2023-05-15 15:06:41 +0200 | [diff] [blame] | 143 | [70] = { "Verdin iMX8M Plus Quad 8GB WB IT", TARGET_IS_ENABLED(VERDIN_IMX8MP) }, |
Marcel Ziswiler | 2bb00b8 | 2023-08-04 12:08:05 +0200 | [diff] [blame] | 144 | [71] = { "Verdin AM62 Solo 512MB", TARGET_IS_ENABLED(VERDIN_AM62_A53) }, |
| 145 | [72] = { "Verdin AM62 Solo 512MB WB IT", TARGET_IS_ENABLED(VERDIN_AM62_A53) }, |
| 146 | [73] = { "Verdin AM62 Dual 1GB ET", TARGET_IS_ENABLED(VERDIN_AM62_A53) }, |
| 147 | [74] = { "Verdin AM62 Dual 1GB IT", TARGET_IS_ENABLED(VERDIN_AM62_A53) }, |
| 148 | [75] = { "Verdin AM62 Dual 1GB WB IT", TARGET_IS_ENABLED(VERDIN_AM62_A53) }, |
| 149 | [76] = { "Verdin AM62 Quad 2GB WB IT", TARGET_IS_ENABLED(VERDIN_AM62_A53) }, |
Joao Paulo Goncalves | bdd3ce4 | 2024-01-22 17:09:30 -0300 | [diff] [blame] | 150 | [77] = { "Colibri iMX6S 256MB", TARGET_IS_ENABLED(COLIBRI_IMX6) }, |
| 151 | [78] = { "Colibri iMX6S 256MB IT", TARGET_IS_ENABLED(COLIBRI_IMX6) }, |
| 152 | [79] = { "Colibri iMX6DL 512MB", TARGET_IS_ENABLED(COLIBRI_IMX6) }, |
| 153 | [80] = { "Colibri iMX6DL 512MB IT", TARGET_IS_ENABLED(COLIBRI_IMX6) }, |
| 154 | [81] = { "Colibri iMX7D 512MB", TARGET_IS_ENABLED(COLIBRI_IMX7) }, |
| 155 | [82] = { "Apalis iMX6D 512MB", TARGET_IS_ENABLED(APALIS_IMX6) }, |
| 156 | [83] = { "Apalis iMX6Q 1GB", TARGET_IS_ENABLED(APALIS_IMX6) }, |
| 157 | [84] = { "Apalis iMX6D 1GB IT", TARGET_IS_ENABLED(APALIS_IMX6) }, |
| 158 | [85] = { "Apalis iMX6Q 2GB IT", TARGET_IS_ENABLED(APALIS_IMX6) }, |
Joao Paulo Goncalves | 9dcd9a9 | 2024-01-31 14:32:04 -0300 | [diff] [blame] | 159 | [86] = { "Verdin iMX8M Mini DualLite 2GB IT", TARGET_IS_ENABLED(VERDIN_IMX8MM) }, |
Joao Paulo Goncalves | 92b38e7 | 2024-03-08 11:18:01 -0300 | [diff] [blame] | 160 | [87] = { "Verdin iMX8M Mini Quad 2GB IT", TARGET_IS_ENABLED(VERDIN_IMX8MM) }, |
Emanuele Ghidoli | 16d6162 | 2024-05-28 11:59:39 +0200 | [diff] [blame^] | 161 | [88] = { "Aquila AM69 Octa 32GB WB IT", TARGET_IS_ENABLED(AQUILA_AM69_A72) }, |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 162 | }; |
| 163 | |
Max Krummenacher | 2ded2d6 | 2023-07-18 11:07:33 +0200 | [diff] [blame] | 164 | struct pid4list { |
| 165 | int pid4; |
| 166 | char * const name; |
Igor Opaniuk | 414df35 | 2020-07-15 13:30:54 +0300 | [diff] [blame] | 167 | }; |
| 168 | |
Max Krummenacher | 2ded2d6 | 2023-07-18 11:07:33 +0200 | [diff] [blame] | 169 | const struct pid4list toradex_carrier_boards[] = { |
| 170 | /* the code assumes unknown at index 0 */ |
| 171 | {0, "UNKNOWN CARRIER BOARD"}, |
| 172 | {DAHLIA, "Dahlia"}, |
| 173 | {VERDIN_DEVELOPMENT_BOARD, "Verdin Development Board"}, |
| 174 | {YAVIA, "Yavia"}, |
| 175 | }; |
| 176 | |
Max Krummenacher | cea0909 | 2023-07-18 11:07:34 +0200 | [diff] [blame] | 177 | const struct pid4list toradex_display_adapters[] = { |
| 178 | /* the code assumes unknown at index 0 */ |
| 179 | {0, "UNKNOWN DISPLAY ADAPTER"}, |
| 180 | {VERDIN_DSI_TO_HDMI_ADAPTER, "Verdin DSI to HDMI Adapter"}, |
| 181 | {VERDIN_DSI_TO_LVDS_ADAPTER, "Verdin DSI to LVDS Adapter"}, |
Igor Opaniuk | 414df35 | 2020-07-15 13:30:54 +0300 | [diff] [blame] | 182 | }; |
| 183 | |
Philippe Schenker | d52a257 | 2022-06-20 16:57:45 +0200 | [diff] [blame] | 184 | const u32 toradex_ouis[] = { |
| 185 | [0] = 0x00142dUL, |
| 186 | [1] = 0x8c06cbUL, |
| 187 | }; |
| 188 | |
Max Krummenacher | 2ded2d6 | 2023-07-18 11:07:33 +0200 | [diff] [blame] | 189 | const char * const get_toradex_carrier_boards(int pid4) |
| 190 | { |
| 191 | int i, index = 0; |
| 192 | |
| 193 | for (i = 1; i < ARRAY_SIZE(toradex_carrier_boards); i++) { |
| 194 | if (pid4 == toradex_carrier_boards[i].pid4) { |
| 195 | index = i; |
| 196 | break; |
| 197 | } |
| 198 | } |
| 199 | return toradex_carrier_boards[index].name; |
| 200 | } |
| 201 | |
Max Krummenacher | cea0909 | 2023-07-18 11:07:34 +0200 | [diff] [blame] | 202 | const char * const get_toradex_display_adapters(int pid4) |
| 203 | { |
| 204 | int i, index = 0; |
| 205 | |
| 206 | for (i = 1; i < ARRAY_SIZE(toradex_display_adapters); i++) { |
| 207 | if (pid4 == toradex_display_adapters[i].pid4) { |
| 208 | index = i; |
| 209 | break; |
| 210 | } |
| 211 | } |
| 212 | return toradex_display_adapters[index].name; |
| 213 | } |
| 214 | |
Philippe Schenker | d52a257 | 2022-06-20 16:57:45 +0200 | [diff] [blame] | 215 | static u32 get_serial_from_mac(struct toradex_eth_addr *eth_addr) |
| 216 | { |
| 217 | int i; |
| 218 | u32 oui = ntohl(eth_addr->oui) >> 8; |
| 219 | u32 nic = ntohl(eth_addr->nic) >> 8; |
| 220 | |
| 221 | for (i = 0; i < ARRAY_SIZE(toradex_ouis); i++) { |
| 222 | if (toradex_ouis[i] == oui) |
| 223 | break; |
| 224 | } |
| 225 | |
| 226 | return (u32)((i << 24) + nic); |
| 227 | } |
| 228 | |
| 229 | void get_mac_from_serial(u32 tdx_serial, struct toradex_eth_addr *eth_addr) |
| 230 | { |
| 231 | u8 oui_index = tdx_serial >> 24; |
| 232 | u32 nic = tdx_serial & GENMASK(23, 0); |
| 233 | u32 oui; |
| 234 | |
| 235 | if (oui_index >= ARRAY_SIZE(toradex_ouis)) { |
| 236 | puts("Can't find OUI for this serial#\n"); |
| 237 | oui_index = 0; |
| 238 | } |
| 239 | |
| 240 | oui = toradex_ouis[oui_index]; |
| 241 | |
| 242 | eth_addr->oui = htonl(oui << 8); |
| 243 | eth_addr->nic = htonl(nic << 8); |
| 244 | } |
| 245 | |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 246 | #ifdef CONFIG_TDX_CFG_BLOCK_IS_IN_MMC |
| 247 | static int tdx_cfg_block_mmc_storage(u8 *config_block, int write) |
| 248 | { |
| 249 | struct mmc *mmc; |
| 250 | int dev = CONFIG_TDX_CFG_BLOCK_DEV; |
| 251 | int offset = CONFIG_TDX_CFG_BLOCK_OFFSET; |
| 252 | uint part = CONFIG_TDX_CFG_BLOCK_PART; |
| 253 | uint blk_start; |
| 254 | int ret = 0; |
| 255 | |
| 256 | /* Read production parameter config block from eMMC */ |
| 257 | mmc = find_mmc_device(dev); |
| 258 | if (!mmc) { |
| 259 | puts("No MMC card found\n"); |
| 260 | ret = -ENODEV; |
| 261 | goto out; |
| 262 | } |
Stefan Agner | dd20234 | 2019-07-12 12:35:05 +0200 | [diff] [blame] | 263 | if (mmc_init(mmc)) { |
| 264 | puts("MMC init failed\n"); |
| 265 | return -EINVAL; |
| 266 | } |
Simon Glass | 8c4c5c8 | 2017-04-23 20:02:11 -0600 | [diff] [blame] | 267 | if (part != mmc_get_blk_desc(mmc)->hwpart) { |
Simon Glass | dbfa32c | 2022-08-11 19:34:59 -0600 | [diff] [blame] | 268 | if (blk_select_hwpart_devnum(UCLASS_MMC, dev, part)) { |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 269 | puts("MMC partition switch failed\n"); |
| 270 | ret = -ENODEV; |
| 271 | goto out; |
| 272 | } |
| 273 | } |
| 274 | if (offset < 0) |
| 275 | offset += mmc->capacity; |
| 276 | blk_start = ALIGN(offset, mmc->write_bl_len) / mmc->write_bl_len; |
| 277 | |
| 278 | if (!write) { |
| 279 | /* Careful reads a whole block of 512 bytes into config_block */ |
| 280 | if (blk_dread(mmc_get_blk_desc(mmc), blk_start, 1, |
| 281 | (unsigned char *)config_block) != 1) { |
| 282 | ret = -EIO; |
| 283 | goto out; |
| 284 | } |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 285 | } else { |
| 286 | /* Just writing one 512 byte block */ |
| 287 | if (blk_dwrite(mmc_get_blk_desc(mmc), blk_start, 1, |
| 288 | (unsigned char *)config_block) != 1) { |
| 289 | ret = -EIO; |
| 290 | goto out; |
| 291 | } |
| 292 | } |
| 293 | |
| 294 | out: |
| 295 | /* Switch back to regular eMMC user partition */ |
Simon Glass | dbfa32c | 2022-08-11 19:34:59 -0600 | [diff] [blame] | 296 | blk_select_hwpart_devnum(UCLASS_MMC, 0, 0); |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 297 | |
| 298 | return ret; |
| 299 | } |
| 300 | #endif |
| 301 | |
| 302 | #ifdef CONFIG_TDX_CFG_BLOCK_IS_IN_NAND |
| 303 | static int read_tdx_cfg_block_from_nand(unsigned char *config_block) |
| 304 | { |
| 305 | size_t size = TDX_CFG_BLOCK_MAX_SIZE; |
Stefan Agner | 8843b6d | 2018-08-06 09:19:18 +0200 | [diff] [blame] | 306 | struct mtd_info *mtd = get_nand_dev_by_index(0); |
| 307 | |
| 308 | if (!mtd) |
| 309 | return -ENODEV; |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 310 | |
| 311 | /* Read production parameter config block from NAND page */ |
Stefan Agner | 8843b6d | 2018-08-06 09:19:18 +0200 | [diff] [blame] | 312 | return nand_read_skip_bad(mtd, CONFIG_TDX_CFG_BLOCK_OFFSET, |
Grygorii Strashko | bb31462 | 2017-06-26 19:13:06 -0500 | [diff] [blame] | 313 | &size, NULL, TDX_CFG_BLOCK_MAX_SIZE, |
| 314 | config_block); |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 315 | } |
| 316 | |
| 317 | static int write_tdx_cfg_block_to_nand(unsigned char *config_block) |
| 318 | { |
| 319 | size_t size = TDX_CFG_BLOCK_MAX_SIZE; |
| 320 | |
| 321 | /* Write production parameter config block to NAND page */ |
Grygorii Strashko | bb31462 | 2017-06-26 19:13:06 -0500 | [diff] [blame] | 322 | return nand_write_skip_bad(get_nand_dev_by_index(0), |
| 323 | CONFIG_TDX_CFG_BLOCK_OFFSET, |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 324 | &size, NULL, TDX_CFG_BLOCK_MAX_SIZE, |
| 325 | config_block, WITH_WR_VERIFY); |
| 326 | } |
| 327 | #endif |
| 328 | |
| 329 | #ifdef CONFIG_TDX_CFG_BLOCK_IS_IN_NOR |
| 330 | static int read_tdx_cfg_block_from_nor(unsigned char *config_block) |
| 331 | { |
| 332 | /* Read production parameter config block from NOR flash */ |
| 333 | memcpy(config_block, (void *)CONFIG_TDX_CFG_BLOCK_OFFSET, |
| 334 | TDX_CFG_BLOCK_MAX_SIZE); |
| 335 | return 0; |
| 336 | } |
| 337 | |
| 338 | static int write_tdx_cfg_block_to_nor(unsigned char *config_block) |
| 339 | { |
| 340 | /* Write production parameter config block to NOR flash */ |
| 341 | return flash_write((void *)config_block, CONFIG_TDX_CFG_BLOCK_OFFSET, |
| 342 | TDX_CFG_BLOCK_MAX_SIZE); |
| 343 | } |
| 344 | #endif |
| 345 | |
Igor Opaniuk | 67c9bfc | 2020-07-15 13:30:55 +0300 | [diff] [blame] | 346 | #ifdef CONFIG_TDX_CFG_BLOCK_IS_IN_EEPROM |
| 347 | static int read_tdx_cfg_block_from_eeprom(unsigned char *config_block) |
| 348 | { |
| 349 | return read_tdx_eeprom_data(TDX_EEPROM_ID_MODULE, 0x0, config_block, |
| 350 | TDX_CFG_BLOCK_MAX_SIZE); |
| 351 | } |
| 352 | |
| 353 | static int write_tdx_cfg_block_to_eeprom(unsigned char *config_block) |
| 354 | { |
| 355 | return write_tdx_eeprom_data(TDX_EEPROM_ID_MODULE, 0x0, config_block, |
| 356 | TDX_CFG_BLOCK_MAX_SIZE); |
| 357 | } |
| 358 | #endif |
| 359 | |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 360 | int read_tdx_cfg_block(void) |
| 361 | { |
| 362 | int ret = 0; |
| 363 | u8 *config_block = NULL; |
| 364 | struct toradex_tag *tag; |
| 365 | size_t size = TDX_CFG_BLOCK_MAX_SIZE; |
| 366 | int offset; |
| 367 | |
| 368 | /* Allocate RAM area for config block */ |
| 369 | config_block = memalign(ARCH_DMA_MINALIGN, size); |
| 370 | if (!config_block) { |
| 371 | printf("Not enough malloc space available!\n"); |
| 372 | return -ENOMEM; |
| 373 | } |
| 374 | |
| 375 | memset(config_block, 0, size); |
| 376 | |
| 377 | #if defined(CONFIG_TDX_CFG_BLOCK_IS_IN_MMC) |
| 378 | ret = tdx_cfg_block_mmc_storage(config_block, 0); |
| 379 | #elif defined(CONFIG_TDX_CFG_BLOCK_IS_IN_NAND) |
| 380 | ret = read_tdx_cfg_block_from_nand(config_block); |
| 381 | #elif defined(CONFIG_TDX_CFG_BLOCK_IS_IN_NOR) |
| 382 | ret = read_tdx_cfg_block_from_nor(config_block); |
Igor Opaniuk | 67c9bfc | 2020-07-15 13:30:55 +0300 | [diff] [blame] | 383 | #elif defined(CONFIG_TDX_CFG_BLOCK_IS_IN_EEPROM) |
| 384 | ret = read_tdx_cfg_block_from_eeprom(config_block); |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 385 | #else |
| 386 | ret = -EINVAL; |
| 387 | #endif |
| 388 | if (ret) |
| 389 | goto out; |
| 390 | |
| 391 | /* Expect a valid tag first */ |
| 392 | tag = (struct toradex_tag *)config_block; |
| 393 | if (tag->flags != TAG_FLAG_VALID || tag->id != TAG_VALID) { |
| 394 | valid_cfgblock = false; |
| 395 | ret = -EINVAL; |
| 396 | goto out; |
| 397 | } |
| 398 | valid_cfgblock = true; |
| 399 | offset = 4; |
| 400 | |
Igor Opaniuk | 67c9bfc | 2020-07-15 13:30:55 +0300 | [diff] [blame] | 401 | /* |
| 402 | * check if there is enough space for storing tag and value of the |
| 403 | * biggest element |
| 404 | */ |
| 405 | while (offset + sizeof(struct toradex_tag) + |
| 406 | sizeof(struct toradex_hw) < TDX_CFG_BLOCK_MAX_SIZE) { |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 407 | tag = (struct toradex_tag *)(config_block + offset); |
| 408 | offset += 4; |
| 409 | if (tag->id == TAG_INVALID) |
| 410 | break; |
| 411 | |
| 412 | if (tag->flags == TAG_FLAG_VALID) { |
| 413 | switch (tag->id) { |
| 414 | case TAG_MAC: |
| 415 | memcpy(&tdx_eth_addr, config_block + offset, |
| 416 | 6); |
| 417 | |
Philippe Schenker | d52a257 | 2022-06-20 16:57:45 +0200 | [diff] [blame] | 418 | tdx_serial = get_serial_from_mac(&tdx_eth_addr); |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 419 | break; |
| 420 | case TAG_HW: |
| 421 | memcpy(&tdx_hw_tag, config_block + offset, 8); |
| 422 | break; |
| 423 | } |
| 424 | } |
| 425 | |
| 426 | /* Get to next tag according to current tags length */ |
| 427 | offset += tag->len * 4; |
| 428 | } |
| 429 | |
| 430 | /* Cap product id to avoid issues with a yet unknown one */ |
Francesco Dolcini | 2dc6814 | 2022-07-21 15:17:33 +0200 | [diff] [blame] | 431 | if (tdx_hw_tag.prodid >= ARRAY_SIZE(toradex_modules)) |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 432 | tdx_hw_tag.prodid = 0; |
| 433 | |
| 434 | out: |
| 435 | free(config_block); |
| 436 | return ret; |
| 437 | } |
| 438 | |
Philippe Schenker | 498f95a | 2022-06-13 19:35:23 +0200 | [diff] [blame] | 439 | static int parse_assembly_string(char *string_to_parse, u16 *assembly) |
| 440 | { |
| 441 | if (string_to_parse[3] >= 'A' && string_to_parse[3] <= 'Z') |
| 442 | *assembly = string_to_parse[3] - 'A'; |
| 443 | else if (string_to_parse[3] == '#') |
| 444 | *assembly = dectoul(&string_to_parse[4], NULL); |
| 445 | else |
| 446 | return -EINVAL; |
| 447 | |
| 448 | return 0; |
| 449 | } |
| 450 | |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 451 | static int get_cfgblock_interactive(void) |
| 452 | { |
| 453 | char message[CONFIG_SYS_CBSIZE]; |
Marcel Ziswiler | eca26ba | 2020-01-28 14:42:24 +0100 | [diff] [blame] | 454 | int len = 0; |
Philippe Schenker | 498f95a | 2022-06-13 19:35:23 +0200 | [diff] [blame] | 455 | int ret = 0; |
Francesco Dolcini | fed3bc7 | 2022-07-21 15:17:34 +0200 | [diff] [blame] | 456 | unsigned int prodid; |
| 457 | int i; |
Philippe Schenker | 48b3703 | 2022-05-09 18:58:15 +0200 | [diff] [blame] | 458 | |
Francesco Dolcini | fed3bc7 | 2022-07-21 15:17:34 +0200 | [diff] [blame] | 459 | printf("Enabled modules:\n"); |
| 460 | for (i = 0; i < ARRAY_SIZE(toradex_modules); i++) { |
| 461 | if (toradex_modules[i].is_enabled) |
| 462 | printf(" %04d %s\n", i, toradex_modules[i].name); |
Philippe Schenker | 48b3703 | 2022-05-09 18:58:15 +0200 | [diff] [blame] | 463 | } |
Marcel Ziswiler | 35e3c6e | 2019-07-12 12:35:06 +0200 | [diff] [blame] | 464 | |
Francesco Dolcini | fed3bc7 | 2022-07-21 15:17:34 +0200 | [diff] [blame] | 465 | sprintf(message, "Enter the module ID: "); |
| 466 | len = cli_readline(message); |
Stefan Agner | 68f5878 | 2019-04-09 17:24:08 +0200 | [diff] [blame] | 467 | |
Francesco Dolcini | fed3bc7 | 2022-07-21 15:17:34 +0200 | [diff] [blame] | 468 | prodid = dectoul(console_buffer, NULL); |
| 469 | if (prodid >= ARRAY_SIZE(toradex_modules) || !toradex_modules[prodid].is_enabled) { |
| 470 | printf("Parsing module id failed\n"); |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 471 | return -1; |
| 472 | } |
Francesco Dolcini | fed3bc7 | 2022-07-21 15:17:34 +0200 | [diff] [blame] | 473 | tdx_hw_tag.prodid = prodid; |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 474 | |
Francesco Dolcini | fed3bc7 | 2022-07-21 15:17:34 +0200 | [diff] [blame] | 475 | len = 0; |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 476 | while (len < 4) { |
Philippe Schenker | 498f95a | 2022-06-13 19:35:23 +0200 | [diff] [blame] | 477 | sprintf(message, "Enter the module version (e.g. V1.1B or V1.1#26): V"); |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 478 | len = cli_readline(message); |
| 479 | } |
| 480 | |
| 481 | tdx_hw_tag.ver_major = console_buffer[0] - '0'; |
| 482 | tdx_hw_tag.ver_minor = console_buffer[2] - '0'; |
Philippe Schenker | 498f95a | 2022-06-13 19:35:23 +0200 | [diff] [blame] | 483 | |
| 484 | ret = parse_assembly_string(console_buffer, &tdx_hw_tag.ver_assembly); |
| 485 | if (ret) { |
| 486 | printf("Parsing module version failed\n"); |
| 487 | return ret; |
| 488 | } |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 489 | |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 490 | while (len < 8) { |
| 491 | sprintf(message, "Enter module serial number: "); |
| 492 | len = cli_readline(message); |
| 493 | } |
| 494 | |
Simon Glass | ff9b903 | 2021-07-24 09:03:30 -0600 | [diff] [blame] | 495 | tdx_serial = dectoul(console_buffer, NULL); |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 496 | |
| 497 | return 0; |
| 498 | } |
| 499 | |
Igor Opaniuk | 67c9bfc | 2020-07-15 13:30:55 +0300 | [diff] [blame] | 500 | static int get_cfgblock_barcode(char *barcode, struct toradex_hw *tag, |
| 501 | u32 *serial) |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 502 | { |
Denys Drozdov | 3a1c657 | 2021-04-07 15:28:24 +0300 | [diff] [blame] | 503 | char revision[3] = {barcode[6], barcode[7], '\0'}; |
| 504 | |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 505 | if (strlen(barcode) < 16) { |
| 506 | printf("Argument too short, barcode is 16 chars long\n"); |
| 507 | return -1; |
| 508 | } |
| 509 | |
| 510 | /* Get hardware information from the first 8 digits */ |
Igor Opaniuk | 67c9bfc | 2020-07-15 13:30:55 +0300 | [diff] [blame] | 511 | tag->ver_major = barcode[4] - '0'; |
| 512 | tag->ver_minor = barcode[5] - '0'; |
Simon Glass | ff9b903 | 2021-07-24 09:03:30 -0600 | [diff] [blame] | 513 | tag->ver_assembly = dectoul(revision, NULL); |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 514 | |
| 515 | barcode[4] = '\0'; |
Simon Glass | ff9b903 | 2021-07-24 09:03:30 -0600 | [diff] [blame] | 516 | tag->prodid = dectoul(barcode, NULL); |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 517 | |
| 518 | /* Parse second part of the barcode (serial number */ |
| 519 | barcode += 8; |
Simon Glass | ff9b903 | 2021-07-24 09:03:30 -0600 | [diff] [blame] | 520 | *serial = dectoul(barcode, NULL); |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 521 | |
| 522 | return 0; |
| 523 | } |
| 524 | |
Igor Opaniuk | 67c9bfc | 2020-07-15 13:30:55 +0300 | [diff] [blame] | 525 | static int write_tag(u8 *config_block, int *offset, int tag_id, |
| 526 | u8 *tag_data, size_t tag_data_size) |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 527 | { |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 528 | struct toradex_tag *tag; |
Igor Opaniuk | 67c9bfc | 2020-07-15 13:30:55 +0300 | [diff] [blame] | 529 | |
| 530 | if (!offset || !config_block) |
| 531 | return -EINVAL; |
| 532 | |
| 533 | tag = (struct toradex_tag *)(config_block + *offset); |
| 534 | tag->id = tag_id; |
| 535 | tag->flags = TAG_FLAG_VALID; |
| 536 | /* len is provided as number of 32bit values after the tag */ |
| 537 | tag->len = (tag_data_size + sizeof(u32) - 1) / sizeof(u32); |
| 538 | *offset += sizeof(struct toradex_tag); |
| 539 | if (tag_data && tag_data_size) { |
| 540 | memcpy(config_block + *offset, tag_data, |
| 541 | tag_data_size); |
| 542 | *offset += tag_data_size; |
| 543 | } |
| 544 | |
| 545 | return 0; |
| 546 | } |
| 547 | |
| 548 | #ifdef CONFIG_TDX_CFG_BLOCK_EXTRA |
| 549 | int read_tdx_cfg_block_carrier(void) |
| 550 | { |
| 551 | int ret = 0; |
| 552 | u8 *config_block = NULL; |
| 553 | struct toradex_tag *tag; |
| 554 | size_t size = TDX_CFG_BLOCK_EXTRA_MAX_SIZE; |
| 555 | int offset; |
| 556 | |
| 557 | /* Allocate RAM area for carrier config block */ |
| 558 | config_block = memalign(ARCH_DMA_MINALIGN, size); |
| 559 | if (!config_block) { |
| 560 | printf("Not enough malloc space available!\n"); |
| 561 | return -ENOMEM; |
| 562 | } |
| 563 | |
| 564 | memset(config_block, 0, size); |
| 565 | |
| 566 | ret = read_tdx_eeprom_data(TDX_EEPROM_ID_CARRIER, 0x0, config_block, |
| 567 | size); |
| 568 | if (ret) |
| 569 | return ret; |
| 570 | |
| 571 | /* Expect a valid tag first */ |
| 572 | tag = (struct toradex_tag *)config_block; |
| 573 | if (tag->flags != TAG_FLAG_VALID || tag->id != TAG_VALID) { |
| 574 | valid_cfgblock_carrier = false; |
| 575 | ret = -EINVAL; |
| 576 | goto out; |
| 577 | } |
| 578 | valid_cfgblock_carrier = true; |
| 579 | offset = 4; |
| 580 | |
| 581 | while (offset + sizeof(struct toradex_tag) + |
| 582 | sizeof(struct toradex_hw) < TDX_CFG_BLOCK_MAX_SIZE) { |
| 583 | tag = (struct toradex_tag *)(config_block + offset); |
| 584 | offset += 4; |
| 585 | if (tag->id == TAG_INVALID) |
| 586 | break; |
| 587 | |
| 588 | if (tag->flags == TAG_FLAG_VALID) { |
| 589 | switch (tag->id) { |
| 590 | case TAG_CAR_SERIAL: |
| 591 | memcpy(&tdx_car_serial, config_block + offset, |
| 592 | sizeof(tdx_car_serial)); |
| 593 | break; |
| 594 | case TAG_HW: |
| 595 | memcpy(&tdx_car_hw_tag, config_block + |
| 596 | offset, 8); |
| 597 | break; |
| 598 | } |
| 599 | } |
| 600 | |
| 601 | /* Get to next tag according to current tags length */ |
| 602 | offset += tag->len * 4; |
| 603 | } |
| 604 | out: |
| 605 | free(config_block); |
| 606 | return ret; |
| 607 | } |
| 608 | |
Igor Opaniuk | e9ad67a | 2020-07-15 13:30:56 +0300 | [diff] [blame] | 609 | int check_pid8_sanity(char *pid8) |
| 610 | { |
| 611 | char s_carrierid_verdin_dev[5]; |
| 612 | char s_carrierid_dahlia[5]; |
| 613 | |
| 614 | sprintf(s_carrierid_verdin_dev, "0%d", VERDIN_DEVELOPMENT_BOARD); |
| 615 | sprintf(s_carrierid_dahlia, "0%d", DAHLIA); |
| 616 | |
| 617 | /* sane value check, first 4 chars which represent carrier id */ |
| 618 | if (!strncmp(pid8, s_carrierid_verdin_dev, 4)) |
| 619 | return 0; |
| 620 | |
| 621 | if (!strncmp(pid8, s_carrierid_dahlia, 4)) |
| 622 | return 0; |
| 623 | |
| 624 | return -EINVAL; |
| 625 | } |
| 626 | |
| 627 | int try_migrate_tdx_cfg_block_carrier(void) |
| 628 | { |
| 629 | char pid8[8]; |
| 630 | int offset = 0; |
| 631 | int ret = CMD_RET_SUCCESS; |
| 632 | size_t size = TDX_CFG_BLOCK_EXTRA_MAX_SIZE; |
| 633 | u8 *config_block; |
| 634 | |
| 635 | memset(pid8, 0x0, 8); |
| 636 | ret = read_tdx_eeprom_data(TDX_EEPROM_ID_CARRIER, 0x0, (u8 *)pid8, 8); |
| 637 | if (ret) |
| 638 | return ret; |
| 639 | |
| 640 | if (check_pid8_sanity(pid8)) |
| 641 | return -EINVAL; |
| 642 | |
| 643 | /* Allocate RAM area for config block */ |
| 644 | config_block = memalign(ARCH_DMA_MINALIGN, size); |
| 645 | if (!config_block) { |
| 646 | printf("Not enough malloc space available!\n"); |
| 647 | return CMD_RET_FAILURE; |
| 648 | } |
| 649 | |
| 650 | memset(config_block, 0xff, size); |
| 651 | /* we try parse PID8 concatenating zeroed serial number */ |
| 652 | tdx_car_hw_tag.ver_major = pid8[4] - '0'; |
| 653 | tdx_car_hw_tag.ver_minor = pid8[5] - '0'; |
| 654 | tdx_car_hw_tag.ver_assembly = pid8[7] - '0'; |
| 655 | |
| 656 | pid8[4] = '\0'; |
Simon Glass | ff9b903 | 2021-07-24 09:03:30 -0600 | [diff] [blame] | 657 | tdx_car_hw_tag.prodid = dectoul(pid8, NULL); |
Igor Opaniuk | e9ad67a | 2020-07-15 13:30:56 +0300 | [diff] [blame] | 658 | |
| 659 | /* Valid Tag */ |
| 660 | write_tag(config_block, &offset, TAG_VALID, NULL, 0); |
| 661 | |
| 662 | /* Product Tag */ |
| 663 | write_tag(config_block, &offset, TAG_HW, (u8 *)&tdx_car_hw_tag, |
| 664 | sizeof(tdx_car_hw_tag)); |
| 665 | |
| 666 | /* Serial Tag */ |
| 667 | write_tag(config_block, &offset, TAG_CAR_SERIAL, (u8 *)&tdx_car_serial, |
| 668 | sizeof(tdx_car_serial)); |
| 669 | |
| 670 | memset(config_block + offset, 0, 32 - offset); |
| 671 | ret = write_tdx_eeprom_data(TDX_EEPROM_ID_CARRIER, 0x0, config_block, |
| 672 | size); |
| 673 | if (ret) { |
| 674 | printf("Failed to write Toradex Extra config block: %d\n", |
| 675 | ret); |
| 676 | ret = CMD_RET_FAILURE; |
| 677 | goto out; |
| 678 | } |
| 679 | |
| 680 | printf("Successfully migrated to Toradex Config Block from PID8\n"); |
| 681 | |
| 682 | out: |
| 683 | free(config_block); |
| 684 | return ret; |
| 685 | } |
| 686 | |
Igor Opaniuk | 67c9bfc | 2020-07-15 13:30:55 +0300 | [diff] [blame] | 687 | static int get_cfgblock_carrier_interactive(void) |
| 688 | { |
| 689 | char message[CONFIG_SYS_CBSIZE]; |
| 690 | int len; |
Philippe Schenker | 498f95a | 2022-06-13 19:35:23 +0200 | [diff] [blame] | 691 | int ret = 0; |
Igor Opaniuk | 67c9bfc | 2020-07-15 13:30:55 +0300 | [diff] [blame] | 692 | |
| 693 | printf("Supported carrier boards:\n"); |
Max Krummenacher | 2ded2d6 | 2023-07-18 11:07:33 +0200 | [diff] [blame] | 694 | printf("%30s\t[ID]\n", "CARRIER BOARD NAME"); |
Francesco Dolcini | 2dc6814 | 2022-07-21 15:17:33 +0200 | [diff] [blame] | 695 | for (int i = 0; i < ARRAY_SIZE(toradex_carrier_boards); i++) |
Max Krummenacher | 2ded2d6 | 2023-07-18 11:07:33 +0200 | [diff] [blame] | 696 | printf("%30s\t[%d]\n", |
| 697 | toradex_carrier_boards[i].name, |
| 698 | toradex_carrier_boards[i].pid4); |
Igor Opaniuk | 67c9bfc | 2020-07-15 13:30:55 +0300 | [diff] [blame] | 699 | |
| 700 | sprintf(message, "Choose your carrier board (provide ID): "); |
| 701 | len = cli_readline(message); |
Simon Glass | ff9b903 | 2021-07-24 09:03:30 -0600 | [diff] [blame] | 702 | tdx_car_hw_tag.prodid = dectoul(console_buffer, NULL); |
Igor Opaniuk | 67c9bfc | 2020-07-15 13:30:55 +0300 | [diff] [blame] | 703 | |
| 704 | do { |
Philippe Schenker | 498f95a | 2022-06-13 19:35:23 +0200 | [diff] [blame] | 705 | sprintf(message, "Enter carrier board version (e.g. V1.1B or V1.1#26): V"); |
Igor Opaniuk | 67c9bfc | 2020-07-15 13:30:55 +0300 | [diff] [blame] | 706 | len = cli_readline(message); |
| 707 | } while (len < 4); |
| 708 | |
| 709 | tdx_car_hw_tag.ver_major = console_buffer[0] - '0'; |
| 710 | tdx_car_hw_tag.ver_minor = console_buffer[2] - '0'; |
Philippe Schenker | 498f95a | 2022-06-13 19:35:23 +0200 | [diff] [blame] | 711 | |
| 712 | ret = parse_assembly_string(console_buffer, &tdx_car_hw_tag.ver_assembly); |
| 713 | if (ret) { |
| 714 | printf("Parsing module version failed\n"); |
| 715 | return ret; |
| 716 | } |
Igor Opaniuk | 67c9bfc | 2020-07-15 13:30:55 +0300 | [diff] [blame] | 717 | |
| 718 | while (len < 8) { |
| 719 | sprintf(message, "Enter carrier board serial number: "); |
| 720 | len = cli_readline(message); |
| 721 | } |
| 722 | |
Simon Glass | ff9b903 | 2021-07-24 09:03:30 -0600 | [diff] [blame] | 723 | tdx_car_serial = dectoul(console_buffer, NULL); |
Igor Opaniuk | 67c9bfc | 2020-07-15 13:30:55 +0300 | [diff] [blame] | 724 | |
| 725 | return 0; |
| 726 | } |
| 727 | |
| 728 | static int do_cfgblock_carrier_create(struct cmd_tbl *cmdtp, int flag, int argc, |
| 729 | char * const argv[]) |
| 730 | { |
| 731 | u8 *config_block; |
| 732 | size_t size = TDX_CFG_BLOCK_EXTRA_MAX_SIZE; |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 733 | int offset = 0; |
| 734 | int ret = CMD_RET_SUCCESS; |
| 735 | int err; |
Dominik Sliwa | f1e1059 | 2019-03-25 17:18:27 +0100 | [diff] [blame] | 736 | int force_overwrite = 0; |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 737 | |
Igor Opaniuk | 67c9bfc | 2020-07-15 13:30:55 +0300 | [diff] [blame] | 738 | if (argc >= 3) { |
| 739 | if (argv[2][0] == '-' && argv[2][1] == 'y') |
| 740 | force_overwrite = 1; |
| 741 | } |
| 742 | |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 743 | /* Allocate RAM area for config block */ |
| 744 | config_block = memalign(ARCH_DMA_MINALIGN, size); |
| 745 | if (!config_block) { |
| 746 | printf("Not enough malloc space available!\n"); |
| 747 | return CMD_RET_FAILURE; |
| 748 | } |
| 749 | |
| 750 | memset(config_block, 0xff, size); |
Igor Opaniuk | 67c9bfc | 2020-07-15 13:30:55 +0300 | [diff] [blame] | 751 | read_tdx_cfg_block_carrier(); |
| 752 | if (valid_cfgblock_carrier && !force_overwrite) { |
| 753 | char message[CONFIG_SYS_CBSIZE]; |
| 754 | |
| 755 | sprintf(message, "A valid Toradex Carrier config block is present, still recreate? [y/N] "); |
| 756 | |
| 757 | if (!cli_readline(message)) |
| 758 | goto out; |
| 759 | |
| 760 | if (console_buffer[0] != 'y' && |
| 761 | console_buffer[0] != 'Y') |
| 762 | goto out; |
| 763 | } |
| 764 | |
| 765 | if (argc < 3 || (force_overwrite && argc < 4)) { |
| 766 | err = get_cfgblock_carrier_interactive(); |
| 767 | } else { |
| 768 | if (force_overwrite) |
| 769 | err = get_cfgblock_barcode(argv[3], &tdx_car_hw_tag, |
| 770 | &tdx_car_serial); |
| 771 | else |
| 772 | err = get_cfgblock_barcode(argv[2], &tdx_car_hw_tag, |
| 773 | &tdx_car_serial); |
| 774 | } |
| 775 | |
| 776 | if (err) { |
| 777 | ret = CMD_RET_FAILURE; |
| 778 | goto out; |
| 779 | } |
| 780 | |
| 781 | /* Valid Tag */ |
| 782 | write_tag(config_block, &offset, TAG_VALID, NULL, 0); |
| 783 | |
| 784 | /* Product Tag */ |
| 785 | write_tag(config_block, &offset, TAG_HW, (u8 *)&tdx_car_hw_tag, |
| 786 | sizeof(tdx_car_hw_tag)); |
| 787 | |
| 788 | /* Serial Tag */ |
| 789 | write_tag(config_block, &offset, TAG_CAR_SERIAL, (u8 *)&tdx_car_serial, |
| 790 | sizeof(tdx_car_serial)); |
| 791 | |
| 792 | memset(config_block + offset, 0, 32 - offset); |
| 793 | err = write_tdx_eeprom_data(TDX_EEPROM_ID_CARRIER, 0x0, config_block, |
| 794 | size); |
| 795 | if (err) { |
| 796 | printf("Failed to write Toradex Extra config block: %d\n", |
| 797 | ret); |
| 798 | ret = CMD_RET_FAILURE; |
| 799 | goto out; |
| 800 | } |
| 801 | |
| 802 | printf("Toradex Extra config block successfully written\n"); |
| 803 | |
| 804 | out: |
| 805 | free(config_block); |
| 806 | return ret; |
| 807 | } |
| 808 | |
| 809 | #endif /* CONFIG_TDX_CFG_BLOCK_EXTRA */ |
| 810 | |
| 811 | static int do_cfgblock_create(struct cmd_tbl *cmdtp, int flag, int argc, |
| 812 | char * const argv[]) |
| 813 | { |
| 814 | u8 *config_block; |
| 815 | size_t size = TDX_CFG_BLOCK_MAX_SIZE; |
| 816 | int offset = 0; |
| 817 | int ret = CMD_RET_SUCCESS; |
| 818 | int err; |
| 819 | int force_overwrite = 0; |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 820 | |
Dominik Sliwa | f1e1059 | 2019-03-25 17:18:27 +0100 | [diff] [blame] | 821 | if (argc >= 3) { |
Igor Opaniuk | 67c9bfc | 2020-07-15 13:30:55 +0300 | [diff] [blame] | 822 | #ifdef CONFIG_TDX_CFG_BLOCK_EXTRA |
| 823 | if (!strcmp(argv[2], "carrier")) |
| 824 | return do_cfgblock_carrier_create(cmdtp, flag, |
| 825 | --argc, ++argv); |
| 826 | #endif /* CONFIG_TDX_CFG_BLOCK_EXTRA */ |
Dominik Sliwa | f1e1059 | 2019-03-25 17:18:27 +0100 | [diff] [blame] | 827 | if (argv[2][0] == '-' && argv[2][1] == 'y') |
| 828 | force_overwrite = 1; |
| 829 | } |
| 830 | |
Igor Opaniuk | 67c9bfc | 2020-07-15 13:30:55 +0300 | [diff] [blame] | 831 | /* Allocate RAM area for config block */ |
| 832 | config_block = memalign(ARCH_DMA_MINALIGN, size); |
| 833 | if (!config_block) { |
| 834 | printf("Not enough malloc space available!\n"); |
| 835 | return CMD_RET_FAILURE; |
| 836 | } |
| 837 | |
| 838 | memset(config_block, 0xff, size); |
| 839 | |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 840 | read_tdx_cfg_block(); |
| 841 | if (valid_cfgblock) { |
| 842 | #if defined(CONFIG_TDX_CFG_BLOCK_IS_IN_NAND) |
| 843 | /* |
| 844 | * On NAND devices, recreation is only allowed if the page is |
| 845 | * empty (config block invalid...) |
| 846 | */ |
Marcel Ziswiler | 6cf2f78 | 2019-07-12 12:35:09 +0200 | [diff] [blame] | 847 | printf("NAND erase block %d need to be erased before creating a Toradex config block\n", |
Grygorii Strashko | bb31462 | 2017-06-26 19:13:06 -0500 | [diff] [blame] | 848 | CONFIG_TDX_CFG_BLOCK_OFFSET / |
| 849 | get_nand_dev_by_index(0)->erasesize); |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 850 | goto out; |
| 851 | #elif defined(CONFIG_TDX_CFG_BLOCK_IS_IN_NOR) |
| 852 | /* |
| 853 | * On NOR devices, recreation is only allowed if the sector is |
| 854 | * empty and write protection is off (config block invalid...) |
| 855 | */ |
Marcel Ziswiler | 6cf2f78 | 2019-07-12 12:35:09 +0200 | [diff] [blame] | 856 | printf("NOR sector at offset 0x%02x need to be erased and unprotected before creating a Toradex config block\n", |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 857 | CONFIG_TDX_CFG_BLOCK_OFFSET); |
| 858 | goto out; |
| 859 | #else |
Dominik Sliwa | f1e1059 | 2019-03-25 17:18:27 +0100 | [diff] [blame] | 860 | if (!force_overwrite) { |
| 861 | char message[CONFIG_SYS_CBSIZE]; |
| 862 | |
| 863 | sprintf(message, |
| 864 | "A valid Toradex config block is present, still recreate? [y/N] "); |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 865 | |
Dominik Sliwa | f1e1059 | 2019-03-25 17:18:27 +0100 | [diff] [blame] | 866 | if (!cli_readline(message)) |
| 867 | goto out; |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 868 | |
Dominik Sliwa | f1e1059 | 2019-03-25 17:18:27 +0100 | [diff] [blame] | 869 | if (console_buffer[0] != 'y' && |
| 870 | console_buffer[0] != 'Y') |
| 871 | goto out; |
| 872 | } |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 873 | #endif |
| 874 | } |
| 875 | |
| 876 | /* Parse new Toradex config block data... */ |
Dominik Sliwa | f1e1059 | 2019-03-25 17:18:27 +0100 | [diff] [blame] | 877 | if (argc < 3 || (force_overwrite && argc < 4)) { |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 878 | err = get_cfgblock_interactive(); |
Dominik Sliwa | f1e1059 | 2019-03-25 17:18:27 +0100 | [diff] [blame] | 879 | } else { |
| 880 | if (force_overwrite) |
Igor Opaniuk | 67c9bfc | 2020-07-15 13:30:55 +0300 | [diff] [blame] | 881 | err = get_cfgblock_barcode(argv[3], &tdx_hw_tag, |
| 882 | &tdx_serial); |
Dominik Sliwa | f1e1059 | 2019-03-25 17:18:27 +0100 | [diff] [blame] | 883 | else |
Igor Opaniuk | 67c9bfc | 2020-07-15 13:30:55 +0300 | [diff] [blame] | 884 | err = get_cfgblock_barcode(argv[2], &tdx_hw_tag, |
| 885 | &tdx_serial); |
Dominik Sliwa | f1e1059 | 2019-03-25 17:18:27 +0100 | [diff] [blame] | 886 | } |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 887 | if (err) { |
| 888 | ret = CMD_RET_FAILURE; |
| 889 | goto out; |
| 890 | } |
| 891 | |
| 892 | /* Convert serial number to MAC address (the storage format) */ |
Philippe Schenker | d52a257 | 2022-06-20 16:57:45 +0200 | [diff] [blame] | 893 | get_mac_from_serial(tdx_serial, &tdx_eth_addr); |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 894 | |
| 895 | /* Valid Tag */ |
Igor Opaniuk | 67c9bfc | 2020-07-15 13:30:55 +0300 | [diff] [blame] | 896 | write_tag(config_block, &offset, TAG_VALID, NULL, 0); |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 897 | |
| 898 | /* Product Tag */ |
Igor Opaniuk | 67c9bfc | 2020-07-15 13:30:55 +0300 | [diff] [blame] | 899 | write_tag(config_block, &offset, TAG_HW, (u8 *)&tdx_hw_tag, |
| 900 | sizeof(tdx_hw_tag)); |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 901 | |
| 902 | /* MAC Tag */ |
Igor Opaniuk | 67c9bfc | 2020-07-15 13:30:55 +0300 | [diff] [blame] | 903 | write_tag(config_block, &offset, TAG_MAC, (u8 *)&tdx_eth_addr, |
| 904 | sizeof(tdx_eth_addr)); |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 905 | |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 906 | memset(config_block + offset, 0, 32 - offset); |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 907 | #if defined(CONFIG_TDX_CFG_BLOCK_IS_IN_MMC) |
| 908 | err = tdx_cfg_block_mmc_storage(config_block, 1); |
| 909 | #elif defined(CONFIG_TDX_CFG_BLOCK_IS_IN_NAND) |
| 910 | err = write_tdx_cfg_block_to_nand(config_block); |
| 911 | #elif defined(CONFIG_TDX_CFG_BLOCK_IS_IN_NOR) |
| 912 | err = write_tdx_cfg_block_to_nor(config_block); |
Igor Opaniuk | 67c9bfc | 2020-07-15 13:30:55 +0300 | [diff] [blame] | 913 | #elif defined(CONFIG_TDX_CFG_BLOCK_IS_IN_EEPROM) |
| 914 | err = write_tdx_cfg_block_to_eeprom(config_block); |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 915 | #else |
| 916 | err = -EINVAL; |
| 917 | #endif |
| 918 | if (err) { |
| 919 | printf("Failed to write Toradex config block: %d\n", ret); |
| 920 | ret = CMD_RET_FAILURE; |
| 921 | goto out; |
| 922 | } |
| 923 | |
| 924 | printf("Toradex config block successfully written\n"); |
| 925 | |
| 926 | out: |
| 927 | free(config_block); |
| 928 | return ret; |
| 929 | } |
| 930 | |
Simon Glass | ed38aef | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 931 | static int do_cfgblock(struct cmd_tbl *cmdtp, int flag, int argc, |
| 932 | char *const argv[]) |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 933 | { |
| 934 | int ret; |
| 935 | |
| 936 | if (argc < 2) |
| 937 | return CMD_RET_USAGE; |
| 938 | |
| 939 | if (!strcmp(argv[1], "create")) { |
| 940 | return do_cfgblock_create(cmdtp, flag, argc, argv); |
| 941 | } else if (!strcmp(argv[1], "reload")) { |
| 942 | ret = read_tdx_cfg_block(); |
| 943 | if (ret) { |
| 944 | printf("Failed to reload Toradex config block: %d\n", |
| 945 | ret); |
| 946 | return CMD_RET_FAILURE; |
| 947 | } |
| 948 | return CMD_RET_SUCCESS; |
| 949 | } |
| 950 | |
| 951 | return CMD_RET_USAGE; |
| 952 | } |
| 953 | |
Igor Opaniuk | 67c9bfc | 2020-07-15 13:30:55 +0300 | [diff] [blame] | 954 | U_BOOT_CMD( |
| 955 | cfgblock, 5, 0, do_cfgblock, |
| 956 | "Toradex config block handling commands", |
| 957 | "create [-y] [barcode] - (Re-)create Toradex config block\n" |
| 958 | "create carrier [-y] [barcode] - (Re-)create Toradex Carrier config block\n" |
| 959 | "cfgblock reload - Reload Toradex config block from flash" |
Marcel Ziswiler | 7a28dfc | 2016-11-16 17:49:22 +0100 | [diff] [blame] | 960 | ); |