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