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