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