History log of /openbmc/qemu/hw/intc/ (Results 1026 – 1050 of 1839)
Revision Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
eab9f19117-Jun-2019 Greg Kurz <groug@kaod.org>

xics/spapr: Rename xics_kvm_init()

Switch to using the connect/disconnect terminology like we already do for
XIVE.

Signed-off-by: Greg Kurz <groug@kaod.org>
Message-Id: <156077920102.433243.6605099

xics/spapr: Rename xics_kvm_init()

Switch to using the connect/disconnect terminology like we already do for
XIVE.

Signed-off-by: Greg Kurz <groug@kaod.org>
Message-Id: <156077920102.433243.6605099291134598170.stgit@bahia.lan>
Reviewed-by: Cédric Le Goater <clg@kaod.org>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>

show more ...

25c79a3017-Jun-2019 Greg Kurz <groug@kaod.org>

xics/spapr: Only emulated XICS should use RTAS/hypercalls emulation

Checking that we're not using the in-kernel XICS is ok with the "xics"
interrupt controller mode, but it is definitely not enough

xics/spapr: Only emulated XICS should use RTAS/hypercalls emulation

Checking that we're not using the in-kernel XICS is ok with the "xics"
interrupt controller mode, but it is definitely not enough with the
other modes since the guest could be using XIVE.

Ensure XIVE is not in use when emulated XICS RTAS/hypercalls are
called.

Signed-off-by: Greg Kurz <groug@kaod.org>
Message-Id: <156077253666.424706.6104557911104491047.stgit@bahia.lan>
Reviewed-by: Cédric Le Goater <clg@kaod.org>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>

show more ...

d9b9e6f617-Jun-2019 Greg Kurz <groug@kaod.org>

xics: Add comment about CPU hotplug

So that no one is tempted to drop that code, which is never called
for cold plugged CPUs.

Signed-off-by: Greg Kurz <groug@kaod.org>
Message-Id: <156078063349.435

xics: Add comment about CPU hotplug

So that no one is tempted to drop that code, which is never called
for cold plugged CPUs.

Signed-off-by: Greg Kurz <groug@kaod.org>
Message-Id: <156078063349.435533.12283208810037409702.stgit@bahia.lan>
Reviewed-by: Cédric Le Goater <clg@kaod.org>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>

show more ...

7abc0c6d13-Jun-2019 Greg Kurz <groug@kaod.org>

xics/spapr: Detect old KVM XICS on POWER9 hosts

Older KVMs on POWER9 don't support destroying/recreating a KVM XICS
device, which is required by 'dual' interrupt controller mode. This
causes QEMU to

xics/spapr: Detect old KVM XICS on POWER9 hosts

Older KVMs on POWER9 don't support destroying/recreating a KVM XICS
device, which is required by 'dual' interrupt controller mode. This
causes QEMU to emit a warning when the guest is rebooted and to fall
back on XICS emulation:

qemu-system-ppc64: warning: kernel_irqchip allowed but unavailable:
Error on KVM_CREATE_DEVICE for XICS: File exists

If kernel irqchip is required, QEMU will thus exit when the guest is
first rebooted. Failing QEMU this late may be a painful experience
for the user.

Detect that and exit at machine init instead.

Signed-off-by: Greg Kurz <groug@kaod.org>
Message-Id: <156044430517.125694.6207865998817342638.stgit@bahia.lab.toulouse-stg.fr.ibm.com>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>

show more ...

d9293c4813-Jun-2019 Greg Kurz <groug@kaod.org>

xics/spapr: Register RTAS/hypercalls once at machine init

QEMU may crash when running a spapr machine in 'dual' interrupt controller
mode on some older (but not that old, eg. ubuntu 18.04.2) KVMs wi

xics/spapr: Register RTAS/hypercalls once at machine init

QEMU may crash when running a spapr machine in 'dual' interrupt controller
mode on some older (but not that old, eg. ubuntu 18.04.2) KVMs with partial
XIVE support:

