xref: /qemu/MAINTAINERS (revision c3bef3b4)
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 (keep in sync with docs/devel/maintainers.rst):
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
81F: docs/devel/trivial-patches.rst
82T: git git://git.corpit.ru/qemu.git trivial-patches
83T: git https://github.com/vivier/qemu.git trivial-patches
84
85Architecture support
86--------------------
87S390 general architecture support
88M: Thomas Huth <thuth@redhat.com>
89S: Supported
90F: configs/devices/s390x-softmmu/default.mak
91F: gdb-xml/s390*.xml
92F: hw/char/sclp*.[hc]
93F: hw/char/terminal3270.c
94F: hw/intc/s390_flic.c
95F: hw/intc/s390_flic_kvm.c
96F: hw/s390x/
97F: hw/vfio/ap.c
98F: hw/vfio/ccw.c
99F: hw/watchdog/wdt_diag288.c
100F: include/hw/s390x/
101F: include/hw/watchdog/wdt_diag288.h
102F: pc-bios/s390-ccw/
103F: pc-bios/s390-ccw.img
104F: target/s390x/
105F: docs/system/target-s390x.rst
106F: docs/system/s390x/
107F: tests/migration/s390x/
108K: ^Subject:.*(?i)s390x?
109L: qemu-s390x@nongnu.org
110
111MIPS general architecture support
112M: Philippe Mathieu-Daudé <philmd@linaro.org>
113R: Jiaxun Yang <jiaxun.yang@flygoat.com>
114S: Odd Fixes
115K: ^Subject:.*(?i)mips
116F: docs/system/target-mips.rst
117F: configs/targets/mips*
118
119Guest CPU cores (TCG)
120---------------------
121Overall TCG CPUs
122M: Richard Henderson <richard.henderson@linaro.org>
123R: Paolo Bonzini <pbonzini@redhat.com>
124S: Maintained
125F: softmmu/cpus.c
126F: cpus-common.c
127F: page-vary.c
128F: page-vary-common.c
129F: accel/tcg/
130F: accel/stubs/tcg-stub.c
131F: util/cacheinfo.c
132F: util/cacheflush.c
133F: scripts/decodetree.py
134F: docs/devel/decodetree.rst
135F: docs/devel/tcg*
136F: include/exec/cpu*.h
137F: include/exec/exec-all.h
138F: include/exec/helper*.h
139F: include/sysemu/cpus.h
140F: include/sysemu/tcg.h
141F: include/hw/core/tcg-cpu-ops.h
142
143FPU emulation
144M: Aurelien Jarno <aurelien@aurel32.net>
145M: Peter Maydell <peter.maydell@linaro.org>
146M: Alex Bennée <alex.bennee@linaro.org>
147S: Maintained
148F: fpu/
149F: include/fpu/
150F: tests/fp/
151
152Alpha TCG CPUs
153M: Richard Henderson <richard.henderson@linaro.org>
154S: Maintained
155F: target/alpha/
156F: tests/tcg/alpha/
157F: disas/alpha.c
158
159ARM TCG CPUs
160M: Peter Maydell <peter.maydell@linaro.org>
161L: qemu-arm@nongnu.org
162S: Maintained
163F: target/arm/
164F: tests/tcg/arm/
165F: tests/tcg/aarch64/
166F: tests/qtest/arm-cpu-features.c
167F: hw/arm/
168F: hw/cpu/a*mpcore.c
169F: include/hw/cpu/a*mpcore.h
170F: docs/system/target-arm.rst
171F: docs/system/arm/cpu-features.rst
172
173ARM SMMU
174M: Eric Auger <eric.auger@redhat.com>
175L: qemu-arm@nongnu.org
176S: Maintained
177F: hw/arm/smmu*
178F: include/hw/arm/smmu*
179F: tests/avocado/smmu.py
180
181AVR TCG CPUs
182M: Michael Rolnik <mrolnik@gmail.com>
183S: Maintained
184F: docs/system/target-avr.rst
185F: gdb-xml/avr-cpu.xml
186F: target/avr/
187F: tests/avocado/machine_avr6.py
188
189CRIS TCG CPUs
190M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
191S: Maintained
192F: target/cris/
193F: hw/cris/
194F: include/hw/cris/
195F: tests/tcg/cris/
196F: disas/cris.c
197
198Hexagon TCG CPUs
199M: Taylor Simpson <tsimpson@quicinc.com>
200S: Supported
201F: target/hexagon/
202X: target/hexagon/idef-parser/
203X: target/hexagon/gen_idef_parser_funcs.py
204F: linux-user/hexagon/
205F: tests/tcg/hexagon/
206F: disas/hexagon.c
207F: configs/targets/hexagon-linux-user/default.mak
208F: docker/dockerfiles/debian-hexagon-cross.docker
209
210Hexagon idef-parser
211M: Alessandro Di Federico <ale@rev.ng>
212M: Anton Johansson <anjo@rev.ng>
213S: Supported
214F: target/hexagon/idef-parser/
215F: target/hexagon/gen_idef_parser_funcs.py
216
217HPPA (PA-RISC) TCG CPUs
218M: Richard Henderson <richard.henderson@linaro.org>
219S: Maintained
220F: target/hppa/
221F: disas/hppa.c
222
223LoongArch TCG CPUs
224M: Song Gao <gaosong@loongson.cn>
225M: Xiaojuan Yang <yangxiaojuan@loongson.cn>
226S: Maintained
227F: target/loongarch/
228F: tests/tcg/loongarch64/
229
230M68K TCG CPUs
231M: Laurent Vivier <laurent@vivier.eu>
232S: Maintained
233F: target/m68k/
234F: disas/m68k.c
235
236MicroBlaze TCG CPUs
237M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
238S: Maintained
239F: target/microblaze/
240F: hw/microblaze/
241F: disas/microblaze.c
242F: tests/docker/dockerfiles/debian-microblaze-cross.d/build-toolchain.sh
243
244MIPS TCG CPUs
245M: Philippe Mathieu-Daudé <philmd@linaro.org>
246R: Aurelien Jarno <aurelien@aurel32.net>
247R: Jiaxun Yang <jiaxun.yang@flygoat.com>
248R: Aleksandar Rikalo <aleksandar.rikalo@syrmia.com>
249S: Odd Fixes
250F: target/mips/
251F: disas/*mips.c
252F: docs/system/cpu-models-mips.rst.inc
253F: tests/tcg/mips/
254
255NiosII TCG CPUs
256M: Chris Wulff <crwulff@gmail.com>
257M: Marek Vasut <marex@denx.de>
258S: Maintained
259F: target/nios2/
260F: hw/nios2/
261F: disas/nios2.c
262F: configs/devices/nios2-softmmu/default.mak
263F: tests/docker/dockerfiles/debian-nios2-cross.d/build-toolchain.sh
264F: tests/tcg/nios2/
265
266OpenRISC TCG CPUs
267M: Stafford Horne <shorne@gmail.com>
268S: Odd Fixes
269F: docs/system/openrisc/cpu-features.rst
270F: target/openrisc/
271F: hw/openrisc/
272F: tests/tcg/openrisc/
273
274PowerPC TCG CPUs
275M: Daniel Henrique Barboza <danielhb413@gmail.com>
276R: Cédric Le Goater <clg@kaod.org>
277R: David Gibson <david@gibson.dropbear.id.au>
278R: Greg Kurz <groug@kaod.org>
279L: qemu-ppc@nongnu.org
280S: Odd Fixes
281F: target/ppc/
282F: hw/ppc/ppc.c
283F: hw/ppc/ppc_booke.c
284F: include/hw/ppc/ppc.h
285
286RISC-V TCG CPUs
287M: Palmer Dabbelt <palmer@dabbelt.com>
288M: Alistair Francis <alistair.francis@wdc.com>
289M: Bin Meng <bin.meng@windriver.com>
290L: qemu-riscv@nongnu.org
291S: Supported
292F: target/riscv/
293F: hw/riscv/
294F: include/hw/riscv/
295F: linux-user/host/riscv32/
296F: linux-user/host/riscv64/
297
298RISC-V XThead* extensions
299M: Christoph Muellner <christoph.muellner@vrull.eu>
300M: LIU Zhiwei <zhiwei_liu@linux.alibaba.com>
301L: qemu-riscv@nongnu.org
302S: Supported
303F: target/riscv/insn_trans/trans_xthead.c.inc
304F: target/riscv/xthead*.decode
305
306RISC-V XVentanaCondOps extension
307M: Philipp Tomsich <philipp.tomsich@vrull.eu>
308L: qemu-riscv@nongnu.org
309S: Supported
310F: target/riscv/XVentanaCondOps.decode
311F: target/riscv/insn_trans/trans_xventanacondops.c.inc
312
313RENESAS RX CPUs
314R: Yoshinori Sato <ysato@users.sourceforge.jp>
315S: Orphan
316F: target/rx/
317
318S390 TCG CPUs
319M: Richard Henderson <richard.henderson@linaro.org>
320M: David Hildenbrand <david@redhat.com>
321R: Ilya Leoshkevich <iii@linux.ibm.com>
322S: Maintained
323F: target/s390x/
324F: target/s390x/tcg
325F: hw/s390x/
326F: tests/tcg/s390x/
327L: qemu-s390x@nongnu.org
328
329SH4 TCG CPUs
330R: Yoshinori Sato <ysato@users.sourceforge.jp>
331S: Orphan
332F: target/sh4/
333F: hw/sh4/
334F: disas/sh4.c
335F: include/hw/sh4/
336
337SPARC TCG CPUs
338M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
339M: Artyom Tarasenko <atar4qemu@gmail.com>
340S: Maintained
341F: target/sparc/
342F: hw/sparc/
343F: hw/sparc64/
344F: include/hw/sparc/sparc64.h
345F: disas/sparc.c
346
347X86 TCG CPUs
348M: Paolo Bonzini <pbonzini@redhat.com>
349M: Richard Henderson <richard.henderson@linaro.org>
350M: Eduardo Habkost <eduardo@habkost.net>
351S: Maintained
352F: target/i386/tcg/
353F: tests/tcg/i386/
354F: tests/tcg/x86_64/
355F: hw/i386/
356F: docs/system/i386/cpu.rst
357F: docs/system/cpu-models-x86*
358T: git https://gitlab.com/ehabkost/qemu.git x86-next
359
360Xtensa TCG CPUs
361M: Max Filippov <jcmvbkbc@gmail.com>
362W: http://wiki.osll.ru/doku.php?id=etc:users:jcmvbkbc:qemu-target-xtensa
363S: Maintained
364F: target/xtensa/
365F: hw/xtensa/
366F: tests/tcg/xtensa/
367F: disas/xtensa.c
368F: include/hw/xtensa/xtensa-isa.h
369F: configs/devices/xtensa*/default.mak
370
371TriCore TCG CPUs
372M: Bastian Koppelmann <kbastian@mail.uni-paderborn.de>
373S: Maintained
374F: target/tricore/
375F: hw/tricore/
376F: include/hw/tricore/
377F: tests/tcg/tricore/
378
379Multiarch Linux User Tests
380M: Alex Bennée <alex.bennee@linaro.org>
381S: Maintained
382F: tests/tcg/multiarch/
383
384Guest CPU Cores (KVM)
385---------------------
386Overall KVM CPUs
387M: Paolo Bonzini <pbonzini@redhat.com>
388L: kvm@vger.kernel.org
389S: Supported
390F: */*/kvm*
391F: accel/kvm/
392F: accel/stubs/kvm-stub.c
393F: include/hw/kvm/
394F: include/sysemu/kvm*.h
395F: scripts/kvm/kvm_flightrecorder
396
397ARM KVM CPUs
398M: Peter Maydell <peter.maydell@linaro.org>
399L: qemu-arm@nongnu.org
400S: Maintained
401F: target/arm/kvm.c
402
403MIPS KVM CPUs
404M: Huacai Chen <chenhuacai@kernel.org>
405S: Odd Fixes
406F: target/mips/kvm*
407F: target/mips/sysemu/
408
409PPC KVM CPUs
410M: Daniel Henrique Barboza <danielhb413@gmail.com>
411R: Cédric Le Goater <clg@kaod.org>
412R: David Gibson <david@gibson.dropbear.id.au>
413R: Greg Kurz <groug@kaod.org>
414S: Odd Fixes
415F: target/ppc/kvm.c
416
417S390 KVM CPUs
418M: Halil Pasic <pasic@linux.ibm.com>
419M: Christian Borntraeger <borntraeger@linux.ibm.com>
420S: Supported
421F: target/s390x/kvm/
422F: target/s390x/machine.c
423F: target/s390x/sigp.c
424F: hw/s390x/pv.c
425F: include/hw/s390x/pv.h
426F: gdb-xml/s390*.xml
427T: git https://github.com/borntraeger/qemu.git s390-next
428L: qemu-s390x@nongnu.org
429
430X86 KVM CPUs
431M: Paolo Bonzini <pbonzini@redhat.com>
432M: Marcelo Tosatti <mtosatti@redhat.com>
433L: kvm@vger.kernel.org
434S: Supported
435F: docs/system/i386/amd-memory-encryption.rst
436F: docs/system/i386/sgx.rst
437F: target/i386/kvm/
438F: target/i386/sev*
439F: scripts/kvm/vmxcap
440
441Guest CPU Cores (other accelerators)
442------------------------------------
443Overall
444M: Richard Henderson <richard.henderson@linaro.org>
445R: Paolo Bonzini <pbonzini@redhat.com>
446S: Maintained
447F: include/qemu/accel.h
448F: include/sysemu/accel-*.h
449F: include/hw/core/accel-cpu.h
450F: accel/accel-*.c
451F: accel/Makefile.objs
452F: accel/stubs/Makefile.objs
453
454Apple Silicon HVF CPUs
455M: Alexander Graf <agraf@csgraf.de>
456S: Maintained
457F: target/arm/hvf/
458
459X86 HVF CPUs
460M: Cameron Esfahani <dirty@apple.com>
461M: Roman Bolshakov <r.bolshakov@yadro.com>
462W: https://wiki.qemu.org/Features/HVF
463S: Maintained
464F: target/i386/hvf/
465
466HVF
467M: Cameron Esfahani <dirty@apple.com>
468M: Roman Bolshakov <r.bolshakov@yadro.com>
469W: https://wiki.qemu.org/Features/HVF
470S: Maintained
471F: accel/hvf/
472F: include/sysemu/hvf.h
473F: include/sysemu/hvf_int.h
474
475WHPX CPUs
476M: Sunil Muthuswamy <sunilmut@microsoft.com>
477S: Supported
478F: target/i386/whpx/
479F: include/sysemu/whpx.h
480
481Guest CPU Cores (Xen)
482---------------------
483X86 Xen CPUs
484M: Stefano Stabellini <sstabellini@kernel.org>
485M: Anthony Perard <anthony.perard@citrix.com>
486M: Paul Durrant <paul@xen.org>
487L: xen-devel@lists.xenproject.org
488S: Supported
489F: */xen*
490F: accel/xen/*
491F: hw/9pfs/xen-9p*
492F: hw/char/xen_console.c
493F: hw/display/xenfb.c
494F: hw/net/xen_nic.c
495F: hw/usb/xen-usb.c
496F: hw/block/xen*
497F: hw/block/dataplane/xen*
498F: hw/xen/
499F: hw/xenpv/
500F: hw/i386/xen/
501F: hw/pci-host/xen_igd_pt.c
502F: include/hw/block/dataplane/xen*
503F: include/hw/xen/
504F: include/sysemu/xen.h
505F: include/sysemu/xen-mapcache.h
506F: stubs/xen-hw-stub.c
507
508Guest CPU Cores (HAXM)
509---------------------
510X86 HAXM CPUs
511S: Orphan
512F: accel/stubs/hax-stub.c
513F: include/sysemu/hax.h
514F: target/i386/hax/
515
516Guest CPU Cores (NVMM)
517----------------------
518NetBSD Virtual Machine Monitor (NVMM) CPU support
519M: Reinoud Zandijk <reinoud@netbsd.org>
520S: Maintained
521F: include/sysemu/nvmm.h
522F: target/i386/nvmm/
523
524Hosts
525-----
526LINUX
527M: Michael S. Tsirkin <mst@redhat.com>
528M: Cornelia Huck <cohuck@redhat.com>
529M: Paolo Bonzini <pbonzini@redhat.com>
530S: Maintained
531F: linux-headers/
532F: scripts/update-linux-headers.sh
533
534POSIX
535M: Paolo Bonzini <pbonzini@redhat.com>
536S: Maintained
537F: os-posix.c
538F: include/sysemu/os-posix.h
539F: util/*posix*.c
540F: include/qemu/*posix*.h
541
542NETBSD
543M: Reinoud Zandijk <reinoud@netbsd.org>
544M: Ryo ONODERA <ryoon@netbsd.org>
545S: Maintained
546K: ^Subject:.*(?i)NetBSD
547
548OPENBSD
549M: Brad Smith <brad@comstyle.com>
550S: Maintained
551K: ^Subject:.*(?i)OpenBSD
552
553W32, W64
554M: Stefan Weil <sw@weilnetz.de>
555S: Maintained
556F: *win32*
557F: */*win32*
558F: include/*/*win32*
559X: qga/*win32*
560F: qemu.nsi
561F: scripts/nsis.py
562
563Darwin (macOS, iOS)
564M: Philippe Mathieu-Daudé <philmd@linaro.org>
565S: Odd Fixes
566F: .gitlab-ci.d/cirrus/macos-*
567F: */*.m
568F: scripts/entitlement.sh
569
570Alpha Machines
571--------------
572M: Richard Henderson <richard.henderson@linaro.org>
573S: Maintained
574F: hw/alpha/
575F: hw/isa/smc37c669-superio.c
576F: tests/tcg/alpha/system/
577
578ARM Machines
579------------
580Allwinner-a10
581M: Beniamino Galvani <b.galvani@gmail.com>
582M: Peter Maydell <peter.maydell@linaro.org>
583R: Strahinja Jankovic <strahinja.p.jankovic@gmail.com>
584L: qemu-arm@nongnu.org
585S: Odd Fixes
586F: hw/*/allwinner*
587F: include/hw/*/allwinner*
588F: hw/arm/cubieboard.c
589F: docs/system/arm/cubieboard.rst
590F: hw/misc/axp209.c
591
592Allwinner-h3
593M: Niek Linnenbank <nieklinnenbank@gmail.com>
594L: qemu-arm@nongnu.org
595S: Maintained
596F: hw/*/allwinner-h3*
597F: include/hw/*/allwinner-h3*
598F: hw/arm/orangepi.c
599F: docs/system/arm/orangepi.rst
600
601ARM PrimeCell and CMSDK devices
602M: Peter Maydell <peter.maydell@linaro.org>
603L: qemu-arm@nongnu.org
604S: Maintained
605F: hw/char/pl011.c
606F: include/hw/char/pl011.h
607F: hw/display/pl110*
608F: hw/dma/pl080.c
609F: include/hw/dma/pl080.h
610F: hw/dma/pl330.c
611F: hw/gpio/pl061.c
612F: hw/input/pl050.c
613F: hw/intc/pl190.c
614F: hw/sd/pl181.c
615F: hw/ssi/pl022.c
616F: include/hw/ssi/pl022.h
617F: hw/rtc/pl031.c
618F: include/hw/rtc/pl031.h
619F: include/hw/arm/primecell.h
620F: hw/timer/cmsdk-apb-timer.c
621F: include/hw/timer/cmsdk-apb-timer.h
622F: tests/qtest/cmsdk-apb-timer-test.c
623F: hw/timer/cmsdk-apb-dualtimer.c
624F: include/hw/timer/cmsdk-apb-dualtimer.h
625F: tests/qtest/cmsdk-apb-dualtimer-test.c
626F: hw/char/cmsdk-apb-uart.c
627F: include/hw/char/cmsdk-apb-uart.h
628F: hw/watchdog/cmsdk-apb-watchdog.c
629F: include/hw/watchdog/cmsdk-apb-watchdog.h
630F: tests/qtest/cmsdk-apb-watchdog-test.c
631F: hw/misc/tz-ppc.c
632F: include/hw/misc/tz-ppc.h
633F: hw/misc/tz-mpc.c
634F: include/hw/misc/tz-mpc.h
635F: hw/misc/tz-msc.c
636F: include/hw/misc/tz-msc.h
637
638ARM cores
639M: Peter Maydell <peter.maydell@linaro.org>
640L: qemu-arm@nongnu.org
641S: Maintained
642F: hw/intc/arm*
643F: hw/intc/gic_internal.h
644F: hw/misc/a9scu.c
645F: hw/misc/arm11scu.c
646F: hw/misc/arm_l2x0.c
647F: hw/misc/armv7m_ras.c
648F: hw/timer/a9gtimer*
649F: hw/timer/arm*
650F: include/hw/arm/arm*.h
651F: include/hw/intc/arm*
652F: include/hw/misc/a9scu.h
653F: include/hw/misc/arm11scu.h
654F: include/hw/timer/a9gtimer.h
655F: include/hw/timer/arm_mptimer.h
656F: include/hw/timer/armv7m_systick.h
657F: include/hw/misc/armv7m_ras.h
658F: tests/qtest/test-arm-mptimer.c
659
660Exynos
661M: Igor Mitsyanko <i.mitsyanko@gmail.com>
662M: Peter Maydell <peter.maydell@linaro.org>
663L: qemu-arm@nongnu.org
664S: Odd Fixes
665F: hw/*/exynos*
666F: include/hw/*/exynos*
667
668Calxeda Highbank
669M: Rob Herring <robh@kernel.org>
670M: Peter Maydell <peter.maydell@linaro.org>
671L: qemu-arm@nongnu.org
672S: Odd Fixes
673F: hw/arm/highbank.c
674F: hw/net/xgmac.c
675F: docs/system/arm/highbank.rst
676
677Canon DIGIC
678M: Antony Pavlov <antonynpavlov@gmail.com>
679M: Peter Maydell <peter.maydell@linaro.org>
680L: qemu-arm@nongnu.org
681S: Odd Fixes
682F: include/hw/arm/digic.h
683F: hw/*/digic*
684F: include/hw/*/digic*
685F: tests/avocado/machine_arm_canona1100.py
686F: docs/system/arm/digic.rst
687
688Goldfish RTC
689M: Anup Patel <anup.patel@wdc.com>
690M: Alistair Francis <Alistair.Francis@wdc.com>
691L: qemu-riscv@nongnu.org
692S: Maintained
693F: hw/rtc/goldfish_rtc.c
694F: include/hw/rtc/goldfish_rtc.h
695
696Gumstix
697M: Peter Maydell <peter.maydell@linaro.org>
698R: Philippe Mathieu-Daudé <philmd@linaro.org>
699L: qemu-arm@nongnu.org
700S: Odd Fixes
701F: hw/arm/gumstix.c
702F: docs/system/arm/gumstix.rst
703
704i.MX25 PDK
705M: Peter Maydell <peter.maydell@linaro.org>
706R: Jean-Christophe Dubois <jcd@tribudubois.net>
707L: qemu-arm@nongnu.org
708S: Odd Fixes
709F: hw/arm/fsl-imx25.c
710F: hw/arm/imx25_pdk.c
711F: hw/misc/imx25_ccm.c
712F: hw/watchdog/wdt_imx2.c
713F: include/hw/arm/fsl-imx25.h
714F: include/hw/misc/imx25_ccm.h
715F: include/hw/watchdog/wdt_imx2.h
716F: docs/system/arm/imx25-pdk.rst
717
718i.MX31 (kzm)
719M: Peter Maydell <peter.maydell@linaro.org>
720L: qemu-arm@nongnu.org
721S: Odd Fixes
722F: hw/arm/kzm.c
723F: hw/*/imx_*
724F: hw/*/*imx31*
725F: include/hw/*/imx_*
726F: include/hw/*/*imx31*
727F: docs/system/arm/kzm.rst
728
729Integrator CP
730M: Peter Maydell <peter.maydell@linaro.org>
731L: qemu-arm@nongnu.org
732S: Maintained
733F: hw/arm/integratorcp.c
734F: hw/misc/arm_integrator_debug.c
735F: include/hw/misc/arm_integrator_debug.h
736F: tests/avocado/machine_arm_integratorcp.py
737F: docs/system/arm/integratorcp.rst
738
739MCIMX6UL EVK / i.MX6ul
740M: Peter Maydell <peter.maydell@linaro.org>
741R: Jean-Christophe Dubois <jcd@tribudubois.net>
742L: qemu-arm@nongnu.org
743S: Odd Fixes
744F: hw/arm/mcimx6ul-evk.c
745F: hw/arm/fsl-imx6ul.c
746F: hw/misc/imx6ul_ccm.c
747F: include/hw/arm/fsl-imx6ul.h
748F: include/hw/misc/imx6ul_ccm.h
749
750MCIMX7D SABRE / i.MX7
751M: Peter Maydell <peter.maydell@linaro.org>
752R: Andrey Smirnov <andrew.smirnov@gmail.com>
753L: qemu-arm@nongnu.org
754S: Odd Fixes
755F: hw/arm/mcimx7d-sabre.c
756F: hw/arm/fsl-imx7.c
757F: hw/misc/imx7_*.c
758F: include/hw/arm/fsl-imx7.h
759F: include/hw/misc/imx7_*.h
760F: hw/pci-host/designware.c
761F: include/hw/pci-host/designware.h
762
763MPS2
764M: Peter Maydell <peter.maydell@linaro.org>
765L: qemu-arm@nongnu.org
766S: Maintained
767F: hw/arm/mps2.c
768F: hw/arm/mps2-tz.c
769F: hw/misc/mps2-*.c
770F: include/hw/misc/mps2-*.h
771F: hw/arm/armsse.c
772F: include/hw/arm/armsse.h
773F: hw/misc/iotkit-secctl.c
774F: include/hw/misc/iotkit-secctl.h
775F: hw/misc/iotkit-sysctl.c
776F: include/hw/misc/iotkit-sysctl.h
777F: hw/misc/iotkit-sysinfo.c
778F: include/hw/misc/iotkit-sysinfo.h
779F: hw/misc/armsse-cpu-pwrctrl.c
780F: include/hw/misc/armsse-cpu-pwrctrl.h
781F: hw/misc/armsse-cpuid.c
782F: include/hw/misc/armsse-cpuid.h
783F: hw/misc/armsse-mhu.c
784F: include/hw/misc/armsse-mhu.h
785F: hw/timer/sse-counter.c
786F: include/hw/timer/sse-counter.h
787F: hw/timer/sse-timer.c
788F: include/hw/timer/sse-timer.h
789F: tests/qtest/sse-timer-test.c
790F: docs/system/arm/mps2.rst
791
792Musca
793M: Peter Maydell <peter.maydell@linaro.org>
794L: qemu-arm@nongnu.org
795S: Maintained
796F: hw/arm/musca.c
797F: docs/system/arm/musca.rst
798
799Musicpal
800M: Jan Kiszka <jan.kiszka@web.de>
801M: Peter Maydell <peter.maydell@linaro.org>
802L: qemu-arm@nongnu.org
803S: Odd Fixes
804F: hw/arm/musicpal.c
805F: hw/net/mv88w8618_eth.c
806F: include/hw/net/mv88w8618_eth.h
807F: docs/system/arm/musicpal.rst
808
809Nuvoton NPCM7xx
810M: Tyrone Ting <kfting@nuvoton.com>
811M: Hao Wu <wuhaotsh@google.com>
812L: qemu-arm@nongnu.org
813S: Supported
814F: hw/*/npcm*
815F: include/hw/*/npcm*
816F: tests/qtest/npcm*
817F: pc-bios/npcm7xx_bootrom.bin
818F: roms/vbootrom
819F: docs/system/arm/nuvoton.rst
820
821nSeries
822M: Peter Maydell <peter.maydell@linaro.org>
823L: qemu-arm@nongnu.org
824S: Odd Fixes
825F: hw/arm/nseries.c
826F: hw/display/blizzard.c
827F: hw/input/lm832x.c
828F: hw/input/tsc2005.c
829F: hw/misc/cbus.c
830F: hw/rtc/twl92230.c
831F: include/hw/display/blizzard.h
832F: include/hw/input/lm832x.h
833F: include/hw/input/tsc2xxx.h
834F: include/hw/misc/cbus.h
835F: tests/avocado/machine_arm_n8x0.py
836F: docs/system/arm/nseries.rst
837
838Palm
839M: Peter Maydell <peter.maydell@linaro.org>
840L: qemu-arm@nongnu.org
841S: Odd Fixes
842F: hw/arm/palm.c
843F: hw/input/tsc210x.c
844F: include/hw/input/tsc2xxx.h
845F: docs/system/arm/palm.rst
846
847Raspberry Pi
848M: Peter Maydell <peter.maydell@linaro.org>
849R: Philippe Mathieu-Daudé <philmd@linaro.org>
850L: qemu-arm@nongnu.org
851S: Odd Fixes
852F: hw/arm/raspi.c
853F: hw/arm/raspi_platform.h
854F: hw/*/bcm283*
855F: include/hw/arm/raspi*
856F: include/hw/*/bcm283*
857F: docs/system/arm/raspi.rst
858
859Real View
860M: Peter Maydell <peter.maydell@linaro.org>
861L: qemu-arm@nongnu.org
862S: Maintained
863F: hw/arm/realview*
864F: hw/cpu/realview_mpcore.c
865F: hw/intc/realview_gic.c
866F: include/hw/intc/realview_gic.h
867F: docs/system/arm/realview.rst
868
869PXA2XX
870M: Peter Maydell <peter.maydell@linaro.org>
871L: qemu-arm@nongnu.org
872S: Odd Fixes
873F: hw/arm/mainstone.c
874F: hw/arm/spitz.c
875F: hw/arm/tosa.c
876F: hw/arm/z2.c
877F: hw/*/pxa2xx*
878F: hw/display/tc6393xb.c
879F: hw/gpio/max7310.c
880F: hw/gpio/zaurus.c
881F: hw/misc/mst_fpga.c
882F: hw/adc/max111x.c
883F: include/hw/adc/max111x.h
884F: include/hw/arm/pxa.h
885F: include/hw/arm/sharpsl.h
886F: include/hw/display/tc6393xb.h
887F: docs/system/arm/xscale.rst
888F: docs/system/arm/mainstone.rst
889
890SABRELITE / i.MX6
891M: Peter Maydell <peter.maydell@linaro.org>
892R: Jean-Christophe Dubois <jcd@tribudubois.net>
893L: qemu-arm@nongnu.org
894S: Odd Fixes
895F: docs/system/arm/sabrelite.rst
896F: hw/arm/sabrelite.c
897F: hw/arm/fsl-imx6.c
898F: hw/misc/imx6_*.c
899F: hw/ssi/imx_spi.c
900F: hw/usb/imx-usb-phy.c
901F: include/hw/usb/imx-usb-phy.h
902F: include/hw/arm/fsl-imx6.h
903F: include/hw/misc/imx6_*.h
904F: include/hw/ssi/imx_spi.h
905
906SBSA-REF
907M: Radoslaw Biernacki <rad@semihalf.com>
908M: Peter Maydell <peter.maydell@linaro.org>
909R: Leif Lindholm <quic_llindhol@quicinc.com>
910L: qemu-arm@nongnu.org
911S: Maintained
912F: hw/arm/sbsa-ref.c
913F: docs/system/arm/sbsa.rst
914
915Sharp SL-5500 (Collie) PDA
916M: Peter Maydell <peter.maydell@linaro.org>
917L: qemu-arm@nongnu.org
918S: Odd Fixes
919F: hw/arm/collie.c
920F: hw/arm/strongarm*
921F: docs/system/arm/collie.rst
922
923Stellaris
924M: Peter Maydell <peter.maydell@linaro.org>
925L: qemu-arm@nongnu.org
926S: Maintained
927F: hw/*/stellaris*
928F: include/hw/input/gamepad.h
929F: docs/system/arm/stellaris.rst
930
931STM32VLDISCOVERY
932M: Alexandre Iooss <erdnaxe@crans.org>
933L: qemu-arm@nongnu.org
934S: Maintained
935F: hw/arm/stm32vldiscovery.c
936F: docs/system/arm/stm32.rst
937
938Versatile Express
939M: Peter Maydell <peter.maydell@linaro.org>
940L: qemu-arm@nongnu.org
941S: Maintained
942F: hw/arm/vexpress.c
943F: docs/system/arm/vexpress.rst
944
945Versatile PB
946M: Peter Maydell <peter.maydell@linaro.org>
947L: qemu-arm@nongnu.org
948S: Maintained
949F: hw/*/versatile*
950F: hw/i2c/arm_sbcon_i2c.c
951F: include/hw/i2c/arm_sbcon_i2c.h
952F: hw/misc/arm_sysctl.c
953F: docs/system/arm/versatile.rst
954
955Virt
956M: Peter Maydell <peter.maydell@linaro.org>
957L: qemu-arm@nongnu.org
958S: Maintained
959F: hw/arm/virt*
960F: include/hw/arm/virt.h
961F: docs/system/arm/virt.rst
962F: tests/avocado/machine_aarch64_virt.py
963
964Xilinx Zynq
965M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
966M: Alistair Francis <alistair@alistair23.me>
967M: Peter Maydell <peter.maydell@linaro.org>
968L: qemu-arm@nongnu.org
969S: Maintained
970F: hw/*/xilinx_*
971F: hw/*/cadence_*
972F: hw/misc/zynq_slcr.c
973F: hw/adc/zynq-xadc.c
974F: include/hw/misc/zynq_slcr.h
975F: include/hw/adc/zynq-xadc.h
976X: hw/ssi/xilinx_*
977
978Xilinx ZynqMP and Versal
979M: Alistair Francis <alistair@alistair23.me>
980M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
981M: Peter Maydell <peter.maydell@linaro.org>
982L: qemu-arm@nongnu.org
983S: Maintained
984F: hw/*/xlnx*.c
985F: include/hw/*/xlnx*.h
986F: include/hw/ssi/xilinx_spips.h
987F: hw/display/dpcd.c
988F: include/hw/display/dpcd.h
989F: docs/system/arm/xlnx-versal-virt.rst
990
991Xilinx Versal OSPI
992M: Francisco Iglesias <francisco.iglesias@xilinx.com>
993S: Maintained
994F: hw/ssi/xlnx-versal-ospi.c
995F: include/hw/ssi/xlnx-versal-ospi.h
996
997ARM ACPI Subsystem
998M: Shannon Zhao <shannon.zhaosl@gmail.com>
999L: qemu-arm@nongnu.org
1000S: Maintained
1001F: hw/arm/virt-acpi-build.c
1002
1003STM32F100
1004M: Alexandre Iooss <erdnaxe@crans.org>
1005L: qemu-arm@nongnu.org
1006S: Maintained
1007F: hw/arm/stm32f100_soc.c
1008
1009STM32F205
1010M: Alistair Francis <alistair@alistair23.me>
1011M: Peter Maydell <peter.maydell@linaro.org>
1012L: qemu-arm@nongnu.org
1013S: Maintained
1014F: hw/arm/stm32f205_soc.c
1015F: hw/misc/stm32f2xx_syscfg.c
1016F: hw/char/stm32f2xx_usart.c
1017F: hw/timer/stm32f2xx_timer.c
1018F: hw/adc/*
1019F: hw/ssi/stm32f2xx_spi.c
1020F: include/hw/*/stm32*.h
1021
1022STM32F405
1023M: Alistair Francis <alistair@alistair23.me>
1024M: Peter Maydell <peter.maydell@linaro.org>
1025L: qemu-arm@nongnu.org
1026S: Maintained
1027F: hw/arm/stm32f405_soc.c
1028F: hw/misc/stm32f4xx_syscfg.c
1029F: hw/misc/stm32f4xx_exti.c
1030
1031Netduino 2
1032M: Alistair Francis <alistair@alistair23.me>
1033M: Peter Maydell <peter.maydell@linaro.org>
1034L: qemu-arm@nongnu.org
1035S: Maintained
1036F: hw/arm/netduino2.c
1037
1038Netduino Plus 2
1039M: Alistair Francis <alistair@alistair23.me>
1040M: Peter Maydell <peter.maydell@linaro.org>
1041L: qemu-arm@nongnu.org
1042S: Maintained
1043F: hw/arm/netduinoplus2.c
1044
1045Olimex STM32 H405
1046M: Felipe Balbi <balbi@kernel.org>
1047L: qemu-arm@nongnu.org
1048S: Maintained
1049F: hw/arm/olimex-stm32-h405.c
1050
1051SmartFusion2
1052M: Subbaraya Sundeep <sundeep.lkml@gmail.com>
1053M: Peter Maydell <peter.maydell@linaro.org>
1054L: qemu-arm@nongnu.org
1055S: Maintained
1056F: hw/arm/msf2-soc.c
1057F: hw/misc/msf2-sysreg.c
1058F: hw/timer/mss-timer.c
1059F: hw/ssi/mss-spi.c
1060F: include/hw/arm/msf2-soc.h
1061F: include/hw/misc/msf2-sysreg.h
1062F: include/hw/timer/mss-timer.h
1063F: include/hw/ssi/mss-spi.h
1064F: hw/net/msf2-emac.c
1065F: include/hw/net/msf2-emac.h
1066
1067Emcraft M2S-FG484
1068M: Subbaraya Sundeep <sundeep.lkml@gmail.com>
1069M: Peter Maydell <peter.maydell@linaro.org>
1070L: qemu-arm@nongnu.org
1071S: Maintained
1072F: hw/arm/msf2-som.c
1073F: docs/system/arm/emcraft-sf2.rst
1074
1075ASPEED BMCs
1076M: Cédric Le Goater <clg@kaod.org>
1077M: Peter Maydell <peter.maydell@linaro.org>
1078R: Andrew Jeffery <andrew@aj.id.au>
1079R: Joel Stanley <joel@jms.id.au>
1080L: qemu-arm@nongnu.org
1081S: Maintained
1082F: hw/*/*aspeed*
1083F: hw/misc/pca9552.c
1084F: include/hw/*/*aspeed*
1085F: include/hw/misc/pca9552*.h
1086F: hw/net/ftgmac100.c
1087F: include/hw/net/ftgmac100.h
1088F: docs/system/arm/aspeed.rst
1089F: tests/qtest/*aspeed*
1090F: hw/arm/fby35.c
1091
1092NRF51
1093M: Joel Stanley <joel@jms.id.au>
1094M: Peter Maydell <peter.maydell@linaro.org>
1095L: qemu-arm@nongnu.org
1096S: Maintained
1097F: hw/*/nrf51*.c
1098F: hw/*/microbit*.c
1099F: include/hw/*/nrf51*.h
1100F: include/hw/*/microbit*.h
1101F: tests/qtest/microbit-test.c
1102F: docs/system/arm/nrf.rst
1103
1104AVR Machines
1105-------------
1106
1107AVR MCUs
1108M: Michael Rolnik <mrolnik@gmail.com>
1109S: Maintained
1110F: configs/devices/avr-softmmu/default.mak
1111F: hw/avr/
1112F: include/hw/char/avr_usart.h
1113F: hw/char/avr_usart.c
1114F: include/hw/timer/avr_timer16.h
1115F: hw/timer/avr_timer16.c
1116F: include/hw/misc/avr_power.h
1117F: hw/misc/avr_power.c
1118
1119Arduino
1120M: Philippe Mathieu-Daudé <philmd@linaro.org>
1121S: Maintained
1122F: hw/avr/arduino.c
1123
1124CRIS Machines
1125-------------
1126Axis Dev88
1127M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
1128S: Maintained
1129F: hw/cris/axis_dev88.c
1130F: hw/*/etraxfs_*.c
1131
1132HP-PARISC Machines
1133------------------
1134HP B160L
1135M: Richard Henderson <richard.henderson@linaro.org>
1136R: Helge Deller <deller@gmx.de>
1137S: Odd Fixes
1138F: configs/devices/hppa-softmmu/default.mak
1139F: hw/hppa/
1140F: hw/net/*i82596*
1141F: hw/misc/lasi.c
1142F: hw/pci-host/dino.c
1143F: include/hw/misc/lasi.h
1144F: include/hw/net/lasi_82596.h
1145F: include/hw/pci-host/dino.h
1146F: pc-bios/hppa-firmware.img
1147
1148LoongArch Machines
1149------------------
1150Virt
1151M: Xiaojuan Yang <yangxiaojuan@loongson.cn>
1152M: Song Gao <gaosong@loongson.cn>
1153S: Maintained
1154F: docs/system/loongarch/virt.rst
1155F: configs/targets/loongarch64-softmmu.mak
1156F: configs/devices/loongarch64-softmmu/default.mak
1157F: hw/loongarch/
1158F: include/hw/loongarch/virt.h
1159F: include/hw/intc/loongarch_*.h
1160F: hw/intc/loongarch_*.c
1161F: include/hw/pci-host/ls7a.h
1162F: hw/rtc/ls7a_rtc.c
1163F: gdb-xml/loongarch*.xml
1164
1165M68K Machines
1166-------------
1167an5206
1168M: Thomas Huth <huth@tuxfamily.org>
1169S: Odd Fixes
1170F: hw/m68k/an5206.c
1171F: hw/m68k/mcf5206.c
1172
1173mcf5208
1174M: Thomas Huth <huth@tuxfamily.org>
1175S: Odd Fixes
1176F: hw/m68k/mcf5208.c
1177F: hw/m68k/mcf_intc.c
1178F: hw/char/mcf_uart.c
1179F: hw/net/mcf_fec.c
1180F: include/hw/m68k/mcf*.h
1181
1182NeXTcube
1183M: Thomas Huth <huth@tuxfamily.org>
1184S: Odd Fixes
1185F: hw/m68k/next-*.c
1186F: hw/display/next-fb.c
1187F: include/hw/m68k/next-cube.h
1188
1189q800
1190M: Laurent Vivier <laurent@vivier.eu>
1191S: Maintained
1192F: hw/m68k/q800.c
1193F: hw/misc/mac_via.c
1194F: hw/nubus/*
1195F: hw/display/macfb.c
1196F: hw/block/swim.c
1197F: hw/m68k/bootinfo.h
1198F: include/standard-headers/asm-m68k/bootinfo.h
1199F: include/standard-headers/asm-m68k/bootinfo-mac.h
1200F: include/hw/misc/mac_via.h
1201F: include/hw/nubus/*
1202F: include/hw/display/macfb.h
1203F: include/hw/block/swim.h
1204
1205virt
1206M: Laurent Vivier <laurent@vivier.eu>
1207S: Maintained
1208F: hw/m68k/virt.c
1209F: hw/char/goldfish_tty.c
1210F: hw/intc/goldfish_pic.c
1211F: hw/intc/m68k_irqc.c
1212F: hw/misc/virt_ctrl.c
1213F: include/hw/char/goldfish_tty.h
1214F: include/hw/intc/goldfish_pic.h
1215F: include/hw/intc/m68k_irqc.h
1216F: include/hw/misc/virt_ctrl.h
1217
1218MicroBlaze Machines
1219-------------------
1220petalogix_s3adsp1800
1221M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
1222S: Maintained
1223F: hw/microblaze/petalogix_s3adsp1800_mmu.c
1224F: include/hw/char/xilinx_uartlite.h
1225F: tests/avocado/machine_microblaze.py
1226
1227petalogix_ml605
1228M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
1229S: Maintained
1230F: hw/microblaze/petalogix_ml605_mmu.c
1231
1232MIPS Machines
1233-------------
1234Overall MIPS Machines
1235M: Philippe Mathieu-Daudé <philmd@linaro.org>
1236S: Odd Fixes
1237F: configs/devices/mips*/*
1238F: hw/mips/
1239F: include/hw/mips/
1240
1241Jazz
1242M: Hervé Poussineau <hpoussin@reactos.org>
1243R: Aleksandar Rikalo <aleksandar.rikalo@syrmia.com>
1244S: Maintained
1245F: hw/mips/jazz.c
1246F: hw/display/jazz_led.c
1247F: hw/dma/rc4030.c
1248
1249Malta
1250M: Philippe Mathieu-Daudé <philmd@linaro.org>
1251R: Aurelien Jarno <aurelien@aurel32.net>
1252S: Odd Fixes
1253F: hw/isa/piix4.c
1254F: hw/acpi/piix4.c
1255F: hw/mips/malta.c
1256F: hw/pci-host/gt64120.c
1257F: include/hw/southbridge/piix.h
1258F: tests/avocado/linux_ssh_mips_malta.py
1259F: tests/avocado/machine_mips_malta.py
1260
1261Mipssim
1262R: Aleksandar Rikalo <aleksandar.rikalo@syrmia.com>
1263S: Orphan
1264F: hw/mips/mipssim.c
1265F: hw/net/mipsnet.c
1266
1267Fuloong 2E
1268M: Huacai Chen <chenhuacai@kernel.org>
1269M: Philippe Mathieu-Daudé <philmd@linaro.org>
1270R: Jiaxun Yang <jiaxun.yang@flygoat.com>
1271S: Odd Fixes
1272F: hw/mips/fuloong2e.c
1273F: hw/isa/vt82c686.c
1274F: hw/pci-host/bonito.c
1275F: hw/usb/vt82c686-uhci-pci.c
1276F: include/hw/isa/vt82c686.h
1277F: include/hw/pci-host/bonito.h
1278F: tests/avocado/machine_mips_fuloong2e.py
1279
1280Loongson-3 virtual platforms
1281M: Huacai Chen <chenhuacai@kernel.org>
1282R: Jiaxun Yang <jiaxun.yang@flygoat.com>
1283S: Maintained
1284F: hw/intc/loongson_liointc.c
1285F: hw/mips/loongson3_bootp.c
1286F: hw/mips/loongson3_bootp.h
1287F: hw/mips/loongson3_virt.c
1288F: tests/avocado/machine_mips_loongson3v.py
1289
1290Boston
1291M: Paul Burton <paulburton@kernel.org>
1292R: Aleksandar Rikalo <aleksandar.rikalo@syrmia.com>
1293S: Odd Fixes
1294F: hw/core/loader-fit.c
1295F: hw/mips/boston.c
1296F: hw/pci-host/xilinx-pcie.c
1297F: include/hw/pci-host/xilinx-pcie.h
1298
1299OpenRISC Machines
1300-----------------
1301or1k-sim
1302M: Jia Liu <proljc@gmail.com>
1303S: Maintained
1304F: docs/system/openrisc/or1k-sim.rst
1305F: hw/openrisc/openrisc_sim.c
1306
1307PowerPC Machines
1308----------------
1309405 (ref405ep)
1310L: qemu-ppc@nongnu.org
1311S: Orphan
1312F: hw/ppc/ppc405_boards.c
1313
1314Bamboo
1315L: qemu-ppc@nongnu.org
1316S: Orphan
1317F: hw/ppc/ppc440_bamboo.c
1318F: tests/avocado/ppc_bamboo.py
1319
1320e500
1321L: qemu-ppc@nongnu.org
1322S: Orphan
1323F: hw/ppc/e500*
1324F: hw/gpio/mpc8xxx.c
1325F: hw/i2c/mpc_i2c.c
1326F: hw/net/fsl_etsec/
1327F: hw/pci-host/ppce500.c
1328F: include/hw/ppc/ppc_e500.h
1329F: include/hw/pci-host/ppce500.h
1330F: pc-bios/u-boot.e500
1331F: hw/intc/openpic_kvm.h
1332F: include/hw/ppc/openpic_kvm.h
1333
1334mpc8544ds
1335L: qemu-ppc@nongnu.org
1336S: Orphan
1337F: hw/ppc/mpc8544ds.c
1338F: hw/ppc/mpc8544_guts.c
1339F: tests/avocado/ppc_mpc8544ds.py
1340
1341New World (mac99)
1342M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
1343L: qemu-ppc@nongnu.org
1344S: Odd Fixes
1345F: docs/system/ppc/powermac.rst
1346F: hw/ppc/mac_newworld.c
1347F: hw/pci-host/uninorth.c
1348F: hw/pci-bridge/dec.[hc]
1349F: hw/misc/macio/
1350F: hw/misc/mos6522.c
1351F: hw/nvram/mac_nvram.c
1352F: hw/input/adb*
1353F: include/hw/misc/macio/
1354F: include/hw/misc/mos6522.h
1355F: include/hw/nvram/mac_nvram.h
1356F: include/hw/ppc/mac_dbdma.h
1357F: include/hw/pci-host/uninorth.h
1358F: include/hw/input/adb*
1359F: pc-bios/qemu_vga.ndrv
1360
1361Old World (g3beige)
1362M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
1363L: qemu-ppc@nongnu.org
1364S: Odd Fixes
1365F: docs/system/ppc/powermac.rst
1366F: hw/ppc/mac_oldworld.c
1367F: hw/pci-host/grackle.c
1368F: hw/misc/macio/
1369F: hw/intc/heathrow_pic.c
1370F: hw/input/adb*
1371F: include/hw/intc/heathrow_pic.h
1372F: include/hw/input/adb*
1373F: include/hw/pci-host/grackle.h
1374F: pc-bios/qemu_vga.ndrv
1375
1376PReP
1377M: Hervé Poussineau <hpoussin@reactos.org>
1378L: qemu-ppc@nongnu.org
1379S: Maintained
1380F: docs/system/ppc/prep.rst
1381F: hw/ppc/prep.c
1382F: hw/ppc/prep_systemio.c
1383F: hw/ppc/rs6000_mc.c
1384F: hw/pci-host/raven.c
1385F: hw/isa/i82378.c
1386F: hw/isa/pc87312.c
1387F: hw/dma/i82374.c
1388F: hw/rtc/m48t59-isa.c
1389F: include/hw/isa/pc87312.h
1390F: include/hw/rtc/m48t59.h
1391F: tests/avocado/ppc_prep_40p.py
1392
1393sPAPR (pseries)
1394M: Daniel Henrique Barboza <danielhb413@gmail.com>
1395R: Cédric Le Goater <clg@kaod.org>
1396R: David Gibson <david@gibson.dropbear.id.au>
1397R: Greg Kurz <groug@kaod.org>
1398L: qemu-ppc@nongnu.org
1399S: Odd Fixes
1400F: hw/*/spapr*
1401F: include/hw/*/spapr*
1402F: hw/*/xics*
1403F: include/hw/*/xics*
1404F: pc-bios/slof.bin
1405F: docs/system/ppc/pseries.rst
1406F: docs/specs/ppc-spapr-*
1407F: tests/qtest/spapr*
1408F: tests/qtest/libqos/*spapr*
1409F: tests/qtest/rtas*
1410F: tests/qtest/libqos/rtas*
1411F: tests/avocado/ppc_pseries.py
1412
1413PowerNV (Non-Virtualized)
1414M: Cédric Le Goater <clg@kaod.org>
1415L: qemu-ppc@nongnu.org
1416S: Odd Fixes
1417F: docs/system/ppc/powernv.rst
1418F: hw/ppc/pnv*
1419F: hw/intc/pnv*
1420F: hw/intc/xics_pnv.c
1421F: hw/pci-host/pnv*
1422F: include/hw/ppc/pnv*
1423F: include/hw/pci-host/pnv*
1424F: pc-bios/skiboot.lid
1425F: tests/qtest/pnv*
1426
1427virtex_ml507
1428M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
1429L: qemu-ppc@nongnu.org
1430S: Odd Fixes
1431F: hw/ppc/virtex_ml507.c
1432F: tests/avocado/ppc_virtex_ml507.py
1433
1434sam460ex
1435M: BALATON Zoltan <balaton@eik.bme.hu>
1436L: qemu-ppc@nongnu.org
1437S: Maintained
1438F: hw/ppc/sam460ex.c
1439F: hw/ppc/ppc440_pcix.c
1440F: hw/display/sm501*
1441F: hw/ide/sii3112.c
1442F: hw/rtc/m41t80.c
1443F: pc-bios/canyonlands.dt[sb]
1444F: pc-bios/u-boot-sam460ex-20100605.bin
1445F: roms/u-boot-sam460ex
1446
1447pegasos2
1448M: BALATON Zoltan <balaton@eik.bme.hu>
1449L: qemu-ppc@nongnu.org
1450S: Maintained
1451F: hw/ppc/pegasos2.c
1452F: hw/pci-host/mv64361.c
1453F: hw/pci-host/mv643xx.h
1454F: include/hw/pci-host/mv64361.h
1455
1456Virtual Open Firmware (VOF)
1457M: Alexey Kardashevskiy <aik@ozlabs.ru>
1458R: Cédric Le Goater <clg@kaod.org>
1459R: Daniel Henrique Barboza <danielhb413@gmail.com>
1460R: David Gibson <david@gibson.dropbear.id.au>
1461R: Greg Kurz <groug@kaod.org>
1462L: qemu-ppc@nongnu.org
1463S: Maintained
1464F: hw/ppc/spapr_vof*
1465F: hw/ppc/vof*
1466F: include/hw/ppc/vof*
1467F: pc-bios/vof/*
1468F: pc-bios/vof*
1469
1470RISC-V Machines
1471---------------
1472OpenTitan
1473M: Alistair Francis <Alistair.Francis@wdc.com>
1474L: qemu-riscv@nongnu.org
1475S: Supported
1476F: hw/riscv/opentitan.c
1477F: hw/*/ibex_*.c
1478F: include/hw/riscv/opentitan.h
1479F: include/hw/*/ibex_*.h
1480
1481Microchip PolarFire SoC Icicle Kit
1482M: Bin Meng <bin.meng@windriver.com>
1483L: qemu-riscv@nongnu.org
1484S: Supported
1485F: hw/riscv/microchip_pfsoc.c
1486F: hw/char/mchp_pfsoc_mmuart.c
1487F: hw/misc/mchp_pfsoc_dmc.c
1488F: hw/misc/mchp_pfsoc_ioscb.c
1489F: hw/misc/mchp_pfsoc_sysreg.c
1490F: include/hw/riscv/microchip_pfsoc.h
1491F: include/hw/char/mchp_pfsoc_mmuart.h
1492F: include/hw/misc/mchp_pfsoc_dmc.h
1493F: include/hw/misc/mchp_pfsoc_ioscb.h
1494F: include/hw/misc/mchp_pfsoc_sysreg.h
1495
1496Shakti C class SoC
1497M: Vijai Kumar K <vijai@behindbytes.com>
1498L: qemu-riscv@nongnu.org
1499S: Supported
1500F: hw/riscv/shakti_c.c
1501F: hw/char/shakti_uart.c
1502F: include/hw/riscv/shakti_c.h
1503F: include/hw/char/shakti_uart.h
1504
1505SiFive Machines
1506M: Alistair Francis <Alistair.Francis@wdc.com>
1507M: Bin Meng <bin.meng@windriver.com>
1508M: Palmer Dabbelt <palmer@dabbelt.com>
1509L: qemu-riscv@nongnu.org
1510S: Supported
1511F: hw/*/*sifive*.c
1512F: include/hw/*/*sifive*.h
1513
1514RX Machines
1515-----------
1516rx-gdbsim
1517R: Yoshinori Sato <ysato@users.sourceforge.jp>
1518S: Orphan
1519F: docs/system/target-rx.rst
1520F: hw/rx/rx-gdbsim.c
1521F: tests/avocado/machine_rx_gdbsim.py
1522
1523SH4 Machines
1524------------
1525R2D
1526R: Yoshinori Sato <ysato@users.sourceforge.jp>
1527R: Magnus Damm <magnus.damm@gmail.com>
1528S: Odd Fixes
1529F: hw/char/sh_serial.c
1530F: hw/sh4/r2d.c
1531F: hw/intc/sh_intc.c
1532F: hw/pci-host/sh_pci.c
1533F: hw/timer/sh_timer.c
1534F: include/hw/sh4/sh_intc.h
1535
1536Shix
1537R: Yoshinori Sato <ysato@users.sourceforge.jp>
1538R: Magnus Damm <magnus.damm@gmail.com>
1539S: Odd Fixes
1540F: hw/block/tc58128.c
1541F: hw/char/sh_serial.c
1542F: hw/sh4/shix.c
1543F: hw/intc/sh_intc.c
1544F: hw/timer/sh_timer.c
1545F: include/hw/sh4/sh_intc.h
1546
1547SPARC Machines
1548--------------
1549Sun4m
1550M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
1551S: Maintained
1552F: hw/sparc/sun4m.c
1553F: hw/sparc/sun4m_iommu.c
1554F: hw/display/cg3.c
1555F: hw/display/tcx.c
1556F: hw/dma/sparc32_dma.c
1557F: hw/misc/eccmemctl.c
1558F: hw/*/slavio_*.c
1559F: include/hw/nvram/sun_nvram.h
1560F: include/hw/sparc/sparc32_dma.h
1561F: include/hw/sparc/sun4m_iommu.h
1562F: pc-bios/openbios-sparc32
1563
1564Sun4u
1565M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
1566S: Maintained
1567F: hw/sparc64/sun4u.c
1568F: hw/sparc64/sun4u_iommu.c
1569F: include/hw/sparc/sun4u_iommu.h
1570F: hw/pci-host/sabre.c
1571F: include/hw/pci-host/sabre.h
1572F: hw/pci-bridge/simba.c
1573F: include/hw/pci-bridge/simba.h
1574F: pc-bios/openbios-sparc64
1575F: tests/avocado/machine_sparc64_sun4u.py
1576
1577Sun4v
1578M: Artyom Tarasenko <atar4qemu@gmail.com>
1579S: Maintained
1580F: hw/sparc64/niagara.c
1581F: hw/rtc/sun4v-rtc.c
1582F: include/hw/rtc/sun4v-rtc.h
1583
1584Leon3
1585M: Fabien Chouteau <chouteau@adacore.com>
1586M: Frederic Konrad <konrad.frederic@yahoo.fr>
1587S: Maintained
1588F: hw/sparc/leon3.c
1589F: hw/*/grlib*
1590F: include/hw/*/grlib*
1591F: tests/avocado/machine_sparc_leon3.py
1592
1593S390 Machines
1594-------------
1595S390 Virtio-ccw
1596M: Halil Pasic <pasic@linux.ibm.com>
1597M: Christian Borntraeger <borntraeger@linux.ibm.com>
1598M: Eric Farman <farman@linux.ibm.com>
1599S: Supported
1600F: hw/s390x/
1601F: include/hw/s390x/
1602F: configs/devices/s390x-softmmu/default.mak
1603F: tests/avocado/machine_s390_ccw_virtio.py
1604T: git https://github.com/borntraeger/qemu.git s390-next
1605L: qemu-s390x@nongnu.org
1606
1607S390-ccw boot
1608M: Christian Borntraeger <borntraeger@linux.ibm.com>
1609M: Thomas Huth <thuth@redhat.com>
1610S: Supported
1611F: hw/s390x/ipl.*
1612F: pc-bios/s390-ccw/
1613F: pc-bios/s390-ccw.img
1614F: docs/devel/s390-dasd-ipl.rst
1615T: git https://github.com/borntraeger/qemu.git s390-next
1616L: qemu-s390x@nongnu.org
1617
1618S390 PCI
1619M: Matthew Rosato <mjrosato@linux.ibm.com>
1620M: Eric Farman <farman@linux.ibm.com>
1621S: Supported
1622F: hw/s390x/s390-pci*
1623F: include/hw/s390x/s390-pci*
1624L: qemu-s390x@nongnu.org
1625
1626S390 channel subsystem
1627M: Halil Pasic <pasic@linux.ibm.com>
1628M: Christian Borntraeger <borntraeger@linux.ibm.com>
1629M: Eric Farman <farman@linux.ibm.com>
1630S: Supported
1631F: hw/s390x/ccw-device.[ch]
1632F: hw/s390x/css.c
1633F: hw/s390x/css-bridge.c
1634F: include/hw/s390x/css.h
1635F: include/hw/s390x/css-bridge.h
1636F: include/hw/s390x/ioinst.h
1637F: target/s390x/ioinst.c
1638L: qemu-s390x@nongnu.org
1639
1640S390 CPU models
1641M: David Hildenbrand <david@redhat.com>
1642S: Maintained
1643F: target/s390x/cpu_features*.[ch]
1644F: target/s390x/cpu_models.[ch]
1645L: qemu-s390x@nongnu.org
1646
1647S390 SCLP-backed devices
1648M: Halil Pasic <pasic@linux.ibm.com>
1649M: Christian Borntraeger <borntraeger@linux.ibm.com>
1650S: Supported
1651F: include/hw/s390x/event-facility.h
1652F: include/hw/s390x/sclp.h
1653F: hw/char/sclp*.[hc]
1654F: hw/s390x/event-facility.c
1655F: hw/s390x/sclp*.c
1656L: qemu-s390x@nongnu.org
1657
1658X86 Machines
1659------------
1660PC
1661M: Michael S. Tsirkin <mst@redhat.com>
1662M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
1663S: Supported
1664F: include/hw/i386/
1665F: hw/i386/
1666F: hw/pci-host/i440fx.c
1667F: hw/pci-host/q35.c
1668F: hw/pci-host/pam.c
1669F: include/hw/pci-host/i440fx.h
1670F: include/hw/pci-host/q35.h
1671F: include/hw/pci-host/pam.h
1672F: hw/isa/piix3.c
1673F: hw/isa/lpc_ich9.c
1674F: hw/i2c/smbus_ich9.c
1675F: hw/acpi/piix4.c
1676F: hw/acpi/ich9*.c
1677F: include/hw/acpi/ich9*.h
1678F: include/hw/southbridge/piix.h
1679F: hw/isa/apm.c
1680F: include/hw/isa/apm.h
1681F: tests/unit/test-x86-cpuid.c
1682F: tests/qtest/test-x86-cpuid-compat.c
1683
1684PC Chipset
1685M: Michael S. Tsirkin <mst@redhat.com>
1686M: Paolo Bonzini <pbonzini@redhat.com>
1687S: Supported
1688F: hw/char/debugcon.c
1689F: hw/char/parallel*
1690F: hw/char/serial*
1691F: hw/dma/i8257*
1692F: hw/i2c/pm_smbus.c
1693F: hw/input/pckbd.c
1694F: hw/intc/apic*
1695F: hw/intc/ioapic*
1696F: hw/intc/i8259*
1697F: hw/isa/isa-superio.c
1698F: hw/misc/debugexit.c
1699F: hw/misc/pc-testdev.c
1700F: hw/timer/hpet*
1701F: hw/timer/i8254*
1702F: hw/rtc/mc146818rtc*
1703F: hw/watchdog/wdt_ib700.c
1704F: hw/watchdog/wdt_i6300esb.c
1705F: include/hw/display/vga.h
1706F: include/hw/char/parallel.h
1707F: include/hw/dma/i8257.h
1708F: include/hw/i2c/pm_smbus.h
1709F: include/hw/input/i8042.h
1710F: include/hw/isa/i8259_internal.h
1711F: include/hw/isa/superio.h
1712F: include/hw/timer/hpet.h
1713F: include/hw/timer/i8254*
1714F: include/hw/rtc/mc146818rtc*
1715
1716microvm
1717M: Sergio Lopez <slp@redhat.com>
1718M: Paolo Bonzini <pbonzini@redhat.com>
1719S: Maintained
1720F: docs/system/i386/microvm.rst
1721F: hw/i386/microvm.c
1722F: include/hw/i386/microvm.h
1723F: pc-bios/bios-microvm.bin
1724
1725Machine core
1726M: Eduardo Habkost <eduardo@habkost.net>
1727M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
1728R: Philippe Mathieu-Daudé <philmd@linaro.org>
1729R: Yanan Wang <wangyanan55@huawei.com>
1730S: Supported
1731F: cpu.c
1732F: hw/core/cpu.c
1733F: hw/core/machine-qmp-cmds.c
1734F: hw/core/machine.c
1735F: hw/core/machine-smp.c
1736F: hw/core/null-machine.c
1737F: hw/core/numa.c
1738F: hw/cpu/cluster.c
1739F: qapi/machine.json
1740F: qapi/machine-target.json
1741F: include/hw/boards.h
1742F: include/hw/core/cpu.h
1743F: include/hw/cpu/cluster.h
1744F: include/sysemu/numa.h
1745F: tests/unit/test-smp-parse.c
1746T: git https://gitlab.com/ehabkost/qemu.git machine-next
1747
1748Xtensa Machines
1749---------------
1750sim
1751M: Max Filippov <jcmvbkbc@gmail.com>
1752S: Maintained
1753F: hw/xtensa/sim.c
1754
1755virt
1756M: Max Filippov <jcmvbkbc@gmail.com>
1757S: Maintained
1758F: hw/xtensa/virt.c
1759
1760XTFPGA (LX60, LX200, ML605, KC705)
1761M: Max Filippov <jcmvbkbc@gmail.com>
1762S: Maintained
1763F: hw/xtensa/xtfpga.c
1764F: hw/net/opencores_eth.c
1765
1766Devices
1767-------
1768Overall Audio frontends
1769M: Gerd Hoffmann <kraxel@redhat.com>
1770S: Odd Fixes
1771F: hw/audio/
1772F: include/hw/audio/
1773F: tests/qtest/ac97-test.c
1774F: tests/qtest/es1370-test.c
1775F: tests/qtest/intel-hda-test.c
1776F: tests/qtest/fuzz-sb16-test.c
1777
1778Xilinx CAN
1779M: Vikram Garhwal <vikram.garhwal@amd.com>
1780M: Francisco Iglesias <francisco.iglesias@amd.com>
1781S: Maintained
1782F: hw/net/can/xlnx-*
1783F: include/hw/net/xlnx-*
1784F: tests/qtest/xlnx-can-test*
1785
1786EDU
1787M: Jiri Slaby <jslaby@suse.cz>
1788S: Maintained
1789F: hw/misc/edu.c
1790
1791IDE
1792M: John Snow <jsnow@redhat.com>
1793L: qemu-block@nongnu.org
1794S: Supported
1795F: include/hw/ide.h
1796F: include/hw/ide/
1797F: hw/ide/
1798F: hw/block/block.c
1799F: hw/block/cdrom.c
1800F: hw/block/hd-geometry.c
1801F: tests/qtest/ide-test.c
1802F: tests/qtest/ahci-test.c
1803F: tests/qtest/cdrom-test.c
1804F: tests/qtest/libqos/ahci*
1805T: git https://gitlab.com/jsnow/qemu.git ide
1806
1807IPMI
1808M: Corey Minyard <minyard@acm.org>
1809S: Maintained
1810F: include/hw/ipmi/*
1811F: hw/ipmi/*
1812F: hw/smbios/smbios_type_38.c
1813F: tests/qtest/ipmi*
1814T: git https://github.com/cminyard/qemu.git master-ipmi-rebase
1815
1816Floppy
1817M: John Snow <jsnow@redhat.com>
1818L: qemu-block@nongnu.org
1819S: Supported
1820F: hw/block/fdc.c
1821F: hw/block/fdc-internal.h
1822F: hw/block/fdc-isa.c
1823F: hw/block/fdc-sysbus.c
1824F: include/hw/block/fdc.h
1825F: tests/qtest/fdc-test.c
1826T: git https://gitlab.com/jsnow/qemu.git ide
1827
1828Hyper-V VMBus
1829M: Maciej S. Szmigiero <maciej.szmigiero@oracle.com>
1830S: Odd Fixes
1831F: hw/hyperv/vmbus.c
1832F: include/hw/hyperv/vmbus*.h
1833
1834OMAP
1835M: Peter Maydell <peter.maydell@linaro.org>
1836L: qemu-arm@nongnu.org
1837S: Maintained
1838F: hw/*/omap*
1839F: include/hw/arm/omap.h
1840F: docs/system/arm/sx1.rst
1841
1842IPack
1843M: Alberto Garcia <berto@igalia.com>
1844S: Odd Fixes
1845F: hw/char/ipoctal232.c
1846F: hw/ipack/
1847
1848PCI
1849M: Michael S. Tsirkin <mst@redhat.com>
1850M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
1851S: Supported
1852F: include/hw/pci/*
1853F: hw/misc/pci-testdev.c
1854F: hw/pci/*
1855F: hw/pci-bridge/*
1856F: qapi/pci.json
1857F: docs/pci*
1858F: docs/specs/*pci*
1859
1860PCIE DOE
1861M: Huai-Cheng Kuo <hchkuo@avery-design.com.tw>
1862M: Chris Browy <cbrowy@avery-design.com>
1863S: Supported
1864F: include/hw/pci/pcie_doe.h
1865F: hw/pci/pcie_doe.c
1866
1867ACPI/SMBIOS
1868M: Michael S. Tsirkin <mst@redhat.com>
1869M: Igor Mammedov <imammedo@redhat.com>
1870R: Ani Sinha <ani@anisinha.ca>
1871S: Supported
1872F: include/hw/acpi/*
1873F: include/hw/firmware/smbios.h
1874F: hw/acpi/*
1875F: hw/smbios/*
1876F: hw/i386/acpi-build.[hc]
1877F: hw/arm/virt-acpi-build.c
1878F: qapi/acpi.json
1879F: tests/qtest/bios-tables-test*
1880F: tests/qtest/acpi-utils.[hc]
1881F: tests/data/acpi/
1882F: docs/specs/acpi_cpu_hotplug.rst
1883F: docs/specs/acpi_mem_hotplug.rst
1884F: docs/specs/acpi_nvdimm.rst
1885F: docs/specs/acpi_pci_hotplug.rst
1886F: docs/specs/acpi_hw_reduced_hotplug.rst
1887
1888ACPI/VIOT
1889M: Jean-Philippe Brucker <jean-philippe@linaro.org>
1890S: Supported
1891F: hw/acpi/viot.c
1892F: hw/acpi/viot.h
1893
1894ACPI/AVOCADO/BIOSBITS
1895M: Ani Sinha <ani@anisinha.ca>
1896M: Michael S. Tsirkin <mst@redhat.com>
1897S: Supported
1898F: tests/avocado/acpi-bits/*
1899F: tests/avocado/acpi-bits.py
1900F: docs/devel/acpi-bits.rst
1901
1902ACPI/HEST/GHES
1903R: Dongjiu Geng <gengdongjiu1@gmail.com>
1904L: qemu-arm@nongnu.org
1905S: Maintained
1906F: hw/acpi/ghes.c
1907F: include/hw/acpi/ghes.h
1908F: docs/specs/acpi_hest_ghes.rst
1909
1910ppc4xx
1911L: qemu-ppc@nongnu.org
1912S: Orphan
1913F: hw/ppc/ppc4*.c
1914F: hw/i2c/ppc4xx_i2c.c
1915F: include/hw/ppc/ppc4xx.h
1916F: include/hw/i2c/ppc4xx_i2c.h
1917F: hw/intc/ppc-uic.c
1918F: include/hw/intc/ppc-uic.h
1919
1920Character devices
1921M: Marc-André Lureau <marcandre.lureau@redhat.com>
1922R: Paolo Bonzini <pbonzini@redhat.com>
1923S: Odd Fixes
1924F: hw/char/
1925
1926Network devices
1927M: Jason Wang <jasowang@redhat.com>
1928S: Odd Fixes
1929F: hw/net/
1930F: include/hw/net/
1931F: tests/qtest/virtio-net-test.c
1932F: docs/virtio-net-failover.rst
1933T: git https://github.com/jasowang/qemu.git net
1934
1935Parallel NOR Flash devices
1936M: Philippe Mathieu-Daudé <philmd@linaro.org>
1937T: git https://gitlab.com/philmd/qemu.git pflash-next
1938S: Maintained
1939F: hw/block/pflash_cfi*.c
1940F: include/hw/block/flash.h
1941
1942SCSI
1943M: Paolo Bonzini <pbonzini@redhat.com>
1944R: Fam Zheng <fam@euphon.net>
1945S: Supported
1946F: include/hw/scsi/*
1947F: hw/scsi/*
1948F: tests/qtest/virtio-scsi-test.c
1949F: tests/qtest/fuzz-virtio-scsi-test.c
1950F: tests/qtest/am53c974-test.c
1951F: tests/qtest/fuzz-lsi53c895a-test.c
1952T: git https://github.com/bonzini/qemu.git scsi-next
1953
1954SSI
1955M: Alistair Francis <alistair@alistair23.me>
1956S: Maintained
1957F: hw/ssi/*
1958F: hw/block/m25p80*
1959F: include/hw/ssi/ssi.h
1960X: hw/ssi/xilinx_*
1961F: tests/qtest/m25p80-test.c
1962
1963Xilinx SPI
1964M: Alistair Francis <alistair@alistair23.me>
1965S: Maintained
1966F: hw/ssi/xilinx_*
1967
1968SD (Secure Card)
1969M: Philippe Mathieu-Daudé <philmd@linaro.org>
1970M: Bin Meng <bin.meng@windriver.com>
1971L: qemu-block@nongnu.org
1972S: Odd Fixes
1973F: include/hw/sd/sd*
1974F: hw/sd/core.c
1975F: hw/sd/sd*
1976F: hw/sd/ssi-sd.c
1977F: tests/qtest/fuzz-sdcard-test.c
1978F: tests/qtest/sdhci-test.c
1979
1980USB
1981M: Gerd Hoffmann <kraxel@redhat.com>
1982S: Odd Fixes
1983F: hw/usb/*
1984F: stubs/usb-dev-stub.c
1985F: tests/qtest/usb-*-test.c
1986F: docs/system/devices/usb.rst
1987F: include/hw/usb.h
1988F: include/hw/usb/
1989
1990USB (serial adapter)
1991R: Gerd Hoffmann <kraxel@redhat.com>
1992M: Samuel Thibault <samuel.thibault@ens-lyon.org>
1993S: Maintained
1994F: hw/usb/dev-serial.c
1995
1996VFIO
1997M: Alex Williamson <alex.williamson@redhat.com>
1998R: Cédric Le Goater <clg@redhat.com>
1999S: Supported
2000F: hw/vfio/*
2001F: include/hw/vfio/
2002F: docs/igd-assign.txt
2003F: docs/devel/vfio-migration.rst
2004
2005vfio-ccw
2006M: Eric Farman <farman@linux.ibm.com>
2007M: Matthew Rosato <mjrosato@linux.ibm.com>
2008S: Supported
2009F: hw/vfio/ccw.c
2010F: hw/s390x/s390-ccw.c
2011F: include/hw/s390x/s390-ccw.h
2012F: include/hw/s390x/vfio-ccw.h
2013L: qemu-s390x@nongnu.org
2014
2015vfio-ap
2016M: Tony Krowiak <akrowiak@linux.ibm.com>
2017M: Halil Pasic <pasic@linux.ibm.com>
2018M: Jason Herne <jjherne@linux.ibm.com>
2019S: Supported
2020F: hw/s390x/ap-device.c
2021F: hw/s390x/ap-bridge.c
2022F: include/hw/s390x/ap-device.h
2023F: include/hw/s390x/ap-bridge.h
2024F: hw/vfio/ap.c
2025F: docs/system/s390x/vfio-ap.rst
2026L: qemu-s390x@nongnu.org
2027
2028vhost
2029M: Michael S. Tsirkin <mst@redhat.com>
2030S: Supported
2031F: hw/*/*vhost*
2032F: docs/interop/vhost-user.json
2033F: docs/interop/vhost-user.rst
2034F: contrib/vhost-user-*/
2035F: backends/vhost-user.c
2036F: include/sysemu/vhost-user-backend.h
2037F: subprojects/libvhost-user/
2038
2039virtio
2040M: Michael S. Tsirkin <mst@redhat.com>
2041S: Supported
2042F: hw/*/virtio*
2043F: hw/virtio/Makefile.objs
2044F: hw/virtio/trace-events
2045F: qapi/virtio.json
2046F: net/vhost-user.c
2047F: include/hw/virtio/
2048F: docs/devel/virtio*
2049
2050virtio-balloon
2051M: Michael S. Tsirkin <mst@redhat.com>
2052M: David Hildenbrand <david@redhat.com>
2053S: Maintained
2054F: docs/interop/virtio-balloon-stats.rst
2055F: hw/virtio/virtio-balloon*.c
2056F: include/hw/virtio/virtio-balloon.h
2057F: softmmu/balloon.c
2058F: include/sysemu/balloon.h
2059
2060virtio-9p
2061M: Greg Kurz <groug@kaod.org>
2062M: Christian Schoenebeck <qemu_oss@crudebyte.com>
2063S: Odd Fixes
2064W: https://wiki.qemu.org/Documentation/9p
2065F: hw/9pfs/
2066X: hw/9pfs/xen-9p*
2067F: fsdev/
2068F: docs/tools/virtfs-proxy-helper.rst
2069F: tests/qtest/virtio-9p-test.c
2070F: tests/qtest/libqos/virtio-9p*
2071T: git https://gitlab.com/gkurz/qemu.git 9p-next
2072T: git https://github.com/cschoenebeck/qemu.git 9p.next
2073
2074virtio-blk
2075M: Stefan Hajnoczi <stefanha@redhat.com>
2076L: qemu-block@nongnu.org
2077S: Supported
2078F: hw/block/virtio-blk-common.c
2079F: hw/block/virtio-blk.c
2080F: hw/block/dataplane/*
2081F: include/hw/virtio/virtio-blk-common.h
2082F: tests/qtest/virtio-blk-test.c
2083T: git https://github.com/stefanha/qemu.git block
2084
2085virtio-ccw
2086M: Cornelia Huck <cohuck@redhat.com>
2087M: Halil Pasic <pasic@linux.ibm.com>
2088M: Eric Farman <farman@linux.ibm.com>
2089S: Supported
2090F: hw/s390x/virtio-ccw*.[hc]
2091F: hw/s390x/vhost-*-ccw.c
2092T: git https://gitlab.com/cohuck/qemu.git s390-next
2093T: git https://github.com/borntraeger/qemu.git s390-next
2094L: qemu-s390x@nongnu.org
2095
2096virtiofs
2097M: Dr. David Alan Gilbert <dgilbert@redhat.com>
2098M: Stefan Hajnoczi <stefanha@redhat.com>
2099S: Supported
2100F: hw/virtio/vhost-user-fs*
2101F: include/hw/virtio/vhost-user-fs.h
2102L: virtio-fs@redhat.com
2103
2104virtio-input
2105M: Gerd Hoffmann <kraxel@redhat.com>
2106S: Odd Fixes
2107F: hw/input/vhost-user-input.c
2108F: hw/input/virtio-input*.c
2109F: include/hw/virtio/virtio-input.h
2110F: contrib/vhost-user-input/*
2111
2112virtio-iommu
2113M: Eric Auger <eric.auger@redhat.com>
2114S: Maintained
2115F: hw/virtio/virtio-iommu*.c
2116F: include/hw/virtio/virtio-iommu.h
2117
2118virtio-serial
2119M: Laurent Vivier <lvivier@redhat.com>
2120R: Amit Shah <amit@kernel.org>
2121S: Supported
2122F: hw/char/virtio-serial-bus.c
2123F: hw/char/virtio-console.c
2124F: include/hw/virtio/virtio-serial.h
2125F: tests/qtest/virtio-serial-test.c
2126
2127virtio-rng
2128M: Laurent Vivier <lvivier@redhat.com>
2129R: Amit Shah <amit@kernel.org>
2130S: Supported
2131F: hw/virtio/virtio-rng.c
2132F: include/hw/virtio/virtio-rng.h
2133F: include/sysemu/rng*.h
2134F: backends/rng*.c
2135F: tests/qtest/virtio-rng-test.c
2136
2137vhost-user-rng
2138M: Mathieu Poirier <mathieu.poirier@linaro.org>
2139S: Supported
2140F: docs/system/devices/vhost-user-rng.rst
2141F: hw/virtio/vhost-user-rng.c
2142F: hw/virtio/vhost-user-rng-pci.c
2143F: include/hw/virtio/vhost-user-rng.h
2144F: tools/vhost-user-rng/*
2145
2146vhost-user-gpio
2147M: Alex Bennée <alex.bennee@linaro.org>
2148R: Viresh Kumar <viresh.kumar@linaro.org>
2149S: Maintained
2150F: hw/virtio/vhost-user-gpio*
2151F: include/hw/virtio/vhost-user-gpio.h
2152F: tests/qtest/libqos/virtio-gpio.*
2153
2154virtio-crypto
2155M: Gonglei <arei.gonglei@huawei.com>
2156S: Supported
2157F: hw/virtio/virtio-crypto.c
2158F: hw/virtio/virtio-crypto-pci.c
2159F: include/hw/virtio/virtio-crypto.h
2160
2161virtio-mem
2162M: David Hildenbrand <david@redhat.com>
2163S: Supported
2164W: https://virtio-mem.gitlab.io/
2165F: hw/virtio/virtio-mem.c
2166F: hw/virtio/virtio-mem-pci.h
2167F: hw/virtio/virtio-mem-pci.c
2168F: include/hw/virtio/virtio-mem.h
2169
2170nvme
2171M: Keith Busch <kbusch@kernel.org>
2172M: Klaus Jensen <its@irrelevant.dk>
2173L: qemu-block@nongnu.org
2174S: Supported
2175F: hw/nvme/*
2176F: include/block/nvme.h
2177F: tests/qtest/nvme-test.c
2178F: docs/system/devices/nvme.rst
2179T: git git://git.infradead.org/qemu-nvme.git nvme-next
2180
2181megasas
2182M: Hannes Reinecke <hare@suse.com>
2183L: qemu-block@nongnu.org
2184S: Supported
2185F: hw/scsi/megasas.c
2186F: hw/scsi/mfi.h
2187F: tests/qtest/megasas-test.c
2188F: tests/qtest/fuzz-megasas-test.c
2189
2190Network packet abstractions
2191M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
2192S: Maintained
2193F: include/net/eth.h
2194F: net/eth.c
2195F: hw/net/net_rx_pkt*
2196F: hw/net/net_tx_pkt*
2197
2198Vmware
2199M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
2200S: Maintained
2201F: hw/net/vmxnet*
2202F: hw/scsi/vmw_pvscsi*
2203F: tests/qtest/vmxnet3-test.c
2204
2205Rocker
2206M: Jiri Pirko <jiri@resnulli.us>
2207S: Maintained
2208F: hw/net/rocker/
2209F: qapi/rocker.json
2210F: tests/rocker/
2211F: docs/specs/rocker.txt
2212
2213e1000x
2214M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
2215S: Maintained
2216F: hw/net/e1000x*
2217
2218e1000e
2219M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
2220S: Maintained
2221F: hw/net/e1000e*
2222F: tests/qtest/fuzz-e1000e-test.c
2223
2224eepro100
2225M: Stefan Weil <sw@weilnetz.de>
2226S: Maintained
2227F: hw/net/eepro100.c
2228
2229tulip
2230M: Sven Schnelle <svens@stackframe.org>
2231S: Maintained
2232F: hw/net/tulip.c
2233F: hw/net/tulip.h
2234
2235pca954x
2236M: Patrick Venture <venture@google.com>
2237S: Maintained
2238F: hw/i2c/i2c_mux_pca954x.c
2239F: include/hw/i2c/i2c_mux_pca954x.h
2240
2241Generic Loader
2242M: Alistair Francis <alistair@alistair23.me>
2243S: Maintained
2244F: hw/core/generic-loader.c
2245F: hw/core/uboot_image.h
2246F: include/hw/core/generic-loader.h
2247F: docs/system/generic-loader.rst
2248
2249Guest Loader
2250M: Alex Bennée <alex.bennee@linaro.org>
2251S: Maintained
2252F: hw/core/guest-loader.c
2253F: docs/system/guest-loader.rst
2254F: tests/avocado/boot_xen.py
2255
2256Intel Hexadecimal Object File Loader
2257M: Su Hang <suhang16@mails.ucas.ac.cn>
2258S: Maintained
2259F: tests/qtest/hexloader-test.c
2260F: tests/data/hex-loader/test.hex
2261
2262CHRP NVRAM
2263M: Thomas Huth <thuth@redhat.com>
2264S: Maintained
2265F: hw/nvram/chrp_nvram.c
2266F: include/hw/nvram/chrp_nvram.h
2267F: tests/qtest/prom-env-test.c
2268
2269VM Generation ID
2270S: Orphan
2271R: Ani Sinha <ani@anisinha.ca>
2272F: hw/acpi/vmgenid.c
2273F: include/hw/acpi/vmgenid.h
2274F: docs/specs/vmgenid.txt
2275F: tests/qtest/vmgenid-test.c
2276F: stubs/vmgenid.c
2277
2278LED
2279M: Philippe Mathieu-Daudé <philmd@linaro.org>
2280S: Maintained
2281F: include/hw/misc/led.h
2282F: hw/misc/led.c
2283
2284Unimplemented device
2285M: Peter Maydell <peter.maydell@linaro.org>
2286R: Philippe Mathieu-Daudé <philmd@linaro.org>
2287R: Ani Sinha <ani@anisinha.ca>
2288S: Maintained
2289F: include/hw/misc/unimp.h
2290F: hw/misc/unimp.c
2291
2292Empty slot
2293M: Artyom Tarasenko <atar4qemu@gmail.com>
2294R: Philippe Mathieu-Daudé <philmd@linaro.org>
2295R: Ani Sinha <ani@anisinha.ca>
2296S: Maintained
2297F: include/hw/misc/empty_slot.h
2298F: hw/misc/empty_slot.c
2299
2300Standard VGA
2301M: Gerd Hoffmann <kraxel@redhat.com>
2302S: Maintained
2303F: hw/display/vga*
2304F: hw/display/bochs-display.c
2305F: include/hw/display/vga.h
2306F: include/hw/display/bochs-vbe.h
2307
2308ramfb
2309M: Gerd Hoffmann <kraxel@redhat.com>
2310S: Maintained
2311F: hw/display/ramfb*.c
2312F: include/hw/display/ramfb.h
2313
2314virtio-gpu
2315M: Gerd Hoffmann <kraxel@redhat.com>
2316S: Odd Fixes
2317F: hw/display/virtio-gpu*
2318F: hw/display/virtio-vga.*
2319F: include/hw/virtio/virtio-gpu.h
2320
2321vhost-user-blk
2322M: Raphael Norwitz <raphael.norwitz@nutanix.com>
2323S: Maintained
2324F: contrib/vhost-user-blk/
2325F: contrib/vhost-user-scsi/
2326F: hw/block/vhost-user-blk.c
2327F: hw/block/virtio-blk-common.c
2328F: hw/scsi/vhost-user-scsi.c
2329F: hw/virtio/vhost-user-blk-pci.c
2330F: hw/virtio/vhost-user-scsi-pci.c
2331F: include/hw/virtio/vhost-user-blk.h
2332F: include/hw/virtio/vhost-user-scsi.h
2333F: include/hw/virtio/virtio-blk-common.h
2334
2335vhost-user-gpu
2336M: Marc-André Lureau <marcandre.lureau@redhat.com>
2337R: Gerd Hoffmann <kraxel@redhat.com>
2338S: Maintained
2339F: docs/interop/vhost-user-gpu.rst
2340F: contrib/vhost-user-gpu
2341F: hw/display/vhost-user-*
2342
2343Cirrus VGA
2344M: Gerd Hoffmann <kraxel@redhat.com>
2345S: Odd Fixes
2346W: https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
2347F: hw/display/cirrus*
2348
2349EDID Generator
2350M: Gerd Hoffmann <kraxel@redhat.com>
2351S: Maintained
2352F: hw/display/edid*
2353F: include/hw/display/edid.h
2354F: qemu-edid.c
2355
2356PIIX4 South Bridge (i82371AB)
2357M: Hervé Poussineau <hpoussin@reactos.org>
2358M: Philippe Mathieu-Daudé <philmd@linaro.org>
2359S: Maintained
2360F: hw/isa/piix4.c
2361F: include/hw/southbridge/piix.h
2362
2363Firmware configuration (fw_cfg)
2364M: Philippe Mathieu-Daudé <philmd@linaro.org>
2365R: Gerd Hoffmann <kraxel@redhat.com>
2366S: Supported
2367F: docs/specs/fw_cfg.txt
2368F: hw/nvram/fw_cfg*.c
2369F: stubs/fw_cfg.c
2370F: include/hw/nvram/fw_cfg.h
2371F: include/standard-headers/linux/qemu_fw_cfg.h
2372F: tests/qtest/libqos/fw_cfg.c
2373F: tests/qtest/fw_cfg-test.c
2374T: git https://github.com/philmd/qemu.git fw_cfg-next
2375
2376XIVE
2377M: Cédric Le Goater <clg@kaod.org>
2378L: qemu-ppc@nongnu.org
2379S: Odd Fixes
2380F: hw/*/*xive*
2381F: include/hw/*/*xive*
2382F: docs/*/*xive*
2383
2384Renesas peripherals
2385R: Yoshinori Sato <ysato@users.sourceforge.jp>
2386R: Magnus Damm <magnus.damm@gmail.com>
2387S: Odd Fixes
2388F: hw/char/renesas_sci.c
2389F: hw/char/sh_serial.c
2390F: hw/timer/renesas_*.c
2391F: hw/timer/sh_timer.c
2392F: include/hw/char/renesas_sci.h
2393F: include/hw/sh4/sh.h
2394F: include/hw/timer/renesas_*.h
2395
2396Renesas RX peripherals
2397R: Yoshinori Sato <ysato@users.sourceforge.jp>
2398S: Orphan
2399F: hw/intc/rx_icu.c
2400F: hw/rx/
2401F: include/hw/intc/rx_icu.h
2402F: include/hw/rx/
2403
2404CAN bus subsystem and hardware
2405M: Pavel Pisa <pisa@cmp.felk.cvut.cz>
2406M: Vikram Garhwal <fnu.vikram@xilinx.com>
2407S: Maintained
2408W: https://canbus.pages.fel.cvut.cz/
2409F: net/can/*
2410F: hw/net/can/*
2411F: include/net/can_*.h
2412
2413OpenPIC interrupt controller
2414M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
2415S: Odd Fixes
2416F: hw/intc/openpic.c
2417F: include/hw/ppc/openpic.h
2418
2419MIPS CPS
2420M: Philippe Mathieu-Daudé <philmd@linaro.org>
2421S: Odd Fixes
2422F: hw/misc/mips_*
2423F: include/hw/misc/mips_*
2424
2425MIPS GIC
2426M: Philippe Mathieu-Daudé <philmd@linaro.org>
2427S: Odd Fixes
2428F: hw/intc/mips_gic.c
2429F: hw/timer/mips_gictimer.c
2430F: include/hw/intc/mips_gic.h
2431F: include/hw/timer/mips_gictimer.h
2432
2433S390 3270 device
2434M: Halil Pasic <pasic@linux.ibm.com>
2435M: Christian Borntraeger <borntraeger@linux.ibm.com>
2436S: Odd fixes
2437F: include/hw/s390x/3270-ccw.h
2438F: hw/char/terminal3270.c
2439F: hw/s390x/3270-ccw.c
2440L: qemu-s390x@nongnu.org
2441
2442S390 diag 288 watchdog
2443M: Halil Pasic <pasic@linux.ibm.com>
2444M: Christian Borntraeger <borntraeger@linux.ibm.com>
2445S: Supported
2446F: hw/watchdog/wdt_diag288.c
2447F: include/hw/watchdog/wdt_diag288.h
2448L: qemu-s390x@nongnu.org
2449
2450S390 storage key device
2451M: Halil Pasic <pasic@linux.ibm.com>
2452M: Christian Borntraeger <borntraeger@linux.ibm.com>
2453S: Supported
2454F: hw/s390x/storage-keys.h
2455F: hw/390x/s390-skeys*.c
2456L: qemu-s390x@nongnu.org
2457
2458S390 storage attribute device
2459M: Halil Pasic <pasic@linux.ibm.com>
2460M: Christian Borntraeger <borntraeger@linux.ibm.com>
2461S: Supported
2462F: hw/s390x/storage-attributes.h
2463F: hw/s390/s390-stattrib*.c
2464L: qemu-s390x@nongnu.org
2465
2466S390 floating interrupt controller
2467M: Halil Pasic <pasic@linux.ibm.com>
2468M: Christian Borntraeger <borntraeger@linux.ibm.com>
2469M: David Hildenbrand <david@redhat.com>
2470S: Supported
2471F: hw/intc/s390_flic*.c
2472F: include/hw/s390x/s390_flic.h
2473L: qemu-s390x@nongnu.org
2474
2475CanoKey
2476M: Hongren (Zenithal) Zheng <i@zenithal.me>
2477S: Maintained
2478R: Canokeys.org <contact@canokeys.org>
2479F: hw/usb/canokey.c
2480F: hw/usb/canokey.h
2481F: docs/system/devices/canokey.rst
2482
2483Subsystems
2484----------
2485Overall Audio backends
2486M: Gerd Hoffmann <kraxel@redhat.com>
2487S: Odd Fixes
2488F: audio/
2489X: audio/alsaaudio.c
2490X: audio/coreaudio.c
2491X: audio/dsound*
2492X: audio/jackaudio.c
2493X: audio/ossaudio.c
2494X: audio/paaudio.c
2495X: audio/sdlaudio.c
2496X: audio/sndioaudio.c
2497X: audio/spiceaudio.c
2498F: qapi/audio.json
2499
2500ALSA Audio backend
2501M: Gerd Hoffmann <kraxel@redhat.com>
2502R: Christian Schoenebeck <qemu_oss@crudebyte.com>
2503S: Odd Fixes
2504F: audio/alsaaudio.c
2505
2506Core Audio framework backend
2507M: Gerd Hoffmann <kraxel@redhat.com>
2508M: Philippe Mathieu-Daudé <philmd@linaro.org>
2509R: Christian Schoenebeck <qemu_oss@crudebyte.com>
2510R: Akihiko Odaki <akihiko.odaki@gmail.com>
2511S: Odd Fixes
2512F: audio/coreaudio.c
2513
2514DSound Audio backend
2515M: Gerd Hoffmann <kraxel@redhat.com>
2516S: Odd Fixes
2517F: audio/dsound*
2518
2519JACK Audio Connection Kit backend
2520M: Gerd Hoffmann <kraxel@redhat.com>
2521R: Christian Schoenebeck <qemu_oss@crudebyte.com>
2522S: Odd Fixes
2523F: audio/jackaudio.c
2524
2525Open Sound System (OSS) Audio backend
2526M: Gerd Hoffmann <kraxel@redhat.com>
2527S: Odd Fixes
2528F: audio/ossaudio.c
2529
2530PulseAudio backend
2531M: Gerd Hoffmann <kraxel@redhat.com>
2532S: Odd Fixes
2533F: audio/paaudio.c
2534
2535SDL Audio backend
2536M: Gerd Hoffmann <kraxel@redhat.com>
2537R: Thomas Huth <huth@tuxfamily.org>
2538S: Odd Fixes
2539F: audio/sdlaudio.c
2540
2541Sndio Audio backend
2542M: Gerd Hoffmann <kraxel@redhat.com>
2543R: Alexandre Ratchov <alex@caoua.org>
2544S: Odd Fixes
2545F: audio/sndioaudio.c
2546
2547Block layer core
2548M: Kevin Wolf <kwolf@redhat.com>
2549M: Hanna Reitz <hreitz@redhat.com>
2550L: qemu-block@nongnu.org
2551S: Supported
2552F: block*
2553F: block/
2554F: hw/block/
2555F: qapi/block*.json
2556F: qapi/transaction.json
2557F: include/block/
2558F: include/sysemu/block-*.h
2559F: qemu-img*
2560F: docs/tools/qemu-img.rst
2561F: qemu-io*
2562F: tests/qemu-iotests/
2563F: util/qemu-progress.c
2564F: qobject/block-qdict.c
2565F: tests/unit/check-block-qdict.c
2566T: git https://repo.or.cz/qemu/kevin.git block
2567
2568Storage daemon
2569M: Kevin Wolf <kwolf@redhat.com>
2570L: qemu-block@nongnu.org
2571S: Supported
2572F: storage-daemon/
2573F: docs/interop/qemu-storage-daemon-qmp-ref.rst
2574F: docs/tools/qemu-storage-daemon.rst
2575T: git https://repo.or.cz/qemu/kevin.git block
2576
2577Block I/O path
2578M: Stefan Hajnoczi <stefanha@redhat.com>
2579M: Fam Zheng <fam@euphon.net>
2580L: qemu-block@nongnu.org
2581S: Supported
2582F: util/async.c
2583F: util/aio-*.c
2584F: util/aio-*.h
2585F: util/fdmon-*.c
2586F: block/io.c
2587F: migration/block*
2588F: include/block/aio.h
2589F: include/block/aio-wait.h
2590F: scripts/qemugdb/aio.py
2591F: tests/unit/test-fdmon-epoll.c
2592T: git https://github.com/stefanha/qemu.git block
2593
2594Block SCSI subsystem
2595M: Paolo Bonzini <pbonzini@redhat.com>
2596R: Fam Zheng <fam@euphon.net>
2597L: qemu-block@nongnu.org
2598S: Supported
2599F: include/scsi/*
2600F: scsi/*
2601
2602Block Jobs
2603M: John Snow <jsnow@redhat.com>
2604M: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
2605L: qemu-block@nongnu.org
2606S: Supported
2607F: blockjob.c
2608F: include/block/blockjob.h
2609F: job.c
2610F: job-qmp.c
2611F: include/qemu/job.h
2612F: block/backup.c
2613F: block/commit.c
2614F: block/stream.c
2615F: block/mirror.c
2616F: qapi/job.json
2617F: block/block-copy.c
2618F: include/block/block-copy.h
2619F: block/reqlist.c
2620F: include/block/reqlist.h
2621F: block/copy-before-write.h
2622F: block/copy-before-write.c
2623F: block/snapshot-access.c
2624F: include/block/aio_task.h
2625F: block/aio_task.c
2626F: util/qemu-co-shared-resource.c
2627F: include/qemu/co-shared-resource.h
2628T: git https://gitlab.com/jsnow/qemu.git jobs
2629T: git https://gitlab.com/vsementsov/qemu.git block
2630
2631Compute Express Link
2632M: Ben Widawsky <ben.widawsky@intel.com>
2633M: Jonathan Cameron <jonathan.cameron@huawei.com>
2634S: Supported
2635F: hw/cxl/
2636F: hw/mem/cxl_type3.c
2637F: include/hw/cxl/
2638
2639Dirty Bitmaps
2640M: Eric Blake <eblake@redhat.com>
2641M: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
2642R: John Snow <jsnow@redhat.com>
2643L: qemu-block@nongnu.org
2644S: Supported
2645F: include/qemu/hbitmap.h
2646F: include/block/dirty-bitmap.h
2647F: block/monitor/bitmap-qmp-cmds.c
2648F: block/dirty-bitmap.c
2649F: block/qcow2-bitmap.c
2650F: migration/block-dirty-bitmap.c
2651F: util/hbitmap.c
2652F: tests/unit/test-hbitmap.c
2653F: docs/interop/bitmaps.rst
2654T: git https://repo.or.cz/qemu/ericb.git bitmaps
2655T: git https://gitlab.com/vsementsov/qemu.git block
2656
2657Character device backends
2658M: Marc-André Lureau <marcandre.lureau@redhat.com>
2659R: Paolo Bonzini <pbonzini@redhat.com>
2660S: Maintained
2661F: chardev/
2662F: include/chardev/
2663F: qapi/char.json
2664
2665Character Devices (Braille)
2666M: Samuel Thibault <samuel.thibault@ens-lyon.org>
2667S: Maintained
2668F: chardev/baum.c
2669
2670Command line option argument parsing
2671M: Markus Armbruster <armbru@redhat.com>
2672S: Supported
2673F: include/qemu/option.h
2674F: tests/unit/test-keyval.c
2675F: tests/unit/test-qemu-opts.c
2676F: util/keyval.c
2677F: util/qemu-option.c
2678
2679Coverity model
2680M: Markus Armbruster <armbru@redhat.com>
2681S: Supported
2682F: scripts/coverity-model.c
2683
2684Coverity Scan integration
2685M: Peter Maydell <peter.maydell@linaro.org>
2686S: Maintained
2687F: scripts/coverity-scan/
2688
2689Device Tree
2690M: Alistair Francis <alistair.francis@wdc.com>
2691R: David Gibson <david@gibson.dropbear.id.au>
2692S: Maintained
2693F: softmmu/device_tree.c
2694F: include/sysemu/device_tree.h
2695
2696Dump
2697S: Supported
2698M: Marc-André Lureau <marcandre.lureau@redhat.com>
2699F: dump/
2700F: hw/misc/vmcoreinfo.c
2701F: include/hw/misc/vmcoreinfo.h
2702F: include/qemu/win_dump_defs
2703F: include/sysemu/dump-arch.h
2704F: include/sysemu/dump.h
2705F: qapi/dump.json
2706F: scripts/dump-guest-memory.py
2707F: stubs/dump.c
2708
2709Error reporting
2710M: Markus Armbruster <armbru@redhat.com>
2711S: Supported
2712F: include/qapi/error.h
2713F: include/qemu/error-report.h
2714F: qapi/error.json
2715F: util/error.c
2716F: util/qemu-error.c
2717F: scripts/coccinelle/err-bad-newline.cocci
2718F: scripts/coccinelle/error-use-after-free.cocci
2719F: scripts/coccinelle/error_propagate_null.cocci
2720F: scripts/coccinelle/remove_local_err.cocci
2721F: scripts/coccinelle/use-error_fatal.cocci
2722F: scripts/coccinelle/errp-guard.cocci
2723
2724GDB stub
2725M: Alex Bennée <alex.bennee@linaro.org>
2726R: Philippe Mathieu-Daudé <philmd@linaro.org>
2727S: Maintained
2728F: docs/system/gdb.rst
2729F: gdbstub/*
2730F: include/exec/gdbstub.h
2731F: gdb-xml/
2732F: tests/tcg/multiarch/gdbstub/
2733F: scripts/feature_to_c.sh
2734
2735Memory API
2736M: Paolo Bonzini <pbonzini@redhat.com>
2737M: Peter Xu <peterx@redhat.com>
2738M: David Hildenbrand <david@redhat.com>
2739R: Philippe Mathieu-Daudé <philmd@linaro.org>
2740S: Supported
2741F: include/exec/ioport.h
2742F: include/exec/memop.h
2743F: include/exec/memory.h
2744F: include/exec/ram_addr.h
2745F: include/exec/ramblock.h
2746F: include/sysemu/memory_mapping.h
2747F: softmmu/dma-helpers.c
2748F: softmmu/ioport.c
2749F: softmmu/memory.c
2750F: softmmu/memory_mapping.c
2751F: softmmu/physmem.c
2752F: include/exec/memory-internal.h
2753F: scripts/coccinelle/memory-region-housekeeping.cocci
2754
2755Memory devices
2756M: David Hildenbrand <david@redhat.com>
2757M: Igor Mammedov <imammedo@redhat.com>
2758R: Xiao Guangrong <xiaoguangrong.eric@gmail.com>
2759S: Supported
2760F: hw/mem/memory-device.c
2761F: hw/mem/nvdimm.c
2762F: hw/mem/pc-dimm.c
2763F: include/hw/mem/memory-device.h
2764F: include/hw/mem/nvdimm.h
2765F: include/hw/mem/pc-dimm.h
2766F: docs/nvdimm.txt
2767
2768SPICE
2769M: Gerd Hoffmann <kraxel@redhat.com>
2770S: Odd Fixes
2771F: include/ui/qemu-spice.h
2772F: include/ui/spice-display.h
2773F: ui/spice-*.c
2774F: audio/spiceaudio.c
2775F: hw/display/qxl*
2776F: qapi/ui.json
2777F: docs/spice-port-fqdn.txt
2778
2779Graphics
2780M: Gerd Hoffmann <kraxel@redhat.com>
2781S: Odd Fixes
2782F: ui/
2783F: include/ui/
2784F: qapi/ui.json
2785F: util/drm.c
2786F: docs/devel/ui.rst
2787
2788Cocoa graphics
2789M: Peter Maydell <peter.maydell@linaro.org>
2790M: Philippe Mathieu-Daudé <philmd@linaro.org>
2791R: Akihiko Odaki <akihiko.odaki@gmail.com>
2792S: Odd Fixes
2793F: ui/cocoa.m
2794
2795Main loop
2796M: Paolo Bonzini <pbonzini@redhat.com>
2797S: Maintained
2798F: include/exec/gen-icount.h
2799F: include/qemu/main-loop.h
2800F: include/sysemu/runstate.h
2801F: include/sysemu/runstate-action.h
2802F: util/main-loop.c
2803F: util/qemu-timer.c
2804F: softmmu/vl.c
2805F: softmmu/main.c
2806F: softmmu/cpus.c
2807F: softmmu/cpu-throttle.c
2808F: softmmu/cpu-timers.c
2809F: softmmu/icount.c
2810F: softmmu/runstate*
2811F: qapi/run-state.json
2812
2813Read, Copy, Update (RCU)
2814M: Paolo Bonzini <pbonzini@redhat.com>
2815S: Maintained
2816F: include/qemu/rcu*.h
2817F: tests/unit/rcutorture.c
2818F: tests/unit/test-rcu-*.c
2819F: util/rcu.c
2820
2821Human Monitor (HMP)
2822M: Dr. David Alan Gilbert <dgilbert@redhat.com>
2823S: Maintained
2824F: monitor/monitor-internal.h
2825F: monitor/misc.c
2826F: monitor/monitor.c
2827F: monitor/hmp*
2828F: hmp.h
2829F: hmp-commands*.hx
2830F: include/monitor/hmp-target.h
2831F: tests/qtest/test-hmp.c
2832F: include/qemu/qemu-print.h
2833F: util/qemu-print.c
2834
2835Network device backends
2836M: Jason Wang <jasowang@redhat.com>
2837S: Maintained
2838F: net/
2839F: include/net/
2840F: qemu-bridge-helper.c
2841T: git https://github.com/jasowang/qemu.git net
2842F: qapi/net.json
2843
2844Netmap network backend
2845M: Luigi Rizzo <rizzo@iet.unipi.it>
2846M: Giuseppe Lettieri <g.lettieri@iet.unipi.it>
2847M: Vincenzo Maffione <v.maffione@gmail.com>
2848W: http://info.iet.unipi.it/~luigi/netmap/
2849S: Maintained
2850F: net/netmap.c
2851
2852Host Memory Backends
2853M: David Hildenbrand <david@redhat.com>
2854M: Igor Mammedov <imammedo@redhat.com>
2855S: Maintained
2856F: backends/hostmem*.c
2857F: include/sysemu/hostmem.h
2858T: git https://gitlab.com/ehabkost/qemu.git machine-next
2859
2860Cryptodev Backends
2861M: Gonglei <arei.gonglei@huawei.com>
2862S: Maintained
2863F: include/sysemu/cryptodev*.h
2864F: backends/cryptodev*.c
2865
2866Python library
2867M: John Snow <jsnow@redhat.com>
2868M: Cleber Rosa <crosa@redhat.com>
2869R: Beraldo Leal <bleal@redhat.com>
2870S: Maintained
2871F: python/
2872T: git https://gitlab.com/jsnow/qemu.git python
2873
2874Python scripts
2875M: John Snow <jsnow@redhat.com>
2876M: Cleber Rosa <crosa@redhat.com>
2877S: Odd Fixes
2878F: scripts/*.py
2879F: tests/*.py
2880
2881Benchmark util
2882M: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
2883S: Maintained
2884F: scripts/simplebench/
2885T: git https://gitlab.com/vsementsov/qemu.git simplebench
2886
2887Transactions helper
2888M: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
2889S: Maintained
2890F: include/qemu/transactions.h
2891F: util/transactions.c
2892T: git https://gitlab.com/vsementsov/qemu.git block
2893
2894QAPI
2895M: Markus Armbruster <armbru@redhat.com>
2896M: Michael Roth <michael.roth@amd.com>
2897S: Supported
2898F: qapi/
2899X: qapi/*.json
2900F: include/qapi/
2901X: include/qapi/qmp/
2902F: include/qapi/qmp/dispatch.h
2903F: tests/qapi-schema/
2904F: tests/unit/test-*-visitor.c
2905F: tests/unit/test-qapi-*.c
2906F: tests/unit/test-qmp-*.c
2907F: tests/unit/test-visitor-serialization.c
2908F: scripts/qapi-gen.py
2909F: scripts/qapi/*
2910F: docs/sphinx/qapidoc.py
2911F: docs/devel/qapi*
2912T: git https://repo.or.cz/qemu/armbru.git qapi-next
2913
2914QAPI Schema
2915M: Eric Blake <eblake@redhat.com>
2916M: Markus Armbruster <armbru@redhat.com>
2917S: Supported
2918F: qapi/*.json
2919T: git https://repo.or.cz/qemu/armbru.git qapi-next
2920
2921QObject
2922M: Markus Armbruster <armbru@redhat.com>
2923S: Supported
2924F: qobject/
2925F: include/qapi/qmp/
2926X: include/qapi/qmp/dispatch.h
2927F: scripts/coccinelle/qobject.cocci
2928F: tests/unit/check-qdict.c
2929F: tests/unit/check-qjson.c
2930F: tests/unit/check-qlist.c
2931F: tests/unit/check-qlit.c
2932F: tests/unit/check-qnull.c
2933F: tests/unit/check-qnum.c
2934F: tests/unit/check-qobject.c
2935F: tests/unit/check-qstring.c
2936F: tests/data/qobject/qdict.txt
2937T: git https://repo.or.cz/qemu/armbru.git qapi-next
2938
2939QEMU Guest Agent
2940M: Michael Roth <michael.roth@amd.com>
2941M: Konstantin Kostiuk <kkostiuk@redhat.com>
2942S: Maintained
2943F: qga/
2944F: docs/interop/qemu-ga.rst
2945F: docs/interop/qemu-ga-ref.rst
2946F: scripts/qemu-guest-agent/
2947F: tests/unit/test-qga.c
2948T: git https://github.com/mdroth/qemu.git qga
2949
2950QEMU Guest Agent Win32
2951M: Konstantin Kostiuk <kkostiuk@redhat.com>
2952S: Maintained
2953F: qga/*win32*
2954F: qga/vss-win32/
2955F: qga/installer/
2956T: git https://github.com/kostyanf14/qemu.git qga-win32
2957
2958QOM
2959M: Paolo Bonzini <pbonzini@redhat.com>
2960R: Daniel P. Berrange <berrange@redhat.com>
2961R: Eduardo Habkost <eduardo@habkost.net>
2962S: Supported
2963F: docs/devel/qom.rst
2964F: docs/qdev-device-use.txt
2965F: hw/core/qdev*
2966F: hw/core/bus.c
2967F: hw/core/sysbus.c
2968F: include/hw/qdev*
2969F: include/monitor/qdev.h
2970F: include/qom/
2971F: qapi/qom.json
2972F: qapi/qdev.json
2973F: scripts/coccinelle/qom-parent-type.cocci
2974F: softmmu/qdev-monitor.c
2975F: stubs/qdev.c
2976F: qom/
2977F: tests/unit/check-qom-interface.c
2978F: tests/unit/check-qom-proplist.c
2979F: tests/unit/test-qdev-global-props.c
2980
2981QOM boilerplate conversion script
2982M: Eduardo Habkost <eduardo@habkost.net>
2983S: Maintained
2984F: scripts/codeconverter/
2985
2986QMP
2987M: Markus Armbruster <armbru@redhat.com>
2988S: Supported
2989F: monitor/monitor-internal.h
2990F: monitor/qmp*
2991F: monitor/misc.c
2992F: monitor/monitor.c
2993F: qapi/control.json
2994F: qapi/error.json
2995F: qapi/introspect.json
2996F: docs/devel/*qmp-*
2997F: docs/interop/*qmp-*
2998F: scripts/qmp/
2999F: tests/qtest/qmp-test.c
3000F: tests/qtest/qmp-cmd-test.c
3001T: git https://repo.or.cz/qemu/armbru.git qapi-next
3002
3003qtest
3004M: Thomas Huth <thuth@redhat.com>
3005M: Laurent Vivier <lvivier@redhat.com>
3006R: Paolo Bonzini <pbonzini@redhat.com>
3007S: Maintained
3008F: softmmu/qtest.c
3009F: accel/qtest/
3010F: tests/qtest/
3011F: docs/devel/qgraph.rst
3012F: docs/devel/qtest.rst
3013X: tests/qtest/bios-tables-test*
3014
3015Device Fuzzing
3016M: Alexander Bulekov <alxndr@bu.edu>
3017R: Paolo Bonzini <pbonzini@redhat.com>
3018R: Bandan Das <bsd@redhat.com>
3019R: Stefan Hajnoczi <stefanha@redhat.com>
3020R: Thomas Huth <thuth@redhat.com>
3021R: Darren Kenny <darren.kenny@oracle.com>
3022R: Qiuhao Li <Qiuhao.Li@outlook.com>
3023S: Maintained
3024F: tests/qtest/fuzz/
3025F: tests/qtest/fuzz-*test.c
3026F: scripts/oss-fuzz/
3027F: hw/mem/sparse-mem.c
3028F: docs/devel/fuzzing.rst
3029
3030Register API
3031M: Alistair Francis <alistair@alistair23.me>
3032S: Maintained
3033F: hw/core/register.c
3034F: include/hw/register.h
3035F: include/hw/registerfields.h
3036
3037SLIRP
3038M: Samuel Thibault <samuel.thibault@ens-lyon.org>
3039S: Maintained
3040F: net/slirp.c
3041F: include/net/slirp.h
3042T: git https://people.debian.org/~sthibault/qemu.git slirp
3043
3044Stats
3045S: Orphan
3046F: include/sysemu/stats.h
3047F: stats/
3048
3049Streams
3050M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
3051S: Maintained
3052F: hw/core/stream.c
3053F: include/hw/stream.h
3054
3055Stubs
3056M: Paolo Bonzini <pbonzini@redhat.com>
3057S: Maintained
3058F: stubs/
3059
3060Tracing
3061M: Stefan Hajnoczi <stefanha@redhat.com>
3062S: Maintained
3063F: trace/
3064F: trace-events
3065F: docs/qemu-option-trace.rst.inc
3066F: qapi/trace.json
3067F: scripts/tracetool.py
3068F: scripts/tracetool/
3069F: scripts/qemu-trace-stap*
3070F: docs/tools/qemu-trace-stap.rst
3071F: docs/devel/tracing.rst
3072T: git https://github.com/stefanha/qemu.git tracing
3073
3074TPM
3075M: Stefan Berger <stefanb@linux.ibm.com>
3076S: Maintained
3077F: softmmu/tpm*
3078F: hw/tpm/*
3079F: include/hw/acpi/tpm.h
3080F: include/sysemu/tpm*
3081F: qapi/tpm.json
3082F: backends/tpm/
3083F: tests/qtest/*tpm*
3084F: docs/specs/tpm.rst
3085T: git https://github.com/stefanberger/qemu-tpm.git tpm-next
3086
3087Checkpatch
3088S: Odd Fixes
3089F: scripts/checkpatch.pl
3090
3091Migration
3092M: Juan Quintela <quintela@redhat.com>
3093M: Dr. David Alan Gilbert <dgilbert@redhat.com>
3094S: Maintained
3095F: hw/core/vmstate-if.c
3096F: include/hw/vmstate-if.h
3097F: include/migration/
3098F: include/qemu/userfaultfd.h
3099F: migration/
3100F: scripts/vmstate-static-checker.py
3101F: tests/vmstate-static-checker-data/
3102F: tests/qtest/migration-test.c
3103F: docs/devel/migration.rst
3104F: qapi/migration.json
3105F: tests/migration/
3106F: util/userfaultfd.c
3107
3108D-Bus
3109M: Marc-André Lureau <marcandre.lureau@redhat.com>
3110S: Maintained
3111F: backends/dbus-vmstate.c
3112F: ui/dbus*
3113F: audio/dbus*
3114F: util/dbus.c
3115F: include/ui/dbus*
3116F: include/qemu/dbus.h
3117F: docs/interop/dbus*
3118F: docs/sphinx/dbus*
3119F: docs/sphinx/fakedbusdoc.py
3120F: tests/qtest/dbus*
3121
3122Seccomp
3123M: Daniel P. Berrange <berrange@redhat.com>
3124S: Odd Fixes
3125F: softmmu/qemu-seccomp.c
3126F: include/sysemu/seccomp.h
3127F: tests/unit/test-seccomp.c
3128
3129Cryptography
3130M: Daniel P. Berrange <berrange@redhat.com>
3131S: Maintained
3132F: crypto/
3133F: include/crypto/
3134F: qapi/crypto.json
3135F: tests/unit/test-crypto-*
3136F: tests/bench/benchmark-crypto-*
3137F: tests/unit/crypto-tls-*
3138F: tests/unit/pkix_asn1_tab.c
3139F: qemu.sasl
3140
3141Coroutines
3142M: Stefan Hajnoczi <stefanha@redhat.com>
3143M: Kevin Wolf <kwolf@redhat.com>
3144S: Maintained
3145F: util/*coroutine*
3146F: include/qemu/coroutine*
3147F: tests/unit/test-coroutine.c
3148
3149Buffers
3150M: Daniel P. Berrange <berrange@redhat.com>
3151S: Odd Fixes
3152F: util/buffer.c
3153F: include/qemu/buffer.h
3154
3155I/O Channels
3156M: Daniel P. Berrange <berrange@redhat.com>
3157S: Maintained
3158F: io/
3159F: include/io/
3160F: tests/unit/test-io-*
3161
3162User authorization
3163M: Daniel P. Berrange <berrange@redhat.com>
3164S: Maintained
3165F: authz/
3166F: qapi/authz.json
3167F: include/authz/
3168F: tests/unit/test-authz-*
3169
3170Sockets
3171M: Daniel P. Berrange <berrange@redhat.com>
3172S: Maintained
3173F: include/qemu/sockets.h
3174F: util/qemu-sockets.c
3175F: qapi/sockets.json
3176
3177File monitor
3178M: Daniel P. Berrange <berrange@redhat.com>
3179S: Odd Fixes
3180F: util/filemonitor*.c
3181F: include/qemu/filemonitor.h
3182F: tests/unit/test-util-filemonitor.c
3183
3184Throttling infrastructure
3185M: Alberto Garcia <berto@igalia.com>
3186S: Supported
3187F: block/throttle-groups.c
3188F: include/block/throttle-groups.h
3189F: include/qemu/throttle*.h
3190F: util/throttle.c
3191F: docs/throttle.txt
3192F: tests/unit/test-throttle.c
3193L: qemu-block@nongnu.org
3194
3195UUID
3196M: Fam Zheng <fam@euphon.net>
3197S: Supported
3198F: util/uuid.c
3199F: include/qemu/uuid.h
3200F: tests/unit/test-uuid.c
3201
3202Yank feature
3203M: Lukas Straub <lukasstraub2@web.de>
3204S: Odd fixes
3205F: util/yank.c
3206F: migration/yank_functions*
3207F: tests/unit/test-yank.c
3208F: include/qemu/yank.h
3209F: qapi/yank.json
3210
3211COLO Framework
3212M: Hailiang Zhang <zhanghailiang@xfusion.com>
3213S: Maintained
3214F: migration/colo*
3215F: include/migration/colo.h
3216F: include/migration/failover.h
3217F: docs/COLO-FT.txt
3218
3219COLO Proxy
3220M: Zhang Chen <chen.zhang@intel.com>
3221M: Li Zhijian <lizhijian@fujitsu.com>
3222S: Supported
3223F: docs/colo-proxy.txt
3224F: net/colo*
3225F: net/filter-rewriter.c
3226F: net/filter-mirror.c
3227F: tests/qtest/test-filter*
3228
3229Record/replay
3230M: Pavel Dovgalyuk <pavel.dovgaluk@ispras.ru>
3231R: Paolo Bonzini <pbonzini@redhat.com>
3232W: https://wiki.qemu.org/Features/record-replay
3233S: Supported
3234F: replay/*
3235F: block/blkreplay.c
3236F: net/filter-replay.c
3237F: include/sysemu/replay.h
3238F: docs/devel/replay.rst
3239F: docs/system/replay.rst
3240F: stubs/replay.c
3241F: tests/avocado/replay_kernel.py
3242F: tests/avocado/replay_linux.py
3243F: tests/avocado/reverse_debugging.py
3244F: qapi/replay.json
3245
3246IOVA Tree
3247M: Peter Xu <peterx@redhat.com>
3248S: Maintained
3249F: include/qemu/iova-tree.h
3250F: util/iova-tree.c
3251
3252elf2dmp
3253M: Viktor Prutyanov <viktor.prutyanov@phystech.edu>
3254S: Maintained
3255F: contrib/elf2dmp/
3256
3257I2C and SMBus
3258M: Corey Minyard <cminyard@mvista.com>
3259S: Maintained
3260F: hw/i2c/core.c
3261F: hw/i2c/smbus_slave.c
3262F: hw/i2c/smbus_master.c
3263F: hw/i2c/smbus_eeprom.c
3264F: include/hw/i2c/i2c.h
3265F: include/hw/i2c/smbus_master.h
3266F: include/hw/i2c/smbus_slave.h
3267F: include/hw/i2c/smbus_eeprom.h
3268
3269PMBus
3270M: Titus Rwantare <titusr@google.com>
3271S: Maintained
3272F: hw/i2c/pmbus_device.c
3273F: hw/sensor/adm1272.c
3274F: hw/sensor/isl_pmbus_vr.c
3275F: hw/sensor/max34451.c
3276F: include/hw/i2c/pmbus_device.h
3277F: include/hw/sensor/isl_pmbus_vr.h
3278F: tests/qtest/adm1272-test.c
3279F: tests/qtest/max34451-test.c
3280F: tests/qtest/isl_pmbus_vr-test.c
3281
3282Firmware schema specifications
3283M: Philippe Mathieu-Daudé <philmd@linaro.org>
3284R: Daniel P. Berrange <berrange@redhat.com>
3285R: Kashyap Chamarthy <kchamart@redhat.com>
3286S: Maintained
3287F: docs/interop/firmware.json
3288
3289EDK2 Firmware
3290M: Philippe Mathieu-Daudé <philmd@linaro.org>
3291M: Gerd Hoffmann <kraxel@redhat.com>
3292S: Supported
3293F: hw/i386/*ovmf*
3294F: pc-bios/descriptors/??-edk2-*.json
3295F: pc-bios/edk2-*
3296F: roms/Makefile.edk2
3297F: roms/edk2
3298F: roms/edk2-*
3299F: tests/data/uefi-boot-images/
3300F: tests/uefi-test-tools/
3301F: .gitlab-ci.d/edk2.yml
3302F: .gitlab-ci.d/edk2/
3303
3304VT-d Emulation
3305M: Michael S. Tsirkin <mst@redhat.com>
3306M: Peter Xu <peterx@redhat.com>
3307R: Jason Wang <jasowang@redhat.com>
3308S: Supported
3309F: hw/i386/intel_iommu.c
3310F: hw/i386/intel_iommu_internal.h
3311F: include/hw/i386/intel_iommu.h
3312
3313OpenSBI Firmware
3314M: Bin Meng <bmeng.cn@gmail.com>
3315S: Supported
3316F: pc-bios/opensbi-*
3317F: .gitlab-ci.d/opensbi.yml
3318F: .gitlab-ci.d/opensbi/
3319
3320Clock framework
3321M: Luc Michel <luc@lmichel.fr>
3322R: Damien Hedde <damien.hedde@greensocs.com>
3323S: Maintained
3324F: include/hw/clock.h
3325F: include/hw/qdev-clock.h
3326F: hw/core/clock.c
3327F: hw/core/clock-vmstate.c
3328F: hw/core/qdev-clock.c
3329F: docs/devel/clocks.rst
3330
3331Usermode Emulation
3332------------------
3333Overall usermode emulation
3334M: Riku Voipio <riku.voipio@iki.fi>
3335S: Maintained
3336F: accel/tcg/user-exec*.c
3337F: include/user/
3338F: common-user/
3339
3340BSD user
3341M: Warner Losh <imp@bsdimp.com>
3342R: Kyle Evans <kevans@freebsd.org>
3343S: Maintained
3344F: bsd-user/
3345F: configs/targets/*-bsd-user.mak
3346F: tests/vm/*bsd
3347T: git https://github.com/qemu-bsd-user/qemu-bsd-user bsd-user-rebase-3.1
3348
3349Linux user
3350M: Laurent Vivier <laurent@vivier.eu>
3351S: Maintained
3352F: linux-user/
3353F: configs/targets/*linux-user.mak
3354F: scripts/qemu-binfmt-conf.sh
3355F: scripts/update-syscalltbl.sh
3356F: scripts/update-mips-syscall-args.sh
3357F: scripts/gensyscalls.sh
3358
3359Tiny Code Generator (TCG)
3360-------------------------
3361Common TCG code
3362M: Richard Henderson <richard.henderson@linaro.org>
3363S: Maintained
3364F: tcg/
3365F: include/tcg/
3366
3367TCG Plugins
3368M: Alex Bennée <alex.bennee@linaro.org>
3369R: Alexandre Iooss <erdnaxe@crans.org>
3370R: Mahmoud Mandour <ma.mandourr@gmail.com>
3371S: Maintained
3372F: docs/devel/tcg-plugins.rst
3373F: plugins/
3374F: tests/plugin/
3375F: tests/avocado/tcg_plugins.py
3376F: contrib/plugins/
3377
3378AArch64 TCG target
3379M: Richard Henderson <richard.henderson@linaro.org>
3380S: Maintained
3381L: qemu-arm@nongnu.org
3382F: tcg/aarch64/
3383
3384ARM TCG target
3385M: Richard Henderson <richard.henderson@linaro.org>
3386S: Maintained
3387L: qemu-arm@nongnu.org
3388F: tcg/arm/
3389
3390i386 TCG target
3391M: Richard Henderson <richard.henderson@linaro.org>
3392S: Maintained
3393F: tcg/i386/
3394
3395LoongArch64 TCG target
3396M: WANG Xuerui <git@xen0n.name>
3397S: Maintained
3398F: tcg/loongarch64/
3399
3400MIPS TCG target
3401M: Philippe Mathieu-Daudé <philmd@linaro.org>
3402R: Aurelien Jarno <aurelien@aurel32.net>
3403R: Huacai Chen <chenhuacai@kernel.org>
3404R: Jiaxun Yang <jiaxun.yang@flygoat.com>
3405R: Aleksandar Rikalo <aleksandar.rikalo@syrmia.com>
3406S: Odd Fixes
3407F: tcg/mips/
3408
3409PPC TCG target
3410M: Richard Henderson <richard.henderson@linaro.org>
3411S: Odd Fixes
3412F: tcg/ppc/
3413
3414RISC-V TCG target
3415M: Palmer Dabbelt <palmer@dabbelt.com>
3416M: Alistair Francis <Alistair.Francis@wdc.com>
3417L: qemu-riscv@nongnu.org
3418S: Maintained
3419F: tcg/riscv/
3420F: disas/riscv.c
3421
3422S390 TCG target
3423M: Richard Henderson <richard.henderson@linaro.org>
3424S: Maintained
3425F: tcg/s390/
3426L: qemu-s390x@nongnu.org
3427
3428SPARC TCG target
3429S: Odd Fixes
3430F: tcg/sparc64/
3431F: disas/sparc.c
3432
3433TCI TCG target
3434M: Stefan Weil <sw@weilnetz.de>
3435S: Maintained
3436F: tcg/tci/
3437F: tcg/tci.c
3438F: disas/tci.c
3439
3440Block drivers
3441-------------
3442VMDK
3443M: Fam Zheng <fam@euphon.net>
3444L: qemu-block@nongnu.org
3445S: Supported
3446F: block/vmdk.c
3447
3448RBD
3449M: Ilya Dryomov <idryomov@gmail.com>
3450R: Peter Lieven <pl@kamp.de>
3451L: qemu-block@nongnu.org
3452S: Supported
3453F: block/rbd.c
3454
3455VHDX
3456M: Jeff Cody <codyprime@gmail.com>
3457L: qemu-block@nongnu.org
3458S: Supported
3459F: block/vhdx*
3460
3461VDI
3462M: Stefan Weil <sw@weilnetz.de>
3463L: qemu-block@nongnu.org
3464S: Maintained
3465F: block/vdi.c
3466
3467blkio
3468M: Stefan Hajnoczi <stefanha@redhat.com>
3469L: qemu-block@nongnu.org
3470S: Maintained
3471F: block/blkio.c
3472
3473iSCSI
3474M: Ronnie Sahlberg <ronniesahlberg@gmail.com>
3475M: Paolo Bonzini <pbonzini@redhat.com>
3476M: Peter Lieven <pl@kamp.de>
3477L: qemu-block@nongnu.org
3478S: Odd Fixes
3479F: block/iscsi.c
3480F: block/iscsi-opts.c
3481
3482Network Block Device (NBD)
3483M: Eric Blake <eblake@redhat.com>
3484M: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
3485L: qemu-block@nongnu.org
3486S: Maintained
3487F: block/nbd*
3488F: nbd/
3489F: include/block/nbd*
3490F: qemu-nbd.*
3491F: blockdev-nbd.c
3492F: docs/interop/nbd.txt
3493F: docs/tools/qemu-nbd.rst
3494F: tests/qemu-iotests/tests/*nbd*
3495T: git https://repo.or.cz/qemu/ericb.git nbd
3496T: git https://gitlab.com/vsementsov/qemu.git block
3497
3498NFS
3499M: Peter Lieven <pl@kamp.de>
3500L: qemu-block@nongnu.org
3501S: Maintained
3502F: block/nfs.c
3503
3504SSH
3505M: Richard W.M. Jones <rjones@redhat.com>
3506L: qemu-block@nongnu.org
3507S: Supported
3508F: block/ssh.c
3509
3510CURL
3511L: qemu-block@nongnu.org
3512S: Odd Fixes
3513F: block/curl.c
3514
3515GLUSTER
3516L: qemu-block@nongnu.org
3517L: integration@gluster.org
3518S: Odd Fixes
3519F: block/gluster.c
3520
3521Null Block Driver
3522M: Fam Zheng <fam@euphon.net>
3523L: qemu-block@nongnu.org
3524S: Supported
3525F: block/null.c
3526
3527NVMe Block Driver
3528M: Stefan Hajnoczi <stefanha@redhat.com>
3529R: Fam Zheng <fam@euphon.net>
3530R: Philippe Mathieu-Daudé <philmd@linaro.org>
3531L: qemu-block@nongnu.org
3532S: Supported
3533F: block/nvme*
3534F: include/block/nvme.h
3535T: git https://github.com/stefanha/qemu.git block
3536
3537Bootdevice
3538M: Gonglei <arei.gonglei@huawei.com>
3539S: Maintained
3540F: softmmu/bootdevice.c
3541
3542Quorum
3543M: Alberto Garcia <berto@igalia.com>
3544S: Supported
3545F: block/quorum.c
3546L: qemu-block@nongnu.org
3547
3548blklogwrites
3549M: Ari Sundholm <ari@tuxera.com>
3550L: qemu-block@nongnu.org
3551S: Supported
3552F: block/blklogwrites.c
3553
3554blkverify
3555M: Stefan Hajnoczi <stefanha@redhat.com>
3556L: qemu-block@nongnu.org
3557S: Supported
3558F: block/blkverify.c
3559
3560bochs
3561M: Stefan Hajnoczi <stefanha@redhat.com>
3562L: qemu-block@nongnu.org
3563S: Supported
3564F: block/bochs.c
3565
3566cloop
3567M: Stefan Hajnoczi <stefanha@redhat.com>
3568L: qemu-block@nongnu.org
3569S: Supported
3570F: block/cloop.c
3571
3572dmg
3573M: Stefan Hajnoczi <stefanha@redhat.com>
3574L: qemu-block@nongnu.org
3575S: Supported
3576F: block/dmg.c
3577
3578parallels
3579M: Stefan Hajnoczi <stefanha@redhat.com>
3580M: Denis V. Lunev <den@openvz.org>
3581L: qemu-block@nongnu.org
3582S: Supported
3583F: block/parallels.c
3584F: block/parallels-ext.c
3585F: docs/interop/parallels.txt
3586
3587qed
3588M: Stefan Hajnoczi <stefanha@redhat.com>
3589L: qemu-block@nongnu.org
3590S: Supported
3591F: block/qed.c
3592
3593raw
3594M: Kevin Wolf <kwolf@redhat.com>
3595L: qemu-block@nongnu.org
3596S: Supported
3597F: block/linux-aio.c
3598F: include/block/raw-aio.h
3599F: block/raw-format.c
3600F: block/file-posix.c
3601F: block/file-win32.c
3602F: block/win32-aio.c
3603
3604Linux io_uring
3605M: Aarushi Mehta <mehta.aaru20@gmail.com>
3606M: Julia Suvorova <jusual@redhat.com>
3607M: Stefan Hajnoczi <stefanha@redhat.com>
3608R: Stefano Garzarella <sgarzare@redhat.com>
3609L: qemu-block@nongnu.org
3610S: Maintained
3611F: block/io_uring.c
3612F: stubs/io_uring.c
3613
3614qcow2
3615M: Kevin Wolf <kwolf@redhat.com>
3616M: Hanna Reitz <hreitz@redhat.com>
3617L: qemu-block@nongnu.org
3618S: Supported
3619F: block/qcow2*
3620F: docs/interop/qcow2.txt
3621
3622qcow
3623M: Kevin Wolf <kwolf@redhat.com>
3624L: qemu-block@nongnu.org
3625S: Supported
3626F: block/qcow.c
3627
3628blkdebug
3629M: Kevin Wolf <kwolf@redhat.com>
3630M: Hanna Reitz <hreitz@redhat.com>
3631L: qemu-block@nongnu.org
3632S: Supported
3633F: block/blkdebug.c
3634
3635vpc
3636M: Kevin Wolf <kwolf@redhat.com>
3637L: qemu-block@nongnu.org
3638S: Supported
3639F: block/vpc.c
3640
3641vvfat
3642M: Kevin Wolf <kwolf@redhat.com>
3643L: qemu-block@nongnu.org
3644S: Odd Fixes
3645F: block/vvfat.c
3646
3647Image format fuzzer
3648M: Stefan Hajnoczi <stefanha@redhat.com>
3649L: qemu-block@nongnu.org
3650S: Supported
3651F: tests/image-fuzzer/
3652
3653Vhost-user block device backend server
3654M: Coiby Xu <Coiby.Xu@gmail.com>
3655S: Maintained
3656F: block/export/vhost-user-blk-server.c
3657F: block/export/vhost-user-blk-server.h
3658F: block/export/virtio-blk-handler.c
3659F: block/export/virtio-blk-handler.h
3660F: include/qemu/vhost-user-server.h
3661F: tests/qtest/libqos/vhost-user-blk.c
3662F: tests/qtest/libqos/vhost-user-blk.h
3663F: tests/qtest/vhost-user-blk-test.c
3664F: util/vhost-user-server.c
3665
3666FUSE block device exports
3667M: Hanna Reitz <hreitz@redhat.com>
3668L: qemu-block@nongnu.org
3669S: Supported
3670F: block/export/fuse.c
3671
3672VDUSE library and block device exports
3673M: Xie Yongji <xieyongji@bytedance.com>
3674S: Maintained
3675F: subprojects/libvduse/
3676F: block/export/vduse-blk.c
3677F: block/export/vduse-blk.h
3678
3679Replication
3680M: Wen Congyang <wencongyang2@huawei.com>
3681M: Xie Changlong <xiechanglong.d@gmail.com>
3682S: Supported
3683F: replication*
3684F: block/replication.c
3685F: tests/unit/test-replication.c
3686F: docs/block-replication.txt
3687
3688PVRDMA
3689M: Yuval Shaia <yuval.shaia.ml@gmail.com>
3690M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
3691S: Maintained
3692F: hw/rdma/*
3693F: hw/rdma/vmw/*
3694F: docs/pvrdma.txt
3695F: contrib/rdmacm-mux/*
3696F: qapi/rdma.json
3697
3698Semihosting
3699M: Alex Bennée <alex.bennee@linaro.org>
3700S: Maintained
3701F: semihosting/
3702F: include/semihosting/
3703F: tests/tcg/multiarch/arm-compat-semi/
3704F: tests/tcg/aarch64/system/semiheap.c
3705
3706Multi-process QEMU
3707M: Elena Ufimtseva <elena.ufimtseva@oracle.com>
3708M: Jagannathan Raman <jag.raman@oracle.com>
3709M: John G Johnson <john.g.johnson@oracle.com>
3710S: Maintained
3711F: docs/devel/multi-process.rst
3712F: docs/system/multi-process.rst
3713F: hw/pci-host/remote.c
3714F: include/hw/pci-host/remote.h
3715F: hw/remote/machine.c
3716F: include/hw/remote/machine.h
3717F: hw/remote/mpqemu-link.c
3718F: include/hw/remote/mpqemu-link.h
3719F: hw/remote/message.c
3720F: hw/remote/remote-obj.c
3721F: include/hw/remote/memory.h
3722F: hw/remote/memory.c
3723F: hw/remote/proxy.c
3724F: include/hw/remote/proxy.h
3725F: hw/remote/proxy-memory-listener.c
3726F: include/hw/remote/proxy-memory-listener.h
3727F: hw/remote/iohub.c
3728F: include/hw/remote/iohub.h
3729F: subprojects/libvfio-user
3730F: hw/remote/vfio-user-obj.c
3731F: include/hw/remote/vfio-user-obj.h
3732F: hw/remote/iommu.c
3733F: include/hw/remote/iommu.h
3734
3735EBPF:
3736M: Jason Wang <jasowang@redhat.com>
3737R: Andrew Melnychenko <andrew@daynix.com>
3738R: Yuri Benditovich <yuri.benditovich@daynix.com>
3739S: Maintained
3740F: ebpf/*
3741F: tools/ebpf/*
3742
3743Build and test automation
3744-------------------------
3745Build and test automation, general continuous integration
3746M: Alex Bennée <alex.bennee@linaro.org>
3747M: Philippe Mathieu-Daudé <philmd@linaro.org>
3748M: Thomas Huth <thuth@redhat.com>
3749R: Wainer dos Santos Moschetta <wainersm@redhat.com>
3750R: Beraldo Leal <bleal@redhat.com>
3751S: Maintained
3752F: .github/workflows/lockdown.yml
3753F: .gitlab-ci.yml
3754F: .gitlab-ci.d/
3755F: .travis.yml
3756F: scripts/ci/
3757F: tests/docker/
3758F: tests/vm/
3759F: tests/lcitool/
3760F: scripts/archive-source.sh
3761F: docs/devel/testing.rst
3762W: https://gitlab.com/qemu-project/qemu/pipelines
3763W: https://travis-ci.org/qemu/qemu
3764
3765FreeBSD Hosted Continuous Integration
3766M: Ed Maste <emaste@freebsd.org>
3767M: Li-Wen Hsu <lwhsu@freebsd.org>
3768S: Maintained
3769F: .gitlab-ci.d/cirrus/freebsd*
3770F: tests/vm/freebsd
3771W: https://cirrus-ci.com/github/qemu/qemu
3772
3773Windows Hosted Continuous Integration
3774M: Yonggang Luo <luoyonggang@gmail.com>
3775S: Maintained
3776F: .cirrus.yml
3777W: https://cirrus-ci.com/github/qemu/qemu
3778
3779Guest Test Compilation Support
3780M: Alex Bennée <alex.bennee@linaro.org>
3781R: Philippe Mathieu-Daudé <philmd@linaro.org>
3782S: Maintained
3783F: tests/tcg/Makefile.target
3784
3785Integration Testing with the Avocado framework
3786W: https://trello.com/b/6Qi1pxVn/avocado-qemu
3787R: Cleber Rosa <crosa@redhat.com>
3788R: Philippe Mathieu-Daudé <philmd@linaro.org>
3789R: Wainer dos Santos Moschetta <wainersm@redhat.com>
3790R: Beraldo Leal <bleal@redhat.com>
3791S: Odd Fixes
3792F: tests/avocado/
3793
3794GitLab custom runner (Works On Arm Sponsored)
3795M: Alex Bennée <alex.bennee@linaro.org>
3796M: Philippe Mathieu-Daudé <philmd@linaro.org>
3797S: Maintained
3798F: .gitlab-ci.d/custom-runners/ubuntu-22.04-aarch64.yml
3799F: .gitlab-ci.d/custom-runners/ubuntu-22.04-aarch32.yml
3800
3801Documentation
3802-------------
3803Build system architecture
3804M: Daniel P. Berrange <berrange@redhat.com>
3805S: Odd Fixes
3806F: docs/devel/build-system.rst
3807
3808GIT Data Mining Config
3809M: Alex Bennée <alex.bennee@linaro.org>
3810S: Odd Fixes
3811F: gitdm.config
3812F: contrib/gitdm/*
3813
3814Incompatible changes
3815R: libvir-list@redhat.com
3816F: docs/about/deprecated.rst
3817
3818Build System
3819------------
3820Meson
3821M: Paolo Bonzini <pbonzini@redhat.com>
3822R: Marc-André Lureau <marcandre.lureau@redhat.com>
3823R: Daniel P. Berrange <berrange@redhat.com>
3824R: Thomas Huth <thuth@redhat.com>
3825R: Philippe Mathieu-Daudé <philmd@linaro.org>
3826S: Maintained
3827F: meson.build
3828F: meson_options.txt
3829F: scripts/meson-buildoptions.*
3830F: scripts/check_sparse.py
3831F: scripts/symlink-install-tree.py
3832
3833Top Level Makefile and configure
3834M: Paolo Bonzini <pbonzini@redhat.com>
3835R: Alex Bennée <alex.bennee@linaro.org>
3836R: Thomas Huth <thuth@redhat.com>
3837S: Maintained
3838F: Makefile
3839F: configure
3840F: scripts/mtest2make.py
3841F: tests/Makefile.include
3842
3843GIT submodules
3844M: Daniel P. Berrange <berrange@redhat.com>
3845S: Odd Fixes
3846F: scripts/git-submodule.sh
3847
3848UI translations
3849S: Orphan
3850F: po/*.po
3851
3852Sphinx documentation configuration and build machinery
3853M: Peter Maydell <peter.maydell@linaro.org>
3854S: Maintained
3855F: docs/conf.py
3856F: docs/*/conf.py
3857F: docs/sphinx/
3858F: docs/_templates/
3859
3860Miscellaneous
3861-------------
3862Performance Tools and Tests
3863M: Ahmed Karaman <ahmedkhaledkaraman@gmail.com>
3864S: Maintained
3865F: scripts/performance/
3866