/openbmc/qemu/tests/qemu-iotests/ |
H A D | 071 | 124 "node-name": "drive0", 132 "node-name": "drive0-debug", 158 "node-name": "drive0", 169 "node-name": "drive0-verify", 193 "node-name": "drive0", 201 "node-name": "drive0-verify", 228 "node-name": "drive0", 236 "node-name": "drive0-debug",
|
H A D | 191.out | 139 "node-name": "top2", 169 "node-name": "NODE_NAME", 210 "node-name": "top", 240 "node-name": "NODE_NAME", 281 "node-name": "mid", 311 "node-name": "NODE_NAME", 341 "node-name": "base", 370 "node-name": "NODE_NAME", 554 "node-name": "NODE_NAME", 584 "node-name": "NODE_NAME", [all …]
|
/openbmc/u-boot/include/dm/ |
H A D | device-internal.h | 22 * have platdata, or a device tree node which can be used to create the 30 * @name: Name of device (e.g. device tree node name) 34 * @of_offset: Offset of device tree node for this device. This is -1 for 44 const char *name, void *platdata, ofnode node, 59 * @name: Name of device (e.g. device tree node name) 61 * @node: Device tree node for this device. This is invalid for devices which 68 ulong driver_data, ofnode node,
|
H A D | uclass.h | 187 * uclass_get_device_by_of_offset() - Get a uclass device by device tree node 190 * device tree node. 195 * @node: Device tree offset to search for (if -ve then -ENODEV is returned) 196 * @devp: Returns pointer to device (there is only one for each node) 199 int uclass_get_device_by_of_offset(enum uclass_id id, int node, 203 * uclass_get_device_by_ofnode() - Get a uclass device by device tree node 206 * device tree node. 211 * @np: Device tree node to search for (if NULL then -ENODEV is returned) 212 * @devp: Returns pointer to device (there is only one for each node) 215 int uclass_get_device_by_ofnode(enum uclass_id id, ofnode node, [all …]
|
/openbmc/u-boot/drivers/cpu/ |
H A D | cpu-uclass.c | 86 ofnode node; in uclass_cpu_init() local 89 node = ofnode_path("/cpus"); in uclass_cpu_init() 90 if (!ofnode_valid(node)) in uclass_cpu_init() 93 ret = device_bind_driver_to_node(dm_root(), "cpu_bus", "cpus", node, in uclass_cpu_init()
|
/openbmc/u-boot/arch/x86/cpu/ |
H A D | cpu_x86.c | 57 int node, cpu; in cpu_x86_get_count() local 60 node = fdt_path_offset(gd->fdt_blob, "/cpus"); in cpu_x86_get_count() 61 if (node < 0) in cpu_x86_get_count() 64 for (cpu = fdt_first_subnode(gd->fdt_blob, node); in cpu_x86_get_count()
|
H A D | irq.c | 149 int node; in create_pirq_routing_table() local 159 node = dev_of_offset(dev); in create_pirq_routing_table() 164 ret = fdt_stringlist_search(blob, node, "intel,pirq-config", "pci"); in create_pirq_routing_table() 168 ret = fdt_stringlist_search(blob, node, "intel,pirq-config", in create_pirq_routing_table() 176 cell = fdt_getprop(blob, node, "intel,pirq-link", &len); in create_pirq_routing_table() 187 cell = fdt_getprop(blob, node, "intel,pirq-regmap", &len); in create_pirq_routing_table() 214 priv->irq_mask = fdtdec_get_int(blob, node, in create_pirq_routing_table() 225 ibase_off = fdtdec_get_int(blob, node, "intel,ibase-offset", 0); in create_pirq_routing_table() 243 priv->actl_8bit = fdtdec_get_bool(blob, node, "intel,actl-8bit"); in create_pirq_routing_table() 244 priv->actl_addr = fdtdec_get_int(blob, node, "intel,actl-addr", 0); in create_pirq_routing_table() [all …]
|
/openbmc/qemu/qapi/ |
H A D | qmp-registry.c | 32 QTAILQ_INSERT_TAIL(cmds, cmd, node); in qmp_register_command() 39 QTAILQ_FOREACH(cmd, cmds, node) { in qmp_find_command() 52 QTAILQ_FOREACH(cmd, cmds, node) { in qmp_toggle_command() 92 QTAILQ_FOREACH(cmd, cmds, node) { in qmp_for_each_command()
|
/openbmc/u-boot/arch/x86/cpu/ivybridge/ |
H A D | sata.c | 42 int node = dev_of_offset(dev); in bd82x6x_sata_init() local 50 port_map = fdtdec_get_int(blob, node, "intel,sata-port-map", 0); in bd82x6x_sata_init() 51 speed_support = fdtdec_get_int(blob, node, in bd82x6x_sata_init() 54 mode = fdt_getprop(blob, node, "intel,sata-mode", NULL); in bd82x6x_sata_init() 155 port_tx = fdtdec_get_int(blob, node, "intel,sata-port0-gen3-tx", 0); in bd82x6x_sata_init() 159 port_tx = fdtdec_get_int(blob, node, "intel,sata-port1-gen3-tx", 0); in bd82x6x_sata_init() 193 int node = dev_of_offset(dev); in bd82x6x_sata_enable() local 202 mode = fdt_getprop(blob, node, "intel,sata-mode", NULL); in bd82x6x_sata_enable() 205 port_map = fdtdec_get_int(blob, node, "intel,sata-port-map", 0); in bd82x6x_sata_enable()
|
/openbmc/u-boot/arch/arm/mach-socfpga/ |
H A D | misc_s10.c | 84 int i, node; in socfpga_set_phymode() local 90 node = nodes[i]; in socfpga_set_phymode() 91 if (node <= 0) in socfpga_set_phymode() 94 ret = fdtdec_parse_phandle_with_args(fdt, node, "resets", in socfpga_set_phymode() 104 phy_mode = fdt_getprop(fdt, node, "phy-mode", NULL); in socfpga_set_phymode()
|
/openbmc/u-boot/drivers/timer/ |
H A D | timer-uclass.c | 88 __maybe_unused ofnode node; in dm_timer_init() local 103 node = ofnode_get_chosen_node("tick-timer"); in dm_timer_init() 105 if (ofnode_valid(node) && in dm_timer_init() 106 uclass_get_device_by_ofnode(UCLASS_TIMER, node, &dev)) { in dm_timer_init() 111 if (!lists_bind_fdt(dm_root(), node, &dev, false)) { in dm_timer_init()
|
/openbmc/u-boot/drivers/i2c/muxes/ |
H A D | i2c-mux-gpio.c | 24 * @values: the reg value of each child node 72 int node = dev_of_offset(dev); in i2c_mux_gpio_probe() local 78 mux->n_values = fdtdec_get_child_count(fdt, node); in i2c_mux_gpio_probe() 86 fdt_for_each_subnode(subnode, fdt, node) { in i2c_mux_gpio_probe() 93 mux->idle = fdtdec_get_uint(fdt, node, "idle-state", -1); in i2c_mux_gpio_probe()
|
/openbmc/webui-vue/ |
H A D | package.json | 7 "serve": "check-node-version --package && vue-cli-service serve --mode development", 8 "build": "check-node-version --package && vue-cli-service build", 10 … "test:unit:debugger": "node --inspect-brk ./node_modules/jest/bin/jest.js --no-cache --runInBand", 56 "check-node-version": "4.2.1", 74 "node": ">=12.14.1" string
|
/openbmc/u-boot/doc/device-tree-bindings/ |
H A D | chosen.txt | 1 The chosen node 3 The chosen node does not represent a real device, but serves as a place 84 be configured with the spl-boot-order property under the /chosen node. 94 Note that if "same-as-spl" expands to an actual node for a given 95 board, the corresponding node may appear multiple times in the 122 node(default storage type) to the firmware loader driver.
|
/openbmc/u-boot/tools/binman/etype/ |
H A D | blob_named_by_arg.py | 6 # node or an entry argument. The property is called '<blob_fname>-path' where 31 def __init__(self, section, etype, node, blob_fname): argument 32 Entry_blob.__init__(self, section, etype, node)
|
/openbmc/u-boot/drivers/power/pmic/ |
H A D | s5m8767.c | 55 ofnode node; in s5m8767_bind() local 57 node = dev_read_subnode(dev, "regulators"); in s5m8767_bind() 58 if (!ofnode_valid(node)) { in s5m8767_bind() 66 children = pmic_bind_children(dev, node, pmic_children_info); in s5m8767_bind()
|
/openbmc/u-boot/board/AndesTech/ax25-ae350/ |
H A D | ax25-ae350.c | 79 int node = -1; in smc_init() local 85 node = fdt_node_offset_by_compatible(blob, -1, compat); in smc_init() 86 if (node < 0) in smc_init() 89 addr = fdtdec_get_addr(blob, node, "reg"); in smc_init()
|
/openbmc/qemu/tests/unit/ |
H A D | test-bdrv-drain.c | 2 * Block node draining tests 191 bs = bdrv_new_open_driver(&bdrv_test, "test-node", BDRV_O_RDWR, in test_setup() 384 bs = bdrv_new_open_driver(&bdrv_test, "test-node", BDRV_O_RDWR, in test_nested() 434 /* Create node A with a BlockBackend */ in test_graph_change_drain_all() 436 bs_a = bdrv_new_open_driver(&bdrv_test, "test-node-a", BDRV_O_RDWR, in test_graph_change_drain_all() 450 /* Create node B with a BlockBackend */ in test_graph_change_drain_all() 452 bs_b = bdrv_new_open_driver(&bdrv_test, "test-node-b", BDRV_O_RDWR, in test_graph_change_drain_all() 462 /* Unref and finally delete node A */ in test_graph_change_drain_all() 551 bs = bdrv_new_open_driver(&bdrv_test, "test-node", BDRV_O_RDWR, in test_iothread_common() 1404 bs = bdrv_new_open_driver(&bdrv_test, "test-node", BDRV_O_RDWR, in test_set_aio_context() [all …]
|
/openbmc/openbmc/poky/scripts/lib/recipetool/ |
H A D | create_buildsys_python.py | 1037 def visit_Expr(self, node): argument 1038 if isinstance(node.value, ast.Call) and \ 1039 isinstance(node.value.func, ast.Name) and \ 1040 node.value.func.id == 'setup': 1041 self.visit_setup(node.value) 1043 def visit_setup(self, node): argument 1044 call = LiteralAstTransform().visit(node) 1050 def visit_Import(self, node): argument 1051 for alias in node.names: 1054 def visit_ImportFrom(self, node): argument [all …]
|
/openbmc/u-boot/lib/rsa/ |
H A D | rsa-sign.c | 723 int parent, node; in rsa_add_verify_data() local 749 fprintf(stderr, "Couldn't create signature node: %s\n", in rsa_add_verify_data() 757 /* Either create or overwrite the named key node */ in rsa_add_verify_data() 759 node = fdt_subnode_offset(keydest, parent, name); in rsa_add_verify_data() 760 if (node == -FDT_ERR_NOTFOUND) { in rsa_add_verify_data() 761 node = fdt_add_subnode(keydest, parent, name); in rsa_add_verify_data() 762 if (node < 0) { in rsa_add_verify_data() 763 ret = node; in rsa_add_verify_data() 766 fdt_strerror(node)); in rsa_add_verify_data() 769 } else if (node < 0) { in rsa_add_verify_data() [all …]
|
/openbmc/u-boot/drivers/core/ |
H A D | uclass.c | 30 * node to the start of the list, or creating a linear array mapping in uclass_find() 31 * id to node. in uclass_find() 325 int uclass_find_device_by_of_offset(enum uclass_id id, int node, in uclass_find_device_by_of_offset() argument 333 if (node < 0) in uclass_find_device_by_of_offset() 340 if (dev_of_offset(dev) == node) { in uclass_find_device_by_of_offset() 349 int uclass_find_device_by_ofnode(enum uclass_id id, ofnode node, in uclass_find_device_by_ofnode() argument 356 log(LOGC_DM, LOGL_DEBUG, "Looking for %s\n", ofnode_get_name(node)); in uclass_find_device_by_ofnode() 358 if (!ofnode_valid(node)) in uclass_find_device_by_ofnode() 367 if (ofnode_equal(dev_ofnode(dev), node)) { in uclass_find_device_by_ofnode() 376 ofnode_get_name(node), *devp ? (*devp)->name : "(none)", ret); in uclass_find_device_by_ofnode() [all …]
|
/openbmc/u-boot/common/ |
H A D | image-sig.c | 292 /* Process all hash subnodes of the component image node */ in fit_image_verify_sig() 318 printf(" error!\n%s for '%s' hash node in '%s' image node\n", in fit_image_verify_sig() 336 debug("%s: No signature node found: %s\n", __func__, in fit_image_verify_required_sigs() 368 * @noffset: Offset of configuration node (e.g. /configurations/conf-1) 369 * @required_keynode: Offset in the control FDT of the required key node, 433 /* Create a list of node names from those strings */ in fit_config_check_sig() 444 debug(" (found config node %s)", config_name); in fit_config_check_sig() 454 * Each node can generate one region for each sub-node. Allow for in fit_config_check_sig() 511 /* Process all hash subnodes of the component conf node */ in fit_config_verify_sig() 538 printf(" error!\n%s for '%s' hash node in '%s' config node\n", in fit_config_verify_sig() [all …]
|
/openbmc/qemu/include/block/ |
H A D | block_int-global-state.h | 55 * @filter_node_name: The node name that should be assigned to the filter 57 * @bs. NULL means that a node name should be autogenerated. 90 * @filter_node_name: The node name that should be assigned to the filter 92 * that a node name should be autogenerated. 112 * @filter_node_name: The node name that should be assigned to the filter 114 * a node name should be autogenerated. 133 * @replaces: Block graph node name to replace once the mirror is done. Can 146 * @filter_node_name: The node name that should be assigned to the filter 148 * a node name should be autogenerated. 275 BdrvDirtyBitmap *block_dirty_bitmap_lookup(const char *node, [all …]
|
/openbmc/qemu/block/ |
H A D | stream.c | 37 BlockDriverState *above_base; /* Node directly above the base */ 79 * base node (or it might even have gone away by the time we want to use in stream_prepare() 113 * of operating on the wrong node any more if this happens. in stream_prepare() 297 * Find the node directly above @base. @base_overlay is a COW overlay, in stream_start() 334 /* Pass the base_overlay node name as 'bottom' to COR driver */ in stream_start() 337 qdict_put_str(opts, "node-name", filter_node_name); in stream_start() 374 if (block_job_add_bdrv(&s->common, "active node", bs, 0, in stream_start() 383 * and resizes. Reassign the base node pointer because the backing BS of the in stream_start() 384 * bottom node might change after the call to bdrv_reopen_set_read_only() in stream_start() 386 * above_base node might change after the call to in stream_start() [all …]
|
/openbmc/u-boot/drivers/phy/ |
H A D | phy-stm32-usbphyc.c | 271 static int stm32_usbphyc_get_regulator(struct udevice *dev, ofnode node, in stm32_usbphyc_get_regulator() argument 278 ret = ofnode_parse_phandle_with_args(node, supply_name, in stm32_usbphyc_get_regulator() 287 regulator_phandle.node, in stm32_usbphyc_get_regulator() 330 ofnode node; in stm32_usbphyc_probe() local 358 node = dev_read_first_subnode(dev); in stm32_usbphyc_probe() 365 ret = stm32_usbphyc_get_regulator(dev, node, "phy-supply", in stm32_usbphyc_probe() 370 ret = stm32_usbphyc_get_regulator(dev, node, "vdda1v1-supply", in stm32_usbphyc_probe() 375 ret = stm32_usbphyc_get_regulator(dev, node, "vdda1v8-supply", in stm32_usbphyc_probe() 380 node = dev_read_next_subnode(node); in stm32_usbphyc_probe()
|