]> git.proxmox.com Git - mirror_qemu.git/blame - MAINTAINERS
Merge remote-tracking branch 'remotes/cohuck/tags/s390x-20200430' into staging
[mirror_qemu.git] / MAINTAINERS
CommitLineData
b6f97c14
FB
1QEMU Maintainers
2================
3
fd5d5c56
AL
4The intention of this file is not to establish who owns what portions of the
5code base, but to provide a set of names that developers can consult when they
6have a question about a particular subset and also to provide a set of names
7to be CC'd when submitting a patch to obtain appropriate review.
3cd9acb4 8
fd5d5c56
AL
9In general, if you have a question about inclusion of a patch, you should
10consult qemu-devel and not any specific individual privately.
b6f97c14 11
fd5d5c56
AL
12Descriptions of section entries:
13
14 M: Mail patches to: FullName <address@domain>
9436e082
CH
15 Maintainers are looking after a certain area and must be CCed on
16 patches. They are considered the main contact point.
fdf6fab4
PM
17 R: Designated reviewer: FullName <address@domain>
18 These reviewers should be CCed on patches.
9436e082
CH
19 Reviewers are familiar with the subject matter and provide feedback
20 even though they are not maintainers.
fd5d5c56 21 L: Mailing list that is relevant to this area
9436e082 22 These lists should be CCed on patches.
fd5d5c56
AL
23 W: Web-page with status/info
24 Q: Patchwork web based patch tracking system site
25 T: SCM tree type and location. Type is one of: git, hg, quilt, stgit.
26 S: Status, one of the following:
27 Supported: Someone is actually paid to look after this.
28 Maintained: Someone actually looks after it.
29 Odd Fixes: It has a maintainer but they don't have time to do
c91bbffb 30 much other than throw the odd patch in. See below.
fd5d5c56
AL
31 Orphan: No current maintainer [but maybe you could take the
32 role as you write your new code].
33 Obsolete: Old code. Something tagged obsolete generally means
34 it has been replaced by a better system and you
35 should be using that.
36 F: Files and directories with wildcard patterns.
37 A trailing slash includes all files and subdirectory files.
38 F: drivers/net/ all files in and below drivers/net
39 F: drivers/net/* all files in drivers/net, but not below
40 F: */net/* all files in "any top level directory"/net
41 One pattern per line. Multiple F: lines acceptable.
42 X: Files and directories that are NOT maintained, same rules as F:
43 Files exclusions are tested before file matches.
44 Can be useful for excluding a specific subdirectory, for instance:
45 F: net/
46 X: net/ipv6/
47 matches all files in and below net excluding net/ipv6/
48 K: Keyword perl extended regex pattern to match content in a
49 patch or file. For instance:
50 K: of_get_profile
51 matches patches or files that contain "of_get_profile"
52 K: \b(printk|pr_(info|err))\b
53 matches patches or files that contain one or more of the words
54 printk, pr_info or pr_err
55 One regex pattern per line. Multiple K: lines acceptable.
56
57
58General Project Administration
59------------------------------
ff0d4876 60M: Peter Maydell <peter.maydell@linaro.org>
fd5d5c56 61
c9a19d5b
SW
62All patches CC here
63L: qemu-devel@nongnu.org
64F: *
65F: */
66
62622c11 67Responsible Disclosure, Reporting Security Issues
84995ea2 68-------------------------------------------------
70b7fba9 69W: https://wiki.qemu.org/SecurityProcess
62622c11 70M: Michael S. Tsirkin <mst@redhat.com>
62622c11
MT
71L: secalert@redhat.com
72
936c2230
LV
73Trivial patches
74---------------
75Trivial patches
76M: Michael Tokarev <mjt@tls.msk.ru>
77M: Laurent Vivier <laurent@vivier.eu>
78S: Maintained
79L: qemu-trivial@nongnu.org
80K: ^Subject:.*(?i)trivial
81T: git git://git.corpit.ru/qemu.git trivial-patches
e18a8b34 82T: git https://github.com/vivier/qemu.git trivial-patches
936c2230 83
daf14ce3
CH
84Architecture support
85--------------------
6347e1f1 86S390 general architecture support
daf14ce3
CH
87M: Cornelia Huck <cohuck@redhat.com>
88S: Supported
89F: default-configs/s390x-softmmu.mak
90F: gdb-xml/s390*.xml
91F: hw/char/sclp*.[hc]
92F: hw/char/terminal3270.c
93F: hw/intc/s390_flic.c
94F: hw/intc/s390_flic_kvm.c
95F: hw/s390x/
2fe2942c 96F: hw/vfio/ap.c
daf14ce3
CH
97F: hw/vfio/ccw.c
98F: hw/watchdog/wdt_diag288.c
99F: include/hw/s390x/
100F: include/hw/watchdog/wdt_diag288.h
101F: pc-bios/s390-ccw/
102F: pc-bios/s390-ccw.img
103F: target/s390x/
f58f084e
CH
104F: docs/system/target-s390x.rst
105F: docs/system/s390x/
a1c993c3 106F: tests/migration/s390x/
daf14ce3 107K: ^Subject:.*(?i)s390x?
e18a8b34 108T: git https://github.com/cohuck/qemu.git s390-next
daf14ce3
CH
109L: qemu-s390x@nongnu.org
110
84995ea2
MA
111Guest CPU cores (TCG)
112---------------------
6347e1f1 113Overall TCG CPUs
2b1641d0 114M: Richard Henderson <rth@twiddle.net>
2185fd67 115R: Paolo Bonzini <pbonzini@redhat.com>
2b1641d0 116S: Maintained
2b1641d0 117F: cpus.c
2b1641d0 118F: exec.c
c6a88dda 119F: accel/tcg/
9681ad3e 120F: accel/stubs/tcg-stub.c
55fd1892 121F: scripts/decodetree.py
3fdbf5d6 122F: docs/devel/decodetree.rst
2b1641d0
PB
123F: include/exec/cpu*.h
124F: include/exec/exec-all.h
486bbe5f 125F: include/exec/helper*.h
2b1641d0 126F: include/exec/tb-hash.h
460423d3 127F: include/sysemu/cpus.h
14a48c1d 128F: include/sysemu/tcg.h
486bbe5f 129
1badb586
PM
130FPU emulation
131M: Aurelien Jarno <aurelien@aurel32.net>
132M: Peter Maydell <peter.maydell@linaro.org>
0636e4d8
AB
133M: Alex Bennée <alex.bennee@linaro.org>
134S: Maintained
1badb586
PM
135F: fpu/
136F: include/fpu/
0636e4d8 137F: tests/fp/
1badb586 138
6347e1f1 139Alpha TCG CPUs
8d6df264
RH
140M: Richard Henderson <rth@twiddle.net>
141S: Maintained
fcf5ef2a 142F: target/alpha/
c0bd0b50 143F: tests/tcg/alpha/
c17652ee 144F: disas/alpha.c
b6f97c14 145
6347e1f1 146ARM TCG CPUs
1ce9ce6a 147M: Peter Maydell <peter.maydell@linaro.org>
b4f2bd1c 148L: qemu-arm@nongnu.org
fd5d5c56 149S: Maintained
fcf5ef2a 150F: target/arm/
c348722c 151F: tests/tcg/arm/
29e0436e 152F: tests/tcg/aarch64/
8d8b636d
PB
153F: hw/arm/
154F: hw/cpu/a*mpcore.c
f7e242d6 155F: include/hw/cpu/a*mpcore.h
c17652ee
PB
156F: disas/arm.c
157F: disas/arm-a64.cc
158F: disas/libvixl/
c11a8e89 159F: docs/system/target-arm.rst
fd5d5c56 160
49154ea0
EA
161ARM SMMU
162M: Eric Auger <eric.auger@redhat.com>
163L: qemu-arm@nongnu.org
164S: Maintained
165F: hw/arm/smmu*
166F: include/hw/arm/smmu*
167
6347e1f1 168CRIS TCG CPUs
fd5d5c56
AL
169M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
170S: Maintained
fcf5ef2a 171F: target/cris/
8d8b636d 172F: hw/cris/
c9b90090 173F: include/hw/cris/
c0bd0b50 174F: tests/tcg/cris/
c17652ee 175F: disas/cris.c
fd5d5c56 176
6347e1f1 177HPPA (PA-RISC) TCG CPUs
61766fe9
RH
178M: Richard Henderson <rth@twiddle.net>
179S: Maintained
180F: target/hppa/
61461802 181F: hw/hppa/
61766fe9 182F: disas/hppa.c
376b8519
HD
183F: hw/net/*i82596*
184F: include/hw/net/lasi_82596.h
61766fe9 185
6347e1f1 186LM32 TCG CPUs
07bf23a7
MW
187M: Michael Walle <michael@walle.cc>
188S: Maintained
fcf5ef2a 189F: target/lm32/
4eab7a0a 190F: disas/lm32.c
8d8b636d 191F: hw/lm32/
4eab7a0a
MW
192F: hw/*/lm32_*
193F: hw/*/milkymist-*
70cc0c1f 194F: include/hw/display/milkymist_tmu2.h
4eab7a0a
MW
195F: include/hw/char/lm32_juart.h
196F: include/hw/lm32/
c0bd0b50 197F: tests/tcg/lm32/
07bf23a7 198
6347e1f1 199M68K TCG CPUs
595a926d
LV
200M: Laurent Vivier <laurent@vivier.eu>
201S: Maintained
fcf5ef2a 202F: target/m68k/
e9a56114 203F: disas/m68k.c
fd5d5c56 204
6347e1f1 205MicroBlaze TCG CPUs
fd5d5c56
AL
206M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
207S: Maintained
fcf5ef2a 208F: target/microblaze/
8d8b636d 209F: hw/microblaze/
c17652ee 210F: disas/microblaze.c
fd5d5c56 211
6347e1f1 212MIPS TCG CPUs
0eac70b0 213M: Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
099d510b 214R: Aurelien Jarno <aurelien@aurel32.net>
63640d6a 215R: Aleksandar Rikalo <aleksandar.rikalo@rt-rk.com>
6f640917 216S: Maintained
fcf5ef2a 217F: target/mips/
10a9794d 218F: default-configs/*mips*
d02d5fff 219F: disas/*mips*
1bf84a1e 220F: docs/system/cpu-models-mips.rst.inc
0f865314 221F: hw/intc/mips_gic.c
8d8b636d 222F: hw/mips/
5995db88 223F: hw/misc/mips_*
5995db88 224F: hw/timer/mips_gictimer.c
0f865314 225F: include/hw/intc/mips_gic.h
5995db88
TH
226F: include/hw/mips/
227F: include/hw/misc/mips_*
5995db88 228F: include/hw/timer/mips_gictimer.h
5d480ddd 229F: tests/acceptance/linux_ssh_mips_malta.py
c0ac595b 230F: tests/acceptance/machine_mips_malta.py
c0bd0b50 231F: tests/tcg/mips/
09684557 232K: ^Subject:.*(?i)mips
fd5d5c56 233
6347e1f1 234Moxie TCG CPUs
d15a9c23
AG
235M: Anthony Green <green@moxielogic.com>
236S: Maintained
fcf5ef2a 237F: target/moxie/
c17652ee 238F: disas/moxie.c
a3ccdfb5
TH
239F: hw/moxie/
240F: default-configs/moxie-softmmu.mak
d15a9c23 241
6347e1f1 242NiosII TCG CPUs
e671711c
MV
243M: Chris Wulff <crwulff@gmail.com>
244M: Marek Vasut <marex@denx.de>
245S: Maintained
246F: target/nios2/
247F: hw/nios2/
15e10756 248F: hw/intc/nios2_iic.c
e671711c 249F: disas/nios2.c
15e10756 250F: default-configs/nios2-softmmu.mak
e671711c 251
6347e1f1 252OpenRISC TCG CPUs
1d7cf18d
SH
253M: Stafford Horne <shorne@gmail.com>
254S: Odd Fixes
fcf5ef2a 255F: target/openrisc/
945dad6d 256F: hw/openrisc/
c0bd0b50 257F: tests/tcg/openrisc/
945dad6d 258
6347e1f1 259PowerPC TCG CPUs
b4daafbd 260M: David Gibson <david@gibson.dropbear.id.au>
a6c98685 261L: qemu-ppc@nongnu.org
fd5d5c56 262S: Maintained
fcf5ef2a 263F: target/ppc/
8d8b636d 264F: hw/ppc/
b5d55020 265F: include/hw/ppc/
c17652ee 266F: disas/ppc.c
fd5d5c56 267
6347e1f1 268RISC-V TCG CPUs
c1677bcc 269M: Palmer Dabbelt <palmer@dabbelt.com>
a17a61f3 270M: Alistair Francis <Alistair.Francis@wdc.com>
4dc62b15
MC
271M: Sagar Karandikar <sagark@eecs.berkeley.edu>
272M: Bastian Koppelmann <kbastian@mail.uni-paderborn.de>
a094b354 273L: qemu-riscv@nongnu.org
7b91ae7d 274S: Supported
4dc62b15
MC
275F: target/riscv/
276F: hw/riscv/
277F: include/hw/riscv/
f936eac8 278F: linux-user/host/riscv32/
511f3138 279F: linux-user/host/riscv64/
4dc62b15 280
a4f34ecc
YS
281RENESAS RX CPUs
282M: Yoshinori Sato <ysato@users.sourceforge.jp>
283S: Maintained
284F: target/rx/
285
6347e1f1 286S390 TCG CPUs
2b35e93f 287M: Richard Henderson <rth@twiddle.net>
ced01bb7 288M: David Hildenbrand <david@redhat.com>
fd5d5c56 289S: Maintained
fcf5ef2a 290F: target/s390x/
8d8b636d 291F: hw/s390x/
c17652ee 292F: disas/s390.c
276ba120 293F: tests/tcg/s390x/
146bd283 294L: qemu-s390x@nongnu.org
fd5d5c56 295
6347e1f1 296SH4 TCG CPUs
ddb13561 297M: Aurelien Jarno <aurelien@aurel32.net>
2c9b7d1a 298S: Odd Fixes
fcf5ef2a 299F: target/sh4/
8d8b636d 300F: hw/sh4/
c17652ee 301F: disas/sh4.c
8a90f900 302F: include/hw/sh4/
fd5d5c56 303
6347e1f1 304SPARC TCG CPUs
f2416d3a 305M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
2c742bf7 306M: Artyom Tarasenko <atar4qemu@gmail.com>
fd5d5c56 307S: Maintained
fcf5ef2a 308F: target/sparc/
8d8b636d
PB
309F: hw/sparc/
310F: hw/sparc64/
84dbe974 311F: include/hw/sparc/sparc64.h
c17652ee 312F: disas/sparc.c
fd5d5c56 313
6347e1f1 314UniCore32 TCG CPUs
a6ea7b4c
AF
315M: Guan Xuetao <gxt@mprc.pku.edu.cn>
316S: Maintained
fcf5ef2a 317F: target/unicore32/
8d8b636d 318F: hw/unicore32/
47b98d59 319F: include/hw/unicore32/
a6ea7b4c 320
6347e1f1 321X86 TCG CPUs
d46d72fd
PB
322M: Paolo Bonzini <pbonzini@redhat.com>
323M: Richard Henderson <rth@twiddle.net>
e1a04339 324M: Eduardo Habkost <ehabkost@redhat.com>
b203a4ba 325S: Maintained
fcf5ef2a 326F: target/i386/
4132431f 327F: tests/tcg/i386/
3a082ec0 328F: tests/tcg/x86_64/
8d8b636d 329F: hw/i386/
c17652ee 330F: disas/i386.c
1bf84a1e 331F: docs/system/cpu-models-x86.rst.inc
e18a8b34 332T: git https://github.com/ehabkost/qemu.git x86-next
fd5d5c56 333
6347e1f1 334Xtensa TCG CPUs
16e7caae 335M: Max Filippov <jcmvbkbc@gmail.com>
b8105d21 336W: http://wiki.osll.ru/doku.php?id=etc:users:jcmvbkbc:qemu-target-xtensa
16e7caae 337S: Maintained
fcf5ef2a 338F: target/xtensa/
8d8b636d 339F: hw/xtensa/
c0bd0b50 340F: tests/tcg/xtensa/
5a6539e6 341F: disas/xtensa.c
895e4897
MF
342F: include/hw/xtensa/xtensa-isa.h
343F: default-configs/xtensa*.mak
16e7caae 344
6347e1f1 345TriCore TCG CPUs
48e06fe0
BK
346M: Bastian Koppelmann <kbastian@mail.uni-paderborn.de>
347S: Maintained
fcf5ef2a 348F: target/tricore/
48e06fe0 349F: hw/tricore/
d46d14e6 350F: include/hw/tricore/
48e06fe0 351
dd28bebd
AB
352Multiarch Linux User Tests
353M: Alex Bennée <alex.bennee@linaro.org>
00a25291 354S: Maintained
dd28bebd
AB
355F: tests/tcg/multiarch/
356
84995ea2
MA
357Guest CPU Cores (KVM)
358---------------------
6347e1f1 359Overall KVM CPUs
c6d559d9 360M: Paolo Bonzini <pbonzini@redhat.com>
fd5d5c56
AL
361L: kvm@vger.kernel.org
362S: Supported
fd5d5c56 363F: */kvm.*
1962cb20 364F: accel/kvm/
9681ad3e
TH
365F: accel/stubs/kvm-stub.c
366F: include/hw/kvm/
a95e9a48 367F: include/sysemu/kvm*.h
9681ad3e 368F: scripts/kvm/kvm_flightrecorder
fd5d5c56 369
6347e1f1 370ARM KVM CPUs
ed4659d1 371M: Peter Maydell <peter.maydell@linaro.org>
b4f2bd1c 372L: qemu-arm@nongnu.org
ed4659d1 373S: Maintained
fcf5ef2a 374F: target/arm/kvm.c
ed4659d1 375
6347e1f1 376MIPS KVM CPUs
0eac70b0 377M: Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
134f7f7d 378S: Odd Fixes
fcf5ef2a 379F: target/mips/kvm.c
a31896c4 380
6347e1f1 381PPC KVM CPUs
bba8e23a 382M: David Gibson <david@gibson.dropbear.id.au>
fd5d5c56 383S: Maintained
fcf5ef2a 384F: target/ppc/kvm.c
fd5d5c56 385
6347e1f1 386S390 KVM CPUs
7c8e2647 387M: Halil Pasic <pasic@linux.ibm.com>
c1976ae7 388M: Cornelia Huck <cohuck@redhat.com>
7c8e2647 389M: Christian Borntraeger <borntraeger@de.ibm.com>
0922e8c0 390S: Supported
fcf5ef2a 391F: target/s390x/kvm.c
040078e0
DH
392F: target/s390x/kvm_s390x.h
393F: target/s390x/kvm-stub.c
fcf5ef2a
TH
394F: target/s390x/ioinst.[ch]
395F: target/s390x/machine.c
74b4c74d 396F: target/s390x/sigp.c
8b3410de
CH
397F: target/s390x/cpu_features*.[ch]
398F: target/s390x/cpu_models.[ch]
c3347ed0
JF
399F: hw/s390x/pv.c
400F: include/hw/s390x/pv.h
4277af19
CH
401F: hw/intc/s390_flic.c
402F: hw/intc/s390_flic_kvm.c
403F: include/hw/s390x/s390_flic.h
c5bfb202 404F: gdb-xml/s390*.xml
e18a8b34
SH
405T: git https://github.com/cohuck/qemu.git s390-next
406T: git https://github.com/borntraeger/qemu.git s390-next
146bd283 407L: qemu-s390x@nongnu.org
fd5d5c56 408
6347e1f1 409X86 KVM CPUs
d46d72fd 410M: Paolo Bonzini <pbonzini@redhat.com>
fd5d5c56
AL
411M: Marcelo Tosatti <mtosatti@redhat.com>
412L: kvm@vger.kernel.org
413S: Supported
fcf5ef2a 414F: target/i386/kvm.c
9681ad3e 415F: scripts/kvm/vmxcap
fd5d5c56 416
674fc21f
RB
417X86 HVF CPUs
418M: Roman Bolshakov <r.bolshakov@yadro.com>
419S: Maintained
420F: accel/stubs/hvf-stub.c
421F: target/i386/hvf/
422F: include/sysemu/hvf.h
423
c220cdec
SM
424WHPX CPUs
425M: Sunil Muthuswamy <sunilmut@microsoft.com>
426S: Supported
427F: target/i386/whpx-all.c
428F: target/i386/whp-dispatch.h
429F: accel/stubs/whpx-stub.c
430F: include/sysemu/whpx.h
431
84995ea2
MA
432Guest CPU Cores (Xen)
433---------------------
6347e1f1 434X86 Xen CPUs
3623c57e
SS
435M: Stefano Stabellini <sstabellini@kernel.org>
436M: Anthony Perard <anthony.perard@citrix.com>
784e9727 437M: Paul Durrant <paul@xen.org>
6d06220a 438L: xen-devel@lists.xenproject.org
8a6b0cd7 439S: Supported
8a6b0cd7 440F: */xen*
b827891d 441F: hw/9pfs/xen-9p*
c92451c2
PB
442F: hw/char/xen_console.c
443F: hw/display/xenfb.c
444F: hw/net/xen_nic.c
758af9cf 445F: hw/usb/xen-usb.c
1a72d9ae 446F: hw/block/xen*
4ea7d1a7 447F: hw/block/dataplane/xen*
c92451c2
PB
448F: hw/xen/
449F: hw/xenpv/
9027ac50 450F: hw/i386/xen/
1401897c 451F: hw/pci-host/xen_igd_pt.c
fcab2b46 452F: include/hw/block/dataplane/xen*
c92451c2 453F: include/hw/xen/
9027ac50 454F: include/sysemu/xen-mapcache.h
8a6b0cd7 455
6c94b952
CX
456Guest CPU Cores (HAXM)
457---------------------
458X86 HAXM CPUs
459M: Wenchao Wang <wenchao.wang@intel.com>
460M: Colin Xu <colin.xu@intel.com>
461L: haxm-team@intel.com
462W: https://github.com/intel/haxm/issues
463S: Maintained
464F: include/sysemu/hax.h
465F: target/i386/hax-*
466
84995ea2
MA
467Hosts
468-----
1bdd6874 469LINUX
f5fecb49
PMD
470M: Michael S. Tsirkin <mst@redhat.com>
471M: Cornelia Huck <cohuck@redhat.com>
472M: Paolo Bonzini <pbonzini@redhat.com>
1bdd6874 473S: Maintained
1bdd6874 474F: linux-headers/
f5fecb49 475F: scripts/update-linux-headers.sh
1bdd6874
SW
476
477POSIX
f3f0204d 478M: Paolo Bonzini <pbonzini@redhat.com>
1bdd6874 479S: Maintained
f3f0204d
PMD
480F: os-posix.c
481F: include/sysemu/os-posix.h
482F: util/*posix*.c
483F: include/qemu/*posix*.h
1bdd6874 484
3c2bdbc1 485NETBSD
3c2bdbc1
KR
486M: Kamil Rytarowski <kamil@netbsd.org>
487S: Maintained
1b61270b 488K: ^Subject:.*(?i)NetBSD
3c2bdbc1 489
0a773d55 490OPENBSD
0a773d55
BS
491M: Brad Smith <brad@comstyle.com>
492S: Maintained
493K: ^Subject:.*(?i)OpenBSD
494
1bdd6874 495W32, W64
1bdd6874
SW
496M: Stefan Weil <sw@weilnetz.de>
497S: Maintained
498F: *win32*
03972660
TH
499F: */*win32*
500F: include/*/*win32*
501X: qga/*win32*
885bdc95 502F: qemu.nsi
1bdd6874 503
b250d04a 504Alpha Machines
84995ea2 505--------------
b250d04a
PMD
506M: Richard Henderson <rth@twiddle.net>
507S: Maintained
508F: hw/alpha/
7bea0dd4 509F: hw/isa/smc37c669-superio.c
8d8a8ab5 510F: tests/tcg/alpha/system/
b250d04a 511
fd5d5c56
AL
512ARM Machines
513------------
84291fe7 514Allwinner-a10
85b4d5da 515M: Beniamino Galvani <b.galvani@gmail.com>
a00d7f20 516M: Peter Maydell <peter.maydell@linaro.org>
b4f2bd1c 517L: qemu-arm@nongnu.org
a00d7f20 518S: Odd Fixes
85b4d5da
BG
519F: hw/*/allwinner*
520F: include/hw/*/allwinner*
84291fe7
LG
521F: hw/arm/cubieboard.c
522
740dafc0
NL
523Allwinner-h3
524M: Niek Linnenbank <nieklinnenbank@gmail.com>
525L: qemu-arm@nongnu.org
526S: Maintained
527F: hw/*/allwinner-h3*
528F: include/hw/*/allwinner-h3*
b0c96666 529F: hw/arm/orangepi.c
0553ef42 530F: docs/system/orangepi.rst
740dafc0 531
e5a6a6e6 532ARM PrimeCell and CMSDK devices
06271000 533M: Peter Maydell <peter.maydell@linaro.org>
b4f2bd1c 534L: qemu-arm@nongnu.org
06271000
PB
535S: Maintained
536F: hw/char/pl011.c
c6427ff7 537F: include/hw/char/pl011.h
06271000
PB
538F: hw/display/pl110*
539F: hw/dma/pl080.c
aa74e355 540F: include/hw/dma/pl080.h
06271000
PB
541F: hw/dma/pl330.c
542F: hw/gpio/pl061.c
543F: hw/input/pl050.c
544F: hw/intc/pl190.c
545F: hw/sd/pl181.c
1d52866f
PM
546F: hw/ssi/pl022.c
547F: include/hw/ssi/pl022.h
877c181c
PMD
548F: hw/rtc/pl031.c
549F: include/hw/rtc/pl031.h
06271000 550F: include/hw/arm/primecell.h
e5a6a6e6
PM
551F: hw/timer/cmsdk-apb-timer.c
552F: include/hw/timer/cmsdk-apb-timer.h
4f4c6206
PM
553F: hw/timer/cmsdk-apb-dualtimer.c
554F: include/hw/timer/cmsdk-apb-dualtimer.h
e5a6a6e6
PM
555F: hw/char/cmsdk-apb-uart.c
556F: include/hw/char/cmsdk-apb-uart.h
050c2ea0
PM
557F: hw/watchdog/cmsdk-apb-watchdog.c
558F: include/hw/watchdog/cmsdk-apb-watchdog.h
0d4a7551
PM
559F: hw/misc/tz-ppc.c
560F: include/hw/misc/tz-ppc.h
344f4b15
PM
561F: hw/misc/tz-mpc.c
562F: include/hw/misc/tz-mpc.h
211e701d
PM
563F: hw/misc/tz-msc.c
564F: include/hw/misc/tz-msc.h
06271000
PB
565
566ARM cores
567M: Peter Maydell <peter.maydell@linaro.org>
b4f2bd1c 568L: qemu-arm@nongnu.org
06271000
PB
569S: Maintained
570F: hw/intc/arm*
571F: hw/intc/gic_internal.h
572F: hw/misc/a9scu.c
573F: hw/misc/arm11scu.c
b7f30114 574F: hw/misc/arm_l2x0.c
06271000 575F: hw/timer/a9gtimer*
c6427ff7
PMD
576F: hw/timer/arm*
577F: include/hw/arm/arm*.h
06271000
PB
578F: include/hw/intc/arm*
579F: include/hw/misc/a9scu.h
580F: include/hw/misc/arm11scu.h
581F: include/hw/timer/a9gtimer.h
582F: include/hw/timer/arm_mptimer.h
c6427ff7 583F: include/hw/timer/armv7m_systick.h
1e8a1fae 584F: tests/qtest/test-arm-mptimer.c
06271000 585
fc63dcff 586Exynos
f44c5c67 587M: Igor Mitsyanko <i.mitsyanko@gmail.com>
a00d7f20 588M: Peter Maydell <peter.maydell@linaro.org>
b4f2bd1c 589L: qemu-arm@nongnu.org
a00d7f20 590S: Odd Fixes
8d8b636d 591F: hw/*/exynos*
ed0db866 592F: include/hw/arm/exynos4210.h
fc63dcff 593
766fd09f 594Calxeda Highbank
9ef137ca 595M: Rob Herring <robh@kernel.org>
a00d7f20 596M: Peter Maydell <peter.maydell@linaro.org>
b4f2bd1c 597L: qemu-arm@nongnu.org
a00d7f20 598S: Odd Fixes
8d8b636d
PB
599F: hw/arm/highbank.c
600F: hw/net/xgmac.c
766fd09f 601
9082f121
AP
602Canon DIGIC
603M: Antony Pavlov <antonynpavlov@gmail.com>
a00d7f20 604M: Peter Maydell <peter.maydell@linaro.org>
b4f2bd1c 605L: qemu-arm@nongnu.org
a00d7f20 606S: Odd Fixes
9082f121
AP
607F: include/hw/arm/digic.h
608F: hw/*/digic*
7ad5f2d1 609F: include/hw/*/digic*
9082f121 610
9c8fdcec
AP
611Goldfish RTC
612M: Anup Patel <anup.patel@wdc.com>
613M: Alistair Francis <Alistair.Francis@wdc.com>
614L: qemu-riscv@nongnu.org
615S: Maintained
616F: hw/rtc/goldfish_rtc.c
617F: include/hw/rtc/goldfish_rtc.h
618
fd5d5c56 619Gumstix
a00d7f20
PM
620M: Peter Maydell <peter.maydell@linaro.org>
621R: Philippe Mathieu-Daudé <f4bug@amsat.org>
b4f2bd1c 622L: qemu-arm@nongnu.org
1f7161d2 623S: Odd Fixes
8d8b636d 624F: hw/arm/gumstix.c
fd5d5c56 625
123a069a
TH
626i.MX25 PDK
627M: Peter Maydell <peter.maydell@linaro.org>
628R: Jean-Christophe Dubois <jcd@tribudubois.net>
629L: qemu-arm@nongnu.org
630S: Odd Fixes
631F: hw/arm/fsl-imx25.c
632F: hw/arm/imx25_pdk.c
633F: hw/misc/imx25_ccm.c
634F: include/hw/arm/fsl-imx25.h
635F: include/hw/misc/imx25_ccm.h
636
95a5db3a 637i.MX31 (kzm)
0325559d 638M: Peter Chubb <peter.chubb@nicta.com.au>
a00d7f20 639M: Peter Maydell <peter.maydell@linaro.org>
b4f2bd1c 640L: qemu-arm@nongnu.org
95a5db3a 641S: Odd Fixes
8d8b636d 642F: hw/arm/kzm.c
95a5db3a
TH
643F: hw/*/imx_*
644F: hw/*/*imx31*
645F: include/hw/*/imx_*
646F: include/hw/*/*imx31*
0325559d 647
fd5d5c56 648Integrator CP
1ce9ce6a 649M: Peter Maydell <peter.maydell@linaro.org>
b4f2bd1c 650L: qemu-arm@nongnu.org
fd5d5c56 651S: Maintained
8d8b636d 652F: hw/arm/integratorcp.c
f7e242d6 653F: hw/misc/arm_integrator_debug.c
b7f30114 654F: include/hw/misc/arm_integrator_debug.h
5e0ac7e0 655F: tests/acceptance/machine_arm_integratorcp.py
c11a8e89 656F: docs/system/arm/integratorcp.rst
fd5d5c56 657
95a5db3a
TH
658MCIMX6UL EVK / i.MX6ul
659M: Peter Maydell <peter.maydell@linaro.org>
660R: Jean-Christophe Dubois <jcd@tribudubois.net>
661L: qemu-arm@nongnu.org
662S: Odd Fixes
663F: hw/arm/mcimx6ul-evk.c
664F: hw/arm/fsl-imx6ul.c
665F: hw/misc/imx6ul_ccm.c
666F: include/hw/arm/fsl-imx6ul.h
667F: include/hw/misc/imx6ul_ccm.h
668
669MCIMX7D SABRE / i.MX7
670M: Peter Maydell <peter.maydell@linaro.org>
671R: Andrey Smirnov <andrew.smirnov@gmail.com>
672L: qemu-arm@nongnu.org
673S: Odd Fixes
674F: hw/arm/mcimx7d-sabre.c
675F: hw/arm/fsl-imx7.c
b7f30114 676F: hw/misc/imx7_*.c
95a5db3a 677F: include/hw/arm/fsl-imx7.h
b7f30114 678F: include/hw/misc/imx7_*.h
95a5db3a
TH
679F: hw/pci-host/designware.c
680F: include/hw/pci-host/designware.h
681
e5a6a6e6
PM
682MPS2
683M: Peter Maydell <peter.maydell@linaro.org>
684L: qemu-arm@nongnu.org
685S: Maintained
686F: hw/arm/mps2.c
0d4a7551
PM
687F: hw/arm/mps2-tz.c
688F: hw/misc/mps2-*.c
689F: include/hw/misc/mps2-*.h
6eee5d24
PM
690F: hw/arm/armsse.c
691F: include/hw/arm/armsse.h
c56c5760
PMD
692F: hw/misc/iotkit-secctl.c
693F: include/hw/misc/iotkit-secctl.h
75750e4d
PM
694F: hw/misc/iotkit-sysctl.c
695F: include/hw/misc/iotkit-sysctl.h
c667a25b
PM
696F: hw/misc/iotkit-sysinfo.c
697F: include/hw/misc/iotkit-sysinfo.h
5aeb3689
PM
698F: hw/misc/armsse-cpuid.c
699F: include/hw/misc/armsse-cpuid.h
cdf63440
PM
700F: hw/misc/armsse-mhu.c
701F: include/hw/misc/armsse-mhu.h
e5a6a6e6 702
8f69a4c1
PM
703Musca
704M: Peter Maydell <peter.maydell@linaro.org>
705L: qemu-arm@nongnu.org
706S: Maintained
707F: hw/arm/musca.c
708
fd5d5c56
AL
709Musicpal
710M: Jan Kiszka <jan.kiszka@web.de>
a00d7f20 711M: Peter Maydell <peter.maydell@linaro.org>
b4f2bd1c 712L: qemu-arm@nongnu.org
a00d7f20 713S: Odd Fixes
8d8b636d 714F: hw/arm/musicpal.c
c11a8e89 715F: docs/system/arm/musicpal.rst
fd5d5c56
AL
716
717nSeries
718M: Andrzej Zaborowski <balrogg@gmail.com>
a00d7f20 719M: Peter Maydell <peter.maydell@linaro.org>
b4f2bd1c 720L: qemu-arm@nongnu.org
a00d7f20 721S: Odd Fixes
8d8b636d 722F: hw/arm/nseries.c
8a08cc71 723F: hw/display/blizzard.c
b7f30114
TH
724F: hw/input/lm832x.c
725F: hw/input/tsc2005.c
726F: hw/misc/cbus.c
6a648a5f 727F: hw/rtc/twl92230.c
8a08cc71 728F: include/hw/display/blizzard.h
a331dd02 729F: include/hw/input/tsc2xxx.h
e8fa3958 730F: include/hw/misc/cbus.h
050a82f0 731F: tests/acceptance/machine_arm_n8x0.py
c11a8e89 732F: docs/system/arm/nseries.rst
fd5d5c56
AL
733
734Palm
735M: Andrzej Zaborowski <balrogg@gmail.com>
a00d7f20 736M: Peter Maydell <peter.maydell@linaro.org>
b4f2bd1c 737L: qemu-arm@nongnu.org
a00d7f20 738S: Odd Fixes
8d8b636d 739F: hw/arm/palm.c
b7f30114 740F: hw/input/tsc210x.c
a331dd02 741F: include/hw/input/tsc2xxx.h
c11a8e89 742F: docs/system/arm/palm.rst
fd5d5c56 743
95a5db3a
TH
744Raspberry Pi
745M: Peter Maydell <peter.maydell@linaro.org>
746R: Andrew Baumann <Andrew.Baumann@microsoft.com>
747R: Philippe Mathieu-Daudé <f4bug@amsat.org>
748L: qemu-arm@nongnu.org
749S: Odd Fixes
123a069a 750F: hw/arm/raspi.c
95a5db3a
TH
751F: hw/arm/raspi_platform.h
752F: hw/*/bcm283*
753F: include/hw/arm/raspi*
754F: include/hw/*/bcm283*
755
fd5d5c56 756Real View
1ce9ce6a 757M: Peter Maydell <peter.maydell@linaro.org>
b4f2bd1c 758L: qemu-arm@nongnu.org
fd5d5c56 759S: Maintained
8d8b636d 760F: hw/arm/realview*
f7e242d6 761F: hw/cpu/realview_mpcore.c
5ea53049
PB
762F: hw/intc/realview_gic.c
763F: include/hw/intc/realview_gic.h
c11a8e89 764F: docs/system/arm/realview.rst
fd5d5c56 765
9b31bff0 766PXA2XX
fd5d5c56 767M: Andrzej Zaborowski <balrogg@gmail.com>
a00d7f20 768M: Peter Maydell <peter.maydell@linaro.org>
b4f2bd1c 769L: qemu-arm@nongnu.org
a00d7f20 770S: Odd Fixes
9b31bff0 771F: hw/arm/mainstone.c
8d8b636d 772F: hw/arm/spitz.c
9b31bff0
PB
773F: hw/arm/tosa.c
774F: hw/arm/z2.c
775F: hw/*/pxa2xx*
123a069a
TH
776F: hw/display/tc6393xb.c
777F: hw/gpio/max7310.c
778F: hw/gpio/zaurus.c
f7e242d6 779F: hw/misc/mst_fpga.c
b7f30114 780F: hw/misc/max111x.c
ed0db866 781F: include/hw/arm/pxa.h
123a069a 782F: include/hw/arm/sharpsl.h
ee2ccc57 783F: include/hw/display/tc6393xb.h
c11a8e89 784F: docs/system/arm/xscale.rst
fd5d5c56 785
95a5db3a
TH
786SABRELITE / i.MX6
787M: Peter Maydell <peter.maydell@linaro.org>
788R: Jean-Christophe Dubois <jcd@tribudubois.net>
789L: qemu-arm@nongnu.org
790S: Odd Fixes
791F: hw/arm/sabrelite.c
792F: hw/arm/fsl-imx6.c
b7f30114 793F: hw/misc/imx6_*.c
95a5db3a 794F: hw/ssi/imx_spi.c
0701a5ef
GR
795F: hw/usb/imx-usb-phy.c
796F: include/hw/usb/imx-usb-phy.h
95a5db3a 797F: include/hw/arm/fsl-imx6.h
b7f30114 798F: include/hw/misc/imx6_*.h
95a5db3a
TH
799F: include/hw/ssi/imx_spi.h
800
64580903
HZ
801SBSA-REF
802M: Radoslaw Biernacki <radoslaw.biernacki@linaro.org>
803M: Peter Maydell <peter.maydell@linaro.org>
aff55693 804R: Leif Lindholm <leif@nuviainc.com>
64580903
HZ
805L: qemu-arm@nongnu.org
806S: Maintained
807F: hw/arm/sbsa-ref.c
808
671f11b2
TH
809Sharp SL-5500 (Collie) PDA
810M: Peter Maydell <peter.maydell@linaro.org>
811L: qemu-arm@nongnu.org
812S: Odd Fixes
813F: hw/arm/collie.c
814F: hw/arm/strongarm*
815
fd5d5c56 816Stellaris
1ce9ce6a 817M: Peter Maydell <peter.maydell@linaro.org>
b4f2bd1c 818L: qemu-arm@nongnu.org
fd5d5c56 819S: Maintained
8d8b636d 820F: hw/*/stellaris*
98fa3327 821F: include/hw/input/gamepad.h
c11a8e89 822F: docs/system/arm/stellaris.rst
fd5d5c56 823
95a5db3a
TH
824Versatile Express
825M: Peter Maydell <peter.maydell@linaro.org>
826L: qemu-arm@nongnu.org
827S: Maintained
828F: hw/arm/vexpress.c
829
fd5d5c56 830Versatile PB
1ce9ce6a 831M: Peter Maydell <peter.maydell@linaro.org>
b4f2bd1c 832L: qemu-arm@nongnu.org
fd5d5c56 833S: Maintained
8d8b636d 834F: hw/*/versatile*
c6427ff7 835F: hw/misc/arm_sysctl.c
c11a8e89 836F: docs/system/arm/versatile.rst
fd5d5c56 837
95a5db3a
TH
838Virt
839M: Peter Maydell <peter.maydell@linaro.org>
840L: qemu-arm@nongnu.org
841S: Maintained
842F: hw/arm/virt*
843F: include/hw/arm/virt.h
844
e3260506 845Xilinx Zynq
cc0100f4 846M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
c22e580c 847M: Alistair Francis <alistair@alistair23.me>
a00d7f20 848M: Peter Maydell <peter.maydell@linaro.org>
b4f2bd1c 849L: qemu-arm@nongnu.org
e3260506 850S: Maintained
cc0100f4 851F: hw/*/xilinx_*
8d8b636d 852F: hw/*/cadence_*
f7e242d6
TH
853F: hw/misc/zynq*
854F: include/hw/misc/zynq*
cc0100f4 855X: hw/ssi/xilinx_*
e3260506 856
137805f5 857Xilinx ZynqMP
c22e580c 858M: Alistair Francis <alistair@alistair23.me>
cc0100f4 859M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
a00d7f20 860M: Peter Maydell <peter.maydell@linaro.org>
b4f2bd1c 861L: qemu-arm@nongnu.org
137805f5 862S: Maintained
cc0100f4 863F: hw/*/xlnx*.c
f586d5fc 864F: include/hw/*/xlnx*.h
24d6d8bf
PMD
865F: include/hw/ssi/xilinx_spips.h
866F: hw/display/dpcd.c
867F: include/hw/display/dpcd.h
137805f5 868
8f4d260e 869ARM ACPI Subsystem
e59f13d7 870M: Shannon Zhao <shannon.zhaosl@gmail.com>
b4f2bd1c 871L: qemu-arm@nongnu.org
8f4d260e
SZ
872S: Maintained
873F: hw/arm/virt-acpi-build.c
8f4d260e 874
a1f8193b
AF
875STM32F205
876M: Alistair Francis <alistair@alistair23.me>
a00d7f20 877M: Peter Maydell <peter.maydell@linaro.org>
8ef350b3 878L: qemu-arm@nongnu.org
a1f8193b
AF
879S: Maintained
880F: hw/arm/stm32f205_soc.c
881F: hw/misc/stm32f2xx_syscfg.c
882F: hw/char/stm32f2xx_usart.c
883F: hw/timer/stm32f2xx_timer.c
884F: hw/adc/*
885F: hw/ssi/stm32f2xx_spi.c
0e0d345b 886F: include/hw/*/stm32*.h
a1f8193b 887
529fc5fd
AF
888STM32F405
889M: Alistair Francis <alistair@alistair23.me>
890M: Peter Maydell <peter.maydell@linaro.org>
8ef350b3 891L: qemu-arm@nongnu.org
529fc5fd
AF
892S: Maintained
893F: hw/arm/stm32f405_soc.c
894F: hw/misc/stm32f4xx_syscfg.c
895F: hw/misc/stm32f4xx_exti.c
896
a1f8193b
AF
897Netduino 2
898M: Alistair Francis <alistair@alistair23.me>
a00d7f20 899M: Peter Maydell <peter.maydell@linaro.org>
8ef350b3 900L: qemu-arm@nongnu.org
a1f8193b
AF
901S: Maintained
902F: hw/arm/netduino2.c
903
60d6c427
AF
904Netduino Plus 2
905M: Alistair Francis <alistair@alistair23.me>
906M: Peter Maydell <peter.maydell@linaro.org>
8ef350b3 907L: qemu-arm@nongnu.org
60d6c427
AF
908S: Maintained
909F: hw/arm/netduinoplus2.c
910
670bc4cb
SS
911SmartFusion2
912M: Subbaraya Sundeep <sundeep.lkml@gmail.com>
a00d7f20 913M: Peter Maydell <peter.maydell@linaro.org>
8ef350b3 914L: qemu-arm@nongnu.org
670bc4cb
SS
915S: Maintained
916F: hw/arm/msf2-soc.c
917F: hw/misc/msf2-sysreg.c
918F: hw/timer/mss-timer.c
919F: hw/ssi/mss-spi.c
920F: include/hw/arm/msf2-soc.h
921F: include/hw/misc/msf2-sysreg.h
922F: include/hw/timer/mss-timer.h
923F: include/hw/ssi/mss-spi.h
924
925Emcraft M2S-FG484
926M: Subbaraya Sundeep <sundeep.lkml@gmail.com>
a00d7f20 927M: Peter Maydell <peter.maydell@linaro.org>
8ef350b3 928L: qemu-arm@nongnu.org
670bc4cb
SS
929S: Maintained
930F: hw/arm/msf2-som.c
931
f87db1ba
JS
932ASPEED BMCs
933M: Cédric Le Goater <clg@kaod.org>
a00d7f20 934M: Peter Maydell <peter.maydell@linaro.org>
f87db1ba
JS
935R: Andrew Jeffery <andrew@aj.id.au>
936R: Joel Stanley <joel@jms.id.au>
937L: qemu-arm@nongnu.org
938S: Maintained
939F: hw/*/*aspeed*
b7f30114 940F: hw/misc/pca9552.c
f87db1ba 941F: include/hw/*/*aspeed*
b7f30114 942F: include/hw/misc/pca9552*.h
f87db1ba
JS
943F: hw/net/ftgmac100.c
944F: include/hw/net/ftgmac100.h
945
c0066d1a
JS
946NRF51
947M: Joel Stanley <joel@jms.id.au>
a00d7f20 948M: Peter Maydell <peter.maydell@linaro.org>
c0066d1a
JS
949L: qemu-arm@nongnu.org
950S: Maintained
c8de3f5f
SH
951F: hw/*/nrf51*.c
952F: hw/*/microbit*.c
953F: include/hw/*/nrf51*.h
954F: include/hw/*/microbit*.h
1e8a1fae 955F: tests/qtest/microbit-test.c
c0066d1a 956
fd5d5c56
AL
957CRIS Machines
958-------------
959Axis Dev88
960M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
961S: Maintained
8d8b636d 962F: hw/cris/axis_dev88.c
6e481d57 963F: hw/*/etraxfs_*.c
fd5d5c56 964
e188396c
PMD
965HP-PARISC Machines
966------------------
18092598 967HP B160L
e188396c
PMD
968M: Richard Henderson <rth@twiddle.net>
969R: Helge Deller <deller@gmx.de>
970S: Odd Fixes
a2a82ad6 971F: default-configs/hppa-softmmu.mak
e188396c
PMD
972F: hw/hppa/
973F: pc-bios/hppa-firmware.img
974
07bf23a7
MW
975LM32 Machines
976-------------
977EVR32 and uclinux BSP
978M: Michael Walle <michael@walle.cc>
979S: Maintained
8d8b636d 980F: hw/lm32/lm32_boards.c
07bf23a7 981
d118aa6b
MW
982milkymist
983M: Michael Walle <michael@walle.cc>
984S: Maintained
8d8b636d 985F: hw/lm32/milkymist.c
d118aa6b 986
afcacd53 987M68K Machines
fd5d5c56
AL
988-------------
989an5206
5baf2741
TH
990M: Thomas Huth <huth@tuxfamily.org>
991S: Odd Fixes
8d8b636d 992F: hw/m68k/an5206.c
e9a56114 993F: hw/m68k/mcf5206.c
fd5d5c56 994
fd5d5c56 995mcf5208
5baf2741
TH
996M: Thomas Huth <huth@tuxfamily.org>
997S: Odd Fixes
8d8b636d 998F: hw/m68k/mcf5208.c
e9a56114
TH
999F: hw/m68k/mcf_intc.c
1000F: hw/char/mcf_uart.c
1001F: hw/net/mcf_fec.c
5baf2741 1002F: include/hw/m68k/mcf*.h
fd5d5c56 1003
1810b815
TH
1004NeXTcube
1005M: Thomas Huth <huth@tuxfamily.org>
1006S: Odd Fixes
1007F: hw/m68k/next-*.c
1008F: hw/display/next-fb.c
1009F: include/hw/m68k/next-cube.h
1010
6dca62a0
LV
1011q800
1012M: Laurent Vivier <laurent@vivier.eu>
1013S: Maintained
04e7ca8d 1014F: hw/m68k/q800.c
6dca62a0 1015F: hw/misc/mac_via.c
fa2ba3b8 1016F: hw/nubus/*
8ac919a0 1017F: hw/display/macfb.c
c701ec62 1018F: hw/block/swim.c
04e7ca8d 1019F: hw/m68k/bootinfo.h
6dca62a0 1020F: include/hw/misc/mac_via.h
fa2ba3b8 1021F: include/hw/nubus/*
8ac919a0 1022F: include/hw/display/macfb.h
c701ec62 1023F: include/hw/block/swim.h
6dca62a0 1024
fd5d5c56
AL
1025MicroBlaze Machines
1026-------------------
1027petalogix_s3adsp1800
1028M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
1029S: Maintained
6e481d57 1030F: hw/microblaze/petalogix_s3adsp1800_mmu.c
a734c7b5 1031F: include/hw/char/xilinx_uartlite.h
fd5d5c56 1032
d36e8ce7 1033petalogix_ml605
4b46ba61 1034M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
d36e8ce7 1035S: Maintained
8d8b636d 1036F: hw/microblaze/petalogix_ml605_mmu.c
d36e8ce7 1037
fd5d5c56
AL
1038MIPS Machines
1039-------------
1040Jazz
1041M: Hervé Poussineau <hpoussin@reactos.org>
63640d6a 1042R: Aleksandar Rikalo <aleksandar.rikalo@rt-rk.com>
fd5d5c56 1043S: Maintained
8d8b636d 1044F: hw/mips/mips_jazz.c
0886a785
PMD
1045F: hw/display/jazz_led.c
1046F: hw/dma/rc4030.c
fd5d5c56
AL
1047
1048Malta
0eac70b0 1049M: Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
485cd982
AM
1050M: Philippe Mathieu-Daudé <f4bug@amsat.org>
1051R: Aurelien Jarno <aurelien@aurel32.net>
fd5d5c56 1052S: Maintained
60041378
AM
1053F: hw/isa/piix4.c
1054F: hw/acpi/piix4.c
8d8b636d 1055F: hw/mips/mips_malta.c
93081f51 1056F: hw/mips/gt64xxx_pci.c
60041378 1057F: include/hw/southbridge/piix.h
c47c336e 1058F: tests/acceptance/linux_ssh_mips_malta.py
0484d9d4 1059F: tests/acceptance/machine_mips_malta.py
fd5d5c56
AL
1060
1061Mipssim
0eac70b0 1062M: Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
63640d6a 1063R: Aleksandar Rikalo <aleksandar.rikalo@rt-rk.com>
659f42d8 1064S: Odd Fixes
8d8b636d 1065F: hw/mips/mips_mipssim.c
659f42d8 1066F: hw/net/mipsnet.c
fd5d5c56
AL
1067
1068R4000
0eac70b0 1069M: Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
099d510b 1070R: Aurelien Jarno <aurelien@aurel32.net>
63640d6a 1071R: Aleksandar Rikalo <aleksandar.rikalo@rt-rk.com>
d32dc614 1072S: Obsolete
8d8b636d 1073F: hw/mips/mips_r4k.c
fd5d5c56 1074
659f42d8 1075Fulong 2E
86eb0697 1076M: Philippe Mathieu-Daudé <f4bug@amsat.org>
0eac70b0 1077M: Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
659f42d8
YK
1078S: Odd Fixes
1079F: hw/mips/mips_fulong2e.c
0170a3fc 1080F: hw/isa/vt82c686.c
5021bfa5 1081F: hw/pci-host/bonito.c
0170a3fc 1082F: include/hw/isa/vt82c686.h
659f42d8
YK
1083
1084Boston
4872fee2 1085M: Paul Burton <pburton@wavecomp.com>
63640d6a 1086R: Aleksandar Rikalo <aleksandar.rikalo@rt-rk.com>
659f42d8
YK
1087S: Maintained
1088F: hw/core/loader-fit.c
1089F: hw/mips/boston.c
1090F: hw/pci-host/xilinx-pcie.c
5021bfa5 1091F: include/hw/pci-host/xilinx-pcie.h
659f42d8 1092
945dad6d
JL
1093OpenRISC Machines
1094-----------------
1095or1k-sim
1096M: Jia Liu <proljc@gmail.com>
1097S: Maintained
1098F: hw/openrisc/openrisc_sim.c
1099
fd5d5c56
AL
1100PowerPC Machines
1101----------------
1102405
bba8e23a 1103M: David Gibson <david@gibson.dropbear.id.au>
a6c98685 1104L: qemu-ppc@nongnu.org
9b9fe135 1105S: Odd Fixes
8d8b636d 1106F: hw/ppc/ppc405_boards.c
fd5d5c56 1107
aaade8d7 1108Bamboo
bba8e23a 1109M: David Gibson <david@gibson.dropbear.id.au>
aaade8d7
AF
1110L: qemu-ppc@nongnu.org
1111S: Odd Fixes
8d8b636d 1112F: hw/ppc/ppc440_bamboo.c
aaade8d7 1113
98cded3a 1114e500
bba8e23a 1115M: David Gibson <david@gibson.dropbear.id.au>
98cded3a 1116L: qemu-ppc@nongnu.org
bba8e23a 1117S: Odd Fixes
ce6fc617 1118F: hw/ppc/e500*
2c6aba14 1119F: hw/gpio/mpc8xxx.c
7abb479c 1120F: hw/i2c/mpc_i2c.c
ce6fc617
TH
1121F: hw/net/fsl_etsec/
1122F: hw/pci-host/ppce500.c
b5d55020
TH
1123F: include/hw/ppc/ppc_e500.h
1124F: include/hw/pci-host/ppce500.h
1125F: pc-bios/u-boot.e500
98cded3a
AF
1126
1127mpc8544ds
bba8e23a 1128M: David Gibson <david@gibson.dropbear.id.au>
98cded3a 1129L: qemu-ppc@nongnu.org
bba8e23a 1130S: Odd Fixes
98cded3a 1131F: hw/ppc/mpc8544ds.c
8d8b636d 1132F: hw/ppc/mpc8544_guts.c
98cded3a 1133
2c6aba14 1134New World (mac99)
40e3dd06
MCA
1135M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
1136R: David Gibson <david@gibson.dropbear.id.au>
a6c98685 1137L: qemu-ppc@nongnu.org
bba8e23a 1138S: Odd Fixes
baec1910 1139F: hw/ppc/mac_newworld.c
6e481d57
PM
1140F: hw/pci-host/uninorth.c
1141F: hw/pci-bridge/dec.[hc]
8d8b636d 1142F: hw/misc/macio/
6ba16476 1143F: hw/misc/mos6522.c
b5d55020 1144F: hw/nvram/mac_nvram.c
2c6aba14 1145F: hw/input/adb*
eba45926 1146F: include/hw/misc/macio/
6ba16476 1147F: include/hw/misc/mos6522.h
eba45926 1148F: include/hw/ppc/mac_dbdma.h
5021bfa5 1149F: include/hw/pci-host/uninorth.h
2c6aba14 1150F: include/hw/input/adb*
52804c60 1151F: pc-bios/qemu_vga.ndrv
fd5d5c56 1152
2c6aba14 1153Old World (g3beige)
40e3dd06
MCA
1154M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
1155R: David Gibson <david@gibson.dropbear.id.au>
a6c98685 1156L: qemu-ppc@nongnu.org
bba8e23a 1157S: Odd Fixes
baec1910 1158F: hw/ppc/mac_oldworld.c
6e481d57 1159F: hw/pci-host/grackle.c
8d8b636d 1160F: hw/misc/macio/
835c42d3 1161F: hw/intc/heathrow_pic.c
2c6aba14 1162F: hw/input/adb*
97e16dba 1163F: include/hw/intc/heathrow_pic.h
2c6aba14 1164F: include/hw/input/adb*
52804c60 1165F: pc-bios/qemu_vga.ndrv
fd5d5c56 1166
ec38d398 1167PReP
8178e89c 1168M: Hervé Poussineau <hpoussin@reactos.org>
a6c98685 1169L: qemu-ppc@nongnu.org
8178e89c 1170S: Maintained
75610155 1171F: hw/ppc/prep.c
8178e89c
HP
1172F: hw/ppc/prep_systemio.c
1173F: hw/ppc/rs6000_mc.c
6e481d57 1174F: hw/pci-host/prep.[hc]
0a9464b5 1175F: hw/isa/i82378.c
a48c6b51 1176F: hw/isa/pc87312.c
1cd6dccb 1177F: hw/dma/i82374.c
819ce6b2 1178F: hw/rtc/m48t59-isa.c
a48c6b51 1179F: include/hw/isa/pc87312.h
819ce6b2 1180F: include/hw/rtc/m48t59.h
71b290e7 1181F: tests/acceptance/ppc_prep_40p.py
fd5d5c56 1182
300b115c 1183sPAPR
085eb217 1184M: David Gibson <david@gibson.dropbear.id.au>
8a269ca4
AF
1185L: qemu-ppc@nongnu.org
1186S: Supported
8d8b636d 1187F: hw/*/spapr*
f9de2da7
DG
1188F: include/hw/*/spapr*
1189F: hw/*/xics*
1190F: include/hw/*/xics*
b5d55020
TH
1191F: pc-bios/slof.bin
1192F: docs/specs/ppc-spapr-hcalls.txt
1193F: docs/specs/ppc-spapr-hotplug.txt
1e8a1fae 1194F: tests/qtest/spapr*
1cf4323e 1195F: tests/qtest/libqos/*spapr*
1e8a1fae 1196F: tests/qtest/rtas*
1cf4323e 1197F: tests/qtest/libqos/rtas*
8a269ca4 1198
1af82d4f
CLG
1199PowerNV (Non-Virtualized)
1200M: Cédric Le Goater <clg@kaod.org>
1201M: David Gibson <david@gibson.dropbear.id.au>
1202L: qemu-ppc@nongnu.org
1203S: Maintained
1204F: hw/ppc/pnv*
1205F: hw/intc/pnv*
1206F: hw/intc/xics_pnv.c
1207F: include/hw/ppc/pnv*
1208F: pc-bios/skiboot.lid
1e8a1fae 1209F: tests/qtest/pnv*
1af82d4f 1210
794d00bf
AF
1211virtex_ml507
1212M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
1213L: qemu-ppc@nongnu.org
1214S: Odd Fixes
6e481d57 1215F: hw/ppc/virtex_ml507.c
794d00bf 1216
a9dd6604
BZ
1217sam460ex
1218M: BALATON Zoltan <balaton@eik.bme.hu>
1219L: qemu-ppc@nongnu.org
1220S: Maintained
33c6a8b5
BZ
1221F: hw/ppc/sam460ex.c
1222F: hw/ppc/ppc440_pcix.c
1223F: hw/display/sm501*
a9dd6604 1224F: hw/ide/sii3112.c
de04c31d 1225F: hw/rtc/m41t80.c
33c6a8b5
BZ
1226F: pc-bios/canyonlands.dt[sb]
1227F: pc-bios/u-boot-sam460ex-20100605.bin
1228F: roms/u-boot-sam460ex
a9dd6604 1229
fd5d5c56
AL
1230SH4 Machines
1231------------
1232R2D
1233M: Magnus Damm <magnus.damm@gmail.com>
1234S: Maintained
6e481d57 1235F: hw/sh4/r2d.c
81527b94
TH
1236F: hw/intc/sh_intc.c
1237F: hw/timer/sh_timer.c
fd5d5c56
AL
1238
1239Shix
1240M: Magnus Damm <magnus.damm@gmail.com>
81527b94 1241S: Odd Fixes
6e481d57 1242F: hw/sh4/shix.c
fd5d5c56
AL
1243
1244SPARC Machines
1245--------------
1246Sun4m
f2416d3a 1247M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
fd5d5c56 1248S: Maintained
8d8b636d 1249F: hw/sparc/sun4m.c
c468e368 1250F: hw/sparc/sun4m_iommu.c
aec2b887
TH
1251F: hw/display/cg3.c
1252F: hw/display/tcx.c
c10a1c78 1253F: hw/dma/sparc32_dma.c
7098b79e 1254F: hw/misc/eccmemctl.c
aec2b887
TH
1255F: hw/*/slavio_*.c
1256F: include/hw/nvram/sun_nvram.h
c10a1c78 1257F: include/hw/sparc/sparc32_dma.h
d0476159 1258F: include/hw/sparc/sun4m_iommu.h
aec2b887 1259F: pc-bios/openbios-sparc32
fd5d5c56
AL
1260
1261Sun4u
f2416d3a 1262M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
fd5d5c56 1263S: Maintained
8d8b636d 1264F: hw/sparc64/sun4u.c
8ef856b7
PMD
1265F: hw/sparc64/sun4u_iommu.c
1266F: include/hw/sparc/sun4u_iommu.h
5021bfa5
TH
1267F: hw/pci-host/sabre.c
1268F: include/hw/pci-host/sabre.h
8ef856b7
PMD
1269F: hw/pci-bridge/simba.c
1270F: include/hw/pci-bridge/simba.h
1271F: pc-bios/openbios-sparc64
fd5d5c56 1272
a2664ca0
AT
1273Sun4v
1274M: Artyom Tarasenko <atar4qemu@gmail.com>
1275S: Maintained
626e4a4b 1276F: hw/sparc64/niagara.c
2811ac30
PMD
1277F: hw/rtc/sun4v-rtc.c
1278F: include/hw/rtc/sun4v-rtc.h
a2664ca0 1279
ce6c760c
FC
1280Leon3
1281M: Fabien Chouteau <chouteau@adacore.com>
918b8ade 1282M: KONRAD Frederic <frederic.konrad@adacore.com>
ce6c760c 1283S: Maintained
8d8b636d
PB
1284F: hw/sparc/leon3.c
1285F: hw/*/grlib*
162abf1a 1286F: include/hw/*/grlib*
b11785ca 1287F: tests/acceptance/machine_sparc_leon3.py
ce6c760c 1288
fd5d5c56
AL
1289S390 Machines
1290-------------
dd4ad64a 1291S390 Virtio-ccw
c1976ae7 1292M: Cornelia Huck <cohuck@redhat.com>
7c8e2647 1293M: Halil Pasic <pasic@linux.ibm.com>
b304bf00 1294M: Christian Borntraeger <borntraeger@de.ibm.com>
dd4ad64a 1295S: Supported
0c6aa7ee 1296F: hw/char/sclp*.[hc]
9d1c4449 1297F: hw/char/terminal3270.c
c5bfb202 1298F: hw/s390x/
4277af19 1299F: include/hw/s390x/
c5bfb202 1300F: hw/watchdog/wdt_diag288.c
1e4738b2 1301F: include/hw/watchdog/wdt_diag288.h
1e4738b2 1302F: default-configs/s390x-softmmu.mak
e18a8b34
SH
1303T: git https://github.com/cohuck/qemu.git s390-next
1304T: git https://github.com/borntraeger/qemu.git s390-next
146bd283 1305L: qemu-s390x@nongnu.org
dd4ad64a 1306
8e4eb427 1307S390-ccw boot
304584bf
CH
1308M: Christian Borntraeger <borntraeger@de.ibm.com>
1309M: Thomas Huth <thuth@redhat.com>
1310S: Supported
8e4eb427 1311F: hw/s390x/ipl.*
304584bf
CH
1312F: pc-bios/s390-ccw/
1313F: pc-bios/s390-ccw.img
cc3d15a5 1314F: docs/devel/s390-dasd-ipl.rst
e18a8b34 1315T: git https://github.com/borntraeger/qemu.git s390-next
304584bf
CH
1316L: qemu-s390x@nongnu.org
1317
d5bfb425 1318S390 PCI
ecd6663d 1319M: Matthew Rosato <mjrosato@linux.ibm.com>
d5bfb425
CB
1320S: Supported
1321F: hw/s390x/s390-pci*
1322L: qemu-s390x@nongnu.org
1323
ab9528ca 1324UniCore32 Machines
84995ea2 1325------------------
ab9528ca
GX
1326PKUnity-3 SoC initramfs-with-busybox
1327M: Guan Xuetao <gxt@mprc.pku.edu.cn>
1328S: Maintained
8d8b636d 1329F: hw/*/puv3*
ab9528ca
GX
1330F: hw/unicore32/
1331
fd5d5c56
AL
1332X86 Machines
1333------------
1334PC
046a6486 1335M: Michael S. Tsirkin <mst@redhat.com>
fe355cbd 1336M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
fd5d5c56 1337S: Supported
046a6486
MT
1338F: include/hw/i386/
1339F: hw/i386/
0f25d865 1340F: hw/pci-host/i440fx.c
046a6486
MT
1341F: hw/pci-host/q35.c
1342F: hw/pci-host/pam.c
0fd61a2d 1343F: include/hw/pci-host/i440fx.h
046a6486
MT
1344F: include/hw/pci-host/q35.h
1345F: include/hw/pci-host/pam.h
14a026dd 1346F: hw/isa/piix3.c
046a6486
MT
1347F: hw/isa/lpc_ich9.c
1348F: hw/i2c/smbus_ich9.c
1349F: hw/acpi/piix4.c
1350F: hw/acpi/ich9.c
1351F: include/hw/acpi/ich9.h
fff123b8 1352F: include/hw/southbridge/piix.h
9cc3b73c 1353F: hw/misc/sga.c
6f5a3294
PMD
1354F: hw/isa/apm.c
1355F: include/hw/isa/apm.h
1356F: tests/test-x86-cpuid.c
1e8a1fae 1357F: tests/qtest/test-x86-cpuid-compat.c
9cc3b73c
PB
1358
1359PC Chipset
1360M: Michael S. Tsirkin <mst@redhat.com>
1361M: Paolo Bonzini <pbonzini@redhat.com>
1732be86 1362S: Supported
9cc3b73c 1363F: hw/char/debugcon.c
bb3d5ea8 1364F: hw/char/parallel*
9cc3b73c
PB
1365F: hw/char/serial*
1366F: hw/dma/i8257*
1367F: hw/i2c/pm_smbus.c
1732be86 1368F: hw/input/pckbd.c
9cc3b73c
PB
1369F: hw/intc/apic*
1370F: hw/intc/ioapic*
1371F: hw/intc/i8259*
1854eb28 1372F: hw/isa/isa-superio.c
9cc3b73c
PB
1373F: hw/misc/debugexit.c
1374F: hw/misc/pc-testdev.c
1375F: hw/timer/hpet*
1376F: hw/timer/i8254*
bcdb9064 1377F: hw/rtc/mc146818rtc*
edc46aff 1378F: hw/watchdog/wdt_ib700.c
4bcbc773 1379F: hw/watchdog/wdt_i6300esb.c
866e2b37 1380F: include/hw/display/vga.h
bb3d5ea8 1381F: include/hw/char/parallel.h
55f613ac 1382F: include/hw/dma/i8257.h
a2feb348 1383F: include/hw/i2c/pm_smbus.h
47973a2d 1384F: include/hw/input/i8042.h
4bcbc773 1385F: include/hw/isa/i8259_internal.h
1854eb28 1386F: include/hw/isa/superio.h
a2feb348
TH
1387F: include/hw/timer/hpet.h
1388F: include/hw/timer/i8254*
bcdb9064 1389F: include/hw/rtc/mc146818rtc*
046a6486 1390
5cb48f05
SL
1391microvm
1392M: Sergio Lopez <slp@redhat.com>
1393M: Paolo Bonzini <pbonzini@redhat.com>
1394S: Maintained
1395F: docs/microvm.rst
1396F: hw/i386/microvm.c
1397F: include/hw/i386/microvm.h
1398F: pc-bios/bios-microvm.bin
1399
5da4fb00
MT
1400Machine core
1401M: Eduardo Habkost <ehabkost@redhat.com>
fe355cbd 1402M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
5da4fb00 1403S: Supported
2e5b09fd 1404F: hw/core/cpu.c
52924dea 1405F: hw/core/machine-qmp-cmds.c
5da4fb00 1406F: hw/core/machine.c
c1629c5c 1407F: hw/core/null-machine.c
ac057879 1408F: hw/core/numa.c
335d52f4 1409F: hw/cpu/cluster.c
8ac25c84 1410F: qapi/machine.json
7f7b4e7a 1411F: qapi/machine-target.json
5da4fb00 1412F: include/hw/boards.h
2e5b09fd 1413F: include/hw/core/cpu.h
335d52f4 1414F: include/hw/cpu/cluster.h
2dd02587 1415F: include/sysemu/numa.h
e18a8b34 1416T: git https://github.com/ehabkost/qemu.git machine-next
fd5d5c56 1417
16e7caae
MF
1418Xtensa Machines
1419---------------
375847a6 1420sim
16e7caae
MF
1421M: Max Filippov <jcmvbkbc@gmail.com>
1422S: Maintained
437a8c11 1423F: hw/xtensa/sim.c
375847a6 1424
d9e8553b
MF
1425virt
1426M: Max Filippov <jcmvbkbc@gmail.com>
1427S: Maintained
1428F: hw/xtensa/virt.c
1429
437a8c11 1430XTFPGA (LX60, LX200, ML605, KC705)
375847a6
MF
1431M: Max Filippov <jcmvbkbc@gmail.com>
1432S: Maintained
437a8c11
MF
1433F: hw/xtensa/xtfpga.c
1434F: hw/net/opencores_eth.c
16e7caae 1435
fd5d5c56
AL
1436Devices
1437-------
b30934cb
JS
1438EDU
1439M: Jiri Slaby <jslaby@suse.cz>
1440S: Maintained
1441F: hw/misc/edu.c
1442
fd5d5c56 1443IDE
c095348b
JS
1444M: John Snow <jsnow@redhat.com>
1445L: qemu-block@nongnu.org
1446S: Supported
8d8b636d 1447F: include/hw/ide.h
c9f7acd5 1448F: include/hw/ide/
fd5d5c56 1449F: hw/ide/
c095348b
JS
1450F: hw/block/block.c
1451F: hw/block/cdrom.c
1452F: hw/block/hd-geometry.c
1e8a1fae
TH
1453F: tests/qtest/ide-test.c
1454F: tests/qtest/ahci-test.c
1455F: tests/qtest/cdrom-test.c
1cf4323e 1456F: tests/qtest/libqos/ahci*
e18a8b34 1457T: git https://github.com/jnsnow/qemu.git ide
c095348b 1458
caf316ba
CM
1459IPMI
1460M: Corey Minyard <minyard@acm.org>
1461S: Maintained
1462F: include/hw/ipmi/*
1463F: hw/ipmi/*
1464F: hw/smbios/smbios_type_38.c
1e8a1fae 1465F: tests/qtest/ipmi*
e18a8b34 1466T: git https://github.com/cminyard/qemu.git master-ipmi-rebase
caf316ba 1467
c095348b
JS
1468Floppy
1469M: John Snow <jsnow@redhat.com>
1470L: qemu-block@nongnu.org
1471S: Supported
1472F: hw/block/fdc.c
1473F: include/hw/block/fdc.h
1e8a1fae 1474F: tests/qtest/fdc-test.c
e18a8b34 1475T: git https://github.com/jnsnow/qemu.git ide
fd5d5c56 1476
f5f487b2
PM
1477OMAP
1478M: Peter Maydell <peter.maydell@linaro.org>
8ef350b3 1479L: qemu-arm@nongnu.org
f5f487b2 1480S: Maintained
8d8b636d 1481F: hw/*/omap*
ed0db866 1482F: include/hw/arm/omap.h
f5f487b2 1483
28d54e58
PB
1484IPack
1485M: Alberto Garcia <berto@igalia.com>
1486S: Odd Fixes
1487F: hw/char/ipoctal232.c
1488F: hw/ipack/
1489
fd5d5c56
AL
1490PCI
1491M: Michael S. Tsirkin <mst@redhat.com>
fe355cbd 1492M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
fd5d5c56 1493S: Supported
8d8b636d 1494F: include/hw/pci/*
f178bc6b 1495F: hw/misc/pci-testdev.c
ca818cfb 1496F: hw/pci/*
f178bc6b 1497F: hw/pci-bridge/*
68179923
PMD
1498F: docs/pci*
1499F: docs/specs/*pci*
534fd814 1500F: default-configs/pci.mak
0e0b3592 1501
d31e5ae7 1502ACPI/SMBIOS
0e0b3592
MT
1503M: Michael S. Tsirkin <mst@redhat.com>
1504M: Igor Mammedov <imammedo@redhat.com>
1505S: Supported
1506F: include/hw/acpi/*
a2eb5c0c 1507F: include/hw/firmware/smbios.h
0e0b3592 1508F: hw/mem/*
8d8b636d 1509F: hw/acpi/*
d31e5ae7 1510F: hw/smbios/*
0e0b3592 1511F: hw/i386/acpi-build.[hc]
0e0b3592 1512F: hw/arm/virt-acpi-build.c
1e8a1fae
TH
1513F: tests/qtest/bios-tables-test.c
1514F: tests/qtest/acpi-utils.[hc]
faae23b9 1515F: tests/data/acpi/
fd5d5c56 1516
aaade8d7 1517ppc4xx
bba8e23a 1518M: David Gibson <david@gibson.dropbear.id.au>
aaade8d7
AF
1519L: qemu-ppc@nongnu.org
1520S: Odd Fixes
8d8b636d 1521F: hw/ppc/ppc4*.c
aa3a41f9 1522F: hw/i2c/ppc4xx_i2c.c
b5d55020 1523F: include/hw/ppc/ppc4xx.h
aa3a41f9 1524F: include/hw/i2c/ppc4xx_i2c.h
aaade8d7 1525
61af0ee6 1526Character devices
2185fd67
PB
1527M: Marc-André Lureau <marcandre.lureau@redhat.com>
1528R: Paolo Bonzini <pbonzini@redhat.com>
61af0ee6
PB
1529S: Odd Fixes
1530F: hw/char/
1531
f536f112
PB
1532Network devices
1533M: Jason Wang <jasowang@redhat.com>
1534S: Odd Fixes
1535F: hw/net/
6061b5c6 1536F: include/hw/net/
1e8a1fae 1537F: tests/qtest/virtio-net-test.c
9711cd0d 1538F: docs/virtio-net-failover.rst
e18a8b34 1539T: git https://github.com/jasowang/qemu.git net
f536f112 1540
e0c9d0c1
PMD
1541Parallel NOR Flash devices
1542M: Philippe Mathieu-Daudé <philmd@redhat.com>
1543T: git https://gitlab.com/philmd/qemu.git pflash-next
1544S: Maintained
1545F: hw/block/pflash_cfi*.c
1546F: include/hw/block/flash.h
1547
fd5d5c56 1548SCSI
de7724f7 1549M: Paolo Bonzini <pbonzini@redhat.com>
fe5ca46d 1550R: Fam Zheng <fam@euphon.net>
de7724f7 1551S: Supported
74460f34 1552F: include/hw/scsi/*
8d8b636d 1553F: hw/scsi/*
1e8a1fae 1554F: tests/qtest/virtio-scsi-test.c
e18a8b34 1555T: git https://github.com/bonzini/qemu.git scsi-next
de7724f7 1556
fcb5629d 1557SSI
c22e580c 1558M: Alistair Francis <alistair@alistair23.me>
fcb5629d 1559S: Maintained
8d8b636d
PB
1560F: hw/ssi/*
1561F: hw/block/m25p80.c
982d009a 1562F: include/hw/ssi/ssi.h
4b46ba61 1563X: hw/ssi/xilinx_*
1e8a1fae 1564F: tests/qtest/m25p80-test.c
4b46ba61
AF
1565
1566Xilinx SPI
c22e580c 1567M: Alistair Francis <alistair@alistair23.me>
4b46ba61
AF
1568S: Maintained
1569F: hw/ssi/xilinx_*
fcb5629d 1570
076a0fc3
PMD
1571SD (Secure Card)
1572M: Philippe Mathieu-Daudé <f4bug@amsat.org>
1573S: Odd Fixes
1574F: include/hw/sd/sd*
1575F: hw/sd/core.c
1576F: hw/sd/sd*
1232ed1f 1577F: hw/sd/ssi-sd.c
1e8a1fae 1578F: tests/qtest/sd*
076a0fc3 1579
fd5d5c56 1580USB
5d0d62fe
GH
1581M: Gerd Hoffmann <kraxel@redhat.com>
1582S: Maintained
8d8b636d 1583F: hw/usb/*
1e8a1fae 1584F: tests/qtest/usb-*-test.c
beded0ff
TH
1585F: docs/usb2.txt
1586F: docs/usb-storage.txt
1587F: include/hw/usb.h
1588F: include/hw/usb/
104ebc5f 1589F: default-configs/usb.mak
fd5d5c56 1590
e26082fd
PB
1591USB (serial adapter)
1592M: Gerd Hoffmann <kraxel@redhat.com>
1593M: Samuel Thibault <samuel.thibault@ens-lyon.org>
1594S: Maintained
1595F: hw/usb/dev-serial.c
1596
92e1fb5e
AW
1597VFIO
1598M: Alex Williamson <alex.williamson@redhat.com>
1599S: Supported
cf7087db 1600F: hw/vfio/*
99b88c6d 1601F: include/hw/vfio/
92e1fb5e 1602
5eb74557 1603vfio-ccw
c1976ae7 1604M: Cornelia Huck <cohuck@redhat.com>
7913938a 1605M: Eric Farman <farman@linux.ibm.com>
5eb74557
DJS
1606S: Supported
1607F: hw/vfio/ccw.c
1608F: hw/s390x/s390-ccw.c
1609F: include/hw/s390x/s390-ccw.h
44445d86 1610F: include/hw/s390x/vfio-ccw.h
e18a8b34 1611T: git https://github.com/cohuck/qemu.git s390-next
146bd283 1612L: qemu-s390x@nongnu.org
5eb74557 1613
a51b3153
TK
1614vfio-ap
1615M: Christian Borntraeger <borntraeger@de.ibm.com>
1616M: Tony Krowiak <akrowiak@linux.ibm.com>
1617M: Halil Pasic <pasic@linux.ibm.com>
1618M: Pierre Morel <pmorel@linux.ibm.com>
1619S: Supported
1620F: hw/s390x/ap-device.c
1621F: hw/s390x/ap-bridge.c
1622F: include/hw/s390x/ap-device.h
1623F: include/hw/s390x/ap-bridge.h
2fe2942c 1624F: hw/vfio/ap.c
f58f084e 1625F: docs/system/s390x/vfio-ap.rst
a51b3153
TK
1626L: qemu-s390x@nongnu.org
1627
fd5d5c56
AL
1628vhost
1629M: Michael S. Tsirkin <mst@redhat.com>
1630S: Supported
8d8b636d 1631F: hw/*/*vhost*
482580a6 1632F: docs/interop/vhost-user.json
ed1be66b 1633F: docs/interop/vhost-user.rst
72c1e865 1634F: contrib/vhost-user-*/
f24bb728
MAL
1635F: backends/vhost-user.c
1636F: include/sysemu/vhost-user-backend.h
fd5d5c56
AL
1637
1638virtio
a75143ed 1639M: Michael S. Tsirkin <mst@redhat.com>
fd5d5c56 1640S: Supported
8d8b636d 1641F: hw/*/virtio*
72fa605d
TH
1642F: hw/virtio/Makefile.objs
1643F: hw/virtio/trace-events
6a084ea3 1644F: net/vhost-user.c
494f7b57 1645F: include/hw/virtio/
fd5d5c56 1646
6d7b25ad
DH
1647virtio-balloon
1648M: Michael S. Tsirkin <mst@redhat.com>
1649M: David Hildenbrand <david@redhat.com>
1650S: Maintained
1651F: hw/virtio/virtio-balloon*.c
1652F: include/hw/virtio/virtio-balloon.h
1653F: balloon.c
1654F: include/sysemu/balloon.h
1655
fd5d5c56 1656virtio-9p
8c1cd719 1657M: Greg Kurz <groug@kaod.org>
2822602c 1658R: Christian Schoenebeck <qemu_oss@crudebyte.com>
e410bbc5 1659S: Odd Fixes
aebeca25 1660F: hw/9pfs/
b827891d 1661X: hw/9pfs/xen-9p*
aebeca25 1662F: fsdev/
78813586 1663F: docs/interop/virtfs-proxy-helper.rst
1e8a1fae 1664F: tests/qtest/virtio-9p-test.c
e18a8b34 1665T: git https://github.com/gkurz/qemu.git 9p-next
fd5d5c56
AL
1666
1667virtio-blk
54d01a00 1668M: Stefan Hajnoczi <stefanha@redhat.com>
b457a5f5 1669L: qemu-block@nongnu.org
fd5d5c56 1670S: Supported
8d8b636d 1671F: hw/block/virtio-blk.c
b457a5f5 1672F: hw/block/dataplane/*
1e8a1fae 1673F: tests/qtest/virtio-blk-test.c
e18a8b34 1674T: git https://github.com/stefanha/qemu.git block
fd5d5c56 1675
dd4ad64a 1676virtio-ccw
c1976ae7 1677M: Cornelia Huck <cohuck@redhat.com>
68b91e85 1678M: Halil Pasic <pasic@linux.ibm.com>
dd4ad64a 1679S: Supported
901f5f16 1680F: hw/s390x/virtio-ccw*.[hc]
d8d4d62c 1681F: hw/s390x/vhost-vsock-ccw.c
e18a8b34
SH
1682T: git https://github.com/cohuck/qemu.git s390-next
1683T: git https://github.com/borntraeger/qemu.git s390-next
146bd283 1684L: qemu-s390x@nongnu.org
dd4ad64a 1685
bad7d2c3
DDAG
1686virtiofs
1687M: Dr. David Alan Gilbert <dgilbert@redhat.com>
1688M: Stefan Hajnoczi <stefanha@redhat.com>
1689S: Supported
1690F: tools/virtiofsd/*
1691F: hw/virtio/vhost-user-fs*
1692F: include/hw/virtio/vhost-user-fs.h
6a7e2bbe 1693F: docs/interop/virtiofsd.rst
bad7d2c3 1694
a5d4d7b5
GH
1695virtio-input
1696M: Gerd Hoffmann <kraxel@redhat.com>
1697S: Maintained
9c4d05b7 1698F: hw/input/vhost-user-input.c
a5d4d7b5
GH
1699F: hw/input/virtio-input*.c
1700F: include/hw/virtio/virtio-input.h
06914c97 1701F: contrib/vhost-user-input/*
a5d4d7b5 1702
c1dee918
EA
1703virtio-iommu
1704M: Eric Auger <eric.auger@redhat.com>
1705S: Maintained
1706F: hw/virtio/virtio-iommu*.c
1707F: include/hw/virtio/virtio-iommu.h
1708
fd5d5c56 1709virtio-serial
2501db70
LV
1710M: Laurent Vivier <lvivier@redhat.com>
1711R: Amit Shah <amit@kernel.org>
fd5d5c56 1712S: Supported
8d8b636d
PB
1713F: hw/char/virtio-serial-bus.c
1714F: hw/char/virtio-console.c
68a5e38a 1715F: include/hw/virtio/virtio-serial.h
1e8a1fae 1716F: tests/qtest/virtio-serial-test.c
fd5d5c56 1717
1f51a5cb 1718virtio-rng
2501db70
LV
1719M: Laurent Vivier <lvivier@redhat.com>
1720R: Amit Shah <amit@kernel.org>
1f51a5cb
AS
1721S: Supported
1722F: hw/virtio/virtio-rng.c
1723F: include/hw/virtio/virtio-rng.h
750cf869 1724F: include/sysemu/rng*.h
1f51a5cb 1725F: backends/rng*.c
1e8a1fae 1726F: tests/qtest/virtio-rng-test.c
1f51a5cb 1727
6034011c
GA
1728virtio-crypto
1729M: Gonglei <arei.gonglei@huawei.com>
1730S: Supported
1731F: hw/virtio/virtio-crypto.c
1732F: hw/virtio/virtio-crypto-pci.c
1733F: include/hw/virtio/virtio-crypto.h
1734
f3c507ad
KB
1735nvme
1736M: Keith Busch <keith.busch@intel.com>
c95e4c0e 1737L: qemu-block@nongnu.org
f3c507ad
KB
1738S: Supported
1739F: hw/block/nvme*
1e8a1fae 1740F: tests/qtest/nvme-test.c
f3c507ad 1741
d383c625 1742megasas
3fdfb8b6 1743M: Hannes Reinecke <hare@suse.com>
c95e4c0e 1744L: qemu-block@nongnu.org
d383c625
HR
1745S: Supported
1746F: hw/scsi/megasas.c
1747F: hw/scsi/mfi.h
1e8a1fae 1748F: tests/qtest/megasas-test.c
d383c625 1749
605d52e6 1750Network packet abstractions
bf4835a4 1751M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
605d52e6
DF
1752S: Maintained
1753F: include/net/eth.h
1754F: net/eth.c
1755F: hw/net/net_rx_pkt*
1756F: hw/net/net_tx_pkt*
1757
622fb504 1758Vmware
bf4835a4 1759M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
622fb504
DF
1760S: Maintained
1761F: hw/net/vmxnet*
1762F: hw/scsi/vmw_pvscsi*
1e8a1fae 1763F: tests/qtest/vmxnet3-test.c
622fb504 1764
de24d3f1 1765Rocker
de24d3f1
SF
1766M: Jiri Pirko <jiri@resnulli.us>
1767S: Maintained
1768F: hw/net/rocker/
de850948
TH
1769F: tests/rocker/
1770F: docs/specs/rocker.txt
de24d3f1 1771
70d1fb9c 1772NVDIMM
7a5bd53d 1773M: Xiao Guangrong <xiaoguangrong.eric@gmail.com>
70d1fb9c
XG
1774S: Maintained
1775F: hw/acpi/nvdimm.c
1776F: hw/mem/nvdimm.c
1777F: include/hw/mem/nvdimm.h
e2e254d3 1778F: docs/nvdimm.txt
70d1fb9c 1779
093454e2 1780e1000x
bf4835a4 1781M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
093454e2
DF
1782S: Maintained
1783F: hw/net/e1000x*
1784
6f3fbe4e 1785e1000e
bf4835a4 1786M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
6f3fbe4e
DF
1787S: Maintained
1788F: hw/net/e1000e*
1789
ebc2327f
SW
1790eepro100
1791M: Stefan Weil <sw@weilnetz.de>
1792S: Maintained
1793F: hw/net/eepro100.c
1794
34ea023d
SS
1795tulip
1796M: Sven Schnelle <svens@stackframe.org>
1797S: Maintained
1798F: hw/net/tulip.c
1799F: hw/net/tulip.h
1800
e481a1f6 1801Generic Loader
c22e580c 1802M: Alistair Francis <alistair@alistair23.me>
e481a1f6
AF
1803S: Maintained
1804F: hw/core/generic-loader.c
1805F: include/hw/core/generic-loader.h
c5e2ac7e 1806F: docs/generic-loader.txt
e481a1f6 1807
645d3cbe
SH
1808Intel Hexadecimal Object File Loader
1809M: Su Hang <suhang16@mails.ucas.ac.cn>
1810S: Maintained
1e8a1fae 1811F: tests/qtest/hexloader-test.c
4b2ff65a 1812F: tests/data/hex-loader/test.hex
645d3cbe 1813
87a9023a
TH
1814CHRP NVRAM
1815M: Thomas Huth <thuth@redhat.com>
1816S: Maintained
1817F: hw/nvram/chrp_nvram.c
1818F: include/hw/nvram/chrp_nvram.h
1e8a1fae 1819F: tests/qtest/prom-env-test.c
87a9023a 1820
42697d88
BW
1821VM Generation ID
1822M: Ben Warren <ben@skyportsystems.com>
1823S: Maintained
1824F: hw/acpi/vmgenid.c
1825F: include/hw/acpi/vmgenid.h
1826F: docs/specs/vmgenid.txt
1e8a1fae 1827F: tests/qtest/vmgenid-test.c
42697d88
BW
1828F: stubs/vmgenid.c
1829
747969db
PMD
1830Unimplemented device
1831M: Peter Maydell <peter.maydell@linaro.org>
1832R: Philippe Mathieu-Daudé <f4bug@amsat.org>
1833S: Maintained
1834F: include/hw/misc/unimp.h
1835F: hw/misc/unimp.c
1836
dbb2e472
GH
1837Standard VGA
1838M: Gerd Hoffmann <kraxel@redhat.com>
1839S: Maintained
1840F: hw/display/vga*
1841F: hw/display/bochs-display.c
1842F: include/hw/display/vga.h
1843F: include/hw/display/bochs-vbe.h
1844
58d632c7
GH
1845ramfb
1846M: Gerd Hoffmann <kraxel@redhat.com>
1847S: Maintained
1848F: hw/display/ramfb*.c
1849F: include/hw/display/ramfb.h
1850
dbb2e472
GH
1851virtio-gpu
1852M: Gerd Hoffmann <kraxel@redhat.com>
1853S: Maintained
1854F: hw/display/virtio-gpu*
c68082c4 1855F: hw/display/virtio-vga.*
dbb2e472
GH
1856F: include/hw/virtio/virtio-gpu.h
1857
b372d79b
RN
1858vhost-user-blk
1859M: Raphael Norwitz <raphael.norwitz@nutanix.com>
1860S: Maintained
1861F: contrib/vhost-user-blk/
1862F: contrib/vhost-user-scsi/
1863F: hw/block/vhost-user-blk.c
1864F: hw/scsi/vhost-user-scsi.c
1865F: hw/virtio/vhost-user-blk-pci.c
1866F: hw/virtio/vhost-user-scsi-pci.c
1867F: include/hw/virtio/vhost-user-blk.h
1868F: include/hw/virtio/vhost-user-scsi.h
1869
bd2e44fe
MAL
1870vhost-user-gpu
1871M: Marc-André Lureau <marcandre.lureau@redhat.com>
1872M: Gerd Hoffmann <kraxel@redhat.com>
1873S: Maintained
1874F: docs/interop/vhost-user-gpu.rst
d52c454a
MAL
1875F: contrib/vhost-user-gpu
1876F: hw/display/vhost-user-*
bd2e44fe 1877
dbb2e472
GH
1878Cirrus VGA
1879M: Gerd Hoffmann <kraxel@redhat.com>
1880S: Odd Fixes
1881W: https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
1882F: hw/display/cirrus*
1883
72d277a7
GH
1884EDID Generator
1885M: Gerd Hoffmann <kraxel@redhat.com>
1886S: Maintained
1887F: hw/display/edid*
1888F: include/hw/display/edid.h
1889F: qemu-edid.c
1890
10386385
PMD
1891PIIX4 South Bridge (i82371AB)
1892M: Hervé Poussineau <hpoussin@reactos.org>
1893M: Philippe Mathieu-Daudé <f4bug@amsat.org>
1894S: Maintained
1895F: hw/isa/piix4.c
fff123b8 1896F: include/hw/southbridge/piix.h
10386385 1897
15ffb43c 1898Firmware configuration (fw_cfg)
6f75e3f5 1899M: Philippe Mathieu-Daudé <philmd@redhat.com>
15ffb43c
PMD
1900R: Laszlo Ersek <lersek@redhat.com>
1901R: Gerd Hoffmann <kraxel@redhat.com>
1902S: Supported
1903F: docs/specs/fw_cfg.txt
1904F: hw/nvram/fw_cfg.c
b15c0f7d 1905F: stubs/fw_cfg.c
15ffb43c
PMD
1906F: include/hw/nvram/fw_cfg.h
1907F: include/standard-headers/linux/qemu_fw_cfg.h
1cf4323e 1908F: tests/qtest/libqos/fw_cfg.c
1e8a1fae 1909F: tests/qtest/fw_cfg-test.c
15ffb43c
PMD
1910T: git https://github.com/philmd/qemu.git fw_cfg-next
1911
2313abf0
TH
1912XIVE
1913M: David Gibson <david@gibson.dropbear.id.au>
1914M: Cédric Le Goater <clg@kaod.org>
1915L: qemu-ppc@nongnu.org
1916S: Supported
1917F: hw/*/*xive*
1918F: include/hw/*/*xive*
24563a58 1919F: docs/*/*xive*
2313abf0 1920
fd5d5c56
AL
1921Subsystems
1922----------
1923Audio
9f575846 1924M: Gerd Hoffmann <kraxel@redhat.com>
fd5d5c56
AL
1925S: Maintained
1926F: audio/
8d8b636d 1927F: hw/audio/
a2b245ae 1928F: include/hw/audio/
1e8a1fae
TH
1929F: tests/qtest/ac97-test.c
1930F: tests/qtest/es1370-test.c
1931F: tests/qtest/intel-hda-test.c
fd5d5c56 1932
17f1e8f5 1933Block layer core
fd5d5c56 1934M: Kevin Wolf <kwolf@redhat.com>
c4189d85 1935M: Max Reitz <mreitz@redhat.com>
c95e4c0e 1936L: qemu-block@nongnu.org
fd5d5c56
AL
1937S: Supported
1938F: block*
1939F: block/
8d8b636d 1940F: hw/block/
4c346e0b 1941F: include/block/
46078760 1942F: qemu-img*
e13c59fa 1943F: docs/interop/qemu-img.rst
46078760 1944F: qemu-io*
29242091 1945F: tests/qemu-iotests/
8dd30c86 1946F: util/qemu-progress.c
0bcc8e5b 1947F: qobject/block-qdict.c
c468e368 1948F: tests/check-block-qdict.c
ebe2aad2 1949T: git https://repo.or.cz/qemu/kevin.git block
fd5d5c56 1950
d55053b1
SH
1951Block I/O path
1952M: Stefan Hajnoczi <stefanha@redhat.com>
fe5ca46d 1953M: Fam Zheng <fam@euphon.net>
d55053b1
SH
1954L: qemu-block@nongnu.org
1955S: Supported
36c697bd
PB
1956F: util/async.c
1957F: util/aio-*.c
1f050a46
SH
1958F: util/aio-*.h
1959F: util/fdmon-*.c
d55053b1
SH
1960F: block/io.c
1961F: migration/block*
e1029ae2 1962F: include/block/aio.h
f5a53faa 1963F: include/block/aio-wait.h
0a4f9ad1 1964F: scripts/qemugdb/aio.py
e18a8b34 1965T: git https://github.com/stefanha/qemu.git block
d55053b1 1966
e5b5728c
PB
1967Block SCSI subsystem
1968M: Paolo Bonzini <pbonzini@redhat.com>
fe5ca46d 1969R: Fam Zheng <fam@euphon.net>
e5b5728c
PB
1970L: qemu-block@nongnu.org
1971S: Supported
1972F: include/scsi/*
1973F: scsi/*
1974
280458a3 1975Block Jobs
03283d64 1976M: John Snow <jsnow@redhat.com>
280458a3
JC
1977L: qemu-block@nongnu.org
1978S: Supported
1979F: blockjob.c
1980F: include/block/blockjob.h
33e9e9bd 1981F: job.c
1a90bc81 1982F: job-qmp.c
c468e368 1983F: include/qemu/job.h
280458a3
JC
1984F: block/backup.c
1985F: block/commit.c
77346025 1986F: block/stream.c
280458a3 1987F: block/mirror.c
bf42508f 1988F: qapi/job.json
03283d64 1989T: git https://github.com/jnsnow/qemu.git jobs
280458a3 1990
4120201d
MA
1991Block QAPI, monitor, command line
1992M: Markus Armbruster <armbru@redhat.com>
1993S: Supported
1994F: blockdev.c
a2dde2f2 1995F: blockdev-hmp-cmds.c
4120201d
MA
1996F: block/qapi.c
1997F: qapi/block*.json
fa988e39 1998F: qapi/transaction.json
ebe2aad2 1999T: git https://repo.or.cz/qemu/armbru.git block-next
4120201d 2000
538193bc 2001Dirty Bitmaps
538193bc 2002M: John Snow <jsnow@redhat.com>
4a189fdf 2003R: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
538193bc
JS
2004L: qemu-block@nongnu.org
2005S: Supported
538193bc
JS
2006F: include/qemu/hbitmap.h
2007F: include/block/dirty-bitmap.h
00637c6b
VSO
2008F: block/dirty-bitmap.c
2009F: block/qcow2-bitmap.c
052db8e7 2010F: migration/block-dirty-bitmap.c
00637c6b 2011F: util/hbitmap.c
538193bc 2012F: tests/test-hbitmap.c
5746c1cd 2013F: docs/interop/bitmaps.rst
e18a8b34 2014T: git https://github.com/jnsnow/qemu.git bitmaps
538193bc 2015
61af0ee6 2016Character device backends
55fc84a7 2017M: Marc-André Lureau <marcandre.lureau@redhat.com>
2185fd67 2018R: Paolo Bonzini <pbonzini@redhat.com>
fd5d5c56 2019S: Maintained
178fe0ae 2020F: chardev/
8228e353 2021F: include/chardev/
dbeee392 2022F: qapi/char.json
fd5d5c56 2023
e26082fd
PB
2024Character Devices (Braille)
2025M: Samuel Thibault <samuel.thibault@ens-lyon.org>
2026S: Maintained
6b10e573 2027F: chardev/baum.c
fd5d5c56 2028
e94630d3
MA
2029Command line option argument parsing
2030M: Markus Armbruster <armbru@redhat.com>
2031S: Supported
2032F: include/qemu/option.h
2033F: tests/test-keyval.c
2034F: tests/test-qemu-opts.c
2035F: util/keyval.c
2036F: util/qemu-option.c
2037
8c413e79
MA
2038Coverity model
2039M: Markus Armbruster <armbru@redhat.com>
2040S: Supported
2041F: scripts/coverity-model.c
2042
9c263d07
PM
2043Coverity Scan integration
2044M: Peter Maydell <peter.maydell@linaro.org>
2045S: Maintained
2046F: scripts/coverity-scan/
2047
d24b569a 2048Device Tree
c3c962c1
AF
2049M: Alistair Francis <alistair.francis@wdc.com>
2050R: David Gibson <david@gibson.dropbear.id.au>
d24b569a 2051S: Maintained
82407515
TH
2052F: device_tree.c
2053F: include/sysemu/device_tree.h
d24b569a 2054
3505a22b
MAL
2055Dump
2056S: Supported
2057M: Marc-André Lureau <marcandre.lureau@redhat.com>
6d3da32c 2058F: dump/
3505a22b
MAL
2059F: hw/misc/vmcoreinfo.c
2060F: include/hw/misc/vmcoreinfo.h
6d3da32c 2061F: include/qemu/win_dump_defs
3505a22b
MAL
2062F: include/sysemu/dump-arch.h
2063F: include/sysemu/dump.h
d06b747b 2064F: qapi/dump.json
3505a22b
MAL
2065F: scripts/dump-guest-memory.py
2066F: stubs/dump.c
2067
4f966768
MA
2068Error reporting
2069M: Markus Armbruster <armbru@redhat.com>
2070S: Supported
2071F: include/qapi/error.h
2072F: include/qemu/error-report.h
abb3d37d 2073F: qapi/error.json
4f966768
MA
2074F: util/error.c
2075F: util/qemu-error.c
d1d3a997
VSO
2076F: scripts/coccinelle/err-bad-newline.cocci
2077F: scripts/coccinelle/error-use-after-free.cocci
2078F: scripts/coccinelle/error_propagate_null.cocci
2079F: scripts/coccinelle/remove_local_err.cocci
2080F: scripts/coccinelle/use-error_fatal.cocci
4f966768 2081
fd5d5c56 2082GDB stub
c7b3e866
AB
2083M: Alex Bennée <alex.bennee@linaro.org>
2084R: Philippe Mathieu-Daudé <philmd@redhat.com>
2085S: Maintained
fd5d5c56
AL
2086F: gdbstub*
2087F: gdb-xml/
2088
01a9c03c
PB
2089Memory API
2090M: Paolo Bonzini <pbonzini@redhat.com>
2091S: Supported
2092F: include/exec/ioport.h
2093F: ioport.c
14776ab5 2094F: include/exec/memop.h
01a9c03c 2095F: include/exec/memory.h
2b1641d0 2096F: include/exec/ram_addr.h
41aa4e9f 2097F: include/exec/ramblock.h
01a9c03c
PB
2098F: memory.c
2099F: include/exec/memory-internal.h
2100F: exec.c
044e2af9 2101F: scripts/coccinelle/memory-region-housekeeping.cocci
01a9c03c 2102
7ee3bf03
GH
2103SPICE
2104M: Gerd Hoffmann <kraxel@redhat.com>
2105S: Supported
6e481d57 2106F: include/ui/qemu-spice.h
438528a3 2107F: include/ui/spice-display.h
7ee3bf03
GH
2108F: ui/spice-*.c
2109F: audio/spiceaudio.c
8d8b636d 2110F: hw/display/qxl*
608cfed6 2111F: qapi/ui.json
9bd4cb35 2112F: docs/spice-port-fqdn.txt
7ee3bf03 2113
fd5d5c56 2114Graphics
25eccc37
GH
2115M: Gerd Hoffmann <kraxel@redhat.com>
2116S: Odd Fixes
fd5d5c56 2117F: ui/
e220656c 2118F: include/ui/
608cfed6 2119F: qapi/ui.json
b1d38037 2120F: util/drm.c
fd5d5c56 2121
351f1bf6 2122Cocoa graphics
30ef3c74 2123M: Peter Maydell <peter.maydell@linaro.org>
351f1bf6
AF
2124S: Odd Fixes
2125F: ui/cocoa.m
2126
fd5d5c56 2127Main loop
da26f37a
PB
2128M: Paolo Bonzini <pbonzini@redhat.com>
2129S: Maintained
2130F: cpus.c
54d31236
MA
2131F: include/qemu/main-loop.h
2132F: include/sysemu/runstate.h
3ecb29a3
PB
2133F: util/main-loop.c
2134F: util/qemu-timer.c
bac068e0 2135F: softmmu/vl.c
7b733862 2136F: softmmu/main.c
0e201d34 2137F: qapi/run-state.json
fd5d5c56 2138
8899b4ae 2139Human Monitor (HMP)
c833fb4a 2140M: Dr. David Alan Gilbert <dgilbert@redhat.com>
fbb0621a 2141S: Maintained
5bce308a 2142F: monitor/monitor-internal.h
e84328fa 2143F: monitor/misc.c
1d95db74 2144F: monitor/monitor.c
f1b3ccfa
KW
2145F: monitor/hmp*
2146F: hmp.h
c13e9912
TH
2147F: hmp-commands*.hx
2148F: include/monitor/hmp-target.h
1e8a1fae 2149F: tests/qtest/test-hmp.c
637de4db
MA
2150F: include/qemu/qemu-print.h
2151F: util/qemu-print.c
fd5d5c56 2152
f536f112 2153Network device backends
442469e6 2154M: Jason Wang <jasowang@redhat.com>
fd5d5c56
AL
2155S: Maintained
2156F: net/
d24b2b1c 2157F: include/net/
e9bbc8bd 2158F: qemu-bridge-helper.c
e18a8b34 2159T: git https://github.com/jasowang/qemu.git net
3c0bd37d 2160F: qapi/net.json
fd5d5c56 2161
aee09baf
VM
2162Netmap network backend
2163M: Luigi Rizzo <rizzo@iet.unipi.it>
2164M: Giuseppe Lettieri <g.lettieri@iet.unipi.it>
2165M: Vincenzo Maffione <v.maffione@gmail.com>
2166W: http://info.iet.unipi.it/~luigi/netmap/
2167S: Maintained
2168F: net/netmap.c
2169
4fc264f4
EH
2170Host Memory Backends
2171M: Eduardo Habkost <ehabkost@redhat.com>
2172M: Igor Mammedov <imammedo@redhat.com>
2173S: Maintained
2174F: backends/hostmem*.c
2175F: include/sysemu/hostmem.h
e18a8b34 2176T: git https://github.com/ehabkost/qemu.git machine-next
4fc264f4 2177
6034011c
GA
2178Cryptodev Backends
2179M: Gonglei <arei.gonglei@huawei.com>
2180S: Maintained
2181F: include/sysemu/cryptodev*.h
2182F: backends/cryptodev*.c
2183
ad904f66
EH
2184Python scripts
2185M: Eduardo Habkost <ehabkost@redhat.com>
2186M: Cleber Rosa <crosa@redhat.com>
2187S: Odd fixes
1b6ee29f 2188F: python/qemu/*py
ad904f66
EH
2189F: scripts/*.py
2190F: tests/*.py
2191
f4abfc6c
VSO
2192Benchmark util
2193M: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
2194S: Maintained
2195F: scripts/simplebench/
2196
8899b4ae 2197QAPI
9740618c 2198M: Markus Armbruster <armbru@redhat.com>
8899b4ae 2199M: Michael Roth <mdroth@linux.vnet.ibm.com>
9740618c 2200S: Supported
8899b4ae 2201F: qapi/
0311c5bd 2202X: qapi/*.json
ac4abb9a
MA
2203F: include/qapi/
2204X: include/qapi/qmp/
2205F: include/qapi/qmp/dispatch.h
c0bd0b50 2206F: tests/qapi-schema/
ac4abb9a 2207F: tests/test-*-visitor.c
e94630d3 2208F: tests/test-qapi-*.c
ac4abb9a 2209F: tests/test-qmp-*.c
e94630d3 2210F: tests/test-visitor-serialization.c
be25fcc4
MA
2211F: scripts/qapi-gen.py
2212F: scripts/qapi/*
c39cdbf6 2213F: docs/devel/qapi*
ebe2aad2 2214T: git https://repo.or.cz/qemu/armbru.git qapi-next
8899b4ae 2215
7810d291
LC
2216QAPI Schema
2217M: Eric Blake <eblake@redhat.com>
7810d291
LC
2218M: Markus Armbruster <armbru@redhat.com>
2219S: Supported
0311c5bd 2220F: qapi/*.json
ebe2aad2 2221T: git https://repo.or.cz/qemu/armbru.git qapi-next
7810d291 2222
f3582ba4 2223QObject
daf5dc78
MA
2224M: Markus Armbruster <armbru@redhat.com>
2225S: Supported
f3582ba4 2226F: qobject/
7735d2b5
MA
2227F: include/qapi/qmp/
2228X: include/qapi/qmp/dispatch.h
a2f3453e 2229F: scripts/coccinelle/qobject.cocci
7735d2b5 2230F: tests/check-qdict.c
7735d2b5
MA
2231F: tests/check-qjson.c
2232F: tests/check-qlist.c
cd81e02b
PMD
2233F: tests/check-qlit.c
2234F: tests/check-qnull.c
2235F: tests/check-qnum.c
2236F: tests/check-qobject.c
7735d2b5 2237F: tests/check-qstring.c
fe07b62c 2238F: tests/data/qobject/qdict.txt
ebe2aad2 2239T: git https://repo.or.cz/qemu/armbru.git qapi-next
f3582ba4 2240
f05d9999
MR
2241QEMU Guest Agent
2242M: Michael Roth <mdroth@linux.vnet.ibm.com>
2243S: Maintained
2244F: qga/
27a296fc 2245F: docs/interop/qemu-ga.rst
ab7f9f7d
PMD
2246F: scripts/qemu-guest-agent/
2247F: tests/test-qga.c
2248F: docs/interop/qemu-ga-ref.texi
e18a8b34 2249T: git https://github.com/mdroth/qemu.git qga
f05d9999 2250
4688c94c 2251QOM
1085d86e
PB
2252M: Paolo Bonzini <pbonzini@redhat.com>
2253R: Daniel P. Berrange <berrange@redhat.com>
2254R: Eduardo Habkost <ehabkost@redhat.com>
4688c94c 2255S: Supported
8f920054
MA
2256F: docs/qdev-device-use.txt
2257F: hw/core/qdev*
2258F: include/hw/qdev*
2259F: include/monitor/qdev.h
4688c94c 2260F: include/qom/
c577ff62
MA
2261F: qapi/qom.json
2262F: qapi/qdev.json
8f920054 2263F: qdev-monitor.c
4688c94c 2264F: qom/
9f4aa7ce
AF
2265F: tests/check-qom-interface.c
2266F: tests/check-qom-proplist.c
8f920054 2267F: tests/test-qdev-global-props.c
4688c94c 2268
8899b4ae 2269QMP
9740618c
LC
2270M: Markus Armbruster <armbru@redhat.com>
2271S: Supported
5bce308a 2272F: monitor/monitor-internal.h
f1b3ccfa 2273F: monitor/qmp*
e84328fa 2274F: monitor/misc.c
1d95db74 2275F: monitor/monitor.c
abb3d37d 2276F: qapi/error.json
c39cdbf6 2277F: docs/devel/*qmp-*
12b2f0d9 2278F: docs/interop/*qmp-*
9740618c 2279F: scripts/qmp/
1e8a1fae
TH
2280F: tests/qtest/qmp-test.c
2281F: tests/qtest/qmp-cmd-test.c
ebe2aad2 2282T: git https://repo.or.cz/qemu/armbru.git qapi-next
8899b4ae 2283
98a43bf0 2284qtest
98a43bf0
PB
2285M: Thomas Huth <thuth@redhat.com>
2286M: Laurent Vivier <lvivier@redhat.com>
2185fd67 2287R: Paolo Bonzini <pbonzini@redhat.com>
98a43bf0
PB
2288S: Maintained
2289F: qtest.c
3fe13fe1 2290F: accel/qtest.c
1e8a1fae 2291F: tests/qtest/
98a43bf0 2292
5f6fd09a
AB
2293Device Fuzzing
2294M: Alexander Bulekov <alxndr@bu.edu>
2295R: Paolo Bonzini <pbonzini@redhat.com>
2296R: Bandan Das <bsd@redhat.com>
2297R: Stefan Hajnoczi <stefanha@redhat.com>
2298S: Maintained
2299F: tests/qtest/fuzz/
2300
cc0100f4 2301Register API
c22e580c 2302M: Alistair Francis <alistair@alistair23.me>
cc0100f4
AF
2303S: Maintained
2304F: hw/core/register.c
2305F: include/hw/register.h
06a7b243 2306F: include/hw/registerfields.h
cc0100f4 2307
fd5d5c56 2308SLIRP
eda509fa 2309M: Samuel Thibault <samuel.thibault@ens-lyon.org>
bafc72ab 2310S: Maintained
fd5d5c56 2311F: slirp/
663fb1e1 2312F: net/slirp.c
d24b2b1c 2313F: include/net/slirp.h
02cffe24 2314T: git https://people.debian.org/~sthibault/qemu.git slirp
fd5d5c56 2315
b1ed728a
PB
2316Stubs
2317M: Paolo Bonzini <pbonzini@redhat.com>
2318S: Maintained
2319F: stubs/
2320
598a3f35 2321Tracing
1cd0f8ce 2322M: Stefan Hajnoczi <stefanha@redhat.com>
598a3f35
SH
2323S: Maintained
2324F: trace/
0e076292 2325F: trace-events
3a8273b1 2326F: docs/qemu-option-trace.rst.inc
f70fd8fd
LV
2327F: scripts/tracetool.py
2328F: scripts/tracetool/
62dd1048 2329F: scripts/qemu-trace-stap*
605ffebb 2330F: docs/interop/qemu-trace-stap.rst
c39cdbf6 2331F: docs/devel/tracing.txt
e18a8b34 2332T: git https://github.com/stefanha/qemu.git tracing
598a3f35 2333
3859b6cf 2334TPM
1f63669e 2335M: Stefan Berger <stefanb@linux.ibm.com>
6b4f250b 2336S: Maintained
3859b6cf 2337F: tpm.c
c39f95dc 2338F: stubs/tpm.c
3859b6cf
MA
2339F: hw/tpm/*
2340F: include/hw/acpi/tpm.h
2341F: include/sysemu/tpm*
2342F: qapi/tpm.json
6b4f250b 2343F: backends/tpm.c
1e8a1fae 2344F: tests/qtest/*tpm*
e18a8b34 2345T: git https://github.com/stefanberger/qemu-tpm.git tpm-next
3859b6cf 2346
14f40fdc 2347Checkpatch
14f40fdc
BS
2348S: Odd Fixes
2349F: scripts/checkpatch.pl
2350
c0787c8d
JQ
2351Migration
2352M: Juan Quintela <quintela@redhat.com>
d7fc72ce 2353M: Dr. David Alan Gilbert <dgilbert@redhat.com>
c0787c8d 2354S: Maintained
107b5969
MAL
2355F: hw/core/vmstate-if.c
2356F: include/hw/vmstate-if.h
c0787c8d 2357F: include/migration/
44a1f946 2358F: migration/
c5515640
AS
2359F: scripts/vmstate-static-checker.py
2360F: tests/vmstate-static-checker-data/
1e8a1fae 2361F: tests/qtest/migration-test.c
c468e368 2362F: docs/devel/migration.rst
48685a8e 2363F: qapi/migration.json
c0787c8d 2364
a566907f
MAL
2365D-Bus
2366M: Marc-André Lureau <marcandre.lureau@redhat.com>
2367S: Maintained
5010cec2 2368F: backends/dbus-vmstate.c
586ca6ba 2369F: tests/dbus-vmstate*
a5021d69
MAL
2370F: util/dbus.c
2371F: include/qemu/dbus.h
a566907f 2372F: docs/interop/dbus.rst
5010cec2 2373F: docs/interop/dbus-vmstate.rst
a566907f 2374
92bfedb0 2375Seccomp
064983cb 2376M: Eduardo Otubo <otubo@redhat.com>
92bfedb0
EO
2377S: Supported
2378F: qemu-seccomp.c
2379F: include/sysemu/seccomp.h
2380
ddbb0d09
DB
2381Cryptography
2382M: Daniel P. Berrange <berrange@redhat.com>
2383S: Maintained
2384F: crypto/
2385F: include/crypto/
2386F: tests/test-crypto-*
3947ecfc 2387F: tests/benchmark-crypto-*
4d21171b
PMD
2388F: tests/crypto-tls-*
2389F: tests/pkix_asn1_tab.c
899833cd 2390F: qemu.sasl
ddbb0d09 2391
10817bf0
DB
2392Coroutines
2393M: Stefan Hajnoczi <stefanha@redhat.com>
2394M: Kevin Wolf <kwolf@redhat.com>
00a25291 2395S: Maintained
10817bf0
DB
2396F: util/*coroutine*
2397F: include/qemu/coroutine*
2398F: tests/test-coroutine.c
2399
88c5f205
DB
2400Buffers
2401M: Daniel P. Berrange <berrange@redhat.com>
2402S: Odd fixes
2403F: util/buffer.c
2404F: include/qemu/buffer.h
2405
666a3af9
DB
2406I/O Channels
2407M: Daniel P. Berrange <berrange@redhat.com>
2408S: Maintained
2409F: io/
2410F: include/io/
2411F: tests/test-io-*
2412
5b76dd13
DB
2413User authorization
2414M: Daniel P. Berrange <berrange@redhat.com>
2415S: Maintained
2416F: authz/
c8c99887 2417F: qapi/authz.json
5b76dd13
DB
2418F: include/authz/
2419F: tests/test-authz-*
2420
5614a283
GH
2421Sockets
2422M: Daniel P. Berrange <berrange@redhat.com>
2423M: Gerd Hoffmann <kraxel@redhat.com>
5614a283
GH
2424S: Maintained
2425F: include/qemu/sockets.h
2426F: util/qemu-sockets.c
a2ff5a48 2427F: qapi/sockets.json
5614a283 2428
90e33dfe
DB
2429File monitor
2430M: Daniel P. Berrange <berrange@redhat.com>
2431S: Odd fixes
2432F: util/filemonitor*.c
2433F: include/qemu/filemonitor.h
2434F: tests/test-util-filemonitor.c
2435
d310d85b
AG
2436Throttling infrastructure
2437M: Alberto Garcia <berto@igalia.com>
2438S: Supported
2439F: block/throttle-groups.c
2440F: include/block/throttle-groups.h
89603938 2441F: include/qemu/throttle*.h
d310d85b 2442F: util/throttle.c
89603938
PMD
2443F: docs/throttle.txt
2444F: tests/test-throttle.c
d310d85b
AG
2445L: qemu-block@nongnu.org
2446
080d7aac 2447UUID
fe5ca46d 2448M: Fam Zheng <fam@euphon.net>
080d7aac
FZ
2449S: Supported
2450F: util/uuid.c
2451F: include/qemu/uuid.h
2452F: tests/test-uuid.c
2453
a4cc318e
HZ
2454COLO Framework
2455M: zhanghailiang <zhang.zhanghailiang@huawei.com>
2456S: Maintained
2457F: migration/colo*
2458F: include/migration/colo.h
2459F: include/migration/failover.h
2460F: docs/COLO-FT.txt
2461
88f82ed1 2462COLO Proxy
c6bf50ff 2463M: Zhang Chen <chen.zhang@intel.com>
88f82ed1
ZC
2464M: Li Zhijian <lizhijian@cn.fujitsu.com>
2465S: Supported
2466F: docs/colo-proxy.txt
2467F: net/colo*
2468F: net/filter-rewriter.c
2469F: net/filter-mirror.c
2470
62258201
PD
2471Record/replay
2472M: Pavel Dovgalyuk <pavel.dovgaluk@ispras.ru>
2473R: Paolo Bonzini <pbonzini@redhat.com>
70b7fba9 2474W: https://wiki.qemu.org/Features/record-replay
62258201
PD
2475S: Supported
2476F: replay/*
2477F: block/blkreplay.c
2478F: net/filter-replay.c
2479F: include/sysemu/replay.h
2480F: docs/replay.txt
2481F: stubs/replay.c
2482
eecf5eed
PX
2483IOVA Tree
2484M: Peter Xu <peterx@redhat.com>
2485S: Maintained
2486F: include/qemu/iova-tree.h
2487F: util/iova-tree.c
2488
5ee547bb
VP
2489elf2dmp
2490M: Viktor Prutyanov <viktor.prutyanov@phystech.edu>
2491S: Maintained
2492F: contrib/elf2dmp/
2493
93198b6c
CM
2494I2C and SMBus
2495M: Corey Minyard <cminyard@mvista.com>
2496S: Maintained
2497F: hw/i2c/core.c
2498F: hw/i2c/smbus_slave.c
2499F: hw/i2c/smbus_master.c
2500F: hw/i2c/smbus_eeprom.c
2501F: include/hw/i2c/i2c.h
2502F: include/hw/i2c/smbus_master.h
2503F: include/hw/i2c/smbus_slave.h
2504F: include/hw/i2c/smbus_eeprom.h
2505
6739df3f
LE
2506EDK2 Firmware
2507M: Laszlo Ersek <lersek@redhat.com>
2508M: Philippe Mathieu-Daudé <philmd@redhat.com>
2509S: Supported
2510F: pc-bios/descriptors/??-edk2-*.json
2511F: pc-bios/edk2-*
2512F: roms/Makefile.edk2
2513F: roms/edk2
2514F: roms/edk2-*
2515F: tests/data/uefi-boot-images/
2516F: tests/uefi-test-tools/
71920809
PMD
2517F: .gitlab-ci-edk2.yml
2518F: .gitlab-ci.d/edk2/
6739df3f 2519
fd5d5c56
AL
2520Usermode Emulation
2521------------------
6347e1f1 2522Overall usermode emulation
486bbe5f
PB
2523M: Riku Voipio <riku.voipio@iki.fi>
2524S: Maintained
2525F: thunk.c
58410666 2526F: accel/tcg/user-exec*.c
486bbe5f 2527
fd5d5c56 2528BSD user
297e8005 2529S: Orphan
fd5d5c56 2530F: bsd-user/
ccf0a57b 2531F: default-configs/*-bsd-user.mak
fd5d5c56 2532
fd5d5c56
AL
2533Linux user
2534M: Riku Voipio <riku.voipio@iki.fi>
ecc1f5ad 2535R: Laurent Vivier <laurent@vivier.eu>
fd5d5c56
AL
2536S: Maintained
2537F: linux-user/
ccf0a57b 2538F: default-configs/*-linux-user.mak
e5dd9875 2539F: scripts/qemu-binfmt-conf.sh
e3a6c825 2540F: scripts/update-syscalltbl.sh
57333330 2541F: scripts/update-mips-syscall-args.sh
382ae67a 2542F: scripts/gensyscalls.sh
42f5a7e9
AJ
2543
2544Tiny Code Generator (TCG)
2545-------------------------
6347e1f1 2546Common TCG code
cc7772bd 2547M: Richard Henderson <rth@twiddle.net>
42f5a7e9
AJ
2548S: Maintained
2549F: tcg/
d3582cfd 2550F: include/tcg/
42f5a7e9 2551
22b5867b
AB
2552TCG Plugins
2553M: Alex Bennée <alex.bennee@linaro.org>
2554S: Maintained
8ea6abf0 2555F: docs/devel/tcg-plugins.rst
22b5867b
AB
2556F: plugins/
2557F: tests/plugin
2558
6347e1f1 2559AArch64 TCG target
3e5a01ef 2560M: Richard Henderson <richard.henderson@linaro.org>
b25a464c 2561S: Maintained
b4f2bd1c 2562L: qemu-arm@nongnu.org
b25a464c 2563F: tcg/aarch64/
c17652ee
PB
2564F: disas/arm-a64.cc
2565F: disas/libvixl/
b25a464c 2566
6347e1f1 2567ARM TCG target
42f5a7e9
AJ
2568M: Andrzej Zaborowski <balrogg@gmail.com>
2569S: Maintained
b4f2bd1c 2570L: qemu-arm@nongnu.org
42f5a7e9 2571F: tcg/arm/
c17652ee 2572F: disas/arm.c
42f5a7e9 2573
6347e1f1 2574i386 TCG target
ecd1a5d0 2575M: Richard Henderson <rth@twiddle.net>
42f5a7e9
AJ
2576S: Maintained
2577F: tcg/i386/
c17652ee 2578F: disas/i386.c
42f5a7e9 2579
6347e1f1 2580MIPS TCG target
0eac70b0 2581M: Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
099d510b 2582R: Aurelien Jarno <aurelien@aurel32.net>
63640d6a 2583R: Aleksandar Rikalo <aleksandar.rikalo@rt-rk.com>
42f5a7e9
AJ
2584S: Maintained
2585F: tcg/mips/
2586
6347e1f1 2587PPC TCG target
15610d42
PK
2588M: Richard Henderson <rth@twiddle.net>
2589S: Odd Fixes
42f5a7e9 2590F: tcg/ppc/
c17652ee 2591F: disas/ppc.c
42f5a7e9 2592
6347e1f1 2593RISC-V TCG target
c1677bcc 2594M: Palmer Dabbelt <palmer@dabbelt.com>
fb1f70f3
AF
2595M: Alistair Francis <Alistair.Francis@wdc.com>
2596L: qemu-riscv@nongnu.org
2597S: Maintained
2598F: tcg/riscv/
2599F: disas/riscv.c
2600
6347e1f1 2601S390 TCG target
42f5a7e9
AJ
2602M: Richard Henderson <rth@twiddle.net>
2603S: Maintained
2604F: tcg/s390/
c17652ee 2605F: disas/s390.c
146bd283 2606L: qemu-s390x@nongnu.org
42f5a7e9 2607
6347e1f1 2608SPARC TCG target
297e8005 2609S: Odd Fixes
42f5a7e9 2610F: tcg/sparc/
c17652ee 2611F: disas/sparc.c
bc75c9e5 2612
6347e1f1 2613TCI TCG target
bc75c9e5
SW
2614M: Stefan Weil <sw@weilnetz.de>
2615S: Maintained
8ef9cd55 2616F: tcg/tci/
752a2ae2 2617F: tcg/tci.c
c17652ee 2618F: disas/tci.c
aa09c951 2619
f05b328c
SH
2620Block drivers
2621-------------
2622VMDK
fe5ca46d 2623M: Fam Zheng <fam@euphon.net>
c95e4c0e 2624L: qemu-block@nongnu.org
f05b328c
SH
2625S: Supported
2626F: block/vmdk.c
2627
2628RBD
2bbd9986 2629M: Jason Dillaman <dillaman@redhat.com>
280458a3 2630L: qemu-block@nongnu.org
f05b328c
SH
2631S: Supported
2632F: block/rbd.c
2633
2634Sheepdog
f05b328c 2635M: Liu Yuan <namei.unix@gmail.com>
280458a3 2636L: qemu-block@nongnu.org
5f5246b6
JC
2637L: sheepdog@lists.wpkg.org
2638S: Odd Fixes
f05b328c
SH
2639F: block/sheepdog.c
2640
2641VHDX
5f5246b6 2642M: Jeff Cody <codyprime@gmail.com>
280458a3 2643L: qemu-block@nongnu.org
f05b328c
SH
2644S: Supported
2645F: block/vhdx*
2646
2647VDI
2648M: Stefan Weil <sw@weilnetz.de>
c95e4c0e 2649L: qemu-block@nongnu.org
f05b328c
SH
2650S: Maintained
2651F: block/vdi.c
2652
2653iSCSI
2654M: Ronnie Sahlberg <ronniesahlberg@gmail.com>
2655M: Paolo Bonzini <pbonzini@redhat.com>
2656M: Peter Lieven <pl@kamp.de>
c95e4c0e 2657L: qemu-block@nongnu.org
2185fd67 2658S: Odd Fixes
f05b328c 2659F: block/iscsi.c
2deb63c2 2660F: block/iscsi-opts.c
f05b328c 2661
99c62e70
EB
2662Network Block Device (NBD)
2663M: Eric Blake <eblake@redhat.com>
99c62e70
EB
2664L: qemu-block@nongnu.org
2665S: Maintained
2666F: block/nbd*
2667F: nbd/
2668F: include/block/nbd*
2669F: qemu-nbd.*
2670F: blockdev-nbd.c
3229a835 2671F: docs/interop/nbd.txt
87c0868f 2672F: docs/interop/qemu-nbd.rst
ebe2aad2 2673T: git https://repo.or.cz/qemu/ericb.git nbd
99c62e70 2674
6542aa9c
PL
2675NFS
2676M: Peter Lieven <pl@kamp.de>
280458a3 2677L: qemu-block@nongnu.org
6542aa9c
PL
2678S: Maintained
2679F: block/nfs.c
2680
f05b328c
SH
2681SSH
2682M: Richard W.M. Jones <rjones@redhat.com>
280458a3 2683L: qemu-block@nongnu.org
f05b328c
SH
2684S: Supported
2685F: block/ssh.c
c9a12e75 2686
280458a3 2687CURL
280458a3 2688L: qemu-block@nongnu.org
5c6090fa 2689S: Odd Fixes
280458a3 2690F: block/curl.c
280458a3
JC
2691
2692GLUSTER
280458a3 2693L: qemu-block@nongnu.org
5c6090fa
TH
2694L: integration@gluster.org
2695S: Odd Fixes
280458a3 2696F: block/gluster.c
b5e9476c 2697
199667a8 2698Null Block Driver
fe5ca46d 2699M: Fam Zheng <fam@euphon.net>
199667a8
FZ
2700L: qemu-block@nongnu.org
2701S: Supported
2702F: block/null.c
2703
bdd6a90a 2704NVMe Block Driver
fe5ca46d 2705M: Fam Zheng <fam@euphon.net>
bdd6a90a
FZ
2706L: qemu-block@nongnu.org
2707S: Supported
2708F: block/nvme*
2709
b5e9476c
GA
2710Bootdevice
2711M: Gonglei <arei.gonglei@huawei.com>
2712S: Maintained
2713F: bootdevice.c
ecdda9e0
AG
2714
2715Quorum
2716M: Alberto Garcia <berto@igalia.com>
2717S: Supported
2718F: block/quorum.c
2719L: qemu-block@nongnu.org
e7c6e631 2720
bfcc224e
AV
2721blklogwrites
2722M: Ari Sundholm <ari@tuxera.com>
2723L: qemu-block@nongnu.org
2724S: Supported
2725F: block/blklogwrites.c
2726
e7c6e631
SH
2727blkverify
2728M: Stefan Hajnoczi <stefanha@redhat.com>
2729L: qemu-block@nongnu.org
2730S: Supported
2731F: block/blkverify.c
2732
2733bochs
2734M: Stefan Hajnoczi <stefanha@redhat.com>
2735L: qemu-block@nongnu.org
2736S: Supported
2737F: block/bochs.c
2738
2739cloop
2740M: Stefan Hajnoczi <stefanha@redhat.com>
2741L: qemu-block@nongnu.org
2742S: Supported
2743F: block/cloop.c
2744
2745dmg
2746M: Stefan Hajnoczi <stefanha@redhat.com>
2747L: qemu-block@nongnu.org
2748S: Supported
2749F: block/dmg.c
2750
2751parallels
2752M: Stefan Hajnoczi <stefanha@redhat.com>
f3073712 2753M: Denis V. Lunev <den@openvz.org>
e7c6e631
SH
2754L: qemu-block@nongnu.org
2755S: Supported
2756F: block/parallels.c
5746c1cd 2757F: docs/interop/parallels.txt
e7c6e631
SH
2758
2759qed
2760M: Stefan Hajnoczi <stefanha@redhat.com>
2761L: qemu-block@nongnu.org
2762S: Supported
2763F: block/qed.c
2764
2765raw
2766M: Kevin Wolf <kwolf@redhat.com>
2767L: qemu-block@nongnu.org
2768S: Supported
2769F: block/linux-aio.c
f586d5fc 2770F: include/block/raw-aio.h
2e6fc7eb 2771F: block/raw-format.c
c1bb86cd
EB
2772F: block/file-posix.c
2773F: block/file-win32.c
e7c6e631
SH
2774F: block/win32-aio.c
2775
6663a0a3
AM
2776Linux io_uring
2777M: Aarushi Mehta <mehta.aaru20@gmail.com>
2778M: Julia Suvorova <jusual@redhat.com>
2779M: Stefan Hajnoczi <stefanha@redhat.com>
2780L: qemu-block@nongnu.org
2781S: Maintained
2782F: block/io_uring.c
06a47ef5 2783F: stubs/io_uring.c
6663a0a3 2784
e7c6e631
SH
2785qcow2
2786M: Kevin Wolf <kwolf@redhat.com>
c4189d85 2787M: Max Reitz <mreitz@redhat.com>
e7c6e631
SH
2788L: qemu-block@nongnu.org
2789S: Supported
2790F: block/qcow2*
b24f9882 2791F: docs/interop/qcow2.txt
e7c6e631
SH
2792
2793qcow
2794M: Kevin Wolf <kwolf@redhat.com>
2795L: qemu-block@nongnu.org
2796S: Supported
2797F: block/qcow.c
2798
2799blkdebug
2800M: Kevin Wolf <kwolf@redhat.com>
c4189d85 2801M: Max Reitz <mreitz@redhat.com>
e7c6e631
SH
2802L: qemu-block@nongnu.org
2803S: Supported
2804F: block/blkdebug.c
2805
2806vpc
2807M: Kevin Wolf <kwolf@redhat.com>
2808L: qemu-block@nongnu.org
2809S: Supported
2810F: block/vpc.c
2811
2812vvfat
2813M: Kevin Wolf <kwolf@redhat.com>
2814L: qemu-block@nongnu.org
2815S: Supported
2816F: block/vvfat.c
abfe4e94
SH
2817
2818Image format fuzzer
2819M: Stefan Hajnoczi <stefanha@redhat.com>
2820L: qemu-block@nongnu.org
2821S: Supported
2822F: tests/image-fuzzer/
717171bd 2823
049105a3 2824Replication
205f8618 2825M: Wen Congyang <wencongyang2@huawei.com>
3ccc0a01 2826M: Xie Changlong <xiechanglong.d@gmail.com>
049105a3
CX
2827S: Supported
2828F: replication*
2829F: block/replication.c
2830F: tests/test-replication.c
2831F: docs/block-replication.txt
2832
a3defabb 2833PVRDMA
bfffeac8 2834M: Yuval Shaia <yuval.shaia.ml@gmail.com>
fe355cbd 2835M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
a3defabb
MA
2836S: Maintained
2837F: hw/rdma/*
2838F: hw/rdma/vmw/*
2839F: docs/pvrdma.txt
a5d2f6f8 2840F: contrib/rdmacm-mux/*
4a5c9903 2841F: qapi/rdma.json
a3defabb 2842
b052fec8
AB
2843Semihosting
2844M: Alex Bennée <alex.bennee@linaro.org>
b052fec8
AB
2845S: Maintained
2846F: hw/semihosting/
2847F: include/hw/semihosting/
2848
b9e02c06
AB
2849Build and test automation
2850-------------------------
0475a03e 2851Build and test automation
b9e02c06 2852M: Alex Bennée <alex.bennee@linaro.org>
fe5ca46d 2853M: Fam Zheng <fam@euphon.net>
0d8ea8f1 2854R: Philippe Mathieu-Daudé <philmd@redhat.com>
e70dc7f8 2855S: Maintained
20a4f14f 2856F: .github/lockdown.yml
b9e02c06 2857F: .travis.yml
0708e647 2858F: scripts/travis/
d92d886a 2859F: .shippable.yml
e70dc7f8 2860F: tests/docker/
18023821 2861F: tests/vm/
54dbfd85 2862F: scripts/archive-source.sh
e70dc7f8 2863W: https://travis-ci.org/qemu/qemu
2a747008 2864W: https://app.shippable.com/github/qemu/qemu
e70dc7f8 2865W: http://patchew.org/QEMU/
717171bd 2866
7162fbb4
EM
2867FreeBSD Hosted Continuous Integration
2868M: Ed Maste <emaste@freebsd.org>
2869M: Li-Wen Hsu <lwhsu@freebsd.org>
7162fbb4
EM
2870S: Maintained
2871F: .cirrus.yml
2872W: https://cirrus-ci.com/github/qemu/qemu
2873
0a8b05c7
TH
2874GitLab Continuous Integration
2875M: Thomas Huth <thuth@redhat.com>
2876S: Maintained
2877F: .gitlab-ci.yml
2878
7e97017e
AB
2879Guest Test Compilation Support
2880M: Alex Bennée <alex.bennee@linaro.org>
2881R: Philippe Mathieu-Daudé <f4bug@amsat.org>
00a25291 2882S: Maintained
7e97017e 2883F: tests/tcg/Makefile
c722a9e4 2884F: tests/tcg/Makefile.include
7e97017e 2885
717171bd
DB
2886Documentation
2887-------------
2888Build system architecture
2889M: Daniel P. Berrange <berrange@redhat.com>
2890S: Odd Fixes
c39cdbf6 2891F: docs/devel/build-system.txt
8a49e97f 2892
92329a7e
AB
2893GIT Data Mining Config
2894M: Alex Bennée <alex.bennee@linaro.org>
2895S: Odd Fixes
2896F: gitdm.config
2897F: contrib/gitdm/*
2898
b02c9bc3
MA
2899Incompatible changes
2900R: libvir-list@redhat.com
abcd92db 2901F: docs/system/deprecated.rst
b02c9bc3 2902
aef45d51
DB
2903Build System
2904------------
2905GIT submodules
2906M: Daniel P. Berrange <berrange@redhat.com>
2907S: Odd Fixes
2908F: scripts/git-submodule.sh
c10e01b9 2909
ef45a392 2910UI translations
0eac70b0 2911M: Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
ef45a392
AM
2912F: po/*.po
2913
c10e01b9
PM
2914Sphinx documentation configuration and build machinery
2915M: Peter Maydell <peter.maydell@linaro.org>
2916S: Maintained
2917F: docs/conf.py
2918F: docs/*/conf.py