/qemu/include/system/ |
H A D | device_tree.h | 66 const char *property, const void *val, int size); 68 const char *property, uint32_t val); 70 const char *property, uint64_t val); 72 const char *property, const char *string); 91 const char *property, 104 const char *property, int *lenp, 118 const char *property, int *lenp, 126 #define qemu_fdt_setprop_cells(fdt, node_path, property, ...) \ argument 132 qemu_fdt_setprop(fdt, node_path, property, qdt_tmp, \ 165 const char *property, [all …]
|
/qemu/system/ |
H A D | device_tree.c | 355 const char *property, const void *val, int size) in qemu_fdt_setprop() argument 359 r = fdt_setprop(fdt, findnode_nofail(fdt, node_path), property, val, size); in qemu_fdt_setprop() 362 property, fdt_strerror(r)); in qemu_fdt_setprop() 370 const char *property, uint32_t val) in qemu_fdt_setprop_cell() argument 374 r = fdt_setprop_cell(fdt, findnode_nofail(fdt, node_path), property, val); in qemu_fdt_setprop_cell() 377 node_path, property, val, fdt_strerror(r)); in qemu_fdt_setprop_cell() 385 const char *property, uint64_t val) in qemu_fdt_setprop_u64() argument 388 return qemu_fdt_setprop(fdt, node_path, property, &val, sizeof(val)); in qemu_fdt_setprop_u64() 392 const char *property, const char *string) in qemu_fdt_setprop_string() argument 396 r = fdt_setprop_string(fdt, findnode_nofail(fdt, node_path), property, string); in qemu_fdt_setprop_string() [all …]
|
/qemu/docs/ |
H A D | bypass-iommu.txt | 8 is not flexible. We introduce this bypass iommu property to support 13 PCI host bridges have a bypass_iommu property. This property is used to 15 virtual iommu. The bypass_iommu property is valid only when there is a 17 bypass vIOMMU. When bypass_iommu property is not set for a host bridge, 23 bridge, we add a bypass_iommu property for PXB and default_bus_bypass_iommu 75 Add bypass iommu property check of PCI Host and do not get iommu address
|
/qemu/qom/ |
H A D | qom-hmp-cmds.c | 50 const char *property = qdict_get_str(qdict, "property"); in hmp_qom_set() local 61 object_property_parse(obj, property, value, &err); in hmp_qom_set() 67 qmp_qom_set(path, property, obj, &err); in hmp_qom_set() 77 const char *property = qdict_get_str(qdict, "property"); in hmp_qom_get() local 79 QObject *obj = qmp_qom_get(path, property, &err); in hmp_qom_get()
|
H A D | qom-qmp-cmds.c | 72 void qmp_qom_set(const char *path, const char *property, QObject *value, in qmp_qom_set() argument 84 object_property_set_qobject(obj, property, value, errp); in qmp_qom_set() 87 QObject *qmp_qom_get(const char *path, const char *property, Error **errp) in qmp_qom_get() argument 98 return object_property_get_qobject(obj, property, errp); in qmp_qom_get()
|
/qemu/docs/interop/ |
H A D | virtio-balloon-stats.rst | 10 guest-stats-polling-interval property. This value can be: 24 To retrieve those stats, clients have to query the guest-stats property, 74 "property": "guest-stats-polling-interval", "value": 2 } } 82 "property": "guest-stats-polling-interval", "value": 10 } } 90 "property": "guest-stats" } } 109 "property": "stats-polling-interval", "value": 0 } }
|
/qemu/docs/specs/ |
H A D | ppc-spapr-hotplug.rst | 278 ``3``: instruct guest to prepare for next device tree property. 300 For next-property response: 302 ``wa`` offset of null-terminated string denoting new property's name. 304 ``wa[3]``: for next-property response (unused otherwise): 306 Byte-length of new property's value. 308 ``wa[4]``: for next-property response (unused otherwise): 310 New property's value, encoded as an OFDT-compatible byte array. 425 ``ibm,lrdr-capacity`` is a property in the /rtas device tree node that 438 ``pseries`` guests use this property to note the maximum allowed CPUs for the 460 This property defines a lookup array in which the NUMA associativity [all …]
|
H A D | ppc-spapr-numa.rst | 11 Associativity and ibm,associativity property 18 The format of the ibm,associativity property varies with the value of 19 bit 0 of byte 5 of the ibm,architecture-vec-5 property. The format with 21 with the value of one, makes ibm,associativity property represent the 36 The ibm,associativity property for the processors would be: 41 Each allocable resource has an ibm,associativity property. The LOPAPR 42 specification allows multiple lists to be present in this property, 49 The ibm,associativity-reference-points property is an array that is used 54 of the ibm,architecture-vec-5 property. The format with bit 0 equal to zero
|
/qemu/tests/qtest/ |
H A D | test-x86-cpuid-compat.c | 48 const char *property; member 61 value = qobject_to(QNum, qom_get(path, args->property)); in test_cpuid_prop() 72 const char *property, int64_t expected_value) in add_cpuid_test() argument 94 args->property = property; in add_cpuid_test()
|
H A D | max34451-test.c | 43 static uint16_t qmp_max34451_get(const char *id, const char *property) in qmp_max34451_get() argument 48 "'property': %s } }", id, property); in qmp_max34451_get() 56 const char *property, in qmp_max34451_set() argument 63 id, property, value); in qmp_max34451_set()
|
H A D | adm1272-test.c | 147 static uint16_t qmp_adm1272_get(const char *id, const char *property) in qmp_adm1272_get() argument 153 "'property': %s } }", id, property); in qmp_adm1272_get() 161 const char *property, in qmp_adm1272_set() argument 167 "'property': %s, 'value': %u } }", id, property, value); in qmp_adm1272_set()
|
/qemu/hw/arm/ |
H A D | bcm2835_peripherals.c | 124 object_initialize_child(obj, "property", &s->property, in raspi_peripherals_base_init() 126 object_property_add_alias(obj, "board-rev", OBJECT(&s->property), in raspi_peripherals_base_init() 128 object_property_add_alias(obj, "command-line", OBJECT(&s->property), in raspi_peripherals_base_init() 131 object_property_add_const_link(OBJECT(&s->property), "fb", in raspi_peripherals_base_init() 133 object_property_add_const_link(OBJECT(&s->property), "dma-mr", in raspi_peripherals_base_init() 135 object_property_add_const_link(OBJECT(&s->property), "otp", in raspi_peripherals_base_init() 392 if (!sysbus_realize(SYS_BUS_DEVICE(&s->property), errp)) { in bcm_soc_peripherals_common_realize() 398 sysbus_mmio_get_region(SYS_BUS_DEVICE(&s->property), 0)); in bcm_soc_peripherals_common_realize() 399 sysbus_connect_irq(SYS_BUS_DEVICE(&s->property), 0, in bcm_soc_peripherals_common_realize()
|
/qemu/scripts/codeconverter/codeconverter/ |
H A D | qom_type_info.py | 48 @property 52 @property 68 @property 72 @property 76 @property 80 @property 84 @property 128 @property 132 @property 141 @property [all …]
|
H A D | qom_macros.py | 249 @property 254 @property 310 @property 469 @property 473 @property 477 @property 483 @property 487 @property 739 @property
|
/qemu/docs/system/ |
H A D | bootindex.rst | 8 property on the individual block or net devices you specify 13 ``bootindex`` property is not set for a device, it gets the lowest 15 ``bootindex`` property set will be considered for booting, but they 22 There is no way to set a ``bootindex`` property if you are using 72 Note that it does not make sense to use the bootindex property together
|
/qemu/python/qemu/machine/ |
H A D | machine.py | 267 @property 294 @property 326 @property 331 @property 680 @property 903 @property 925 @property 937 @property 947 @property
|
/qemu/hw/watchdog/ |
H A D | wdt_aspeed.c | 354 static void aspeed_2500_wdt_reset_pulse(AspeedWDTState *s, uint32_t property) in aspeed_2500_wdt_reset_pulse() argument 356 if (property) { in aspeed_2500_wdt_reset_pulse() 357 if (property == WDT_ACTIVE_HIGH_MAGIC) { in aspeed_2500_wdt_reset_pulse() 359 } else if (property == WDT_ACTIVE_LOW_MAGIC) { in aspeed_2500_wdt_reset_pulse() 361 } else if (property == WDT_PUSH_PULL_MAGIC) { in aspeed_2500_wdt_reset_pulse() 363 } else if (property == WDT_OPEN_DRAIN_MAGIC) { in aspeed_2500_wdt_reset_pulse()
|
/qemu/python/qemu/utils/ |
H A D | qom.py | 90 property=self.prop, 135 property=self.prop 235 property=item.name)
|
H A D | qom_common.py | 57 @property 62 @property
|
/qemu/docs/system/s390x/ |
H A D | bootdevices.rst | 12 device where you want to boot from with the ``bootindex`` property, for 31 Note that you really have to use the ``bootindex`` property to select the 41 not specify a boot device with the ``bootindex`` property, there is still a 46 ``bootindex`` property instead. 59 Selecting kernels with the ``loadparm`` property 111 for virtio-net-ccw devices. The ``bootindex`` property is especially 113 property here, the network bootloader won't be taken into consideration and
|
/qemu/tests/qtest/migration/ |
H A D | migration-qmp.h | 24 int64_t read_ram_property_int(QTestState *who, const char *property); 31 int64_t read_migrate_property_int(QTestState *who, const char *property);
|
H A D | migration-qmp.c | 322 int64_t read_ram_property_int(QTestState *who, const char *property) in read_ram_property_int() argument 333 result = qdict_get_try_int(rsp_ram, property, 0); in read_ram_property_int() 339 int64_t read_migrate_property_int(QTestState *who, const char *property) in read_migrate_property_int() argument 345 result = qdict_get_try_int(rsp_return, property, 0); in read_migrate_property_int()
|
/qemu/tests/functional/ |
H A D | test_arm_aspeed_ast2600.py | 44 property='temperature', value=18000) 128 property='temperature', value=18000)
|
/qemu/qapi/ |
H A D | qom.json | 19 # @name: the name of the property 21 # @type: the type of the property. This will typically come in one of 36 # @description: if specified, the description of the property. 79 # This command will get a property from a object model path and return 99 # @property: The property name to read 101 # Returns: The property value. The type depends on the property type. 103 # All integer property types (u8, u16, etc) are returned as #int. 124 'data': { 'path': 'str', 'property': 'str' }, 131 # This command will set a property from a object model path. 135 # @property: the property name to set [all …]
|
/qemu/hw/display/ |
H A D | apple-gfx-mmio.m | 38 @property (readwrite, nonatomic) bool usingIOSurfaceMapper; 43 @property (readwrite, nonatomic, copy, nullable) IOSFCMapMemory mapMemory; 44 @property (readwrite, nonatomic, copy, nullable) IOSFCUnmapMemory unmapMemory; 45 @property (readwrite, nonatomic, copy, nullable) IOSFCRaiseInterrupt raiseInterrupt;
|