Home
last modified time | relevance | path

Searched +full:reset +full:- +full:deassert +full:- +full:us (Results 1 – 7 of 7) sorted by relevance

/qemu/hw/i386/kvm/
H A Dxen_evtchn.c9 * See the COPYING file in the top-level directory.
13 #include "qemu/host-utils.h"
16 #include "qemu/main-loop.h"
18 #include "qemu/error-report.h"
22 #include "qapi/qapi-commands-misc-i386.h"
26 #include "system/address-spaces.h"
55 #define TYPE_XEN_EVTCHN "xen-evtchn"
72 /* 32-bit compatibility definitions, also used natively in 32-bit build */
118 * insane enough to think about guest-transparent live migration from actual
121 #define IRQ_UNBOUND -1
[all …]
/qemu/hw/ipmi/
H A Dipmi_bmc_sim.c29 #include "qemu/error-report.h"
32 #include "hw/qdev-properties.h"
33 #include "hw/qdev-properties-system.h"
156 #define IPMI_SENSOR_GET_PRESENT(s) ((s)->status & 0x01)
157 #define IPMI_SENSOR_SET_PRESENT(s, v) ((s)->status = (s->status & ~0x01) | \
159 #define IPMI_SENSOR_GET_SCAN_ON(s) ((s)->status & 0x40)
160 #define IPMI_SENSOR_SET_SCAN_ON(s, v) ((s)->status = (s->status & ~0x40) | \
162 #define IPMI_SENSOR_GET_EVENTS_ON(s) ((s)->status & 0x80)
163 #define IPMI_SENSOR_SET_EVENTS_ON(s, v) ((s)->status = (s->status & ~0x80) | \
165 #define IPMI_SENSOR_GET_RET_STATUS(s) ((s)->status & 0xc0)
[all …]
/qemu/hw/net/
H A Drtl8139.c25 * 2006-Jan-28 Mark Malakanov : TSAD and CSCR implementation (for Windows driver)
27 * 2006-Apr-28 Juergen Lock : EEPROM emulation changes for FreeBSD driver
30 * 2006-Jul-01 Igor Kovalenko : Implemented loopback mode for FreeBSD driver
37 * 2006-Jul-04 Igor Kovalenko : Implemented TCP segmentation offloading
40 * 2006-Jul-09 Igor Kovalenko : Fixed TCP header length calculation while processing
43 * Added rx/tx buffer reset when enabling rx/tx operation
45 * 2010-Feb-04 Frediano Ziglio: Rewrote timer support using QEMU timer only
48 * 2011-Mar-22 Benjamin Poirier: Implemented VLAN offloading
55 #include "hw/qdev-properties.h"
75 ( ( input ) & ( size - 1 ) )
[all …]
/qemu/target/i386/kvm/
H A Dxen-emu.c8 * See the COPYING file in the top-level directory.
14 #include "qemu/main-loop.h"
15 #include "qemu/error-report.h"
21 #include "system/address-spaces.h"
22 #include "xen-emu.h"
27 #include "hw/i386/apic-msidef.h"
44 #include "xen-compat.h"
64 *len = TARGET_PAGE_SIZE - (gva & ~TARGET_PAGE_MASK); in kvm_gva_to_gpa()
84 return -EFAULT; in kvm_gva_rw()
93 sz -= len; in kvm_gva_rw()
[all …]
H A Dkvm.c4 * Copyright (C) 2006-2008 Qumranet Technologies
8 * Anthony Liguori <aliguori@us.ibm.com>
11 * See the COPYING file in the top-level directory.
16 #include "qapi/qapi-events-run-state.h"
28 #include "standard-headers/asm-x86/kvm_para.h"
29 #include "hw/xen/interface/arch-x86/cpuid.h"
32 #include "host-cpu.h"
39 #include "../confidential-guest.h"
42 #include "xen-emu.h"
44 #include "hyperv-proto.h"
[all …]
/qemu/linux-headers/linux/
H A Dvfio.h1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
37 /* Two-stage IOMMU */
43 * The No-IOMMU IOMMU offers no translation or isolation for devices and
44 * supports no ioctls outside of VFIO_CHECK_EXTENSION. Use of VFIO's No-IOMMU
100 /* -------- IOCTLs for VFIO file descriptor (/dev/vfio/vfio) -------- */
103 * VFIO_GET_API_VERSION - _IO(VFIO_TYPE, VFIO_BASE + 0)
105 * Report the version of the VFIO API. This allows us to bump the entire
114 * VFIO_CHECK_EXTENSION - _IOW(VFIO_TYPE, VFIO_BASE + 1, __u32)
123 * VFIO_SET_IOMMU - _IOW(VFIO_TYPE, VFIO_BASE + 2, __s32)
130 * Return: 0 on success, -errno on failure
[all …]
/qemu/hw/pci/
H A Dpci.c33 #include "hw/qdev-properties.h"
34 #include "hw/qdev-properties-system.h"
36 #include "migration/qemu-file-types.h"
43 #include "qemu/error-report.h"
53 #include "pci-internal.h"
79 DEFINE_PROP_PCI_DEVFN("addr", PCIDevice, devfn, -1),
82 DEFINE_PROP_INT32("rombar", PCIDevice, rom_bar, -1),
85 DEFINE_PROP_BIT("x-pcie-lnksta-dllla", PCIDevice, cap_present,
87 DEFINE_PROP_BIT("x-pcie-extcap-init", PCIDevice, cap_present,
91 DEFINE_PROP_UINT32("acpi-index", PCIDevice, acpi_index, 0),
[all …]