Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 | // SPDX-License-Identifier: GPL-2.0+ OR BSD-3-Clause /* * Copyright (C) 2019, STMicroelectronics - All Rights Reserved * * the command stboard supports the STMicroelectronics board identification * saved in OTP_BOARD. * * The ST product codification have several element * - "Commercial Product Name" (CPN): type of product board (DKX, EVX) * associated to the board ID "MBxxxx" * - "Finished Good" or "Finish Good" (FG): * effective content of the product without chip STM32MP1xx (LCD, Wifi,...) * - BOM: cost variant for same FG (for example, several provider of the same * component) * * For example * - commercial product = STM32MP157C-EV1 for board MB1263 * - Finished Good = EVA32MP157A1$AU1 * * Both information are written on board and these information are also saved * in OTP_BOARD (59 for STM32MP15x or 60 for STM32MP13x), with: * bit [31:16] (hex) => Board id, MBxxxx * bit [15:12] (dec) => Variant CPN (1....15) * bit [11:8] (dec) => Revision board (index with A = 1, Z = 26) * bit [7:4] (dec) => Variant FG : finished good index * bit [3:0] (dec) => BOM (01, .... 255) * * and displayed with the format: * Board: MB<Board> Var<VarCPN>.<VarFG> Rev.<Revision>-<BOM> */ #ifndef CONFIG_XPL_BUILD #include <command.h> #include <console.h> #include <misc.h> #include <asm/arch/bsec.h> #include <dm/device.h> #include <dm/uclass.h> static bool check_stboard(u16 board) { unsigned int i; /* list of supported ST boards */ const u16 st_board_id[] = { 0x1272, 0x1263, 0x1264, 0x1298, 0x1341, 0x1497, 0x1605, /* stm32mp25xx-dk */ 0x1635, 0x1936, /* stm32mp25xx-ev1 */ 0x2059, /* stm32mp21xx-dk */ }; for (i = 0; i < ARRAY_SIZE(st_board_id); i++) if (board == st_board_id[i]) return true; return false; } static void display_stboard(u32 otp) { /* display board indentification with OPT coding */ printf("Board: MB%04x Var%d.%d Rev.%c-%02d\n", otp >> 16, (otp >> 12) & 0xF, (otp >> 4) & 0xF, ((otp >> 8) & 0xF) - 1 + 'A', otp & 0xF); } static int do_stboard(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) { int ret; u32 otp, lock; u8 revision; unsigned long board, var_cpn, var_fg, bom; struct udevice *dev; int confirmed = argc == 7 && !strcmp(argv[1], "-y"); argc -= 1 + confirmed; argv += 1 + confirmed; if (argc != 0 && argc != 5) return CMD_RET_USAGE; ret = uclass_get_device_by_driver(UCLASS_MISC, DM_DRIVER_GET(stm32mp_bsec), &dev); if (ret) { puts("Can't get BSEC device\n"); return CMD_RET_FAILURE; } ret = misc_read(dev, STM32_BSEC_OTP(BSEC_OTP_BOARD), &otp, sizeof(otp)); if (ret != sizeof(otp)) { puts("OTP read error\n"); return CMD_RET_FAILURE; } ret = misc_read(dev, STM32_BSEC_LOCK(BSEC_OTP_BOARD), &lock, sizeof(lock)); if (ret != sizeof(lock)) { puts("LOCK read error\n"); return CMD_RET_FAILURE; } if (argc == 0) { if (!otp) puts("Board : OTP board FREE\n"); else display_stboard(otp); printf(" OTP %d %s locked !\n", BSEC_OTP_BOARD, lock & BSEC_LOCK_PERM ? "" : "NOT"); return CMD_RET_SUCCESS; } if (otp) { display_stboard(otp); printf("ERROR: OTP board not FREE\n"); return CMD_RET_FAILURE; } if (strict_strtoul(argv[0], 16, &board) < 0 || board == 0 || board > 0xFFFF) { printf("argument %d invalid: %s\n", 1, argv[0]); return CMD_RET_USAGE; } if (strict_strtoul(argv[1], 10, &var_cpn) < 0 || var_cpn == 0 || var_cpn > 15) { printf("argument %d invalid: %s\n", 2, argv[1]); return CMD_RET_USAGE; } revision = argv[2][0] - 'A' + 1; if (strlen(argv[2]) > 1 || revision == 0 || revision > 15) { printf("argument %d invalid: %s\n", 3, argv[2]); return CMD_RET_USAGE; } if (strict_strtoul(argv[3], 10, &var_fg) < 0 || var_fg > 15) { printf("argument %d invalid: %s\n", 4, argv[3]); return CMD_RET_USAGE; } if (strict_strtoul(argv[4], 10, &bom) < 0 || bom == 0 || bom > 15) { printf("argument %d invalid: %s\n", 4, argv[3]); return CMD_RET_USAGE; } /* st board indentification value */ otp = (board << 16) | (var_cpn << 12) | (revision << 8) | (var_fg << 4) | bom; display_stboard(otp); printf("=> OTP[%d] = %08X\n", BSEC_OTP_BOARD, otp); if (!check_stboard((u16)board)) { printf("Unknown board MB%04x\n", (u16)board); return CMD_RET_FAILURE; } if (!confirmed) { printf("Warning: Programming BOARD in OTP is irreversible!\n"); printf("Really perform this OTP programming? <y/N>\n"); if (!confirm_yesno()) { puts("BOARD programming aborted\n"); return CMD_RET_FAILURE; } } ret = misc_write(dev, STM32_BSEC_OTP(BSEC_OTP_BOARD), &otp, sizeof(otp)); if (ret != sizeof(otp)) { puts("BOARD programming error\n"); return CMD_RET_FAILURE; } /* write persistent lock */ otp = BSEC_LOCK_PERM; ret = misc_write(dev, STM32_BSEC_LOCK(BSEC_OTP_BOARD), &otp, sizeof(otp)); if (ret != sizeof(otp)) { puts("BOARD lock error\n"); return CMD_RET_FAILURE; } puts("BOARD programming done\n"); return CMD_RET_SUCCESS; } U_BOOT_CMD(stboard, 7, 0, do_stboard, "read/write board reference in OTP", "\n" " Print current board information\n" "stboard [-y] <Board> <VarCPN> <Revision> <VarFG> <BOM>\n" " Write board information\n" " - Board: xxxx, example 1264 for MB1264\n" " - VarCPN: 1...15\n" " - Revision: A...O\n" " - VarFG: 0...15\n" " - BOM: 1...15\n"); #endif |