qemu-system-ppc64: hw/ppc/spapr_rtas.c:411: spapr_rtas_register:
Assertion `!name || !rtas_table[token].name' failed.

XICS is controlled by the guest thanks to a set of RTAS calls. Depending
on whether KVM XICS is used or not, the RTAS calls are handled by KVM or
QEMU. In both cases, QEMU needs to expose the RTAS calls to the guest
through the "rtas" node of the device tree.

The spapr_rtas_register() helper takes care of all of that: it adds the
RTAS call token to the "rtas" node and registers a QEMU callback to be
invoked when the guest issues the RTAS call. In the KVM XICS case, QEMU
registers a dummy callback that just prints an error since it isn't
supposed to be invoked, ever.

Historically, the XICS controller was setup during machine init and
released during final teardown. This changed when the 'dual' interrupt
controller mode was added to the spapr machine: in this case we need
to tear the XICS down and set it up again during machine reset. The
crash happens because we indeed have an incompatibility with older
KVMs that forces QEMU to fallback on emulated XICS, which tries to
re-registers the same RTAS calls.

This could be fixed by adding proper rollback that would unregister
RTAS calls on error. But since the emulated RTAS calls in QEMU can
now detect when they are mistakenly called while KVM XICS is in
use, it seems simpler to register them once and for all at machine
init. This fixes the crash and allows to remove some now useless
lines of code.

Signed-off-by: Greg Kurz <groug@kaod.org>
Message-Id: <156044429963.125694.13710679451927268758.stgit@bahia.lab.toulouse-stg.fr.ibm.com>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>

show more ...

d9715d6713-Jun-2019 Greg Kurz <groug@kaod.org>

xics/spapr: Prevent RTAS/hypercalls emulation to be used by in-kernel XICS

The XICS-related RTAS calls and hypercalls in QEMU are not supposed to
be called when the KVM in-kernel XICS is in use.

Ad

xics/spapr: Prevent RTAS/hypercalls emulation to be used by in-kernel XICS

The XICS-related RTAS calls and hypercalls in QEMU are not supposed to
be called when the KVM in-kernel XICS is in use.

Add some explicit checks to detect that, print an error message and report
an hardware error to the guest.

Signed-off-by: Greg Kurz <groug@kaod.org>
Message-Id: <156044429419.125694.507569071972451514.stgit@bahia.lab.toulouse-stg.fr.ibm.com>
[dwg: Correction to commit message]
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>

show more ...

e1a9b7d112-Jun-2019 Cédric Le Goater <clg@kaod.org>

ppc/pnv: fix StoreEOI activation

The firmware (skiboot) of the PowerNV machines can configure the XIVE
interrupt controller to activate StoreEOI on the ESB pages of the
interrupts. This feature lets

ppc/pnv: fix StoreEOI activation

The firmware (skiboot) of the PowerNV machines can configure the XIVE
interrupt controller to activate StoreEOI on the ESB pages of the
interrupts. This feature lets software do an EOI with a store instead
of a load. It is not activated today on P9 for rare race condition
issues but it should be on future processors.

Nevertheless, QEMU has a model for StoreEOI which can be used today by
experimental firmwares. But, the use of object_property_set_int() in
the PnvXive model is incorrect and crashes QEMU. Replace it with a
direct access to the ESB flags of the XiveSource object modeling the
internal sources of the interrupt controller.

Signed-off-by: Cédric Le Goater <clg@kaod.org>
Message-Id: <20190612162357.29566-1-clg@kaod.org>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>

show more ...


/openbmc/qemu/.travis.yml
/openbmc/qemu/MAINTAINERS
/openbmc/qemu/Makefile
/openbmc/qemu/Makefile.objs
/openbmc/qemu/Makefile.target
/openbmc/qemu/accel/kvm/kvm-all.c
/openbmc/qemu/block.c
/openbmc/qemu/block/Makefile.objs
/openbmc/qemu/block/block-backend.c
/openbmc/qemu/block/commit.c
/openbmc/qemu/block/file-posix.c
/openbmc/qemu/block/mirror.c
/openbmc/qemu/block/replication.c
/openbmc/qemu/block/ssh.c
/openbmc/qemu/block/trace-events
/openbmc/qemu/block/vmdk.c
/openbmc/qemu/blockdev.c
/openbmc/qemu/blockjob.c
/openbmc/qemu/chardev/char.c
/openbmc/qemu/configure
/openbmc/qemu/cpus.c
/openbmc/qemu/docs/devel/index.rst
/openbmc/qemu/docs/devel/tcg.rst
/openbmc/qemu/docs/devel/writing-qmp-commands.txt
/openbmc/qemu/docs/hyperv.txt
/openbmc/qemu/docs/qemu-block-drivers.texi
/openbmc/qemu/docs/specs/conf.py
/openbmc/qemu/docs/specs/index.rst
/openbmc/qemu/docs/specs/ppc-spapr-xive.rst
/openbmc/qemu/docs/specs/ppc-xive.rst
/openbmc/qemu/gdbstub.c
/openbmc/qemu/hmp-commands.hx
/openbmc/qemu/hw/9pfs/xen-9pfs.h
/openbmc/qemu/hw/block/dataplane/xen-block.c
/openbmc/qemu/hw/block/dataplane/xen-block.h
/openbmc/qemu/hw/block/nvme.c
/openbmc/qemu/hw/block/xen-block.c
/openbmc/qemu/hw/block/xen_blkif.h
/openbmc/qemu/hw/char/xen_console.c
/openbmc/qemu/hw/core/machine.c
/openbmc/qemu/hw/display/xenfb.c
/openbmc/qemu/hw/dma/rc4030.c
/openbmc/qemu/hw/i386/pc.c
/openbmc/qemu/hw/i386/pc_q35.c
/openbmc/qemu/hw/i386/xen/xen-hvm.c
/openbmc/qemu/hw/i386/xen/xen-mapcache.c
pnv_xive.c
/openbmc/qemu/hw/mips/gt64xxx_pci.c
/openbmc/qemu/hw/mips/trace-events
/openbmc/qemu/hw/net/xen_nic.c
/openbmc/qemu/hw/sd/sd.c
/openbmc/qemu/hw/usb/xen-usb.c
/openbmc/qemu/hw/xen/xen-bus.c
/openbmc/qemu/hw/xen/xen-legacy-backend.c
/openbmc/qemu/include/block/block_int.h
/openbmc/qemu/include/block/blockjob.h
/openbmc/qemu/include/hw/boards.h
/openbmc/qemu/include/hw/i386/pc.h
/openbmc/qemu/include/hw/xen/interface/grant_table.h
/openbmc/qemu/include/hw/xen/interface/io/blkif.h
/openbmc/qemu/include/hw/xen/interface/io/console.h
/openbmc/qemu/include/hw/xen/interface/io/fbif.h
/openbmc/qemu/include/hw/xen/interface/io/kbdif.h
/openbmc/qemu/include/hw/xen/interface/io/netif.h
/openbmc/qemu/include/hw/xen/interface/io/protocols.h
/openbmc/qemu/include/hw/xen/interface/io/ring.h
/openbmc/qemu/include/hw/xen/interface/io/usbif.h
/openbmc/qemu/include/hw/xen/interface/io/xenbus.h
/openbmc/qemu/include/hw/xen/xen-bus.h
/openbmc/qemu/include/hw/xen/xen_common.h
/openbmc/qemu/include/migration/vmstate.h
/openbmc/qemu/include/monitor/monitor.h
/openbmc/qemu/include/sysemu/kvm.h
/openbmc/qemu/linux-headers/asm-x86/kvm.h
/openbmc/qemu/linux-user/Makefile.objs
/openbmc/qemu/linux-user/elfload.c
/openbmc/qemu/linux-user/m68k/cpu_loop.c
/openbmc/qemu/linux-user/m68k/target_syscall.h
/openbmc/qemu/linux-user/ppc/target_elf.h
/openbmc/qemu/linux-user/qemu.h
/openbmc/qemu/linux-user/syscall.c
/openbmc/qemu/linux-user/syscall_defs.h
/openbmc/qemu/monitor/Makefile.objs
/openbmc/qemu/monitor/hmp-cmds.c
/openbmc/qemu/monitor/hmp.c
/openbmc/qemu/monitor/misc.c
/openbmc/qemu/monitor/monitor-internal.h
/openbmc/qemu/monitor/monitor.c
/openbmc/qemu/monitor/qmp-cmds.c
/openbmc/qemu/monitor/qmp.c
/openbmc/qemu/monitor/trace-events
/openbmc/qemu/pc-bios/spapr-rtas/Makefile
/openbmc/qemu/qapi/block-core.json
/openbmc/qemu/qemu-deprecated.texi
/openbmc/qemu/qemu-tech.texi
/openbmc/qemu/stubs/fdset.c
/openbmc/qemu/stubs/monitor.c
/openbmc/qemu/target/arm/cpu.h
/openbmc/qemu/target/arm/kvm32.c
/openbmc/qemu/target/arm/kvm64.c
/openbmc/qemu/target/arm/translate-a64.c
/openbmc/qemu/target/arm/translate-a64.h
/openbmc/qemu/target/arm/translate-vfp.inc.c
/openbmc/qemu/target/arm/translate.c
/openbmc/qemu/target/arm/translate.h
/openbmc/qemu/target/arm/vfp.decode
/openbmc/qemu/target/i386/cpu.c
/openbmc/qemu/target/i386/cpu.h
/openbmc/qemu/target/i386/hax-all.c
/openbmc/qemu/target/i386/hvf/hvf.c
/openbmc/qemu/target/i386/hvf/x86hvf.c
/openbmc/qemu/target/i386/hyperv-proto.h
/openbmc/qemu/target/i386/hyperv.c
/openbmc/qemu/target/i386/kvm.c
/openbmc/qemu/target/i386/machine.c
/openbmc/qemu/target/m68k/cpu-qom.h
/openbmc/qemu/target/m68k/cpu.c
/openbmc/qemu/target/m68k/cpu.h
/openbmc/qemu/target/m68k/fpu_helper.c
/openbmc/qemu/target/m68k/gdbstub.c
/openbmc/qemu/target/m68k/helper.c
/openbmc/qemu/target/m68k/m68k-semi.c
/openbmc/qemu/target/m68k/op_helper.c
/openbmc/qemu/target/m68k/softfloat.c
/openbmc/qemu/target/m68k/softfloat.h
/openbmc/qemu/target/m68k/softfloat_fpsp_tables.h
/openbmc/qemu/target/m68k/translate.c
/openbmc/qemu/target/mips/kvm.c
/openbmc/qemu/target/mips/msa_helper.c
/openbmc/qemu/target/mips/translate.c
/openbmc/qemu/target/ppc/kvm.c
/openbmc/qemu/target/s390x/kvm.c
/openbmc/qemu/target/tricore/fpu_helper.c
/openbmc/qemu/target/tricore/helper.h
/openbmc/qemu/target/tricore/translate.c
/openbmc/qemu/tests/docker/dockerfiles/debian-win32-cross.docker
/openbmc/qemu/tests/docker/dockerfiles/debian-win64-cross.docker
/openbmc/qemu/tests/docker/dockerfiles/fedora.docker
/openbmc/qemu/tests/docker/dockerfiles/ubuntu.docker
/openbmc/qemu/tests/docker/dockerfiles/ubuntu1804.docker
/openbmc/qemu/tests/qemu-iotests/059.out
/openbmc/qemu/tests/qemu-iotests/134
/openbmc/qemu/tests/qemu-iotests/134.out
/openbmc/qemu/tests/qemu-iotests/182
/openbmc/qemu/tests/qemu-iotests/182.out
/openbmc/qemu/tests/qemu-iotests/205
/openbmc/qemu/tests/qemu-iotests/207
/openbmc/qemu/tests/qemu-iotests/207.out
/openbmc/qemu/tests/qemu-iotests/check
/openbmc/qemu/tests/tcg/mips/include/test_utils_128.h
/openbmc/qemu/tests/tcg/mips/include/test_utils_64.h
/openbmc/qemu/tests/tcg/mips/include/wrappers_msa.h
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-count/test_msa_nloc_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-count/test_msa_nloc_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-count/test_msa_nloc_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-count/test_msa_nloc_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-count/test_msa_nlzc_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-count/test_msa_nlzc_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-count/test_msa_nlzc_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-count/test_msa_nlzc_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-count/test_msa_pcnt_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-count/test_msa_pcnt_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-count/test_msa_pcnt_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-count/test_msa_pcnt_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-move/test_msa_binsl_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-move/test_msa_binsl_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-move/test_msa_binsl_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-move/test_msa_binsl_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-move/test_msa_binsr_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-move/test_msa_binsr_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-move/test_msa_binsr_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-move/test_msa_binsr_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-move/test_msa_bmnz_v.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-move/test_msa_bmz_v.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-move/test_msa_bsel_v.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-set/test_msa_bclr_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-set/test_msa_bclr_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-set/test_msa_bclr_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-set/test_msa_bclr_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-set/test_msa_bneg_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-set/test_msa_bneg_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-set/test_msa_bneg_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-set/test_msa_bneg_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-set/test_msa_bset_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-set/test_msa_bset_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-set/test_msa_bset_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-set/test_msa_bset_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/fixed-multiply/test_msa_mul_q_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/fixed-multiply/test_msa_mul_q_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/fixed-multiply/test_msa_mulr_q_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/fixed-multiply/test_msa_mulr_q_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/float-max-min/test_msa_fmax_a_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/float-max-min/test_msa_fmax_a_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/float-max-min/test_msa_fmax_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/float-max-min/test_msa_fmax_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/float-max-min/test_msa_fmin_a_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/float-max-min/test_msa_fmin_a_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/float-max-min/test_msa_fmin_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/float-max-min/test_msa_fmin_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_add_a_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_add_a_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_add_a_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_add_a_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_adds_a_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_adds_a_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_adds_a_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_adds_a_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_adds_s_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_adds_s_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_adds_s_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_adds_s_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_adds_u_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_adds_u_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_adds_u_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_adds_u_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_addv_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_addv_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_addv_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_addv_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_hadd_s_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_hadd_s_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_hadd_s_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_hadd_u_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_hadd_u_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_hadd_u_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-average/test_msa_ave_s_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-average/test_msa_ave_s_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-average/test_msa_ave_s_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-average/test_msa_ave_s_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-average/test_msa_ave_u_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-average/test_msa_ave_u_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-average/test_msa_ave_u_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-average/test_msa_ave_u_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-average/test_msa_aver_s_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-average/test_msa_aver_s_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-average/test_msa_aver_s_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-average/test_msa_aver_s_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-average/test_msa_aver_u_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-average/test_msa_aver_u_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-average/test_msa_aver_u_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-average/test_msa_aver_u_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-compare/test_msa_ceq_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-compare/test_msa_ceq_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-compare/test_msa_ceq_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-compare/test_msa_ceq_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-compare/test_msa_cle_s_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-compare/test_msa_cle_s_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-compare/test_msa_cle_s_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-compare/test_msa_cle_s_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-compare/test_msa_cle_u_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-compare/test_msa_cle_u_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-compare/test_msa_cle_u_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-compare/test_msa_cle_u_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-compare/test_msa_clt_s_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-compare/test_msa_clt_s_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-compare/test_msa_clt_s_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-compare/test_msa_clt_s_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-compare/test_msa_clt_u_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-compare/test_msa_clt_u_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-compare/test_msa_clt_u_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-compare/test_msa_clt_u_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-divide/test_msa_div_s_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-divide/test_msa_div_s_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-divide/test_msa_div_s_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-divide/test_msa_div_s_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-divide/test_msa_div_u_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-divide/test_msa_div_u_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-divide/test_msa_div_u_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-divide/test_msa_div_u_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-dot-product/test_msa_dotp_s_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-dot-product/test_msa_dotp_s_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-dot-product/test_msa_dotp_s_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-dot-product/test_msa_dotp_u_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-dot-product/test_msa_dotp_u_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-dot-product/test_msa_dotp_u_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-dot-product/test_msa_dpadd_s_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-dot-product/test_msa_dpadd_s_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-dot-product/test_msa_dpadd_s_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-dot-product/test_msa_dpadd_u_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-dot-product/test_msa_dpadd_u_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-dot-product/test_msa_dpadd_u_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-dot-product/test_msa_dpsub_s_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-dot-product/test_msa_dpsub_s_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-dot-product/test_msa_dpsub_s_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-dot-product/test_msa_dpsub_u_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-dot-product/test_msa_dpsub_u_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-dot-product/test_msa_dpsub_u_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_max_a_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_max_a_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_max_a_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_max_a_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_max_s_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_max_s_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_max_s_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_max_s_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_max_u_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_max_u_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_max_u_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_max_u_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_min_a_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_min_a_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_min_a_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_min_a_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_min_s_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_min_s_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_min_s_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_min_s_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_min_u_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_min_u_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_min_u_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_min_u_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-modulo/test_msa_mod_s_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-modulo/test_msa_mod_s_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-modulo/test_msa_mod_s_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-modulo/test_msa_mod_s_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-modulo/test_msa_mod_u_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-modulo/test_msa_mod_u_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-modulo/test_msa_mod_u_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-modulo/test_msa_mod_u_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-multiply/test_msa_maddv_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-multiply/test_msa_maddv_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-multiply/test_msa_maddv_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-multiply/test_msa_maddv_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-multiply/test_msa_msubv_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-multiply/test_msa_msubv_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-multiply/test_msa_msubv_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-multiply/test_msa_msubv_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-multiply/test_msa_mulv_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-multiply/test_msa_mulv_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-multiply/test_msa_mulv_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-multiply/test_msa_mulv_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_asub_s_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_asub_s_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_asub_s_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_asub_s_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_asub_u_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_asub_u_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_asub_u_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_asub_u_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_hsub_s_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_hsub_s_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_hsub_s_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_hsub_u_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_hsub_u_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_hsub_u_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_subs_s_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_subs_s_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_subs_s_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_subs_s_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_subs_u_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_subs_u_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_subs_u_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_subs_u_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_subsus_u_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_subsus_u_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_subsus_u_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_subsus_u_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_subsuu_s_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_subsuu_s_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_subsuu_s_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_subsuu_s_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_subv_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_subv_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_subv_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_subv_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/interleave/test_msa_ilvev_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/interleave/test_msa_ilvev_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/interleave/test_msa_ilvev_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/interleave/test_msa_ilvev_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/interleave/test_msa_ilvl_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/interleave/test_msa_ilvl_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/interleave/test_msa_ilvl_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/interleave/test_msa_ilvl_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/interleave/test_msa_ilvod_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/interleave/test_msa_ilvod_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/interleave/test_msa_ilvod_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/interleave/test_msa_ilvod_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/interleave/test_msa_ilvr_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/interleave/test_msa_ilvr_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/interleave/test_msa_ilvr_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/interleave/test_msa_ilvr_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/logic/test_msa_and_v.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/logic/test_msa_nor_v.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/logic/test_msa_or_v.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/logic/test_msa_xor_v.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/move/test_msa_move_v.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/pack/test_msa_pckev_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/pack/test_msa_pckev_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/pack/test_msa_pckev_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/pack/test_msa_pckev_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/pack/test_msa_pckod_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/pack/test_msa_pckod_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/pack/test_msa_pckod_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/pack/test_msa_pckod_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/pack/test_msa_vshf_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/pack/test_msa_vshf_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/pack/test_msa_vshf_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/pack/test_msa_vshf_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/shift/test_msa_sll_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/shift/test_msa_sll_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/shift/test_msa_sll_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/shift/test_msa_sll_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/shift/test_msa_sra_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/shift/test_msa_sra_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/shift/test_msa_sra_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/shift/test_msa_sra_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/shift/test_msa_srar_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/shift/test_msa_srar_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/shift/test_msa_srar_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/shift/test_msa_srar_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/shift/test_msa_srl_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/shift/test_msa_srl_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/shift/test_msa_srl_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/shift/test_msa_srl_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/shift/test_msa_srlr_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/shift/test_msa_srlr_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/shift/test_msa_srlr_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/shift/test_msa_srlr_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/test_msa_compile_32r6eb.sh
/openbmc/qemu/tests/tcg/mips/user/ase/msa/test_msa_compile_32r6el.sh
/openbmc/qemu/tests/tcg/mips/user/ase/msa/test_msa_compile_64r6eb.sh
/openbmc/qemu/tests/tcg/mips/user/ase/msa/test_msa_compile_64r6el.sh
/openbmc/qemu/tests/tcg/mips/user/ase/msa/test_msa_run_32r6eb.sh
/openbmc/qemu/tests/tcg/mips/user/ase/msa/test_msa_run_32r6el.sh
/openbmc/qemu/tests/tcg/mips/user/ase/msa/test_msa_run_64r6eb.sh
/openbmc/qemu/tests/tcg/mips/user/ase/msa/test_msa_run_64r6el.sh
/openbmc/qemu/tests/tcg/mips/user/isa/mips64r6/bit-count/test_mips64r6_clo.c
/openbmc/qemu/tests/tcg/mips/user/isa/mips64r6/bit-count/test_mips64r6_clz.c
/openbmc/qemu/tests/tcg/mips/user/isa/mips64r6/bit-count/test_mips64r6_dclo.c
/openbmc/qemu/tests/tcg/mips/user/isa/mips64r6/bit-count/test_mips64r6_dclz.c
/openbmc/qemu/tests/tcg/mips/user/isa/mips64r6/bit-swap/test_mips64r6_bitswap.c
/openbmc/qemu/tests/tcg/mips/user/isa/mips64r6/bit-swap/test_mips64r6_dbitswap.c
/openbmc/qemu/tests/tcg/mips/user/isa/mips64r6/int-multiply/test_mips64r6_dmuh.c
/openbmc/qemu/tests/tcg/mips/user/isa/mips64r6/int-multiply/test_mips64r6_dmuhu.c
/openbmc/qemu/tests/tcg/mips/user/isa/mips64r6/int-multiply/test_mips64r6_dmul.c
/openbmc/qemu/tests/tcg/mips/user/isa/mips64r6/int-multiply/test_mips64r6_dmulu.c
/openbmc/qemu/tests/tcg/mips/user/isa/mips64r6/int-multiply/test_mips64r6_muh.c
/openbmc/qemu/tests/tcg/mips/user/isa/mips64r6/int-multiply/test_mips64r6_muhu.c
/openbmc/qemu/tests/tcg/mips/user/isa/mips64r6/int-multiply/test_mips64r6_mul.c
/openbmc/qemu/tests/tcg/mips/user/isa/mips64r6/int-multiply/test_mips64r6_mulu.c
/openbmc/qemu/tests/tcg/mips/user/isa/mips64r6/logic/test_mips64r6_and.c
/openbmc/qemu/tests/tcg/mips/user/isa/mips64r6/logic/test_mips64r6_nor.c
/openbmc/qemu/tests/tcg/mips/user/isa/mips64r6/logic/test_mips64r6_or.c
/openbmc/qemu/tests/tcg/mips/user/isa/mips64r6/logic/test_mips64r6_xor.c
/openbmc/qemu/tests/tcg/mips/user/isa/mips64r6/shift/test_mips64r6_dsllv.c
/openbmc/qemu/tests/tcg/mips/user/isa/mips64r6/shift/test_mips64r6_dsrav.c
/openbmc/qemu/tests/tcg/mips/user/isa/mips64r6/shift/test_mips64r6_dsrlv.c
/openbmc/qemu/tests/tcg/mips/user/isa/mips64r6/shift/test_mips64r6_sllv.c
/openbmc/qemu/tests/tcg/mips/user/isa/mips64r6/shift/test_mips64r6_srav.c
/openbmc/qemu/tests/tcg/mips/user/isa/mips64r6/shift/test_mips64r6_srlv.c
/openbmc/qemu/tests/test-blockjob.c
/openbmc/qemu/tests/test-util-sockets.c
/openbmc/qemu/trace-events
/openbmc/qemu/util/main-loop.c
/openbmc/qemu/util/path.c
/openbmc/qemu/vl.c
ebd205c001-Jul-2019 Andrew Jeffery <andrew@aj.id.au>

aspeed: vic: Add support for legacy register interface

The legacy interface only supported up to 32 IRQs, which became
restrictive around the AST2400 generation. QEMU support for the SoCs
started wi

aspeed: vic: Add support for legacy register interface

The legacy interface only supported up to 32 IRQs, which became
restrictive around the AST2400 generation. QEMU support for the SoCs
started with the AST2400 along with an effort to reimplement and
upstream drivers for Linux, so up until this point the consumers of the
QEMU ASPEED support only required the 64 IRQ register interface.

In an effort to support older BMC firmware, add support for the 32 IRQ
interface.

Signed-off-by: Andrew Jeffery <andrew@aj.id.au>
Signed-off-by: Cédric Le Goater <clg@kaod.org>
Reviewed-by: Joel Stanley <joel@jms.id.au>
Message-id: 20190618165311.27066-22-clg@kaod.org
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>

show more ...


/openbmc/qemu/.travis.yml
/openbmc/qemu/MAINTAINERS
/openbmc/qemu/Makefile
/openbmc/qemu/Makefile.objs
/openbmc/qemu/Makefile.target
/openbmc/qemu/accel/kvm/kvm-all.c
/openbmc/qemu/block.c
/openbmc/qemu/block/Makefile.objs
/openbmc/qemu/block/block-backend.c
/openbmc/qemu/block/commit.c
/openbmc/qemu/block/file-posix.c
/openbmc/qemu/block/mirror.c
/openbmc/qemu/block/replication.c
/openbmc/qemu/block/ssh.c
/openbmc/qemu/block/trace-events
/openbmc/qemu/block/vmdk.c
/openbmc/qemu/blockdev.c
/openbmc/qemu/blockjob.c
/openbmc/qemu/chardev/char.c
/openbmc/qemu/configure
/openbmc/qemu/cpus.c
/openbmc/qemu/docs/devel/index.rst
/openbmc/qemu/docs/devel/tcg.rst
/openbmc/qemu/docs/devel/writing-qmp-commands.txt
/openbmc/qemu/docs/hyperv.txt
/openbmc/qemu/docs/qemu-block-drivers.texi
/openbmc/qemu/docs/specs/conf.py
/openbmc/qemu/docs/specs/index.rst
/openbmc/qemu/gdbstub.c
/openbmc/qemu/hmp-commands.hx
/openbmc/qemu/hw/9pfs/xen-9pfs.h
/openbmc/qemu/hw/arm/aspeed.c
/openbmc/qemu/hw/arm/aspeed_soc.c
/openbmc/qemu/hw/arm/boot.c
/openbmc/qemu/hw/arm/fsl-imx7.c
/openbmc/qemu/hw/arm/msf2-som.c
/openbmc/qemu/hw/arm/virt.c
/openbmc/qemu/hw/block/dataplane/xen-block.c
/openbmc/qemu/hw/block/dataplane/xen-block.h
/openbmc/qemu/hw/block/nvme.c
/openbmc/qemu/hw/block/xen-block.c
/openbmc/qemu/hw/block/xen_blkif.h
/openbmc/qemu/hw/char/xen_console.c
/openbmc/qemu/hw/core/machine.c
/openbmc/qemu/hw/display/xenfb.c
/openbmc/qemu/hw/dma/rc4030.c
/openbmc/qemu/hw/i386/pc.c
/openbmc/qemu/hw/i386/pc_q35.c
/openbmc/qemu/hw/i386/xen/xen-hvm.c
/openbmc/qemu/hw/i386/xen/xen-mapcache.c
aspeed_vic.c
/openbmc/qemu/hw/mips/gt64xxx_pci.c
/openbmc/qemu/hw/mips/trace-events
/openbmc/qemu/hw/misc/Makefile.objs
/openbmc/qemu/hw/misc/aspeed_xdma.c
/openbmc/qemu/hw/misc/trace-events
/openbmc/qemu/hw/net/xen_nic.c
/openbmc/qemu/hw/pci-host/designware.c
/openbmc/qemu/hw/sd/sd.c
/openbmc/qemu/hw/ssi/aspeed_smc.c
/openbmc/qemu/hw/timer/Makefile.objs
/openbmc/qemu/hw/timer/aspeed_rtc.c
/openbmc/qemu/hw/timer/aspeed_timer.c
/openbmc/qemu/hw/timer/trace-events
/openbmc/qemu/hw/usb/xen-usb.c
/openbmc/qemu/hw/xen/xen-bus.c
/openbmc/qemu/hw/xen/xen-legacy-backend.c
/openbmc/qemu/include/block/block_int.h
/openbmc/qemu/include/block/blockjob.h
/openbmc/qemu/include/hw/arm/aspeed_soc.h
/openbmc/qemu/include/hw/arm/fsl-imx7.h
/openbmc/qemu/include/hw/boards.h
/openbmc/qemu/include/hw/i386/pc.h
/openbmc/qemu/include/hw/misc/aspeed_xdma.h
/openbmc/qemu/include/hw/ssi/aspeed_smc.h
/openbmc/qemu/include/hw/timer/aspeed_rtc.h
/openbmc/qemu/include/hw/xen/interface/grant_table.h
/openbmc/qemu/include/hw/xen/interface/io/blkif.h
/openbmc/qemu/include/hw/xen/interface/io/console.h
/openbmc/qemu/include/hw/xen/interface/io/fbif.h
/openbmc/qemu/include/hw/xen/interface/io/kbdif.h
/openbmc/qemu/include/hw/xen/interface/io/netif.h
/openbmc/qemu/include/hw/xen/interface/io/protocols.h
/openbmc/qemu/include/hw/xen/interface/io/ring.h
/openbmc/qemu/include/hw/xen/interface/io/usbif.h
/openbmc/qemu/include/hw/xen/interface/io/xenbus.h
/openbmc/qemu/include/hw/xen/xen-bus.h
/openbmc/qemu/include/hw/xen/xen_common.h
/openbmc/qemu/include/migration/vmstate.h
/openbmc/qemu/include/monitor/monitor.h
/openbmc/qemu/include/sysemu/kvm.h
/openbmc/qemu/linux-headers/asm-x86/kvm.h
/openbmc/qemu/linux-user/elfload.c
/openbmc/qemu/linux-user/ppc/target_elf.h
/openbmc/qemu/linux-user/syscall.c
/openbmc/qemu/linux-user/syscall_defs.h
/openbmc/qemu/monitor/Makefile.objs
/openbmc/qemu/monitor/hmp-cmds.c
/openbmc/qemu/monitor/hmp.c
/openbmc/qemu/monitor/misc.c
/openbmc/qemu/monitor/monitor-internal.h
/openbmc/qemu/monitor/monitor.c
/openbmc/qemu/monitor/qmp-cmds.c
/openbmc/qemu/monitor/qmp.c
/openbmc/qemu/monitor/trace-events
/openbmc/qemu/qapi/block-core.json
/openbmc/qemu/qemu-deprecated.texi
/openbmc/qemu/qemu-tech.texi
/openbmc/qemu/stubs/fdset.c
/openbmc/qemu/stubs/monitor.c
/openbmc/qemu/target/arm/cpu.h
/openbmc/qemu/target/arm/kvm32.c
/openbmc/qemu/target/arm/kvm64.c
/openbmc/qemu/target/arm/translate-a64.c
/openbmc/qemu/target/arm/translate-a64.h
/openbmc/qemu/target/arm/translate-vfp.inc.c
/openbmc/qemu/target/arm/translate.c
/openbmc/qemu/target/arm/translate.h
/openbmc/qemu/target/arm/vfp.decode
/openbmc/qemu/target/i386/cpu.c
/openbmc/qemu/target/i386/cpu.h
/openbmc/qemu/target/i386/hax-all.c
/openbmc/qemu/target/i386/hvf/hvf.c
/openbmc/qemu/target/i386/hvf/x86hvf.c
/openbmc/qemu/target/i386/hyperv-proto.h
/openbmc/qemu/target/i386/hyperv.c
/openbmc/qemu/target/i386/kvm.c
/openbmc/qemu/target/i386/machine.c
/openbmc/qemu/target/mips/kvm.c
/openbmc/qemu/target/mips/msa_helper.c
/openbmc/qemu/target/mips/translate.c
/openbmc/qemu/target/ppc/kvm.c
/openbmc/qemu/target/s390x/kvm.c
/openbmc/qemu/target/tricore/fpu_helper.c
/openbmc/qemu/target/tricore/helper.h
/openbmc/qemu/target/tricore/translate.c
/openbmc/qemu/tests/docker/dockerfiles/debian-win32-cross.docker
/openbmc/qemu/tests/docker/dockerfiles/debian-win64-cross.docker
/openbmc/qemu/tests/docker/dockerfiles/fedora.docker
/openbmc/qemu/tests/docker/dockerfiles/ubuntu.docker
/openbmc/qemu/tests/docker/dockerfiles/ubuntu1804.docker
/openbmc/qemu/tests/qemu-iotests/059.out
/openbmc/qemu/tests/qemu-iotests/134
/openbmc/qemu/tests/qemu-iotests/134.out
/openbmc/qemu/tests/qemu-iotests/182
/openbmc/qemu/tests/qemu-iotests/182.out
/openbmc/qemu/tests/qemu-iotests/205
/openbmc/qemu/tests/qemu-iotests/207
/openbmc/qemu/tests/qemu-iotests/207.out
/openbmc/qemu/tests/qemu-iotests/check
/openbmc/qemu/tests/tcg/mips/include/test_utils_128.h
/openbmc/qemu/tests/tcg/mips/include/test_utils_64.h
/openbmc/qemu/tests/tcg/mips/include/wrappers_msa.h
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-count/test_msa_nloc_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-count/test_msa_nloc_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-count/test_msa_nloc_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-count/test_msa_nloc_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-count/test_msa_nlzc_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-count/test_msa_nlzc_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-count/test_msa_nlzc_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-count/test_msa_nlzc_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-count/test_msa_pcnt_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-count/test_msa_pcnt_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-count/test_msa_pcnt_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-count/test_msa_pcnt_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-move/test_msa_binsl_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-move/test_msa_binsl_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-move/test_msa_binsl_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-move/test_msa_binsl_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-move/test_msa_binsr_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-move/test_msa_binsr_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-move/test_msa_binsr_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-move/test_msa_binsr_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-move/test_msa_bmnz_v.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-move/test_msa_bmz_v.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-move/test_msa_bsel_v.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-set/test_msa_bclr_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-set/test_msa_bclr_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-set/test_msa_bclr_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-set/test_msa_bclr_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-set/test_msa_bneg_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-set/test_msa_bneg_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-set/test_msa_bneg_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-set/test_msa_bneg_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-set/test_msa_bset_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-set/test_msa_bset_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-set/test_msa_bset_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-set/test_msa_bset_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/fixed-multiply/test_msa_mul_q_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/fixed-multiply/test_msa_mul_q_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/fixed-multiply/test_msa_mulr_q_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/fixed-multiply/test_msa_mulr_q_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/float-max-min/test_msa_fmax_a_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/float-max-min/test_msa_fmax_a_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/float-max-min/test_msa_fmax_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/float-max-min/test_msa_fmax_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/float-max-min/test_msa_fmin_a_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/float-max-min/test_msa_fmin_a_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/float-max-min/test_msa_fmin_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/float-max-min/test_msa_fmin_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_add_a_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_add_a_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_add_a_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_add_a_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_adds_a_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_adds_a_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_adds_a_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_adds_a_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_adds_s_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_adds_s_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_adds_s_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_adds_s_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_adds_u_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_adds_u_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_adds_u_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_adds_u_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_addv_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_addv_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_addv_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_addv_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_hadd_s_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_hadd_s_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_hadd_s_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_hadd_u_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_hadd_u_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_hadd_u_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-average/test_msa_ave_s_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-average/test_msa_ave_s_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-average/test_msa_ave_s_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-average/test_msa_ave_s_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-average/test_msa_ave_u_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-average/test_msa_ave_u_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-average/test_msa_ave_u_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-average/test_msa_ave_u_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-average/test_msa_aver_s_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-average/test_msa_aver_s_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-average/test_msa_aver_s_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-average/test_msa_aver_s_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-average/test_msa_aver_u_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-average/test_msa_aver_u_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-average/test_msa_aver_u_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-average/test_msa_aver_u_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-compare/test_msa_ceq_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-compare/test_msa_ceq_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-compare/test_msa_ceq_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-compare/test_msa_ceq_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-compare/test_msa_cle_s_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-compare/test_msa_cle_s_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-compare/test_msa_cle_s_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-compare/test_msa_cle_s_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-compare/test_msa_cle_u_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-compare/test_msa_cle_u_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-compare/test_msa_cle_u_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-compare/test_msa_cle_u_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-compare/test_msa_clt_s_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-compare/test_msa_clt_s_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-compare/test_msa_clt_s_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-compare/test_msa_clt_s_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-compare/test_msa_clt_u_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-compare/test_msa_clt_u_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-compare/test_msa_clt_u_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-compare/test_msa_clt_u_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-divide/test_msa_div_s_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-divide/test_msa_div_s_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-divide/test_msa_div_s_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-divide/test_msa_div_s_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-divide/test_msa_div_u_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-divide/test_msa_div_u_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-divide/test_msa_div_u_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-divide/test_msa_div_u_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-dot-product/test_msa_dotp_s_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-dot-product/test_msa_dotp_s_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-dot-product/test_msa_dotp_s_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-dot-product/test_msa_dotp_u_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-dot-product/test_msa_dotp_u_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-dot-product/test_msa_dotp_u_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-dot-product/test_msa_dpadd_s_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-dot-product/test_msa_dpadd_s_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-dot-product/test_msa_dpadd_s_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-dot-product/test_msa_dpadd_u_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-dot-product/test_msa_dpadd_u_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-dot-product/test_msa_dpadd_u_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-dot-product/test_msa_dpsub_s_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-dot-product/test_msa_dpsub_s_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-dot-product/test_msa_dpsub_s_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-dot-product/test_msa_dpsub_u_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-dot-product/test_msa_dpsub_u_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-dot-product/test_msa_dpsub_u_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_max_a_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_max_a_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_max_a_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_max_a_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_max_s_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_max_s_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_max_s_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_max_s_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_max_u_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_max_u_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_max_u_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_max_u_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_min_a_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_min_a_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_min_a_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_min_a_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_min_s_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_min_s_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_min_s_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_min_s_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_min_u_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_min_u_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_min_u_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_min_u_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-modulo/test_msa_mod_s_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-modulo/test_msa_mod_s_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-modulo/test_msa_mod_s_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-modulo/test_msa_mod_s_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-modulo/test_msa_mod_u_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-modulo/test_msa_mod_u_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-modulo/test_msa_mod_u_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-modulo/test_msa_mod_u_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-multiply/test_msa_maddv_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-multiply/test_msa_maddv_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-multiply/test_msa_maddv_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-multiply/test_msa_maddv_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-multiply/test_msa_msubv_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-multiply/test_msa_msubv_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-multiply/test_msa_msubv_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-multiply/test_msa_msubv_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-multiply/test_msa_mulv_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-multiply/test_msa_mulv_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-multiply/test_msa_mulv_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-multiply/test_msa_mulv_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_asub_s_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_asub_s_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_asub_s_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_asub_s_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_asub_u_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_asub_u_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_asub_u_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_asub_u_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_hsub_s_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_hsub_s_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_hsub_s_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_hsub_u_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_hsub_u_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_hsub_u_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_subs_s_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_subs_s_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_subs_s_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_subs_s_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_subs_u_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_subs_u_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_subs_u_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_subs_u_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_subsus_u_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_subsus_u_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_subsus_u_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_subsus_u_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_subsuu_s_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_subsuu_s_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_subsuu_s_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_subsuu_s_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_subv_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_subv_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_subv_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_subv_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/interleave/test_msa_ilvev_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/interleave/test_msa_ilvev_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/interleave/test_msa_ilvev_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/interleave/test_msa_ilvev_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/interleave/test_msa_ilvl_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/interleave/test_msa_ilvl_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/interleave/test_msa_ilvl_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/interleave/test_msa_ilvl_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/interleave/test_msa_ilvod_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/interleave/test_msa_ilvod_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/interleave/test_msa_ilvod_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/interleave/test_msa_ilvod_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/interleave/test_msa_ilvr_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/interleave/test_msa_ilvr_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/interleave/test_msa_ilvr_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/interleave/test_msa_ilvr_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/logic/test_msa_and_v.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/logic/test_msa_nor_v.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/logic/test_msa_or_v.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/logic/test_msa_xor_v.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/move/test_msa_move_v.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/pack/test_msa_pckev_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/pack/test_msa_pckev_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/pack/test_msa_pckev_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/pack/test_msa_pckev_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/pack/test_msa_pckod_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/pack/test_msa_pckod_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/pack/test_msa_pckod_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/pack/test_msa_pckod_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/pack/test_msa_vshf_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/pack/test_msa_vshf_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/pack/test_msa_vshf_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/pack/test_msa_vshf_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/shift/test_msa_sll_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/shift/test_msa_sll_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/shift/test_msa_sll_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/shift/test_msa_sll_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/shift/test_msa_sra_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/shift/test_msa_sra_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/shift/test_msa_sra_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/shift/test_msa_sra_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/shift/test_msa_srar_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/shift/test_msa_srar_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/shift/test_msa_srar_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/shift/test_msa_srar_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/shift/test_msa_srl_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/shift/test_msa_srl_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/shift/test_msa_srl_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/shift/test_msa_srl_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/shift/test_msa_srlr_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/shift/test_msa_srlr_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/shift/test_msa_srlr_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/shift/test_msa_srlr_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/test_msa_compile_32r6eb.sh
/openbmc/qemu/tests/tcg/mips/user/ase/msa/test_msa_compile_32r6el.sh
/openbmc/qemu/tests/tcg/mips/user/ase/msa/test_msa_compile_64r6eb.sh
/openbmc/qemu/tests/tcg/mips/user/ase/msa/test_msa_compile_64r6el.sh
/openbmc/qemu/tests/tcg/mips/user/ase/msa/test_msa_run_32r6eb.sh
/openbmc/qemu/tests/tcg/mips/user/ase/msa/test_msa_run_32r6el.sh
/openbmc/qemu/tests/tcg/mips/user/ase/msa/test_msa_run_64r6eb.sh
/openbmc/qemu/tests/tcg/mips/user/ase/msa/test_msa_run_64r6el.sh
/openbmc/qemu/tests/tcg/mips/user/isa/mips64r6/bit-count/test_mips64r6_clo.c
/openbmc/qemu/tests/tcg/mips/user/isa/mips64r6/bit-count/test_mips64r6_clz.c
/openbmc/qemu/tests/tcg/mips/user/isa/mips64r6/bit-count/test_mips64r6_dclo.c
/openbmc/qemu/tests/tcg/mips/user/isa/mips64r6/bit-count/test_mips64r6_dclz.c
/openbmc/qemu/tests/tcg/mips/user/isa/mips64r6/bit-swap/test_mips64r6_bitswap.c
/openbmc/qemu/tests/tcg/mips/user/isa/mips64r6/bit-swap/test_mips64r6_dbitswap.c
/openbmc/qemu/tests/tcg/mips/user/isa/mips64r6/int-multiply/test_mips64r6_dmuh.c
/openbmc/qemu/tests/tcg/mips/user/isa/mips64r6/int-multiply/test_mips64r6_dmuhu.c
/openbmc/qemu/tests/tcg/mips/user/isa/mips64r6/int-multiply/test_mips64r6_dmul.c
/openbmc/qemu/tests/tcg/mips/user/isa/mips64r6/int-multiply/test_mips64r6_dmulu.c
/openbmc/qemu/tests/tcg/mips/user/isa/mips64r6/int-multiply/test_mips64r6_muh.c
/openbmc/qemu/tests/tcg/mips/user/isa/mips64r6/int-multiply/test_mips64r6_muhu.c
/openbmc/qemu/tests/tcg/mips/user/isa/mips64r6/int-multiply/test_mips64r6_mul.c
/openbmc/qemu/tests/tcg/mips/user/isa/mips64r6/int-multiply/test_mips64r6_mulu.c
/openbmc/qemu/tests/tcg/mips/user/isa/mips64r6/logic/test_mips64r6_and.c
/openbmc/qemu/tests/tcg/mips/user/isa/mips64r6/logic/test_mips64r6_nor.c
/openbmc/qemu/tests/tcg/mips/user/isa/mips64r6/logic/test_mips64r6_or.c
/openbmc/qemu/tests/tcg/mips/user/isa/mips64r6/logic/test_mips64r6_xor.c
/openbmc/qemu/tests/tcg/mips/user/isa/mips64r6/shift/test_mips64r6_dsllv.c
/openbmc/qemu/tests/tcg/mips/user/isa/mips64r6/shift/test_mips64r6_dsrav.c
/openbmc/qemu/tests/tcg/mips/user/isa/mips64r6/shift/test_mips64r6_dsrlv.c
/openbmc/qemu/tests/tcg/mips/user/isa/mips64r6/shift/test_mips64r6_sllv.c
/openbmc/qemu/tests/tcg/mips/user/isa/mips64r6/shift/test_mips64r6_srav.c
/openbmc/qemu/tests/tcg/mips/user/isa/mips64r6/shift/test_mips64r6_srlv.c
/openbmc/qemu/tests/test-blockjob.c
/openbmc/qemu/tests/test-util-sockets.c
/openbmc/qemu/trace-events
/openbmc/qemu/util/main-loop.c
/openbmc/qemu/util/path.c
/openbmc/qemu/vl.c
0edfcc9e24-May-2019 Peter Maydell <peter.maydell@linaro.org>

hw/intc/arm_gicv3: GICD_TYPER.SecurityExtn is RAZ if GICD_CTLR.DS == 1

The GICv3 specification says that the GICD_TYPER.SecurityExtn bit
is RAZ if GICD_CTLR.DS is 1. We were incorrectly making it RA

hw/intc/arm_gicv3: GICD_TYPER.SecurityExtn is RAZ if GICD_CTLR.DS == 1

The GICv3 specification says that the GICD_TYPER.SecurityExtn bit
is RAZ if GICD_CTLR.DS is 1. We were incorrectly making it RAZ
if the security extension is unsupported. "Security extension
unsupported" always implies GICD_CTLR.DS == 1, but the guest can
also set DS on a GIC which does support the security extension.
Fix the condition to correctly check the GICD_CTLR.DS bit.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Message-id: 20190524124248.28394-3-peter.maydell@linaro.org

show more ...

e40f607324-May-2019 Peter Maydell <peter.maydell@linaro.org>

hw/intc/arm_gicv3: Fix decoding of ID register range

The GIC ID registers cover an area 0x30 bytes in size
(12 registers, 4 bytes each). We were incorrectly decoding
only the first 0x20 bytes.

Sign

hw/intc/arm_gicv3: Fix decoding of ID register range

The GIC ID registers cover an area 0x30 bytes in size
(12 registers, 4 bytes each). We were incorrectly decoding
only the first 0x20 bytes.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-id: 20190524124248.28394-2-peter.maydell@linaro.org

show more ...


/openbmc/qemu/.editorconfig
/openbmc/qemu/.travis.yml
/openbmc/qemu/MAINTAINERS
/openbmc/qemu/accel/tcg/cputlb.c
/openbmc/qemu/accel/tcg/tcg-runtime-gvec.c
/openbmc/qemu/block/Makefile.objs
/openbmc/qemu/block/blkdebug.c
/openbmc/qemu/block/file-posix.c
/openbmc/qemu/block/gluster.c
/openbmc/qemu/block/nbd.c
/openbmc/qemu/block/trace-events
/openbmc/qemu/blockdev.c
/openbmc/qemu/contrib/vhost-user-gpu/main.c
/openbmc/qemu/contrib/vhost-user-input/main.c
/openbmc/qemu/docs/devel/qapi-code-gen.txt
/openbmc/qemu/docs/interop/vhost-user.json
/openbmc/qemu/gdbstub.c
/openbmc/qemu/hw/acpi/Makefile.objs
/openbmc/qemu/hw/acpi/utils.c
/openbmc/qemu/hw/arm/armsse.c
/openbmc/qemu/hw/arm/armv7m.c
/openbmc/qemu/hw/arm/boot.c
/openbmc/qemu/hw/arm/musca.c
/openbmc/qemu/hw/arm/smmuv3.c
/openbmc/qemu/hw/arm/virt-acpi-build.c
/openbmc/qemu/hw/block/fdc.c
/openbmc/qemu/hw/core/bus.c
/openbmc/qemu/hw/core/machine.c
/openbmc/qemu/hw/display/bochs-display.c
/openbmc/qemu/hw/display/vga-pci.c
/openbmc/qemu/hw/i386/acpi-build.c
arm_gicv3_dist.c
arm_gicv3_redist.c
/openbmc/qemu/hw/pci-host/q35.c
/openbmc/qemu/hw/semihosting/console.c
/openbmc/qemu/hw/vfio/common.c
/openbmc/qemu/hw/vfio/pci.c
/openbmc/qemu/hw/vfio/platform.c
/openbmc/qemu/hw/virtio/vhost.c
/openbmc/qemu/include/hw/acpi/utils.h
/openbmc/qemu/include/hw/arm/armsse.h
/openbmc/qemu/include/hw/arm/armv7m.h
/openbmc/qemu/include/hw/display/edid.h
/openbmc/qemu/include/hw/semihosting/console.h
/openbmc/qemu/include/hw/vfio/vfio-common.h
/openbmc/qemu/include/hw/virtio/virtio-gpu.h
/openbmc/qemu/linux-user/arm/semihost.c
/openbmc/qemu/nbd/server.c
/openbmc/qemu/pc-bios/README
/openbmc/qemu/pc-bios/edk2-aarch64-code.fd.bz2
/openbmc/qemu/pc-bios/edk2-arm-code.fd.bz2
/openbmc/qemu/pc-bios/edk2-i386-code.fd.bz2
/openbmc/qemu/pc-bios/edk2-i386-secure-code.fd.bz2
/openbmc/qemu/pc-bios/edk2-licenses.txt
/openbmc/qemu/pc-bios/edk2-x86_64-code.fd.bz2
/openbmc/qemu/pc-bios/edk2-x86_64-secure-code.fd.bz2
/openbmc/qemu/python/qemu/__init__.py
/openbmc/qemu/qapi/block-core.json
/openbmc/qemu/qapi/introspect.json
/openbmc/qemu/qapi/misc.json
/openbmc/qemu/qemu-img-cmds.hx
/openbmc/qemu/qemu-img.c
/openbmc/qemu/qemu-img.texi
/openbmc/qemu/qemu-io-cmds.c
/openbmc/qemu/qemu-nbd.c
/openbmc/qemu/qemu-nbd.texi
/openbmc/qemu/roms/Makefile.edk2
/openbmc/qemu/roms/edk2
/openbmc/qemu/scripts/archive-source.sh
/openbmc/qemu/scripts/decodetree.py
/openbmc/qemu/scripts/qapi/common.py
/openbmc/qemu/scripts/qapi/doc.py
/openbmc/qemu/scripts/qapi/introspect.py
/openbmc/qemu/scripts/qapi/types.py
/openbmc/qemu/scripts/qapi/visit.py
/openbmc/qemu/target/arm/Makefile.objs
/openbmc/qemu/target/arm/arm-semi.c
/openbmc/qemu/target/arm/cpu.c
/openbmc/qemu/target/arm/cpu.h
/openbmc/qemu/target/arm/helper.c
/openbmc/qemu/target/arm/pauth_helper.c
/openbmc/qemu/target/arm/translate-a64.c
/openbmc/qemu/target/arm/translate-a64.h
/openbmc/qemu/target/arm/translate-vfp.inc.c
/openbmc/qemu/target/arm/translate.c
/openbmc/qemu/target/arm/translate.h
/openbmc/qemu/target/arm/vfp-uncond.decode
/openbmc/qemu/target/arm/vfp.decode
/openbmc/qemu/tests/Makefile.include
/openbmc/qemu/tests/data/acpi/q35/DSDT
/openbmc/qemu/tests/data/acpi/q35/DSDT.bridge
/openbmc/qemu/tests/data/acpi/q35/DSDT.cphp
/openbmc/qemu/tests/data/acpi/q35/DSDT.dimmpxm
/openbmc/qemu/tests/data/acpi/q35/DSDT.ipmibt
/openbmc/qemu/tests/data/acpi/q35/DSDT.memhp
/openbmc/qemu/tests/data/acpi/q35/DSDT.mmio64
/openbmc/qemu/tests/data/acpi/q35/DSDT.numamem
/openbmc/qemu/tests/data/acpi/rebuild-expected-aml.sh
/openbmc/qemu/tests/docker/dockerfiles/fedora-cris-cross.docker
/openbmc/qemu/tests/docker/dockerfiles/fedora-i386-cross.docker
/openbmc/qemu/tests/docker/dockerfiles/fedora.docker
/openbmc/qemu/tests/docker/dockerfiles/ubuntu.docker
/openbmc/qemu/tests/qapi-schema/double-type.err
/openbmc/qemu/tests/qapi-schema/features-bad-type.err
/openbmc/qemu/tests/qapi-schema/features-bad-type.exit
/openbmc/qemu/tests/qapi-schema/features-bad-type.json
/openbmc/qemu/tests/qapi-schema/features-bad-type.out
/openbmc/qemu/tests/qapi-schema/features-duplicate-name.err
/openbmc/qemu/tests/qapi-schema/features-duplicate-name.exit
/openbmc/qemu/tests/qapi-schema/features-duplicate-name.json
/openbmc/qemu/tests/qapi-schema/features-duplicate-name.out
/openbmc/qemu/tests/qapi-schema/features-missing-name.err
/openbmc/qemu/tests/qapi-schema/features-missing-name.exit
/openbmc/qemu/tests/qapi-schema/features-missing-name.json
/openbmc/qemu/tests/qapi-schema/features-missing-name.out
/openbmc/qemu/tests/qapi-schema/features-name-bad-type.err
/openbmc/qemu/tests/qapi-schema/features-name-bad-type.exit
/openbmc/qemu/tests/qapi-schema/features-name-bad-type.json
/openbmc/qemu/tests/qapi-schema/features-name-bad-type.out
/openbmc/qemu/tests/qapi-schema/features-no-list.err
/openbmc/qemu/tests/qapi-schema/features-no-list.exit
/openbmc/qemu/tests/qapi-schema/features-no-list.json
/openbmc/qemu/tests/qapi-schema/features-no-list.out
/openbmc/qemu/tests/qapi-schema/features-unknown-key.err
/openbmc/qemu/tests/qapi-schema/features-unknown-key.exit
/openbmc/qemu/tests/qapi-schema/features-unknown-key.json
/openbmc/qemu/tests/qapi-schema/features-unknown-key.out
/openbmc/qemu/tests/qapi-schema/qapi-schema-test.json
/openbmc/qemu/tests/qapi-schema/qapi-schema-test.out
/openbmc/qemu/tests/qapi-schema/test-qapi.py
/openbmc/qemu/tests/qapi-schema/unknown-expr-key.err
/openbmc/qemu/tests/qemu-iotests/082
/openbmc/qemu/tests/qemu-iotests/082.out
/openbmc/qemu/tests/qemu-iotests/085.out
/openbmc/qemu/tests/qemu-iotests/147
/openbmc/qemu/tests/qemu-iotests/175
/openbmc/qemu/tests/qemu-iotests/175.out
/openbmc/qemu/tests/qemu-iotests/219
/openbmc/qemu/tests/qemu-iotests/233
/openbmc/qemu/tests/qemu-iotests/251
/openbmc/qemu/tests/qemu-iotests/251.out
/openbmc/qemu/tests/qemu-iotests/254
/openbmc/qemu/tests/qemu-iotests/256
/openbmc/qemu/tests/qemu-iotests/256.out
/openbmc/qemu/tests/qemu-iotests/common.nbd
/openbmc/qemu/tests/qemu-iotests/common.rc
/openbmc/qemu/tests/qemu-iotests/group
/openbmc/qemu/tests/qemu-iotests/iotests.py
/openbmc/qemu/tests/tcg/aarch64/Makefile.target
/openbmc/qemu/tests/tcg/aarch64/pauth-2.c
/openbmc/qemu/tests/tcg/i386/Makefile.softmmu-target
/openbmc/qemu/tests/tcg/multiarch/system/memory.c
/openbmc/qemu/tests/tcg/x86_64/system/boot.S
/openbmc/qemu/tests/tcg/x86_64/system/kernel.ld
/openbmc/qemu/tests/test-qmp-cmds.c
/openbmc/qemu/tests/vm/Makefile.include
/openbmc/qemu/tests/vm/basevm.py
/openbmc/qemu/tests/vm/centos
/openbmc/qemu/ui/cocoa.m
a050901d12-Jun-2019 Peter Maydell <peter.maydell@linaro.org>

Merge remote-tracking branch 'remotes/dgibson/tags/ppc-for-4.1-20190612' into staging

ppc patch queue 2019-06-12

Next pull request against qemu-4.1. The big thing here is adding
support for hot pl

Merge remote-tracking branch 'remotes/dgibson/tags/ppc-for-4.1-20190612' into staging

ppc patch queue 2019-06-12

Next pull request against qemu-4.1. The big thing here is adding
support for hot plug of P2P bridges, and PCI devices under P2P bridges
on the "pseries" machine (which doesn't use SHPC). Other than that
there's just a handful of fixes and small enhancements.

# gpg: Signature made Wed 12 Jun 2019 06:47:56 BST
# gpg: using RSA key 75F46586AE61A66CC44E87DC6C38CACA20D9B392
# gpg: Good signature from "David Gibson <david@gibson.dropbear.id.au>" [full]
# gpg: aka "David Gibson (Red Hat) <dgibson@redhat.com>" [full]
# gpg: aka "David Gibson (ozlabs.org) <dgibson@ozlabs.org>" [full]
# gpg: aka "David Gibson (kernel.org) <dwg@kernel.org>" [unknown]
# Primary key fingerprint: 75F4 6586 AE61 A66C C44E 87DC 6C38 CACA 20D9 B392

* remotes/dgibson/tags/ppc-for-4.1-20190612:
ppc/xive: Make XIVE generate the proper interrupt types
ppc/pnv: activate the "dumpdtb" option on the powernv machine
target/ppc: Use tcg_gen_gvec_bitsel
spapr: Allow hot plug/unplug of PCI bridges and devices under PCI bridges
spapr: Direct all PCI hotplug to host bridge, rather than P2P bridge
spapr: Don't use bus number for building DRC ids
spapr: Clean up DRC index construction
spapr: Clean up spapr_drc_populate_dt()
spapr: Clean up dt creation for PCI buses
spapr: Clean up device tree construction for PCI devices
spapr: Clean up device node name generation for PCI devices
target/ppc: Fix lxvw4x, lxvh8x and lxvb16x
spapr_pci: Improve error message

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>

show more ...


/openbmc/qemu/.travis.yml
/openbmc/qemu/MAINTAINERS
/openbmc/qemu/contrib/elf2dmp/qemu_elf.h
/openbmc/qemu/contrib/vhost-user-gpu/virgl.h
/openbmc/qemu/contrib/vhost-user-gpu/vugbm.h
/openbmc/qemu/contrib/vhost-user-gpu/vugpu.h
/openbmc/qemu/crypto/ivgen-essiv.h
/openbmc/qemu/crypto/ivgen-plain.h
/openbmc/qemu/crypto/ivgen-plain64.h
/openbmc/qemu/hw/9pfs/xen-9pfs.h
/openbmc/qemu/hw/display/virtio-vga.h
/openbmc/qemu/hw/hppa/hppa_hardware.h
/openbmc/qemu/hw/input/adb-internal.h
xive.c
/openbmc/qemu/hw/net/e1000e_core.h
/openbmc/qemu/hw/net/e1000x_common.h
/openbmc/qemu/hw/net/vmxnet3_defs.h
/openbmc/qemu/hw/ppc/pnv.c
/openbmc/qemu/hw/ppc/spapr.c
/openbmc/qemu/hw/ppc/spapr_drc.c
/openbmc/qemu/hw/ppc/spapr_pci.c
/openbmc/qemu/hw/usb/hcd-xhci.h
/openbmc/qemu/hw/usb/quirks.h
/openbmc/qemu/include/disas/dis-asm.h
/openbmc/qemu/include/fpu/softfloat-macros.h
/openbmc/qemu/include/hw/arm/allwinner-a10.h
/openbmc/qemu/include/hw/arm/omap.h
/openbmc/qemu/include/hw/arm/raspi_platform.h
/openbmc/qemu/include/hw/arm/xlnx-zynqmp.h
/openbmc/qemu/include/hw/char/cadence_uart.h
/openbmc/qemu/include/hw/display/xlnx_dp.h
/openbmc/qemu/include/hw/dma/xlnx-zynq-devcfg.h
/openbmc/qemu/include/hw/kvm/clock.h
/openbmc/qemu/include/hw/m68k/mcf_fec.h
/openbmc/qemu/include/hw/mips/bios.h
/openbmc/qemu/include/hw/net/cadence_gem.h
/openbmc/qemu/include/hw/pci-bridge/simba.h
/openbmc/qemu/include/hw/pci-host/spapr.h
/openbmc/qemu/include/hw/pci/pci_regs.h
/openbmc/qemu/include/hw/ppc/spapr_drc.h
/openbmc/qemu/include/hw/ppc/xive.h
/openbmc/qemu/include/hw/qdev-dma.h
/openbmc/qemu/include/hw/semihosting/console.h
/openbmc/qemu/include/hw/sparc/sparc64.h
/openbmc/qemu/include/hw/timer/xlnx-zynqmp-rtc.h
/openbmc/qemu/include/hw/xen/io/ring.h
/openbmc/qemu/include/ui/spice-display.h
/openbmc/qemu/linux-user/aarch64/syscall_nr.h
/openbmc/qemu/linux-user/aarch64/termbits.h
/openbmc/qemu/linux-user/alpha/syscall_nr.h
/openbmc/qemu/linux-user/alpha/termbits.h
/openbmc/qemu/linux-user/arm/syscall_nr.h
/openbmc/qemu/linux-user/arm/termbits.h
/openbmc/qemu/linux-user/cris/syscall_nr.h
/openbmc/qemu/linux-user/cris/termbits.h
/openbmc/qemu/linux-user/errno_defs.h
/openbmc/qemu/linux-user/flat.h
/openbmc/qemu/linux-user/hppa/sockbits.h
/openbmc/qemu/linux-user/hppa/syscall_nr.h
/openbmc/qemu/linux-user/hppa/termbits.h
/openbmc/qemu/linux-user/i386/syscall_nr.h
/openbmc/qemu/linux-user/i386/termbits.h
/openbmc/qemu/linux-user/m68k/syscall_nr.h
/openbmc/qemu/linux-user/m68k/termbits.h
/openbmc/qemu/linux-user/microblaze/syscall_nr.h
/openbmc/qemu/linux-user/microblaze/termbits.h
/openbmc/qemu/linux-user/mips/syscall_nr.h
/openbmc/qemu/linux-user/mips/termbits.h
/openbmc/qemu/linux-user/mips64/syscall_nr.h
/openbmc/qemu/linux-user/nios2/syscall_nr.h
/openbmc/qemu/linux-user/nios2/termbits.h
/openbmc/qemu/linux-user/openrisc/syscall_nr.h
/openbmc/qemu/linux-user/openrisc/termbits.h
/openbmc/qemu/linux-user/ppc/syscall_nr.h
/openbmc/qemu/linux-user/ppc/termbits.h
/openbmc/qemu/linux-user/riscv/syscall_nr.h
/openbmc/qemu/linux-user/riscv/target_syscall.h
/openbmc/qemu/linux-user/riscv/termbits.h
/openbmc/qemu/linux-user/s390x/syscall_nr.h
/openbmc/qemu/linux-user/s390x/termbits.h
/openbmc/qemu/linux-user/sh4/syscall_nr.h
/openbmc/qemu/linux-user/sh4/termbits.h
/openbmc/qemu/linux-user/socket.h
/openbmc/qemu/linux-user/sparc/syscall_nr.h
/openbmc/qemu/linux-user/sparc/termbits.h
/openbmc/qemu/linux-user/sparc64/syscall_nr.h
/openbmc/qemu/linux-user/sparc64/termbits.h
/openbmc/qemu/linux-user/target_flat.h
/openbmc/qemu/linux-user/x86_64/syscall_nr.h
/openbmc/qemu/linux-user/x86_64/termbits.h
/openbmc/qemu/linux-user/xtensa/target_flat.h
/openbmc/qemu/scripts/clean-header-guards.pl
/openbmc/qemu/target/cris/crisv10-decode.h
/openbmc/qemu/target/cris/mmu.h
/openbmc/qemu/target/cris/opcode-cris.h
/openbmc/qemu/target/i386/cpu.c
/openbmc/qemu/target/i386/machine.c
/openbmc/qemu/target/i386/whp-dispatch.h
/openbmc/qemu/target/microblaze/microblaze-decode.h
/openbmc/qemu/target/microblaze/mmu.h
/openbmc/qemu/target/moxie/mmu.h
/openbmc/qemu/target/ppc/translate/vsx-impl.inc.c
/openbmc/qemu/target/riscv/cpu_bits.h
/openbmc/qemu/target/riscv/cpu_user.h
/openbmc/qemu/target/riscv/instmap.h
/openbmc/qemu/target/tilegx/spr_def_64.h
/openbmc/qemu/target/tricore/tricore-opcodes.h
/openbmc/qemu/tcg/tcg-gvec-desc.h
/openbmc/qemu/tcg/tcg-op-gvec.h
/openbmc/qemu/tests/acceptance/boot_linux_console.py
/openbmc/qemu/tests/crypto-tls-psk-helpers.h
/openbmc/qemu/tests/crypto-tls-x509-helpers.h
/openbmc/qemu/tests/io-channel-helpers.h
/openbmc/qemu/tests/libqos/virtio-9p.h
/openbmc/qemu/tests/libqos/virtio-balloon.h
/openbmc/qemu/tests/libqos/virtio-blk.h
/openbmc/qemu/tests/libqos/virtio-net.h
/openbmc/qemu/tests/libqos/virtio-rng.h
/openbmc/qemu/tests/libqos/virtio-scsi.h
/openbmc/qemu/tests/libqos/virtio-serial.h
/openbmc/qemu/tests/migration/migration-test.h
/openbmc/qemu/tests/socket-helpers.h
/openbmc/qemu/tests/uefi-test-tools/UefiTestToolsPkg/Include/Guid/BiosTablesTest.h
a8d2532623-May-2019 Markus Armbruster <armbru@redhat.com>

Include qemu-common.h exactly where needed

No header includes qemu-common.h after this commit, as prescribed by
qemu-common.h's file comment.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Me

Include qemu-common.h exactly where needed

No header includes qemu-common.h after this commit, as prescribed by
qemu-common.h's file comment.

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20190523143508.25387-5-armbru@redhat.com>
[Rebased with conflicts resolved automatically, except for
include/hw/arm/xlnx-zynqmp.h hw/arm/nrf51_soc.c hw/arm/msf2-soc.c
block/qcow2-refcount.c block/qcow2-cluster.c block/qcow2-cache.c
target/arm/cpu.h target/lm32/cpu.h target/m68k/cpu.h target/mips/cpu.h
target/moxie/cpu.h target/nios2/cpu.h target/openrisc/cpu.h
target/riscv/cpu.h target/tilegx/cpu.h target/tricore/cpu.h
target/unicore32/cpu.h target/xtensa/cpu.h; bsd-user/main.c and
net/tap-bsd.c fixed up]

show more ...


/openbmc/qemu/accel/kvm/kvm-all.c
/openbmc/qemu/accel/stubs/hax-stub.c
/openbmc/qemu/accel/stubs/hvf-stub.c
/openbmc/qemu/accel/stubs/kvm-stub.c
/openbmc/qemu/accel/stubs/whpx-stub.c
/openbmc/qemu/accel/tcg/cpu-exec.c
/openbmc/qemu/accel/tcg/translate-all.c
/openbmc/qemu/accel/tcg/translator.c
/openbmc/qemu/accel/tcg/user-exec-stub.c
/openbmc/qemu/arch_init.c
/openbmc/qemu/audio/audio_legacy.c
/openbmc/qemu/audio/audio_pt_int.c
/openbmc/qemu/audio/mixeng.c
/openbmc/qemu/balloon.c
/openbmc/qemu/block/bochs.c
/openbmc/qemu/block/cloop.c
/openbmc/qemu/block/dirty-bitmap.c
/openbmc/qemu/block/dmg-bz2.c
/openbmc/qemu/block/dmg.c
/openbmc/qemu/block/dmg.h
/openbmc/qemu/block/file-posix.c
/openbmc/qemu/block/iscsi.c
/openbmc/qemu/block/linux-aio.c
/openbmc/qemu/block/nbd-client.h
/openbmc/qemu/block/qapi.c
/openbmc/qemu/block/qcow2-cache.c
/openbmc/qemu/block/qcow2-cluster.c
/openbmc/qemu/block/qcow2-refcount.c
/openbmc/qemu/block/sheepdog.c
/openbmc/qemu/block/vhdx-endian.c
/openbmc/qemu/blockjob.c
/openbmc/qemu/bsd-user/main.c
/openbmc/qemu/bt-vhci.c
/openbmc/qemu/chardev/char-fd.c
/openbmc/qemu/chardev/char-pipe.c
/openbmc/qemu/chardev/char-pty.c
/openbmc/qemu/contrib/ivshmem-client/ivshmem-client.c
/openbmc/qemu/contrib/ivshmem-client/main.c
/openbmc/qemu/contrib/ivshmem-server/ivshmem-server.c
/openbmc/qemu/cpus.c
/openbmc/qemu/crypto/aes.c
/openbmc/qemu/disas.c
/openbmc/qemu/disas/cris.c
/openbmc/qemu/disas/i386.c
/openbmc/qemu/disas/s390.c
/openbmc/qemu/dump.c
/openbmc/qemu/exec.c
/openbmc/qemu/gdbstub.c
/openbmc/qemu/hmp.h
/openbmc/qemu/hw/9pfs/9p-proxy.c
/openbmc/qemu/hw/9pfs/coth.c
/openbmc/qemu/hw/acpi/bios-linker-loader.c
/openbmc/qemu/hw/acpi/tco.c
/openbmc/qemu/hw/alpha/pci.c
/openbmc/qemu/hw/arm/aspeed.c
/openbmc/qemu/hw/arm/boot.c
/openbmc/qemu/hw/arm/cubieboard.c
/openbmc/qemu/hw/arm/exynos4210.c
/openbmc/qemu/hw/arm/exynos4_boards.c
/openbmc/qemu/hw/arm/fsl-imx25.c
/openbmc/qemu/hw/arm/fsl-imx31.c
/openbmc/qemu/hw/arm/highbank.c
/openbmc/qemu/hw/arm/imx25_pdk.c
/openbmc/qemu/hw/arm/integratorcp.c
/openbmc/qemu/hw/arm/kzm.c
/openbmc/qemu/hw/arm/mcimx6ul-evk.c
/openbmc/qemu/hw/arm/mcimx7d-sabre.c
/openbmc/qemu/hw/arm/msf2-soc.c
/openbmc/qemu/hw/arm/musicpal.c
/openbmc/qemu/hw/arm/nrf51_soc.c
/openbmc/qemu/hw/arm/omap2.c
/openbmc/qemu/hw/arm/pxa2xx.c
/openbmc/qemu/hw/arm/raspi.c
/openbmc/qemu/hw/arm/realview.c
/openbmc/qemu/hw/arm/sabrelite.c
/openbmc/qemu/hw/arm/strongarm.c
/openbmc/qemu/hw/arm/sysbus-fdt.c
/openbmc/qemu/hw/arm/versatilepb.c
/openbmc/qemu/hw/arm/virt-acpi-build.c
/openbmc/qemu/hw/arm/virt.c
/openbmc/qemu/hw/arm/xilinx_zynq.c
/openbmc/qemu/hw/arm/xlnx-zcu102.c
/openbmc/qemu/hw/audio/soundhw.c
/openbmc/qemu/hw/block/cdrom.c
/openbmc/qemu/hw/bt/core.c
/openbmc/qemu/hw/bt/hci.c
/openbmc/qemu/hw/bt/hid.c
/openbmc/qemu/hw/bt/l2cap.c
/openbmc/qemu/hw/bt/sdp.c
/openbmc/qemu/hw/core/irq.c
/openbmc/qemu/hw/core/loader.c
/openbmc/qemu/hw/core/null-machine.c
/openbmc/qemu/hw/cris/axis_dev88.c
/openbmc/qemu/hw/cris/boot.c
/openbmc/qemu/hw/display/blizzard.c
/openbmc/qemu/hw/display/cg3.c
/openbmc/qemu/hw/display/edid-generate.c
/openbmc/qemu/hw/display/edid-region.c
/openbmc/qemu/hw/display/qxl.h
/openbmc/qemu/hw/display/tcx.c
/openbmc/qemu/hw/display/virtio-gpu-3d.c
/openbmc/qemu/hw/dma/etraxfs_dma.c
/openbmc/qemu/hw/dma/omap_dma.c
/openbmc/qemu/hw/dma/pl330.c
/openbmc/qemu/hw/dma/soc_dma.c
/openbmc/qemu/hw/dma/xlnx_dpdma.c
/openbmc/qemu/hw/hppa/pci.c
/openbmc/qemu/hw/i386/acpi-build.c
/openbmc/qemu/hw/i386/pc_sysfw.c
apic.c
sh_intc.c
/openbmc/qemu/hw/isa/lpc_ich9.c
/openbmc/qemu/hw/lm32/lm32_boards.c
/openbmc/qemu/hw/lm32/lm32_hwsetup.h
/openbmc/qemu/hw/m68k/an5206.c
/openbmc/qemu/hw/m68k/mcf5206.c
/openbmc/qemu/hw/microblaze/petalogix_ml605_mmu.c
/openbmc/qemu/hw/microblaze/petalogix_s3adsp1800_mmu.c
/openbmc/qemu/hw/microblaze/xlnx-zynqmp-pmu.c
/openbmc/qemu/hw/mips/boston.c
/openbmc/qemu/hw/mips/mips_fulong2e.c
/openbmc/qemu/hw/mips/mips_jazz.c
/openbmc/qemu/hw/misc/macio/cuda.c
/openbmc/qemu/hw/misc/macio/pmu.c
/openbmc/qemu/hw/moxie/moxiesim.c
/openbmc/qemu/hw/net/rocker/qmp-norocker.c
/openbmc/qemu/hw/nios2/10m50_devboard.c
/openbmc/qemu/hw/nios2/cpu_pic.c
/openbmc/qemu/hw/nvram/fw_cfg.c
/openbmc/qemu/hw/openrisc/openrisc_sim.c
/openbmc/qemu/hw/pci-bridge/dec.h
/openbmc/qemu/hw/pci-host/prep.c
/openbmc/qemu/hw/pci/pci.c
/openbmc/qemu/hw/pci/pcie.c
/openbmc/qemu/hw/pci/shpc.c
/openbmc/qemu/hw/ppc/e500.c
/openbmc/qemu/hw/ppc/e500plat.c
/openbmc/qemu/hw/ppc/mac_newworld.c
/openbmc/qemu/hw/ppc/mac_oldworld.c
/openbmc/qemu/hw/ppc/mpc8544ds.c
/openbmc/qemu/hw/ppc/pnv.c
/openbmc/qemu/hw/ppc/ppc.c
/openbmc/qemu/hw/ppc/ppc405_uc.c
/openbmc/qemu/hw/ppc/ppc_booke.c
/openbmc/qemu/hw/ppc/spapr.c
/openbmc/qemu/hw/ppc/spapr_pci_vfio.c
/openbmc/qemu/hw/ppc/spapr_rtc.c
/openbmc/qemu/hw/ppc/virtex_ml507.c
/openbmc/qemu/hw/s390x/ipl.c
/openbmc/qemu/hw/s390x/s390-pci-inst.c
/openbmc/qemu/hw/s390x/tod-qemu.c
/openbmc/qemu/hw/scsi/megasas.c
/openbmc/qemu/hw/sh4/r2d.c
/openbmc/qemu/hw/sh4/shix.c
/openbmc/qemu/hw/sparc64/niagara.c
/openbmc/qemu/hw/timer/exynos4210_rtc.c
/openbmc/qemu/hw/timer/m41t80.c
/openbmc/qemu/hw/timer/m48t59.c
/openbmc/qemu/hw/timer/mc146818rtc.c
/openbmc/qemu/hw/timer/pl031.c
/openbmc/qemu/hw/timer/twl92230.c
/openbmc/qemu/hw/timer/xlnx-zynqmp-rtc.c
/openbmc/qemu/hw/tpm/tpm_passthrough.c
/openbmc/qemu/hw/tricore/tricore_testboard.c
/openbmc/qemu/hw/usb/ccid-card-passthru.c
/openbmc/qemu/hw/usb/combined-packet.c
/openbmc/qemu/hw/usb/core.c
/openbmc/qemu/hw/usb/dev-mtp.c
/openbmc/qemu/hw/usb/hcd-musb.c
/openbmc/qemu/hw/usb/host-stub.c
/openbmc/qemu/hw/usb/libhw.c
/openbmc/qemu/hw/usb/redirect.c
/openbmc/qemu/hw/vfio/pci.h
/openbmc/qemu/hw/xen/xen-host-pci-device.c
/openbmc/qemu/hw/xen/xen_pt.h
/openbmc/qemu/hw/xtensa/sim.c
/openbmc/qemu/hw/xtensa/xtensa_memory.c
/openbmc/qemu/hw/xtensa/xtensa_memory.h
/openbmc/qemu/include/authz/base.h
/openbmc/qemu/include/block/aio.h
/openbmc/qemu/include/block/dirty-bitmap.h
/openbmc/qemu/include/block/write-threshold.h
/openbmc/qemu/include/chardev/char-io.h
/openbmc/qemu/include/crypto/random.h
/openbmc/qemu/include/crypto/xts.h
/openbmc/qemu/include/disas/disas.h
/openbmc/qemu/include/exec/cpu-all.h
/openbmc/qemu/include/exec/exec-all.h
/openbmc/qemu/include/hw/acpi/tco.h
/openbmc/qemu/include/hw/arm/allwinner-a10.h
/openbmc/qemu/include/hw/arm/bcm2835_peripherals.h
/openbmc/qemu/include/hw/arm/exynos4210.h
/openbmc/qemu/include/hw/arm/virt.h
/openbmc/qemu/include/hw/arm/xlnx-zynqmp.h
/openbmc/qemu/include/hw/block/fdc.h
/openbmc/qemu/include/hw/dma/bcm2835_dma.h
/openbmc/qemu/include/hw/fw-path-provider.h
/openbmc/qemu/include/hw/i2c/ppc4xx_i2c.h
/openbmc/qemu/include/hw/i386/apic.h
/openbmc/qemu/include/hw/ipmi/ipmi.h
/openbmc/qemu/include/hw/isa/apm.h
/openbmc/qemu/include/hw/isa/superio.h
/openbmc/qemu/include/hw/lm32/lm32_pic.h
/openbmc/qemu/include/hw/nmi.h
/openbmc/qemu/include/hw/pci-host/pam.h
/openbmc/qemu/include/hw/pci/msi.h
/openbmc/qemu/include/hw/pci/msix.h
/openbmc/qemu/include/hw/pci/shpc.h
/openbmc/qemu/include/hw/pci/slotid_cap.h
/openbmc/qemu/include/hw/ppc/openpic.h
/openbmc/qemu/include/hw/ptimer.h
/openbmc/qemu/include/hw/sd/sdhci.h
/openbmc/qemu/include/hw/sh4/sh_intc.h
/openbmc/qemu/include/hw/sparc/sun4m_iommu.h
/openbmc/qemu/include/hw/sparc/sun4u_iommu.h
/openbmc/qemu/include/hw/stream.h
/openbmc/qemu/include/hw/timer/m48t59.h
/openbmc/qemu/include/hw/vfio/vfio-common.h
/openbmc/qemu/include/hw/virtio/vhost-scsi-common.h
/openbmc/qemu/include/hw/virtio/vhost-scsi.h
/openbmc/qemu/include/hw/virtio/vhost-user-blk.h
/openbmc/qemu/include/hw/virtio/vhost-user-scsi.h
/openbmc/qemu/include/hw/xen/xen.h
/openbmc/qemu/include/io/channel.h
/openbmc/qemu/include/io/dns-resolver.h
/openbmc/qemu/include/io/task.h
/openbmc/qemu/include/migration/colo.h
/openbmc/qemu/include/migration/failover.h
/openbmc/qemu/include/monitor/monitor.h
/openbmc/qemu/include/net/announce.h
/openbmc/qemu/include/net/filter.h
/openbmc/qemu/include/net/queue.h
/openbmc/qemu/include/net/tap.h
/openbmc/qemu/include/qemu-common.h
/openbmc/qemu/include/qemu-io.h
/openbmc/qemu/include/qemu/base64.h
/openbmc/qemu/include/qemu/buffer.h
/openbmc/qemu/include/qemu/crc32c.h
/openbmc/qemu/include/qemu/event_notifier.h
/openbmc/qemu/include/qemu/filemonitor.h
/openbmc/qemu/include/qemu/mmap-alloc.h
/openbmc/qemu/include/qemu/qdist.h
/openbmc/qemu/include/qemu/throttle.h
/openbmc/qemu/include/qemu/timer.h
/openbmc/qemu/include/qemu/uuid.h
/openbmc/qemu/include/sysemu/cryptodev-vhost.h
/openbmc/qemu/include/sysemu/cryptodev.h
/openbmc/qemu/include/sysemu/hax.h
/openbmc/qemu/include/sysemu/hvf.h
/openbmc/qemu/include/sysemu/qtest.h
/openbmc/qemu/include/sysemu/rng.h
/openbmc/qemu/include/sysemu/tpm_backend.h
/openbmc/qemu/include/sysemu/whpx.h
/openbmc/qemu/io/channel-socket.c
/openbmc/qemu/ioport.c
/openbmc/qemu/job-qmp.c
/openbmc/qemu/job.c
/openbmc/qemu/linux-user/aarch64/cpu_loop.c
/openbmc/qemu/linux-user/alpha/cpu_loop.c
/openbmc/qemu/linux-user/arm/cpu_loop.c
/openbmc/qemu/linux-user/cris/cpu_loop.c
/openbmc/qemu/linux-user/i386/cpu_loop.c
/openbmc/qemu/linux-user/m68k/cpu_loop.c
/openbmc/qemu/linux-user/main.c
/openbmc/qemu/linux-user/microblaze/cpu_loop.c
/openbmc/qemu/linux-user/mips/cpu_loop.c
/openbmc/qemu/linux-user/mmap.c
/openbmc/qemu/linux-user/openrisc/cpu_loop.c
/openbmc/qemu/linux-user/ppc/cpu_loop.c
/openbmc/qemu/linux-user/riscv/cpu_loop.c
/openbmc/qemu/linux-user/s390x/cpu_loop.c
/openbmc/qemu/linux-user/sh4/cpu_loop.c
/openbmc/qemu/linux-user/signal.c
/openbmc/qemu/linux-user/sparc/cpu_loop.c
/openbmc/qemu/linux-user/syscall.c
/openbmc/qemu/linux-user/tilegx/cpu_loop.c
/openbmc/qemu/memory_mapping.c
/openbmc/qemu/migration/migration.h
/openbmc/qemu/migration/page_cache.c
/openbmc/qemu/migration/qemu-file.c
/openbmc/qemu/migration/ram.h
/openbmc/qemu/migration/socket.c
/openbmc/qemu/migration/vmstate-types.c
/openbmc/qemu/migration/vmstate.c
/openbmc/qemu/net/checksum.c
/openbmc/qemu/net/colo-compare.c
/openbmc/qemu/net/dump.c
/openbmc/qemu/net/eth.c
/openbmc/qemu/net/filter-buffer.c
/openbmc/qemu/net/filter-mirror.c
/openbmc/qemu/net/filter-rewriter.c
/openbmc/qemu/net/hub.h
/openbmc/qemu/net/l2tpv3.c
/openbmc/qemu/net/tap-bsd.c
/openbmc/qemu/net/tap-linux.c
/openbmc/qemu/net/tap_int.h
/openbmc/qemu/os-posix.c
/openbmc/qemu/os-win32.c
/openbmc/qemu/qapi/qapi-dealloc-visitor.c
/openbmc/qemu/qapi/qapi-visit-core.c
/openbmc/qemu/qapi/qmp-event.c
/openbmc/qemu/qapi/qobject-input-visitor.c
/openbmc/qemu/qapi/qobject-output-visitor.c
/openbmc/qemu/qapi/string-input-visitor.c
/openbmc/qemu/qemu-edid.c
/openbmc/qemu/qemu-img.c
/openbmc/qemu/qemu-io.c
/openbmc/qemu/qemu-keymap.c
/openbmc/qemu/qemu-nbd.c
/openbmc/qemu/qga/commands-posix.c
/openbmc/qemu/qga/guest-agent-core.h
/openbmc/qemu/qga/main.c
/openbmc/qemu/qmp.c
/openbmc/qemu/qom/qom-qobject.c
/openbmc/qemu/replay/replay-events.c
/openbmc/qemu/replay/replay-input.c
/openbmc/qemu/replay/replay-internal.c
/openbmc/qemu/replay/replay-snapshot.c
/openbmc/qemu/replay/replay-time.c
/openbmc/qemu/scripts/modules/module_block.py
/openbmc/qemu/scripts/qapi/events.py
/openbmc/qemu/scripts/qapi/visit.py
/openbmc/qemu/scripts/tracetool/format/h.py
/openbmc/qemu/scripts/tracetool/format/tcg_helper_c.py
/openbmc/qemu/scripts/tracetool/format/ust_events_h.py
/openbmc/qemu/scsi/qemu-pr-helper.c
/openbmc/qemu/stubs/bdrv-next-monitor-owned.c
/openbmc/qemu/stubs/blk-commit-all.c
/openbmc/qemu/stubs/change-state-handler.c
/openbmc/qemu/stubs/clock-warp.c
/openbmc/qemu/stubs/cpu-get-clock.c
/openbmc/qemu/stubs/cpu-get-icount.c
/openbmc/qemu/stubs/dump.c
/openbmc/qemu/stubs/error-printf.c
/openbmc/qemu/stubs/fd-register.c
/openbmc/qemu/stubs/fdset.c
/openbmc/qemu/stubs/iothread-lock.c
/openbmc/qemu/stubs/is-daemonized.c
/openbmc/qemu/stubs/machine-init-done.c
/openbmc/qemu/stubs/migr-blocker.c
/openbmc/qemu/stubs/monitor.c
/openbmc/qemu/stubs/notify-event.c
/openbmc/qemu/stubs/set-fd-handler.c
/openbmc/qemu/stubs/uuid.c
/openbmc/qemu/stubs/vm-stop.c
/openbmc/qemu/stubs/vmstate.c
/openbmc/qemu/stubs/xen-common.c
/openbmc/qemu/stubs/xen-hvm.c
/openbmc/qemu/target/alpha/cpu.c
/openbmc/qemu/target/alpha/cpu.h
/openbmc/qemu/target/alpha/gdbstub.c
/openbmc/qemu/target/alpha/machine.c
/openbmc/qemu/target/arm/arm-semi.c
/openbmc/qemu/target/arm/cpu.c
/openbmc/qemu/target/arm/cpu.h
/openbmc/qemu/target/arm/gdbstub.c
/openbmc/qemu/target/arm/gdbstub64.c
/openbmc/qemu/target/arm/kvm-stub.c
/openbmc/qemu/target/arm/machine.c
/openbmc/qemu/target/cris/cpu.c
/openbmc/qemu/target/cris/cpu.h
/openbmc/qemu/target/cris/gdbstub.c
/openbmc/qemu/target/cris/machine.c
/openbmc/qemu/target/hppa/cpu.h
/openbmc/qemu/target/hppa/gdbstub.c
/openbmc/qemu/target/hppa/machine.c
/openbmc/qemu/target/i386/gdbstub.c
/openbmc/qemu/target/i386/kvm-stub.c
/openbmc/qemu/target/i386/kvm.c
/openbmc/qemu/target/i386/sev-stub.c
/openbmc/qemu/target/i386/xsave_helper.c
/openbmc/qemu/target/lm32/cpu.c
/openbmc/qemu/target/lm32/cpu.h
/openbmc/qemu/target/lm32/gdbstub.c
/openbmc/qemu/target/lm32/machine.c
/openbmc/qemu/target/m68k/cpu.c
/openbmc/qemu/target/m68k/cpu.h
/openbmc/qemu/target/m68k/gdbstub.c
/openbmc/qemu/target/m68k/m68k-semi.c
/openbmc/qemu/target/microblaze/cpu.h
/openbmc/qemu/target/microblaze/gdbstub.c
/openbmc/qemu/target/mips/cpu.h
/openbmc/qemu/target/mips/gdbstub.c
/openbmc/qemu/target/mips/machine.c
/openbmc/qemu/target/moxie/cpu.c
/openbmc/qemu/target/moxie/cpu.h
/openbmc/qemu/target/moxie/machine.c
/openbmc/qemu/target/nios2/cpu.h
/openbmc/qemu/target/nios2/mmu.c
/openbmc/qemu/target/openrisc/cpu.c
/openbmc/qemu/target/openrisc/cpu.h
/openbmc/qemu/target/openrisc/disas.c
/openbmc/qemu/target/openrisc/exception.h
/openbmc/qemu/target/openrisc/gdbstub.c
/openbmc/qemu/target/openrisc/interrupt.c
/openbmc/qemu/target/openrisc/machine.c
/openbmc/qemu/target/openrisc/mmu.c
/openbmc/qemu/target/openrisc/translate.c
/openbmc/qemu/target/ppc/cpu.h
/openbmc/qemu/target/ppc/gdbstub.c
/openbmc/qemu/target/ppc/kvm-stub.c
/openbmc/qemu/target/ppc/machine.c
/openbmc/qemu/target/riscv/cpu.h
/openbmc/qemu/target/riscv/gdbstub.c
/openbmc/qemu/target/riscv/pmp.c
/openbmc/qemu/target/s390x/cpu.h
/openbmc/qemu/target/s390x/kvm-stub.c
/openbmc/qemu/target/s390x/vec_helper.c
/openbmc/qemu/target/sh4/cpu.c
/openbmc/qemu/target/sh4/cpu.h
/openbmc/qemu/target/sh4/gdbstub.c
/openbmc/qemu/target/sparc/cpu.h
/openbmc/qemu/target/sparc/gdbstub.c
/openbmc/qemu/target/sparc/machine.c
/openbmc/qemu/target/tilegx/cpu.h
/openbmc/qemu/target/tilegx/helper.c
/openbmc/qemu/target/tilegx/simd_helper.c
/openbmc/qemu/target/tricore/cpu.c
/openbmc/qemu/target/tricore/cpu.h
/openbmc/qemu/target/unicore32/cpu.c
/openbmc/qemu/target/unicore32/cpu.h
/openbmc/qemu/target/xtensa/core-dc233c.c
/openbmc/qemu/target/xtensa/core-de212.c
/openbmc/qemu/target/xtensa/core-fsf.c
/openbmc/qemu/target/xtensa/core-sample_controller.c
/openbmc/qemu/target/xtensa/core-test_kc705_be.c
/openbmc/qemu/target/xtensa/cpu.h
/openbmc/qemu/target/xtensa/gdbstub.c
/openbmc/qemu/tcg/optimize.c
/openbmc/qemu/tcg/tcg-common.c
/openbmc/qemu/tcg/tcg-op-gvec.c
/openbmc/qemu/tcg/tcg-op-vec.c
/openbmc/qemu/tcg/tcg-op.c
/openbmc/qemu/tcg/tcg.h
/openbmc/qemu/tests/crypto-tls-psk-helpers.h
/openbmc/qemu/tests/crypto-tls-x509-helpers.h
/openbmc/qemu/tests/e1000e-test.c
/openbmc/qemu/tests/test-filter-mirror.c
/openbmc/qemu/tests/test-filter-redirector.c
/openbmc/qemu/tests/virtio-net-test.c
/openbmc/qemu/trace/control.h
/openbmc/qemu/ui/console-gl.c
/openbmc/qemu/ui/cursor.c
/openbmc/qemu/ui/egl-context.c
/openbmc/qemu/ui/gtk-egl.c
/openbmc/qemu/ui/gtk-gl-area.c
/openbmc/qemu/ui/gtk.c
/openbmc/qemu/ui/keymaps.c
/openbmc/qemu/ui/keymaps.h
/openbmc/qemu/ui/qemu-pixman.c
/openbmc/qemu/ui/sdl2-2d.c
/openbmc/qemu/ui/sdl2-gl.c
/openbmc/qemu/ui/sdl2-input.c
/openbmc/qemu/ui/shader.c
/openbmc/qemu/ui/spice-input.c
/openbmc/qemu/ui/vnc-enc-tight.c
/openbmc/qemu/ui/vnc.h
/openbmc/qemu/util/aio-posix.c
/openbmc/qemu/util/async.c
/openbmc/qemu/util/bufferiszero.c
/openbmc/qemu/util/compatfd.c
/openbmc/qemu/util/coroutine-ucontext.c
/openbmc/qemu/util/crc32c.c
/openbmc/qemu/util/cutils.c
/openbmc/qemu/util/envlist.c
/openbmc/qemu/util/error.c
/openbmc/qemu/util/fifo8.c
/openbmc/qemu/util/getauxval.c
/openbmc/qemu/util/guest-random.c
/openbmc/qemu/util/iohandler.c
/openbmc/qemu/util/log.c
/openbmc/qemu/util/module.c
/openbmc/qemu/util/notify.c
/openbmc/qemu/util/oslib-posix.c
/openbmc/qemu/util/oslib-win32.c
/openbmc/qemu/util/qemu-config.c
/openbmc/qemu/util/qemu-coroutine-lock.c
/openbmc/qemu/util/qemu-coroutine.c
/openbmc/qemu/util/qemu-option.c
/openbmc/qemu/util/qemu-sockets.c
/openbmc/qemu/util/rcu.c
/openbmc/qemu/util/thread-pool.c
/openbmc/qemu/util/uuid.c
/openbmc/qemu/vl.c
/openbmc/qemu/win_dump.c
0b8fa32f23-May-2019 Markus Armbruster <armbru@redhat.com>

Include qemu/module.h where needed, drop it from qemu-common.h

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20190523143508.25387-4-armbru@redhat.com>
[Rebased with conflicts res

Include qemu/module.h where needed, drop it from qemu-common.h

Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20190523143508.25387-4-armbru@redhat.com>
[Rebased with conflicts resolved automatically, except for
hw/usb/dev-hub.c hw/misc/exynos4210_rng.c hw/misc/bcm2835_rng.c
hw/misc/aspeed_scu.c hw/display/virtio-vga.c hw/arm/stm32f205_soc.c;
ui/cocoa.m fixed up]

show more ...


/openbmc/qemu/MAINTAINERS
/openbmc/qemu/accel/tcg/cpu-exec-common.c
/openbmc/qemu/accel/tcg/cpu-exec.c
/openbmc/qemu/accel/tcg/tcg-all.c
/openbmc/qemu/accel/tcg/translate-all.c
/openbmc/qemu/audio/alsaaudio.c
/openbmc/qemu/audio/audio.c
/openbmc/qemu/audio/coreaudio.c
/openbmc/qemu/audio/dsoundaudio.c
/openbmc/qemu/audio/noaudio.c
/openbmc/qemu/audio/ossaudio.c
/openbmc/qemu/audio/paaudio.c
/openbmc/qemu/audio/sdlaudio.c
/openbmc/qemu/audio/spiceaudio.c
/openbmc/qemu/audio/wavaudio.c
/openbmc/qemu/authz/base.c
/openbmc/qemu/authz/list.c
/openbmc/qemu/authz/listfile.c
/openbmc/qemu/authz/pamacct.c
/openbmc/qemu/authz/simple.c
/openbmc/qemu/backends/hostmem-file.c
/openbmc/qemu/backends/hostmem-memfd.c
/openbmc/qemu/backends/hostmem-ram.c
/openbmc/qemu/backends/rng-egd.c
/openbmc/qemu/backends/rng-random.c
/openbmc/qemu/backends/rng.c
/openbmc/qemu/backends/tpm.c
/openbmc/qemu/block/blklogwrites.c
/openbmc/qemu/block/blkreplay.c
/openbmc/qemu/block/blkverify.c
/openbmc/qemu/block/copy-on-read.c
/openbmc/qemu/block/crypto.c
/openbmc/qemu/block/curl.c
/openbmc/qemu/block/gluster.c
/openbmc/qemu/block/iscsi-opts.c
/openbmc/qemu/block/iscsi.c
/openbmc/qemu/block/nfs.c
/openbmc/qemu/block/null.c
/openbmc/qemu/block/nvme.c
/openbmc/qemu/block/qed.c
/openbmc/qemu/block/quorum.c
/openbmc/qemu/block/raw-format.c
/openbmc/qemu/block/rbd.c
/openbmc/qemu/block/replication.c
/openbmc/qemu/block/sheepdog.c
/openbmc/qemu/block/ssh.c
/openbmc/qemu/block/throttle.c
/openbmc/qemu/block/vhdx-log.c
/openbmc/qemu/block/vvfat.c
/openbmc/qemu/block/vxhs.c
/openbmc/qemu/block/win32-aio.c
/openbmc/qemu/bsd-user/main.c
/openbmc/qemu/chardev/baum.c
/openbmc/qemu/chardev/char-console.c
/openbmc/qemu/chardev/char-fd.c
/openbmc/qemu/chardev/char-file.c
/openbmc/qemu/chardev/char-mux.c
/openbmc/qemu/chardev/char-null.c
/openbmc/qemu/chardev/char-parallel.c
/openbmc/qemu/chardev/char-pipe.c
/openbmc/qemu/chardev/char-pty.c
/openbmc/qemu/chardev/char-ringbuf.c
/openbmc/qemu/chardev/char-serial.c
/openbmc/qemu/chardev/char-socket.c
/openbmc/qemu/chardev/char-stdio.c
/openbmc/qemu/chardev/char-udp.c
/openbmc/qemu/chardev/char-win-stdio.c
/openbmc/qemu/chardev/char-win.c
/openbmc/qemu/chardev/char.c
/openbmc/qemu/chardev/msmouse.c
/openbmc/qemu/chardev/spice.c
/openbmc/qemu/chardev/testdev.c
/openbmc/qemu/chardev/wctablet.c
/openbmc/qemu/cpus.c
/openbmc/qemu/crypto/secret.c
/openbmc/qemu/crypto/tlscreds.c
/openbmc/qemu/crypto/tlscredsanon.c
/openbmc/qemu/crypto/tlscredspsk.c
/openbmc/qemu/crypto/tlscredsx509.c
/openbmc/qemu/exec.c
/openbmc/qemu/fsdev/qemu-fsdev-dummy.c
/openbmc/qemu/gdbstub.c
/openbmc/qemu/hw/9pfs/virtio-9p-device.c
/openbmc/qemu/hw/acpi/core.c
/openbmc/qemu/hw/acpi/vmgenid.c
/openbmc/qemu/hw/adc/stm32f2xx_adc.c
/openbmc/qemu/hw/alpha/typhoon.c
/openbmc/qemu/hw/arm/allwinner-a10.c
/openbmc/qemu/hw/arm/armsse.c
/openbmc/qemu/hw/arm/armv7m.c
/openbmc/qemu/hw/arm/aspeed_soc.c
/openbmc/qemu/hw/arm/bcm2835_peripherals.c
/openbmc/qemu/hw/arm/bcm2836.c
/openbmc/qemu/hw/arm/digic.c
/openbmc/qemu/hw/arm/fsl-imx6.c
/openbmc/qemu/hw/arm/fsl-imx6ul.c
/openbmc/qemu/hw/arm/fsl-imx7.c
/openbmc/qemu/hw/arm/pxa2xx.c
/openbmc/qemu/hw/arm/pxa2xx_gpio.c
/openbmc/qemu/hw/arm/pxa2xx_pic.c
/openbmc/qemu/hw/arm/smmu-common.c
/openbmc/qemu/hw/arm/stm32f205_soc.c
/openbmc/qemu/hw/arm/virt.c
/openbmc/qemu/hw/arm/xlnx-versal.c
/openbmc/qemu/hw/arm/xlnx-zynqmp.c
/openbmc/qemu/hw/audio/ac97.c
/openbmc/qemu/hw/audio/adlib.c
/openbmc/qemu/hw/audio/cs4231.c
/openbmc/qemu/hw/audio/cs4231a.c
/openbmc/qemu/hw/audio/es1370.c
/openbmc/qemu/hw/audio/gus.c
/openbmc/qemu/hw/audio/hda-codec.c
/openbmc/qemu/hw/audio/intel-hda.c
/openbmc/qemu/hw/audio/marvell_88w8618.c
/openbmc/qemu/hw/audio/milkymist-ac97.c
/openbmc/qemu/hw/audio/pcspk.c
/openbmc/qemu/hw/audio/pl041.c
/openbmc/qemu/hw/audio/sb16.c
/openbmc/qemu/hw/audio/wm8750.c
/openbmc/qemu/hw/block/fdc.c
/openbmc/qemu/hw/block/m25p80.c
/openbmc/qemu/hw/block/nand.c
/openbmc/qemu/hw/block/nvme.c
/openbmc/qemu/hw/block/onenand.c
/openbmc/qemu/hw/block/pflash_cfi01.c
/openbmc/qemu/hw/block/pflash_cfi02.c
/openbmc/qemu/hw/block/virtio-blk.c
/openbmc/qemu/hw/block/xen-block.c
/openbmc/qemu/hw/bt/hci-csr.c
/openbmc/qemu/hw/char/bcm2835_aux.c
/openbmc/qemu/hw/char/cadence_uart.c
/openbmc/qemu/hw/char/cmsdk-apb-uart.c
/openbmc/qemu/hw/char/debugcon.c
/openbmc/qemu/hw/char/digic-uart.c
/openbmc/qemu/hw/char/escc.c
/openbmc/qemu/hw/char/etraxfs_ser.c
/openbmc/qemu/hw/char/exynos4210_uart.c
/openbmc/qemu/hw/char/grlib_apbuart.c
/openbmc/qemu/hw/char/imx_serial.c
/openbmc/qemu/hw/char/ipoctal232.c
/openbmc/qemu/hw/char/lm32_juart.c
/openbmc/qemu/hw/char/lm32_uart.c
/openbmc/qemu/hw/char/mcf_uart.c
/openbmc/qemu/hw/char/milkymist-uart.c
/openbmc/qemu/hw/char/nrf51_uart.c
/openbmc/qemu/hw/char/parallel.c
/openbmc/qemu/hw/char/pl011.c
/openbmc/qemu/hw/char/sclpconsole-lm.c
/openbmc/qemu/hw/char/sclpconsole.c
/openbmc/qemu/hw/char/serial-isa.c
/openbmc/qemu/hw/char/serial-pci.c
/openbmc/qemu/hw/char/spapr_vty.c
/openbmc/qemu/hw/char/stm32f2xx_usart.c
/openbmc/qemu/hw/char/terminal3270.c
/openbmc/qemu/hw/char/virtio-console.c
/openbmc/qemu/hw/char/virtio-serial-bus.c
/openbmc/qemu/hw/char/xilinx_uartlite.c
/openbmc/qemu/hw/core/bus.c
/openbmc/qemu/hw/core/empty_slot.c
/openbmc/qemu/hw/core/fw-path-provider.c
/openbmc/qemu/hw/core/generic-loader.c
/openbmc/qemu/hw/core/nmi.c
/openbmc/qemu/hw/core/or-irq.c
/openbmc/qemu/hw/core/platform-bus.c
/openbmc/qemu/hw/core/qdev-properties.c
/openbmc/qemu/hw/core/register.c
/openbmc/qemu/hw/core/split-irq.c
/openbmc/qemu/hw/core/stream.c
/openbmc/qemu/hw/core/sysbus.c
/openbmc/qemu/hw/cpu/a15mpcore.c
/openbmc/qemu/hw/cpu/a9mpcore.c
/openbmc/qemu/hw/cpu/arm11mpcore.c
/openbmc/qemu/hw/cpu/core.c
/openbmc/qemu/hw/cpu/realview_mpcore.c
/openbmc/qemu/hw/display/ads7846.c
/openbmc/qemu/hw/display/ati.c
/openbmc/qemu/hw/display/bcm2835_fb.c
/openbmc/qemu/hw/display/bochs-display.c
/openbmc/qemu/hw/display/cg3.c
/openbmc/qemu/hw/display/cirrus_vga.c
/openbmc/qemu/hw/display/cirrus_vga_isa.c
/openbmc/qemu/hw/display/dpcd.c
/openbmc/qemu/hw/display/exynos4210_fimd.c
/openbmc/qemu/hw/display/g364fb.c
/openbmc/qemu/hw/display/i2c-ddc.c
/openbmc/qemu/hw/display/jazz_led.c
/openbmc/qemu/hw/display/milkymist-tmu2.c
/openbmc/qemu/hw/display/milkymist-vgafb.c
/openbmc/qemu/hw/display/pl110.c
/openbmc/qemu/hw/display/qxl.c
/openbmc/qemu/hw/display/ramfb-standalone.c
/openbmc/qemu/hw/display/sii9022.c
/openbmc/qemu/hw/display/sm501.c
/openbmc/qemu/hw/display/ssd0303.c
/openbmc/qemu/hw/display/ssd0323.c
/openbmc/qemu/hw/display/tcx.c
/openbmc/qemu/hw/display/vga-isa.c
/openbmc/qemu/hw/display/vga-pci.c
/openbmc/qemu/hw/display/virtio-gpu-pci.c
/openbmc/qemu/hw/display/virtio-gpu.c
/openbmc/qemu/hw/display/virtio-vga.c
/openbmc/qemu/hw/display/vmware_vga.c
/openbmc/qemu/hw/display/xlnx_dp.c
/openbmc/qemu/hw/dma/bcm2835_dma.c
/openbmc/qemu/hw/dma/i82374.c
/openbmc/qemu/hw/dma/i8257.c
/openbmc/qemu/hw/dma/pl080.c
/openbmc/qemu/hw/dma/pl330.c
/openbmc/qemu/hw/dma/puv3_dma.c
/openbmc/qemu/hw/dma/pxa2xx_dma.c
/openbmc/qemu/hw/dma/rc4030.c
/openbmc/qemu/hw/dma/sparc32_dma.c
/openbmc/qemu/hw/dma/xilinx_axidma.c
/openbmc/qemu/hw/dma/xlnx-zdma.c
/openbmc/qemu/hw/dma/xlnx-zynq-devcfg.c
/openbmc/qemu/hw/dma/xlnx_dpdma.c
/openbmc/qemu/hw/gpio/bcm2835_gpio.c
/openbmc/qemu/hw/gpio/gpio_key.c
/openbmc/qemu/hw/gpio/imx_gpio.c
/openbmc/qemu/hw/gpio/max7310.c
/openbmc/qemu/hw/gpio/mpc8xxx.c
/openbmc/qemu/hw/gpio/nrf51_gpio.c
/openbmc/qemu/hw/gpio/omap_gpio.c
/openbmc/qemu/hw/gpio/pl061.c
/openbmc/qemu/hw/gpio/puv3_gpio.c
/openbmc/qemu/hw/gpio/zaurus.c
/openbmc/qemu/hw/hppa/dino.c
/openbmc/qemu/hw/hyperv/hyperv.c
/openbmc/qemu/hw/hyperv/hyperv_testdev.c
/openbmc/qemu/hw/i2c/aspeed_i2c.c
/openbmc/qemu/hw/i2c/bitbang_i2c.c
/openbmc/qemu/hw/i2c/core.c
/openbmc/qemu/hw/i2c/exynos4210_i2c.c
/openbmc/qemu/hw/i2c/imx_i2c.c
/openbmc/qemu/hw/i2c/microbit_i2c.c
/openbmc/qemu/hw/i2c/mpc_i2c.c
/openbmc/qemu/hw/i2c/omap_i2c.c
/openbmc/qemu/hw/i2c/ppc4xx_i2c.c
/openbmc/qemu/hw/i2c/smbus_ich9.c
/openbmc/qemu/hw/i2c/smbus_slave.c
/openbmc/qemu/hw/i2c/versatile_i2c.c
/openbmc/qemu/hw/i386/kvm/apic.c
/openbmc/qemu/hw/i386/kvm/clock.c
/openbmc/qemu/hw/i386/kvm/i8254.c
/openbmc/qemu/hw/i386/kvm/i8259.c
/openbmc/qemu/hw/i386/kvmvapic.c
/openbmc/qemu/hw/i386/pc.c
/openbmc/qemu/hw/i386/xen/xen_apic.c
/openbmc/qemu/hw/i386/xen/xen_platform.c
/openbmc/qemu/hw/i386/xen/xen_pvdevice.c
/openbmc/qemu/hw/ide/ahci-allwinner.c
/openbmc/qemu/hw/ide/ahci.c
/openbmc/qemu/hw/ide/cmd646.c
/openbmc/qemu/hw/ide/ich.c
/openbmc/qemu/hw/ide/isa.c
/openbmc/qemu/hw/ide/macio.c
/openbmc/qemu/hw/ide/microdrive.c
/openbmc/qemu/hw/ide/mmio.c
/openbmc/qemu/hw/ide/pci.c
/openbmc/qemu/hw/ide/piix.c
/openbmc/qemu/hw/ide/qdev.c
/openbmc/qemu/hw/ide/sii3112.c
/openbmc/qemu/hw/ide/via.c
/openbmc/qemu/hw/input/adb-kbd.c
/openbmc/qemu/hw/input/adb-mouse.c
/openbmc/qemu/hw/input/adb.c
/openbmc/qemu/hw/input/lm832x.c
/openbmc/qemu/hw/input/milkymist-softusb.c
/openbmc/qemu/hw/input/pl050.c
/openbmc/qemu/hw/input/virtio-input-hid.c
/openbmc/qemu/hw/input/virtio-input-host.c
/openbmc/qemu/hw/input/virtio-input.c
allwinner-a10-pic.c
apic_common.c
arm_gic.c
arm_gic_common.c
arm_gic_kvm.c
arm_gicv2m.c
arm_gicv3.c
arm_gicv3_common.c
arm_gicv3_its_common.c
arm_gicv3_its_kvm.c
arm_gicv3_kvm.c
armv7m_nvic.c
aspeed_vic.c
bcm2835_ic.c
bcm2836_control.c
etraxfs_pic.c
exynos4210_combiner.c
exynos4210_gic.c
grlib_irqmp.c
heathrow_pic.c
imx_avic.c
imx_gpcv2.c
ioapic_common.c
lm32_pic.c
mips_gic.c
nios2_iic.c
omap_intc.c
ompic.c
openpic.c
openpic_kvm.c
pl190.c
pnv_xive.c
puv3_intc.c
realview_gic.c
s390_flic.c
s390_flic_kvm.c
slavio_intctl.c
spapr_xive.c
xics.c
xics_pnv.c
xilinx_intc.c
xive.c
xlnx-pmu-iomod-intc.c
xlnx-zynqmp-ipi.c
/openbmc/qemu/hw/ipack/ipack.c
/openbmc/qemu/hw/ipack/tpci200.c
/openbmc/qemu/hw/ipmi/ipmi.c
/openbmc/qemu/hw/ipmi/ipmi_bmc_extern.c
/openbmc/qemu/hw/ipmi/ipmi_bmc_sim.c
/openbmc/qemu/hw/ipmi/isa_ipmi_bt.c
/openbmc/qemu/hw/ipmi/isa_ipmi_kcs.c
/openbmc/qemu/hw/isa/isa-bus.c
/openbmc/qemu/hw/isa/isa-superio.c
/openbmc/qemu/hw/isa/pc87312.c
/openbmc/qemu/hw/isa/smc37c669-superio.c
/openbmc/qemu/hw/isa/vt82c686.c
/openbmc/qemu/hw/m68k/mcf_intc.c
/openbmc/qemu/hw/mem/nvdimm.c
/openbmc/qemu/hw/mem/pc-dimm.c
/openbmc/qemu/hw/mips/cps.c
/openbmc/qemu/hw/misc/a9scu.c
/openbmc/qemu/hw/misc/applesmc.c
/openbmc/qemu/hw/misc/arm11scu.c
/openbmc/qemu/hw/misc/arm_integrator_debug.c
/openbmc/qemu/hw/misc/arm_l2x0.c
/openbmc/qemu/hw/misc/arm_sysctl.c
/openbmc/qemu/hw/misc/armsse-cpuid.c
/openbmc/qemu/hw/misc/armsse-mhu.c
/openbmc/qemu/hw/misc/aspeed_scu.c
/openbmc/qemu/hw/misc/aspeed_sdmc.c
/openbmc/qemu/hw/misc/auxbus.c
/openbmc/qemu/hw/misc/bcm2835_mbox.c
/openbmc/qemu/hw/misc/bcm2835_property.c
/openbmc/qemu/hw/misc/bcm2835_rng.c
/openbmc/qemu/hw/misc/debugexit.c
/openbmc/qemu/hw/misc/eccmemctl.c
/openbmc/qemu/hw/misc/edu.c
/openbmc/qemu/hw/misc/exynos4210_clk.c
/openbmc/qemu/hw/misc/exynos4210_pmu.c
/openbmc/qemu/hw/misc/exynos4210_rng.c
/openbmc/qemu/hw/misc/imx25_ccm.c
/openbmc/qemu/hw/misc/imx2_wdt.c
/openbmc/qemu/hw/misc/imx31_ccm.c
/openbmc/qemu/hw/misc/imx6_ccm.c
/openbmc/qemu/hw/misc/imx6_src.c
/openbmc/qemu/hw/misc/imx6ul_ccm.c
/openbmc/qemu/hw/misc/imx7_ccm.c
/openbmc/qemu/hw/misc/imx7_gpr.c
/openbmc/qemu/hw/misc/imx7_snvs.c
/openbmc/qemu/hw/misc/imx_ccm.c
/openbmc/qemu/hw/misc/iotkit-secctl.c
/openbmc/qemu/hw/misc/iotkit-sysctl.c
/openbmc/qemu/hw/misc/iotkit-sysinfo.c
/openbmc/qemu/hw/misc/ivshmem.c
/openbmc/qemu/hw/misc/macio/cuda.c
/openbmc/qemu/hw/misc/macio/gpio.c
/openbmc/qemu/hw/misc/macio/mac_dbdma.c
/openbmc/qemu/hw/misc/macio/macio.c
/openbmc/qemu/hw/misc/macio/pmu.c
/openbmc/qemu/hw/misc/max111x.c
/openbmc/qemu/hw/misc/milkymist-hpdmc.c
/openbmc/qemu/hw/misc/milkymist-pfpu.c
/openbmc/qemu/hw/misc/mips_cmgcr.c
/openbmc/qemu/hw/misc/mips_cpc.c
/openbmc/qemu/hw/misc/mips_itu.c
/openbmc/qemu/hw/misc/mos6522.c
/openbmc/qemu/hw/misc/mps2-fpgaio.c
/openbmc/qemu/hw/misc/mps2-scc.c
/openbmc/qemu/hw/misc/msf2-sysreg.c
/openbmc/qemu/hw/misc/mst_fpga.c
/openbmc/qemu/hw/misc/nrf51_rng.c
/openbmc/qemu/hw/misc/pc-testdev.c
/openbmc/qemu/hw/misc/pca9552.c
/openbmc/qemu/hw/misc/pci-testdev.c
/openbmc/qemu/hw/misc/puv3_pm.c
/openbmc/qemu/hw/misc/pvpanic.c
/openbmc/qemu/hw/misc/sga.c
/openbmc/qemu/hw/misc/slavio_misc.c
/openbmc/qemu/hw/misc/stm32f2xx_syscfg.c
/openbmc/qemu/hw/misc/tmp105.c
/openbmc/qemu/hw/misc/tmp421.c
/openbmc/qemu/hw/misc/tz-mpc.c
/openbmc/qemu/hw/misc/tz-msc.c
/openbmc/qemu/hw/misc/tz-ppc.c
/openbmc/qemu/hw/misc/unimp.c
/openbmc/qemu/hw/misc/vmcoreinfo.c
/openbmc/qemu/hw/misc/zynq-xadc.c
/openbmc/qemu/hw/misc/zynq_slcr.c
/openbmc/qemu/hw/net/allwinner_emac.c
/openbmc/qemu/hw/net/cadence_gem.c
/openbmc/qemu/hw/net/can/can_kvaser_pci.c
/openbmc/qemu/hw/net/can/can_mioe3680_pci.c
/openbmc/qemu/hw/net/can/can_pcm3680_pci.c
/openbmc/qemu/hw/net/dp8393x.c
/openbmc/qemu/hw/net/e1000.c
/openbmc/qemu/hw/net/e1000e.c
/openbmc/qemu/hw/net/eepro100.c
/openbmc/qemu/hw/net/etraxfs_eth.c
/openbmc/qemu/hw/net/fsl_etsec/etsec.c
/openbmc/qemu/hw/net/ftgmac100.c
/openbmc/qemu/hw/net/imx_fec.c
/openbmc/qemu/hw/net/lan9118.c
/openbmc/qemu/hw/net/lance.c
/openbmc/qemu/hw/net/mcf_fec.c
/openbmc/qemu/hw/net/milkymist-minimac2.c
/openbmc/qemu/hw/net/mipsnet.c
/openbmc/qemu/hw/net/ne2000-isa.c
/openbmc/qemu/hw/net/ne2000.c
/openbmc/qemu/hw/net/opencores_eth.c
/openbmc/qemu/hw/net/pcnet-pci.c
/openbmc/qemu/hw/net/rocker/rocker.c
/openbmc/qemu/hw/net/rtl8139.c
/openbmc/qemu/hw/net/smc91c111.c
/openbmc/qemu/hw/net/spapr_llan.c
/openbmc/qemu/hw/net/stellaris_enet.c
/openbmc/qemu/hw/net/sungem.c
/openbmc/qemu/hw/net/sunhme.c
/openbmc/qemu/hw/net/virtio-net.c
/openbmc/qemu/hw/net/vmxnet3.c
/openbmc/qemu/hw/net/xgmac.c
/openbmc/qemu/hw/net/xilinx_axienet.c
/openbmc/qemu/hw/net/xilinx_ethlite.c
/openbmc/qemu/hw/nios2/cpu_pic.c
/openbmc/qemu/hw/nvram/ds1225y.c
/openbmc/qemu/hw/nvram/eeprom_at24c.c
/openbmc/qemu/hw/nvram/mac_nvram.c
/openbmc/qemu/hw/nvram/nrf51_nvm.c
/openbmc/qemu/hw/nvram/spapr_nvram.c
/openbmc/qemu/hw/pci-bridge/dec.c
/openbmc/qemu/hw/pci-bridge/gen_pcie_root_port.c
/openbmc/qemu/hw/pci-bridge/i82801b11.c
/openbmc/qemu/hw/pci-bridge/ioh3420.c
/openbmc/qemu/hw/pci-bridge/pci_bridge_dev.c
/openbmc/qemu/hw/pci-bridge/pci_expander_bridge.c
/openbmc/qemu/hw/pci-bridge/pcie_pci_bridge.c
/openbmc/qemu/hw/pci-bridge/pcie_root_port.c
/openbmc/qemu/hw/pci-bridge/simba.c
/openbmc/qemu/hw/pci-bridge/xio3130_downstream.c
/openbmc/qemu/hw/pci-bridge/xio3130_upstream.c
/openbmc/qemu/hw/pci-host/designware.c
/openbmc/qemu/hw/pci-host/gpex.c
/openbmc/qemu/hw/pci-host/grackle.c
/openbmc/qemu/hw/pci-host/ppce500.c
/openbmc/qemu/hw/pci-host/q35.c
/openbmc/qemu/hw/pci-host/sabre.c
/openbmc/qemu/hw/pci-host/uninorth.c
/openbmc/qemu/hw/pci-host/versatile.c
/openbmc/qemu/hw/pci-host/xilinx-pcie.c
/openbmc/qemu/hw/pci/pci_bridge.c
/openbmc/qemu/hw/pci/pci_host.c
/openbmc/qemu/hw/pci/pcie_host.c
/openbmc/qemu/hw/pci/pcie_port.c
/openbmc/qemu/hw/pcmcia/pcmcia.c
/openbmc/qemu/hw/pcmcia/pxa2xx.c
/openbmc/qemu/hw/ppc/mpc8544_guts.c
/openbmc/qemu/hw/ppc/pnv_core.c
/openbmc/qemu/hw/ppc/pnv_lpc.c
/openbmc/qemu/hw/ppc/pnv_occ.c
/openbmc/qemu/hw/ppc/pnv_psi.c
/openbmc/qemu/hw/ppc/pnv_xscom.c
/openbmc/qemu/hw/ppc/ppc.c
/openbmc/qemu/hw/ppc/ppc405_uc.c
/openbmc/qemu/hw/ppc/ppc440_pcix.c
/openbmc/qemu/hw/ppc/ppc440_uc.c
/openbmc/qemu/hw/ppc/ppc4xx_pci.c
/openbmc/qemu/hw/ppc/ppc_booke.c
/openbmc/qemu/hw/ppc/ppce500_spin.c
/openbmc/qemu/hw/ppc/prep_systemio.c
/openbmc/qemu/hw/ppc/spapr_caps.c
/openbmc/qemu/hw/ppc/spapr_hcall.c
/openbmc/qemu/hw/ppc/spapr_iommu.c
/openbmc/qemu/hw/ppc/spapr_pci.c
/openbmc/qemu/hw/ppc/spapr_rng.c
/openbmc/qemu/hw/ppc/spapr_rtas_ddw.c
/openbmc/qemu/hw/ppc/spapr_rtc.c
/openbmc/qemu/hw/rdma/vmw/pvrdma_main.c
/openbmc/qemu/hw/riscv/riscv_hart.c
/openbmc/qemu/hw/riscv/sifive_clint.c
/openbmc/qemu/hw/riscv/sifive_plic.c
/openbmc/qemu/hw/riscv/sifive_prci.c
/openbmc/qemu/hw/riscv/sifive_test.c
/openbmc/qemu/hw/s390x/ap-bridge.c
/openbmc/qemu/hw/s390x/ccw-device.c
/openbmc/qemu/hw/s390x/css-bridge.c
/openbmc/qemu/hw/s390x/event-facility.c
/openbmc/qemu/hw/s390x/ipl.c
/openbmc/qemu/hw/s390x/s390-ccw.c
/openbmc/qemu/hw/s390x/s390-pci-bus.c
/openbmc/qemu/hw/s390x/s390-skeys-kvm.c
/openbmc/qemu/hw/s390x/s390-virtio-ccw.c
/openbmc/qemu/hw/s390x/sclpcpu.c
/openbmc/qemu/hw/s390x/sclpquiesce.c
/openbmc/qemu/hw/s390x/tod-kvm.c
/openbmc/qemu/hw/s390x/tod-qemu.c
/openbmc/qemu/hw/s390x/tod.c
/openbmc/qemu/hw/s390x/vhost-vsock-ccw.c
/openbmc/qemu/hw/s390x/virtio-ccw-9p.c
/openbmc/qemu/hw/s390x/virtio-ccw-balloon.c
/openbmc/qemu/hw/s390x/virtio-ccw-blk.c
/openbmc/qemu/hw/s390x/virtio-ccw-crypto.c
/openbmc/qemu/hw/s390x/virtio-ccw-gpu.c
/openbmc/qemu/hw/s390x/virtio-ccw-input.c
/openbmc/qemu/hw/s390x/virtio-ccw-net.c
/openbmc/qemu/hw/s390x/virtio-ccw-rng.c
/openbmc/qemu/hw/s390x/virtio-ccw-scsi.c
/openbmc/qemu/hw/s390x/virtio-ccw-serial.c
/openbmc/qemu/hw/s390x/virtio-ccw.c
/openbmc/qemu/hw/scsi/esp-pci.c
/openbmc/qemu/hw/scsi/esp.c
/openbmc/qemu/hw/scsi/lsi53c895a.c
/openbmc/qemu/hw/scsi/megasas.c
/openbmc/qemu/hw/scsi/mptsas.c
/openbmc/qemu/hw/scsi/scsi-bus.c
/openbmc/qemu/hw/scsi/scsi-disk.c
/openbmc/qemu/hw/scsi/scsi-generic.c
/openbmc/qemu/hw/scsi/spapr_vscsi.c
/openbmc/qemu/hw/scsi/vhost-scsi-common.c
/openbmc/qemu/hw/scsi/vhost-scsi.c
/openbmc/qemu/hw/scsi/virtio-scsi.c
/openbmc/qemu/hw/scsi/vmw_pvscsi.c
/openbmc/qemu/hw/sd/bcm2835_sdhost.c
/openbmc/qemu/hw/sd/core.c
/openbmc/qemu/hw/sd/milkymist-memcard.c
/openbmc/qemu/hw/sd/pl181.c
/openbmc/qemu/hw/sd/pxa2xx_mmci.c
/openbmc/qemu/hw/sd/sd.c
/openbmc/qemu/hw/sd/sdhci-pci.c
/openbmc/qemu/hw/sd/sdhci.c
/openbmc/qemu/hw/sd/ssi-sd.c
/openbmc/qemu/hw/sh4/sh_pci.c
/openbmc/qemu/hw/smbios/smbios.c
/openbmc/qemu/hw/sparc/leon3.c
/openbmc/qemu/hw/sparc/sun4m.c
/openbmc/qemu/hw/sparc/sun4m_iommu.c
/openbmc/qemu/hw/sparc64/sparc64.c
/openbmc/qemu/hw/sparc64/sun4u_iommu.c
/openbmc/qemu/hw/ssi/aspeed_smc.c
/openbmc/qemu/hw/ssi/imx_spi.c
/openbmc/qemu/hw/ssi/mss-spi.c
/openbmc/qemu/hw/ssi/pl022.c
/openbmc/qemu/hw/ssi/ssi.c
/openbmc/qemu/hw/ssi/stm32f2xx_spi.c
/openbmc/qemu/hw/ssi/xilinx_spi.c
/openbmc/qemu/hw/ssi/xilinx_spips.c
/openbmc/qemu/hw/timer/a9gtimer.c
/openbmc/qemu/hw/timer/allwinner-a10-pit.c
/openbmc/qemu/hw/timer/altera_timer.c
/openbmc/qemu/hw/timer/arm_mptimer.c
/openbmc/qemu/hw/timer/arm_timer.c
/openbmc/qemu/hw/timer/armv7m_systick.c
/openbmc/qemu/hw/timer/aspeed_timer.c
/openbmc/qemu/hw/timer/cadence_ttc.c
/openbmc/qemu/hw/timer/cmsdk-apb-dualtimer.c
/openbmc/qemu/hw/timer/cmsdk-apb-timer.c
/openbmc/qemu/hw/timer/digic-timer.c
/openbmc/qemu/hw/timer/ds1338.c
/openbmc/qemu/hw/timer/etraxfs_timer.c
/openbmc/qemu/hw/timer/exynos4210_mct.c
/openbmc/qemu/hw/timer/exynos4210_pwm.c
/openbmc/qemu/hw/timer/exynos4210_rtc.c
/openbmc/qemu/hw/timer/grlib_gptimer.c
/openbmc/qemu/hw/timer/i8254.c
/openbmc/qemu/hw/timer/i8254_common.c
/openbmc/qemu/hw/timer/imx_epit.c
/openbmc/qemu/hw/timer/imx_gpt.c
/openbmc/qemu/hw/timer/lm32_timer.c
/openbmc/qemu/hw/timer/m41t80.c
/openbmc/qemu/hw/timer/m48t59-isa.c
/openbmc/qemu/hw/timer/m48t59.c
/openbmc/qemu/hw/timer/mc146818rtc.c
/openbmc/qemu/hw/timer/milkymist-sysctl.c
/openbmc/qemu/hw/timer/mss-timer.c
/openbmc/qemu/hw/timer/nrf51_timer.c
/openbmc/qemu/hw/timer/pl031.c
/openbmc/qemu/hw/timer/puv3_ost.c
/openbmc/qemu/hw/timer/pxa2xx_timer.c
/openbmc/qemu/hw/timer/slavio_timer.c
/openbmc/qemu/hw/timer/stm32f2xx_timer.c
/openbmc/qemu/hw/timer/sun4v-rtc.c
/openbmc/qemu/hw/timer/twl92230.c
/openbmc/qemu/hw/timer/xilinx_timer.c
/openbmc/qemu/hw/timer/xlnx-zynqmp-rtc.c
/openbmc/qemu/hw/tpm/tpm_crb.c
/openbmc/qemu/hw/tpm/tpm_emulator.c
/openbmc/qemu/hw/tpm/tpm_passthrough.c
/openbmc/qemu/hw/tpm/tpm_tis.c
/openbmc/qemu/hw/unicore32/puv3.c
/openbmc/qemu/hw/usb/bus.c
/openbmc/qemu/hw/usb/ccid-card-emulated.c
/openbmc/qemu/hw/usb/ccid-card-passthru.c
/openbmc/qemu/hw/usb/chipidea.c
/openbmc/qemu/hw/usb/dev-audio.c
/openbmc/qemu/hw/usb/dev-bluetooth.c
/openbmc/qemu/hw/usb/dev-hid.c
/openbmc/qemu/hw/usb/dev-hub.c
/openbmc/qemu/hw/usb/dev-mtp.c
/openbmc/qemu/hw/usb/dev-network.c
/openbmc/qemu/hw/usb/dev-serial.c
/openbmc/qemu/hw/usb/dev-smartcard-reader.c
/openbmc/qemu/hw/usb/dev-storage.c
/openbmc/qemu/hw/usb/dev-uas.c
/openbmc/qemu/hw/usb/dev-wacom.c
/openbmc/qemu/hw/usb/hcd-ehci-pci.c
/openbmc/qemu/hw/usb/hcd-ehci-sysbus.c
/openbmc/qemu/hw/usb/hcd-ohci.c
/openbmc/qemu/hw/usb/hcd-uhci.c
/openbmc/qemu/hw/usb/hcd-xhci-nec.c
/openbmc/qemu/hw/usb/hcd-xhci.c
/openbmc/qemu/hw/usb/host-libusb.c
/openbmc/qemu/hw/usb/redirect.c
/openbmc/qemu/hw/usb/tusb6010.c
/openbmc/qemu/hw/vfio/amd-xgbe.c
/openbmc/qemu/hw/vfio/ap.c
/openbmc/qemu/hw/vfio/calxeda-xgmac.c
/openbmc/qemu/hw/vfio/ccw.c
/openbmc/qemu/hw/vfio/pci-quirks.c
/openbmc/qemu/hw/vfio/pci.c
/openbmc/qemu/hw/vfio/platform.c
/openbmc/qemu/hw/virtio/vhost-scsi-pci.c
/openbmc/qemu/hw/virtio/vhost-user-blk-pci.c
/openbmc/qemu/hw/virtio/vhost-user-scsi-pci.c
/openbmc/qemu/hw/virtio/vhost-vsock-pci.c
/openbmc/qemu/hw/virtio/vhost-vsock.c
/openbmc/qemu/hw/virtio/virtio-9p-pci.c
/openbmc/qemu/hw/virtio/virtio-balloon-pci.c
/openbmc/qemu/hw/virtio/virtio-balloon.c
/openbmc/qemu/hw/virtio/virtio-blk-pci.c
/openbmc/qemu/hw/virtio/virtio-bus.c
/openbmc/qemu/hw/virtio/virtio-crypto-pci.c
/openbmc/qemu/hw/virtio/virtio-crypto.c
/openbmc/qemu/hw/virtio/virtio-input-host-pci.c
/openbmc/qemu/hw/virtio/virtio-input-pci.c
/openbmc/qemu/hw/virtio/virtio-mmio.c
/openbmc/qemu/hw/virtio/virtio-net-pci.c
/openbmc/qemu/hw/virtio/virtio-pci.c
/openbmc/qemu/hw/virtio/virtio-rng-pci.c
/openbmc/qemu/hw/virtio/virtio-rng.c
/openbmc/qemu/hw/virtio/virtio-scsi-pci.c
/openbmc/qemu/hw/virtio/virtio-serial-pci.c
/openbmc/qemu/hw/virtio/virtio.c
/openbmc/qemu/hw/watchdog/cmsdk-apb-watchdog.c
/openbmc/qemu/hw/watchdog/wdt_aspeed.c
/openbmc/qemu/hw/watchdog/wdt_diag288.c
/openbmc/qemu/hw/watchdog/wdt_i6300esb.c
/openbmc/qemu/hw/watchdog/wdt_ib700.c
/openbmc/qemu/hw/xen/xen-bus.c
/openbmc/qemu/hw/xen/xen-common.c
/openbmc/qemu/hw/xtensa/pic_cpu.c
/openbmc/qemu/include/exec/cpu-all.h
/openbmc/qemu/include/exec/cpu-defs.h
/openbmc/qemu/include/exec/gen-icount.h
/openbmc/qemu/include/exec/ram_addr.h
/openbmc/qemu/include/hw/boards.h
/openbmc/qemu/include/hw/hw.h
/openbmc/qemu/include/hw/i386/pc.h
/openbmc/qemu/include/qemu-common.h
/openbmc/qemu/include/qemu/ctype.h
/openbmc/qemu/include/qom/cpu.h
/openbmc/qemu/include/qom/object.h
/openbmc/qemu/include/sysemu/tcg.h
/openbmc/qemu/io/channel-buffer.c
/openbmc/qemu/io/channel-command.c
/openbmc/qemu/io/channel-file.c
/openbmc/qemu/io/channel-socket.c
/openbmc/qemu/io/channel-tls.c
/openbmc/qemu/io/channel-websock.c
/openbmc/qemu/io/channel.c
/openbmc/qemu/io/dns-resolver.c
/openbmc/qemu/io/net-listener.c
/openbmc/qemu/linux-user/main.c
/openbmc/qemu/linux-user/openrisc/cpu_loop.c
/openbmc/qemu/linux-user/ppc/cpu_loop.c
/openbmc/qemu/linux-user/riscv/cpu_loop.c
/openbmc/qemu/linux-user/s390x/cpu_loop.c
/openbmc/qemu/linux-user/sh4/cpu_loop.c
/openbmc/qemu/linux-user/sparc/cpu_loop.c
/openbmc/qemu/linux-user/tilegx/cpu_loop.c
/openbmc/qemu/linux-user/xtensa/cpu_loop.c
/openbmc/qemu/memory.c
/openbmc/qemu/migration/rdma.c
/openbmc/qemu/monitor.c
/openbmc/qemu/net/can/can_core.c
/openbmc/qemu/net/can/can_host.c
/openbmc/qemu/net/can/can_socketcan.c
/openbmc/qemu/net/dump.c
/openbmc/qemu/net/filter-replay.c
/openbmc/qemu/net/filter.c
/openbmc/qemu/net/net.c
/openbmc/qemu/net/tap-solaris.c
/openbmc/qemu/qapi/qapi-util.c
/openbmc/qemu/qemu-img.c
/openbmc/qemu/qemu-io.c
/openbmc/qemu/qemu-nbd.c
/openbmc/qemu/qga/main.c
/openbmc/qemu/qobject/json-parser.c
/openbmc/qemu/qom/cpu.c
/openbmc/qemu/qtest.c
/openbmc/qemu/replication.h
/openbmc/qemu/scripts/qapi/commands.py
/openbmc/qemu/scsi/pr-manager-helper.c
/openbmc/qemu/scsi/pr-manager.c
/openbmc/qemu/scsi/qemu-pr-helper.c
/openbmc/qemu/target/alpha/cpu.c
/openbmc/qemu/target/alpha/cpu.h
/openbmc/qemu/target/arm/cpu.c
/openbmc/qemu/target/arm/cpu.h
/openbmc/qemu/target/arm/cpu64.c
/openbmc/qemu/target/cris/cpu.c
/openbmc/qemu/target/cris/cpu.h
/openbmc/qemu/target/hppa/cpu.c
/openbmc/qemu/target/hppa/cpu.h
/openbmc/qemu/target/i386/cpu.c
/openbmc/qemu/target/i386/cpu.h
/openbmc/qemu/target/i386/helper.c
/openbmc/qemu/target/i386/machine.c
/openbmc/qemu/target/i386/sev.c
/openbmc/qemu/target/lm32/cpu.c
/openbmc/qemu/target/lm32/cpu.h
/openbmc/qemu/target/m68k/cpu.c
/openbmc/qemu/target/m68k/cpu.h
/openbmc/qemu/target/microblaze/cpu.c
/openbmc/qemu/target/microblaze/cpu.h
/openbmc/qemu/target/mips/cpu.c
/openbmc/qemu/target/mips/cpu.h
/openbmc/qemu/target/moxie/cpu.c
/openbmc/qemu/target/moxie/cpu.h
/openbmc/qemu/target/moxie/helper.c
/openbmc/qemu/target/moxie/translate.c
/openbmc/qemu/target/nios2/cpu.c
/openbmc/qemu/target/nios2/cpu.h
/openbmc/qemu/target/nios2/mmu.c
/openbmc/qemu/target/openrisc/cpu.c
/openbmc/qemu/target/openrisc/cpu.h
/openbmc/qemu/target/openrisc/exception_helper.c
/openbmc/qemu/target/openrisc/sys_helper.c
/openbmc/qemu/target/ppc/cpu-models.c
/openbmc/qemu/target/ppc/cpu.h
/openbmc/qemu/target/ppc/excp_helper.c
/openbmc/qemu/target/ppc/fpu_helper.c
/openbmc/qemu/target/ppc/helper_regs.h
/openbmc/qemu/target/ppc/kvm.c
/openbmc/qemu/target/ppc/misc_helper.c
/openbmc/qemu/target/ppc/mmu-hash64.c
/openbmc/qemu/target/ppc/mmu_helper.c
/openbmc/qemu/target/ppc/monitor.c
/openbmc/qemu/target/ppc/translate_init.inc.c
/openbmc/qemu/target/riscv/cpu.c
/openbmc/qemu/target/riscv/cpu.h
/openbmc/qemu/target/riscv/cpu_helper.c
/openbmc/qemu/target/riscv/csr.c
/openbmc/qemu/target/riscv/op_helper.c
/openbmc/qemu/target/s390x/cc_helper.c
/openbmc/qemu/target/s390x/cpu.c
/openbmc/qemu/target/s390x/cpu.h
/openbmc/qemu/target/s390x/cpu_models.c
/openbmc/qemu/target/s390x/diag.c
/openbmc/qemu/target/s390x/excp_helper.c
/openbmc/qemu/target/s390x/fpu_helper.c
/openbmc/qemu/target/s390x/gdbstub.c
/openbmc/qemu/target/s390x/helper.c
/openbmc/qemu/target/s390x/int_helper.c
/openbmc/qemu/target/s390x/interrupt.c
/openbmc/qemu/target/s390x/machine.c
/openbmc/qemu/target/s390x/mem_helper.c
/openbmc/qemu/target/s390x/misc_helper.c
/openbmc/qemu/target/s390x/mmu_helper.c
/openbmc/qemu/target/s390x/sigp.c
/openbmc/qemu/target/sh4/cpu.c
/openbmc/qemu/target/sh4/cpu.h
/openbmc/qemu/target/sh4/helper.c
/openbmc/qemu/target/sh4/op_helper.c
/openbmc/qemu/target/sparc/cpu.c
/openbmc/qemu/target/sparc/cpu.h
/openbmc/qemu/target/sparc/fop_helper.c
/openbmc/qemu/target/sparc/helper.c
/openbmc/qemu/target/sparc/ldst_helper.c
/openbmc/qemu/target/sparc/mmu_helper.c
/openbmc/qemu/target/tilegx/cpu.c
/openbmc/qemu/target/tilegx/cpu.h
/openbmc/qemu/target/tilegx/helper.c
/openbmc/qemu/target/tricore/cpu.c
/openbmc/qemu/target/tricore/cpu.h
/openbmc/qemu/target/tricore/op_helper.c
/openbmc/qemu/target/unicore32/cpu.c
/openbmc/qemu/target/unicore32/cpu.h
/openbmc/qemu/target/unicore32/helper.c
/openbmc/qemu/target/unicore32/op_helper.c
/openbmc/qemu/target/unicore32/softmmu.c
/openbmc/qemu/target/unicore32/translate.c
/openbmc/qemu/target/unicore32/ucf64_helper.c
/openbmc/qemu/target/xtensa/cpu.c
/openbmc/qemu/target/xtensa/cpu.h
/openbmc/qemu/target/xtensa/dbg_helper.c
/openbmc/qemu/target/xtensa/exc_helper.c
/openbmc/qemu/target/xtensa/helper.c
/openbmc/qemu/target/xtensa/mmu_helper.c
/openbmc/qemu/target/xtensa/xtensa-semi.c
/openbmc/qemu/tcg/aarch64/tcg-target.inc.c
/openbmc/qemu/tcg/arm/tcg-target.inc.c
/openbmc/qemu/tcg/i386/tcg-target.inc.c
/openbmc/qemu/tcg/mips/tcg-target.inc.c
/openbmc/qemu/tcg/ppc/tcg-target.inc.c
/openbmc/qemu/tcg/riscv/tcg-target.inc.c
/openbmc/qemu/tcg/s390/tcg-target.inc.c
/openbmc/qemu/tcg/sparc/tcg-target.inc.c
/openbmc/qemu/tests/ac97-test.c
/openbmc/qemu/tests/e1000-test.c
/openbmc/qemu/tests/e1000e-test.c
/openbmc/qemu/tests/eepro100-test.c
/openbmc/qemu/tests/es1370-test.c
/openbmc/qemu/tests/ipoctal232-test.c
/openbmc/qemu/tests/libqos/aarch64-xlnx-zcu102-machine.c
/openbmc/qemu/tests/libqos/arm-raspi2-machine.c
/openbmc/qemu/tests/libqos/arm-sabrelite-machine.c
/openbmc/qemu/tests/libqos/arm-smdkc210-machine.c
/openbmc/qemu/tests/libqos/arm-virt-machine.c
/openbmc/qemu/tests/libqos/arm-xilinx-zynq-a9-machine.c
/openbmc/qemu/tests/libqos/e1000e.c
/openbmc/qemu/tests/libqos/pci-pc.c
/openbmc/qemu/tests/libqos/pci-spapr.c
/openbmc/qemu/tests/libqos/ppc64_pseries-machine.c
/openbmc/qemu/tests/libqos/sdhci.c
/openbmc/qemu/tests/libqos/tpci200.c
/openbmc/qemu/tests/libqos/virtio-9p.c
/openbmc/qemu/tests/libqos/virtio-balloon.c
/openbmc/qemu/tests/libqos/virtio-blk.c
/openbmc/qemu/tests/libqos/virtio-mmio.c
/openbmc/qemu/tests/libqos/virtio-net.c
/openbmc/qemu/tests/libqos/virtio-rng.c
/openbmc/qemu/tests/libqos/virtio-scsi.c
/openbmc/qemu/tests/libqos/virtio-serial.c
/openbmc/qemu/tests/libqos/x86_64_pc-machine.c
/openbmc/qemu/tests/libqtest.c
/openbmc/qemu/tests/megasas-test.c
/openbmc/qemu/tests/migration-test.c
/openbmc/qemu/tests/ne2000-test.c
/openbmc/qemu/tests/nvme-test.c
/openbmc/qemu/tests/pci-test.c
/openbmc/qemu/tests/pcnet-test.c
/openbmc/qemu/tests/qos-test.c
/openbmc/qemu/tests/sdhci-test.c
/openbmc/qemu/tests/spapr-phb-test.c
/openbmc/qemu/tests/test-authz-list.c
/openbmc/qemu/tests/test-authz-listfile.c
/openbmc/qemu/tests/test-authz-pam.c
/openbmc/qemu/tests/test-authz-simple.c
/openbmc/qemu/tests/test-char.c
/openbmc/qemu/tests/test-crypto-block.c
/openbmc/qemu/tests/test-crypto-tlscredsx509.c
/openbmc/qemu/tests/test-crypto-tlssession.c
/openbmc/qemu/tests/test-io-channel-buffer.c
/openbmc/qemu/tests/test-io-channel-command.c
/openbmc/qemu/tests/test-io-channel-file.c
/openbmc/qemu/tests/test-io-channel-socket.c
/openbmc/qemu/tests/test-io-channel-tls.c
/openbmc/qemu/tests/test-io-task.c
/openbmc/qemu/tests/test-qmp-cmds.c
/openbmc/qemu/tests/test-throttle.c
/openbmc/qemu/tests/test-vmstate.c
/openbmc/qemu/tests/tpm-crb-swtpm-test.c
/openbmc/qemu/tests/tpm-crb-test.c
/openbmc/qemu/tests/tpm-tis-swtpm-test.c
/openbmc/qemu/tests/tpm-tis-test.c
/openbmc/qemu/tests/usb-hcd-ohci-test.c
/openbmc/qemu/tests/vhost-user-bridge.c
/openbmc/qemu/tests/vhost-user-test.c
/openbmc/qemu/tests/virtio-9p-test.c
/openbmc/qemu/tests/virtio-blk-test.c
/openbmc/qemu/tests/virtio-net-test.c
/openbmc/qemu/tests/virtio-rng-test.c
/openbmc/qemu/tests/virtio-scsi-test.c
/openbmc/qemu/tests/virtio-serial-test.c
/openbmc/qemu/tests/virtio-test.c
/openbmc/qemu/tests/vmxnet3-test.c
/openbmc/qemu/ui/cocoa.m
/openbmc/qemu/ui/console.c
/openbmc/qemu/ui/curses.c
/openbmc/qemu/ui/egl-headless.c
/openbmc/qemu/ui/input-linux.c
/openbmc/qemu/ui/keymaps.c
/openbmc/qemu/ui/sdl2.c
/openbmc/qemu/ui/spice-app.c
/openbmc/qemu/ui/spice-core.c
/openbmc/qemu/ui/vnc.c
/openbmc/qemu/util/cutils.c
/openbmc/qemu/util/id.c
/openbmc/qemu/util/readline.c
/openbmc/qemu/vl.c
4aca978606-Jun-2019 Benjamin Herrenschmidt <benh@kernel.crashing.org>

ppc/xive: Make XIVE generate the proper interrupt types

It should be generic Hypervisor Virtualization interrupts for HV
directed rings and traditional External Interrupts for the OS directed
ring.

ppc/xive: Make XIVE generate the proper interrupt types

It should be generic Hypervisor Virtualization interrupts for HV
directed rings and traditional External Interrupts for the OS directed
ring.

Don't generate anything for the user ring as it isn't actually
supported.

Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Cédric Le Goater <clg@kaod.org>
Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
Message-Id: <20190606174409.12502-1-clg@kaod.org>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>

show more ...


/openbmc/qemu/accel/tcg/cpu-exec.c
/openbmc/qemu/accel/tcg/tcg-all.c
/openbmc/qemu/accel/tcg/translate-all.c
/openbmc/qemu/bsd-user/main.c
/openbmc/qemu/cpus.c
xive.c
/openbmc/qemu/hw/nios2/cpu_pic.c
/openbmc/qemu/hw/ppc/pnv.c
/openbmc/qemu/hw/ppc/ppc.c
/openbmc/qemu/hw/ppc/ppc405_uc.c
/openbmc/qemu/hw/ppc/ppc_booke.c
/openbmc/qemu/hw/ppc/spapr.c
/openbmc/qemu/hw/ppc/spapr_drc.c
/openbmc/qemu/hw/ppc/spapr_pci.c
/openbmc/qemu/hw/sparc/leon3.c
/openbmc/qemu/hw/sparc/sun4m.c
/openbmc/qemu/hw/sparc64/sparc64.c
/openbmc/qemu/hw/unicore32/puv3.c
/openbmc/qemu/hw/xtensa/pic_cpu.c
/openbmc/qemu/include/exec/cpu-all.h
/openbmc/qemu/include/exec/cpu-defs.h
/openbmc/qemu/include/exec/gen-icount.h
/openbmc/qemu/include/hw/pci-host/spapr.h
/openbmc/qemu/include/hw/ppc/spapr_drc.h
/openbmc/qemu/include/hw/ppc/xive.h
/openbmc/qemu/include/qom/cpu.h
/openbmc/qemu/linux-user/openrisc/cpu_loop.c
/openbmc/qemu/linux-user/ppc/cpu_loop.c
/openbmc/qemu/linux-user/riscv/cpu_loop.c
/openbmc/qemu/linux-user/s390x/cpu_loop.c
/openbmc/qemu/linux-user/sh4/cpu_loop.c
/openbmc/qemu/linux-user/sparc/cpu_loop.c
/openbmc/qemu/linux-user/tilegx/cpu_loop.c
/openbmc/qemu/linux-user/xtensa/cpu_loop.c
/openbmc/qemu/qom/cpu.c
/openbmc/qemu/target/alpha/cpu.c
/openbmc/qemu/target/alpha/cpu.h
/openbmc/qemu/target/arm/cpu.c
/openbmc/qemu/target/arm/cpu.h
/openbmc/qemu/target/cris/cpu.c
/openbmc/qemu/target/cris/cpu.h
/openbmc/qemu/target/hppa/cpu.c
/openbmc/qemu/target/hppa/cpu.h
/openbmc/qemu/target/i386/cpu.c
/openbmc/qemu/target/i386/cpu.h
/openbmc/qemu/target/i386/machine.c
/openbmc/qemu/target/lm32/cpu.c
/openbmc/qemu/target/lm32/cpu.h
/openbmc/qemu/target/m68k/cpu.c
/openbmc/qemu/target/m68k/cpu.h
/openbmc/qemu/target/microblaze/cpu.c
/openbmc/qemu/target/microblaze/cpu.h
/openbmc/qemu/target/mips/cpu.c
/openbmc/qemu/target/mips/cpu.h
/openbmc/qemu/target/moxie/cpu.c
/openbmc/qemu/target/moxie/cpu.h
/openbmc/qemu/target/moxie/helper.c
/openbmc/qemu/target/moxie/translate.c
/openbmc/qemu/target/nios2/cpu.c
/openbmc/qemu/target/nios2/cpu.h
/openbmc/qemu/target/nios2/mmu.c
/openbmc/qemu/target/openrisc/cpu.c
/openbmc/qemu/target/openrisc/cpu.h
/openbmc/qemu/target/openrisc/exception_helper.c
/openbmc/qemu/target/openrisc/sys_helper.c
/openbmc/qemu/target/ppc/cpu.h
/openbmc/qemu/target/ppc/excp_helper.c
/openbmc/qemu/target/ppc/fpu_helper.c
/openbmc/qemu/target/ppc/helper_regs.h
/openbmc/qemu/target/ppc/kvm.c
/openbmc/qemu/target/ppc/misc_helper.c
/openbmc/qemu/target/ppc/mmu-hash64.c
/openbmc/qemu/target/ppc/mmu_helper.c
/openbmc/qemu/target/ppc/translate/vsx-impl.inc.c
/openbmc/qemu/target/ppc/translate_init.inc.c
/openbmc/qemu/target/riscv/cpu.c
/openbmc/qemu/target/riscv/cpu.h
/openbmc/qemu/target/riscv/cpu_helper.c
/openbmc/qemu/target/riscv/csr.c
/openbmc/qemu/target/riscv/op_helper.c
/openbmc/qemu/target/s390x/cc_helper.c
/openbmc/qemu/target/s390x/cpu.c
/openbmc/qemu/target/s390x/cpu.h
/openbmc/qemu/target/s390x/diag.c
/openbmc/qemu/target/s390x/excp_helper.c
/openbmc/qemu/target/s390x/fpu_helper.c
/openbmc/qemu/target/s390x/helper.c
/openbmc/qemu/target/s390x/int_helper.c
/openbmc/qemu/target/s390x/interrupt.c
/openbmc/qemu/target/s390x/mem_helper.c
/openbmc/qemu/target/s390x/misc_helper.c
/openbmc/qemu/target/s390x/mmu_helper.c
/openbmc/qemu/target/s390x/sigp.c
/openbmc/qemu/target/sh4/cpu.c
/openbmc/qemu/target/sh4/cpu.h
/openbmc/qemu/target/sh4/helper.c
/openbmc/qemu/target/sh4/op_helper.c
/openbmc/qemu/target/sparc/cpu.c
/openbmc/qemu/target/sparc/cpu.h
/openbmc/qemu/target/sparc/fop_helper.c
/openbmc/qemu/target/sparc/helper.c
/openbmc/qemu/target/sparc/ldst_helper.c
/openbmc/qemu/target/sparc/mmu_helper.c
/openbmc/qemu/target/tilegx/cpu.c
/openbmc/qemu/target/tilegx/cpu.h
/openbmc/qemu/target/tilegx/helper.c
/openbmc/qemu/target/tricore/cpu.c
/openbmc/qemu/target/tricore/cpu.h
/openbmc/qemu/target/tricore/op_helper.c
/openbmc/qemu/target/unicore32/cpu.c
/openbmc/qemu/target/unicore32/cpu.h
/openbmc/qemu/target/unicore32/helper.c
/openbmc/qemu/target/unicore32/op_helper.c
/openbmc/qemu/target/unicore32/softmmu.c
/openbmc/qemu/target/unicore32/translate.c
/openbmc/qemu/target/unicore32/ucf64_helper.c
/openbmc/qemu/target/xtensa/cpu.c
/openbmc/qemu/target/xtensa/cpu.h
/openbmc/qemu/target/xtensa/dbg_helper.c
/openbmc/qemu/target/xtensa/exc_helper.c
/openbmc/qemu/target/xtensa/helper.c
/openbmc/qemu/target/xtensa/mmu_helper.c
/openbmc/qemu/target/xtensa/xtensa-semi.c
/openbmc/qemu/tcg/aarch64/tcg-target.inc.c
/openbmc/qemu/tcg/arm/tcg-target.inc.c
/openbmc/qemu/tcg/i386/tcg-target.inc.c
/openbmc/qemu/tcg/mips/tcg-target.inc.c
/openbmc/qemu/tcg/ppc/tcg-target.inc.c
/openbmc/qemu/tcg/riscv/tcg-target.inc.c
/openbmc/qemu/tcg/s390/tcg-target.inc.c
/openbmc/qemu/tcg/sparc/tcg-target.inc.c
5a7330b322-Mar-2019 Richard Henderson <richard.henderson@linaro.org>

target/mips: Use env_cpu, env_archcpu

Cleanup in the boilerplate that each target must define.
Replace mips_env_get_cpu with env_archcpu. The combination
CPU(mips_env_get_cpu) should have used ENV_

target/mips: Use env_cpu, env_archcpu

Cleanup in the boilerplate that each target must define.
Replace mips_env_get_cpu with env_archcpu. The combination
CPU(mips_env_get_cpu) should have used ENV_GET_CPU to begin;
use env_cpu now.

Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>

show more ...


/openbmc/qemu/.patchew.yml
/openbmc/qemu/MAINTAINERS
/openbmc/qemu/Makefile
/openbmc/qemu/Makefile.objs
/openbmc/qemu/accel/tcg/atomic_template.h
/openbmc/qemu/accel/tcg/cputlb.c
/openbmc/qemu/accel/tcg/tcg-runtime.c
/openbmc/qemu/accel/tcg/translate-all.c
/openbmc/qemu/accel/tcg/user-exec.c
/openbmc/qemu/block.c
/openbmc/qemu/block/Makefile.objs
/openbmc/qemu/block/backup.c
/openbmc/qemu/block/block-backend.c
/openbmc/qemu/block/commit.c
/openbmc/qemu/block/crypto.c
/openbmc/qemu/block/dirty-bitmap.c
/openbmc/qemu/block/io.c
/openbmc/qemu/block/linux-aio.c
/openbmc/qemu/block/mirror.c
/openbmc/qemu/block/parallels.c
/openbmc/qemu/block/qcow.c
/openbmc/qemu/block/qcow2-bitmap.c
/openbmc/qemu/block/qcow2-cache.c
/openbmc/qemu/block/qcow2-cluster.c
/openbmc/qemu/block/qcow2-refcount.c
/openbmc/qemu/block/qcow2-snapshot.c
/openbmc/qemu/block/qcow2-threads.c
/openbmc/qemu/block/qcow2.c
/openbmc/qemu/block/qcow2.h
/openbmc/qemu/block/qed.c
/openbmc/qemu/block/quorum.c
/openbmc/qemu/block/sheepdog.c
/openbmc/qemu/block/trace-events
/openbmc/qemu/block/vdi.c
/openbmc/qemu/block/vhdx.c
/openbmc/qemu/block/vmdk.c
/openbmc/qemu/block/vpc.c
/openbmc/qemu/blockdev.c
/openbmc/qemu/blockjob.c
/openbmc/qemu/bsd-user/main.c
/openbmc/qemu/bsd-user/syscall.c
/openbmc/qemu/configure
/openbmc/qemu/contrib/libvhost-user/libvhost-user.c
/openbmc/qemu/contrib/libvhost-user/libvhost-user.h
/openbmc/qemu/contrib/vhost-user-gpu/50-qemu-gpu.json.in
/openbmc/qemu/contrib/vhost-user-gpu/Makefile.objs
/openbmc/qemu/contrib/vhost-user-gpu/main.c
/openbmc/qemu/contrib/vhost-user-gpu/virgl.c
/openbmc/qemu/contrib/vhost-user-gpu/virgl.h
/openbmc/qemu/contrib/vhost-user-gpu/vugbm.c
/openbmc/qemu/contrib/vhost-user-gpu/vugbm.h
/openbmc/qemu/contrib/vhost-user-gpu/vugpu.h
/openbmc/qemu/default-configs/i386-softmmu.mak
/openbmc/qemu/docs/devel/build-system.txt
/openbmc/qemu/docs/devel/multiple-iothreads.txt
/openbmc/qemu/docs/devel/tracing.txt
/openbmc/qemu/docs/interop/index.rst
/openbmc/qemu/docs/interop/vhost-user-gpu.rst
/openbmc/qemu/docs/interop/vhost-user.rst
/openbmc/qemu/hmp.c
/openbmc/qemu/hw/acpi/Kconfig
/openbmc/qemu/hw/acpi/Makefile.objs
/openbmc/qemu/hw/acpi/pci.c
/openbmc/qemu/hw/arm/Kconfig
/openbmc/qemu/hw/arm/imx25_pdk.c
/openbmc/qemu/hw/arm/virt-acpi-build.c
/openbmc/qemu/hw/audio/ac97.c
/openbmc/qemu/hw/block/dataplane/virtio-blk.c
/openbmc/qemu/hw/block/dataplane/xen-block.c
/openbmc/qemu/hw/block/fdc.c
/openbmc/qemu/hw/block/nvme.c
/openbmc/qemu/hw/block/nvme.h
/openbmc/qemu/hw/block/trace-events
/openbmc/qemu/hw/block/xen-block.c
/openbmc/qemu/hw/core/machine.c
/openbmc/qemu/hw/core/qdev-properties-system.c
/openbmc/qemu/hw/display/Kconfig
/openbmc/qemu/hw/display/Makefile.objs
/openbmc/qemu/hw/display/vhost-user-gpu-pci.c
/openbmc/qemu/hw/display/vhost-user-gpu.c
/openbmc/qemu/hw/display/vhost-user-vga.c
/openbmc/qemu/hw/display/virtio-gpu-3d.c
/openbmc/qemu/hw/display/virtio-gpu-base.c
/openbmc/qemu/hw/display/virtio-gpu-pci.c
/openbmc/qemu/hw/display/virtio-gpu.c
/openbmc/qemu/hw/display/virtio-vga.c
/openbmc/qemu/hw/display/virtio-vga.h
/openbmc/qemu/hw/i386/acpi-build.c
/openbmc/qemu/hw/i386/kvmvapic.c
/openbmc/qemu/hw/i386/pc.c
/openbmc/qemu/hw/i386/pc_q35.c
/openbmc/qemu/hw/ide/qdev.c
mips_gic.c
/openbmc/qemu/hw/isa/lpc_ich9.c
/openbmc/qemu/hw/isa/vt82c686.c
/openbmc/qemu/hw/mips/mips_int.c
/openbmc/qemu/hw/misc/edu.c
/openbmc/qemu/hw/pci-bridge/dec.c
/openbmc/qemu/hw/pci-bridge/i82801b11.c
/openbmc/qemu/hw/pci-bridge/pci_bridge_dev.c
/openbmc/qemu/hw/pci-bridge/pcie_pci_bridge.c
/openbmc/qemu/hw/pci-bridge/pcie_root_port.c
/openbmc/qemu/hw/pci-bridge/simba.c
/openbmc/qemu/hw/pci-bridge/xio3130_downstream.c
/openbmc/qemu/hw/pci-bridge/xio3130_upstream.c
/openbmc/qemu/hw/pci/pci.c
/openbmc/qemu/hw/pci/pci_bridge.c
/openbmc/qemu/hw/pci/pci_host.c
/openbmc/qemu/hw/ppc/pnv.c
/openbmc/qemu/hw/ppc/pnv_xscom.c
/openbmc/qemu/hw/ppc/spapr.c
/openbmc/qemu/hw/ppc/spapr_caps.c
/openbmc/qemu/hw/ppc/spapr_pci.c
/openbmc/qemu/hw/rdma/rdma_backend.c
/openbmc/qemu/hw/s390x/event-facility.c
/openbmc/qemu/hw/s390x/s390-virtio-ccw.c
/openbmc/qemu/hw/scsi/lsi53c895a.c
/openbmc/qemu/hw/scsi/mptsas.c
/openbmc/qemu/hw/scsi/scsi-disk.c
/openbmc/qemu/hw/scsi/vhost-scsi.c
/openbmc/qemu/hw/scsi/vhost-user-scsi.c
/openbmc/qemu/hw/scsi/virtio-scsi.c
/openbmc/qemu/hw/scsi/vmw_pvscsi.c
/openbmc/qemu/hw/sd/milkymist-memcard.c
/openbmc/qemu/hw/sd/ssi-sd.c
/openbmc/qemu/hw/semihosting/console.c
/openbmc/qemu/hw/usb/core.c
/openbmc/qemu/hw/usb/dev-hub.c
/openbmc/qemu/hw/usb/dev-mtp.c
/openbmc/qemu/hw/usb/dev-storage.c
/openbmc/qemu/hw/usb/host-libusb.c
/openbmc/qemu/hw/vfio/display.c
/openbmc/qemu/hw/vfio/pci.c
/openbmc/qemu/hw/virtio/vhost-user.c
/openbmc/qemu/hw/virtio/vhost.c
/openbmc/qemu/hw/watchdog/wdt_i6300esb.c
/openbmc/qemu/include/block/block.h
/openbmc/qemu/include/block/block_int.h
/openbmc/qemu/include/block/nvme.h
/openbmc/qemu/include/block/raw-aio.h
/openbmc/qemu/include/elf.h
/openbmc/qemu/include/exec/cpu-all.h
/openbmc/qemu/include/exec/cpu-defs.h
/openbmc/qemu/include/exec/cpu_ldst.h
/openbmc/qemu/include/exec/cpu_ldst_template.h
/openbmc/qemu/include/exec/cpu_ldst_useronly_template.h
/openbmc/qemu/include/exec/memory.h
/openbmc/qemu/include/exec/softmmu-semi.h
/openbmc/qemu/include/hw/acpi/acpi-defs.h
/openbmc/qemu/include/hw/acpi/pci.h
/openbmc/qemu/include/hw/block/block.h
/openbmc/qemu/include/hw/boards.h
/openbmc/qemu/include/hw/i386/pc.h
/openbmc/qemu/include/hw/pci/pci.h
/openbmc/qemu/include/hw/pci/pci_bus.h
/openbmc/qemu/include/hw/ppc/spapr.h
/openbmc/qemu/include/hw/qdev-properties.h
/openbmc/qemu/include/hw/scsi/scsi.h
/openbmc/qemu/include/hw/virtio/vhost-backend.h
/openbmc/qemu/include/hw/virtio/vhost-scsi-common.h
/openbmc/qemu/include/hw/virtio/virtio-gpu-bswap.h
/openbmc/qemu/include/hw/virtio/virtio-gpu-pci.h
/openbmc/qemu/include/hw/virtio/virtio-gpu-pixman.h
/openbmc/qemu/include/hw/virtio/virtio-gpu.h
/openbmc/qemu/include/sysemu/accel.h
/openbmc/qemu/include/sysemu/block-backend.h
/openbmc/qemu/include/ui/console.h
/openbmc/qemu/include/ui/egl-helpers.h
/openbmc/qemu/linux-user/aarch64/cpu_loop.c
/openbmc/qemu/linux-user/aarch64/signal.c
/openbmc/qemu/linux-user/alpha/cpu_loop.c
/openbmc/qemu/linux-user/arm/cpu_loop.c
/openbmc/qemu/linux-user/cpu_loop-common.h
/openbmc/qemu/linux-user/cris/cpu_loop.c
/openbmc/qemu/linux-user/elfload.c
/openbmc/qemu/linux-user/hppa/cpu_loop.c
/openbmc/qemu/linux-user/i386/cpu_loop.c
/openbmc/qemu/linux-user/i386/signal.c
/openbmc/qemu/linux-user/m68k-sim.c
/openbmc/qemu/linux-user/m68k/cpu_loop.c
/openbmc/qemu/linux-user/m68k/target_cpu.h
/openbmc/qemu/linux-user/main.c
/openbmc/qemu/linux-user/microblaze/cpu_loop.c
/openbmc/qemu/linux-user/mips/cpu_loop.c
/openbmc/qemu/linux-user/nios2/cpu_loop.c
/openbmc/qemu/linux-user/riscv/cpu_loop.c
/openbmc/qemu/linux-user/s390x/signal.c
/openbmc/qemu/linux-user/signal.c
/openbmc/qemu/linux-user/syscall.c
/openbmc/qemu/linux-user/uname.c
/openbmc/qemu/linux-user/vm86.c
/openbmc/qemu/memory.c
/openbmc/qemu/migration/block-dirty-bitmap.c
/openbmc/qemu/migration/block.c
/openbmc/qemu/migration/fd.c
/openbmc/qemu/migration/fd.h
/openbmc/qemu/migration/ram.c
/openbmc/qemu/nbd/server.c
/openbmc/qemu/numa.c
/openbmc/qemu/qapi/block-core.json
/openbmc/qemu/qemu-img.c
/openbmc/qemu/qemu-options.hx
/openbmc/qemu/rules.mak
/openbmc/qemu/scripts/checkpatch.pl
/openbmc/qemu/scripts/tracetool/format/tcg_helper_c.py
/openbmc/qemu/target/alpha/cpu-param.h
/openbmc/qemu/target/alpha/cpu.h
/openbmc/qemu/target/alpha/helper.c
/openbmc/qemu/target/alpha/sys_helper.c
/openbmc/qemu/target/arm/arm-semi.c
/openbmc/qemu/target/arm/cpu-param.h
/openbmc/qemu/target/arm/cpu.h
/openbmc/qemu/target/arm/cpu64.c
/openbmc/qemu/target/arm/helper-a64.c
/openbmc/qemu/target/arm/helper.c
/openbmc/qemu/target/arm/op_helper.c
/openbmc/qemu/target/arm/translate-a64.c
/openbmc/qemu/target/arm/translate.c
/openbmc/qemu/target/arm/vfp_helper.c
/openbmc/qemu/target/cris/cpu-param.h
/openbmc/qemu/target/cris/cpu.h
/openbmc/qemu/target/cris/mmu.c
/openbmc/qemu/target/cris/op_helper.c
/openbmc/qemu/target/cris/translate.c
/openbmc/qemu/target/hppa/cpu-param.h
/openbmc/qemu/target/hppa/cpu.h
/openbmc/qemu/target/hppa/helper.c
/openbmc/qemu/target/hppa/int_helper.c
/openbmc/qemu/target/hppa/mem_helper.c
/openbmc/qemu/target/hppa/op_helper.c
/openbmc/qemu/target/i386/bpt_helper.c
/openbmc/qemu/target/i386/cpu-param.h
/openbmc/qemu/target/i386/cpu.c
/openbmc/qemu/target/i386/cpu.h
/openbmc/qemu/target/i386/excp_helper.c
/openbmc/qemu/target/i386/fpu_helper.c
/openbmc/qemu/target/i386/hax-all.c
/openbmc/qemu/target/i386/helper.c
/openbmc/qemu/target/i386/hvf/x86_decode.c
/openbmc/qemu/target/i386/hvf/x86_emu.c
/openbmc/qemu/target/i386/mem_helper.c
/openbmc/qemu/target/i386/misc_helper.c
/openbmc/qemu/target/i386/seg_helper.c
/openbmc/qemu/target/i386/smm_helper.c
/openbmc/qemu/target/i386/svm_helper.c
/openbmc/qemu/target/lm32/cpu-param.h
/openbmc/qemu/target/lm32/cpu.h
/openbmc/qemu/target/lm32/helper.c
/openbmc/qemu/target/lm32/op_helper.c
/openbmc/qemu/target/lm32/translate.c
/openbmc/qemu/target/m68k/cpu-param.h
/openbmc/qemu/target/m68k/cpu.h
/openbmc/qemu/target/m68k/helper.c
/openbmc/qemu/target/m68k/m68k-semi.c
/openbmc/qemu/target/m68k/op_helper.c
/openbmc/qemu/target/m68k/translate.c
/openbmc/qemu/target/microblaze/cpu-param.h
/openbmc/qemu/target/microblaze/cpu.h
/openbmc/qemu/target/microblaze/mmu.c
/openbmc/qemu/target/microblaze/op_helper.c
/openbmc/qemu/target/microblaze/translate.c
/openbmc/qemu/target/mips/cpu-param.h
/openbmc/qemu/target/mips/cpu.h
/openbmc/qemu/target/mips/dsp_helper.c
/openbmc/qemu/target/mips/helper.c
/openbmc/qemu/target/mips/lmi_helper.c
/openbmc/qemu/target/mips/mips-defs.h
/openbmc/qemu/target/mips/msa_helper.c
/openbmc/qemu/target/mips/op_helper.c
/openbmc/qemu/target/mips/translate.c
/openbmc/qemu/target/mips/translate_init.inc.c
/openbmc/qemu/target/moxie/cpu-param.h
/openbmc/qemu/target/moxie/cpu.h
/openbmc/qemu/target/nios2/cpu-param.h
/openbmc/qemu/target/nios2/cpu.h
/openbmc/qemu/target/nios2/mmu.c
/openbmc/qemu/target/nios2/op_helper.c
/openbmc/qemu/target/openrisc/cpu-param.h
/openbmc/qemu/target/openrisc/cpu.h
/openbmc/qemu/target/ppc/cpu-param.h
/openbmc/qemu/target/ppc/cpu.h
/openbmc/qemu/target/ppc/mmu_helper.c
/openbmc/qemu/target/riscv/cpu-param.h
/openbmc/qemu/target/riscv/cpu.h
/openbmc/qemu/target/s390x/Makefile.objs
/openbmc/qemu/target/s390x/arch_dump.c
/openbmc/qemu/target/s390x/cpu-param.h
/openbmc/qemu/target/s390x/cpu.c
/openbmc/qemu/target/s390x/cpu.h
/openbmc/qemu/target/s390x/cpu_models.c
/openbmc/qemu/target/s390x/excp_helper.c
/openbmc/qemu/target/s390x/fpu_helper.c
/openbmc/qemu/target/s390x/gdbstub.c
/openbmc/qemu/target/s390x/gen-features.c
/openbmc/qemu/target/s390x/helper.c
/openbmc/qemu/target/s390x/helper.h
/openbmc/qemu/target/s390x/insn-data.def
/openbmc/qemu/target/s390x/internal.h
/openbmc/qemu/target/s390x/kvm.c
/openbmc/qemu/target/s390x/machine.c
/openbmc/qemu/target/s390x/mem_helper.c
/openbmc/qemu/target/s390x/misc_helper.c
/openbmc/qemu/target/s390x/tcg_s390x.h
/openbmc/qemu/target/s390x/translate.c
/openbmc/qemu/target/s390x/translate_vx.inc.c
/openbmc/qemu/target/s390x/vec.h
/openbmc/qemu/target/s390x/vec_fpu_helper.c
/openbmc/qemu/target/s390x/vec_string_helper.c
/openbmc/qemu/target/sh4/cpu-param.h
/openbmc/qemu/target/sh4/cpu.h
/openbmc/qemu/target/sh4/op_helper.c
/openbmc/qemu/target/sparc/cpu-param.h
/openbmc/qemu/target/sparc/cpu.h
/openbmc/qemu/target/tilegx/cpu-param.h
/openbmc/qemu/target/tilegx/cpu.h
/openbmc/qemu/target/tricore/cpu-param.h
/openbmc/qemu/target/tricore/cpu.h
/openbmc/qemu/target/tricore/tricore-defs.h
/openbmc/qemu/target/unicore32/cpu-param.h
/openbmc/qemu/target/unicore32/cpu.h
/openbmc/qemu/target/xtensa/cpu-param.h
/openbmc/qemu/target/xtensa/cpu.h
/openbmc/qemu/tcg/aarch64/tcg-target.inc.c
/openbmc/qemu/tcg/arm/tcg-target.inc.c
/openbmc/qemu/tcg/i386/tcg-target.inc.c
/openbmc/qemu/tcg/mips/tcg-target.inc.c
/openbmc/qemu/tcg/ppc/tcg-target.inc.c
/openbmc/qemu/tcg/riscv/tcg-target.inc.c
/openbmc/qemu/tcg/s390/tcg-target.inc.c
/openbmc/qemu/tcg/sparc/tcg-target.inc.c
/openbmc/qemu/tests/Makefile.include
/openbmc/qemu/tests/bios-tables-test-allowed-diff.h
/openbmc/qemu/tests/bios-tables-test.c
/openbmc/qemu/tests/data/acpi/rebuild-expected-aml.sh
/openbmc/qemu/tests/data/acpi/virt/APIC
/openbmc/qemu/tests/data/acpi/virt/DSDT
/openbmc/qemu/tests/data/acpi/virt/FACP
/openbmc/qemu/tests/data/acpi/virt/GTDT
/openbmc/qemu/tests/data/acpi/virt/MCFG
/openbmc/qemu/tests/data/acpi/virt/SPCR
/openbmc/qemu/tests/ds1338-test.c
/openbmc/qemu/tests/libqos/arm-imx25-pdk-machine.c
/openbmc/qemu/tests/libqos/arm-n800-machine.c
/openbmc/qemu/tests/libqos/i2c-imx.c
/openbmc/qemu/tests/libqos/i2c-omap.c
/openbmc/qemu/tests/libqos/i2c.c
/openbmc/qemu/tests/libqos/i2c.h
/openbmc/qemu/tests/libqos/qgraph.c
/openbmc/qemu/tests/libqos/qgraph.h
/openbmc/qemu/tests/libqtest.c
/openbmc/qemu/tests/libqtest.h
/openbmc/qemu/tests/migration-test.c
/openbmc/qemu/tests/pca9552-test.c
/openbmc/qemu/tests/perf/block/qcow2/convert-blockstatus
/openbmc/qemu/tests/qemu-iotests/051
/openbmc/qemu/tests/qemu-iotests/051.out
/openbmc/qemu/tests/qemu-iotests/051.pc.out
/openbmc/qemu/tests/qemu-iotests/056
/openbmc/qemu/tests/qemu-iotests/060
/openbmc/qemu/tests/qemu-iotests/060.out
/openbmc/qemu/tests/qemu-iotests/102
/openbmc/qemu/tests/qemu-iotests/102.out
/openbmc/qemu/tests/qemu-iotests/141.out
/openbmc/qemu/tests/qemu-iotests/144.out
/openbmc/qemu/tests/qemu-iotests/240
/openbmc/qemu/tests/qemu-iotests/240.out
/openbmc/qemu/tests/qemu-iotests/250
/openbmc/qemu/tests/qemu-iotests/250.out
/openbmc/qemu/tests/qemu-iotests/254
/openbmc/qemu/tests/qemu-iotests/254.out
/openbmc/qemu/tests/qemu-iotests/255
/openbmc/qemu/tests/qemu-iotests/255.out
/openbmc/qemu/tests/qemu-iotests/check
/openbmc/qemu/tests/qemu-iotests/group
/openbmc/qemu/tests/qemu-iotests/iotests.py
/openbmc/qemu/tests/qos-test.c
/openbmc/qemu/tests/tcg/mips/include/test_utils_128.h
/openbmc/qemu/tests/tcg/mips/include/wrappers_msa.h
/openbmc/qemu/tests/tcg/mips/user/ase/msa/README
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-count/test_msa_nloc_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-count/test_msa_nloc_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-count/test_msa_nloc_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-count/test_msa_nloc_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-count/test_msa_nlzc_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-count/test_msa_nlzc_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-count/test_msa_nlzc_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-count/test_msa_nlzc_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-count/test_msa_pcnt_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-count/test_msa_pcnt_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-count/test_msa_pcnt_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-count/test_msa_pcnt_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-set/test_msa_bclr_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-set/test_msa_bclr_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-set/test_msa_bclr_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-set/test_msa_bclr_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-set/test_msa_bneg_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-set/test_msa_bneg_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-set/test_msa_bneg_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-set/test_msa_bneg_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-set/test_msa_bset_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-set/test_msa_bset_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-set/test_msa_bset_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-set/test_msa_bset_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/fixed-multiply/test_msa_mul_q_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/fixed-multiply/test_msa_mul_q_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/fixed-multiply/test_msa_mulr_q_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/fixed-multiply/test_msa_mulr_q_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/float-max-min/test_msa_fmax_a_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/float-max-min/test_msa_fmax_a_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/float-max-min/test_msa_fmax_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/float-max-min/test_msa_fmax_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/float-max-min/test_msa_fmin_a_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/float-max-min/test_msa_fmin_a_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/float-max-min/test_msa_fmin_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/float-max-min/test_msa_fmin_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_add_a_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_add_a_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_add_a_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_add_a_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_adds_a_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_adds_a_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_adds_a_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_adds_a_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_adds_s_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_adds_s_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_adds_s_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_adds_s_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_adds_u_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_adds_u_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_adds_u_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_adds_u_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_addv_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_addv_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_addv_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_addv_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_hadd_s_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_hadd_s_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_hadd_s_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_hadd_u_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_hadd_u_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-add/test_msa_hadd_u_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-average/test_msa_ave_s_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-average/test_msa_ave_s_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-average/test_msa_ave_s_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-average/test_msa_ave_s_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-average/test_msa_ave_u_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-average/test_msa_ave_u_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-average/test_msa_ave_u_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-average/test_msa_ave_u_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-average/test_msa_aver_s_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-average/test_msa_aver_s_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-average/test_msa_aver_s_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-average/test_msa_aver_s_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-average/test_msa_aver_u_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-average/test_msa_aver_u_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-average/test_msa_aver_u_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-average/test_msa_aver_u_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-compare/test_msa_ceq_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-compare/test_msa_ceq_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-compare/test_msa_ceq_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-compare/test_msa_ceq_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-compare/test_msa_cle_s_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-compare/test_msa_cle_s_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-compare/test_msa_cle_s_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-compare/test_msa_cle_s_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-compare/test_msa_cle_u_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-compare/test_msa_cle_u_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-compare/test_msa_cle_u_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-compare/test_msa_cle_u_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-compare/test_msa_clt_s_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-compare/test_msa_clt_s_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-compare/test_msa_clt_s_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-compare/test_msa_clt_s_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-compare/test_msa_clt_u_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-compare/test_msa_clt_u_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-compare/test_msa_clt_u_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-compare/test_msa_clt_u_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-divide/test_msa_div_s_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-divide/test_msa_div_s_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-divide/test_msa_div_s_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-divide/test_msa_div_s_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-divide/test_msa_div_u_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-divide/test_msa_div_u_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-divide/test_msa_div_u_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-divide/test_msa_div_u_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-dot-product/test_msa_dotp_s_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-dot-product/test_msa_dotp_s_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-dot-product/test_msa_dotp_s_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-dot-product/test_msa_dotp_u_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-dot-product/test_msa_dotp_u_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-dot-product/test_msa_dotp_u_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_max_a_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_max_a_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_max_a_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_max_a_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_max_s_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_max_s_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_max_s_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_max_s_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_max_u_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_max_u_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_max_u_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_max_u_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_min_a_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_min_a_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_min_a_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_min_a_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_min_s_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_min_s_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_min_s_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_min_s_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_min_u_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_min_u_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_min_u_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-max-min/test_msa_min_u_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-modulo/test_msa_mod_s_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-modulo/test_msa_mod_s_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-modulo/test_msa_mod_s_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-modulo/test_msa_mod_s_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-modulo/test_msa_mod_u_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-modulo/test_msa_mod_u_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-modulo/test_msa_mod_u_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-modulo/test_msa_mod_u_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-multiply/test_msa_mulv_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-multiply/test_msa_mulv_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-multiply/test_msa_mulv_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-multiply/test_msa_mulv_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_asub_s_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_asub_s_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_asub_s_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_asub_s_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_asub_u_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_asub_u_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_asub_u_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_asub_u_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_hsub_s_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_hsub_s_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_hsub_s_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_hsub_u_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_hsub_u_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_hsub_u_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_subs_s_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_subs_s_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_subs_s_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_subs_s_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_subs_u_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_subs_u_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_subs_u_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_subs_u_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_subsus_u_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_subsus_u_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_subsus_u_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_subsus_u_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_subsuu_s_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_subsuu_s_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_subsuu_s_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_subsuu_s_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_subv_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_subv_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_subv_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/int-subtract/test_msa_subv_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/interleave/test_msa_ilvev_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/interleave/test_msa_ilvev_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/interleave/test_msa_ilvev_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/interleave/test_msa_ilvev_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/interleave/test_msa_ilvl_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/interleave/test_msa_ilvl_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/interleave/test_msa_ilvl_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/interleave/test_msa_ilvl_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/interleave/test_msa_ilvod_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/interleave/test_msa_ilvod_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/interleave/test_msa_ilvod_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/interleave/test_msa_ilvod_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/interleave/test_msa_ilvr_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/interleave/test_msa_ilvr_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/interleave/test_msa_ilvr_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/interleave/test_msa_ilvr_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/logic/test_msa_and_v.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/logic/test_msa_nor_v.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/logic/test_msa_or_v.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/logic/test_msa_xor_v.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/pack/test_msa_pckev_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/pack/test_msa_pckev_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/pack/test_msa_pckev_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/pack/test_msa_pckev_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/pack/test_msa_pckod_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/pack/test_msa_pckod_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/pack/test_msa_pckod_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/pack/test_msa_pckod_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/pack/test_msa_vshf_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/pack/test_msa_vshf_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/pack/test_msa_vshf_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/pack/test_msa_vshf_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/shift/test_msa_sll_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/shift/test_msa_sll_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/shift/test_msa_sll_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/shift/test_msa_sll_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/shift/test_msa_sra_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/shift/test_msa_sra_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/shift/test_msa_sra_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/shift/test_msa_sra_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/shift/test_msa_srar_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/shift/test_msa_srar_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/shift/test_msa_srar_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/shift/test_msa_srar_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/shift/test_msa_srl_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/shift/test_msa_srl_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/shift/test_msa_srl_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/shift/test_msa_srl_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/shift/test_msa_srlr_b.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/shift/test_msa_srlr_d.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/shift/test_msa_srlr_h.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/shift/test_msa_srlr_w.c
/openbmc/qemu/tests/tcg/mips/user/ase/msa/test_msa_compile.sh
/openbmc/qemu/tests/tcg/mips/user/ase/msa/test_msa_run.sh
/openbmc/qemu/tests/test-bdrv-drain.c
/openbmc/qemu/tests/test-bdrv-graph-mod.c
/openbmc/qemu/tests/test-block-backend.c
/openbmc/qemu/tests/test-block-iothread.c
/openbmc/qemu/tests/test-blockjob.c
/openbmc/qemu/tests/test-thread-pool.c
/openbmc/qemu/tests/test-throttle.c
/openbmc/qemu/tests/tmp105-test.c
/openbmc/qemu/tests/virtio-scsi-test.c
/openbmc/qemu/ui/curses.c
/openbmc/qemu/ui/egl-helpers.c
/openbmc/qemu/ui/spice-app.c
/openbmc/qemu/ui/spice-display.c
/openbmc/qemu/util/Makefile.objs
/openbmc/qemu/util/guest-random.c
/openbmc/qemu/vl.c
cdd71c8e22-May-2019 Cédric Le Goater <clg@kaod.org>

spapr/xive: fix multiple resets when using the 'dual' interrupt mode

Today, when a reset occurs on a pseries machine using the 'dual'
interrupt mode, the KVM devices are released and recreated depen

spapr/xive: fix multiple resets when using the 'dual' interrupt mode

Today, when a reset occurs on a pseries machine using the 'dual'
interrupt mode, the KVM devices are released and recreated depending
on the interrupt mode selected by CAS. If XIVE is selected, the SysBus
memory regions of the SpaprXive model are initialized by the KVM
backend initialization routine each time a reset occurs. This leads to
a crash after a couple of resets because the machine reaches the
QDEV_MAX_MMIO limit of SysBusDevice :

qemu-system-ppc64: hw/core/sysbus.c:193: sysbus_init_mmio: Assertion `dev->num_mmio < QDEV_MAX_MMIO' failed.

