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