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