To fix, initialize the SysBus memory regions in spapr_xive_realize()
called only once and remove the same inits from the QEMU and KVM
backend initialization routines which are called at each reset.

Reported-by: Satheesh Rajendran <sathnaga@linux.vnet.ibm.com>
Signed-off-by: Cédric Le Goater <clg@kaod.org>
Message-Id: <20190522074016.10521-2-clg@kaod.org>
Reviewed-by: Greg Kurz <groug@kaod.org>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>

show more ...

3f777abc13-May-2019 Cédric Le Goater <clg@kaod.org>

spapr/irq: add KVM support to the 'dual' machine

The interrupt mode is chosen by the CAS negotiation process and
activated after a reset to take into account the required changes in
the machine. Thi

spapr/irq: add KVM support to the 'dual' machine

The interrupt mode is chosen by the CAS negotiation process and
activated after a reset to take into account the required changes in
the machine. This brings new constraints on how the associated KVM IRQ
device is initialized.

Currently, each model takes care of the initialization of the KVM
device in their realize method but this is not possible anymore as the
initialization needs to be done globaly when the interrupt mode is
known, i.e. when machine is reseted. It also means that we need a way
to delete a KVM device when another mode is chosen.

Also, to support migration, the QEMU objects holding the state to
transfer should always be available but not necessarily activated.

