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