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