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