xref: /openbmc/qemu/MAINTAINERS (revision 2055dbc1)
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
1099Boston
1100M: Paul Burton <pburton@wavecomp.com>
1101R: Aleksandar Rikalo <aleksandar.rikalo@syrmia.com>
1102S: Maintained
1103F: hw/core/loader-fit.c
1104F: hw/mips/boston.c
1105F: hw/pci-host/xilinx-pcie.c
1106F: include/hw/pci-host/xilinx-pcie.h
1107
1108OpenRISC Machines
1109-----------------
1110or1k-sim
1111M: Jia Liu <proljc@gmail.com>
1112S: Maintained
1113F: hw/openrisc/openrisc_sim.c
1114
1115PowerPC Machines
1116----------------
1117405
1118M: David Gibson <david@gibson.dropbear.id.au>
1119L: qemu-ppc@nongnu.org
1120S: Odd Fixes
1121F: hw/ppc/ppc405_boards.c
1122
1123Bamboo
1124M: David Gibson <david@gibson.dropbear.id.au>
1125L: qemu-ppc@nongnu.org
1126S: Odd Fixes
1127F: hw/ppc/ppc440_bamboo.c
1128
1129e500
1130M: David Gibson <david@gibson.dropbear.id.au>
1131L: qemu-ppc@nongnu.org
1132S: Odd Fixes
1133F: hw/ppc/e500*
1134F: hw/gpio/mpc8xxx.c
1135F: hw/i2c/mpc_i2c.c
1136F: hw/net/fsl_etsec/
1137F: hw/pci-host/ppce500.c
1138F: include/hw/ppc/ppc_e500.h
1139F: include/hw/pci-host/ppce500.h
1140F: pc-bios/u-boot.e500
1141
1142mpc8544ds
1143M: David Gibson <david@gibson.dropbear.id.au>
1144L: qemu-ppc@nongnu.org
1145S: Odd Fixes
1146F: hw/ppc/mpc8544ds.c
1147F: hw/ppc/mpc8544_guts.c
1148
1149New World (mac99)
1150M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
1151R: David Gibson <david@gibson.dropbear.id.au>
1152L: qemu-ppc@nongnu.org
1153S: Odd Fixes
1154F: hw/ppc/mac_newworld.c
1155F: hw/pci-host/uninorth.c
1156F: hw/pci-bridge/dec.[hc]
1157F: hw/misc/macio/
1158F: hw/misc/mos6522.c
1159F: hw/nvram/mac_nvram.c
1160F: hw/input/adb*
1161F: include/hw/misc/macio/
1162F: include/hw/misc/mos6522.h
1163F: include/hw/ppc/mac_dbdma.h
1164F: include/hw/pci-host/uninorth.h
1165F: include/hw/input/adb*
1166F: pc-bios/qemu_vga.ndrv
1167
1168Old World (g3beige)
1169M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
1170R: David Gibson <david@gibson.dropbear.id.au>
1171L: qemu-ppc@nongnu.org
1172S: Odd Fixes
1173F: hw/ppc/mac_oldworld.c
1174F: hw/pci-host/grackle.c
1175F: hw/misc/macio/
1176F: hw/intc/heathrow_pic.c
1177F: hw/input/adb*
1178F: include/hw/intc/heathrow_pic.h
1179F: include/hw/input/adb*
1180F: pc-bios/qemu_vga.ndrv
1181
1182PReP
1183M: Hervé Poussineau <hpoussin@reactos.org>
1184L: qemu-ppc@nongnu.org
1185S: Maintained
1186F: hw/ppc/prep.c
1187F: hw/ppc/prep_systemio.c
1188F: hw/ppc/rs6000_mc.c
1189F: hw/pci-host/prep.[hc]
1190F: hw/isa/i82378.c
1191F: hw/isa/pc87312.c
1192F: hw/dma/i82374.c
1193F: hw/rtc/m48t59-isa.c
1194F: include/hw/isa/pc87312.h
1195F: include/hw/rtc/m48t59.h
1196F: tests/acceptance/ppc_prep_40p.py
1197
1198sPAPR
1199M: David Gibson <david@gibson.dropbear.id.au>
1200L: qemu-ppc@nongnu.org
1201S: Supported
1202F: hw/*/spapr*
1203F: include/hw/*/spapr*
1204F: hw/*/xics*
1205F: include/hw/*/xics*
1206F: pc-bios/slof.bin
1207F: docs/specs/ppc-spapr-hcalls.txt
1208F: docs/specs/ppc-spapr-hotplug.txt
1209F: tests/qtest/spapr*
1210F: tests/qtest/libqos/*spapr*
1211F: tests/qtest/rtas*
1212F: tests/qtest/libqos/rtas*
1213
1214PowerNV (Non-Virtualized)
1215M: Cédric Le Goater <clg@kaod.org>
1216M: David Gibson <david@gibson.dropbear.id.au>
1217L: qemu-ppc@nongnu.org
1218S: Maintained
1219F: hw/ppc/pnv*
1220F: hw/intc/pnv*
1221F: hw/intc/xics_pnv.c
1222F: hw/pci-host/pnv*
1223F: include/hw/ppc/pnv*
1224F: include/hw/pci-host/pnv*
1225F: pc-bios/skiboot.lid
1226F: tests/qtest/pnv*
1227
1228virtex_ml507
1229M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
1230L: qemu-ppc@nongnu.org
1231S: Odd Fixes
1232F: hw/ppc/virtex_ml507.c
1233
1234sam460ex
1235M: BALATON Zoltan <balaton@eik.bme.hu>
1236L: qemu-ppc@nongnu.org
1237S: Maintained
1238F: hw/ppc/sam460ex.c
1239F: hw/ppc/ppc440_pcix.c
1240F: hw/display/sm501*
1241F: hw/ide/sii3112.c
1242F: hw/rtc/m41t80.c
1243F: pc-bios/canyonlands.dt[sb]
1244F: pc-bios/u-boot-sam460ex-20100605.bin
1245F: roms/u-boot-sam460ex
1246
1247RISC-V Machines
1248---------------
1249OpenTitan
1250M: Alistair Francis <Alistair.Francis@wdc.com>
1251L: qemu-riscv@nongnu.org
1252S: Supported
1253F: hw/riscv/opentitan.c
1254F: hw/char/ibex_uart.c
1255F: hw/intc/ibex_plic.c
1256F: include/hw/riscv/opentitan.h
1257F: include/hw/char/ibex_uart.h
1258F: include/hw/intc/ibex_plic.h
1259
1260RX Machines
1261-----------
1262rx-gdbsim
1263M: Yoshinori Sato <ysato@users.sourceforge.jp>
1264S: Maintained
1265F: docs/system/target-rx.rst
1266F: hw/rx/rx-gdbsim.c
1267F: tests/acceptance/machine_rx_gdbsim.py
1268
1269SH4 Machines
1270------------
1271R2D
1272M: Yoshinori Sato <ysato@users.sourceforge.jp>
1273R: Magnus Damm <magnus.damm@gmail.com>
1274S: Maintained
1275F: hw/sh4/r2d.c
1276F: hw/intc/sh_intc.c
1277F: include/hw/sh4/sh_intc.h
1278
1279Shix
1280M: Yoshinori Sato <ysato@users.sourceforge.jp>
1281R: Magnus Damm <magnus.damm@gmail.com>
1282S: Odd Fixes
1283F: hw/sh4/shix.c
1284F: hw/intc/sh_intc.c
1285F: include/hw/sh4/sh_intc.h
1286
1287SPARC Machines
1288--------------
1289Sun4m
1290M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
1291S: Maintained
1292F: hw/sparc/sun4m.c
1293F: hw/sparc/sun4m_iommu.c
1294F: hw/display/cg3.c
1295F: hw/display/tcx.c
1296F: hw/dma/sparc32_dma.c
1297F: hw/misc/eccmemctl.c
1298F: hw/*/slavio_*.c
1299F: include/hw/nvram/sun_nvram.h
1300F: include/hw/sparc/sparc32_dma.h
1301F: include/hw/sparc/sun4m_iommu.h
1302F: pc-bios/openbios-sparc32
1303
1304Sun4u
1305M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
1306S: Maintained
1307F: hw/sparc64/sun4u.c
1308F: hw/sparc64/sun4u_iommu.c
1309F: include/hw/sparc/sun4u_iommu.h
1310F: hw/pci-host/sabre.c
1311F: include/hw/pci-host/sabre.h
1312F: hw/pci-bridge/simba.c
1313F: include/hw/pci-bridge/simba.h
1314F: pc-bios/openbios-sparc64
1315
1316Sun4v
1317M: Artyom Tarasenko <atar4qemu@gmail.com>
1318S: Maintained
1319F: hw/sparc64/niagara.c
1320F: hw/rtc/sun4v-rtc.c
1321F: include/hw/rtc/sun4v-rtc.h
1322
1323Leon3
1324M: Fabien Chouteau <chouteau@adacore.com>
1325M: KONRAD Frederic <frederic.konrad@adacore.com>
1326S: Maintained
1327F: hw/sparc/leon3.c
1328F: hw/*/grlib*
1329F: include/hw/*/grlib*
1330F: tests/acceptance/machine_sparc_leon3.py
1331
1332S390 Machines
1333-------------
1334S390 Virtio-ccw
1335M: Cornelia Huck <cohuck@redhat.com>
1336M: Halil Pasic <pasic@linux.ibm.com>
1337M: Christian Borntraeger <borntraeger@de.ibm.com>
1338S: Supported
1339F: hw/char/sclp*.[hc]
1340F: hw/char/terminal3270.c
1341F: hw/s390x/
1342F: include/hw/s390x/
1343F: hw/watchdog/wdt_diag288.c
1344F: include/hw/watchdog/wdt_diag288.h
1345F: default-configs/s390x-softmmu.mak
1346T: git https://github.com/cohuck/qemu.git s390-next
1347T: git https://github.com/borntraeger/qemu.git s390-next
1348L: qemu-s390x@nongnu.org
1349
1350S390-ccw boot
1351M: Christian Borntraeger <borntraeger@de.ibm.com>
1352M: Thomas Huth <thuth@redhat.com>
1353S: Supported
1354F: hw/s390x/ipl.*
1355F: pc-bios/s390-ccw/
1356F: pc-bios/s390-ccw.img
1357F: docs/devel/s390-dasd-ipl.rst
1358T: git https://github.com/borntraeger/qemu.git s390-next
1359L: qemu-s390x@nongnu.org
1360
1361S390 PCI
1362M: Matthew Rosato <mjrosato@linux.ibm.com>
1363S: Supported
1364F: hw/s390x/s390-pci*
1365L: qemu-s390x@nongnu.org
1366
1367UniCore32 Machines
1368------------------
1369PKUnity-3 SoC initramfs-with-busybox
1370M: Guan Xuetao <gxt@mprc.pku.edu.cn>
1371S: Maintained
1372F: hw/*/puv3*
1373F: hw/unicore32/
1374
1375X86 Machines
1376------------
1377PC
1378M: Michael S. Tsirkin <mst@redhat.com>
1379M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
1380S: Supported
1381F: include/hw/i386/
1382F: hw/i386/
1383F: hw/pci-host/i440fx.c
1384F: hw/pci-host/q35.c
1385F: hw/pci-host/pam.c
1386F: include/hw/pci-host/i440fx.h
1387F: include/hw/pci-host/q35.h
1388F: include/hw/pci-host/pam.h
1389F: hw/isa/piix3.c
1390F: hw/isa/lpc_ich9.c
1391F: hw/i2c/smbus_ich9.c
1392F: hw/acpi/piix4.c
1393F: hw/acpi/ich9.c
1394F: include/hw/acpi/ich9.h
1395F: include/hw/southbridge/piix.h
1396F: hw/misc/sga.c
1397F: hw/isa/apm.c
1398F: include/hw/isa/apm.h
1399F: tests/test-x86-cpuid.c
1400F: tests/qtest/test-x86-cpuid-compat.c
1401
1402PC Chipset
1403M: Michael S. Tsirkin <mst@redhat.com>
1404M: Paolo Bonzini <pbonzini@redhat.com>
1405S: Supported
1406F: hw/char/debugcon.c
1407F: hw/char/parallel*
1408F: hw/char/serial*
1409F: hw/dma/i8257*
1410F: hw/i2c/pm_smbus.c
1411F: hw/input/pckbd.c
1412F: hw/intc/apic*
1413F: hw/intc/ioapic*
1414F: hw/intc/i8259*
1415F: hw/isa/isa-superio.c
1416F: hw/misc/debugexit.c
1417F: hw/misc/pc-testdev.c
1418F: hw/timer/hpet*
1419F: hw/timer/i8254*
1420F: hw/rtc/mc146818rtc*
1421F: hw/watchdog/wdt_ib700.c
1422F: hw/watchdog/wdt_i6300esb.c
1423F: include/hw/display/vga.h
1424F: include/hw/char/parallel.h
1425F: include/hw/dma/i8257.h
1426F: include/hw/i2c/pm_smbus.h
1427F: include/hw/input/i8042.h
1428F: include/hw/isa/i8259_internal.h
1429F: include/hw/isa/superio.h
1430F: include/hw/timer/hpet.h
1431F: include/hw/timer/i8254*
1432F: include/hw/rtc/mc146818rtc*
1433
1434microvm
1435M: Sergio Lopez <slp@redhat.com>
1436M: Paolo Bonzini <pbonzini@redhat.com>
1437S: Maintained
1438F: docs/microvm.rst
1439F: hw/i386/microvm.c
1440F: include/hw/i386/microvm.h
1441F: pc-bios/bios-microvm.bin
1442
1443Machine core
1444M: Eduardo Habkost <ehabkost@redhat.com>
1445M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
1446S: Supported
1447F: hw/core/cpu.c
1448F: hw/core/machine-qmp-cmds.c
1449F: hw/core/machine.c
1450F: hw/core/null-machine.c
1451F: hw/core/numa.c
1452F: hw/cpu/cluster.c
1453F: qapi/machine.json
1454F: qapi/machine-target.json
1455F: include/hw/boards.h
1456F: include/hw/core/cpu.h
1457F: include/hw/cpu/cluster.h
1458F: include/sysemu/numa.h
1459T: git https://github.com/ehabkost/qemu.git machine-next
1460
1461Xtensa Machines
1462---------------
1463sim
1464M: Max Filippov <jcmvbkbc@gmail.com>
1465S: Maintained
1466F: hw/xtensa/sim.c
1467
1468virt
1469M: Max Filippov <jcmvbkbc@gmail.com>
1470S: Maintained
1471F: hw/xtensa/virt.c
1472
1473XTFPGA (LX60, LX200, ML605, KC705)
1474M: Max Filippov <jcmvbkbc@gmail.com>
1475S: Maintained
1476F: hw/xtensa/xtfpga.c
1477F: hw/net/opencores_eth.c
1478
1479Devices
1480-------
1481EDU
1482M: Jiri Slaby <jslaby@suse.cz>
1483S: Maintained
1484F: hw/misc/edu.c
1485
1486IDE
1487M: John Snow <jsnow@redhat.com>
1488L: qemu-block@nongnu.org
1489S: Supported
1490F: include/hw/ide.h
1491F: include/hw/ide/
1492F: hw/ide/
1493F: hw/block/block.c
1494F: hw/block/cdrom.c
1495F: hw/block/hd-geometry.c
1496F: tests/qtest/ide-test.c
1497F: tests/qtest/ahci-test.c
1498F: tests/qtest/cdrom-test.c
1499F: tests/qtest/libqos/ahci*
1500T: git https://github.com/jnsnow/qemu.git ide
1501
1502IPMI
1503M: Corey Minyard <minyard@acm.org>
1504S: Maintained
1505F: include/hw/ipmi/*
1506F: hw/ipmi/*
1507F: hw/smbios/smbios_type_38.c
1508F: tests/qtest/ipmi*
1509T: git https://github.com/cminyard/qemu.git master-ipmi-rebase
1510
1511Floppy
1512M: John Snow <jsnow@redhat.com>
1513L: qemu-block@nongnu.org
1514S: Supported
1515F: hw/block/fdc.c
1516F: include/hw/block/fdc.h
1517F: tests/qtest/fdc-test.c
1518T: git https://github.com/jnsnow/qemu.git ide
1519
1520OMAP
1521M: Peter Maydell <peter.maydell@linaro.org>
1522L: qemu-arm@nongnu.org
1523S: Maintained
1524F: hw/*/omap*
1525F: include/hw/arm/omap.h
1526
1527IPack
1528M: Alberto Garcia <berto@igalia.com>
1529S: Odd Fixes
1530F: hw/char/ipoctal232.c
1531F: hw/ipack/
1532
1533PCI
1534M: Michael S. Tsirkin <mst@redhat.com>
1535M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
1536S: Supported
1537F: include/hw/pci/*
1538F: hw/misc/pci-testdev.c
1539F: hw/pci/*
1540F: hw/pci-bridge/*
1541F: docs/pci*
1542F: docs/specs/*pci*
1543F: default-configs/pci.mak
1544
1545ACPI/SMBIOS
1546M: Michael S. Tsirkin <mst@redhat.com>
1547M: Igor Mammedov <imammedo@redhat.com>
1548S: Supported
1549F: include/hw/acpi/*
1550F: include/hw/firmware/smbios.h
1551F: hw/mem/*
1552F: hw/acpi/*
1553F: hw/smbios/*
1554F: hw/i386/acpi-build.[hc]
1555F: hw/arm/virt-acpi-build.c
1556F: tests/qtest/bios-tables-test*
1557F: tests/qtest/acpi-utils.[hc]
1558F: tests/data/acpi/
1559
1560ACPI/HEST/GHES
1561R: Dongjiu Geng <gengdongjiu@huawei.com>
1562R: Xiang Zheng <zhengxiang9@huawei.com>
1563L: qemu-arm@nongnu.org
1564S: Maintained
1565F: hw/acpi/ghes.c
1566F: include/hw/acpi/ghes.h
1567F: docs/specs/acpi_hest_ghes.rst
1568
1569ppc4xx
1570M: David Gibson <david@gibson.dropbear.id.au>
1571L: qemu-ppc@nongnu.org
1572S: Odd Fixes
1573F: hw/ppc/ppc4*.c
1574F: hw/i2c/ppc4xx_i2c.c
1575F: include/hw/ppc/ppc4xx.h
1576F: include/hw/i2c/ppc4xx_i2c.h
1577
1578Character devices
1579M: Marc-André Lureau <marcandre.lureau@redhat.com>
1580R: Paolo Bonzini <pbonzini@redhat.com>
1581S: Odd Fixes
1582F: hw/char/
1583
1584Network devices
1585M: Jason Wang <jasowang@redhat.com>
1586S: Odd Fixes
1587F: hw/net/
1588F: include/hw/net/
1589F: tests/qtest/virtio-net-test.c
1590F: docs/virtio-net-failover.rst
1591T: git https://github.com/jasowang/qemu.git net
1592
1593Parallel NOR Flash devices
1594M: Philippe Mathieu-Daudé <philmd@redhat.com>
1595T: git https://gitlab.com/philmd/qemu.git pflash-next
1596S: Maintained
1597F: hw/block/pflash_cfi*.c
1598F: include/hw/block/flash.h
1599
1600SCSI
1601M: Paolo Bonzini <pbonzini@redhat.com>
1602R: Fam Zheng <fam@euphon.net>
1603S: Supported
1604F: include/hw/scsi/*
1605F: hw/scsi/*
1606F: tests/qtest/virtio-scsi-test.c
1607T: git https://github.com/bonzini/qemu.git scsi-next
1608
1609SSI
1610M: Alistair Francis <alistair@alistair23.me>
1611S: Maintained
1612F: hw/ssi/*
1613F: hw/block/m25p80.c
1614F: include/hw/ssi/ssi.h
1615X: hw/ssi/xilinx_*
1616F: tests/qtest/m25p80-test.c
1617
1618Xilinx SPI
1619M: Alistair Francis <alistair@alistair23.me>
1620S: Maintained
1621F: hw/ssi/xilinx_*
1622
1623SD (Secure Card)
1624M: Philippe Mathieu-Daudé <f4bug@amsat.org>
1625S: Odd Fixes
1626F: include/hw/sd/sd*
1627F: hw/sd/core.c
1628F: hw/sd/sd*
1629F: hw/sd/ssi-sd.c
1630F: tests/qtest/sd*
1631
1632USB
1633M: Gerd Hoffmann <kraxel@redhat.com>
1634S: Maintained
1635F: hw/usb/*
1636F: tests/qtest/usb-*-test.c
1637F: docs/usb2.txt
1638F: docs/usb-storage.txt
1639F: include/hw/usb.h
1640F: include/hw/usb/
1641F: default-configs/usb.mak
1642
1643USB (serial adapter)
1644M: Gerd Hoffmann <kraxel@redhat.com>
1645M: Samuel Thibault <samuel.thibault@ens-lyon.org>
1646S: Maintained
1647F: hw/usb/dev-serial.c
1648
1649VFIO
1650M: Alex Williamson <alex.williamson@redhat.com>
1651S: Supported
1652F: hw/vfio/*
1653F: include/hw/vfio/
1654
1655vfio-ccw
1656M: Cornelia Huck <cohuck@redhat.com>
1657M: Eric Farman <farman@linux.ibm.com>
1658S: Supported
1659F: hw/vfio/ccw.c
1660F: hw/s390x/s390-ccw.c
1661F: include/hw/s390x/s390-ccw.h
1662F: include/hw/s390x/vfio-ccw.h
1663T: git https://github.com/cohuck/qemu.git s390-next
1664L: qemu-s390x@nongnu.org
1665
1666vfio-ap
1667M: Christian Borntraeger <borntraeger@de.ibm.com>
1668M: Tony Krowiak <akrowiak@linux.ibm.com>
1669M: Halil Pasic <pasic@linux.ibm.com>
1670M: Pierre Morel <pmorel@linux.ibm.com>
1671S: Supported
1672F: hw/s390x/ap-device.c
1673F: hw/s390x/ap-bridge.c
1674F: include/hw/s390x/ap-device.h
1675F: include/hw/s390x/ap-bridge.h
1676F: hw/vfio/ap.c
1677F: docs/system/s390x/vfio-ap.rst
1678L: qemu-s390x@nongnu.org
1679
1680vhost
1681M: Michael S. Tsirkin <mst@redhat.com>
1682S: Supported
1683F: hw/*/*vhost*
1684F: docs/interop/vhost-user.json
1685F: docs/interop/vhost-user.rst
1686F: contrib/vhost-user-*/
1687F: backends/vhost-user.c
1688F: include/sysemu/vhost-user-backend.h
1689
1690virtio
1691M: Michael S. Tsirkin <mst@redhat.com>
1692S: Supported
1693F: hw/*/virtio*
1694F: hw/virtio/Makefile.objs
1695F: hw/virtio/trace-events
1696F: net/vhost-user.c
1697F: include/hw/virtio/
1698
1699virtio-balloon
1700M: Michael S. Tsirkin <mst@redhat.com>
1701M: David Hildenbrand <david@redhat.com>
1702S: Maintained
1703F: hw/virtio/virtio-balloon*.c
1704F: include/hw/virtio/virtio-balloon.h
1705F: balloon.c
1706F: include/sysemu/balloon.h
1707
1708virtio-9p
1709M: Greg Kurz <groug@kaod.org>
1710M: Christian Schoenebeck <qemu_oss@crudebyte.com>
1711S: Odd Fixes
1712F: hw/9pfs/
1713X: hw/9pfs/xen-9p*
1714F: fsdev/
1715F: docs/interop/virtfs-proxy-helper.rst
1716F: tests/qtest/virtio-9p-test.c
1717T: git https://github.com/gkurz/qemu.git 9p-next
1718
1719virtio-blk
1720M: Stefan Hajnoczi <stefanha@redhat.com>
1721L: qemu-block@nongnu.org
1722S: Supported
1723F: hw/block/virtio-blk.c
1724F: hw/block/dataplane/*
1725F: tests/qtest/virtio-blk-test.c
1726T: git https://github.com/stefanha/qemu.git block
1727
1728virtio-ccw
1729M: Cornelia Huck <cohuck@redhat.com>
1730M: Halil Pasic <pasic@linux.ibm.com>
1731S: Supported
1732F: hw/s390x/virtio-ccw*.[hc]
1733F: hw/s390x/vhost-vsock-ccw.c
1734T: git https://github.com/cohuck/qemu.git s390-next
1735T: git https://github.com/borntraeger/qemu.git s390-next
1736L: qemu-s390x@nongnu.org
1737
1738virtiofs
1739M: Dr. David Alan Gilbert <dgilbert@redhat.com>
1740M: Stefan Hajnoczi <stefanha@redhat.com>
1741S: Supported
1742F: tools/virtiofsd/*
1743F: hw/virtio/vhost-user-fs*
1744F: include/hw/virtio/vhost-user-fs.h
1745F: docs/interop/virtiofsd.rst
1746
1747virtio-input
1748M: Gerd Hoffmann <kraxel@redhat.com>
1749S: Maintained
1750F: hw/input/vhost-user-input.c
1751F: hw/input/virtio-input*.c
1752F: include/hw/virtio/virtio-input.h
1753F: contrib/vhost-user-input/*
1754
1755virtio-iommu
1756M: Eric Auger <eric.auger@redhat.com>
1757S: Maintained
1758F: hw/virtio/virtio-iommu*.c
1759F: include/hw/virtio/virtio-iommu.h
1760
1761virtio-serial
1762M: Laurent Vivier <lvivier@redhat.com>
1763R: Amit Shah <amit@kernel.org>
1764S: Supported
1765F: hw/char/virtio-serial-bus.c
1766F: hw/char/virtio-console.c
1767F: include/hw/virtio/virtio-serial.h
1768F: tests/qtest/virtio-serial-test.c
1769
1770virtio-rng
1771M: Laurent Vivier <lvivier@redhat.com>
1772R: Amit Shah <amit@kernel.org>
1773S: Supported
1774F: hw/virtio/virtio-rng.c
1775F: include/hw/virtio/virtio-rng.h
1776F: include/sysemu/rng*.h
1777F: backends/rng*.c
1778F: tests/qtest/virtio-rng-test.c
1779
1780virtio-crypto
1781M: Gonglei <arei.gonglei@huawei.com>
1782S: Supported
1783F: hw/virtio/virtio-crypto.c
1784F: hw/virtio/virtio-crypto-pci.c
1785F: include/hw/virtio/virtio-crypto.h
1786
1787nvme
1788M: Keith Busch <kbusch@kernel.org>
1789L: qemu-block@nongnu.org
1790S: Supported
1791F: hw/block/nvme*
1792F: tests/qtest/nvme-test.c
1793
1794megasas
1795M: Hannes Reinecke <hare@suse.com>
1796L: qemu-block@nongnu.org
1797S: Supported
1798F: hw/scsi/megasas.c
1799F: hw/scsi/mfi.h
1800F: tests/qtest/megasas-test.c
1801
1802Network packet abstractions
1803M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
1804S: Maintained
1805F: include/net/eth.h
1806F: net/eth.c
1807F: hw/net/net_rx_pkt*
1808F: hw/net/net_tx_pkt*
1809
1810Vmware
1811M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
1812S: Maintained
1813F: hw/net/vmxnet*
1814F: hw/scsi/vmw_pvscsi*
1815F: tests/qtest/vmxnet3-test.c
1816
1817Rocker
1818M: Jiri Pirko <jiri@resnulli.us>
1819S: Maintained
1820F: hw/net/rocker/
1821F: tests/rocker/
1822F: docs/specs/rocker.txt
1823
1824NVDIMM
1825M: Xiao Guangrong <xiaoguangrong.eric@gmail.com>
1826S: Maintained
1827F: hw/acpi/nvdimm.c
1828F: hw/mem/nvdimm.c
1829F: include/hw/mem/nvdimm.h
1830F: docs/nvdimm.txt
1831
1832e1000x
1833M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
1834S: Maintained
1835F: hw/net/e1000x*
1836
1837e1000e
1838M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
1839S: Maintained
1840F: hw/net/e1000e*
1841
1842eepro100
1843M: Stefan Weil <sw@weilnetz.de>
1844S: Maintained
1845F: hw/net/eepro100.c
1846
1847tulip
1848M: Sven Schnelle <svens@stackframe.org>
1849S: Maintained
1850F: hw/net/tulip.c
1851F: hw/net/tulip.h
1852
1853Generic Loader
1854M: Alistair Francis <alistair@alistair23.me>
1855S: Maintained
1856F: hw/core/generic-loader.c
1857F: include/hw/core/generic-loader.h
1858F: docs/generic-loader.txt
1859
1860Intel Hexadecimal Object File Loader
1861M: Su Hang <suhang16@mails.ucas.ac.cn>
1862S: Maintained
1863F: tests/qtest/hexloader-test.c
1864F: tests/data/hex-loader/test.hex
1865
1866CHRP NVRAM
1867M: Thomas Huth <thuth@redhat.com>
1868S: Maintained
1869F: hw/nvram/chrp_nvram.c
1870F: include/hw/nvram/chrp_nvram.h
1871F: tests/qtest/prom-env-test.c
1872
1873VM Generation ID
1874M: Ben Warren <ben@skyportsystems.com>
1875S: Maintained
1876F: hw/acpi/vmgenid.c
1877F: include/hw/acpi/vmgenid.h
1878F: docs/specs/vmgenid.txt
1879F: tests/qtest/vmgenid-test.c
1880F: stubs/vmgenid.c
1881
1882Unimplemented device
1883M: Peter Maydell <peter.maydell@linaro.org>
1884R: Philippe Mathieu-Daudé <f4bug@amsat.org>
1885S: Maintained
1886F: include/hw/misc/unimp.h
1887F: hw/misc/unimp.c
1888
1889Empty slot
1890M: Artyom Tarasenko <atar4qemu@gmail.com>
1891R: Philippe Mathieu-Daudé <f4bug@amsat.org>
1892S: Maintained
1893F: include/hw/misc/empty_slot.h
1894F: hw/misc/empty_slot.c
1895
1896Standard VGA
1897M: Gerd Hoffmann <kraxel@redhat.com>
1898S: Maintained
1899F: hw/display/vga*
1900F: hw/display/bochs-display.c
1901F: include/hw/display/vga.h
1902F: include/hw/display/bochs-vbe.h
1903
1904ramfb
1905M: Gerd Hoffmann <kraxel@redhat.com>
1906S: Maintained
1907F: hw/display/ramfb*.c
1908F: include/hw/display/ramfb.h
1909
1910virtio-gpu
1911M: Gerd Hoffmann <kraxel@redhat.com>
1912S: Maintained
1913F: hw/display/virtio-gpu*
1914F: hw/display/virtio-vga.*
1915F: include/hw/virtio/virtio-gpu.h
1916
1917vhost-user-blk
1918M: Raphael Norwitz <raphael.norwitz@nutanix.com>
1919S: Maintained
1920F: contrib/vhost-user-blk/
1921F: contrib/vhost-user-scsi/
1922F: hw/block/vhost-user-blk.c
1923F: hw/scsi/vhost-user-scsi.c
1924F: hw/virtio/vhost-user-blk-pci.c
1925F: hw/virtio/vhost-user-scsi-pci.c
1926F: include/hw/virtio/vhost-user-blk.h
1927F: include/hw/virtio/vhost-user-scsi.h
1928
1929vhost-user-gpu
1930M: Marc-André Lureau <marcandre.lureau@redhat.com>
1931M: Gerd Hoffmann <kraxel@redhat.com>
1932S: Maintained
1933F: docs/interop/vhost-user-gpu.rst
1934F: contrib/vhost-user-gpu
1935F: hw/display/vhost-user-*
1936
1937Cirrus VGA
1938M: Gerd Hoffmann <kraxel@redhat.com>
1939S: Odd Fixes
1940W: https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
1941F: hw/display/cirrus*
1942
1943EDID Generator
1944M: Gerd Hoffmann <kraxel@redhat.com>
1945S: Maintained
1946F: hw/display/edid*
1947F: include/hw/display/edid.h
1948F: qemu-edid.c
1949
1950PIIX4 South Bridge (i82371AB)
1951M: Hervé Poussineau <hpoussin@reactos.org>
1952M: Philippe Mathieu-Daudé <f4bug@amsat.org>
1953S: Maintained
1954F: hw/isa/piix4.c
1955F: include/hw/southbridge/piix.h
1956
1957Firmware configuration (fw_cfg)
1958M: Philippe Mathieu-Daudé <philmd@redhat.com>
1959R: Laszlo Ersek <lersek@redhat.com>
1960R: Gerd Hoffmann <kraxel@redhat.com>
1961S: Supported
1962F: docs/specs/fw_cfg.txt
1963F: hw/nvram/fw_cfg.c
1964F: stubs/fw_cfg.c
1965F: include/hw/nvram/fw_cfg.h
1966F: include/standard-headers/linux/qemu_fw_cfg.h
1967F: tests/qtest/libqos/fw_cfg.c
1968F: tests/qtest/fw_cfg-test.c
1969T: git https://github.com/philmd/qemu.git fw_cfg-next
1970
1971XIVE
1972M: David Gibson <david@gibson.dropbear.id.au>
1973M: Cédric Le Goater <clg@kaod.org>
1974L: qemu-ppc@nongnu.org
1975S: Supported
1976F: hw/*/*xive*
1977F: include/hw/*/*xive*
1978F: docs/*/*xive*
1979
1980Renesas peripherals
1981M: Yoshinori Sato <ysato@users.sourceforge.jp>
1982R: Magnus Damm <magnus.damm@gmail.com>
1983S: Maintained
1984F: hw/char/renesas_sci.c
1985F: hw/char/sh_serial.c
1986F: hw/timer/renesas_*.c
1987F: hw/timer/sh_timer.c
1988F: include/hw/char/renesas_sci.h
1989F: include/hw/sh4/sh.h
1990F: include/hw/timer/renesas_*.h
1991
1992Renesas RX peripherals
1993M: Yoshinori Sato <ysato@users.sourceforge.jp>
1994S: Maintained
1995F: hw/intc/rx_icu.c
1996F: hw/rx/
1997F: include/hw/intc/rx_icu.h
1998F: include/hw/rx/
1999
2000Subsystems
2001----------
2002Audio
2003M: Gerd Hoffmann <kraxel@redhat.com>
2004S: Maintained
2005F: audio/
2006F: hw/audio/
2007F: include/hw/audio/
2008F: tests/qtest/ac97-test.c
2009F: tests/qtest/es1370-test.c
2010F: tests/qtest/intel-hda-test.c
2011
2012Block layer core
2013M: Kevin Wolf <kwolf@redhat.com>
2014M: Max Reitz <mreitz@redhat.com>
2015L: qemu-block@nongnu.org
2016S: Supported
2017F: block*
2018F: block/
2019F: hw/block/
2020F: include/block/
2021F: qemu-img*
2022F: docs/interop/qemu-img.rst
2023F: qemu-io*
2024F: tests/qemu-iotests/
2025F: util/qemu-progress.c
2026F: qobject/block-qdict.c
2027F: tests/check-block-qdict.c
2028T: git https://repo.or.cz/qemu/kevin.git block
2029
2030Block I/O path
2031M: Stefan Hajnoczi <stefanha@redhat.com>
2032M: Fam Zheng <fam@euphon.net>
2033L: qemu-block@nongnu.org
2034S: Supported
2035F: util/async.c
2036F: util/aio-*.c
2037F: util/aio-*.h
2038F: util/fdmon-*.c
2039F: block/io.c
2040F: migration/block*
2041F: include/block/aio.h
2042F: include/block/aio-wait.h
2043F: scripts/qemugdb/aio.py
2044T: git https://github.com/stefanha/qemu.git block
2045
2046Block SCSI subsystem
2047M: Paolo Bonzini <pbonzini@redhat.com>
2048R: Fam Zheng <fam@euphon.net>
2049L: qemu-block@nongnu.org
2050S: Supported
2051F: include/scsi/*
2052F: scsi/*
2053
2054Block Jobs
2055M: John Snow <jsnow@redhat.com>
2056L: qemu-block@nongnu.org
2057S: Supported
2058F: blockjob.c
2059F: include/block/blockjob.h
2060F: job.c
2061F: job-qmp.c
2062F: include/qemu/job.h
2063F: block/backup.c
2064F: block/commit.c
2065F: block/stream.c
2066F: block/mirror.c
2067F: qapi/job.json
2068T: git https://github.com/jnsnow/qemu.git jobs
2069
2070Block QAPI, monitor, command line
2071M: Markus Armbruster <armbru@redhat.com>
2072S: Supported
2073F: blockdev.c
2074F: blockdev-hmp-cmds.c
2075F: block/qapi.c
2076F: qapi/block*.json
2077F: qapi/transaction.json
2078T: git https://repo.or.cz/qemu/armbru.git block-next
2079
2080Dirty Bitmaps
2081M: Eric Blake <eblake@redhat.com>
2082M: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
2083R: John Snow <jsnow@redhat.com>
2084L: qemu-block@nongnu.org
2085S: Supported
2086F: include/qemu/hbitmap.h
2087F: include/block/dirty-bitmap.h
2088F: block/monitor/bitmap-qmp-cmds.c
2089F: block/dirty-bitmap.c
2090F: block/qcow2-bitmap.c
2091F: migration/block-dirty-bitmap.c
2092F: util/hbitmap.c
2093F: tests/test-hbitmap.c
2094F: docs/interop/bitmaps.rst
2095T: git https://repo.or.cz/qemu/ericb.git bitmaps
2096
2097Character device backends
2098M: Marc-André Lureau <marcandre.lureau@redhat.com>
2099R: Paolo Bonzini <pbonzini@redhat.com>
2100S: Maintained
2101F: chardev/
2102F: include/chardev/
2103F: qapi/char.json
2104
2105Character Devices (Braille)
2106M: Samuel Thibault <samuel.thibault@ens-lyon.org>
2107S: Maintained
2108F: chardev/baum.c
2109
2110Command line option argument parsing
2111M: Markus Armbruster <armbru@redhat.com>
2112S: Supported
2113F: include/qemu/option.h
2114F: tests/test-keyval.c
2115F: tests/test-qemu-opts.c
2116F: util/keyval.c
2117F: util/qemu-option.c
2118
2119Coverity model
2120M: Markus Armbruster <armbru@redhat.com>
2121S: Supported
2122F: scripts/coverity-model.c
2123
2124Coverity Scan integration
2125M: Peter Maydell <peter.maydell@linaro.org>
2126S: Maintained
2127F: scripts/coverity-scan/
2128
2129Device Tree
2130M: Alistair Francis <alistair.francis@wdc.com>
2131R: David Gibson <david@gibson.dropbear.id.au>
2132S: Maintained
2133F: device_tree.c
2134F: include/sysemu/device_tree.h
2135
2136Dump
2137S: Supported
2138M: Marc-André Lureau <marcandre.lureau@redhat.com>
2139F: dump/
2140F: hw/misc/vmcoreinfo.c
2141F: include/hw/misc/vmcoreinfo.h
2142F: include/qemu/win_dump_defs
2143F: include/sysemu/dump-arch.h
2144F: include/sysemu/dump.h
2145F: qapi/dump.json
2146F: scripts/dump-guest-memory.py
2147F: stubs/dump.c
2148
2149Error reporting
2150M: Markus Armbruster <armbru@redhat.com>
2151S: Supported
2152F: include/qapi/error.h
2153F: include/qemu/error-report.h
2154F: qapi/error.json
2155F: util/error.c
2156F: util/qemu-error.c
2157F: scripts/coccinelle/err-bad-newline.cocci
2158F: scripts/coccinelle/error-use-after-free.cocci
2159F: scripts/coccinelle/error_propagate_null.cocci
2160F: scripts/coccinelle/remove_local_err.cocci
2161F: scripts/coccinelle/use-error_fatal.cocci
2162
2163GDB stub
2164M: Alex Bennée <alex.bennee@linaro.org>
2165R: Philippe Mathieu-Daudé <philmd@redhat.com>
2166S: Maintained
2167F: gdbstub*
2168F: gdb-xml/
2169
2170Memory API
2171M: Paolo Bonzini <pbonzini@redhat.com>
2172S: Supported
2173F: include/exec/ioport.h
2174F: ioport.c
2175F: include/exec/memop.h
2176F: include/exec/memory.h
2177F: include/exec/ram_addr.h
2178F: include/exec/ramblock.h
2179F: memory.c
2180F: include/exec/memory-internal.h
2181F: exec.c
2182F: scripts/coccinelle/memory-region-housekeeping.cocci
2183
2184SPICE
2185M: Gerd Hoffmann <kraxel@redhat.com>
2186S: Supported
2187F: include/ui/qemu-spice.h
2188F: include/ui/spice-display.h
2189F: ui/spice-*.c
2190F: audio/spiceaudio.c
2191F: hw/display/qxl*
2192F: qapi/ui.json
2193F: docs/spice-port-fqdn.txt
2194
2195Graphics
2196M: Gerd Hoffmann <kraxel@redhat.com>
2197S: Odd Fixes
2198F: ui/
2199F: include/ui/
2200F: qapi/ui.json
2201F: util/drm.c
2202
2203Cocoa graphics
2204M: Peter Maydell <peter.maydell@linaro.org>
2205S: Odd Fixes
2206F: ui/cocoa.m
2207
2208Main loop
2209M: Paolo Bonzini <pbonzini@redhat.com>
2210S: Maintained
2211F: cpus.c
2212F: include/qemu/main-loop.h
2213F: include/sysemu/runstate.h
2214F: util/main-loop.c
2215F: util/qemu-timer.c
2216F: softmmu/vl.c
2217F: softmmu/main.c
2218F: qapi/run-state.json
2219
2220Human Monitor (HMP)
2221M: Dr. David Alan Gilbert <dgilbert@redhat.com>
2222S: Maintained
2223F: monitor/monitor-internal.h
2224F: monitor/misc.c
2225F: monitor/monitor.c
2226F: monitor/hmp*
2227F: hmp.h
2228F: hmp-commands*.hx
2229F: include/monitor/hmp-target.h
2230F: tests/qtest/test-hmp.c
2231F: include/qemu/qemu-print.h
2232F: util/qemu-print.c
2233
2234Network device backends
2235M: Jason Wang <jasowang@redhat.com>
2236S: Maintained
2237F: net/
2238F: include/net/
2239F: qemu-bridge-helper.c
2240T: git https://github.com/jasowang/qemu.git net
2241F: qapi/net.json
2242
2243Netmap network backend
2244M: Luigi Rizzo <rizzo@iet.unipi.it>
2245M: Giuseppe Lettieri <g.lettieri@iet.unipi.it>
2246M: Vincenzo Maffione <v.maffione@gmail.com>
2247W: http://info.iet.unipi.it/~luigi/netmap/
2248S: Maintained
2249F: net/netmap.c
2250
2251Host Memory Backends
2252M: Eduardo Habkost <ehabkost@redhat.com>
2253M: Igor Mammedov <imammedo@redhat.com>
2254S: Maintained
2255F: backends/hostmem*.c
2256F: include/sysemu/hostmem.h
2257T: git https://github.com/ehabkost/qemu.git machine-next
2258
2259Cryptodev Backends
2260M: Gonglei <arei.gonglei@huawei.com>
2261S: Maintained
2262F: include/sysemu/cryptodev*.h
2263F: backends/cryptodev*.c
2264
2265Python scripts
2266M: Eduardo Habkost <ehabkost@redhat.com>
2267M: Cleber Rosa <crosa@redhat.com>
2268S: Odd fixes
2269F: python/qemu/*py
2270F: scripts/*.py
2271F: tests/*.py
2272
2273Benchmark util
2274M: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
2275S: Maintained
2276F: scripts/simplebench/
2277
2278QAPI
2279M: Markus Armbruster <armbru@redhat.com>
2280M: Michael Roth <mdroth@linux.vnet.ibm.com>
2281S: Supported
2282F: qapi/
2283X: qapi/*.json
2284F: include/qapi/
2285X: include/qapi/qmp/
2286F: include/qapi/qmp/dispatch.h
2287F: tests/qapi-schema/
2288F: tests/test-*-visitor.c
2289F: tests/test-qapi-*.c
2290F: tests/test-qmp-*.c
2291F: tests/test-visitor-serialization.c
2292F: scripts/qapi-gen.py
2293F: scripts/qapi/*
2294F: docs/devel/qapi*
2295T: git https://repo.or.cz/qemu/armbru.git qapi-next
2296
2297QAPI Schema
2298M: Eric Blake <eblake@redhat.com>
2299M: Markus Armbruster <armbru@redhat.com>
2300S: Supported
2301F: qapi/*.json
2302T: git https://repo.or.cz/qemu/armbru.git qapi-next
2303
2304QObject
2305M: Markus Armbruster <armbru@redhat.com>
2306S: Supported
2307F: qobject/
2308F: include/qapi/qmp/
2309X: include/qapi/qmp/dispatch.h
2310F: scripts/coccinelle/qobject.cocci
2311F: tests/check-qdict.c
2312F: tests/check-qjson.c
2313F: tests/check-qlist.c
2314F: tests/check-qlit.c
2315F: tests/check-qnull.c
2316F: tests/check-qnum.c
2317F: tests/check-qobject.c
2318F: tests/check-qstring.c
2319F: tests/data/qobject/qdict.txt
2320T: git https://repo.or.cz/qemu/armbru.git qapi-next
2321
2322QEMU Guest Agent
2323M: Michael Roth <mdroth@linux.vnet.ibm.com>
2324S: Maintained
2325F: qga/
2326F: docs/interop/qemu-ga.rst
2327F: scripts/qemu-guest-agent/
2328F: tests/test-qga.c
2329F: docs/interop/qemu-ga-ref.texi
2330T: git https://github.com/mdroth/qemu.git qga
2331
2332QOM
2333M: Paolo Bonzini <pbonzini@redhat.com>
2334R: Daniel P. Berrange <berrange@redhat.com>
2335R: Eduardo Habkost <ehabkost@redhat.com>
2336S: Supported
2337F: docs/qdev-device-use.txt
2338F: hw/core/qdev*
2339F: hw/core/bus.c
2340F: hw/core/sysbus.c
2341F: include/hw/qdev*
2342F: include/monitor/qdev.h
2343F: include/qom/
2344F: qapi/qom.json
2345F: qapi/qdev.json
2346F: qdev-monitor.c
2347F: qom/
2348F: tests/check-qom-interface.c
2349F: tests/check-qom-proplist.c
2350F: tests/test-qdev-global-props.c
2351
2352QMP
2353M: Markus Armbruster <armbru@redhat.com>
2354S: Supported
2355F: monitor/monitor-internal.h
2356F: monitor/qmp*
2357F: monitor/misc.c
2358F: monitor/monitor.c
2359F: qapi/error.json
2360F: docs/devel/*qmp-*
2361F: docs/interop/*qmp-*
2362F: scripts/qmp/
2363F: tests/qtest/qmp-test.c
2364F: tests/qtest/qmp-cmd-test.c
2365T: git https://repo.or.cz/qemu/armbru.git qapi-next
2366
2367qtest
2368M: Thomas Huth <thuth@redhat.com>
2369M: Laurent Vivier <lvivier@redhat.com>
2370R: Paolo Bonzini <pbonzini@redhat.com>
2371S: Maintained
2372F: qtest.c
2373F: accel/qtest.c
2374F: tests/qtest/
2375X: tests/qtest/bios-tables-test-allowed-diff.h
2376
2377Device Fuzzing
2378M: Alexander Bulekov <alxndr@bu.edu>
2379R: Paolo Bonzini <pbonzini@redhat.com>
2380R: Bandan Das <bsd@redhat.com>
2381R: Stefan Hajnoczi <stefanha@redhat.com>
2382S: Maintained
2383F: tests/qtest/fuzz/
2384F: scripts/oss-fuzz/
2385
2386Register API
2387M: Alistair Francis <alistair@alistair23.me>
2388S: Maintained
2389F: hw/core/register.c
2390F: include/hw/register.h
2391F: include/hw/registerfields.h
2392
2393SLIRP
2394M: Samuel Thibault <samuel.thibault@ens-lyon.org>
2395S: Maintained
2396F: slirp/
2397F: net/slirp.c
2398F: include/net/slirp.h
2399T: git https://people.debian.org/~sthibault/qemu.git slirp
2400
2401Streams
2402M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
2403S: Maintained
2404F: hw/core/stream.c
2405F: include/hw/stream.h
2406
2407Stubs
2408M: Paolo Bonzini <pbonzini@redhat.com>
2409S: Maintained
2410F: stubs/
2411
2412Tracing
2413M: Stefan Hajnoczi <stefanha@redhat.com>
2414S: Maintained
2415F: trace/
2416F: trace-events
2417F: docs/qemu-option-trace.rst.inc
2418F: scripts/tracetool.py
2419F: scripts/tracetool/
2420F: scripts/qemu-trace-stap*
2421F: docs/interop/qemu-trace-stap.rst
2422F: docs/devel/tracing.txt
2423T: git https://github.com/stefanha/qemu.git tracing
2424
2425TPM
2426M: Stefan Berger <stefanb@linux.ibm.com>
2427S: Maintained
2428F: tpm.c
2429F: stubs/tpm.c
2430F: hw/tpm/*
2431F: include/hw/acpi/tpm.h
2432F: include/sysemu/tpm*
2433F: qapi/tpm.json
2434F: backends/tpm.c
2435F: tests/qtest/*tpm*
2436T: git https://github.com/stefanberger/qemu-tpm.git tpm-next
2437
2438Checkpatch
2439S: Odd Fixes
2440F: scripts/checkpatch.pl
2441
2442Migration
2443M: Juan Quintela <quintela@redhat.com>
2444M: Dr. David Alan Gilbert <dgilbert@redhat.com>
2445S: Maintained
2446F: hw/core/vmstate-if.c
2447F: include/hw/vmstate-if.h
2448F: include/migration/
2449F: migration/
2450F: scripts/vmstate-static-checker.py
2451F: tests/vmstate-static-checker-data/
2452F: tests/qtest/migration-test.c
2453F: docs/devel/migration.rst
2454F: qapi/migration.json
2455
2456D-Bus
2457M: Marc-André Lureau <marcandre.lureau@redhat.com>
2458S: Maintained
2459F: backends/dbus-vmstate.c
2460F: tests/dbus-vmstate*
2461F: util/dbus.c
2462F: include/qemu/dbus.h
2463F: docs/interop/dbus.rst
2464F: docs/interop/dbus-vmstate.rst
2465
2466Seccomp
2467M: Eduardo Otubo <otubo@redhat.com>
2468S: Supported
2469F: qemu-seccomp.c
2470F: include/sysemu/seccomp.h
2471
2472Cryptography
2473M: Daniel P. Berrange <berrange@redhat.com>
2474S: Maintained
2475F: crypto/
2476F: include/crypto/
2477F: tests/test-crypto-*
2478F: tests/benchmark-crypto-*
2479F: tests/crypto-tls-*
2480F: tests/pkix_asn1_tab.c
2481F: qemu.sasl
2482
2483Coroutines
2484M: Stefan Hajnoczi <stefanha@redhat.com>
2485M: Kevin Wolf <kwolf@redhat.com>
2486S: Maintained
2487F: util/*coroutine*
2488F: include/qemu/coroutine*
2489F: tests/test-coroutine.c
2490
2491Buffers
2492M: Daniel P. Berrange <berrange@redhat.com>
2493S: Odd fixes
2494F: util/buffer.c
2495F: include/qemu/buffer.h
2496
2497I/O Channels
2498M: Daniel P. Berrange <berrange@redhat.com>
2499S: Maintained
2500F: io/
2501F: include/io/
2502F: tests/test-io-*
2503
2504User authorization
2505M: Daniel P. Berrange <berrange@redhat.com>
2506S: Maintained
2507F: authz/
2508F: qapi/authz.json
2509F: include/authz/
2510F: tests/test-authz-*
2511
2512Sockets
2513M: Daniel P. Berrange <berrange@redhat.com>
2514M: Gerd Hoffmann <kraxel@redhat.com>
2515S: Maintained
2516F: include/qemu/sockets.h
2517F: util/qemu-sockets.c
2518F: qapi/sockets.json
2519
2520File monitor
2521M: Daniel P. Berrange <berrange@redhat.com>
2522S: Odd fixes
2523F: util/filemonitor*.c
2524F: include/qemu/filemonitor.h
2525F: tests/test-util-filemonitor.c
2526
2527Throttling infrastructure
2528M: Alberto Garcia <berto@igalia.com>
2529S: Supported
2530F: block/throttle-groups.c
2531F: include/block/throttle-groups.h
2532F: include/qemu/throttle*.h
2533F: util/throttle.c
2534F: docs/throttle.txt
2535F: tests/test-throttle.c
2536L: qemu-block@nongnu.org
2537
2538UUID
2539M: Fam Zheng <fam@euphon.net>
2540S: Supported
2541F: util/uuid.c
2542F: include/qemu/uuid.h
2543F: tests/test-uuid.c
2544
2545COLO Framework
2546M: zhanghailiang <zhang.zhanghailiang@huawei.com>
2547S: Maintained
2548F: migration/colo*
2549F: include/migration/colo.h
2550F: include/migration/failover.h
2551F: docs/COLO-FT.txt
2552
2553COLO Proxy
2554M: Zhang Chen <chen.zhang@intel.com>
2555M: Li Zhijian <lizhijian@cn.fujitsu.com>
2556S: Supported
2557F: docs/colo-proxy.txt
2558F: net/colo*
2559F: net/filter-rewriter.c
2560F: net/filter-mirror.c
2561
2562Record/replay
2563M: Pavel Dovgalyuk <pavel.dovgaluk@ispras.ru>
2564R: Paolo Bonzini <pbonzini@redhat.com>
2565W: https://wiki.qemu.org/Features/record-replay
2566S: Supported
2567F: replay/*
2568F: block/blkreplay.c
2569F: net/filter-replay.c
2570F: include/sysemu/replay.h
2571F: docs/replay.txt
2572F: stubs/replay.c
2573F: tests/acceptance/replay_kernel.py
2574
2575IOVA Tree
2576M: Peter Xu <peterx@redhat.com>
2577S: Maintained
2578F: include/qemu/iova-tree.h
2579F: util/iova-tree.c
2580
2581elf2dmp
2582M: Viktor Prutyanov <viktor.prutyanov@phystech.edu>
2583S: Maintained
2584F: contrib/elf2dmp/
2585
2586I2C and SMBus
2587M: Corey Minyard <cminyard@mvista.com>
2588S: Maintained
2589F: hw/i2c/core.c
2590F: hw/i2c/smbus_slave.c
2591F: hw/i2c/smbus_master.c
2592F: hw/i2c/smbus_eeprom.c
2593F: include/hw/i2c/i2c.h
2594F: include/hw/i2c/smbus_master.h
2595F: include/hw/i2c/smbus_slave.h
2596F: include/hw/i2c/smbus_eeprom.h
2597
2598EDK2 Firmware
2599M: Laszlo Ersek <lersek@redhat.com>
2600M: Philippe Mathieu-Daudé <philmd@redhat.com>
2601S: Supported
2602F: pc-bios/descriptors/??-edk2-*.json
2603F: pc-bios/edk2-*
2604F: roms/Makefile.edk2
2605F: roms/edk2
2606F: roms/edk2-*
2607F: tests/data/uefi-boot-images/
2608F: tests/uefi-test-tools/
2609F: .gitlab-ci.d/edk2.yml
2610F: .gitlab-ci.d/edk2/
2611
2612Usermode Emulation
2613------------------
2614Overall usermode emulation
2615M: Riku Voipio <riku.voipio@iki.fi>
2616S: Maintained
2617F: thunk.c
2618F: accel/tcg/user-exec*.c
2619
2620BSD user
2621S: Orphan
2622F: bsd-user/
2623F: default-configs/*-bsd-user.mak
2624
2625Linux user
2626M: Riku Voipio <riku.voipio@iki.fi>
2627R: Laurent Vivier <laurent@vivier.eu>
2628S: Maintained
2629F: linux-user/
2630F: default-configs/*-linux-user.mak
2631F: scripts/qemu-binfmt-conf.sh
2632F: scripts/update-syscalltbl.sh
2633F: scripts/update-mips-syscall-args.sh
2634F: scripts/gensyscalls.sh
2635
2636Tiny Code Generator (TCG)
2637-------------------------
2638Common TCG code
2639M: Richard Henderson <rth@twiddle.net>
2640S: Maintained
2641F: tcg/
2642F: include/tcg/
2643
2644TCG Plugins
2645M: Alex Bennée <alex.bennee@linaro.org>
2646S: Maintained
2647F: docs/devel/tcg-plugins.rst
2648F: plugins/
2649F: tests/plugin
2650
2651AArch64 TCG target
2652M: Richard Henderson <richard.henderson@linaro.org>
2653S: Maintained
2654L: qemu-arm@nongnu.org
2655F: tcg/aarch64/
2656F: disas/arm-a64.cc
2657F: disas/libvixl/
2658
2659ARM TCG target
2660M: Andrzej Zaborowski <balrogg@gmail.com>
2661S: Maintained
2662L: qemu-arm@nongnu.org
2663F: tcg/arm/
2664F: disas/arm.c
2665
2666i386 TCG target
2667M: Richard Henderson <rth@twiddle.net>
2668S: Maintained
2669F: tcg/i386/
2670F: disas/i386.c
2671
2672MIPS TCG target
2673M: Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
2674R: Aurelien Jarno <aurelien@aurel32.net>
2675R: Aleksandar Rikalo <aleksandar.rikalo@syrmia.com>
2676S: Maintained
2677F: tcg/mips/
2678
2679PPC TCG target
2680M: Richard Henderson <rth@twiddle.net>
2681S: Odd Fixes
2682F: tcg/ppc/
2683F: disas/ppc.c
2684
2685RISC-V TCG target
2686M: Palmer Dabbelt <palmer@dabbelt.com>
2687M: Alistair Francis <Alistair.Francis@wdc.com>
2688L: qemu-riscv@nongnu.org
2689S: Maintained
2690F: tcg/riscv/
2691F: disas/riscv.c
2692
2693S390 TCG target
2694M: Richard Henderson <rth@twiddle.net>
2695S: Maintained
2696F: tcg/s390/
2697F: disas/s390.c
2698L: qemu-s390x@nongnu.org
2699
2700SPARC TCG target
2701S: Odd Fixes
2702F: tcg/sparc/
2703F: disas/sparc.c
2704
2705TCI TCG target
2706M: Stefan Weil <sw@weilnetz.de>
2707S: Maintained
2708F: tcg/tci/
2709F: tcg/tci.c
2710F: disas/tci.c
2711
2712Block drivers
2713-------------
2714VMDK
2715M: Fam Zheng <fam@euphon.net>
2716L: qemu-block@nongnu.org
2717S: Supported
2718F: block/vmdk.c
2719
2720RBD
2721M: Jason Dillaman <dillaman@redhat.com>
2722L: qemu-block@nongnu.org
2723S: Supported
2724F: block/rbd.c
2725
2726Sheepdog
2727M: Liu Yuan <namei.unix@gmail.com>
2728L: qemu-block@nongnu.org
2729L: sheepdog@lists.wpkg.org
2730S: Odd Fixes
2731F: block/sheepdog.c
2732
2733VHDX
2734M: Jeff Cody <codyprime@gmail.com>
2735L: qemu-block@nongnu.org
2736S: Supported
2737F: block/vhdx*
2738
2739VDI
2740M: Stefan Weil <sw@weilnetz.de>
2741L: qemu-block@nongnu.org
2742S: Maintained
2743F: block/vdi.c
2744
2745iSCSI
2746M: Ronnie Sahlberg <ronniesahlberg@gmail.com>
2747M: Paolo Bonzini <pbonzini@redhat.com>
2748M: Peter Lieven <pl@kamp.de>
2749L: qemu-block@nongnu.org
2750S: Odd Fixes
2751F: block/iscsi.c
2752F: block/iscsi-opts.c
2753
2754Network Block Device (NBD)
2755M: Eric Blake <eblake@redhat.com>
2756L: qemu-block@nongnu.org
2757S: Maintained
2758F: block/nbd*
2759F: nbd/
2760F: include/block/nbd*
2761F: qemu-nbd.*
2762F: blockdev-nbd.c
2763F: docs/interop/nbd.txt
2764F: docs/interop/qemu-nbd.rst
2765T: git https://repo.or.cz/qemu/ericb.git nbd
2766
2767NFS
2768M: Peter Lieven <pl@kamp.de>
2769L: qemu-block@nongnu.org
2770S: Maintained
2771F: block/nfs.c
2772
2773SSH
2774M: Richard W.M. Jones <rjones@redhat.com>
2775L: qemu-block@nongnu.org
2776S: Supported
2777F: block/ssh.c
2778
2779CURL
2780L: qemu-block@nongnu.org
2781S: Odd Fixes
2782F: block/curl.c
2783
2784GLUSTER
2785L: qemu-block@nongnu.org
2786L: integration@gluster.org
2787S: Odd Fixes
2788F: block/gluster.c
2789
2790Null Block Driver
2791M: Fam Zheng <fam@euphon.net>
2792L: qemu-block@nongnu.org
2793S: Supported
2794F: block/null.c
2795
2796NVMe Block Driver
2797M: Fam Zheng <fam@euphon.net>
2798L: qemu-block@nongnu.org
2799S: Supported
2800F: block/nvme*
2801
2802Bootdevice
2803M: Gonglei <arei.gonglei@huawei.com>
2804S: Maintained
2805F: bootdevice.c
2806
2807Quorum
2808M: Alberto Garcia <berto@igalia.com>
2809S: Supported
2810F: block/quorum.c
2811L: qemu-block@nongnu.org
2812
2813blklogwrites
2814M: Ari Sundholm <ari@tuxera.com>
2815L: qemu-block@nongnu.org
2816S: Supported
2817F: block/blklogwrites.c
2818
2819blkverify
2820M: Stefan Hajnoczi <stefanha@redhat.com>
2821L: qemu-block@nongnu.org
2822S: Supported
2823F: block/blkverify.c
2824
2825bochs
2826M: Stefan Hajnoczi <stefanha@redhat.com>
2827L: qemu-block@nongnu.org
2828S: Supported
2829F: block/bochs.c
2830
2831cloop
2832M: Stefan Hajnoczi <stefanha@redhat.com>
2833L: qemu-block@nongnu.org
2834S: Supported
2835F: block/cloop.c
2836
2837dmg
2838M: Stefan Hajnoczi <stefanha@redhat.com>
2839L: qemu-block@nongnu.org
2840S: Supported
2841F: block/dmg.c
2842
2843parallels
2844M: Stefan Hajnoczi <stefanha@redhat.com>
2845M: Denis V. Lunev <den@openvz.org>
2846L: qemu-block@nongnu.org
2847S: Supported
2848F: block/parallels.c
2849F: docs/interop/parallels.txt
2850
2851qed
2852M: Stefan Hajnoczi <stefanha@redhat.com>
2853L: qemu-block@nongnu.org
2854S: Supported
2855F: block/qed.c
2856
2857raw
2858M: Kevin Wolf <kwolf@redhat.com>
2859L: qemu-block@nongnu.org
2860S: Supported
2861F: block/linux-aio.c
2862F: include/block/raw-aio.h
2863F: block/raw-format.c
2864F: block/file-posix.c
2865F: block/file-win32.c
2866F: block/win32-aio.c
2867
2868Linux io_uring
2869M: Aarushi Mehta <mehta.aaru20@gmail.com>
2870M: Julia Suvorova <jusual@redhat.com>
2871M: Stefan Hajnoczi <stefanha@redhat.com>
2872L: qemu-block@nongnu.org
2873S: Maintained
2874F: block/io_uring.c
2875F: stubs/io_uring.c
2876
2877qcow2
2878M: Kevin Wolf <kwolf@redhat.com>
2879M: Max Reitz <mreitz@redhat.com>
2880L: qemu-block@nongnu.org
2881S: Supported
2882F: block/qcow2*
2883F: docs/interop/qcow2.txt
2884
2885qcow
2886M: Kevin Wolf <kwolf@redhat.com>
2887L: qemu-block@nongnu.org
2888S: Supported
2889F: block/qcow.c
2890
2891blkdebug
2892M: Kevin Wolf <kwolf@redhat.com>
2893M: Max Reitz <mreitz@redhat.com>
2894L: qemu-block@nongnu.org
2895S: Supported
2896F: block/blkdebug.c
2897
2898vpc
2899M: Kevin Wolf <kwolf@redhat.com>
2900L: qemu-block@nongnu.org
2901S: Supported
2902F: block/vpc.c
2903
2904vvfat
2905M: Kevin Wolf <kwolf@redhat.com>
2906L: qemu-block@nongnu.org
2907S: Supported
2908F: block/vvfat.c
2909
2910Image format fuzzer
2911M: Stefan Hajnoczi <stefanha@redhat.com>
2912L: qemu-block@nongnu.org
2913S: Supported
2914F: tests/image-fuzzer/
2915
2916Replication
2917M: Wen Congyang <wencongyang2@huawei.com>
2918M: Xie Changlong <xiechanglong.d@gmail.com>
2919S: Supported
2920F: replication*
2921F: block/replication.c
2922F: tests/test-replication.c
2923F: docs/block-replication.txt
2924
2925PVRDMA
2926M: Yuval Shaia <yuval.shaia.ml@gmail.com>
2927M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
2928S: Maintained
2929F: hw/rdma/*
2930F: hw/rdma/vmw/*
2931F: docs/pvrdma.txt
2932F: contrib/rdmacm-mux/*
2933F: qapi/rdma.json
2934
2935Semihosting
2936M: Alex Bennée <alex.bennee@linaro.org>
2937S: Maintained
2938F: hw/semihosting/
2939F: include/hw/semihosting/
2940
2941Build and test automation
2942-------------------------
2943Build and test automation
2944M: Alex Bennée <alex.bennee@linaro.org>
2945M: Fam Zheng <fam@euphon.net>
2946R: Philippe Mathieu-Daudé <philmd@redhat.com>
2947S: Maintained
2948F: .github/lockdown.yml
2949F: .travis.yml
2950F: scripts/travis/
2951F: .shippable.yml
2952F: tests/docker/
2953F: tests/vm/
2954F: scripts/archive-source.sh
2955W: https://travis-ci.org/qemu/qemu
2956W: https://app.shippable.com/github/qemu/qemu
2957W: http://patchew.org/QEMU/
2958
2959FreeBSD Hosted Continuous Integration
2960M: Ed Maste <emaste@freebsd.org>
2961M: Li-Wen Hsu <lwhsu@freebsd.org>
2962S: Maintained
2963F: .cirrus.yml
2964W: https://cirrus-ci.com/github/qemu/qemu
2965
2966GitLab Continuous Integration
2967M: Thomas Huth <thuth@redhat.com>
2968M: Philippe Mathieu-Daudé <philmd@redhat.com>
2969M: Alex Bennée <alex.bennee@linaro.org>
2970R: Wainer dos Santos Moschetta <wainersm@redhat.com>
2971S: Maintained
2972F: .gitlab-ci.yml
2973
2974Guest Test Compilation Support
2975M: Alex Bennée <alex.bennee@linaro.org>
2976R: Philippe Mathieu-Daudé <f4bug@amsat.org>
2977S: Maintained
2978F: tests/tcg/Makefile
2979F: tests/tcg/Makefile.include
2980
2981Acceptance (Integration) Testing with the Avocado framework
2982W: https://trello.com/b/6Qi1pxVn/avocado-qemu
2983R: Cleber Rosa <crosa@redhat.com>
2984R: Philippe Mathieu-Daudé <philmd@redhat.com>
2985R: Wainer dos Santos Moschetta <wainersm@redhat.com>
2986S: Odd Fixes
2987F: tests/acceptance/
2988
2989Documentation
2990-------------
2991Build system architecture
2992M: Daniel P. Berrange <berrange@redhat.com>
2993S: Odd Fixes
2994F: docs/devel/build-system.txt
2995
2996GIT Data Mining Config
2997M: Alex Bennée <alex.bennee@linaro.org>
2998S: Odd Fixes
2999F: gitdm.config
3000F: contrib/gitdm/*
3001
3002Incompatible changes
3003R: libvir-list@redhat.com
3004F: docs/system/deprecated.rst
3005
3006Build System
3007------------
3008GIT submodules
3009M: Daniel P. Berrange <berrange@redhat.com>
3010S: Odd Fixes
3011F: scripts/git-submodule.sh
3012
3013UI translations
3014M: Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
3015F: po/*.po
3016
3017Sphinx documentation configuration and build machinery
3018M: Peter Maydell <peter.maydell@linaro.org>
3019S: Maintained
3020F: docs/conf.py
3021F: docs/*/conf.py
3022