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