The overall approach of this proposal is to initialize both interrupt
mode at the QEMU level to keep the IRQ number space in sync and to
allow switching from one mode to another. For the KVM side of things,
the whole initialization of the KVM device, sources and presenters, is
grouped in a single routine. The XICS and XIVE sPAPR IRQ reset
handlers are modified accordingly to handle the init and the delete
sequences of the KVM device.

Signed-off-by: Cédric Le Goater <clg@kaod.org>
Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
Message-Id: <20190513084245.25755-15-clg@kaod.org>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>

show more ...

8362941913-May-2019 Cédric Le Goater <clg@kaod.org>

ppc/xics: fix irq priority in ics_set_irq_type()

Recent commits changed the behavior of ics_set_irq_type() to
initialize correctly LSIs at the KVM level. ics_set_irq_type() is also
called by the rea

ppc/xics: fix irq priority in ics_set_irq_type()

Recent commits changed the behavior of ics_set_irq_type() to
initialize correctly LSIs at the KVM level. ics_set_irq_type() is also
called by the realize routine of the different devices of the machine
when initial interrupts are claimed, before the ICSState device is
reseted.

In the case, the ICSIRQState priority is 0x0 and the call to
ics_set_irq_type() results in configuring the target of the
interrupt. On P9, when using the KVM XICS-on-XIVE device, the target
is configured to be server 0, priority 0 and the event queue 0 is
created automatically by KVM.

