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