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