Heiko Schocher | c248536 | 2008-10-15 09:39:08 +0200 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2008 |
| 3 | * Heiko Schocher, DENX Software Engineering, hs@denx.de. |
| 4 | * |
Holger Brunck | 4f745bf | 2011-06-05 22:22:18 +0000 | [diff] [blame] | 5 | * (C) Copyright 2011 |
| 6 | * Holger Brunck, Keymile GmbH Hannover, holger.brunck@keymile.com |
| 7 | * |
Heiko Schocher | c248536 | 2008-10-15 09:39:08 +0200 | [diff] [blame] | 8 | * See file CREDITS for list of people who contributed to this |
| 9 | * project. |
| 10 | * |
| 11 | * This program is free software; you can redistribute it and/or |
| 12 | * modify it under the terms of the GNU General Public License as |
| 13 | * published by the Free Software Foundation; either version 2 of |
| 14 | * the License, or (at your option) any later version. |
| 15 | * |
| 16 | * This program is distributed in the hope that it will be useful, |
| 17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 19 | * GNU General Public License for more details. |
| 20 | * |
| 21 | * You should have received a copy of the GNU General Public License |
| 22 | * along with this program; if not, write to the Free Software |
| 23 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 24 | * MA 02111-1307 USA |
| 25 | */ |
| 26 | |
| 27 | #include <common.h> |
Heiko Schocher | c248536 | 2008-10-15 09:39:08 +0200 | [diff] [blame] | 28 | #include <ioports.h> |
Holger Brunck | a9417ce | 2011-05-04 01:47:30 +0000 | [diff] [blame] | 29 | #include <command.h> |
Heiko Schocher | c248536 | 2008-10-15 09:39:08 +0200 | [diff] [blame] | 30 | #include <malloc.h> |
Heiko Schocher | 8f64da7 | 2008-10-15 09:41:00 +0200 | [diff] [blame] | 31 | #include <hush.h> |
Heiko Schocher | 210c8c0 | 2008-11-21 08:29:40 +0100 | [diff] [blame] | 32 | #include <net.h> |
Heiko Schocher | 62ddcf0 | 2010-02-18 08:08:25 +0100 | [diff] [blame] | 33 | #include <netdev.h> |
Heiko Schocher | 210c8c0 | 2008-11-21 08:29:40 +0100 | [diff] [blame] | 34 | #include <asm/io.h> |
Thomas Herzmann | 92c9108 | 2011-05-12 19:59:22 +0000 | [diff] [blame] | 35 | #include <linux/ctype.h> |
Heiko Schocher | c248536 | 2008-10-15 09:39:08 +0200 | [diff] [blame] | 36 | |
Thomas Herzmann | c1b3d84 | 2012-05-04 10:55:58 +0200 | [diff] [blame] | 37 | #if defined(CONFIG_POST) |
| 38 | #include "post.h" |
| 39 | #endif |
Holger Brunck | 4f745bf | 2011-06-05 22:22:18 +0000 | [diff] [blame] | 40 | #include "common.h" |
Heiko Schocher | c248536 | 2008-10-15 09:39:08 +0200 | [diff] [blame] | 41 | #if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C) |
| 42 | #include <i2c.h> |
Holger Brunck | 1adfd9d | 2011-06-05 22:22:20 +0000 | [diff] [blame] | 43 | #endif |
Heiko Schocher | c248536 | 2008-10-15 09:39:08 +0200 | [diff] [blame] | 44 | |
Holger Brunck | e792aff | 2011-09-14 10:54:12 +0200 | [diff] [blame] | 45 | #if !defined(CONFIG_MPC83xx) |
Heiko Schocher | 6c11aea | 2011-03-08 10:51:15 +0100 | [diff] [blame] | 46 | static void i2c_write_start_seq(void); |
Holger Brunck | e792aff | 2011-09-14 10:54:12 +0200 | [diff] [blame] | 47 | #endif |
| 48 | |
Heiko Schocher | f1fef1d | 2010-04-26 13:07:28 +0200 | [diff] [blame] | 49 | DECLARE_GLOBAL_DATA_PTR; |
Heiko Schocher | 6c11aea | 2011-03-08 10:51:15 +0100 | [diff] [blame] | 50 | |
Heiko Schocher | f1fef1d | 2010-04-26 13:07:28 +0200 | [diff] [blame] | 51 | /* |
| 52 | * Set Keymile specific environment variables |
| 53 | * Currently only some memory layout variables are calculated here |
| 54 | * ... ------------------------------------------------ |
| 55 | * ... |@rootfsaddr |@pnvramaddr |@varaddr |@reserved |@END_OF_RAM |
| 56 | * ... |<------------------- pram ------------------->| |
| 57 | * ... ------------------------------------------------ |
| 58 | * @END_OF_RAM: denotes the RAM size |
| 59 | * @pnvramaddr: Startadress of pseudo non volatile RAM in hex |
| 60 | * @pram : preserved ram size in k |
| 61 | * @varaddr : startadress for /var mounted into RAM |
| 62 | */ |
| 63 | int set_km_env(void) |
| 64 | { |
| 65 | uchar buf[32]; |
| 66 | unsigned int pnvramaddr; |
| 67 | unsigned int pram; |
| 68 | unsigned int varaddr; |
Andreas Huber | 2a7714c | 2011-09-13 23:06:11 +0000 | [diff] [blame] | 69 | unsigned int kernelmem; |
| 70 | char *p; |
| 71 | unsigned long rootfssize = 0; |
Heiko Schocher | f1fef1d | 2010-04-26 13:07:28 +0200 | [diff] [blame] | 72 | |
| 73 | pnvramaddr = gd->ram_size - CONFIG_KM_RESERVED_PRAM - CONFIG_KM_PHRAM |
| 74 | - CONFIG_KM_PNVRAM; |
| 75 | sprintf((char *)buf, "0x%x", pnvramaddr); |
| 76 | setenv("pnvramaddr", (char *)buf); |
| 77 | |
Andreas Huber | 2a7714c | 2011-09-13 23:06:11 +0000 | [diff] [blame] | 78 | /* try to read rootfssize (ram image) from envrionment */ |
| 79 | p = getenv("rootfssize"); |
| 80 | if (p != NULL) |
| 81 | strict_strtoul(p, 16, &rootfssize); |
| 82 | pram = (rootfssize + CONFIG_KM_RESERVED_PRAM + CONFIG_KM_PHRAM + |
| 83 | CONFIG_KM_PNVRAM) / 0x400; |
Heiko Schocher | f1fef1d | 2010-04-26 13:07:28 +0200 | [diff] [blame] | 84 | sprintf((char *)buf, "0x%x", pram); |
| 85 | setenv("pram", (char *)buf); |
| 86 | |
| 87 | varaddr = gd->ram_size - CONFIG_KM_RESERVED_PRAM - CONFIG_KM_PHRAM; |
| 88 | sprintf((char *)buf, "0x%x", varaddr); |
| 89 | setenv("varaddr", (char *)buf); |
Andreas Huber | 2a7714c | 2011-09-13 23:06:11 +0000 | [diff] [blame] | 90 | |
| 91 | kernelmem = gd->ram_size - 0x400 * pram; |
| 92 | sprintf((char *)buf, "0x%x", kernelmem); |
| 93 | setenv("kernelmem", (char *)buf); |
| 94 | |
Heiko Schocher | f1fef1d | 2010-04-26 13:07:28 +0200 | [diff] [blame] | 95 | return 0; |
| 96 | } |
| 97 | |
Holger Brunck | e792aff | 2011-09-14 10:54:12 +0200 | [diff] [blame] | 98 | #if defined(CONFIG_SYS_I2C_INIT_BOARD) |
Heiko Schocher | 62ddcf0 | 2010-02-18 08:08:25 +0100 | [diff] [blame] | 99 | #if !defined(CONFIG_MPC83xx) |
Heiko Schocher | 6c11aea | 2011-03-08 10:51:15 +0100 | [diff] [blame] | 100 | static void i2c_write_start_seq(void) |
Heiko Schocher | c248536 | 2008-10-15 09:39:08 +0200 | [diff] [blame] | 101 | { |
Heiko Schocher | b11f53f | 2011-03-15 16:52:29 +0100 | [diff] [blame] | 102 | set_sda(1); |
| 103 | udelay(DELAY_HALF_PERIOD); |
| 104 | set_scl(1); |
| 105 | udelay(DELAY_HALF_PERIOD); |
| 106 | set_sda(0); |
| 107 | udelay(DELAY_HALF_PERIOD); |
| 108 | set_scl(0); |
| 109 | udelay(DELAY_HALF_PERIOD); |
Heiko Schocher | c248536 | 2008-10-15 09:39:08 +0200 | [diff] [blame] | 110 | } |
| 111 | |
Heiko Schocher | b11f53f | 2011-03-15 16:52:29 +0100 | [diff] [blame] | 112 | /* |
| 113 | * I2C is a synchronous protocol and resets of the processor in the middle |
| 114 | * of an access can block the I2C Bus until a powerdown of the full unit is |
| 115 | * done. This function toggles the SCL until the SCL and SCA line are |
| 116 | * released, but max. 16 times, after this a I2C start-sequence is sent. |
| 117 | * This I2C Deblocking mechanism was developed by Keymile in association |
| 118 | * with Anatech and Atmel in 1998. |
Heiko Schocher | c248536 | 2008-10-15 09:39:08 +0200 | [diff] [blame] | 119 | */ |
Holger Brunck | 4f745bf | 2011-06-05 22:22:18 +0000 | [diff] [blame] | 120 | int i2c_make_abort(void) |
Heiko Schocher | c248536 | 2008-10-15 09:39:08 +0200 | [diff] [blame] | 121 | { |
Heiko Schocher | 6c11aea | 2011-03-08 10:51:15 +0100 | [diff] [blame] | 122 | |
| 123 | #if defined(CONFIG_HARD_I2C) && !defined(MACH_TYPE_KM_KIRKWOOD) |
| 124 | immap_t *immap = (immap_t *)CONFIG_SYS_IMMR ; |
| 125 | i2c8260_t *i2c = (i2c8260_t *)&immap->im_i2c; |
| 126 | |
| 127 | /* |
| 128 | * disable I2C controller first, otherwhise it thinks we want to |
| 129 | * talk to the slave port... |
| 130 | */ |
| 131 | clrbits_8(&i2c->i2c_i2mod, 0x01); |
| 132 | |
| 133 | /* Set the PortPins to GPIO */ |
| 134 | setports(1); |
| 135 | #endif |
| 136 | |
Heiko Schocher | c248536 | 2008-10-15 09:39:08 +0200 | [diff] [blame] | 137 | int scl_state = 0; |
| 138 | int sda_state = 0; |
| 139 | int i = 0; |
| 140 | int ret = 0; |
| 141 | |
Heiko Schocher | b11f53f | 2011-03-15 16:52:29 +0100 | [diff] [blame] | 142 | if (!get_sda()) { |
Heiko Schocher | c248536 | 2008-10-15 09:39:08 +0200 | [diff] [blame] | 143 | ret = -1; |
| 144 | while (i < 16) { |
| 145 | i++; |
Heiko Schocher | b11f53f | 2011-03-15 16:52:29 +0100 | [diff] [blame] | 146 | set_scl(0); |
| 147 | udelay(DELAY_ABORT_SEQ); |
| 148 | set_scl(1); |
| 149 | udelay(DELAY_ABORT_SEQ); |
| 150 | scl_state = get_scl(); |
| 151 | sda_state = get_sda(); |
Heiko Schocher | c248536 | 2008-10-15 09:39:08 +0200 | [diff] [blame] | 152 | if (scl_state && sda_state) { |
| 153 | ret = 0; |
| 154 | break; |
| 155 | } |
| 156 | } |
| 157 | } |
Heiko Schocher | b11f53f | 2011-03-15 16:52:29 +0100 | [diff] [blame] | 158 | if (ret == 0) |
| 159 | for (i = 0; i < 5; i++) |
Heiko Schocher | 6c11aea | 2011-03-08 10:51:15 +0100 | [diff] [blame] | 160 | i2c_write_start_seq(); |
Heiko Schocher | b11f53f | 2011-03-15 16:52:29 +0100 | [diff] [blame] | 161 | |
Heiko Schocher | 6c11aea | 2011-03-08 10:51:15 +0100 | [diff] [blame] | 162 | /* respect stop setup time */ |
| 163 | udelay(DELAY_ABORT_SEQ); |
| 164 | set_scl(1); |
| 165 | udelay(DELAY_ABORT_SEQ); |
| 166 | set_sda(1); |
Heiko Schocher | b11f53f | 2011-03-15 16:52:29 +0100 | [diff] [blame] | 167 | get_sda(); |
Heiko Schocher | c248536 | 2008-10-15 09:39:08 +0200 | [diff] [blame] | 168 | |
| 169 | #if defined(CONFIG_HARD_I2C) |
| 170 | /* Set the PortPins back to use for I2C */ |
Heiko Schocher | b11f53f | 2011-03-15 16:52:29 +0100 | [diff] [blame] | 171 | setports(0); |
Heiko Schocher | c248536 | 2008-10-15 09:39:08 +0200 | [diff] [blame] | 172 | #endif |
Heiko Schocher | 6c11aea | 2011-03-08 10:51:15 +0100 | [diff] [blame] | 173 | return ret; |
| 174 | } |
Heiko Schocher | 6c11aea | 2011-03-08 10:51:15 +0100 | [diff] [blame] | 175 | #endif |
| 176 | |
| 177 | /** |
| 178 | * i2c_init_board - reset i2c bus. When the board is powercycled during a |
| 179 | * bus transfer it might hang; for details see doc/I2C_Edge_Conditions. |
| 180 | */ |
| 181 | void i2c_init_board(void) |
| 182 | { |
| 183 | /* Now run the AbortSequence() */ |
| 184 | i2c_make_abort(); |
Heiko Schocher | c248536 | 2008-10-15 09:39:08 +0200 | [diff] [blame] | 185 | } |
Holger Brunck | e792aff | 2011-09-14 10:54:12 +0200 | [diff] [blame] | 186 | #endif |
| 187 | |
Heiko Schocher | 6250f0f | 2008-10-17 16:11:52 +0200 | [diff] [blame] | 188 | |
Holger Brunck | 802d996 | 2011-03-14 15:31:19 +0100 | [diff] [blame] | 189 | #if !defined(MACH_TYPE_KM_KIRKWOOD) |
Heiko Schocher | b11f53f | 2011-03-15 16:52:29 +0100 | [diff] [blame] | 190 | int ethernet_present(void) |
Heiko Schocher | 210c8c0 | 2008-11-21 08:29:40 +0100 | [diff] [blame] | 191 | { |
Heiko Schocher | 8ed7434 | 2011-03-08 10:47:39 +0100 | [diff] [blame] | 192 | struct km_bec_fpga *base = |
| 193 | (struct km_bec_fpga *)CONFIG_SYS_KMBEC_FPGA_BASE; |
Heiko Schocher | b11f53f | 2011-03-15 16:52:29 +0100 | [diff] [blame] | 194 | |
| 195 | return in_8(&base->bprth) & PIGGY_PRESENT; |
Heiko Schocher | 210c8c0 | 2008-11-21 08:29:40 +0100 | [diff] [blame] | 196 | } |
Heiko Schocher | 67fa8c2 | 2010-02-22 16:43:02 +0530 | [diff] [blame] | 197 | #endif |
Heiko Schocher | 210c8c0 | 2008-11-21 08:29:40 +0100 | [diff] [blame] | 198 | |
Heiko Schocher | b11f53f | 2011-03-15 16:52:29 +0100 | [diff] [blame] | 199 | int board_eth_init(bd_t *bis) |
Heiko Schocher | 210c8c0 | 2008-11-21 08:29:40 +0100 | [diff] [blame] | 200 | { |
Heiko Schocher | b11f53f | 2011-03-15 16:52:29 +0100 | [diff] [blame] | 201 | if (ethernet_present()) |
Heiko Schocher | 62ddcf0 | 2010-02-18 08:08:25 +0100 | [diff] [blame] | 202 | return cpu_eth_init(bis); |
| 203 | |
| 204 | return -1; |
Heiko Schocher | 210c8c0 | 2008-11-21 08:29:40 +0100 | [diff] [blame] | 205 | } |
Holger Brunck | a9417ce | 2011-05-04 01:47:30 +0000 | [diff] [blame] | 206 | |
| 207 | /* |
| 208 | * do_setboardid command |
| 209 | * read out the board id and the hw key from the intventory EEPROM and set |
| 210 | * this values as environment variables. |
| 211 | */ |
| 212 | static int do_setboardid(cmd_tbl_t *cmdtp, int flag, int argc, |
| 213 | char *const argv[]) |
| 214 | { |
| 215 | unsigned char buf[32]; |
| 216 | char *p; |
| 217 | |
| 218 | p = get_local_var("IVM_BoardId"); |
| 219 | if (p == NULL) { |
| 220 | printf("can't get the IVM_Boardid\n"); |
| 221 | return 1; |
| 222 | } |
| 223 | sprintf((char *)buf, "%s", p); |
| 224 | setenv("boardid", (char *)buf); |
Holger Brunck | 9485e77 | 2011-07-04 22:23:59 +0000 | [diff] [blame] | 225 | printf("set boardid=%s\n", buf); |
Holger Brunck | a9417ce | 2011-05-04 01:47:30 +0000 | [diff] [blame] | 226 | |
| 227 | p = get_local_var("IVM_HWKey"); |
| 228 | if (p == NULL) { |
| 229 | printf("can't get the IVM_HWKey\n"); |
| 230 | return 1; |
| 231 | } |
| 232 | sprintf((char *)buf, "%s", p); |
| 233 | setenv("hwkey", (char *)buf); |
Holger Brunck | 9485e77 | 2011-07-04 22:23:59 +0000 | [diff] [blame] | 234 | printf("set hwkey=%s\n", buf); |
| 235 | printf("Execute manually saveenv for persistent storage.\n"); |
Holger Brunck | a9417ce | 2011-05-04 01:47:30 +0000 | [diff] [blame] | 236 | |
| 237 | return 0; |
| 238 | } |
| 239 | |
| 240 | U_BOOT_CMD(km_setboardid, 1, 0, do_setboardid, "setboardid", "read out bid and " |
| 241 | "hwkey from IVM and set in environment"); |
Thomas Herzmann | 92c9108 | 2011-05-12 19:59:22 +0000 | [diff] [blame] | 242 | |
| 243 | /* |
| 244 | * command km_checkbidhwk |
| 245 | * if "boardid" and "hwkey" are not already set in the environment, do: |
| 246 | * if a "boardIdListHex" exists in the environment: |
| 247 | * - read ivm data for boardid and hwkey |
| 248 | * - compare each entry of the boardIdListHex with the |
| 249 | * IVM data: |
| 250 | * if match: |
| 251 | * set environment variables boardid, boardId, |
| 252 | * hwkey, hwKey to the found values |
| 253 | * both (boardid and boardId) are set because |
| 254 | * they might be used differently in the |
| 255 | * application and in the init scripts (?) |
| 256 | * return 0 in case of match, 1 if not match or error |
| 257 | */ |
| 258 | int do_checkboardidhwk(cmd_tbl_t *cmdtp, int flag, int argc, |
| 259 | char *const argv[]) |
| 260 | { |
| 261 | unsigned long ivmbid = 0, ivmhwkey = 0; |
| 262 | unsigned long envbid = 0, envhwkey = 0; |
| 263 | char *p; |
| 264 | int verbose = argc > 1 && *argv[1] == 'v'; |
| 265 | int rc = 0; |
| 266 | |
| 267 | /* |
| 268 | * first read out the real inventory values, these values are |
| 269 | * already stored in the local hush variables |
| 270 | */ |
| 271 | p = get_local_var("IVM_BoardId"); |
| 272 | if (p == NULL) { |
| 273 | printf("can't get the IVM_Boardid\n"); |
| 274 | return 1; |
| 275 | } |
| 276 | rc = strict_strtoul(p, 16, &ivmbid); |
| 277 | |
| 278 | p = get_local_var("IVM_HWKey"); |
| 279 | if (p == NULL) { |
| 280 | printf("can't get the IVM_HWKey\n"); |
| 281 | return 1; |
| 282 | } |
| 283 | rc = strict_strtoul(p, 16, &ivmhwkey); |
| 284 | |
| 285 | if (!ivmbid || !ivmhwkey) { |
| 286 | printf("Error: IVM_BoardId and/or IVM_HWKey not set!\n"); |
| 287 | return rc; |
| 288 | } |
| 289 | |
| 290 | /* now try to read values from environment if available */ |
| 291 | p = getenv("boardid"); |
| 292 | if (p != NULL) |
| 293 | rc = strict_strtoul(p, 16, &envbid); |
| 294 | p = getenv("hwkey"); |
| 295 | if (p != NULL) |
| 296 | rc = strict_strtoul(p, 16, &envhwkey); |
| 297 | |
| 298 | if (rc != 0) { |
| 299 | printf("strict_strtoul returns error: %d", rc); |
| 300 | return rc; |
| 301 | } |
| 302 | |
| 303 | if (!envbid || !envhwkey) { |
| 304 | /* |
| 305 | * BoardId/HWkey not available in the environment, so try the |
| 306 | * environment variable for BoardId/HWkey list |
| 307 | */ |
| 308 | char *bidhwklist = getenv("boardIdListHex"); |
| 309 | |
| 310 | if (bidhwklist) { |
| 311 | int found = 0; |
| 312 | char *rest = bidhwklist; |
| 313 | char *endp; |
| 314 | |
| 315 | if (verbose) { |
| 316 | printf("IVM_BoardId: %ld, IVM_HWKey=%ld\n", |
| 317 | ivmbid, ivmhwkey); |
| 318 | printf("boardIdHwKeyList: %s\n", |
| 319 | bidhwklist); |
| 320 | } |
| 321 | while (!found) { |
| 322 | /* loop over each bid/hwkey pair in the list */ |
| 323 | unsigned long bid = 0; |
| 324 | unsigned long hwkey = 0; |
| 325 | |
| 326 | while (*rest && !isxdigit(*rest)) |
| 327 | rest++; |
| 328 | /* |
| 329 | * use simple_strtoul because we need &end and |
| 330 | * we know we got non numeric char at the end |
| 331 | */ |
| 332 | bid = simple_strtoul(rest, &endp, 16); |
| 333 | /* BoardId and HWkey are separated with a "_" */ |
| 334 | if (*endp == '_') { |
| 335 | rest = endp + 1; |
| 336 | /* |
| 337 | * use simple_strtoul because we need |
| 338 | * &end |
| 339 | */ |
| 340 | hwkey = simple_strtoul(rest, &endp, 16); |
| 341 | rest = endp; |
| 342 | while (*rest && !isxdigit(*rest)) |
| 343 | rest++; |
| 344 | } |
| 345 | if ((!bid) || (!hwkey)) { |
| 346 | /* end of list */ |
| 347 | break; |
| 348 | } |
| 349 | if (verbose) { |
| 350 | printf("trying bid=0x%lX, hwkey=%ld\n", |
| 351 | bid, hwkey); |
| 352 | } |
| 353 | /* |
| 354 | * Compare the values of the found entry in the |
| 355 | * list with the valid values which are stored |
| 356 | * in the inventory eeprom. If they are equal |
Holger Brunck | ba8be32 | 2011-06-05 22:22:17 +0000 | [diff] [blame] | 357 | * set the values in environment variables. |
Thomas Herzmann | 92c9108 | 2011-05-12 19:59:22 +0000 | [diff] [blame] | 358 | */ |
| 359 | if ((bid == ivmbid) && (hwkey == ivmhwkey)) { |
| 360 | char buf[10]; |
| 361 | |
| 362 | found = 1; |
| 363 | envbid = bid; |
| 364 | envhwkey = hwkey; |
| 365 | sprintf(buf, "%lx", bid); |
| 366 | setenv("boardid", buf); |
| 367 | sprintf(buf, "%lx", hwkey); |
| 368 | setenv("hwkey", buf); |
Thomas Herzmann | 92c9108 | 2011-05-12 19:59:22 +0000 | [diff] [blame] | 369 | } |
| 370 | } /* end while( ! found ) */ |
| 371 | } |
| 372 | } |
| 373 | |
| 374 | /* compare now the values */ |
| 375 | if ((ivmbid == envbid) && (ivmhwkey == envhwkey)) { |
| 376 | printf("boardid=0x%3lX, hwkey=%ld\n", envbid, envhwkey); |
| 377 | rc = 0; /* match */ |
| 378 | } else { |
Holger Brunck | 9485e77 | 2011-07-04 22:23:59 +0000 | [diff] [blame] | 379 | printf("Error: env boardid=0x%3lX, hwkey=%ld\n", envbid, |
| 380 | envhwkey); |
Thomas Herzmann | 92c9108 | 2011-05-12 19:59:22 +0000 | [diff] [blame] | 381 | printf(" IVM bId=0x%3lX, hwKey=%ld\n", ivmbid, ivmhwkey); |
| 382 | rc = 1; /* don't match */ |
| 383 | } |
| 384 | return rc; |
| 385 | } |
| 386 | |
| 387 | U_BOOT_CMD(km_checkbidhwk, 2, 0, do_checkboardidhwk, |
| 388 | "check boardid and hwkey", |
| 389 | "[v]\n - check environment parameter "\ |
| 390 | "\"boardIdListHex\" against stored boardid and hwkey "\ |
| 391 | "from the IVM\n v: verbose output" |
| 392 | ); |
Thomas Herzmann | c1b3d84 | 2012-05-04 10:55:58 +0200 | [diff] [blame] | 393 | |
| 394 | /* |
| 395 | * command km_checktestboot |
| 396 | * if the testpin of the board is asserted, return 1 |
| 397 | * * else return 0 |
| 398 | */ |
| 399 | int do_checktestboot(cmd_tbl_t *cmdtp, int flag, int argc, |
| 400 | char *const argv[]) |
| 401 | { |
| 402 | int testpin = 0; |
| 403 | char *s = NULL; |
| 404 | int testboot = 0; |
| 405 | int verbose = argc > 1 && *argv[1] == 'v'; |
| 406 | |
| 407 | #if defined(CONFIG_POST) |
| 408 | testpin = post_hotkeys_pressed(); |
| 409 | s = getenv("test_bank"); |
| 410 | #endif |
| 411 | /* when test_bank is not set, act as if testpin is not asserted */ |
| 412 | testboot = (testpin != 0) && (s); |
| 413 | if (verbose) { |
| 414 | printf("testpin = %d\n", testpin); |
| 415 | printf("test_bank = %s\n", s ? s : "not set"); |
| 416 | printf("boot test app : %s\n", (testboot) ? "yes" : "no"); |
| 417 | } |
| 418 | /* return 0 means: testboot, therefore we need the inversion */ |
| 419 | return !testboot; |
| 420 | } |
| 421 | |
| 422 | U_BOOT_CMD(km_checktestboot, 2, 0, do_checktestboot, |
| 423 | "check if testpin is asserted", |
| 424 | "[v]\n v - verbose output" |
| 425 | ); |