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