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