xref: /openbmc/qemu/MAINTAINERS (revision 415442a1)
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>
2879M: zhenwei pi <pizhenwei@bytedance.com>
2880S: Maintained
2881F: include/sysemu/cryptodev*.h
2882F: backends/cryptodev*.c
2883F: qapi/cryptodev.json
2884
2885Python library
2886M: John Snow <jsnow@redhat.com>
2887M: Cleber Rosa <crosa@redhat.com>
2888R: Beraldo Leal <bleal@redhat.com>
2889S: Maintained
2890F: python/
2891T: git https://gitlab.com/jsnow/qemu.git python
2892
2893Python scripts
2894M: John Snow <jsnow@redhat.com>
2895M: Cleber Rosa <crosa@redhat.com>
2896S: Odd Fixes
2897F: scripts/*.py
2898F: tests/*.py
2899
2900Benchmark util
2901M: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
2902S: Maintained
2903F: scripts/simplebench/
2904T: git https://gitlab.com/vsementsov/qemu.git simplebench
2905
2906Transactions helper
2907M: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
2908S: Maintained
2909F: include/qemu/transactions.h
2910F: util/transactions.c
2911T: git https://gitlab.com/vsementsov/qemu.git block
2912
2913QAPI
2914M: Markus Armbruster <armbru@redhat.com>
2915M: Michael Roth <michael.roth@amd.com>
2916S: Supported
2917F: qapi/
2918X: qapi/*.json
2919F: include/qapi/
2920X: include/qapi/qmp/
2921F: include/qapi/qmp/dispatch.h
2922F: tests/qapi-schema/
2923F: tests/unit/test-*-visitor.c
2924F: tests/unit/test-qapi-*.c
2925F: tests/unit/test-qmp-*.c
2926F: tests/unit/test-visitor-serialization.c
2927F: scripts/qapi-gen.py
2928F: scripts/qapi/*
2929F: docs/sphinx/qapidoc.py
2930F: docs/devel/qapi*
2931T: git https://repo.or.cz/qemu/armbru.git qapi-next
2932
2933QAPI Schema
2934M: Eric Blake <eblake@redhat.com>
2935M: Markus Armbruster <armbru@redhat.com>
2936S: Supported
2937F: qapi/*.json
2938T: git https://repo.or.cz/qemu/armbru.git qapi-next
2939
2940QObject
2941M: Markus Armbruster <armbru@redhat.com>
2942S: Supported
2943F: qobject/
2944F: include/qapi/qmp/
2945X: include/qapi/qmp/dispatch.h
2946F: scripts/coccinelle/qobject.cocci
2947F: tests/unit/check-qdict.c
2948F: tests/unit/check-qjson.c
2949F: tests/unit/check-qlist.c
2950F: tests/unit/check-qlit.c
2951F: tests/unit/check-qnull.c
2952F: tests/unit/check-qnum.c
2953F: tests/unit/check-qobject.c
2954F: tests/unit/check-qstring.c
2955F: tests/data/qobject/qdict.txt
2956T: git https://repo.or.cz/qemu/armbru.git qapi-next
2957
2958QEMU Guest Agent
2959M: Michael Roth <michael.roth@amd.com>
2960M: Konstantin Kostiuk <kkostiuk@redhat.com>
2961S: Maintained
2962F: qga/
2963F: docs/interop/qemu-ga.rst
2964F: docs/interop/qemu-ga-ref.rst
2965F: scripts/qemu-guest-agent/
2966F: tests/unit/test-qga.c
2967T: git https://github.com/mdroth/qemu.git qga
2968
2969QEMU Guest Agent Win32
2970M: Konstantin Kostiuk <kkostiuk@redhat.com>
2971S: Maintained
2972F: qga/*win32*
2973F: qga/vss-win32/
2974F: qga/installer/
2975T: git https://github.com/kostyanf14/qemu.git qga-win32
2976
2977QOM
2978M: Paolo Bonzini <pbonzini@redhat.com>
2979R: Daniel P. Berrange <berrange@redhat.com>
2980R: Eduardo Habkost <eduardo@habkost.net>
2981S: Supported
2982F: docs/devel/qom.rst
2983F: docs/qdev-device-use.txt
2984F: hw/core/qdev*
2985F: hw/core/bus.c
2986F: hw/core/sysbus.c
2987F: include/hw/qdev*
2988F: include/monitor/qdev.h
2989F: include/qom/
2990F: qapi/qom.json
2991F: qapi/qdev.json
2992F: scripts/coccinelle/qom-parent-type.cocci
2993F: softmmu/qdev-monitor.c
2994F: stubs/qdev.c
2995F: qom/
2996F: tests/unit/check-qom-interface.c
2997F: tests/unit/check-qom-proplist.c
2998F: tests/unit/test-qdev-global-props.c
2999
3000QOM boilerplate conversion script
3001M: Eduardo Habkost <eduardo@habkost.net>
3002S: Maintained
3003F: scripts/codeconverter/
3004
3005QMP
3006M: Markus Armbruster <armbru@redhat.com>
3007S: Supported
3008F: monitor/monitor-internal.h
3009F: monitor/qmp*
3010F: monitor/misc.c
3011F: monitor/monitor.c
3012F: qapi/control.json
3013F: qapi/error.json
3014F: qapi/introspect.json
3015F: docs/devel/*qmp-*
3016F: docs/interop/*qmp-*
3017F: scripts/qmp/
3018F: tests/qtest/qmp-test.c
3019F: tests/qtest/qmp-cmd-test.c
3020T: git https://repo.or.cz/qemu/armbru.git qapi-next
3021
3022qtest
3023M: Thomas Huth <thuth@redhat.com>
3024M: Laurent Vivier <lvivier@redhat.com>
3025R: Paolo Bonzini <pbonzini@redhat.com>
3026S: Maintained
3027F: softmmu/qtest.c
3028F: accel/qtest/
3029F: tests/qtest/
3030F: docs/devel/qgraph.rst
3031F: docs/devel/qtest.rst
3032X: tests/qtest/bios-tables-test*
3033
3034Device Fuzzing
3035M: Alexander Bulekov <alxndr@bu.edu>
3036R: Paolo Bonzini <pbonzini@redhat.com>
3037R: Bandan Das <bsd@redhat.com>
3038R: Stefan Hajnoczi <stefanha@redhat.com>
3039R: Thomas Huth <thuth@redhat.com>
3040R: Darren Kenny <darren.kenny@oracle.com>
3041R: Qiuhao Li <Qiuhao.Li@outlook.com>
3042S: Maintained
3043F: tests/qtest/fuzz/
3044F: tests/qtest/fuzz-*test.c
3045F: scripts/oss-fuzz/
3046F: hw/mem/sparse-mem.c
3047F: docs/devel/fuzzing.rst
3048
3049Register API
3050M: Alistair Francis <alistair@alistair23.me>
3051S: Maintained
3052F: hw/core/register.c
3053F: include/hw/register.h
3054F: include/hw/registerfields.h
3055
3056SLIRP
3057M: Samuel Thibault <samuel.thibault@ens-lyon.org>
3058S: Maintained
3059F: net/slirp.c
3060F: include/net/slirp.h
3061T: git https://people.debian.org/~sthibault/qemu.git slirp
3062
3063Stats
3064S: Orphan
3065F: include/sysemu/stats.h
3066F: stats/
3067
3068Streams
3069M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
3070S: Maintained
3071F: hw/core/stream.c
3072F: include/hw/stream.h
3073
3074Stubs
3075M: Paolo Bonzini <pbonzini@redhat.com>
3076S: Maintained
3077F: stubs/
3078
3079Tracing
3080M: Stefan Hajnoczi <stefanha@redhat.com>
3081S: Maintained
3082F: trace/
3083F: trace-events
3084F: docs/qemu-option-trace.rst.inc
3085F: qapi/trace.json
3086F: scripts/tracetool.py
3087F: scripts/tracetool/
3088F: scripts/qemu-trace-stap*
3089F: docs/tools/qemu-trace-stap.rst
3090F: docs/devel/tracing.rst
3091T: git https://github.com/stefanha/qemu.git tracing
3092
3093TPM
3094M: Stefan Berger <stefanb@linux.ibm.com>
3095S: Maintained
3096F: softmmu/tpm*
3097F: hw/tpm/*
3098F: include/hw/acpi/tpm.h
3099F: include/sysemu/tpm*
3100F: qapi/tpm.json
3101F: backends/tpm/
3102F: tests/qtest/*tpm*
3103F: docs/specs/tpm.rst
3104T: git https://github.com/stefanberger/qemu-tpm.git tpm-next
3105
3106Checkpatch
3107S: Odd Fixes
3108F: scripts/checkpatch.pl
3109
3110Migration
3111M: Juan Quintela <quintela@redhat.com>
3112M: Dr. David Alan Gilbert <dgilbert@redhat.com>
3113S: Maintained
3114F: hw/core/vmstate-if.c
3115F: include/hw/vmstate-if.h
3116F: include/migration/
3117F: include/qemu/userfaultfd.h
3118F: migration/
3119F: scripts/vmstate-static-checker.py
3120F: tests/vmstate-static-checker-data/
3121F: tests/qtest/migration-test.c
3122F: docs/devel/migration.rst
3123F: qapi/migration.json
3124F: tests/migration/
3125F: util/userfaultfd.c
3126
3127D-Bus
3128M: Marc-André Lureau <marcandre.lureau@redhat.com>
3129S: Maintained
3130F: backends/dbus-vmstate.c
3131F: ui/dbus*
3132F: audio/dbus*
3133F: util/dbus.c
3134F: include/ui/dbus*
3135F: include/qemu/dbus.h
3136F: docs/interop/dbus*
3137F: docs/sphinx/dbus*
3138F: docs/sphinx/fakedbusdoc.py
3139F: tests/qtest/dbus*
3140
3141Seccomp
3142M: Daniel P. Berrange <berrange@redhat.com>
3143S: Odd Fixes
3144F: softmmu/qemu-seccomp.c
3145F: include/sysemu/seccomp.h
3146F: tests/unit/test-seccomp.c
3147
3148Cryptography
3149M: Daniel P. Berrange <berrange@redhat.com>
3150S: Maintained
3151F: crypto/
3152F: include/crypto/
3153F: qapi/crypto.json
3154F: tests/unit/test-crypto-*
3155F: tests/bench/benchmark-crypto-*
3156F: tests/unit/crypto-tls-*
3157F: tests/unit/pkix_asn1_tab.c
3158F: qemu.sasl
3159
3160Coroutines
3161M: Stefan Hajnoczi <stefanha@redhat.com>
3162M: Kevin Wolf <kwolf@redhat.com>
3163S: Maintained
3164F: util/*coroutine*
3165F: include/qemu/coroutine*
3166F: tests/unit/test-coroutine.c
3167
3168Buffers
3169M: Daniel P. Berrange <berrange@redhat.com>
3170S: Odd Fixes
3171F: util/buffer.c
3172F: include/qemu/buffer.h
3173
3174I/O Channels
3175M: Daniel P. Berrange <berrange@redhat.com>
3176S: Maintained
3177F: io/
3178F: include/io/
3179F: tests/unit/test-io-*
3180
3181User authorization
3182M: Daniel P. Berrange <berrange@redhat.com>
3183S: Maintained
3184F: authz/
3185F: qapi/authz.json
3186F: include/authz/
3187F: tests/unit/test-authz-*
3188
3189Sockets
3190M: Daniel P. Berrange <berrange@redhat.com>
3191S: Maintained
3192F: include/qemu/sockets.h
3193F: util/qemu-sockets.c
3194F: qapi/sockets.json
3195
3196File monitor
3197M: Daniel P. Berrange <berrange@redhat.com>
3198S: Odd Fixes
3199F: util/filemonitor*.c
3200F: include/qemu/filemonitor.h
3201F: tests/unit/test-util-filemonitor.c
3202
3203Throttling infrastructure
3204M: Alberto Garcia <berto@igalia.com>
3205S: Supported
3206F: block/throttle-groups.c
3207F: include/block/throttle-groups.h
3208F: include/qemu/throttle*.h
3209F: util/throttle.c
3210F: docs/throttle.txt
3211F: tests/unit/test-throttle.c
3212L: qemu-block@nongnu.org
3213
3214UUID
3215M: Fam Zheng <fam@euphon.net>
3216S: Supported
3217F: util/uuid.c
3218F: include/qemu/uuid.h
3219F: tests/unit/test-uuid.c
3220
3221Yank feature
3222M: Lukas Straub <lukasstraub2@web.de>
3223S: Odd fixes
3224F: util/yank.c
3225F: migration/yank_functions*
3226F: tests/unit/test-yank.c
3227F: include/qemu/yank.h
3228F: qapi/yank.json
3229
3230COLO Framework
3231M: Hailiang Zhang <zhanghailiang@xfusion.com>
3232S: Maintained
3233F: migration/colo*
3234F: include/migration/colo.h
3235F: include/migration/failover.h
3236F: docs/COLO-FT.txt
3237
3238COLO Proxy
3239M: Zhang Chen <chen.zhang@intel.com>
3240M: Li Zhijian <lizhijian@fujitsu.com>
3241S: Supported
3242F: docs/colo-proxy.txt
3243F: net/colo*
3244F: net/filter-rewriter.c
3245F: net/filter-mirror.c
3246F: tests/qtest/test-filter*
3247
3248Record/replay
3249M: Pavel Dovgalyuk <pavel.dovgaluk@ispras.ru>
3250R: Paolo Bonzini <pbonzini@redhat.com>
3251W: https://wiki.qemu.org/Features/record-replay
3252S: Supported
3253F: replay/*
3254F: block/blkreplay.c
3255F: net/filter-replay.c
3256F: include/exec/replay-core.h
3257F: include/sysemu/replay.h
3258F: docs/devel/replay.rst
3259F: docs/system/replay.rst
3260F: stubs/replay.c
3261F: tests/avocado/replay_kernel.py
3262F: tests/avocado/replay_linux.py
3263F: tests/avocado/reverse_debugging.py
3264F: qapi/replay.json
3265
3266IOVA Tree
3267M: Peter Xu <peterx@redhat.com>
3268S: Maintained
3269F: include/qemu/iova-tree.h
3270F: util/iova-tree.c
3271
3272elf2dmp
3273M: Viktor Prutyanov <viktor.prutyanov@phystech.edu>
3274S: Maintained
3275F: contrib/elf2dmp/
3276
3277I2C and SMBus
3278M: Corey Minyard <cminyard@mvista.com>
3279S: Maintained
3280F: hw/i2c/core.c
3281F: hw/i2c/smbus_slave.c
3282F: hw/i2c/smbus_master.c
3283F: hw/i2c/smbus_eeprom.c
3284F: include/hw/i2c/i2c.h
3285F: include/hw/i2c/smbus_master.h
3286F: include/hw/i2c/smbus_slave.h
3287F: include/hw/i2c/smbus_eeprom.h
3288
3289PMBus
3290M: Titus Rwantare <titusr@google.com>
3291S: Maintained
3292F: hw/i2c/pmbus_device.c
3293F: hw/sensor/adm1272.c
3294F: hw/sensor/isl_pmbus_vr.c
3295F: hw/sensor/max34451.c
3296F: include/hw/i2c/pmbus_device.h
3297F: include/hw/sensor/isl_pmbus_vr.h
3298F: tests/qtest/adm1272-test.c
3299F: tests/qtest/max34451-test.c
3300F: tests/qtest/isl_pmbus_vr-test.c
3301
3302Firmware schema specifications
3303M: Philippe Mathieu-Daudé <philmd@linaro.org>
3304R: Daniel P. Berrange <berrange@redhat.com>
3305R: Kashyap Chamarthy <kchamart@redhat.com>
3306S: Maintained
3307F: docs/interop/firmware.json
3308
3309EDK2 Firmware
3310M: Philippe Mathieu-Daudé <philmd@linaro.org>
3311M: Gerd Hoffmann <kraxel@redhat.com>
3312S: Supported
3313F: hw/i386/*ovmf*
3314F: pc-bios/descriptors/??-edk2-*.json
3315F: pc-bios/edk2-*
3316F: roms/Makefile.edk2
3317F: roms/edk2
3318F: roms/edk2-*
3319F: tests/data/uefi-boot-images/
3320F: tests/uefi-test-tools/
3321F: .gitlab-ci.d/edk2.yml
3322F: .gitlab-ci.d/edk2/
3323
3324VT-d Emulation
3325M: Michael S. Tsirkin <mst@redhat.com>
3326M: Peter Xu <peterx@redhat.com>
3327R: Jason Wang <jasowang@redhat.com>
3328S: Supported
3329F: hw/i386/intel_iommu.c
3330F: hw/i386/intel_iommu_internal.h
3331F: include/hw/i386/intel_iommu.h
3332
3333OpenSBI Firmware
3334M: Bin Meng <bmeng.cn@gmail.com>
3335S: Supported
3336F: pc-bios/opensbi-*
3337F: .gitlab-ci.d/opensbi.yml
3338F: .gitlab-ci.d/opensbi/
3339
3340Clock framework
3341M: Luc Michel <luc@lmichel.fr>
3342R: Damien Hedde <damien.hedde@greensocs.com>
3343S: Maintained
3344F: include/hw/clock.h
3345F: include/hw/qdev-clock.h
3346F: hw/core/clock.c
3347F: hw/core/clock-vmstate.c
3348F: hw/core/qdev-clock.c
3349F: docs/devel/clocks.rst
3350
3351Usermode Emulation
3352------------------
3353Overall usermode emulation
3354M: Riku Voipio <riku.voipio@iki.fi>
3355S: Maintained
3356F: accel/tcg/user-exec*.c
3357F: include/user/
3358F: common-user/
3359
3360BSD user
3361M: Warner Losh <imp@bsdimp.com>
3362R: Kyle Evans <kevans@freebsd.org>
3363S: Maintained
3364F: bsd-user/
3365F: configs/targets/*-bsd-user.mak
3366F: tests/vm/*bsd
3367T: git https://github.com/qemu-bsd-user/qemu-bsd-user bsd-user-rebase-3.1
3368
3369Linux user
3370M: Laurent Vivier <laurent@vivier.eu>
3371S: Maintained
3372F: linux-user/
3373F: configs/targets/*linux-user.mak
3374F: scripts/qemu-binfmt-conf.sh
3375F: scripts/update-syscalltbl.sh
3376F: scripts/update-mips-syscall-args.sh
3377F: scripts/gensyscalls.sh
3378
3379Tiny Code Generator (TCG)
3380-------------------------
3381Common TCG code
3382M: Richard Henderson <richard.henderson@linaro.org>
3383S: Maintained
3384F: tcg/
3385F: include/tcg/
3386
3387TCG Plugins
3388M: Alex Bennée <alex.bennee@linaro.org>
3389R: Alexandre Iooss <erdnaxe@crans.org>
3390R: Mahmoud Mandour <ma.mandourr@gmail.com>
3391S: Maintained
3392F: docs/devel/tcg-plugins.rst
3393F: plugins/
3394F: tests/plugin/
3395F: tests/avocado/tcg_plugins.py
3396F: contrib/plugins/
3397
3398AArch64 TCG target
3399M: Richard Henderson <richard.henderson@linaro.org>
3400S: Maintained
3401L: qemu-arm@nongnu.org
3402F: tcg/aarch64/
3403
3404ARM TCG target
3405M: Richard Henderson <richard.henderson@linaro.org>
3406S: Maintained
3407L: qemu-arm@nongnu.org
3408F: tcg/arm/
3409
3410i386 TCG target
3411M: Richard Henderson <richard.henderson@linaro.org>
3412S: Maintained
3413F: tcg/i386/
3414
3415LoongArch64 TCG target
3416M: WANG Xuerui <git@xen0n.name>
3417S: Maintained
3418F: tcg/loongarch64/
3419
3420MIPS TCG target
3421M: Philippe Mathieu-Daudé <philmd@linaro.org>
3422R: Aurelien Jarno <aurelien@aurel32.net>
3423R: Huacai Chen <chenhuacai@kernel.org>
3424R: Jiaxun Yang <jiaxun.yang@flygoat.com>
3425R: Aleksandar Rikalo <aleksandar.rikalo@syrmia.com>
3426S: Odd Fixes
3427F: tcg/mips/
3428
3429PPC TCG target
3430M: Richard Henderson <richard.henderson@linaro.org>
3431S: Odd Fixes
3432F: tcg/ppc/
3433
3434RISC-V TCG target
3435M: Palmer Dabbelt <palmer@dabbelt.com>
3436M: Alistair Francis <Alistair.Francis@wdc.com>
3437L: qemu-riscv@nongnu.org
3438S: Maintained
3439F: tcg/riscv/
3440F: disas/riscv.c
3441
3442S390 TCG target
3443M: Richard Henderson <richard.henderson@linaro.org>
3444S: Maintained
3445F: tcg/s390/
3446L: qemu-s390x@nongnu.org
3447
3448SPARC TCG target
3449S: Odd Fixes
3450F: tcg/sparc64/
3451F: disas/sparc.c
3452
3453TCI TCG target
3454M: Stefan Weil <sw@weilnetz.de>
3455S: Maintained
3456F: tcg/tci/
3457F: tcg/tci.c
3458F: disas/tci.c
3459
3460Block drivers
3461-------------
3462VMDK
3463M: Fam Zheng <fam@euphon.net>
3464L: qemu-block@nongnu.org
3465S: Supported
3466F: block/vmdk.c
3467
3468RBD
3469M: Ilya Dryomov <idryomov@gmail.com>
3470R: Peter Lieven <pl@kamp.de>
3471L: qemu-block@nongnu.org
3472S: Supported
3473F: block/rbd.c
3474
3475VHDX
3476M: Jeff Cody <codyprime@gmail.com>
3477L: qemu-block@nongnu.org
3478S: Supported
3479F: block/vhdx*
3480
3481VDI
3482M: Stefan Weil <sw@weilnetz.de>
3483L: qemu-block@nongnu.org
3484S: Maintained
3485F: block/vdi.c
3486
3487blkio
3488M: Stefan Hajnoczi <stefanha@redhat.com>
3489L: qemu-block@nongnu.org
3490S: Maintained
3491F: block/blkio.c
3492
3493iSCSI
3494M: Ronnie Sahlberg <ronniesahlberg@gmail.com>
3495M: Paolo Bonzini <pbonzini@redhat.com>
3496M: Peter Lieven <pl@kamp.de>
3497L: qemu-block@nongnu.org
3498S: Odd Fixes
3499F: block/iscsi.c
3500F: block/iscsi-opts.c
3501
3502Network Block Device (NBD)
3503M: Eric Blake <eblake@redhat.com>
3504M: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
3505L: qemu-block@nongnu.org
3506S: Maintained
3507F: block/nbd*
3508F: nbd/
3509F: include/block/nbd*
3510F: qemu-nbd.*
3511F: blockdev-nbd.c
3512F: docs/interop/nbd.txt
3513F: docs/tools/qemu-nbd.rst
3514F: tests/qemu-iotests/tests/*nbd*
3515T: git https://repo.or.cz/qemu/ericb.git nbd
3516T: git https://gitlab.com/vsementsov/qemu.git block
3517
3518NFS
3519M: Peter Lieven <pl@kamp.de>
3520L: qemu-block@nongnu.org
3521S: Maintained
3522F: block/nfs.c
3523
3524SSH
3525M: Richard W.M. Jones <rjones@redhat.com>
3526L: qemu-block@nongnu.org
3527S: Supported
3528F: block/ssh.c
3529
3530CURL
3531L: qemu-block@nongnu.org
3532S: Odd Fixes
3533F: block/curl.c
3534
3535GLUSTER
3536L: qemu-block@nongnu.org
3537L: integration@gluster.org
3538S: Odd Fixes
3539F: block/gluster.c
3540
3541Null Block Driver
3542M: Fam Zheng <fam@euphon.net>
3543L: qemu-block@nongnu.org
3544S: Supported
3545F: block/null.c
3546
3547NVMe Block Driver
3548M: Stefan Hajnoczi <stefanha@redhat.com>
3549R: Fam Zheng <fam@euphon.net>
3550R: Philippe Mathieu-Daudé <philmd@linaro.org>
3551L: qemu-block@nongnu.org
3552S: Supported
3553F: block/nvme*
3554F: include/block/nvme.h
3555T: git https://github.com/stefanha/qemu.git block
3556
3557Bootdevice
3558M: Gonglei <arei.gonglei@huawei.com>
3559S: Maintained
3560F: softmmu/bootdevice.c
3561
3562Quorum
3563M: Alberto Garcia <berto@igalia.com>
3564S: Supported
3565F: block/quorum.c
3566L: qemu-block@nongnu.org
3567
3568blklogwrites
3569M: Ari Sundholm <ari@tuxera.com>
3570L: qemu-block@nongnu.org
3571S: Supported
3572F: block/blklogwrites.c
3573
3574blkverify
3575M: Stefan Hajnoczi <stefanha@redhat.com>
3576L: qemu-block@nongnu.org
3577S: Supported
3578F: block/blkverify.c
3579
3580bochs
3581M: Stefan Hajnoczi <stefanha@redhat.com>
3582L: qemu-block@nongnu.org
3583S: Supported
3584F: block/bochs.c
3585
3586cloop
3587M: Stefan Hajnoczi <stefanha@redhat.com>
3588L: qemu-block@nongnu.org
3589S: Supported
3590F: block/cloop.c
3591
3592dmg
3593M: Stefan Hajnoczi <stefanha@redhat.com>
3594L: qemu-block@nongnu.org
3595S: Supported
3596F: block/dmg.c
3597
3598parallels
3599M: Stefan Hajnoczi <stefanha@redhat.com>
3600M: Denis V. Lunev <den@openvz.org>
3601L: qemu-block@nongnu.org
3602S: Supported
3603F: block/parallels.c
3604F: block/parallels-ext.c
3605F: docs/interop/parallels.txt
3606
3607qed
3608M: Stefan Hajnoczi <stefanha@redhat.com>
3609L: qemu-block@nongnu.org
3610S: Supported
3611F: block/qed.c
3612
3613raw
3614M: Kevin Wolf <kwolf@redhat.com>
3615L: qemu-block@nongnu.org
3616S: Supported
3617F: block/linux-aio.c
3618F: include/block/raw-aio.h
3619F: block/raw-format.c
3620F: block/file-posix.c
3621F: block/file-win32.c
3622F: block/win32-aio.c
3623
3624Linux io_uring
3625M: Aarushi Mehta <mehta.aaru20@gmail.com>
3626M: Julia Suvorova <jusual@redhat.com>
3627M: Stefan Hajnoczi <stefanha@redhat.com>
3628R: Stefano Garzarella <sgarzare@redhat.com>
3629L: qemu-block@nongnu.org
3630S: Maintained
3631F: block/io_uring.c
3632F: stubs/io_uring.c
3633
3634qcow2
3635M: Kevin Wolf <kwolf@redhat.com>
3636M: Hanna Reitz <hreitz@redhat.com>
3637L: qemu-block@nongnu.org
3638S: Supported
3639F: block/qcow2*
3640F: docs/interop/qcow2.txt
3641
3642qcow
3643M: Kevin Wolf <kwolf@redhat.com>
3644L: qemu-block@nongnu.org
3645S: Supported
3646F: block/qcow.c
3647
3648blkdebug
3649M: Kevin Wolf <kwolf@redhat.com>
3650M: Hanna Reitz <hreitz@redhat.com>
3651L: qemu-block@nongnu.org
3652S: Supported
3653F: block/blkdebug.c
3654
3655vpc
3656M: Kevin Wolf <kwolf@redhat.com>
3657L: qemu-block@nongnu.org
3658S: Supported
3659F: block/vpc.c
3660
3661vvfat
3662M: Kevin Wolf <kwolf@redhat.com>
3663L: qemu-block@nongnu.org
3664S: Odd Fixes
3665F: block/vvfat.c
3666
3667Image format fuzzer
3668M: Stefan Hajnoczi <stefanha@redhat.com>
3669L: qemu-block@nongnu.org
3670S: Supported
3671F: tests/image-fuzzer/
3672
3673Vhost-user block device backend server
3674M: Coiby Xu <Coiby.Xu@gmail.com>
3675S: Maintained
3676F: block/export/vhost-user-blk-server.c
3677F: block/export/vhost-user-blk-server.h
3678F: block/export/virtio-blk-handler.c
3679F: block/export/virtio-blk-handler.h
3680F: include/qemu/vhost-user-server.h
3681F: tests/qtest/libqos/vhost-user-blk.c
3682F: tests/qtest/libqos/vhost-user-blk.h
3683F: tests/qtest/vhost-user-blk-test.c
3684F: util/vhost-user-server.c
3685
3686FUSE block device exports
3687M: Hanna Reitz <hreitz@redhat.com>
3688L: qemu-block@nongnu.org
3689S: Supported
3690F: block/export/fuse.c
3691
3692VDUSE library and block device exports
3693M: Xie Yongji <xieyongji@bytedance.com>
3694S: Maintained
3695F: subprojects/libvduse/
3696F: block/export/vduse-blk.c
3697F: block/export/vduse-blk.h
3698
3699Replication
3700M: Wen Congyang <wencongyang2@huawei.com>
3701M: Xie Changlong <xiechanglong.d@gmail.com>
3702S: Supported
3703F: replication*
3704F: block/replication.c
3705F: tests/unit/test-replication.c
3706F: docs/block-replication.txt
3707
3708PVRDMA
3709M: Yuval Shaia <yuval.shaia.ml@gmail.com>
3710M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
3711S: Maintained
3712F: hw/rdma/*
3713F: hw/rdma/vmw/*
3714F: docs/pvrdma.txt
3715F: contrib/rdmacm-mux/*
3716F: qapi/rdma.json
3717
3718Semihosting
3719M: Alex Bennée <alex.bennee@linaro.org>
3720S: Maintained
3721F: semihosting/
3722F: include/semihosting/
3723F: tests/tcg/multiarch/arm-compat-semi/
3724F: tests/tcg/aarch64/system/semiheap.c
3725
3726Multi-process QEMU
3727M: Elena Ufimtseva <elena.ufimtseva@oracle.com>
3728M: Jagannathan Raman <jag.raman@oracle.com>
3729M: John G Johnson <john.g.johnson@oracle.com>
3730S: Maintained
3731F: docs/devel/multi-process.rst
3732F: docs/system/multi-process.rst
3733F: hw/pci-host/remote.c
3734F: include/hw/pci-host/remote.h
3735F: hw/remote/machine.c
3736F: include/hw/remote/machine.h
3737F: hw/remote/mpqemu-link.c
3738F: include/hw/remote/mpqemu-link.h
3739F: hw/remote/message.c
3740F: hw/remote/remote-obj.c
3741F: include/hw/remote/memory.h
3742F: hw/remote/memory.c
3743F: hw/remote/proxy.c
3744F: include/hw/remote/proxy.h
3745F: hw/remote/proxy-memory-listener.c
3746F: include/hw/remote/proxy-memory-listener.h
3747F: hw/remote/iohub.c
3748F: include/hw/remote/iohub.h
3749F: subprojects/libvfio-user
3750F: hw/remote/vfio-user-obj.c
3751F: include/hw/remote/vfio-user-obj.h
3752F: hw/remote/iommu.c
3753F: include/hw/remote/iommu.h
3754
3755EBPF:
3756M: Jason Wang <jasowang@redhat.com>
3757R: Andrew Melnychenko <andrew@daynix.com>
3758R: Yuri Benditovich <yuri.benditovich@daynix.com>
3759S: Maintained
3760F: ebpf/*
3761F: tools/ebpf/*
3762
3763Build and test automation
3764-------------------------
3765Build and test automation, general continuous integration
3766M: Alex Bennée <alex.bennee@linaro.org>
3767M: Philippe Mathieu-Daudé <philmd@linaro.org>
3768M: Thomas Huth <thuth@redhat.com>
3769R: Wainer dos Santos Moschetta <wainersm@redhat.com>
3770R: Beraldo Leal <bleal@redhat.com>
3771S: Maintained
3772F: .github/workflows/lockdown.yml
3773F: .gitlab-ci.yml
3774F: .gitlab-ci.d/
3775F: .travis.yml
3776F: scripts/ci/
3777F: tests/docker/
3778F: tests/vm/
3779F: tests/lcitool/
3780F: tests/avocado/tuxrun_baselines.py
3781F: scripts/archive-source.sh
3782F: docs/devel/testing.rst
3783W: https://gitlab.com/qemu-project/qemu/pipelines
3784W: https://travis-ci.org/qemu/qemu
3785
3786FreeBSD Hosted Continuous Integration
3787M: Ed Maste <emaste@freebsd.org>
3788M: Li-Wen Hsu <lwhsu@freebsd.org>
3789S: Maintained
3790F: .gitlab-ci.d/cirrus/freebsd*
3791F: tests/vm/freebsd
3792W: https://cirrus-ci.com/github/qemu/qemu
3793
3794Windows Hosted Continuous Integration
3795M: Yonggang Luo <luoyonggang@gmail.com>
3796S: Maintained
3797F: .cirrus.yml
3798W: https://cirrus-ci.com/github/qemu/qemu
3799
3800Guest Test Compilation Support
3801M: Alex Bennée <alex.bennee@linaro.org>
3802R: Philippe Mathieu-Daudé <philmd@linaro.org>
3803S: Maintained
3804F: tests/tcg/Makefile.target
3805
3806Integration Testing with the Avocado framework
3807W: https://trello.com/b/6Qi1pxVn/avocado-qemu
3808R: Cleber Rosa <crosa@redhat.com>
3809R: Philippe Mathieu-Daudé <philmd@linaro.org>
3810R: Wainer dos Santos Moschetta <wainersm@redhat.com>
3811R: Beraldo Leal <bleal@redhat.com>
3812S: Odd Fixes
3813F: tests/avocado/
3814
3815GitLab custom runner (Works On Arm Sponsored)
3816M: Alex Bennée <alex.bennee@linaro.org>
3817M: Philippe Mathieu-Daudé <philmd@linaro.org>
3818S: Maintained
3819F: .gitlab-ci.d/custom-runners/ubuntu-22.04-aarch64.yml
3820F: .gitlab-ci.d/custom-runners/ubuntu-22.04-aarch32.yml
3821
3822Documentation
3823-------------
3824Build system architecture
3825M: Daniel P. Berrange <berrange@redhat.com>
3826S: Odd Fixes
3827F: docs/devel/build-system.rst
3828
3829GIT Data Mining Config
3830M: Alex Bennée <alex.bennee@linaro.org>
3831S: Odd Fixes
3832F: gitdm.config
3833F: contrib/gitdm/*
3834
3835Incompatible changes
3836R: libvir-list@redhat.com
3837F: docs/about/deprecated.rst
3838
3839Build System
3840------------
3841Meson
3842M: Paolo Bonzini <pbonzini@redhat.com>
3843R: Marc-André Lureau <marcandre.lureau@redhat.com>
3844R: Daniel P. Berrange <berrange@redhat.com>
3845R: Thomas Huth <thuth@redhat.com>
3846R: Philippe Mathieu-Daudé <philmd@linaro.org>
3847S: Maintained
3848F: meson.build
3849F: meson_options.txt
3850F: scripts/meson-buildoptions.*
3851F: scripts/check_sparse.py
3852F: scripts/symlink-install-tree.py
3853
3854Top Level Makefile and configure
3855M: Paolo Bonzini <pbonzini@redhat.com>
3856R: Alex Bennée <alex.bennee@linaro.org>
3857R: Thomas Huth <thuth@redhat.com>
3858S: Maintained
3859F: Makefile
3860F: configure
3861F: scripts/mtest2make.py
3862F: tests/Makefile.include
3863
3864GIT submodules
3865M: Daniel P. Berrange <berrange@redhat.com>
3866S: Odd Fixes
3867F: scripts/git-submodule.sh
3868
3869UI translations
3870S: Orphan
3871F: po/*.po
3872
3873Sphinx documentation configuration and build machinery
3874M: Peter Maydell <peter.maydell@linaro.org>
3875S: Maintained
3876F: docs/conf.py
3877F: docs/*/conf.py
3878F: docs/sphinx/
3879F: docs/_templates/
3880
3881Miscellaneous
3882-------------
3883Performance Tools and Tests
3884M: Ahmed Karaman <ahmedkhaledkaraman@gmail.com>
3885S: Maintained
3886F: scripts/performance/
3887