Lines Matching full:node
783 GString *node = g_string_new(NULL); in add_pci_device() local
804 g_string_printf(node, "%s/%s@%x", fi->path, (name ?: pn), in add_pci_device()
807 g_string_append_printf(node, ",%x", PCI_FUNC(d->devfn)); in add_pci_device()
810 qemu_fdt_add_subnode(fi->fdt, node->str); in add_pci_device()
812 FDTInfo cfi = { fi->fdt, node->str }; in add_pci_device()
848 qemu_fdt_setprop(fi->fdt, node->str, "reg", cells, j * sizeof(cells[0])); in add_pci_device()
849 qemu_fdt_setprop_string(fi->fdt, node->str, "name", name ?: pn); in add_pci_device()
851 qemu_fdt_setprop_cell(fi->fdt, node->str, "interrupts", in add_pci_device()
855 qemu_fdt_setprop_cell(fi->fdt, node->str, "subsystem-vendor-id", in add_pci_device()
857 qemu_fdt_setprop_cell(fi->fdt, node->str, "subsystem-id", in add_pci_device()
860 qemu_fdt_setprop_cell(fi->fdt, node->str, "class-code", cells[0] >> 8); in add_pci_device()
861 qemu_fdt_setprop_cell(fi->fdt, node->str, "revision-id", cells[0] & 0xff); in add_pci_device()
862 qemu_fdt_setprop_cell(fi->fdt, node->str, "device-id", in add_pci_device()
864 qemu_fdt_setprop_cell(fi->fdt, node->str, "vendor-id", in add_pci_device()
867 g_string_free(node, TRUE); in add_pci_device()
881 /* root node */ in build_fdt()