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