With the dual interrupt mode creating the KVM device at reset, it
leads to unexpected effects on the guest, mostly blocking IPIs. This
is wrong, fix it by reseting the ICSIRQState structure when
ics_set_irq_type() is called.

Fixes: commit 6cead90c5c9c ("xics: Write source state to KVM at claim time")
Signed-off-by: Greg Kurz <groug@kaod.org>
Signed-off-by: Cédric Le Goater <clg@kaod.org>
Message-Id: <20190513084245.25755-14-clg@kaod.org>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>

show more ...

cf435df613-May-2019 Cédric Le Goater <clg@kaod.org>

spapr/irq: initialize the IRQ device only once

Add a check to make sure that the routine initializing the emulated
IRQ device is called once. We don't have much to test on the XICS
side, so we intro

spapr/irq: initialize the IRQ device only once

Add a check to make sure that the routine initializing the emulated
IRQ device is called once. We don't have much to test on the XICS
side, so we introduce a 'init' boolean under ICSState.

Signed-off-by: Cédric Le Goater <clg@kaod.org>
Message-Id: <20190513084245.25755-13-clg@kaod.org>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>

show more ...

ae805ea913-May-2019 Cédric Le Goater <clg@kaod.org>

spapr/irq: introduce a spapr_irq_init_device() helper

