xref: /qemu/MAINTAINERS (revision e3a6e0da)
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
2135T: git https://github.com/stefanha/qemu.git block
2136
2137Block SCSI subsystem
2138M: Paolo Bonzini <pbonzini@redhat.com>
2139R: Fam Zheng <fam@euphon.net>
2140L: qemu-block@nongnu.org
2141S: Supported
2142F: include/scsi/*
2143F: scsi/*
2144
2145Block Jobs
2146M: John Snow <jsnow@redhat.com>
2147L: qemu-block@nongnu.org
2148S: Supported
2149F: blockjob.c
2150F: include/block/blockjob.h
2151F: job.c
2152F: job-qmp.c
2153F: include/qemu/job.h
2154F: block/backup.c
2155F: block/commit.c
2156F: block/stream.c
2157F: block/mirror.c
2158F: qapi/job.json
2159T: git https://github.com/jnsnow/qemu.git jobs
2160
2161Block QAPI, monitor, command line
2162M: Markus Armbruster <armbru@redhat.com>
2163S: Supported
2164F: blockdev.c
2165F: blockdev-hmp-cmds.c
2166F: block/qapi.c
2167F: qapi/block*.json
2168F: qapi/transaction.json
2169T: git https://repo.or.cz/qemu/armbru.git block-next
2170
2171Dirty Bitmaps
2172M: Eric Blake <eblake@redhat.com>
2173M: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
2174R: John Snow <jsnow@redhat.com>
2175L: qemu-block@nongnu.org
2176S: Supported
2177F: include/qemu/hbitmap.h
2178F: include/block/dirty-bitmap.h
2179F: block/monitor/bitmap-qmp-cmds.c
2180F: block/dirty-bitmap.c
2181F: block/qcow2-bitmap.c
2182F: migration/block-dirty-bitmap.c
2183F: util/hbitmap.c
2184F: tests/test-hbitmap.c
2185F: docs/interop/bitmaps.rst
2186T: git https://repo.or.cz/qemu/ericb.git bitmaps
2187
2188Character device backends
2189M: Marc-André Lureau <marcandre.lureau@redhat.com>
2190R: Paolo Bonzini <pbonzini@redhat.com>
2191S: Maintained
2192F: chardev/
2193F: include/chardev/
2194F: qapi/char.json
2195
2196Character Devices (Braille)
2197M: Samuel Thibault <samuel.thibault@ens-lyon.org>
2198S: Maintained
2199F: chardev/baum.c
2200
2201Command line option argument parsing
2202M: Markus Armbruster <armbru@redhat.com>
2203S: Supported
2204F: include/qemu/option.h
2205F: tests/test-keyval.c
2206F: tests/test-qemu-opts.c
2207F: util/keyval.c
2208F: util/qemu-option.c
2209
2210Coverity model
2211M: Markus Armbruster <armbru@redhat.com>
2212S: Supported
2213F: scripts/coverity-model.c
2214
2215Coverity Scan integration
2216M: Peter Maydell <peter.maydell@linaro.org>
2217S: Maintained
2218F: scripts/coverity-scan/
2219
2220Device Tree
2221M: Alistair Francis <alistair.francis@wdc.com>
2222R: David Gibson <david@gibson.dropbear.id.au>
2223S: Maintained
2224F: device_tree.c
2225F: include/sysemu/device_tree.h
2226
2227Dump
2228S: Supported
2229M: Marc-André Lureau <marcandre.lureau@redhat.com>
2230F: dump/
2231F: hw/misc/vmcoreinfo.c
2232F: include/hw/misc/vmcoreinfo.h
2233F: include/qemu/win_dump_defs
2234F: include/sysemu/dump-arch.h
2235F: include/sysemu/dump.h
2236F: qapi/dump.json
2237F: scripts/dump-guest-memory.py
2238F: stubs/dump.c
2239
2240Error reporting
2241M: Markus Armbruster <armbru@redhat.com>
2242S: Supported
2243F: include/qapi/error.h
2244F: include/qemu/error-report.h
2245F: qapi/error.json
2246F: util/error.c
2247F: util/qemu-error.c
2248F: scripts/coccinelle/err-bad-newline.cocci
2249F: scripts/coccinelle/error-use-after-free.cocci
2250F: scripts/coccinelle/error_propagate_null.cocci
2251F: scripts/coccinelle/remove_local_err.cocci
2252F: scripts/coccinelle/use-error_fatal.cocci
2253F: scripts/coccinelle/errp-guard.cocci
2254
2255GDB stub
2256M: Alex Bennée <alex.bennee@linaro.org>
2257R: Philippe Mathieu-Daudé <philmd@redhat.com>
2258S: Maintained
2259F: gdbstub*
2260F: gdb-xml/
2261
2262Memory API
2263M: Paolo Bonzini <pbonzini@redhat.com>
2264S: Supported
2265F: include/exec/ioport.h
2266F: include/exec/memop.h
2267F: include/exec/memory.h
2268F: include/exec/ram_addr.h
2269F: include/exec/ramblock.h
2270F: softmmu/ioport.c
2271F: softmmu/memory.c
2272F: include/exec/memory-internal.h
2273F: exec.c
2274F: scripts/coccinelle/memory-region-housekeeping.cocci
2275
2276SPICE
2277M: Gerd Hoffmann <kraxel@redhat.com>
2278S: Supported
2279F: include/ui/qemu-spice.h
2280F: include/ui/spice-display.h
2281F: ui/spice-*.c
2282F: audio/spiceaudio.c
2283F: hw/display/qxl*
2284F: qapi/ui.json
2285F: docs/spice-port-fqdn.txt
2286
2287Graphics
2288M: Gerd Hoffmann <kraxel@redhat.com>
2289S: Odd Fixes
2290F: ui/
2291F: include/ui/
2292F: qapi/ui.json
2293F: util/drm.c
2294
2295Cocoa graphics
2296M: Peter Maydell <peter.maydell@linaro.org>
2297S: Odd Fixes
2298F: ui/cocoa.m
2299
2300Main loop
2301M: Paolo Bonzini <pbonzini@redhat.com>
2302S: Maintained
2303F: include/qemu/main-loop.h
2304F: include/sysemu/runstate.h
2305F: util/main-loop.c
2306F: util/qemu-timer.c
2307F: softmmu/vl.c
2308F: softmmu/main.c
2309F: softmmu/cpus.c
2310F: softmmu/cpu-throttle.c
2311F: qapi/run-state.json
2312
2313Human Monitor (HMP)
2314M: Dr. David Alan Gilbert <dgilbert@redhat.com>
2315S: Maintained
2316F: monitor/monitor-internal.h
2317F: monitor/misc.c
2318F: monitor/monitor.c
2319F: monitor/hmp*
2320F: hmp.h
2321F: hmp-commands*.hx
2322F: include/monitor/hmp-target.h
2323F: tests/qtest/test-hmp.c
2324F: include/qemu/qemu-print.h
2325F: util/qemu-print.c
2326
2327Network device backends
2328M: Jason Wang <jasowang@redhat.com>
2329S: Maintained
2330F: net/
2331F: include/net/
2332F: qemu-bridge-helper.c
2333T: git https://github.com/jasowang/qemu.git net
2334F: qapi/net.json
2335
2336Netmap network backend
2337M: Luigi Rizzo <rizzo@iet.unipi.it>
2338M: Giuseppe Lettieri <g.lettieri@iet.unipi.it>
2339M: Vincenzo Maffione <v.maffione@gmail.com>
2340W: http://info.iet.unipi.it/~luigi/netmap/
2341S: Maintained
2342F: net/netmap.c
2343
2344Host Memory Backends
2345M: Eduardo Habkost <ehabkost@redhat.com>
2346M: Igor Mammedov <imammedo@redhat.com>
2347S: Maintained
2348F: backends/hostmem*.c
2349F: include/sysemu/hostmem.h
2350T: git https://github.com/ehabkost/qemu.git machine-next
2351
2352Cryptodev Backends
2353M: Gonglei <arei.gonglei@huawei.com>
2354S: Maintained
2355F: include/sysemu/cryptodev*.h
2356F: backends/cryptodev*.c
2357
2358Python scripts
2359M: Eduardo Habkost <ehabkost@redhat.com>
2360M: Cleber Rosa <crosa@redhat.com>
2361S: Odd fixes
2362F: python/qemu/*py
2363F: scripts/*.py
2364F: tests/*.py
2365
2366Benchmark util
2367M: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
2368S: Maintained
2369F: scripts/simplebench/
2370
2371QAPI
2372M: Markus Armbruster <armbru@redhat.com>
2373M: Michael Roth <mdroth@linux.vnet.ibm.com>
2374S: Supported
2375F: qapi/
2376X: qapi/*.json
2377F: include/qapi/
2378X: include/qapi/qmp/
2379F: include/qapi/qmp/dispatch.h
2380F: tests/qapi-schema/
2381F: tests/test-*-visitor.c
2382F: tests/test-qapi-*.c
2383F: tests/test-qmp-*.c
2384F: tests/test-visitor-serialization.c
2385F: scripts/qapi-gen.py
2386F: scripts/qapi/*
2387F: docs/devel/qapi*
2388T: git https://repo.or.cz/qemu/armbru.git qapi-next
2389
2390QAPI Schema
2391M: Eric Blake <eblake@redhat.com>
2392M: Markus Armbruster <armbru@redhat.com>
2393S: Supported
2394F: qapi/*.json
2395T: git https://repo.or.cz/qemu/armbru.git qapi-next
2396
2397QObject
2398M: Markus Armbruster <armbru@redhat.com>
2399S: Supported
2400F: qobject/
2401F: include/qapi/qmp/
2402X: include/qapi/qmp/dispatch.h
2403F: scripts/coccinelle/qobject.cocci
2404F: tests/check-qdict.c
2405F: tests/check-qjson.c
2406F: tests/check-qlist.c
2407F: tests/check-qlit.c
2408F: tests/check-qnull.c
2409F: tests/check-qnum.c
2410F: tests/check-qobject.c
2411F: tests/check-qstring.c
2412F: tests/data/qobject/qdict.txt
2413T: git https://repo.or.cz/qemu/armbru.git qapi-next
2414
2415QEMU Guest Agent
2416M: Michael Roth <mdroth@linux.vnet.ibm.com>
2417S: Maintained
2418F: qga/
2419F: docs/interop/qemu-ga.rst
2420F: scripts/qemu-guest-agent/
2421F: tests/test-qga.c
2422F: docs/interop/qemu-ga-ref.texi
2423T: git https://github.com/mdroth/qemu.git qga
2424
2425QOM
2426M: Paolo Bonzini <pbonzini@redhat.com>
2427R: Daniel P. Berrange <berrange@redhat.com>
2428R: Eduardo Habkost <ehabkost@redhat.com>
2429S: Supported
2430F: docs/qdev-device-use.txt
2431F: hw/core/qdev*
2432F: hw/core/bus.c
2433F: hw/core/sysbus.c
2434F: include/hw/qdev*
2435F: include/monitor/qdev.h
2436F: include/qom/
2437F: qapi/qom.json
2438F: qapi/qdev.json
2439F: qdev-monitor.c
2440F: qom/
2441F: tests/check-qom-interface.c
2442F: tests/check-qom-proplist.c
2443F: tests/test-qdev-global-props.c
2444
2445QOM boilerplate conversion script
2446M: Eduardo Habkost <ehabkost@redhat.com>
2447S: Maintained
2448F: scripts/codeconverter/
2449
2450QMP
2451M: Markus Armbruster <armbru@redhat.com>
2452S: Supported
2453F: monitor/monitor-internal.h
2454F: monitor/qmp*
2455F: monitor/misc.c
2456F: monitor/monitor.c
2457F: qapi/error.json
2458F: docs/devel/*qmp-*
2459F: docs/interop/*qmp-*
2460F: scripts/qmp/
2461F: tests/qtest/qmp-test.c
2462F: tests/qtest/qmp-cmd-test.c
2463T: git https://repo.or.cz/qemu/armbru.git qapi-next
2464
2465qtest
2466M: Thomas Huth <thuth@redhat.com>
2467M: Laurent Vivier <lvivier@redhat.com>
2468R: Paolo Bonzini <pbonzini@redhat.com>
2469S: Maintained
2470F: softmmu/qtest.c
2471F: accel/qtest.c
2472F: tests/qtest/
2473X: tests/qtest/bios-tables-test-allowed-diff.h
2474
2475Device Fuzzing
2476M: Alexander Bulekov <alxndr@bu.edu>
2477R: Paolo Bonzini <pbonzini@redhat.com>
2478R: Bandan Das <bsd@redhat.com>
2479R: Stefan Hajnoczi <stefanha@redhat.com>
2480R: Thomas Huth <thuth@redhat.com>
2481S: Maintained
2482F: tests/qtest/fuzz/
2483F: scripts/oss-fuzz/
2484F: docs/devel/fuzzing.txt
2485
2486Register API
2487M: Alistair Francis <alistair@alistair23.me>
2488S: Maintained
2489F: hw/core/register.c
2490F: include/hw/register.h
2491F: include/hw/registerfields.h
2492
2493SLIRP
2494M: Samuel Thibault <samuel.thibault@ens-lyon.org>
2495S: Maintained
2496F: slirp/
2497F: net/slirp.c
2498F: include/net/slirp.h
2499T: git https://people.debian.org/~sthibault/qemu.git slirp
2500
2501Streams
2502M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
2503S: Maintained
2504F: hw/core/stream.c
2505F: include/hw/stream.h
2506
2507Stubs
2508M: Paolo Bonzini <pbonzini@redhat.com>
2509S: Maintained
2510F: stubs/
2511
2512Tracing
2513M: Stefan Hajnoczi <stefanha@redhat.com>
2514S: Maintained
2515F: trace/
2516F: trace-events
2517F: docs/qemu-option-trace.rst.inc
2518F: scripts/tracetool.py
2519F: scripts/tracetool/
2520F: scripts/qemu-trace-stap*
2521F: docs/interop/qemu-trace-stap.rst
2522F: docs/devel/tracing.txt
2523T: git https://github.com/stefanha/qemu.git tracing
2524
2525TPM
2526M: Stefan Berger <stefanb@linux.ibm.com>
2527S: Maintained
2528F: tpm.c
2529F: stubs/tpm.c
2530F: hw/tpm/*
2531F: include/hw/acpi/tpm.h
2532F: include/sysemu/tpm*
2533F: qapi/tpm.json
2534F: backends/tpm/
2535F: tests/qtest/*tpm*
2536T: git https://github.com/stefanberger/qemu-tpm.git tpm-next
2537
2538Checkpatch
2539S: Odd Fixes
2540F: scripts/checkpatch.pl
2541
2542Migration
2543M: Juan Quintela <quintela@redhat.com>
2544M: Dr. David Alan Gilbert <dgilbert@redhat.com>
2545S: Maintained
2546F: hw/core/vmstate-if.c
2547F: include/hw/vmstate-if.h
2548F: include/migration/
2549F: migration/
2550F: scripts/vmstate-static-checker.py
2551F: tests/vmstate-static-checker-data/
2552F: tests/qtest/migration-test.c
2553F: docs/devel/migration.rst
2554F: qapi/migration.json
2555
2556D-Bus
2557M: Marc-André Lureau <marcandre.lureau@redhat.com>
2558S: Maintained
2559F: backends/dbus-vmstate.c
2560F: tests/dbus-vmstate*
2561F: util/dbus.c
2562F: include/qemu/dbus.h
2563F: docs/interop/dbus.rst
2564F: docs/interop/dbus-vmstate.rst
2565
2566Seccomp
2567M: Eduardo Otubo <otubo@redhat.com>
2568S: Supported
2569F: qemu-seccomp.c
2570F: include/sysemu/seccomp.h
2571
2572Cryptography
2573M: Daniel P. Berrange <berrange@redhat.com>
2574S: Maintained
2575F: crypto/
2576F: include/crypto/
2577F: tests/test-crypto-*
2578F: tests/benchmark-crypto-*
2579F: tests/crypto-tls-*
2580F: tests/pkix_asn1_tab.c
2581F: qemu.sasl
2582
2583Coroutines
2584M: Stefan Hajnoczi <stefanha@redhat.com>
2585M: Kevin Wolf <kwolf@redhat.com>
2586S: Maintained
2587F: util/*coroutine*
2588F: include/qemu/coroutine*
2589F: tests/test-coroutine.c
2590
2591Buffers
2592M: Daniel P. Berrange <berrange@redhat.com>
2593S: Odd fixes
2594F: util/buffer.c
2595F: include/qemu/buffer.h
2596
2597I/O Channels
2598M: Daniel P. Berrange <berrange@redhat.com>
2599S: Maintained
2600F: io/
2601F: include/io/
2602F: tests/test-io-*
2603
2604User authorization
2605M: Daniel P. Berrange <berrange@redhat.com>
2606S: Maintained
2607F: authz/
2608F: qapi/authz.json
2609F: include/authz/
2610F: tests/test-authz-*
2611
2612Sockets
2613M: Daniel P. Berrange <berrange@redhat.com>
2614M: Gerd Hoffmann <kraxel@redhat.com>
2615S: Maintained
2616F: include/qemu/sockets.h
2617F: util/qemu-sockets.c
2618F: qapi/sockets.json
2619
2620File monitor
2621M: Daniel P. Berrange <berrange@redhat.com>
2622S: Odd fixes
2623F: util/filemonitor*.c
2624F: include/qemu/filemonitor.h
2625F: tests/test-util-filemonitor.c
2626
2627Throttling infrastructure
2628M: Alberto Garcia <berto@igalia.com>
2629S: Supported
2630F: block/throttle-groups.c
2631F: include/block/throttle-groups.h
2632F: include/qemu/throttle*.h
2633F: util/throttle.c
2634F: docs/throttle.txt
2635F: tests/test-throttle.c
2636L: qemu-block@nongnu.org
2637
2638UUID
2639M: Fam Zheng <fam@euphon.net>
2640S: Supported
2641F: util/uuid.c
2642F: include/qemu/uuid.h
2643F: tests/test-uuid.c
2644
2645COLO Framework
2646M: zhanghailiang <zhang.zhanghailiang@huawei.com>
2647S: Maintained
2648F: migration/colo*
2649F: include/migration/colo.h
2650F: include/migration/failover.h
2651F: docs/COLO-FT.txt
2652
2653COLO Proxy
2654M: Zhang Chen <chen.zhang@intel.com>
2655M: Li Zhijian <lizhijian@cn.fujitsu.com>
2656S: Supported
2657F: docs/colo-proxy.txt
2658F: net/colo*
2659F: net/filter-rewriter.c
2660F: net/filter-mirror.c
2661
2662Record/replay
2663M: Pavel Dovgalyuk <pavel.dovgaluk@ispras.ru>
2664R: Paolo Bonzini <pbonzini@redhat.com>
2665W: https://wiki.qemu.org/Features/record-replay
2666S: Supported
2667F: replay/*
2668F: block/blkreplay.c
2669F: net/filter-replay.c
2670F: include/sysemu/replay.h
2671F: docs/replay.txt
2672F: stubs/replay.c
2673F: tests/acceptance/replay_kernel.py
2674
2675IOVA Tree
2676M: Peter Xu <peterx@redhat.com>
2677S: Maintained
2678F: include/qemu/iova-tree.h
2679F: util/iova-tree.c
2680
2681elf2dmp
2682M: Viktor Prutyanov <viktor.prutyanov@phystech.edu>
2683S: Maintained
2684F: contrib/elf2dmp/
2685
2686I2C and SMBus
2687M: Corey Minyard <cminyard@mvista.com>
2688S: Maintained
2689F: hw/i2c/core.c
2690F: hw/i2c/smbus_slave.c
2691F: hw/i2c/smbus_master.c
2692F: hw/i2c/smbus_eeprom.c
2693F: include/hw/i2c/i2c.h
2694F: include/hw/i2c/smbus_master.h
2695F: include/hw/i2c/smbus_slave.h
2696F: include/hw/i2c/smbus_eeprom.h
2697
2698Firmware schema specifications
2699M: Laszlo Ersek <lersek@redhat.com>
2700M: Philippe Mathieu-Daudé <philmd@redhat.com>
2701R: Daniel P. Berrange <berrange@redhat.com>
2702R: Kashyap Chamarthy <kchamart@redhat.com>
2703S: Maintained
2704F: docs/interop/firmware.json
2705
2706EDK2 Firmware
2707M: Laszlo Ersek <lersek@redhat.com>
2708M: Philippe Mathieu-Daudé <philmd@redhat.com>
2709S: Supported
2710F: pc-bios/descriptors/??-edk2-*.json
2711F: pc-bios/edk2-*
2712F: roms/Makefile.edk2
2713F: roms/edk2
2714F: roms/edk2-*
2715F: tests/data/uefi-boot-images/
2716F: tests/uefi-test-tools/
2717F: .gitlab-ci.d/edk2.yml
2718F: .gitlab-ci.d/edk2/
2719
2720VT-d Emulation
2721M: Michael S. Tsirkin <mst@redhat.com>
2722M: Peter Xu <peterx@redhat.com>
2723R: Jason Wang <jasowang@redhat.com>
2724S: Supported
2725F: hw/i386/intel_iommu.c
2726F: hw/i386/intel_iommu_internal.h
2727F: include/hw/i386/intel_iommu.h
2728
2729OpenSBI Firmware
2730M: Bin Meng <bmeng.cn@gmail.com>
2731S: Supported
2732F: pc-bios/opensbi-*
2733F: .gitlab-ci.d/opensbi.yml
2734F: .gitlab-ci.d/opensbi/
2735
2736Usermode Emulation
2737------------------
2738Overall usermode emulation
2739M: Riku Voipio <riku.voipio@iki.fi>
2740S: Maintained
2741F: thunk.c
2742F: accel/tcg/user-exec*.c
2743
2744BSD user
2745S: Orphan
2746F: bsd-user/
2747F: default-configs/*-bsd-user.mak
2748
2749Linux user
2750M: Laurent Vivier <laurent@vivier.eu>
2751S: Maintained
2752F: linux-user/
2753F: default-configs/*-linux-user.mak
2754F: scripts/qemu-binfmt-conf.sh
2755F: scripts/update-syscalltbl.sh
2756F: scripts/update-mips-syscall-args.sh
2757F: scripts/gensyscalls.sh
2758
2759Tiny Code Generator (TCG)
2760-------------------------
2761Common TCG code
2762M: Richard Henderson <rth@twiddle.net>
2763S: Maintained
2764F: tcg/
2765F: include/tcg/
2766
2767TCG Plugins
2768M: Alex Bennée <alex.bennee@linaro.org>
2769S: Maintained
2770F: docs/devel/tcg-plugins.rst
2771F: plugins/
2772F: tests/plugin/
2773F: contrib/plugins/
2774
2775AArch64 TCG target
2776M: Richard Henderson <richard.henderson@linaro.org>
2777S: Maintained
2778L: qemu-arm@nongnu.org
2779F: tcg/aarch64/
2780F: disas/arm-a64.cc
2781F: disas/libvixl/
2782
2783ARM TCG target
2784M: Andrzej Zaborowski <balrogg@gmail.com>
2785S: Maintained
2786L: qemu-arm@nongnu.org
2787F: tcg/arm/
2788F: disas/arm.c
2789
2790i386 TCG target
2791M: Richard Henderson <rth@twiddle.net>
2792S: Maintained
2793F: tcg/i386/
2794F: disas/i386.c
2795
2796MIPS TCG target
2797M: Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
2798R: Aurelien Jarno <aurelien@aurel32.net>
2799R: Huacai Chen <chenhc@lemote.com>
2800R: Jiaxun Yang <jiaxun.yang@flygoat.com>
2801R: Aleksandar Rikalo <aleksandar.rikalo@syrmia.com>
2802S: Maintained
2803F: tcg/mips/
2804
2805PPC TCG target
2806M: Richard Henderson <rth@twiddle.net>
2807S: Odd Fixes
2808F: tcg/ppc/
2809F: disas/ppc.c
2810
2811RISC-V TCG target
2812M: Palmer Dabbelt <palmer@dabbelt.com>
2813M: Alistair Francis <Alistair.Francis@wdc.com>
2814L: qemu-riscv@nongnu.org
2815S: Maintained
2816F: tcg/riscv/
2817F: disas/riscv.c
2818
2819S390 TCG target
2820M: Richard Henderson <rth@twiddle.net>
2821S: Maintained
2822F: tcg/s390/
2823F: disas/s390.c
2824L: qemu-s390x@nongnu.org
2825
2826SPARC TCG target
2827S: Odd Fixes
2828F: tcg/sparc/
2829F: disas/sparc.c
2830
2831TCI TCG target
2832M: Stefan Weil <sw@weilnetz.de>
2833S: Maintained
2834F: tcg/tci/
2835F: tcg/tci.c
2836F: disas/tci.c
2837
2838Block drivers
2839-------------
2840VMDK
2841M: Fam Zheng <fam@euphon.net>
2842L: qemu-block@nongnu.org
2843S: Supported
2844F: block/vmdk.c
2845
2846RBD
2847M: Jason Dillaman <dillaman@redhat.com>
2848L: qemu-block@nongnu.org
2849S: Supported
2850F: block/rbd.c
2851
2852Sheepdog
2853M: Liu Yuan <namei.unix@gmail.com>
2854L: qemu-block@nongnu.org
2855L: sheepdog@lists.wpkg.org
2856S: Odd Fixes
2857F: block/sheepdog.c
2858
2859VHDX
2860M: Jeff Cody <codyprime@gmail.com>
2861L: qemu-block@nongnu.org
2862S: Supported
2863F: block/vhdx*
2864
2865VDI
2866M: Stefan Weil <sw@weilnetz.de>
2867L: qemu-block@nongnu.org
2868S: Maintained
2869F: block/vdi.c
2870
2871iSCSI
2872M: Ronnie Sahlberg <ronniesahlberg@gmail.com>
2873M: Paolo Bonzini <pbonzini@redhat.com>
2874M: Peter Lieven <pl@kamp.de>
2875L: qemu-block@nongnu.org
2876S: Odd Fixes
2877F: block/iscsi.c
2878F: block/iscsi-opts.c
2879
2880Network Block Device (NBD)
2881M: Eric Blake <eblake@redhat.com>
2882L: qemu-block@nongnu.org
2883S: Maintained
2884F: block/nbd*
2885F: nbd/
2886F: include/block/nbd*
2887F: qemu-nbd.*
2888F: blockdev-nbd.c
2889F: docs/interop/nbd.txt
2890F: docs/interop/qemu-nbd.rst
2891T: git https://repo.or.cz/qemu/ericb.git nbd
2892
2893NFS
2894M: Peter Lieven <pl@kamp.de>
2895L: qemu-block@nongnu.org
2896S: Maintained
2897F: block/nfs.c
2898
2899SSH
2900M: Richard W.M. Jones <rjones@redhat.com>
2901L: qemu-block@nongnu.org
2902S: Supported
2903F: block/ssh.c
2904
2905CURL
2906L: qemu-block@nongnu.org
2907S: Odd Fixes
2908F: block/curl.c
2909
2910GLUSTER
2911L: qemu-block@nongnu.org
2912L: integration@gluster.org
2913S: Odd Fixes
2914F: block/gluster.c
2915
2916Null Block Driver
2917M: Fam Zheng <fam@euphon.net>
2918L: qemu-block@nongnu.org
2919S: Supported
2920F: block/null.c
2921
2922NVMe Block Driver
2923M: Fam Zheng <fam@euphon.net>
2924L: qemu-block@nongnu.org
2925S: Supported
2926F: block/nvme*
2927
2928Bootdevice
2929M: Gonglei <arei.gonglei@huawei.com>
2930S: Maintained
2931F: bootdevice.c
2932
2933Quorum
2934M: Alberto Garcia <berto@igalia.com>
2935S: Supported
2936F: block/quorum.c
2937L: qemu-block@nongnu.org
2938
2939blklogwrites
2940M: Ari Sundholm <ari@tuxera.com>
2941L: qemu-block@nongnu.org
2942S: Supported
2943F: block/blklogwrites.c
2944
2945blkverify
2946M: Stefan Hajnoczi <stefanha@redhat.com>
2947L: qemu-block@nongnu.org
2948S: Supported
2949F: block/blkverify.c
2950
2951bochs
2952M: Stefan Hajnoczi <stefanha@redhat.com>
2953L: qemu-block@nongnu.org
2954S: Supported
2955F: block/bochs.c
2956
2957cloop
2958M: Stefan Hajnoczi <stefanha@redhat.com>
2959L: qemu-block@nongnu.org
2960S: Supported
2961F: block/cloop.c
2962
2963dmg
2964M: Stefan Hajnoczi <stefanha@redhat.com>
2965L: qemu-block@nongnu.org
2966S: Supported
2967F: block/dmg.c
2968
2969parallels
2970M: Stefan Hajnoczi <stefanha@redhat.com>
2971M: Denis V. Lunev <den@openvz.org>
2972L: qemu-block@nongnu.org
2973S: Supported
2974F: block/parallels.c
2975F: docs/interop/parallels.txt
2976
2977qed
2978M: Stefan Hajnoczi <stefanha@redhat.com>
2979L: qemu-block@nongnu.org
2980S: Supported
2981F: block/qed.c
2982
2983raw
2984M: Kevin Wolf <kwolf@redhat.com>
2985L: qemu-block@nongnu.org
2986S: Supported
2987F: block/linux-aio.c
2988F: include/block/raw-aio.h
2989F: block/raw-format.c
2990F: block/file-posix.c
2991F: block/file-win32.c
2992F: block/win32-aio.c
2993
2994Linux io_uring
2995M: Aarushi Mehta <mehta.aaru20@gmail.com>
2996M: Julia Suvorova <jusual@redhat.com>
2997M: Stefan Hajnoczi <stefanha@redhat.com>
2998L: qemu-block@nongnu.org
2999S: Maintained
3000F: block/io_uring.c
3001F: stubs/io_uring.c
3002
3003qcow2
3004M: Kevin Wolf <kwolf@redhat.com>
3005M: Max Reitz <mreitz@redhat.com>
3006L: qemu-block@nongnu.org
3007S: Supported
3008F: block/qcow2*
3009F: docs/interop/qcow2.txt
3010
3011qcow
3012M: Kevin Wolf <kwolf@redhat.com>
3013L: qemu-block@nongnu.org
3014S: Supported
3015F: block/qcow.c
3016
3017blkdebug
3018M: Kevin Wolf <kwolf@redhat.com>
3019M: Max Reitz <mreitz@redhat.com>
3020L: qemu-block@nongnu.org
3021S: Supported
3022F: block/blkdebug.c
3023
3024vpc
3025M: Kevin Wolf <kwolf@redhat.com>
3026L: qemu-block@nongnu.org
3027S: Supported
3028F: block/vpc.c
3029
3030vvfat
3031M: Kevin Wolf <kwolf@redhat.com>
3032L: qemu-block@nongnu.org
3033S: Odd Fixes
3034F: block/vvfat.c
3035
3036Image format fuzzer
3037M: Stefan Hajnoczi <stefanha@redhat.com>
3038L: qemu-block@nongnu.org
3039S: Supported
3040F: tests/image-fuzzer/
3041
3042Replication
3043M: Wen Congyang <wencongyang2@huawei.com>
3044M: Xie Changlong <xiechanglong.d@gmail.com>
3045S: Supported
3046F: replication*
3047F: block/replication.c
3048F: tests/test-replication.c
3049F: docs/block-replication.txt
3050
3051PVRDMA
3052M: Yuval Shaia <yuval.shaia.ml@gmail.com>
3053M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
3054S: Maintained
3055F: hw/rdma/*
3056F: hw/rdma/vmw/*
3057F: docs/pvrdma.txt
3058F: contrib/rdmacm-mux/*
3059F: qapi/rdma.json
3060
3061Semihosting
3062M: Alex Bennée <alex.bennee@linaro.org>
3063S: Maintained
3064F: hw/semihosting/
3065F: include/hw/semihosting/
3066
3067Build and test automation
3068-------------------------
3069Build and test automation
3070M: Alex Bennée <alex.bennee@linaro.org>
3071M: Fam Zheng <fam@euphon.net>
3072R: Philippe Mathieu-Daudé <philmd@redhat.com>
3073S: Maintained
3074F: .github/lockdown.yml
3075F: .travis.yml
3076F: scripts/travis/
3077F: .shippable.yml
3078F: tests/docker/
3079F: tests/vm/
3080F: scripts/archive-source.sh
3081W: https://travis-ci.org/qemu/qemu
3082W: https://app.shippable.com/github/qemu/qemu
3083W: http://patchew.org/QEMU/
3084
3085FreeBSD Hosted Continuous Integration
3086M: Ed Maste <emaste@freebsd.org>
3087M: Li-Wen Hsu <lwhsu@freebsd.org>
3088S: Maintained
3089F: .cirrus.yml
3090W: https://cirrus-ci.com/github/qemu/qemu
3091
3092GitLab Continuous Integration
3093M: Thomas Huth <thuth@redhat.com>
3094M: Philippe Mathieu-Daudé <philmd@redhat.com>
3095M: Alex Bennée <alex.bennee@linaro.org>
3096R: Wainer dos Santos Moschetta <wainersm@redhat.com>
3097S: Maintained
3098F: .gitlab-ci.yml
3099F: .gitlab-ci.d/crossbuilds.yml
3100
3101Guest Test Compilation Support
3102M: Alex Bennée <alex.bennee@linaro.org>
3103R: Philippe Mathieu-Daudé <f4bug@amsat.org>
3104S: Maintained
3105F: tests/tcg/Makefile
3106F: tests/tcg/Makefile.include
3107
3108Acceptance (Integration) Testing with the Avocado framework
3109W: https://trello.com/b/6Qi1pxVn/avocado-qemu
3110R: Cleber Rosa <crosa@redhat.com>
3111R: Philippe Mathieu-Daudé <philmd@redhat.com>
3112R: Wainer dos Santos Moschetta <wainersm@redhat.com>
3113S: Odd Fixes
3114F: tests/acceptance/
3115
3116Documentation
3117-------------
3118Build system architecture
3119M: Daniel P. Berrange <berrange@redhat.com>
3120S: Odd Fixes
3121F: docs/devel/build-system.txt
3122
3123GIT Data Mining Config
3124M: Alex Bennée <alex.bennee@linaro.org>
3125S: Odd Fixes
3126F: gitdm.config
3127F: contrib/gitdm/*
3128
3129Incompatible changes
3130R: libvir-list@redhat.com
3131F: docs/system/deprecated.rst
3132
3133Build System
3134------------
3135GIT submodules
3136M: Daniel P. Berrange <berrange@redhat.com>
3137S: Odd Fixes
3138F: scripts/git-submodule.sh
3139
3140UI translations
3141M: Aleksandar Markovic <aleksandar.qemu.devel@gmail.com>
3142F: po/*.po
3143
3144Sphinx documentation configuration and build machinery
3145M: Peter Maydell <peter.maydell@linaro.org>
3146S: Maintained
3147F: docs/conf.py
3148F: docs/*/conf.py
3149
3150Miscellaneous
3151-------------
3152Performance Tools and Tests
3153M: Ahmed Karaman <ahmedkhaledkaraman@gmail.com>
3154S: Maintained
3155F: scripts/performance/
3156