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