The way the XICS and the XIVE devices are initialized follows the same
pattern. First, try to connect to the KVM device and if not possible
fall

spapr/irq: introduce a spapr_irq_init_device() helper

The way the XICS and the XIVE devices are initialized follows the same
pattern. First, try to connect to the KVM device and if not possible
fallback on the emulated device, unless a kernel_irqchip is required.
The spapr_irq_init_device() routine implements this sequence in
generic way using new sPAPR IRQ handlers ->init_emu() and ->init_kvm().

The XIVE init sequence is moved under the associated sPAPR IRQ
->init() handler. This will change again when KVM support is added for
the dual interrupt mode.

Signed-off-by: Cédric Le Goater <clg@kaod.org>
Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
Message-Id: <20190513084245.25755-12-clg@kaod.org>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>

show more ...

3bf84e9913-May-2019 Cédric Le Goater <clg@kaod.org>

spapr: check for the activation of the KVM IRQ device

The activation of the KVM IRQ device depends on the interrupt mode
chosen at CAS time by the machine and some methods used at reset or by
the mi

spapr: check for the activation of the KVM IRQ device

The activation of the KVM IRQ device depends on the interrupt mode
chosen at CAS time by the machine and some methods used at reset or by
the migration need to be protected.

Signed-off-by: Cédric Le Goater <clg@kaod.org>
Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
Signed-off-by: Cédric Le Goater <clg@kaod.org>
Message-Id: <20190513084245.25755-11-clg@kaod.org>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>

