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