Lines Matching full:node
375 const char *fit_uname_cfg; /* configuration node unit name */
378 const char *fit_uname_os; /* os subimage node unit name */
379 int fit_noffset_os; /* os subimage node offset */
382 const char *fit_uname_rd; /* init ramdisk subimage node unit name */
383 int fit_noffset_rd; /* init ramdisk subimage node offset */
386 const char *fit_uname_fdt; /* FDT blob subimage node unit name */
387 int fit_noffset_fdt;/* FDT blob subimage node offset */
390 const char *fit_uname_setup; /* x86 setup subimage node name */
391 int fit_noffset_setup;/* x86 setup subimage node offset */
648 * @return node offset of base image, or -ve error code on error
682 * @return node offset of image, or -ve error code on error
693 * This looks in the selected conf- node (images->fit_uname_cfg) for a
710 * the function will return the node offset of the kernel@1 node, assuming
931 /* hash/signature node */
938 /* image node */
952 /* configuration node */
998 * fit_get_name - get FIT node name
1003 * pointer to node name, on success
1076 * fit_conf_get_prop_node() - Get node refered to by a configuration
1078 * @noffset: Offset of conf@xxx node to check
1079 * @prop_name: Property to read from the conf node
1083 * return the offset of the node referred to (e.g. offset of node
1132 int node_offset; /* Offset of signature node */
1138 int required_keynode; /* Node offset of key to use: -1=any */
1196 * Add public key information to the FDT node, suitable for
1256 * @image_noffset: Offset of image node to check
1271 * fit_image_check_sig() - Check a single image signature node
1274 * @noffset: Offset of signature node to check
1277 * @required_keynode: Offset in the control FDT of the required key node,
1305 static inline int fit_image_check_target_arch(const void *fdt, int node) in fit_image_check_target_arch() argument
1308 return fit_image_check_arch(fdt, node, IH_ARCH_DEFAULT); in fit_image_check_target_arch()
1350 * in each (FDT) image node.
1368 * @node: offset of image node
1373 void board_fit_image_post_process(const void *fit, int node, void **p_image, size_t *p_size);
1378 ulong fdt_getprop_u32(const void *fdt, int node, const char *prop);
1381 * fit_find_config_node() - Find the node for the best DTB in a FIT image
1384 * configurations described in the FIT images and returns the node of
1387 * the node described by the default configuration if it exists.
1390 * @return the node if found, -ve otherwise