show more ...

56b1158713-May-2019 Cédric Le Goater <clg@kaod.org>

spapr: introduce routines to delete the KVM IRQ device

If a new interrupt mode is chosen by CAS, the machine generates a
reset to reconfigure. At this point, the connection with the previous
KVM dev

spapr: introduce routines to delete the KVM IRQ device

If a new interrupt mode is chosen by CAS, the machine generates a
reset to reconfigure. At this point, the connection with the previous
KVM device needs to be closed and a new connection needs to opened
with the KVM device operating the chosen interrupt mode.

New routines are introduced to destroy the XICS and the XIVE KVM
devices. They make use of a new KVM device ioctl which destroys the
device and also disconnects the IRQ presenters from the vCPUs.

Signed-off-by: Cédric Le Goater <clg@kaod.org>
Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
Message-Id: <20190513084245.25755-10-clg@kaod.org>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>

show more ...

277dd3d713-May-2019 Cédric Le Goater <clg@kaod.org>

spapr/xive: add migration support for KVM

When the VM is stopped, the VM state handler stabilizes the XIVE IC
and marks the EQ pages dirty. These are then transferred to destination
before the trans

spapr/xive: add migration support for KVM

When the VM is stopped, the VM state handler stabilizes the XIVE IC
and marks the EQ pages dirty. These are then transferred to destination
before the transfer of the device vmstates starts.

