Lines Matching defs:node
24 * SPMC attribute node parser
28 int node)
35 rc = fdt_read_uint32(fdt, node, "maj_ver", &attr->major_version);
42 rc = fdt_read_uint32(fdt, node, "min_ver", &attr->minor_version);
49 rc = fdt_read_uint32(fdt, node, "spmc_id", &val32);
57 rc = fdt_read_uint32(fdt, node, "exec_state", &attr->exec_state);
63 rc = fdt_read_uint32(fdt, node, "binary_size", &attr->binary_size);
69 rc = fdt_read_uint64(fdt, node, "load_address", &attr->load_address);
75 rc = fdt_read_uint64(fdt, node, "entrypoint", &attr->entrypoint);
92 * Root node handler
98 int node;
102 node = fdt_subnode_offset_namelen(fdt, root, ATTRIBUTE_ROOT_NODE_STR,
104 if (node < 0) {
105 ERROR("Root node doesn't contain subnode '%s'\n",
107 return node;
110 return manifest_parse_attribute(manifest, fdt, node);