Searched refs:child (Results 26 - 50 of 101) sorted by relevance

12345

/u-boot/scripts/kconfig/
H A Dqconf.cc127 * depending whether it's at the view root or a child.
579 struct menu* child; local
597 for (child = menu->list; child; child = child->next) {
599 type = child->prompt ? child->prompt->type : P_UNKNOWN;
603 if (!(child->flags & MENU_ROOT))
607 if (child
644 struct menu* child; local
1801 struct menu *child; local
[all...]
H A Dmenu.c339 /* For each child menu node... */
342 * Propagate parent dependencies to the child menu
618 struct menu *child; local
620 for (child = menu->list; child; child = child->next) {
621 if (menu_is_visible(child))
629 struct menu *child; local
654 for (child
[all...]
/u-boot/drivers/pinctrl/tegra/
H A Dpinctrl-tegra.c151 struct udevice *child; local
155 device_foreach_child(child, config) {
157 ret = dev_read_string_index(child, "nvidia,pins", 0,
164 ret = dev_read_string_count(child, "nvidia,pins");
172 tegra_pinctrl_set_drive(child, ret);
175 tegra_pinctrl_set_pin(child, ret);
/u-boot/doc/sphinx/
H A DrstFlatTable.py332 for child in rowItem:
333 if (isinstance(child , nodes.comment)
334 or isinstance(child, nodes.system_message)):
336 elif isinstance(child , nodes.target):
337 target = child
338 elif isinstance(child, nodes.bullet_list):
340 cell = child
/u-boot/lib/acpi/
H A Dacpi_dp.c83 acpi_dp_free(dp->child);
156 return log_msg_ret("child uuid", ret);
158 /* Print child pointer properties */
174 ret = acpi_dp_write_internal(ctx, dp->child);
176 return log_msg_ret("dp child", ret);
267 struct acpi_dp *child)
272 if (child->type != ACPI_DP_TYPE_TABLE)
277 new->child = child;
278 new->string = child
266 acpi_dp_add_child(struct acpi_dp *dp, const char *name, struct acpi_dp *child) argument
[all...]
/u-boot/tools/binman/etype/
H A Dcbfs.py286 def ReadChildData(self, child, decomp=True, alt_format=None):
291 cfile = reader.files.get(child.name)
294 def WriteChildData(self, child):
295 # Recreate the data structure, leaving the data for this child alone,
296 # so that child.data is used to pack into the FIP.
297 self.ObtainContents(skip_entry=child)
298 return super().WriteChildData(child)
H A Dsection.py83 ReadChildData(child, decomp, alt_format):
89 given child, then return that data.
104 WriteChildData(child):
105 Binman calls this after `child.data` is updated, to inform the custom
110 use `child.data` to update the data for that child in the custom file
889 def ReadChildData(self, child, decomp=True, alt_format=None):
890 tout.debug(f"ReadChildData for child '{child.GetPath()}'")
892 offset = child
[all...]
/u-boot/drivers/core/
H A Dof_access.c153 } else if (prev->child) {
154 np = prev->child;
305 next = prev ? prev->sibling : node->child;
319 #define __for_each_child_of_node(parent, child) \
320 for (child = __of_get_next_child(parent, NULL); child != NULL; \
321 child = __of_get_next_child(parent, child))
326 struct device_node *child; local
333 __for_each_child_of_node(parent, child) {
984 struct device_node *child, *new, *last_sibling = NULL; local
[all...]
H A Ddevres.c226 struct udevice *child; local
235 device_foreach_child(child, dev)
236 dump_resources(child, depth + 1);
/u-boot/drivers/memory/
H A Dti-gpmc.c882 * @np: pointer to device-tree node for a gpmc child device
885 * Reads the GPMC settings for a GPMC child device from device-tree and
996 * gpmc_probe_generic_child - configures the gpmc for a child device
998 * @child: pointer to device-tree node for child device
1000 * Allocates and configures a GPMC chip-select for a child device.
1004 ofnode child)
1013 if (ofnode_read_u32(child, "reg", &cs) < 0) {
1014 dev_err(dev, "can't get reg property of child %s\n",
1015 ofnode_get_name(child));
1003 gpmc_probe_generic_child(struct udevice *dev, ofnode child) argument
1125 ofnode child; local
[all...]
/u-boot/drivers/tpm/
H A Dtpm-uclass.c157 struct udevice *child; local
161 &child);
164 log_debug("RNG child already added to the TPM device\n");
168 ret = device_bind_driver(dev, drv, TPM_RNG_DRV_NAME, &child);
/u-boot/test/dm/
H A Dcore.c436 /* Getting the child device should allocate plat / priv */
570 * @key: Key value to put in first child. Subsequence children
572 * @child: If not NULL, then the child device pointers are written into
577 int count, int key, struct udevice *child[])
590 if (child)
591 child[i] = dev;
602 struct udevice *child[NODE_COUNT]; local
619 ut_assertok(create_children(uts, top[5], NODE_COUNT, 5, child));
623 ut_assertok(create_children(uts, child[
576 create_children(struct unit_test_state *uts, struct udevice *parent, int count, int key, struct udevice *child[]) argument
684 struct udevice *child[NODE_COUNT]; local
1297 struct udevice *dev, *child; local
[all...]
/u-boot/drivers/usb/dwc3/
H A Ddwc3-uniphier.c80 struct udevice *child; local
93 name, subnode, &child);
H A Ddwc3-generic.c629 struct udevice *child = NULL; local
660 device_find_first_child(dev, &child);
661 if (!child)
665 ret = dwc3_glue_clk_init(child, glue);
671 ret = dwc3_glue_reset_init(child, glue);
676 while (child) {
679 dr_mode = usb_get_dr_mode(dev_ofnode(child));
680 device_find_next_child(&child);
/u-boot/drivers/misc/
H A Dtegra186_bpmp.c116 struct udevice *child; local
121 dev_ofnode(dev), &child);
127 &child);
133 dev_ofnode(dev), &child);
/u-boot/include/dm/
H A Dof.h37 * in @child, with @sibling providing a link to the next child.
39 * Each child has a pointer to its parent in @parent.
51 * @child: Pointer to head of child node list, or NULL if no children
62 struct device_node *child; member in struct:device_node
/u-boot/drivers/pinctrl/
H A Dpinctrl-generic.c446 /* skip this node; may contain config child nodes */
465 struct udevice *child; local
472 for (device_find_first_child(config, &child);
473 child;
474 device_find_next_child(&child)) {
475 ret = pinctrl_generic_set_state_subnode(dev, child, prefix);
H A Dpinctrl-uclass.c105 ofnode child; local
111 ofnode_for_each_subnode(child, parent)
112 if (ofnode_pre_reloc_recursive(child))
401 * Recursively bind child nodes as pinconfig devices in case of full pinctrl.
416 * If the pinctrl driver has the full implementation, its child nodes
/u-boot/drivers/usb/mtu3/
H A Dmtu3_plat.c139 struct udevice *child; local
164 ret = device_find_first_child(dev, &child);
165 if (ret || !child) {
166 dev_err(dev, "failed to get child %d!\n", ret);
170 ssusb->mac_base = devfdt_remap_addr_name(child, "mac");
176 ssusb->dr_mode = usb_get_dr_mode(dev_ofnode(child));
/u-boot/tools/
H A Dproftool.c152 * accumulated total time of all child calls (so we can subtract them from the
1645 * subtracting the time spent by child functions.
1661 struct flame_node *child, *chd; local
1663 /* see if we have this as a child node already */
1664 child = NULL;
1667 child = chd;
1671 if (!child) {
1673 child = create_node("child");
1674 if (!child)
1808 const struct flame_node *child; local
[all...]
/u-boot/drivers/power/domain/
H A Dapple-pmgr.c121 struct udevice *child; local
137 dev_ofnode(dev), &child);
/u-boot/fs/ubifs/
H A Dtnc_misc.c178 struct ubifs_znode *child; local
180 child = ubifs_tnc_find_child(znode, 0);
181 if (!child)
183 znode = child;
207 /* This is in fact the last child, return parent */
/u-boot/scripts/dtc/
H A Ddtc.c46 struct node *child; local
57 for_each_child(tree, child)
58 fill_fullpaths(child, tree->fullpath);
H A Dtreesource.c239 struct node *child; local
257 for_each_child(tree, child) {
259 write_tree_source_node(f, child, level+1);
/u-boot/drivers/i2c/
H A Dsun8i_rsb.c256 static int sun8i_rsb_child_pre_probe(struct udevice *child) argument
258 struct dm_i2c_chip *chip = dev_get_parent_plat(child);
259 struct udevice *bus = child->parent;

Completed in 144 milliseconds

12345