2008-05-09 11:39:00 +02:00
|
|
|
QEMU Maintainers
|
|
|
|
================
|
|
|
|
|
2010-09-09 21:51:31 +02:00
|
|
|
The intention of this file is not to establish who owns what portions of the
|
|
|
|
code base, but to provide a set of names that developers can consult when they
|
|
|
|
have a question about a particular subset and also to provide a set of names
|
|
|
|
to be CC'd when submitting a patch to obtain appropriate review.
|
2008-06-04 16:57:43 +02:00
|
|
|
|
2010-09-09 21:51:31 +02:00
|
|
|
In general, if you have a question about inclusion of a patch, you should
|
|
|
|
consult qemu-devel and not any specific individual privately.
|
2008-05-09 11:39:00 +02:00
|
|
|
|
2010-09-09 21:51:31 +02:00
|
|
|
Descriptions of section entries:
|
|
|
|
|
|
|
|
M: Mail patches to: FullName <address@domain>
|
2018-10-26 12:57:11 +02:00
|
|
|
Maintainers are looking after a certain area and must be CCed on
|
|
|
|
patches. They are considered the main contact point.
|
2014-06-02 18:06:37 +02:00
|
|
|
R: Designated reviewer: FullName <address@domain>
|
|
|
|
These reviewers should be CCed on patches.
|
2018-10-26 12:57:11 +02:00
|
|
|
Reviewers are familiar with the subject matter and provide feedback
|
|
|
|
even though they are not maintainers.
|
2010-09-09 21:51:31 +02:00
|
|
|
L: Mailing list that is relevant to this area
|
2018-10-26 12:57:11 +02:00
|
|
|
These lists should be CCed on patches.
|
2010-09-09 21:51:31 +02:00
|
|
|
W: Web-page with status/info
|
|
|
|
Q: Patchwork web based patch tracking system site
|
|
|
|
T: SCM tree type and location. Type is one of: git, hg, quilt, stgit.
|
|
|
|
S: Status, one of the following:
|
|
|
|
Supported: Someone is actually paid to look after this.
|
|
|
|
Maintained: Someone actually looks after it.
|
|
|
|
Odd Fixes: It has a maintainer but they don't have time to do
|
2011-11-09 20:45:38 +01:00
|
|
|
much other than throw the odd patch in. See below.
|
2010-09-09 21:51:31 +02:00
|
|
|
Orphan: No current maintainer [but maybe you could take the
|
|
|
|
role as you write your new code].
|
|
|
|
Obsolete: Old code. Something tagged obsolete generally means
|
|
|
|
it has been replaced by a better system and you
|
|
|
|
should be using that.
|
|
|
|
F: Files and directories with wildcard patterns.
|
|
|
|
A trailing slash includes all files and subdirectory files.
|
|
|
|
F: drivers/net/ all files in and below drivers/net
|
|
|
|
F: drivers/net/* all files in drivers/net, but not below
|
|
|
|
F: */net/* all files in "any top level directory"/net
|
|
|
|
One pattern per line. Multiple F: lines acceptable.
|
|
|
|
X: Files and directories that are NOT maintained, same rules as F:
|
|
|
|
Files exclusions are tested before file matches.
|
|
|
|
Can be useful for excluding a specific subdirectory, for instance:
|
|
|
|
F: net/
|
|
|
|
X: net/ipv6/
|
|
|
|
matches all files in and below net excluding net/ipv6/
|
|
|
|
K: Keyword perl extended regex pattern to match content in a
|
|
|
|
patch or file. For instance:
|
|
|
|
K: of_get_profile
|
|
|
|
matches patches or files that contain "of_get_profile"
|
|
|
|
K: \b(printk|pr_(info|err))\b
|
|
|
|
matches patches or files that contain one or more of the words
|
|
|
|
printk, pr_info or pr_err
|
|
|
|
One regex pattern per line. Multiple K: lines acceptable.
|
|
|
|
|
|
|
|
|
|
|
|
General Project Administration
|
|
|
|
------------------------------
|
2014-10-15 22:30:52 +02:00
|
|
|
M: Peter Maydell <peter.maydell@linaro.org>
|
2010-09-09 21:51:31 +02:00
|
|
|
|
2016-02-09 04:04:25 +01:00
|
|
|
All patches CC here
|
|
|
|
L: qemu-devel@nongnu.org
|
|
|
|
F: *
|
|
|
|
F: */
|
|
|
|
|
2014-04-17 15:45:46 +02:00
|
|
|
Responsible Disclosure, Reporting Security Issues
|
2019-06-06 19:24:08 +02:00
|
|
|
-------------------------------------------------
|
2017-11-21 13:04:35 +01:00
|
|
|
W: https://wiki.qemu.org/SecurityProcess
|
2014-04-17 15:45:46 +02:00
|
|
|
M: Michael S. Tsirkin <mst@redhat.com>
|
|
|
|
L: secalert@redhat.com
|
|
|
|
|
2016-10-08 12:00:07 +02:00
|
|
|
Trivial patches
|
|
|
|
---------------
|
|
|
|
Trivial patches
|
|
|
|
M: Michael Tokarev <mjt@tls.msk.ru>
|
|
|
|
M: Laurent Vivier <laurent@vivier.eu>
|
|
|
|
S: Maintained
|
|
|
|
L: qemu-trivial@nongnu.org
|
|
|
|
K: ^Subject:.*(?i)trivial
|
|
|
|
T: git git://git.corpit.ru/qemu.git trivial-patches
|
2018-11-08 12:15:26 +01:00
|
|
|
T: git https://github.com/vivier/qemu.git trivial-patches
|
2016-10-08 12:00:07 +02:00
|
|
|
|
2018-01-15 15:43:11 +01:00
|
|
|
Architecture support
|
|
|
|
--------------------
|
2019-06-06 19:24:07 +02:00
|
|
|
S390 general architecture support
|
2018-01-15 15:43:11 +01:00
|
|
|
M: Cornelia Huck <cohuck@redhat.com>
|
2020-05-25 17:58:55 +02:00
|
|
|
M: Thomas Huth <thuth@redhat.com>
|
2018-01-15 15:43:11 +01:00
|
|
|
S: Supported
|
2021-07-07 15:17:43 +02:00
|
|
|
F: configs/devices/s390x-softmmu/default.mak
|
2018-01-15 15:43:11 +01:00
|
|
|
F: gdb-xml/s390*.xml
|
|
|
|
F: hw/char/sclp*.[hc]
|
|
|
|
F: hw/char/terminal3270.c
|
|
|
|
F: hw/intc/s390_flic.c
|
|
|
|
F: hw/intc/s390_flic_kvm.c
|
|
|
|
F: hw/s390x/
|
2018-10-10 19:03:07 +02:00
|
|
|
F: hw/vfio/ap.c
|
2018-01-15 15:43:11 +01:00
|
|
|
F: hw/vfio/ccw.c
|
|
|
|
F: hw/watchdog/wdt_diag288.c
|
|
|
|
F: include/hw/s390x/
|
|
|
|
F: include/hw/watchdog/wdt_diag288.h
|
|
|
|
F: pc-bios/s390-ccw/
|
|
|
|
F: pc-bios/s390-ccw.img
|
|
|
|
F: target/s390x/
|
2020-03-18 11:39:40 +01:00
|
|
|
F: docs/system/target-s390x.rst
|
|
|
|
F: docs/system/s390x/
|
2019-05-29 11:05:12 +02:00
|
|
|
F: tests/migration/s390x/
|
2018-01-15 15:43:11 +01:00
|
|
|
K: ^Subject:.*(?i)s390x?
|
2020-12-14 14:26:28 +01:00
|
|
|
T: git https://gitlab.com/cohuck/qemu.git s390-next
|
2018-01-15 15:43:11 +01:00
|
|
|
L: qemu-s390x@nongnu.org
|
|
|
|
|
2021-10-04 10:31:57 +02:00
|
|
|
MIPS general architecture support
|
|
|
|
M: Philippe Mathieu-Daudé <f4bug@amsat.org>
|
|
|
|
R: Jiaxun Yang <jiaxun.yang@flygoat.com>
|
|
|
|
S: Odd Fixes
|
|
|
|
K: ^Subject:.*(?i)mips
|
|
|
|
|
2019-06-06 19:24:08 +02:00
|
|
|
Guest CPU cores (TCG)
|
|
|
|
---------------------
|
2019-06-06 19:24:07 +02:00
|
|
|
Overall TCG CPUs
|
2020-11-13 05:35:43 +01:00
|
|
|
M: Richard Henderson <richard.henderson@linaro.org>
|
2018-10-19 14:25:42 +02:00
|
|
|
R: Paolo Bonzini <pbonzini@redhat.com>
|
2015-11-13 18:49:54 +01:00
|
|
|
S: Maintained
|
2020-06-29 11:35:02 +02:00
|
|
|
F: softmmu/cpus.c
|
2020-05-13 19:31:56 +02:00
|
|
|
F: cpus-common.c
|
2021-03-22 12:24:24 +01:00
|
|
|
F: page-vary.c
|
exec: Build page-vary-common.c with -fno-lto
In bbc17caf81f, we used an alias attribute to allow target_page
to be declared const, and yet be initialized late.
This fails when using LTO with several versions of gcc.
The compiler looks through the alias and decides that the const
variable is statically initialized to zero, then propagates that
zero to many uses of the variable.
This can be avoided by compiling one object file with -fno-lto.
In this way, any initializer cannot be seen, and the constant
propagation does not occur.
Since we are certain to have this separate compilation unit, we
can drop the alias attribute as well. We simply have differing
declarations for target_page in different compilation units.
Drop the use of init_target_page, and drop the configure detection
for CONFIG_ATTRIBUTE_ALIAS.
In order to change the compilation flags for a file with meson,
we must use a static_library. This runs into specific_ss, where
we would need to create many static_library instances.
Fix this by splitting page-vary.c: the page-vary-common.c part is
compiled once as a static_library, while the page-vary.c part is
left in specific_ss in order to handle the target-specific value
of TARGET_PAGE_BITS_MIN.
Reported-by: Gavin Shan <gshan@redhat.com>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20210321211534.2101231-1-richard.henderson@linaro.org>
[PMD: Fix typo in subject, split original patch in 3]
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Tested-by: Gavin Shan <gshan@redhat.com>
Message-Id: <20210322112427.4045204-4-f4bug@amsat.org>
[rth: Update MAINTAINERS]
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
2021-03-22 12:24:26 +01:00
|
|
|
F: page-vary-common.c
|
2017-06-29 17:03:04 +02:00
|
|
|
F: accel/tcg/
|
2018-11-22 13:57:18 +01:00
|
|
|
F: accel/stubs/tcg-stub.c
|
2020-12-14 15:02:33 +01:00
|
|
|
F: util/cacheinfo.c
|
|
|
|
F: util/cacheflush.c
|
2018-11-10 22:13:12 +01:00
|
|
|
F: scripts/decodetree.py
|
2019-02-23 22:00:10 +01:00
|
|
|
F: docs/devel/decodetree.rst
|
2015-11-13 18:49:54 +01:00
|
|
|
F: include/exec/cpu*.h
|
|
|
|
F: include/exec/exec-all.h
|
2014-10-22 00:18:01 +02:00
|
|
|
F: include/exec/helper*.h
|
2016-09-09 23:15:04 +02:00
|
|
|
F: include/sysemu/cpus.h
|
2019-05-23 16:35:05 +02:00
|
|
|
F: include/sysemu/tcg.h
|
2021-02-04 17:39:23 +01:00
|
|
|
F: include/hw/core/tcg-cpu-ops.h
|
2014-10-22 00:18:01 +02:00
|
|
|
|
2016-02-19 17:25:01 +01:00
|
|
|
FPU emulation
|
|
|
|
M: Aurelien Jarno <aurelien@aurel32.net>
|
|
|
|
M: Peter Maydell <peter.maydell@linaro.org>
|
2018-12-05 13:48:12 +01:00
|
|
|
M: Alex Bennée <alex.bennee@linaro.org>
|
|
|
|
S: Maintained
|
2016-02-19 17:25:01 +01:00
|
|
|
F: fpu/
|
|
|
|
F: include/fpu/
|
2018-12-05 13:48:12 +01:00
|
|
|
F: tests/fp/
|
2016-02-19 17:25:01 +01:00
|
|
|
|
2019-06-06 19:24:07 +02:00
|
|
|
Alpha TCG CPUs
|
2020-11-13 05:35:43 +01:00
|
|
|
M: Richard Henderson <richard.henderson@linaro.org>
|
2011-05-20 21:23:18 +02:00
|
|
|
S: Maintained
|
2016-10-11 08:56:52 +02:00
|
|
|
F: target/alpha/
|
2014-10-22 00:31:28 +02:00
|
|
|
F: tests/tcg/alpha/
|
2015-09-22 11:36:16 +02:00
|
|
|
F: disas/alpha.c
|
2008-05-09 11:39:00 +02:00
|
|
|
|
2019-06-06 19:24:07 +02:00
|
|
|
ARM TCG CPUs
|
2011-09-20 17:18:46 +02:00
|
|
|
M: Peter Maydell <peter.maydell@linaro.org>
|
2015-11-03 14:49:42 +01:00
|
|
|
L: qemu-arm@nongnu.org
|
2010-09-09 21:51:31 +02:00
|
|
|
S: Maintained
|
2016-10-11 08:56:52 +02:00
|
|
|
F: target/arm/
|
2018-04-05 16:45:32 +02:00
|
|
|
F: tests/tcg/arm/
|
2018-05-09 11:31:30 +02:00
|
|
|
F: tests/tcg/aarch64/
|
2021-05-26 19:04:21 +02:00
|
|
|
F: tests/qtest/arm-cpu-features.c
|
2013-02-04 15:19:30 +01:00
|
|
|
F: hw/arm/
|
|
|
|
F: hw/cpu/a*mpcore.c
|
2016-09-23 14:14:18 +02:00
|
|
|
F: include/hw/cpu/a*mpcore.h
|
2020-03-09 22:58:15 +01:00
|
|
|
F: docs/system/target-arm.rst
|
2020-11-20 16:45:40 +01:00
|
|
|
F: docs/system/arm/cpu-features.rst
|
2010-09-09 21:51:31 +02:00
|
|
|
|
2018-11-22 19:01:43 +01:00
|
|
|
ARM SMMU
|
|
|
|
M: Eric Auger <eric.auger@redhat.com>
|
|
|
|
L: qemu-arm@nongnu.org
|
|
|
|
S: Maintained
|
|
|
|
F: hw/arm/smmu*
|
|
|
|
F: include/hw/arm/smmu*
|
2021-11-05 16:53:54 +01:00
|
|
|
F: tests/avocado/smmu.py
|
2018-11-22 19:01:43 +01:00
|
|
|
|
2020-01-24 01:51:07 +01:00
|
|
|
AVR TCG CPUs
|
|
|
|
M: Michael Rolnik <mrolnik@gmail.com>
|
|
|
|
S: Maintained
|
2020-08-12 17:53:04 +02:00
|
|
|
F: docs/system/target-avr.rst
|
2020-01-26 18:52:23 +01:00
|
|
|
F: gdb-xml/avr-cpu.xml
|
2020-01-24 01:51:07 +01:00
|
|
|
F: target/avr/
|
2021-11-05 16:53:54 +01:00
|
|
|
F: tests/avocado/machine_avr6.py
|
2020-01-24 01:51:07 +01:00
|
|
|
|
2019-06-06 19:24:07 +02:00
|
|
|
CRIS TCG CPUs
|
2010-09-09 21:51:31 +02:00
|
|
|
M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
|
|
|
|
S: Maintained
|
2016-10-11 08:56:52 +02:00
|
|
|
F: target/cris/
|
2013-02-04 15:19:30 +01:00
|
|
|
F: hw/cris/
|
2016-09-23 18:08:46 +02:00
|
|
|
F: include/hw/cris/
|
2014-10-22 00:31:28 +02:00
|
|
|
F: tests/tcg/cris/
|
2015-09-22 11:36:16 +02:00
|
|
|
F: disas/cris.c
|
2010-09-09 21:51:31 +02:00
|
|
|
|
2021-02-08 06:45:51 +01:00
|
|
|
Hexagon TCG CPUs
|
|
|
|
M: Taylor Simpson <tsimpson@quicinc.com>
|
|
|
|
S: Supported
|
|
|
|
F: target/hexagon/
|
|
|
|
F: linux-user/hexagon/
|
|
|
|
F: tests/tcg/hexagon/
|
|
|
|
F: disas/hexagon.c
|
2021-07-07 15:17:43 +02:00
|
|
|
F: configs/targets/hexagon-linux-user/default.mak
|
2021-05-12 12:20:26 +02:00
|
|
|
F: docker/dockerfiles/debian-hexagon-cross.docker
|
|
|
|
F: docker/dockerfiles/debian-hexagon-cross.docker.d/build-toolchain.sh
|
2021-02-08 06:45:51 +01:00
|
|
|
|
2019-06-06 19:24:07 +02:00
|
|
|
HPPA (PA-RISC) TCG CPUs
|
2020-11-13 05:35:43 +01:00
|
|
|
M: Richard Henderson <richard.henderson@linaro.org>
|
2016-12-15 20:26:14 +01:00
|
|
|
S: Maintained
|
|
|
|
F: target/hppa/
|
|
|
|
F: disas/hppa.c
|
|
|
|
|
2022-06-06 14:42:51 +02:00
|
|
|
LoongArch TCG CPUs
|
|
|
|
M: Song Gao <gaosong@loongson.cn>
|
|
|
|
M: Xiaojuan Yang <yangxiaojuan@loongson.cn>
|
|
|
|
S: Maintained
|
|
|
|
F: target/loongarch/
|
2022-06-06 14:43:32 +02:00
|
|
|
F: tests/tcg/loongarch64/
|
2022-06-06 14:42:51 +02:00
|
|
|
|
2019-06-06 19:24:07 +02:00
|
|
|
M68K TCG CPUs
|
2016-05-06 12:30:29 +02:00
|
|
|
M: Laurent Vivier <laurent@vivier.eu>
|
|
|
|
S: Maintained
|
2016-10-11 08:56:52 +02:00
|
|
|
F: target/m68k/
|
2016-11-02 09:39:33 +01:00
|
|
|
F: disas/m68k.c
|
2010-09-09 21:51:31 +02:00
|
|
|
|
2019-06-06 19:24:07 +02:00
|
|
|
MicroBlaze TCG CPUs
|
2010-09-09 21:51:31 +02:00
|
|
|
M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
|
|
|
|
S: Maintained
|
2016-10-11 08:56:52 +02:00
|
|
|
F: target/microblaze/
|
2013-02-04 15:19:30 +01:00
|
|
|
F: hw/microblaze/
|
2015-09-22 11:36:16 +02:00
|
|
|
F: disas/microblaze.c
|
2021-10-26 12:22:12 +02:00
|
|
|
F: tests/docker/dockerfiles/debian-microblaze-cross.d/build-toolchain.sh
|
2021-10-26 12:22:17 +02:00
|
|
|
F: tests/tcg/nios2/Makefile.target
|
2010-09-09 21:51:31 +02:00
|
|
|
|
2019-06-06 19:24:07 +02:00
|
|
|
MIPS TCG CPUs
|
2020-10-09 17:05:13 +02:00
|
|
|
M: Philippe Mathieu-Daudé <f4bug@amsat.org>
|
2020-03-13 02:00:50 +01:00
|
|
|
R: Aurelien Jarno <aurelien@aurel32.net>
|
2020-07-01 20:25:58 +02:00
|
|
|
R: Jiaxun Yang <jiaxun.yang@flygoat.com>
|
2020-05-18 22:09:16 +02:00
|
|
|
R: Aleksandar Rikalo <aleksandar.rikalo@syrmia.com>
|
2020-10-09 17:05:13 +02:00
|
|
|
S: Odd Fixes
|
2016-10-11 08:56:52 +02:00
|
|
|
F: target/mips/
|
2020-11-02 11:30:30 +01:00
|
|
|
F: disas/mips.c
|
docs/system: Convert qemu-cpu-models.texi to rST
This doc was originally written by Daniel P. Berrangé
<berrange@redhat.com>, introduced via commit[1]: 2544e9e4aa (docs: add
guidance on configuring CPU models for x86, 2018-06-27).
In this patch:
- 1-1 conversion of Texinfo to rST, besides a couple of minor
tweaks that are too trivial to mention. (Thanks to Stephen
Finucane on IRC for the suggestion to use rST "definition lists"
instead of bullets in some places.)
Further modifications will be done via a separate patch.
- rST and related infra changes: manual page generation, Makefile
fixes, clean up references to qemu-cpu-models.texi, update year in
the copyright notice, etc.
[1] https://git.qemu.org/?p=qemu.git;a=commit;h=2544e9e4aa
As part of the conversion, we use a more generic 'author' attribution
for the manpage than we previously had, as agreed with the original
author Dan Berrange.
Signed-off-by: Kashyap Chamarthy <kchamart@redhat.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Tested-by: Alex Bennée <alex.bennee@linaro.org>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Message-id: 20200228153619.9906-16-peter.maydell@linaro.org
Message-id: 20200226113034.6741-15-pbonzini@redhat.com
[Move macros to defs.rst.inc, split in x86 and MIPS parts,
make qemu-cpu-models.rst a standalone document. - Paolo]
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
[PMM: Move defs.rst.inc setup to its own commit;
fix minor issues with MAINTAINERS file updates;
drop copyright date change; keep capitalization of
"QEMU Project developers" consistent with other uses;
minor Makefile fixups]
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
2020-02-28 16:36:01 +01:00
|
|
|
F: docs/system/cpu-models-mips.rst.inc
|
2014-10-22 00:31:28 +02:00
|
|
|
F: tests/tcg/mips/
|
2010-09-09 21:51:31 +02:00
|
|
|
|
2020-11-02 11:30:30 +01:00
|
|
|
MIPS TCG CPUs (nanoMIPS ISA)
|
2022-05-04 13:04:03 +02:00
|
|
|
M: Stefan Pejic <stefan.pejic@syrmia.com>
|
|
|
|
S: Maintained
|
2020-11-02 11:30:30 +01:00
|
|
|
F: disas/nanomips.*
|
2020-11-16 06:25:00 +01:00
|
|
|
F: target/mips/tcg/*nanomips*
|
2020-11-02 11:30:30 +01:00
|
|
|
|
2019-06-06 19:24:07 +02:00
|
|
|
NiosII TCG CPUs
|
2017-01-18 23:01:46 +01:00
|
|
|
M: Chris Wulff <crwulff@gmail.com>
|
|
|
|
M: Marek Vasut <marex@denx.de>
|
|
|
|
S: Maintained
|
|
|
|
F: target/nios2/
|
|
|
|
F: hw/nios2/
|
|
|
|
F: disas/nios2.c
|
2021-07-07 15:17:43 +02:00
|
|
|
F: configs/devices/nios2-softmmu/default.mak
|
2021-10-26 12:22:11 +02:00
|
|
|
F: tests/docker/dockerfiles/debian-nios2-cross.d/build-toolchain.sh
|
2017-01-18 23:01:46 +01:00
|
|
|
|
2019-06-06 19:24:07 +02:00
|
|
|
OpenRISC TCG CPUs
|
2017-03-15 14:37:41 +01:00
|
|
|
M: Stafford Horne <shorne@gmail.com>
|
|
|
|
S: Odd Fixes
|
2016-10-11 08:56:52 +02:00
|
|
|
F: target/openrisc/
|
2013-07-02 14:55:17 +02:00
|
|
|
F: hw/openrisc/
|
2014-10-22 00:31:28 +02:00
|
|
|
F: tests/tcg/openrisc/
|
2013-07-02 14:55:17 +02:00
|
|
|
|
2019-06-06 19:24:07 +02:00
|
|
|
PowerPC TCG CPUs
|
2021-11-05 04:28:51 +01:00
|
|
|
M: Cédric Le Goater <clg@kaod.org>
|
|
|
|
M: Daniel Henrique Barboza <danielhb413@gmail.com>
|
|
|
|
R: David Gibson <david@gibson.dropbear.id.au>
|
|
|
|
R: Greg Kurz <groug@kaod.org>
|
2012-01-13 14:33:57 +01:00
|
|
|
L: qemu-ppc@nongnu.org
|
2010-09-09 21:51:31 +02:00
|
|
|
S: Maintained
|
2016-10-11 08:56:52 +02:00
|
|
|
F: target/ppc/
|
2021-09-27 06:17:45 +02:00
|
|
|
F: hw/ppc/ppc.c
|
|
|
|
F: hw/ppc/ppc_booke.c
|
|
|
|
F: include/hw/ppc/ppc.h
|
2010-09-09 21:51:31 +02:00
|
|
|
|
2019-06-06 19:24:07 +02:00
|
|
|
RISC-V TCG CPUs
|
2019-10-29 17:39:03 +01:00
|
|
|
M: Palmer Dabbelt <palmer@dabbelt.com>
|
2021-04-07 00:48:25 +02:00
|
|
|
M: Alistair Francis <alistair.francis@wdc.com>
|
|
|
|
M: Bin Meng <bin.meng@windriver.com>
|
2018-10-30 17:19:05 +01:00
|
|
|
L: qemu-riscv@nongnu.org
|
2018-11-21 21:57:36 +01:00
|
|
|
S: Supported
|
2018-03-02 13:31:09 +01:00
|
|
|
F: target/riscv/
|
|
|
|
F: hw/riscv/
|
|
|
|
F: include/hw/riscv/
|
2018-12-19 20:16:31 +01:00
|
|
|
F: linux-user/host/riscv32/
|
2018-12-19 20:16:41 +01:00
|
|
|
F: linux-user/host/riscv64/
|
2018-03-02 13:31:09 +01:00
|
|
|
|
2022-02-02 01:52:49 +01:00
|
|
|
RISC-V XVentanaCondOps extension
|
|
|
|
M: Philipp Tomsich <philipp.tomsich@vrull.eu>
|
|
|
|
L: qemu-riscv@nongnu.org
|
|
|
|
S: Supported
|
|
|
|
F: target/riscv/XVentanaCondOps.decode
|
|
|
|
F: target/riscv/insn_trans/trans_xventanacondops.c.inc
|
|
|
|
|
2019-01-21 14:20:54 +01:00
|
|
|
RENESAS RX CPUs
|
2021-03-12 16:55:12 +01:00
|
|
|
R: Yoshinori Sato <ysato@users.sourceforge.jp>
|
|
|
|
S: Orphan
|
2019-01-21 14:20:54 +01:00
|
|
|
F: target/rx/
|
|
|
|
|
2019-06-06 19:24:07 +02:00
|
|
|
S390 TCG CPUs
|
2020-11-13 05:35:43 +01:00
|
|
|
M: Richard Henderson <richard.henderson@linaro.org>
|
2018-01-15 16:18:20 +01:00
|
|
|
M: David Hildenbrand <david@redhat.com>
|
2010-09-09 21:51:31 +02:00
|
|
|
S: Maintained
|
2016-10-11 08:56:52 +02:00
|
|
|
F: target/s390x/
|
2021-07-07 12:53:17 +02:00
|
|
|
F: target/s390x/tcg
|
2013-02-04 15:19:30 +01:00
|
|
|
F: hw/s390x/
|
2018-08-21 04:50:58 +02:00
|
|
|
F: tests/tcg/s390x/
|
2017-10-05 17:05:23 +02:00
|
|
|
L: qemu-s390x@nongnu.org
|
2010-09-09 21:51:31 +02:00
|
|
|
|
2019-06-06 19:24:07 +02:00
|
|
|
SH4 TCG CPUs
|
2021-03-12 16:55:13 +01:00
|
|
|
R: Yoshinori Sato <ysato@users.sourceforge.jp>
|
|
|
|
S: Orphan
|
2016-10-11 08:56:52 +02:00
|
|
|
F: target/sh4/
|
2013-02-04 15:19:30 +01:00
|
|
|
F: hw/sh4/
|
2015-09-22 11:36:16 +02:00
|
|
|
F: disas/sh4.c
|
2016-09-09 23:18:21 +02:00
|
|
|
F: include/hw/sh4/
|
2010-09-09 21:51:31 +02:00
|
|
|
|
2019-06-06 19:24:07 +02:00
|
|
|
SPARC TCG CPUs
|
2015-03-02 23:23:27 +01:00
|
|
|
M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
|
2016-06-20 22:55:16 +02:00
|
|
|
M: Artyom Tarasenko <atar4qemu@gmail.com>
|
2010-09-09 21:51:31 +02:00
|
|
|
S: Maintained
|
2016-10-11 08:56:52 +02:00
|
|
|
F: target/sparc/
|
2013-02-04 15:19:30 +01:00
|
|
|
F: hw/sparc/
|
|
|
|
F: hw/sparc64/
|
2018-11-25 21:49:37 +01:00
|
|
|
F: include/hw/sparc/sparc64.h
|
2015-09-22 11:36:16 +02:00
|
|
|
F: disas/sparc.c
|
2010-09-09 21:51:31 +02:00
|
|
|
|
2019-06-06 19:24:07 +02:00
|
|
|
X86 TCG CPUs
|
2014-10-21 15:16:06 +02:00
|
|
|
M: Paolo Bonzini <pbonzini@redhat.com>
|
2020-11-13 05:35:43 +01:00
|
|
|
M: Richard Henderson <richard.henderson@linaro.org>
|
2021-11-30 21:47:22 +01:00
|
|
|
M: Eduardo Habkost <eduardo@habkost.net>
|
2015-04-08 13:36:24 +02:00
|
|
|
S: Maintained
|
2021-03-22 14:27:40 +01:00
|
|
|
F: target/i386/tcg/
|
2018-04-05 16:35:11 +02:00
|
|
|
F: tests/tcg/i386/
|
2018-04-17 12:14:37 +02:00
|
|
|
F: tests/tcg/x86_64/
|
2013-02-04 15:19:30 +01:00
|
|
|
F: hw/i386/
|
2021-06-07 15:58:40 +02:00
|
|
|
F: docs/system/cpu-models-x86*
|
2020-12-14 22:20:32 +01:00
|
|
|
T: git https://gitlab.com/ehabkost/qemu.git x86-next
|
2010-09-09 21:51:31 +02:00
|
|
|
|
2019-06-06 19:24:07 +02:00
|
|
|
Xtensa TCG CPUs
|
2011-09-06 01:55:56 +02:00
|
|
|
M: Max Filippov <jcmvbkbc@gmail.com>
|
2018-02-28 06:15:34 +01:00
|
|
|
W: http://wiki.osll.ru/doku.php?id=etc:users:jcmvbkbc:qemu-target-xtensa
|
2011-09-06 01:55:56 +02:00
|
|
|
S: Maintained
|
2016-10-11 08:56:52 +02:00
|
|
|
F: target/xtensa/
|
2013-02-04 15:19:30 +01:00
|
|
|
F: hw/xtensa/
|
2014-10-22 00:31:28 +02:00
|
|
|
F: tests/tcg/xtensa/
|
2017-11-01 00:17:43 +01:00
|
|
|
F: disas/xtensa.c
|
2018-11-23 00:06:21 +01:00
|
|
|
F: include/hw/xtensa/xtensa-isa.h
|
2021-07-07 15:17:43 +02:00
|
|
|
F: configs/devices/xtensa*/default.mak
|
2011-09-06 01:55:56 +02:00
|
|
|
|
2019-06-06 19:24:07 +02:00
|
|
|
TriCore TCG CPUs
|
2014-09-01 13:59:46 +02:00
|
|
|
M: Bastian Koppelmann <kbastian@mail.uni-paderborn.de>
|
|
|
|
S: Maintained
|
2016-10-11 08:56:52 +02:00
|
|
|
F: target/tricore/
|
2014-09-01 13:59:46 +02:00
|
|
|
F: hw/tricore/
|
2016-09-09 23:17:09 +02:00
|
|
|
F: include/hw/tricore/
|
2021-05-12 12:20:34 +02:00
|
|
|
F: tests/tcg/tricore/
|
2014-09-01 13:59:46 +02:00
|
|
|
|
2018-04-05 16:03:22 +02:00
|
|
|
Multiarch Linux User Tests
|
|
|
|
M: Alex Bennée <alex.bennee@linaro.org>
|
2019-03-01 17:35:18 +01:00
|
|
|
S: Maintained
|
2018-04-05 16:03:22 +02:00
|
|
|
F: tests/tcg/multiarch/
|
|
|
|
|
2019-06-06 19:24:08 +02:00
|
|
|
Guest CPU Cores (KVM)
|
|
|
|
---------------------
|
2019-06-06 19:24:07 +02:00
|
|
|
Overall KVM CPUs
|
2013-06-04 15:06:37 +02:00
|
|
|
M: Paolo Bonzini <pbonzini@redhat.com>
|
2010-09-09 21:51:31 +02:00
|
|
|
L: kvm@vger.kernel.org
|
|
|
|
S: Supported
|
2020-06-18 14:33:33 +02:00
|
|
|
F: */*/kvm*
|
2017-06-29 17:03:05 +02:00
|
|
|
F: accel/kvm/
|
2018-11-22 13:57:18 +01:00
|
|
|
F: accel/stubs/kvm-stub.c
|
|
|
|
F: include/hw/kvm/
|
2016-02-25 13:33:25 +01:00
|
|
|
F: include/sysemu/kvm*.h
|
2018-11-22 13:57:18 +01:00
|
|
|
F: scripts/kvm/kvm_flightrecorder
|
2010-09-09 21:51:31 +02:00
|
|
|
|
2019-06-06 19:24:07 +02:00
|
|
|
ARM KVM CPUs
|
2013-03-05 01:34:43 +01:00
|
|
|
M: Peter Maydell <peter.maydell@linaro.org>
|
2015-11-03 14:49:42 +01:00
|
|
|
L: qemu-arm@nongnu.org
|
2013-03-05 01:34:43 +01:00
|
|
|
S: Maintained
|
2016-10-11 08:56:52 +02:00
|
|
|
F: target/arm/kvm.c
|
2013-03-05 01:34:43 +01:00
|
|
|
|
2019-06-06 19:24:07 +02:00
|
|
|
MIPS KVM CPUs
|
2020-12-05 10:22:01 +01:00
|
|
|
M: Huacai Chen <chenhuacai@kernel.org>
|
2020-02-24 12:50:58 +01:00
|
|
|
S: Odd Fixes
|
2021-04-13 10:31:44 +02:00
|
|
|
F: target/mips/kvm*
|
|
|
|
F: target/mips/sysemu/
|
2014-06-18 00:10:37 +02:00
|
|
|
|
2019-06-06 19:24:07 +02:00
|
|
|
PPC KVM CPUs
|
2021-11-05 04:28:51 +01:00
|
|
|
M: Cédric Le Goater <clg@kaod.org>
|
|
|
|
M: Daniel Henrique Barboza <danielhb413@gmail.com>
|
|
|
|
R: David Gibson <david@gibson.dropbear.id.au>
|
|
|
|
R: Greg Kurz <groug@kaod.org>
|
2010-09-09 21:51:31 +02:00
|
|
|
S: Maintained
|
2016-10-11 08:56:52 +02:00
|
|
|
F: target/ppc/kvm.c
|
2010-09-09 21:51:31 +02:00
|
|
|
|
2019-06-06 19:24:07 +02:00
|
|
|
S390 KVM CPUs
|
2018-12-04 14:38:02 +01:00
|
|
|
M: Halil Pasic <pasic@linux.ibm.com>
|
2021-11-26 11:24:49 +01:00
|
|
|
M: Christian Borntraeger <borntraeger@linux.ibm.com>
|
2019-02-13 11:31:59 +01:00
|
|
|
S: Supported
|
2021-07-07 12:53:23 +02:00
|
|
|
F: target/s390x/kvm/
|
2016-10-11 08:56:52 +02:00
|
|
|
F: target/s390x/machine.c
|
2017-09-28 22:36:54 +02:00
|
|
|
F: target/s390x/sigp.c
|
2020-03-23 09:36:06 +01:00
|
|
|
F: hw/s390x/pv.c
|
|
|
|
F: include/hw/s390x/pv.h
|
2015-11-04 15:59:55 +01:00
|
|
|
F: gdb-xml/s390*.xml
|
2018-11-08 12:15:26 +01:00
|
|
|
T: git https://github.com/borntraeger/qemu.git s390-next
|
2017-10-05 17:05:23 +02:00
|
|
|
L: qemu-s390x@nongnu.org
|
2010-09-09 21:51:31 +02:00
|
|
|
|
2019-06-06 19:24:07 +02:00
|
|
|
X86 KVM CPUs
|
2014-10-21 15:16:06 +02:00
|
|
|
M: Paolo Bonzini <pbonzini@redhat.com>
|
2010-09-09 21:51:31 +02:00
|
|
|
M: Marcelo Tosatti <mtosatti@redhat.com>
|
|
|
|
L: kvm@vger.kernel.org
|
|
|
|
S: Supported
|
2022-02-09 09:08:56 +01:00
|
|
|
F: docs/system/i386/amd-memory-encryption.rst
|
2021-10-07 19:56:09 +02:00
|
|
|
F: docs/system/i386/sgx.rst
|
2020-12-12 16:55:08 +01:00
|
|
|
F: target/i386/kvm/
|
2021-10-07 18:17:16 +02:00
|
|
|
F: target/i386/sev*
|
2018-11-22 13:57:18 +01:00
|
|
|
F: scripts/kvm/vmxcap
|
2010-09-09 21:51:31 +02:00
|
|
|
|
2020-06-18 14:33:34 +02:00
|
|
|
Guest CPU Cores (other accelerators)
|
|
|
|
------------------------------------
|
|
|
|
Overall
|
2020-11-13 05:35:43 +01:00
|
|
|
M: Richard Henderson <richard.henderson@linaro.org>
|
2020-06-18 14:33:34 +02:00
|
|
|
R: Paolo Bonzini <pbonzini@redhat.com>
|
|
|
|
S: Maintained
|
2021-02-04 17:39:24 +01:00
|
|
|
F: include/qemu/accel.h
|
2021-02-04 17:39:25 +01:00
|
|
|
F: include/sysemu/accel-ops.h
|
2021-02-04 17:39:26 +01:00
|
|
|
F: include/hw/core/accel-cpu.h
|
2021-02-04 17:39:25 +01:00
|
|
|
F: accel/accel-*.c
|
2020-06-18 14:33:34 +02:00
|
|
|
F: accel/Makefile.objs
|
|
|
|
F: accel/stubs/Makefile.objs
|
|
|
|
|
2021-09-16 17:53:58 +02:00
|
|
|
Apple Silicon HVF CPUs
|
|
|
|
M: Alexander Graf <agraf@csgraf.de>
|
|
|
|
S: Maintained
|
|
|
|
F: target/arm/hvf/
|
|
|
|
|
2020-03-16 18:18:27 +01:00
|
|
|
X86 HVF CPUs
|
2020-06-25 00:58:51 +02:00
|
|
|
M: Cameron Esfahani <dirty@apple.com>
|
2020-03-16 18:18:27 +01:00
|
|
|
M: Roman Bolshakov <r.bolshakov@yadro.com>
|
2020-06-25 00:58:51 +02:00
|
|
|
W: https://wiki.qemu.org/Features/HVF
|
2020-03-16 18:18:27 +01:00
|
|
|
S: Maintained
|
|
|
|
F: target/i386/hvf/
|
2021-06-03 15:09:30 +02:00
|
|
|
|
|
|
|
HVF
|
|
|
|
M: Cameron Esfahani <dirty@apple.com>
|
|
|
|
M: Roman Bolshakov <r.bolshakov@yadro.com>
|
|
|
|
W: https://wiki.qemu.org/Features/HVF
|
|
|
|
S: Maintained
|
|
|
|
F: accel/hvf/
|
2020-03-16 18:18:27 +01:00
|
|
|
F: include/sysemu/hvf.h
|
2021-06-03 15:09:30 +02:00
|
|
|
F: include/sysemu/hvf_int.h
|
2020-03-16 18:18:27 +01:00
|
|
|
|
2020-02-18 21:38:32 +01:00
|
|
|
WHPX CPUs
|
|
|
|
M: Sunil Muthuswamy <sunilmut@microsoft.com>
|
|
|
|
S: Supported
|
2020-12-12 16:55:09 +01:00
|
|
|
F: target/i386/whpx/
|
2020-02-18 21:38:32 +01:00
|
|
|
F: include/sysemu/whpx.h
|
|
|
|
|
2019-06-06 19:24:08 +02:00
|
|
|
Guest CPU Cores (Xen)
|
|
|
|
---------------------
|
2019-06-06 19:24:07 +02:00
|
|
|
X86 Xen CPUs
|
2016-03-29 12:02:49 +02:00
|
|
|
M: Stefano Stabellini <sstabellini@kernel.org>
|
|
|
|
M: Anthony Perard <anthony.perard@citrix.com>
|
2019-09-13 14:24:18 +02:00
|
|
|
M: Paul Durrant <paul@xen.org>
|
2016-11-25 16:30:40 +01:00
|
|
|
L: xen-devel@lists.xenproject.org
|
2011-07-29 17:05:13 +02:00
|
|
|
S: Supported
|
|
|
|
F: */xen*
|
2020-05-08 12:02:22 +02:00
|
|
|
F: accel/xen/*
|
2019-05-29 12:24:44 +02:00
|
|
|
F: hw/9pfs/xen-9p*
|
2015-09-22 11:36:48 +02:00
|
|
|
F: hw/char/xen_console.c
|
|
|
|
F: hw/display/xenfb.c
|
|
|
|
F: hw/net/xen_nic.c
|
2020-04-06 18:50:43 +02:00
|
|
|
F: hw/usb/xen-usb.c
|
2019-01-08 15:48:48 +01:00
|
|
|
F: hw/block/xen*
|
2019-01-08 15:48:53 +01:00
|
|
|
F: hw/block/dataplane/xen*
|
2015-09-22 11:36:48 +02:00
|
|
|
F: hw/xen/
|
|
|
|
F: hw/xenpv/
|
2015-12-21 15:58:28 +01:00
|
|
|
F: hw/i386/xen/
|
2019-12-09 10:50:01 +01:00
|
|
|
F: hw/pci-host/xen_igd_pt.c
|
2019-01-08 15:48:55 +01:00
|
|
|
F: include/hw/block/dataplane/xen*
|
2015-09-22 11:36:48 +02:00
|
|
|
F: include/hw/xen/
|
2020-05-08 12:02:22 +02:00
|
|
|
F: include/sysemu/xen.h
|
2015-12-21 15:58:28 +01:00
|
|
|
F: include/sysemu/xen-mapcache.h
|
2020-09-08 17:55:28 +02:00
|
|
|
F: stubs/xen-hw-stub.c
|
2011-07-29 17:05:13 +02:00
|
|
|
|
2020-02-28 02:20:46 +01:00
|
|
|
Guest CPU Cores (HAXM)
|
|
|
|
---------------------
|
|
|
|
X86 HAXM CPUs
|
|
|
|
M: Wenchao Wang <wenchao.wang@intel.com>
|
|
|
|
L: haxm-team@intel.com
|
|
|
|
W: https://github.com/intel/haxm/issues
|
|
|
|
S: Maintained
|
2020-06-18 14:33:35 +02:00
|
|
|
F: accel/stubs/hax-stub.c
|
2020-02-28 02:20:46 +01:00
|
|
|
F: include/sysemu/hax.h
|
2020-12-12 16:55:10 +01:00
|
|
|
F: target/i386/hax/
|
2020-02-28 02:20:46 +01:00
|
|
|
|
2021-04-02 22:25:35 +02:00
|
|
|
Guest CPU Cores (NVMM)
|
|
|
|
----------------------
|
|
|
|
NetBSD Virtual Machine Monitor (NVMM) CPU support
|
|
|
|
M: Kamil Rytarowski <kamil@netbsd.org>
|
|
|
|
M: Reinoud Zandijk <reinoud@netbsd.org>
|
|
|
|
S: Maintained
|
|
|
|
F: include/sysemu/nvmm.h
|
|
|
|
F: target/i386/nvmm/
|
|
|
|
|
2019-06-06 19:24:08 +02:00
|
|
|
Hosts
|
|
|
|
-----
|
2012-01-27 18:53:49 +01:00
|
|
|
LINUX
|
2018-12-18 12:56:11 +01:00
|
|
|
M: Michael S. Tsirkin <mst@redhat.com>
|
|
|
|
M: Cornelia Huck <cohuck@redhat.com>
|
|
|
|
M: Paolo Bonzini <pbonzini@redhat.com>
|
2012-01-27 18:53:49 +01:00
|
|
|
S: Maintained
|
|
|
|
F: linux-headers/
|
2018-12-18 12:56:11 +01:00
|
|
|
F: scripts/update-linux-headers.sh
|
2012-01-27 18:53:49 +01:00
|
|
|
|
|
|
|
POSIX
|
2018-12-18 12:56:12 +01:00
|
|
|
M: Paolo Bonzini <pbonzini@redhat.com>
|
2012-01-27 18:53:49 +01:00
|
|
|
S: Maintained
|
2018-12-18 12:56:12 +01:00
|
|
|
F: os-posix.c
|
|
|
|
F: include/sysemu/os-posix.h
|
|
|
|
F: util/*posix*.c
|
|
|
|
F: include/qemu/*posix*.h
|
2012-01-27 18:53:49 +01:00
|
|
|
|
2017-05-13 04:21:43 +02:00
|
|
|
NETBSD
|
|
|
|
M: Kamil Rytarowski <kamil@netbsd.org>
|
2021-04-02 22:25:35 +02:00
|
|
|
M: Reinoud Zandijk <reinoud@netbsd.org>
|
|
|
|
M: Ryo ONODERA <ryoon@netbsd.org>
|
2017-05-13 04:21:43 +02:00
|
|
|
S: Maintained
|
2017-07-27 12:09:34 +02:00
|
|
|
K: ^Subject:.*(?i)NetBSD
|
2017-05-13 04:21:43 +02:00
|
|
|
|
2018-02-16 17:46:20 +01:00
|
|
|
OPENBSD
|
|
|
|
M: Brad Smith <brad@comstyle.com>
|
|
|
|
S: Maintained
|
|
|
|
K: ^Subject:.*(?i)OpenBSD
|
|
|
|
|
2012-01-27 18:53:49 +01:00
|
|
|
W32, W64
|
|
|
|
M: Stefan Weil <sw@weilnetz.de>
|
|
|
|
S: Maintained
|
|
|
|
F: *win32*
|
2016-09-29 09:43:31 +02:00
|
|
|
F: */*win32*
|
|
|
|
F: include/*/*win32*
|
|
|
|
X: qga/*win32*
|
2015-09-25 22:25:32 +02:00
|
|
|
F: qemu.nsi
|
2012-01-27 18:53:49 +01:00
|
|
|
|
2022-03-14 18:28:35 +01:00
|
|
|
Darwin (macOS, iOS)
|
|
|
|
M: Philippe Mathieu-Daudé <f4bug@amsat.org>
|
|
|
|
S: Odd Fixes
|
|
|
|
F: .gitlab-ci.d/cirrus/macos-*
|
|
|
|
F: */*.m
|
|
|
|
|
2018-03-08 23:39:42 +01:00
|
|
|
Alpha Machines
|
2019-06-06 19:24:08 +02:00
|
|
|
--------------
|
2020-11-13 05:35:43 +01:00
|
|
|
M: Richard Henderson <richard.henderson@linaro.org>
|
2018-03-08 23:39:42 +01:00
|
|
|
S: Maintained
|
|
|
|
F: hw/alpha/
|
2018-03-08 23:39:43 +01:00
|
|
|
F: hw/isa/smc37c669-superio.c
|
2019-05-01 20:43:06 +02:00
|
|
|
F: tests/tcg/alpha/system/
|
2018-03-08 23:39:42 +01:00
|
|
|
|
2010-09-09 21:51:31 +02:00
|
|
|
ARM Machines
|
|
|
|
------------
|
2013-12-17 20:42:38 +01:00
|
|
|
Allwinner-a10
|
2015-09-24 02:29:37 +02:00
|
|
|
M: Beniamino Galvani <b.galvani@gmail.com>
|
2018-11-19 16:29:08 +01:00
|
|
|
M: Peter Maydell <peter.maydell@linaro.org>
|
2015-11-03 14:49:42 +01:00
|
|
|
L: qemu-arm@nongnu.org
|
2018-11-19 16:29:08 +01:00
|
|
|
S: Odd Fixes
|
2015-09-24 02:29:37 +02:00
|
|
|
F: hw/*/allwinner*
|
|
|
|
F: include/hw/*/allwinner*
|
2013-12-17 20:42:38 +01:00
|
|
|
F: hw/arm/cubieboard.c
|
2021-07-13 16:22:24 +02:00
|
|
|
F: docs/system/arm/cubieboard.rst
|
2013-12-17 20:42:38 +01:00
|
|
|
|
2020-03-11 23:18:37 +01:00
|
|
|
Allwinner-h3
|
|
|
|
M: Niek Linnenbank <nieklinnenbank@gmail.com>
|
|
|
|
L: qemu-arm@nongnu.org
|
|
|
|
S: Maintained
|
|
|
|
F: hw/*/allwinner-h3*
|
|
|
|
F: include/hw/*/allwinner-h3*
|
2020-03-11 23:18:38 +01:00
|
|
|
F: hw/arm/orangepi.c
|
2020-11-20 16:45:43 +01:00
|
|
|
F: docs/system/arm/orangepi.rst
|
2020-03-11 23:18:37 +01:00
|
|
|
|
2017-07-17 14:36:09 +02:00
|
|
|
ARM PrimeCell and CMSDK devices
|
2015-09-22 11:45:00 +02:00
|
|
|
M: Peter Maydell <peter.maydell@linaro.org>
|
2015-11-03 14:49:42 +01:00
|
|
|
L: qemu-arm@nongnu.org
|
2015-09-22 11:45:00 +02:00
|
|
|
S: Maintained
|
|
|
|
F: hw/char/pl011.c
|
2017-09-08 19:31:32 +02:00
|
|
|
F: include/hw/char/pl011.h
|
2015-09-22 11:45:00 +02:00
|
|
|
F: hw/display/pl110*
|
|
|
|
F: hw/dma/pl080.c
|
2018-08-20 12:24:33 +02:00
|
|
|
F: include/hw/dma/pl080.h
|
2015-09-22 11:45:00 +02:00
|
|
|
F: hw/dma/pl330.c
|
|
|
|
F: hw/gpio/pl061.c
|
|
|
|
F: hw/input/pl050.c
|
|
|
|
F: hw/intc/pl190.c
|
|
|
|
F: hw/sd/pl181.c
|
2018-08-24 14:17:44 +02:00
|
|
|
F: hw/ssi/pl022.c
|
|
|
|
F: include/hw/ssi/pl022.h
|
2019-10-04 01:03:52 +02:00
|
|
|
F: hw/rtc/pl031.c
|
|
|
|
F: include/hw/rtc/pl031.h
|
2015-09-22 11:45:00 +02:00
|
|
|
F: include/hw/arm/primecell.h
|
2017-07-17 14:36:09 +02:00
|
|
|
F: hw/timer/cmsdk-apb-timer.c
|
|
|
|
F: include/hw/timer/cmsdk-apb-timer.h
|
2021-01-28 12:41:23 +01:00
|
|
|
F: tests/qtest/cmsdk-apb-timer-test.c
|
2018-08-24 14:17:41 +02:00
|
|
|
F: hw/timer/cmsdk-apb-dualtimer.c
|
|
|
|
F: include/hw/timer/cmsdk-apb-dualtimer.h
|
2021-01-28 12:41:25 +01:00
|
|
|
F: tests/qtest/cmsdk-apb-dualtimer-test.c
|
2017-07-17 14:36:09 +02:00
|
|
|
F: hw/char/cmsdk-apb-uart.c
|
|
|
|
F: include/hw/char/cmsdk-apb-uart.h
|
2018-08-20 12:24:33 +02:00
|
|
|
F: hw/watchdog/cmsdk-apb-watchdog.c
|
|
|
|
F: include/hw/watchdog/cmsdk-apb-watchdog.h
|
2021-01-28 12:41:24 +01:00
|
|
|
F: tests/qtest/cmsdk-apb-watchdog-test.c
|
2018-05-31 15:50:51 +02:00
|
|
|
F: hw/misc/tz-ppc.c
|
|
|
|
F: include/hw/misc/tz-ppc.h
|
2018-06-22 14:28:39 +02:00
|
|
|
F: hw/misc/tz-mpc.c
|
|
|
|
F: include/hw/misc/tz-mpc.h
|
2018-08-24 14:17:43 +02:00
|
|
|
F: hw/misc/tz-msc.c
|
|
|
|
F: include/hw/misc/tz-msc.h
|
2015-09-22 11:45:00 +02:00
|
|
|
|
|
|
|
ARM cores
|
|
|
|
M: Peter Maydell <peter.maydell@linaro.org>
|
2015-11-03 14:49:42 +01:00
|
|
|
L: qemu-arm@nongnu.org
|
2015-09-22 11:45:00 +02:00
|
|
|
S: Maintained
|
|
|
|
F: hw/intc/arm*
|
|
|
|
F: hw/intc/gic_internal.h
|
|
|
|
F: hw/misc/a9scu.c
|
|
|
|
F: hw/misc/arm11scu.c
|
2019-01-07 16:23:47 +01:00
|
|
|
F: hw/misc/arm_l2x0.c
|
2021-08-12 11:33:32 +02:00
|
|
|
F: hw/misc/armv7m_ras.c
|
2015-09-22 11:45:00 +02:00
|
|
|
F: hw/timer/a9gtimer*
|
2017-09-08 19:31:32 +02:00
|
|
|
F: hw/timer/arm*
|
|
|
|
F: include/hw/arm/arm*.h
|
2015-09-22 11:45:00 +02:00
|
|
|
F: include/hw/intc/arm*
|
|
|
|
F: include/hw/misc/a9scu.h
|
|
|
|
F: include/hw/misc/arm11scu.h
|
|
|
|
F: include/hw/timer/a9gtimer.h
|
|
|
|
F: include/hw/timer/arm_mptimer.h
|
2017-09-08 19:31:32 +02:00
|
|
|
F: include/hw/timer/armv7m_systick.h
|
2021-08-12 11:33:32 +02:00
|
|
|
F: include/hw/misc/armv7m_ras.h
|
2019-09-09 12:04:01 +02:00
|
|
|
F: tests/qtest/test-arm-mptimer.c
|
2015-09-22 11:45:00 +02:00
|
|
|
|
2012-02-16 10:56:06 +01:00
|
|
|
Exynos
|
2013-07-31 08:27:35 +02:00
|
|
|
M: Igor Mitsyanko <i.mitsyanko@gmail.com>
|
2018-11-19 16:29:08 +01:00
|
|
|
M: Peter Maydell <peter.maydell@linaro.org>
|
2015-11-03 14:49:42 +01:00
|
|
|
L: qemu-arm@nongnu.org
|
2018-11-19 16:29:08 +01:00
|
|
|
S: Odd Fixes
|
2013-02-04 15:19:30 +01:00
|
|
|
F: hw/*/exynos*
|
2022-04-04 17:46:48 +02:00
|
|
|
F: include/hw/*/exynos*
|
2012-02-16 10:56:06 +01:00
|
|
|
|
2012-02-16 10:56:10 +01:00
|
|
|
Calxeda Highbank
|
2014-05-27 18:09:49 +02:00
|
|
|
M: Rob Herring <robh@kernel.org>
|
2018-11-19 16:29:08 +01:00
|
|
|
M: Peter Maydell <peter.maydell@linaro.org>
|
2015-11-03 14:49:42 +01:00
|
|
|
L: qemu-arm@nongnu.org
|
2018-11-19 16:29:08 +01:00
|
|
|
S: Odd Fixes
|
2013-02-04 15:19:30 +01:00
|
|
|
F: hw/arm/highbank.c
|
|
|
|
F: hw/net/xgmac.c
|
2021-07-13 16:22:26 +02:00
|
|
|
F: docs/system/arm/highbank.rst
|
2012-02-16 10:56:10 +01:00
|
|
|
|
2013-12-17 20:42:37 +01:00
|
|
|
Canon DIGIC
|
|
|
|
M: Antony Pavlov <antonynpavlov@gmail.com>
|
2018-11-19 16:29:08 +01:00
|
|
|
M: Peter Maydell <peter.maydell@linaro.org>
|
2015-11-03 14:49:42 +01:00
|
|
|
L: qemu-arm@nongnu.org
|
2018-11-19 16:29:08 +01:00
|
|
|
S: Odd Fixes
|
2013-12-17 20:42:37 +01:00
|
|
|
F: include/hw/arm/digic.h
|
|
|
|
F: hw/*/digic*
|
2018-11-25 21:49:50 +01:00
|
|
|
F: include/hw/*/digic*
|
2021-11-05 16:53:54 +01:00
|
|
|
F: tests/avocado/machine_arm_canona1100.py
|
2020-07-13 19:57:43 +02:00
|
|
|
F: docs/system/arm/digic.rst
|
2013-12-17 20:42:37 +01:00
|
|
|
|
2019-11-06 12:56:50 +01:00
|
|
|
Goldfish RTC
|
|
|
|
M: Anup Patel <anup.patel@wdc.com>
|
|
|
|
M: Alistair Francis <Alistair.Francis@wdc.com>
|
|
|
|
L: qemu-riscv@nongnu.org
|
|
|
|
S: Maintained
|
|
|
|
F: hw/rtc/goldfish_rtc.c
|
|
|
|
F: include/hw/rtc/goldfish_rtc.h
|
|
|
|
|
2010-09-09 21:51:31 +02:00
|
|
|
Gumstix
|
2018-11-19 16:29:08 +01:00
|
|
|
M: Peter Maydell <peter.maydell@linaro.org>
|
|
|
|
R: Philippe Mathieu-Daudé <f4bug@amsat.org>
|
2015-11-03 14:49:42 +01:00
|
|
|
L: qemu-arm@nongnu.org
|
2018-06-26 18:50:39 +02:00
|
|
|
S: Odd Fixes
|
2013-02-04 15:19:30 +01:00
|
|
|
F: hw/arm/gumstix.c
|
2020-07-13 19:57:45 +02:00
|
|
|
F: docs/system/arm/gumstix.rst
|
2010-09-09 21:51:31 +02:00
|
|
|
|
2018-11-26 14:39:23 +01:00
|
|
|
i.MX25 PDK
|
|
|
|
M: Peter Maydell <peter.maydell@linaro.org>
|
|
|
|
R: Jean-Christophe Dubois <jcd@tribudubois.net>
|
|
|
|
L: qemu-arm@nongnu.org
|
|
|
|
S: Odd Fixes
|
|
|
|
F: hw/arm/fsl-imx25.c
|
|
|
|
F: hw/arm/imx25_pdk.c
|
|
|
|
F: hw/misc/imx25_ccm.c
|
2020-05-17 18:21:28 +02:00
|
|
|
F: hw/watchdog/wdt_imx2.c
|
2018-11-26 14:39:23 +01:00
|
|
|
F: include/hw/arm/fsl-imx25.h
|
|
|
|
F: include/hw/misc/imx25_ccm.h
|
2020-05-17 18:21:28 +02:00
|
|
|
F: include/hw/watchdog/wdt_imx2.h
|
2021-07-22 19:52:29 +02:00
|
|
|
F: docs/system/arm/imx25-pdk.rst
|
2018-11-26 14:39:23 +01:00
|
|
|
|
2018-11-19 16:29:08 +01:00
|
|
|
i.MX31 (kzm)
|
2018-11-19 16:29:08 +01:00
|
|
|
M: Peter Maydell <peter.maydell@linaro.org>
|
2015-11-03 14:49:42 +01:00
|
|
|
L: qemu-arm@nongnu.org
|
2018-11-19 16:29:08 +01:00
|
|
|
S: Odd Fixes
|
2013-02-04 15:19:30 +01:00
|
|
|
F: hw/arm/kzm.c
|
2018-11-19 16:29:08 +01:00
|
|
|
F: hw/*/imx_*
|
|
|
|
F: hw/*/*imx31*
|
|
|
|
F: include/hw/*/imx_*
|
|
|
|
F: include/hw/*/*imx31*
|
2021-07-22 19:52:28 +02:00
|
|
|
F: docs/system/arm/kzm.rst
|
2012-07-04 12:43:34 +02:00
|
|
|
|
2010-09-09 21:51:31 +02:00
|
|
|
Integrator CP
|
2011-09-20 17:18:46 +02:00
|
|
|
M: Peter Maydell <peter.maydell@linaro.org>
|
2015-11-03 14:49:42 +01:00
|
|
|
L: qemu-arm@nongnu.org
|
2010-09-09 21:51:31 +02:00
|
|
|
S: Maintained
|
2013-02-04 15:19:30 +01:00
|
|
|
F: hw/arm/integratorcp.c
|
2016-09-23 14:14:18 +02:00
|
|
|
F: hw/misc/arm_integrator_debug.c
|
2019-01-07 16:23:47 +01:00
|
|
|
F: include/hw/misc/arm_integrator_debug.h
|
2021-11-05 16:53:54 +01:00
|
|
|
F: tests/avocado/machine_arm_integratorcp.py
|
2020-03-09 22:58:15 +01:00
|
|
|
F: docs/system/arm/integratorcp.rst
|
2010-09-09 21:51:31 +02:00
|
|
|
|
2018-11-19 16:29:08 +01:00
|
|
|
MCIMX6UL EVK / i.MX6ul
|
|
|
|
M: Peter Maydell <peter.maydell@linaro.org>
|
|
|
|
R: Jean-Christophe Dubois <jcd@tribudubois.net>
|
|
|
|
L: qemu-arm@nongnu.org
|
|
|
|
S: Odd Fixes
|
|
|
|
F: hw/arm/mcimx6ul-evk.c
|
|
|
|
F: hw/arm/fsl-imx6ul.c
|
|
|
|
F: hw/misc/imx6ul_ccm.c
|
|
|
|
F: include/hw/arm/fsl-imx6ul.h
|
|
|
|
F: include/hw/misc/imx6ul_ccm.h
|
|
|
|
|
|
|
|
MCIMX7D SABRE / i.MX7
|
|
|
|
M: Peter Maydell <peter.maydell@linaro.org>
|
|
|
|
R: Andrey Smirnov <andrew.smirnov@gmail.com>
|
|
|
|
L: qemu-arm@nongnu.org
|
|
|
|
S: Odd Fixes
|
|
|
|
F: hw/arm/mcimx7d-sabre.c
|
|
|
|
F: hw/arm/fsl-imx7.c
|
2019-01-07 16:23:47 +01:00
|
|
|
F: hw/misc/imx7_*.c
|
2018-11-19 16:29:08 +01:00
|
|
|
F: include/hw/arm/fsl-imx7.h
|
2019-01-07 16:23:47 +01:00
|
|
|
F: include/hw/misc/imx7_*.h
|
2018-11-19 16:29:08 +01:00
|
|
|
F: hw/pci-host/designware.c
|
|
|
|
F: include/hw/pci-host/designware.h
|
|
|
|
|
2017-07-17 14:36:09 +02:00
|
|
|
MPS2
|
|
|
|
M: Peter Maydell <peter.maydell@linaro.org>
|
|
|
|
L: qemu-arm@nongnu.org
|
|
|
|
S: Maintained
|
|
|
|
F: hw/arm/mps2.c
|
2018-05-31 15:50:51 +02:00
|
|
|
F: hw/arm/mps2-tz.c
|
|
|
|
F: hw/misc/mps2-*.c
|
|
|
|
F: include/hw/misc/mps2-*.h
|
2019-02-01 15:55:42 +01:00
|
|
|
F: hw/arm/armsse.c
|
|
|
|
F: include/hw/arm/armsse.h
|
2018-11-25 21:49:51 +01:00
|
|
|
F: hw/misc/iotkit-secctl.c
|
|
|
|
F: include/hw/misc/iotkit-secctl.h
|
2018-08-24 14:17:42 +02:00
|
|
|
F: hw/misc/iotkit-sysctl.c
|
|
|
|
F: include/hw/misc/iotkit-sysctl.h
|
2018-08-24 14:17:43 +02:00
|
|
|
F: hw/misc/iotkit-sysinfo.c
|
|
|
|
F: include/hw/misc/iotkit-sysinfo.h
|
2021-02-19 15:45:53 +01:00
|
|
|
F: hw/misc/armsse-cpu-pwrctrl.c
|
|
|
|
F: include/hw/misc/armsse-cpu-pwrctrl.h
|
2019-02-01 15:55:43 +01:00
|
|
|
F: hw/misc/armsse-cpuid.c
|
|
|
|
F: include/hw/misc/armsse-cpuid.h
|
2019-02-28 11:55:15 +01:00
|
|
|
F: hw/misc/armsse-mhu.c
|
|
|
|
F: include/hw/misc/armsse-mhu.h
|
2021-02-19 15:45:44 +01:00
|
|
|
F: hw/timer/sse-counter.c
|
|
|
|
F: include/hw/timer/sse-counter.h
|
2021-02-19 15:45:45 +01:00
|
|
|
F: hw/timer/sse-timer.c
|
|
|
|
F: include/hw/timer/sse-timer.h
|
2021-02-19 15:46:17 +01:00
|
|
|
F: tests/qtest/sse-timer-test.c
|
2020-05-07 17:18:18 +02:00
|
|
|
F: docs/system/arm/mps2.rst
|
2017-07-17 14:36:09 +02:00
|
|
|
|
2019-02-21 19:17:47 +01:00
|
|
|
Musca
|
|
|
|
M: Peter Maydell <peter.maydell@linaro.org>
|
|
|
|
L: qemu-arm@nongnu.org
|
|
|
|
S: Maintained
|
|
|
|
F: hw/arm/musca.c
|
2020-05-07 17:18:19 +02:00
|
|
|
F: docs/system/arm/musca.rst
|
2019-02-21 19:17:47 +01:00
|
|
|
|
2010-09-09 21:51:31 +02:00
|
|
|
Musicpal
|
|
|
|
M: Jan Kiszka <jan.kiszka@web.de>
|
2018-11-19 16:29:08 +01:00
|
|
|
M: Peter Maydell <peter.maydell@linaro.org>
|
2015-11-03 14:49:42 +01:00
|
|
|
L: qemu-arm@nongnu.org
|
2018-11-19 16:29:08 +01:00
|
|
|
S: Odd Fixes
|
2013-02-04 15:19:30 +01:00
|
|
|
F: hw/arm/musicpal.c
|
2022-01-07 19:44:29 +01:00
|
|
|
F: hw/net/mv88w8618_eth.c
|
|
|
|
F: include/hw/net/mv88w8618_eth.h
|
2020-03-09 22:58:15 +01:00
|
|
|
F: docs/system/arm/musicpal.rst
|
2010-09-09 21:51:31 +02:00
|
|
|
|
2020-09-11 07:20:48 +02:00
|
|
|
Nuvoton NPCM7xx
|
|
|
|
M: Havard Skinnemoen <hskinnemoen@google.com>
|
|
|
|
M: Tyrone Ting <kfting@nuvoton.com>
|
|
|
|
L: qemu-arm@nongnu.org
|
|
|
|
S: Supported
|
|
|
|
F: hw/*/npcm7xx*
|
|
|
|
F: include/hw/*/npcm7xx*
|
2020-10-23 23:06:34 +02:00
|
|
|
F: tests/qtest/npcm7xx*
|
2020-09-11 07:20:53 +02:00
|
|
|
F: pc-bios/npcm7xx_bootrom.bin
|
|
|
|
F: roms/vbootrom
|
2020-11-20 16:45:42 +01:00
|
|
|
F: docs/system/arm/nuvoton.rst
|
2020-09-11 07:20:48 +02:00
|
|
|
|
2010-09-09 21:51:31 +02:00
|
|
|
nSeries
|
2018-11-19 16:29:08 +01:00
|
|
|
M: Peter Maydell <peter.maydell@linaro.org>
|
2015-11-03 14:49:42 +01:00
|
|
|
L: qemu-arm@nongnu.org
|
2018-11-19 16:29:08 +01:00
|
|
|
S: Odd Fixes
|
2013-02-04 15:19:30 +01:00
|
|
|
F: hw/arm/nseries.c
|
2019-04-12 18:54:09 +02:00
|
|
|
F: hw/display/blizzard.c
|
2019-01-07 16:23:47 +01:00
|
|
|
F: hw/input/lm832x.c
|
|
|
|
F: hw/input/tsc2005.c
|
|
|
|
F: hw/misc/cbus.c
|
2019-10-04 01:03:57 +02:00
|
|
|
F: hw/rtc/twl92230.c
|
2019-04-12 18:54:09 +02:00
|
|
|
F: include/hw/display/blizzard.h
|
2021-06-17 13:53:20 +02:00
|
|
|
F: include/hw/input/lm832x.h
|
2019-04-12 18:54:12 +02:00
|
|
|
F: include/hw/input/tsc2xxx.h
|
2019-04-12 18:54:10 +02:00
|
|
|
F: include/hw/misc/cbus.h
|
2021-11-05 16:53:54 +01:00
|
|
|
F: tests/avocado/machine_arm_n8x0.py
|
2020-03-09 22:58:15 +01:00
|
|
|
F: docs/system/arm/nseries.rst
|
2010-09-09 21:51:31 +02:00
|
|
|
|
|
|
|
Palm
|
2018-11-19 16:29:08 +01:00
|
|
|
M: Peter Maydell <peter.maydell@linaro.org>
|
2015-11-03 14:49:42 +01:00
|
|
|
L: qemu-arm@nongnu.org
|
2018-11-19 16:29:08 +01:00
|
|
|
S: Odd Fixes
|
2013-02-04 15:19:30 +01:00
|
|
|
F: hw/arm/palm.c
|
2019-01-07 16:23:47 +01:00
|
|
|
F: hw/input/tsc210x.c
|
2019-04-12 18:54:12 +02:00
|
|
|
F: include/hw/input/tsc2xxx.h
|
2020-03-09 22:58:15 +01:00
|
|
|
F: docs/system/arm/palm.rst
|
2010-09-09 21:51:31 +02:00
|
|
|
|
2018-11-19 16:29:08 +01:00
|
|
|
Raspberry Pi
|
|
|
|
M: Peter Maydell <peter.maydell@linaro.org>
|
|
|
|
R: Philippe Mathieu-Daudé <f4bug@amsat.org>
|
|
|
|
L: qemu-arm@nongnu.org
|
|
|
|
S: Odd Fixes
|
2018-11-26 14:39:23 +01:00
|
|
|
F: hw/arm/raspi.c
|
2018-11-19 16:29:08 +01:00
|
|
|
F: hw/arm/raspi_platform.h
|
|
|
|
F: hw/*/bcm283*
|
|
|
|
F: include/hw/arm/raspi*
|
|
|
|
F: include/hw/*/bcm283*
|
2020-11-20 18:39:51 +01:00
|
|
|
F: docs/system/arm/raspi.rst
|
2018-11-19 16:29:08 +01:00
|
|
|
|
2010-09-09 21:51:31 +02:00
|
|
|
Real View
|
2011-09-20 17:18:46 +02:00
|
|
|
M: Peter Maydell <peter.maydell@linaro.org>
|
2015-11-03 14:49:42 +01:00
|
|
|
L: qemu-arm@nongnu.org
|
2010-09-09 21:51:31 +02:00
|
|
|
S: Maintained
|
2013-02-04 15:19:30 +01:00
|
|
|
F: hw/arm/realview*
|
2016-09-23 14:14:18 +02:00
|
|
|
F: hw/cpu/realview_mpcore.c
|
2015-09-22 11:49:41 +02:00
|
|
|
F: hw/intc/realview_gic.c
|
|
|
|
F: include/hw/intc/realview_gic.h
|
2020-03-09 22:58:15 +01:00
|
|
|
F: docs/system/arm/realview.rst
|
2010-09-09 21:51:31 +02:00
|
|
|
|
2015-09-22 11:42:50 +02:00
|
|
|
PXA2XX
|
2018-11-19 16:29:08 +01:00
|
|
|
M: Peter Maydell <peter.maydell@linaro.org>
|
2015-11-03 14:49:42 +01:00
|
|
|
L: qemu-arm@nongnu.org
|
2018-11-19 16:29:08 +01:00
|
|
|
S: Odd Fixes
|
2015-09-22 11:42:50 +02:00
|
|
|
F: hw/arm/mainstone.c
|
2013-02-04 15:19:30 +01:00
|
|
|
F: hw/arm/spitz.c
|
2015-09-22 11:42:50 +02:00
|
|
|
F: hw/arm/tosa.c
|
|
|
|
F: hw/arm/z2.c
|
|
|
|
F: hw/*/pxa2xx*
|
2018-11-26 14:39:23 +01:00
|
|
|
F: hw/display/tc6393xb.c
|
|
|
|
F: hw/gpio/max7310.c
|
|
|
|
F: hw/gpio/zaurus.c
|
2016-09-23 14:14:18 +02:00
|
|
|
F: hw/misc/mst_fpga.c
|
2021-05-18 22:54:52 +02:00
|
|
|
F: hw/adc/max111x.c
|
|
|
|
F: include/hw/adc/max111x.h
|
2016-02-25 12:22:04 +01:00
|
|
|
F: include/hw/arm/pxa.h
|
2018-11-26 14:39:23 +01:00
|
|
|
F: include/hw/arm/sharpsl.h
|
2019-04-12 18:54:08 +02:00
|
|
|
F: include/hw/display/tc6393xb.h
|
2020-03-09 22:58:15 +01:00
|
|
|
F: docs/system/arm/xscale.rst
|
2021-07-22 19:52:27 +02:00
|
|
|
F: docs/system/arm/mainstone.rst
|
2010-09-09 21:51:31 +02:00
|
|
|
|
2018-11-19 16:29:08 +01:00
|
|
|
SABRELITE / i.MX6
|
|
|
|
M: Peter Maydell <peter.maydell@linaro.org>
|
|
|
|
R: Jean-Christophe Dubois <jcd@tribudubois.net>
|
|
|
|
L: qemu-arm@nongnu.org
|
|
|
|
S: Odd Fixes
|
|
|
|
F: hw/arm/sabrelite.c
|
|
|
|
F: hw/arm/fsl-imx6.c
|
2019-01-07 16:23:47 +01:00
|
|
|
F: hw/misc/imx6_*.c
|
2018-11-19 16:29:08 +01:00
|
|
|
F: hw/ssi/imx_spi.c
|
2020-03-13 02:45:47 +01:00
|
|
|
F: hw/usb/imx-usb-phy.c
|
|
|
|
F: include/hw/usb/imx-usb-phy.h
|
2018-11-19 16:29:08 +01:00
|
|
|
F: include/hw/arm/fsl-imx6.h
|
2019-01-07 16:23:47 +01:00
|
|
|
F: include/hw/misc/imx6_*.h
|
2018-11-19 16:29:08 +01:00
|
|
|
F: include/hw/ssi/imx_spi.h
|
|
|
|
|
2019-07-01 18:26:18 +02:00
|
|
|
SBSA-REF
|
2020-05-12 19:07:04 +02:00
|
|
|
M: Radoslaw Biernacki <rad@semihalf.com>
|
2019-07-01 18:26:18 +02:00
|
|
|
M: Peter Maydell <peter.maydell@linaro.org>
|
2022-05-05 13:37:40 +02:00
|
|
|
R: Leif Lindholm <quic_llindhol@quicinc.com>
|
2019-07-01 18:26:18 +02:00
|
|
|
L: qemu-arm@nongnu.org
|
|
|
|
S: Maintained
|
|
|
|
F: hw/arm/sbsa-ref.c
|
2020-11-20 16:45:44 +01:00
|
|
|
F: docs/system/arm/sbsa.rst
|
2019-07-01 18:26:18 +02:00
|
|
|
|
2018-11-13 11:47:58 +01:00
|
|
|
Sharp SL-5500 (Collie) PDA
|
|
|
|
M: Peter Maydell <peter.maydell@linaro.org>
|
|
|
|
L: qemu-arm@nongnu.org
|
|
|
|
S: Odd Fixes
|
|
|
|
F: hw/arm/collie.c
|
|
|
|
F: hw/arm/strongarm*
|
2020-07-13 19:57:44 +02:00
|
|
|
F: docs/system/arm/collie.rst
|
2018-11-13 11:47:58 +01:00
|
|
|
|
2010-09-09 21:51:31 +02:00
|
|
|
Stellaris
|
2011-09-20 17:18:46 +02:00
|
|
|
M: Peter Maydell <peter.maydell@linaro.org>
|
2015-11-03 14:49:42 +01:00
|
|
|
L: qemu-arm@nongnu.org
|
2010-09-09 21:51:31 +02:00
|
|
|
S: Maintained
|
2013-02-04 15:19:30 +01:00
|
|
|
F: hw/*/stellaris*
|
2019-04-12 18:54:11 +02:00
|
|
|
F: include/hw/input/gamepad.h
|
2020-03-09 22:58:15 +01:00
|
|
|
F: docs/system/arm/stellaris.rst
|
2010-09-09 21:51:31 +02:00
|
|
|
|
2021-06-17 18:56:45 +02:00
|
|
|
STM32VLDISCOVERY
|
|
|
|
M: Alexandre Iooss <erdnaxe@crans.org>
|
|
|
|
L: qemu-arm@nongnu.org
|
|
|
|
S: Maintained
|
|
|
|
F: hw/arm/stm32vldiscovery.c
|
2021-06-17 18:56:46 +02:00
|
|
|
F: docs/system/arm/stm32.rst
|
2021-06-17 18:56:45 +02:00
|
|
|
|
2018-11-19 16:29:08 +01:00
|
|
|
Versatile Express
|
|
|
|
M: Peter Maydell <peter.maydell@linaro.org>
|
|
|
|
L: qemu-arm@nongnu.org
|
|
|
|
S: Maintained
|
|
|
|
F: hw/arm/vexpress.c
|
2020-05-07 17:18:17 +02:00
|
|
|
F: docs/system/arm/vexpress.rst
|
2018-11-19 16:29:08 +01:00
|
|
|
|
2010-09-09 21:51:31 +02:00
|
|
|
Versatile PB
|
2011-09-20 17:18:46 +02:00
|
|
|
M: Peter Maydell <peter.maydell@linaro.org>
|
2015-11-03 14:49:42 +01:00
|
|
|
L: qemu-arm@nongnu.org
|
2010-09-09 21:51:31 +02:00
|
|
|
S: Maintained
|
2013-02-04 15:19:30 +01:00
|
|
|
F: hw/*/versatile*
|
2020-06-17 09:25:29 +02:00
|
|
|
F: include/hw/i2c/arm_sbcon_i2c.h
|
2017-09-08 19:31:32 +02:00
|
|
|
F: hw/misc/arm_sysctl.c
|
2020-03-09 22:58:15 +01:00
|
|
|
F: docs/system/arm/versatile.rst
|
2010-09-09 21:51:31 +02:00
|
|
|
|
2018-11-19 16:29:08 +01:00
|
|
|
Virt
|
|
|
|
M: Peter Maydell <peter.maydell@linaro.org>
|
|
|
|
L: qemu-arm@nongnu.org
|
|
|
|
S: Maintained
|
|
|
|
F: hw/arm/virt*
|
|
|
|
F: include/hw/arm/virt.h
|
2020-07-13 19:57:46 +02:00
|
|
|
F: docs/system/arm/virt.rst
|
2022-04-19 11:09:56 +02:00
|
|
|
F: tests/avocado/machine_aarch64_virt.py
|
2018-11-19 16:29:08 +01:00
|
|
|
|
2012-03-05 05:39:13 +01:00
|
|
|
Xilinx Zynq
|
2016-07-28 18:55:39 +02:00
|
|
|
M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
|
2018-03-01 12:05:58 +01:00
|
|
|
M: Alistair Francis <alistair@alistair23.me>
|
2018-11-19 16:29:08 +01:00
|
|
|
M: Peter Maydell <peter.maydell@linaro.org>
|
2015-11-03 14:49:42 +01:00
|
|
|
L: qemu-arm@nongnu.org
|
2012-03-05 05:39:13 +01:00
|
|
|
S: Maintained
|
2016-07-28 18:55:39 +02:00
|
|
|
F: hw/*/xilinx_*
|
2013-02-04 15:19:30 +01:00
|
|
|
F: hw/*/cadence_*
|
2021-05-18 22:51:24 +02:00
|
|
|
F: hw/misc/zynq_slcr.c
|
|
|
|
F: hw/adc/zynq-xadc.c
|
|
|
|
F: include/hw/misc/zynq_slcr.h
|
|
|
|
F: include/hw/adc/zynq-xadc.h
|
2016-07-28 18:55:39 +02:00
|
|
|
X: hw/ssi/xilinx_*
|
2012-03-05 05:39:13 +01:00
|
|
|
|
2020-08-03 18:47:49 +02:00
|
|
|
Xilinx ZynqMP and Versal
|
2018-03-01 12:05:58 +01:00
|
|
|
M: Alistair Francis <alistair@alistair23.me>
|
2016-07-28 18:55:39 +02:00
|
|
|
M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
|
2018-11-19 16:29:08 +01:00
|
|
|
M: Peter Maydell <peter.maydell@linaro.org>
|
2015-11-03 14:49:42 +01:00
|
|
|
L: qemu-arm@nongnu.org
|
2015-08-25 16:45:07 +02:00
|
|
|
S: Maintained
|
2016-07-28 18:55:39 +02:00
|
|
|
F: hw/*/xlnx*.c
|
2016-09-05 14:28:52 +02:00
|
|
|
F: include/hw/*/xlnx*.h
|
2018-11-25 21:49:39 +01:00
|
|
|
F: include/hw/ssi/xilinx_spips.h
|
|
|
|
F: hw/display/dpcd.c
|
|
|
|
F: include/hw/display/dpcd.h
|
2020-08-03 18:47:49 +02:00
|
|
|
F: docs/system/arm/xlnx-versal-virt.rst
|
2015-08-25 16:45:07 +02:00
|
|
|
|
2022-01-21 17:11:41 +01:00
|
|
|
Xilinx Versal OSPI
|
|
|
|
M: Francisco Iglesias <francisco.iglesias@xilinx.com>
|
|
|
|
S: Maintained
|
|
|
|
F: hw/ssi/xlnx-versal-ospi.c
|
|
|
|
F: include/hw/ssi/xlnx-versal-ospi.h
|
|
|
|
|
2015-06-15 19:06:08 +02:00
|
|
|
ARM ACPI Subsystem
|
2017-12-13 18:59:26 +01:00
|
|
|
M: Shannon Zhao <shannon.zhaosl@gmail.com>
|
2015-11-03 14:49:42 +01:00
|
|
|
L: qemu-arm@nongnu.org
|
2015-06-15 19:06:08 +02:00
|
|
|
S: Maintained
|
|
|
|
F: hw/arm/virt-acpi-build.c
|
|
|
|
|
2021-06-17 18:56:44 +02:00
|
|
|
STM32F100
|
|
|
|
M: Alexandre Iooss <erdnaxe@crans.org>
|
|
|
|
L: qemu-arm@nongnu.org
|
|
|
|
S: Maintained
|
|
|
|
F: hw/arm/stm32f100_soc.c
|
|
|
|
|
2016-10-04 14:28:07 +02:00
|
|
|
STM32F205
|
|
|
|
M: Alistair Francis <alistair@alistair23.me>
|
2018-11-19 16:29:08 +01:00
|
|
|
M: Peter Maydell <peter.maydell@linaro.org>
|
2020-01-20 19:59:27 +01:00
|
|
|
L: qemu-arm@nongnu.org
|
2016-10-04 14:28:07 +02:00
|
|
|
S: Maintained
|
|
|
|
F: hw/arm/stm32f205_soc.c
|
|
|
|
F: hw/misc/stm32f2xx_syscfg.c
|
|
|
|
F: hw/char/stm32f2xx_usart.c
|
|
|
|
F: hw/timer/stm32f2xx_timer.c
|
|
|
|
F: hw/adc/*
|
|
|
|
F: hw/ssi/stm32f2xx_spi.c
|
2017-09-08 19:36:19 +02:00
|
|
|
F: include/hw/*/stm32*.h
|
2016-10-04 14:28:07 +02:00
|
|
|
|
2020-01-17 15:09:29 +01:00
|
|
|
STM32F405
|
|
|
|
M: Alistair Francis <alistair@alistair23.me>
|
|
|
|
M: Peter Maydell <peter.maydell@linaro.org>
|
2020-01-20 19:59:27 +01:00
|
|
|
L: qemu-arm@nongnu.org
|
2020-01-17 15:09:29 +01:00
|
|
|
S: Maintained
|
|
|
|
F: hw/arm/stm32f405_soc.c
|
|
|
|
F: hw/misc/stm32f4xx_syscfg.c
|
|
|
|
F: hw/misc/stm32f4xx_exti.c
|
|
|
|
|
2016-10-04 14:28:07 +02:00
|
|
|
Netduino 2
|
|
|
|
M: Alistair Francis <alistair@alistair23.me>
|
2018-11-19 16:29:08 +01:00
|
|
|
M: Peter Maydell <peter.maydell@linaro.org>
|
2020-01-20 19:59:27 +01:00
|
|
|
L: qemu-arm@nongnu.org
|
2016-10-04 14:28:07 +02:00
|
|
|
S: Maintained
|
|
|
|
F: hw/arm/netduino2.c
|
|
|
|
|
2020-01-17 15:09:29 +01:00
|
|
|
Netduino Plus 2
|
|
|
|
M: Alistair Francis <alistair@alistair23.me>
|
|
|
|
M: Peter Maydell <peter.maydell@linaro.org>
|
2020-01-20 19:59:27 +01:00
|
|
|
L: qemu-arm@nongnu.org
|
2020-01-17 15:09:29 +01:00
|
|
|
S: Maintained
|
|
|
|
F: hw/arm/netduinoplus2.c
|
|
|
|
|
2017-11-13 14:55:25 +01:00
|
|
|
SmartFusion2
|
|
|
|
M: Subbaraya Sundeep <sundeep.lkml@gmail.com>
|
2018-11-19 16:29:08 +01:00
|
|
|
M: Peter Maydell <peter.maydell@linaro.org>
|
2020-01-20 19:59:27 +01:00
|
|
|
L: qemu-arm@nongnu.org
|
2017-11-13 14:55:25 +01:00
|
|
|
S: Maintained
|
|
|
|
F: hw/arm/msf2-soc.c
|
|
|
|
F: hw/misc/msf2-sysreg.c
|
|
|
|
F: hw/timer/mss-timer.c
|
|
|
|
F: hw/ssi/mss-spi.c
|
|
|
|
F: include/hw/arm/msf2-soc.h
|
|
|
|
F: include/hw/misc/msf2-sysreg.h
|
|
|
|
F: include/hw/timer/mss-timer.h
|
|
|
|
F: include/hw/ssi/mss-spi.h
|
2020-04-16 16:54:49 +02:00
|
|
|
F: hw/net/msf2-emac.c
|
|
|
|
F: include/hw/net/msf2-emac.h
|
2017-11-13 14:55:25 +01:00
|
|
|
|
|
|
|
Emcraft M2S-FG484
|
|
|
|
M: Subbaraya Sundeep <sundeep.lkml@gmail.com>
|
2018-11-19 16:29:08 +01:00
|
|
|
M: Peter Maydell <peter.maydell@linaro.org>
|
2020-01-20 19:59:27 +01:00
|
|
|
L: qemu-arm@nongnu.org
|
2017-11-13 14:55:25 +01:00
|
|
|
S: Maintained
|
|
|
|
F: hw/arm/msf2-som.c
|
2021-07-13 16:22:25 +02:00
|
|
|
F: docs/system/arm/emcraft-sf2.rst
|
2017-11-13 14:55:25 +01:00
|
|
|
|
2018-06-26 18:50:39 +02:00
|
|
|
ASPEED BMCs
|
|
|
|
M: Cédric Le Goater <clg@kaod.org>
|
2018-11-19 16:29:08 +01:00
|
|
|
M: Peter Maydell <peter.maydell@linaro.org>
|
2018-06-26 18:50:39 +02:00
|
|
|
R: Andrew Jeffery <andrew@aj.id.au>
|
|
|
|
R: Joel Stanley <joel@jms.id.au>
|
|
|
|
L: qemu-arm@nongnu.org
|
|
|
|
S: Maintained
|
|
|
|
F: hw/*/*aspeed*
|
2019-01-07 16:23:47 +01:00
|
|
|
F: hw/misc/pca9552.c
|
2018-06-26 18:50:39 +02:00
|
|
|
F: include/hw/*/*aspeed*
|
2019-01-07 16:23:47 +01:00
|
|
|
F: include/hw/misc/pca9552*.h
|
2018-06-26 18:50:39 +02:00
|
|
|
F: hw/net/ftgmac100.c
|
|
|
|
F: include/hw/net/ftgmac100.h
|
2020-11-20 16:45:41 +01:00
|
|
|
F: docs/system/arm/aspeed.rst
|
2021-05-01 10:03:51 +02:00
|
|
|
F: tests/qtest/*aspeed*
|
2018-06-26 18:50:39 +02:00
|
|
|
|
2018-09-25 15:02:30 +02:00
|
|
|
NRF51
|
|
|
|
M: Joel Stanley <joel@jms.id.au>
|
2018-11-19 16:29:08 +01:00
|
|
|
M: Peter Maydell <peter.maydell@linaro.org>
|
2018-09-25 15:02:30 +02:00
|
|
|
L: qemu-arm@nongnu.org
|
|
|
|
S: Maintained
|
2019-01-29 12:46:04 +01:00
|
|
|
F: hw/*/nrf51*.c
|
|
|
|
F: hw/*/microbit*.c
|
|
|
|
F: include/hw/*/nrf51*.h
|
|
|
|
F: include/hw/*/microbit*.h
|
2019-09-09 12:04:01 +02:00
|
|
|
F: tests/qtest/microbit-test.c
|
2021-06-21 09:56:25 +02:00
|
|
|
F: docs/system/arm/nrf.rst
|
2018-09-25 15:02:30 +02:00
|
|
|
|
2020-01-24 01:51:21 +01:00
|
|
|
AVR Machines
|
|
|
|
-------------
|
|
|
|
|
|
|
|
AVR MCUs
|
|
|
|
M: Michael Rolnik <mrolnik@gmail.com>
|
|
|
|
S: Maintained
|
2021-07-07 15:17:43 +02:00
|
|
|
F: configs/devices/avr-softmmu/default.mak
|
2020-01-24 01:51:25 +01:00
|
|
|
F: hw/avr/
|
2020-01-24 01:51:17 +01:00
|
|
|
F: include/hw/char/avr_usart.h
|
|
|
|
F: hw/char/avr_usart.c
|
2020-01-24 01:51:18 +01:00
|
|
|
F: include/hw/timer/avr_timer16.h
|
|
|
|
F: hw/timer/avr_timer16.c
|
2020-01-24 01:51:19 +01:00
|
|
|
F: include/hw/misc/avr_power.h
|
|
|
|
F: hw/misc/avr_power.c
|
2020-01-24 01:51:21 +01:00
|
|
|
|
2020-01-24 01:51:27 +01:00
|
|
|
Arduino
|
|
|
|
M: Philippe Mathieu-Daudé <f4bug@amsat.org>
|
|
|
|
S: Maintained
|
|
|
|
F: hw/avr/arduino.c
|
|
|
|
|
2010-09-09 21:51:31 +02:00
|
|
|
CRIS Machines
|
|
|
|
-------------
|
|
|
|
Axis Dev88
|
|
|
|
M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
|
|
|
|
S: Maintained
|
2013-02-04 15:19:30 +01:00
|
|
|
F: hw/cris/axis_dev88.c
|
2013-06-24 12:49:32 +02:00
|
|
|
F: hw/*/etraxfs_*.c
|
2010-09-09 21:51:31 +02:00
|
|
|
|
2018-12-18 12:56:10 +01:00
|
|
|
HP-PARISC Machines
|
|
|
|
------------------
|
2019-12-20 22:15:07 +01:00
|
|
|
HP B160L
|
2020-11-13 05:35:43 +01:00
|
|
|
M: Richard Henderson <richard.henderson@linaro.org>
|
2018-12-18 12:56:10 +01:00
|
|
|
R: Helge Deller <deller@gmx.de>
|
|
|
|
S: Odd Fixes
|
2021-07-07 15:17:43 +02:00
|
|
|
F: configs/devices/hppa-softmmu/default.mak
|
2018-12-18 12:56:10 +01:00
|
|
|
F: hw/hppa/
|
2021-10-04 10:38:35 +02:00
|
|
|
F: hw/net/*i82596*
|
2022-05-04 11:25:52 +02:00
|
|
|
F: hw/misc/lasi.c
|
2022-05-04 11:25:32 +02:00
|
|
|
F: hw/pci-host/dino.c
|
2022-05-04 11:25:52 +02:00
|
|
|
F: include/hw/misc/lasi.h
|
2021-10-04 10:38:35 +02:00
|
|
|
F: include/hw/net/lasi_82596.h
|
2022-05-04 11:25:32 +02:00
|
|
|
F: include/hw/pci-host/dino.h
|
2018-12-18 12:56:10 +01:00
|
|
|
F: pc-bios/hppa-firmware.img
|
|
|
|
|
2022-06-06 14:43:08 +02:00
|
|
|
LoongArch Machines
|
|
|
|
------------------
|
|
|
|
Virt
|
|
|
|
M: Xiaojuan Yang <yangxiaojuan@loongson.cn>
|
|
|
|
M: Song Gao <gaosong@loongson.cn>
|
|
|
|
S: Maintained
|
|
|
|
F: docs/system/loongarch/loongson3.rst
|
2022-06-06 14:43:20 +02:00
|
|
|
F: configs/targets/loongarch64-softmmu.mak
|
|
|
|
F: configs/devices/loongarch64-softmmu/default.mak
|
|
|
|
F: hw/loongarch/
|
|
|
|
F: include/hw/loongarch/virt.h
|
2022-06-06 14:43:21 +02:00
|
|
|
F: include/hw/intc/loongarch_*.h
|
|
|
|
F: hw/intc/loongarch_*.c
|
2022-06-06 14:43:22 +02:00
|
|
|
F: include/hw/pci-host/ls7a.h
|
2022-06-06 14:43:28 +02:00
|
|
|
F: hw/rtc/ls7a_rtc.c
|
2022-06-06 14:43:31 +02:00
|
|
|
F: gdb-xml/loongarch*.xml
|
2022-06-06 14:43:08 +02:00
|
|
|
|
2011-01-14 20:39:19 +01:00
|
|
|
M68K Machines
|
2010-09-09 21:51:31 +02:00
|
|
|
-------------
|
|
|
|
an5206
|
2017-02-12 23:38:17 +01:00
|
|
|
M: Thomas Huth <huth@tuxfamily.org>
|
|
|
|
S: Odd Fixes
|
2013-02-04 15:19:30 +01:00
|
|
|
F: hw/m68k/an5206.c
|
2016-11-02 09:39:33 +01:00
|
|
|
F: hw/m68k/mcf5206.c
|
2010-09-09 21:51:31 +02:00
|
|
|
|
|
|
|
mcf5208
|
2017-02-12 23:38:17 +01:00
|
|
|
M: Thomas Huth <huth@tuxfamily.org>
|
|
|
|
S: Odd Fixes
|
2013-02-04 15:19:30 +01:00
|
|
|
F: hw/m68k/mcf5208.c
|
2016-11-02 09:39:33 +01:00
|
|
|
F: hw/m68k/mcf_intc.c
|
|
|
|
F: hw/char/mcf_uart.c
|
|
|
|
F: hw/net/mcf_fec.c
|
2017-02-12 23:38:17 +01:00
|
|
|
F: include/hw/m68k/mcf*.h
|
2010-09-09 21:51:31 +02:00
|
|
|
|
2018-06-30 10:33:57 +02:00
|
|
|
NeXTcube
|
|
|
|
M: Thomas Huth <huth@tuxfamily.org>
|
|
|
|
S: Odd Fixes
|
|
|
|
F: hw/m68k/next-*.c
|
|
|
|
F: hw/display/next-fb.c
|
|
|
|
F: include/hw/m68k/next-cube.h
|
|
|
|
|
2019-10-26 18:45:40 +02:00
|
|
|
q800
|
|
|
|
M: Laurent Vivier <laurent@vivier.eu>
|
|
|
|
S: Maintained
|
2019-10-26 18:45:45 +02:00
|
|
|
F: hw/m68k/q800.c
|
2019-10-26 18:45:40 +02:00
|
|
|
F: hw/misc/mac_via.c
|
2019-10-26 18:45:42 +02:00
|
|
|
F: hw/nubus/*
|
2019-10-26 18:45:43 +02:00
|
|
|
F: hw/display/macfb.c
|
2019-10-26 18:45:44 +02:00
|
|
|
F: hw/block/swim.c
|
2019-10-26 18:45:45 +02:00
|
|
|
F: hw/m68k/bootinfo.h
|
2020-12-20 12:26:09 +01:00
|
|
|
F: include/standard-headers/asm-m68k/bootinfo.h
|
|
|
|
F: include/standard-headers/asm-m68k/bootinfo-mac.h
|
2019-10-26 18:45:40 +02:00
|
|
|
F: include/hw/misc/mac_via.h
|
2019-10-26 18:45:42 +02:00
|
|
|
F: include/hw/nubus/*
|
2019-10-26 18:45:43 +02:00
|
|
|
F: include/hw/display/macfb.h
|
2019-10-26 18:45:44 +02:00
|
|
|
F: include/hw/block/swim.h
|
2019-10-26 18:45:40 +02:00
|
|
|
|
2021-03-12 22:41:45 +01:00
|
|
|
virt
|
|
|
|
M: Laurent Vivier <laurent@vivier.eu>
|
|
|
|
S: Maintained
|
|
|
|
F: hw/m68k/virt.c
|
|
|
|
F: hw/char/goldfish_tty.c
|
|
|
|
F: hw/intc/goldfish_pic.c
|
|
|
|
F: hw/intc/m68k_irqc.c
|
|
|
|
F: hw/misc/virt_ctrl.c
|
|
|
|
F: include/hw/char/goldfish_tty.h
|
|
|
|
F: include/hw/intc/goldfish_pic.h
|
|
|
|
F: include/hw/intc/m68k_irqc.h
|
|
|
|
F: include/hw/misc/virt_ctrl.h
|
|
|
|
|
2010-09-09 21:51:31 +02:00
|
|
|
MicroBlaze Machines
|
|
|
|
-------------------
|
|
|
|
petalogix_s3adsp1800
|
|
|
|
M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
|
|
|
|
S: Maintained
|
2013-06-24 12:49:32 +02:00
|
|
|
F: hw/microblaze/petalogix_s3adsp1800_mmu.c
|
2018-11-25 21:49:41 +01:00
|
|
|
F: include/hw/char/xilinx_uartlite.h
|
2021-11-05 16:53:54 +01:00
|
|
|
F: tests/avocado/machine_microblaze.py
|
2010-09-09 21:51:31 +02:00
|
|
|
|
2012-06-26 06:29:40 +02:00
|
|
|
petalogix_ml605
|
2015-08-25 16:45:06 +02:00
|
|
|
M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
|
2012-06-26 06:29:40 +02:00
|
|
|
S: Maintained
|
2013-02-04 15:19:30 +01:00
|
|
|
F: hw/microblaze/petalogix_ml605_mmu.c
|
2012-06-26 06:29:40 +02:00
|
|
|
|
2010-09-09 21:51:31 +02:00
|
|
|
MIPS Machines
|
|
|
|
-------------
|
2021-10-04 10:26:38 +02:00
|
|
|
Overall MIPS Machines
|
|
|
|
M: Philippe Mathieu-Daudé <f4bug@amsat.org>
|
|
|
|
S: Odd Fixes
|
|
|
|
F: configs/devices/mips*/*
|
|
|
|
F: hw/mips/
|
|
|
|
F: include/hw/mips/
|
|
|
|
|
2010-09-09 21:51:31 +02:00
|
|
|
Jazz
|
|
|
|
M: Hervé Poussineau <hpoussin@reactos.org>
|
2020-05-18 22:09:16 +02:00
|
|
|
R: Aleksandar Rikalo <aleksandar.rikalo@syrmia.com>
|
2010-09-09 21:51:31 +02:00
|
|
|
S: Maintained
|
2020-05-18 22:09:20 +02:00
|
|
|
F: hw/mips/jazz.c
|
2018-11-25 21:49:40 +01:00
|
|
|
F: hw/display/jazz_led.c
|
|
|
|
F: hw/dma/rc4030.c
|
2010-09-09 21:51:31 +02:00
|
|
|
|
|
|
|
Malta
|
2019-12-10 13:55:17 +01:00
|
|
|
M: Philippe Mathieu-Daudé <f4bug@amsat.org>
|
|
|
|
R: Aurelien Jarno <aurelien@aurel32.net>
|
2020-10-07 22:37:21 +02:00
|
|
|
S: Odd Fixes
|
2019-12-10 13:55:18 +01:00
|
|
|
F: hw/isa/piix4.c
|
|
|
|
F: hw/acpi/piix4.c
|
2020-05-18 22:09:20 +02:00
|
|
|
F: hw/mips/malta.c
|
2019-06-20 15:33:12 +02:00
|
|
|
F: hw/mips/gt64xxx_pci.c
|
2019-12-10 13:55:18 +01:00
|
|
|
F: include/hw/southbridge/piix.h
|
2021-11-05 16:53:54 +01:00
|
|
|
F: tests/avocado/linux_ssh_mips_malta.py
|
|
|
|
F: tests/avocado/machine_mips_malta.py
|
2010-09-09 21:51:31 +02:00
|
|
|
|
|
|
|
Mipssim
|
2020-05-18 22:09:16 +02:00
|
|
|
R: Aleksandar Rikalo <aleksandar.rikalo@syrmia.com>
|
2020-10-30 16:34:16 +01:00
|
|
|
S: Orphan
|
2020-05-18 22:09:20 +02:00
|
|
|
F: hw/mips/mipssim.c
|
2017-03-10 16:32:32 +01:00
|
|
|
F: hw/net/mipsnet.c
|
2010-09-09 21:51:31 +02:00
|
|
|
|
2020-04-26 12:16:37 +02:00
|
|
|
Fuloong 2E
|
2020-12-05 10:22:01 +01:00
|
|
|
M: Huacai Chen <chenhuacai@kernel.org>
|
2019-12-10 13:55:16 +01:00
|
|
|
M: Philippe Mathieu-Daudé <f4bug@amsat.org>
|
2020-04-08 11:16:20 +02:00
|
|
|
R: Jiaxun Yang <jiaxun.yang@flygoat.com>
|
2017-03-10 16:32:32 +01:00
|
|
|
S: Odd Fixes
|
2020-04-26 12:16:37 +02:00
|
|
|
F: hw/mips/fuloong2e.c
|
2018-03-08 23:39:41 +01:00
|
|
|
F: hw/isa/vt82c686.c
|
2018-11-22 14:02:40 +01:00
|
|
|
F: hw/pci-host/bonito.c
|
2021-03-09 20:08:02 +01:00
|
|
|
F: hw/usb/vt82c686-uhci-pci.c
|
2018-03-08 23:39:41 +01:00
|
|
|
F: include/hw/isa/vt82c686.h
|
2021-11-05 16:53:54 +01:00
|
|
|
F: tests/avocado/machine_mips_fuloong2e.py
|
2017-03-10 16:32:32 +01:00
|
|
|
|
2020-06-27 20:13:17 +02:00
|
|
|
Loongson-3 virtual platforms
|
2020-12-05 10:22:01 +01:00
|
|
|
M: Huacai Chen <chenhuacai@kernel.org>
|
2020-06-24 12:45:31 +02:00
|
|
|
R: Jiaxun Yang <jiaxun.yang@flygoat.com>
|
|
|
|
S: Maintained
|
|
|
|
F: hw/intc/loongson_liointc.c
|
2020-10-16 08:51:58 +02:00
|
|
|
F: hw/mips/loongson3_bootp.c
|
|
|
|
F: hw/mips/loongson3_bootp.h
|
hw/mips: Add Loongson-3 machine support
Add Loongson-3 based machine support, it use liointc as the interrupt
controler and use GPEX as the pci controller. Currently it can work with
both TCG and KVM.
As the machine model is not based on any exiting physical hardware, the
name of the machine is "loongson3-virt". It may be superseded in future
by a real machine model. If this happens, then a regular deprecation
procedure shall occur for "loongson3-virt" machine.
We now already have a full functional Linux kernel (based on Linux-5.4.x
LTS) here:
https://github.com/chenhuacai/linux
Of course the upstream kernel is also usable (the kvm host side and
guest side have both been upstream in Linux-5.9):
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
How to use QEMU/Loongson-3?
1, Download kernel source from the above URL;
2, Build a kernel with arch/mips/configs/loongson3_defconfig;
3, Boot a Loongson-3A4000 host with this kernel (for KVM mode);
4, Build QEMU-master with this patchset;
5, modprobe kvm (only necessary for KVM mode);
6, Use QEMU with TCG:
qemu-system-mips64el -M loongson3-virt,accel=tcg -cpu Loongson-3A1000 -kernel <path_to_kernel> -append ...
Use QEMU with KVM:
qemu-system-mips64el -M loongson3-virt,accel=kvm -cpu Loongson-3A4000 -kernel <path_to_kernel> -append ...
The "-cpu" parameter is optional here and QEMU will use the correct type for TCG/KVM automatically.
Co-developed-by: Jiaxun Yang <jiaxun.yang@flygoat.com>
Signed-off-by: Huacai Chen <chenhuacai@kernel.org>
Signed-off-by: Jiaxun Yang <jiaxun.yang@flygoat.com>
Message-Id: <20201221110538.3186646-5-chenhuacai@kernel.org>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
[PMD: Set TYPE_LOONGSON_MACHINE instance_size in TypeInfo,
select FW_CFG_MIPS in Kconfig]
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
2020-04-27 11:33:14 +02:00
|
|
|
F: hw/mips/loongson3_virt.c
|
2021-11-05 16:53:54 +01:00
|
|
|
F: tests/avocado/machine_mips_loongson3v.py
|
2020-06-24 12:45:31 +02:00
|
|
|
|
2017-03-10 16:32:32 +01:00
|
|
|
Boston
|
2020-10-09 18:15:59 +02:00
|
|
|
M: Paul Burton <paulburton@kernel.org>
|
2020-05-18 22:09:16 +02:00
|
|
|
R: Aleksandar Rikalo <aleksandar.rikalo@syrmia.com>
|
2020-10-09 18:15:59 +02:00
|
|
|
S: Odd Fixes
|
2017-03-10 16:32:32 +01:00
|
|
|
F: hw/core/loader-fit.c
|
|
|
|
F: hw/mips/boston.c
|
|
|
|
F: hw/pci-host/xilinx-pcie.c
|
2018-11-22 14:02:40 +01:00
|
|
|
F: include/hw/pci-host/xilinx-pcie.h
|
2017-03-10 16:32:32 +01:00
|
|
|
|
2013-07-02 14:55:17 +02:00
|
|
|
OpenRISC Machines
|
|
|
|
-----------------
|
|
|
|
or1k-sim
|
|
|
|
M: Jia Liu <proljc@gmail.com>
|
|
|
|
S: Maintained
|
|
|
|
F: hw/openrisc/openrisc_sim.c
|
|
|
|
|
2010-09-09 21:51:31 +02:00
|
|
|
PowerPC Machines
|
|
|
|
----------------
|
2022-01-12 11:28:26 +01:00
|
|
|
405 (ref405ep and taihu)
|
2012-01-13 14:33:57 +01:00
|
|
|
L: qemu-ppc@nongnu.org
|
2021-09-21 05:02:17 +02:00
|
|
|
S: Orphan
|
2013-02-04 15:19:30 +01:00
|
|
|
F: hw/ppc/ppc405_boards.c
|
2010-09-09 21:51:31 +02:00
|
|
|
|
2012-08-22 07:48:47 +02:00
|
|
|
Bamboo
|
|
|
|
L: qemu-ppc@nongnu.org
|
2021-09-21 05:02:17 +02:00
|
|
|
S: Orphan
|
2013-02-04 15:19:30 +01:00
|
|
|
F: hw/ppc/ppc440_bamboo.c
|
2021-11-05 16:53:54 +01:00
|
|
|
F: tests/avocado/ppc_bamboo.py
|
2012-08-22 07:48:47 +02:00
|
|
|
|
2012-08-22 07:48:45 +02:00
|
|
|
e500
|
|
|
|
L: qemu-ppc@nongnu.org
|
2021-09-21 05:02:17 +02:00
|
|
|
S: Orphan
|
2019-01-30 17:22:25 +01:00
|
|
|
F: hw/ppc/e500*
|
2019-01-02 16:57:56 +01:00
|
|
|
F: hw/gpio/mpc8xxx.c
|
2019-03-06 11:28:12 +01:00
|
|
|
F: hw/i2c/mpc_i2c.c
|
2019-01-30 17:22:25 +01:00
|
|
|
F: hw/net/fsl_etsec/
|
|
|
|
F: hw/pci-host/ppce500.c
|
2016-09-05 22:03:36 +02:00
|
|
|
F: include/hw/ppc/ppc_e500.h
|
|
|
|
F: include/hw/pci-host/ppce500.h
|
|
|
|
F: pc-bios/u-boot.e500
|
2021-09-21 05:34:35 +02:00
|
|
|
F: hw/intc/openpic_kvm.h
|
|
|
|
F: include/hw/ppc/openpic_kvm.h
|
2012-08-22 07:48:45 +02:00
|
|
|
|
|
|
|
mpc8544ds
|
|
|
|
L: qemu-ppc@nongnu.org
|
2021-09-21 05:02:17 +02:00
|
|
|
S: Orphan
|
2012-08-22 07:48:45 +02:00
|
|
|
F: hw/ppc/mpc8544ds.c
|
2013-02-04 15:19:30 +01:00
|
|
|
F: hw/ppc/mpc8544_guts.c
|
2021-11-05 16:53:54 +01:00
|
|
|
F: tests/avocado/ppc_mpc8544ds.py
|
2012-08-22 07:48:45 +02:00
|
|
|
|
2019-01-02 16:57:56 +01:00
|
|
|
New World (mac99)
|
2019-01-28 22:21:56 +01:00
|
|
|
M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
|
2012-01-13 14:33:57 +01:00
|
|
|
L: qemu-ppc@nongnu.org
|
2018-10-30 10:35:31 +01:00
|
|
|
S: Odd Fixes
|
2022-01-12 11:28:26 +01:00
|
|
|
F: docs/system/ppc/powermac.rst
|
2013-01-24 00:03:54 +01:00
|
|
|
F: hw/ppc/mac_newworld.c
|
2013-06-24 12:49:32 +02:00
|
|
|
F: hw/pci-host/uninorth.c
|
|
|
|
F: hw/pci-bridge/dec.[hc]
|
2013-02-04 15:19:30 +01:00
|
|
|
F: hw/misc/macio/
|
2018-06-06 16:59:20 +02:00
|
|
|
F: hw/misc/mos6522.c
|
2016-09-05 22:03:36 +02:00
|
|
|
F: hw/nvram/mac_nvram.c
|
2019-01-02 16:57:56 +01:00
|
|
|
F: hw/input/adb*
|
2018-06-06 16:59:19 +02:00
|
|
|
F: include/hw/misc/macio/
|
2018-06-06 16:59:20 +02:00
|
|
|
F: include/hw/misc/mos6522.h
|
2018-06-06 16:59:19 +02:00
|
|
|
F: include/hw/ppc/mac_dbdma.h
|
2018-11-22 14:02:40 +01:00
|
|
|
F: include/hw/pci-host/uninorth.h
|
2019-01-02 16:57:56 +01:00
|
|
|
F: include/hw/input/adb*
|
2019-01-02 11:22:43 +01:00
|
|
|
F: pc-bios/qemu_vga.ndrv
|
2010-09-09 21:51:31 +02:00
|
|
|
|
2019-01-02 16:57:56 +01:00
|
|
|
Old World (g3beige)
|
2019-01-28 22:21:56 +01:00
|
|
|
M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
|
2012-01-13 14:33:57 +01:00
|
|
|
L: qemu-ppc@nongnu.org
|
2018-10-30 10:35:31 +01:00
|
|
|
S: Odd Fixes
|
2022-01-12 11:28:26 +01:00
|
|
|
F: docs/system/ppc/powermac.rst
|
2013-01-24 00:03:54 +01:00
|
|
|
F: hw/ppc/mac_oldworld.c
|
2013-06-24 12:49:32 +02:00
|
|
|
F: hw/pci-host/grackle.c
|
2013-02-04 15:19:30 +01:00
|
|
|
F: hw/misc/macio/
|
2016-09-29 09:40:33 +02:00
|
|
|
F: hw/intc/heathrow_pic.c
|
2019-01-02 16:57:56 +01:00
|
|
|
F: hw/input/adb*
|
2018-11-25 21:49:43 +01:00
|
|
|
F: include/hw/intc/heathrow_pic.h
|
2019-01-02 16:57:56 +01:00
|
|
|
F: include/hw/input/adb*
|
2019-01-02 11:22:43 +01:00
|
|
|
F: pc-bios/qemu_vga.ndrv
|
2010-09-09 21:51:31 +02:00
|
|
|
|
2011-11-01 00:03:07 +01:00
|
|
|
PReP
|
2017-01-12 09:47:29 +01:00
|
|
|
M: Hervé Poussineau <hpoussin@reactos.org>
|
2012-01-13 14:33:57 +01:00
|
|
|
L: qemu-ppc@nongnu.org
|
2017-01-12 09:47:29 +01:00
|
|
|
S: Maintained
|
2022-01-12 11:28:26 +01:00
|
|
|
F: docs/system/ppc/prep.rst
|
2013-01-26 20:41:58 +01:00
|
|
|
F: hw/ppc/prep.c
|
2017-01-12 09:47:29 +01:00
|
|
|
F: hw/ppc/prep_systemio.c
|
|
|
|
F: hw/ppc/rs6000_mc.c
|
2021-04-16 18:18:58 +02:00
|
|
|
F: hw/pci-host/raven.c
|
2017-10-17 18:43:48 +02:00
|
|
|
F: hw/isa/i82378.c
|
2018-03-08 23:39:25 +01:00
|
|
|
F: hw/isa/pc87312.c
|
2017-10-17 18:43:46 +02:00
|
|
|
F: hw/dma/i82374.c
|
2019-10-04 01:03:54 +02:00
|
|
|
F: hw/rtc/m48t59-isa.c
|
2018-03-08 23:39:25 +01:00
|
|
|
F: include/hw/isa/pc87312.h
|
2019-10-04 01:03:54 +02:00
|
|
|
F: include/hw/rtc/m48t59.h
|
2021-11-05 16:53:54 +01:00
|
|
|
F: tests/avocado/ppc_prep_40p.py
|
2010-09-09 21:51:31 +02:00
|
|
|
|
2022-01-12 11:28:26 +01:00
|
|
|
sPAPR (pseries)
|
2021-11-05 04:28:51 +01:00
|
|
|
M: Cédric Le Goater <clg@kaod.org>
|
|
|
|
M: Daniel Henrique Barboza <danielhb413@gmail.com>
|
|
|
|
R: David Gibson <david@gibson.dropbear.id.au>
|
|
|
|
R: Greg Kurz <groug@kaod.org>
|
2012-08-22 07:48:44 +02:00
|
|
|
L: qemu-ppc@nongnu.org
|
2021-09-21 06:01:12 +02:00
|
|
|
S: Maintained
|
2013-02-04 15:19:30 +01:00
|
|
|
F: hw/*/spapr*
|
2013-06-15 03:51:52 +02:00
|
|
|
F: include/hw/*/spapr*
|
|
|
|
F: hw/*/xics*
|
|
|
|
F: include/hw/*/xics*
|
2016-09-05 22:03:36 +02:00
|
|
|
F: pc-bios/slof.bin
|
2022-01-12 11:28:26 +01:00
|
|
|
F: docs/system/ppc/pseries.rst
|
|
|
|
F: docs/specs/ppc-spapr-*
|
2019-09-09 12:04:01 +02:00
|
|
|
F: tests/qtest/spapr*
|
2019-09-10 16:41:20 +02:00
|
|
|
F: tests/qtest/libqos/*spapr*
|
2019-09-09 12:04:01 +02:00
|
|
|
F: tests/qtest/rtas*
|
2019-09-10 16:41:20 +02:00
|
|
|
F: tests/qtest/libqos/rtas*
|
2021-11-05 16:53:54 +01:00
|
|
|
F: tests/avocado/ppc_pseries.py
|
2012-08-22 07:48:44 +02:00
|
|
|
|
2019-03-13 17:24:23 +01:00
|
|
|
PowerNV (Non-Virtualized)
|
|
|
|
M: Cédric Le Goater <clg@kaod.org>
|
|
|
|
L: qemu-ppc@nongnu.org
|
|
|
|
S: Maintained
|
2022-01-12 11:28:26 +01:00
|
|
|
F: docs/system/ppc/powernv.rst
|
2019-03-13 17:24:23 +01:00
|
|
|
F: hw/ppc/pnv*
|
|
|
|
F: hw/intc/pnv*
|
|
|
|
F: hw/intc/xics_pnv.c
|
2020-06-09 14:23:27 +02:00
|
|
|
F: hw/pci-host/pnv*
|
2019-03-13 17:24:23 +01:00
|
|
|
F: include/hw/ppc/pnv*
|
2020-06-09 14:23:27 +02:00
|
|
|
F: include/hw/pci-host/pnv*
|
2019-03-13 17:24:23 +01:00
|
|
|
F: pc-bios/skiboot.lid
|
2019-09-09 12:04:01 +02:00
|
|
|
F: tests/qtest/pnv*
|
2019-03-13 17:24:23 +01:00
|
|
|
|
2012-08-22 07:48:48 +02:00
|
|
|
virtex_ml507
|
|
|
|
M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
|
|
|
|
L: qemu-ppc@nongnu.org
|
|
|
|
S: Odd Fixes
|
2013-06-24 12:49:32 +02:00
|
|
|
F: hw/ppc/virtex_ml507.c
|
2021-11-05 16:53:54 +01:00
|
|
|
F: tests/avocado/ppc_virtex_ml507.py
|
2012-08-22 07:48:48 +02:00
|
|
|
|
2017-12-16 23:42:39 +01:00
|
|
|
sam460ex
|
|
|
|
M: BALATON Zoltan <balaton@eik.bme.hu>
|
|
|
|
L: qemu-ppc@nongnu.org
|
|
|
|
S: Maintained
|
2019-01-02 03:06:38 +01:00
|
|
|
F: hw/ppc/sam460ex.c
|
|
|
|
F: hw/ppc/ppc440_pcix.c
|
|
|
|
F: hw/display/sm501*
|
2017-12-16 23:42:39 +01:00
|
|
|
F: hw/ide/sii3112.c
|
2019-10-04 01:03:55 +02:00
|
|
|
F: hw/rtc/m41t80.c
|
2019-01-02 03:06:38 +01:00
|
|
|
F: pc-bios/canyonlands.dt[sb]
|
|
|
|
F: pc-bios/u-boot-sam460ex-20100605.bin
|
|
|
|
F: roms/u-boot-sam460ex
|
2017-12-16 23:42:39 +01:00
|
|
|
|
2021-03-25 14:50:39 +01:00
|
|
|
pegasos2
|
|
|
|
M: BALATON Zoltan <balaton@eik.bme.hu>
|
|
|
|
L: qemu-ppc@nongnu.org
|
|
|
|
S: Maintained
|
|
|
|
F: hw/ppc/pegasos2.c
|
|
|
|
F: hw/pci-host/mv64361.c
|
|
|
|
F: hw/pci-host/mv643xx.h
|
|
|
|
F: include/hw/pci-host/mv64361.h
|
|
|
|
|
spapr: Implement Open Firmware client interface
The PAPR platform describes an OS environment that's presented by
a combination of a hypervisor and firmware. The features it specifies
require collaboration between the firmware and the hypervisor.
Since the beginning, the runtime component of the firmware (RTAS) has
been implemented as a 20 byte shim which simply forwards it to
a hypercall implemented in qemu. The boot time firmware component is
SLOF - but a build that's specific to qemu, and has always needed to be
updated in sync with it. Even though we've managed to limit the amount
of runtime communication we need between qemu and SLOF, there's some,
and it has become increasingly awkward to handle as we've implemented
new features.
This implements a boot time OF client interface (CI) which is
enabled by a new "x-vof" pseries machine option (stands for "Virtual Open
Firmware). When enabled, QEMU implements the custom H_OF_CLIENT hcall
which implements Open Firmware Client Interface (OF CI). This allows
using a smaller stateless firmware which does not have to manage
the device tree.
The new "vof.bin" firmware image is included with source code under
pc-bios/. It also includes RTAS blob.
This implements a handful of CI methods just to get -kernel/-initrd
working. In particular, this implements the device tree fetching and
simple memory allocator - "claim" (an OF CI memory allocator) and updates
"/memory@0/available" to report the client about available memory.
This implements changing some device tree properties which we know how
to deal with, the rest is ignored. To allow changes, this skips
fdt_pack() when x-vof=on as not packing the blob leaves some room for
appending.
In absence of SLOF, this assigns phandles to device tree nodes to make
device tree traversing work.
When x-vof=on, this adds "/chosen" every time QEMU (re)builds a tree.
This adds basic instances support which are managed by a hash map
ihandle -> [phandle].
Before the guest started, the used memory is:
0..e60 - the initial firmware
8000..10000 - stack
400000.. - kernel
3ea0000.. - initramdisk
This OF CI does not implement "interpret".
Unlike SLOF, this does not format uninitialized nvram. Instead, this
includes a disk image with pre-formatted nvram.
With this basic support, this can only boot into kernel directly.
However this is just enough for the petitboot kernel and initradmdisk to
boot from any possible source. Note this requires reasonably recent guest
kernel with:
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=df5be5be8735
The immediate benefit is much faster booting time which especially
crucial with fully emulated early CPU bring up environments. Also this
may come handy when/if GRUB-in-the-userspace sees light of the day.
This separates VOF and sPAPR in a hope that VOF bits may be reused by
other POWERPC boards which do not support pSeries.
This assumes potential support for booting from QEMU backends
such as blockdev or netdev without devices/drivers used.
Signed-off-by: Alexey Kardashevskiy <aik@ozlabs.ru>
Message-Id: <20210625055155.2252896-1-aik@ozlabs.ru>
Reviewed-by: BALATON Zoltan <balaton@eik.bme.hu>
[dwg: Adjusted some includes which broke compile in some more obscure
compilation setups]
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
2021-06-25 07:51:55 +02:00
|
|
|
Virtual Open Firmware (VOF)
|
|
|
|
M: Alexey Kardashevskiy <aik@ozlabs.ru>
|
2021-11-05 04:28:51 +01:00
|
|
|
R: Cédric Le Goater <clg@kaod.org>
|
|
|
|
R: Daniel Henrique Barboza <danielhb413@gmail.com>
|
2021-07-08 08:56:25 +02:00
|
|
|
R: David Gibson <david@gibson.dropbear.id.au>
|
|
|
|
R: Greg Kurz <groug@kaod.org>
|
spapr: Implement Open Firmware client interface
The PAPR platform describes an OS environment that's presented by
a combination of a hypervisor and firmware. The features it specifies
require collaboration between the firmware and the hypervisor.
Since the beginning, the runtime component of the firmware (RTAS) has
been implemented as a 20 byte shim which simply forwards it to
a hypercall implemented in qemu. The boot time firmware component is
SLOF - but a build that's specific to qemu, and has always needed to be
updated in sync with it. Even though we've managed to limit the amount
of runtime communication we need between qemu and SLOF, there's some,
and it has become increasingly awkward to handle as we've implemented
new features.
This implements a boot time OF client interface (CI) which is
enabled by a new "x-vof" pseries machine option (stands for "Virtual Open
Firmware). When enabled, QEMU implements the custom H_OF_CLIENT hcall
which implements Open Firmware Client Interface (OF CI). This allows
using a smaller stateless firmware which does not have to manage
the device tree.
The new "vof.bin" firmware image is included with source code under
pc-bios/. It also includes RTAS blob.
This implements a handful of CI methods just to get -kernel/-initrd
working. In particular, this implements the device tree fetching and
simple memory allocator - "claim" (an OF CI memory allocator) and updates
"/memory@0/available" to report the client about available memory.
This implements changing some device tree properties which we know how
to deal with, the rest is ignored. To allow changes, this skips
fdt_pack() when x-vof=on as not packing the blob leaves some room for
appending.
In absence of SLOF, this assigns phandles to device tree nodes to make
device tree traversing work.
When x-vof=on, this adds "/chosen" every time QEMU (re)builds a tree.
This adds basic instances support which are managed by a hash map
ihandle -> [phandle].
Before the guest started, the used memory is:
0..e60 - the initial firmware
8000..10000 - stack
400000.. - kernel
3ea0000.. - initramdisk
This OF CI does not implement "interpret".
Unlike SLOF, this does not format uninitialized nvram. Instead, this
includes a disk image with pre-formatted nvram.
With this basic support, this can only boot into kernel directly.
However this is just enough for the petitboot kernel and initradmdisk to
boot from any possible source. Note this requires reasonably recent guest
kernel with:
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=df5be5be8735
The immediate benefit is much faster booting time which especially
crucial with fully emulated early CPU bring up environments. Also this
may come handy when/if GRUB-in-the-userspace sees light of the day.
This separates VOF and sPAPR in a hope that VOF bits may be reused by
other POWERPC boards which do not support pSeries.
This assumes potential support for booting from QEMU backends
such as blockdev or netdev without devices/drivers used.
Signed-off-by: Alexey Kardashevskiy <aik@ozlabs.ru>
Message-Id: <20210625055155.2252896-1-aik@ozlabs.ru>
Reviewed-by: BALATON Zoltan <balaton@eik.bme.hu>
[dwg: Adjusted some includes which broke compile in some more obscure
compilation setups]
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
2021-06-25 07:51:55 +02:00
|
|
|
L: qemu-ppc@nongnu.org
|
|
|
|
S: Maintained
|
|
|
|
F: hw/ppc/spapr_vof*
|
|
|
|
F: hw/ppc/vof*
|
|
|
|
F: include/hw/ppc/vof*
|
|
|
|
F: pc-bios/vof/*
|
|
|
|
F: pc-bios/vof*
|
|
|
|
|
2020-04-23 20:30:50 +02:00
|
|
|
RISC-V Machines
|
|
|
|
---------------
|
|
|
|
OpenTitan
|
|
|
|
M: Alistair Francis <Alistair.Francis@wdc.com>
|
|
|
|
L: qemu-riscv@nongnu.org
|
|
|
|
S: Supported
|
|
|
|
F: hw/riscv/opentitan.c
|
2021-06-18 09:27:54 +02:00
|
|
|
F: hw/*/ibex_*.c
|
2020-04-23 20:30:50 +02:00
|
|
|
F: include/hw/riscv/opentitan.h
|
2021-06-18 09:27:54 +02:00
|
|
|
F: include/hw/*/ibex_*.h
|
2020-04-23 20:30:50 +02:00
|
|
|
|
2020-09-01 03:38:59 +02:00
|
|
|
Microchip PolarFire SoC Icicle Kit
|
|
|
|
M: Bin Meng <bin.meng@windriver.com>
|
|
|
|
L: qemu-riscv@nongnu.org
|
|
|
|
S: Supported
|
|
|
|
F: hw/riscv/microchip_pfsoc.c
|
2020-09-01 03:39:00 +02:00
|
|
|
F: hw/char/mchp_pfsoc_mmuart.c
|
2020-10-28 06:30:02 +01:00
|
|
|
F: hw/misc/mchp_pfsoc_dmc.c
|
2020-10-28 06:30:04 +01:00
|
|
|
F: hw/misc/mchp_pfsoc_ioscb.c
|
2020-10-28 06:30:06 +01:00
|
|
|
F: hw/misc/mchp_pfsoc_sysreg.c
|
2020-09-01 03:38:59 +02:00
|
|
|
F: include/hw/riscv/microchip_pfsoc.h
|
2020-09-01 03:39:00 +02:00
|
|
|
F: include/hw/char/mchp_pfsoc_mmuart.h
|
2020-10-28 06:30:02 +01:00
|
|
|
F: include/hw/misc/mchp_pfsoc_dmc.h
|
2020-10-28 06:30:04 +01:00
|
|
|
F: include/hw/misc/mchp_pfsoc_ioscb.h
|
2020-10-28 06:30:06 +01:00
|
|
|
F: include/hw/misc/mchp_pfsoc_sysreg.h
|
2020-09-01 03:38:59 +02:00
|
|
|
|
2021-04-01 20:14:55 +02:00
|
|
|
Shakti C class SoC
|
|
|
|
M: Vijai Kumar K <vijai@behindbytes.com>
|
|
|
|
L: qemu-riscv@nongnu.org
|
|
|
|
S: Supported
|
|
|
|
F: hw/riscv/shakti_c.c
|
2021-04-01 20:14:56 +02:00
|
|
|
F: hw/char/shakti_uart.c
|
2021-04-01 20:14:55 +02:00
|
|
|
F: include/hw/riscv/shakti_c.h
|
2021-04-01 20:14:56 +02:00
|
|
|
F: include/hw/char/shakti_uart.h
|
2021-04-01 20:14:55 +02:00
|
|
|
|
2021-02-09 03:11:27 +01:00
|
|
|
SiFive Machines
|
|
|
|
M: Alistair Francis <Alistair.Francis@wdc.com>
|
|
|
|
M: Bin Meng <bin.meng@windriver.com>
|
|
|
|
M: Palmer Dabbelt <palmer@dabbelt.com>
|
|
|
|
L: qemu-riscv@nongnu.org
|
|
|
|
S: Supported
|
|
|
|
F: hw/*/*sifive*.c
|
|
|
|
F: include/hw/*/*sifive*.h
|
|
|
|
|
2019-01-21 14:16:00 +01:00
|
|
|
RX Machines
|
|
|
|
-----------
|
|
|
|
rx-gdbsim
|
2021-03-12 16:55:12 +01:00
|
|
|
R: Yoshinori Sato <ysato@users.sourceforge.jp>
|
|
|
|
S: Orphan
|
2020-01-23 14:25:25 +01:00
|
|
|
F: docs/system/target-rx.rst
|
2019-01-21 14:16:00 +01:00
|
|
|
F: hw/rx/rx-gdbsim.c
|
2021-11-05 16:53:54 +01:00
|
|
|
F: tests/avocado/machine_rx_gdbsim.py
|
2019-01-21 14:16:00 +01:00
|
|
|
|
2010-09-09 21:51:31 +02:00
|
|
|
SH4 Machines
|
|
|
|
------------
|
|
|
|
R2D
|
2021-03-12 16:55:13 +01:00
|
|
|
R: Yoshinori Sato <ysato@users.sourceforge.jp>
|
2020-06-11 11:53:16 +02:00
|
|
|
R: Magnus Damm <magnus.damm@gmail.com>
|
2020-10-31 16:23:40 +01:00
|
|
|
S: Odd Fixes
|
2021-02-21 19:52:29 +01:00
|
|
|
F: hw/char/sh_serial.c
|
2013-06-24 12:49:32 +02:00
|
|
|
F: hw/sh4/r2d.c
|
2016-09-30 11:32:02 +02:00
|
|
|
F: hw/intc/sh_intc.c
|
2021-02-21 19:56:35 +01:00
|
|
|
F: hw/pci-host/sh_pci.c
|
2021-02-21 19:53:35 +01:00
|
|
|
F: hw/timer/sh_timer.c
|
2020-06-10 23:41:52 +02:00
|
|
|
F: include/hw/sh4/sh_intc.h
|
2010-09-09 21:51:31 +02:00
|
|
|
|
|
|
|
Shix
|
2021-03-12 16:55:13 +01:00
|
|
|
R: Yoshinori Sato <ysato@users.sourceforge.jp>
|
2020-06-11 11:53:16 +02:00
|
|
|
R: Magnus Damm <magnus.damm@gmail.com>
|
2016-09-30 11:32:02 +02:00
|
|
|
S: Odd Fixes
|
2021-02-21 19:55:22 +01:00
|
|
|
F: hw/block/tc58128.c
|
2021-02-21 19:52:29 +01:00
|
|
|
F: hw/char/sh_serial.c
|
2013-06-24 12:49:32 +02:00
|
|
|
F: hw/sh4/shix.c
|
2020-06-10 23:41:52 +02:00
|
|
|
F: hw/intc/sh_intc.c
|
2021-02-21 19:53:35 +01:00
|
|
|
F: hw/timer/sh_timer.c
|
2020-06-10 23:41:52 +02:00
|
|
|
F: include/hw/sh4/sh_intc.h
|
2010-09-09 21:51:31 +02:00
|
|
|
|
|
|
|
SPARC Machines
|
|
|
|
--------------
|
|
|
|
Sun4m
|
2015-03-02 23:23:27 +01:00
|
|
|
M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
|
2010-09-09 21:51:31 +02:00
|
|
|
S: Maintained
|
2013-02-04 15:19:30 +01:00
|
|
|
F: hw/sparc/sun4m.c
|
2018-08-10 13:55:53 +02:00
|
|
|
F: hw/sparc/sun4m_iommu.c
|
2019-02-15 13:39:24 +01:00
|
|
|
F: hw/display/cg3.c
|
|
|
|
F: hw/display/tcx.c
|
2016-09-19 21:58:34 +02:00
|
|
|
F: hw/dma/sparc32_dma.c
|
2016-09-23 14:27:25 +02:00
|
|
|
F: hw/misc/eccmemctl.c
|
2019-02-15 13:39:24 +01:00
|
|
|
F: hw/*/slavio_*.c
|
|
|
|
F: include/hw/nvram/sun_nvram.h
|
2016-09-19 21:58:34 +02:00
|
|
|
F: include/hw/sparc/sparc32_dma.h
|
2018-11-25 21:49:44 +01:00
|
|
|
F: include/hw/sparc/sun4m_iommu.h
|
2019-02-15 13:39:24 +01:00
|
|
|
F: pc-bios/openbios-sparc32
|
2010-09-09 21:51:31 +02:00
|
|
|
|
|
|
|
Sun4u
|
2015-03-02 23:23:27 +01:00
|
|
|
M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
|
2010-09-09 21:51:31 +02:00
|
|
|
S: Maintained
|
2013-02-04 15:19:30 +01:00
|
|
|
F: hw/sparc64/sun4u.c
|
2018-12-18 12:56:05 +01:00
|
|
|
F: hw/sparc64/sun4u_iommu.c
|
|
|
|
F: include/hw/sparc/sun4u_iommu.h
|
2018-11-22 14:02:40 +01:00
|
|
|
F: hw/pci-host/sabre.c
|
|
|
|
F: include/hw/pci-host/sabre.h
|
2018-12-18 12:56:05 +01:00
|
|
|
F: hw/pci-bridge/simba.c
|
|
|
|
F: include/hw/pci-bridge/simba.h
|
|
|
|
F: pc-bios/openbios-sparc64
|
2021-11-05 16:53:54 +01:00
|
|
|
F: tests/avocado/machine_sparc64_sun4u.py
|
2010-09-09 21:51:31 +02:00
|
|
|
|
2016-09-29 14:46:45 +02:00
|
|
|
Sun4v
|
|
|
|
M: Artyom Tarasenko <atar4qemu@gmail.com>
|
|
|
|
S: Maintained
|
2017-10-13 10:53:54 +02:00
|
|
|
F: hw/sparc64/niagara.c
|
2019-10-04 01:03:56 +02:00
|
|
|
F: hw/rtc/sun4v-rtc.c
|
|
|
|
F: include/hw/rtc/sun4v-rtc.h
|
2016-09-29 14:46:45 +02:00
|
|
|
|
2012-05-22 10:14:28 +02:00
|
|
|
Leon3
|
|
|
|
M: Fabien Chouteau <chouteau@adacore.com>
|
2022-04-01 16:35:49 +02:00
|
|
|
M: Frederic Konrad <konrad.frederic@yahoo.fr>
|
2012-05-22 10:14:28 +02:00
|
|
|
S: Maintained
|
2013-02-04 15:19:30 +01:00
|
|
|
F: hw/sparc/leon3.c
|
|
|
|
F: hw/*/grlib*
|
2019-05-15 14:31:32 +02:00
|
|
|
F: include/hw/*/grlib*
|
2021-11-05 16:53:54 +01:00
|
|
|
F: tests/avocado/machine_sparc_leon3.py
|
2012-05-22 10:14:28 +02:00
|
|
|
|
2010-09-09 21:51:31 +02:00
|
|
|
S390 Machines
|
|
|
|
-------------
|
2013-03-05 03:22:01 +01:00
|
|
|
S390 Virtio-ccw
|
2018-12-04 14:38:02 +01:00
|
|
|
M: Halil Pasic <pasic@linux.ibm.com>
|
2021-11-26 11:24:49 +01:00
|
|
|
M: Christian Borntraeger <borntraeger@linux.ibm.com>
|
2022-01-12 17:40:44 +01:00
|
|
|
M: Eric Farman <farman@linux.ibm.com>
|
2013-03-05 03:22:01 +01:00
|
|
|
S: Supported
|
2015-11-04 15:59:55 +01:00
|
|
|
F: hw/s390x/
|
2014-10-20 19:00:03 +02:00
|
|
|
F: include/hw/s390x/
|
2021-07-07 15:17:43 +02:00
|
|
|
F: configs/devices/s390x-softmmu/default.mak
|
2021-11-05 16:53:54 +01:00
|
|
|
F: tests/avocado/machine_s390_ccw_virtio.py
|
2018-11-08 12:15:26 +01:00
|
|
|
T: git https://github.com/borntraeger/qemu.git s390-next
|
2017-10-05 17:05:23 +02:00
|
|
|
L: qemu-s390x@nongnu.org
|
2013-03-05 03:22:01 +01:00
|
|
|
|
2018-10-29 16:42:25 +01:00
|
|
|
S390-ccw boot
|
2021-11-26 11:24:49 +01:00
|
|
|
M: Christian Borntraeger <borntraeger@linux.ibm.com>
|
2018-01-15 16:14:45 +01:00
|
|
|
M: Thomas Huth <thuth@redhat.com>
|
|
|
|
S: Supported
|
2018-10-29 16:42:25 +01:00
|
|
|
F: hw/s390x/ipl.*
|
2018-01-15 16:14:45 +01:00
|
|
|
F: pc-bios/s390-ccw/
|
|
|
|
F: pc-bios/s390-ccw.img
|
2020-01-28 13:24:14 +01:00
|
|
|
F: docs/devel/s390-dasd-ipl.rst
|
2018-11-08 12:15:26 +01:00
|
|
|
T: git https://github.com/borntraeger/qemu.git s390-next
|
2018-01-15 16:14:45 +01:00
|
|
|
L: qemu-s390x@nongnu.org
|
|
|
|
|
2018-10-29 16:42:24 +01:00
|
|
|
S390 PCI
|
2019-09-27 15:21:01 +02:00
|
|
|
M: Matthew Rosato <mjrosato@linux.ibm.com>
|
2021-03-25 14:55:09 +01:00
|
|
|
M: Eric Farman <farman@linux.ibm.com>
|
2018-10-29 16:42:24 +01:00
|
|
|
S: Supported
|
|
|
|
F: hw/s390x/s390-pci*
|
2020-10-26 16:34:31 +01:00
|
|
|
F: include/hw/s390x/s390-pci*
|
2018-10-29 16:42:24 +01:00
|
|
|
L: qemu-s390x@nongnu.org
|
|
|
|
|
2021-12-22 11:55:48 +01:00
|
|
|
S390 channel subsystem
|
|
|
|
M: Halil Pasic <pasic@linux.ibm.com>
|
|
|
|
M: Christian Borntraeger <borntraeger@linux.ibm.com>
|
2022-01-12 17:40:44 +01:00
|
|
|
M: Eric Farman <farman@linux.ibm.com>
|
2021-12-22 11:55:48 +01:00
|
|
|
S: Supported
|
|
|
|
F: hw/s390x/ccw-device.[ch]
|
|
|
|
F: hw/s390x/css.c
|
|
|
|
F: hw/s390x/css-bridge.c
|
|
|
|
F: include/hw/s390x/css.h
|
|
|
|
F: include/hw/s390x/css-bridge.h
|
|
|
|
F: include/hw/s390x/ioinst.h
|
|
|
|
F: target/s390x/ioinst.c
|
|
|
|
L: qemu-s390x@nongnu.org
|
|
|
|
|
|
|
|
S390 CPU models
|
|
|
|
M: David Hildenbrand <david@redhat.com>
|
|
|
|
S: Maintained
|
|
|
|
F: target/s390x/cpu_features*.[ch]
|
|
|
|
F: target/s390x/cpu_models.[ch]
|
|
|
|
L: qemu-s390x@nongnu.org
|
|
|
|
|
|
|
|
S390 SCLP-backed devices
|
|
|
|
M: Halil Pasic <pasic@linux.ibm.com>
|
|
|
|
M: Christian Borntraeger <borntraeger@linux.ibm.com>
|
|
|
|
S: Supported
|
|
|
|
F: include/hw/s390x/event-facility.h
|
|
|
|
F: include/hw/s390x/sclp.h
|
|
|
|
F: hw/char/sclp*.[hc]
|
|
|
|
F: hw/s390x/event-facility.c
|
|
|
|
F: hw/s390x/sclp*.c
|
|
|
|
L: qemu-s390x@nongnu.org
|
|
|
|
|
2010-09-09 21:51:31 +02:00
|
|
|
X86 Machines
|
|
|
|
------------
|
|
|
|
PC
|
2013-11-06 16:16:42 +01:00
|
|
|
M: Michael S. Tsirkin <mst@redhat.com>
|
2018-04-26 10:45:23 +02:00
|
|
|
M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
|
2010-09-09 21:51:31 +02:00
|
|
|
S: Supported
|
2013-11-06 16:16:42 +01:00
|
|
|
F: include/hw/i386/
|
|
|
|
F: hw/i386/
|
2019-02-02 21:03:07 +01:00
|
|
|
F: hw/pci-host/i440fx.c
|
2013-11-06 16:16:42 +01:00
|
|
|
F: hw/pci-host/q35.c
|
|
|
|
F: hw/pci-host/pam.c
|
2019-02-02 20:57:47 +01:00
|
|
|
F: include/hw/pci-host/i440fx.h
|
2013-11-06 16:16:42 +01:00
|
|
|
F: include/hw/pci-host/q35.h
|
|
|
|
F: include/hw/pci-host/pam.h
|
2019-10-28 16:12:18 +01:00
|
|
|
F: hw/isa/piix3.c
|
2013-11-06 16:16:42 +01:00
|
|
|
F: hw/isa/lpc_ich9.c
|
|
|
|
F: hw/i2c/smbus_ich9.c
|
|
|
|
F: hw/acpi/piix4.c
|
|
|
|
F: hw/acpi/ich9.c
|
|
|
|
F: include/hw/acpi/ich9.h
|
2018-01-06 16:37:26 +01:00
|
|
|
F: include/hw/southbridge/piix.h
|
2015-09-22 11:56:47 +02:00
|
|
|
F: hw/misc/sga.c
|
2018-12-18 12:56:06 +01:00
|
|
|
F: hw/isa/apm.c
|
|
|
|
F: include/hw/isa/apm.h
|
2021-03-10 07:33:14 +01:00
|
|
|
F: tests/unit/test-x86-cpuid.c
|
2019-09-09 12:04:01 +02:00
|
|
|
F: tests/qtest/test-x86-cpuid-compat.c
|
2015-09-22 11:56:47 +02:00
|
|
|
|
|
|
|
PC Chipset
|
|
|
|
M: Michael S. Tsirkin <mst@redhat.com>
|
|
|
|
M: Paolo Bonzini <pbonzini@redhat.com>
|
2017-10-17 18:43:50 +02:00
|
|
|
S: Supported
|
2015-09-22 11:56:47 +02:00
|
|
|
F: hw/char/debugcon.c
|
2018-03-08 23:39:22 +01:00
|
|
|
F: hw/char/parallel*
|
2015-09-22 11:56:47 +02:00
|
|
|
F: hw/char/serial*
|
|
|
|
F: hw/dma/i8257*
|
|
|
|
F: hw/i2c/pm_smbus.c
|
2017-10-17 18:43:50 +02:00
|
|
|
F: hw/input/pckbd.c
|
2015-09-22 11:56:47 +02:00
|
|
|
F: hw/intc/apic*
|
|
|
|
F: hw/intc/ioapic*
|
|
|
|
F: hw/intc/i8259*
|
2018-03-08 23:39:29 +01:00
|
|
|
F: hw/isa/isa-superio.c
|
2015-09-22 11:56:47 +02:00
|
|
|
F: hw/misc/debugexit.c
|
|
|
|
F: hw/misc/pc-testdev.c
|
|
|
|
F: hw/timer/hpet*
|
|
|
|
F: hw/timer/i8254*
|
2019-10-04 01:03:53 +02:00
|
|
|
F: hw/rtc/mc146818rtc*
|
2017-10-17 18:43:49 +02:00
|
|
|
F: hw/watchdog/wdt_ib700.c
|
2018-11-25 21:49:47 +01:00
|
|
|
F: hw/watchdog/wdt_i6300esb.c
|
2017-10-17 18:44:21 +02:00
|
|
|
F: include/hw/display/vga.h
|
2018-03-08 23:39:22 +01:00
|
|
|
F: include/hw/char/parallel.h
|
2018-03-08 23:39:23 +01:00
|
|
|
F: include/hw/dma/i8257.h
|
2016-09-05 23:31:15 +02:00
|
|
|
F: include/hw/i2c/pm_smbus.h
|
2018-03-08 23:39:24 +01:00
|
|
|
F: include/hw/input/i8042.h
|
2018-11-25 21:49:47 +01:00
|
|
|
F: include/hw/isa/i8259_internal.h
|
2018-03-08 23:39:29 +01:00
|
|
|
F: include/hw/isa/superio.h
|
2016-09-05 23:31:15 +02:00
|
|
|
F: include/hw/timer/hpet.h
|
|
|
|
F: include/hw/timer/i8254*
|
2019-10-04 01:03:53 +02:00
|
|
|
F: include/hw/rtc/mc146818rtc*
|
2013-11-06 16:16:42 +01:00
|
|
|
|
2019-10-08 12:42:28 +02:00
|
|
|
microvm
|
|
|
|
M: Sergio Lopez <slp@redhat.com>
|
|
|
|
M: Paolo Bonzini <pbonzini@redhat.com>
|
|
|
|
S: Maintained
|
2021-10-12 17:14:47 +02:00
|
|
|
F: docs/system/i386/microvm.rst
|
2019-10-08 12:42:28 +02:00
|
|
|
F: hw/i386/microvm.c
|
|
|
|
F: include/hw/i386/microvm.h
|
|
|
|
F: pc-bios/bios-microvm.bin
|
|
|
|
|
2016-03-11 15:06:56 +01:00
|
|
|
Machine core
|
2021-11-30 21:47:22 +01:00
|
|
|
M: Eduardo Habkost <eduardo@habkost.net>
|
2018-04-26 10:45:23 +02:00
|
|
|
M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
|
2021-12-29 17:06:39 +01:00
|
|
|
R: Philippe Mathieu-Daudé <f4bug@amsat.org>
|
2021-12-28 10:22:14 +01:00
|
|
|
R: Yanan Wang <wangyanan55@huawei.com>
|
2016-03-11 15:06:56 +01:00
|
|
|
S: Supported
|
2020-10-06 09:05:29 +02:00
|
|
|
F: cpu.c
|
2019-07-09 17:20:52 +02:00
|
|
|
F: hw/core/cpu.c
|
2019-06-19 22:10:43 +02:00
|
|
|
F: hw/core/machine-qmp-cmds.c
|
2016-03-11 15:06:56 +01:00
|
|
|
F: hw/core/machine.c
|
2021-10-26 05:46:58 +02:00
|
|
|
F: hw/core/machine-smp.c
|
2017-01-23 06:54:55 +01:00
|
|
|
F: hw/core/null-machine.c
|
2019-06-19 22:10:42 +02:00
|
|
|
F: hw/core/numa.c
|
2019-01-07 16:23:45 +01:00
|
|
|
F: hw/cpu/cluster.c
|
2019-06-19 22:10:41 +02:00
|
|
|
F: qapi/machine.json
|
2019-06-19 22:10:45 +02:00
|
|
|
F: qapi/machine-target.json
|
2016-03-11 15:06:56 +01:00
|
|
|
F: include/hw/boards.h
|
2019-07-09 17:20:52 +02:00
|
|
|
F: include/hw/core/cpu.h
|
2019-01-07 16:23:45 +01:00
|
|
|
F: include/hw/cpu/cluster.h
|
2019-06-19 22:10:40 +02:00
|
|
|
F: include/sysemu/numa.h
|
2021-10-26 05:46:59 +02:00
|
|
|
F: tests/unit/test-smp-parse.c
|
2020-12-14 22:20:32 +01:00
|
|
|
T: git https://gitlab.com/ehabkost/qemu.git machine-next
|
2010-09-09 21:51:31 +02:00
|
|
|
|
2011-09-06 01:55:56 +02:00
|
|
|
Xtensa Machines
|
|
|
|
---------------
|
2011-10-28 00:11:05 +02:00
|
|
|
sim
|
2011-09-06 01:55:56 +02:00
|
|
|
M: Max Filippov <jcmvbkbc@gmail.com>
|
|
|
|
S: Maintained
|
2014-10-22 05:25:42 +02:00
|
|
|
F: hw/xtensa/sim.c
|
2011-10-28 00:11:05 +02:00
|
|
|
|
2018-09-11 01:33:24 +02:00
|
|
|
virt
|
|
|
|
M: Max Filippov <jcmvbkbc@gmail.com>
|
|
|
|
S: Maintained
|
|
|
|
F: hw/xtensa/virt.c
|
|
|
|
|
2014-10-22 05:25:42 +02:00
|
|
|
XTFPGA (LX60, LX200, ML605, KC705)
|
2011-10-28 00:11:05 +02:00
|
|
|
M: Max Filippov <jcmvbkbc@gmail.com>
|
|
|
|
S: Maintained
|
2014-10-22 05:25:42 +02:00
|
|
|
F: hw/xtensa/xtfpga.c
|
|
|
|
F: hw/net/opencores_eth.c
|
2011-09-06 01:55:56 +02:00
|
|
|
|
2010-09-09 21:51:31 +02:00
|
|
|
Devices
|
|
|
|
-------
|
2021-08-16 21:10:12 +02:00
|
|
|
Overall Audio frontends
|
|
|
|
M: Gerd Hoffmann <kraxel@redhat.com>
|
|
|
|
S: Odd Fixes
|
|
|
|
F: hw/audio/
|
|
|
|
F: include/hw/audio/
|
|
|
|
F: tests/qtest/ac97-test.c
|
|
|
|
F: tests/qtest/es1370-test.c
|
|
|
|
F: tests/qtest/intel-hda-test.c
|
|
|
|
F: tests/qtest/fuzz-sb16-test.c
|
|
|
|
|
2020-11-18 20:48:46 +01:00
|
|
|
Xilinx CAN
|
|
|
|
M: Vikram Garhwal <fnu.vikram@xilinx.com>
|
|
|
|
M: Francisco Iglesias <francisco.iglesias@xilinx.com>
|
|
|
|
S: Maintained
|
|
|
|
F: hw/net/can/xlnx-*
|
|
|
|
F: include/hw/net/xlnx-*
|
|
|
|
F: tests/qtest/xlnx-can-test*
|
|
|
|
|
2015-01-21 17:48:33 +01:00
|
|
|
EDU
|
|
|
|
M: Jiri Slaby <jslaby@suse.cz>
|
|
|
|
S: Maintained
|
|
|
|
F: hw/misc/edu.c
|
|
|
|
|
2010-09-09 21:51:31 +02:00
|
|
|
IDE
|
2015-03-05 05:37:55 +01:00
|
|
|
M: John Snow <jsnow@redhat.com>
|
|
|
|
L: qemu-block@nongnu.org
|
|
|
|
S: Supported
|
2013-02-04 15:19:30 +01:00
|
|
|
F: include/hw/ide.h
|
2016-09-23 18:09:56 +02:00
|
|
|
F: include/hw/ide/
|
2010-09-09 21:51:31 +02:00
|
|
|
F: hw/ide/
|
2015-03-05 05:37:55 +01:00
|
|
|
F: hw/block/block.c
|
|
|
|
F: hw/block/cdrom.c
|
|
|
|
F: hw/block/hd-geometry.c
|
2019-09-09 12:04:01 +02:00
|
|
|
F: tests/qtest/ide-test.c
|
|
|
|
F: tests/qtest/ahci-test.c
|
|
|
|
F: tests/qtest/cdrom-test.c
|
2019-09-10 16:41:20 +02:00
|
|
|
F: tests/qtest/libqos/ahci*
|
2020-10-01 18:24:01 +02:00
|
|
|
T: git https://gitlab.com/jsnow/qemu.git ide
|
2015-03-05 05:37:55 +01:00
|
|
|
|
2017-12-07 21:55:31 +01:00
|
|
|
IPMI
|
|
|
|
M: Corey Minyard <minyard@acm.org>
|
|
|
|
S: Maintained
|
|
|
|
F: include/hw/ipmi/*
|
|
|
|
F: hw/ipmi/*
|
|
|
|
F: hw/smbios/smbios_type_38.c
|
2019-09-09 12:04:01 +02:00
|
|
|
F: tests/qtest/ipmi*
|
2018-11-08 12:15:26 +01:00
|
|
|
T: git https://github.com/cminyard/qemu.git master-ipmi-rebase
|
2017-12-07 21:55:31 +01:00
|
|
|
|
2015-03-05 05:37:55 +01:00
|
|
|
Floppy
|
|
|
|
M: John Snow <jsnow@redhat.com>
|
|
|
|
L: qemu-block@nongnu.org
|
|
|
|
S: Supported
|
|
|
|
F: hw/block/fdc.c
|
2021-06-14 21:32:17 +02:00
|
|
|
F: hw/block/fdc-internal.h
|
2021-06-14 21:32:18 +02:00
|
|
|
F: hw/block/fdc-isa.c
|
2021-06-14 21:32:19 +02:00
|
|
|
F: hw/block/fdc-sysbus.c
|
2015-03-05 05:37:55 +01:00
|
|
|
F: include/hw/block/fdc.h
|
2019-09-09 12:04:01 +02:00
|
|
|
F: tests/qtest/fdc-test.c
|
2020-10-01 18:24:01 +02:00
|
|
|
T: git https://gitlab.com/jsnow/qemu.git ide
|
2010-09-09 21:51:31 +02:00
|
|
|
|
2021-11-20 19:41:58 +01:00
|
|
|
Hyper-V VMBus
|
|
|
|
M: Maciej S. Szmigiero <maciej.szmigiero@oracle.com>
|
|
|
|
S: Odd Fixes
|
|
|
|
F: hw/hyperv/vmbus.c
|
|
|
|
F: include/hw/hyperv/vmbus*.h
|
|
|
|
|
2011-09-17 18:26:15 +02:00
|
|
|
OMAP
|
|
|
|
M: Peter Maydell <peter.maydell@linaro.org>
|
2020-01-20 19:59:27 +01:00
|
|
|
L: qemu-arm@nongnu.org
|
2011-09-17 18:26:15 +02:00
|
|
|
S: Maintained
|
2013-02-04 15:19:30 +01:00
|
|
|
F: hw/*/omap*
|
2016-02-25 12:22:04 +01:00
|
|
|
F: include/hw/arm/omap.h
|
2020-11-20 16:45:45 +01:00
|
|
|
F: docs/system/arm/sx1.rst
|
2011-09-17 18:26:15 +02:00
|
|
|
|
2015-09-22 11:37:27 +02:00
|
|
|
IPack
|
|
|
|
M: Alberto Garcia <berto@igalia.com>
|
|
|
|
S: Odd Fixes
|
|
|
|
F: hw/char/ipoctal232.c
|
|
|
|
F: hw/ipack/
|
|
|
|
|
2010-09-09 21:51:31 +02:00
|
|
|
PCI
|
|
|
|
M: Michael S. Tsirkin <mst@redhat.com>
|
2018-04-26 10:45:23 +02:00
|
|
|
M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
|
2010-09-09 21:51:31 +02:00
|
|
|
S: Supported
|
2013-02-04 15:19:30 +01:00
|
|
|
F: include/hw/pci/*
|
2015-09-22 11:56:48 +02:00
|
|
|
F: hw/misc/pci-testdev.c
|
2012-12-12 14:11:55 +01:00
|
|
|
F: hw/pci/*
|
2015-09-22 11:56:48 +02:00
|
|
|
F: hw/pci-bridge/*
|
2020-09-13 21:53:48 +02:00
|
|
|
F: qapi/pci.json
|
2017-09-08 19:36:25 +02:00
|
|
|
F: docs/pci*
|
|
|
|
F: docs/specs/*pci*
|
2015-06-23 08:09:34 +02:00
|
|
|
|
2015-08-12 11:17:36 +02:00
|
|
|
ACPI/SMBIOS
|
2015-06-23 08:09:34 +02:00
|
|
|
M: Michael S. Tsirkin <mst@redhat.com>
|
|
|
|
M: Igor Mammedov <imammedo@redhat.com>
|
2021-08-25 05:19:47 +02:00
|
|
|
R: Ani Sinha <ani@anisinha.ca>
|
2015-06-23 08:09:34 +02:00
|
|
|
S: Supported
|
|
|
|
F: include/hw/acpi/*
|
2018-12-11 17:34:06 +01:00
|
|
|
F: include/hw/firmware/smbios.h
|
2013-02-04 15:19:30 +01:00
|
|
|
F: hw/acpi/*
|
2015-08-12 11:17:36 +02:00
|
|
|
F: hw/smbios/*
|
2015-06-23 08:09:34 +02:00
|
|
|
F: hw/i386/acpi-build.[hc]
|
|
|
|
F: hw/arm/virt-acpi-build.c
|
2020-09-13 21:53:47 +02:00
|
|
|
F: qapi/acpi.json
|
2020-06-07 07:20:22 +02:00
|
|
|
F: tests/qtest/bios-tables-test*
|
2019-09-09 12:04:01 +02:00
|
|
|
F: tests/qtest/acpi-utils.[hc]
|
2018-11-25 21:49:36 +01:00
|
|
|
F: tests/data/acpi/
|
2021-07-27 19:04:14 +02:00
|
|
|
F: docs/specs/acpi_cpu_hotplug.rst
|
|
|
|
F: docs/specs/acpi_mem_hotplug.rst
|
2022-06-17 14:31:51 +02:00
|
|
|
F: docs/specs/acpi_nvdimm.rst
|
2021-07-27 19:04:14 +02:00
|
|
|
F: docs/specs/acpi_pci_hotplug.rst
|
|
|
|
F: docs/specs/acpi_hw_reduced_hotplug.rst
|
2010-09-09 21:51:31 +02:00
|
|
|
|
2021-12-13 05:59:24 +01:00
|
|
|
ACPI/VIOT
|
|
|
|
M: Jean-Philippe Brucker <jean-philippe@linaro.org>
|
|
|
|
S: Supported
|
|
|
|
F: hw/acpi/viot.c
|
|
|
|
F: hw/acpi/viot.h
|
|
|
|
|
2020-05-12 05:06:09 +02:00
|
|
|
ACPI/HEST/GHES
|
2021-03-11 12:29:04 +01:00
|
|
|
R: Dongjiu Geng <gengdongjiu1@gmail.com>
|
2020-05-12 05:06:09 +02:00
|
|
|
L: qemu-arm@nongnu.org
|
|
|
|
S: Maintained
|
|
|
|
F: hw/acpi/ghes.c
|
|
|
|
F: include/hw/acpi/ghes.h
|
|
|
|
F: docs/specs/acpi_hest_ghes.rst
|
|
|
|
|
2012-08-22 07:48:47 +02:00
|
|
|
ppc4xx
|
|
|
|
L: qemu-ppc@nongnu.org
|
2021-09-21 05:02:17 +02:00
|
|
|
S: Orphan
|
2013-02-04 15:19:30 +01:00
|
|
|
F: hw/ppc/ppc4*.c
|
2017-10-17 18:43:45 +02:00
|
|
|
F: hw/i2c/ppc4xx_i2c.c
|
2016-09-05 22:03:36 +02:00
|
|
|
F: include/hw/ppc/ppc4xx.h
|
2017-10-17 18:43:45 +02:00
|
|
|
F: include/hw/i2c/ppc4xx_i2c.h
|
2020-12-12 01:15:31 +01:00
|
|
|
F: hw/intc/ppc-uic.c
|
|
|
|
F: include/hw/intc/ppc-uic.h
|
2012-08-22 07:48:47 +02:00
|
|
|
|
2015-09-22 11:40:00 +02:00
|
|
|
Character devices
|
2018-10-19 14:25:42 +02:00
|
|
|
M: Marc-André Lureau <marcandre.lureau@redhat.com>
|
|
|
|
R: Paolo Bonzini <pbonzini@redhat.com>
|
2015-09-22 11:40:00 +02:00
|
|
|
S: Odd Fixes
|
|
|
|
F: hw/char/
|
|
|
|
|
2015-09-22 11:40:00 +02:00
|
|
|
Network devices
|
|
|
|
M: Jason Wang <jasowang@redhat.com>
|
|
|
|
S: Odd Fixes
|
|
|
|
F: hw/net/
|
2017-10-17 18:43:52 +02:00
|
|
|
F: include/hw/net/
|
2019-09-09 12:04:01 +02:00
|
|
|
F: tests/qtest/virtio-net-test.c
|
2019-10-29 12:49:04 +01:00
|
|
|
F: docs/virtio-net-failover.rst
|
2018-11-08 12:15:26 +01:00
|
|
|
T: git https://github.com/jasowang/qemu.git net
|
2015-09-22 11:40:00 +02:00
|
|
|
|
2019-05-06 00:47:37 +02:00
|
|
|
Parallel NOR Flash devices
|
2021-12-29 17:06:39 +01:00
|
|
|
M: Philippe Mathieu-Daudé <f4bug@amsat.org>
|
2019-05-06 00:47:37 +02:00
|
|
|
T: git https://gitlab.com/philmd/qemu.git pflash-next
|
|
|
|
S: Maintained
|
|
|
|
F: hw/block/pflash_cfi*.c
|
|
|
|
F: include/hw/block/flash.h
|
|
|
|
|
2010-09-09 21:51:31 +02:00
|
|
|
SCSI
|
2012-02-22 15:59:52 +01:00
|
|
|
M: Paolo Bonzini <pbonzini@redhat.com>
|
2018-11-21 16:30:36 +01:00
|
|
|
R: Fam Zheng <fam@euphon.net>
|
2012-02-22 15:59:52 +01:00
|
|
|
S: Supported
|
2016-09-05 22:11:41 +02:00
|
|
|
F: include/hw/scsi/*
|
2013-02-04 15:19:30 +01:00
|
|
|
F: hw/scsi/*
|
2019-09-09 12:04:01 +02:00
|
|
|
F: tests/qtest/virtio-scsi-test.c
|
2021-01-26 12:16:38 +01:00
|
|
|
F: tests/qtest/fuzz-virtio-scsi-test.c
|
2021-04-07 21:58:01 +02:00
|
|
|
F: tests/qtest/am53c974-test.c
|
2021-11-23 12:17:32 +01:00
|
|
|
F: tests/qtest/fuzz-lsi53c895a-test.c
|
2018-11-08 12:15:26 +01:00
|
|
|
T: git https://github.com/bonzini/qemu.git scsi-next
|
2012-02-22 15:59:52 +01:00
|
|
|
|
2012-08-06 03:38:19 +02:00
|
|
|
SSI
|
2018-03-01 12:05:58 +01:00
|
|
|
M: Alistair Francis <alistair@alistair23.me>
|
2012-08-06 03:38:19 +02:00
|
|
|
S: Maintained
|
2013-02-04 15:19:30 +01:00
|
|
|
F: hw/ssi/*
|
|
|
|
F: hw/block/m25p80.c
|
2017-09-08 19:36:26 +02:00
|
|
|
F: include/hw/ssi/ssi.h
|
2015-08-25 16:45:06 +02:00
|
|
|
X: hw/ssi/xilinx_*
|
2019-09-09 12:04:01 +02:00
|
|
|
F: tests/qtest/m25p80-test.c
|
2015-08-25 16:45:06 +02:00
|
|
|
|
|
|
|
Xilinx SPI
|
2018-03-01 12:05:58 +01:00
|
|
|
M: Alistair Francis <alistair@alistair23.me>
|
2015-08-25 16:45:06 +02:00
|
|
|
S: Maintained
|
|
|
|
F: hw/ssi/xilinx_*
|
2012-08-06 03:38:19 +02:00
|
|
|
|
2018-03-09 18:09:45 +01:00
|
|
|
SD (Secure Card)
|
|
|
|
M: Philippe Mathieu-Daudé <f4bug@amsat.org>
|
2021-02-16 14:26:11 +01:00
|
|
|
M: Bin Meng <bin.meng@windriver.com>
|
2020-06-05 06:56:38 +02:00
|
|
|
L: qemu-block@nongnu.org
|
2018-03-09 18:09:45 +01:00
|
|
|
S: Odd Fixes
|
|
|
|
F: include/hw/sd/sd*
|
|
|
|
F: hw/sd/core.c
|
|
|
|
F: hw/sd/sd*
|
2019-10-12 08:54:24 +02:00
|
|
|
F: hw/sd/ssi-sd.c
|
2021-06-29 10:09:28 +02:00
|
|
|
F: tests/qtest/fuzz-sdcard-test.c
|
|
|
|
F: tests/qtest/sdhci-test.c
|
2018-03-09 18:09:45 +01:00
|
|
|
|
2010-09-09 21:51:31 +02:00
|
|
|
USB
|
2010-12-17 11:11:25 +01:00
|
|
|
M: Gerd Hoffmann <kraxel@redhat.com>
|
2021-08-10 10:34:48 +02:00
|
|
|
S: Odd Fixes
|
2013-02-04 15:19:30 +01:00
|
|
|
F: hw/usb/*
|
2021-04-25 00:41:10 +02:00
|
|
|
F: stubs/usb-dev-stub.c
|
2019-09-09 12:04:01 +02:00
|
|
|
F: tests/qtest/usb-*-test.c
|
2021-07-28 16:14:54 +02:00
|
|
|
F: docs/system/devices/usb.rst
|
2016-02-25 10:36:05 +01:00
|
|
|
F: include/hw/usb.h
|
|
|
|
F: include/hw/usb/
|
2010-09-09 21:51:31 +02:00
|
|
|
|
2014-10-22 14:53:32 +02:00
|
|
|
USB (serial adapter)
|
2021-08-10 10:34:48 +02:00
|
|
|
R: Gerd Hoffmann <kraxel@redhat.com>
|
2014-10-22 14:53:32 +02:00
|
|
|
M: Samuel Thibault <samuel.thibault@ens-lyon.org>
|
|
|
|
S: Maintained
|
|
|
|
F: hw/usb/dev-serial.c
|
|
|
|
|
2012-09-26 19:19:39 +02:00
|
|
|
VFIO
|
|
|
|
M: Alex Williamson <alex.williamson@redhat.com>
|
|
|
|
S: Supported
|
2014-12-19 23:24:06 +01:00
|
|
|
F: hw/vfio/*
|
2016-03-10 17:39:09 +01:00
|
|
|
F: include/hw/vfio/
|
2021-02-02 16:56:11 +01:00
|
|
|
F: docs/igd-assign.txt
|
2021-04-18 14:22:51 +02:00
|
|
|
F: docs/devel/vfio-migration.rst
|
2012-09-26 19:19:39 +02:00
|
|
|
|
2017-05-17 02:48:13 +02:00
|
|
|
vfio-ccw
|
2018-10-29 16:42:22 +01:00
|
|
|
M: Eric Farman <farman@linux.ibm.com>
|
2021-03-25 14:55:09 +01:00
|
|
|
M: Matthew Rosato <mjrosato@linux.ibm.com>
|
2017-05-17 02:48:13 +02:00
|
|
|
S: Supported
|
|
|
|
F: hw/vfio/ccw.c
|
|
|
|
F: hw/s390x/s390-ccw.c
|
|
|
|
F: include/hw/s390x/s390-ccw.h
|
2019-04-04 16:34:20 +02:00
|
|
|
F: include/hw/s390x/vfio-ccw.h
|
2017-10-05 17:05:23 +02:00
|
|
|
L: qemu-s390x@nongnu.org
|
2017-05-17 02:48:13 +02:00
|
|
|
|
2018-10-10 19:03:06 +02:00
|
|
|
vfio-ap
|
|
|
|
M: Tony Krowiak <akrowiak@linux.ibm.com>
|
|
|
|
M: Halil Pasic <pasic@linux.ibm.com>
|
2021-03-25 14:55:09 +01:00
|
|
|
M: Jason Herne <jjherne@linux.ibm.com>
|
2018-10-10 19:03:06 +02:00
|
|
|
S: Supported
|
|
|
|
F: hw/s390x/ap-device.c
|
|
|
|
F: hw/s390x/ap-bridge.c
|
|
|
|
F: include/hw/s390x/ap-device.h
|
|
|
|
F: include/hw/s390x/ap-bridge.h
|
2018-10-10 19:03:07 +02:00
|
|
|
F: hw/vfio/ap.c
|
2020-03-18 11:39:40 +01:00
|
|
|
F: docs/system/s390x/vfio-ap.rst
|
2018-10-10 19:03:06 +02:00
|
|
|
L: qemu-s390x@nongnu.org
|
|
|
|
|
2010-09-09 21:51:31 +02:00
|
|
|
vhost
|
|
|
|
M: Michael S. Tsirkin <mst@redhat.com>
|
|
|
|
S: Supported
|
2013-02-04 15:19:30 +01:00
|
|
|
F: hw/*/*vhost*
|
2019-03-08 15:04:44 +01:00
|
|
|
F: docs/interop/vhost-user.json
|
2019-03-15 19:07:35 +01:00
|
|
|
F: docs/interop/vhost-user.rst
|
2018-11-25 21:49:49 +01:00
|
|
|
F: contrib/vhost-user-*/
|
2019-05-03 15:00:31 +02:00
|
|
|
F: backends/vhost-user.c
|
|
|
|
F: include/sysemu/vhost-user-backend.h
|
2010-09-09 21:51:31 +02:00
|
|
|
|
|
|
|
virtio
|
2014-01-26 11:39:55 +01:00
|
|
|
M: Michael S. Tsirkin <mst@redhat.com>
|
2010-09-09 21:51:31 +02:00
|
|
|
S: Supported
|
2013-02-04 15:19:30 +01:00
|
|
|
F: hw/*/virtio*
|
2016-09-23 18:11:21 +02:00
|
|
|
F: hw/virtio/Makefile.objs
|
|
|
|
F: hw/virtio/trace-events
|
2015-06-15 16:20:21 +02:00
|
|
|
F: net/vhost-user.c
|
2016-02-25 11:13:03 +01:00
|
|
|
F: include/hw/virtio/
|
2010-09-09 21:51:31 +02:00
|
|
|
|
2020-03-12 14:37:25 +01:00
|
|
|
virtio-balloon
|
|
|
|
M: Michael S. Tsirkin <mst@redhat.com>
|
|
|
|
M: David Hildenbrand <david@redhat.com>
|
|
|
|
S: Maintained
|
2022-01-05 12:52:45 +01:00
|
|
|
F: docs/interop/virtio-balloon-stats.rst
|
2020-03-12 14:37:25 +01:00
|
|
|
F: hw/virtio/virtio-balloon*.c
|
|
|
|
F: include/hw/virtio/virtio-balloon.h
|
2020-06-29 11:35:02 +02:00
|
|
|
F: softmmu/balloon.c
|
2020-03-12 14:37:25 +01:00
|
|
|
F: include/sysemu/balloon.h
|
|
|
|
|
2010-09-09 21:51:31 +02:00
|
|
|
virtio-9p
|
2016-06-17 16:35:05 +02:00
|
|
|
M: Greg Kurz <groug@kaod.org>
|
2020-05-14 08:06:43 +02:00
|
|
|
M: Christian Schoenebeck <qemu_oss@crudebyte.com>
|
2019-10-10 12:36:28 +02:00
|
|
|
S: Odd Fixes
|
2021-05-06 15:12:23 +02:00
|
|
|
W: https://wiki.qemu.org/Documentation/9p
|
2012-04-13 17:19:12 +02:00
|
|
|
F: hw/9pfs/
|
2019-05-29 12:24:44 +02:00
|
|
|
X: hw/9pfs/xen-9p*
|
2012-04-13 17:19:12 +02:00
|
|
|
F: fsdev/
|
2021-02-04 14:54:25 +01:00
|
|
|
F: docs/tools/virtfs-proxy-helper.rst
|
2019-09-09 12:04:01 +02:00
|
|
|
F: tests/qtest/virtio-9p-test.c
|
2021-01-15 14:42:24 +01:00
|
|
|
T: git https://gitlab.com/gkurz/qemu.git 9p-next
|
2021-01-30 15:39:14 +01:00
|
|
|
T: git https://github.com/cschoenebeck/qemu.git 9p.next
|
2010-09-09 21:51:31 +02:00
|
|
|
|
|
|
|
virtio-blk
|
2012-11-09 14:29:03 +01:00
|
|
|
M: Stefan Hajnoczi <stefanha@redhat.com>
|
2015-04-29 16:13:25 +02:00
|
|
|
L: qemu-block@nongnu.org
|
2010-09-09 21:51:31 +02:00
|
|
|
S: Supported
|
2013-02-04 15:19:30 +01:00
|
|
|
F: hw/block/virtio-blk.c
|
2015-04-29 16:13:25 +02:00
|
|
|
F: hw/block/dataplane/*
|
2019-09-09 12:04:01 +02:00
|
|
|
F: tests/qtest/virtio-blk-test.c
|
2018-11-08 12:15:26 +01:00
|
|
|
T: git https://github.com/stefanha/qemu.git block
|
2010-09-09 21:51:31 +02:00
|
|
|
|
2013-03-05 03:22:01 +01:00
|
|
|
virtio-ccw
|
2017-07-04 11:22:15 +02:00
|
|
|
M: Cornelia Huck <cohuck@redhat.com>
|
2018-10-29 16:42:23 +01:00
|
|
|
M: Halil Pasic <pasic@linux.ibm.com>
|
2022-01-12 17:40:44 +01:00
|
|
|
M: Eric Farman <farman@linux.ibm.com>
|
2013-03-05 03:22:01 +01:00
|
|
|
S: Supported
|
2018-07-25 14:20:16 +02:00
|
|
|
F: hw/s390x/virtio-ccw*.[hc]
|
2022-05-25 16:58:14 +02:00
|
|
|
F: hw/s390x/vhost-*-ccw.c
|
2020-12-14 14:26:28 +01:00
|
|
|
T: git https://gitlab.com/cohuck/qemu.git s390-next
|
2018-11-08 12:15:26 +01:00
|
|
|
T: git https://github.com/borntraeger/qemu.git s390-next
|
2017-10-05 17:05:23 +02:00
|
|
|
L: qemu-s390x@nongnu.org
|
2013-03-05 03:22:01 +01:00
|
|
|
|
2019-10-21 12:41:36 +02:00
|
|
|
virtiofs
|
|
|
|
M: Dr. David Alan Gilbert <dgilbert@redhat.com>
|
|
|
|
M: Stefan Hajnoczi <stefanha@redhat.com>
|
|
|
|
S: Supported
|
|
|
|
F: tools/virtiofsd/*
|
|
|
|
F: hw/virtio/vhost-user-fs*
|
|
|
|
F: include/hw/virtio/vhost-user-fs.h
|
2021-02-04 14:54:25 +01:00
|
|
|
F: docs/tools/virtiofsd.rst
|
2021-03-18 16:41:57 +01:00
|
|
|
L: virtio-fs@redhat.com
|
2019-10-21 12:41:36 +02:00
|
|
|
|
2015-06-19 10:25:34 +02:00
|
|
|
virtio-input
|
|
|
|
M: Gerd Hoffmann <kraxel@redhat.com>
|
2021-08-10 10:34:49 +02:00
|
|
|
S: Odd Fixes
|
2019-05-03 15:00:32 +02:00
|
|
|
F: hw/input/vhost-user-input.c
|
2015-06-19 10:25:34 +02:00
|
|
|
F: hw/input/virtio-input*.c
|
|
|
|
F: include/hw/virtio/virtio-input.h
|
2019-05-14 12:41:26 +02:00
|
|
|
F: contrib/vhost-user-input/*
|
2015-06-19 10:25:34 +02:00
|
|
|
|
2020-02-14 14:27:45 +01:00
|
|
|
virtio-iommu
|
|
|
|
M: Eric Auger <eric.auger@redhat.com>
|
|
|
|
S: Maintained
|
|
|
|
F: hw/virtio/virtio-iommu*.c
|
|
|
|
F: include/hw/virtio/virtio-iommu.h
|
|
|
|
|
2010-09-09 21:51:31 +02:00
|
|
|
virtio-serial
|
2019-09-10 16:03:50 +02:00
|
|
|
M: Laurent Vivier <lvivier@redhat.com>
|
|
|
|
R: Amit Shah <amit@kernel.org>
|
2010-09-09 21:51:31 +02:00
|
|
|
S: Supported
|
2013-02-04 15:19:30 +01:00
|
|
|
F: hw/char/virtio-serial-bus.c
|
|
|
|
F: hw/char/virtio-console.c
|
2014-11-18 13:31:27 +01:00
|
|
|
F: include/hw/virtio/virtio-serial.h
|
2019-09-09 12:04:01 +02:00
|
|
|
F: tests/qtest/virtio-serial-test.c
|
2010-09-09 21:51:31 +02:00
|
|
|
|
2014-11-18 13:31:26 +01:00
|
|
|
virtio-rng
|
2019-09-10 16:03:50 +02:00
|
|
|
M: Laurent Vivier <lvivier@redhat.com>
|
|
|
|
R: Amit Shah <amit@kernel.org>
|
2014-11-18 13:31:26 +01:00
|
|
|
S: Supported
|
|
|
|
F: hw/virtio/virtio-rng.c
|
|
|
|
F: include/hw/virtio/virtio-rng.h
|
2016-02-25 13:44:20 +01:00
|
|
|
F: include/sysemu/rng*.h
|
2014-11-18 13:31:26 +01:00
|
|
|
F: backends/rng*.c
|
2019-09-09 12:04:01 +02:00
|
|
|
F: tests/qtest/virtio-rng-test.c
|
2014-11-18 13:31:26 +01:00
|
|
|
|
2021-06-14 22:28:42 +02:00
|
|
|
vhost-user-rng
|
|
|
|
M: Mathieu Poirier <mathieu.poirier@linaro.org>
|
|
|
|
S: Supported
|
|
|
|
F: docs/tools/vhost-user-rng.rst
|
|
|
|
F: hw/virtio/vhost-user-rng.c
|
|
|
|
F: hw/virtio/vhost-user-rng-pci.c
|
|
|
|
F: include/hw/virtio/vhost-user-rng.h
|
|
|
|
F: tools/vhost-user-rng/*
|
|
|
|
|
2016-10-28 10:33:31 +02:00
|
|
|
virtio-crypto
|
|
|
|
M: Gonglei <arei.gonglei@huawei.com>
|
|
|
|
S: Supported
|
|
|
|
F: hw/virtio/virtio-crypto.c
|
|
|
|
F: hw/virtio/virtio-crypto-pci.c
|
|
|
|
F: include/hw/virtio/virtio-crypto.h
|
|
|
|
|
2020-06-26 09:22:39 +02:00
|
|
|
virtio-mem
|
|
|
|
M: David Hildenbrand <david@redhat.com>
|
|
|
|
S: Supported
|
|
|
|
W: https://virtio-mem.gitlab.io/
|
|
|
|
F: hw/virtio/virtio-mem.c
|
|
|
|
F: hw/virtio/virtio-mem-pci.h
|
|
|
|
F: hw/virtio/virtio-mem-pci.c
|
|
|
|
F: include/hw/virtio/virtio-mem.h
|
|
|
|
|
2013-06-04 17:17:10 +02:00
|
|
|
nvme
|
2020-04-21 14:22:36 +02:00
|
|
|
M: Keith Busch <kbusch@kernel.org>
|
2020-07-06 20:29:22 +02:00
|
|
|
M: Klaus Jensen <its@irrelevant.dk>
|
2015-04-30 15:15:13 +02:00
|
|
|
L: qemu-block@nongnu.org
|
2013-06-04 17:17:10 +02:00
|
|
|
S: Supported
|
2021-04-14 22:14:30 +02:00
|
|
|
F: hw/nvme/*
|
2020-07-01 16:06:34 +02:00
|
|
|
F: include/block/nvme.h
|
2019-09-09 12:04:01 +02:00
|
|
|
F: tests/qtest/nvme-test.c
|
2021-04-08 11:11:02 +02:00
|
|
|
F: docs/system/nvme.rst
|
2020-07-06 20:29:22 +02:00
|
|
|
T: git git://git.infradead.org/qemu-nvme.git nvme-next
|
2013-06-04 17:17:10 +02:00
|
|
|
|
2014-04-16 16:44:19 +02:00
|
|
|
megasas
|
2017-09-10 19:15:57 +02:00
|
|
|
M: Hannes Reinecke <hare@suse.com>
|
2015-04-30 15:15:13 +02:00
|
|
|
L: qemu-block@nongnu.org
|
2014-04-16 16:44:19 +02:00
|
|
|
S: Supported
|
|
|
|
F: hw/scsi/megasas.c
|
|
|
|
F: hw/scsi/mfi.h
|
2019-09-09 12:04:01 +02:00
|
|
|
F: tests/qtest/megasas-test.c
|
2021-01-26 12:16:37 +01:00
|
|
|
F: tests/qtest/fuzz-megasas-test.c
|
2014-04-16 16:44:19 +02:00
|
|
|
|
2016-06-01 10:23:39 +02:00
|
|
|
Network packet abstractions
|
2018-01-08 19:34:06 +01:00
|
|
|
M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
|
2016-06-01 10:23:39 +02:00
|
|
|
S: Maintained
|
|
|
|
F: include/net/eth.h
|
|
|
|
F: net/eth.c
|
|
|
|
F: hw/net/net_rx_pkt*
|
|
|
|
F: hw/net/net_tx_pkt*
|
|
|
|
|
2014-08-27 07:58:43 +02:00
|
|
|
Vmware
|
2018-01-08 19:34:06 +01:00
|
|
|
M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
|
2014-08-27 07:58:43 +02:00
|
|
|
S: Maintained
|
|
|
|
F: hw/net/vmxnet*
|
|
|
|
F: hw/scsi/vmw_pvscsi*
|
2019-09-09 12:04:01 +02:00
|
|
|
F: tests/qtest/vmxnet3-test.c
|
2014-08-27 07:58:43 +02:00
|
|
|
|
2015-03-14 05:09:32 +01:00
|
|
|
Rocker
|
|
|
|
M: Jiri Pirko <jiri@resnulli.us>
|
|
|
|
S: Maintained
|
|
|
|
F: hw/net/rocker/
|
2020-11-02 09:15:49 +01:00
|
|
|
F: qapi/rocker.json
|
2016-09-27 16:33:46 +02:00
|
|
|
F: tests/rocker/
|
|
|
|
F: docs/specs/rocker.txt
|
2015-03-14 05:09:32 +01:00
|
|
|
|
2016-06-01 10:23:44 +02:00
|
|
|
e1000x
|
2018-01-08 19:34:06 +01:00
|
|
|
M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
|
2016-06-01 10:23:44 +02:00
|
|
|
S: Maintained
|
|
|
|
F: hw/net/e1000x*
|
|
|
|
|
net: Introduce e1000e device emulation
This patch introduces emulation for the Intel 82574 adapter, AKA e1000e.
This implementation is derived from the e1000 emulation code, and
utilizes the TX/RX packet abstractions that were initially developed for
the vmxnet3 device. Although some parts of the introduced code may be
shared with e1000, the differences are substantial enough so that the
only shared resources for the two devices are the definitions in
hw/net/e1000_regs.h.
Similarly to vmxnet3, the new device uses virtio headers for task
offloads (for backends that support virtio extensions). Usage of
virtio headers may be forcibly disabled via a boolean device property
"vnet" (which is enabled by default). In such case task offloads
will be performed in software, in the same way it is done on
backends that do not support virtio headers.
The device code is split into two parts:
1. hw/net/e1000e.c: QEMU-specific code for a network device;
2. hw/net/e1000e_core.[hc]: Device emulation according to the spec.
The new device name is e1000e.
Intel specifications for the 82574 controller are available at:
http://www.intel.com/content/dam/doc/datasheet/82574l-gbe-controller-datasheet.pdf
Throughput measurement results (iperf2):
Fedora 22 guest, TCP, RX
4 ++------------------------------------------+
| |
| X X X X X
3.5 ++ X X X X |
| X |
| |
3 ++ |
G | X |
b | |
/ 2.5 ++ |
s | |
| |
2 ++ |
| |
| |
1.5 X+ |
| |
+ + + + + + + + + + + +
1 ++--+---+---+---+---+---+---+---+---+---+---+
32 64 128 256 512 1 2 4 8 16 32 64
B B B B B KB KB KB KB KB KB KB
Buffer size
Fedora 22 guest, TCP, TX
18 ++-------------------------------------------+
| X |
16 ++ X X X X X
| X |
14 ++ |
| |
12 ++ |
G | X |
b 10 ++ |
/ | |
s 8 ++ |
| |
6 ++ X |
| |
4 ++ |
| X |
2 ++ X |
X + + + + + + + + + + +
0 ++--+---+---+---+---+----+---+---+---+---+---+
32 64 128 256 512 1 2 4 8 16 32 64
B B B B B KB KB KB KB KB KB KB
Buffer size
Fedora 22 guest, UDP, RX
3 ++------------------------------------------+
| X
| |
2.5 ++ |
| |
| |
2 ++ X |
G | |
b | |
/ 1.5 ++ |
s | X |
| |
1 ++ |
| |
| X |
0.5 ++ |
| X |
X + + + + +
0 ++-------+--------+-------+--------+--------+
32 64 128 256 512 1
B B B B B KB
Datagram size
Fedora 22 guest, UDP, TX
1 ++------------------------------------------+
| X
0.9 ++ |
| |
0.8 ++ |
0.7 ++ |
| |
G 0.6 ++ |
b | |
/ 0.5 ++ |
s | X |
0.4 ++ |
| |
0.3 ++ |
0.2 ++ X |
| |
0.1 ++ X |
X X + + + +
0 ++-------+--------+-------+--------+--------+
32 64 128 256 512 1
B B B B B KB
Datagram size
Windows 2012R2 guest, TCP, RX
3.2 ++------------------------------------------+
| X |
3 ++ |
| |
2.8 ++ |
| |
2.6 ++ X |
G | X X X X X
b 2.4 ++ X X |
/ | |
s 2.2 ++ |
| |
2 ++ |
| X X |
1.8 ++ |
| |
1.6 X+ |
+ + + + + + + + + + + +
1.4 ++--+---+---+---+---+---+---+---+---+---+---+
32 64 128 256 512 1 2 4 8 16 32 64
B B B B B KB KB KB KB KB KB KB
Buffer size
Windows 2012R2 guest, TCP, TX
14 ++-------------------------------------------+
| |
| X X
12 ++ |
| |
10 ++ |
| |
G | |
b 8 ++ |
/ | X |
s 6 ++ |
| |
| |
4 ++ X |
| |
2 ++ |
| X X X |
+ X X + + X X + + + + +
0 X+--+---+---+---+---+----+---+---+---+---+---+
32 64 128 256 512 1 2 4 8 16 32 64
B B B B B KB KB KB KB KB KB KB
Buffer size
Windows 2012R2 guest, UDP, RX
1.6 ++------------------------------------------X
| |
1.4 ++ |
| |
1.2 ++ |
| X |
| |
G 1 ++ |
b | |
/ 0.8 ++ |
s | |
0.6 ++ X |
| |
0.4 ++ |
| X |
| |
0.2 ++ X |
X + + + + +
0 ++-------+--------+-------+--------+--------+
32 64 128 256 512 1
B B B B B KB
Datagram size
Windows 2012R2 guest, UDP, TX
0.6 ++------------------------------------------+
| X
| |
0.5 ++ |
| |
| |
0.4 ++ |
G | |
b | |
/ 0.3 ++ X |
s | |
| |
0.2 ++ |
| |
| X |
0.1 ++ |
| X |
X X + + + +
0 ++-------+--------+-------+--------+--------+
32 64 128 256 512 1
B B B B B KB
Datagram size
Signed-off-by: Dmitry Fleytman <dmitry.fleytman@ravellosystems.com>
Signed-off-by: Leonid Bloch <leonid.bloch@ravellosystems.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Jason Wang <jasowang@redhat.com>
2016-06-01 10:23:45 +02:00
|
|
|
e1000e
|
2018-01-08 19:34:06 +01:00
|
|
|
M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
|
net: Introduce e1000e device emulation
This patch introduces emulation for the Intel 82574 adapter, AKA e1000e.
This implementation is derived from the e1000 emulation code, and
utilizes the TX/RX packet abstractions that were initially developed for
the vmxnet3 device. Although some parts of the introduced code may be
shared with e1000, the differences are substantial enough so that the
only shared resources for the two devices are the definitions in
hw/net/e1000_regs.h.
Similarly to vmxnet3, the new device uses virtio headers for task
offloads (for backends that support virtio extensions). Usage of
virtio headers may be forcibly disabled via a boolean device property
"vnet" (which is enabled by default). In such case task offloads
will be performed in software, in the same way it is done on
backends that do not support virtio headers.
The device code is split into two parts:
1. hw/net/e1000e.c: QEMU-specific code for a network device;
2. hw/net/e1000e_core.[hc]: Device emulation according to the spec.
The new device name is e1000e.
Intel specifications for the 82574 controller are available at:
http://www.intel.com/content/dam/doc/datasheet/82574l-gbe-controller-datasheet.pdf
Throughput measurement results (iperf2):
Fedora 22 guest, TCP, RX
4 ++------------------------------------------+
| |
| X X X X X
3.5 ++ X X X X |
| X |
| |
3 ++ |
G | X |
b | |
/ 2.5 ++ |
s | |
| |
2 ++ |
| |
| |
1.5 X+ |
| |
+ + + + + + + + + + + +
1 ++--+---+---+---+---+---+---+---+---+---+---+
32 64 128 256 512 1 2 4 8 16 32 64
B B B B B KB KB KB KB KB KB KB
Buffer size
Fedora 22 guest, TCP, TX
18 ++-------------------------------------------+
| X |
16 ++ X X X X X
| X |
14 ++ |
| |
12 ++ |
G | X |
b 10 ++ |
/ | |
s 8 ++ |
| |
6 ++ X |
| |
4 ++ |
| X |
2 ++ X |
X + + + + + + + + + + +
0 ++--+---+---+---+---+----+---+---+---+---+---+
32 64 128 256 512 1 2 4 8 16 32 64
B B B B B KB KB KB KB KB KB KB
Buffer size
Fedora 22 guest, UDP, RX
3 ++------------------------------------------+
| X
| |
2.5 ++ |
| |
| |
2 ++ X |
G | |
b | |
/ 1.5 ++ |
s | X |
| |
1 ++ |
| |
| X |
0.5 ++ |
| X |
X + + + + +
0 ++-------+--------+-------+--------+--------+
32 64 128 256 512 1
B B B B B KB
Datagram size
Fedora 22 guest, UDP, TX
1 ++------------------------------------------+
| X
0.9 ++ |
| |
0.8 ++ |
0.7 ++ |
| |
G 0.6 ++ |
b | |
/ 0.5 ++ |
s | X |
0.4 ++ |
| |
0.3 ++ |
0.2 ++ X |
| |
0.1 ++ X |
X X + + + +
0 ++-------+--------+-------+--------+--------+
32 64 128 256 512 1
B B B B B KB
Datagram size
Windows 2012R2 guest, TCP, RX
3.2 ++------------------------------------------+
| X |
3 ++ |
| |
2.8 ++ |
| |
2.6 ++ X |
G | X X X X X
b 2.4 ++ X X |
/ | |
s 2.2 ++ |
| |
2 ++ |
| X X |
1.8 ++ |
| |
1.6 X+ |
+ + + + + + + + + + + +
1.4 ++--+---+---+---+---+---+---+---+---+---+---+
32 64 128 256 512 1 2 4 8 16 32 64
B B B B B KB KB KB KB KB KB KB
Buffer size
Windows 2012R2 guest, TCP, TX
14 ++-------------------------------------------+
| |
| X X
12 ++ |
| |
10 ++ |
| |
G | |
b 8 ++ |
/ | X |
s 6 ++ |
| |
| |
4 ++ X |
| |
2 ++ |
| X X X |
+ X X + + X X + + + + +
0 X+--+---+---+---+---+----+---+---+---+---+---+
32 64 128 256 512 1 2 4 8 16 32 64
B B B B B KB KB KB KB KB KB KB
Buffer size
Windows 2012R2 guest, UDP, RX
1.6 ++------------------------------------------X
| |
1.4 ++ |
| |
1.2 ++ |
| X |
| |
G 1 ++ |
b | |
/ 0.8 ++ |
s | |
0.6 ++ X |
| |
0.4 ++ |
| X |
| |
0.2 ++ X |
X + + + + +
0 ++-------+--------+-------+--------+--------+
32 64 128 256 512 1
B B B B B KB
Datagram size
Windows 2012R2 guest, UDP, TX
0.6 ++------------------------------------------+
| X
| |
0.5 ++ |
| |
| |
0.4 ++ |
G | |
b | |
/ 0.3 ++ X |
s | |
| |
0.2 ++ |
| |
| X |
0.1 ++ |
| X |
X X + + + +
0 ++-------+--------+-------+--------+--------+
32 64 128 256 512 1
B B B B B KB
Datagram size
Signed-off-by: Dmitry Fleytman <dmitry.fleytman@ravellosystems.com>
Signed-off-by: Leonid Bloch <leonid.bloch@ravellosystems.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Jason Wang <jasowang@redhat.com>
2016-06-01 10:23:45 +02:00
|
|
|
S: Maintained
|
|
|
|
F: hw/net/e1000e*
|
2021-03-10 19:31:22 +01:00
|
|
|
F: tests/qtest/fuzz-e1000e-test.c
|
net: Introduce e1000e device emulation
This patch introduces emulation for the Intel 82574 adapter, AKA e1000e.
This implementation is derived from the e1000 emulation code, and
utilizes the TX/RX packet abstractions that were initially developed for
the vmxnet3 device. Although some parts of the introduced code may be
shared with e1000, the differences are substantial enough so that the
only shared resources for the two devices are the definitions in
hw/net/e1000_regs.h.
Similarly to vmxnet3, the new device uses virtio headers for task
offloads (for backends that support virtio extensions). Usage of
virtio headers may be forcibly disabled via a boolean device property
"vnet" (which is enabled by default). In such case task offloads
will be performed in software, in the same way it is done on
backends that do not support virtio headers.
The device code is split into two parts:
1. hw/net/e1000e.c: QEMU-specific code for a network device;
2. hw/net/e1000e_core.[hc]: Device emulation according to the spec.
The new device name is e1000e.
Intel specifications for the 82574 controller are available at:
http://www.intel.com/content/dam/doc/datasheet/82574l-gbe-controller-datasheet.pdf
Throughput measurement results (iperf2):
Fedora 22 guest, TCP, RX
4 ++------------------------------------------+
| |
| X X X X X
3.5 ++ X X X X |
| X |
| |
3 ++ |
G | X |
b | |
/ 2.5 ++ |
s | |
| |
2 ++ |
| |
| |
1.5 X+ |
| |
+ + + + + + + + + + + +
1 ++--+---+---+---+---+---+---+---+---+---+---+
32 64 128 256 512 1 2 4 8 16 32 64
B B B B B KB KB KB KB KB KB KB
Buffer size
Fedora 22 guest, TCP, TX
18 ++-------------------------------------------+
| X |
16 ++ X X X X X
| X |
14 ++ |
| |
12 ++ |
G | X |
b 10 ++ |
/ | |
s 8 ++ |
| |
6 ++ X |
| |
4 ++ |
| X |
2 ++ X |
X + + + + + + + + + + +
0 ++--+---+---+---+---+----+---+---+---+---+---+
32 64 128 256 512 1 2 4 8 16 32 64
B B B B B KB KB KB KB KB KB KB
Buffer size
Fedora 22 guest, UDP, RX
3 ++------------------------------------------+
| X
| |
2.5 ++ |
| |
| |
2 ++ X |
G | |
b | |
/ 1.5 ++ |
s | X |
| |
1 ++ |
| |
| X |
0.5 ++ |
| X |
X + + + + +
0 ++-------+--------+-------+--------+--------+
32 64 128 256 512 1
B B B B B KB
Datagram size
Fedora 22 guest, UDP, TX
1 ++------------------------------------------+
| X
0.9 ++ |
| |
0.8 ++ |
0.7 ++ |
| |
G 0.6 ++ |
b | |
/ 0.5 ++ |
s | X |
0.4 ++ |
| |
0.3 ++ |
0.2 ++ X |
| |
0.1 ++ X |
X X + + + +
0 ++-------+--------+-------+--------+--------+
32 64 128 256 512 1
B B B B B KB
Datagram size
Windows 2012R2 guest, TCP, RX
3.2 ++------------------------------------------+
| X |
3 ++ |
| |
2.8 ++ |
| |
2.6 ++ X |
G | X X X X X
b 2.4 ++ X X |
/ | |
s 2.2 ++ |
| |
2 ++ |
| X X |
1.8 ++ |
| |
1.6 X+ |
+ + + + + + + + + + + +
1.4 ++--+---+---+---+---+---+---+---+---+---+---+
32 64 128 256 512 1 2 4 8 16 32 64
B B B B B KB KB KB KB KB KB KB
Buffer size
Windows 2012R2 guest, TCP, TX
14 ++-------------------------------------------+
| |
| X X
12 ++ |
| |
10 ++ |
| |
G | |
b 8 ++ |
/ | X |
s 6 ++ |
| |
| |
4 ++ X |
| |
2 ++ |
| X X X |
+ X X + + X X + + + + +
0 X+--+---+---+---+---+----+---+---+---+---+---+
32 64 128 256 512 1 2 4 8 16 32 64
B B B B B KB KB KB KB KB KB KB
Buffer size
Windows 2012R2 guest, UDP, RX
1.6 ++------------------------------------------X
| |
1.4 ++ |
| |
1.2 ++ |
| X |
| |
G 1 ++ |
b | |
/ 0.8 ++ |
s | |
0.6 ++ X |
| |
0.4 ++ |
| X |
| |
0.2 ++ X |
X + + + + +
0 ++-------+--------+-------+--------+--------+
32 64 128 256 512 1
B B B B B KB
Datagram size
Windows 2012R2 guest, UDP, TX
0.6 ++------------------------------------------+
| X
| |
0.5 ++ |
| |
| |
0.4 ++ |
G | |
b | |
/ 0.3 ++ X |
s | |
| |
0.2 ++ |
| |
| X |
0.1 ++ |
| X |
X X + + + +
0 ++-------+--------+-------+--------+--------+
32 64 128 256 512 1
B B B B B KB
Datagram size
Signed-off-by: Dmitry Fleytman <dmitry.fleytman@ravellosystems.com>
Signed-off-by: Leonid Bloch <leonid.bloch@ravellosystems.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Jason Wang <jasowang@redhat.com>
2016-06-01 10:23:45 +02:00
|
|
|
|
2017-11-16 20:49:02 +01:00
|
|
|
eepro100
|
|
|
|
M: Stefan Weil <sw@weilnetz.de>
|
|
|
|
S: Maintained
|
|
|
|
F: hw/net/eepro100.c
|
|
|
|
|
2019-10-23 10:42:44 +02:00
|
|
|
tulip
|
|
|
|
M: Sven Schnelle <svens@stackframe.org>
|
|
|
|
S: Maintained
|
|
|
|
F: hw/net/tulip.c
|
|
|
|
F: hw/net/tulip.h
|
|
|
|
|
2021-04-12 21:45:22 +02:00
|
|
|
pca954x
|
|
|
|
M: Patrick Venture <venture@google.com>
|
|
|
|
S: Maintained
|
|
|
|
F: hw/i2c/i2c_mux_pca954x.c
|
|
|
|
F: include/hw/i2c/i2c_mux_pca954x.h
|
|
|
|
|
2016-10-04 14:28:09 +02:00
|
|
|
Generic Loader
|
2018-03-01 12:05:58 +01:00
|
|
|
M: Alistair Francis <alistair@alistair23.me>
|
2016-10-04 14:28:09 +02:00
|
|
|
S: Maintained
|
|
|
|
F: hw/core/generic-loader.c
|
2022-05-09 11:13:39 +02:00
|
|
|
F: hw/core/uboot_image.h
|
2016-10-04 14:28:09 +02:00
|
|
|
F: include/hw/core/generic-loader.h
|
2021-03-03 18:36:40 +01:00
|
|
|
F: docs/system/generic-loader.rst
|
2016-10-04 14:28:09 +02:00
|
|
|
|
2021-03-03 18:36:39 +01:00
|
|
|
Guest Loader
|
|
|
|
M: Alex Bennée <alex.bennee@linaro.org>
|
|
|
|
S: Maintained
|
|
|
|
F: hw/core/guest-loader.c
|
2021-03-03 18:36:41 +01:00
|
|
|
F: docs/system/guest-loader.rst
|
2021-11-05 16:53:54 +01:00
|
|
|
F: tests/avocado/boot_xen.py
|
2016-10-04 14:28:09 +02:00
|
|
|
|
2018-08-16 15:05:28 +02:00
|
|
|
Intel Hexadecimal Object File Loader
|
|
|
|
M: Su Hang <suhang16@mails.ucas.ac.cn>
|
|
|
|
S: Maintained
|
2019-09-09 12:04:01 +02:00
|
|
|
F: tests/qtest/hexloader-test.c
|
2018-11-02 12:52:37 +01:00
|
|
|
F: tests/data/hex-loader/test.hex
|
2018-08-16 15:05:28 +02:00
|
|
|
|
2016-11-08 12:46:22 +01:00
|
|
|
CHRP NVRAM
|
|
|
|
M: Thomas Huth <thuth@redhat.com>
|
|
|
|
S: Maintained
|
|
|
|
F: hw/nvram/chrp_nvram.c
|
|
|
|
F: include/hw/nvram/chrp_nvram.h
|
2019-09-09 12:04:01 +02:00
|
|
|
F: tests/qtest/prom-env-test.c
|
2016-11-08 12:46:22 +01:00
|
|
|
|
2017-02-17 00:15:40 +01:00
|
|
|
VM Generation ID
|
2020-10-30 16:34:15 +01:00
|
|
|
S: Orphan
|
2022-01-31 13:20:01 +01:00
|
|
|
R: Ani Sinha <ani@anisinha.ca>
|
2017-02-17 00:15:40 +01:00
|
|
|
F: hw/acpi/vmgenid.c
|
|
|
|
F: include/hw/acpi/vmgenid.h
|
|
|
|
F: docs/specs/vmgenid.txt
|
2019-09-09 12:04:01 +02:00
|
|
|
F: tests/qtest/vmgenid-test.c
|
2017-02-17 00:15:40 +01:00
|
|
|
F: stubs/vmgenid.c
|
|
|
|
|
2020-03-21 17:49:01 +01:00
|
|
|
LED
|
|
|
|
M: Philippe Mathieu-Daudé <f4bug@amsat.org>
|
|
|
|
S: Maintained
|
|
|
|
F: include/hw/misc/led.h
|
|
|
|
F: hw/misc/led.c
|
|
|
|
|
2017-06-29 17:03:08 +02:00
|
|
|
Unimplemented device
|
|
|
|
M: Peter Maydell <peter.maydell@linaro.org>
|
|
|
|
R: Philippe Mathieu-Daudé <f4bug@amsat.org>
|
2022-01-31 13:20:01 +01:00
|
|
|
R: Ani Sinha <ani@anisinha.ca>
|
2017-06-29 17:03:08 +02:00
|
|
|
S: Maintained
|
|
|
|
F: include/hw/misc/unimp.h
|
|
|
|
F: hw/misc/unimp.c
|
|
|
|
|
2019-06-24 17:17:32 +02:00
|
|
|
Empty slot
|
|
|
|
M: Artyom Tarasenko <atar4qemu@gmail.com>
|
|
|
|
R: Philippe Mathieu-Daudé <f4bug@amsat.org>
|
2022-01-31 13:20:01 +01:00
|
|
|
R: Ani Sinha <ani@anisinha.ca>
|
2019-06-24 17:17:32 +02:00
|
|
|
S: Maintained
|
|
|
|
F: include/hw/misc/empty_slot.h
|
|
|
|
F: hw/misc/empty_slot.c
|
|
|
|
|
2018-05-22 18:50:58 +02:00
|
|
|
Standard VGA
|
|
|
|
M: Gerd Hoffmann <kraxel@redhat.com>
|
|
|
|
S: Maintained
|
|
|
|
F: hw/display/vga*
|
|
|
|
F: hw/display/bochs-display.c
|
|
|
|
F: include/hw/display/vga.h
|
|
|
|
F: include/hw/display/bochs-vbe.h
|
|
|
|
|
2018-06-13 14:29:48 +02:00
|
|
|
ramfb
|
|
|
|
M: Gerd Hoffmann <kraxel@redhat.com>
|
|
|
|
S: Maintained
|
|
|
|
F: hw/display/ramfb*.c
|
|
|
|
F: include/hw/display/ramfb.h
|
|
|
|
|
2018-05-22 18:50:58 +02:00
|
|
|
virtio-gpu
|
|
|
|
M: Gerd Hoffmann <kraxel@redhat.com>
|
2021-08-10 10:34:50 +02:00
|
|
|
S: Odd Fixes
|
2018-05-22 18:50:58 +02:00
|
|
|
F: hw/display/virtio-gpu*
|
2019-05-24 15:09:45 +02:00
|
|
|
F: hw/display/virtio-vga.*
|
2018-05-22 18:50:58 +02:00
|
|
|
F: include/hw/virtio/virtio-gpu.h
|
|
|
|
|
2020-03-26 09:57:27 +01:00
|
|
|
vhost-user-blk
|
|
|
|
M: Raphael Norwitz <raphael.norwitz@nutanix.com>
|
|
|
|
S: Maintained
|
|
|
|
F: contrib/vhost-user-blk/
|
|
|
|
F: contrib/vhost-user-scsi/
|
|
|
|
F: hw/block/vhost-user-blk.c
|
|
|
|
F: hw/scsi/vhost-user-scsi.c
|
|
|
|
F: hw/virtio/vhost-user-blk-pci.c
|
|
|
|
F: hw/virtio/vhost-user-scsi-pci.c
|
|
|
|
F: include/hw/virtio/vhost-user-blk.h
|
|
|
|
F: include/hw/virtio/vhost-user-scsi.h
|
|
|
|
|
2019-05-24 15:09:38 +02:00
|
|
|
vhost-user-gpu
|
|
|
|
M: Marc-André Lureau <marcandre.lureau@redhat.com>
|
2021-08-10 10:34:50 +02:00
|
|
|
R: Gerd Hoffmann <kraxel@redhat.com>
|
2019-05-24 15:09:38 +02:00
|
|
|
S: Maintained
|
|
|
|
F: docs/interop/vhost-user-gpu.rst
|
2019-05-24 15:09:42 +02:00
|
|
|
F: contrib/vhost-user-gpu
|
|
|
|
F: hw/display/vhost-user-*
|
2019-05-24 15:09:38 +02:00
|
|
|
|
2018-05-22 18:50:58 +02:00
|
|
|
Cirrus VGA
|
|
|
|
M: Gerd Hoffmann <kraxel@redhat.com>
|
|
|
|
S: Odd Fixes
|
|
|
|
W: https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
|
|
|
|
F: hw/display/cirrus*
|
|
|
|
|
2018-09-25 09:56:42 +02:00
|
|
|
EDID Generator
|
|
|
|
M: Gerd Hoffmann <kraxel@redhat.com>
|
|
|
|
S: Maintained
|
|
|
|
F: hw/display/edid*
|
|
|
|
F: include/hw/display/edid.h
|
|
|
|
F: qemu-edid.c
|
|
|
|
|
2019-02-02 21:17:45 +01:00
|
|
|
PIIX4 South Bridge (i82371AB)
|
|
|
|
M: Hervé Poussineau <hpoussin@reactos.org>
|
|
|
|
M: Philippe Mathieu-Daudé <f4bug@amsat.org>
|
|
|
|
S: Maintained
|
|
|
|
F: hw/isa/piix4.c
|
2018-01-06 16:37:26 +01:00
|
|
|
F: include/hw/southbridge/piix.h
|
2019-02-02 21:17:45 +01:00
|
|
|
|
2018-11-22 03:11:39 +01:00
|
|
|
Firmware configuration (fw_cfg)
|
2021-12-29 17:06:39 +01:00
|
|
|
M: Philippe Mathieu-Daudé <f4bug@amsat.org>
|
2018-11-22 03:11:39 +01:00
|
|
|
R: Gerd Hoffmann <kraxel@redhat.com>
|
|
|
|
S: Supported
|
|
|
|
F: docs/specs/fw_cfg.txt
|
2020-10-06 13:19:09 +02:00
|
|
|
F: hw/nvram/fw_cfg*.c
|
2019-04-22 15:49:41 +02:00
|
|
|
F: stubs/fw_cfg.c
|
2018-11-22 03:11:39 +01:00
|
|
|
F: include/hw/nvram/fw_cfg.h
|
|
|
|
F: include/standard-headers/linux/qemu_fw_cfg.h
|
2019-09-10 16:41:20 +02:00
|
|
|
F: tests/qtest/libqos/fw_cfg.c
|
2019-09-09 12:04:01 +02:00
|
|
|
F: tests/qtest/fw_cfg-test.c
|
2018-11-22 03:11:39 +01:00
|
|
|
T: git https://github.com/philmd/qemu.git fw_cfg-next
|
|
|
|
|
2019-01-30 16:45:40 +01:00
|
|
|
XIVE
|
|
|
|
M: Cédric Le Goater <clg@kaod.org>
|
|
|
|
L: qemu-ppc@nongnu.org
|
|
|
|
S: Supported
|
|
|
|
F: hw/*/*xive*
|
|
|
|
F: include/hw/*/*xive*
|
2019-05-21 10:24:11 +02:00
|
|
|
F: docs/*/*xive*
|
2019-01-30 16:45:40 +01:00
|
|
|
|
2020-06-10 23:32:38 +02:00
|
|
|
Renesas peripherals
|
2021-03-12 16:55:13 +01:00
|
|
|
R: Yoshinori Sato <ysato@users.sourceforge.jp>
|
2020-06-10 23:32:38 +02:00
|
|
|
R: Magnus Damm <magnus.damm@gmail.com>
|
2020-10-31 16:23:40 +01:00
|
|
|
S: Odd Fixes
|
2019-01-21 14:15:59 +01:00
|
|
|
F: hw/char/renesas_sci.c
|
2020-06-10 23:32:38 +02:00
|
|
|
F: hw/char/sh_serial.c
|
2019-03-20 15:16:05 +01:00
|
|
|
F: hw/timer/renesas_*.c
|
2020-06-10 23:32:38 +02:00
|
|
|
F: hw/timer/sh_timer.c
|
2019-01-21 14:15:59 +01:00
|
|
|
F: include/hw/char/renesas_sci.h
|
2020-06-10 23:32:38 +02:00
|
|
|
F: include/hw/sh4/sh.h
|
2019-03-20 15:16:05 +01:00
|
|
|
F: include/hw/timer/renesas_*.h
|
2020-06-10 23:32:38 +02:00
|
|
|
|
2019-01-21 14:15:57 +01:00
|
|
|
Renesas RX peripherals
|
2021-03-12 16:55:12 +01:00
|
|
|
R: Yoshinori Sato <ysato@users.sourceforge.jp>
|
|
|
|
S: Orphan
|
2019-01-21 14:15:57 +01:00
|
|
|
F: hw/intc/rx_icu.c
|
2019-01-21 14:16:00 +01:00
|
|
|
F: hw/rx/
|
2019-01-21 14:15:57 +01:00
|
|
|
F: include/hw/intc/rx_icu.h
|
2019-01-21 14:16:00 +01:00
|
|
|
F: include/hw/rx/
|
2019-01-21 14:15:57 +01:00
|
|
|
|
2020-09-14 10:13:41 +02:00
|
|
|
CAN bus subsystem and hardware
|
|
|
|
M: Pavel Pisa <pisa@cmp.felk.cvut.cz>
|
|
|
|
M: Vikram Garhwal <fnu.vikram@xilinx.com>
|
|
|
|
S: Maintained
|
|
|
|
W: https://canbus.pages.fel.cvut.cz/
|
|
|
|
F: net/can/*
|
|
|
|
F: hw/net/can/*
|
|
|
|
F: include/net/can_*.h
|
|
|
|
|
2021-09-21 05:34:35 +02:00
|
|
|
OpenPIC interrupt controller
|
|
|
|
M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
|
|
|
|
S: Odd Fixes
|
|
|
|
F: hw/intc/openpic.c
|
|
|
|
F: include/hw/ppc/openpic.h
|
|
|
|
|
2021-10-04 10:26:23 +02:00
|
|
|
MIPS CPS
|
|
|
|
M: Philippe Mathieu-Daudé <f4bug@amsat.org>
|
|
|
|
S: Odd Fixes
|
|
|
|
F: hw/misc/mips_*
|
|
|
|
F: include/hw/misc/mips_*
|
|
|
|
|
|
|
|
MIPS GIC
|
|
|
|
M: Philippe Mathieu-Daudé <f4bug@amsat.org>
|
|
|
|
S: Odd Fixes
|
|
|
|
F: hw/intc/mips_gic.c
|
|
|
|
F: hw/timer/mips_gictimer.c
|
|
|
|
F: include/hw/intc/mips_gic.h
|
|
|
|
F: include/hw/timer/mips_gictimer.h
|
|
|
|
|
2021-12-22 11:55:48 +01:00
|
|
|
S390 3270 device
|
|
|
|
M: Halil Pasic <pasic@linux.ibm.com>
|
|
|
|
M: Christian Borntraeger <borntraeger@linux.ibm.com>
|
|
|
|
S: Odd fixes
|
|
|
|
F: include/hw/s390x/3270-ccw.h
|
|
|
|
F: hw/char/terminal3270.c
|
|
|
|
F: hw/s390x/3270-ccw.c
|
|
|
|
L: qemu-s390x@nongnu.org
|
|
|
|
|
|
|
|
S390 diag 288 watchdog
|
|
|
|
M: Halil Pasic <pasic@linux.ibm.com>
|
|
|
|
M: Christian Borntraeger <borntraeger@linux.ibm.com>
|
|
|
|
S: Supported
|
|
|
|
F: hw/watchdog/wdt_diag288.c
|
|
|
|
F: include/hw/watchdog/wdt_diag288.h
|
|
|
|
L: qemu-s390x@nongnu.org
|
|
|
|
|
|
|
|
S390 storage key device
|
|
|
|
M: Halil Pasic <pasic@linux.ibm.com>
|
|
|
|
M: Christian Borntraeger <borntraeger@linux.ibm.com>
|
|
|
|
S: Supported
|
|
|
|
F: hw/s390x/storage-keys.h
|
|
|
|
F: hw/390x/s390-skeys*.c
|
|
|
|
L: qemu-s390x@nongnu.org
|
|
|
|
|
|
|
|
S390 storage attribute device
|
|
|
|
M: Halil Pasic <pasic@linux.ibm.com>
|
|
|
|
M: Christian Borntraeger <borntraeger@linux.ibm.com>
|
|
|
|
S: Supported
|
|
|
|
F: hw/s390x/storage-attributes.h
|
|
|
|
F: hw/s390/s390-stattrib*.c
|
|
|
|
L: qemu-s390x@nongnu.org
|
|
|
|
|
|
|
|
S390 floating interrupt controller
|
|
|
|
M: Halil Pasic <pasic@linux.ibm.com>
|
|
|
|
M: Christian Borntraeger <borntraeger@linux.ibm.com>
|
|
|
|
M: David Hildenbrand <david@redhat.com>
|
|
|
|
S: Supported
|
|
|
|
F: hw/intc/s390_flic*.c
|
|
|
|
F: include/hw/s390x/s390_flic.h
|
|
|
|
L: qemu-s390x@nongnu.org
|
|
|
|
|
2022-05-19 14:40:55 +02:00
|
|
|
CanoKey
|
|
|
|
M: Hongren (Zenithal) Zheng <i@zenithal.me>
|
|
|
|
S: Maintained
|
|
|
|
R: Canokeys.org <contact@canokeys.org>
|
|
|
|
F: hw/usb/canokey.c
|
|
|
|
F: hw/usb/canokey.h
|
|
|
|
F: docs/system/devices/canokey.rst
|
|
|
|
|
2010-09-09 21:51:31 +02:00
|
|
|
Subsystems
|
|
|
|
----------
|
2021-08-16 21:10:12 +02:00
|
|
|
Overall Audio backends
|
2013-09-24 10:26:24 +02:00
|
|
|
M: Gerd Hoffmann <kraxel@redhat.com>
|
2021-08-10 10:34:46 +02:00
|
|
|
S: Odd Fixes
|
2010-09-09 21:51:31 +02:00
|
|
|
F: audio/
|
2021-08-16 21:10:14 +02:00
|
|
|
X: audio/alsaaudio.c
|
|
|
|
X: audio/coreaudio.c
|
|
|
|
X: audio/dsound*
|
|
|
|
X: audio/jackaudio.c
|
|
|
|
X: audio/ossaudio.c
|
|
|
|
X: audio/paaudio.c
|
|
|
|
X: audio/sdlaudio.c
|
2021-08-16 21:10:13 +02:00
|
|
|
X: audio/spiceaudio.c
|
2020-11-02 09:15:49 +01:00
|
|
|
F: qapi/audio.json
|
2010-09-09 21:51:31 +02:00
|
|
|
|
2021-08-16 21:10:14 +02:00
|
|
|
ALSA Audio backend
|
|
|
|
M: Gerd Hoffmann <kraxel@redhat.com>
|
2021-09-04 15:13:46 +02:00
|
|
|
R: Christian Schoenebeck <qemu_oss@crudebyte.com>
|
2021-08-16 21:10:14 +02:00
|
|
|
S: Odd Fixes
|
|
|
|
F: audio/alsaaudio.c
|
|
|
|
|
|
|
|
Core Audio framework backend
|
|
|
|
M: Gerd Hoffmann <kraxel@redhat.com>
|
2022-03-14 18:28:35 +01:00
|
|
|
M: Philippe Mathieu-Daudé <f4bug@amsat.org>
|
2021-09-04 15:13:46 +02:00
|
|
|
R: Christian Schoenebeck <qemu_oss@crudebyte.com>
|
2022-02-13 03:12:15 +01:00
|
|
|
R: Akihiko Odaki <akihiko.odaki@gmail.com>
|
2021-08-16 21:10:14 +02:00
|
|
|
S: Odd Fixes
|
|
|
|
F: audio/coreaudio.c
|
|
|
|
|
|
|
|
DSound Audio backend
|
|
|
|
M: Gerd Hoffmann <kraxel@redhat.com>
|
|
|
|
S: Odd Fixes
|
|
|
|
F: audio/dsound*
|
|
|
|
|
|
|
|
JACK Audio Connection Kit backend
|
|
|
|
M: Gerd Hoffmann <kraxel@redhat.com>
|
2021-09-04 15:13:46 +02:00
|
|
|
R: Christian Schoenebeck <qemu_oss@crudebyte.com>
|
2021-08-16 21:10:14 +02:00
|
|
|
S: Odd Fixes
|
|
|
|
F: audio/jackaudio.c
|
|
|
|
|
|
|
|
Open Sound System (OSS) Audio backend
|
|
|
|
M: Gerd Hoffmann <kraxel@redhat.com>
|
|
|
|
S: Odd Fixes
|
|
|
|
F: audio/ossaudio.c
|
|
|
|
|
|
|
|
PulseAudio backend
|
|
|
|
M: Gerd Hoffmann <kraxel@redhat.com>
|
|
|
|
S: Odd Fixes
|
|
|
|
F: audio/paaudio.c
|
|
|
|
|
|
|
|
SDL Audio backend
|
|
|
|
M: Gerd Hoffmann <kraxel@redhat.com>
|
2021-10-30 08:21:06 +02:00
|
|
|
R: Thomas Huth <huth@tuxfamily.org>
|
2021-08-16 21:10:14 +02:00
|
|
|
S: Odd Fixes
|
|
|
|
F: audio/sdlaudio.c
|
|
|
|
|
2015-04-29 16:13:29 +02:00
|
|
|
Block layer core
|
2010-09-09 21:51:31 +02:00
|
|
|
M: Kevin Wolf <kwolf@redhat.com>
|
2021-08-10 16:04:11 +02:00
|
|
|
M: Hanna Reitz <hreitz@redhat.com>
|
2015-04-30 15:15:13 +02:00
|
|
|
L: qemu-block@nongnu.org
|
2010-09-09 21:51:31 +02:00
|
|
|
S: Supported
|
|
|
|
F: block*
|
|
|
|
F: block/
|
2013-02-04 15:19:30 +01:00
|
|
|
F: hw/block/
|
2015-05-20 12:03:17 +02:00
|
|
|
F: include/block/
|
2014-04-24 11:53:39 +02:00
|
|
|
F: qemu-img*
|
2021-02-04 14:54:25 +01:00
|
|
|
F: docs/tools/qemu-img.rst
|
2014-04-24 11:53:39 +02:00
|
|
|
F: qemu-io*
|
2014-10-21 17:43:17 +02:00
|
|
|
F: tests/qemu-iotests/
|
2017-04-28 18:55:17 +02:00
|
|
|
F: util/qemu-progress.c
|
2018-06-14 21:14:29 +02:00
|
|
|
F: qobject/block-qdict.c
|
2021-03-10 07:33:14 +01:00
|
|
|
F: tests/unit/check-block-qdict.c
|
2018-11-08 12:15:28 +01:00
|
|
|
T: git https://repo.or.cz/qemu/kevin.git block
|
2010-09-09 21:51:31 +02:00
|
|
|
|
2020-12-09 11:38:02 +01:00
|
|
|
Storage daemon
|
|
|
|
M: Kevin Wolf <kwolf@redhat.com>
|
|
|
|
L: qemu-block@nongnu.org
|
|
|
|
S: Supported
|
|
|
|
F: storage-daemon/
|
|
|
|
F: docs/interop/qemu-storage-daemon-qmp-ref.rst
|
|
|
|
F: docs/tools/qemu-storage-daemon.rst
|
|
|
|
T: git https://repo.or.cz/qemu/kevin.git block
|
|
|
|
|
2015-04-29 16:13:27 +02:00
|
|
|
Block I/O path
|
|
|
|
M: Stefan Hajnoczi <stefanha@redhat.com>
|
2018-11-21 16:30:36 +01:00
|
|
|
M: Fam Zheng <fam@euphon.net>
|
2015-04-29 16:13:27 +02:00
|
|
|
L: qemu-block@nongnu.org
|
|
|
|
S: Supported
|
2017-05-03 12:30:23 +02:00
|
|
|
F: util/async.c
|
|
|
|
F: util/aio-*.c
|
2020-03-05 18:08:02 +01:00
|
|
|
F: util/aio-*.h
|
|
|
|
F: util/fdmon-*.c
|
2015-04-29 16:13:27 +02:00
|
|
|
F: block/io.c
|
|
|
|
F: migration/block*
|
2016-07-18 09:19:47 +02:00
|
|
|
F: include/block/aio.h
|
2018-03-12 14:22:04 +01:00
|
|
|
F: include/block/aio-wait.h
|
2017-09-08 19:36:28 +02:00
|
|
|
F: scripts/qemugdb/aio.py
|
2021-03-10 07:33:14 +01:00
|
|
|
F: tests/unit/test-fdmon-epoll.c
|
2018-11-08 12:15:26 +01:00
|
|
|
T: git https://github.com/stefanha/qemu.git block
|
2015-04-29 16:13:27 +02:00
|
|
|
|
2017-08-22 07:08:27 +02:00
|
|
|
Block SCSI subsystem
|
|
|
|
M: Paolo Bonzini <pbonzini@redhat.com>
|
2018-11-21 16:30:36 +01:00
|
|
|
R: Fam Zheng <fam@euphon.net>
|
2017-08-22 07:08:27 +02:00
|
|
|
L: qemu-block@nongnu.org
|
|
|
|
S: Supported
|
|
|
|
F: include/scsi/*
|
|
|
|
F: scsi/*
|
|
|
|
|
2015-03-06 18:16:06 +01:00
|
|
|
Block Jobs
|
2018-09-26 20:05:32 +02:00
|
|
|
M: John Snow <jsnow@redhat.com>
|
2022-05-26 13:54:32 +02:00
|
|
|
M: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
|
2015-03-06 18:16:06 +01:00
|
|
|
L: qemu-block@nongnu.org
|
|
|
|
S: Supported
|
|
|
|
F: blockjob.c
|
|
|
|
F: include/block/blockjob.h
|
2018-04-12 17:29:59 +02:00
|
|
|
F: job.c
|
2018-05-03 19:01:14 +02:00
|
|
|
F: job-qmp.c
|
2018-08-10 13:55:53 +02:00
|
|
|
F: include/qemu/job.h
|
2015-03-06 18:16:06 +01:00
|
|
|
F: block/backup.c
|
|
|
|
F: block/commit.c
|
2016-03-10 03:54:00 +01:00
|
|
|
F: block/stream.c
|
2015-03-06 18:16:06 +01:00
|
|
|
F: block/mirror.c
|
2018-05-16 16:03:10 +02:00
|
|
|
F: qapi/job.json
|
2021-01-28 15:41:44 +01:00
|
|
|
F: block/block-copy.c
|
2022-03-03 20:43:39 +01:00
|
|
|
F: include/block/block-copy.h
|
|
|
|
F: block/reqlist.c
|
|
|
|
F: include/block/reqlist.h
|
block: rename backup-top to copy-before-write
We are going to convert backup_top to full featured public filter,
which can be used in separate of backup job. Start from renaming from
"how it used" to "what it does".
While updating comments in 283 iotest, drop and rephrase also things
about ".active", as this field is now dropped, and filter doesn't have
"inactive" mode.
Note that this change may be considered as incompatible interface
change, as backup-top filter format name was visible through
query-block and query-named-block-nodes.
Still, consider the following reasoning:
1. backup-top was never documented, so if someone depends on format
name (for driver that can't be used other than it is automatically
inserted on backup job start), it's a kind of "undocumented feature
use". So I think we are free to change it.
2. There is a hope, that there is no such users: it's a lot more native
to give a good node-name to backup-top filter if need to operate
with it somehow, and don't touch format name.
3. Another "incompatible" change in further commit would be moving
copy-before-write filter from using backing child to file child. And
this is even more reasonable than renaming: for now all public
filters are file-child based.
So, it's a risky change, but risk seems small and good interface worth
it.
Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Reviewed-by: Max Reitz <mreitz@redhat.com>
Message-Id: <20210824083856.17408-6-vsementsov@virtuozzo.com>
Signed-off-by: Hanna Reitz <hreitz@redhat.com>
2021-08-24 10:38:27 +02:00
|
|
|
F: block/copy-before-write.h
|
|
|
|
F: block/copy-before-write.c
|
2022-03-03 20:43:44 +01:00
|
|
|
F: block/snapshot-access.c
|
2021-01-28 15:41:44 +01:00
|
|
|
F: include/block/aio_task.h
|
|
|
|
F: block/aio_task.c
|
|
|
|
F: util/qemu-co-shared-resource.c
|
|
|
|
F: include/qemu/co-shared-resource.h
|
2020-10-01 18:24:01 +02:00
|
|
|
T: git https://gitlab.com/jsnow/qemu.git jobs
|
2022-05-26 13:54:32 +02:00
|
|
|
T: git https://gitlab.com/vsementsov/qemu.git block
|
2015-03-06 18:16:06 +01:00
|
|
|
|
2015-05-20 13:23:46 +02:00
|
|
|
Block QAPI, monitor, command line
|
|
|
|
M: Markus Armbruster <armbru@redhat.com>
|
|
|
|
S: Supported
|
|
|
|
F: blockdev.c
|
2020-03-08 10:24:32 +01:00
|
|
|
F: blockdev-hmp-cmds.c
|
2015-05-20 13:23:46 +02:00
|
|
|
F: block/qapi.c
|
|
|
|
F: qapi/block*.json
|
2017-08-24 21:14:02 +02:00
|
|
|
F: qapi/transaction.json
|
2018-11-08 12:15:28 +01:00
|
|
|
T: git https://repo.or.cz/qemu/armbru.git block-next
|
2015-05-20 13:23:46 +02:00
|
|
|
|
2022-04-29 16:40:28 +02:00
|
|
|
Compute Express Link
|
|
|
|
M: Ben Widawsky <ben.widawsky@intel.com>
|
|
|
|
M: Jonathan Cameron <jonathan.cameron@huawei.com>
|
|
|
|
S: Supported
|
|
|
|
F: hw/cxl/
|
2022-06-17 14:31:51 +02:00
|
|
|
F: hw/mem/cxl_type3.c
|
2022-04-29 16:40:28 +02:00
|
|
|
F: include/hw/cxl/
|
|
|
|
|
2016-08-04 20:18:51 +02:00
|
|
|
Dirty Bitmaps
|
2020-05-14 20:00:03 +02:00
|
|
|
M: Eric Blake <eblake@redhat.com>
|
2022-05-26 13:54:32 +02:00
|
|
|
M: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
|
2020-05-14 20:00:03 +02:00
|
|
|
R: John Snow <jsnow@redhat.com>
|
2016-08-04 20:18:51 +02:00
|
|
|
L: qemu-block@nongnu.org
|
|
|
|
S: Supported
|
|
|
|
F: include/qemu/hbitmap.h
|
|
|
|
F: include/block/dirty-bitmap.h
|
blockdev: Split off basic bitmap operations for qemu-img
Upcoming patches want to add some basic bitmap manipulation abilities
to qemu-img. But blockdev.o is too heavyweight to link into qemu-img
(among other things, it would drag in block jobs and transaction
support - qemu-img does offline manipulation, where atomicity is less
important because there are no concurrent modifications to compete
with), so it's time to split off the bare bones of what we will need
into a new file block/monitor/bitmap-qmp-cmds.o.
This is sufficient to expose 6 QMP commands for use by qemu-img (add,
remove, clear, enable, disable, merge), as well as move the three
helper functions touched in the previous patch. Regarding
MAINTAINERS, the new file is automatically part of block core, but
also makes sense as related to other dirty bitmap files.
Signed-off-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Max Reitz <mreitz@redhat.com>
Message-Id: <20200513011648.166876-6-eblake@redhat.com>
Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
2020-05-18 20:53:07 +02:00
|
|
|
F: block/monitor/bitmap-qmp-cmds.c
|
2019-12-19 11:16:03 +01:00
|
|
|
F: block/dirty-bitmap.c
|
|
|
|
F: block/qcow2-bitmap.c
|
2019-10-26 18:56:55 +02:00
|
|
|
F: migration/block-dirty-bitmap.c
|
2019-12-19 11:16:03 +01:00
|
|
|
F: util/hbitmap.c
|
2021-03-10 07:33:14 +01:00
|
|
|
F: tests/unit/test-hbitmap.c
|
2017-09-08 19:36:32 +02:00
|
|
|
F: docs/interop/bitmaps.rst
|
2020-05-14 20:00:03 +02:00
|
|
|
T: git https://repo.or.cz/qemu/ericb.git bitmaps
|
2022-05-26 13:54:32 +02:00
|
|
|
T: git https://gitlab.com/vsementsov/qemu.git block
|
2016-08-04 20:18:51 +02:00
|
|
|
|
2015-09-22 11:40:00 +02:00
|
|
|
Character device backends
|
2017-01-30 14:37:31 +01:00
|
|
|
M: Marc-André Lureau <marcandre.lureau@redhat.com>
|
2018-10-19 14:25:42 +02:00
|
|
|
R: Paolo Bonzini <pbonzini@redhat.com>
|
2010-09-09 21:51:31 +02:00
|
|
|
S: Maintained
|
2016-12-09 22:29:03 +01:00
|
|
|
F: chardev/
|
2017-01-26 14:19:46 +01:00
|
|
|
F: include/chardev/
|
2017-08-24 21:13:58 +02:00
|
|
|
F: qapi/char.json
|
2010-09-09 21:51:31 +02:00
|
|
|
|
2014-10-22 14:53:32 +02:00
|
|
|
Character Devices (Braille)
|
|
|
|
M: Samuel Thibault <samuel.thibault@ens-lyon.org>
|
|
|
|
S: Maintained
|
2017-05-29 10:39:42 +02:00
|
|
|
F: chardev/baum.c
|
2010-09-09 21:51:31 +02:00
|
|
|
|
2017-03-20 13:55:48 +01:00
|
|
|
Command line option argument parsing
|
|
|
|
M: Markus Armbruster <armbru@redhat.com>
|
|
|
|
S: Supported
|
|
|
|
F: include/qemu/option.h
|
2021-03-10 07:33:14 +01:00
|
|
|
F: tests/unit/test-keyval.c
|
|
|
|
F: tests/unit/test-qemu-opts.c
|
2017-03-20 13:55:48 +01:00
|
|
|
F: util/keyval.c
|
|
|
|
F: util/qemu-option.c
|
|
|
|
|
2015-01-28 11:29:57 +01:00
|
|
|
Coverity model
|
|
|
|
M: Markus Armbruster <armbru@redhat.com>
|
|
|
|
S: Supported
|
|
|
|
F: scripts/coverity-model.c
|
|
|
|
|
2020-03-19 20:33:22 +01:00
|
|
|
Coverity Scan integration
|
|
|
|
M: Peter Maydell <peter.maydell@linaro.org>
|
|
|
|
S: Maintained
|
|
|
|
F: scripts/coverity-scan/
|
|
|
|
|
2012-06-26 06:29:42 +02:00
|
|
|
Device Tree
|
2019-03-26 21:53:32 +01:00
|
|
|
M: Alistair Francis <alistair.francis@wdc.com>
|
|
|
|
R: David Gibson <david@gibson.dropbear.id.au>
|
2012-06-26 06:29:42 +02:00
|
|
|
S: Maintained
|
2020-10-06 09:01:22 +02:00
|
|
|
F: softmmu/device_tree.c
|
2015-12-17 15:25:12 +01:00
|
|
|
F: include/sysemu/device_tree.h
|
2012-06-26 06:29:42 +02:00
|
|
|
|
2017-09-11 18:59:29 +02:00
|
|
|
Dump
|
|
|
|
S: Supported
|
|
|
|
M: Marc-André Lureau <marcandre.lureau@redhat.com>
|
2019-06-19 22:10:49 +02:00
|
|
|
F: dump/
|
2017-09-11 18:59:29 +02:00
|
|
|
F: hw/misc/vmcoreinfo.c
|
|
|
|
F: include/hw/misc/vmcoreinfo.h
|
2019-06-19 22:10:49 +02:00
|
|
|
F: include/qemu/win_dump_defs
|
2017-09-11 18:59:29 +02:00
|
|
|
F: include/sysemu/dump-arch.h
|
|
|
|
F: include/sysemu/dump.h
|
2019-06-19 22:10:47 +02:00
|
|
|
F: qapi/dump.json
|
2017-09-11 18:59:29 +02:00
|
|
|
F: scripts/dump-guest-memory.py
|
|
|
|
F: stubs/dump.c
|
|
|
|
|
2015-09-12 13:29:56 +02:00
|
|
|
Error reporting
|
|
|
|
M: Markus Armbruster <armbru@redhat.com>
|
|
|
|
S: Supported
|
|
|
|
F: include/qapi/error.h
|
|
|
|
F: include/qemu/error-report.h
|
2019-08-12 07:23:33 +02:00
|
|
|
F: qapi/error.json
|
2015-09-12 13:29:56 +02:00
|
|
|
F: util/error.c
|
|
|
|
F: util/qemu-error.c
|
2020-03-24 16:36:25 +01:00
|
|
|
F: scripts/coccinelle/err-bad-newline.cocci
|
|
|
|
F: scripts/coccinelle/error-use-after-free.cocci
|
|
|
|
F: scripts/coccinelle/error_propagate_null.cocci
|
|
|
|
F: scripts/coccinelle/remove_local_err.cocci
|
|
|
|
F: scripts/coccinelle/use-error_fatal.cocci
|
2020-07-07 18:50:31 +02:00
|
|
|
F: scripts/coccinelle/errp-guard.cocci
|
2015-09-12 13:29:56 +02:00
|
|
|
|
2010-09-09 21:51:31 +02:00
|
|
|
GDB stub
|
2019-06-06 10:27:53 +02:00
|
|
|
M: Alex Bennée <alex.bennee@linaro.org>
|
2021-12-29 17:06:39 +01:00
|
|
|
R: Philippe Mathieu-Daudé <f4bug@amsat.org>
|
2019-06-06 10:27:53 +02:00
|
|
|
S: Maintained
|
2010-09-09 21:51:31 +02:00
|
|
|
F: gdbstub*
|
2021-02-11 13:27:44 +01:00
|
|
|
F: include/exec/gdbstub.h
|
2010-09-09 21:51:31 +02:00
|
|
|
F: gdb-xml/
|
2021-01-08 23:42:42 +01:00
|
|
|
F: tests/tcg/multiarch/gdbstub/
|
2010-09-09 21:51:31 +02:00
|
|
|
|
2014-04-29 16:05:53 +02:00
|
|
|
Memory API
|
|
|
|
M: Paolo Bonzini <pbonzini@redhat.com>
|
2021-07-23 12:05:31 +02:00
|
|
|
M: Peter Xu <peterx@redhat.com>
|
|
|
|
M: David Hildenbrand <david@redhat.com>
|
2021-12-29 17:06:39 +01:00
|
|
|
R: Philippe Mathieu-Daudé <f4bug@amsat.org>
|
2014-04-29 16:05:53 +02:00
|
|
|
S: Supported
|
|
|
|
F: include/exec/ioport.h
|
2019-08-23 20:10:58 +02:00
|
|
|
F: include/exec/memop.h
|
2014-04-29 16:05:53 +02:00
|
|
|
F: include/exec/memory.h
|
2015-11-13 18:49:54 +01:00
|
|
|
F: include/exec/ram_addr.h
|
2020-01-22 15:58:57 +01:00
|
|
|
F: include/exec/ramblock.h
|
2021-07-23 12:05:32 +02:00
|
|
|
F: include/sysemu/memory_mapping.h
|
2020-10-06 09:01:22 +02:00
|
|
|
F: softmmu/dma-helpers.c
|
2020-06-29 11:35:02 +02:00
|
|
|
F: softmmu/ioport.c
|
|
|
|
F: softmmu/memory.c
|
2021-07-23 12:05:32 +02:00
|
|
|
F: softmmu/memory_mapping.c
|
2020-10-06 09:05:29 +02:00
|
|
|
F: softmmu/physmem.c
|
2014-04-29 16:05:53 +02:00
|
|
|
F: include/exec/memory-internal.h
|
2020-02-24 14:45:07 +01:00
|
|
|
F: scripts/coccinelle/memory-region-housekeeping.cocci
|
2014-04-29 16:05:53 +02:00
|
|
|
|
2022-06-17 14:31:51 +02:00
|
|
|
Memory devices
|
|
|
|
M: David Hildenbrand <david@redhat.com>
|
|
|
|
M: Igor Mammedov <imammedo@redhat.com>
|
|
|
|
R: Xiao Guangrong <xiaoguangrong.eric@gmail.com>
|
|
|
|
S: Supported
|
|
|
|
F: hw/mem/memory-device.c
|
|
|
|
F: hw/mem/nvdimm.c
|
|
|
|
F: hw/mem/pc-dimm.c
|
|
|
|
F: include/hw/mem/memory-device.h
|
|
|
|
F: include/hw/mem/nvdimm.h
|
|
|
|
F: include/hw/mem/pc-dimm.h
|
|
|
|
F: docs/nvdimm.txt
|
|
|
|
|
2010-12-13 21:30:37 +01:00
|
|
|
SPICE
|
|
|
|
M: Gerd Hoffmann <kraxel@redhat.com>
|
2021-08-10 10:34:47 +02:00
|
|
|
S: Odd Fixes
|
2013-06-24 12:49:32 +02:00
|
|
|
F: include/ui/qemu-spice.h
|
2016-02-25 10:36:06 +01:00
|
|
|
F: include/ui/spice-display.h
|
2010-12-13 21:30:37 +01:00
|
|
|
F: ui/spice-*.c
|
|
|
|
F: audio/spiceaudio.c
|
2013-02-04 15:19:30 +01:00
|
|
|
F: hw/display/qxl*
|
2017-08-24 21:14:00 +02:00
|
|
|
F: qapi/ui.json
|
2018-11-25 21:49:52 +01:00
|
|
|
F: docs/spice-port-fqdn.txt
|
2010-12-13 21:30:37 +01:00
|
|
|
|
2010-09-09 21:51:31 +02:00
|
|
|
Graphics
|
2014-04-07 10:42:03 +02:00
|
|
|
M: Gerd Hoffmann <kraxel@redhat.com>
|
|
|
|
S: Odd Fixes
|
2010-09-09 21:51:31 +02:00
|
|
|
F: ui/
|
2016-02-25 10:36:07 +01:00
|
|
|
F: include/ui/
|
2017-08-24 21:14:00 +02:00
|
|
|
F: qapi/ui.json
|
2018-07-13 15:09:06 +02:00
|
|
|
F: util/drm.c
|
2010-09-09 21:51:31 +02:00
|
|
|
|
2011-10-30 18:08:01 +01:00
|
|
|
Cocoa graphics
|
2013-12-16 16:17:55 +01:00
|
|
|
M: Peter Maydell <peter.maydell@linaro.org>
|
2022-03-14 18:28:35 +01:00
|
|
|
M: Philippe Mathieu-Daudé <f4bug@amsat.org>
|
2022-02-13 03:12:15 +01:00
|
|
|
R: Akihiko Odaki <akihiko.odaki@gmail.com>
|
2011-10-30 18:08:01 +01:00
|
|
|
S: Odd Fixes
|
|
|
|
F: ui/cocoa.m
|
|
|
|
|
2010-09-09 21:51:31 +02:00
|
|
|
Main loop
|
2014-10-21 15:12:57 +02:00
|
|
|
M: Paolo Bonzini <pbonzini@redhat.com>
|
|
|
|
S: Maintained
|
2021-04-22 08:41:27 +02:00
|
|
|
F: include/exec/gen-icount.h
|
2019-08-12 07:23:59 +02:00
|
|
|
F: include/qemu/main-loop.h
|
|
|
|
F: include/sysemu/runstate.h
|
2020-12-11 17:52:43 +01:00
|
|
|
F: include/sysemu/runstate-action.h
|
2017-05-03 13:59:09 +02:00
|
|
|
F: util/main-loop.c
|
|
|
|
F: util/qemu-timer.c
|
2020-02-20 05:10:57 +01:00
|
|
|
F: softmmu/vl.c
|
2020-02-20 05:10:58 +01:00
|
|
|
F: softmmu/main.c
|
2020-06-29 11:35:02 +02:00
|
|
|
F: softmmu/cpus.c
|
2020-06-29 11:35:03 +02:00
|
|
|
F: softmmu/cpu-throttle.c
|
2020-08-19 13:17:19 +02:00
|
|
|
F: softmmu/cpu-timers.c
|
|
|
|
F: softmmu/icount.c
|
2020-12-11 17:52:43 +01:00
|
|
|
F: softmmu/runstate-action.c
|
2022-06-15 14:23:38 +02:00
|
|
|
F: softmmu/runstate.c
|
2017-08-24 21:13:57 +02:00
|
|
|
F: qapi/run-state.json
|
2010-09-09 21:51:31 +02:00
|
|
|
|
2020-09-09 11:08:51 +02:00
|
|
|
Read, Copy, Update (RCU)
|
|
|
|
M: Paolo Bonzini <pbonzini@redhat.com>
|
|
|
|
S: Maintained
|
|
|
|
F: include/qemu/rcu*.h
|
2021-03-10 07:33:14 +01:00
|
|
|
F: tests/unit/rcutorture.c
|
|
|
|
F: tests/unit/test-rcu-*.c
|
2020-09-09 11:08:51 +02:00
|
|
|
F: util/rcu.c
|
|
|
|
|
2013-06-03 17:14:26 +02:00
|
|
|
Human Monitor (HMP)
|
2016-09-28 19:33:41 +02:00
|
|
|
M: Dr. David Alan Gilbert <dgilbert@redhat.com>
|
2014-02-18 15:08:14 +01:00
|
|
|
S: Maintained
|
2019-06-13 17:33:59 +02:00
|
|
|
F: monitor/monitor-internal.h
|
2019-06-13 17:33:57 +02:00
|
|
|
F: monitor/misc.c
|
2019-06-13 17:34:02 +02:00
|
|
|
F: monitor/monitor.c
|
2019-06-13 17:33:58 +02:00
|
|
|
F: monitor/hmp*
|
|
|
|
F: hmp.h
|
2016-09-22 21:32:38 +02:00
|
|
|
F: hmp-commands*.hx
|
|
|
|
F: include/monitor/hmp-target.h
|
2019-09-09 12:04:01 +02:00
|
|
|
F: tests/qtest/test-hmp.c
|
2019-04-17 21:06:37 +02:00
|
|
|
F: include/qemu/qemu-print.h
|
|
|
|
F: util/qemu-print.c
|
2010-09-09 21:51:31 +02:00
|
|
|
|
2015-09-22 11:40:00 +02:00
|
|
|
Network device backends
|
2015-01-20 16:40:38 +01:00
|
|
|
M: Jason Wang <jasowang@redhat.com>
|
2010-09-09 21:51:31 +02:00
|
|
|
S: Maintained
|
|
|
|
F: net/
|
2016-02-25 12:56:24 +01:00
|
|
|
F: include/net/
|
2019-06-04 13:52:19 +02:00
|
|
|
F: qemu-bridge-helper.c
|
2018-11-08 12:15:26 +01:00
|
|
|
T: git https://github.com/jasowang/qemu.git net
|
2017-08-24 21:13:59 +02:00
|
|
|
F: qapi/net.json
|
2010-09-09 21:51:31 +02:00
|
|
|
|
2013-11-06 18:34:55 +01:00
|
|
|
Netmap network backend
|
|
|
|
M: Luigi Rizzo <rizzo@iet.unipi.it>
|
|
|
|
M: Giuseppe Lettieri <g.lettieri@iet.unipi.it>
|
|
|
|
M: Vincenzo Maffione <v.maffione@gmail.com>
|
|
|
|
W: http://info.iet.unipi.it/~luigi/netmap/
|
|
|
|
S: Maintained
|
|
|
|
F: net/netmap.c
|
|
|
|
|
2016-08-01 15:52:42 +02:00
|
|
|
Host Memory Backends
|
2021-07-23 12:05:30 +02:00
|
|
|
M: David Hildenbrand <david@redhat.com>
|
2016-08-01 15:52:42 +02:00
|
|
|
M: Igor Mammedov <imammedo@redhat.com>
|
|
|
|
S: Maintained
|
|
|
|
F: backends/hostmem*.c
|
|
|
|
F: include/sysemu/hostmem.h
|
2020-12-14 22:20:32 +01:00
|
|
|
T: git https://gitlab.com/ehabkost/qemu.git machine-next
|
2016-08-01 15:52:42 +02:00
|
|
|
|
2016-10-28 10:33:31 +02:00
|
|
|
Cryptodev Backends
|
|
|
|
M: Gonglei <arei.gonglei@huawei.com>
|
|
|
|
S: Maintained
|
|
|
|
F: include/sysemu/cryptodev*.h
|
|
|
|
F: backends/cryptodev*.c
|
|
|
|
|
2020-07-10 21:30:14 +02:00
|
|
|
Python library
|
|
|
|
M: John Snow <jsnow@redhat.com>
|
|
|
|
M: Cleber Rosa <crosa@redhat.com>
|
2022-02-08 01:05:25 +01:00
|
|
|
R: Beraldo Leal <bleal@redhat.com>
|
2020-07-10 21:30:14 +02:00
|
|
|
S: Maintained
|
|
|
|
F: python/
|
|
|
|
T: git https://gitlab.com/jsnow/qemu.git python
|
|
|
|
|
2017-09-16 01:07:44 +02:00
|
|
|
Python scripts
|
2022-02-08 01:05:25 +01:00
|
|
|
M: John Snow <jsnow@redhat.com>
|
2017-09-16 01:07:44 +02:00
|
|
|
M: Cleber Rosa <crosa@redhat.com>
|
2020-10-30 16:34:16 +01:00
|
|
|
S: Odd Fixes
|
2017-09-16 01:07:44 +02:00
|
|
|
F: scripts/*.py
|
|
|
|
F: tests/*.py
|
|
|
|
|
2020-02-28 08:19:14 +01:00
|
|
|
Benchmark util
|
2022-05-26 13:54:32 +02:00
|
|
|
M: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
|
2020-02-28 08:19:14 +01:00
|
|
|
S: Maintained
|
|
|
|
F: scripts/simplebench/
|
2022-05-26 13:54:32 +02:00
|
|
|
T: git https://gitlab.com/vsementsov/qemu.git simplebench
|
2020-02-28 08:19:14 +01:00
|
|
|
|
2021-04-28 17:17:36 +02:00
|
|
|
Transactions helper
|
2022-05-26 13:54:32 +02:00
|
|
|
M: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
|
2021-04-28 17:17:36 +02:00
|
|
|
S: Maintained
|
|
|
|
F: include/qemu/transactions.h
|
|
|
|
F: util/transactions.c
|
2022-05-26 13:54:32 +02:00
|
|
|
T: git https://gitlab.com/vsementsov/qemu.git block
|
2021-04-28 17:17:36 +02:00
|
|
|
|
2013-06-03 17:14:26 +02:00
|
|
|
QAPI
|
2015-05-05 16:39:15 +02:00
|
|
|
M: Markus Armbruster <armbru@redhat.com>
|
2020-10-27 07:02:53 +01:00
|
|
|
M: Michael Roth <michael.roth@amd.com>
|
2015-05-05 16:39:15 +02:00
|
|
|
S: Supported
|
2013-06-03 17:14:26 +02:00
|
|
|
F: qapi/
|
2015-06-12 15:15:54 +02:00
|
|
|
X: qapi/*.json
|
2015-09-24 18:11:57 +02:00
|
|
|
F: include/qapi/
|
|
|
|
X: include/qapi/qmp/
|
|
|
|
F: include/qapi/qmp/dispatch.h
|
2014-10-22 00:31:28 +02:00
|
|
|
F: tests/qapi-schema/
|
2021-03-10 07:33:14 +01:00
|
|
|
F: tests/unit/test-*-visitor.c
|
|
|
|
F: tests/unit/test-qapi-*.c
|
|
|
|
F: tests/unit/test-qmp-*.c
|
|
|
|
F: tests/unit/test-visitor-serialization.c
|
2018-06-20 14:48:27 +02:00
|
|
|
F: scripts/qapi-gen.py
|
|
|
|
F: scripts/qapi/*
|
2020-09-25 18:23:02 +02:00
|
|
|
F: docs/sphinx/qapidoc.py
|
2017-09-08 19:36:31 +02:00
|
|
|
F: docs/devel/qapi*
|
2018-11-08 12:15:28 +01:00
|
|
|
T: git https://repo.or.cz/qemu/armbru.git qapi-next
|
2013-06-03 17:14:26 +02:00
|
|
|
|
2013-06-03 17:11:53 +02:00
|
|
|
QAPI Schema
|
|
|
|
M: Eric Blake <eblake@redhat.com>
|
|
|
|
M: Markus Armbruster <armbru@redhat.com>
|
|
|
|
S: Supported
|
2015-06-12 15:15:54 +02:00
|
|
|
F: qapi/*.json
|
2018-11-08 12:15:28 +01:00
|
|
|
T: git https://repo.or.cz/qemu/armbru.git qapi-next
|
2013-06-03 17:11:53 +02:00
|
|
|
|
2014-10-22 14:54:59 +02:00
|
|
|
QObject
|
2016-09-28 19:33:42 +02:00
|
|
|
M: Markus Armbruster <armbru@redhat.com>
|
|
|
|
S: Supported
|
2014-10-22 14:54:59 +02:00
|
|
|
F: qobject/
|
2015-09-24 18:11:56 +02:00
|
|
|
F: include/qapi/qmp/
|
|
|
|
X: include/qapi/qmp/dispatch.h
|
2017-04-27 23:58:14 +02:00
|
|
|
F: scripts/coccinelle/qobject.cocci
|
2021-03-10 07:33:14 +01:00
|
|
|
F: tests/unit/check-qdict.c
|
|
|
|
F: tests/unit/check-qjson.c
|
|
|
|
F: tests/unit/check-qlist.c
|
|
|
|
F: tests/unit/check-qlit.c
|
|
|
|
F: tests/unit/check-qnull.c
|
|
|
|
F: tests/unit/check-qnum.c
|
|
|
|
F: tests/unit/check-qobject.c
|
|
|
|
F: tests/unit/check-qstring.c
|
2018-12-18 12:37:17 +01:00
|
|
|
F: tests/data/qobject/qdict.txt
|
2018-11-08 12:15:28 +01:00
|
|
|
T: git https://repo.or.cz/qemu/armbru.git qapi-next
|
2014-10-22 14:54:59 +02:00
|
|
|
|
2014-10-22 14:05:36 +02:00
|
|
|
QEMU Guest Agent
|
2020-10-27 07:02:53 +01:00
|
|
|
M: Michael Roth <michael.roth@amd.com>
|
2014-10-22 14:05:36 +02:00
|
|
|
S: Maintained
|
|
|
|
F: qga/
|
2019-09-05 15:10:40 +02:00
|
|
|
F: docs/interop/qemu-ga.rst
|
2020-09-25 18:23:03 +02:00
|
|
|
F: docs/interop/qemu-ga-ref.rst
|
2017-09-08 19:36:22 +02:00
|
|
|
F: scripts/qemu-guest-agent/
|
2021-03-10 07:33:14 +01:00
|
|
|
F: tests/unit/test-qga.c
|
2018-11-08 12:15:26 +01:00
|
|
|
T: git https://github.com/mdroth/qemu.git qga
|
2014-10-22 14:05:36 +02:00
|
|
|
|
2022-01-05 10:09:42 +01:00
|
|
|
QEMU Guest Agent Win32
|
|
|
|
M: Konstantin Kostiuk <kkostiuk@redhat.com>
|
|
|
|
S: Maintained
|
|
|
|
F: qga/*win32*
|
|
|
|
F: qga/vss-win32/
|
|
|
|
F: qga/installer/
|
|
|
|
T: git https://github.com/kostyanf14/qemu.git qga-win32
|
|
|
|
|
2014-04-24 15:00:14 +02:00
|
|
|
QOM
|
2019-06-19 22:10:34 +02:00
|
|
|
M: Paolo Bonzini <pbonzini@redhat.com>
|
|
|
|
R: Daniel P. Berrange <berrange@redhat.com>
|
2021-11-30 21:47:22 +01:00
|
|
|
R: Eduardo Habkost <eduardo@habkost.net>
|
2014-04-24 15:00:14 +02:00
|
|
|
S: Supported
|
2019-06-24 16:48:19 +02:00
|
|
|
F: docs/qdev-device-use.txt
|
|
|
|
F: hw/core/qdev*
|
2020-06-10 07:32:47 +02:00
|
|
|
F: hw/core/bus.c
|
|
|
|
F: hw/core/sysbus.c
|
2019-06-24 16:48:19 +02:00
|
|
|
F: include/hw/qdev*
|
|
|
|
F: include/monitor/qdev.h
|
2014-04-24 15:00:14 +02:00
|
|
|
F: include/qom/
|
2019-06-19 22:10:37 +02:00
|
|
|
F: qapi/qom.json
|
|
|
|
F: qapi/qdev.json
|
2020-10-07 18:23:56 +02:00
|
|
|
F: scripts/coccinelle/qom-parent-type.cocci
|
2020-10-06 09:01:22 +02:00
|
|
|
F: softmmu/qdev-monitor.c
|
2021-01-22 21:44:38 +01:00
|
|
|
F: stubs/qdev.c
|
2014-04-24 15:00:14 +02:00
|
|
|
F: qom/
|
2021-03-10 07:33:14 +01:00
|
|
|
F: tests/unit/check-qom-interface.c
|
|
|
|
F: tests/unit/check-qom-proplist.c
|
|
|
|
F: tests/unit/test-qdev-global-props.c
|
2014-04-24 15:00:14 +02:00
|
|
|
|
2020-08-31 23:07:28 +02:00
|
|
|
QOM boilerplate conversion script
|
2021-11-30 21:47:22 +01:00
|
|
|
M: Eduardo Habkost <eduardo@habkost.net>
|
2020-08-31 23:07:28 +02:00
|
|
|
S: Maintained
|
|
|
|
F: scripts/codeconverter/
|
|
|
|
|
2013-06-03 17:14:26 +02:00
|
|
|
QMP
|
2015-05-05 16:39:15 +02:00
|
|
|
M: Markus Armbruster <armbru@redhat.com>
|
|
|
|
S: Supported
|
2019-06-13 17:33:59 +02:00
|
|
|
F: monitor/monitor-internal.h
|
2019-06-13 17:33:58 +02:00
|
|
|
F: monitor/qmp*
|
2019-06-13 17:33:57 +02:00
|
|
|
F: monitor/misc.c
|
2019-06-13 17:34:02 +02:00
|
|
|
F: monitor/monitor.c
|
2020-11-02 09:15:49 +01:00
|
|
|
F: qapi/control.json
|
2019-08-12 07:23:33 +02:00
|
|
|
F: qapi/error.json
|
2020-11-02 09:15:49 +01:00
|
|
|
F: qapi/introspect.json
|
2017-09-08 19:36:31 +02:00
|
|
|
F: docs/devel/*qmp-*
|
2018-11-25 21:49:54 +01:00
|
|
|
F: docs/interop/*qmp-*
|
2015-05-05 16:39:15 +02:00
|
|
|
F: scripts/qmp/
|
2019-09-09 12:04:01 +02:00
|
|
|
F: tests/qtest/qmp-test.c
|
|
|
|
F: tests/qtest/qmp-cmd-test.c
|
2018-11-08 12:15:28 +01:00
|
|
|
T: git https://repo.or.cz/qemu/armbru.git qapi-next
|
2013-06-03 17:14:26 +02:00
|
|
|
|
2018-08-14 17:40:41 +02:00
|
|
|
qtest
|
|
|
|
M: Thomas Huth <thuth@redhat.com>
|
|
|
|
M: Laurent Vivier <lvivier@redhat.com>
|
2018-10-19 14:25:42 +02:00
|
|
|
R: Paolo Bonzini <pbonzini@redhat.com>
|
2018-08-14 17:40:41 +02:00
|
|
|
S: Maintained
|
2020-06-29 11:35:02 +02:00
|
|
|
F: softmmu/qtest.c
|
2020-07-07 10:21:10 +02:00
|
|
|
F: accel/qtest/
|
2019-09-09 12:04:01 +02:00
|
|
|
F: tests/qtest/
|
2021-03-08 08:32:40 +01:00
|
|
|
F: docs/devel/qgraph.rst
|
2020-10-01 06:27:17 +02:00
|
|
|
X: tests/qtest/bios-tables-test*
|
2018-08-14 17:40:41 +02:00
|
|
|
|
2020-02-20 05:11:08 +01:00
|
|
|
Device Fuzzing
|
|
|
|
M: Alexander Bulekov <alxndr@bu.edu>
|
|
|
|
R: Paolo Bonzini <pbonzini@redhat.com>
|
|
|
|
R: Bandan Das <bsd@redhat.com>
|
|
|
|
R: Stefan Hajnoczi <stefanha@redhat.com>
|
2020-07-21 07:36:09 +02:00
|
|
|
R: Thomas Huth <thuth@redhat.com>
|
2021-08-24 16:04:01 +02:00
|
|
|
R: Darren Kenny <darren.kenny@oracle.com>
|
2021-08-24 08:26:39 +02:00
|
|
|
R: Qiuhao Li <Qiuhao.Li@outlook.com>
|
2020-02-20 05:11:08 +01:00
|
|
|
S: Maintained
|
|
|
|
F: tests/qtest/fuzz/
|
2021-01-26 12:28:49 +01:00
|
|
|
F: tests/qtest/fuzz-*test.c
|
2020-06-12 07:51:45 +02:00
|
|
|
F: scripts/oss-fuzz/
|
2021-03-15 15:05:10 +01:00
|
|
|
F: hw/mem/sparse-mem.c
|
2020-11-06 19:05:59 +01:00
|
|
|
F: docs/devel/fuzzing.rst
|
2020-02-20 05:11:08 +01:00
|
|
|
|
2016-07-28 18:55:39 +02:00
|
|
|
Register API
|
2018-03-01 12:05:58 +01:00
|
|
|
M: Alistair Francis <alistair@alistair23.me>
|
2016-07-28 18:55:39 +02:00
|
|
|
S: Maintained
|
|
|
|
F: hw/core/register.c
|
|
|
|
F: include/hw/register.h
|
2017-12-13 06:17:33 +01:00
|
|
|
F: include/hw/registerfields.h
|
2016-07-28 18:55:39 +02:00
|
|
|
|
2010-09-09 21:51:31 +02:00
|
|
|
SLIRP
|
2015-08-06 13:10:14 +02:00
|
|
|
M: Samuel Thibault <samuel.thibault@ens-lyon.org>
|
2011-07-27 14:21:32 +02:00
|
|
|
S: Maintained
|
2010-09-09 21:51:31 +02:00
|
|
|
F: slirp/
|
2015-12-15 09:48:15 +01:00
|
|
|
F: net/slirp.c
|
2016-02-25 12:56:24 +01:00
|
|
|
F: include/net/slirp.h
|
2018-05-31 21:45:10 +02:00
|
|
|
T: git https://people.debian.org/~sthibault/qemu.git slirp
|
2010-09-09 21:51:31 +02:00
|
|
|
|
2020-05-06 10:25:13 +02:00
|
|
|
Streams
|
|
|
|
M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
|
|
|
|
S: Maintained
|
|
|
|
F: hw/core/stream.c
|
|
|
|
F: include/hw/stream.h
|
|
|
|
|
2016-08-24 16:04:56 +02:00
|
|
|
Stubs
|
|
|
|
M: Paolo Bonzini <pbonzini@redhat.com>
|
|
|
|
S: Maintained
|
|
|
|
F: stubs/
|
|
|
|
|
2011-09-03 17:24:47 +02:00
|
|
|
Tracing
|
2012-10-07 18:08:49 +02:00
|
|
|
M: Stefan Hajnoczi <stefanha@redhat.com>
|
2011-09-03 17:24:47 +02:00
|
|
|
S: Maintained
|
|
|
|
F: trace/
|
2018-05-09 06:38:20 +02:00
|
|
|
F: trace-events
|
2020-02-28 16:36:18 +01:00
|
|
|
F: docs/qemu-option-trace.rst.inc
|
2020-11-02 09:15:49 +01:00
|
|
|
F: qapi/trace.json
|
2012-04-03 20:48:17 +02:00
|
|
|
F: scripts/tracetool.py
|
|
|
|
F: scripts/tracetool/
|
2019-01-23 13:00:16 +01:00
|
|
|
F: scripts/qemu-trace-stap*
|
2021-02-04 14:54:25 +01:00
|
|
|
F: docs/tools/qemu-trace-stap.rst
|
2021-05-17 17:16:58 +02:00
|
|
|
F: docs/devel/tracing.rst
|
2018-11-08 12:15:26 +01:00
|
|
|
T: git https://github.com/stefanha/qemu.git tracing
|
2011-09-03 17:24:47 +02:00
|
|
|
|
2017-08-24 21:14:03 +02:00
|
|
|
TPM
|
2018-10-30 22:34:09 +01:00
|
|
|
M: Stefan Berger <stefanb@linux.ibm.com>
|
2017-09-07 22:16:24 +02:00
|
|
|
S: Maintained
|
2017-08-24 21:14:03 +02:00
|
|
|
F: tpm.c
|
|
|
|
F: hw/tpm/*
|
|
|
|
F: include/hw/acpi/tpm.h
|
|
|
|
F: include/sysemu/tpm*
|
|
|
|
F: qapi/tpm.json
|
2020-06-12 10:54:34 +02:00
|
|
|
F: backends/tpm/
|
2019-09-09 12:04:01 +02:00
|
|
|
F: tests/qtest/*tpm*
|
2018-11-08 12:15:26 +01:00
|
|
|
T: git https://github.com/stefanberger/qemu-tpm.git tpm-next
|
2017-08-24 21:14:03 +02:00
|
|
|
|
2011-11-26 10:51:23 +01:00
|
|
|
Checkpatch
|
|
|
|
S: Odd Fixes
|
|
|
|
F: scripts/checkpatch.pl
|
|
|
|
|
2014-10-15 10:34:50 +02:00
|
|
|
Migration
|
|
|
|
M: Juan Quintela <quintela@redhat.com>
|
2017-01-24 11:04:37 +01:00
|
|
|
M: Dr. David Alan Gilbert <dgilbert@redhat.com>
|
2014-10-15 10:34:50 +02:00
|
|
|
S: Maintained
|
2019-08-28 14:00:19 +02:00
|
|
|
F: hw/core/vmstate-if.c
|
|
|
|
F: include/hw/vmstate-if.h
|
2014-10-15 10:34:50 +02:00
|
|
|
F: include/migration/
|
2014-12-12 12:13:42 +01:00
|
|
|
F: migration/
|
2014-11-18 13:31:25 +01:00
|
|
|
F: scripts/vmstate-static-checker.py
|
|
|
|
F: tests/vmstate-static-checker-data/
|
2019-09-09 12:04:01 +02:00
|
|
|
F: tests/qtest/migration-test.c
|
2018-08-10 13:55:53 +02:00
|
|
|
F: docs/devel/migration.rst
|
2017-08-24 21:14:01 +02:00
|
|
|
F: qapi/migration.json
|
2021-03-19 09:07:57 +01:00
|
|
|
F: tests/migration/
|
2014-10-15 10:34:50 +02:00
|
|
|
|
2019-09-12 14:03:32 +02:00
|
|
|
D-Bus
|
|
|
|
M: Marc-André Lureau <marcandre.lureau@redhat.com>
|
|
|
|
S: Maintained
|
2019-12-16 08:48:53 +01:00
|
|
|
F: backends/dbus-vmstate.c
|
2021-10-09 22:30:30 +02:00
|
|
|
F: ui/dbus*
|
|
|
|
F: audio/dbus*
|
2019-09-27 10:16:54 +02:00
|
|
|
F: util/dbus.c
|
2021-10-09 22:30:30 +02:00
|
|
|
F: include/ui/dbus*
|
2019-09-27 10:16:54 +02:00
|
|
|
F: include/qemu/dbus.h
|
2021-10-09 22:30:30 +02:00
|
|
|
F: docs/interop/dbus*
|
|
|
|
F: docs/sphinx/dbus*
|
|
|
|
F: docs/sphinx/fakedbusdoc.py
|
|
|
|
F: tests/qtest/dbus*
|
2019-09-12 14:03:32 +02:00
|
|
|
|
2013-09-09 19:04:15 +02:00
|
|
|
Seccomp
|
2022-02-03 11:49:28 +01:00
|
|
|
M: Daniel P. Berrange <berrange@redhat.com>
|
|
|
|
S: Odd Fixes
|
2020-10-06 09:01:22 +02:00
|
|
|
F: softmmu/qemu-seccomp.c
|
2013-09-09 19:04:15 +02:00
|
|
|
F: include/sysemu/seccomp.h
|
2021-07-29 14:15:43 +02:00
|
|
|
F: tests/unit/test-seccomp.c
|
2013-09-09 19:04:15 +02:00
|
|
|
|
2015-07-01 19:10:29 +02:00
|
|
|
Cryptography
|
|
|
|
M: Daniel P. Berrange <berrange@redhat.com>
|
|
|
|
S: Maintained
|
|
|
|
F: crypto/
|
|
|
|
F: include/crypto/
|
2020-11-02 09:15:49 +01:00
|
|
|
F: qapi/crypto.json
|
2021-03-10 07:33:14 +01:00
|
|
|
F: tests/unit/test-crypto-*
|
2021-03-12 10:22:38 +01:00
|
|
|
F: tests/bench/benchmark-crypto-*
|
2021-03-10 07:33:14 +01:00
|
|
|
F: tests/unit/crypto-tls-*
|
|
|
|
F: tests/unit/pkix_asn1_tab.c
|
2017-03-16 12:18:46 +01:00
|
|
|
F: qemu.sasl
|
2015-07-01 19:10:29 +02:00
|
|
|
|
2015-09-01 15:48:02 +02:00
|
|
|
Coroutines
|
|
|
|
M: Stefan Hajnoczi <stefanha@redhat.com>
|
|
|
|
M: Kevin Wolf <kwolf@redhat.com>
|
2019-03-01 17:35:18 +01:00
|
|
|
S: Maintained
|
2015-09-01 15:48:02 +02:00
|
|
|
F: util/*coroutine*
|
|
|
|
F: include/qemu/coroutine*
|
2021-03-10 07:33:14 +01:00
|
|
|
F: tests/unit/test-coroutine.c
|
2015-09-01 15:48:02 +02:00
|
|
|
|
2015-03-03 18:13:42 +01:00
|
|
|
Buffers
|
|
|
|
M: Daniel P. Berrange <berrange@redhat.com>
|
2020-10-30 16:34:16 +01:00
|
|
|
S: Odd Fixes
|
2015-03-03 18:13:42 +01:00
|
|
|
F: util/buffer.c
|
|
|
|
F: include/qemu/buffer.h
|
|
|
|
|
2015-02-27 17:19:33 +01:00
|
|
|
I/O Channels
|
|
|
|
M: Daniel P. Berrange <berrange@redhat.com>
|
|
|
|
S: Maintained
|
|
|
|
F: io/
|
|
|
|
F: include/io/
|
2021-03-10 07:33:14 +01:00
|
|
|
F: tests/unit/test-io-*
|
2015-02-27 17:19:33 +01:00
|
|
|
|
2015-10-21 14:16:21 +02:00
|
|
|
User authorization
|
|
|
|
M: Daniel P. Berrange <berrange@redhat.com>
|
|
|
|
S: Maintained
|
|
|
|
F: authz/
|
authz: add QAuthZList object type for an access control list
Add a QAuthZList object type that implements the QAuthZ interface. This
built-in implementation maintains a trivial access control list with a
sequence of match rules and a final default policy. This replicates the
functionality currently provided by the qemu_acl module.
To create an instance of this object via the QMP monitor, the syntax
used would be:
{
"execute": "object-add",
"arguments": {
"qom-type": "authz-list",
"id": "authz0",
"props": {
"rules": [
{ "match": "fred", "policy": "allow", "format": "exact" },
{ "match": "bob", "policy": "allow", "format": "exact" },
{ "match": "danb", "policy": "deny", "format": "glob" },
{ "match": "dan*", "policy": "allow", "format": "exact" },
],
"policy": "deny"
}
}
}
This sets up an authorization rule that allows 'fred', 'bob' and anyone
whose name starts with 'dan', except for 'danb'. Everyone unmatched is
denied.
It is not currently possible to create this via -object, since there is
no syntax supported to specify non-scalar properties for objects. This
is likely to be addressed by later support for using JSON with -object,
or an equivalent approach.
In any case the future "authz-listfile" object can be used from the
CLI and is likely a better choice, as it allows the ACL to be refreshed
automatically on change.
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
2015-10-21 15:54:59 +02:00
|
|
|
F: qapi/authz.json
|
2015-10-21 14:16:21 +02:00
|
|
|
F: include/authz/
|
2021-03-10 07:33:14 +01:00
|
|
|
F: tests/unit/test-authz-*
|
2015-10-21 14:16:21 +02:00
|
|
|
|
2016-01-18 16:03:23 +01:00
|
|
|
Sockets
|
|
|
|
M: Daniel P. Berrange <berrange@redhat.com>
|
|
|
|
S: Maintained
|
|
|
|
F: include/qemu/sockets.h
|
|
|
|
F: util/qemu-sockets.c
|
2017-08-24 21:13:56 +02:00
|
|
|
F: qapi/sockets.json
|
2016-01-18 16:03:23 +01:00
|
|
|
|
2018-06-08 18:24:57 +02:00
|
|
|
File monitor
|
|
|
|
M: Daniel P. Berrange <berrange@redhat.com>
|
2020-10-30 16:34:16 +01:00
|
|
|
S: Odd Fixes
|
2018-06-08 18:24:57 +02:00
|
|
|
F: util/filemonitor*.c
|
|
|
|
F: include/qemu/filemonitor.h
|
2021-03-10 07:33:14 +01:00
|
|
|
F: tests/unit/test-util-filemonitor.c
|
2018-06-08 18:24:57 +02:00
|
|
|
|
2016-02-18 11:27:10 +01:00
|
|
|
Throttling infrastructure
|
|
|
|
M: Alberto Garcia <berto@igalia.com>
|
|
|
|
S: Supported
|
|
|
|
F: block/throttle-groups.c
|
|
|
|
F: include/block/throttle-groups.h
|
2017-09-08 19:36:27 +02:00
|
|
|
F: include/qemu/throttle*.h
|
2016-02-18 11:27:10 +01:00
|
|
|
F: util/throttle.c
|
2017-09-08 19:36:27 +02:00
|
|
|
F: docs/throttle.txt
|
2021-03-10 07:33:14 +01:00
|
|
|
F: tests/unit/test-throttle.c
|
2016-02-18 11:27:10 +01:00
|
|
|
L: qemu-block@nongnu.org
|
|
|
|
|
2016-09-21 06:27:25 +02:00
|
|
|
UUID
|
2018-11-21 16:30:36 +01:00
|
|
|
M: Fam Zheng <fam@euphon.net>
|
2016-09-21 06:27:25 +02:00
|
|
|
S: Supported
|
|
|
|
F: util/uuid.c
|
|
|
|
F: include/qemu/uuid.h
|
2021-03-10 07:33:14 +01:00
|
|
|
F: tests/unit/test-uuid.c
|
2016-09-21 06:27:25 +02:00
|
|
|
|
2020-12-28 16:08:41 +01:00
|
|
|
Yank feature
|
|
|
|
M: Lukas Straub <lukasstraub2@web.de>
|
|
|
|
S: Odd fixes
|
|
|
|
F: util/yank.c
|
2021-03-23 18:52:42 +01:00
|
|
|
F: migration/yank_functions*
|
2021-03-30 20:13:35 +02:00
|
|
|
F: tests/unit/test-yank.c
|
2020-12-28 16:08:41 +01:00
|
|
|
F: include/qemu/yank.h
|
|
|
|
F: qapi/yank.json
|
|
|
|
|
2016-10-27 08:43:09 +02:00
|
|
|
COLO Framework
|
2021-12-14 08:54:24 +01:00
|
|
|
M: Hailiang Zhang <zhanghailiang@xfusion.com>
|
2016-10-27 08:43:09 +02:00
|
|
|
S: Maintained
|
|
|
|
F: migration/colo*
|
|
|
|
F: include/migration/colo.h
|
|
|
|
F: include/migration/failover.h
|
|
|
|
F: docs/COLO-FT.txt
|
|
|
|
|
2016-09-27 04:22:35 +02:00
|
|
|
COLO Proxy
|
2019-03-15 07:12:58 +01:00
|
|
|
M: Zhang Chen <chen.zhang@intel.com>
|
2021-12-31 06:09:01 +01:00
|
|
|
M: Li Zhijian <lizhijian@fujitsu.com>
|
2016-09-27 04:22:35 +02:00
|
|
|
S: Supported
|
|
|
|
F: docs/colo-proxy.txt
|
|
|
|
F: net/colo*
|
|
|
|
F: net/filter-rewriter.c
|
|
|
|
F: net/filter-mirror.c
|
2021-12-21 09:04:00 +01:00
|
|
|
F: tests/qtest/test-filter*
|
2016-09-27 04:22:35 +02:00
|
|
|
|
2017-05-03 13:33:04 +02:00
|
|
|
Record/replay
|
|
|
|
M: Pavel Dovgalyuk <pavel.dovgaluk@ispras.ru>
|
|
|
|
R: Paolo Bonzini <pbonzini@redhat.com>
|
2017-11-21 13:04:35 +01:00
|
|
|
W: https://wiki.qemu.org/Features/record-replay
|
2017-05-03 13:33:04 +02:00
|
|
|
S: Supported
|
|
|
|
F: replay/*
|
|
|
|
F: block/blkreplay.c
|
|
|
|
F: net/filter-replay.c
|
|
|
|
F: include/sysemu/replay.h
|
|
|
|
F: docs/replay.txt
|
|
|
|
F: stubs/replay.c
|
2021-11-05 16:53:54 +01:00
|
|
|
F: tests/avocado/replay_kernel.py
|
|
|
|
F: tests/avocado/replay_linux.py
|
|
|
|
F: tests/avocado/reverse_debugging.py
|
2020-10-03 19:13:14 +02:00
|
|
|
F: qapi/replay.json
|
2017-05-03 13:33:04 +02:00
|
|
|
|
2018-05-18 09:25:16 +02:00
|
|
|
IOVA Tree
|
|
|
|
M: Peter Xu <peterx@redhat.com>
|
|
|
|
S: Maintained
|
|
|
|
F: include/qemu/iova-tree.h
|
|
|
|
F: util/iova-tree.c
|
|
|
|
|
2018-09-18 11:54:22 +02:00
|
|
|
elf2dmp
|
|
|
|
M: Viktor Prutyanov <viktor.prutyanov@phystech.edu>
|
|
|
|
S: Maintained
|
|
|
|
F: contrib/elf2dmp/
|
|
|
|
|
2018-11-14 01:31:27 +01:00
|
|
|
I2C and SMBus
|
|
|
|
M: Corey Minyard <cminyard@mvista.com>
|
|
|
|
S: Maintained
|
|
|
|
F: hw/i2c/core.c
|
|
|
|
F: hw/i2c/smbus_slave.c
|
|
|
|
F: hw/i2c/smbus_master.c
|
|
|
|
F: hw/i2c/smbus_eeprom.c
|
|
|
|
F: include/hw/i2c/i2c.h
|
|
|
|
F: include/hw/i2c/smbus_master.h
|
|
|
|
F: include/hw/i2c/smbus_slave.h
|
|
|
|
F: include/hw/i2c/smbus_eeprom.h
|
|
|
|
|
2022-03-07 21:06:01 +01:00
|
|
|
PMBus
|
|
|
|
M: Titus Rwantare <titusr@google.com>
|
|
|
|
S: Maintained
|
|
|
|
F: hw/i2c/pmbus_device.c
|
|
|
|
F: hw/sensor/adm1272.c
|
2022-03-07 21:06:03 +01:00
|
|
|
F: hw/sensor/isl_pmbus_vr.c
|
2022-03-07 21:06:01 +01:00
|
|
|
F: hw/sensor/max34451.c
|
|
|
|
F: include/hw/i2c/pmbus_device.h
|
2022-03-07 21:06:03 +01:00
|
|
|
F: include/hw/sensor/isl_pmbus_vr.h
|
2022-03-07 21:06:01 +01:00
|
|
|
F: tests/qtest/adm1272-test.c
|
|
|
|
F: tests/qtest/max34451-test.c
|
2022-03-07 21:06:03 +01:00
|
|
|
F: tests/qtest/isl_pmbus_vr-test.c
|
2022-03-07 21:06:01 +01:00
|
|
|
|
2020-07-03 20:34:50 +02:00
|
|
|
Firmware schema specifications
|
2021-12-29 17:06:39 +01:00
|
|
|
M: Philippe Mathieu-Daudé <f4bug@amsat.org>
|
2020-07-03 20:34:50 +02:00
|
|
|
R: Daniel P. Berrange <berrange@redhat.com>
|
|
|
|
R: Kashyap Chamarthy <kchamart@redhat.com>
|
|
|
|
S: Maintained
|
|
|
|
F: docs/interop/firmware.json
|
|
|
|
|
2019-03-13 13:40:07 +01:00
|
|
|
EDK2 Firmware
|
2021-12-29 17:06:39 +01:00
|
|
|
M: Philippe Mathieu-Daudé <f4bug@amsat.org>
|
2022-03-08 13:36:00 +01:00
|
|
|
M: Gerd Hoffmann <kraxel@redhat.com>
|
2019-03-13 13:40:07 +01:00
|
|
|
S: Supported
|
2021-05-21 15:34:07 +02:00
|
|
|
F: hw/i386/*ovmf*
|
2019-03-13 13:40:07 +01:00
|
|
|
F: pc-bios/descriptors/??-edk2-*.json
|
|
|
|
F: pc-bios/edk2-*
|
|
|
|
F: roms/Makefile.edk2
|
|
|
|
F: roms/edk2
|
|
|
|
F: roms/edk2-*
|
|
|
|
F: tests/data/uefi-boot-images/
|
|
|
|
F: tests/uefi-test-tools/
|
2020-05-20 09:45:58 +02:00
|
|
|
F: .gitlab-ci.d/edk2.yml
|
2020-01-03 12:26:25 +01:00
|
|
|
F: .gitlab-ci.d/edk2/
|
2019-03-13 13:40:07 +01:00
|
|
|
|
2020-07-01 14:44:18 +02:00
|
|
|
VT-d Emulation
|
|
|
|
M: Michael S. Tsirkin <mst@redhat.com>
|
|
|
|
M: Peter Xu <peterx@redhat.com>
|
|
|
|
R: Jason Wang <jasowang@redhat.com>
|
|
|
|
S: Supported
|
|
|
|
F: hw/i386/intel_iommu.c
|
|
|
|
F: hw/i386/intel_iommu_internal.h
|
|
|
|
F: include/hw/i386/intel_iommu.h
|
|
|
|
|
2020-06-26 15:13:40 +02:00
|
|
|
OpenSBI Firmware
|
|
|
|
M: Bin Meng <bmeng.cn@gmail.com>
|
|
|
|
S: Supported
|
|
|
|
F: pc-bios/opensbi-*
|
|
|
|
F: .gitlab-ci.d/opensbi.yml
|
|
|
|
F: .gitlab-ci.d/opensbi/
|
|
|
|
|
2021-02-11 09:53:18 +01:00
|
|
|
Clock framework
|
|
|
|
M: Luc Michel <luc@lmichel.fr>
|
|
|
|
R: Damien Hedde <damien.hedde@greensocs.com>
|
|
|
|
S: Maintained
|
|
|
|
F: include/hw/clock.h
|
|
|
|
F: include/hw/qdev-clock.h
|
|
|
|
F: hw/core/clock.c
|
|
|
|
F: hw/core/clock-vmstate.c
|
|
|
|
F: hw/core/qdev-clock.c
|
|
|
|
F: docs/devel/clocks.rst
|
|
|
|
|
2010-09-09 21:51:31 +02:00
|
|
|
Usermode Emulation
|
|
|
|
------------------
|
2019-06-06 19:24:07 +02:00
|
|
|
Overall usermode emulation
|
2014-10-22 00:18:01 +02:00
|
|
|
M: Riku Voipio <riku.voipio@iki.fi>
|
|
|
|
S: Maintained
|
2017-09-11 23:33:25 +02:00
|
|
|
F: accel/tcg/user-exec*.c
|
2021-11-17 16:14:00 +01:00
|
|
|
F: include/user/
|
|
|
|
F: common-user/
|
2014-10-22 00:18:01 +02:00
|
|
|
|
2010-09-09 21:51:31 +02:00
|
|
|
BSD user
|
2021-03-08 23:40:23 +01:00
|
|
|
M: Warner Losh <imp@bsdimp.com>
|
|
|
|
R: Kyle Evans <kevans@freebsd.org>
|
|
|
|
S: Maintained
|
2010-09-09 21:51:31 +02:00
|
|
|
F: bsd-user/
|
2021-07-07 15:17:43 +02:00
|
|
|
F: configs/targets/*-bsd-user.mak
|
2022-01-09 19:50:24 +01:00
|
|
|
F: tests/vm/*bsd
|
2021-03-08 23:40:23 +01:00
|
|
|
T: git https://github.com/qemu-bsd-user/qemu-bsd-user bsd-user-rebase-3.1
|
2010-09-09 21:51:31 +02:00
|
|
|
|
|
|
|
Linux user
|
2020-07-02 13:16:36 +02:00
|
|
|
M: Laurent Vivier <laurent@vivier.eu>
|
2010-09-09 21:51:31 +02:00
|
|
|
S: Maintained
|
|
|
|
F: linux-user/
|
2021-07-07 15:17:43 +02:00
|
|
|
F: configs/targets/*linux-user.mak
|
2018-01-02 17:25:26 +01:00
|
|
|
F: scripts/qemu-binfmt-conf.sh
|
2020-03-10 11:34:00 +01:00
|
|
|
F: scripts/update-syscalltbl.sh
|
2020-03-10 11:34:03 +01:00
|
|
|
F: scripts/update-mips-syscall-args.sh
|
2020-03-16 09:56:17 +01:00
|
|
|
F: scripts/gensyscalls.sh
|
2011-01-14 20:39:19 +01:00
|
|
|
|
|
|
|
Tiny Code Generator (TCG)
|
|
|
|
-------------------------
|
2019-06-06 19:24:07 +02:00
|
|
|
Common TCG code
|
2020-11-13 05:35:43 +01:00
|
|
|
M: Richard Henderson <richard.henderson@linaro.org>
|
2011-01-14 20:39:19 +01:00
|
|
|
S: Maintained
|
|
|
|
F: tcg/
|
2020-01-01 12:23:02 +01:00
|
|
|
F: include/tcg/
|
2011-01-14 20:39:19 +01:00
|
|
|
|
2019-10-17 15:25:23 +02:00
|
|
|
TCG Plugins
|
|
|
|
M: Alex Bennée <alex.bennee@linaro.org>
|
2021-07-09 16:29:59 +02:00
|
|
|
R: Alexandre Iooss <erdnaxe@crans.org>
|
2021-07-09 16:30:05 +02:00
|
|
|
R: Mahmoud Mandour <ma.mandourr@gmail.com>
|
2019-10-17 15:25:23 +02:00
|
|
|
S: Maintained
|
2019-11-12 17:28:53 +01:00
|
|
|
F: docs/devel/tcg-plugins.rst
|
2019-10-17 15:25:23 +02:00
|
|
|
F: plugins/
|
2020-09-09 13:27:41 +02:00
|
|
|
F: tests/plugin/
|
2021-11-05 16:53:54 +01:00
|
|
|
F: tests/avocado/tcg_plugins.py
|
2020-09-09 13:27:41 +02:00
|
|
|
F: contrib/plugins/
|
2019-10-17 15:25:23 +02:00
|
|
|
|
2019-06-06 19:24:07 +02:00
|
|
|
AArch64 TCG target
|
2020-01-06 07:30:37 +01:00
|
|
|
M: Richard Henderson <richard.henderson@linaro.org>
|
2013-06-12 17:20:24 +02:00
|
|
|
S: Maintained
|
2015-11-03 14:49:42 +01:00
|
|
|
L: qemu-arm@nongnu.org
|
2013-06-12 17:20:24 +02:00
|
|
|
F: tcg/aarch64/
|
|
|
|
|
2019-06-06 19:24:07 +02:00
|
|
|
ARM TCG target
|
2021-07-22 20:09:51 +02:00
|
|
|
M: Richard Henderson <richard.henderson@linaro.org>
|
2011-01-14 20:39:19 +01:00
|
|
|
S: Maintained
|
2015-11-03 14:49:42 +01:00
|
|
|
L: qemu-arm@nongnu.org
|
2011-01-14 20:39:19 +01:00
|
|
|
F: tcg/arm/
|
|
|
|
|
2019-06-06 19:24:07 +02:00
|
|
|
i386 TCG target
|
2020-11-13 05:35:43 +01:00
|
|
|
M: Richard Henderson <richard.henderson@linaro.org>
|
2011-01-14 20:39:19 +01:00
|
|
|
S: Maintained
|
|
|
|
F: tcg/i386/
|
|
|
|
|
2021-12-21 06:40:36 +01:00
|
|
|
LoongArch64 TCG target
|
|
|
|
M: WANG Xuerui <git@xen0n.name>
|
|
|
|
S: Maintained
|
|
|
|
F: tcg/loongarch64/
|
|
|
|
|
2019-06-06 19:24:07 +02:00
|
|
|
MIPS TCG target
|
2020-10-09 17:05:13 +02:00
|
|
|
M: Philippe Mathieu-Daudé <f4bug@amsat.org>
|
2020-03-13 02:00:50 +01:00
|
|
|
R: Aurelien Jarno <aurelien@aurel32.net>
|
2020-12-05 10:22:01 +01:00
|
|
|
R: Huacai Chen <chenhuacai@kernel.org>
|
2020-07-01 20:25:58 +02:00
|
|
|
R: Jiaxun Yang <jiaxun.yang@flygoat.com>
|
2020-05-18 22:09:16 +02:00
|
|
|
R: Aleksandar Rikalo <aleksandar.rikalo@syrmia.com>
|
2020-10-09 17:05:13 +02:00
|
|
|
S: Odd Fixes
|
2011-01-14 20:39:19 +01:00
|
|
|
F: tcg/mips/
|
|
|
|
|
2019-06-06 19:24:07 +02:00
|
|
|
PPC TCG target
|
2020-11-13 05:35:43 +01:00
|
|
|
M: Richard Henderson <richard.henderson@linaro.org>
|
2016-10-18 19:21:00 +02:00
|
|
|
S: Odd Fixes
|
2011-01-14 20:39:19 +01:00
|
|
|
F: tcg/ppc/
|
|
|
|
|
2019-06-06 19:24:07 +02:00
|
|
|
RISC-V TCG target
|
2019-10-29 17:39:03 +01:00
|
|
|
M: Palmer Dabbelt <palmer@dabbelt.com>
|
2018-12-19 20:17:07 +01:00
|
|
|
M: Alistair Francis <Alistair.Francis@wdc.com>
|
|
|
|
L: qemu-riscv@nongnu.org
|
|
|
|
S: Maintained
|
|
|
|
F: tcg/riscv/
|
|
|
|
F: disas/riscv.c
|
|
|
|
|
2019-06-06 19:24:07 +02:00
|
|
|
S390 TCG target
|
2020-11-13 05:35:43 +01:00
|
|
|
M: Richard Henderson <richard.henderson@linaro.org>
|
2011-01-14 20:39:19 +01:00
|
|
|
S: Maintained
|
|
|
|
F: tcg/s390/
|
2017-10-05 17:05:23 +02:00
|
|
|
L: qemu-s390x@nongnu.org
|
2011-01-14 20:39:19 +01:00
|
|
|
|
2019-06-06 19:24:07 +02:00
|
|
|
SPARC TCG target
|
2016-06-20 16:19:25 +02:00
|
|
|
S: Odd Fixes
|
2011-01-14 20:39:19 +01:00
|
|
|
F: tcg/sparc/
|
2015-09-22 11:36:16 +02:00
|
|
|
F: disas/sparc.c
|
2011-11-24 23:20:43 +01:00
|
|
|
|
2019-06-06 19:24:07 +02:00
|
|
|
TCI TCG target
|
2011-11-24 23:20:43 +01:00
|
|
|
M: Stefan Weil <sw@weilnetz.de>
|
|
|
|
S: Maintained
|
2012-04-13 17:22:03 +02:00
|
|
|
F: tcg/tci/
|
2017-06-29 17:03:07 +02:00
|
|
|
F: tcg/tci.c
|
2015-09-22 11:36:16 +02:00
|
|
|
F: disas/tci.c
|
2012-04-13 17:52:27 +02:00
|
|
|
|
2013-11-13 10:33:10 +01:00
|
|
|
Block drivers
|
|
|
|
-------------
|
|
|
|
VMDK
|
2018-11-21 16:30:36 +01:00
|
|
|
M: Fam Zheng <fam@euphon.net>
|
2015-04-30 15:15:13 +02:00
|
|
|
L: qemu-block@nongnu.org
|
2013-11-13 10:33:10 +01:00
|
|
|
S: Supported
|
|
|
|
F: block/vmdk.c
|
|
|
|
|
|
|
|
RBD
|
2021-05-19 13:25:13 +02:00
|
|
|
M: Ilya Dryomov <idryomov@gmail.com>
|
2021-07-07 20:04:49 +02:00
|
|
|
R: Peter Lieven <pl@kamp.de>
|
2015-03-06 18:16:06 +01:00
|
|
|
L: qemu-block@nongnu.org
|
2013-11-13 10:33:10 +01:00
|
|
|
S: Supported
|
|
|
|
F: block/rbd.c
|
|
|
|
|
|
|
|
VHDX
|
2018-09-26 20:05:33 +02:00
|
|
|
M: Jeff Cody <codyprime@gmail.com>
|
2015-03-06 18:16:06 +01:00
|
|
|
L: qemu-block@nongnu.org
|
2013-11-13 10:33:10 +01:00
|
|
|
S: Supported
|
|
|
|
F: block/vhdx*
|
|
|
|
|
|
|
|
VDI
|
|
|
|
M: Stefan Weil <sw@weilnetz.de>
|
2015-04-30 15:15:13 +02:00
|
|
|
L: qemu-block@nongnu.org
|
2013-11-13 10:33:10 +01:00
|
|
|
S: Maintained
|
|
|
|
F: block/vdi.c
|
|
|
|
|
|
|
|
iSCSI
|
|
|
|
M: Ronnie Sahlberg <ronniesahlberg@gmail.com>
|
|
|
|
M: Paolo Bonzini <pbonzini@redhat.com>
|
|
|
|
M: Peter Lieven <pl@kamp.de>
|
2015-04-30 15:15:13 +02:00
|
|
|
L: qemu-block@nongnu.org
|
2018-10-19 14:25:42 +02:00
|
|
|
S: Odd Fixes
|
2013-11-13 10:33:10 +01:00
|
|
|
F: block/iscsi.c
|
2017-01-24 13:49:21 +01:00
|
|
|
F: block/iscsi-opts.c
|
2013-11-13 10:33:10 +01:00
|
|
|
|
2017-07-07 20:21:51 +02:00
|
|
|
Network Block Device (NBD)
|
|
|
|
M: Eric Blake <eblake@redhat.com>
|
2022-05-26 13:54:32 +02:00
|
|
|
M: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
|
2017-07-07 20:21:51 +02:00
|
|
|
L: qemu-block@nongnu.org
|
|
|
|
S: Maintained
|
|
|
|
F: block/nbd*
|
|
|
|
F: nbd/
|
|
|
|
F: include/block/nbd*
|
|
|
|
F: qemu-nbd.*
|
|
|
|
F: blockdev-nbd.c
|
2018-06-09 17:17:58 +02:00
|
|
|
F: docs/interop/nbd.txt
|
2021-02-04 14:54:25 +01:00
|
|
|
F: docs/tools/qemu-nbd.rst
|
nbd/server: Allow MULTI_CONN for shared writable exports
According to the NBD spec, a server that advertises
NBD_FLAG_CAN_MULTI_CONN promises that multiple client connections will
not see any cache inconsistencies: when properly separated by a single
flush, actions performed by one client will be visible to another
client, regardless of which client did the flush.
We always satisfy these conditions in qemu - even when we support
multiple clients, ALL clients go through a single point of reference
into the block layer, with no local caching. The effect of one client
is instantly visible to the next client. Even if our backend were a
network device, we argue that any multi-path caching effects that
would cause inconsistencies in back-to-back actions not seeing the
effect of previous actions would be a bug in that backend, and not the
fault of caching in qemu. As such, it is safe to unconditionally
advertise CAN_MULTI_CONN for any qemu NBD server situation that
supports parallel clients.
Note, however, that we don't want to advertise CAN_MULTI_CONN when we
know that a second client cannot connect (for historical reasons,
qemu-nbd defaults to a single connection while nbd-server-add and QMP
commands default to unlimited connections; but we already have
existing means to let either style of NBD server creation alter those
defaults). This is visible by no longer advertising MULTI_CONN for
'qemu-nbd -r' without -e, as in the iotest nbd-qemu-allocation.
The harder part of this patch is setting up an iotest to demonstrate
behavior of multiple NBD clients to a single server. It might be
possible with parallel qemu-io processes, but I found it easier to do
in python with the help of libnbd, and help from Nir and Vladimir in
writing the test.
Signed-off-by: Eric Blake <eblake@redhat.com>
Suggested-by: Nir Soffer <nsoffer@redhat.com>
Suggested-by: Vladimir Sementsov-Ogievskiy <v.sementsov-og@mail.ru>
Message-Id: <20220512004924.417153-3-eblake@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
2022-05-12 02:49:24 +02:00
|
|
|
F: tests/qemu-iotests/tests/*nbd*
|
2018-11-08 12:15:28 +01:00
|
|
|
T: git https://repo.or.cz/qemu/ericb.git nbd
|
2022-05-26 13:54:32 +02:00
|
|
|
T: git https://gitlab.com/vsementsov/qemu.git block
|
2017-07-07 20:21:51 +02:00
|
|
|
|
2014-02-03 10:26:13 +01:00
|
|
|
NFS
|
|
|
|
M: Peter Lieven <pl@kamp.de>
|
2015-03-06 18:16:06 +01:00
|
|
|
L: qemu-block@nongnu.org
|
2014-02-03 10:26:13 +01:00
|
|
|
S: Maintained
|
|
|
|
F: block/nfs.c
|
|
|
|
|
2013-11-13 10:33:10 +01:00
|
|
|
SSH
|
|
|
|
M: Richard W.M. Jones <rjones@redhat.com>
|
2015-03-06 18:16:06 +01:00
|
|
|
L: qemu-block@nongnu.org
|
2013-11-13 10:33:10 +01:00
|
|
|
S: Supported
|
|
|
|
F: block/ssh.c
|
block: Support Archipelago as a QEMU block backend
VM Image on Archipelago volume is specified like this:
file.driver=archipelago,file.volume=<volumename>[,file.mport=<mapperd_port>[,
file.vport=<vlmcd_port>][,file.segment=<segment_name>]]
'archipelago' is the protocol.
'mport' is the port number on which mapperd is listening. This is optional
and if not specified, QEMU will make Archipelago to use the default port.
'vport' is the port number on which vlmcd is listening. This is optional
and if not specified, QEMU will make Archipelago to use the default port.
'segment' is the name of the shared memory segment Archipelago stack is using.
This is optional and if not specified, QEMU will make Archipelago to use the
default value, 'archipelago'.
Examples:
file.driver=archipelago,file.volume=my_vm_volume
file.driver=archipelago,file.volume=my_vm_volume,file.mport=123
file.driver=archipelago,file.volume=my_vm_volume,file.mport=123,
file.vport=1234
file.driver=archipelago,file.volume=my_vm_volume,file.mport=123,
file.vport=1234,file.segment=my_segment
Signed-off-by: Chrysostomos Nanakos <cnanakos@grnet.gr>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
2014-08-04 16:35:32 +02:00
|
|
|
|
2015-03-06 18:16:06 +01:00
|
|
|
CURL
|
|
|
|
L: qemu-block@nongnu.org
|
2019-05-06 08:18:54 +02:00
|
|
|
S: Odd Fixes
|
2015-03-06 18:16:06 +01:00
|
|
|
F: block/curl.c
|
|
|
|
|
|
|
|
GLUSTER
|
|
|
|
L: qemu-block@nongnu.org
|
2019-05-06 08:18:54 +02:00
|
|
|
L: integration@gluster.org
|
|
|
|
S: Odd Fixes
|
2015-03-06 18:16:06 +01:00
|
|
|
F: block/gluster.c
|
2014-10-22 05:07:57 +02:00
|
|
|
|
2015-04-01 03:45:40 +02:00
|
|
|
Null Block Driver
|
2018-11-21 16:30:36 +01:00
|
|
|
M: Fam Zheng <fam@euphon.net>
|
2015-04-01 03:45:40 +02:00
|
|
|
L: qemu-block@nongnu.org
|
|
|
|
S: Supported
|
|
|
|
F: block/null.c
|
|
|
|
|
2018-01-16 07:08:55 +01:00
|
|
|
NVMe Block Driver
|
2020-09-07 13:16:32 +02:00
|
|
|
M: Stefan Hajnoczi <stefanha@redhat.com>
|
|
|
|
R: Fam Zheng <fam@euphon.net>
|
2021-12-29 17:06:39 +01:00
|
|
|
R: Philippe Mathieu-Daudé <f4bug@amsat.org>
|
2018-01-16 07:08:55 +01:00
|
|
|
L: qemu-block@nongnu.org
|
|
|
|
S: Supported
|
|
|
|
F: block/nvme*
|
2020-07-01 16:06:34 +02:00
|
|
|
F: include/block/nvme.h
|
2020-09-07 13:16:32 +02:00
|
|
|
T: git https://github.com/stefanha/qemu.git block
|
2018-01-16 07:08:55 +01:00
|
|
|
|
2014-10-22 05:07:57 +02:00
|
|
|
Bootdevice
|
|
|
|
M: Gonglei <arei.gonglei@huawei.com>
|
|
|
|
S: Maintained
|
2020-10-06 09:01:22 +02:00
|
|
|
F: softmmu/bootdevice.c
|
2015-03-16 17:22:05 +01:00
|
|
|
|
|
|
|
Quorum
|
|
|
|
M: Alberto Garcia <berto@igalia.com>
|
|
|
|
S: Supported
|
|
|
|
F: block/quorum.c
|
|
|
|
L: qemu-block@nongnu.org
|
2015-04-29 16:13:26 +02:00
|
|
|
|
2018-07-03 16:48:48 +02:00
|
|
|
blklogwrites
|
|
|
|
M: Ari Sundholm <ari@tuxera.com>
|
|
|
|
L: qemu-block@nongnu.org
|
|
|
|
S: Supported
|
|
|
|
F: block/blklogwrites.c
|
|
|
|
|
2015-04-29 16:13:26 +02:00
|
|
|
blkverify
|
|
|
|
M: Stefan Hajnoczi <stefanha@redhat.com>
|
|
|
|
L: qemu-block@nongnu.org
|
|
|
|
S: Supported
|
|
|
|
F: block/blkverify.c
|
|
|
|
|
|
|
|
bochs
|
|
|
|
M: Stefan Hajnoczi <stefanha@redhat.com>
|
|
|
|
L: qemu-block@nongnu.org
|
|
|
|
S: Supported
|
|
|
|
F: block/bochs.c
|
|
|
|
|
|
|
|
cloop
|
|
|
|
M: Stefan Hajnoczi <stefanha@redhat.com>
|
|
|
|
L: qemu-block@nongnu.org
|
|
|
|
S: Supported
|
|
|
|
F: block/cloop.c
|
|
|
|
|
|
|
|
dmg
|
|
|
|
M: Stefan Hajnoczi <stefanha@redhat.com>
|
|
|
|
L: qemu-block@nongnu.org
|
|
|
|
S: Supported
|
|
|
|
F: block/dmg.c
|
|
|
|
|
|
|
|
parallels
|
|
|
|
M: Stefan Hajnoczi <stefanha@redhat.com>
|
2015-08-21 19:44:16 +02:00
|
|
|
M: Denis V. Lunev <den@openvz.org>
|
2022-05-26 13:54:32 +02:00
|
|
|
M: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
|
2015-04-29 16:13:26 +02:00
|
|
|
L: qemu-block@nongnu.org
|
|
|
|
S: Supported
|
|
|
|
F: block/parallels.c
|
2021-03-04 10:51:51 +01:00
|
|
|
F: block/parallels-ext.c
|
2017-09-08 19:36:32 +02:00
|
|
|
F: docs/interop/parallels.txt
|
2022-05-26 13:54:32 +02:00
|
|
|
T: git https://gitlab.com/vsementsov/qemu.git block
|
2015-04-29 16:13:26 +02:00
|
|
|
|
|
|
|
qed
|
|
|
|
M: Stefan Hajnoczi <stefanha@redhat.com>
|
|
|
|
L: qemu-block@nongnu.org
|
|
|
|
S: Supported
|
|
|
|
F: block/qed.c
|
|
|
|
|
|
|
|
raw
|
|
|
|
M: Kevin Wolf <kwolf@redhat.com>
|
|
|
|
L: qemu-block@nongnu.org
|
|
|
|
S: Supported
|
|
|
|
F: block/linux-aio.c
|
2016-09-05 14:28:52 +02:00
|
|
|
F: include/block/raw-aio.h
|
block: Rename raw_bsd to raw-format.c
Given that we have raw-win32.c and raw-posix.c, my initial guess at
raw_bsd.c was that it was for dealing with raw files using code
specific to the BSD operating system (beyond what raw-posix could
do). Not so - this name was chosen back in commit e1c66c6 to
distinguish that it was a BSD licensed file, in contrast to the
then-existing raw.c with an unclear and potentially unusable
license. But since it has been more than three years since the
rewrite, it's time to pick a more useful name for this file to
avoid this type of confusion to future contributors that don't know
the backstory, as none of our other files are named solely by the
license they use.
In reality, this file deals with the raw format, which is useful
with any number of protocols, while raw-{win32,posix} deal with
the file protocol (and in turn, that protocol is not limited to
use with the raw format). So rename raw_bsd to raw-format.c. We
could have also used the shorter name raw.c, except that collides
with the earlier use of that filename for a different license,
and it's better to be safe than risk license pollution.
The next patch will also rename raw-win32.c and raw-posix.c to
further distinguish the difference in roles.
It doesn't hurt that this gets rid of an underscore in the filename,
thereby making tab-completion on 'ra<TAB>' easier (now I don't have
to type the shift key, which slows things down :)
Suggested-by: Daniel P. Berrange <berrange@redhat.com>
Signed-off-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Laszlo Ersek <lersek@redhat.com>
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
2016-12-02 20:48:53 +01:00
|
|
|
F: block/raw-format.c
|
2016-12-02 20:48:54 +01:00
|
|
|
F: block/file-posix.c
|
|
|
|
F: block/file-win32.c
|
2015-04-29 16:13:26 +02:00
|
|
|
F: block/win32-aio.c
|
|
|
|
|
2020-01-20 15:18:47 +01:00
|
|
|
Linux io_uring
|
|
|
|
M: Aarushi Mehta <mehta.aaru20@gmail.com>
|
|
|
|
M: Julia Suvorova <jusual@redhat.com>
|
|
|
|
M: Stefan Hajnoczi <stefanha@redhat.com>
|
2021-07-28 15:15:15 +02:00
|
|
|
R: Stefano Garzarella <sgarzare@redhat.com>
|
2020-01-20 15:18:47 +01:00
|
|
|
L: qemu-block@nongnu.org
|
|
|
|
S: Maintained
|
|
|
|
F: block/io_uring.c
|
2020-01-20 15:18:48 +01:00
|
|
|
F: stubs/io_uring.c
|
2020-01-20 15:18:47 +01:00
|
|
|
|
2015-04-29 16:13:26 +02:00
|
|
|
qcow2
|
|
|
|
M: Kevin Wolf <kwolf@redhat.com>
|
2021-08-10 16:04:11 +02:00
|
|
|
M: Hanna Reitz <hreitz@redhat.com>
|
2015-04-29 16:13:26 +02:00
|
|
|
L: qemu-block@nongnu.org
|
|
|
|
S: Supported
|
|
|
|
F: block/qcow2*
|
2017-09-08 19:36:23 +02:00
|
|
|
F: docs/interop/qcow2.txt
|
2015-04-29 16:13:26 +02:00
|
|
|
|
|
|
|
qcow
|
|
|
|
M: Kevin Wolf <kwolf@redhat.com>
|
|
|
|
L: qemu-block@nongnu.org
|
|
|
|
S: Supported
|
|
|
|
F: block/qcow.c
|
|
|
|
|
|
|
|
blkdebug
|
|
|
|
M: Kevin Wolf <kwolf@redhat.com>
|
2021-08-10 16:04:11 +02:00
|
|
|
M: Hanna Reitz <hreitz@redhat.com>
|
2015-04-29 16:13:26 +02:00
|
|
|
L: qemu-block@nongnu.org
|
|
|
|
S: Supported
|
|
|
|
F: block/blkdebug.c
|
|
|
|
|
|
|
|
vpc
|
|
|
|
M: Kevin Wolf <kwolf@redhat.com>
|
|
|
|
L: qemu-block@nongnu.org
|
|
|
|
S: Supported
|
|
|
|
F: block/vpc.c
|
|
|
|
|
|
|
|
vvfat
|
|
|
|
M: Kevin Wolf <kwolf@redhat.com>
|
|
|
|
L: qemu-block@nongnu.org
|
2020-07-10 21:04:51 +02:00
|
|
|
S: Odd Fixes
|
2015-04-29 16:13:26 +02:00
|
|
|
F: block/vvfat.c
|
2015-04-29 16:13:28 +02:00
|
|
|
|
|
|
|
Image format fuzzer
|
|
|
|
M: Stefan Hajnoczi <stefanha@redhat.com>
|
|
|
|
L: qemu-block@nongnu.org
|
|
|
|
S: Supported
|
|
|
|
F: tests/image-fuzzer/
|
2015-09-24 15:41:38 +02:00
|
|
|
|
2020-09-18 10:09:12 +02:00
|
|
|
Vhost-user block device backend server
|
|
|
|
M: Coiby Xu <Coiby.Xu@gmail.com>
|
|
|
|
S: Maintained
|
|
|
|
F: block/export/vhost-user-blk-server.c
|
2020-09-24 17:15:48 +02:00
|
|
|
F: block/export/vhost-user-blk-server.h
|
2022-05-23 10:46:06 +02:00
|
|
|
F: block/export/virtio-blk-handler.c
|
|
|
|
F: block/export/virtio-blk-handler.h
|
2020-09-24 17:15:48 +02:00
|
|
|
F: include/qemu/vhost-user-server.h
|
2020-09-18 10:09:12 +02:00
|
|
|
F: tests/qtest/libqos/vhost-user-blk.c
|
2021-03-22 10:23:25 +01:00
|
|
|
F: tests/qtest/libqos/vhost-user-blk.h
|
|
|
|
F: tests/qtest/vhost-user-blk-test.c
|
2020-09-24 17:15:48 +02:00
|
|
|
F: util/vhost-user-server.c
|
2020-09-18 10:09:12 +02:00
|
|
|
|
2020-10-27 20:05:42 +01:00
|
|
|
FUSE block device exports
|
2021-08-10 16:04:11 +02:00
|
|
|
M: Hanna Reitz <hreitz@redhat.com>
|
2020-10-27 20:05:42 +01:00
|
|
|
L: qemu-block@nongnu.org
|
|
|
|
S: Supported
|
|
|
|
F: block/export/fuse.c
|
|
|
|
|
2022-05-23 10:46:09 +02:00
|
|
|
VDUSE library and block device exports
|
2022-05-23 10:46:08 +02:00
|
|
|
M: Xie Yongji <xieyongji@bytedance.com>
|
|
|
|
S: Maintained
|
|
|
|
F: subprojects/libvduse/
|
2022-05-23 10:46:09 +02:00
|
|
|
F: block/export/vduse-blk.c
|
|
|
|
F: block/export/vduse-blk.h
|
2022-05-23 10:46:08 +02:00
|
|
|
|
2016-07-27 09:01:53 +02:00
|
|
|
Replication
|
2017-04-18 05:08:13 +02:00
|
|
|
M: Wen Congyang <wencongyang2@huawei.com>
|
2017-04-21 09:12:47 +02:00
|
|
|
M: Xie Changlong <xiechanglong.d@gmail.com>
|
2016-07-27 09:01:53 +02:00
|
|
|
S: Supported
|
|
|
|
F: replication*
|
|
|
|
F: block/replication.c
|
2021-03-10 07:33:14 +01:00
|
|
|
F: tests/unit/test-replication.c
|
2016-07-27 09:01:53 +02:00
|
|
|
F: docs/block-replication.txt
|
|
|
|
|
2017-12-14 16:32:23 +01:00
|
|
|
PVRDMA
|
2019-11-26 11:26:37 +01:00
|
|
|
M: Yuval Shaia <yuval.shaia.ml@gmail.com>
|
2018-04-26 10:45:23 +02:00
|
|
|
M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
|
2017-12-14 16:32:23 +01:00
|
|
|
S: Maintained
|
|
|
|
F: hw/rdma/*
|
|
|
|
F: hw/rdma/vmw/*
|
|
|
|
F: docs/pvrdma.txt
|
2018-12-21 15:40:15 +01:00
|
|
|
F: contrib/rdmacm-mux/*
|
2018-12-21 15:40:24 +01:00
|
|
|
F: qapi/rdma.json
|
2017-12-14 16:32:23 +01:00
|
|
|
|
2019-05-13 16:32:56 +02:00
|
|
|
Semihosting
|
|
|
|
M: Alex Bennée <alex.bennee@linaro.org>
|
|
|
|
S: Maintained
|
2021-03-05 14:54:50 +01:00
|
|
|
F: semihosting/
|
2021-03-05 14:54:49 +01:00
|
|
|
F: include/semihosting/
|
2021-03-23 17:52:51 +01:00
|
|
|
F: tests/tcg/multiarch/arm-compat-semi/
|
2022-02-25 18:20:21 +01:00
|
|
|
F: tests/tcg/aarch64/system/semiheap.c
|
2019-05-13 16:32:56 +02:00
|
|
|
|
2021-01-29 17:46:02 +01:00
|
|
|
Multi-process QEMU
|
|
|
|
M: Elena Ufimtseva <elena.ufimtseva@oracle.com>
|
|
|
|
M: Jagannathan Raman <jag.raman@oracle.com>
|
|
|
|
M: John G Johnson <john.g.johnson@oracle.com>
|
|
|
|
S: Maintained
|
|
|
|
F: docs/devel/multi-process.rst
|
2021-01-29 17:46:03 +01:00
|
|
|
F: docs/system/multi-process.rst
|
2021-01-29 17:46:06 +01:00
|
|
|
F: hw/pci-host/remote.c
|
|
|
|
F: include/hw/pci-host/remote.h
|
2021-01-29 17:46:07 +01:00
|
|
|
F: hw/remote/machine.c
|
|
|
|
F: include/hw/remote/machine.h
|
2021-01-29 17:46:10 +01:00
|
|
|
F: hw/remote/mpqemu-link.c
|
|
|
|
F: include/hw/remote/mpqemu-link.h
|
2021-01-29 17:46:11 +01:00
|
|
|
F: hw/remote/message.c
|
2021-01-29 17:46:12 +01:00
|
|
|
F: hw/remote/remote-obj.c
|
2021-01-29 17:46:13 +01:00
|
|
|
F: include/hw/remote/memory.h
|
|
|
|
F: hw/remote/memory.c
|
2021-01-29 17:46:14 +01:00
|
|
|
F: hw/remote/proxy.c
|
|
|
|
F: include/hw/remote/proxy.h
|
2021-01-29 17:46:18 +01:00
|
|
|
F: hw/remote/proxy-memory-listener.c
|
|
|
|
F: include/hw/remote/proxy-memory-listener.h
|
2021-01-29 17:46:19 +01:00
|
|
|
F: hw/remote/iohub.c
|
|
|
|
F: include/hw/remote/iohub.h
|
2022-06-13 22:26:24 +02:00
|
|
|
F: subprojects/libvfio-user
|
2022-06-13 22:26:25 +02:00
|
|
|
F: hw/remote/vfio-user-obj.c
|
2022-06-13 22:26:33 +02:00
|
|
|
F: include/hw/remote/vfio-user-obj.h
|
2022-06-13 22:26:30 +02:00
|
|
|
F: hw/remote/iommu.c
|
|
|
|
F: include/hw/remote/iommu.h
|
2021-01-29 17:46:02 +01:00
|
|
|
|
2021-05-14 13:48:35 +02:00
|
|
|
EBPF:
|
|
|
|
M: Jason Wang <jasowang@redhat.com>
|
|
|
|
R: Andrew Melnychenko <andrew@daynix.com>
|
|
|
|
R: Yuri Benditovich <yuri.benditovich@daynix.com>
|
|
|
|
S: Maintained
|
|
|
|
F: ebpf/*
|
|
|
|
F: tools/ebpf/*
|
|
|
|
|
2016-01-31 18:32:39 +01:00
|
|
|
Build and test automation
|
|
|
|
-------------------------
|
MAINTAINERS: Merge the Gitlab-CI section into the generic CI section
The status of the gitlab-CI files is currently somewhat confusing, and
it is often not quite clear whether a patch should go via my tree or
via the testing tree of Alex. That situation has grown historically...
Initially, I was the only one using the gitlab-CI, just for my private
repository there. But in the course of time, the gitlab-CI switched to
use the containers from tests/docker/ (which is not part of the gitlab-CI
section in the MAINTAINERS file), and QEMU now even switched to gitlab.com
completely for the repository and will soon use it as its gating CI, too,
so it makes way more sense if the gitlab-ci.yml files belong to the people
who are owning the qemu-project on gitlab.com and take care of the gitlab
CI there. Thus let's merge the gitlab-ci section into the common "test and
build automation" section.
And while we're at it, I'm also removing the line with Fam there for now,
since he was hardly active during the last years in this area anymore.
If he ever gets more time for this part again in the future, we surely
can add the line back again. I'm also removing the Patchew URL from this
section now since Patchew's files are not tracked in the main QEMU repo
and it is also not maintained by Alex, Philippe and myself.
The maintainers of Patchew are still listed more accurately in the wiki on
https://wiki.qemu.org/AdminContacts & https://wiki.qemu.org/Testing/CI/Patchew
instead.
Now to avoid that Alex is listed here in this section alone, Philippe and
I agreed to help as backup maintainers here, too. And Willian volunteered
to be an additional reviewer.
Message-Id: <20210309112356.737266-1-thuth@redhat.com>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Willian Rampazzo <willianr@redhat.com>
Acked-by: Wainer dos Santos Moschetta <wainersm@redhat.com>
Acked-by: Fam Zheng <fam@euphon.net>
Signed-off-by: Thomas Huth <thuth@redhat.com>
2021-03-09 12:23:56 +01:00
|
|
|
Build and test automation, general continuous integration
|
2016-01-31 18:32:39 +01:00
|
|
|
M: Alex Bennée <alex.bennee@linaro.org>
|
MAINTAINERS: Merge the Gitlab-CI section into the generic CI section
The status of the gitlab-CI files is currently somewhat confusing, and
it is often not quite clear whether a patch should go via my tree or
via the testing tree of Alex. That situation has grown historically...
Initially, I was the only one using the gitlab-CI, just for my private
repository there. But in the course of time, the gitlab-CI switched to
use the containers from tests/docker/ (which is not part of the gitlab-CI
section in the MAINTAINERS file), and QEMU now even switched to gitlab.com
completely for the repository and will soon use it as its gating CI, too,
so it makes way more sense if the gitlab-ci.yml files belong to the people
who are owning the qemu-project on gitlab.com and take care of the gitlab
CI there. Thus let's merge the gitlab-ci section into the common "test and
build automation" section.
And while we're at it, I'm also removing the line with Fam there for now,
since he was hardly active during the last years in this area anymore.
If he ever gets more time for this part again in the future, we surely
can add the line back again. I'm also removing the Patchew URL from this
section now since Patchew's files are not tracked in the main QEMU repo
and it is also not maintained by Alex, Philippe and myself.
The maintainers of Patchew are still listed more accurately in the wiki on
https://wiki.qemu.org/AdminContacts & https://wiki.qemu.org/Testing/CI/Patchew
instead.
Now to avoid that Alex is listed here in this section alone, Philippe and
I agreed to help as backup maintainers here, too. And Willian volunteered
to be an additional reviewer.
Message-Id: <20210309112356.737266-1-thuth@redhat.com>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Willian Rampazzo <willianr@redhat.com>
Acked-by: Wainer dos Santos Moschetta <wainersm@redhat.com>
Acked-by: Fam Zheng <fam@euphon.net>
Signed-off-by: Thomas Huth <thuth@redhat.com>
2021-03-09 12:23:56 +01:00
|
|
|
M: Philippe Mathieu-Daudé <f4bug@amsat.org>
|
|
|
|
M: Thomas Huth <thuth@redhat.com>
|
|
|
|
R: Wainer dos Santos Moschetta <wainersm@redhat.com>
|
2021-11-29 15:09:30 +01:00
|
|
|
R: Beraldo Leal <bleal@redhat.com>
|
2017-02-20 11:51:39 +01:00
|
|
|
S: Maintained
|
2022-03-23 09:07:55 +01:00
|
|
|
F: .github/workflows/lockdown.yml
|
MAINTAINERS: Merge the Gitlab-CI section into the generic CI section
The status of the gitlab-CI files is currently somewhat confusing, and
it is often not quite clear whether a patch should go via my tree or
via the testing tree of Alex. That situation has grown historically...
Initially, I was the only one using the gitlab-CI, just for my private
repository there. But in the course of time, the gitlab-CI switched to
use the containers from tests/docker/ (which is not part of the gitlab-CI
section in the MAINTAINERS file), and QEMU now even switched to gitlab.com
completely for the repository and will soon use it as its gating CI, too,
so it makes way more sense if the gitlab-ci.yml files belong to the people
who are owning the qemu-project on gitlab.com and take care of the gitlab
CI there. Thus let's merge the gitlab-ci section into the common "test and
build automation" section.
And while we're at it, I'm also removing the line with Fam there for now,
since he was hardly active during the last years in this area anymore.
If he ever gets more time for this part again in the future, we surely
can add the line back again. I'm also removing the Patchew URL from this
section now since Patchew's files are not tracked in the main QEMU repo
and it is also not maintained by Alex, Philippe and myself.
The maintainers of Patchew are still listed more accurately in the wiki on
https://wiki.qemu.org/AdminContacts & https://wiki.qemu.org/Testing/CI/Patchew
instead.
Now to avoid that Alex is listed here in this section alone, Philippe and
I agreed to help as backup maintainers here, too. And Willian volunteered
to be an additional reviewer.
Message-Id: <20210309112356.737266-1-thuth@redhat.com>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Willian Rampazzo <willianr@redhat.com>
Acked-by: Wainer dos Santos Moschetta <wainersm@redhat.com>
Acked-by: Fam Zheng <fam@euphon.net>
Signed-off-by: Thomas Huth <thuth@redhat.com>
2021-03-09 12:23:56 +01:00
|
|
|
F: .gitlab-ci.yml
|
|
|
|
F: .gitlab-ci.d/
|
2016-01-31 18:32:39 +01:00
|
|
|
F: .travis.yml
|
2021-02-11 13:27:36 +01:00
|
|
|
F: scripts/ci/
|
2017-02-20 11:51:39 +01:00
|
|
|
F: tests/docker/
|
2017-09-05 04:11:59 +02:00
|
|
|
F: tests/vm/
|
2022-02-04 21:43:14 +01:00
|
|
|
F: tests/lcitool/
|
2019-01-24 02:00:22 +01:00
|
|
|
F: scripts/archive-source.sh
|
MAINTAINERS: Merge the Gitlab-CI section into the generic CI section
The status of the gitlab-CI files is currently somewhat confusing, and
it is often not quite clear whether a patch should go via my tree or
via the testing tree of Alex. That situation has grown historically...
Initially, I was the only one using the gitlab-CI, just for my private
repository there. But in the course of time, the gitlab-CI switched to
use the containers from tests/docker/ (which is not part of the gitlab-CI
section in the MAINTAINERS file), and QEMU now even switched to gitlab.com
completely for the repository and will soon use it as its gating CI, too,
so it makes way more sense if the gitlab-ci.yml files belong to the people
who are owning the qemu-project on gitlab.com and take care of the gitlab
CI there. Thus let's merge the gitlab-ci section into the common "test and
build automation" section.
And while we're at it, I'm also removing the line with Fam there for now,
since he was hardly active during the last years in this area anymore.
If he ever gets more time for this part again in the future, we surely
can add the line back again. I'm also removing the Patchew URL from this
section now since Patchew's files are not tracked in the main QEMU repo
and it is also not maintained by Alex, Philippe and myself.
The maintainers of Patchew are still listed more accurately in the wiki on
https://wiki.qemu.org/AdminContacts & https://wiki.qemu.org/Testing/CI/Patchew
instead.
Now to avoid that Alex is listed here in this section alone, Philippe and
I agreed to help as backup maintainers here, too. And Willian volunteered
to be an additional reviewer.
Message-Id: <20210309112356.737266-1-thuth@redhat.com>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Willian Rampazzo <willianr@redhat.com>
Acked-by: Wainer dos Santos Moschetta <wainersm@redhat.com>
Acked-by: Fam Zheng <fam@euphon.net>
Signed-off-by: Thomas Huth <thuth@redhat.com>
2021-03-09 12:23:56 +01:00
|
|
|
W: https://gitlab.com/qemu-project/qemu/pipelines
|
2017-02-20 11:51:39 +01:00
|
|
|
W: https://travis-ci.org/qemu/qemu
|
2015-09-24 15:41:38 +02:00
|
|
|
|
2019-01-22 18:25:58 +01:00
|
|
|
FreeBSD Hosted Continuous Integration
|
|
|
|
M: Ed Maste <emaste@freebsd.org>
|
|
|
|
M: Li-Wen Hsu <lwhsu@freebsd.org>
|
|
|
|
S: Maintained
|
2022-02-17 15:11:38 +01:00
|
|
|
F: .gitlab-ci.d/cirrus/freebsd*
|
|
|
|
F: tests/vm/freebsd
|
2019-01-22 18:25:58 +01:00
|
|
|
W: https://cirrus-ci.com/github/qemu/qemu
|
|
|
|
|
2021-01-07 11:19:17 +01:00
|
|
|
Windows Hosted Continuous Integration
|
|
|
|
M: Yonggang Luo <luoyonggang@gmail.com>
|
|
|
|
S: Maintained
|
|
|
|
F: .cirrus.yml
|
|
|
|
W: https://cirrus-ci.com/github/qemu/qemu
|
|
|
|
|
2018-04-06 14:32:18 +02:00
|
|
|
Guest Test Compilation Support
|
|
|
|
M: Alex Bennée <alex.bennee@linaro.org>
|
|
|
|
R: Philippe Mathieu-Daudé <f4bug@amsat.org>
|
2019-03-01 17:35:18 +01:00
|
|
|
S: Maintained
|
2018-04-06 14:32:18 +02:00
|
|
|
F: tests/tcg/Makefile
|
2018-04-06 12:08:37 +02:00
|
|
|
F: tests/tcg/Makefile.include
|
2018-04-06 14:32:18 +02:00
|
|
|
|
2021-11-05 16:53:54 +01:00
|
|
|
Integration Testing with the Avocado framework
|
2020-01-29 17:45:05 +01:00
|
|
|
W: https://trello.com/b/6Qi1pxVn/avocado-qemu
|
|
|
|
R: Cleber Rosa <crosa@redhat.com>
|
2021-12-29 17:06:39 +01:00
|
|
|
R: Philippe Mathieu-Daudé <f4bug@amsat.org>
|
2020-01-29 17:45:05 +01:00
|
|
|
R: Wainer dos Santos Moschetta <wainersm@redhat.com>
|
2021-11-29 15:09:30 +01:00
|
|
|
R: Beraldo Leal <bleal@redhat.com>
|
2020-01-29 17:45:05 +01:00
|
|
|
S: Odd Fixes
|
2021-11-05 16:53:54 +01:00
|
|
|
F: tests/avocado/
|
2020-01-29 17:45:05 +01:00
|
|
|
|
2021-11-29 15:09:31 +01:00
|
|
|
GitLab custom runner (Works On Arm Sponsored)
|
|
|
|
M: Alex Bennée <alex.bennee@linaro.org>
|
|
|
|
M: Philippe Mathieu-Daudé <f4bug@amsat.org>
|
|
|
|
S: Maintained
|
|
|
|
F: .gitlab-ci.d/custom-runners/ubuntu-20.04-aarch64.yml
|
|
|
|
|
2015-09-24 15:41:38 +02:00
|
|
|
Documentation
|
|
|
|
-------------
|
|
|
|
Build system architecture
|
|
|
|
M: Daniel P. Berrange <berrange@redhat.com>
|
|
|
|
S: Odd Fixes
|
2021-05-17 17:17:00 +02:00
|
|
|
F: docs/devel/build-system.rst
|
2016-06-01 06:25:28 +02:00
|
|
|
|
2019-01-14 16:25:13 +01:00
|
|
|
GIT Data Mining Config
|
|
|
|
M: Alex Bennée <alex.bennee@linaro.org>
|
|
|
|
S: Odd Fixes
|
|
|
|
F: gitdm.config
|
|
|
|
F: contrib/gitdm/*
|
|
|
|
|
2018-07-16 09:32:26 +02:00
|
|
|
Incompatible changes
|
|
|
|
R: libvir-list@redhat.com
|
2021-07-23 08:58:28 +02:00
|
|
|
F: docs/about/deprecated.rst
|
2018-07-16 09:32:26 +02:00
|
|
|
|
2017-09-29 12:11:56 +02:00
|
|
|
Build System
|
|
|
|
------------
|
|
|
|
GIT submodules
|
|
|
|
M: Daniel P. Berrange <berrange@redhat.com>
|
|
|
|
S: Odd Fixes
|
|
|
|
F: scripts/git-submodule.sh
|
2019-03-07 15:26:47 +01:00
|
|
|
|
2019-12-10 13:55:15 +01:00
|
|
|
UI translations
|
2020-10-30 16:34:16 +01:00
|
|
|
S: Orphan
|
2019-12-10 13:55:15 +01:00
|
|
|
F: po/*.po
|
|
|
|
|
2019-03-07 15:26:47 +01:00
|
|
|
Sphinx documentation configuration and build machinery
|
|
|
|
M: Peter Maydell <peter.maydell@linaro.org>
|
|
|
|
S: Maintained
|
|
|
|
F: docs/conf.py
|
|
|
|
F: docs/*/conf.py
|
2020-09-25 18:23:02 +02:00
|
|
|
F: docs/sphinx/
|
2021-07-05 11:55:46 +02:00
|
|
|
F: docs/_templates/
|
2020-06-27 20:13:17 +02:00
|
|
|
|
|
|
|
Miscellaneous
|
|
|
|
-------------
|
|
|
|
Performance Tools and Tests
|
|
|
|
M: Ahmed Karaman <ahmedkhaledkaraman@gmail.com>
|
|
|
|
S: Maintained
|
|
|
|
F: scripts/performance/
|