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