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