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