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