Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Heiko Schocher | 5e51b48 | 2008-10-15 09:39:08 +0200 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2008 |
| 4 | * Heiko Schocher, DENX Software Engineering, hs@denx.de. |
| 5 | * |
Holger Brunck | bf20a88 | 2011-06-05 22:22:18 +0000 | [diff] [blame] | 6 | * (C) Copyright 2011 |
| 7 | * Holger Brunck, Keymile GmbH Hannover, holger.brunck@keymile.com |
Heiko Schocher | 5e51b48 | 2008-10-15 09:39:08 +0200 | [diff] [blame] | 8 | */ |
| 9 | |
Tom Rini | dec7ea0 | 2024-05-20 13:35:03 -0600 | [diff] [blame] | 10 | #include <config.h> |
Simon Glass | 5e6201b | 2019-08-01 09:46:51 -0600 | [diff] [blame] | 11 | #include <env.h> |
Heiko Schocher | 5e51b48 | 2008-10-15 09:39:08 +0200 | [diff] [blame] | 12 | #include <ioports.h> |
Holger Brunck | 3066492 | 2011-05-04 01:47:30 +0000 | [diff] [blame] | 13 | #include <command.h> |
Heiko Schocher | 5e51b48 | 2008-10-15 09:39:08 +0200 | [diff] [blame] | 14 | #include <malloc.h> |
Simon Glass | 299f0be | 2014-04-10 20:01:24 -0600 | [diff] [blame] | 15 | #include <cli_hush.h> |
Heiko Schocher | d19a6ec | 2008-11-21 08:29:40 +0100 | [diff] [blame] | 16 | #include <net.h> |
Heiko Schocher | 466924f | 2010-02-18 08:08:25 +0100 | [diff] [blame] | 17 | #include <netdev.h> |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 18 | #include <asm/global_data.h> |
Heiko Schocher | d19a6ec | 2008-11-21 08:29:40 +0100 | [diff] [blame] | 19 | #include <asm/io.h> |
Thomas Herzmann | 2c8a0c8 | 2011-05-12 19:59:22 +0000 | [diff] [blame] | 20 | #include <linux/ctype.h> |
Simon Glass | dbd7954 | 2020-05-10 11:40:11 -0600 | [diff] [blame] | 21 | #include <linux/delay.h> |
Aleksandar Gerasimovski | 197b948 | 2021-12-10 11:07:53 +0100 | [diff] [blame] | 22 | #include <linux/bug.h> |
| 23 | #include <bootcount.h> |
Heiko Schocher | 5e51b48 | 2008-10-15 09:39:08 +0200 | [diff] [blame] | 24 | |
Thomas Herzmann | b2c3160 | 2012-05-04 10:55:58 +0200 | [diff] [blame] | 25 | #if defined(CONFIG_POST) |
| 26 | #include "post.h" |
| 27 | #endif |
Holger Brunck | bf20a88 | 2011-06-05 22:22:18 +0000 | [diff] [blame] | 28 | #include "common.h" |
Heiko Schocher | 5e51b48 | 2008-10-15 09:39:08 +0200 | [diff] [blame] | 29 | #include <i2c.h> |
Heiko Schocher | 5e51b48 | 2008-10-15 09:39:08 +0200 | [diff] [blame] | 30 | |
Heiko Schocher | cfc5804 | 2010-04-26 13:07:28 +0200 | [diff] [blame] | 31 | DECLARE_GLOBAL_DATA_PTR; |
Heiko Schocher | d9e1095 | 2011-03-08 10:51:15 +0100 | [diff] [blame] | 32 | |
Heiko Schocher | cfc5804 | 2010-04-26 13:07:28 +0200 | [diff] [blame] | 33 | /* |
| 34 | * Set Keymile specific environment variables |
| 35 | * Currently only some memory layout variables are calculated here |
| 36 | * ... ------------------------------------------------ |
| 37 | * ... |@rootfsaddr |@pnvramaddr |@varaddr |@reserved |@END_OF_RAM |
| 38 | * ... |<------------------- pram ------------------->| |
| 39 | * ... ------------------------------------------------ |
| 40 | * @END_OF_RAM: denotes the RAM size |
| 41 | * @pnvramaddr: Startadress of pseudo non volatile RAM in hex |
| 42 | * @pram : preserved ram size in k |
| 43 | * @varaddr : startadress for /var mounted into RAM |
| 44 | */ |
| 45 | int set_km_env(void) |
| 46 | { |
Heiko Schocher | cfc5804 | 2010-04-26 13:07:28 +0200 | [diff] [blame] | 47 | unsigned int pnvramaddr; |
| 48 | unsigned int pram; |
| 49 | unsigned int varaddr; |
Andreas Huber | 28c63c7 | 2011-09-13 23:06:11 +0000 | [diff] [blame] | 50 | unsigned int kernelmem; |
Andreas Huber | 28c63c7 | 2011-09-13 23:06:11 +0000 | [diff] [blame] | 51 | unsigned long rootfssize = 0; |
Aleksandar Gerasimovski | 41683c4 | 2021-06-04 09:25:00 +0000 | [diff] [blame] | 52 | char envval[16]; |
| 53 | char *p; |
Heiko Schocher | cfc5804 | 2010-04-26 13:07:28 +0200 | [diff] [blame] | 54 | |
Tom Rini | bb4dd96 | 2022-11-16 13:10:37 -0500 | [diff] [blame] | 55 | pnvramaddr = CFG_SYS_SDRAM_BASE + gd->ram_size - |
Aleksandar Gerasimovski | f9da526 | 2021-01-19 10:41:00 +0000 | [diff] [blame] | 56 | CONFIG_KM_RESERVED_PRAM - CONFIG_KM_PHRAM - CONFIG_KM_PNVRAM; |
Aleksandar Gerasimovski | 41683c4 | 2021-06-04 09:25:00 +0000 | [diff] [blame] | 57 | sprintf(envval, "0x%x", pnvramaddr); |
| 58 | env_set("pnvramaddr", envval); |
Heiko Schocher | cfc5804 | 2010-04-26 13:07:28 +0200 | [diff] [blame] | 59 | |
Robert P. J. Day | 8d56db9 | 2016-07-15 13:44:45 -0400 | [diff] [blame] | 60 | /* try to read rootfssize (ram image) from environment */ |
Simon Glass | 64b723f | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 61 | p = env_get("rootfssize"); |
Holger Brunck | ff41a75 | 2020-10-30 12:45:49 +0100 | [diff] [blame] | 62 | if (p) |
Andreas Huber | 28c63c7 | 2011-09-13 23:06:11 +0000 | [diff] [blame] | 63 | strict_strtoul(p, 16, &rootfssize); |
| 64 | pram = (rootfssize + CONFIG_KM_RESERVED_PRAM + CONFIG_KM_PHRAM + |
| 65 | CONFIG_KM_PNVRAM) / 0x400; |
Niel Fourie | de553f5 | 2021-01-21 13:19:19 +0100 | [diff] [blame] | 66 | env_set_ulong("pram", pram); |
Heiko Schocher | cfc5804 | 2010-04-26 13:07:28 +0200 | [diff] [blame] | 67 | |
Tom Rini | bb4dd96 | 2022-11-16 13:10:37 -0500 | [diff] [blame] | 68 | varaddr = CFG_SYS_SDRAM_BASE + gd->ram_size - |
Aleksandar Gerasimovski | f9da526 | 2021-01-19 10:41:00 +0000 | [diff] [blame] | 69 | CONFIG_KM_RESERVED_PRAM - CONFIG_KM_PHRAM; |
Niel Fourie | de553f5 | 2021-01-21 13:19:19 +0100 | [diff] [blame] | 70 | env_set_hex("varaddr", varaddr); |
Aleksandar Gerasimovski | 41683c4 | 2021-06-04 09:25:00 +0000 | [diff] [blame] | 71 | sprintf(envval, "0x%x", varaddr); |
| 72 | env_set("varaddr", envval); |
Andreas Huber | 28c63c7 | 2011-09-13 23:06:11 +0000 | [diff] [blame] | 73 | |
| 74 | kernelmem = gd->ram_size - 0x400 * pram; |
Aleksandar Gerasimovski | 41683c4 | 2021-06-04 09:25:00 +0000 | [diff] [blame] | 75 | sprintf(envval, "0x%x", kernelmem); |
| 76 | env_set("kernelmem", envval); |
Andreas Huber | 28c63c7 | 2011-09-13 23:06:11 +0000 | [diff] [blame] | 77 | |
Heiko Schocher | cfc5804 | 2010-04-26 13:07:28 +0200 | [diff] [blame] | 78 | return 0; |
| 79 | } |
| 80 | |
Simon Glass | 7fe5304 | 2023-02-22 09:33:50 -0700 | [diff] [blame] | 81 | #if IS_ENABLED(CONFIG_PG_WCOM_UBOOT_UPDATE_SUPPORTED) |
Simon Glass | 83d6e1e | 2023-02-05 15:40:29 -0700 | [diff] [blame] | 82 | #if ((!IS_ENABLED(CONFIG_PG_WCOM_UBOOT_BOOTPACKAGE) && \ |
Simon Glass | 1873c72 | 2023-02-05 15:40:30 -0700 | [diff] [blame] | 83 | !IS_ENABLED(CONFIG_PG_WCOM_UBOOT_UPDATE)) || \ |
Simon Glass | 83d6e1e | 2023-02-05 15:40:29 -0700 | [diff] [blame] | 84 | (IS_ENABLED(CONFIG_PG_WCOM_UBOOT_BOOTPACKAGE) && \ |
Simon Glass | 1873c72 | 2023-02-05 15:40:30 -0700 | [diff] [blame] | 85 | IS_ENABLED(CONFIG_PG_WCOM_UBOOT_UPDATE))) |
Aleksandar Gerasimovski | 197b948 | 2021-12-10 11:07:53 +0100 | [diff] [blame] | 86 | #error "It has to be either bootpackage or update u-boot image!" |
| 87 | #endif |
| 88 | void check_for_uboot_update(void) |
| 89 | { |
| 90 | void (*uboot_update_entry)(void) = |
| 91 | (void (*)(void)) CONFIG_PG_WCOM_UBOOT_UPDATE_TEXT_BASE; |
| 92 | char *isupdated = env_get("updateduboot"); |
| 93 | ulong bootcount = bootcount_load(); |
| 94 | ulong ebootcount = 0; |
| 95 | |
| 96 | if (IS_ENABLED(CONFIG_PG_WCOM_UBOOT_BOOTPACKAGE)) { |
| 97 | /* |
| 98 | * When running in factory burned u-boot move to the updated |
| 99 | * u-boot version only if updateduboot envvar is set to 'yes' |
| 100 | * and bootcount limit is not exceeded. |
| 101 | * Board must be able to start in factory bootloader mode! |
| 102 | */ |
| 103 | if (isupdated && !strncmp(isupdated, "yes", 3) && |
| 104 | bootcount <= CONFIG_BOOTCOUNT_BOOTLIMIT) { |
| 105 | printf("Check update: update detected, "); |
| 106 | printf("starting new image @%08x ...\n", |
| 107 | CONFIG_PG_WCOM_UBOOT_UPDATE_TEXT_BASE); |
| 108 | ebootcount = early_bootcount_load(); |
| 109 | if (ebootcount <= CONFIG_BOOTCOUNT_BOOTLIMIT) { |
| 110 | early_bootcount_store(++ebootcount); |
| 111 | uboot_update_entry(); |
| 112 | } else { |
| 113 | printf("Check update: warning: "); |
| 114 | printf("early bootcount exceeded (%lu)\n", |
| 115 | ebootcount); |
| 116 | } |
| 117 | } |
| 118 | printf("Check update: starting factory image @%08x ...\n", |
Simon Glass | 72cc538 | 2022-10-20 18:22:39 -0600 | [diff] [blame] | 119 | CONFIG_TEXT_BASE); |
Aleksandar Gerasimovski | 197b948 | 2021-12-10 11:07:53 +0100 | [diff] [blame] | 120 | } else if (IS_ENABLED(CONFIG_PG_WCOM_UBOOT_UPDATE)) { |
| 121 | /* |
| 122 | * When running in field updated u-boot, make sure that |
| 123 | * bootcount limit is never exceeded. Must never happen! |
| 124 | */ |
| 125 | WARN_ON(bootcount > CONFIG_BOOTCOUNT_BOOTLIMIT); |
| 126 | printf("Check update: updated u-boot starting @%08x ...\n", |
Simon Glass | 72cc538 | 2022-10-20 18:22:39 -0600 | [diff] [blame] | 127 | CONFIG_TEXT_BASE); |
Aleksandar Gerasimovski | 197b948 | 2021-12-10 11:07:53 +0100 | [diff] [blame] | 128 | } |
| 129 | } |
| 130 | #endif |
| 131 | |
Heiko Schocher | d9e1095 | 2011-03-08 10:51:15 +0100 | [diff] [blame] | 132 | static void i2c_write_start_seq(void) |
Heiko Schocher | 5e51b48 | 2008-10-15 09:39:08 +0200 | [diff] [blame] | 133 | { |
Heiko Schocher | 8ce3dd5 | 2011-03-15 16:52:29 +0100 | [diff] [blame] | 134 | set_sda(1); |
| 135 | udelay(DELAY_HALF_PERIOD); |
| 136 | set_scl(1); |
| 137 | udelay(DELAY_HALF_PERIOD); |
| 138 | set_sda(0); |
| 139 | udelay(DELAY_HALF_PERIOD); |
| 140 | set_scl(0); |
| 141 | udelay(DELAY_HALF_PERIOD); |
Heiko Schocher | 5e51b48 | 2008-10-15 09:39:08 +0200 | [diff] [blame] | 142 | } |
| 143 | |
Heiko Schocher | 8ce3dd5 | 2011-03-15 16:52:29 +0100 | [diff] [blame] | 144 | /* |
| 145 | * I2C is a synchronous protocol and resets of the processor in the middle |
| 146 | * of an access can block the I2C Bus until a powerdown of the full unit is |
| 147 | * done. This function toggles the SCL until the SCL and SCA line are |
| 148 | * released, but max. 16 times, after this a I2C start-sequence is sent. |
| 149 | * This I2C Deblocking mechanism was developed by Keymile in association |
| 150 | * with Anatech and Atmel in 1998. |
Heiko Schocher | 5e51b48 | 2008-10-15 09:39:08 +0200 | [diff] [blame] | 151 | */ |
Holger Brunck | bf20a88 | 2011-06-05 22:22:18 +0000 | [diff] [blame] | 152 | int i2c_make_abort(void) |
Heiko Schocher | 5e51b48 | 2008-10-15 09:39:08 +0200 | [diff] [blame] | 153 | { |
| 154 | int scl_state = 0; |
| 155 | int sda_state = 0; |
| 156 | int i = 0; |
| 157 | int ret = 0; |
| 158 | |
Heiko Schocher | 8ce3dd5 | 2011-03-15 16:52:29 +0100 | [diff] [blame] | 159 | if (!get_sda()) { |
Heiko Schocher | 5e51b48 | 2008-10-15 09:39:08 +0200 | [diff] [blame] | 160 | ret = -1; |
| 161 | while (i < 16) { |
| 162 | i++; |
Heiko Schocher | 8ce3dd5 | 2011-03-15 16:52:29 +0100 | [diff] [blame] | 163 | set_scl(0); |
| 164 | udelay(DELAY_ABORT_SEQ); |
| 165 | set_scl(1); |
| 166 | udelay(DELAY_ABORT_SEQ); |
| 167 | scl_state = get_scl(); |
| 168 | sda_state = get_sda(); |
Heiko Schocher | 5e51b48 | 2008-10-15 09:39:08 +0200 | [diff] [blame] | 169 | if (scl_state && sda_state) { |
| 170 | ret = 0; |
| 171 | break; |
| 172 | } |
| 173 | } |
| 174 | } |
Heiko Schocher | 8ce3dd5 | 2011-03-15 16:52:29 +0100 | [diff] [blame] | 175 | if (ret == 0) |
| 176 | for (i = 0; i < 5; i++) |
Heiko Schocher | d9e1095 | 2011-03-08 10:51:15 +0100 | [diff] [blame] | 177 | i2c_write_start_seq(); |
Heiko Schocher | 8ce3dd5 | 2011-03-15 16:52:29 +0100 | [diff] [blame] | 178 | |
Heiko Schocher | d9e1095 | 2011-03-08 10:51:15 +0100 | [diff] [blame] | 179 | /* respect stop setup time */ |
| 180 | udelay(DELAY_ABORT_SEQ); |
| 181 | set_scl(1); |
| 182 | udelay(DELAY_ABORT_SEQ); |
| 183 | set_sda(1); |
Heiko Schocher | 8ce3dd5 | 2011-03-15 16:52:29 +0100 | [diff] [blame] | 184 | get_sda(); |
Heiko Schocher | d9e1095 | 2011-03-08 10:51:15 +0100 | [diff] [blame] | 185 | |
Heiko Schocher | 5e51b48 | 2008-10-15 09:39:08 +0200 | [diff] [blame] | 186 | return ret; |
| 187 | } |
Heiko Schocher | 5e51b48 | 2008-10-15 09:39:08 +0200 | [diff] [blame] | 188 | |
Valentin Longchamp | 391cc9b | 2013-10-18 11:47:18 +0200 | [diff] [blame] | 189 | #if defined(CONFIG_KM_COMMON_ETH_INIT) |
Masahiro Yamada | f7ed78b | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 190 | int board_eth_init(struct bd_info *bis) |
Heiko Schocher | d19a6ec | 2008-11-21 08:29:40 +0100 | [diff] [blame] | 191 | { |
Heiko Schocher | 8ce3dd5 | 2011-03-15 16:52:29 +0100 | [diff] [blame] | 192 | if (ethernet_present()) |
Heiko Schocher | 466924f | 2010-02-18 08:08:25 +0100 | [diff] [blame] | 193 | return cpu_eth_init(bis); |
| 194 | |
| 195 | return -1; |
Heiko Schocher | d19a6ec | 2008-11-21 08:29:40 +0100 | [diff] [blame] | 196 | } |
Valentin Longchamp | 391cc9b | 2013-10-18 11:47:18 +0200 | [diff] [blame] | 197 | #endif |
Holger Brunck | 3066492 | 2011-05-04 01:47:30 +0000 | [diff] [blame] | 198 | |
| 199 | /* |
| 200 | * do_setboardid command |
| 201 | * read out the board id and the hw key from the intventory EEPROM and set |
| 202 | * this values as environment variables. |
| 203 | */ |
Simon Glass | ed38aef | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 204 | static int do_setboardid(struct cmd_tbl *cmdtp, int flag, int argc, |
| 205 | char *const argv[]) |
Holger Brunck | 3066492 | 2011-05-04 01:47:30 +0000 | [diff] [blame] | 206 | { |
| 207 | unsigned char buf[32]; |
| 208 | char *p; |
| 209 | |
| 210 | p = get_local_var("IVM_BoardId"); |
Holger Brunck | ff41a75 | 2020-10-30 12:45:49 +0100 | [diff] [blame] | 211 | if (!p) { |
Holger Brunck | 3066492 | 2011-05-04 01:47:30 +0000 | [diff] [blame] | 212 | printf("can't get the IVM_Boardid\n"); |
| 213 | return 1; |
| 214 | } |
Ben Whitten | 34fd6c9 | 2015-12-30 13:05:58 +0000 | [diff] [blame] | 215 | strcpy((char *)buf, p); |
Simon Glass | 6a38e41 | 2017-08-03 12:22:09 -0600 | [diff] [blame] | 216 | env_set("boardid", (char *)buf); |
Holger Brunck | de79984 | 2011-07-04 22:23:59 +0000 | [diff] [blame] | 217 | printf("set boardid=%s\n", buf); |
Holger Brunck | 3066492 | 2011-05-04 01:47:30 +0000 | [diff] [blame] | 218 | |
| 219 | p = get_local_var("IVM_HWKey"); |
Holger Brunck | ff41a75 | 2020-10-30 12:45:49 +0100 | [diff] [blame] | 220 | if (!p) { |
Holger Brunck | 3066492 | 2011-05-04 01:47:30 +0000 | [diff] [blame] | 221 | printf("can't get the IVM_HWKey\n"); |
| 222 | return 1; |
| 223 | } |
Ben Whitten | 34fd6c9 | 2015-12-30 13:05:58 +0000 | [diff] [blame] | 224 | strcpy((char *)buf, p); |
Simon Glass | 6a38e41 | 2017-08-03 12:22:09 -0600 | [diff] [blame] | 225 | env_set("hwkey", (char *)buf); |
Holger Brunck | de79984 | 2011-07-04 22:23:59 +0000 | [diff] [blame] | 226 | printf("set hwkey=%s\n", buf); |
| 227 | printf("Execute manually saveenv for persistent storage.\n"); |
Holger Brunck | 3066492 | 2011-05-04 01:47:30 +0000 | [diff] [blame] | 228 | |
| 229 | return 0; |
| 230 | } |
| 231 | |
Holger Brunck | ff41a75 | 2020-10-30 12:45:49 +0100 | [diff] [blame] | 232 | U_BOOT_CMD(km_setboardid, 1, 0, do_setboardid, "setboardid", |
| 233 | "read out bid and hwkey from IVM and set in environment"); |
Thomas Herzmann | 2c8a0c8 | 2011-05-12 19:59:22 +0000 | [diff] [blame] | 234 | |
| 235 | /* |
| 236 | * command km_checkbidhwk |
| 237 | * if "boardid" and "hwkey" are not already set in the environment, do: |
| 238 | * if a "boardIdListHex" exists in the environment: |
| 239 | * - read ivm data for boardid and hwkey |
| 240 | * - compare each entry of the boardIdListHex with the |
| 241 | * IVM data: |
| 242 | * if match: |
| 243 | * set environment variables boardid, boardId, |
| 244 | * hwkey, hwKey to the found values |
| 245 | * both (boardid and boardId) are set because |
| 246 | * they might be used differently in the |
| 247 | * application and in the init scripts (?) |
| 248 | * return 0 in case of match, 1 if not match or error |
| 249 | */ |
Simon Glass | ed38aef | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 250 | static int do_checkboardidhwk(struct cmd_tbl *cmdtp, int flag, int argc, |
| 251 | char *const argv[]) |
Thomas Herzmann | 2c8a0c8 | 2011-05-12 19:59:22 +0000 | [diff] [blame] | 252 | { |
| 253 | unsigned long ivmbid = 0, ivmhwkey = 0; |
| 254 | unsigned long envbid = 0, envhwkey = 0; |
| 255 | char *p; |
| 256 | int verbose = argc > 1 && *argv[1] == 'v'; |
| 257 | int rc = 0; |
| 258 | |
| 259 | /* |
| 260 | * first read out the real inventory values, these values are |
| 261 | * already stored in the local hush variables |
| 262 | */ |
| 263 | p = get_local_var("IVM_BoardId"); |
Holger Brunck | ff41a75 | 2020-10-30 12:45:49 +0100 | [diff] [blame] | 264 | if (!p) { |
Thomas Herzmann | 2c8a0c8 | 2011-05-12 19:59:22 +0000 | [diff] [blame] | 265 | printf("can't get the IVM_Boardid\n"); |
| 266 | return 1; |
| 267 | } |
| 268 | rc = strict_strtoul(p, 16, &ivmbid); |
| 269 | |
| 270 | p = get_local_var("IVM_HWKey"); |
Holger Brunck | ff41a75 | 2020-10-30 12:45:49 +0100 | [diff] [blame] | 271 | if (!p) { |
Thomas Herzmann | 2c8a0c8 | 2011-05-12 19:59:22 +0000 | [diff] [blame] | 272 | printf("can't get the IVM_HWKey\n"); |
| 273 | return 1; |
| 274 | } |
| 275 | rc = strict_strtoul(p, 16, &ivmhwkey); |
| 276 | |
| 277 | if (!ivmbid || !ivmhwkey) { |
| 278 | printf("Error: IVM_BoardId and/or IVM_HWKey not set!\n"); |
| 279 | return rc; |
| 280 | } |
| 281 | |
| 282 | /* now try to read values from environment if available */ |
Simon Glass | 64b723f | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 283 | p = env_get("boardid"); |
Holger Brunck | ff41a75 | 2020-10-30 12:45:49 +0100 | [diff] [blame] | 284 | if (p) |
Thomas Herzmann | 2c8a0c8 | 2011-05-12 19:59:22 +0000 | [diff] [blame] | 285 | rc = strict_strtoul(p, 16, &envbid); |
Simon Glass | 64b723f | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 286 | p = env_get("hwkey"); |
Holger Brunck | ff41a75 | 2020-10-30 12:45:49 +0100 | [diff] [blame] | 287 | if (p) |
Thomas Herzmann | 2c8a0c8 | 2011-05-12 19:59:22 +0000 | [diff] [blame] | 288 | rc = strict_strtoul(p, 16, &envhwkey); |
Thomas Herzmann | 2c8a0c8 | 2011-05-12 19:59:22 +0000 | [diff] [blame] | 289 | if (rc != 0) { |
| 290 | printf("strict_strtoul returns error: %d", rc); |
| 291 | return rc; |
| 292 | } |
| 293 | |
| 294 | if (!envbid || !envhwkey) { |
| 295 | /* |
| 296 | * BoardId/HWkey not available in the environment, so try the |
| 297 | * environment variable for BoardId/HWkey list |
| 298 | */ |
Simon Glass | 64b723f | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 299 | char *bidhwklist = env_get("boardIdListHex"); |
Thomas Herzmann | 2c8a0c8 | 2011-05-12 19:59:22 +0000 | [diff] [blame] | 300 | |
| 301 | if (bidhwklist) { |
| 302 | int found = 0; |
| 303 | char *rest = bidhwklist; |
| 304 | char *endp; |
| 305 | |
| 306 | if (verbose) { |
| 307 | printf("IVM_BoardId: %ld, IVM_HWKey=%ld\n", |
Holger Brunck | ff41a75 | 2020-10-30 12:45:49 +0100 | [diff] [blame] | 308 | ivmbid, ivmhwkey); |
| 309 | printf("boardIdHwKeyList: %s\n", bidhwklist); |
Thomas Herzmann | 2c8a0c8 | 2011-05-12 19:59:22 +0000 | [diff] [blame] | 310 | } |
| 311 | while (!found) { |
| 312 | /* loop over each bid/hwkey pair in the list */ |
| 313 | unsigned long bid = 0; |
| 314 | unsigned long hwkey = 0; |
| 315 | |
| 316 | while (*rest && !isxdigit(*rest)) |
| 317 | rest++; |
| 318 | /* |
| 319 | * use simple_strtoul because we need &end and |
| 320 | * we know we got non numeric char at the end |
| 321 | */ |
Simon Glass | 3ff49ec | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 322 | bid = hextoul(rest, &endp); |
Thomas Herzmann | 2c8a0c8 | 2011-05-12 19:59:22 +0000 | [diff] [blame] | 323 | /* BoardId and HWkey are separated with a "_" */ |
| 324 | if (*endp == '_') { |
| 325 | rest = endp + 1; |
| 326 | /* |
| 327 | * use simple_strtoul because we need |
| 328 | * &end |
| 329 | */ |
Simon Glass | 3ff49ec | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 330 | hwkey = hextoul(rest, &endp); |
Thomas Herzmann | 2c8a0c8 | 2011-05-12 19:59:22 +0000 | [diff] [blame] | 331 | rest = endp; |
| 332 | while (*rest && !isxdigit(*rest)) |
| 333 | rest++; |
| 334 | } |
Holger Brunck | ff41a75 | 2020-10-30 12:45:49 +0100 | [diff] [blame] | 335 | if (!bid || !hwkey) { |
Thomas Herzmann | 2c8a0c8 | 2011-05-12 19:59:22 +0000 | [diff] [blame] | 336 | /* end of list */ |
| 337 | break; |
| 338 | } |
| 339 | if (verbose) { |
| 340 | printf("trying bid=0x%lX, hwkey=%ld\n", |
Holger Brunck | ff41a75 | 2020-10-30 12:45:49 +0100 | [diff] [blame] | 341 | bid, hwkey); |
Thomas Herzmann | 2c8a0c8 | 2011-05-12 19:59:22 +0000 | [diff] [blame] | 342 | } |
| 343 | /* |
| 344 | * Compare the values of the found entry in the |
| 345 | * list with the valid values which are stored |
| 346 | * in the inventory eeprom. If they are equal |
Holger Brunck | bc4e15f | 2011-06-05 22:22:17 +0000 | [diff] [blame] | 347 | * set the values in environment variables. |
Thomas Herzmann | 2c8a0c8 | 2011-05-12 19:59:22 +0000 | [diff] [blame] | 348 | */ |
Holger Brunck | ff41a75 | 2020-10-30 12:45:49 +0100 | [diff] [blame] | 349 | if (bid == ivmbid && hwkey == ivmhwkey) { |
Thomas Herzmann | 2c8a0c8 | 2011-05-12 19:59:22 +0000 | [diff] [blame] | 350 | found = 1; |
| 351 | envbid = bid; |
| 352 | envhwkey = hwkey; |
Niel Fourie | de553f5 | 2021-01-21 13:19:19 +0100 | [diff] [blame] | 353 | env_set_hex("boardid", bid); |
| 354 | env_set_hex("hwkey", hwkey); |
Thomas Herzmann | 2c8a0c8 | 2011-05-12 19:59:22 +0000 | [diff] [blame] | 355 | } |
| 356 | } /* end while( ! found ) */ |
| 357 | } |
| 358 | } |
| 359 | |
| 360 | /* compare now the values */ |
Holger Brunck | ff41a75 | 2020-10-30 12:45:49 +0100 | [diff] [blame] | 361 | if (ivmbid == envbid && ivmhwkey == envhwkey) { |
Thomas Herzmann | 2c8a0c8 | 2011-05-12 19:59:22 +0000 | [diff] [blame] | 362 | printf("boardid=0x%3lX, hwkey=%ld\n", envbid, envhwkey); |
| 363 | rc = 0; /* match */ |
| 364 | } else { |
Holger Brunck | de79984 | 2011-07-04 22:23:59 +0000 | [diff] [blame] | 365 | printf("Error: env boardid=0x%3lX, hwkey=%ld\n", envbid, |
Holger Brunck | ff41a75 | 2020-10-30 12:45:49 +0100 | [diff] [blame] | 366 | envhwkey); |
Thomas Herzmann | 2c8a0c8 | 2011-05-12 19:59:22 +0000 | [diff] [blame] | 367 | printf(" IVM bId=0x%3lX, hwKey=%ld\n", ivmbid, ivmhwkey); |
| 368 | rc = 1; /* don't match */ |
| 369 | } |
| 370 | return rc; |
| 371 | } |
| 372 | |
| 373 | U_BOOT_CMD(km_checkbidhwk, 2, 0, do_checkboardidhwk, |
Holger Brunck | ff41a75 | 2020-10-30 12:45:49 +0100 | [diff] [blame] | 374 | "check boardid and hwkey", |
| 375 | "[v]\n - check environment parameter \"boardIdListHex\" against stored boardid and hwkey from the IVM\n v: verbose output" |
Thomas Herzmann | 2c8a0c8 | 2011-05-12 19:59:22 +0000 | [diff] [blame] | 376 | ); |
Thomas Herzmann | b2c3160 | 2012-05-04 10:55:58 +0200 | [diff] [blame] | 377 | |
| 378 | /* |
| 379 | * command km_checktestboot |
| 380 | * if the testpin of the board is asserted, return 1 |
| 381 | * * else return 0 |
| 382 | */ |
Simon Glass | ed38aef | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 383 | static int do_checktestboot(struct cmd_tbl *cmdtp, int flag, int argc, |
| 384 | char *const argv[]) |
Thomas Herzmann | b2c3160 | 2012-05-04 10:55:58 +0200 | [diff] [blame] | 385 | { |
| 386 | int testpin = 0; |
| 387 | char *s = NULL; |
| 388 | int testboot = 0; |
| 389 | int verbose = argc > 1 && *argv[1] == 'v'; |
| 390 | |
| 391 | #if defined(CONFIG_POST) |
| 392 | testpin = post_hotkeys_pressed(); |
Thomas Herzmann | b2c3160 | 2012-05-04 10:55:58 +0200 | [diff] [blame] | 393 | #endif |
Holger Brunck | ff41a75 | 2020-10-30 12:45:49 +0100 | [diff] [blame] | 394 | |
Simon Glass | 64b723f | 2017-08-03 12:22:12 -0600 | [diff] [blame] | 395 | s = env_get("test_bank"); |
Thomas Herzmann | b2c3160 | 2012-05-04 10:55:58 +0200 | [diff] [blame] | 396 | /* when test_bank is not set, act as if testpin is not asserted */ |
| 397 | testboot = (testpin != 0) && (s); |
| 398 | if (verbose) { |
| 399 | printf("testpin = %d\n", testpin); |
Wolfgang Denk | 6ae8083 | 2014-11-06 14:02:57 +0100 | [diff] [blame] | 400 | /* cppcheck-suppress nullPointer */ |
Thomas Herzmann | b2c3160 | 2012-05-04 10:55:58 +0200 | [diff] [blame] | 401 | printf("test_bank = %s\n", s ? s : "not set"); |
| 402 | printf("boot test app : %s\n", (testboot) ? "yes" : "no"); |
| 403 | } |
| 404 | /* return 0 means: testboot, therefore we need the inversion */ |
| 405 | return !testboot; |
| 406 | } |
| 407 | |
| 408 | U_BOOT_CMD(km_checktestboot, 2, 0, do_checktestboot, |
Holger Brunck | ff41a75 | 2020-10-30 12:45:49 +0100 | [diff] [blame] | 409 | "check if testpin is asserted", |
| 410 | "[v]\n v - verbose output" |
Thomas Herzmann | b2c3160 | 2012-05-04 10:55:58 +0200 | [diff] [blame] | 411 | ); |