]> git.proxmox.com Git - mirror_qemu.git/blame - MAINTAINERS
util: Introduce host-specific cpuinfo.h
[mirror_qemu.git] / MAINTAINERS
CommitLineData
b6f97c14
FB
1QEMU Maintainers
2================
3
fd5d5c56
AL
4The intention of this file is not to establish who owns what portions of the
5code base, but to provide a set of names that developers can consult when they
6have a question about a particular subset and also to provide a set of names
7to be CC'd when submitting a patch to obtain appropriate review.
3cd9acb4 8
fd5d5c56
AL
9In general, if you have a question about inclusion of a patch, you should
10consult qemu-devel and not any specific individual privately.
b6f97c14 11
fd5d5c56
AL
12Descriptions of section entries:
13
14 M: Mail patches to: FullName <address@domain>
9436e082
CH
15 Maintainers are looking after a certain area and must be CCed on
16 patches. They are considered the main contact point.
fdf6fab4
PM
17 R: Designated reviewer: FullName <address@domain>
18 These reviewers should be CCed on patches.
9436e082
CH
19 Reviewers are familiar with the subject matter and provide feedback
20 even though they are not maintainers.
fd5d5c56 21 L: Mailing list that is relevant to this area
9436e082 22 These lists should be CCed on patches.
fd5d5c56
AL
23 W: Web-page with status/info
24 Q: Patchwork web based patch tracking system site
25 T: SCM tree type and location. Type is one of: git, hg, quilt, stgit.
668725ce 26 S: Status, one of the following (keep in sync with docs/devel/maintainers.rst):
fd5d5c56
AL
27 Supported: Someone is actually paid to look after this.
28 Maintained: Someone actually looks after it.
29 Odd Fixes: It has a maintainer but they don't have time to do
c91bbffb 30 much other than throw the odd patch in. See below.
fd5d5c56
AL
31 Orphan: No current maintainer [but maybe you could take the
32 role as you write your new code].
33 Obsolete: Old code. Something tagged obsolete generally means
34 it has been replaced by a better system and you
35 should be using that.
36 F: Files and directories with wildcard patterns.
37 A trailing slash includes all files and subdirectory files.
38 F: drivers/net/ all files in and below drivers/net
39 F: drivers/net/* all files in drivers/net, but not below
40 F: */net/* all files in "any top level directory"/net
41 One pattern per line. Multiple F: lines acceptable.
42 X: Files and directories that are NOT maintained, same rules as F:
43 Files exclusions are tested before file matches.
44 Can be useful for excluding a specific subdirectory, for instance:
45 F: net/
46 X: net/ipv6/
47 matches all files in and below net excluding net/ipv6/
48 K: Keyword perl extended regex pattern to match content in a
49 patch or file. For instance:
50 K: of_get_profile
51 matches patches or files that contain "of_get_profile"
52 K: \b(printk|pr_(info|err))\b
53 matches patches or files that contain one or more of the words
54 printk, pr_info or pr_err
55 One regex pattern per line. Multiple K: lines acceptable.
56
57
58General Project Administration
59------------------------------
ff0d4876 60M: Peter Maydell <peter.maydell@linaro.org>
fd5d5c56 61
c9a19d5b
SW
62All patches CC here
63L: qemu-devel@nongnu.org
64F: *
65F: */
66
3be8c034
AB
67Project policy and developer guides
68R: Alex Bennée <alex.bennee@linaro.org>
69R: Daniel P. Berrangé <berrange@redhat.com>
70R: Thomas Huth <thuth@redhat.com>
71R: Markus Armbruster <armbru@redhat.com>
72R: Philippe Mathieu-Daudé <philmd@linaro.org>
2243299a 73R: Juan Quintela <quintela@redhat.com>
3be8c034
AB
74W: https://www.qemu.org/docs/master/devel/index.html
75S: Odd Fixes
76F: docs/devel/style.rst
77F: docs/devel/code-of-conduct.rst
78F: docs/devel/conflict-resolution.rst
79F: docs/devel/submitting-a-patch.rst
80F: docs/devel/submitting-a-pull-request.rst
81
62622c11 82Responsible Disclosure, Reporting Security Issues
84995ea2 83-------------------------------------------------
70b7fba9 84W: https://wiki.qemu.org/SecurityProcess
62622c11 85M: Michael S. Tsirkin <mst@redhat.com>
62622c11
MT
86L: secalert@redhat.com
87
936c2230
LV
88Trivial patches
89---------------
90Trivial patches
91M: Michael Tokarev <mjt@tls.msk.ru>
92M: Laurent Vivier <laurent@vivier.eu>
93S: Maintained
94L: qemu-trivial@nongnu.org
95K: ^Subject:.*(?i)trivial
4db546d3 96F: docs/devel/trivial-patches.rst
936c2230 97T: git git://git.corpit.ru/qemu.git trivial-patches
e18a8b34 98T: git https://github.com/vivier/qemu.git trivial-patches
936c2230 99
daf14ce3
CH
100Architecture support
101--------------------
6347e1f1 102S390 general architecture support
cdb509a4 103M: Thomas Huth <thuth@redhat.com>
daf14ce3 104S: Supported
812b31d3 105F: configs/devices/s390x-softmmu/default.mak
daf14ce3
CH
106F: gdb-xml/s390*.xml
107F: hw/char/sclp*.[hc]
108F: hw/char/terminal3270.c
109F: hw/intc/s390_flic.c
110F: hw/intc/s390_flic_kvm.c
111F: hw/s390x/
2fe2942c 112F: hw/vfio/ap.c
daf14ce3
CH
113F: hw/vfio/ccw.c
114F: hw/watchdog/wdt_diag288.c
115F: include/hw/s390x/
116F: include/hw/watchdog/wdt_diag288.h
117F: pc-bios/s390-ccw/
118F: pc-bios/s390-ccw.img
119F: target/s390x/
f58f084e
CH
120F: docs/system/target-s390x.rst
121F: docs/system/s390x/
a1c993c3 122F: tests/migration/s390x/
daf14ce3 123K: ^Subject:.*(?i)s390x?
daf14ce3
CH
124L: qemu-s390x@nongnu.org
125
e955acd9 126MIPS general architecture support
8823ef13 127M: Philippe Mathieu-Daudé <philmd@linaro.org>
e955acd9
PMD
128R: Jiaxun Yang <jiaxun.yang@flygoat.com>
129S: Odd Fixes
130K: ^Subject:.*(?i)mips
6b1ec8a9
TH
131F: docs/system/target-mips.rst
132F: configs/targets/mips*
e955acd9 133
84995ea2
MA
134Guest CPU cores (TCG)
135---------------------
6347e1f1 136Overall TCG CPUs
336f744e 137M: Richard Henderson <richard.henderson@linaro.org>
2185fd67 138R: Paolo Bonzini <pbonzini@redhat.com>
2b1641d0 139S: Maintained
c7f419f5 140F: softmmu/cpus.c
2609ec28 141F: softmmu/watchpoint.c
adf1cfbd 142F: cpus-common.c
6670d4d0 143F: page-vary.c
44b99a6d 144F: page-vary-common.c
c6a88dda 145F: accel/tcg/
9681ad3e 146F: accel/stubs/tcg-stub.c
084cfca1
RH
147F: util/cacheinfo.c
148F: util/cacheflush.c
55fd1892 149F: scripts/decodetree.py
3fdbf5d6 150F: docs/devel/decodetree.rst
4db546d3 151F: docs/devel/tcg*
2b1641d0
PB
152F: include/exec/cpu*.h
153F: include/exec/exec-all.h
548c9609 154F: include/exec/tb-flush.h
4692a86f 155F: include/exec/target_long.h
486bbe5f 156F: include/exec/helper*.h
460423d3 157F: include/sysemu/cpus.h
14a48c1d 158F: include/sysemu/tcg.h
78271684 159F: include/hw/core/tcg-cpu-ops.h
486bbe5f 160
1badb586
PM
161FPU emulation
162M: Aurelien Jarno <aurelien@aurel32.net>
163M: Peter Maydell <peter.maydell@linaro.org>
0636e4d8
AB
164M: Alex Bennée <alex.bennee@linaro.org>
165S: Maintained
1badb586
PM
166F: fpu/
167F: include/fpu/
0636e4d8 168F: tests/fp/
1badb586 169
6347e1f1 170Alpha TCG CPUs
336f744e 171M: Richard Henderson <richard.henderson@linaro.org>
8d6df264 172S: Maintained
fcf5ef2a 173F: target/alpha/
c0bd0b50 174F: tests/tcg/alpha/
c17652ee 175F: disas/alpha.c
b6f97c14 176
6347e1f1 177ARM TCG CPUs
1ce9ce6a 178M: Peter Maydell <peter.maydell@linaro.org>
b4f2bd1c 179L: qemu-arm@nongnu.org
fd5d5c56 180S: Maintained
fcf5ef2a 181F: target/arm/
f0984d40 182F: target/arm/tcg/
c348722c 183F: tests/tcg/arm/
29e0436e 184F: tests/tcg/aarch64/
c32c3d68 185F: tests/qtest/arm-cpu-features.c
8d8b636d
PB
186F: hw/arm/
187F: hw/cpu/a*mpcore.c
f7e242d6 188F: include/hw/cpu/a*mpcore.h
c11a8e89 189F: docs/system/target-arm.rst
6e84a914 190F: docs/system/arm/cpu-features.rst
fd5d5c56 191
49154ea0
EA
192ARM SMMU
193M: Eric Auger <eric.auger@redhat.com>
194L: qemu-arm@nongnu.org
195S: Maintained
196F: hw/arm/smmu*
197F: include/hw/arm/smmu*
bbbd9b6e 198F: tests/avocado/smmu.py
49154ea0 199
c8c0d267
MR
200AVR TCG CPUs
201M: Michael Rolnik <mrolnik@gmail.com>
c8c0d267 202S: Maintained
0abd386d 203F: docs/system/target-avr.rst
12b35405 204F: gdb-xml/avr-cpu.xml
c8c0d267 205F: target/avr/
bbbd9b6e 206F: tests/avocado/machine_avr6.py
c8c0d267 207
6347e1f1 208CRIS TCG CPUs
fd5d5c56
AL
209M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
210S: Maintained
fcf5ef2a 211F: target/cris/
8d8b636d 212F: hw/cris/
c9b90090 213F: include/hw/cris/
c0bd0b50 214F: tests/tcg/cris/
c17652ee 215F: disas/cris.c
fd5d5c56 216
5f508bc2
TS
217Hexagon TCG CPUs
218M: Taylor Simpson <tsimpson@quicinc.com>
219S: Supported
220F: target/hexagon/
647357d6
ADF
221X: target/hexagon/idef-parser/
222X: target/hexagon/gen_idef_parser_funcs.py
5f508bc2
TS
223F: linux-user/hexagon/
224F: tests/tcg/hexagon/
225F: disas/hexagon.c
812b31d3 226F: configs/targets/hexagon-linux-user/default.mak
afbdf0a4 227F: docker/dockerfiles/debian-hexagon-cross.docker
ab930e80 228F: gdb-xml/hexagon*.xml
5f508bc2 229
647357d6
ADF
230Hexagon idef-parser
231M: Alessandro Di Federico <ale@rev.ng>
232M: Anton Johansson <anjo@rev.ng>
233S: Supported
234F: target/hexagon/idef-parser/
235F: target/hexagon/gen_idef_parser_funcs.py
236
6347e1f1 237HPPA (PA-RISC) TCG CPUs
336f744e 238M: Richard Henderson <richard.henderson@linaro.org>
61766fe9
RH
239S: Maintained
240F: target/hppa/
241F: disas/hppa.c
242
64baad62
SG
243LoongArch TCG CPUs
244M: Song Gao <gaosong@loongson.cn>
245M: Xiaojuan Yang <yangxiaojuan@loongson.cn>
246S: Maintained
247F: target/loongarch/
c4293333 248F: tests/tcg/loongarch64/
7318c622 249F: tests/avocado/machine_loongarch.py
64baad62 250
6347e1f1 251M68K TCG CPUs
595a926d
LV
252M: Laurent Vivier <laurent@vivier.eu>
253S: Maintained
fcf5ef2a 254F: target/m68k/
e9a56114 255F: disas/m68k.c
fd5d5c56 256
6347e1f1 257MicroBlaze TCG CPUs
fd5d5c56
AL
258M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
259S: Maintained
fcf5ef2a 260F: target/microblaze/
8d8b636d 261F: hw/microblaze/
c17652ee 262F: disas/microblaze.c
b58a4e68 263F: tests/docker/dockerfiles/debian-microblaze-cross.d/build-toolchain.sh
fd5d5c56 264
6347e1f1 265MIPS TCG CPUs
8823ef13 266M: Philippe Mathieu-Daudé <philmd@linaro.org>
099d510b 267R: Aurelien Jarno <aurelien@aurel32.net>
15d983de 268R: Jiaxun Yang <jiaxun.yang@flygoat.com>
97d89746 269R: Aleksandar Rikalo <aleksandar.rikalo@syrmia.com>
cf960317 270S: Odd Fixes
fcf5ef2a 271F: target/mips/
30dd5ff8 272F: disas/*mips.c
1bf84a1e 273F: docs/system/cpu-models-mips.rst.inc
c0bd0b50 274F: tests/tcg/mips/
fd5d5c56 275
6347e1f1 276NiosII TCG CPUs
9ba1caf5
TH
277R: Chris Wulff <crwulff@gmail.com>
278R: Marek Vasut <marex@denx.de>
279S: Orphan
e671711c
MV
280F: target/nios2/
281F: hw/nios2/
282F: disas/nios2.c
812b31d3 283F: configs/devices/nios2-softmmu/default.mak
2eb4461a 284F: tests/docker/dockerfiles/debian-nios2-cross.d/build-toolchain.sh
51d11acf 285F: tests/tcg/nios2/
e671711c 286
6347e1f1 287OpenRISC TCG CPUs
1d7cf18d
SH
288M: Stafford Horne <shorne@gmail.com>
289S: Odd Fixes
4db546d3 290F: docs/system/openrisc/cpu-features.rst
fcf5ef2a 291F: target/openrisc/
945dad6d 292F: hw/openrisc/
c0bd0b50 293F: tests/tcg/openrisc/
945dad6d 294
6347e1f1 295PowerPC TCG CPUs
14fe3222 296M: Daniel Henrique Barboza <danielhb413@gmail.com>
b0877575 297R: Cédric Le Goater <clg@kaod.org>
14fe3222
DG
298R: David Gibson <david@gibson.dropbear.id.au>
299R: Greg Kurz <groug@kaod.org>
a6c98685 300L: qemu-ppc@nongnu.org
2e93a90f 301S: Odd Fixes
fcf5ef2a 302F: target/ppc/
7ddb120d
DG
303F: hw/ppc/ppc.c
304F: hw/ppc/ppc_booke.c
305F: include/hw/ppc/ppc.h
fd5d5c56 306
6347e1f1 307RISC-V TCG CPUs
c1677bcc 308M: Palmer Dabbelt <palmer@dabbelt.com>
ab2c9128
AF
309M: Alistair Francis <alistair.francis@wdc.com>
310M: Bin Meng <bin.meng@windriver.com>
a3ae8d46
AF
311R: Weiwei Li <liweiwei@iscas.ac.cn>
312R: Daniel Henrique Barboza <dbarboza@ventanamicro.com>
313R: Liu Zhiwei <zhiwei_liu@linux.alibaba.com>
a094b354 314L: qemu-riscv@nongnu.org
7b91ae7d 315S: Supported
4dc62b15
MC
316F: target/riscv/
317F: hw/riscv/
318F: include/hw/riscv/
f936eac8 319F: linux-user/host/riscv32/
511f3138 320F: linux-user/host/riscv64/
4dc62b15 321
179d9e29
CM
322RISC-V XThead* extensions
323M: Christoph Muellner <christoph.muellner@vrull.eu>
324M: LIU Zhiwei <zhiwei_liu@linux.alibaba.com>
325L: qemu-riscv@nongnu.org
326S: Supported
327F: target/riscv/insn_trans/trans_xthead.c.inc
328F: target/riscv/xthead*.decode
329
34888f01
PT
330RISC-V XVentanaCondOps extension
331M: Philipp Tomsich <philipp.tomsich@vrull.eu>
332L: qemu-riscv@nongnu.org
4f249314 333S: Maintained
34888f01
PT
334F: target/riscv/XVentanaCondOps.decode
335F: target/riscv/insn_trans/trans_xventanacondops.c.inc
336
a4f34ecc 337RENESAS RX CPUs
b2744da9
PMD
338R: Yoshinori Sato <ysato@users.sourceforge.jp>
339S: Orphan
a4f34ecc
YS
340F: target/rx/
341
6347e1f1 342S390 TCG CPUs
336f744e 343M: Richard Henderson <richard.henderson@linaro.org>
ced01bb7 344M: David Hildenbrand <david@redhat.com>
9d711f19 345R: Ilya Leoshkevich <iii@linux.ibm.com>
fd5d5c56 346S: Maintained
fcf5ef2a 347F: target/s390x/
c9274b6b 348F: target/s390x/tcg
8d8b636d 349F: hw/s390x/
276ba120 350F: tests/tcg/s390x/
146bd283 351L: qemu-s390x@nongnu.org
fd5d5c56 352
6347e1f1 353SH4 TCG CPUs
2d53d0c7
PMD
354R: Yoshinori Sato <ysato@users.sourceforge.jp>
355S: Orphan
fcf5ef2a 356F: target/sh4/
8d8b636d 357F: hw/sh4/
c17652ee 358F: disas/sh4.c
8a90f900 359F: include/hw/sh4/
fd5d5c56 360
6347e1f1 361SPARC TCG CPUs
f2416d3a 362M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
2c742bf7 363M: Artyom Tarasenko <atar4qemu@gmail.com>
fd5d5c56 364S: Maintained
fcf5ef2a 365F: target/sparc/
8d8b636d
PB
366F: hw/sparc/
367F: hw/sparc64/
84dbe974 368F: include/hw/sparc/sparc64.h
c17652ee 369F: disas/sparc.c
fd5d5c56 370
6347e1f1 371X86 TCG CPUs
d46d72fd 372M: Paolo Bonzini <pbonzini@redhat.com>
336f744e 373M: Richard Henderson <richard.henderson@linaro.org>
24c4cd13 374M: Eduardo Habkost <eduardo@habkost.net>
b203a4ba 375S: Maintained
f5cc5a5c 376F: target/i386/tcg/
4132431f 377F: tests/tcg/i386/
3a082ec0 378F: tests/tcg/x86_64/
8d8b636d 379F: hw/i386/
4db546d3 380F: docs/system/i386/cpu.rst
38dec0ef 381F: docs/system/cpu-models-x86*
f953c100 382T: git https://gitlab.com/ehabkost/qemu.git x86-next
fd5d5c56 383
6347e1f1 384Xtensa TCG CPUs
16e7caae 385M: Max Filippov <jcmvbkbc@gmail.com>
b8105d21 386W: http://wiki.osll.ru/doku.php?id=etc:users:jcmvbkbc:qemu-target-xtensa
16e7caae 387S: Maintained
fcf5ef2a 388F: target/xtensa/
8d8b636d 389F: hw/xtensa/
c0bd0b50 390F: tests/tcg/xtensa/
51139fb3 391F: tests/tcg/xtensaeb/
5a6539e6 392F: disas/xtensa.c
895e4897 393F: include/hw/xtensa/xtensa-isa.h
812b31d3 394F: configs/devices/xtensa*/default.mak
16e7caae 395
6347e1f1 396TriCore TCG CPUs
48e06fe0
BK
397M: Bastian Koppelmann <kbastian@mail.uni-paderborn.de>
398S: Maintained
fcf5ef2a 399F: target/tricore/
48e06fe0 400F: hw/tricore/
d46d14e6 401F: include/hw/tricore/
be78e799 402F: tests/tcg/tricore/
48e06fe0 403
dd28bebd
AB
404Multiarch Linux User Tests
405M: Alex Bennée <alex.bennee@linaro.org>
00a25291 406S: Maintained
dd28bebd
AB
407F: tests/tcg/multiarch/
408
84995ea2
MA
409Guest CPU Cores (KVM)
410---------------------
6347e1f1 411Overall KVM CPUs
c6d559d9 412M: Paolo Bonzini <pbonzini@redhat.com>
fd5d5c56
AL
413L: kvm@vger.kernel.org
414S: Supported
a6bb42f2 415F: */*/kvm*
1962cb20 416F: accel/kvm/
9681ad3e
TH
417F: accel/stubs/kvm-stub.c
418F: include/hw/kvm/
a95e9a48 419F: include/sysemu/kvm*.h
9681ad3e 420F: scripts/kvm/kvm_flightrecorder
fd5d5c56 421
6347e1f1 422ARM KVM CPUs
ed4659d1 423M: Peter Maydell <peter.maydell@linaro.org>
b4f2bd1c 424L: qemu-arm@nongnu.org
ed4659d1 425S: Maintained
fcf5ef2a 426F: target/arm/kvm.c
ed4659d1 427
6347e1f1 428MIPS KVM CPUs
dab1e1e1 429M: Huacai Chen <chenhuacai@kernel.org>
134f7f7d 430S: Odd Fixes
85d8da3f
PMD
431F: target/mips/kvm*
432F: target/mips/sysemu/
a31896c4 433
6347e1f1 434PPC KVM CPUs
14fe3222 435M: Daniel Henrique Barboza <danielhb413@gmail.com>
b0877575 436R: Cédric Le Goater <clg@kaod.org>
14fe3222
DG
437R: David Gibson <david@gibson.dropbear.id.au>
438R: Greg Kurz <groug@kaod.org>
2e93a90f 439S: Odd Fixes
fcf5ef2a 440F: target/ppc/kvm.c
fd5d5c56 441
6347e1f1 442S390 KVM CPUs
7c8e2647 443M: Halil Pasic <pasic@linux.ibm.com>
2c092950 444M: Christian Borntraeger <borntraeger@linux.ibm.com>
0922e8c0 445S: Supported
67043607 446F: target/s390x/kvm/
fcf5ef2a 447F: target/s390x/machine.c
74b4c74d 448F: target/s390x/sigp.c
c3347ed0
JF
449F: hw/s390x/pv.c
450F: include/hw/s390x/pv.h
c5bfb202 451F: gdb-xml/s390*.xml
e18a8b34 452T: git https://github.com/borntraeger/qemu.git s390-next
146bd283 453L: qemu-s390x@nongnu.org
fd5d5c56 454
6347e1f1 455X86 KVM CPUs
d46d72fd 456M: Paolo Bonzini <pbonzini@redhat.com>
fd5d5c56
AL
457M: Marcelo Tosatti <mtosatti@redhat.com>
458L: kvm@vger.kernel.org
459S: Supported
96a46def 460F: docs/system/i386/amd-memory-encryption.rst
a821186e 461F: docs/system/i386/sgx.rst
a9dc68d9 462F: target/i386/kvm/
8c9e7f8c 463F: target/i386/sev*
9681ad3e 464F: scripts/kvm/vmxcap
fd5d5c56 465
438bec49
DW
466Xen emulation on X86 KVM CPUs
467M: David Woodhouse <dwmw2@infradead.org>
468M: Paul Durrant <paul@xen.org>
469S: Supported
470F: include/sysemu/kvm_xen.h
471F: target/i386/kvm/xen*
472F: hw/i386/kvm/xen*
473F: tests/avocado/xen_guest.py
474
79ac3915
PMD
475Guest CPU Cores (other accelerators)
476------------------------------------
477Overall
336f744e 478M: Richard Henderson <richard.henderson@linaro.org>
79ac3915
PMD
479R: Paolo Bonzini <pbonzini@redhat.com>
480S: Maintained
940e43aa 481F: include/qemu/accel.h
75e5519a 482F: include/sysemu/accel-*.h
fb6916dd 483F: include/hw/core/accel-cpu.h
b86f59c7 484F: accel/accel-*.c
79ac3915
PMD
485F: accel/Makefile.objs
486F: accel/stubs/Makefile.objs
487
a1477da3
AG
488Apple Silicon HVF CPUs
489M: Alexander Graf <agraf@csgraf.de>
490S: Maintained
491F: target/arm/hvf/
492
674fc21f 493X86 HVF CPUs
de6b528b 494M: Cameron Esfahani <dirty@apple.com>
674fc21f 495M: Roman Bolshakov <r.bolshakov@yadro.com>
de6b528b 496W: https://wiki.qemu.org/Features/HVF
674fc21f 497S: Maintained
674fc21f 498F: target/i386/hvf/
d57bc3c1
AG
499
500HVF
501M: Cameron Esfahani <dirty@apple.com>
502M: Roman Bolshakov <r.bolshakov@yadro.com>
503W: https://wiki.qemu.org/Features/HVF
504S: Maintained
505F: accel/hvf/
674fc21f 506F: include/sysemu/hvf.h
d57bc3c1 507F: include/sysemu/hvf_int.h
674fc21f 508
c220cdec
SM
509WHPX CPUs
510M: Sunil Muthuswamy <sunilmut@microsoft.com>
511S: Supported
1fc33bb9 512F: target/i386/whpx/
c220cdec
SM
513F: include/sysemu/whpx.h
514
84995ea2
MA
515Guest CPU Cores (Xen)
516---------------------
6347e1f1 517X86 Xen CPUs
3623c57e
SS
518M: Stefano Stabellini <sstabellini@kernel.org>
519M: Anthony Perard <anthony.perard@citrix.com>
784e9727 520M: Paul Durrant <paul@xen.org>
6d06220a 521L: xen-devel@lists.xenproject.org
8a6b0cd7 522S: Supported
8a6b0cd7 523F: */xen*
da278d58 524F: accel/xen/*
b827891d 525F: hw/9pfs/xen-9p*
c92451c2
PB
526F: hw/char/xen_console.c
527F: hw/display/xenfb.c
528F: hw/net/xen_nic.c
758af9cf 529F: hw/usb/xen-usb.c
1a72d9ae 530F: hw/block/xen*
4ea7d1a7 531F: hw/block/dataplane/xen*
c92451c2
PB
532F: hw/xen/
533F: hw/xenpv/
9027ac50 534F: hw/i386/xen/
1401897c 535F: hw/pci-host/xen_igd_pt.c
fcab2b46 536F: include/hw/block/dataplane/xen*
c92451c2 537F: include/hw/xen/
da278d58 538F: include/sysemu/xen.h
9027ac50 539F: include/sysemu/xen-mapcache.h
71f364b7 540F: stubs/xen-hw-stub.c
8a6b0cd7 541
6c94b952
CX
542Guest CPU Cores (HAXM)
543---------------------
544X86 HAXM CPUs
73741fda 545S: Orphan
f7091f5f 546F: accel/stubs/hax-stub.c
6c94b952 547F: include/sysemu/hax.h
7fdef0d4 548F: target/i386/hax/
6c94b952 549
39becfce
RZ
550Guest CPU Cores (NVMM)
551----------------------
552NetBSD Virtual Machine Monitor (NVMM) CPU support
39becfce
RZ
553M: Reinoud Zandijk <reinoud@netbsd.org>
554S: Maintained
555F: include/sysemu/nvmm.h
556F: target/i386/nvmm/
557
84995ea2
MA
558Hosts
559-----
1bdd6874 560LINUX
f5fecb49
PMD
561M: Michael S. Tsirkin <mst@redhat.com>
562M: Cornelia Huck <cohuck@redhat.com>
563M: Paolo Bonzini <pbonzini@redhat.com>
1bdd6874 564S: Maintained
1bdd6874 565F: linux-headers/
f5fecb49 566F: scripts/update-linux-headers.sh
1bdd6874
SW
567
568POSIX
f3f0204d 569M: Paolo Bonzini <pbonzini@redhat.com>
1bdd6874 570S: Maintained
f3f0204d
PMD
571F: os-posix.c
572F: include/sysemu/os-posix.h
573F: util/*posix*.c
574F: include/qemu/*posix*.h
1bdd6874 575
3c2bdbc1 576NETBSD
39becfce
RZ
577M: Reinoud Zandijk <reinoud@netbsd.org>
578M: Ryo ONODERA <ryoon@netbsd.org>
3c2bdbc1 579S: Maintained
1b61270b 580K: ^Subject:.*(?i)NetBSD
3c2bdbc1 581
0a773d55 582OPENBSD
0a773d55
BS
583M: Brad Smith <brad@comstyle.com>
584S: Maintained
585K: ^Subject:.*(?i)OpenBSD
586
1bdd6874 587W32, W64
1bdd6874
SW
588M: Stefan Weil <sw@weilnetz.de>
589S: Maintained
590F: *win32*
03972660
TH
591F: */*win32*
592F: include/*/*win32*
593X: qga/*win32*
885bdc95 594F: qemu.nsi
48fad83f 595F: scripts/nsis.py
1bdd6874 596
c82b7ef1 597Darwin (macOS, iOS)
8823ef13 598M: Philippe Mathieu-Daudé <philmd@linaro.org>
c82b7ef1
PMD
599S: Odd Fixes
600F: .gitlab-ci.d/cirrus/macos-*
601F: */*.m
48fad83f 602F: scripts/entitlement.sh
c82b7ef1 603
b250d04a 604Alpha Machines
84995ea2 605--------------
336f744e 606M: Richard Henderson <richard.henderson@linaro.org>
b250d04a
PMD
607S: Maintained
608F: hw/alpha/
7bea0dd4 609F: hw/isa/smc37c669-superio.c
8d8a8ab5 610F: tests/tcg/alpha/system/
b250d04a 611
fd5d5c56
AL
612ARM Machines
613------------
84291fe7 614Allwinner-a10
85b4d5da 615M: Beniamino Galvani <b.galvani@gmail.com>
a00d7f20 616M: Peter Maydell <peter.maydell@linaro.org>
632dfea3 617R: Strahinja Jankovic <strahinja.p.jankovic@gmail.com>
b4f2bd1c 618L: qemu-arm@nongnu.org
a00d7f20 619S: Odd Fixes
85b4d5da
BG
620F: hw/*/allwinner*
621F: include/hw/*/allwinner*
84291fe7 622F: hw/arm/cubieboard.c
d4a7c362 623F: docs/system/arm/cubieboard.rst
632dfea3 624F: hw/misc/axp209.c
84291fe7 625
740dafc0
NL
626Allwinner-h3
627M: Niek Linnenbank <nieklinnenbank@gmail.com>
628L: qemu-arm@nongnu.org
629S: Maintained
630F: hw/*/allwinner-h3*
631F: include/hw/*/allwinner-h3*
b0c96666 632F: hw/arm/orangepi.c
c67d732c 633F: docs/system/arm/orangepi.rst
740dafc0 634
e5a6a6e6 635ARM PrimeCell and CMSDK devices
06271000 636M: Peter Maydell <peter.maydell@linaro.org>
b4f2bd1c 637L: qemu-arm@nongnu.org
06271000
PB
638S: Maintained
639F: hw/char/pl011.c
c6427ff7 640F: include/hw/char/pl011.h
06271000
PB
641F: hw/display/pl110*
642F: hw/dma/pl080.c
aa74e355 643F: include/hw/dma/pl080.h
06271000
PB
644F: hw/dma/pl330.c
645F: hw/gpio/pl061.c
646F: hw/input/pl050.c
647F: hw/intc/pl190.c
648F: hw/sd/pl181.c
1d52866f
PM
649F: hw/ssi/pl022.c
650F: include/hw/ssi/pl022.h
877c181c
PMD
651F: hw/rtc/pl031.c
652F: include/hw/rtc/pl031.h
06271000 653F: include/hw/arm/primecell.h
e5a6a6e6
PM
654F: hw/timer/cmsdk-apb-timer.c
655F: include/hw/timer/cmsdk-apb-timer.h
30858daf 656F: tests/qtest/cmsdk-apb-timer-test.c
4f4c6206
PM
657F: hw/timer/cmsdk-apb-dualtimer.c
658F: include/hw/timer/cmsdk-apb-dualtimer.h
9bc064b5 659F: tests/qtest/cmsdk-apb-dualtimer-test.c
e5a6a6e6
PM
660F: hw/char/cmsdk-apb-uart.c
661F: include/hw/char/cmsdk-apb-uart.h
050c2ea0
PM
662F: hw/watchdog/cmsdk-apb-watchdog.c
663F: include/hw/watchdog/cmsdk-apb-watchdog.h
9cf5eb29 664F: tests/qtest/cmsdk-apb-watchdog-test.c
0d4a7551
PM
665F: hw/misc/tz-ppc.c
666F: include/hw/misc/tz-ppc.h
344f4b15
PM
667F: hw/misc/tz-mpc.c
668F: include/hw/misc/tz-mpc.h
211e701d
PM
669F: hw/misc/tz-msc.c
670F: include/hw/misc/tz-msc.h
06271000
PB
671
672ARM cores
673M: Peter Maydell <peter.maydell@linaro.org>
b4f2bd1c 674L: qemu-arm@nongnu.org
06271000
PB
675S: Maintained
676F: hw/intc/arm*
677F: hw/intc/gic_internal.h
678F: hw/misc/a9scu.c
679F: hw/misc/arm11scu.c
b7f30114 680F: hw/misc/arm_l2x0.c
2f9db77e 681F: hw/misc/armv7m_ras.c
06271000 682F: hw/timer/a9gtimer*
c6427ff7
PMD
683F: hw/timer/arm*
684F: include/hw/arm/arm*.h
06271000
PB
685F: include/hw/intc/arm*
686F: include/hw/misc/a9scu.h
687F: include/hw/misc/arm11scu.h
688F: include/hw/timer/a9gtimer.h
689F: include/hw/timer/arm_mptimer.h
c6427ff7 690F: include/hw/timer/armv7m_systick.h
2f9db77e 691F: include/hw/misc/armv7m_ras.h
1e8a1fae 692F: tests/qtest/test-arm-mptimer.c
06271000 693
fc63dcff 694Exynos
f44c5c67 695M: Igor Mitsyanko <i.mitsyanko@gmail.com>
a00d7f20 696M: Peter Maydell <peter.maydell@linaro.org>
b4f2bd1c 697L: qemu-arm@nongnu.org
a00d7f20 698S: Odd Fixes
8d8b636d 699F: hw/*/exynos*
78cb12a9 700F: include/hw/*/exynos*
fc63dcff 701
766fd09f 702Calxeda Highbank
9ef137ca 703M: Rob Herring <robh@kernel.org>
a00d7f20 704M: Peter Maydell <peter.maydell@linaro.org>
b4f2bd1c 705L: qemu-arm@nongnu.org
a00d7f20 706S: Odd Fixes
8d8b636d
PB
707F: hw/arm/highbank.c
708F: hw/net/xgmac.c
c90df7ce 709F: docs/system/arm/highbank.rst
766fd09f 710
9082f121
AP
711Canon DIGIC
712M: Antony Pavlov <antonynpavlov@gmail.com>
a00d7f20 713M: Peter Maydell <peter.maydell@linaro.org>
b4f2bd1c 714L: qemu-arm@nongnu.org
a00d7f20 715S: Odd Fixes
9082f121
AP
716F: include/hw/arm/digic.h
717F: hw/*/digic*
7ad5f2d1 718F: include/hw/*/digic*
bbbd9b6e 719F: tests/avocado/machine_arm_canona1100.py
2d21dd17 720F: docs/system/arm/digic.rst
9082f121 721
9c8fdcec
AP
722Goldfish RTC
723M: Anup Patel <anup.patel@wdc.com>
724M: Alistair Francis <Alistair.Francis@wdc.com>
725L: qemu-riscv@nongnu.org
726S: Maintained
727F: hw/rtc/goldfish_rtc.c
728F: include/hw/rtc/goldfish_rtc.h
729
fd5d5c56 730Gumstix
a00d7f20 731M: Peter Maydell <peter.maydell@linaro.org>
8823ef13 732R: Philippe Mathieu-Daudé <philmd@linaro.org>
b4f2bd1c 733L: qemu-arm@nongnu.org
1f7161d2 734S: Odd Fixes
8d8b636d 735F: hw/arm/gumstix.c
bb309000 736F: docs/system/arm/gumstix.rst
fd5d5c56 737
123a069a
TH
738i.MX25 PDK
739M: Peter Maydell <peter.maydell@linaro.org>
740R: Jean-Christophe Dubois <jcd@tribudubois.net>
741L: qemu-arm@nongnu.org
742S: Odd Fixes
743F: hw/arm/fsl-imx25.c
744F: hw/arm/imx25_pdk.c
745F: hw/misc/imx25_ccm.c
37f95959 746F: hw/watchdog/wdt_imx2.c
123a069a
TH
747F: include/hw/arm/fsl-imx25.h
748F: include/hw/misc/imx25_ccm.h
37f95959 749F: include/hw/watchdog/wdt_imx2.h
b1b3e3e3 750F: docs/system/arm/imx25-pdk.rst
123a069a 751
95a5db3a 752i.MX31 (kzm)
a00d7f20 753M: Peter Maydell <peter.maydell@linaro.org>
b4f2bd1c 754L: qemu-arm@nongnu.org
95a5db3a 755S: Odd Fixes
8d8b636d 756F: hw/arm/kzm.c
95a5db3a
TH
757F: hw/*/imx_*
758F: hw/*/*imx31*
759F: include/hw/*/imx_*
760F: include/hw/*/*imx31*
fa6c9394 761F: docs/system/arm/kzm.rst
0325559d 762
fd5d5c56 763Integrator CP
1ce9ce6a 764M: Peter Maydell <peter.maydell@linaro.org>
b4f2bd1c 765L: qemu-arm@nongnu.org
fd5d5c56 766S: Maintained
8d8b636d 767F: hw/arm/integratorcp.c
f7e242d6 768F: hw/misc/arm_integrator_debug.c
b7f30114 769F: include/hw/misc/arm_integrator_debug.h
bbbd9b6e 770F: tests/avocado/machine_arm_integratorcp.py
c11a8e89 771F: docs/system/arm/integratorcp.rst
fd5d5c56 772
95a5db3a
TH
773MCIMX6UL EVK / i.MX6ul
774M: Peter Maydell <peter.maydell@linaro.org>
775R: Jean-Christophe Dubois <jcd@tribudubois.net>
776L: qemu-arm@nongnu.org
777S: Odd Fixes
778F: hw/arm/mcimx6ul-evk.c
779F: hw/arm/fsl-imx6ul.c
780F: hw/misc/imx6ul_ccm.c
781F: include/hw/arm/fsl-imx6ul.h
782F: include/hw/misc/imx6ul_ccm.h
783
784MCIMX7D SABRE / i.MX7
785M: Peter Maydell <peter.maydell@linaro.org>
786R: Andrey Smirnov <andrew.smirnov@gmail.com>
787L: qemu-arm@nongnu.org
788S: Odd Fixes
789F: hw/arm/mcimx7d-sabre.c
790F: hw/arm/fsl-imx7.c
b7f30114 791F: hw/misc/imx7_*.c
95a5db3a 792F: include/hw/arm/fsl-imx7.h
b7f30114 793F: include/hw/misc/imx7_*.h
95a5db3a
TH
794F: hw/pci-host/designware.c
795F: include/hw/pci-host/designware.h
796
e5a6a6e6
PM
797MPS2
798M: Peter Maydell <peter.maydell@linaro.org>
799L: qemu-arm@nongnu.org
800S: Maintained
801F: hw/arm/mps2.c
0d4a7551
PM
802F: hw/arm/mps2-tz.c
803F: hw/misc/mps2-*.c
804F: include/hw/misc/mps2-*.h
6eee5d24
PM
805F: hw/arm/armsse.c
806F: include/hw/arm/armsse.h
c56c5760
PMD
807F: hw/misc/iotkit-secctl.c
808F: include/hw/misc/iotkit-secctl.h
75750e4d
PM
809F: hw/misc/iotkit-sysctl.c
810F: include/hw/misc/iotkit-sysctl.h
c667a25b
PM
811F: hw/misc/iotkit-sysinfo.c
812F: include/hw/misc/iotkit-sysinfo.h
4239b311
PM
813F: hw/misc/armsse-cpu-pwrctrl.c
814F: include/hw/misc/armsse-cpu-pwrctrl.h
5aeb3689
PM
815F: hw/misc/armsse-cpuid.c
816F: include/hw/misc/armsse-cpuid.h
cdf63440
PM
817F: hw/misc/armsse-mhu.c
818F: include/hw/misc/armsse-mhu.h
0d10df30
PM
819F: hw/timer/sse-counter.c
820F: include/hw/timer/sse-counter.h
0b8ceee8
PM
821F: hw/timer/sse-timer.c
822F: include/hw/timer/sse-timer.h
1eca58aa 823F: tests/qtest/sse-timer-test.c
ba7912a5 824F: docs/system/arm/mps2.rst
e5a6a6e6 825
8f69a4c1
PM
826Musca
827M: Peter Maydell <peter.maydell@linaro.org>
828L: qemu-arm@nongnu.org
829S: Maintained
830F: hw/arm/musca.c
9f8f640e 831F: docs/system/arm/musca.rst
8f69a4c1 832
fd5d5c56
AL
833Musicpal
834M: Jan Kiszka <jan.kiszka@web.de>
a00d7f20 835M: Peter Maydell <peter.maydell@linaro.org>
b4f2bd1c 836L: qemu-arm@nongnu.org
a00d7f20 837S: Odd Fixes
8d8b636d 838F: hw/arm/musicpal.c
6d81f488
PMD
839F: hw/net/mv88w8618_eth.c
840F: include/hw/net/mv88w8618_eth.h
c11a8e89 841F: docs/system/arm/musicpal.rst
fd5d5c56 842
e5a7ba87 843Nuvoton NPCM7xx
e5a7ba87 844M: Tyrone Ting <kfting@nuvoton.com>
73c793da 845M: Hao Wu <wuhaotsh@google.com>
e5a7ba87
HS
846L: qemu-arm@nongnu.org
847S: Supported
69fbfb8f
HW
848F: hw/*/npcm*
849F: include/hw/*/npcm*
850F: tests/qtest/npcm*
d1cb5eda
HS
851F: pc-bios/npcm7xx_bootrom.bin
852F: roms/vbootrom
71703116 853F: docs/system/arm/nuvoton.rst
e5a7ba87 854
fd5d5c56 855nSeries
a00d7f20 856M: Peter Maydell <peter.maydell@linaro.org>
b4f2bd1c 857L: qemu-arm@nongnu.org
a00d7f20 858S: Odd Fixes
8d8b636d 859F: hw/arm/nseries.c
8a08cc71 860F: hw/display/blizzard.c
b7f30114
TH
861F: hw/input/lm832x.c
862F: hw/input/tsc2005.c
863F: hw/misc/cbus.c
6a648a5f 864F: hw/rtc/twl92230.c
8a08cc71 865F: include/hw/display/blizzard.h
410bbee1 866F: include/hw/input/lm832x.h
a331dd02 867F: include/hw/input/tsc2xxx.h
e8fa3958 868F: include/hw/misc/cbus.h
bbbd9b6e 869F: tests/avocado/machine_arm_n8x0.py
c11a8e89 870F: docs/system/arm/nseries.rst
fd5d5c56
AL
871
872Palm
a00d7f20 873M: Peter Maydell <peter.maydell@linaro.org>
b4f2bd1c 874L: qemu-arm@nongnu.org
a00d7f20 875S: Odd Fixes
8d8b636d 876F: hw/arm/palm.c
b7f30114 877F: hw/input/tsc210x.c
a331dd02 878F: include/hw/input/tsc2xxx.h
c11a8e89 879F: docs/system/arm/palm.rst
fd5d5c56 880
95a5db3a
TH
881Raspberry Pi
882M: Peter Maydell <peter.maydell@linaro.org>
8823ef13 883R: Philippe Mathieu-Daudé <philmd@linaro.org>
95a5db3a
TH
884L: qemu-arm@nongnu.org
885S: Odd Fixes
123a069a 886F: hw/arm/raspi.c
95a5db3a
TH
887F: hw/arm/raspi_platform.h
888F: hw/*/bcm283*
889F: include/hw/arm/raspi*
890F: include/hw/*/bcm283*
d9f2ac3d 891F: docs/system/arm/raspi.rst
95a5db3a 892
fd5d5c56 893Real View
1ce9ce6a 894M: Peter Maydell <peter.maydell@linaro.org>
b4f2bd1c 895L: qemu-arm@nongnu.org
fd5d5c56 896S: Maintained
8d8b636d 897F: hw/arm/realview*
f7e242d6 898F: hw/cpu/realview_mpcore.c
5ea53049
PB
899F: hw/intc/realview_gic.c
900F: include/hw/intc/realview_gic.h
c11a8e89 901F: docs/system/arm/realview.rst
fd5d5c56 902
9b31bff0 903PXA2XX
a00d7f20 904M: Peter Maydell <peter.maydell@linaro.org>
b4f2bd1c 905L: qemu-arm@nongnu.org
a00d7f20 906S: Odd Fixes
9b31bff0 907F: hw/arm/mainstone.c
8d8b636d 908F: hw/arm/spitz.c
9b31bff0
PB
909F: hw/arm/tosa.c
910F: hw/arm/z2.c
911F: hw/*/pxa2xx*
123a069a
TH
912F: hw/display/tc6393xb.c
913F: hw/gpio/max7310.c
914F: hw/gpio/zaurus.c
f7e242d6 915F: hw/misc/mst_fpga.c
58f3e3fe
CM
916F: hw/adc/max111x.c
917F: include/hw/adc/max111x.h
ed0db866 918F: include/hw/arm/pxa.h
123a069a 919F: include/hw/arm/sharpsl.h
ee2ccc57 920F: include/hw/display/tc6393xb.h
c11a8e89 921F: docs/system/arm/xscale.rst
c9543db4 922F: docs/system/arm/mainstone.rst
fd5d5c56 923
95a5db3a
TH
924SABRELITE / i.MX6
925M: Peter Maydell <peter.maydell@linaro.org>
926R: Jean-Christophe Dubois <jcd@tribudubois.net>
927L: qemu-arm@nongnu.org
928S: Odd Fixes
4db546d3 929F: docs/system/arm/sabrelite.rst
95a5db3a
TH
930F: hw/arm/sabrelite.c
931F: hw/arm/fsl-imx6.c
b7f30114 932F: hw/misc/imx6_*.c
95a5db3a 933F: hw/ssi/imx_spi.c
0701a5ef
GR
934F: hw/usb/imx-usb-phy.c
935F: include/hw/usb/imx-usb-phy.h
95a5db3a 936F: include/hw/arm/fsl-imx6.h
b7f30114 937F: include/hw/misc/imx6_*.h
95a5db3a
TH
938F: include/hw/ssi/imx_spi.h
939
64580903 940SBSA-REF
428a3777 941M: Radoslaw Biernacki <rad@semihalf.com>
64580903 942M: Peter Maydell <peter.maydell@linaro.org>
14d5addc 943R: Leif Lindholm <quic_llindhol@quicinc.com>
96e6d25f 944R: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org>
64580903
HZ
945L: qemu-arm@nongnu.org
946S: Maintained
947F: hw/arm/sbsa-ref.c
9eeeb80a 948F: docs/system/arm/sbsa.rst
a0d201b8 949F: tests/avocado/machine_aarch64_sbsaref.py
64580903 950
671f11b2
TH
951Sharp SL-5500 (Collie) PDA
952M: Peter Maydell <peter.maydell@linaro.org>
953L: qemu-arm@nongnu.org
954S: Odd Fixes
955F: hw/arm/collie.c
956F: hw/arm/strongarm*
b76b60f5 957F: docs/system/arm/collie.rst
671f11b2 958
fd5d5c56 959Stellaris
1ce9ce6a 960M: Peter Maydell <peter.maydell@linaro.org>
b4f2bd1c 961L: qemu-arm@nongnu.org
fd5d5c56 962S: Maintained
8d8b636d 963F: hw/*/stellaris*
98fa3327 964F: include/hw/input/gamepad.h
c11a8e89 965F: docs/system/arm/stellaris.rst
fd5d5c56 966
2ac2410c
AI
967STM32VLDISCOVERY
968M: Alexandre Iooss <erdnaxe@crans.org>
969L: qemu-arm@nongnu.org
970S: Maintained
971F: hw/arm/stm32vldiscovery.c
1af060e5 972F: docs/system/arm/stm32.rst
2ac2410c 973
95a5db3a
TH
974Versatile Express
975M: Peter Maydell <peter.maydell@linaro.org>
976L: qemu-arm@nongnu.org
977S: Maintained
978F: hw/arm/vexpress.c
5a1d4244 979F: docs/system/arm/vexpress.rst
95a5db3a 980
fd5d5c56 981Versatile PB
1ce9ce6a 982M: Peter Maydell <peter.maydell@linaro.org>
b4f2bd1c 983L: qemu-arm@nongnu.org
fd5d5c56 984S: Maintained
8d8b636d 985F: hw/*/versatile*
500a64d8 986F: hw/i2c/arm_sbcon_i2c.c
f61c3fb5 987F: include/hw/i2c/arm_sbcon_i2c.h
c6427ff7 988F: hw/misc/arm_sysctl.c
c11a8e89 989F: docs/system/arm/versatile.rst
fd5d5c56 990
95a5db3a
TH
991Virt
992M: Peter Maydell <peter.maydell@linaro.org>
993L: qemu-arm@nongnu.org
994S: Maintained
995F: hw/arm/virt*
996F: include/hw/arm/virt.h
6a0b7505 997F: docs/system/arm/virt.rst
11593544 998F: tests/avocado/machine_aarch64_virt.py
95a5db3a 999
e3260506 1000Xilinx Zynq
cc0100f4 1001M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
c22e580c 1002M: Alistair Francis <alistair@alistair23.me>
a00d7f20 1003M: Peter Maydell <peter.maydell@linaro.org>
b4f2bd1c 1004L: qemu-arm@nongnu.org
e3260506 1005S: Maintained
cc0100f4 1006F: hw/*/xilinx_*
8d8b636d 1007F: hw/*/cadence_*
246f530c
CM
1008F: hw/misc/zynq_slcr.c
1009F: hw/adc/zynq-xadc.c
1010F: include/hw/misc/zynq_slcr.h
1011F: include/hw/adc/zynq-xadc.h
cc0100f4 1012X: hw/ssi/xilinx_*
e3260506 1013
ff9e157b 1014Xilinx ZynqMP and Versal
c22e580c 1015M: Alistair Francis <alistair@alistair23.me>
cc0100f4 1016M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
a00d7f20 1017M: Peter Maydell <peter.maydell@linaro.org>
b4f2bd1c 1018L: qemu-arm@nongnu.org
137805f5 1019S: Maintained
cc0100f4 1020F: hw/*/xlnx*.c
f586d5fc 1021F: include/hw/*/xlnx*.h
24d6d8bf
PMD
1022F: include/hw/ssi/xilinx_spips.h
1023F: hw/display/dpcd.c
1024F: include/hw/display/dpcd.h
ff9e157b 1025F: docs/system/arm/xlnx-versal-virt.rst
137805f5 1026
72e58848
FI
1027Xilinx Versal OSPI
1028M: Francisco Iglesias <francisco.iglesias@xilinx.com>
1029S: Maintained
1030F: hw/ssi/xlnx-versal-ospi.c
1031F: include/hw/ssi/xlnx-versal-ospi.h
1032
0f76debd
AI
1033STM32F100
1034M: Alexandre Iooss <erdnaxe@crans.org>
1035L: qemu-arm@nongnu.org
1036S: Maintained
1037F: hw/arm/stm32f100_soc.c
1038
a1f8193b
AF
1039STM32F205
1040M: Alistair Francis <alistair@alistair23.me>
a00d7f20 1041M: Peter Maydell <peter.maydell@linaro.org>
8ef350b3 1042L: qemu-arm@nongnu.org
a1f8193b
AF
1043S: Maintained
1044F: hw/arm/stm32f205_soc.c
1045F: hw/misc/stm32f2xx_syscfg.c
1046F: hw/char/stm32f2xx_usart.c
1047F: hw/timer/stm32f2xx_timer.c
1048F: hw/adc/*
1049F: hw/ssi/stm32f2xx_spi.c
0e0d345b 1050F: include/hw/*/stm32*.h
a1f8193b 1051
529fc5fd
AF
1052STM32F405
1053M: Alistair Francis <alistair@alistair23.me>
1054M: Peter Maydell <peter.maydell@linaro.org>
8ef350b3 1055L: qemu-arm@nongnu.org
529fc5fd
AF
1056S: Maintained
1057F: hw/arm/stm32f405_soc.c
1058F: hw/misc/stm32f4xx_syscfg.c
1059F: hw/misc/stm32f4xx_exti.c
1060
a1f8193b
AF
1061Netduino 2
1062M: Alistair Francis <alistair@alistair23.me>
a00d7f20 1063M: Peter Maydell <peter.maydell@linaro.org>
8ef350b3 1064L: qemu-arm@nongnu.org
a1f8193b
AF
1065S: Maintained
1066F: hw/arm/netduino2.c
1067
60d6c427
AF
1068Netduino Plus 2
1069M: Alistair Francis <alistair@alistair23.me>
1070M: Peter Maydell <peter.maydell@linaro.org>
8ef350b3 1071L: qemu-arm@nongnu.org
60d6c427
AF
1072S: Maintained
1073F: hw/arm/netduinoplus2.c
1074
ee5bffa9
FB
1075Olimex STM32 H405
1076M: Felipe Balbi <balbi@kernel.org>
1077L: qemu-arm@nongnu.org
1078S: Maintained
1079F: hw/arm/olimex-stm32-h405.c
1080
670bc4cb
SS
1081SmartFusion2
1082M: Subbaraya Sundeep <sundeep.lkml@gmail.com>
a00d7f20 1083M: Peter Maydell <peter.maydell@linaro.org>
8ef350b3 1084L: qemu-arm@nongnu.org
670bc4cb
SS
1085S: Maintained
1086F: hw/arm/msf2-soc.c
1087F: hw/misc/msf2-sysreg.c
1088F: hw/timer/mss-timer.c
1089F: hw/ssi/mss-spi.c
1090F: include/hw/arm/msf2-soc.h
1091F: include/hw/misc/msf2-sysreg.h
1092F: include/hw/timer/mss-timer.h
1093F: include/hw/ssi/mss-spi.h
1c664378
SS
1094F: hw/net/msf2-emac.c
1095F: include/hw/net/msf2-emac.h
670bc4cb
SS
1096
1097Emcraft M2S-FG484
1098M: Subbaraya Sundeep <sundeep.lkml@gmail.com>
a00d7f20 1099M: Peter Maydell <peter.maydell@linaro.org>
8ef350b3 1100L: qemu-arm@nongnu.org
670bc4cb
SS
1101S: Maintained
1102F: hw/arm/msf2-som.c
3f65df38 1103F: docs/system/arm/emcraft-sf2.rst
670bc4cb 1104
f87db1ba
JS
1105ASPEED BMCs
1106M: Cédric Le Goater <clg@kaod.org>
a00d7f20 1107M: Peter Maydell <peter.maydell@linaro.org>
f87db1ba
JS
1108R: Andrew Jeffery <andrew@aj.id.au>
1109R: Joel Stanley <joel@jms.id.au>
1110L: qemu-arm@nongnu.org
1111S: Maintained
1112F: hw/*/*aspeed*
b7f30114 1113F: hw/misc/pca9552.c
f87db1ba 1114F: include/hw/*/*aspeed*
b7f30114 1115F: include/hw/misc/pca9552*.h
f87db1ba
JS
1116F: hw/net/ftgmac100.c
1117F: include/hw/net/ftgmac100.h
de8ee7d4 1118F: docs/system/arm/aspeed.rst
e354d99a 1119F: tests/*/*aspeed*
c2f58c2f 1120F: hw/arm/fby35.c
f87db1ba 1121
c0066d1a
JS
1122NRF51
1123M: Joel Stanley <joel@jms.id.au>
a00d7f20 1124M: Peter Maydell <peter.maydell@linaro.org>
c0066d1a
JS
1125L: qemu-arm@nongnu.org
1126S: Maintained
c8de3f5f
SH
1127F: hw/*/nrf51*.c
1128F: hw/*/microbit*.c
1129F: include/hw/*/nrf51*.h
1130F: include/hw/*/microbit*.h
1e8a1fae 1131F: tests/qtest/microbit-test.c
90a76c63 1132F: docs/system/arm/nrf.rst
c0066d1a 1133
42f3ff00
MR
1134AVR Machines
1135-------------
1136
1137AVR MCUs
1138M: Michael Rolnik <mrolnik@gmail.com>
42f3ff00 1139S: Maintained
812b31d3 1140F: configs/devices/avr-softmmu/default.mak
7dd8f6fd 1141F: hw/avr/
429ca9d6
MR
1142F: include/hw/char/avr_usart.h
1143F: hw/char/avr_usart.c
8ff47bc1
MR
1144F: include/hw/timer/avr_timer16.h
1145F: hw/timer/avr_timer16.c
dc288de0
MR
1146F: include/hw/misc/avr_power.h
1147F: hw/misc/avr_power.c
42f3ff00 1148
50486d63 1149Arduino
8823ef13 1150M: Philippe Mathieu-Daudé <philmd@linaro.org>
50486d63
PMD
1151S: Maintained
1152F: hw/avr/arduino.c
1153
fd5d5c56
AL
1154CRIS Machines
1155-------------
1156Axis Dev88
1157M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
1158S: Maintained
8d8b636d 1159F: hw/cris/axis_dev88.c
6e481d57 1160F: hw/*/etraxfs_*.c
fd5d5c56 1161
e188396c
PMD
1162HP-PARISC Machines
1163------------------
18092598 1164HP B160L
336f744e 1165M: Richard Henderson <richard.henderson@linaro.org>
e188396c
PMD
1166R: Helge Deller <deller@gmx.de>
1167S: Odd Fixes
812b31d3 1168F: configs/devices/hppa-softmmu/default.mak
e188396c 1169F: hw/hppa/
11f976ad 1170F: hw/net/*i82596*
45f569a1 1171F: hw/misc/lasi.c
0db9350e 1172F: hw/pci-host/dino.c
45f569a1 1173F: include/hw/misc/lasi.h
11f976ad 1174F: include/hw/net/lasi_82596.h
0db9350e 1175F: include/hw/pci-host/dino.h
e188396c
PMD
1176F: pc-bios/hppa-firmware.img
1177
d88b51dc
XY
1178LoongArch Machines
1179------------------
1180Virt
1181M: Xiaojuan Yang <yangxiaojuan@loongson.cn>
1182M: Song Gao <gaosong@loongson.cn>
1183S: Maintained
587858ed 1184F: docs/system/loongarch/virt.rst
a8a506c3
XY
1185F: configs/targets/loongarch64-softmmu.mak
1186F: configs/devices/loongarch64-softmmu/default.mak
1187F: hw/loongarch/
1188F: include/hw/loongarch/virt.h
f6783e34
XY
1189F: include/hw/intc/loongarch_*.h
1190F: hw/intc/loongarch_*.c
0f4fcf18 1191F: include/hw/pci-host/ls7a.h
c117f68a 1192F: hw/rtc/ls7a_rtc.c
ca61e750 1193F: gdb-xml/loongarch*.xml
d88b51dc 1194
afcacd53 1195M68K Machines
fd5d5c56
AL
1196-------------
1197an5206
5baf2741
TH
1198M: Thomas Huth <huth@tuxfamily.org>
1199S: Odd Fixes
8d8b636d 1200F: hw/m68k/an5206.c
e9a56114 1201F: hw/m68k/mcf5206.c
fd5d5c56 1202
fd5d5c56 1203mcf5208
5baf2741
TH
1204M: Thomas Huth <huth@tuxfamily.org>
1205S: Odd Fixes
8d8b636d 1206F: hw/m68k/mcf5208.c
e9a56114
TH
1207F: hw/m68k/mcf_intc.c
1208F: hw/char/mcf_uart.c
1209F: hw/net/mcf_fec.c
5baf2741 1210F: include/hw/m68k/mcf*.h
fd5d5c56 1211
1810b815
TH
1212NeXTcube
1213M: Thomas Huth <huth@tuxfamily.org>
1214S: Odd Fixes
1215F: hw/m68k/next-*.c
1216F: hw/display/next-fb.c
1217F: include/hw/m68k/next-cube.h
1218
6dca62a0
LV
1219q800
1220M: Laurent Vivier <laurent@vivier.eu>
1221S: Maintained
04e7ca8d 1222F: hw/m68k/q800.c
6dca62a0 1223F: hw/misc/mac_via.c
fa2ba3b8 1224F: hw/nubus/*
8ac919a0 1225F: hw/display/macfb.c
c701ec62 1226F: hw/block/swim.c
04e7ca8d 1227F: hw/m68k/bootinfo.h
382d71af
LV
1228F: include/standard-headers/asm-m68k/bootinfo.h
1229F: include/standard-headers/asm-m68k/bootinfo-mac.h
6dca62a0 1230F: include/hw/misc/mac_via.h
fa2ba3b8 1231F: include/hw/nubus/*
8ac919a0 1232F: include/hw/display/macfb.h
c701ec62 1233F: include/hw/block/swim.h
6dca62a0 1234
e1cecdca
LV
1235virt
1236M: Laurent Vivier <laurent@vivier.eu>
1237S: Maintained
1238F: hw/m68k/virt.c
1239F: hw/char/goldfish_tty.c
1240F: hw/intc/goldfish_pic.c
1241F: hw/intc/m68k_irqc.c
1242F: hw/misc/virt_ctrl.c
1243F: include/hw/char/goldfish_tty.h
1244F: include/hw/intc/goldfish_pic.h
1245F: include/hw/intc/m68k_irqc.h
1246F: include/hw/misc/virt_ctrl.h
1247
fd5d5c56
AL
1248MicroBlaze Machines
1249-------------------
1250petalogix_s3adsp1800
1251M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
1252S: Maintained
6e481d57 1253F: hw/microblaze/petalogix_s3adsp1800_mmu.c
a734c7b5 1254F: include/hw/char/xilinx_uartlite.h
bbbd9b6e 1255F: tests/avocado/machine_microblaze.py
fd5d5c56 1256
d36e8ce7 1257petalogix_ml605
4b46ba61 1258M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
d36e8ce7 1259S: Maintained
8d8b636d 1260F: hw/microblaze/petalogix_ml605_mmu.c
d36e8ce7 1261
fd5d5c56
AL
1262MIPS Machines
1263-------------
f44d1d4e 1264Overall MIPS Machines
8823ef13 1265M: Philippe Mathieu-Daudé <philmd@linaro.org>
f44d1d4e
PMD
1266S: Odd Fixes
1267F: configs/devices/mips*/*
1268F: hw/mips/
1269F: include/hw/mips/
1270
fd5d5c56
AL
1271Jazz
1272M: Hervé Poussineau <hpoussin@reactos.org>
97d89746 1273R: Aleksandar Rikalo <aleksandar.rikalo@syrmia.com>
fd5d5c56 1274S: Maintained
5298722e 1275F: hw/mips/jazz.c
0886a785
PMD
1276F: hw/display/jazz_led.c
1277F: hw/dma/rc4030.c
fd5d5c56
AL
1278
1279Malta
8823ef13 1280M: Philippe Mathieu-Daudé <philmd@linaro.org>
485cd982 1281R: Aurelien Jarno <aurelien@aurel32.net>
ca263c0f 1282S: Odd Fixes
60041378
AM
1283F: hw/isa/piix4.c
1284F: hw/acpi/piix4.c
5298722e 1285F: hw/mips/malta.c
a7db759e 1286F: hw/pci-host/gt64120.c
60041378 1287F: include/hw/southbridge/piix.h
bbbd9b6e
WR
1288F: tests/avocado/linux_ssh_mips_malta.py
1289F: tests/avocado/machine_mips_malta.py
fd5d5c56
AL
1290
1291Mipssim
97d89746 1292R: Aleksandar Rikalo <aleksandar.rikalo@syrmia.com>
4251dfb0 1293S: Orphan
5298722e 1294F: hw/mips/mipssim.c
659f42d8 1295F: hw/net/mipsnet.c
fd5d5c56 1296
c3a09ff6 1297Fuloong 2E
dab1e1e1 1298M: Huacai Chen <chenhuacai@kernel.org>
8823ef13 1299M: Philippe Mathieu-Daudé <philmd@linaro.org>
97eeef8a 1300R: Jiaxun Yang <jiaxun.yang@flygoat.com>
659f42d8 1301S: Odd Fixes
c3a09ff6 1302F: hw/mips/fuloong2e.c
0170a3fc 1303F: hw/isa/vt82c686.c
5021bfa5 1304F: hw/pci-host/bonito.c
6f2bcd5f 1305F: hw/usb/vt82c686-uhci-pci.c
0170a3fc 1306F: include/hw/isa/vt82c686.h
aad07969 1307F: include/hw/pci-host/bonito.h
bbbd9b6e 1308F: tests/avocado/machine_mips_fuloong2e.py
659f42d8 1309
53fb8bfb 1310Loongson-3 virtual platforms
dab1e1e1 1311M: Huacai Chen <chenhuacai@kernel.org>
2c5b1a7d
HC
1312R: Jiaxun Yang <jiaxun.yang@flygoat.com>
1313S: Maintained
2c5b1a7d 1314F: hw/intc/loongson_liointc.c
d2245e2d
HC
1315F: hw/mips/loongson3_bootp.c
1316F: hw/mips/loongson3_bootp.h
c76b409f 1317F: hw/mips/loongson3_virt.c
bbbd9b6e 1318F: tests/avocado/machine_mips_loongson3v.py
2c5b1a7d 1319
659f42d8 1320Boston
4ba98e96 1321M: Paul Burton <paulburton@kernel.org>
97d89746 1322R: Aleksandar Rikalo <aleksandar.rikalo@syrmia.com>
4ba98e96 1323S: Odd Fixes
659f42d8
YK
1324F: hw/core/loader-fit.c
1325F: hw/mips/boston.c
1326F: hw/pci-host/xilinx-pcie.c
5021bfa5 1327F: include/hw/pci-host/xilinx-pcie.h
659f42d8 1328
945dad6d
JL
1329OpenRISC Machines
1330-----------------
1331or1k-sim
1332M: Jia Liu <proljc@gmail.com>
1333S: Maintained
4db546d3 1334F: docs/system/openrisc/or1k-sim.rst
945dad6d
JL
1335F: hw/openrisc/openrisc_sim.c
1336
fd5d5c56
AL
1337PowerPC Machines
1338----------------
1335caf3 1339405 (ref405ep)
a6c98685 1340L: qemu-ppc@nongnu.org
0f514eea 1341S: Orphan
8d8b636d 1342F: hw/ppc/ppc405_boards.c
fd5d5c56 1343
aaade8d7 1344Bamboo
aaade8d7 1345L: qemu-ppc@nongnu.org
0f514eea 1346S: Orphan
8d8b636d 1347F: hw/ppc/ppc440_bamboo.c
bbbd9b6e 1348F: tests/avocado/ppc_bamboo.py
aaade8d7 1349
98cded3a 1350e500
98cded3a 1351L: qemu-ppc@nongnu.org
0f514eea 1352S: Orphan
ce6fc617 1353F: hw/ppc/e500*
2c6aba14 1354F: hw/gpio/mpc8xxx.c
7abb479c 1355F: hw/i2c/mpc_i2c.c
ce6fc617
TH
1356F: hw/net/fsl_etsec/
1357F: hw/pci-host/ppce500.c
b5d55020
TH
1358F: include/hw/ppc/ppc_e500.h
1359F: include/hw/pci-host/ppce500.h
1360F: pc-bios/u-boot.e500
ff8cdbbd
DG
1361F: hw/intc/openpic_kvm.h
1362F: include/hw/ppc/openpic_kvm.h
98cded3a
AF
1363
1364mpc8544ds
98cded3a 1365L: qemu-ppc@nongnu.org
0f514eea 1366S: Orphan
98cded3a 1367F: hw/ppc/mpc8544ds.c
8d8b636d 1368F: hw/ppc/mpc8544_guts.c
bbbd9b6e 1369F: tests/avocado/ppc_mpc8544ds.py
98cded3a 1370
2c6aba14 1371New World (mac99)
40e3dd06 1372M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
a6c98685 1373L: qemu-ppc@nongnu.org
bba8e23a 1374S: Odd Fixes
c5288768 1375F: docs/system/ppc/powermac.rst
baec1910 1376F: hw/ppc/mac_newworld.c
6e481d57
PM
1377F: hw/pci-host/uninorth.c
1378F: hw/pci-bridge/dec.[hc]
8d8b636d 1379F: hw/misc/macio/
6ba16476 1380F: hw/misc/mos6522.c
b5d55020 1381F: hw/nvram/mac_nvram.c
2c6aba14 1382F: hw/input/adb*
eba45926 1383F: include/hw/misc/macio/
6ba16476 1384F: include/hw/misc/mos6522.h
443f07b7 1385F: include/hw/nvram/mac_nvram.h
eba45926 1386F: include/hw/ppc/mac_dbdma.h
5021bfa5 1387F: include/hw/pci-host/uninorth.h
2c6aba14 1388F: include/hw/input/adb*
52804c60 1389F: pc-bios/qemu_vga.ndrv
fd5d5c56 1390
2c6aba14 1391Old World (g3beige)
40e3dd06 1392M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
a6c98685 1393L: qemu-ppc@nongnu.org
bba8e23a 1394S: Odd Fixes
c5288768 1395F: docs/system/ppc/powermac.rst
baec1910 1396F: hw/ppc/mac_oldworld.c
6e481d57 1397F: hw/pci-host/grackle.c
8d8b636d 1398F: hw/misc/macio/
835c42d3 1399F: hw/intc/heathrow_pic.c
2c6aba14 1400F: hw/input/adb*
97e16dba 1401F: include/hw/intc/heathrow_pic.h
2c6aba14 1402F: include/hw/input/adb*
87e5a4f8 1403F: include/hw/pci-host/grackle.h
52804c60 1404F: pc-bios/qemu_vga.ndrv
fd5d5c56 1405
ec38d398 1406PReP
8178e89c 1407M: Hervé Poussineau <hpoussin@reactos.org>
a6c98685 1408L: qemu-ppc@nongnu.org
8178e89c 1409S: Maintained
c5288768 1410F: docs/system/ppc/prep.rst
75610155 1411F: hw/ppc/prep.c
8178e89c
HP
1412F: hw/ppc/prep_systemio.c
1413F: hw/ppc/rs6000_mc.c
46fd3201 1414F: hw/pci-host/raven.c
0a9464b5 1415F: hw/isa/i82378.c
a48c6b51 1416F: hw/isa/pc87312.c
1cd6dccb 1417F: hw/dma/i82374.c
819ce6b2 1418F: hw/rtc/m48t59-isa.c
a48c6b51 1419F: include/hw/isa/pc87312.h
819ce6b2 1420F: include/hw/rtc/m48t59.h
bbbd9b6e 1421F: tests/avocado/ppc_prep_40p.py
fd5d5c56 1422
c5288768 1423sPAPR (pseries)
14fe3222 1424M: Daniel Henrique Barboza <danielhb413@gmail.com>
b0877575 1425R: Cédric Le Goater <clg@kaod.org>
14fe3222
DG
1426R: David Gibson <david@gibson.dropbear.id.au>
1427R: Greg Kurz <groug@kaod.org>
fcdae012 1428R: Harsh Prateek Bora <harshpb@linux.ibm.com>
8a269ca4 1429L: qemu-ppc@nongnu.org
2e93a90f 1430S: Odd Fixes
8d8b636d 1431F: hw/*/spapr*
f9de2da7
DG
1432F: include/hw/*/spapr*
1433F: hw/*/xics*
1434F: include/hw/*/xics*
b5d55020 1435F: pc-bios/slof.bin
c5288768
TH
1436F: docs/system/ppc/pseries.rst
1437F: docs/specs/ppc-spapr-*
1e8a1fae 1438F: tests/qtest/spapr*
1cf4323e 1439F: tests/qtest/libqos/*spapr*
1e8a1fae 1440F: tests/qtest/rtas*
1cf4323e 1441F: tests/qtest/libqos/rtas*
bbbd9b6e 1442F: tests/avocado/ppc_pseries.py
8a269ca4 1443
1af82d4f
CLG
1444PowerNV (Non-Virtualized)
1445M: Cédric Le Goater <clg@kaod.org>
1af82d4f 1446L: qemu-ppc@nongnu.org
b0877575 1447S: Odd Fixes
c5288768 1448F: docs/system/ppc/powernv.rst
1af82d4f
CLG
1449F: hw/ppc/pnv*
1450F: hw/intc/pnv*
1451F: hw/intc/xics_pnv.c
157ed954 1452F: hw/pci-host/pnv*
1af82d4f 1453F: include/hw/ppc/pnv*
157ed954 1454F: include/hw/pci-host/pnv*
1af82d4f 1455F: pc-bios/skiboot.lid
1e8a1fae 1456F: tests/qtest/pnv*
1af82d4f 1457
794d00bf
AF
1458virtex_ml507
1459M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
1460L: qemu-ppc@nongnu.org
1461S: Odd Fixes
6e481d57 1462F: hw/ppc/virtex_ml507.c
bbbd9b6e 1463F: tests/avocado/ppc_virtex_ml507.py
794d00bf 1464
a9dd6604
BZ
1465sam460ex
1466M: BALATON Zoltan <balaton@eik.bme.hu>
1467L: qemu-ppc@nongnu.org
1468S: Maintained
33c6a8b5
BZ
1469F: hw/ppc/sam460ex.c
1470F: hw/ppc/ppc440_pcix.c
1471F: hw/display/sm501*
a9dd6604 1472F: hw/ide/sii3112.c
de04c31d 1473F: hw/rtc/m41t80.c
33c6a8b5
BZ
1474F: pc-bios/canyonlands.dt[sb]
1475F: pc-bios/u-boot-sam460ex-20100605.bin
1476F: roms/u-boot-sam460ex
a9dd6604 1477
ba7e5ac1
BZ
1478pegasos2
1479M: BALATON Zoltan <balaton@eik.bme.hu>
ba7e5ac1
BZ
1480L: qemu-ppc@nongnu.org
1481S: Maintained
1482F: hw/ppc/pegasos2.c
1483F: hw/pci-host/mv64361.c
1484F: hw/pci-host/mv643xx.h
1485F: include/hw/pci-host/mv64361.h
1486
fc8c745d
AK
1487Virtual Open Firmware (VOF)
1488M: Alexey Kardashevskiy <aik@ozlabs.ru>
14fe3222
DG
1489R: Cédric Le Goater <clg@kaod.org>
1490R: Daniel Henrique Barboza <danielhb413@gmail.com>
21bde1ec
AK
1491R: David Gibson <david@gibson.dropbear.id.au>
1492R: Greg Kurz <groug@kaod.org>
fc8c745d
AK
1493L: qemu-ppc@nongnu.org
1494S: Maintained
1495F: hw/ppc/spapr_vof*
1496F: hw/ppc/vof*
1497F: include/hw/ppc/vof*
1498F: pc-bios/vof/*
1499F: pc-bios/vof*
1500
fe0fe473
AF
1501RISC-V Machines
1502---------------
1503OpenTitan
1504M: Alistair Francis <Alistair.Francis@wdc.com>
1505L: qemu-riscv@nongnu.org
1506S: Supported
1507F: hw/riscv/opentitan.c
df41cbd6 1508F: hw/*/ibex_*.c
fe0fe473 1509F: include/hw/riscv/opentitan.h
df41cbd6 1510F: include/hw/*/ibex_*.h
fe0fe473 1511
56f6e31e
BM
1512Microchip PolarFire SoC Icicle Kit
1513M: Bin Meng <bin.meng@windriver.com>
1514L: qemu-riscv@nongnu.org
1515S: Supported
1516F: hw/riscv/microchip_pfsoc.c
a8fb0a50 1517F: hw/char/mchp_pfsoc_mmuart.c
3400b15b 1518F: hw/misc/mchp_pfsoc_dmc.c
a937b302 1519F: hw/misc/mchp_pfsoc_ioscb.c
0f25065c 1520F: hw/misc/mchp_pfsoc_sysreg.c
56f6e31e 1521F: include/hw/riscv/microchip_pfsoc.h
a8fb0a50 1522F: include/hw/char/mchp_pfsoc_mmuart.h
3400b15b 1523F: include/hw/misc/mchp_pfsoc_dmc.h
a937b302 1524F: include/hw/misc/mchp_pfsoc_ioscb.h
0f25065c 1525F: include/hw/misc/mchp_pfsoc_sysreg.h
56f6e31e 1526
7a261baf
VK
1527Shakti C class SoC
1528M: Vijai Kumar K <vijai@behindbytes.com>
1529L: qemu-riscv@nongnu.org
1530S: Supported
1531F: hw/riscv/shakti_c.c
07f334d8 1532F: hw/char/shakti_uart.c
7a261baf 1533F: include/hw/riscv/shakti_c.h
07f334d8 1534F: include/hw/char/shakti_uart.h
7a261baf 1535
4fcad931
AF
1536SiFive Machines
1537M: Alistair Francis <Alistair.Francis@wdc.com>
1538M: Bin Meng <bin.meng@windriver.com>
1539M: Palmer Dabbelt <palmer@dabbelt.com>
1540L: qemu-riscv@nongnu.org
1541S: Supported
1542F: hw/*/*sifive*.c
1543F: include/hw/*/*sifive*.h
1544
bda19d7b
YS
1545RX Machines
1546-----------
1547rx-gdbsim
b2744da9
PMD
1548R: Yoshinori Sato <ysato@users.sourceforge.jp>
1549S: Orphan
4adbfa45 1550F: docs/system/target-rx.rst
bda19d7b 1551F: hw/rx/rx-gdbsim.c
bbbd9b6e 1552F: tests/avocado/machine_rx_gdbsim.py
bda19d7b 1553
fd5d5c56
AL
1554SH4 Machines
1555------------
1556R2D
2d53d0c7 1557R: Yoshinori Sato <ysato@users.sourceforge.jp>
a9fb4468 1558R: Magnus Damm <magnus.damm@gmail.com>
f166061c 1559S: Odd Fixes
7ae5c8bb 1560F: hw/char/sh_serial.c
6e481d57 1561F: hw/sh4/r2d.c
81527b94 1562F: hw/intc/sh_intc.c
c64bd101 1563F: hw/pci-host/sh_pci.c
25e79527 1564F: hw/timer/sh_timer.c
65b8dc29 1565F: include/hw/sh4/sh_intc.h
fd5d5c56
AL
1566
1567Shix
2d53d0c7 1568R: Yoshinori Sato <ysato@users.sourceforge.jp>
a9fb4468 1569R: Magnus Damm <magnus.damm@gmail.com>
81527b94 1570S: Odd Fixes
475e70bd 1571F: hw/block/tc58128.c
7ae5c8bb 1572F: hw/char/sh_serial.c
6e481d57 1573F: hw/sh4/shix.c
65b8dc29 1574F: hw/intc/sh_intc.c
25e79527 1575F: hw/timer/sh_timer.c
65b8dc29 1576F: include/hw/sh4/sh_intc.h
fd5d5c56
AL
1577
1578SPARC Machines
1579--------------
1580Sun4m
f2416d3a 1581M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
fd5d5c56 1582S: Maintained
8d8b636d 1583F: hw/sparc/sun4m.c
c468e368 1584F: hw/sparc/sun4m_iommu.c
aec2b887
TH
1585F: hw/display/cg3.c
1586F: hw/display/tcx.c
c10a1c78 1587F: hw/dma/sparc32_dma.c
7098b79e 1588F: hw/misc/eccmemctl.c
aec2b887
TH
1589F: hw/*/slavio_*.c
1590F: include/hw/nvram/sun_nvram.h
c10a1c78 1591F: include/hw/sparc/sparc32_dma.h
d0476159 1592F: include/hw/sparc/sun4m_iommu.h
aec2b887 1593F: pc-bios/openbios-sparc32
fd5d5c56
AL
1594
1595Sun4u
f2416d3a 1596M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
fd5d5c56 1597S: Maintained
8d8b636d 1598F: hw/sparc64/sun4u.c
8ef856b7
PMD
1599F: hw/sparc64/sun4u_iommu.c
1600F: include/hw/sparc/sun4u_iommu.h
5021bfa5
TH
1601F: hw/pci-host/sabre.c
1602F: include/hw/pci-host/sabre.h
8ef856b7
PMD
1603F: hw/pci-bridge/simba.c
1604F: include/hw/pci-bridge/simba.h
1605F: pc-bios/openbios-sparc64
bbbd9b6e 1606F: tests/avocado/machine_sparc64_sun4u.py
fd5d5c56 1607
a2664ca0
AT
1608Sun4v
1609M: Artyom Tarasenko <atar4qemu@gmail.com>
1610S: Maintained
626e4a4b 1611F: hw/sparc64/niagara.c
2811ac30
PMD
1612F: hw/rtc/sun4v-rtc.c
1613F: include/hw/rtc/sun4v-rtc.h
a2664ca0 1614
ce6c760c
FC
1615Leon3
1616M: Fabien Chouteau <chouteau@adacore.com>
034e050d 1617M: Frederic Konrad <konrad.frederic@yahoo.fr>
ce6c760c 1618S: Maintained
8d8b636d
PB
1619F: hw/sparc/leon3.c
1620F: hw/*/grlib*
162abf1a 1621F: include/hw/*/grlib*
bbbd9b6e 1622F: tests/avocado/machine_sparc_leon3.py
ce6c760c 1623
fd5d5c56
AL
1624S390 Machines
1625-------------
dd4ad64a 1626S390 Virtio-ccw
7c8e2647 1627M: Halil Pasic <pasic@linux.ibm.com>
2c092950 1628M: Christian Borntraeger <borntraeger@linux.ibm.com>
6a6d3dfd 1629M: Eric Farman <farman@linux.ibm.com>
dd4ad64a 1630S: Supported
c5bfb202 1631F: hw/s390x/
4277af19 1632F: include/hw/s390x/
812b31d3 1633F: configs/devices/s390x-softmmu/default.mak
bbbd9b6e 1634F: tests/avocado/machine_s390_ccw_virtio.py
e18a8b34 1635T: git https://github.com/borntraeger/qemu.git s390-next
146bd283 1636L: qemu-s390x@nongnu.org
dd4ad64a 1637
8e4eb427 1638S390-ccw boot
2c092950 1639M: Christian Borntraeger <borntraeger@linux.ibm.com>
304584bf
CH
1640M: Thomas Huth <thuth@redhat.com>
1641S: Supported
8e4eb427 1642F: hw/s390x/ipl.*
304584bf
CH
1643F: pc-bios/s390-ccw/
1644F: pc-bios/s390-ccw.img
cc3d15a5 1645F: docs/devel/s390-dasd-ipl.rst
e18a8b34 1646T: git https://github.com/borntraeger/qemu.git s390-next
304584bf
CH
1647L: qemu-s390x@nongnu.org
1648
d5bfb425 1649S390 PCI
ecd6663d 1650M: Matthew Rosato <mjrosato@linux.ibm.com>
074c84b9 1651M: Eric Farman <farman@linux.ibm.com>
d5bfb425
CB
1652S: Supported
1653F: hw/s390x/s390-pci*
408b55db 1654F: include/hw/s390x/s390-pci*
d5bfb425
CB
1655L: qemu-s390x@nongnu.org
1656
56e34834
CH
1657S390 channel subsystem
1658M: Halil Pasic <pasic@linux.ibm.com>
1659M: Christian Borntraeger <borntraeger@linux.ibm.com>
6a6d3dfd 1660M: Eric Farman <farman@linux.ibm.com>
56e34834
CH
1661S: Supported
1662F: hw/s390x/ccw-device.[ch]
1663F: hw/s390x/css.c
1664F: hw/s390x/css-bridge.c
1665F: include/hw/s390x/css.h
1666F: include/hw/s390x/css-bridge.h
1667F: include/hw/s390x/ioinst.h
1668F: target/s390x/ioinst.c
1669L: qemu-s390x@nongnu.org
1670
1671S390 CPU models
1672M: David Hildenbrand <david@redhat.com>
1673S: Maintained
1674F: target/s390x/cpu_features*.[ch]
1675F: target/s390x/cpu_models.[ch]
1676L: qemu-s390x@nongnu.org
1677
1678S390 SCLP-backed devices
1679M: Halil Pasic <pasic@linux.ibm.com>
1680M: Christian Borntraeger <borntraeger@linux.ibm.com>
1681S: Supported
1682F: include/hw/s390x/event-facility.h
1683F: include/hw/s390x/sclp.h
1684F: hw/char/sclp*.[hc]
1685F: hw/s390x/event-facility.c
1686F: hw/s390x/sclp*.c
1687L: qemu-s390x@nongnu.org
1688
fd5d5c56
AL
1689X86 Machines
1690------------
1691PC
046a6486 1692M: Michael S. Tsirkin <mst@redhat.com>
fe355cbd 1693M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
fd5d5c56 1694S: Supported
046a6486
MT
1695F: include/hw/i386/
1696F: hw/i386/
0f25d865 1697F: hw/pci-host/i440fx.c
046a6486
MT
1698F: hw/pci-host/q35.c
1699F: hw/pci-host/pam.c
0fd61a2d 1700F: include/hw/pci-host/i440fx.h
046a6486
MT
1701F: include/hw/pci-host/q35.h
1702F: include/hw/pci-host/pam.h
14a026dd 1703F: hw/isa/piix3.c
046a6486
MT
1704F: hw/isa/lpc_ich9.c
1705F: hw/i2c/smbus_ich9.c
1706F: hw/acpi/piix4.c
fbae27e8
PMD
1707F: hw/acpi/ich9*.c
1708F: include/hw/acpi/ich9*.h
1a6981bb 1709F: include/hw/southbridge/ich9.h
fff123b8 1710F: include/hw/southbridge/piix.h
6f5a3294
PMD
1711F: hw/isa/apm.c
1712F: include/hw/isa/apm.h
da668aa1 1713F: tests/unit/test-x86-cpuid.c
1e8a1fae 1714F: tests/qtest/test-x86-cpuid-compat.c
9cc3b73c
PB
1715
1716PC Chipset
1717M: Michael S. Tsirkin <mst@redhat.com>
1718M: Paolo Bonzini <pbonzini@redhat.com>
1732be86 1719S: Supported
9cc3b73c 1720F: hw/char/debugcon.c
bb3d5ea8 1721F: hw/char/parallel*
9cc3b73c
PB
1722F: hw/char/serial*
1723F: hw/dma/i8257*
1724F: hw/i2c/pm_smbus.c
1732be86 1725F: hw/input/pckbd.c
9cc3b73c
PB
1726F: hw/intc/apic*
1727F: hw/intc/ioapic*
1728F: hw/intc/i8259*
1854eb28 1729F: hw/isa/isa-superio.c
9cc3b73c
PB
1730F: hw/misc/debugexit.c
1731F: hw/misc/pc-testdev.c
1732F: hw/timer/hpet*
1733F: hw/timer/i8254*
bcdb9064 1734F: hw/rtc/mc146818rtc*
edc46aff 1735F: hw/watchdog/wdt_ib700.c
4bcbc773 1736F: hw/watchdog/wdt_i6300esb.c
866e2b37 1737F: include/hw/display/vga.h
bb3d5ea8 1738F: include/hw/char/parallel.h
55f613ac 1739F: include/hw/dma/i8257.h
a2feb348 1740F: include/hw/i2c/pm_smbus.h
47973a2d 1741F: include/hw/input/i8042.h
7f54640b 1742F: include/hw/intc/ioapic*
4bcbc773 1743F: include/hw/isa/i8259_internal.h
1854eb28 1744F: include/hw/isa/superio.h
a2feb348
TH
1745F: include/hw/timer/hpet.h
1746F: include/hw/timer/i8254*
bcdb9064 1747F: include/hw/rtc/mc146818rtc*
046a6486 1748
5cb48f05
SL
1749microvm
1750M: Sergio Lopez <slp@redhat.com>
1751M: Paolo Bonzini <pbonzini@redhat.com>
1752S: Maintained
0b09d441 1753F: docs/system/i386/microvm.rst
5cb48f05
SL
1754F: hw/i386/microvm.c
1755F: include/hw/i386/microvm.h
1756F: pc-bios/bios-microvm.bin
1757
5da4fb00 1758Machine core
24c4cd13 1759M: Eduardo Habkost <eduardo@habkost.net>
fe355cbd 1760M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
8823ef13 1761R: Philippe Mathieu-Daudé <philmd@linaro.org>
da7595ca 1762R: Yanan Wang <wangyanan55@huawei.com>
5da4fb00 1763S: Supported
d9f24bf5 1764F: cpu.c
2e5b09fd 1765F: hw/core/cpu.c
52924dea 1766F: hw/core/machine-qmp-cmds.c
5da4fb00 1767F: hw/core/machine.c
86ce2d28 1768F: hw/core/machine-smp.c
c1629c5c 1769F: hw/core/null-machine.c
ac057879 1770F: hw/core/numa.c
335d52f4 1771F: hw/cpu/cluster.c
8ac25c84 1772F: qapi/machine.json
7f7b4e7a 1773F: qapi/machine-target.json
5da4fb00 1774F: include/hw/boards.h
2e5b09fd 1775F: include/hw/core/cpu.h
335d52f4 1776F: include/hw/cpu/cluster.h
2dd02587 1777F: include/sysemu/numa.h
9e8e393b 1778F: tests/unit/test-smp-parse.c
f953c100 1779T: git https://gitlab.com/ehabkost/qemu.git machine-next
fd5d5c56 1780
16e7caae
MF
1781Xtensa Machines
1782---------------
375847a6 1783sim
16e7caae
MF
1784M: Max Filippov <jcmvbkbc@gmail.com>
1785S: Maintained
437a8c11 1786F: hw/xtensa/sim.c
375847a6 1787
d9e8553b
MF
1788virt
1789M: Max Filippov <jcmvbkbc@gmail.com>
1790S: Maintained
1791F: hw/xtensa/virt.c
1792
437a8c11 1793XTFPGA (LX60, LX200, ML605, KC705)
375847a6
MF
1794M: Max Filippov <jcmvbkbc@gmail.com>
1795S: Maintained
437a8c11
MF
1796F: hw/xtensa/xtfpga.c
1797F: hw/net/opencores_eth.c
16e7caae 1798
fd5d5c56
AL
1799Devices
1800-------
a8f4aee6
PMD
1801Overall Audio frontends
1802M: Gerd Hoffmann <kraxel@redhat.com>
1803S: Odd Fixes
1804F: hw/audio/
1805F: include/hw/audio/
1806F: tests/qtest/ac97-test.c
1807F: tests/qtest/es1370-test.c
1808F: tests/qtest/intel-hda-test.c
1809F: tests/qtest/fuzz-sb16-test.c
1810
d36d7112 1811Xilinx CAN
32bd99d0
VG
1812M: Vikram Garhwal <vikram.garhwal@amd.com>
1813M: Francisco Iglesias <francisco.iglesias@amd.com>
d36d7112
VG
1814S: Maintained
1815F: hw/net/can/xlnx-*
1816F: include/hw/net/xlnx-*
1817F: tests/qtest/xlnx-can-test*
1818
b30934cb
JS
1819EDU
1820M: Jiri Slaby <jslaby@suse.cz>
1821S: Maintained
1822F: hw/misc/edu.c
1823
fd5d5c56 1824IDE
c095348b
JS
1825M: John Snow <jsnow@redhat.com>
1826L: qemu-block@nongnu.org
1b0477a6 1827S: Odd Fixes
8d8b636d 1828F: include/hw/ide.h
c9f7acd5 1829F: include/hw/ide/
fd5d5c56 1830F: hw/ide/
c095348b
JS
1831F: hw/block/block.c
1832F: hw/block/cdrom.c
1833F: hw/block/hd-geometry.c
1e8a1fae
TH
1834F: tests/qtest/ide-test.c
1835F: tests/qtest/ahci-test.c
1836F: tests/qtest/cdrom-test.c
1cf4323e 1837F: tests/qtest/libqos/ahci*
77582e2c 1838T: git https://gitlab.com/jsnow/qemu.git ide
c095348b 1839
caf316ba
CM
1840IPMI
1841M: Corey Minyard <minyard@acm.org>
1842S: Maintained
1843F: include/hw/ipmi/*
1844F: hw/ipmi/*
1845F: hw/smbios/smbios_type_38.c
1e8a1fae 1846F: tests/qtest/ipmi*
e18a8b34 1847T: git https://github.com/cminyard/qemu.git master-ipmi-rebase
caf316ba 1848
c095348b
JS
1849Floppy
1850M: John Snow <jsnow@redhat.com>
1851L: qemu-block@nongnu.org
1b0477a6 1852S: Odd Fixes
c095348b 1853F: hw/block/fdc.c
5a5d2f3d 1854F: hw/block/fdc-internal.h
72ea60e4 1855F: hw/block/fdc-isa.c
1430759e 1856F: hw/block/fdc-sysbus.c
c095348b 1857F: include/hw/block/fdc.h
1e8a1fae 1858F: tests/qtest/fdc-test.c
77582e2c 1859T: git https://gitlab.com/jsnow/qemu.git ide
fd5d5c56 1860
ee344768
MS
1861Hyper-V VMBus
1862M: Maciej S. Szmigiero <maciej.szmigiero@oracle.com>
1863S: Odd Fixes
1864F: hw/hyperv/vmbus.c
1865F: include/hw/hyperv/vmbus*.h
1866
f5f487b2
PM
1867OMAP
1868M: Peter Maydell <peter.maydell@linaro.org>
8ef350b3 1869L: qemu-arm@nongnu.org
f5f487b2 1870S: Maintained
8d8b636d 1871F: hw/*/omap*
ed0db866 1872F: include/hw/arm/omap.h
66278f8a 1873F: docs/system/arm/sx1.rst
f5f487b2 1874
28d54e58
PB
1875IPack
1876M: Alberto Garcia <berto@igalia.com>
1877S: Odd Fixes
1878F: hw/char/ipoctal232.c
1879F: hw/ipack/
1880
fd5d5c56
AL
1881PCI
1882M: Michael S. Tsirkin <mst@redhat.com>
fe355cbd 1883M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
fd5d5c56 1884S: Supported
8d8b636d 1885F: include/hw/pci/*
f178bc6b 1886F: hw/misc/pci-testdev.c
ca818cfb 1887F: hw/pci/*
f178bc6b 1888F: hw/pci-bridge/*
61c7f987 1889F: qapi/pci.json
68179923
PMD
1890F: docs/pci*
1891F: docs/specs/*pci*
0e0b3592 1892
5fb52f6c
HCK
1893PCIE DOE
1894M: Huai-Cheng Kuo <hchkuo@avery-design.com.tw>
1895M: Chris Browy <cbrowy@avery-design.com>
1896S: Supported
1897F: include/hw/pci/pcie_doe.h
1898F: hw/pci/pcie_doe.c
1899
d31e5ae7 1900ACPI/SMBIOS
0e0b3592
MT
1901M: Michael S. Tsirkin <mst@redhat.com>
1902M: Igor Mammedov <imammedo@redhat.com>
104593c3 1903R: Ani Sinha <anisinha@redhat.com>
0e0b3592
MT
1904S: Supported
1905F: include/hw/acpi/*
a2eb5c0c 1906F: include/hw/firmware/smbios.h
8d8b636d 1907F: hw/acpi/*
d31e5ae7 1908F: hw/smbios/*
0e0b3592 1909F: hw/i386/acpi-build.[hc]
0e0b3592 1910F: hw/arm/virt-acpi-build.c
27c9188f 1911F: qapi/acpi.json
b963ea19 1912F: tests/qtest/bios-tables-test*
1e8a1fae 1913F: tests/qtest/acpi-utils.[hc]
faae23b9 1914F: tests/data/acpi/
fcc6f733
PM
1915F: docs/specs/acpi_cpu_hotplug.rst
1916F: docs/specs/acpi_mem_hotplug.rst
2fcd005f 1917F: docs/specs/acpi_nvdimm.rst
fcc6f733
PM
1918F: docs/specs/acpi_pci_hotplug.rst
1919F: docs/specs/acpi_hw_reduced_hotplug.rst
fd5d5c56 1920
47fc3400
S
1921ARM ACPI Subsystem
1922M: Shannon Zhao <shannon.zhaosl@gmail.com>
1923L: qemu-arm@nongnu.org
1924S: Maintained
1925F: hw/arm/virt-acpi-build.c
1926
1927RISC-V ACPI Subsystem
1928M: Sunil V L <sunilvl@ventanamicro.com>
1929L: qemu-riscv@nongnu.org
1930S: Maintained
1931F: hw/riscv/virt-acpi-build.c
1932
d135536d
AS
1933ACPI/VIOT
1934M: Jean-Philippe Brucker <jean-philippe@linaro.org>
d135536d
AS
1935S: Supported
1936F: hw/acpi/viot.c
1937F: hw/acpi/viot.h
1938
76f831dc 1939ACPI/AVOCADO/BIOSBITS
607a079b 1940M: Ani Sinha <anisinha@redhat.com>
242a58ca 1941M: Michael S. Tsirkin <mst@redhat.com>
76f831dc
AS
1942S: Supported
1943F: tests/avocado/acpi-bits/*
1944F: tests/avocado/acpi-bits.py
1945F: docs/devel/acpi-bits.rst
1946
f7e462f8 1947ACPI/HEST/GHES
d6eed465 1948R: Dongjiu Geng <gengdongjiu1@gmail.com>
f7e462f8
DG
1949L: qemu-arm@nongnu.org
1950S: Maintained
1951F: hw/acpi/ghes.c
1952F: include/hw/acpi/ghes.h
1953F: docs/specs/acpi_hest_ghes.rst
1954
aaade8d7 1955ppc4xx
aaade8d7 1956L: qemu-ppc@nongnu.org
0f514eea 1957S: Orphan
8d8b636d 1958F: hw/ppc/ppc4*.c
aa3a41f9 1959F: hw/i2c/ppc4xx_i2c.c
b5d55020 1960F: include/hw/ppc/ppc4xx.h
aa3a41f9 1961F: include/hw/i2c/ppc4xx_i2c.h
34d0831f
PM
1962F: hw/intc/ppc-uic.c
1963F: include/hw/intc/ppc-uic.h
aaade8d7 1964
61af0ee6 1965Character devices
2185fd67
PB
1966M: Marc-André Lureau <marcandre.lureau@redhat.com>
1967R: Paolo Bonzini <pbonzini@redhat.com>
61af0ee6
PB
1968S: Odd Fixes
1969F: hw/char/
1970
f536f112
PB
1971Network devices
1972M: Jason Wang <jasowang@redhat.com>
1973S: Odd Fixes
1974F: hw/net/
6061b5c6 1975F: include/hw/net/
1e8a1fae 1976F: tests/qtest/virtio-net-test.c
9711cd0d 1977F: docs/virtio-net-failover.rst
e18a8b34 1978T: git https://github.com/jasowang/qemu.git net
f536f112 1979
e0c9d0c1 1980Parallel NOR Flash devices
8823ef13 1981M: Philippe Mathieu-Daudé <philmd@linaro.org>
e0c9d0c1
PMD
1982T: git https://gitlab.com/philmd/qemu.git pflash-next
1983S: Maintained
1984F: hw/block/pflash_cfi*.c
1985F: include/hw/block/flash.h
1986
fd5d5c56 1987SCSI
de7724f7 1988M: Paolo Bonzini <pbonzini@redhat.com>
fe5ca46d 1989R: Fam Zheng <fam@euphon.net>
de7724f7 1990S: Supported
74460f34 1991F: include/hw/scsi/*
8d8b636d 1992F: hw/scsi/*
1e8a1fae 1993F: tests/qtest/virtio-scsi-test.c
b43957dc 1994F: tests/qtest/fuzz-virtio-scsi-test.c
ce94fa7a 1995F: tests/qtest/am53c974-test.c
aa62976c 1996F: tests/qtest/fuzz-lsi53c895a-test.c
e18a8b34 1997T: git https://github.com/bonzini/qemu.git scsi-next
de7724f7 1998
fcb5629d 1999SSI
c22e580c 2000M: Alistair Francis <alistair@alistair23.me>
fcb5629d 2001S: Maintained
8d8b636d 2002F: hw/ssi/*
2389bcc2 2003F: hw/block/m25p80*
982d009a 2004F: include/hw/ssi/ssi.h
4b46ba61 2005X: hw/ssi/xilinx_*
1e8a1fae 2006F: tests/qtest/m25p80-test.c
4b46ba61
AF
2007
2008Xilinx SPI
c22e580c 2009M: Alistair Francis <alistair@alistair23.me>
4b46ba61
AF
2010S: Maintained
2011F: hw/ssi/xilinx_*
fcb5629d 2012
076a0fc3 2013SD (Secure Card)
8823ef13 2014M: Philippe Mathieu-Daudé <philmd@linaro.org>
3e0a7693 2015M: Bin Meng <bin.meng@windriver.com>
ba412478 2016L: qemu-block@nongnu.org
076a0fc3
PMD
2017S: Odd Fixes
2018F: include/hw/sd/sd*
2019F: hw/sd/core.c
2020F: hw/sd/sd*
1232ed1f 2021F: hw/sd/ssi-sd.c
59b63d78
PMD
2022F: tests/qtest/fuzz-sdcard-test.c
2023F: tests/qtest/sdhci-test.c
076a0fc3 2024
fd5d5c56 2025USB
5d0d62fe 2026M: Gerd Hoffmann <kraxel@redhat.com>
cd02c965 2027S: Odd Fixes
8d8b636d 2028F: hw/usb/*
9c3c834b 2029F: stubs/usb-dev-stub.c
1e8a1fae 2030F: tests/qtest/usb-*-test.c
2a49e4e9 2031F: docs/system/devices/usb.rst
beded0ff
TH
2032F: include/hw/usb.h
2033F: include/hw/usb/
fd5d5c56 2034
e26082fd 2035USB (serial adapter)
cd02c965 2036R: Gerd Hoffmann <kraxel@redhat.com>
e26082fd
PB
2037M: Samuel Thibault <samuel.thibault@ens-lyon.org>
2038S: Maintained
2039F: hw/usb/dev-serial.c
2040
92e1fb5e
AW
2041VFIO
2042M: Alex Williamson <alex.williamson@redhat.com>
57edb7e4 2043R: Cédric Le Goater <clg@redhat.com>
92e1fb5e 2044S: Supported
cf7087db 2045F: hw/vfio/*
99b88c6d 2046F: include/hw/vfio/
4e779bf1 2047F: docs/igd-assign.txt
2a578133 2048F: docs/devel/vfio-migration.rst
92e1fb5e 2049
5eb74557 2050vfio-ccw
7913938a 2051M: Eric Farman <farman@linux.ibm.com>
074c84b9 2052M: Matthew Rosato <mjrosato@linux.ibm.com>
5eb74557
DJS
2053S: Supported
2054F: hw/vfio/ccw.c
2055F: hw/s390x/s390-ccw.c
2056F: include/hw/s390x/s390-ccw.h
44445d86 2057F: include/hw/s390x/vfio-ccw.h
146bd283 2058L: qemu-s390x@nongnu.org
5eb74557 2059
a51b3153 2060vfio-ap
a51b3153
TK
2061M: Tony Krowiak <akrowiak@linux.ibm.com>
2062M: Halil Pasic <pasic@linux.ibm.com>
074c84b9 2063M: Jason Herne <jjherne@linux.ibm.com>
a51b3153
TK
2064S: Supported
2065F: hw/s390x/ap-device.c
2066F: hw/s390x/ap-bridge.c
2067F: include/hw/s390x/ap-device.h
2068F: include/hw/s390x/ap-bridge.h
2fe2942c 2069F: hw/vfio/ap.c
f58f084e 2070F: docs/system/s390x/vfio-ap.rst
a51b3153
TK
2071L: qemu-s390x@nongnu.org
2072
fd5d5c56
AL
2073vhost
2074M: Michael S. Tsirkin <mst@redhat.com>
2075S: Supported
8d8b636d 2076F: hw/*/*vhost*
482580a6 2077F: docs/interop/vhost-user.json
ed1be66b 2078F: docs/interop/vhost-user.rst
72c1e865 2079F: contrib/vhost-user-*/
f24bb728
MAL
2080F: backends/vhost-user.c
2081F: include/sysemu/vhost-user-backend.h
ec09f22d 2082F: subprojects/libvhost-user/
fd5d5c56 2083
2b6fc0b8
EP
2084vhost-shadow-virtqueue
2085R: Eugenio Pérez <eperezma@redhat.com>
2086F: hw/virtio/vhost-shadow-virtqueue.*
2087
fd5d5c56 2088virtio
a75143ed 2089M: Michael S. Tsirkin <mst@redhat.com>
fd5d5c56 2090S: Supported
8d8b636d 2091F: hw/*/virtio*
72fa605d
TH
2092F: hw/virtio/Makefile.objs
2093F: hw/virtio/trace-events
3b311250 2094F: qapi/virtio.json
6a084ea3 2095F: net/vhost-user.c
494f7b57 2096F: include/hw/virtio/
4db546d3 2097F: docs/devel/virtio*
fd5d5c56 2098
6d7b25ad
DH
2099virtio-balloon
2100M: Michael S. Tsirkin <mst@redhat.com>
2101M: David Hildenbrand <david@redhat.com>
2102S: Maintained
14dc58e3 2103F: docs/interop/virtio-balloon-stats.rst
6d7b25ad
DH
2104F: hw/virtio/virtio-balloon*.c
2105F: include/hw/virtio/virtio-balloon.h
c7f419f5 2106F: softmmu/balloon.c
6d7b25ad
DH
2107F: include/sysemu/balloon.h
2108
fd5d5c56 2109virtio-9p
8c1cd719 2110M: Greg Kurz <groug@kaod.org>
233982af 2111M: Christian Schoenebeck <qemu_oss@crudebyte.com>
e410bbc5 2112S: Odd Fixes
6f569084 2113W: https://wiki.qemu.org/Documentation/9p
aebeca25 2114F: hw/9pfs/
b827891d 2115X: hw/9pfs/xen-9p*
aebeca25 2116F: fsdev/
33b2b388 2117F: docs/tools/virtfs-proxy-helper.rst
1e8a1fae 2118F: tests/qtest/virtio-9p-test.c
818e42fe 2119F: tests/qtest/libqos/virtio-9p*
1a001953 2120T: git https://gitlab.com/gkurz/qemu.git 9p-next
90225f90 2121T: git https://github.com/cschoenebeck/qemu.git 9p.next
fd5d5c56
AL
2122
2123virtio-blk
54d01a00 2124M: Stefan Hajnoczi <stefanha@redhat.com>
b457a5f5 2125L: qemu-block@nongnu.org
fd5d5c56 2126S: Supported
d9cf55a8 2127F: hw/block/virtio-blk-common.c
8d8b636d 2128F: hw/block/virtio-blk.c
b457a5f5 2129F: hw/block/dataplane/*
d9cf55a8 2130F: include/hw/virtio/virtio-blk-common.h
1e8a1fae 2131F: tests/qtest/virtio-blk-test.c
e18a8b34 2132T: git https://github.com/stefanha/qemu.git block
fd5d5c56 2133
dd4ad64a 2134virtio-ccw
c1976ae7 2135M: Cornelia Huck <cohuck@redhat.com>
68b91e85 2136M: Halil Pasic <pasic@linux.ibm.com>
6a6d3dfd 2137M: Eric Farman <farman@linux.ibm.com>
dd4ad64a 2138S: Supported
901f5f16 2139F: hw/s390x/virtio-ccw*.[hc]
117d7943 2140F: hw/s390x/vhost-*-ccw.c
99eaf137 2141T: git https://gitlab.com/cohuck/qemu.git s390-next
e18a8b34 2142T: git https://github.com/borntraeger/qemu.git s390-next
146bd283 2143L: qemu-s390x@nongnu.org
dd4ad64a 2144
bad7d2c3 2145virtiofs
bad7d2c3
DDAG
2146M: Stefan Hajnoczi <stefanha@redhat.com>
2147S: Supported
bad7d2c3
DDAG
2148F: hw/virtio/vhost-user-fs*
2149F: include/hw/virtio/vhost-user-fs.h
09c8d9e8 2150L: virtio-fs@redhat.com
bad7d2c3 2151
a5d4d7b5
GH
2152virtio-input
2153M: Gerd Hoffmann <kraxel@redhat.com>
1e2edb98 2154S: Odd Fixes
9c4d05b7 2155F: hw/input/vhost-user-input.c
a5d4d7b5
GH
2156F: hw/input/virtio-input*.c
2157F: include/hw/virtio/virtio-input.h
06914c97 2158F: contrib/vhost-user-input/*
a5d4d7b5 2159
c1dee918
EA
2160virtio-iommu
2161M: Eric Auger <eric.auger@redhat.com>
2162S: Maintained
2163F: hw/virtio/virtio-iommu*.c
2164F: include/hw/virtio/virtio-iommu.h
2165
fd5d5c56 2166virtio-serial
2501db70
LV
2167M: Laurent Vivier <lvivier@redhat.com>
2168R: Amit Shah <amit@kernel.org>
fd5d5c56 2169S: Supported
8d8b636d
PB
2170F: hw/char/virtio-serial-bus.c
2171F: hw/char/virtio-console.c
68a5e38a 2172F: include/hw/virtio/virtio-serial.h
1e8a1fae 2173F: tests/qtest/virtio-serial-test.c
fd5d5c56 2174
1f51a5cb 2175virtio-rng
2501db70
LV
2176M: Laurent Vivier <lvivier@redhat.com>
2177R: Amit Shah <amit@kernel.org>
1f51a5cb
AS
2178S: Supported
2179F: hw/virtio/virtio-rng.c
2180F: include/hw/virtio/virtio-rng.h
750cf869 2181F: include/sysemu/rng*.h
1f51a5cb 2182F: backends/rng*.c
1e8a1fae 2183F: tests/qtest/virtio-rng-test.c
1f51a5cb 2184
e3e01466
MP
2185vhost-user-rng
2186M: Mathieu Poirier <mathieu.poirier@linaro.org>
2187S: Supported
4db546d3 2188F: docs/system/devices/vhost-user-rng.rst
e3e01466
MP
2189F: hw/virtio/vhost-user-rng.c
2190F: hw/virtio/vhost-user-rng-pci.c
2191F: include/hw/virtio/vhost-user-rng.h
2192F: tools/vhost-user-rng/*
2193
27ba7b02
VK
2194vhost-user-gpio
2195M: Alex Bennée <alex.bennee@linaro.org>
2196R: Viresh Kumar <viresh.kumar@linaro.org>
2197S: Maintained
25c60a46 2198F: hw/virtio/vhost-user-gpio*
27ba7b02 2199F: include/hw/virtio/vhost-user-gpio.h
8fcfc823 2200F: tests/qtest/libqos/virtio-gpio.*
27ba7b02 2201
6034011c
GA
2202virtio-crypto
2203M: Gonglei <arei.gonglei@huawei.com>
2204S: Supported
2205F: hw/virtio/virtio-crypto.c
2206F: hw/virtio/virtio-crypto-pci.c
2207F: include/hw/virtio/virtio-crypto.h
2208
751c7bdd
DH
2209virtio-mem
2210M: David Hildenbrand <david@redhat.com>
2211S: Supported
2212W: https://virtio-mem.gitlab.io/
2213F: hw/virtio/virtio-mem.c
2214F: hw/virtio/virtio-mem-pci.h
2215F: hw/virtio/virtio-mem-pci.c
2216F: include/hw/virtio/virtio-mem.h
2217
f3c507ad 2218nvme
8261cc17 2219M: Keith Busch <kbusch@kernel.org>
e8cc43d5 2220M: Klaus Jensen <its@irrelevant.dk>
c95e4c0e 2221L: qemu-block@nongnu.org
f3c507ad 2222S: Supported
88eea45c 2223F: hw/nvme/*
dc0b4d94 2224F: include/block/nvme.h
1e8a1fae 2225F: tests/qtest/nvme-test.c
4db546d3 2226F: docs/system/devices/nvme.rst
e8cc43d5 2227T: git git://git.infradead.org/qemu-nvme.git nvme-next
f3c507ad 2228
d383c625 2229megasas
3fdfb8b6 2230M: Hannes Reinecke <hare@suse.com>
c95e4c0e 2231L: qemu-block@nongnu.org
d383c625
HR
2232S: Supported
2233F: hw/scsi/megasas.c
2234F: hw/scsi/mfi.h
1e8a1fae 2235F: tests/qtest/megasas-test.c
c887d333 2236F: tests/qtest/fuzz-megasas-test.c
d383c625 2237
605d52e6 2238Network packet abstractions
bf4835a4 2239M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
c8110e76 2240R: Akihiko Odaki <akihiko.odaki@daynix.com>
605d52e6
DF
2241S: Maintained
2242F: include/net/eth.h
2243F: net/eth.c
2244F: hw/net/net_rx_pkt*
2245F: hw/net/net_tx_pkt*
2246
622fb504 2247Vmware
bf4835a4 2248M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
622fb504
DF
2249S: Maintained
2250F: hw/net/vmxnet*
2251F: hw/scsi/vmw_pvscsi*
1e8a1fae 2252F: tests/qtest/vmxnet3-test.c
622fb504 2253
de24d3f1 2254Rocker
de24d3f1
SF
2255M: Jiri Pirko <jiri@resnulli.us>
2256S: Maintained
2257F: hw/net/rocker/
92a3c6aa 2258F: qapi/rocker.json
de850948
TH
2259F: tests/rocker/
2260F: docs/specs/rocker.txt
de24d3f1 2261
093454e2 2262e1000x
bf4835a4 2263M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
8c061aa7 2264R: Akihiko Odaki <akihiko.odaki@daynix.com>
093454e2
DF
2265S: Maintained
2266F: hw/net/e1000x*
2267
6f3fbe4e 2268e1000e
bf4835a4 2269M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
8c061aa7 2270R: Akihiko Odaki <akihiko.odaki@daynix.com>
6f3fbe4e
DF
2271S: Maintained
2272F: hw/net/e1000e*
7d6a4f12 2273F: tests/qtest/fuzz-e1000e-test.c
0c2c2d4e
AO
2274F: tests/qtest/e1000e-test.c
2275F: tests/qtest/libqos/e1000e.*
6f3fbe4e 2276
3a977dee
AO
2277igb
2278M: Akihiko Odaki <akihiko.odaki@daynix.com>
e860ef15 2279R: Sriram Yagnaraman <sriram.yagnaraman@est.tech>
3a977dee 2280S: Maintained
136e9dba 2281F: docs/system/devices/igb.rst
3a977dee 2282F: hw/net/igb*
8e6c718a 2283F: tests/avocado/netdev-ethtool.py
45cb69bb
AO
2284F: tests/qtest/igb-test.c
2285F: tests/qtest/libqos/igb.c
6f3fbe4e 2286
ebc2327f
SW
2287eepro100
2288M: Stefan Weil <sw@weilnetz.de>
2289S: Maintained
2290F: hw/net/eepro100.c
2291
34ea023d
SS
2292tulip
2293M: Sven Schnelle <svens@stackframe.org>
2294S: Maintained
2295F: hw/net/tulip.c
2296F: hw/net/tulip.h
2297
065177ee
PV
2298pca954x
2299M: Patrick Venture <venture@google.com>
2300S: Maintained
2301F: hw/i2c/i2c_mux_pca954x.c
2302F: include/hw/i2c/i2c_mux_pca954x.h
2303
e481a1f6 2304Generic Loader
c22e580c 2305M: Alistair Francis <alistair@alistair23.me>
e481a1f6
AF
2306S: Maintained
2307F: hw/core/generic-loader.c
efe1592c 2308F: hw/core/uboot_image.h
e481a1f6 2309F: include/hw/core/generic-loader.h
70f20110 2310F: docs/system/generic-loader.rst
e481a1f6 2311
a33ff6d2
AB
2312Guest Loader
2313M: Alex Bennée <alex.bennee@linaro.org>
2314S: Maintained
2315F: hw/core/guest-loader.c
01460378 2316F: docs/system/guest-loader.rst
bbbd9b6e 2317F: tests/avocado/boot_xen.py
e481a1f6 2318
645d3cbe
SH
2319Intel Hexadecimal Object File Loader
2320M: Su Hang <suhang16@mails.ucas.ac.cn>
2321S: Maintained
1e8a1fae 2322F: tests/qtest/hexloader-test.c
4b2ff65a 2323F: tests/data/hex-loader/test.hex
645d3cbe 2324
87a9023a
TH
2325CHRP NVRAM
2326M: Thomas Huth <thuth@redhat.com>
2327S: Maintained
2328F: hw/nvram/chrp_nvram.c
2329F: include/hw/nvram/chrp_nvram.h
1e8a1fae 2330F: tests/qtest/prom-env-test.c
87a9023a 2331
42697d88 2332VM Generation ID
2b42989c 2333S: Orphan
48006e03 2334R: Ani Sinha <ani@anisinha.ca>
42697d88
BW
2335F: hw/acpi/vmgenid.c
2336F: include/hw/acpi/vmgenid.h
2337F: docs/specs/vmgenid.txt
1e8a1fae 2338F: tests/qtest/vmgenid-test.c
42697d88 2339
c1b29826 2340LED
8823ef13 2341M: Philippe Mathieu-Daudé <philmd@linaro.org>
c1b29826
PMD
2342S: Maintained
2343F: include/hw/misc/led.h
2344F: hw/misc/led.c
2345
747969db
PMD
2346Unimplemented device
2347M: Peter Maydell <peter.maydell@linaro.org>
8823ef13 2348R: Philippe Mathieu-Daudé <philmd@linaro.org>
48006e03 2349R: Ani Sinha <ani@anisinha.ca>
747969db
PMD
2350S: Maintained
2351F: include/hw/misc/unimp.h
2352F: hw/misc/unimp.c
2353
6007523a
PMD
2354Empty slot
2355M: Artyom Tarasenko <atar4qemu@gmail.com>
8823ef13 2356R: Philippe Mathieu-Daudé <philmd@linaro.org>
48006e03 2357R: Ani Sinha <ani@anisinha.ca>
6007523a
PMD
2358S: Maintained
2359F: include/hw/misc/empty_slot.h
2360F: hw/misc/empty_slot.c
2361
dbb2e472
GH
2362Standard VGA
2363M: Gerd Hoffmann <kraxel@redhat.com>
2364S: Maintained
2365F: hw/display/vga*
2366F: hw/display/bochs-display.c
2367F: include/hw/display/vga.h
2368F: include/hw/display/bochs-vbe.h
2369
58d632c7
GH
2370ramfb
2371M: Gerd Hoffmann <kraxel@redhat.com>
2372S: Maintained
2373F: hw/display/ramfb*.c
2374F: include/hw/display/ramfb.h
2375
dbb2e472
GH
2376virtio-gpu
2377M: Gerd Hoffmann <kraxel@redhat.com>
a4de5e8a 2378S: Odd Fixes
dbb2e472 2379F: hw/display/virtio-gpu*
c68082c4 2380F: hw/display/virtio-vga.*
dbb2e472
GH
2381F: include/hw/virtio/virtio-gpu.h
2382
b372d79b
RN
2383vhost-user-blk
2384M: Raphael Norwitz <raphael.norwitz@nutanix.com>
2385S: Maintained
2386F: contrib/vhost-user-blk/
2387F: contrib/vhost-user-scsi/
2388F: hw/block/vhost-user-blk.c
8edd5673 2389F: hw/block/virtio-blk-common.c
b372d79b
RN
2390F: hw/scsi/vhost-user-scsi.c
2391F: hw/virtio/vhost-user-blk-pci.c
2392F: hw/virtio/vhost-user-scsi-pci.c
2393F: include/hw/virtio/vhost-user-blk.h
2394F: include/hw/virtio/vhost-user-scsi.h
8edd5673 2395F: include/hw/virtio/virtio-blk-common.h
b372d79b 2396
bd2e44fe
MAL
2397vhost-user-gpu
2398M: Marc-André Lureau <marcandre.lureau@redhat.com>
a4de5e8a 2399R: Gerd Hoffmann <kraxel@redhat.com>
bd2e44fe
MAL
2400S: Maintained
2401F: docs/interop/vhost-user-gpu.rst
d52c454a
MAL
2402F: contrib/vhost-user-gpu
2403F: hw/display/vhost-user-*
bd2e44fe 2404
dbb2e472
GH
2405Cirrus VGA
2406M: Gerd Hoffmann <kraxel@redhat.com>
2407S: Odd Fixes
2408W: https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
2409F: hw/display/cirrus*
2410
72d277a7
GH
2411EDID Generator
2412M: Gerd Hoffmann <kraxel@redhat.com>
2413S: Maintained
2414F: hw/display/edid*
2415F: include/hw/display/edid.h
2416F: qemu-edid.c
2417
10386385
PMD
2418PIIX4 South Bridge (i82371AB)
2419M: Hervé Poussineau <hpoussin@reactos.org>
8823ef13 2420M: Philippe Mathieu-Daudé <philmd@linaro.org>
10386385
PMD
2421S: Maintained
2422F: hw/isa/piix4.c
fff123b8 2423F: include/hw/southbridge/piix.h
10386385 2424
15ffb43c 2425Firmware configuration (fw_cfg)
8823ef13 2426M: Philippe Mathieu-Daudé <philmd@linaro.org>
15ffb43c
PMD
2427R: Gerd Hoffmann <kraxel@redhat.com>
2428S: Supported
2429F: docs/specs/fw_cfg.txt
8d0bceba 2430F: hw/nvram/fw_cfg*.c
b15c0f7d 2431F: stubs/fw_cfg.c
15ffb43c
PMD
2432F: include/hw/nvram/fw_cfg.h
2433F: include/standard-headers/linux/qemu_fw_cfg.h
1cf4323e 2434F: tests/qtest/libqos/fw_cfg.c
1e8a1fae 2435F: tests/qtest/fw_cfg-test.c
15ffb43c
PMD
2436T: git https://github.com/philmd/qemu.git fw_cfg-next
2437
2313abf0 2438XIVE
2313abf0
TH
2439M: Cédric Le Goater <clg@kaod.org>
2440L: qemu-ppc@nongnu.org
b0877575 2441S: Odd Fixes
2313abf0
TH
2442F: hw/*/*xive*
2443F: include/hw/*/*xive*
24563a58 2444F: docs/*/*xive*
2313abf0 2445
7bd0d13f 2446Renesas peripherals
2d53d0c7 2447R: Yoshinori Sato <ysato@users.sourceforge.jp>
7bd0d13f 2448R: Magnus Damm <magnus.damm@gmail.com>
f166061c 2449S: Odd Fixes
645194c7 2450F: hw/char/renesas_sci.c
7bd0d13f 2451F: hw/char/sh_serial.c
c7f37baf 2452F: hw/timer/renesas_*.c
7bd0d13f 2453F: hw/timer/sh_timer.c
645194c7 2454F: include/hw/char/renesas_sci.h
7bd0d13f 2455F: include/hw/sh4/sh.h
c7f37baf 2456F: include/hw/timer/renesas_*.h
7bd0d13f 2457
e78597cc 2458Renesas RX peripherals
b2744da9
PMD
2459R: Yoshinori Sato <ysato@users.sourceforge.jp>
2460S: Orphan
e78597cc 2461F: hw/intc/rx_icu.c
0c80f50f 2462F: hw/rx/
e78597cc 2463F: include/hw/intc/rx_icu.h
0c80f50f 2464F: include/hw/rx/
e78597cc 2465
de4d4adb
PP
2466CAN bus subsystem and hardware
2467M: Pavel Pisa <pisa@cmp.felk.cvut.cz>
2468M: Vikram Garhwal <fnu.vikram@xilinx.com>
2469S: Maintained
2470W: https://canbus.pages.fel.cvut.cz/
2471F: net/can/*
2472F: hw/net/can/*
2473F: include/net/can_*.h
2474
ff8cdbbd
DG
2475OpenPIC interrupt controller
2476M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
2477S: Odd Fixes
2478F: hw/intc/openpic.c
2479F: include/hw/ppc/openpic.h
2480
6cee5479 2481MIPS CPS
8823ef13 2482M: Philippe Mathieu-Daudé <philmd@linaro.org>
6cee5479
PMD
2483S: Odd Fixes
2484F: hw/misc/mips_*
2485F: include/hw/misc/mips_*
2486
2487MIPS GIC
8823ef13 2488M: Philippe Mathieu-Daudé <philmd@linaro.org>
6cee5479
PMD
2489S: Odd Fixes
2490F: hw/intc/mips_gic.c
2491F: hw/timer/mips_gictimer.c
2492F: include/hw/intc/mips_gic.h
2493F: include/hw/timer/mips_gictimer.h
2494
56e34834
CH
2495S390 3270 device
2496M: Halil Pasic <pasic@linux.ibm.com>
2497M: Christian Borntraeger <borntraeger@linux.ibm.com>
2498S: Odd fixes
2499F: include/hw/s390x/3270-ccw.h
2500F: hw/char/terminal3270.c
2501F: hw/s390x/3270-ccw.c
2502L: qemu-s390x@nongnu.org
2503
2504S390 diag 288 watchdog
2505M: Halil Pasic <pasic@linux.ibm.com>
2506M: Christian Borntraeger <borntraeger@linux.ibm.com>
2507S: Supported
2508F: hw/watchdog/wdt_diag288.c
2509F: include/hw/watchdog/wdt_diag288.h
2510L: qemu-s390x@nongnu.org
2511
2512S390 storage key device
2513M: Halil Pasic <pasic@linux.ibm.com>
2514M: Christian Borntraeger <borntraeger@linux.ibm.com>
2515S: Supported
2516F: hw/s390x/storage-keys.h
2517F: hw/390x/s390-skeys*.c
2518L: qemu-s390x@nongnu.org
2519
2520S390 storage attribute device
2521M: Halil Pasic <pasic@linux.ibm.com>
2522M: Christian Borntraeger <borntraeger@linux.ibm.com>
2523S: Supported
2524F: hw/s390x/storage-attributes.h
2525F: hw/s390/s390-stattrib*.c
2526L: qemu-s390x@nongnu.org
2527
2528S390 floating interrupt controller
2529M: Halil Pasic <pasic@linux.ibm.com>
2530M: Christian Borntraeger <borntraeger@linux.ibm.com>
2531M: David Hildenbrand <david@redhat.com>
2532S: Supported
2533F: hw/intc/s390_flic*.c
2534F: include/hw/s390x/s390_flic.h
2535L: qemu-s390x@nongnu.org
2536
5028d66c
HZZ
2537CanoKey
2538M: Hongren (Zenithal) Zheng <i@zenithal.me>
2539S: Maintained
2540R: Canokeys.org <contact@canokeys.org>
2541F: hw/usb/canokey.c
2542F: hw/usb/canokey.h
2543F: docs/system/devices/canokey.rst
2544
fd5d5c56
AL
2545Subsystems
2546----------
a8f4aee6 2547Overall Audio backends
9f575846 2548M: Gerd Hoffmann <kraxel@redhat.com>
cc99139b 2549M: Marc-André Lureau <marcandre.lureau@redhat.com>
6bc915f3 2550S: Odd Fixes
fd5d5c56 2551F: audio/
0ebe43ea
PMD
2552X: audio/alsaaudio.c
2553X: audio/coreaudio.c
2554X: audio/dsound*
2555X: audio/jackaudio.c
2556X: audio/ossaudio.c
2557X: audio/paaudio.c
2558X: audio/sdlaudio.c
663df1cc 2559X: audio/sndioaudio.c
4566d142 2560X: audio/spiceaudio.c
92a3c6aa 2561F: qapi/audio.json
fd5d5c56 2562
0ebe43ea
PMD
2563ALSA Audio backend
2564M: Gerd Hoffmann <kraxel@redhat.com>
584ab347 2565R: Christian Schoenebeck <qemu_oss@crudebyte.com>
0ebe43ea
PMD
2566S: Odd Fixes
2567F: audio/alsaaudio.c
2568
2569Core Audio framework backend
2570M: Gerd Hoffmann <kraxel@redhat.com>
8823ef13 2571M: Philippe Mathieu-Daudé <philmd@linaro.org>
584ab347 2572R: Christian Schoenebeck <qemu_oss@crudebyte.com>
4f978632 2573R: Akihiko Odaki <akihiko.odaki@daynix.com>
0ebe43ea
PMD
2574S: Odd Fixes
2575F: audio/coreaudio.c
2576
2577DSound Audio backend
2578M: Gerd Hoffmann <kraxel@redhat.com>
2579S: Odd Fixes
2580F: audio/dsound*
2581
2582JACK Audio Connection Kit backend
2583M: Gerd Hoffmann <kraxel@redhat.com>
584ab347 2584R: Christian Schoenebeck <qemu_oss@crudebyte.com>
0ebe43ea
PMD
2585S: Odd Fixes
2586F: audio/jackaudio.c
2587
2588Open Sound System (OSS) Audio backend
2589M: Gerd Hoffmann <kraxel@redhat.com>
2590S: Odd Fixes
2591F: audio/ossaudio.c
2592
2593PulseAudio backend
2594M: Gerd Hoffmann <kraxel@redhat.com>
2595S: Odd Fixes
2596F: audio/paaudio.c
2597
2598SDL Audio backend
2599M: Gerd Hoffmann <kraxel@redhat.com>
2863bd56 2600R: Thomas Huth <huth@tuxfamily.org>
0ebe43ea
PMD
2601S: Odd Fixes
2602F: audio/sdlaudio.c
2603
663df1cc
AR
2604Sndio Audio backend
2605M: Gerd Hoffmann <kraxel@redhat.com>
2606R: Alexandre Ratchov <alex@caoua.org>
2607S: Odd Fixes
2608F: audio/sndioaudio.c
2609
17f1e8f5 2610Block layer core
fd5d5c56 2611M: Kevin Wolf <kwolf@redhat.com>
b0c4798f 2612M: Hanna Reitz <hreitz@redhat.com>
c95e4c0e 2613L: qemu-block@nongnu.org
fd5d5c56
AL
2614S: Supported
2615F: block*
2616F: block/
8d8b636d 2617F: hw/block/
b885cdda
MA
2618F: qapi/block*.json
2619F: qapi/transaction.json
4c346e0b 2620F: include/block/
7f9241d8 2621F: include/sysemu/block-*.h
46078760 2622F: qemu-img*
33b2b388 2623F: docs/tools/qemu-img.rst
46078760 2624F: qemu-io*
29242091 2625F: tests/qemu-iotests/
8dd30c86 2626F: util/qemu-progress.c
0bcc8e5b 2627F: qobject/block-qdict.c
da668aa1 2628F: tests/unit/check-block-qdict.c
ebe2aad2 2629T: git https://repo.or.cz/qemu/kevin.git block
fd5d5c56 2630
c607c7fb
SH
2631Storage daemon
2632M: Kevin Wolf <kwolf@redhat.com>
2633L: qemu-block@nongnu.org
2634S: Supported
2635F: storage-daemon/
2636F: docs/interop/qemu-storage-daemon-qmp-ref.rst
2637F: docs/tools/qemu-storage-daemon.rst
2638T: git https://repo.or.cz/qemu/kevin.git block
2639
d55053b1
SH
2640Block I/O path
2641M: Stefan Hajnoczi <stefanha@redhat.com>
fe5ca46d 2642M: Fam Zheng <fam@euphon.net>
d55053b1
SH
2643L: qemu-block@nongnu.org
2644S: Supported
36c697bd
PB
2645F: util/async.c
2646F: util/aio-*.c
1f050a46
SH
2647F: util/aio-*.h
2648F: util/fdmon-*.c
d55053b1
SH
2649F: block/io.c
2650F: migration/block*
e1029ae2 2651F: include/block/aio.h
f5a53faa 2652F: include/block/aio-wait.h
0a4f9ad1 2653F: scripts/qemugdb/aio.py
da668aa1 2654F: tests/unit/test-fdmon-epoll.c
e18a8b34 2655T: git https://github.com/stefanha/qemu.git block
d55053b1 2656
e5b5728c
PB
2657Block SCSI subsystem
2658M: Paolo Bonzini <pbonzini@redhat.com>
fe5ca46d 2659R: Fam Zheng <fam@euphon.net>
e5b5728c
PB
2660L: qemu-block@nongnu.org
2661S: Supported
2662F: include/scsi/*
2663F: scsi/*
2664
280458a3 2665Block Jobs
03283d64 2666M: John Snow <jsnow@redhat.com>
9e4067b8 2667M: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
280458a3
JC
2668L: qemu-block@nongnu.org
2669S: Supported
2670F: blockjob.c
2671F: include/block/blockjob.h
33e9e9bd 2672F: job.c
1a90bc81 2673F: job-qmp.c
c468e368 2674F: include/qemu/job.h
280458a3
JC
2675F: block/backup.c
2676F: block/commit.c
77346025 2677F: block/stream.c
280458a3 2678F: block/mirror.c
bf42508f 2679F: qapi/job.json
d7beddcc 2680F: block/block-copy.c
d088e6a4
VSO
2681F: include/block/block-copy.h
2682F: block/reqlist.c
2683F: include/block/reqlist.h
d003e0ae
VSO
2684F: block/copy-before-write.h
2685F: block/copy-before-write.c
1c14eaab 2686F: block/snapshot-access.c
d7beddcc
VSO
2687F: include/block/aio_task.h
2688F: block/aio_task.c
2689F: util/qemu-co-shared-resource.c
2690F: include/qemu/co-shared-resource.h
77582e2c 2691T: git https://gitlab.com/jsnow/qemu.git jobs
9e4067b8 2692T: git https://gitlab.com/vsementsov/qemu.git block
280458a3 2693
502730ee 2694Compute Express Link
502730ee 2695M: Jonathan Cameron <jonathan.cameron@huawei.com>
3456fedb 2696R: Fan Ni <fan.ni@samsung.com>
502730ee
JC
2697S: Supported
2698F: hw/cxl/
2fcd005f 2699F: hw/mem/cxl_type3.c
502730ee
JC
2700F: include/hw/cxl/
2701
538193bc 2702Dirty Bitmaps
edb05904 2703M: Eric Blake <eblake@redhat.com>
9e4067b8 2704M: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
edb05904 2705R: John Snow <jsnow@redhat.com>
538193bc
JS
2706L: qemu-block@nongnu.org
2707S: Supported
538193bc
JS
2708F: include/qemu/hbitmap.h
2709F: include/block/dirty-bitmap.h
bb4e58c6 2710F: block/monitor/bitmap-qmp-cmds.c
00637c6b
VSO
2711F: block/dirty-bitmap.c
2712F: block/qcow2-bitmap.c
052db8e7 2713F: migration/block-dirty-bitmap.c
00637c6b 2714F: util/hbitmap.c
da668aa1 2715F: tests/unit/test-hbitmap.c
5746c1cd 2716F: docs/interop/bitmaps.rst
edb05904 2717T: git https://repo.or.cz/qemu/ericb.git bitmaps
9e4067b8 2718T: git https://gitlab.com/vsementsov/qemu.git block
538193bc 2719
61af0ee6 2720Character device backends
55fc84a7 2721M: Marc-André Lureau <marcandre.lureau@redhat.com>
2185fd67 2722R: Paolo Bonzini <pbonzini@redhat.com>
fd5d5c56 2723S: Maintained
178fe0ae 2724F: chardev/
8228e353 2725F: include/chardev/
dbeee392 2726F: qapi/char.json
fd5d5c56 2727
e26082fd
PB
2728Character Devices (Braille)
2729M: Samuel Thibault <samuel.thibault@ens-lyon.org>
2730S: Maintained
6b10e573 2731F: chardev/baum.c
fd5d5c56 2732
e94630d3
MA
2733Command line option argument parsing
2734M: Markus Armbruster <armbru@redhat.com>
2735S: Supported
2736F: include/qemu/option.h
da668aa1
TH
2737F: tests/unit/test-keyval.c
2738F: tests/unit/test-qemu-opts.c
e94630d3
MA
2739F: util/keyval.c
2740F: util/qemu-option.c
2741
8c413e79
MA
2742Coverity model
2743M: Markus Armbruster <armbru@redhat.com>
2744S: Supported
2745F: scripts/coverity-model.c
2746
9c263d07
PM
2747Coverity Scan integration
2748M: Peter Maydell <peter.maydell@linaro.org>
2749S: Maintained
2750F: scripts/coverity-scan/
2751
d24b569a 2752Device Tree
c3c962c1
AF
2753M: Alistair Francis <alistair.francis@wdc.com>
2754R: David Gibson <david@gibson.dropbear.id.au>
d24b569a 2755S: Maintained
800d4ded 2756F: softmmu/device_tree.c
82407515 2757F: include/sysemu/device_tree.h
d24b569a 2758
3505a22b
MAL
2759Dump
2760S: Supported
2761M: Marc-André Lureau <marcandre.lureau@redhat.com>
6d3da32c 2762F: dump/
3505a22b
MAL
2763F: hw/misc/vmcoreinfo.c
2764F: include/hw/misc/vmcoreinfo.h
6d3da32c 2765F: include/qemu/win_dump_defs
3505a22b
MAL
2766F: include/sysemu/dump-arch.h
2767F: include/sysemu/dump.h
d06b747b 2768F: qapi/dump.json
3505a22b
MAL
2769F: scripts/dump-guest-memory.py
2770F: stubs/dump.c
2771
4f966768
MA
2772Error reporting
2773M: Markus Armbruster <armbru@redhat.com>
2774S: Supported
2775F: include/qapi/error.h
2776F: include/qemu/error-report.h
abb3d37d 2777F: qapi/error.json
4f966768
MA
2778F: util/error.c
2779F: util/qemu-error.c
d1d3a997
VSO
2780F: scripts/coccinelle/err-bad-newline.cocci
2781F: scripts/coccinelle/error-use-after-free.cocci
2782F: scripts/coccinelle/error_propagate_null.cocci
2783F: scripts/coccinelle/remove_local_err.cocci
2784F: scripts/coccinelle/use-error_fatal.cocci
8220f3ac 2785F: scripts/coccinelle/errp-guard.cocci
4f966768 2786
fd5d5c56 2787GDB stub
c7b3e866 2788M: Alex Bennée <alex.bennee@linaro.org>
8823ef13 2789R: Philippe Mathieu-Daudé <philmd@linaro.org>
c7b3e866 2790S: Maintained
4db546d3 2791F: docs/system/gdb.rst
842b42df 2792F: gdbstub/*
0dec1016 2793F: include/exec/gdbstub.h
d96bf49b 2794F: include/gdbstub/*
fd5d5c56 2795F: gdb-xml/
51c623b0 2796F: tests/tcg/multiarch/gdbstub/
97cfba13 2797F: scripts/feature_to_c.sh
bcbc36a9 2798F: scripts/probe-gdb-support.py
fd5d5c56 2799
01a9c03c
PB
2800Memory API
2801M: Paolo Bonzini <pbonzini@redhat.com>
07b315ba
DH
2802M: Peter Xu <peterx@redhat.com>
2803M: David Hildenbrand <david@redhat.com>
8823ef13 2804R: Philippe Mathieu-Daudé <philmd@linaro.org>
01a9c03c
PB
2805S: Supported
2806F: include/exec/ioport.h
14776ab5 2807F: include/exec/memop.h
01a9c03c 2808F: include/exec/memory.h
2b1641d0 2809F: include/exec/ram_addr.h
41aa4e9f 2810F: include/exec/ramblock.h
9f04dd7f 2811F: include/sysemu/memory_mapping.h
800d4ded 2812F: softmmu/dma-helpers.c
c7f419f5
CF
2813F: softmmu/ioport.c
2814F: softmmu/memory.c
9f04dd7f 2815F: softmmu/memory_mapping.c
d9f24bf5 2816F: softmmu/physmem.c
01a9c03c 2817F: include/exec/memory-internal.h
044e2af9 2818F: scripts/coccinelle/memory-region-housekeeping.cocci
01a9c03c 2819
2fcd005f
DH
2820Memory devices
2821M: David Hildenbrand <david@redhat.com>
2822M: Igor Mammedov <imammedo@redhat.com>
2823R: Xiao Guangrong <xiaoguangrong.eric@gmail.com>
2824S: Supported
2825F: hw/mem/memory-device.c
2826F: hw/mem/nvdimm.c
2827F: hw/mem/pc-dimm.c
2828F: include/hw/mem/memory-device.h
2829F: include/hw/mem/nvdimm.h
2830F: include/hw/mem/pc-dimm.h
2831F: docs/nvdimm.txt
2832
7ee3bf03
GH
2833SPICE
2834M: Gerd Hoffmann <kraxel@redhat.com>
227b1638 2835S: Odd Fixes
6e481d57 2836F: include/ui/qemu-spice.h
438528a3 2837F: include/ui/spice-display.h
7ee3bf03
GH
2838F: ui/spice-*.c
2839F: audio/spiceaudio.c
8d8b636d 2840F: hw/display/qxl*
608cfed6 2841F: qapi/ui.json
9bd4cb35 2842F: docs/spice-port-fqdn.txt
7ee3bf03 2843
fd5d5c56 2844Graphics
25eccc37 2845M: Gerd Hoffmann <kraxel@redhat.com>
cc99139b 2846M: Marc-André Lureau <marcandre.lureau@redhat.com>
25eccc37 2847S: Odd Fixes
fd5d5c56 2848F: ui/
e220656c 2849F: include/ui/
608cfed6 2850F: qapi/ui.json
b1d38037 2851F: util/drm.c
4db546d3 2852F: docs/devel/ui.rst
fd5d5c56 2853
351f1bf6 2854Cocoa graphics
30ef3c74 2855M: Peter Maydell <peter.maydell@linaro.org>
8823ef13 2856M: Philippe Mathieu-Daudé <philmd@linaro.org>
4f978632 2857R: Akihiko Odaki <akihiko.odaki@daynix.com>
351f1bf6
AF
2858S: Odd Fixes
2859F: ui/cocoa.m
2860
fd5d5c56 2861Main loop
da26f37a
PB
2862M: Paolo Bonzini <pbonzini@redhat.com>
2863S: Maintained
48e824e0 2864F: include/exec/gen-icount.h
54d31236
MA
2865F: include/qemu/main-loop.h
2866F: include/sysemu/runstate.h
e6dba048 2867F: include/sysemu/runstate-action.h
3ecb29a3
PB
2868F: util/main-loop.c
2869F: util/qemu-timer.c
bac068e0 2870F: softmmu/vl.c
7b733862 2871F: softmmu/main.c
c7f419f5 2872F: softmmu/cpus.c
b0c3cf94 2873F: softmmu/cpu-throttle.c
740b1759
CF
2874F: softmmu/cpu-timers.c
2875F: softmmu/icount.c
bab46b81 2876F: softmmu/runstate*
0e201d34 2877F: qapi/run-state.json
fd5d5c56 2878
1b7e01d0
SH
2879Read, Copy, Update (RCU)
2880M: Paolo Bonzini <pbonzini@redhat.com>
2881S: Maintained
fc3b9dfa
PMD
2882F: docs/devel/lockcnt.txt
2883F: docs/devel/rcu.txt
1b7e01d0 2884F: include/qemu/rcu*.h
da668aa1
TH
2885F: tests/unit/rcutorture.c
2886F: tests/unit/test-rcu-*.c
1b7e01d0
SH
2887F: util/rcu.c
2888
8899b4ae 2889Human Monitor (HMP)
b8b6d3c0 2890M: Dr. David Alan Gilbert <dave@treblig.org>
fbb0621a 2891S: Maintained
5bce308a 2892F: monitor/monitor-internal.h
e84328fa 2893F: monitor/misc.c
1d95db74 2894F: monitor/monitor.c
f1b3ccfa
KW
2895F: monitor/hmp*
2896F: hmp.h
c13e9912
TH
2897F: hmp-commands*.hx
2898F: include/monitor/hmp-target.h
1e8a1fae 2899F: tests/qtest/test-hmp.c
637de4db
MA
2900F: include/qemu/qemu-print.h
2901F: util/qemu-print.c
fd5d5c56 2902
f536f112 2903Network device backends
442469e6 2904M: Jason Wang <jasowang@redhat.com>
fd5d5c56
AL
2905S: Maintained
2906F: net/
d24b2b1c 2907F: include/net/
e9bbc8bd 2908F: qemu-bridge-helper.c
e18a8b34 2909T: git https://github.com/jasowang/qemu.git net
3c0bd37d 2910F: qapi/net.json
fd5d5c56 2911
aee09baf
VM
2912Netmap network backend
2913M: Luigi Rizzo <rizzo@iet.unipi.it>
2914M: Giuseppe Lettieri <g.lettieri@iet.unipi.it>
2915M: Vincenzo Maffione <v.maffione@gmail.com>
2916W: http://info.iet.unipi.it/~luigi/netmap/
2917S: Maintained
2918F: net/netmap.c
2919
4fc264f4 2920Host Memory Backends
4ade3ea1 2921M: David Hildenbrand <david@redhat.com>
4fc264f4
EH
2922M: Igor Mammedov <imammedo@redhat.com>
2923S: Maintained
2924F: backends/hostmem*.c
2925F: include/sysemu/hostmem.h
f953c100 2926T: git https://gitlab.com/ehabkost/qemu.git machine-next
4fc264f4 2927
6034011c
GA
2928Cryptodev Backends
2929M: Gonglei <arei.gonglei@huawei.com>
2133e07c 2930M: zhenwei pi <pizhenwei@bytedance.com>
6034011c
GA
2931S: Maintained
2932F: include/sysemu/cryptodev*.h
2933F: backends/cryptodev*.c
14c9fd16 2934F: qapi/cryptodev.json
6034011c 2935
b8eaee96
JS
2936Python library
2937M: John Snow <jsnow@redhat.com>
2938M: Cleber Rosa <crosa@redhat.com>
89d38c74 2939R: Beraldo Leal <bleal@redhat.com>
b8eaee96
JS
2940S: Maintained
2941F: python/
2942T: git https://gitlab.com/jsnow/qemu.git python
2943
ad904f66 2944Python scripts
89d38c74 2945M: John Snow <jsnow@redhat.com>
ad904f66 2946M: Cleber Rosa <crosa@redhat.com>
4251dfb0 2947S: Odd Fixes
ad904f66
EH
2948F: scripts/*.py
2949F: tests/*.py
2950
f4abfc6c 2951Benchmark util
9e4067b8 2952M: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
f4abfc6c
VSO
2953S: Maintained
2954F: scripts/simplebench/
9e4067b8 2955T: git https://gitlab.com/vsementsov/qemu.git simplebench
f4abfc6c 2956
8cad15b1 2957Transactions helper
9e4067b8 2958M: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
8cad15b1
VSO
2959S: Maintained
2960F: include/qemu/transactions.h
2961F: util/transactions.c
9e4067b8 2962T: git https://gitlab.com/vsementsov/qemu.git block
8cad15b1 2963
8899b4ae 2964QAPI
9740618c 2965M: Markus Armbruster <armbru@redhat.com>
2f5f9bc8 2966M: Michael Roth <michael.roth@amd.com>
9740618c 2967S: Supported
8899b4ae 2968F: qapi/
0311c5bd 2969X: qapi/*.json
ac4abb9a
MA
2970F: include/qapi/
2971X: include/qapi/qmp/
2972F: include/qapi/qmp/dispatch.h
c0bd0b50 2973F: tests/qapi-schema/
da668aa1
TH
2974F: tests/unit/test-*-visitor.c
2975F: tests/unit/test-qapi-*.c
2976F: tests/unit/test-qmp-*.c
2977F: tests/unit/test-visitor-serialization.c
be25fcc4
MA
2978F: scripts/qapi-gen.py
2979F: scripts/qapi/*
4078ee54 2980F: docs/sphinx/qapidoc.py
c39cdbf6 2981F: docs/devel/qapi*
ebe2aad2 2982T: git https://repo.or.cz/qemu/armbru.git qapi-next
8899b4ae 2983
7810d291
LC
2984QAPI Schema
2985M: Eric Blake <eblake@redhat.com>
7810d291
LC
2986M: Markus Armbruster <armbru@redhat.com>
2987S: Supported
0311c5bd 2988F: qapi/*.json
ebe2aad2 2989T: git https://repo.or.cz/qemu/armbru.git qapi-next
7810d291 2990
f3582ba4 2991QObject
daf5dc78
MA
2992M: Markus Armbruster <armbru@redhat.com>
2993S: Supported
f3582ba4 2994F: qobject/
7735d2b5
MA
2995F: include/qapi/qmp/
2996X: include/qapi/qmp/dispatch.h
a2f3453e 2997F: scripts/coccinelle/qobject.cocci
da668aa1
TH
2998F: tests/unit/check-qdict.c
2999F: tests/unit/check-qjson.c
3000F: tests/unit/check-qlist.c
3001F: tests/unit/check-qlit.c
3002F: tests/unit/check-qnull.c
3003F: tests/unit/check-qnum.c
3004F: tests/unit/check-qobject.c
3005F: tests/unit/check-qstring.c
fe07b62c 3006F: tests/data/qobject/qdict.txt
ebe2aad2 3007T: git https://repo.or.cz/qemu/armbru.git qapi-next
f3582ba4 3008
f05d9999 3009QEMU Guest Agent
2f5f9bc8 3010M: Michael Roth <michael.roth@amd.com>
e8cbe584 3011M: Konstantin Kostiuk <kkostiuk@redhat.com>
f05d9999
MR
3012S: Maintained
3013F: qga/
27a296fc 3014F: docs/interop/qemu-ga.rst
db16115f 3015F: docs/interop/qemu-ga-ref.rst
ab7f9f7d 3016F: scripts/qemu-guest-agent/
da668aa1 3017F: tests/unit/test-qga.c
e18a8b34 3018T: git https://github.com/mdroth/qemu.git qga
f05d9999 3019
cced3a72
KK
3020QEMU Guest Agent Win32
3021M: Konstantin Kostiuk <kkostiuk@redhat.com>
3022S: Maintained
3023F: qga/*win32*
3024F: qga/vss-win32/
3025F: qga/installer/
3026T: git https://github.com/kostyanf14/qemu.git qga-win32
3027
4688c94c 3028QOM
1085d86e
PB
3029M: Paolo Bonzini <pbonzini@redhat.com>
3030R: Daniel P. Berrange <berrange@redhat.com>
24c4cd13 3031R: Eduardo Habkost <eduardo@habkost.net>
4688c94c 3032S: Supported
4db546d3 3033F: docs/devel/qom.rst
8f920054
MA
3034F: docs/qdev-device-use.txt
3035F: hw/core/qdev*
b77b5b3d
MA
3036F: hw/core/bus.c
3037F: hw/core/sysbus.c
8f920054
MA
3038F: include/hw/qdev*
3039F: include/monitor/qdev.h
4688c94c 3040F: include/qom/
c577ff62
MA
3041F: qapi/qom.json
3042F: qapi/qdev.json
22fb6eb5 3043F: scripts/coccinelle/qom-parent-type.cocci
800d4ded 3044F: softmmu/qdev-monitor.c
9b45a025 3045F: stubs/qdev.c
4688c94c 3046F: qom/
da668aa1
TH
3047F: tests/unit/check-qom-interface.c
3048F: tests/unit/check-qom-proplist.c
3049F: tests/unit/test-qdev-global-props.c
4688c94c 3050
94dfc0f3 3051QOM boilerplate conversion script
24c4cd13 3052M: Eduardo Habkost <eduardo@habkost.net>
94dfc0f3
EH
3053S: Maintained
3054F: scripts/codeconverter/
3055
8899b4ae 3056QMP
9740618c
LC
3057M: Markus Armbruster <armbru@redhat.com>
3058S: Supported
5bce308a 3059F: monitor/monitor-internal.h
f1b3ccfa 3060F: monitor/qmp*
e84328fa 3061F: monitor/misc.c
1d95db74 3062F: monitor/monitor.c
92a3c6aa 3063F: qapi/control.json
abb3d37d 3064F: qapi/error.json
92a3c6aa 3065F: qapi/introspect.json
c39cdbf6 3066F: docs/devel/*qmp-*
12b2f0d9 3067F: docs/interop/*qmp-*
9740618c 3068F: scripts/qmp/
1e8a1fae
TH
3069F: tests/qtest/qmp-test.c
3070F: tests/qtest/qmp-cmd-test.c
ebe2aad2 3071T: git https://repo.or.cz/qemu/armbru.git qapi-next
8899b4ae 3072
98a43bf0 3073qtest
98a43bf0
PB
3074M: Thomas Huth <thuth@redhat.com>
3075M: Laurent Vivier <lvivier@redhat.com>
2185fd67 3076R: Paolo Bonzini <pbonzini@redhat.com>
98a43bf0 3077S: Maintained
c7f419f5 3078F: softmmu/qtest.c
1583a389 3079F: accel/qtest/
1e8a1fae 3080F: tests/qtest/
222455ef 3081F: docs/devel/qgraph.rst
4db546d3 3082F: docs/devel/qtest.rst
520ddc18 3083X: tests/qtest/bios-tables-test*
98a43bf0 3084
5f6fd09a
AB
3085Device Fuzzing
3086M: Alexander Bulekov <alxndr@bu.edu>
3087R: Paolo Bonzini <pbonzini@redhat.com>
3088R: Bandan Das <bsd@redhat.com>
3089R: Stefan Hajnoczi <stefanha@redhat.com>
6184e5fb 3090R: Thomas Huth <thuth@redhat.com>
85221b05 3091R: Darren Kenny <darren.kenny@oracle.com>
5d32fc3b 3092R: Qiuhao Li <Qiuhao.Li@outlook.com>
5f6fd09a
AB
3093S: Maintained
3094F: tests/qtest/fuzz/
d3d39fc0 3095F: tests/qtest/fuzz-*test.c
211635b3 3096F: scripts/oss-fuzz/
230376d2 3097F: hw/mem/sparse-mem.c
f3a0208f 3098F: docs/devel/fuzzing.rst
5f6fd09a 3099
cc0100f4 3100Register API
c22e580c 3101M: Alistair Francis <alistair@alistair23.me>
cc0100f4
AF
3102S: Maintained
3103F: hw/core/register.c
3104F: include/hw/register.h
06a7b243 3105F: include/hw/registerfields.h
cc0100f4 3106
fd5d5c56 3107SLIRP
eda509fa 3108M: Samuel Thibault <samuel.thibault@ens-lyon.org>
bafc72ab 3109S: Maintained
663fb1e1 3110F: net/slirp.c
d24b2b1c 3111F: include/net/slirp.h
02cffe24 3112T: git https://people.debian.org/~sthibault/qemu.git slirp
fd5d5c56 3113
aa09b3d5
MA
3114Stats
3115S: Orphan
3116F: include/sysemu/stats.h
3117F: stats/
3118
6d0af39f
EI
3119Streams
3120M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
3121S: Maintained
3122F: hw/core/stream.c
3123F: include/hw/stream.h
3124
b1ed728a
PB
3125Stubs
3126M: Paolo Bonzini <pbonzini@redhat.com>
3127S: Maintained
3128F: stubs/
3129
598a3f35 3130Tracing
1cd0f8ce 3131M: Stefan Hajnoczi <stefanha@redhat.com>
598a3f35
SH
3132S: Maintained
3133F: trace/
0e076292 3134F: trace-events
3a8273b1 3135F: docs/qemu-option-trace.rst.inc
92a3c6aa 3136F: qapi/trace.json
f70fd8fd
LV
3137F: scripts/tracetool.py
3138F: scripts/tracetool/
62dd1048 3139F: scripts/qemu-trace-stap*
33b2b388 3140F: docs/tools/qemu-trace-stap.rst
d0fb9657 3141F: docs/devel/tracing.rst
e18a8b34 3142T: git https://github.com/stefanha/qemu.git tracing
598a3f35 3143
3859b6cf 3144TPM
1f63669e 3145M: Stefan Berger <stefanb@linux.ibm.com>
6b4f250b 3146S: Maintained
0801062c 3147F: softmmu/tpm*
3859b6cf
MA
3148F: hw/tpm/*
3149F: include/hw/acpi/tpm.h
3150F: include/sysemu/tpm*
3151F: qapi/tpm.json
8ae92e24 3152F: backends/tpm/
1e8a1fae 3153F: tests/qtest/*tpm*
4db546d3 3154F: docs/specs/tpm.rst
e18a8b34 3155T: git https://github.com/stefanberger/qemu-tpm.git tpm-next
3859b6cf 3156
14f40fdc 3157Checkpatch
14f40fdc
BS
3158S: Odd Fixes
3159F: scripts/checkpatch.pl
3160
c0787c8d
JQ
3161Migration
3162M: Juan Quintela <quintela@redhat.com>
66f8b5a5
JQ
3163R: Peter Xu <peterx@redhat.com>
3164R: Leonardo Bras <leobras@redhat.com>
c0787c8d 3165S: Maintained
107b5969
MAL
3166F: hw/core/vmstate-if.c
3167F: include/hw/vmstate-if.h
c0787c8d 3168F: include/migration/
b862888c 3169F: include/qemu/userfaultfd.h
44a1f946 3170F: migration/
c5515640
AS
3171F: scripts/vmstate-static-checker.py
3172F: tests/vmstate-static-checker-data/
1e8a1fae 3173F: tests/qtest/migration-test.c
c468e368 3174F: docs/devel/migration.rst
48685a8e 3175F: qapi/migration.json
fac87d4d 3176F: tests/migration/
b862888c 3177F: util/userfaultfd.c
c0787c8d 3178
a566907f
MAL
3179D-Bus
3180M: Marc-André Lureau <marcandre.lureau@redhat.com>
3181S: Maintained
5010cec2 3182F: backends/dbus-vmstate.c
89f4df95
MAL
3183F: ui/dbus*
3184F: audio/dbus*
a5021d69 3185F: util/dbus.c
89f4df95 3186F: include/ui/dbus*
a5021d69 3187F: include/qemu/dbus.h
89f4df95
MAL
3188F: docs/interop/dbus*
3189F: docs/sphinx/dbus*
3190F: docs/sphinx/fakedbusdoc.py
3191F: tests/qtest/dbus*
a566907f 3192
92bfedb0 3193Seccomp
e3160dea
DB
3194M: Daniel P. Berrange <berrange@redhat.com>
3195S: Odd Fixes
800d4ded 3196F: softmmu/qemu-seccomp.c
92bfedb0 3197F: include/sysemu/seccomp.h
d2ea8dac 3198F: tests/unit/test-seccomp.c
92bfedb0 3199
ddbb0d09
DB
3200Cryptography
3201M: Daniel P. Berrange <berrange@redhat.com>
3202S: Maintained
3203F: crypto/
3204F: include/crypto/
92a3c6aa 3205F: qapi/crypto.json
da668aa1 3206F: tests/unit/test-crypto-*
3b472e71 3207F: tests/bench/benchmark-crypto-*
da668aa1
TH
3208F: tests/unit/crypto-tls-*
3209F: tests/unit/pkix_asn1_tab.c
899833cd 3210F: qemu.sasl
ddbb0d09 3211
10817bf0
DB
3212Coroutines
3213M: Stefan Hajnoczi <stefanha@redhat.com>
3214M: Kevin Wolf <kwolf@redhat.com>
00a25291 3215S: Maintained
10817bf0
DB
3216F: util/*coroutine*
3217F: include/qemu/coroutine*
da668aa1 3218F: tests/unit/test-coroutine.c
10817bf0 3219
88c5f205
DB
3220Buffers
3221M: Daniel P. Berrange <berrange@redhat.com>
4251dfb0 3222S: Odd Fixes
88c5f205
DB
3223F: util/buffer.c
3224F: include/qemu/buffer.h
3225
666a3af9
DB
3226I/O Channels
3227M: Daniel P. Berrange <berrange@redhat.com>
3228S: Maintained
3229F: io/
3230F: include/io/
da668aa1 3231F: tests/unit/test-io-*
666a3af9 3232
5b76dd13
DB
3233User authorization
3234M: Daniel P. Berrange <berrange@redhat.com>
3235S: Maintained
3236F: authz/
c8c99887 3237F: qapi/authz.json
5b76dd13 3238F: include/authz/
da668aa1 3239F: tests/unit/test-authz-*
5b76dd13 3240
5614a283
GH
3241Sockets
3242M: Daniel P. Berrange <berrange@redhat.com>
5614a283
GH
3243S: Maintained
3244F: include/qemu/sockets.h
3245F: util/qemu-sockets.c
a2ff5a48 3246F: qapi/sockets.json
5614a283 3247
90e33dfe
DB
3248File monitor
3249M: Daniel P. Berrange <berrange@redhat.com>
4251dfb0 3250S: Odd Fixes
90e33dfe
DB
3251F: util/filemonitor*.c
3252F: include/qemu/filemonitor.h
da668aa1 3253F: tests/unit/test-util-filemonitor.c
90e33dfe 3254
d310d85b
AG
3255Throttling infrastructure
3256M: Alberto Garcia <berto@igalia.com>
3257S: Supported
3258F: block/throttle-groups.c
3259F: include/block/throttle-groups.h
89603938 3260F: include/qemu/throttle*.h
d310d85b 3261F: util/throttle.c
89603938 3262F: docs/throttle.txt
da668aa1 3263F: tests/unit/test-throttle.c
d310d85b
AG
3264L: qemu-block@nongnu.org
3265
080d7aac 3266UUID
fe5ca46d 3267M: Fam Zheng <fam@euphon.net>
080d7aac
FZ
3268S: Supported
3269F: util/uuid.c
3270F: include/qemu/uuid.h
da668aa1 3271F: tests/unit/test-uuid.c
080d7aac 3272
50186051
LS
3273Yank feature
3274M: Lukas Straub <lukasstraub2@web.de>
3275S: Odd fixes
3276F: util/yank.c
1a92d6d5 3277F: migration/yank_functions*
d3a0bb77 3278F: tests/unit/test-yank.c
50186051
LS
3279F: include/qemu/yank.h
3280F: qapi/yank.json
3281
a4cc318e 3282COLO Framework
2ac7d741 3283M: Hailiang Zhang <zhanghailiang@xfusion.com>
a4cc318e
HZ
3284S: Maintained
3285F: migration/colo*
3286F: include/migration/colo.h
3287F: include/migration/failover.h
3288F: docs/COLO-FT.txt
3289
88f82ed1 3290COLO Proxy
c6bf50ff 3291M: Zhang Chen <chen.zhang@intel.com>
2ece6e64 3292M: Li Zhijian <lizhijian@fujitsu.com>
88f82ed1
ZC
3293S: Supported
3294F: docs/colo-proxy.txt
3295F: net/colo*
3296F: net/filter-rewriter.c
3297F: net/filter-mirror.c
487cf3f2 3298F: tests/qtest/test-filter*
88f82ed1 3299
62258201
PD
3300Record/replay
3301M: Pavel Dovgalyuk <pavel.dovgaluk@ispras.ru>
3302R: Paolo Bonzini <pbonzini@redhat.com>
70b7fba9 3303W: https://wiki.qemu.org/Features/record-replay
62258201
PD
3304S: Supported
3305F: replay/*
3306F: block/blkreplay.c
3307F: net/filter-replay.c
5b5968c4 3308F: include/exec/replay-core.h
62258201 3309F: include/sysemu/replay.h
4db546d3
TH
3310F: docs/devel/replay.rst
3311F: docs/system/replay.rst
62258201 3312F: stubs/replay.c
bbbd9b6e
WR
3313F: tests/avocado/replay_kernel.py
3314F: tests/avocado/replay_linux.py
3315F: tests/avocado/reverse_debugging.py
43d7e1d7 3316F: qapi/replay.json
62258201 3317
eecf5eed
PX
3318IOVA Tree
3319M: Peter Xu <peterx@redhat.com>
3320S: Maintained
3321F: include/qemu/iova-tree.h
3322F: util/iova-tree.c
3323
5ee547bb
VP
3324elf2dmp
3325M: Viktor Prutyanov <viktor.prutyanov@phystech.edu>
3326S: Maintained
3327F: contrib/elf2dmp/
3328
93198b6c
CM
3329I2C and SMBus
3330M: Corey Minyard <cminyard@mvista.com>
3331S: Maintained
3332F: hw/i2c/core.c
3333F: hw/i2c/smbus_slave.c
3334F: hw/i2c/smbus_master.c
3335F: hw/i2c/smbus_eeprom.c
3336F: include/hw/i2c/i2c.h
3337F: include/hw/i2c/smbus_master.h
3338F: include/hw/i2c/smbus_slave.h
3339F: include/hw/i2c/smbus_eeprom.h
3340
bf0e0c70
TR
3341PMBus
3342M: Titus Rwantare <titusr@google.com>
3343S: Maintained
3344F: hw/i2c/pmbus_device.c
3345F: hw/sensor/adm1272.c
ffcdae67 3346F: hw/sensor/isl_pmbus_vr.c
bf0e0c70
TR
3347F: hw/sensor/max34451.c
3348F: include/hw/i2c/pmbus_device.h
ffcdae67 3349F: include/hw/sensor/isl_pmbus_vr.h
bf0e0c70
TR
3350F: tests/qtest/adm1272-test.c
3351F: tests/qtest/max34451-test.c
ffcdae67 3352F: tests/qtest/isl_pmbus_vr-test.c
bf0e0c70 3353
d0d89526 3354Firmware schema specifications
8823ef13 3355M: Philippe Mathieu-Daudé <philmd@linaro.org>
d0d89526
PMD
3356R: Daniel P. Berrange <berrange@redhat.com>
3357R: Kashyap Chamarthy <kchamart@redhat.com>
3358S: Maintained
3359F: docs/interop/firmware.json
3360
6739df3f 3361EDK2 Firmware
8823ef13 3362M: Philippe Mathieu-Daudé <philmd@linaro.org>
9b437cd0 3363M: Gerd Hoffmann <kraxel@redhat.com>
6739df3f 3364S: Supported
b5b31860 3365F: hw/i386/*ovmf*
6739df3f
LE
3366F: pc-bios/descriptors/??-edk2-*.json
3367F: pc-bios/edk2-*
3368F: roms/Makefile.edk2
3369F: roms/edk2
3370F: roms/edk2-*
3371F: tests/data/uefi-boot-images/
3372F: tests/uefi-test-tools/
3373
8bc43f39
PX
3374VT-d Emulation
3375M: Michael S. Tsirkin <mst@redhat.com>
3376M: Peter Xu <peterx@redhat.com>
3377R: Jason Wang <jasowang@redhat.com>
3378S: Supported
3379F: hw/i386/intel_iommu.c
3380F: hw/i386/intel_iommu_internal.h
3381F: include/hw/i386/intel_iommu.h
3382
2f5a2b35
PMD
3383AMD-Vi Emulation
3384S: Orphan
3385F: hw/i386/amd_iommu.?
3386
e92fb016
BM
3387OpenSBI Firmware
3388M: Bin Meng <bmeng.cn@gmail.com>
3389S: Supported
3390F: pc-bios/opensbi-*
3391F: .gitlab-ci.d/opensbi.yml
3392F: .gitlab-ci.d/opensbi/
3393
59c7a187
LM
3394Clock framework
3395M: Luc Michel <luc@lmichel.fr>
1d7e6727 3396R: Damien Hedde <damien.hedde@dahe.fr>
59c7a187
LM
3397S: Maintained
3398F: include/hw/clock.h
3399F: include/hw/qdev-clock.h
3400F: hw/core/clock.c
3401F: hw/core/clock-vmstate.c
3402F: hw/core/qdev-clock.c
3403F: docs/devel/clocks.rst
3404
fd5d5c56
AL
3405Usermode Emulation
3406------------------
6347e1f1 3407Overall usermode emulation
486bbe5f
PB
3408M: Riku Voipio <riku.voipio@iki.fi>
3409S: Maintained
58410666 3410F: accel/tcg/user-exec*.c
bbf15aaf
RH
3411F: include/user/
3412F: common-user/
486bbe5f 3413
fd5d5c56 3414BSD user
65a9d380
WL
3415M: Warner Losh <imp@bsdimp.com>
3416R: Kyle Evans <kevans@freebsd.org>
3417S: Maintained
fd5d5c56 3418F: bsd-user/
812b31d3 3419F: configs/targets/*-bsd-user.mak
adbae40f 3420F: tests/vm/*bsd
65a9d380 3421T: git https://github.com/qemu-bsd-user/qemu-bsd-user bsd-user-rebase-3.1
fd5d5c56 3422
fd5d5c56 3423Linux user
8f902c54 3424M: Laurent Vivier <laurent@vivier.eu>
fd5d5c56
AL
3425S: Maintained
3426F: linux-user/
812b31d3 3427F: configs/targets/*linux-user.mak
e5dd9875 3428F: scripts/qemu-binfmt-conf.sh
e3a6c825 3429F: scripts/update-syscalltbl.sh
57333330 3430F: scripts/update-mips-syscall-args.sh
382ae67a 3431F: scripts/gensyscalls.sh
42f5a7e9
AJ
3432
3433Tiny Code Generator (TCG)
3434-------------------------
6347e1f1 3435Common TCG code
336f744e 3436M: Richard Henderson <richard.henderson@linaro.org>
42f5a7e9
AJ
3437S: Maintained
3438F: tcg/
d3582cfd 3439F: include/tcg/
42f5a7e9 3440
22b5867b
AB
3441TCG Plugins
3442M: Alex Bennée <alex.bennee@linaro.org>
3d7caf14 3443R: Alexandre Iooss <erdnaxe@crans.org>
a6b95a97 3444R: Mahmoud Mandour <ma.mandourr@gmail.com>
22b5867b 3445S: Maintained
8ea6abf0 3446F: docs/devel/tcg-plugins.rst
22b5867b 3447F: plugins/
c17a386b 3448F: tests/plugin/
bbbd9b6e 3449F: tests/avocado/tcg_plugins.py
c17a386b 3450F: contrib/plugins/
22b5867b 3451
6347e1f1 3452AArch64 TCG target
3e5a01ef 3453M: Richard Henderson <richard.henderson@linaro.org>
b25a464c 3454S: Maintained
b4f2bd1c 3455L: qemu-arm@nongnu.org
b25a464c
CF
3456F: tcg/aarch64/
3457
6347e1f1 3458ARM TCG target
7c6ef61a 3459M: Richard Henderson <richard.henderson@linaro.org>
42f5a7e9 3460S: Maintained
b4f2bd1c 3461L: qemu-arm@nongnu.org
42f5a7e9
AJ
3462F: tcg/arm/
3463
6347e1f1 3464i386 TCG target
336f744e 3465M: Richard Henderson <richard.henderson@linaro.org>
42f5a7e9
AJ
3466S: Maintained
3467F: tcg/i386/
3468
afa33258
WX
3469LoongArch64 TCG target
3470M: WANG Xuerui <git@xen0n.name>
3471S: Maintained
3472F: tcg/loongarch64/
3473
6347e1f1 3474MIPS TCG target
8823ef13 3475M: Philippe Mathieu-Daudé <philmd@linaro.org>
099d510b 3476R: Aurelien Jarno <aurelien@aurel32.net>
dab1e1e1 3477R: Huacai Chen <chenhuacai@kernel.org>
15d983de 3478R: Jiaxun Yang <jiaxun.yang@flygoat.com>
97d89746 3479R: Aleksandar Rikalo <aleksandar.rikalo@syrmia.com>
cf960317 3480S: Odd Fixes
42f5a7e9
AJ
3481F: tcg/mips/
3482
6347e1f1 3483PPC TCG target
336f744e 3484M: Richard Henderson <richard.henderson@linaro.org>
15610d42 3485S: Odd Fixes
42f5a7e9 3486F: tcg/ppc/
42f5a7e9 3487
6347e1f1 3488RISC-V TCG target
c1677bcc 3489M: Palmer Dabbelt <palmer@dabbelt.com>
fb1f70f3
AF
3490M: Alistair Francis <Alistair.Francis@wdc.com>
3491L: qemu-riscv@nongnu.org
3492S: Maintained
3493F: tcg/riscv/
3494F: disas/riscv.c
3495
6347e1f1 3496S390 TCG target
336f744e 3497M: Richard Henderson <richard.henderson@linaro.org>
42f5a7e9
AJ
3498S: Maintained
3499F: tcg/s390/
146bd283 3500L: qemu-s390x@nongnu.org
42f5a7e9 3501
6347e1f1 3502SPARC TCG target
297e8005 3503S: Odd Fixes
6d0b52ed 3504F: tcg/sparc64/
c17652ee 3505F: disas/sparc.c
bc75c9e5 3506
6347e1f1 3507TCI TCG target
bc75c9e5
SW
3508M: Stefan Weil <sw@weilnetz.de>
3509S: Maintained
8ef9cd55 3510F: tcg/tci/
752a2ae2 3511F: tcg/tci.c
c17652ee 3512F: disas/tci.c
aa09c951 3513
f05b328c
SH
3514Block drivers
3515-------------
3516VMDK
fe5ca46d 3517M: Fam Zheng <fam@euphon.net>
c95e4c0e 3518L: qemu-block@nongnu.org
f05b328c
SH
3519S: Supported
3520F: block/vmdk.c
3521
3522RBD
0725570b 3523M: Ilya Dryomov <idryomov@gmail.com>
6d2f38eb 3524R: Peter Lieven <pl@kamp.de>
280458a3 3525L: qemu-block@nongnu.org
f05b328c
SH
3526S: Supported
3527F: block/rbd.c
3528
f05b328c 3529VHDX
5f5246b6 3530M: Jeff Cody <codyprime@gmail.com>
280458a3 3531L: qemu-block@nongnu.org
f05b328c
SH
3532S: Supported
3533F: block/vhdx*
3534
3535VDI
3536M: Stefan Weil <sw@weilnetz.de>
c95e4c0e 3537L: qemu-block@nongnu.org
f05b328c
SH
3538S: Maintained
3539F: block/vdi.c
3540
fd66dbd4
SH
3541blkio
3542M: Stefan Hajnoczi <stefanha@redhat.com>
3543L: qemu-block@nongnu.org
3544S: Maintained
3545F: block/blkio.c
3546
f05b328c
SH
3547iSCSI
3548M: Ronnie Sahlberg <ronniesahlberg@gmail.com>
3549M: Paolo Bonzini <pbonzini@redhat.com>
3550M: Peter Lieven <pl@kamp.de>
c95e4c0e 3551L: qemu-block@nongnu.org
2185fd67 3552S: Odd Fixes
f05b328c 3553F: block/iscsi.c
2deb63c2 3554F: block/iscsi-opts.c
f05b328c 3555
99c62e70
EB
3556Network Block Device (NBD)
3557M: Eric Blake <eblake@redhat.com>
9e4067b8 3558M: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
99c62e70
EB
3559L: qemu-block@nongnu.org
3560S: Maintained
3561F: block/nbd*
3562F: nbd/
3563F: include/block/nbd*
3564F: qemu-nbd.*
3565F: blockdev-nbd.c
3229a835 3566F: docs/interop/nbd.txt
33b2b388 3567F: docs/tools/qemu-nbd.rst
58a6fdcc 3568F: tests/qemu-iotests/tests/*nbd*
ebe2aad2 3569T: git https://repo.or.cz/qemu/ericb.git nbd
9e4067b8 3570T: git https://gitlab.com/vsementsov/qemu.git block
99c62e70 3571
6542aa9c
PL
3572NFS
3573M: Peter Lieven <pl@kamp.de>
280458a3 3574L: qemu-block@nongnu.org
6542aa9c
PL
3575S: Maintained
3576F: block/nfs.c
3577
f05b328c
SH
3578SSH
3579M: Richard W.M. Jones <rjones@redhat.com>
280458a3 3580L: qemu-block@nongnu.org
f05b328c
SH
3581S: Supported
3582F: block/ssh.c
c9a12e75 3583
280458a3 3584CURL
280458a3 3585L: qemu-block@nongnu.org
5c6090fa 3586S: Odd Fixes
280458a3 3587F: block/curl.c
280458a3
JC
3588
3589GLUSTER
280458a3 3590L: qemu-block@nongnu.org
5c6090fa
TH
3591L: integration@gluster.org
3592S: Odd Fixes
280458a3 3593F: block/gluster.c
b5e9476c 3594
199667a8 3595Null Block Driver
fe5ca46d 3596M: Fam Zheng <fam@euphon.net>
199667a8
FZ
3597L: qemu-block@nongnu.org
3598S: Supported
3599F: block/null.c
3600
bdd6a90a 3601NVMe Block Driver
1a949789
SH
3602M: Stefan Hajnoczi <stefanha@redhat.com>
3603R: Fam Zheng <fam@euphon.net>
8823ef13 3604R: Philippe Mathieu-Daudé <philmd@linaro.org>
bdd6a90a
FZ
3605L: qemu-block@nongnu.org
3606S: Supported
3607F: block/nvme*
dc0b4d94 3608F: include/block/nvme.h
1a949789 3609T: git https://github.com/stefanha/qemu.git block
bdd6a90a 3610
b5e9476c
GA
3611Bootdevice
3612M: Gonglei <arei.gonglei@huawei.com>
3613S: Maintained
800d4ded 3614F: softmmu/bootdevice.c
ecdda9e0
AG
3615
3616Quorum
3617M: Alberto Garcia <berto@igalia.com>
3618S: Supported
3619F: block/quorum.c
3620L: qemu-block@nongnu.org
e7c6e631 3621
bfcc224e
AV
3622blklogwrites
3623M: Ari Sundholm <ari@tuxera.com>
3624L: qemu-block@nongnu.org
3625S: Supported
3626F: block/blklogwrites.c
3627
e7c6e631
SH
3628blkverify
3629M: Stefan Hajnoczi <stefanha@redhat.com>
3630L: qemu-block@nongnu.org
3631S: Supported
3632F: block/blkverify.c
3633
3634bochs
3635M: Stefan Hajnoczi <stefanha@redhat.com>
3636L: qemu-block@nongnu.org
3637S: Supported
3638F: block/bochs.c
3639
3640cloop
3641M: Stefan Hajnoczi <stefanha@redhat.com>
3642L: qemu-block@nongnu.org
3643S: Supported
3644F: block/cloop.c
3645
3646dmg
3647M: Stefan Hajnoczi <stefanha@redhat.com>
3648L: qemu-block@nongnu.org
3649S: Supported
3650F: block/dmg.c
3651
3652parallels
3653M: Stefan Hajnoczi <stefanha@redhat.com>
f3073712 3654M: Denis V. Lunev <den@openvz.org>
e7c6e631
SH
3655L: qemu-block@nongnu.org
3656S: Supported
3657F: block/parallels.c
a960c4b4 3658F: block/parallels-ext.c
5746c1cd 3659F: docs/interop/parallels.txt
e7c6e631
SH
3660
3661qed
3662M: Stefan Hajnoczi <stefanha@redhat.com>
3663L: qemu-block@nongnu.org
3664S: Supported
3665F: block/qed.c
3666
3667raw
3668M: Kevin Wolf <kwolf@redhat.com>
3669L: qemu-block@nongnu.org
3670S: Supported
3671F: block/linux-aio.c
f586d5fc 3672F: include/block/raw-aio.h
2e6fc7eb 3673F: block/raw-format.c
c1bb86cd
EB
3674F: block/file-posix.c
3675F: block/file-win32.c
e7c6e631
SH
3676F: block/win32-aio.c
3677
6663a0a3
AM
3678Linux io_uring
3679M: Aarushi Mehta <mehta.aaru20@gmail.com>
3680M: Julia Suvorova <jusual@redhat.com>
3681M: Stefan Hajnoczi <stefanha@redhat.com>
0ef28014 3682R: Stefano Garzarella <sgarzare@redhat.com>
6663a0a3
AM
3683L: qemu-block@nongnu.org
3684S: Maintained
3685F: block/io_uring.c
06a47ef5 3686F: stubs/io_uring.c
6663a0a3 3687
e7c6e631
SH
3688qcow2
3689M: Kevin Wolf <kwolf@redhat.com>
b0c4798f 3690M: Hanna Reitz <hreitz@redhat.com>
e7c6e631
SH
3691L: qemu-block@nongnu.org
3692S: Supported
3693F: block/qcow2*
b24f9882 3694F: docs/interop/qcow2.txt
e7c6e631
SH
3695
3696qcow
3697M: Kevin Wolf <kwolf@redhat.com>
3698L: qemu-block@nongnu.org
3699S: Supported
3700F: block/qcow.c
3701
3702blkdebug
3703M: Kevin Wolf <kwolf@redhat.com>
b0c4798f 3704M: Hanna Reitz <hreitz@redhat.com>
e7c6e631
SH
3705L: qemu-block@nongnu.org
3706S: Supported
3707F: block/blkdebug.c
3708
3709vpc
3710M: Kevin Wolf <kwolf@redhat.com>
3711L: qemu-block@nongnu.org
3712S: Supported
3713F: block/vpc.c
3714
3715vvfat
3716M: Kevin Wolf <kwolf@redhat.com>
3717L: qemu-block@nongnu.org
4b7c5bc4 3718S: Odd Fixes
e7c6e631 3719F: block/vvfat.c
abfe4e94
SH
3720
3721Image format fuzzer
3722M: Stefan Hajnoczi <stefanha@redhat.com>
3723L: qemu-block@nongnu.org
3724S: Supported
3725F: tests/image-fuzzer/
717171bd 3726
8675a376
CX
3727Vhost-user block device backend server
3728M: Coiby Xu <Coiby.Xu@gmail.com>
3729S: Maintained
3730F: block/export/vhost-user-blk-server.c
80a06cc5 3731F: block/export/vhost-user-blk-server.h
5c368029
XY
3732F: block/export/virtio-blk-handler.c
3733F: block/export/virtio-blk-handler.h
80a06cc5 3734F: include/qemu/vhost-user-server.h
8675a376 3735F: tests/qtest/libqos/vhost-user-blk.c
80695202
CX
3736F: tests/qtest/libqos/vhost-user-blk.h
3737F: tests/qtest/vhost-user-blk-test.c
80a06cc5 3738F: util/vhost-user-server.c
8675a376 3739
0c9b70d5 3740FUSE block device exports
b0c4798f 3741M: Hanna Reitz <hreitz@redhat.com>
0c9b70d5
HR
3742L: qemu-block@nongnu.org
3743S: Supported
3744F: block/export/fuse.c
3745
2a2359b8 3746VDUSE library and block device exports
a6caeee8
XY
3747M: Xie Yongji <xieyongji@bytedance.com>
3748S: Maintained
3749F: subprojects/libvduse/
2a2359b8
XY
3750F: block/export/vduse-blk.c
3751F: block/export/vduse-blk.h
a6caeee8 3752
049105a3 3753Replication
205f8618 3754M: Wen Congyang <wencongyang2@huawei.com>
3ccc0a01 3755M: Xie Changlong <xiechanglong.d@gmail.com>
049105a3
CX
3756S: Supported
3757F: replication*
3758F: block/replication.c
da668aa1 3759F: tests/unit/test-replication.c
049105a3
CX
3760F: docs/block-replication.txt
3761
a3defabb 3762PVRDMA
bfffeac8 3763M: Yuval Shaia <yuval.shaia.ml@gmail.com>
fe355cbd 3764M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
a3defabb
MA
3765S: Maintained
3766F: hw/rdma/*
3767F: hw/rdma/vmw/*
3768F: docs/pvrdma.txt
a5d2f6f8 3769F: contrib/rdmacm-mux/*
4a5c9903 3770F: qapi/rdma.json
a3defabb 3771
b052fec8
AB
3772Semihosting
3773M: Alex Bennée <alex.bennee@linaro.org>
b052fec8 3774S: Maintained
8df9f0c3 3775F: semihosting/
6b5fe137 3776F: include/semihosting/
3539d84d 3777F: tests/tcg/multiarch/arm-compat-semi/
b904a909 3778F: tests/tcg/aarch64/system/semiheap.c
b052fec8 3779
8684f1be
JJ
3780Multi-process QEMU
3781M: Elena Ufimtseva <elena.ufimtseva@oracle.com>
3782M: Jagannathan Raman <jag.raman@oracle.com>
3783M: John G Johnson <john.g.johnson@oracle.com>
3784S: Maintained
3785F: docs/devel/multi-process.rst
639090d8 3786F: docs/system/multi-process.rst
6fbd84d6
JR
3787F: hw/pci-host/remote.c
3788F: include/hw/pci-host/remote.h
3f0e7e57
JR
3789F: hw/remote/machine.c
3790F: include/hw/remote/machine.h
ad22c308
EU
3791F: hw/remote/mpqemu-link.c
3792F: include/hw/remote/mpqemu-link.h
48b06f50 3793F: hw/remote/message.c
c7d80c7c 3794F: hw/remote/remote-obj.c
ed5d0019
JR
3795F: include/hw/remote/memory.h
3796F: hw/remote/memory.c
9f811207
EU
3797F: hw/remote/proxy.c
3798F: include/hw/remote/proxy.h
c746b74a
JR
3799F: hw/remote/proxy-memory-listener.c
3800F: include/hw/remote/proxy-memory-listener.h
bd36adb8
JR
3801F: hw/remote/iohub.c
3802F: include/hw/remote/iohub.h
55116968 3803F: subprojects/libvfio-user
8f9a9259 3804F: hw/remote/vfio-user-obj.c
08cf3dc6 3805F: include/hw/remote/vfio-user-obj.h
253007d1
JR
3806F: hw/remote/iommu.c
3807F: include/hw/remote/iommu.h
8684f1be 3808
90322e64
AM
3809EBPF:
3810M: Jason Wang <jasowang@redhat.com>
3811R: Andrew Melnychenko <andrew@daynix.com>
3812R: Yuri Benditovich <yuri.benditovich@daynix.com>
3813S: Maintained
3814F: ebpf/*
3815F: tools/ebpf/*
3816
b9e02c06
AB
3817Build and test automation
3818-------------------------
9872ba0a 3819Build and test automation, general continuous integration
b9e02c06 3820M: Alex Bennée <alex.bennee@linaro.org>
8823ef13 3821M: Philippe Mathieu-Daudé <philmd@linaro.org>
9872ba0a
TH
3822M: Thomas Huth <thuth@redhat.com>
3823R: Wainer dos Santos Moschetta <wainersm@redhat.com>
40525be5 3824R: Beraldo Leal <bleal@redhat.com>
e70dc7f8 3825S: Maintained
e7c2d743 3826F: .github/workflows/lockdown.yml
9872ba0a
TH
3827F: .gitlab-ci.yml
3828F: .gitlab-ci.d/
b9e02c06 3829F: .travis.yml
04250c69 3830F: scripts/ci/
e70dc7f8 3831F: tests/docker/
18023821 3832F: tests/vm/
3260f4e6 3833F: tests/lcitool/
267fe57c 3834F: tests/avocado/tuxrun_baselines.py
54dbfd85 3835F: scripts/archive-source.sh
4db546d3 3836F: docs/devel/testing.rst
9872ba0a 3837W: https://gitlab.com/qemu-project/qemu/pipelines
e70dc7f8 3838W: https://travis-ci.org/qemu/qemu
717171bd 3839
7162fbb4
EM
3840FreeBSD Hosted Continuous Integration
3841M: Ed Maste <emaste@freebsd.org>
3842M: Li-Wen Hsu <lwhsu@freebsd.org>
7162fbb4 3843S: Maintained
5be6fd0c
TH
3844F: .gitlab-ci.d/cirrus/freebsd*
3845F: tests/vm/freebsd
7162fbb4
EM
3846W: https://cirrus-ci.com/github/qemu/qemu
3847
daee8de3
YL
3848Windows Hosted Continuous Integration
3849M: Yonggang Luo <luoyonggang@gmail.com>
3850S: Maintained
da80f11e 3851F: .gitlab-ci.d/windows.yml
daee8de3 3852
7e97017e
AB
3853Guest Test Compilation Support
3854M: Alex Bennée <alex.bennee@linaro.org>
8823ef13 3855R: Philippe Mathieu-Daudé <philmd@linaro.org>
00a25291 3856S: Maintained
162f9164 3857F: tests/tcg/Makefile.target
7e97017e 3858
bbbd9b6e 3859Integration Testing with the Avocado framework
6634f1c4
PMD
3860W: https://trello.com/b/6Qi1pxVn/avocado-qemu
3861R: Cleber Rosa <crosa@redhat.com>
8823ef13 3862R: Philippe Mathieu-Daudé <philmd@linaro.org>
6634f1c4 3863R: Wainer dos Santos Moschetta <wainersm@redhat.com>
40525be5 3864R: Beraldo Leal <bleal@redhat.com>
6634f1c4 3865S: Odd Fixes
bbbd9b6e 3866F: tests/avocado/
6634f1c4 3867
1e970158
PMD
3868GitLab custom runner (Works On Arm Sponsored)
3869M: Alex Bennée <alex.bennee@linaro.org>
8823ef13 3870M: Philippe Mathieu-Daudé <philmd@linaro.org>
1e970158 3871S: Maintained
66dca267
AB
3872F: .gitlab-ci.d/custom-runners/ubuntu-22.04-aarch64.yml
3873F: .gitlab-ci.d/custom-runners/ubuntu-22.04-aarch32.yml
1e970158 3874
717171bd
DB
3875Documentation
3876-------------
3877Build system architecture
3878M: Daniel P. Berrange <berrange@redhat.com>
3879S: Odd Fixes
551bdfa0 3880F: docs/devel/build-system.rst
8a49e97f 3881
92329a7e
AB
3882GIT Data Mining Config
3883M: Alex Bennée <alex.bennee@linaro.org>
3884S: Odd Fixes
3885F: gitdm.config
3886F: contrib/gitdm/*
3887
b02c9bc3
MA
3888Incompatible changes
3889R: libvir-list@redhat.com
a476b216 3890F: docs/about/deprecated.rst
b02c9bc3 3891
aef45d51
DB
3892Build System
3893------------
48fad83f
AB
3894Meson
3895M: Paolo Bonzini <pbonzini@redhat.com>
3896R: Marc-André Lureau <marcandre.lureau@redhat.com>
3897R: Daniel P. Berrange <berrange@redhat.com>
3898R: Thomas Huth <thuth@redhat.com>
3899R: Philippe Mathieu-Daudé <philmd@linaro.org>
3900S: Maintained
3901F: meson.build
3902F: meson_options.txt
3903F: scripts/meson-buildoptions.*
3904F: scripts/check_sparse.py
3905F: scripts/symlink-install-tree.py
3906
3907Top Level Makefile and configure
3908M: Paolo Bonzini <pbonzini@redhat.com>
3909R: Alex Bennée <alex.bennee@linaro.org>
3910R: Thomas Huth <thuth@redhat.com>
3911S: Maintained
3912F: Makefile
3913F: configure
3914F: scripts/mtest2make.py
3915F: tests/Makefile.include
3916
2f38ff79
PB
3917Kconfig
3918M: Paolo Bonzini <pbonzini@redhat.com>
3919S: Maintained
3920F: scripts/minikconf.py
3921F: docs/devel/kconfig.rst
3922F: Kconfig*
3923F: */Kconfig*
3924F: hw/*/Kconfig*
3925F: target/*/Kconfig*
3926
aef45d51
DB
3927GIT submodules
3928M: Daniel P. Berrange <berrange@redhat.com>
3929S: Odd Fixes
3930F: scripts/git-submodule.sh
c10e01b9 3931
ef45a392 3932UI translations
4251dfb0 3933S: Orphan
ef45a392
AM
3934F: po/*.po
3935
c10e01b9
PM
3936Sphinx documentation configuration and build machinery
3937M: Peter Maydell <peter.maydell@linaro.org>
3938S: Maintained
3939F: docs/conf.py
3940F: docs/*/conf.py
4078ee54 3941F: docs/sphinx/
13f934e7 3942F: docs/_templates/
53fb8bfb
AM
3943
3944Miscellaneous
3945-------------
3946Performance Tools and Tests
3947M: Ahmed Karaman <ahmedkhaledkaraman@gmail.com>
3948S: Maintained
3949F: scripts/performance/
899c3fc2
AB
3950
3951Code Coverage Tools
3952M: Alex Bennée <alex.bennee@linaro.org>
3953S: Odd Fixes
3954F: scripts/coverage/