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