From a9417ce74a8b79b1a3ab879d05f4f54138422c6e Mon Sep 17 00:00:00 2001 From: Holger Brunck Date: Wed, 4 May 2011 01:47:30 +0000 Subject: km/common: implement setboardid command Read out board id and HW key from the IVM eeprom and set these values as an environment variable. Signed-off-by: Holger Brunck Acked-by: Heiko Schocher cc: Wolfgang Denk cc: Detlev Zundel cc: Valentin Longchamp diff --git a/board/keymile/common/common.c b/board/keymile/common/common.c index 25a3850..9adfefa 100644 --- a/board/keymile/common/common.c +++ b/board/keymile/common/common.c @@ -26,6 +26,7 @@ #include #endif #include +#include #include #include #include @@ -682,3 +683,36 @@ int board_eth_init(bd_t *bis) return -1; } + +/* + * do_setboardid command + * read out the board id and the hw key from the intventory EEPROM and set + * this values as environment variables. + */ +static int do_setboardid(cmd_tbl_t *cmdtp, int flag, int argc, + char *const argv[]) +{ + unsigned char buf[32]; + char *p; + + p = get_local_var("IVM_BoardId"); + if (p == NULL) { + printf("can't get the IVM_Boardid\n"); + return 1; + } + sprintf((char *)buf, "%s", p); + setenv("boardid", (char *)buf); + + p = get_local_var("IVM_HWKey"); + if (p == NULL) { + printf("can't get the IVM_HWKey\n"); + return 1; + } + sprintf((char *)buf, "%s", p); + setenv("hwkey", (char *)buf); + + return 0; +} + +U_BOOT_CMD(km_setboardid, 1, 0, do_setboardid, "setboardid", "read out bid and " + "hwkey from IVM and set in environment"); -- cgit v0.10.2