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