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