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