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