Searched refs:blob (Results 1 – 6 of 6) sorted by relevance
/cmd/ |
A D | pstore.c | 485 void fdt_fixup_pstore(void *blob) in fdt_fixup_pstore() argument 494 nodeoffset = fdt_path_offset(blob, "/"); in fdt_fixup_pstore() 510 addr_cells = fdt_getprop_u32_default_node(blob, nodeoffset, 0, in fdt_fixup_pstore() 515 fdt_setprop_u32(blob, nodeoffset, "#size-cells", size_cells); in fdt_fixup_pstore() 517 fdt_setprop_empty(blob, nodeoffset, "ranges"); in fdt_fixup_pstore() 520 nodeoffset = fdt_add_subnode(blob, nodeoffset, node); in fdt_fixup_pstore() 529 fdt_setprop_u32(blob, nodeoffset, "reg", pstore_addr); in fdt_fixup_pstore() 531 fdt_setprop_u64(blob, nodeoffset, "reg", pstore_addr); in fdt_fixup_pstore() 539 fdt_appendprop_u32(blob, nodeoffset, "reg", pstore_length); in fdt_fixup_pstore() 541 fdt_appendprop_u64(blob, nodeoffset, "reg", pstore_length); in fdt_fixup_pstore() [all …]
|
A D | fdt.c | 157 struct fdt_header *blob; in do_fdt() local 184 blob = working_fdt; in do_fdt() 185 if (!blob || !fdt_valid(&blob)) in do_fdt() 195 blob = map_sysmem(addr, 0); in do_fdt() 200 gd->fdt_blob = blob; in do_fdt() 220 err = fdt_open_into(blob, blob, len); in do_fdt() 719 struct fdt_header *blob; in do_fdt() local 730 if (!fdt_valid(&blob)) in do_fdt() 733 gd->fdt_blob = blob; in do_fdt() 753 struct fdt_header *blob; in do_fdt() local [all …]
|
A D | extension_board.c | 23 struct fdt_header *blob; in extension_apply() local 53 blob = map_sysmem(overlay_addr, 0); in extension_apply() 54 if (!fdt_valid(&blob)) in extension_apply() 58 if (fdt_overlay_apply_verbose(working_fdt, blob)) in extension_apply()
|
A D | blob.c | 102 U_BOOT_LONGHELP(blob, 121 blob, 6, 1, do_blob,
|
A D | Makefile | 232 obj-$(CONFIG_CMD_BLOB) += blob.o
|
A D | Kconfig | 2637 bool "Enable the 'blob' command" 2649 Encapsulating data as a blob 2655 blob. The non-volatile secure key is available for use only during 2662 blob enc - encapsulating data as a cryptgraphic blob 2663 blob dec - decapsulating cryptgraphic blob to get the data 2667 blob enc src dst len km 2669 Encapsulate and create blob of data $len bytes long 2675 blob dec src dst len km 2677 Decapsulate the blob of data at address $src and
|
Completed in 88 milliseconds