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