Home
last modified time | relevance | path

Searched refs:nodep (Results 1 – 4 of 4) sorted by relevance

/rk3399_rockchip-uboot/tools/
H A Dfit_info.c47 const void *nodep; /* property node pointer */ in main() local
96 nodep = fdt_getprop(fit_blob, nodeoffset, propertyname, &len); in main()
104 printf("OFF: %d\n", (int)(nodep - fit_blob)); in main()
105 printf("END: %d\n", (int)(nodep + len - fit_blob)); in main()
/rk3399_rockchip-uboot/cmd/
H A Dfdt.c52 static int fdt_value_env_set(const void *nodep, int len, const char *var) in fdt_value_env_set() argument
54 if (is_printable_string(nodep, len)) in fdt_value_env_set()
55 env_set(var, (void *)nodep); in fdt_value_env_set()
59 sprintf(buf, "0x%08X", fdt32_to_cpu(*(fdt32_t *)nodep)); in fdt_value_env_set()
68 *(unsigned int *)(nodep + i)); in fdt_value_env_set()
221 char *nodep; /* new node to add */ in do_fdt() local
232 nodep = argv[3]; in do_fdt()
243 err = fdt_add_subnode(working_fdt, nodeoffset, nodep); in do_fdt()
313 const void *nodep; /* property node pointer */ in do_fdt() local
379 nodep = fdt_getprop( in do_fdt()
[all …]
/rk3399_rockchip-uboot/board/BuR/common/
H A Dcommon.c122 const char *nodep = 0; in load_lcdtiming() local
172 nodep = fdt_getprop(gd->fdt_blob, nodeoff, "rotation", NULL); in load_lcdtiming()
173 if (nodep != 0) { in load_lcdtiming()
174 if (strcmp(nodep, "cw") == 0) in load_lcdtiming()
176 else if (strcmp(nodep, "ud") == 0) in load_lcdtiming()
178 else if (strcmp(nodep, "ccw") == 0) in load_lcdtiming()
328 const char *nodep = buf; in br_summaryscreen_printdtb() local
353 nodep = fdt_getprop(gd->fdt_blob, nodeoffset, name, &len); in br_summaryscreen_printdtb()
355 if (nodep && strlen(nodep) > 1) in br_summaryscreen_printdtb()
356 lcd_printf("%s %s %s", prefix, nodep, suffix); in br_summaryscreen_printdtb()
/rk3399_rockchip-uboot/lib/
H A Dfdtdec.c899 const char *nodep; in fdtdec_get_config_string() local
908 nodep = fdt_getprop(blob, nodeoffset, prop_name, &len); in fdtdec_get_config_string()
909 if (!nodep) in fdtdec_get_config_string()
912 return (char *)nodep; in fdtdec_get_config_string()