OSDN Git Service

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