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