From: Angus Ainslie Date: Sun, 28 Nov 2021 16:02:53 +0000 (-0800) Subject: cmd: fuse: Add a command to read fuses to memory X-Git-Tag: v2022.07~175^2~20 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b4f0c7f613177e41894a9153e55adb8fec8d7bc0;p=platform%2Fkernel%2Fu-boot.git cmd: fuse: Add a command to read fuses to memory With the fuse values in memory we can use some of the other u-boot shell conditonal operators to do tests. Signed-off-by: Angus Ainslie --- diff --git a/cmd/fuse.c b/cmd/fuse.c index 78b1065..0676bb7 100644 --- a/cmd/fuse.c +++ b/cmd/fuse.c @@ -12,6 +12,7 @@ #include #include #include +#include #include static int strtou32(const char *str, unsigned int base, u32 *result) @@ -46,6 +47,8 @@ static int do_fuse(struct cmd_tbl *cmdtp, int flag, int argc, const char *op = argc >= 2 ? argv[1] : NULL; int confirmed = argc >= 3 && !strcmp(argv[2], "-y"); u32 bank, word, cnt, val, cmp; + ulong addr; + void *buf, *start; int ret, i; argc -= 2 + confirmed; @@ -73,6 +76,28 @@ static int do_fuse(struct cmd_tbl *cmdtp, int flag, int argc, printf(" %.8x", val); } putc('\n'); + } else if (!strcmp(op, "readm")) { + if (argc == 3) + cnt = 1; + else if (argc != 4 || strtou32(argv[3], 0, &cnt)) + return CMD_RET_USAGE; + + addr = simple_strtoul(argv[2], NULL, 16); + + start = map_sysmem(addr, 4); + buf = start; + + printf("Reading bank %u len %u to 0x%lx\n", bank, cnt, addr); + for (i = 0; i < cnt; i++, word++) { + ret = fuse_read(bank, word, &val); + if (ret) + goto err; + + *((u32 *)buf) = val; + buf += 4; + } + + unmap_sysmem(start); } else if (!strcmp(op, "cmp")) { if (argc != 3 || strtou32(argv[2], 0, &cmp)) return CMD_RET_USAGE; @@ -157,6 +182,8 @@ U_BOOT_CMD( " starting at 'word'\n" "fuse cmp - compare 'hexval' to fuse\n" " at 'word'\n" + "fuse readm [] - read 1 or 'cnt' fuse words,\n" + " starting at 'word' into memory at 'addr'\n" "fuse sense [] - sense 1 or 'cnt' fuse words,\n" " starting at 'word'\n" "fuse prog [-y] [...] - program 1 or\n"