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