/qemu/hw/usb/ |
H A D | quirks.c | 19 static bool usb_id_match(const struct usb_device_id *ids, in usb_id_match() argument 25 for (i = 0; ids[i].terminating_entry == 0; i++) { in usb_id_match() 26 if (ids[i].vendor_id == vendor_id && in usb_id_match() 27 ids[i].product_id == product_id && in usb_id_match() 28 (ids[i].interface_protocol_used == 0 || in usb_id_match() 29 (ids[i].interface_class == interface_class && in usb_id_match() 30 ids[i].interface_subclass == interface_subclass && in usb_id_match() 31 ids[i].interface_protocol == interface_protocol))) { in usb_id_match()
|
H A D | quirks-ftdi-ids.h | 2 * vendor/product IDs (VID/PID) of devices using FTDI USB serial converters. 151 * NDI (www.ndigital.com) product ids 160 * ChamSys Limited (www.chamsys.co.uk) USB wing/interface product IDs 208 * Further IDs taken from ELV Windows .inf file. 268 * Active Robots product ids. 299 * Eclo (http://www.eclo.pt/) product IDs. 308 * Teratronik product ids. 331 * microHAM product IDs (http://www.microham.com). 375 * Linx Technologies product ids 384 * Oceanic product ids [all …]
|
/qemu/target/riscv/ |
H A D | sbi_ecall_interface.h | 26 /* SBI Extension IDs */ 43 /* SBI function IDs for BASE extension */ 52 /* SBI function IDs for TIME extension */ 55 /* SBI function IDs for IPI extension */ 58 /* SBI function IDs for RFENCE extension */ 67 /* SBI function IDs for HSM extension */ 72 /* SBI function IDs for DBCN extension */
|
/qemu/scripts/codeconverter/codeconverter/ |
H A D | qom_macros.py | 365 ids = self.merge_ids(matches) 366 if ids is None: 370 if not ids.uppercase: 373 if not ids.typename: 377 #issues = ids.check_consistency() 382 names = [n for n in (ids.instancetype, ids.classtype, ids.uppercase, ids.typename) 385 self.warn("duplicate names used by macro: %r", ids) 388 assert ids.classtype or ids.instancetype 389 assert ids.typename 390 assert ids.uppercase [all …]
|
H A D | qom_type_info.py | 780 # ids = self.extract_identifiers() 781 # if ids is None: 784 # DBG("identifiers extracted: %r", ids) 786 # if ids.lowercase: 790 # '}\n\n') % (ids.lowercase)) 791 # yield self.append_field('instance_init', ids.lowercase+'_init') 796 # '}\n\n') % (ids.lowercase)) 797 # yield self.append_field('instance_finalize', ids.lowercase+'_finalize') 804 # '}\n\n') % (ids.lowercase)) 805 # yield self.append_field('class_init', ids.lowercase+'_class_init')
|
/qemu/hw/input/ |
H A D | virtio-input-host.c | 103 struct input_id ids; in virtio_input_host_realize() local 141 if (ioctl(vih->fd, EVIOCGID, &ids) == 0) { in virtio_input_host_realize() 145 id.u.ids.bustype = cpu_to_le16(ids.bustype); in virtio_input_host_realize() 146 id.u.ids.vendor = cpu_to_le16(ids.vendor); in virtio_input_host_realize() 147 id.u.ids.product = cpu_to_le16(ids.product); in virtio_input_host_realize() 148 id.u.ids.version = cpu_to_le16(ids.version); in virtio_input_host_realize()
|
H A D | virtio-input-hid.c | 282 .u.ids = { 339 .u.ids = { 364 .u.ids = { 432 .u.ids = { 469 .u.ids = { 556 .u.ids = {
|
/qemu/tests/qemu-iotests/ |
H A D | 142 | 88 ids="node-name=image,backing.node-name=backing,backing.file.node-name=backing-file,file.node-name=f… 96 …echo "$hmp_cmds" | run_qemu -drive "$files","$ids",cache.direct=on | grep -e "Cache" -e "[Cc]annot… 98 …echo "$hmp_cmds" | run_qemu -drive "$files","$ids",file.cache.direct=on | grep -e "Cache" -e "[Cc]… 100 …echo "$hmp_cmds" | run_qemu -drive "$files","$ids",backing.cache.direct=on | grep -e "Cache" -e "[… 102 …echo "$hmp_cmds" | run_qemu -drive "$files","$ids",backing.file.cache.direct=on | grep -e "Cache" … 108 …echo "$hmp_cmds" | run_qemu -drive "$files","$ids",cache.writeback=off | grep -e "Cache" -e "[Cc]a… 110 …echo "$hmp_cmds" | run_qemu -drive "$files","$ids",file.cache.writeback=off | grep -e "doesn't" -e… 112 …echo "$hmp_cmds" | run_qemu -drive "$files","$ids",backing.cache.writeback=off | grep -e "doesn't"… 114 …echo "$hmp_cmds" | run_qemu -drive "$files","$ids",backing.file.cache.writeback=off | grep -e "doe… 119 …echo "$hmp_cmds" | run_qemu -drive "$files","$ids",cache.no-flush=on | grep -e "Cache" -e "[Cc]ann… [all …]
|
/qemu/docs/specs/ |
H A D | pci-ids.rst | 2 PCI IDs for QEMU 6 virtual devices. The vendor IDs are 1af4 (formerly Qumranet ID) and 1b36. 15 Note that this allocation is separate from the virtio device IDs, which are 38 0x1040 offset. The virtio IDs are defined in the virtio 40 defines for all virtio IDs (``linux/virtio_ids.h``); QEMU has a 55 All other device IDs are reserved.
|
/qemu/backends/ |
H A D | dbus-vmstate.c | 65 g_auto(GStrv) ids = NULL; in get_id_list_set() 73 ids = g_strsplit(self->id_list, ",", -1); in get_id_list_set() 75 for (i = 0; ids[i]; i++) { in get_id_list_set() 76 g_hash_table_add(set, ids[i]); in get_id_list_set() 77 ids[i] = NULL; in get_id_list_set() 87 g_autoptr(GHashTable) ids = NULL; in dbus_get_proxies() 92 ids = get_id_list_set(self); in dbus_get_proxies() 133 if (ids && !g_hash_table_remove(ids, id)) { in dbus_get_proxies() 155 if (ids) { in dbus_get_proxies() 158 left = (char **)g_hash_table_get_keys_as_array(ids, NULL); in dbus_get_proxies()
|
/qemu/contrib/vhost-user-input/ |
H A D | main.c | 302 struct input_id ids; in main() local 362 if (ioctl(vi.evdevfd, EVIOCGID, &ids) == 0) { in main() 366 id.u.ids.bustype = cpu_to_le16(ids.bustype); in main() 367 id.u.ids.vendor = cpu_to_le16(ids.vendor); in main() 368 id.u.ids.product = cpu_to_le16(ids.product); in main() 369 id.u.ids.version = cpu_to_le16(ids.version); in main()
|
/qemu/include/hw/i386/ |
H A D | topology.h | 46 * APIC IDs can be 32-bit, but beware: APIC IDs > 255 require x2APIC support 67 /* Return the bit width needed for 'count' IDs */ 124 * Make APIC ID for the CPU based on topology and IDs of each topology level. 140 * Calculate thread/core/package IDs for a specific topology, 163 * Calculate thread/core/package IDs for a specific topology,
|
/qemu/include/hw/acpi/ |
H A D | pc-hotplug.h | 20 /* Limit for CPU arch IDs for CPU hotplug. All hotpluggable CPUs should 25 /* 256 CPU IDs, 8 bits per entry: */
|
/qemu/hw/ppc/ |
H A D | spapr_nested.c | 1643 static int get_exit_ids(uint64_t srr0, uint16_t ids[16]) in get_exit_ids() 1650 ids[0] = GSB_VCPU_GPR3; in get_exit_ids() 1651 ids[1] = GSB_VCPU_GPR4; in get_exit_ids() 1652 ids[2] = GSB_VCPU_GPR5; in get_exit_ids() 1653 ids[3] = GSB_VCPU_GPR6; in get_exit_ids() 1654 ids[4] = GSB_VCPU_GPR7; in get_exit_ids() 1655 ids[5] = GSB_VCPU_GPR8; in get_exit_ids() 1656 ids[6] = GSB_VCPU_GPR9; in get_exit_ids() 1657 ids[7] = GSB_VCPU_GPR10; in get_exit_ids() 1658 ids[8] = GSB_VCPU_GPR11; in get_exit_ids() [all …]
|
/qemu/linux-headers/asm-riscv/ |
H A D | kvm.h | 110 * ISA extension IDs specific to KVM. This is not the same as the host ISA 111 * extension IDs as that is internal to the host and should not be exposed 191 * SBI extension IDs specific to KVM. This is not the same as the SBI 192 * extension IDs defined by the RISC-V SBI specification.
|
/qemu/hw/core/ |
H A D | uboot_image.h | 22 * New IDs *MUST* be appended at the end of the list and *NEVER* 63 * New IDs *MUST* be appended at the end of the list and *NEVER* 137 * New IDs *MUST* be appended at the end of the list and *NEVER* 192 * New IDs *MUST* be appended at the end of the list and *NEVER*
|
/qemu/include/hw/misc/ |
H A D | xlnx-zynqmp-apu-ctrl.h | 29 REG32(IDS, 0x1c) 30 FIELD(IDS, INV_APB, 0, 1)
|
/qemu/include/standard-headers/linux/ |
H A D | virtio_ids.h | 4 * Virtio IDs 73 * Virtio Transitional IDs
|
/qemu/docs/ |
H A D | memory-hotplug.txt | 80 In order to be able to hot unplug pc-dimm device, QEMU has to be told the ids 81 of pc-dimm device and memory backend object. The ids were assigned when you hot
|
/qemu/tests/unit/ |
H A D | test-util-filemonitor.c | 418 GHashTable *ids = g_hash_table_new(g_int64_hash, g_int64_equal); in test_file_monitor_events() local 514 if (g_hash_table_contains(ids, op->watchid)) { in test_file_monitor_events() 518 g_hash_table_add(ids, op->watchid); in test_file_monitor_events() 531 g_hash_table_remove(ids, op->watchid); in test_file_monitor_events() 657 g_assert_cmpint(g_hash_table_size(ids), ==, 0); in test_file_monitor_events() 710 g_hash_table_unref(ids); in test_file_monitor_events()
|
H A D | test-blockjob.c | 114 /* These are all invalid job IDs */ in test_job_ids() 131 /* Duplicate job IDs are not allowed */ in test_job_ids() 397 g_test_add_func("/blockjob/ids", test_job_ids); in main()
|
/qemu/ui/ |
H A D | vnc.h | 472 /* Client -> Server message IDs */ 488 /* Server -> Client message IDs */ 503 /* QEMU client -> server message IDs */ 507 /* QEMU server -> client message IDs */ 512 /* QEMU client -> server audio message IDs */ 517 /* QEMU server -> client audio message IDs */
|
/qemu/include/hw/cxl/ |
H A D | cxl_pci.h | 58 * Devices must implement certain DVSEC IDs, and can [optionally] 60 * (x) - IDs in Table 8-2.
|
/qemu/qapi/ |
H A D | rocker.json | 287 # @group-ids: list of next group IDs 304 '*pop-vlan': 'uint8', '*group-ids': ['uint32'],
|
/qemu/tests/functional/ |
H A D | test_virtio_version.py | 16 # Virtio Device IDs: 34 # Device IDs for legacy/transitional devices:
|