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