The SpaprXive interrupt controller model captures the XIVE internal
tables, EAT and ENDT and the XiveTCTX model does the same for the
thread interrupt context registers.

At restart, the SpaprXive 'post_load' method restores all the XIVE
states. It is called by the sPAPR machine 'post_load' method, when all
XIVE states have been transferred and loaded.

Finally, the source states are restored in the VM change state handler
when the machine reaches the running state.

Signed-off-by: Cédric Le Goater <clg@kaod.org>
Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
Message-Id: <20190513084245.25755-7-clg@kaod.org>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>

show more ...

9b88cd7613-May-2019 Cédric Le Goater <clg@kaod.org>

spapr/xive: introduce a VM state change handler

This handler is in charge of stabilizing the flow of event notifications
in the XIVE controller before migrating a guest. This is a requirement
before

spapr/xive: introduce a VM state change handler

This handler is in charge of stabilizing the flow of event notifications
in the XIVE controller before migrating a guest. This is a requirement
before transferring the guest EQ pages to a destination.

When the VM is stopped, the handler sets the source PQs to PENDING to
stop the flow of events and to possibly catch a triggered interrupt
occuring while the VM is stopped. Their previous state is saved. The
XIVE controller is then synced through KVM to flush any in-flight
event notification and to stabilize the EQs. At this stage, the EQ
pages are marked dirty to make sure the EQ pages are transferred if a
migration sequence is in progress.

The previous configuration of the sources is restored when the VM
resumes, after a migration or a stop. If an interrupt was queued while
the VM was stopped, the handler simply generates the missing trigger.

Signed-off-by: Cédric Le Goater <clg@kaod.org>
Reviewed-by: David Gibson <david@gibson.dropbear.id.au>
Message-Id: <20190513084245.25755-6-clg@kaod.org>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>

show more ...

7bfc759c13-May-2019 Cédric Le Goater <clg@kaod.org>

spapr/xive: add state synchronization with KVM

This extends the KVM XIVE device backend with 'synchronize_state'
methods used to retrieve the state from KVM. The HW state of the
sources, the KVM dev

spapr/xive: add state synchronization with KVM

This extends the KVM XIVE device backend with 'synchronize_state'
methods used to retrieve the state from KVM. The HW state of the
sources, the KVM device and the thread interrupt contexts are
collected for the monitor usage and also migration.

These get operations rely on their KVM counterpart in the host kernel
which acts as a proxy for OPAL, the host firmware. The set operations
will be added for migration support later.

Signed-off-by: Cédric Le Goater <clg@kaod.org>
Message-Id: <20190513084245.25755-5-clg@kaod.org>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>

show more ...

1...<<41424344454647484950>>...74