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