xref: /qemu/MAINTAINERS (revision 70ce076fa6dff60585c229a4b641b13e64bf03cf)
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
1565F: tests/functional/test_ppc_sam460ex.py
1566
1567pegasos2
1568M: BALATON Zoltan <balaton@eik.bme.hu>
1569L: qemu-ppc@nongnu.org
1570S: Maintained
1571F: hw/ppc/pegasos2.c
1572F: hw/pci-host/mv64361.c
1573F: hw/pci-host/mv643xx.h
1574F: include/hw/pci-host/mv64361.h
1575
1576amigaone
1577M: BALATON Zoltan <balaton@eik.bme.hu>
1578L: qemu-ppc@nongnu.org
1579S: Maintained
1580F: hw/ppc/amigaone.c
1581F: hw/pci-host/articia.c
1582F: include/hw/pci-host/articia.h
1583F: tests/functional/test_ppc_amiga.py
1584
1585Virtual Open Firmware (VOF)
1586M: Alexey Kardashevskiy <aik@ozlabs.ru>
1587L: qemu-ppc@nongnu.org
1588S: Odd Fixes
1589F: hw/ppc/spapr_vof*
1590F: hw/ppc/vof*
1591F: include/hw/ppc/vof*
1592F: pc-bios/vof/*
1593F: pc-bios/vof*
1594
1595RISC-V Machines
1596---------------
1597OpenTitan
1598M: Alistair Francis <Alistair.Francis@wdc.com>
1599L: qemu-riscv@nongnu.org
1600S: Supported
1601F: hw/riscv/opentitan.c
1602F: hw/*/ibex_*.c
1603F: include/hw/riscv/opentitan.h
1604F: include/hw/*/ibex_*.h
1605
1606Microchip PolarFire SoC Icicle Kit
1607M: Bin Meng <bmeng.cn@gmail.com>
1608L: qemu-riscv@nongnu.org
1609S: Supported
1610F: docs/system/riscv/microchip-icicle-kit.rst
1611F: hw/riscv/microchip_pfsoc.c
1612F: hw/char/mchp_pfsoc_mmuart.c
1613F: hw/misc/mchp_pfsoc_dmc.c
1614F: hw/misc/mchp_pfsoc_ioscb.c
1615F: hw/misc/mchp_pfsoc_sysreg.c
1616F: include/hw/riscv/microchip_pfsoc.h
1617F: include/hw/char/mchp_pfsoc_mmuart.h
1618F: include/hw/misc/mchp_pfsoc_dmc.h
1619F: include/hw/misc/mchp_pfsoc_ioscb.h
1620F: include/hw/misc/mchp_pfsoc_sysreg.h
1621
1622Shakti C class SoC
1623M: Vijai Kumar K <vijai@behindbytes.com>
1624L: qemu-riscv@nongnu.org
1625S: Supported
1626F: docs/system/riscv/shakti-c.rst
1627F: hw/riscv/shakti_c.c
1628F: hw/char/shakti_uart.c
1629F: include/hw/riscv/shakti_c.h
1630F: include/hw/char/shakti_uart.h
1631
1632SiFive Machines
1633M: Alistair Francis <Alistair.Francis@wdc.com>
1634M: Bin Meng <bmeng.cn@gmail.com>
1635M: Palmer Dabbelt <palmer@dabbelt.com>
1636L: qemu-riscv@nongnu.org
1637S: Supported
1638F: docs/system/riscv/sifive_u.rst
1639F: hw/*/*sifive*.c
1640F: include/hw/*/*sifive*.h
1641
1642AMD Microblaze-V Generic Board
1643M: Sai Pavan Boddu <sai.pavan.boddu@amd.com>
1644S: Maintained
1645F: hw/riscv/microblaze-v-generic.c
1646F: docs/system/riscv/microblaze-v-generic.rst
1647
1648RX Machines
1649-----------
1650rx-gdbsim
1651R: Yoshinori Sato <ysato@users.sourceforge.jp>
1652S: Orphan
1653F: docs/system/target-rx.rst
1654F: hw/rx/rx-gdbsim.c
1655F: tests/functional/test_rx_gdbsim.py
1656
1657SH4 Machines
1658------------
1659R2D
1660R: Yoshinori Sato <ysato@users.sourceforge.jp>
1661R: Magnus Damm <magnus.damm@gmail.com>
1662S: Odd Fixes
1663F: hw/char/sh_serial.c
1664F: hw/sh4/r2d.c
1665F: hw/intc/sh_intc.c
1666F: hw/pci-host/sh_pci.c
1667F: hw/timer/sh_timer.c
1668F: include/hw/sh4/sh_intc.h
1669F: include/hw/timer/tmu012.h
1670F: tests/functional/test_sh4*_r2d.py
1671F: tests/functional/test_sh4_tuxrun.py
1672
1673SPARC Machines
1674--------------
1675Sun4m
1676M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
1677S: Maintained
1678F: hw/sparc/sun4m.c
1679F: hw/sparc/sun4m_iommu.c
1680F: hw/display/cg3.c
1681F: hw/display/tcx.c
1682F: hw/dma/sparc32_dma.c
1683F: hw/misc/eccmemctl.c
1684F: hw/*/slavio_*.c
1685F: include/hw/nvram/sun_nvram.h
1686F: include/hw/sparc/sparc32_dma.h
1687F: include/hw/sparc/sun4m_iommu.h
1688F: pc-bios/openbios-sparc32
1689F: tests/functional/test_sparc_sun4m.py
1690
1691Sun4u
1692M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
1693S: Maintained
1694F: hw/sparc64/sun4u.c
1695F: hw/sparc64/sun4u_iommu.c
1696F: include/hw/sparc/sun4u_iommu.h
1697F: hw/pci-host/sabre.c
1698F: include/hw/pci-host/sabre.h
1699F: hw/pci-bridge/simba.c
1700F: include/hw/pci-bridge/simba.h
1701F: pc-bios/openbios-sparc64
1702F: tests/functional/test_sparc64_sun4u.py
1703F: tests/functional/test_sparc64_tuxrun.py
1704
1705Sun4v
1706M: Artyom Tarasenko <atar4qemu@gmail.com>
1707S: Maintained
1708F: hw/sparc64/niagara.c
1709F: hw/rtc/sun4v-rtc.c
1710F: include/hw/rtc/sun4v-rtc.h
1711
1712Leon3
1713M: Clément Chigot <chigot@adacore.com>
1714M: Frederic Konrad <konrad.frederic@yahoo.fr>
1715S: Maintained
1716F: hw/sparc/leon3.c
1717F: hw/*/grlib*
1718F: include/hw/*/grlib*
1719
1720S390 Machines
1721-------------
1722S390 Virtio-ccw
1723M: Halil Pasic <pasic@linux.ibm.com>
1724M: Christian Borntraeger <borntraeger@linux.ibm.com>
1725M: Eric Farman <farman@linux.ibm.com>
1726S: Supported
1727F: hw/s390x/
1728F: include/hw/s390x/
1729F: configs/devices/s390x-softmmu/default.mak
1730F: tests/functional/test_s390x_*
1731T: git https://github.com/borntraeger/qemu.git s390-next
1732L: qemu-s390x@nongnu.org
1733
1734S390-ccw boot
1735M: Christian Borntraeger <borntraeger@linux.ibm.com>
1736M: Thomas Huth <thuth@redhat.com>
1737S: Supported
1738F: hw/s390x/ipl.*
1739F: pc-bios/s390-ccw/
1740F: pc-bios/s390-ccw.img
1741F: docs/devel/s390-dasd-ipl.rst
1742T: git https://github.com/borntraeger/qemu.git s390-next
1743L: qemu-s390x@nongnu.org
1744
1745S390 PCI
1746M: Matthew Rosato <mjrosato@linux.ibm.com>
1747M: Eric Farman <farman@linux.ibm.com>
1748S: Supported
1749F: hw/s390x/s390-pci*
1750F: include/hw/s390x/s390-pci*
1751L: qemu-s390x@nongnu.org
1752
1753S390 channel subsystem
1754M: Halil Pasic <pasic@linux.ibm.com>
1755M: Christian Borntraeger <borntraeger@linux.ibm.com>
1756M: Eric Farman <farman@linux.ibm.com>
1757S: Supported
1758F: hw/s390x/ccw-device.[ch]
1759F: hw/s390x/css.c
1760F: hw/s390x/css-bridge.c
1761F: include/hw/s390x/css.h
1762F: include/hw/s390x/css-bridge.h
1763F: include/hw/s390x/ioinst.h
1764F: target/s390x/ioinst.c
1765L: qemu-s390x@nongnu.org
1766
1767S390 CPU models
1768M: David Hildenbrand <david@redhat.com>
1769S: Maintained
1770F: target/s390x/cpu_features*.[ch]
1771F: target/s390x/cpu_models.[ch]
1772L: qemu-s390x@nongnu.org
1773
1774S390 SCLP-backed devices
1775M: Halil Pasic <pasic@linux.ibm.com>
1776M: Christian Borntraeger <borntraeger@linux.ibm.com>
1777S: Supported
1778F: include/hw/s390x/event-facility.h
1779F: include/hw/s390x/sclp.h
1780F: hw/char/sclp*.[hc]
1781F: hw/s390x/event-facility.c
1782F: hw/s390x/sclp*.c
1783L: qemu-s390x@nongnu.org
1784
1785S390 CPU topology
1786M: Nina Schoetterl-Glausch <nsg@linux.ibm.com>
1787S: Supported
1788F: include/hw/s390x/cpu-topology.h
1789F: hw/s390x/cpu-topology.c
1790F: target/s390x/kvm/stsi-topology.c
1791F: docs/devel/s390-cpu-topology.rst
1792F: docs/system/s390x/cpu-topology.rst
1793F: tests/functional/test_s390x_topology.py
1794
1795X86 Machines
1796------------
1797PC
1798M: Michael S. Tsirkin <mst@redhat.com>
1799M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
1800S: Supported
1801F: include/hw/i386/
1802F: hw/i386/
1803F: hw/pci-host/i440fx.c
1804F: hw/pci-host/q35.c
1805F: hw/pci-host/pam.c
1806F: include/hw/pci-host/i440fx.h
1807F: include/hw/pci-host/q35.h
1808F: include/hw/pci-host/pam.h
1809F: hw/isa/piix.c
1810F: hw/isa/lpc_ich9.c
1811F: hw/i2c/smbus_ich9.c
1812F: hw/acpi/piix4.c
1813F: hw/acpi/ich9*.c
1814F: include/hw/acpi/ich9*.h
1815F: include/hw/southbridge/ich9.h
1816F: include/hw/southbridge/piix.h
1817F: hw/isa/apm.c
1818F: include/hw/isa/apm.h
1819F: tests/unit/test-x86-topo.c
1820F: tests/qtest/test-x86-cpuid-compat.c
1821F: tests/functional/test_i386_tuxrun.py
1822F: tests/functional/test_mem_addr_space.py
1823F: tests/functional/test_pc_cpu_hotplug_props.py
1824F: tests/functional/test_x86_64_tuxrun.py
1825F: tests/functional/test_x86_cpu_model_versions.py
1826
1827PC Chipset
1828M: Michael S. Tsirkin <mst@redhat.com>
1829M: Paolo Bonzini <pbonzini@redhat.com>
1830S: Supported
1831F: hw/char/debugcon.c
1832F: hw/char/parallel*
1833F: hw/char/serial*
1834F: hw/dma/i8257*
1835F: hw/i2c/pm_smbus.c
1836F: hw/input/pckbd.c
1837F: hw/intc/apic*
1838F: hw/intc/ioapic*
1839F: hw/intc/i8259*
1840F: hw/isa/isa-superio.c
1841F: hw/misc/debugexit.c
1842F: hw/misc/pc-testdev.c
1843F: hw/timer/hpet*
1844F: hw/timer/i8254*
1845F: hw/rtc/mc146818rtc*
1846F: hw/watchdog/wdt_ib700.c
1847F: hw/watchdog/wdt_i6300esb.c
1848F: include/hw/display/vga.h
1849F: include/hw/char/parallel*.h
1850F: include/hw/dma/i8257.h
1851F: include/hw/i2c/pm_smbus.h
1852F: include/hw/input/i8042.h
1853F: include/hw/intc/ioapic*
1854F: include/hw/intc/i8259.h
1855F: include/hw/isa/i8259_internal.h
1856F: include/hw/isa/superio.h
1857F: include/hw/timer/hpet.h
1858F: include/hw/timer/i8254*
1859F: include/hw/rtc/mc146818rtc*
1860
1861microvm
1862M: Sergio Lopez <slp@redhat.com>
1863M: Paolo Bonzini <pbonzini@redhat.com>
1864S: Maintained
1865F: docs/system/i386/microvm.rst
1866F: hw/i386/microvm.c
1867F: include/hw/i386/microvm.h
1868F: pc-bios/bios-microvm.bin
1869
1870nitro-enclave
1871M: Alexander Graf <graf@amazon.com>
1872M: Dorjoy Chowdhury <dorjoychy111@gmail.com>
1873S: Maintained
1874F: hw/core/eif.c
1875F: hw/core/eif.h
1876F: hw/i386/nitro_enclave.c
1877F: include/hw/i386/nitro_enclave.h
1878F: docs/system/i386/nitro-enclave.rst
1879
1880Machine core
1881M: Eduardo Habkost <eduardo@habkost.net>
1882M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
1883R: Philippe Mathieu-Daudé <philmd@linaro.org>
1884R: Yanan Wang <wangyanan55@huawei.com>
1885R: Zhao Liu <zhao1.liu@intel.com>
1886S: Supported
1887F: hw/core/cpu-common.c
1888F: hw/core/cpu-system.c
1889F: hw/core/machine-qmp-cmds.c
1890F: hw/core/machine.c
1891F: hw/core/machine-smp.c
1892F: hw/core/null-machine.c
1893F: hw/core/numa.c
1894F: hw/cpu/cluster.c
1895F: qapi/machine.json
1896F: qapi/machine-common.json
1897F: qapi/machine-target.json
1898F: include/hw/boards.h
1899F: include/hw/core/cpu.h
1900F: include/hw/cpu/cluster.h
1901F: include/system/numa.h
1902F: tests/functional/test_cpu_queries.py
1903F: tests/functional/test_empty_cpu_model.py
1904F: tests/unit/test-smp-parse.c
1905T: git https://gitlab.com/ehabkost/qemu.git machine-next
1906
1907Xtensa Machines
1908---------------
1909sim
1910M: Max Filippov <jcmvbkbc@gmail.com>
1911S: Maintained
1912F: hw/xtensa/sim.c
1913
1914virt
1915M: Max Filippov <jcmvbkbc@gmail.com>
1916S: Maintained
1917F: hw/xtensa/virt.c
1918
1919XTFPGA (LX60, LX200, ML605, KC705)
1920M: Max Filippov <jcmvbkbc@gmail.com>
1921S: Maintained
1922F: hw/xtensa/xtfpga.c
1923F: hw/net/opencores_eth.c
1924F: include/hw/xtensa/mx_pic.h
1925F: tests/functional/test_xtensa_lx60.py
1926
1927Devices
1928-------
1929Overall Audio frontends
1930M: Gerd Hoffmann <kraxel@redhat.com>
1931S: Odd Fixes
1932F: hw/audio/
1933F: include/hw/audio/
1934F: tests/qtest/ac97-test.c
1935F: tests/qtest/es1370-test.c
1936F: tests/qtest/intel-hda-test.c
1937F: tests/qtest/fuzz-sb16-test.c
1938
1939Xilinx CAN
1940M: Francisco Iglesias <francisco.iglesias@amd.com>
1941M: Vikram Garhwal <vikram.garhwal@bytedance.com>
1942S: Maintained
1943F: hw/net/can/xlnx-*
1944F: include/hw/net/xlnx-*
1945F: tests/qtest/xlnx-can*-test*
1946
1947EDU
1948M: Jiri Slaby <jslaby@suse.cz>
1949S: Maintained
1950F: hw/misc/edu.c
1951F: docs/specs/edu.rst
1952
1953IDE
1954M: John Snow <jsnow@redhat.com>
1955L: qemu-block@nongnu.org
1956S: Odd Fixes
1957F: include/hw/ide/
1958F: hw/ide/
1959F: hw/block/block.c
1960F: hw/block/cdrom.c
1961F: hw/block/hd-geometry.c
1962F: tests/qtest/ide-test.c
1963F: tests/qtest/ahci-test.c
1964F: tests/qtest/cdrom-test.c
1965F: tests/qtest/libqos/ahci*
1966T: git https://gitlab.com/jsnow/qemu.git ide
1967
1968IPMI
1969M: Corey Minyard <minyard@acm.org>
1970S: Maintained
1971F: include/hw/ipmi/*
1972F: hw/ipmi/*
1973F: hw/smbios/smbios_type_38.c
1974F: tests/qtest/ipmi*
1975T: git https://github.com/cminyard/qemu.git master-ipmi-rebase
1976
1977Floppy
1978M: John Snow <jsnow@redhat.com>
1979L: qemu-block@nongnu.org
1980S: Odd Fixes
1981F: hw/block/fdc.c
1982F: hw/block/fdc-internal.h
1983F: hw/block/fdc-isa.c
1984F: hw/block/fdc-sysbus.c
1985F: include/hw/block/fdc.h
1986F: tests/qtest/fdc-test.c
1987T: git https://gitlab.com/jsnow/qemu.git ide
1988
1989Hyper-V VMBus
1990M: Maciej S. Szmigiero <maciej.szmigiero@oracle.com>
1991S: Odd Fixes
1992F: hw/hyperv/vmbus.c
1993F: include/hw/hyperv/vmbus*.h
1994
1995OMAP
1996M: Peter Maydell <peter.maydell@linaro.org>
1997L: qemu-arm@nongnu.org
1998S: Maintained
1999F: hw/*/omap*
2000F: include/hw/arm/omap.h
2001F: docs/system/arm/sx1.rst
2002
2003IPack
2004M: Alberto Garcia <berto@igalia.com>
2005S: Odd Fixes
2006F: hw/char/ipoctal232.c
2007F: hw/ipack/
2008
2009PCI
2010M: Michael S. Tsirkin <mst@redhat.com>
2011M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
2012S: Supported
2013F: include/hw/pci/*
2014F: hw/misc/pci-testdev.c
2015F: hw/pci/*
2016F: hw/pci-bridge/*
2017F: qapi/pci.json
2018F: docs/pci*
2019F: docs/specs/*pci*
2020
2021PCIE DOE
2022M: Huai-Cheng Kuo <hchkuo@avery-design.com.tw>
2023M: Chris Browy <cbrowy@avery-design.com>
2024S: Supported
2025F: include/hw/pci/pcie_doe.h
2026F: hw/pci/pcie_doe.c
2027
2028ACPI/SMBIOS
2029M: Michael S. Tsirkin <mst@redhat.com>
2030M: Igor Mammedov <imammedo@redhat.com>
2031R: Ani Sinha <anisinha@redhat.com>
2032S: Supported
2033F: include/hw/acpi/*
2034F: include/hw/firmware/smbios.h
2035F: hw/acpi/*
2036F: hw/smbios/*
2037F: hw/i386/acpi-build.[hc]
2038F: hw/arm/virt-acpi-build.c
2039F: qapi/acpi.json
2040F: tests/qtest/bios-tables-test*
2041F: tests/qtest/acpi-utils.[hc]
2042F: tests/data/acpi/
2043F: docs/specs/acpi_cpu_hotplug.rst
2044F: docs/specs/acpi_mem_hotplug.rst
2045F: docs/specs/acpi_nvdimm.rst
2046F: docs/specs/acpi_pci_hotplug.rst
2047F: docs/specs/acpi_hw_reduced_hotplug.rst
2048
2049ARM ACPI Subsystem
2050M: Shannon Zhao <shannon.zhaosl@gmail.com>
2051L: qemu-arm@nongnu.org
2052S: Maintained
2053F: hw/arm/virt-acpi-build.c
2054
2055RISC-V ACPI Subsystem
2056M: Sunil V L <sunilvl@ventanamicro.com>
2057L: qemu-riscv@nongnu.org
2058S: Maintained
2059F: hw/riscv/virt-acpi-build.c
2060
2061ACPI/VIOT
2062M: Jean-Philippe Brucker <jean-philippe@linaro.org>
2063S: Supported
2064F: hw/acpi/viot.c
2065F: hw/acpi/viot.h
2066
2067ACPI/AVOCADO/BIOSBITS
2068M: Ani Sinha <anisinha@redhat.com>
2069M: Michael S. Tsirkin <mst@redhat.com>
2070S: Supported
2071F: tests/functional/acpi-bits/*
2072F: tests/functional/test_acpi_bits.py
2073F: docs/devel/acpi-bits.rst
2074
2075ACPI/HEST/GHES
2076R: Dongjiu Geng <gengdongjiu1@gmail.com>
2077L: qemu-arm@nongnu.org
2078S: Maintained
2079F: hw/acpi/ghes.c
2080F: include/hw/acpi/ghes.h
2081F: docs/specs/acpi_hest_ghes.rst
2082
2083ppc4xx
2084L: qemu-ppc@nongnu.org
2085S: Orphan
2086F: hw/ppc/ppc4xx*.c
2087F: hw/ppc/ppc440_uc.c
2088F: hw/ppc/ppc440.h
2089F: hw/i2c/ppc4xx_i2c.c
2090F: include/hw/pci-host/ppc4xx.h
2091F: include/hw/ppc/ppc4xx.h
2092F: include/hw/i2c/ppc4xx_i2c.h
2093F: hw/intc/ppc-uic.c
2094F: include/hw/intc/ppc-uic.h
2095
2096Character devices
2097M: Marc-André Lureau <marcandre.lureau@redhat.com>
2098R: Paolo Bonzini <pbonzini@redhat.com>
2099S: Odd Fixes
2100F: hw/char/
2101F: include/hw/char/
2102
2103Network devices
2104M: Jason Wang <jasowang@redhat.com>
2105S: Odd Fixes
2106F: hw/net/
2107F: include/hw/net/
2108F: tests/qtest/virtio-net-test.c
2109F: tests/functional/test_info_usernet.py
2110F: docs/virtio-net-failover.rst
2111T: git https://github.com/jasowang/qemu.git net
2112
2113Parallel NOR Flash devices
2114M: Philippe Mathieu-Daudé <philmd@linaro.org>
2115T: git https://gitlab.com/philmd/qemu.git pflash-next
2116S: Maintained
2117F: hw/block/pflash_cfi*.c
2118F: include/hw/block/flash.h
2119
2120SCSI
2121M: Paolo Bonzini <pbonzini@redhat.com>
2122R: Fam Zheng <fam@euphon.net>
2123S: Supported
2124F: include/hw/scsi/*
2125F: hw/scsi/*
2126F: tests/qtest/virtio-scsi-test.c
2127F: tests/qtest/fuzz-virtio-scsi-test.c
2128F: tests/qtest/am53c974-test.c
2129F: tests/qtest/fuzz-lsi53c895a-test.c
2130T: git https://github.com/bonzini/qemu.git scsi-next
2131
2132SSI
2133M: Alistair Francis <alistair@alistair23.me>
2134S: Maintained
2135F: hw/ssi/*
2136F: hw/block/m25p80*
2137F: include/hw/ssi/ssi.h
2138X: hw/ssi/xilinx_*
2139F: tests/qtest/m25p80-test.c
2140
2141Xilinx SPI
2142M: Alistair Francis <alistair@alistair23.me>
2143S: Maintained
2144F: hw/ssi/xilinx_*
2145
2146SD (Secure Card)
2147M: Philippe Mathieu-Daudé <philmd@linaro.org>
2148M: Bin Meng <bmeng.cn@gmail.com>
2149L: qemu-block@nongnu.org
2150S: Odd Fixes
2151F: include/hw/sd/sd*
2152F: hw/sd/core.c
2153F: hw/sd/sd*
2154F: hw/sd/ssi-sd.c
2155F: tests/qtest/fuzz-sdcard-test.c
2156F: tests/qtest/sdhci-test.c
2157
2158USB
2159S: Orphan
2160F: hw/usb/*
2161F: stubs/usb-dev-stub.c
2162F: tests/qtest/usb-*-test.c
2163F: docs/system/devices/usb.rst
2164F: include/hw/usb.h
2165F: include/hw/usb/
2166
2167USB (serial adapter)
2168M: Samuel Thibault <samuel.thibault@ens-lyon.org>
2169S: Maintained
2170F: hw/usb/dev-serial.c
2171
2172VFIO
2173M: Alex Williamson <alex.williamson@redhat.com>
2174M: Cédric Le Goater <clg@redhat.com>
2175S: Supported
2176F: hw/vfio/*
2177F: include/hw/vfio/
2178F: docs/igd-assign.txt
2179F: docs/devel/migration/vfio.rst
2180F: qapi/vfio.json
2181
2182vfio-ccw
2183M: Eric Farman <farman@linux.ibm.com>
2184M: Matthew Rosato <mjrosato@linux.ibm.com>
2185S: Supported
2186F: hw/vfio/ccw.c
2187F: hw/s390x/s390-ccw.c
2188F: include/hw/s390x/s390-ccw.h
2189F: include/hw/s390x/vfio-ccw.h
2190L: qemu-s390x@nongnu.org
2191
2192vfio-ap
2193M: Tony Krowiak <akrowiak@linux.ibm.com>
2194M: Halil Pasic <pasic@linux.ibm.com>
2195M: Jason Herne <jjherne@linux.ibm.com>
2196S: Supported
2197F: hw/s390x/ap-device.c
2198F: hw/s390x/ap-bridge.c
2199F: include/hw/s390x/ap-device.h
2200F: include/hw/s390x/ap-bridge.h
2201F: hw/vfio/ap.c
2202F: docs/system/s390x/vfio-ap.rst
2203L: qemu-s390x@nongnu.org
2204
2205iommufd
2206M: Yi Liu <yi.l.liu@intel.com>
2207M: Eric Auger <eric.auger@redhat.com>
2208M: Zhenzhong Duan <zhenzhong.duan@intel.com>
2209S: Supported
2210F: backends/iommufd.c
2211F: include/system/iommufd.h
2212F: backends/host_iommu_device.c
2213F: include/system/host_iommu_device.h
2214F: include/qemu/chardev_open.h
2215F: util/chardev_open.c
2216F: docs/devel/vfio-iommufd.rst
2217
2218vhost
2219M: Michael S. Tsirkin <mst@redhat.com>
2220R: Stefano Garzarella <sgarzare@redhat.com>
2221S: Supported
2222F: hw/*/*vhost*
2223F: docs/interop/vhost-user.json
2224F: docs/interop/vhost-user.rst
2225F: contrib/vhost-user-*/
2226F: backends/vhost-user.c
2227F: include/system/vhost-user-backend.h
2228F: subprojects/libvhost-user/
2229
2230vhost-shadow-virtqueue
2231R: Eugenio Pérez <eperezma@redhat.com>
2232F: hw/virtio/vhost-shadow-virtqueue.*
2233
2234virtio
2235M: Michael S. Tsirkin <mst@redhat.com>
2236S: Supported
2237F: hw/*/virtio*
2238F: hw/virtio/Makefile.objs
2239F: hw/virtio/trace-events
2240F: qapi/virtio.json
2241F: net/vhost-user.c
2242F: include/hw/virtio/
2243F: docs/devel/virtio*
2244F: docs/devel/migration/virtio.rst
2245F: tests/functional/test_virtio_version.py
2246
2247virtio-balloon
2248M: Michael S. Tsirkin <mst@redhat.com>
2249M: David Hildenbrand <david@redhat.com>
2250S: Maintained
2251F: docs/interop/virtio-balloon-stats.rst
2252F: hw/virtio/virtio-balloon*.c
2253F: include/hw/virtio/virtio-balloon.h
2254F: system/balloon.c
2255F: include/system/balloon.h
2256F: tests/qtest/virtio-balloon-test.c
2257
2258virtio-9p
2259M: Christian Schoenebeck <qemu_oss@crudebyte.com>
2260R: Greg Kurz <groug@kaod.org>
2261S: Maintained
2262W: https://wiki.qemu.org/Documentation/9p
2263F: hw/9pfs/
2264X: hw/9pfs/xen-9p*
2265F: fsdev/
2266F: tests/qtest/virtio-9p-test.c
2267F: tests/qtest/libqos/virtio-9p*
2268T: git https://github.com/cschoenebeck/qemu.git 9p.next
2269
2270virtio-blk
2271M: Stefan Hajnoczi <stefanha@redhat.com>
2272L: qemu-block@nongnu.org
2273S: Supported
2274F: hw/block/virtio-blk-common.c
2275F: hw/block/virtio-blk.c
2276F: hw/block/dataplane/*
2277F: include/hw/virtio/virtio-blk-common.h
2278F: tests/qtest/virtio-blk-test.c
2279F: tests/functional/test_x86_64_hotplug_blk.py
2280T: git https://github.com/stefanha/qemu.git block
2281
2282virtio-ccw
2283M: Cornelia Huck <cohuck@redhat.com>
2284M: Halil Pasic <pasic@linux.ibm.com>
2285M: Eric Farman <farman@linux.ibm.com>
2286S: Supported
2287F: hw/s390x/virtio-ccw*.[hc]
2288F: hw/s390x/vhost-*-ccw.c
2289T: git https://gitlab.com/cohuck/qemu.git s390-next
2290T: git https://github.com/borntraeger/qemu.git s390-next
2291L: qemu-s390x@nongnu.org
2292
2293virtio-dmabuf
2294M: Albert Esteve <aesteve@redhat.com>
2295S: Supported
2296F: hw/display/virtio-dmabuf.c
2297F: include/hw/virtio/virtio-dmabuf.h
2298F: tests/unit/test-virtio-dmabuf.c
2299
2300virtiofs
2301M: Stefan Hajnoczi <stefanha@redhat.com>
2302S: Supported
2303F: hw/virtio/vhost-user-fs*
2304F: include/hw/virtio/vhost-user-fs.h
2305L: virtio-fs@lists.linux.dev
2306
2307virtio-input
2308M: Gerd Hoffmann <kraxel@redhat.com>
2309S: Odd Fixes
2310F: docs/system/devices/vhost-user-input.rst
2311F: hw/input/virtio-input*.c
2312F: hw/virtio/vhost-user-input.c
2313F: include/hw/virtio/virtio-input.h
2314F: contrib/vhost-user-input/*
2315
2316virtio-iommu
2317M: Eric Auger <eric.auger@redhat.com>
2318S: Maintained
2319F: hw/virtio/virtio-iommu*.c
2320F: include/hw/virtio/virtio-iommu.h
2321
2322virtio-serial
2323M: Laurent Vivier <lvivier@redhat.com>
2324R: Amit Shah <amit@kernel.org>
2325S: Supported
2326F: hw/char/virtio-serial-bus.c
2327F: hw/char/virtio-console.c
2328F: include/hw/virtio/virtio-serial.h
2329F: tests/qtest/virtio-serial-test.c
2330
2331virtio-rng
2332M: Laurent Vivier <lvivier@redhat.com>
2333R: Amit Shah <amit@kernel.org>
2334S: Supported
2335F: hw/virtio/virtio-rng.c
2336F: include/hw/virtio/virtio-rng.h
2337F: include/system/rng*.h
2338F: backends/rng*.c
2339F: tests/qtest/virtio-rng-test.c
2340
2341virtio-nsm
2342M: Alexander Graf <graf@amazon.com>
2343M: Dorjoy Chowdhury <dorjoychy111@gmail.com>
2344S: Maintained
2345F: hw/virtio/cbor-helpers.c
2346F: hw/virtio/virtio-nsm.c
2347F: hw/virtio/virtio-nsm-pci.c
2348F: include/hw/virtio/cbor-helpers.h
2349F: include/hw/virtio/virtio-nsm.h
2350
2351vhost-user-stubs
2352M: Alex Bennée <alex.bennee@linaro.org>
2353S: Maintained
2354F: hw/virtio/vhost-user-base.c
2355F: hw/virtio/vhost-user-device*
2356
2357vhost-user-rng
2358M: Mathieu Poirier <mathieu.poirier@linaro.org>
2359S: Supported
2360F: docs/system/devices/vhost-user-rng.rst
2361F: hw/virtio/vhost-user-rng.c
2362F: hw/virtio/vhost-user-rng-pci.c
2363F: include/hw/virtio/vhost-user-rng.h
2364F: tools/vhost-user-rng/*
2365
2366vhost-user-gpio
2367M: Alex Bennée <alex.bennee@linaro.org>
2368R: Viresh Kumar <viresh.kumar@linaro.org>
2369S: Maintained
2370F: hw/virtio/vhost-user-gpio*
2371F: include/hw/virtio/vhost-user-gpio.h
2372F: tests/qtest/libqos/virtio-gpio.*
2373
2374vhost-user-snd
2375M: Alex Bennée <alex.bennee@linaro.org>
2376R: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
2377S: Maintained
2378F: hw/virtio/vhost-user-snd*
2379F: include/hw/virtio/vhost-user-snd.h
2380
2381vhost-user-scmi
2382R: mzamazal@redhat.com
2383S: Supported
2384F: hw/virtio/vhost-user-scmi*
2385F: include/hw/virtio/vhost-user-scmi.h
2386F: tests/qtest/libqos/virtio-scmi.*
2387
2388virtio-crypto
2389M: Gonglei <arei.gonglei@huawei.com>
2390S: Supported
2391F: hw/virtio/virtio-crypto.c
2392F: hw/virtio/virtio-crypto-pci.c
2393F: include/hw/virtio/virtio-crypto.h
2394
2395virtio based memory device
2396M: David Hildenbrand <david@redhat.com>
2397S: Supported
2398F: hw/s390x/virtio-ccw-md.c
2399F: hw/s390x/virtio-ccw-md.h
2400F: hw/s390x/virtio-ccw-md-stubs.c
2401F: hw/virtio/virtio-md-pci.c
2402F: include/hw/virtio/virtio-md-pci.h
2403F: stubs/virtio-md-pci.c
2404
2405virtio-mem
2406M: David Hildenbrand <david@redhat.com>
2407S: Supported
2408W: https://virtio-mem.gitlab.io/
2409F: hw/virtio/virtio-mem.c
2410F: hw/virtio/virtio-mem-pci.h
2411F: hw/virtio/virtio-mem-pci.c
2412F: hw/s390x/virtio-ccw-mem.c
2413F: hw/s390x/virtio-ccw-mem.h
2414F: include/hw/virtio/virtio-mem.h
2415
2416virtio-snd
2417M: Gerd Hoffmann <kraxel@redhat.com>
2418R: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
2419S: Supported
2420F: hw/audio/virtio-snd.c
2421F: hw/audio/virtio-snd-pci.c
2422F: include/hw/audio/virtio-snd.h
2423F: docs/system/devices/virtio-snd.rst
2424
2425nvme
2426M: Keith Busch <kbusch@kernel.org>
2427M: Klaus Jensen <its@irrelevant.dk>
2428R: Jesper Devantier <foss@defmacro.it>
2429L: qemu-block@nongnu.org
2430S: Supported
2431F: hw/nvme/*
2432F: include/block/nvme.h
2433F: tests/qtest/nvme-test.c
2434F: docs/system/devices/nvme.rst
2435T: git git://git.infradead.org/qemu-nvme.git nvme-next
2436
2437ufs
2438M: Jeuk Kim <jeuk20.kim@samsung.com>
2439S: Supported
2440F: hw/ufs/*
2441F: include/block/ufs.h
2442F: tests/qtest/ufs-test.c
2443
2444megasas
2445M: Hannes Reinecke <hare@suse.com>
2446L: qemu-block@nongnu.org
2447S: Supported
2448F: hw/scsi/megasas.c
2449F: hw/scsi/mfi.h
2450F: tests/qtest/megasas-test.c
2451F: tests/qtest/fuzz-megasas-test.c
2452
2453Network packet abstractions
2454M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
2455R: Akihiko Odaki <akihiko.odaki@daynix.com>
2456S: Maintained
2457F: include/net/eth.h
2458F: net/eth.c
2459F: hw/net/net_rx_pkt*
2460F: hw/net/net_tx_pkt*
2461
2462Vmware
2463M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
2464S: Maintained
2465F: docs/specs/vmw_pvscsi-spec.txt
2466F: hw/display/vmware_vga.c
2467F: hw/net/vmxnet*
2468F: hw/scsi/vmw_pvscsi*
2469F: pc-bios/efi-vmxnet3.rom
2470F: pc-bios/vgabios-vmware.bin
2471F: roms/config.vga-vmware
2472F: tests/qtest/vmxnet3-test.c
2473F: docs/specs/vwm_pvscsi-spec.rst
2474
2475Rocker
2476M: Jiri Pirko <jiri@resnulli.us>
2477S: Maintained
2478F: hw/net/rocker/
2479F: qapi/rocker.json
2480F: tests/rocker/
2481F: docs/specs/rocker.rst
2482
2483e1000x
2484M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
2485R: Akihiko Odaki <akihiko.odaki@daynix.com>
2486S: Maintained
2487F: hw/net/e1000x*
2488
2489e1000e
2490M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
2491R: Akihiko Odaki <akihiko.odaki@daynix.com>
2492S: Maintained
2493F: hw/net/e1000e*
2494F: tests/qtest/fuzz-e1000e-test.c
2495F: tests/qtest/e1000e-test.c
2496F: tests/qtest/libqos/e1000e.*
2497
2498igb
2499M: Akihiko Odaki <akihiko.odaki@daynix.com>
2500R: Sriram Yagnaraman <sriram.yagnaraman@ericsson.com>
2501S: Maintained
2502F: docs/system/devices/igb.rst
2503F: hw/net/igb*
2504F: tests/functional/test_netdev_ethtool.py
2505F: tests/qtest/igb-test.c
2506F: tests/qtest/libqos/igb.c
2507
2508eepro100
2509M: Stefan Weil <sw@weilnetz.de>
2510S: Maintained
2511F: hw/net/eepro100.c
2512
2513tulip
2514M: Sven Schnelle <svens@stackframe.org>
2515S: Maintained
2516F: hw/net/tulip.c
2517F: hw/net/tulip.h
2518
2519pca954x
2520M: Patrick Leis <venture@google.com>
2521S: Maintained
2522F: hw/i2c/i2c_mux_pca954x.c
2523F: include/hw/i2c/i2c_mux_pca954x.h
2524
2525pcf8574
2526M: Dmitrii Sharikhin <d.sharikhin@yadro.com>
2527S: Maintained
2528F: hw/gpio/pcf8574.c
2529F: include/gpio/pcf8574.h
2530
2531Generic Loader
2532M: Alistair Francis <alistair@alistair23.me>
2533S: Maintained
2534F: hw/core/generic-loader.c
2535F: hw/core/uboot_image.h
2536F: include/hw/core/generic-loader.h
2537F: docs/system/generic-loader.rst
2538
2539Guest Loader
2540M: Alex Bennée <alex.bennee@linaro.org>
2541S: Maintained
2542F: hw/core/guest-loader.c
2543F: docs/system/guest-loader.rst
2544F: tests/functional/test_aarch64_xen.py
2545
2546Intel Hexadecimal Object File Loader
2547M: Su Hang <suhang16@mails.ucas.ac.cn>
2548S: Maintained
2549F: tests/qtest/hexloader-test.c
2550F: tests/data/hex-loader/test.hex
2551
2552CHRP NVRAM
2553M: Thomas Huth <thuth@redhat.com>
2554S: Maintained
2555F: hw/nvram/chrp_nvram.c
2556F: include/hw/nvram/chrp_nvram.h
2557F: tests/qtest/prom-env-test.c
2558
2559VM Generation ID
2560S: Orphan
2561R: Ani Sinha <ani@anisinha.ca>
2562F: hw/acpi/vmgenid.c
2563F: include/hw/acpi/vmgenid.h
2564F: docs/specs/vmgenid.rst
2565F: tests/qtest/vmgenid-test.c
2566
2567LED
2568M: Philippe Mathieu-Daudé <philmd@linaro.org>
2569S: Maintained
2570F: include/hw/misc/led.h
2571F: hw/misc/led.c
2572
2573Unimplemented device
2574M: Peter Maydell <peter.maydell@linaro.org>
2575R: Philippe Mathieu-Daudé <philmd@linaro.org>
2576R: Ani Sinha <ani@anisinha.ca>
2577S: Maintained
2578F: include/hw/misc/unimp.h
2579F: hw/misc/unimp.c
2580
2581Empty slot
2582M: Artyom Tarasenko <atar4qemu@gmail.com>
2583R: Philippe Mathieu-Daudé <philmd@linaro.org>
2584R: Ani Sinha <ani@anisinha.ca>
2585S: Maintained
2586F: include/hw/misc/empty_slot.h
2587F: hw/misc/empty_slot.c
2588
2589Standard VGA
2590M: Gerd Hoffmann <kraxel@redhat.com>
2591S: Maintained
2592F: hw/display/vga*
2593F: hw/display/bochs-display.c
2594F: include/hw/display/vga.h
2595F: include/hw/display/bochs-vbe.h
2596F: docs/specs/standard-vga.rst
2597
2598ramfb
2599M: Gerd Hoffmann <kraxel@redhat.com>
2600S: Maintained
2601F: hw/display/ramfb*.c
2602F: include/hw/display/ramfb.h
2603
2604virtio-gpu
2605S: Orphan
2606F: hw/display/virtio-gpu*
2607F: hw/display/virtio-vga.*
2608F: include/hw/virtio/virtio-gpu.h
2609F: docs/system/devices/virtio-gpu.rst
2610
2611vhost-user-blk
2612M: Raphael Norwitz <raphael@enfabrica.net>
2613S: Maintained
2614F: contrib/vhost-user-blk/
2615F: contrib/vhost-user-scsi/
2616F: hw/block/vhost-user-blk.c
2617F: hw/block/virtio-blk-common.c
2618F: hw/scsi/vhost-user-scsi.c
2619F: hw/virtio/vhost-user-blk-pci.c
2620F: hw/virtio/vhost-user-scsi-pci.c
2621F: include/hw/virtio/vhost-user-blk.h
2622F: include/hw/virtio/vhost-user-scsi.h
2623F: include/hw/virtio/virtio-blk-common.h
2624
2625vhost-user-gpu
2626M: Marc-André Lureau <marcandre.lureau@redhat.com>
2627S: Maintained
2628F: docs/interop/vhost-user-gpu.rst
2629F: contrib/vhost-user-gpu
2630F: hw/display/vhost-user-*
2631
2632Cirrus VGA
2633M: Gerd Hoffmann <kraxel@redhat.com>
2634S: Odd Fixes
2635W: https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
2636F: hw/display/cirrus*
2637
2638EDID Generator
2639M: Gerd Hoffmann <kraxel@redhat.com>
2640S: Maintained
2641F: hw/display/edid*
2642F: include/hw/display/edid.h
2643F: qemu-edid.c
2644
2645macOS PV Graphics (apple-gfx)
2646M: Phil Dennis-Jordan <phil@philjordan.eu>
2647S: Maintained
2648F: hw/display/apple-gfx*
2649
2650PIIX4 South Bridge (i82371AB)
2651M: Hervé Poussineau <hpoussin@reactos.org>
2652M: Philippe Mathieu-Daudé <philmd@linaro.org>
2653S: Maintained
2654F: hw/isa/piix.c
2655F: include/hw/southbridge/piix.h
2656
2657VIA South Bridges (VT82C686B, VT8231)
2658M: BALATON Zoltan <balaton@eik.bme.hu>
2659M: Philippe Mathieu-Daudé <philmd@linaro.org>
2660R: Jiaxun Yang <jiaxun.yang@flygoat.com>
2661S: Maintained
2662F: hw/isa/vt82c686.c
2663F: hw/usb/vt82c686-uhci-pci.c
2664F: include/hw/isa/vt82c686.h
2665
2666Firmware configuration (fw_cfg)
2667M: Philippe Mathieu-Daudé <philmd@linaro.org>
2668R: Gerd Hoffmann <kraxel@redhat.com>
2669S: Supported
2670F: docs/specs/fw_cfg.txt
2671F: hw/nvram/fw_cfg*.c
2672F: stubs/fw_cfg.c
2673F: include/hw/nvram/fw_cfg.h
2674F: include/standard-headers/linux/qemu_fw_cfg.h
2675F: tests/qtest/libqos/fw_cfg.c
2676F: tests/qtest/fw_cfg-test.c
2677T: git https://github.com/philmd/qemu.git fw_cfg-next
2678
2679XIVE
2680R: Frédéric Barrat <fbarrat@linux.ibm.com>
2681L: qemu-ppc@nongnu.org
2682S: Odd Fixes
2683F: hw/*/*xive*
2684F: include/hw/*/*xive*
2685F: tests/qtest/*xive*
2686F: docs/*/*xive*
2687
2688Renesas peripherals
2689R: Yoshinori Sato <ysato@users.sourceforge.jp>
2690R: Magnus Damm <magnus.damm@gmail.com>
2691S: Odd Fixes
2692F: hw/char/renesas_sci.c
2693F: hw/char/sh_serial.c
2694F: hw/timer/renesas_*.c
2695F: hw/timer/sh_timer.c
2696F: include/hw/char/renesas_sci.h
2697F: include/hw/sh4/sh.h
2698F: include/hw/timer/renesas_*.h
2699
2700Renesas RX peripherals
2701R: Yoshinori Sato <ysato@users.sourceforge.jp>
2702S: Orphan
2703F: hw/intc/rx_icu.c
2704F: hw/rx/
2705F: include/hw/intc/rx_icu.h
2706F: include/hw/rx/
2707
2708CAN bus subsystem and hardware
2709M: Pavel Pisa <pisa@cmp.felk.cvut.cz>
2710M: Francisco Iglesias <francisco.iglesias@amd.com>
2711M: Vikram Garhwal <vikram.garhwal@bytedance.com>
2712S: Maintained
2713W: https://canbus.pages.fel.cvut.cz/
2714F: net/can/*
2715F: hw/net/can/*
2716F: include/net/can_*.h
2717F: docs/system/devices/can.rst
2718
2719OpenPIC interrupt controller
2720M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
2721S: Odd Fixes
2722F: hw/intc/openpic.c
2723F: include/hw/ppc/openpic.h
2724
2725MIPS CPS
2726M: Philippe Mathieu-Daudé <philmd@linaro.org>
2727S: Odd Fixes
2728F: hw/misc/mips_*
2729F: include/hw/misc/mips_*
2730
2731MIPS GIC
2732M: Philippe Mathieu-Daudé <philmd@linaro.org>
2733S: Odd Fixes
2734F: hw/intc/mips_gic.c
2735F: hw/timer/mips_gictimer.c
2736F: include/hw/intc/mips_gic.h
2737F: include/hw/timer/mips_gictimer.h
2738
2739S390 3270 device
2740M: Halil Pasic <pasic@linux.ibm.com>
2741M: Christian Borntraeger <borntraeger@linux.ibm.com>
2742S: Odd fixes
2743F: include/hw/s390x/3270-ccw.h
2744F: hw/char/terminal3270.c
2745F: hw/s390x/3270-ccw.c
2746L: qemu-s390x@nongnu.org
2747
2748S390 diag 288 watchdog
2749M: Halil Pasic <pasic@linux.ibm.com>
2750M: Christian Borntraeger <borntraeger@linux.ibm.com>
2751S: Supported
2752F: hw/watchdog/wdt_diag288.c
2753F: include/hw/watchdog/wdt_diag288.h
2754L: qemu-s390x@nongnu.org
2755
2756S390 storage key device
2757M: Halil Pasic <pasic@linux.ibm.com>
2758M: Christian Borntraeger <borntraeger@linux.ibm.com>
2759S: Supported
2760F: hw/s390x/storage-keys.h
2761F: hw/s390x/s390-skeys*.c
2762L: qemu-s390x@nongnu.org
2763
2764S390 storage attribute device
2765M: Halil Pasic <pasic@linux.ibm.com>
2766M: Christian Borntraeger <borntraeger@linux.ibm.com>
2767S: Supported
2768F: hw/s390x/storage-attributes.h
2769F: hw/s390x/s390-stattrib*.c
2770L: qemu-s390x@nongnu.org
2771
2772S390 floating interrupt controller
2773M: Halil Pasic <pasic@linux.ibm.com>
2774M: Christian Borntraeger <borntraeger@linux.ibm.com>
2775M: David Hildenbrand <david@redhat.com>
2776S: Supported
2777F: hw/intc/s390_flic*.c
2778F: include/hw/s390x/s390_flic.h
2779L: qemu-s390x@nongnu.org
2780
2781CanoKey
2782M: Hongren (Zenithal) Zheng <i@zenithal.me>
2783S: Maintained
2784R: Canokeys.org <contact@canokeys.org>
2785F: hw/usb/canokey.c
2786F: hw/usb/canokey.h
2787F: docs/system/devices/canokey.rst
2788
2789Hyper-V Dynamic Memory Protocol
2790M: Maciej S. Szmigiero <maciej.szmigiero@oracle.com>
2791S: Supported
2792F: hw/hyperv/hv-balloon*.c
2793F: hw/hyperv/hv-balloon*.h
2794F: include/hw/hyperv/dynmem-proto.h
2795F: include/hw/hyperv/hv-balloon.h
2796
2797ivshmem-flat
2798M: Gustavo Romero <gustavo.romero@linaro.org>
2799S: Maintained
2800F: hw/misc/ivshmem-flat.c
2801F: include/hw/misc/ivshmem-flat.h
2802F: docs/system/devices/ivshmem-flat.rst
2803
2804Subsystems
2805----------
2806Overall Audio backends
2807M: Gerd Hoffmann <kraxel@redhat.com>
2808M: Marc-André Lureau <marcandre.lureau@redhat.com>
2809S: Odd Fixes
2810F: audio/
2811X: audio/alsaaudio.c
2812X: audio/coreaudio.m
2813X: audio/dsound*
2814X: audio/jackaudio.c
2815X: audio/ossaudio.c
2816X: audio/paaudio.c
2817X: audio/sdlaudio.c
2818X: audio/sndioaudio.c
2819X: audio/spiceaudio.c
2820F: qapi/audio.json
2821
2822ALSA Audio backend
2823M: Gerd Hoffmann <kraxel@redhat.com>
2824R: Christian Schoenebeck <qemu_oss@crudebyte.com>
2825S: Odd Fixes
2826F: audio/alsaaudio.c
2827
2828Core Audio framework backend
2829M: Gerd Hoffmann <kraxel@redhat.com>
2830M: Philippe Mathieu-Daudé <philmd@linaro.org>
2831R: Christian Schoenebeck <qemu_oss@crudebyte.com>
2832R: Akihiko Odaki <akihiko.odaki@daynix.com>
2833S: Odd Fixes
2834F: audio/coreaudio.m
2835
2836DSound Audio backend
2837M: Gerd Hoffmann <kraxel@redhat.com>
2838S: Odd Fixes
2839F: audio/dsound*
2840
2841JACK Audio Connection Kit backend
2842M: Gerd Hoffmann <kraxel@redhat.com>
2843R: Christian Schoenebeck <qemu_oss@crudebyte.com>
2844S: Odd Fixes
2845F: audio/jackaudio.c
2846
2847Open Sound System (OSS) Audio backend
2848M: Gerd Hoffmann <kraxel@redhat.com>
2849S: Odd Fixes
2850F: audio/ossaudio.c
2851
2852PulseAudio backend
2853M: Gerd Hoffmann <kraxel@redhat.com>
2854S: Odd Fixes
2855F: audio/paaudio.c
2856
2857SDL Audio backend
2858M: Gerd Hoffmann <kraxel@redhat.com>
2859R: Thomas Huth <huth@tuxfamily.org>
2860S: Odd Fixes
2861F: audio/sdlaudio.c
2862
2863Sndio Audio backend
2864M: Gerd Hoffmann <kraxel@redhat.com>
2865R: Alexandre Ratchov <alex@caoua.org>
2866S: Odd Fixes
2867F: audio/sndioaudio.c
2868
2869Block layer core
2870M: Kevin Wolf <kwolf@redhat.com>
2871M: Hanna Reitz <hreitz@redhat.com>
2872L: qemu-block@nongnu.org
2873S: Supported
2874F: block*
2875F: block/
2876F: hw/block/
2877F: qapi/block*.json
2878F: qapi/transaction.json
2879F: include/block/
2880F: include/system/block-*.h
2881F: qemu-img*
2882F: docs/tools/qemu-img.rst
2883F: qemu-io*
2884F: tests/qemu-iotests/
2885F: util/qemu-progress.c
2886F: qobject/block-qdict.c
2887F: tests/unit/check-block-qdict.c
2888T: git https://repo.or.cz/qemu/kevin.git block
2889
2890Storage daemon
2891M: Kevin Wolf <kwolf@redhat.com>
2892L: qemu-block@nongnu.org
2893S: Supported
2894F: storage-daemon/
2895F: docs/interop/qemu-storage-daemon-qmp-ref.rst
2896F: docs/tools/qemu-storage-daemon.rst
2897T: git https://repo.or.cz/qemu/kevin.git block
2898
2899Block I/O path
2900M: Stefan Hajnoczi <stefanha@redhat.com>
2901M: Fam Zheng <fam@euphon.net>
2902L: qemu-block@nongnu.org
2903S: Supported
2904F: util/async.c
2905F: util/aio-*.c
2906F: util/aio-*.h
2907F: util/defer-call.c
2908F: util/fdmon-*.c
2909F: block/io.c
2910F: include/block/aio.h
2911F: include/block/aio-wait.h
2912F: include/qemu/defer-call.h
2913F: scripts/qemugdb/aio.py
2914F: tests/unit/test-fdmon-epoll.c
2915T: git https://github.com/stefanha/qemu.git block
2916
2917Block SCSI subsystem
2918M: Paolo Bonzini <pbonzini@redhat.com>
2919R: Fam Zheng <fam@euphon.net>
2920L: qemu-block@nongnu.org
2921S: Supported
2922F: include/scsi/*
2923F: scsi/*
2924
2925Block Jobs
2926M: John Snow <jsnow@redhat.com>
2927M: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
2928L: qemu-block@nongnu.org
2929S: Supported
2930F: blockjob.c
2931F: include/block/blockjob.h
2932F: job.c
2933F: job-qmp.c
2934F: include/qemu/job.h
2935F: block/backup.c
2936F: block/commit.c
2937F: block/stream.c
2938F: block/mirror.c
2939F: qapi/job.json
2940F: block/block-copy.c
2941F: include/block/block-copy.h
2942F: block/reqlist.c
2943F: include/block/reqlist.h
2944F: block/copy-before-write.h
2945F: block/copy-before-write.c
2946F: block/snapshot-access.c
2947F: include/block/aio_task.h
2948F: block/aio_task.c
2949F: util/qemu-co-shared-resource.c
2950F: include/qemu/co-shared-resource.h
2951T: git https://gitlab.com/jsnow/qemu.git jobs
2952T: git https://gitlab.com/vsementsov/qemu.git block
2953
2954Compute Express Link
2955M: Jonathan Cameron <jonathan.cameron@huawei.com>
2956R: Fan Ni <fan.ni@samsung.com>
2957S: Supported
2958F: hw/cxl/
2959F: hw/mem/cxl_type3.c
2960F: include/hw/cxl/
2961F: qapi/cxl.json
2962
2963Dirty Bitmaps
2964M: Eric Blake <eblake@redhat.com>
2965M: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
2966R: John Snow <jsnow@redhat.com>
2967L: qemu-block@nongnu.org
2968S: Supported
2969F: include/qemu/hbitmap.h
2970F: include/block/dirty-bitmap.h
2971F: block/monitor/bitmap-qmp-cmds.c
2972F: block/dirty-bitmap.c
2973F: block/qcow2-bitmap.c
2974F: migration/block-dirty-bitmap.c
2975F: util/hbitmap.c
2976F: tests/unit/test-hbitmap.c
2977F: docs/interop/bitmaps.rst
2978T: git https://repo.or.cz/qemu/ericb.git bitmaps
2979T: git https://gitlab.com/vsementsov/qemu.git block
2980
2981Character device backends
2982M: Marc-André Lureau <marcandre.lureau@redhat.com>
2983R: Paolo Bonzini <pbonzini@redhat.com>
2984S: Maintained
2985F: chardev/
2986F: include/chardev/
2987F: qapi/char.json
2988
2989Character Devices (Braille)
2990M: Samuel Thibault <samuel.thibault@ens-lyon.org>
2991S: Maintained
2992F: chardev/baum.c
2993
2994Command line option argument parsing
2995M: Markus Armbruster <armbru@redhat.com>
2996S: Supported
2997F: include/qemu/option.h
2998F: tests/unit/test-keyval.c
2999F: tests/unit/test-qemu-opts.c
3000F: tests/functional/test_version.py
3001F: util/keyval.c
3002F: util/qemu-option.c
3003
3004Coverity model
3005M: Markus Armbruster <armbru@redhat.com>
3006S: Supported
3007F: scripts/coverity-model.c
3008
3009Coverity Scan integration
3010M: Peter Maydell <peter.maydell@linaro.org>
3011S: Maintained
3012F: scripts/coverity-scan/
3013
3014Device Tree
3015M: Alistair Francis <alistair.francis@wdc.com>
3016R: David Gibson <david@gibson.dropbear.id.au>
3017S: Maintained
3018F: system/device_tree.c
3019F: include/system/device_tree.h
3020
3021Dump
3022S: Supported
3023M: Marc-André Lureau <marcandre.lureau@redhat.com>
3024R: Ani Sinha <anisinha@redhat.com>
3025F: dump/
3026F: hw/misc/vmcoreinfo.c
3027F: include/hw/misc/vmcoreinfo.h
3028F: include/qemu/win_dump_defs
3029F: include/system/dump-arch.h
3030F: include/system/dump.h
3031F: qapi/dump.json
3032F: scripts/dump-guest-memory.py
3033F: stubs/dump.c
3034F: docs/specs/vmcoreinfo.rst
3035F: tests/qtest/vmcoreinfo-test.c
3036
3037Error reporting
3038M: Markus Armbruster <armbru@redhat.com>
3039S: Supported
3040F: include/qapi/error.h
3041F: include/qemu/error-report.h
3042F: qapi/error.json
3043F: util/error.c
3044F: util/error-report.c
3045F: scripts/coccinelle/err-bad-newline.cocci
3046F: scripts/coccinelle/error-use-after-free.cocci
3047F: scripts/coccinelle/error_propagate_null.cocci
3048F: scripts/coccinelle/remove_local_err.cocci
3049F: scripts/coccinelle/use-error_fatal.cocci
3050F: scripts/coccinelle/errp-guard.cocci
3051
3052GDB stub
3053M: Alex Bennée <alex.bennee@linaro.org>
3054R: Philippe Mathieu-Daudé <philmd@linaro.org>
3055S: Maintained
3056F: docs/system/gdb.rst
3057F: gdbstub/*
3058F: include/exec/gdbstub.h
3059F: include/gdbstub/*
3060F: gdb-xml/
3061F: tests/tcg/multiarch/gdbstub/*
3062F: scripts/feature_to_c.py
3063F: scripts/probe-gdb-support.py
3064T: git https://gitlab.com/stsquad/qemu gdbstub/next
3065
3066Memory API
3067M: Paolo Bonzini <pbonzini@redhat.com>
3068M: Peter Xu <peterx@redhat.com>
3069M: David Hildenbrand <david@redhat.com>
3070R: Philippe Mathieu-Daudé <philmd@linaro.org>
3071S: Supported
3072F: include/exec/ioport.h
3073F: include/exec/memop.h
3074F: include/exec/memory.h
3075F: include/exec/ram_addr.h
3076F: include/exec/ramblock.h
3077F: include/system/memory_mapping.h
3078F: system/dma-helpers.c
3079F: system/ioport.c
3080F: system/memory.c
3081F: system/memory_mapping.c
3082F: system/physmem.c
3083F: include/exec/memory-internal.h
3084F: scripts/coccinelle/memory-region-housekeeping.cocci
3085
3086Memory devices
3087M: David Hildenbrand <david@redhat.com>
3088M: Igor Mammedov <imammedo@redhat.com>
3089R: Xiao Guangrong <xiaoguangrong.eric@gmail.com>
3090S: Supported
3091F: hw/mem/memory-device.c
3092F: hw/mem/nvdimm.c
3093F: hw/mem/pc-dimm.c
3094F: include/hw/mem/memory-device.h
3095F: include/hw/mem/nvdimm.h
3096F: include/hw/mem/pc-dimm.h
3097F: stubs/memory_device.c
3098F: docs/nvdimm.txt
3099
3100SPICE
3101S: Orphan
3102F: include/ui/qemu-spice.h
3103F: include/ui/spice-display.h
3104F: ui/spice-*.c
3105F: audio/spiceaudio.c
3106F: hw/display/qxl*
3107F: qapi/ui.json
3108F: docs/spice-port-fqdn.txt
3109
3110Graphics
3111M: Marc-André Lureau <marcandre.lureau@redhat.com>
3112S: Odd Fixes
3113F: ui/
3114F: include/ui/
3115F: qapi/ui.json
3116F: util/drm.c
3117F: docs/devel/ui.rst
3118
3119Cocoa graphics
3120M: Peter Maydell <peter.maydell@linaro.org>
3121M: Philippe Mathieu-Daudé <philmd@linaro.org>
3122R: Akihiko Odaki <akihiko.odaki@daynix.com>
3123S: Odd Fixes
3124F: ui/cocoa.m
3125
3126Main loop
3127M: Paolo Bonzini <pbonzini@redhat.com>
3128S: Maintained
3129F: include/qemu/main-loop.h
3130F: include/system/runstate.h
3131F: include/system/runstate-action.h
3132F: util/main-loop.c
3133F: util/qemu-timer*.c
3134F: system/vl.c
3135F: system/main.c
3136F: system/cpus.c
3137F: system/cpu-throttle.c
3138F: system/cpu-timers.c
3139F: system/runstate*
3140F: qapi/run-state.json
3141
3142Read, Copy, Update (RCU)
3143M: Paolo Bonzini <pbonzini@redhat.com>
3144S: Maintained
3145F: docs/devel/lockcnt.rst
3146F: docs/devel/rcu.rst
3147F: include/qemu/rcu*.h
3148F: include/qemu/lockcnt.h
3149F: tests/unit/rcutorture.c
3150F: tests/unit/test-rcu-*.c
3151F: util/lockcnt.c
3152F: util/rcu.c
3153
3154Human Monitor (HMP)
3155M: Dr. David Alan Gilbert <dave@treblig.org>
3156S: Maintained
3157F: monitor/monitor-internal.h
3158F: monitor/misc.c
3159F: monitor/monitor.c
3160F: monitor/hmp*
3161F: hmp.h
3162F: hmp-commands*.hx
3163F: include/monitor/hmp-target.h
3164F: tests/qtest/test-hmp.c
3165F: include/qemu/qemu-print.h
3166F: util/qemu-print.c
3167
3168Network device backends
3169M: Jason Wang <jasowang@redhat.com>
3170S: Maintained
3171F: net/
3172F: include/net/
3173F: qemu-bridge-helper.c
3174T: git https://github.com/jasowang/qemu.git net
3175F: qapi/net.json
3176
3177Netmap network backend
3178M: Luigi Rizzo <rizzo@iet.unipi.it>
3179M: Giuseppe Lettieri <g.lettieri@iet.unipi.it>
3180M: Vincenzo Maffione <v.maffione@gmail.com>
3181W: http://info.iet.unipi.it/~luigi/netmap/
3182S: Maintained
3183F: net/netmap.c
3184
3185AF_XDP network backend
3186R: Ilya Maximets <i.maximets@ovn.org>
3187F: net/af-xdp.c
3188
3189Host Memory Backends
3190M: David Hildenbrand <david@redhat.com>
3191M: Igor Mammedov <imammedo@redhat.com>
3192S: Maintained
3193F: backends/hostmem*.c
3194F: include/system/hostmem.h
3195F: docs/system/vm-templating.rst
3196T: git https://gitlab.com/ehabkost/qemu.git machine-next
3197
3198Cryptodev Backends
3199M: Gonglei <arei.gonglei@huawei.com>
3200M: zhenwei pi <pizhenwei@bytedance.com>
3201S: Maintained
3202F: include/system/cryptodev*.h
3203F: backends/cryptodev*.c
3204F: qapi/cryptodev.json
3205
3206Python library
3207M: John Snow <jsnow@redhat.com>
3208M: Cleber Rosa <crosa@redhat.com>
3209S: Maintained
3210F: python/
3211T: git https://gitlab.com/jsnow/qemu.git python
3212
3213Python scripts
3214M: John Snow <jsnow@redhat.com>
3215M: Cleber Rosa <crosa@redhat.com>
3216S: Odd Fixes
3217F: scripts/*.py
3218F: tests/*.py
3219
3220Benchmark util
3221M: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
3222S: Maintained
3223F: scripts/simplebench/
3224T: git https://gitlab.com/vsementsov/qemu.git simplebench
3225
3226Transactions helper
3227M: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
3228S: Maintained
3229F: include/qemu/transactions.h
3230F: util/transactions.c
3231T: git https://gitlab.com/vsementsov/qemu.git block
3232
3233QAPI
3234M: Markus Armbruster <armbru@redhat.com>
3235M: Michael Roth <michael.roth@amd.com>
3236S: Supported
3237F: qapi/
3238X: qapi/*.json
3239F: include/qapi/
3240F: tests/qapi-schema/
3241F: tests/unit/test-*-visitor.c
3242F: tests/unit/test-qapi-*.c
3243F: tests/unit/test-qmp-*.c
3244F: tests/unit/test-visitor-serialization.c
3245F: scripts/qapi-gen.py
3246F: scripts/qapi/*
3247F: docs/sphinx/qapidoc.py
3248F: docs/devel/qapi*
3249T: git https://repo.or.cz/qemu/armbru.git qapi-next
3250
3251QAPI Schema
3252M: Eric Blake <eblake@redhat.com>
3253M: Markus Armbruster <armbru@redhat.com>
3254S: Supported
3255F: qapi/*.json
3256F: qga/qapi-schema.json
3257T: git https://repo.or.cz/qemu/armbru.git qapi-next
3258
3259QObject
3260M: Markus Armbruster <armbru@redhat.com>
3261S: Supported
3262F: qobject/
3263F: include/qobject/
3264F: scripts/coccinelle/qobject.cocci
3265F: tests/unit/check-qdict.c
3266F: tests/unit/check-qjson.c
3267F: tests/unit/check-qlist.c
3268F: tests/unit/check-qlit.c
3269F: tests/unit/check-qnull.c
3270F: tests/unit/check-qnum.c
3271F: tests/unit/check-qobject.c
3272F: tests/unit/check-qstring.c
3273F: tests/data/qobject/qdict.txt
3274T: git https://repo.or.cz/qemu/armbru.git qapi-next
3275
3276QEMU Guest Agent
3277M: Michael Roth <michael.roth@amd.com>
3278M: Konstantin Kostiuk <kkostiuk@redhat.com>
3279S: Maintained
3280F: qga/
3281F: contrib/systemd/qemu-guest-agent.service
3282F: docs/interop/qemu-ga.rst
3283F: docs/interop/qemu-ga-ref.rst
3284F: scripts/qemu-guest-agent/
3285F: tests/*/test-qga*
3286T: git https://github.com/mdroth/qemu.git qga
3287
3288QEMU Guest Agent Win32
3289M: Konstantin Kostiuk <kkostiuk@redhat.com>
3290S: Maintained
3291F: qga/*win32*
3292F: qga/vss-win32/
3293F: qga/installer/
3294T: git https://github.com/kostyanf14/qemu.git qga-win32
3295
3296QOM
3297M: Paolo Bonzini <pbonzini@redhat.com>
3298R: Daniel P. Berrange <berrange@redhat.com>
3299R: Eduardo Habkost <eduardo@habkost.net>
3300S: Supported
3301F: docs/devel/qom.rst
3302F: docs/qdev-device-use.txt
3303F: hw/core/qdev*
3304F: hw/core/bus.c
3305F: hw/core/sysbus.c
3306F: include/hw/qdev*
3307F: include/monitor/qdev.h
3308F: include/qom/
3309F: qapi/qom.json
3310F: qapi/qdev.json
3311F: scripts/coccinelle/qom-parent-type.cocci
3312F: scripts/qom-cast-macro-clean-cocci-gen.py
3313F: system/qdev-monitor.c
3314F: stubs/qdev.c
3315F: qom/
3316F: tests/unit/check-qom-interface.c
3317F: tests/unit/check-qom-proplist.c
3318F: tests/unit/test-qdev-global-props.c
3319
3320QOM boilerplate conversion script
3321M: Eduardo Habkost <eduardo@habkost.net>
3322S: Maintained
3323F: scripts/codeconverter/
3324
3325QMP
3326M: Markus Armbruster <armbru@redhat.com>
3327S: Supported
3328F: monitor/monitor-internal.h
3329F: monitor/qmp*
3330F: monitor/misc.c
3331F: monitor/monitor.c
3332F: qapi/control.json
3333F: qapi/error.json
3334F: qapi/introspect.json
3335F: docs/devel/*qmp-*
3336F: docs/interop/*qmp-*
3337F: scripts/qmp/
3338F: tests/qtest/qmp-test.c
3339F: tests/qtest/qmp-cmd-test.c
3340T: git https://repo.or.cz/qemu/armbru.git qapi-next
3341
3342qtest
3343M: Fabiano Rosas <farosas@suse.de>
3344M: Laurent Vivier <lvivier@redhat.com>
3345R: Paolo Bonzini <pbonzini@redhat.com>
3346S: Maintained
3347F: system/qtest.c
3348F: include/system/qtest.h
3349F: accel/qtest/
3350F: tests/qtest/
3351F: docs/devel/qgraph.rst
3352F: docs/devel/qtest.rst
3353X: tests/qtest/bios-tables-test*
3354X: tests/qtest/migration-*
3355
3356Device Fuzzing
3357M: Alexander Bulekov <alxndr@bu.edu>
3358R: Paolo Bonzini <pbonzini@redhat.com>
3359R: Bandan Das <bsd@redhat.com>
3360R: Stefan Hajnoczi <stefanha@redhat.com>
3361R: Fabiano Rosas <farosas@suse.de>
3362R: Darren Kenny <darren.kenny@oracle.com>
3363R: Qiuhao Li <Qiuhao.Li@outlook.com>
3364S: Maintained
3365F: tests/qtest/fuzz/
3366F: tests/qtest/fuzz-*test.c
3367F: tests/docker/test-fuzz
3368F: scripts/oss-fuzz/
3369F: hw/mem/sparse-mem.c
3370F: docs/devel/fuzzing.rst
3371
3372Register API
3373M: Alistair Francis <alistair@alistair23.me>
3374S: Maintained
3375F: hw/core/register.c
3376F: include/hw/register.h
3377F: include/hw/registerfields.h
3378
3379Rust
3380M: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
3381S: Maintained
3382F: rust/qemu-api
3383F: rust/qemu-api-macros
3384F: rust/rustfmt.toml
3385
3386Rust-related patches CC here
3387L: qemu-rust@nongnu.org
3388F: tests/docker/test-rust
3389F: rust/
3390
3391SLIRP
3392M: Samuel Thibault <samuel.thibault@ens-lyon.org>
3393S: Maintained
3394F: net/slirp.c
3395F: include/net/slirp.h
3396T: git https://people.debian.org/~sthibault/qemu.git slirp
3397
3398Stats
3399S: Orphan
3400F: include/system/stats.h
3401F: stats/
3402F: qapi/stats.json
3403
3404Streams
3405M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
3406S: Maintained
3407F: hw/core/stream.c
3408F: include/hw/stream.h
3409
3410Stubs
3411M: Paolo Bonzini <pbonzini@redhat.com>
3412S: Maintained
3413F: stubs/
3414
3415Tracing
3416M: Stefan Hajnoczi <stefanha@redhat.com>
3417R: Mads Ynddal <mads@ynddal.dk>
3418S: Maintained
3419F: trace/
3420F: trace-events
3421F: docs/qemu-option-trace.rst.inc
3422F: qapi/trace.json
3423F: scripts/tracetool.py
3424F: scripts/tracetool/
3425F: scripts/qemu-trace-stap*
3426F: docs/tools/qemu-trace-stap.rst
3427F: docs/devel/tracing.rst
3428T: git https://github.com/stefanha/qemu.git tracing
3429
3430Simpletrace
3431M: Mads Ynddal <mads@ynddal.dk>
3432S: Maintained
3433F: scripts/simpletrace.py
3434
3435TPM
3436M: Stefan Berger <stefanb@linux.ibm.com>
3437S: Maintained
3438F: system/tpm*
3439F: hw/tpm/*
3440F: include/hw/acpi/tpm.h
3441F: include/system/tpm*
3442F: qapi/tpm.json
3443F: backends/tpm/
3444F: tests/qtest/*tpm*
3445F: docs/specs/tpm.rst
3446T: git https://github.com/stefanberger/qemu-tpm.git tpm-next
3447
3448SPDM
3449M: Alistair Francis <alistair.francis@wdc.com>
3450S: Maintained
3451F: backends/spdm-socket.c
3452F: include/system/spdm-socket.h
3453
3454Checkpatch
3455S: Odd Fixes
3456F: scripts/checkpatch.pl
3457
3458Migration
3459M: Peter Xu <peterx@redhat.com>
3460M: Fabiano Rosas <farosas@suse.de>
3461S: Maintained
3462F: hw/core/vmstate-if.c
3463F: include/hw/vmstate-if.h
3464F: include/migration/
3465F: include/qemu/userfaultfd.h
3466F: migration/
3467F: scripts/vmstate-static-checker.py
3468F: tests/functional/test_migration.py
3469F: tests/vmstate-static-checker-data/
3470F: tests/qtest/migration/
3471F: tests/qtest/migration-*
3472F: docs/devel/migration/
3473F: qapi/migration.json
3474F: tests/migration-stress/
3475F: util/userfaultfd.c
3476X: migration/rdma*
3477
3478RDMA Migration
3479R: Li Zhijian <lizhijian@fujitsu.com>
3480R: Peter Xu <peterx@redhat.com>
3481S: Odd Fixes
3482F: migration/rdma*
3483
3484Migration dirty limit and dirty page rate
3485M: Hyman Huang <yong.huang@smartx.com>
3486S: Maintained
3487F: system/dirtylimit.c
3488F: include/system/dirtylimit.h
3489F: migration/dirtyrate.c
3490F: migration/dirtyrate.h
3491F: include/system/dirtyrate.h
3492F: docs/devel/migration/dirty-limit.rst
3493
3494Detached LUKS header
3495M: Hyman Huang <yong.huang@smartx.com>
3496S: Maintained
3497F: tests/qemu-iotests/tests/luks-detached-header
3498F: docs/devel/luks-detached-header.rst
3499
3500D-Bus
3501M: Marc-André Lureau <marcandre.lureau@redhat.com>
3502S: Maintained
3503F: backends/dbus-vmstate.c
3504F: ui/dbus*
3505F: audio/dbus*
3506F: util/dbus.c
3507F: include/ui/dbus*
3508F: include/qemu/dbus.h
3509F: docs/interop/dbus*
3510F: docs/sphinx/dbus*
3511F: docs/sphinx/fakedbusdoc.py
3512F: tests/qtest/dbus*
3513F: scripts/xml-preprocess*
3514
3515Seccomp
3516M: Daniel P. Berrange <berrange@redhat.com>
3517S: Odd Fixes
3518F: system/qemu-seccomp.c
3519F: include/system/seccomp.h
3520F: tests/unit/test-seccomp.c
3521
3522Cryptography
3523M: Daniel P. Berrange <berrange@redhat.com>
3524S: Maintained
3525F: crypto/
3526F: include/crypto/
3527F: host/include/*/host/crypto/
3528F: qapi/crypto.json
3529F: tests/unit/test-crypto-*
3530F: tests/bench/benchmark-crypto-*
3531F: tests/unit/crypto-tls-*
3532F: tests/unit/pkix_asn1_tab.c.inc
3533F: qemu.sasl
3534
3535Coroutines
3536M: Stefan Hajnoczi <stefanha@redhat.com>
3537M: Kevin Wolf <kwolf@redhat.com>
3538S: Maintained
3539F: util/*coroutine*
3540F: include/qemu/coroutine*
3541F: tests/unit/test-coroutine.c
3542
3543Buffers
3544M: Daniel P. Berrange <berrange@redhat.com>
3545S: Odd Fixes
3546F: util/buffer.c
3547F: include/qemu/buffer.h
3548
3549I/O Channels
3550M: Daniel P. Berrange <berrange@redhat.com>
3551S: Maintained
3552F: io/
3553F: include/io/
3554F: tests/unit/test-io-*
3555
3556User authorization
3557M: Daniel P. Berrange <berrange@redhat.com>
3558S: Maintained
3559F: authz/
3560F: qapi/authz.json
3561F: include/authz/
3562F: tests/unit/test-authz-*
3563
3564Sockets
3565M: Daniel P. Berrange <berrange@redhat.com>
3566S: Maintained
3567F: include/qemu/sockets.h
3568F: util/qemu-sockets.c
3569F: qapi/sockets.json
3570
3571File monitor
3572M: Daniel P. Berrange <berrange@redhat.com>
3573S: Odd Fixes
3574F: util/filemonitor*.c
3575F: include/qemu/filemonitor.h
3576F: tests/unit/test-util-filemonitor.c
3577
3578Throttling infrastructure
3579M: Alberto Garcia <berto@igalia.com>
3580S: Supported
3581F: block/throttle-groups.c
3582F: include/block/throttle-groups.h
3583F: include/qemu/throttle*.h
3584F: util/throttle.c
3585F: docs/throttle.txt
3586F: tests/unit/test-throttle.c
3587L: qemu-block@nongnu.org
3588
3589UUID
3590M: Fam Zheng <fam@euphon.net>
3591S: Supported
3592F: util/uuid.c
3593F: include/qemu/uuid.h
3594F: tests/unit/test-uuid.c
3595
3596Yank feature
3597M: Lukas Straub <lukasstraub2@web.de>
3598S: Odd fixes
3599F: util/yank.c
3600F: migration/yank_functions*
3601F: tests/unit/test-yank.c
3602F: include/qemu/yank.h
3603F: qapi/yank.json
3604
3605COLO Framework
3606M: Hailiang Zhang <zhanghailiang@xfusion.com>
3607S: Maintained
3608F: migration/colo*
3609F: include/migration/colo.h
3610F: include/migration/failover.h
3611F: docs/COLO-FT.txt
3612
3613COLO Proxy
3614M: Zhang Chen <zhangckid@gmail.com>
3615M: Li Zhijian <lizhijian@fujitsu.com>
3616S: Supported
3617F: docs/colo-proxy.txt
3618F: net/colo*
3619F: net/filter-rewriter.c
3620F: net/filter-mirror.c
3621F: tests/qtest/test-filter*
3622
3623Record/replay
3624M: Pavel Dovgalyuk <pavel.dovgaluk@ispras.ru>
3625R: Paolo Bonzini <pbonzini@redhat.com>
3626W: https://wiki.qemu.org/Features/record-replay
3627S: Supported
3628F: replay/*
3629F: block/blkreplay.c
3630F: net/filter-replay.c
3631F: include/exec/replay-core.h
3632F: include/system/replay.h
3633F: docs/devel/replay.rst
3634F: docs/system/replay.rst
3635F: stubs/replay.c
3636F: tests/avocado/replay_kernel.py
3637F: tests/avocado/replay_linux.py
3638F: tests/avocado/reverse_debugging.py
3639F: tests/functional/*replay*.py
3640F: qapi/replay.json
3641
3642IOVA Tree
3643M: Peter Xu <peterx@redhat.com>
3644S: Maintained
3645F: include/qemu/iova-tree.h
3646F: util/iova-tree.c
3647
3648elf2dmp
3649M: Viktor Prutyanov <viktor.prutyanov@phystech.edu>
3650R: Akihiko Odaki <akihiko.odaki@daynix.com>
3651S: Maintained
3652F: contrib/elf2dmp/
3653
3654Overall sensors
3655M: Philippe Mathieu-Daudé <philmd@linaro.org>
3656S: Odd Fixes
3657F: hw/sensor
3658F: include/hw/sensor
3659
3660I2C and SMBus
3661M: Corey Minyard <cminyard@mvista.com>
3662S: Maintained
3663F: hw/i2c/core.c
3664F: hw/i2c/smbus_slave.c
3665F: hw/i2c/smbus_master.c
3666F: hw/i2c/smbus_eeprom.c
3667F: include/hw/i2c/i2c.h
3668F: include/hw/i2c/smbus_master.h
3669F: include/hw/i2c/smbus_slave.h
3670F: include/hw/i2c/smbus_eeprom.h
3671
3672PMBus
3673M: Titus Rwantare <titusr@google.com>
3674S: Maintained
3675F: hw/i2c/pmbus_device.c
3676F: hw/sensor/adm1272.c
3677F: hw/sensor/isl_pmbus_vr.c
3678F: hw/sensor/max34451.c
3679F: include/hw/i2c/pmbus_device.h
3680F: include/hw/sensor/isl_pmbus_vr.h
3681F: tests/qtest/adm1272-test.c
3682F: tests/qtest/max34451-test.c
3683F: tests/qtest/isl_pmbus_vr-test.c
3684
3685FSI
3686M: Ninad Palsule <ninad@linux.ibm.com>
3687R: Cédric Le Goater <clg@kaod.org>
3688S: Maintained
3689F: hw/fsi/*
3690F: include/hw/fsi/*
3691F: docs/specs/fsi.rst
3692F: tests/qtest/aspeed_fsi-test.c
3693
3694Firmware schema specifications
3695M: Philippe Mathieu-Daudé <philmd@linaro.org>
3696R: Daniel P. Berrange <berrange@redhat.com>
3697R: Kashyap Chamarthy <kchamart@redhat.com>
3698S: Maintained
3699F: docs/interop/firmware.json
3700
3701EDK2 Firmware
3702M: Philippe Mathieu-Daudé <philmd@linaro.org>
3703M: Gerd Hoffmann <kraxel@redhat.com>
3704S: Supported
3705F: hw/i386/*ovmf*
3706F: pc-bios/descriptors/??-edk2-*.json
3707F: pc-bios/edk2-*
3708F: roms/Makefile.edk2
3709F: roms/edk2
3710F: roms/edk2-*
3711F: tests/data/uefi-boot-images/
3712F: tests/uefi-test-tools/
3713
3714VT-d Emulation
3715M: Michael S. Tsirkin <mst@redhat.com>
3716R: Jason Wang <jasowang@redhat.com>
3717R: Yi Liu <yi.l.liu@intel.com>
3718R: Clément Mathieu--Drif <clement.mathieu--drif@eviden.com>
3719S: Supported
3720F: hw/i386/intel_iommu.c
3721F: hw/i386/intel_iommu_internal.h
3722F: include/hw/i386/intel_iommu.h
3723F: tests/functional/test_intel_iommu.py
3724F: tests/qtest/intel-iommu-test.c
3725
3726AMD-Vi Emulation
3727S: Orphan
3728F: hw/i386/amd_iommu.?
3729
3730OpenSBI Firmware
3731M: Bin Meng <bmeng.cn@gmail.com>
3732S: Supported
3733F: pc-bios/opensbi-*
3734F: .gitlab-ci.d/opensbi.yml
3735F: .gitlab-ci.d/opensbi/
3736
3737Clock framework
3738M: Luc Michel <luc@lmichel.fr>
3739R: Damien Hedde <damien.hedde@dahe.fr>
3740S: Maintained
3741F: include/hw/clock.h
3742F: include/hw/qdev-clock.h
3743F: hw/core/clock.c
3744F: hw/core/clock-vmstate.c
3745F: hw/core/qdev-clock.c
3746F: docs/devel/clocks.rst
3747
3748Reset framework
3749M: Peter Maydell <peter.maydell@linaro.org>
3750S: Maintained
3751F: include/hw/resettable.h
3752F: include/hw/core/resetcontainer.h
3753F: include/system/reset.h
3754F: hw/core/reset.c
3755F: hw/core/resettable.c
3756F: hw/core/resetcontainer.c
3757
3758Usermode Emulation
3759------------------
3760Overall usermode emulation
3761M: Riku Voipio <riku.voipio@iki.fi>
3762S: Maintained
3763F: accel/tcg/user-exec*.c
3764F: include/user/
3765F: common-user/
3766
3767BSD user
3768M: Warner Losh <imp@bsdimp.com>
3769R: Kyle Evans <kevans@freebsd.org>
3770S: Maintained
3771F: bsd-user/
3772F: configs/targets/*-bsd-user.mak
3773F: tests/vm/*bsd
3774T: git https://github.com/qemu-bsd-user/qemu-bsd-user bsd-user-rebase-3.1
3775
3776Linux user
3777M: Laurent Vivier <laurent@vivier.eu>
3778S: Maintained
3779F: linux-user/
3780F: configs/targets/*linux-user.mak
3781F: scripts/qemu-binfmt-conf.sh
3782F: scripts/update-syscalltbl.sh
3783F: scripts/update-mips-syscall-args.sh
3784
3785Tiny Code Generator (TCG)
3786-------------------------
3787Common TCG code
3788M: Richard Henderson <richard.henderson@linaro.org>
3789S: Maintained
3790F: tcg/
3791F: include/tcg/
3792
3793TCG Plugins
3794M: Alex Bennée <alex.bennee@linaro.org>
3795T: git https://gitlab.com/stsquad/qemu plugins/next
3796R: Alexandre Iooss <erdnaxe@crans.org>
3797R: Mahmoud Mandour <ma.mandourr@gmail.com>
3798R: Pierrick Bouvier <pierrick.bouvier@linaro.org>
3799S: Maintained
3800F: docs/devel/tcg-plugins.rst
3801F: plugins/
3802F: tests/tcg/plugins/
3803F: tests/functional/test_aarch64_tcg_plugins.py
3804F: contrib/plugins/
3805F: scripts/qemu-plugin-symbols.py
3806
3807AArch64 TCG target
3808M: Richard Henderson <richard.henderson@linaro.org>
3809S: Maintained
3810L: qemu-arm@nongnu.org
3811F: tcg/aarch64/
3812
3813ARM TCG target
3814M: Richard Henderson <richard.henderson@linaro.org>
3815S: Maintained
3816L: qemu-arm@nongnu.org
3817F: tcg/arm/
3818
3819i386 TCG target
3820M: Richard Henderson <richard.henderson@linaro.org>
3821S: Maintained
3822F: tcg/i386/
3823
3824LoongArch64 TCG target
3825M: WANG Xuerui <git@xen0n.name>
3826S: Maintained
3827F: tcg/loongarch64/
3828
3829MIPS TCG target
3830M: Philippe Mathieu-Daudé <philmd@linaro.org>
3831R: Aurelien Jarno <aurelien@aurel32.net>
3832R: Huacai Chen <chenhuacai@kernel.org>
3833R: Jiaxun Yang <jiaxun.yang@flygoat.com>
3834R: Aleksandar Rikalo <arikalo@gmail.com>
3835S: Odd Fixes
3836F: tcg/mips/
3837
3838PPC TCG target
3839M: Richard Henderson <richard.henderson@linaro.org>
3840S: Odd Fixes
3841F: tcg/ppc/
3842
3843RISC-V TCG target
3844M: Palmer Dabbelt <palmer@dabbelt.com>
3845M: Alistair Francis <Alistair.Francis@wdc.com>
3846L: qemu-riscv@nongnu.org
3847S: Maintained
3848F: tcg/riscv/
3849F: disas/riscv.[ch]
3850
3851S390 TCG target
3852M: Richard Henderson <richard.henderson@linaro.org>
3853S: Maintained
3854F: tcg/s390/
3855L: qemu-s390x@nongnu.org
3856
3857SPARC TCG target
3858S: Odd Fixes
3859F: tcg/sparc64/
3860F: disas/sparc.c
3861
3862TCI TCG target
3863M: Stefan Weil <sw@weilnetz.de>
3864S: Maintained
3865F: tcg/tci/
3866F: tcg/tci.c
3867F: disas/tci.c
3868
3869Block drivers
3870-------------
3871VMDK
3872M: Fam Zheng <fam@euphon.net>
3873L: qemu-block@nongnu.org
3874S: Supported
3875F: block/vmdk.c
3876
3877RBD
3878M: Ilya Dryomov <idryomov@gmail.com>
3879R: Peter Lieven <pl@dlhnet.de>
3880L: qemu-block@nongnu.org
3881S: Supported
3882F: block/rbd.c
3883
3884VHDX
3885M: Jeff Cody <codyprime@gmail.com>
3886L: qemu-block@nongnu.org
3887S: Supported
3888F: block/vhdx*
3889
3890VDI
3891M: Stefan Weil <sw@weilnetz.de>
3892L: qemu-block@nongnu.org
3893S: Maintained
3894F: block/vdi.c
3895
3896blkio
3897M: Stefan Hajnoczi <stefanha@redhat.com>
3898L: qemu-block@nongnu.org
3899S: Maintained
3900F: block/blkio.c
3901
3902iSCSI
3903M: Ronnie Sahlberg <ronniesahlberg@gmail.com>
3904M: Paolo Bonzini <pbonzini@redhat.com>
3905M: Peter Lieven <pl@dlhnet.de>
3906L: qemu-block@nongnu.org
3907S: Odd Fixes
3908F: block/iscsi.c
3909F: block/iscsi-opts.c
3910
3911Network Block Device (NBD)
3912M: Eric Blake <eblake@redhat.com>
3913M: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
3914L: qemu-block@nongnu.org
3915S: Maintained
3916F: block/nbd*
3917F: nbd/
3918F: include/block/nbd*
3919F: qemu-nbd.*
3920F: blockdev-nbd.c
3921F: docs/interop/nbd.rst
3922F: docs/tools/qemu-nbd.rst
3923F: tests/qemu-iotests/tests/*nbd*
3924T: git https://repo.or.cz/qemu/ericb.git nbd
3925T: git https://gitlab.com/vsementsov/qemu.git block
3926
3927NFS
3928M: Peter Lieven <pl@dlhnet.de>
3929L: qemu-block@nongnu.org
3930S: Maintained
3931F: block/nfs.c
3932
3933SSH
3934M: Richard W.M. Jones <rjones@redhat.com>
3935L: qemu-block@nongnu.org
3936S: Supported
3937F: block/ssh.c
3938
3939CURL
3940L: qemu-block@nongnu.org
3941S: Odd Fixes
3942F: block/curl.c
3943
3944GLUSTER
3945L: qemu-block@nongnu.org
3946L: integration@gluster.org
3947S: Odd Fixes
3948F: block/gluster.c
3949
3950Null Block Driver
3951M: Fam Zheng <fam@euphon.net>
3952L: qemu-block@nongnu.org
3953S: Supported
3954F: block/null.c
3955
3956NVMe Block Driver
3957M: Stefan Hajnoczi <stefanha@redhat.com>
3958R: Fam Zheng <fam@euphon.net>
3959R: Philippe Mathieu-Daudé <philmd@linaro.org>
3960L: qemu-block@nongnu.org
3961S: Supported
3962F: block/nvme*
3963F: include/block/nvme.h
3964T: git https://github.com/stefanha/qemu.git block
3965
3966Bootdevice
3967M: Gonglei <arei.gonglei@huawei.com>
3968S: Maintained
3969F: system/bootdevice.c
3970
3971Quorum
3972M: Alberto Garcia <berto@igalia.com>
3973S: Supported
3974F: block/quorum.c
3975L: qemu-block@nongnu.org
3976
3977blklogwrites
3978M: Ari Sundholm <ari@tuxera.com>
3979L: qemu-block@nongnu.org
3980S: Supported
3981F: block/blklogwrites.c
3982
3983blkverify
3984M: Stefan Hajnoczi <stefanha@redhat.com>
3985L: qemu-block@nongnu.org
3986S: Supported
3987F: block/blkverify.c
3988F: docs/devel/blkverify.rst
3989
3990bochs
3991M: Stefan Hajnoczi <stefanha@redhat.com>
3992L: qemu-block@nongnu.org
3993S: Supported
3994F: block/bochs.c
3995
3996cloop
3997M: Stefan Hajnoczi <stefanha@redhat.com>
3998L: qemu-block@nongnu.org
3999S: Supported
4000F: block/cloop.c
4001
4002dmg
4003M: Stefan Hajnoczi <stefanha@redhat.com>
4004L: qemu-block@nongnu.org
4005S: Supported
4006F: block/dmg.c
4007
4008parallels
4009M: Stefan Hajnoczi <stefanha@redhat.com>
4010M: Denis V. Lunev <den@openvz.org>
4011L: qemu-block@nongnu.org
4012S: Supported
4013F: block/parallels.c
4014F: block/parallels-ext.c
4015F: docs/interop/parallels.rst
4016F: docs/interop/prl-xml.rst
4017T: git https://src.openvz.org/scm/~den/qemu.git parallels
4018
4019qed
4020M: Stefan Hajnoczi <stefanha@redhat.com>
4021L: qemu-block@nongnu.org
4022S: Supported
4023F: block/qed.c
4024
4025raw
4026M: Kevin Wolf <kwolf@redhat.com>
4027L: qemu-block@nongnu.org
4028S: Supported
4029F: block/linux-aio.c
4030F: include/block/raw-aio.h
4031F: block/raw-format.c
4032F: block/file-posix.c
4033F: block/file-win32.c
4034F: block/win32-aio.c
4035
4036Linux io_uring
4037M: Aarushi Mehta <mehta.aaru20@gmail.com>
4038M: Julia Suvorova <jusual@redhat.com>
4039M: Stefan Hajnoczi <stefanha@redhat.com>
4040R: Stefano Garzarella <sgarzare@redhat.com>
4041L: qemu-block@nongnu.org
4042S: Maintained
4043F: block/io_uring.c
4044F: stubs/io_uring.c
4045
4046qcow2
4047M: Kevin Wolf <kwolf@redhat.com>
4048M: Hanna Reitz <hreitz@redhat.com>
4049L: qemu-block@nongnu.org
4050S: Supported
4051F: block/qcow2*
4052F: docs/interop/qcow2.txt
4053
4054qcow
4055M: Kevin Wolf <kwolf@redhat.com>
4056L: qemu-block@nongnu.org
4057S: Supported
4058F: block/qcow.c
4059
4060blkdebug
4061M: Kevin Wolf <kwolf@redhat.com>
4062M: Hanna Reitz <hreitz@redhat.com>
4063L: qemu-block@nongnu.org
4064S: Supported
4065F: block/blkdebug.c
4066F: docs/devel/blkdebug.rst
4067
4068vpc
4069M: Kevin Wolf <kwolf@redhat.com>
4070L: qemu-block@nongnu.org
4071S: Supported
4072F: block/vpc.c
4073
4074vvfat
4075M: Kevin Wolf <kwolf@redhat.com>
4076L: qemu-block@nongnu.org
4077S: Odd Fixes
4078F: block/vvfat.c
4079
4080Image format fuzzer
4081M: Stefan Hajnoczi <stefanha@redhat.com>
4082L: qemu-block@nongnu.org
4083S: Supported
4084F: tests/image-fuzzer/
4085
4086Vhost-user block device backend server
4087M: Coiby Xu <Coiby.Xu@gmail.com>
4088S: Maintained
4089F: block/export/vhost-user-blk-server.c
4090F: block/export/vhost-user-blk-server.h
4091F: block/export/virtio-blk-handler.c
4092F: block/export/virtio-blk-handler.h
4093F: include/qemu/vhost-user-server.h
4094F: tests/qtest/libqos/vhost-user-blk.c
4095F: tests/qtest/libqos/vhost-user-blk.h
4096F: tests/qtest/vhost-user-blk-test.c
4097F: util/vhost-user-server.c
4098
4099FUSE block device exports
4100M: Hanna Reitz <hreitz@redhat.com>
4101L: qemu-block@nongnu.org
4102S: Supported
4103F: block/export/fuse.c
4104
4105VDUSE library and block device exports
4106M: Xie Yongji <xieyongji@bytedance.com>
4107S: Maintained
4108F: subprojects/libvduse/
4109F: block/export/vduse-blk.c
4110F: block/export/vduse-blk.h
4111
4112Replication
4113M: Wen Congyang <wencongyang2@huawei.com>
4114M: Xie Changlong <xiechanglong.d@gmail.com>
4115S: Supported
4116F: replication*
4117F: block/replication.c
4118F: tests/unit/test-replication.c
4119F: docs/block-replication.txt
4120
4121Semihosting
4122M: Alex Bennée <alex.bennee@linaro.org>
4123S: Maintained
4124F: semihosting/
4125F: include/semihosting/
4126F: tests/tcg/multiarch/arm-compat-semi/
4127F: tests/tcg/aarch64/system/semiheap.c
4128
4129Multi-process QEMU
4130M: Elena Ufimtseva <elena.ufimtseva@oracle.com>
4131M: Jagannathan Raman <jag.raman@oracle.com>
4132S: Maintained
4133F: docs/devel/multi-process.rst
4134F: docs/system/multi-process.rst
4135F: hw/pci-host/remote.c
4136F: include/hw/pci-host/remote.h
4137F: hw/remote/machine.c
4138F: include/hw/remote/machine.h
4139F: hw/remote/mpqemu-link.c
4140F: include/hw/remote/mpqemu-link.h
4141F: hw/remote/message.c
4142F: hw/remote/remote-obj.c
4143F: include/hw/remote/memory.h
4144F: hw/remote/memory.c
4145F: hw/remote/proxy.c
4146F: include/hw/remote/proxy.h
4147F: hw/remote/proxy-memory-listener.c
4148F: include/hw/remote/proxy-memory-listener.h
4149F: hw/remote/iohub.c
4150F: include/hw/remote/iohub.h
4151F: subprojects/libvfio-user
4152F: hw/remote/vfio-user-obj.c
4153F: include/hw/remote/vfio-user-obj.h
4154F: hw/remote/iommu.c
4155F: include/hw/remote/iommu.h
4156
4157EBPF:
4158M: Jason Wang <jasowang@redhat.com>
4159R: Andrew Melnychenko <andrew@daynix.com>
4160R: Yuri Benditovich <yuri.benditovich@daynix.com>
4161S: Maintained
4162F: docs/devel/ebpf_rss.rst
4163F: ebpf/*
4164F: tools/ebpf/*
4165
4166Build and test automation
4167-------------------------
4168Build and test automation, general continuous integration
4169M: Alex Bennée <alex.bennee@linaro.org>
4170T: git https://gitlab.com/stsquad/qemu testing/next
4171M: Philippe Mathieu-Daudé <philmd@linaro.org>
4172M: Thomas Huth <thuth@redhat.com>
4173S: Maintained
4174F: .github/workflows/lockdown.yml
4175F: .gitlab-ci.yml
4176F: .gitlab-ci.d/
4177F: .travis.yml
4178F: docs/devel/ci*
4179F: scripts/ci/
4180F: tests/docker/
4181F: tests/vm/
4182F: tests/lcitool/
4183F: tests/functional/test_*_tuxrun.py
4184F: scripts/archive-source.sh
4185F: docs/devel/testing.rst
4186W: https://gitlab.com/qemu-project/qemu/pipelines
4187W: https://travis-ci.org/qemu/qemu
4188
4189FreeBSD Hosted Continuous Integration
4190M: Ed Maste <emaste@freebsd.org>
4191M: Li-Wen Hsu <lwhsu@freebsd.org>
4192S: Maintained
4193F: .gitlab-ci.d/cirrus/freebsd*
4194F: tests/vm/freebsd
4195W: https://cirrus-ci.com/github/qemu/qemu
4196
4197Functional testing framework
4198M: Thomas Huth <thuth@redhat.com>
4199R: Philippe Mathieu-Daudé <philmd@linaro.org>
4200R: Daniel P. Berrange <berrange@redhat.com>
4201F: tests/functional/qemu_test/
4202
4203Windows Hosted Continuous Integration
4204M: Yonggang Luo <luoyonggang@gmail.com>
4205S: Maintained
4206F: .gitlab-ci.d/windows.yml
4207
4208Guest Test Compilation Support
4209M: Alex Bennée <alex.bennee@linaro.org>
4210R: Philippe Mathieu-Daudé <philmd@linaro.org>
4211S: Maintained
4212F: tests/tcg/Makefile.target
4213
4214Integration Testing with the Avocado framework
4215W: https://trello.com/b/6Qi1pxVn/avocado-qemu
4216R: Cleber Rosa <crosa@redhat.com>
4217S: Odd Fixes
4218F: tests/avocado/
4219
4220GitLab custom runner (Works On Arm Sponsored)
4221M: Alex Bennée <alex.bennee@linaro.org>
4222M: Philippe Mathieu-Daudé <philmd@linaro.org>
4223S: Maintained
4224F: .gitlab-ci.d/custom-runners/ubuntu-22.04-aarch64.yml
4225F: .gitlab-ci.d/custom-runners/ubuntu-22.04-aarch32.yml
4226
4227Documentation
4228-------------
4229Build system architecture
4230M: Daniel P. Berrange <berrange@redhat.com>
4231S: Odd Fixes
4232F: docs/devel/build-system.rst
4233
4234GIT Data Mining Config
4235M: Alex Bennée <alex.bennee@linaro.org>
4236S: Odd Fixes
4237F: gitdm.config
4238F: contrib/gitdm/*
4239
4240Incompatible changes
4241R: devel@lists.libvirt.org
4242F: docs/about/deprecated.rst
4243
4244Build System
4245------------
4246Meson
4247M: Paolo Bonzini <pbonzini@redhat.com>
4248R: Marc-André Lureau <marcandre.lureau@redhat.com>
4249R: Daniel P. Berrange <berrange@redhat.com>
4250R: Philippe Mathieu-Daudé <philmd@linaro.org>
4251S: Maintained
4252F: meson.build
4253F: meson_options.txt
4254F: scripts/meson-buildoptions.*
4255F: scripts/check_sparse.py
4256F: scripts/symlink-install-tree.py
4257
4258Top Level Makefile and configure
4259M: Paolo Bonzini <pbonzini@redhat.com>
4260R: Alex Bennée <alex.bennee@linaro.org>
4261R: Thomas Huth <thuth@redhat.com>
4262S: Maintained
4263F: Makefile
4264F: configure
4265F: scripts/mtest2make.py
4266F: tests/Makefile.include
4267
4268Kconfig
4269M: Paolo Bonzini <pbonzini@redhat.com>
4270S: Maintained
4271F: scripts/minikconf.py
4272F: docs/devel/kconfig.rst
4273F: Kconfig*
4274F: */Kconfig*
4275F: hw/*/Kconfig*
4276F: target/*/Kconfig*
4277
4278GIT submodules
4279M: Daniel P. Berrange <berrange@redhat.com>
4280S: Odd Fixes
4281F: scripts/git-submodule.sh
4282
4283UI translations
4284S: Orphan
4285F: po/*.po
4286
4287Sphinx documentation configuration and build machinery
4288M: Peter Maydell <peter.maydell@linaro.org>
4289S: Maintained
4290F: docs/conf.py
4291F: docs/*/conf.py
4292F: docs/sphinx/
4293F: docs/_templates/
4294F: docs/devel/docs.rst
4295
4296Rust build system integration
4297M: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
4298L: qemu-rust@nongnu.org
4299S: Maintained
4300F: scripts/rust/
4301F: rust/.gitignore
4302F: rust/Kconfig
4303F: rust/meson.build
4304F: rust/wrapper.h
4305
4306Miscellaneous
4307-------------
4308Performance Tools and Tests
4309M: Ahmed Karaman <ahmedkhaledkaraman@gmail.com>
4310S: Maintained
4311F: scripts/performance/
4312
4313Code Coverage Tools
4314M: Alex Bennée <alex.bennee@linaro.org>
4315S: Odd Fixes
4316F: scripts/coverage/
4317
4318Machine development tool
4319M: Maksim Davydov <davydov-max@yandex-team.ru>
4320S: Supported
4321F: scripts/compare-machine-types.py
4322