mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-28 15:41:40 +00:00
cmd: fdt: Add support for integer arrays in fdt get value with index
Currently any integer array value is set as long up-to-40 character hexadecimal string into environment variable when extracted from an FDT using 'fdt get value path prop index', because the support for handling integer arrays is not implemented, and fdt_value_env_set() code falls back into the hash handling behavior instead. Implement this support simply by checking whether user supplied any index. If index is set and the property length is multiple of four, then this is an integer array, and the code would extract value at specified index. There is a subtle change where default index is set to -1 instead of 0. This is OK, since the only place which checks for index to be less or equal zero is the string array handling code in fdt_value_env_set() and that code would work perfectly well with index -1 too. Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org> Reviewed-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
parent
b363da1c26
commit
4e6d030550
1 changed files with 12 additions and 2 deletions
14
cmd/fdt.c
14
cmd/fdt.c
|
@ -77,7 +77,17 @@ static int fdt_value_env_set(const void *nodep, int len,
|
|||
|
||||
sprintf(buf, "0x%08X", fdt32_to_cpu(*(fdt32_t *)nodep));
|
||||
env_set(var, buf);
|
||||
} else if (len%4 == 0 && len <= 20) {
|
||||
} else if (len % 4 == 0 && index >= 0) {
|
||||
/* Needed to print integer arrays. */
|
||||
const unsigned int *nodec = (const unsigned int *)nodep;
|
||||
char buf[11];
|
||||
|
||||
if (index * 4 >= len)
|
||||
return 1;
|
||||
|
||||
sprintf(buf, "0x%08X", fdt32_to_cpu(*(nodec + index)));
|
||||
env_set(var, buf);
|
||||
} else if (len % 4 == 0 && len <= 20) {
|
||||
/* Needed to print things like sha1 hashes. */
|
||||
char buf[41];
|
||||
int i;
|
||||
|
@ -448,7 +458,7 @@ static int do_fdt(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
|
|||
working_fdt, nodeoffset, prop, &len);
|
||||
if (nodep && len >= 0) {
|
||||
if (subcmd[0] == 'v') {
|
||||
int index = 0;
|
||||
int index = -1;
|
||||
int ret;
|
||||
|
||||
if (len == 0) {
|
||||
|
|
Loading…
Reference in a new issue