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