xref: /openbmc/qemu/MAINTAINERS (revision 27c9188f)
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: qapi/acpi.json
1636F: tests/qtest/bios-tables-test*
1637F: tests/qtest/acpi-utils.[hc]
1638F: tests/data/acpi/
1639
1640ACPI/HEST/GHES
1641R: Dongjiu Geng <gengdongjiu@huawei.com>
1642R: Xiang Zheng <zhengxiang9@huawei.com>
1643L: qemu-arm@nongnu.org
1644S: Maintained
1645F: hw/acpi/ghes.c
1646F: include/hw/acpi/ghes.h
1647F: docs/specs/acpi_hest_ghes.rst
1648
1649ppc4xx
1650M: David Gibson <david@gibson.dropbear.id.au>
1651L: qemu-ppc@nongnu.org
1652S: Odd Fixes
1653F: hw/ppc/ppc4*.c
1654F: hw/i2c/ppc4xx_i2c.c
1655F: include/hw/ppc/ppc4xx.h
1656F: include/hw/i2c/ppc4xx_i2c.h
1657
1658Character devices
1659M: Marc-André Lureau <marcandre.lureau@redhat.com>
1660R: Paolo Bonzini <pbonzini@redhat.com>
1661S: Odd Fixes
1662F: hw/char/
1663
1664Network devices
1665M: Jason Wang <jasowang@redhat.com>
1666S: Odd Fixes
1667F: hw/net/
1668F: include/hw/net/
1669F: tests/qtest/virtio-net-test.c
1670F: docs/virtio-net-failover.rst
1671T: git https://github.com/jasowang/qemu.git net
1672
1673Parallel NOR Flash devices
1674M: Philippe Mathieu-Daudé <philmd@redhat.com>
1675T: git https://gitlab.com/philmd/qemu.git pflash-next
1676S: Maintained
1677F: hw/block/pflash_cfi*.c
1678F: include/hw/block/flash.h
1679
1680SCSI
1681M: Paolo Bonzini <pbonzini@redhat.com>
1682R: Fam Zheng <fam@euphon.net>
1683S: Supported
1684F: include/hw/scsi/*
1685F: hw/scsi/*
1686F: tests/qtest/virtio-scsi-test.c
1687T: git https://github.com/bonzini/qemu.git scsi-next
1688
1689SSI
1690M: Alistair Francis <alistair@alistair23.me>
1691S: Maintained
1692F: hw/ssi/*
1693F: hw/block/m25p80.c
1694F: include/hw/ssi/ssi.h
1695X: hw/ssi/xilinx_*
1696F: tests/qtest/m25p80-test.c
1697
1698Xilinx SPI
1699M: Alistair Francis <alistair@alistair23.me>
1700S: Maintained
1701F: hw/ssi/xilinx_*
1702
1703SD (Secure Card)
1704M: Philippe Mathieu-Daudé <f4bug@amsat.org>
1705L: qemu-block@nongnu.org
1706S: Odd Fixes
1707F: include/hw/sd/sd*
1708F: hw/sd/core.c
1709F: hw/sd/sd*
1710F: hw/sd/ssi-sd.c
1711F: tests/qtest/sd*
1712
1713USB
1714M: Gerd Hoffmann <kraxel@redhat.com>
1715S: Maintained
1716F: hw/usb/*
1717F: tests/qtest/usb-*-test.c
1718F: docs/usb2.txt
1719F: docs/usb-storage.txt
1720F: include/hw/usb.h
1721F: include/hw/usb/
1722F: default-configs/usb.mak
1723
1724USB (serial adapter)
1725M: Gerd Hoffmann <kraxel@redhat.com>
1726M: Samuel Thibault <samuel.thibault@ens-lyon.org>
1727S: Maintained
1728F: hw/usb/dev-serial.c
1729
1730VFIO
1731M: Alex Williamson <alex.williamson@redhat.com>
1732S: Supported
1733F: hw/vfio/*
1734F: include/hw/vfio/
1735
1736vfio-ccw
1737M: Cornelia Huck <cohuck@redhat.com>
1738M: Eric Farman <farman@linux.ibm.com>
1739S: Supported
1740F: hw/vfio/ccw.c
1741F: hw/s390x/s390-ccw.c
1742F: include/hw/s390x/s390-ccw.h
1743F: include/hw/s390x/vfio-ccw.h
1744T: git https://github.com/cohuck/qemu.git s390-next
1745L: qemu-s390x@nongnu.org
1746
1747vfio-ap
1748M: Christian Borntraeger <borntraeger@de.ibm.com>
1749M: Tony Krowiak <akrowiak@linux.ibm.com>
1750M: Halil Pasic <pasic@linux.ibm.com>
1751M: Pierre Morel <pmorel@linux.ibm.com>
1752S: Supported
1753F: hw/s390x/ap-device.c
1754F: hw/s390x/ap-bridge.c
1755F: include/hw/s390x/ap-device.h
1756F: include/hw/s390x/ap-bridge.h
1757F: hw/vfio/ap.c
1758F: docs/system/s390x/vfio-ap.rst
1759L: qemu-s390x@nongnu.org
1760
1761vhost
1762M: Michael S. Tsirkin <mst@redhat.com>
1763S: Supported
1764F: hw/*/*vhost*
1765F: docs/interop/vhost-user.json
1766F: docs/interop/vhost-user.rst
1767F: contrib/vhost-user-*/
1768F: backends/vhost-user.c
1769F: include/sysemu/vhost-user-backend.h
1770
1771virtio
1772M: Michael S. Tsirkin <mst@redhat.com>
1773S: Supported
1774F: hw/*/virtio*
1775F: hw/virtio/Makefile.objs
1776F: hw/virtio/trace-events
1777F: net/vhost-user.c
1778F: include/hw/virtio/
1779
1780virtio-balloon
1781M: Michael S. Tsirkin <mst@redhat.com>
1782M: David Hildenbrand <david@redhat.com>
1783S: Maintained
1784F: hw/virtio/virtio-balloon*.c
1785F: include/hw/virtio/virtio-balloon.h
1786F: softmmu/balloon.c
1787F: include/sysemu/balloon.h
1788
1789virtio-9p
1790M: Greg Kurz <groug@kaod.org>
1791M: Christian Schoenebeck <qemu_oss@crudebyte.com>
1792S: Odd Fixes
1793F: hw/9pfs/
1794X: hw/9pfs/xen-9p*
1795F: fsdev/
1796F: docs/interop/virtfs-proxy-helper.rst
1797F: tests/qtest/virtio-9p-test.c
1798T: git https://github.com/gkurz/qemu.git 9p-next
1799
1800virtio-blk
1801M: Stefan Hajnoczi <stefanha@redhat.com>
1802L: qemu-block@nongnu.org
1803S: Supported
1804F: hw/block/virtio-blk.c
1805F: hw/block/dataplane/*
1806F: tests/qtest/virtio-blk-test.c
1807T: git https://github.com/stefanha/qemu.git block
1808
1809virtio-ccw
1810M: Cornelia Huck <cohuck@redhat.com>
1811M: Halil Pasic <pasic@linux.ibm.com>
1812S: Supported
1813F: hw/s390x/virtio-ccw*.[hc]
1814F: hw/s390x/vhost-vsock-ccw.c
1815T: git https://github.com/cohuck/qemu.git s390-next
1816T: git https://github.com/borntraeger/qemu.git s390-next
1817L: qemu-s390x@nongnu.org
1818
1819virtiofs
1820M: Dr. David Alan Gilbert <dgilbert@redhat.com>
1821M: Stefan Hajnoczi <stefanha@redhat.com>
1822S: Supported
1823F: tools/virtiofsd/*
1824F: hw/virtio/vhost-user-fs*
1825F: include/hw/virtio/vhost-user-fs.h
1826F: docs/interop/virtiofsd.rst
1827
1828virtio-input
1829M: Gerd Hoffmann <kraxel@redhat.com>
1830S: Maintained
1831F: hw/input/vhost-user-input.c
1832F: hw/input/virtio-input*.c
1833F: include/hw/virtio/virtio-input.h
1834F: contrib/vhost-user-input/*
1835
1836virtio-iommu
1837M: Eric Auger <eric.auger@redhat.com>
1838S: Maintained
1839F: hw/virtio/virtio-iommu*.c
1840F: include/hw/virtio/virtio-iommu.h
1841
1842virtio-serial
1843M: Laurent Vivier <lvivier@redhat.com>
1844R: Amit Shah <amit@kernel.org>
1845S: Supported
1846F: hw/char/virtio-serial-bus.c
1847F: hw/char/virtio-console.c
1848F: include/hw/virtio/virtio-serial.h
1849F: tests/qtest/virtio-serial-test.c
1850
1851virtio-rng
1852M: Laurent Vivier <lvivier@redhat.com>
1853R: Amit Shah <amit@kernel.org>
1854S: Supported
1855F: hw/virtio/virtio-rng.c
1856F: include/hw/virtio/virtio-rng.h
1857F: include/sysemu/rng*.h
1858F: backends/rng*.c
1859F: tests/qtest/virtio-rng-test.c
1860
1861virtio-crypto
1862M: Gonglei <arei.gonglei@huawei.com>
1863S: Supported
1864F: hw/virtio/virtio-crypto.c
1865F: hw/virtio/virtio-crypto-pci.c
1866F: include/hw/virtio/virtio-crypto.h
1867
1868virtio-mem
1869M: David Hildenbrand <david@redhat.com>
1870S: Supported
1871W: https://virtio-mem.gitlab.io/
1872F: hw/virtio/virtio-mem.c
1873F: hw/virtio/virtio-mem-pci.h
1874F: hw/virtio/virtio-mem-pci.c
1875F: include/hw/virtio/virtio-mem.h
1876
1877nvme
1878M: Keith Busch <kbusch@kernel.org>
1879M: Klaus Jensen <its@irrelevant.dk>
1880L: qemu-block@nongnu.org
1881S: Supported
1882F: hw/block/nvme*
1883F: tests/qtest/nvme-test.c
1884T: git git://git.infradead.org/qemu-nvme.git nvme-next
1885
1886megasas
1887M: Hannes Reinecke <hare@suse.com>
1888L: qemu-block@nongnu.org
1889S: Supported
1890F: hw/scsi/megasas.c
1891F: hw/scsi/mfi.h
1892F: tests/qtest/megasas-test.c
1893
1894Network packet abstractions
1895M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
1896S: Maintained
1897F: include/net/eth.h
1898F: net/eth.c
1899F: hw/net/net_rx_pkt*
1900F: hw/net/net_tx_pkt*
1901
1902Vmware
1903M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
1904S: Maintained
1905F: hw/net/vmxnet*
1906F: hw/scsi/vmw_pvscsi*
1907F: tests/qtest/vmxnet3-test.c
1908
1909Rocker
1910M: Jiri Pirko <jiri@resnulli.us>
1911S: Maintained
1912F: hw/net/rocker/
1913F: tests/rocker/
1914F: docs/specs/rocker.txt
1915
1916NVDIMM
1917M: Xiao Guangrong <xiaoguangrong.eric@gmail.com>
1918S: Maintained
1919F: hw/acpi/nvdimm.c
1920F: hw/mem/nvdimm.c
1921F: include/hw/mem/nvdimm.h
1922F: docs/nvdimm.txt
1923
1924e1000x
1925M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
1926S: Maintained
1927F: hw/net/e1000x*
1928
1929e1000e
1930M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
1931S: Maintained
1932F: hw/net/e1000e*
1933
1934eepro100
1935M: Stefan Weil <sw@weilnetz.de>
1936S: Maintained
1937F: hw/net/eepro100.c
1938
1939tulip
1940M: Sven Schnelle <svens@stackframe.org>
1941S: Maintained
1942F: hw/net/tulip.c
1943F: hw/net/tulip.h
1944
1945Generic Loader
1946M: Alistair Francis <alistair@alistair23.me>
1947S: Maintained
1948F: hw/core/generic-loader.c
1949F: include/hw/core/generic-loader.h
1950F: docs/generic-loader.txt
1951
1952Intel Hexadecimal Object File Loader
1953M: Su Hang <suhang16@mails.ucas.ac.cn>
1954S: Maintained
1955F: tests/qtest/hexloader-test.c
1956F: tests/data/hex-loader/test.hex
1957
1958CHRP NVRAM
1959M: Thomas Huth <thuth@redhat.com>
1960S: Maintained
1961F: hw/nvram/chrp_nvram.c
1962F: include/hw/nvram/chrp_nvram.h
1963F: tests/qtest/prom-env-test.c
1964
1965VM Generation ID
1966M: Ben Warren <ben@skyportsystems.com>
1967S: Maintained
1968F: hw/acpi/vmgenid.c
1969F: include/hw/acpi/vmgenid.h
1970F: docs/specs/vmgenid.txt
1971F: tests/qtest/vmgenid-test.c
1972F: stubs/vmgenid.c
1973
1974Unimplemented device
1975M: Peter Maydell <peter.maydell@linaro.org>
1976R: Philippe Mathieu-Daudé <f4bug@amsat.org>
1977S: Maintained
1978F: include/hw/misc/unimp.h
1979F: hw/misc/unimp.c
1980
1981Empty slot
1982M: Artyom Tarasenko <atar4qemu@gmail.com>
1983R: Philippe Mathieu-Daudé <f4bug@amsat.org>
1984S: Maintained
1985F: include/hw/misc/empty_slot.h
1986F: hw/misc/empty_slot.c
1987
1988Standard VGA
1989M: Gerd Hoffmann <kraxel@redhat.com>
1990S: Maintained
1991F: hw/display/vga*
1992F: hw/display/bochs-display.c
1993F: include/hw/display/vga.h
1994F: include/hw/display/bochs-vbe.h
1995
1996ramfb
1997M: Gerd Hoffmann <kraxel@redhat.com>
1998S: Maintained
1999F: hw/display/ramfb*.c
2000F: include/hw/display/ramfb.h
2001
2002virtio-gpu
2003M: Gerd Hoffmann <kraxel@redhat.com>
2004S: Maintained
2005F: hw/display/virtio-gpu*
2006F: hw/display/virtio-vga.*
2007F: include/hw/virtio/virtio-gpu.h
2008
2009vhost-user-blk
2010M: Raphael Norwitz <raphael.norwitz@nutanix.com>
2011S: Maintained
2012F: contrib/vhost-user-blk/
2013F: contrib/vhost-user-scsi/
2014F: hw/block/vhost-user-blk.c
2015F: hw/scsi/vhost-user-scsi.c
2016F: hw/virtio/vhost-user-blk-pci.c
2017F: hw/virtio/vhost-user-scsi-pci.c
2018F: include/hw/virtio/vhost-user-blk.h
2019F: include/hw/virtio/vhost-user-scsi.h
2020
2021vhost-user-gpu
2022M: Marc-André Lureau <marcandre.lureau@redhat.com>
2023M: Gerd Hoffmann <kraxel@redhat.com>
2024S: Maintained
2025F: docs/interop/vhost-user-gpu.rst
2026F: contrib/vhost-user-gpu
2027F: hw/display/vhost-user-*
2028
2029Cirrus VGA
2030M: Gerd Hoffmann <kraxel@redhat.com>
2031S: Odd Fixes
2032W: https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
2033F: hw/display/cirrus*
2034
2035EDID Generator
2036M: Gerd Hoffmann <kraxel@redhat.com>
2037S: Maintained
2038F: hw/display/edid*
2039F: include/hw/display/edid.h
2040F: qemu-edid.c
2041
2042PIIX4 South Bridge (i82371AB)
2043M: Hervé Poussineau <hpoussin@reactos.org>
2044M: Philippe Mathieu-Daudé <f4bug@amsat.org>
2045S: Maintained
2046F: hw/isa/piix4.c
2047F: include/hw/southbridge/piix.h
2048
2049Firmware configuration (fw_cfg)
2050M: Philippe Mathieu-Daudé <philmd@redhat.com>
2051R: Laszlo Ersek <lersek@redhat.com>
2052R: Gerd Hoffmann <kraxel@redhat.com>
2053S: Supported
2054F: docs/specs/fw_cfg.txt
2055F: hw/nvram/fw_cfg.c
2056F: stubs/fw_cfg.c
2057F: include/hw/nvram/fw_cfg.h
2058F: include/standard-headers/linux/qemu_fw_cfg.h
2059F: tests/qtest/libqos/fw_cfg.c
2060F: tests/qtest/fw_cfg-test.c
2061T: git https://github.com/philmd/qemu.git fw_cfg-next
2062
2063XIVE
2064M: David Gibson <david@gibson.dropbear.id.au>
2065M: Cédric Le Goater <clg@kaod.org>
2066L: qemu-ppc@nongnu.org
2067S: Supported
2068F: hw/*/*xive*
2069F: include/hw/*/*xive*
2070F: docs/*/*xive*
2071
2072Renesas peripherals
2073M: Yoshinori Sato <ysato@users.sourceforge.jp>
2074R: Magnus Damm <magnus.damm@gmail.com>
2075S: Maintained
2076F: hw/char/renesas_sci.c
2077F: hw/char/sh_serial.c
2078F: hw/timer/renesas_*.c
2079F: hw/timer/sh_timer.c
2080F: include/hw/char/renesas_sci.h
2081F: include/hw/sh4/sh.h
2082F: include/hw/timer/renesas_*.h
2083
2084Renesas RX peripherals
2085M: Yoshinori Sato <ysato@users.sourceforge.jp>
2086S: Maintained
2087F: hw/intc/rx_icu.c
2088F: hw/rx/
2089F: include/hw/intc/rx_icu.h
2090F: include/hw/rx/
2091
2092Subsystems
2093----------
2094Audio
2095M: Gerd Hoffmann <kraxel@redhat.com>
2096S: Maintained
2097F: audio/
2098F: hw/audio/
2099F: include/hw/audio/
2100F: tests/qtest/ac97-test.c
2101F: tests/qtest/es1370-test.c
2102F: tests/qtest/intel-hda-test.c
2103
2104Block layer core
2105M: Kevin Wolf <kwolf@redhat.com>
2106M: Max Reitz <mreitz@redhat.com>
2107L: qemu-block@nongnu.org
2108S: Supported
2109F: block*
2110F: block/
2111F: hw/block/
2112F: include/block/
2113F: qemu-img*
2114F: docs/interop/qemu-img.rst
2115F: qemu-io*
2116F: tests/qemu-iotests/
2117F: util/qemu-progress.c
2118F: qobject/block-qdict.c
2119F: tests/check-block-qdict.c
2120T: git https://repo.or.cz/qemu/kevin.git block
2121
2122Block I/O path
2123M: Stefan Hajnoczi <stefanha@redhat.com>
2124M: Fam Zheng <fam@euphon.net>
2125L: qemu-block@nongnu.org
2126S: Supported
2127F: util/async.c
2128F: util/aio-*.c
2129F: util/aio-*.h
2130F: util/fdmon-*.c
2131F: block/io.c
2132F: migration/block*
2133F: include/block/aio.h
2134F: include/block/aio-wait.h
2135F: scripts/qemugdb/aio.py
2136F: tests/test-fdmon-epoll.c
2137T: git https://github.com/stefanha/qemu.git block
2138
2139Block SCSI subsystem
2140M: Paolo Bonzini <pbonzini@redhat.com>
2141R: Fam Zheng <fam@euphon.net>
2142L: qemu-block@nongnu.org
2143S: Supported
2144F: include/scsi/*
2145F: scsi/*
2146
2147Block Jobs
2148M: John Snow <jsnow@redhat.com>
2149L: qemu-block@nongnu.org
2150S: Supported
2151F: blockjob.c
2152F: include/block/blockjob.h
2153F: job.c
2154F: job-qmp.c
2155F: include/qemu/job.h
2156F: block/backup.c
2157F: block/commit.c
2158F: block/stream.c
2159F: block/mirror.c
2160F: qapi/job.json
2161T: git https://github.com/jnsnow/qemu.git jobs
2162
2163Block QAPI, monitor, command line
2164M: Markus Armbruster <armbru@redhat.com>
2165S: Supported
2166F: blockdev.c
2167F: blockdev-hmp-cmds.c
2168F: block/qapi.c
2169F: qapi/block*.json
2170F: qapi/transaction.json
2171T: git https://repo.or.cz/qemu/armbru.git block-next
2172
2173Dirty Bitmaps
2174M: Eric Blake <eblake@redhat.com>
2175M: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
2176R: John Snow <jsnow@redhat.com>
2177L: qemu-block@nongnu.org
2178S: Supported
2179F: include/qemu/hbitmap.h
2180F: include/block/dirty-bitmap.h
2181F: block/monitor/bitmap-qmp-cmds.c
2182F: block/dirty-bitmap.c
2183F: block/qcow2-bitmap.c
2184F: migration/block-dirty-bitmap.c
2185F: util/hbitmap.c
2186F: tests/test-hbitmap.c
2187F: docs/interop/bitmaps.rst
2188T: git https://repo.or.cz/qemu/ericb.git bitmaps
2189
2190Character device backends
2191M: Marc-André Lureau <marcandre.lureau@redhat.com>
2192R: Paolo Bonzini <pbonzini@redhat.com>
2193S: Maintained
2194F: chardev/
2195F: include/chardev/
2196F: qapi/char.json
2197
2198Character Devices (Braille)
2199M: Samuel Thibault <samuel.thibault@ens-lyon.org>
2200S: Maintained
2201F: chardev/baum.c
2202
2203Command line option argument parsing
2204M: Markus Armbruster <armbru@redhat.com>
2205S: Supported
2206F: include/qemu/option.h
2207F: tests/test-keyval.c
2208F: tests/test-qemu-opts.c
2209F: util/keyval.c
2210F: util/qemu-option.c
2211
2212Coverity model
2213M: Markus Armbruster <armbru@redhat.com>
2214S: Supported
2215F: scripts/coverity-model.c
2216
2217Coverity Scan integration
2218M: Peter Maydell <peter.maydell@linaro.org>
2219S: Maintained
2220F: scripts/coverity-scan/
2221
2222Device Tree
2223M: Alistair Francis <alistair.francis@wdc.com>
2224R: David Gibson <david@gibson.dropbear.id.au>
2225S: Maintained
2226F: device_tree.c
2227F: include/sysemu/device_tree.h
2228
2229Dump
2230S: Supported
2231M: Marc-André Lureau <marcandre.lureau@redhat.com>
2232F: dump/
2233F: hw/misc/vmcoreinfo.c
2234F: include/hw/misc/vmcoreinfo.h
2235F: include/qemu/win_dump_defs
2236F: include/sysemu/dump-arch.h
2237F: include/sysemu/dump.h
2238F: qapi/dump.json
2239F: scripts/dump-guest-memory.py
2240F: stubs/dump.c
2241
2242Error reporting
2243M: Markus Armbruster <armbru@redhat.com>
2244S: Supported
2245F: include/qapi/error.h
2246F: include/qemu/error-report.h
2247F: qapi/error.json
2248F: util/error.c
2249F: util/qemu-error.c
2250F: scripts/coccinelle/err-bad-newline.cocci
2251F: scripts/coccinelle/error-use-after-free.cocci
2252F: scripts/coccinelle/error_propagate_null.cocci
2253F: scripts/coccinelle/remove_local_err.cocci
2254F: scripts/coccinelle/use-error_fatal.cocci
2255F: scripts/coccinelle/errp-guard.cocci
2256
2257GDB stub
2258M: Alex Bennée <alex.bennee@linaro.org>
2259R: Philippe Mathieu-Daudé <philmd@redhat.com>
2260S: Maintained
2261F: gdbstub*
2262F: gdb-xml/
2263
2264Memory API
2265M: Paolo Bonzini <pbonzini@redhat.com>
2266S: Supported
2267F: include/exec/ioport.h
2268F: include/exec/memop.h
2269F: include/exec/memory.h
2270F: include/exec/ram_addr.h
2271F: include/exec/ramblock.h
2272F: softmmu/ioport.c
2273F: softmmu/memory.c
2274F: include/exec/memory-internal.h
2275F: exec.c
2276F: scripts/coccinelle/memory-region-housekeeping.cocci
2277
2278SPICE
2279M: Gerd Hoffmann <kraxel@redhat.com>
2280S: Supported
2281F: include/ui/qemu-spice.h
2282F: include/ui/spice-display.h
2283F: ui/spice-*.c
2284F: audio/spiceaudio.c
2285F: hw/display/qxl*
2286F: qapi/ui.json
2287F: docs/spice-port-fqdn.txt
2288
2289Graphics
2290M: Gerd Hoffmann <kraxel@redhat.com>
2291S: Odd Fixes
2292F: ui/
2293F: include/ui/
2294F: qapi/ui.json
2295F: util/drm.c
2296
2297Cocoa graphics
2298M: Peter Maydell <peter.maydell@linaro.org>
2299S: Odd Fixes
2300F: ui/cocoa.m
2301
2302Main loop
2303M: Paolo Bonzini <pbonzini@redhat.com>
2304S: Maintained
2305F: include/qemu/main-loop.h
2306F: include/sysemu/runstate.h
2307F: util/main-loop.c
2308F: util/qemu-timer.c
2309F: softmmu/vl.c
2310F: softmmu/main.c
2311F: softmmu/cpus.c
2312F: softmmu/cpu-throttle.c
2313F: qapi/run-state.json
2314
2315Human Monitor (HMP)
2316M: Dr. David Alan Gilbert <dgilbert@redhat.com>
2317S: Maintained
2318F: monitor/monitor-internal.h
2319F: monitor/misc.c
2320F: monitor/monitor.c
2321F: monitor/hmp*
2322F: hmp.h
2323F: hmp-commands*.hx
2324F: include/monitor/hmp-target.h
2325F: tests/qtest/test-hmp.c
2326F: include/qemu/qemu-print.h
2327F: util/qemu-print.c
2328
2329Network device backends
2330M: Jason Wang <jasowang@redhat.com>
2331S: Maintained
2332F: net/
2333F: include/net/
2334F: qemu-bridge-helper.c
2335T: git https://github.com/jasowang/qemu.git net
2336F: qapi/net.json
2337
2338Netmap network backend
2339M: Luigi Rizzo <rizzo@iet.unipi.it>
2340M: Giuseppe Lettieri <g.lettieri@iet.unipi.it>
2341M: Vincenzo Maffione <v.maffione@gmail.com>
2342W: http://info.iet.unipi.it/~luigi/netmap/
2343S: Maintained
2344F: net/netmap.c
2345
2346Host Memory Backends
2347M: Eduardo Habkost <ehabkost@redhat.com>
2348M: Igor Mammedov <imammedo@redhat.com>
2349S: Maintained
2350F: backends/hostmem*.c
2351F: include/sysemu/hostmem.h
2352T: git https://github.com/ehabkost/qemu.git machine-next
2353
2354Cryptodev Backends
2355M: Gonglei <arei.gonglei@huawei.com>
2356S: Maintained
2357F: include/sysemu/cryptodev*.h
2358F: backends/cryptodev*.c
2359
2360Python scripts
2361M: Eduardo Habkost <ehabkost@redhat.com>
2362M: Cleber Rosa <crosa@redhat.com>
2363S: Odd fixes
2364F: python/qemu/*py
2365F: scripts/*.py
2366F: tests/*.py
2367
2368Benchmark util
2369M: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
2370S: Maintained
2371F: scripts/simplebench/
2372
2373QAPI
2374M: Markus Armbruster <armbru@redhat.com>
2375M: Michael Roth <mdroth@linux.vnet.ibm.com>
2376S: Supported
2377F: qapi/
2378X: qapi/*.json
2379F: include/qapi/
2380X: include/qapi/qmp/
2381F: include/qapi/qmp/dispatch.h
2382F: tests/qapi-schema/
2383F: tests/test-*-visitor.c
2384F: tests/test-qapi-*.c
2385F: tests/test-qmp-*.c
2386F: tests/test-visitor-serialization.c
2387F: scripts/qapi-gen.py
2388F: scripts/qapi/*
2389F: docs/devel/qapi*
2390T: git https://repo.or.cz/qemu/armbru.git qapi-next
2391
2392QAPI Schema
2393M: Eric Blake <eblake@redhat.com>
2394M: Markus Armbruster <armbru@redhat.com>
2395S: Supported
2396F: qapi/*.json
2397T: git https://repo.or.cz/qemu/armbru.git qapi-next
2398
2399QObject
2400M: Markus Armbruster <armbru@redhat.com>
2401S: Supported
2402F: qobject/
2403F: include/qapi/qmp/
2404X: include/qapi/qmp/dispatch.h
2405F: scripts/coccinelle/qobject.cocci
2406F: tests/check-qdict.c
2407F: tests/check-qjson.c
2408F: tests/check-qlist.c
2409F: tests/check-qlit.c
2410F: tests/check-qnull.c
2411F: tests/check-qnum.c
2412F: tests/check-qobject.c
2413F: tests/check-qstring.c
2414F: tests/data/qobject/qdict.txt
2415T: git https://repo.or.cz/qemu/armbru.git qapi-next
2416
2417QEMU Guest Agent
2418M: Michael Roth <mdroth@linux.vnet.ibm.com>
2419S: Maintained
2420F: qga/
2421F: docs/interop/qemu-ga.rst
2422F: scripts/qemu-guest-agent/
2423F: tests/test-qga.c
2424F: docs/interop/qemu-ga-ref.texi
2425T: git https://github.com/mdroth/qemu.git qga
2426
2427QOM
2428M: Paolo Bonzini <pbonzini@redhat.com>
2429R: Daniel P. Berrange <berrange@redhat.com>
2430R: Eduardo Habkost <ehabkost@redhat.com>
2431S: Supported
2432F: docs/qdev-device-use.txt
2433F: hw/core/qdev*
2434F: hw/core/bus.c
2435F: hw/core/sysbus.c
2436F: include/hw/qdev*
2437F: include/monitor/qdev.h
2438F: include/qom/
2439F: qapi/qom.json
2440F: qapi/qdev.json
2441F: qdev-monitor.c
2442F: qom/
2443F: tests/check-qom-interface.c
2444F: tests/check-qom-proplist.c
2445F: tests/test-qdev-global-props.c
2446
2447QOM boilerplate conversion script
2448M: Eduardo Habkost <ehabkost@redhat.com>
2449S: Maintained
2450F: scripts/codeconverter/
2451
2452QMP
2453M: Markus Armbruster <armbru@redhat.com>
2454S: Supported
2455F: monitor/monitor-internal.h
2456F: monitor/qmp*
2457F: monitor/misc.c
2458F: monitor/monitor.c
2459F: qapi/error.json
2460F: docs/devel/*qmp-*
2461F: docs/interop/*qmp-*
2462F: scripts/qmp/
2463F: tests/qtest/qmp-test.c
2464F: tests/qtest/qmp-cmd-test.c
2465T: git https://repo.or.cz/qemu/armbru.git qapi-next
2466
2467qtest
2468M: Thomas Huth <thuth@redhat.com>
2469M: Laurent Vivier <lvivier@redhat.com>
2470R: Paolo Bonzini <pbonzini@redhat.com>
2471S: Maintained
2472F: softmmu/qtest.c
2473F: accel/qtest.c
2474F: tests/qtest/
2475X: tests/qtest/bios-tables-test-allowed-diff.h
2476
2477Device Fuzzing
2478M: Alexander Bulekov <alxndr@bu.edu>
2479R: Paolo Bonzini <pbonzini@redhat.com>
2480R: Bandan Das <bsd@redhat.com>
2481R: Stefan Hajnoczi <stefanha@redhat.com>
2482R: Thomas Huth <thuth@redhat.com>
2483S: Maintained
2484F: tests/qtest/fuzz/
2485F: scripts/oss-fuzz/
2486F: docs/devel/fuzzing.txt
2487
2488Register API
2489M: Alistair Francis <alistair@alistair23.me>
2490S: Maintained
2491F: hw/core/register.c
2492F: include/hw/register.h
2493F: include/hw/registerfields.h
2494
2495SLIRP
2496M: Samuel Thibault <samuel.thibault@ens-lyon.org>
2497S: Maintained
2498F: slirp/
2499F: net/slirp.c
2500F: include/net/slirp.h
2501T: git https://people.debian.org/~sthibault/qemu.git slirp
2502
2503Streams
2504M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
2505S: Maintained
2506F: hw/core/stream.c
2507F: include/hw/stream.h
2508
2509Stubs
2510M: Paolo Bonzini <pbonzini@redhat.com>
2511S: Maintained
2512F: stubs/
2513
2514Tracing
2515M: Stefan Hajnoczi <stefanha@redhat.com>
2516S: Maintained
2517F: trace/
2518F: trace-events
2519F: docs/qemu-option-trace.rst.inc
2520F: scripts/tracetool.py
2521F: scripts/tracetool/
2522F: scripts/qemu-trace-stap*
2523F: docs/interop/qemu-trace-stap.rst
2524F: docs/devel/tracing.txt
2525T: git https://github.com/stefanha/qemu.git tracing
2526
2527TPM
2528M: Stefan Berger <stefanb@linux.ibm.com>
2529S: Maintained
2530F: tpm.c
2531F: stubs/tpm.c
2532F: hw/tpm/*
2533F: include/hw/acpi/tpm.h
2534F: include/sysemu/tpm*
2535F: qapi/tpm.json
2536F: backends/tpm/
2537F: tests/qtest/*tpm*
2538T: git https://github.com/stefanberger/qemu-tpm.git tpm-next
2539
2540Checkpatch
2541S: Odd Fixes
2542F: scripts/checkpatch.pl
2543
2544Migration
2545M: Juan Quintela <quintela@redhat.com>
2546M: Dr. David Alan Gilbert <dgilbert@redhat.com>
2547S: Maintained
2548F: hw/core/vmstate-if.c
2549F: include/hw/vmstate-if.h
2550F: include/migration/
2551F: migration/
2552F: scripts/vmstate-static-checker.py
2553F: tests/vmstate-static-checker-data/
2554F: tests/qtest/migration-test.c
2555F: docs/devel/migration.rst
2556F: qapi/migration.json
2557
2558D-Bus
2559M: Marc-André Lureau <marcandre.lureau@redhat.com>
2560S: Maintained
2561F: backends/dbus-vmstate.c
2562F: tests/dbus-vmstate*
2563F: util/dbus.c
2564F: include/qemu/dbus.h
2565F: docs/interop/dbus.rst
2566F: docs/interop/dbus-vmstate.rst
2567
2568Seccomp
2569M: Eduardo Otubo <otubo@redhat.com>
2570S: Supported
2571F: qemu-seccomp.c
2572F: include/sysemu/seccomp.h
2573
2574Cryptography
2575M: Daniel P. Berrange <berrange@redhat.com>
2576S: Maintained
2577F: crypto/
2578F: include/crypto/
2579F: tests/test-crypto-*
2580F: tests/benchmark-crypto-*
2581F: tests/crypto-tls-*
2582F: tests/pkix_asn1_tab.c
2583F: qemu.sasl
2584
2585Coroutines
2586M: Stefan Hajnoczi <stefanha@redhat.com>
2587M: Kevin Wolf <kwolf@redhat.com>
2588S: Maintained
2589F: util/*coroutine*
2590F: include/qemu/coroutine*
2591F: tests/test-coroutine.c
2592
2593Buffers
2594M: Daniel P. Berrange <berrange@redhat.com>
2595S: Odd fixes
2596F: util/buffer.c
2597F: include/qemu/buffer.h
2598
2599I/O Channels
2600M: Daniel P. Berrange <berrange@redhat.com>
2601S: Maintained
2602F: io/
2603F: include/io/
2604F: tests/test-io-*
2605
2606User authorization
2607M: Daniel P. Berrange <berrange@redhat.com>
2608S: Maintained
2609F: authz/
2610F: qapi/authz.json
2611F: include/authz/
2612F: tests/test-authz-*
2613
2614Sockets
2615M: Daniel P. Berrange <berrange@redhat.com>
2616M: Gerd Hoffmann <kraxel@redhat.com>
2617S: Maintained
2618F: include/qemu/sockets.h
2619F: util/qemu-sockets.c
2620F: qapi/sockets.json
2621
2622File monitor
2623M: Daniel P. Berrange <berrange@redhat.com>
2624S: Odd fixes
2625F: util/filemonitor*.c
2626F: include/qemu/filemonitor.h
2627F: tests/test-util-filemonitor.c
2628
2629Throttling infrastructure
2630M: Alberto Garcia <berto@igalia.com>
2631S: Supported
2632F: block/throttle-groups.c
2633F: include/block/throttle-groups.h
2634F: include/qemu/throttle*.h
2635F: util/throttle.c
2636F: docs/throttle.txt
2637F: tests/test-throttle.c
2638L: qemu-block@nongnu.org
2639
2640UUID
2641M: Fam Zheng <fam@euphon.net>
2642S: Supported
2643F: util/uuid.c
2644F: include/qemu/uuid.h
2645F: tests/test-uuid.c
2646
2647COLO Framework
2648M: zhanghailiang <zhang.zhanghailiang@huawei.com>
2649S: Maintained
2650F: migration/colo*
2651F: include/migration/colo.h
2652F: include/migration/failover.h
2653F: docs/COLO-FT.txt
2654
2655COLO Proxy
2656M: Zhang Chen <chen.zhang@intel.com>
2657M: Li Zhijian <lizhijian@cn.fujitsu.com>
2658S: Supported
2659F: docs/colo-proxy.txt
2660F: net/colo*
2661F: net/filter-rewriter.c
2662F: net/filter-mirror.c
2663
2664Record/replay
2665M: Pavel Dovgalyuk <pavel.dovgaluk@ispras.ru>
2666R: Paolo Bonzini <pbonzini@redhat.com>
2667W: https://wiki.qemu.org/Features/record-replay
2668S: Supported
2669F: replay/*
2670F: block/blkreplay.c
2671F: net/filter-replay.c
2672F: include/sysemu/replay.h
2673F: docs/replay.txt
2674F: stubs/replay.c
2675F: tests/acceptance/replay_kernel.py
2676
2677IOVA Tree
2678M: Peter Xu <peterx@redhat.com>
2679S: Maintained
2680F: include/qemu/iova-tree.h
2681F: util/iova-tree.c
2682
2683elf2dmp
2684M: Viktor Prutyanov <viktor.prutyanov@phystech.edu>
2685S: Maintained
2686F: contrib/elf2dmp/
2687
2688I2C and SMBus
2689M: Corey Minyard <cminyard@mvista.com>
2690S: Maintained
2691F: hw/i2c/core.c
2692F: hw/i2c/smbus_slave.c
2693F: hw/i2c/smbus_master.c
2694F: hw/i2c/smbus_eeprom.c
2695F: include/hw/i2c/i2c.h
2696F: include/hw/i2c/smbus_master.h
2697F: include/hw/i2c/smbus_slave.h
2698F: include/hw/i2c/smbus_eeprom.h
2699
2700Firmware schema specifications
2701M: Laszlo Ersek <lersek@redhat.com>
2702M: Philippe Mathieu-Daudé <philmd@redhat.com>
2703R: Daniel P. Berrange <berrange@redhat.com>
2704R: Kashyap Chamarthy <kchamart@redhat.com>
2705S: Maintained
2706F: docs/interop/firmware.json
2707
2708EDK2 Firmware
2709M: Laszlo Ersek <lersek@redhat.com>
2710M: Philippe Mathieu-Daudé <philmd@redhat.com>
2711S: Supported
2712F: pc-bios/descriptors/??-edk2-*.json
2713F: pc-bios/edk2-*
2714F: roms/Makefile.edk2
2715F: roms/edk2
2716F: roms/edk2-*
2717F: tests/data/uefi-boot-images/
2718F: tests/uefi-test-tools/
2719F: .gitlab-ci.d/edk2.yml
2720F: .gitlab-ci.d/edk2/
2721
2722VT-d Emulation
2723M: Michael S. Tsirkin <mst@redhat.com>
2724M: Peter Xu <peterx@redhat.com>
2725R: Jason Wang <jasowang@redhat.com>
2726S: Supported
2727F: hw/i386/intel_iommu.c
2728F: hw/i386/intel_iommu_internal.h
2729F: include/hw/i386/intel_iommu.h
2730
2731OpenSBI Firmware
2732M: Bin Meng <bmeng.cn@gmail.com>
2733S: Supported
2734F: pc-bios/opensbi-*
2735F: .gitlab-ci.d/opensbi.yml
2736F: .gitlab-ci.d/opensbi/
2737
2738Usermode Emulation
2739------------------
2740Overall usermode emulation
2741M: Riku Voipio <riku.voipio@iki.fi>
2742S: Maintained
2743F: thunk.c
2744F: accel/tcg/user-exec*.c
2745
2746BSD user
2747S: Orphan
2748F: bsd-user/
2749F: default-configs/*-bsd-user.mak
2750
2751Linux user
2752M: Laurent Vivier <laurent@vivier.eu>
2753S: Maintained
2754F: linux-user/
2755F: default-configs/*-linux-user.mak
2756F: scripts/qemu-binfmt-conf.sh
2757F: scripts/update-syscalltbl.sh
2758F: scripts/update-mips-syscall-args.sh
2759F: scripts/gensyscalls.sh
2760
2761Tiny Code Generator (TCG)
2762-------------------------
2763Common TCG code
2764M: Richard Henderson <rth@twiddle.net>
2765S: Maintained
2766F: tcg/
2767F: include/tcg/
2768
2769TCG Plugins
2770M: Alex Bennée <alex.bennee@linaro.org>
2771S: Maintained
2772F: docs/devel/tcg-plugins.rst
2773F: plugins/
2774F: tests/plugin/
2775F: contrib/plugins/
2776
2777AArch64 TCG target
2778M: Richard Henderson <richard.henderson@linaro.org>
2779S: Maintained
2780L: qemu-arm@nongnu.org
2781F: tcg/aarch64/
2782F: disas/arm-a64.cc
2783F: disas/libvixl/
2784
2785ARM TCG target
2786M: Andrzej Zaborowski <balrogg@gmail.com>
2787S: Maintained
2788L: qemu-arm@nongnu.org
2789F: tcg/arm/
2790F: disas/arm.c
2791
2792i386 TCG target
2793M: Richard Henderson <rth@twiddle.net>
2794S: Maintained
2795F: tcg/i386/
2796F: disas/i386.c
2797
2798MIPS TCG target
2799M: Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
2800R: Aurelien Jarno <aurelien@aurel32.net>
2801R: Huacai Chen <chenhc@lemote.com>
2802R: Jiaxun Yang <jiaxun.yang@flygoat.com>
2803R: Aleksandar Rikalo <aleksandar.rikalo@syrmia.com>
2804S: Maintained
2805F: tcg/mips/
2806
2807PPC TCG target
2808M: Richard Henderson <rth@twiddle.net>
2809S: Odd Fixes
2810F: tcg/ppc/
2811F: disas/ppc.c
2812
2813RISC-V TCG target
2814M: Palmer Dabbelt <palmer@dabbelt.com>
2815M: Alistair Francis <Alistair.Francis@wdc.com>
2816L: qemu-riscv@nongnu.org
2817S: Maintained
2818F: tcg/riscv/
2819F: disas/riscv.c
2820
2821S390 TCG target
2822M: Richard Henderson <rth@twiddle.net>
2823S: Maintained
2824F: tcg/s390/
2825F: disas/s390.c
2826L: qemu-s390x@nongnu.org
2827
2828SPARC TCG target
2829S: Odd Fixes
2830F: tcg/sparc/
2831F: disas/sparc.c
2832
2833TCI TCG target
2834M: Stefan Weil <sw@weilnetz.de>
2835S: Maintained
2836F: tcg/tci/
2837F: tcg/tci.c
2838F: disas/tci.c
2839
2840Block drivers
2841-------------
2842VMDK
2843M: Fam Zheng <fam@euphon.net>
2844L: qemu-block@nongnu.org
2845S: Supported
2846F: block/vmdk.c
2847
2848RBD
2849M: Jason Dillaman <dillaman@redhat.com>
2850L: qemu-block@nongnu.org
2851S: Supported
2852F: block/rbd.c
2853
2854Sheepdog
2855M: Liu Yuan <namei.unix@gmail.com>
2856L: qemu-block@nongnu.org
2857L: sheepdog@lists.wpkg.org
2858S: Odd Fixes
2859F: block/sheepdog.c
2860
2861VHDX
2862M: Jeff Cody <codyprime@gmail.com>
2863L: qemu-block@nongnu.org
2864S: Supported
2865F: block/vhdx*
2866
2867VDI
2868M: Stefan Weil <sw@weilnetz.de>
2869L: qemu-block@nongnu.org
2870S: Maintained
2871F: block/vdi.c
2872
2873iSCSI
2874M: Ronnie Sahlberg <ronniesahlberg@gmail.com>
2875M: Paolo Bonzini <pbonzini@redhat.com>
2876M: Peter Lieven <pl@kamp.de>
2877L: qemu-block@nongnu.org
2878S: Odd Fixes
2879F: block/iscsi.c
2880F: block/iscsi-opts.c
2881
2882Network Block Device (NBD)
2883M: Eric Blake <eblake@redhat.com>
2884L: qemu-block@nongnu.org
2885S: Maintained
2886F: block/nbd*
2887F: nbd/
2888F: include/block/nbd*
2889F: qemu-nbd.*
2890F: blockdev-nbd.c
2891F: docs/interop/nbd.txt
2892F: docs/interop/qemu-nbd.rst
2893T: git https://repo.or.cz/qemu/ericb.git nbd
2894
2895NFS
2896M: Peter Lieven <pl@kamp.de>
2897L: qemu-block@nongnu.org
2898S: Maintained
2899F: block/nfs.c
2900
2901SSH
2902M: Richard W.M. Jones <rjones@redhat.com>
2903L: qemu-block@nongnu.org
2904S: Supported
2905F: block/ssh.c
2906
2907CURL
2908L: qemu-block@nongnu.org
2909S: Odd Fixes
2910F: block/curl.c
2911
2912GLUSTER
2913L: qemu-block@nongnu.org
2914L: integration@gluster.org
2915S: Odd Fixes
2916F: block/gluster.c
2917
2918Null Block Driver
2919M: Fam Zheng <fam@euphon.net>
2920L: qemu-block@nongnu.org
2921S: Supported
2922F: block/null.c
2923
2924NVMe Block Driver
2925M: Stefan Hajnoczi <stefanha@redhat.com>
2926R: Fam Zheng <fam@euphon.net>
2927L: qemu-block@nongnu.org
2928S: Supported
2929F: block/nvme*
2930T: git https://github.com/stefanha/qemu.git block
2931
2932Bootdevice
2933M: Gonglei <arei.gonglei@huawei.com>
2934S: Maintained
2935F: bootdevice.c
2936
2937Quorum
2938M: Alberto Garcia <berto@igalia.com>
2939S: Supported
2940F: block/quorum.c
2941L: qemu-block@nongnu.org
2942
2943blklogwrites
2944M: Ari Sundholm <ari@tuxera.com>
2945L: qemu-block@nongnu.org
2946S: Supported
2947F: block/blklogwrites.c
2948
2949blkverify
2950M: Stefan Hajnoczi <stefanha@redhat.com>
2951L: qemu-block@nongnu.org
2952S: Supported
2953F: block/blkverify.c
2954
2955bochs
2956M: Stefan Hajnoczi <stefanha@redhat.com>
2957L: qemu-block@nongnu.org
2958S: Supported
2959F: block/bochs.c
2960
2961cloop
2962M: Stefan Hajnoczi <stefanha@redhat.com>
2963L: qemu-block@nongnu.org
2964S: Supported
2965F: block/cloop.c
2966
2967dmg
2968M: Stefan Hajnoczi <stefanha@redhat.com>
2969L: qemu-block@nongnu.org
2970S: Supported
2971F: block/dmg.c
2972
2973parallels
2974M: Stefan Hajnoczi <stefanha@redhat.com>
2975M: Denis V. Lunev <den@openvz.org>
2976L: qemu-block@nongnu.org
2977S: Supported
2978F: block/parallels.c
2979F: docs/interop/parallels.txt
2980
2981qed
2982M: Stefan Hajnoczi <stefanha@redhat.com>
2983L: qemu-block@nongnu.org
2984S: Supported
2985F: block/qed.c
2986
2987raw
2988M: Kevin Wolf <kwolf@redhat.com>
2989L: qemu-block@nongnu.org
2990S: Supported
2991F: block/linux-aio.c
2992F: include/block/raw-aio.h
2993F: block/raw-format.c
2994F: block/file-posix.c
2995F: block/file-win32.c
2996F: block/win32-aio.c
2997
2998Linux io_uring
2999M: Aarushi Mehta <mehta.aaru20@gmail.com>
3000M: Julia Suvorova <jusual@redhat.com>
3001M: Stefan Hajnoczi <stefanha@redhat.com>
3002L: qemu-block@nongnu.org
3003S: Maintained
3004F: block/io_uring.c
3005F: stubs/io_uring.c
3006
3007qcow2
3008M: Kevin Wolf <kwolf@redhat.com>
3009M: Max Reitz <mreitz@redhat.com>
3010L: qemu-block@nongnu.org
3011S: Supported
3012F: block/qcow2*
3013F: docs/interop/qcow2.txt
3014
3015qcow
3016M: Kevin Wolf <kwolf@redhat.com>
3017L: qemu-block@nongnu.org
3018S: Supported
3019F: block/qcow.c
3020
3021blkdebug
3022M: Kevin Wolf <kwolf@redhat.com>
3023M: Max Reitz <mreitz@redhat.com>
3024L: qemu-block@nongnu.org
3025S: Supported
3026F: block/blkdebug.c
3027
3028vpc
3029M: Kevin Wolf <kwolf@redhat.com>
3030L: qemu-block@nongnu.org
3031S: Supported
3032F: block/vpc.c
3033
3034vvfat
3035M: Kevin Wolf <kwolf@redhat.com>
3036L: qemu-block@nongnu.org
3037S: Odd Fixes
3038F: block/vvfat.c
3039
3040Image format fuzzer
3041M: Stefan Hajnoczi <stefanha@redhat.com>
3042L: qemu-block@nongnu.org
3043S: Supported
3044F: tests/image-fuzzer/
3045
3046Replication
3047M: Wen Congyang <wencongyang2@huawei.com>
3048M: Xie Changlong <xiechanglong.d@gmail.com>
3049S: Supported
3050F: replication*
3051F: block/replication.c
3052F: tests/test-replication.c
3053F: docs/block-replication.txt
3054
3055PVRDMA
3056M: Yuval Shaia <yuval.shaia.ml@gmail.com>
3057M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
3058S: Maintained
3059F: hw/rdma/*
3060F: hw/rdma/vmw/*
3061F: docs/pvrdma.txt
3062F: contrib/rdmacm-mux/*
3063F: qapi/rdma.json
3064
3065Semihosting
3066M: Alex Bennée <alex.bennee@linaro.org>
3067S: Maintained
3068F: hw/semihosting/
3069F: include/hw/semihosting/
3070
3071Build and test automation
3072-------------------------
3073Build and test automation
3074M: Alex Bennée <alex.bennee@linaro.org>
3075M: Fam Zheng <fam@euphon.net>
3076R: Philippe Mathieu-Daudé <philmd@redhat.com>
3077S: Maintained
3078F: .github/lockdown.yml
3079F: .travis.yml
3080F: scripts/travis/
3081F: .shippable.yml
3082F: tests/docker/
3083F: tests/vm/
3084F: scripts/archive-source.sh
3085W: https://travis-ci.org/qemu/qemu
3086W: https://app.shippable.com/github/qemu/qemu
3087W: http://patchew.org/QEMU/
3088
3089FreeBSD Hosted Continuous Integration
3090M: Ed Maste <emaste@freebsd.org>
3091M: Li-Wen Hsu <lwhsu@freebsd.org>
3092S: Maintained
3093F: .cirrus.yml
3094W: https://cirrus-ci.com/github/qemu/qemu
3095
3096GitLab Continuous Integration
3097M: Thomas Huth <thuth@redhat.com>
3098M: Philippe Mathieu-Daudé <philmd@redhat.com>
3099M: Alex Bennée <alex.bennee@linaro.org>
3100R: Wainer dos Santos Moschetta <wainersm@redhat.com>
3101S: Maintained
3102F: .gitlab-ci.yml
3103F: .gitlab-ci.d/crossbuilds.yml
3104
3105Guest Test Compilation Support
3106M: Alex Bennée <alex.bennee@linaro.org>
3107R: Philippe Mathieu-Daudé <f4bug@amsat.org>
3108S: Maintained
3109F: tests/tcg/Makefile
3110F: tests/tcg/Makefile.include
3111
3112Acceptance (Integration) Testing with the Avocado framework
3113W: https://trello.com/b/6Qi1pxVn/avocado-qemu
3114R: Cleber Rosa <crosa@redhat.com>
3115R: Philippe Mathieu-Daudé <philmd@redhat.com>
3116R: Wainer dos Santos Moschetta <wainersm@redhat.com>
3117S: Odd Fixes
3118F: tests/acceptance/
3119
3120Documentation
3121-------------
3122Build system architecture
3123M: Daniel P. Berrange <berrange@redhat.com>
3124S: Odd Fixes
3125F: docs/devel/build-system.txt
3126
3127GIT Data Mining Config
3128M: Alex Bennée <alex.bennee@linaro.org>
3129S: Odd Fixes
3130F: gitdm.config
3131F: contrib/gitdm/*
3132
3133Incompatible changes
3134R: libvir-list@redhat.com
3135F: docs/system/deprecated.rst
3136
3137Build System
3138------------
3139GIT submodules
3140M: Daniel P. Berrange <berrange@redhat.com>
3141S: Odd Fixes
3142F: scripts/git-submodule.sh
3143
3144UI translations
3145M: Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
3146F: po/*.po
3147
3148Sphinx documentation configuration and build machinery
3149M: Peter Maydell <peter.maydell@linaro.org>
3150S: Maintained
3151F: docs/conf.py
3152F: docs/*/conf.py
3153
3154Miscellaneous
3155-------------
3156Performance Tools and Tests
3157M: Ahmed Karaman <ahmedkhaledkaraman@gmail.com>
3158S: Maintained
3159F: scripts/performance/
3160