Home
last modified time | relevance | path

Searched full:node (Results 551 – 575 of 1779) sorted by relevance

1...<<21222324252627282930>>...72

/openbmc/u-boot/tools/binman/etype/
H A Dblob.py30 the node (if enabled with -u) which provides the uncompressed size of the
33 def __init__(self, section, etype, node): argument
34 Entry.__init__(self, section, etype, node)
H A Du_boot_nodtb.py23 def __init__(self, section, etype, node): argument
24 Entry_blob.__init__(self, section, etype, node)
H A Dblob_dtb.py20 def __init__(self, section, etype, node): argument
21 Entry_blob.__init__(self, section, etype, node)
H A Du_boot_spl_nodtb.py24 def __init__(self, section, etype, node): argument
25 Entry_blob.__init__(self, section, etype, node)
H A Du_boot_elf.py23 def __init__(self, section, etype, node): argument
24 Entry_blob.__init__(self, section, etype, node)
H A Dfill.py24 def __init__(self, section, etype, node): argument
25 Entry.__init__(self, section, etype, node)
H A Dx86_start16_tpl.py26 def __init__(self, section, etype, node): argument
27 Entry_blob.__init__(self, section, etype, node)
/openbmc/qemu/tests/qemu-iotests/tests/
H A Dstream-unaligned-prefetch55 'node-name': 'base',
63 'node-name': 'compress-top',
66 'node-name': 'top',
/openbmc/u-boot/arch/arm/mach-aspeed/ast2600/
H A Dspl.c86 void board_fit_image_post_process(const void *fit, int node, void **p_image, size_t *p_size) in board_fit_image_post_process() argument
91 fit_image_get_os(fit, node, &os); in board_fit_image_post_process()
97 fit_image_get_entry(fit, node, &s_ep); in board_fit_image_post_process()
/openbmc/qemu/tests/qtest/
H A Dbios-tables-test.c1239 "-numa node,memdev=ram0 " in test_acpi_q35_tcg_mmio64()
1255 " -numa node,memdev=ram0 -numa node,memdev=ram1" in test_acpi_piix4_tcg_cphp()
1271 " -numa node,memdev=ram0 -numa node,memdev=ram1" in test_acpi_q35_tcg_cphp()
1339 " -numa node,memdev=ram0 -numa node,memdev=ram1" in test_acpi_q35_tcg_memhp()
1355 " -numa node,memdev=ram0 -numa node,memdev=ram1" in test_acpi_piix4_tcg_memhp()
1414 " -numa node -numa node,memdev=ram0", &data); in test_acpi_q35_tcg_numamem()
1426 " -numa node -numa node,memdev=ram0" in test_acpi_q35_kvm_xapic()
1508 " -numa node -numa node,memdev=ram0", &data); in test_acpi_piix4_tcg_numamem()
1589 " -numa node,memdev=ram0,nodeid=0" in test_acpi_tcg_dimm_pxm()
1590 " -numa node,memdev=ram1,nodeid=1" in test_acpi_tcg_dimm_pxm()
[all …]
H A Dqos-test.c44 * for each of these items, it looks up the corresponding qgraph node,
120 * items are node names forming the path to the test node.
210 * the node, (ex for "x86_64/pc" it will be "pc"), used to build the test
214 * Note that the machine node name must be with format <arch>/<machine>
215 * (ex "x86_64/pc"), because it will identify the node "x86_64/pc"
219 * and the node name at position 1 (<arch>/<machine>)
255 /* append node command line + previous edge command line */ in walk_path()
/openbmc/u-boot/doc/device-tree-bindings/net/
H A Dfixed-link.txt9 sub-node of the Ethernet MAC device node, with the following
/openbmc/u-boot/doc/device-tree-bindings/w1/
H A Dw1-gpio.txt7 for the proper node and try to match it with the device.
14 Software w1 device-tree node properties:
/openbmc/u-boot/board/freescale/qemu-ppce500/
H A Dqemu-ppce500.c52 int size, node; in get_phys_ccsrbar_addr_early() local
61 node = fdt_path_offset(fdt, "/soc"); in get_phys_ccsrbar_addr_early()
62 naddr = fdt_address_cells(fdt, node); in get_phys_ccsrbar_addr_early()
63 prop = fdt_getprop(fdt, node, "ranges", &size); in get_phys_ccsrbar_addr_early()
64 r = fdt_translate_address(fdt, node, prop + naddr); in get_phys_ccsrbar_addr_early()
188 /* Jump to next PCI node */ in pci_init_board()
206 printf("Couldn't find /chosen node in fdt\n"); in last_stage_init()
/openbmc/u-boot/board/cavium/thunderx/
H A Datf.c106 ssize_t atf_dram_size(unsigned int node) in atf_dram_size() argument
110 regs.regs[1] = node; in atf_dram_size()
231 unsigned int index, node; in do_atf() local
276 node = simple_strtoul(argv[2], NULL, 10); in do_atf()
277 ret = atf_dram_size(node); in do_atf()
302 "\t dramsize node - size of DRAM attached to node\n"
/openbmc/u-boot/drivers/net/
H A Dbcm6368-eth.c509 ofnode node; in bcm6368_eth_probe() local
583 dev_for_each_subnode(node, dev) { in bcm6368_eth_probe()
590 comp = ofnode_read_string(node, "compatible"); in bcm6368_eth_probe()
594 p = ofnode_read_u32_default(node, "reg", ETH_MAX_PORT); in bcm6368_eth_probe()
598 label = ofnode_read_string(node, "label"); in bcm6368_eth_probe()
600 debug("%s: node %s has no label\n", __func__, in bcm6368_eth_probe()
601 ofnode_get_name(node)); in bcm6368_eth_probe()
605 phy_id = ofnode_read_u32_default(node, "brcm,phy-id", -1); in bcm6368_eth_probe()
611 if (ofnode_read_bool(node, "full-duplex")) in bcm6368_eth_probe()
613 if (ofnode_read_bool(node, "bypass-link")) in bcm6368_eth_probe()
[all …]
/openbmc/qemu/hw/ppc/
H A Dspapr_nvdimm.c149 uint32_t node = object_property_get_uint(OBJECT(nvdimm), PC_DIMM_NODE_PROP, in spapr_dt_nvdimm() local
172 spapr_numa_write_associativity_dt(spapr, fdt, child_offset, node); in spapr_dt_nvdimm()
423 QLIST_ENTRY(SpaprNVDIMMDeviceFlushState) node;
490 QLIST_REMOVE(state, node); in spapr_nvdimm_flush_completion_cb()
491 QLIST_INSERT_HEAD(&s_nvdimm->completed_nvdimm_flush_states, state, node); in spapr_nvdimm_flush_completion_cb()
517 QLIST_FOREACH(state, &s_nvdimm->pending_nvdimm_flush_states, node) { in spapr_nvdimm_flush_post_load()
547 SpaprNVDIMMDeviceFlushState, node),
550 SpaprNVDIMMDeviceFlushState, node),
571 QLIST_INSERT_HEAD(&spapr_nvdimm->pending_nvdimm_flush_states, state, node); in spapr_nvdimm_init_new_flush_state()
602 node, next) { in spapr_nvdimm_finish_flushes()
[all …]
/openbmc/u-boot/drivers/video/rockchip/
H A Drk_vop.c216 * @ep_node: Device tree node to process - this is the offset of an endpoint
217 * node within the VOP's 'port' list.
364 ofnode port, node; in rk_vop_probe() local
387 for (node = ofnode_first_subnode(port); in rk_vop_probe()
388 ofnode_valid(node); in rk_vop_probe()
389 node = dev_read_next_subnode(node)) { in rk_vop_probe()
390 ret = rk_display_init(dev, plat->base, node); in rk_vop_probe()
/openbmc/u-boot/tools/binman/
H A Dimage.py28 _node: Node object that contains the image definition in device tree
39 def __init__(self, name, node, test=False): argument
40 self._node = node
51 """Read properties from the image node"""
/openbmc/u-boot/test/dm/
H A Dspi.c26 ofnode node; in dm_test_spi_find() local
37 node = dev_ofnode(info.dev); in dm_test_spi_find()
68 ut_assertok(sandbox_sf_bind_emul(state, busnum, cs, bus, node, in dm_test_spi_find()
78 ut_assertok(sandbox_sf_bind_emul(state, busnum, cs_b, bus, node, in dm_test_spi_find()
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-devtools/nodejs/nodejs/
H A D0001-Do-not-use-glob-in-deps.patch1 // Revert the patch found here https://github.com/nodejs/node/commit/fe1dd26398e1887b96b2dc51ab5937…
14 out/Makefile: config.gypi common.gypi common_node.gypi node.gyp \
/openbmc/qemu/migration/
H A Dblock-dirty-bitmap.c25 * in destination QEMU. If the bitmap with the same name (for the same node)
32 * [ 1 byte: node alias size ] \ flags & DEVICE_NAME
33 * [ n bytes: node alias ] /
177 /* For hash tables that map node/bitmap names to aliases */
203 * If @name_to_alias is true, the returned hash table will map node
207 * If @name_to_alias is false, the returned hash table will map node
211 * The hash table maps node names/aliases to AliasMapInnerNode
212 * objects, whose .string is the respective node alias/name, and whose
235 error_setg(errp, "The node alias '%s' is not well-formed", in construct_alias_map()
241 error_setg(errp, "The node alias '%s' is longer than %u bytes", in construct_alias_map()
[all …]
/openbmc/u-boot/cmd/
H A Dbind.c137 printf("%s is not a valid node path\n", path); in bind_by_node_path()
148 printf("Cannot find a parent device for node path %s\n", path); in bind_by_node_path()
171 printf("%s is not a valid node path\n", path); in unbind_by_node_path()
245 "<node path> <driver>\n"
252 "<node path>\n"
/openbmc/u-boot/arch/arm/dts/
H A Dzynqmp-zcu102-revB.dts26 /delete-node/ phy@21;
37 /delete-node/ max15303@20;
/openbmc/qemu/include/hw/core/
H A Dsysbus-fdt.h2 * Dynamic sysbus device tree node generation API
32 * builds the parent platform bus node and all the nodes of dynamic

1...<<21222324252627282930>>...72