spapr_drc.c: handle hotunplug errors in drc_unisolate_logical()
[qemu.git] / MAINTAINERS
blob6bc008d8259e0e1c9e6ced1f85d1a07f00fc37e9
1 QEMU Maintainers
2 ================
4 The intention of this file is not to establish who owns what portions of the
5 code base, but to provide a set of names that developers can consult when they
6 have a question about a particular subset and also to provide a set of names
7 to be CC'd when submitting a patch to obtain appropriate review.
9 In general, if you have a question about inclusion of a patch, you should
10 consult qemu-devel and not any specific individual privately.
12 Descriptions of section entries:
14         M: Mail patches to: FullName <address@domain>
15            Maintainers are looking after a certain area and must be CCed on
16            patches. They are considered the main contact point.
17         R: Designated reviewer: FullName <address@domain>
18            These reviewers should be CCed on patches.
19            Reviewers are familiar with the subject matter and provide feedback
20            even though they are not maintainers.
21         L: Mailing list that is relevant to this area
22            These lists should be CCed on patches.
23         W: Web-page with status/info
24         Q: Patchwork web based patch tracking system site
25         T: SCM tree type and location.  Type is one of: git, hg, quilt, stgit.
26         S: Status, one of the following:
27            Supported:   Someone is actually paid to look after this.
28            Maintained:  Someone actually looks after it.
29            Odd Fixes:   It has a maintainer but they don't have time to do
30                         much other than throw the odd patch in. See below.
31            Orphan:      No current maintainer [but maybe you could take the
32                         role as you write your new code].
33            Obsolete:    Old code. Something tagged obsolete generally means
34                         it has been replaced by a better system and you
35                         should be using that.
36         F: Files and directories with wildcard patterns.
37            A trailing slash includes all files and subdirectory files.
38            F:   drivers/net/    all files in and below drivers/net
39            F:   drivers/net/*   all files in drivers/net, but not below
40            F:   */net/*         all files in "any top level directory"/net
41            One pattern per line.  Multiple F: lines acceptable.
42         X: Files and directories that are NOT maintained, same rules as F:
43            Files exclusions are tested before file matches.
44            Can be useful for excluding a specific subdirectory, for instance:
45            F:   net/
46            X:   net/ipv6/
47            matches all files in and below net excluding net/ipv6/
48         K: Keyword perl extended regex pattern to match content in a
49            patch or file.  For instance:
50            K: of_get_profile
51               matches patches or files that contain "of_get_profile"
52            K: \b(printk|pr_(info|err))\b
53               matches patches or files that contain one or more of the words
54               printk, pr_info or pr_err
55            One regex pattern per line.  Multiple K: lines acceptable.
58 General Project Administration
59 ------------------------------
60 M: Peter Maydell <peter.maydell@linaro.org>
62 All patches CC here
63 L: qemu-devel@nongnu.org
64 F: *
65 F: */
67 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
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 T: git git://git.corpit.ru/qemu.git trivial-patches
82 T: git https://github.com/vivier/qemu.git trivial-patches
84 Architecture support
85 --------------------
86 S390 general architecture support
87 M: Cornelia Huck <cohuck@redhat.com>
88 M: Thomas Huth <thuth@redhat.com>
89 S: Supported
90 F: default-configs/*/s390x-softmmu.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 T: git https://gitlab.com/cohuck/qemu.git s390-next
110 L: qemu-s390x@nongnu.org
112 Guest CPU cores (TCG)
113 ---------------------
114 Overall TCG CPUs
115 M: Richard Henderson <richard.henderson@linaro.org>
116 R: Paolo Bonzini <pbonzini@redhat.com>
117 S: Maintained
118 F: softmmu/cpus.c
119 F: cpus-common.c
120 F: page-vary.c
121 F: page-vary-common.c
122 F: accel/tcg/
123 F: accel/stubs/tcg-stub.c
124 F: util/cacheinfo.c
125 F: util/cacheflush.c
126 F: scripts/decodetree.py
127 F: docs/devel/decodetree.rst
128 F: include/exec/cpu*.h
129 F: include/exec/exec-all.h
130 F: include/exec/helper*.h
131 F: include/exec/tb-hash.h
132 F: include/sysemu/cpus.h
133 F: include/sysemu/tcg.h
134 F: include/hw/core/tcg-cpu-ops.h
136 FPU emulation
137 M: Aurelien Jarno <aurelien@aurel32.net>
138 M: Peter Maydell <peter.maydell@linaro.org>
139 M: Alex Bennée <alex.bennee@linaro.org>
140 S: Maintained
141 F: fpu/
142 F: include/fpu/
143 F: tests/fp/
145 Alpha TCG CPUs
146 M: Richard Henderson <richard.henderson@linaro.org>
147 S: Maintained
148 F: target/alpha/
149 F: tests/tcg/alpha/
150 F: disas/alpha.c
152 ARM TCG CPUs
153 M: Peter Maydell <peter.maydell@linaro.org>
154 L: qemu-arm@nongnu.org
155 S: Maintained
156 F: target/arm/
157 F: tests/tcg/arm/
158 F: tests/tcg/aarch64/
159 F: hw/arm/
160 F: hw/cpu/a*mpcore.c
161 F: include/hw/cpu/a*mpcore.h
162 F: disas/arm.c
163 F: disas/arm-a64.cc
164 F: disas/libvixl/
165 F: docs/system/target-arm.rst
166 F: docs/system/arm/cpu-features.rst
168 ARM SMMU
169 M: Eric Auger <eric.auger@redhat.com>
170 L: qemu-arm@nongnu.org
171 S: Maintained
172 F: hw/arm/smmu*
173 F: include/hw/arm/smmu*
175 AVR TCG CPUs
176 M: Michael Rolnik <mrolnik@gmail.com>
177 S: Maintained
178 F: docs/system/target-avr.rst
179 F: gdb-xml/avr-cpu.xml
180 F: target/avr/
181 F: tests/acceptance/machine_avr6.py
183 CRIS TCG CPUs
184 M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
185 S: Maintained
186 F: target/cris/
187 F: hw/cris/
188 F: include/hw/cris/
189 F: tests/tcg/cris/
190 F: disas/cris.c
192 Hexagon TCG CPUs
193 M: Taylor Simpson <tsimpson@quicinc.com>
194 S: Supported
195 F: target/hexagon/
196 F: linux-user/hexagon/
197 F: tests/tcg/hexagon/
198 F: disas/hexagon.c
199 F: default-configs/targets/hexagon-linux-user.mak
201 HPPA (PA-RISC) TCG CPUs
202 M: Richard Henderson <richard.henderson@linaro.org>
203 S: Maintained
204 F: target/hppa/
205 F: hw/hppa/
206 F: disas/hppa.c
207 F: hw/net/*i82596*
208 F: include/hw/net/lasi_82596.h
210 LM32 TCG CPUs
211 R: Michael Walle <michael@walle.cc>
212 S: Orphan
213 F: target/lm32/
214 F: disas/lm32.c
215 F: hw/lm32/
216 F: hw/*/lm32_*
217 F: hw/*/milkymist-*
218 F: include/hw/display/milkymist_tmu2.h
219 F: include/hw/char/lm32_juart.h
220 F: include/hw/lm32/
221 F: tests/tcg/lm32/
223 M68K TCG CPUs
224 M: Laurent Vivier <laurent@vivier.eu>
225 S: Maintained
226 F: target/m68k/
227 F: disas/m68k.c
229 MicroBlaze TCG CPUs
230 M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
231 S: Maintained
232 F: target/microblaze/
233 F: hw/microblaze/
234 F: disas/microblaze.c
236 MIPS TCG CPUs
237 M: Philippe Mathieu-Daudé <f4bug@amsat.org>
238 R: Aurelien Jarno <aurelien@aurel32.net>
239 R: Jiaxun Yang <jiaxun.yang@flygoat.com>
240 R: Aleksandar Rikalo <aleksandar.rikalo@syrmia.com>
241 S: Odd Fixes
242 F: target/mips/
243 F: default-configs/*/*mips*
244 F: disas/mips.c
245 F: docs/system/cpu-models-mips.rst.inc
246 F: hw/intc/mips_gic.c
247 F: hw/mips/
248 F: hw/misc/mips_*
249 F: hw/timer/mips_gictimer.c
250 F: include/hw/intc/mips_gic.h
251 F: include/hw/mips/
252 F: include/hw/misc/mips_*
253 F: include/hw/timer/mips_gictimer.h
254 F: tests/tcg/mips/
255 K: ^Subject:.*(?i)mips
257 MIPS TCG CPUs (nanoMIPS ISA)
258 S: Orphan
259 F: disas/nanomips.*
261 Moxie TCG CPUs
262 M: Anthony Green <green@moxielogic.com>
263 S: Maintained
264 F: target/moxie/
265 F: disas/moxie.c
266 F: hw/moxie/
267 F: default-configs/*/moxie-softmmu.mak
269 NiosII TCG CPUs
270 M: Chris Wulff <crwulff@gmail.com>
271 M: Marek Vasut <marex@denx.de>
272 S: Maintained
273 F: target/nios2/
274 F: hw/nios2/
275 F: disas/nios2.c
276 F: default-configs/*/nios2-softmmu.mak
278 OpenRISC TCG CPUs
279 M: Stafford Horne <shorne@gmail.com>
280 S: Odd Fixes
281 F: target/openrisc/
282 F: hw/openrisc/
283 F: tests/tcg/openrisc/
285 PowerPC TCG CPUs
286 M: David Gibson <david@gibson.dropbear.id.au>
287 M: Greg Kurz <groug@kaod.org>
288 L: qemu-ppc@nongnu.org
289 S: Maintained
290 F: target/ppc/
291 F: hw/ppc/
292 F: include/hw/ppc/
293 F: disas/ppc.c
294 F: tests/acceptance/machine_ppc.py
296 RISC-V TCG CPUs
297 M: Palmer Dabbelt <palmer@dabbelt.com>
298 M: Alistair Francis <Alistair.Francis@wdc.com>
299 M: Sagar Karandikar <sagark@eecs.berkeley.edu>
300 M: Bastian Koppelmann <kbastian@mail.uni-paderborn.de>
301 L: qemu-riscv@nongnu.org
302 S: Supported
303 F: target/riscv/
304 F: hw/riscv/
305 F: include/hw/riscv/
306 F: linux-user/host/riscv32/
307 F: linux-user/host/riscv64/
309 RENESAS RX CPUs
310 R: Yoshinori Sato <ysato@users.sourceforge.jp>
311 S: Orphan
312 F: target/rx/
314 S390 TCG CPUs
315 M: Richard Henderson <richard.henderson@linaro.org>
316 M: David Hildenbrand <david@redhat.com>
317 S: Maintained
318 F: target/s390x/
319 F: hw/s390x/
320 F: disas/s390.c
321 F: tests/tcg/s390x/
322 L: qemu-s390x@nongnu.org
324 SH4 TCG CPUs
325 R: Yoshinori Sato <ysato@users.sourceforge.jp>
326 S: Orphan
327 F: target/sh4/
328 F: hw/sh4/
329 F: disas/sh4.c
330 F: include/hw/sh4/
332 SPARC TCG CPUs
333 M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
334 M: Artyom Tarasenko <atar4qemu@gmail.com>
335 S: Maintained
336 F: target/sparc/
337 F: hw/sparc/
338 F: hw/sparc64/
339 F: include/hw/sparc/sparc64.h
340 F: disas/sparc.c
342 UniCore32 TCG CPUs
343 M: Guan Xuetao <gxt@mprc.pku.edu.cn>
344 S: Maintained
345 F: target/unicore32/
346 F: hw/unicore32/
347 F: include/hw/unicore32/
349 X86 TCG CPUs
350 M: Paolo Bonzini <pbonzini@redhat.com>
351 M: Richard Henderson <richard.henderson@linaro.org>
352 M: Eduardo Habkost <ehabkost@redhat.com>
353 S: Maintained
354 F: target/i386/
355 F: tests/tcg/i386/
356 F: tests/tcg/x86_64/
357 F: hw/i386/
358 F: disas/i386.c
359 F: docs/system/cpu-models-x86.rst.inc
360 T: git https://gitlab.com/ehabkost/qemu.git x86-next
362 Xtensa TCG CPUs
363 M: Max Filippov <jcmvbkbc@gmail.com>
364 W: http://wiki.osll.ru/doku.php?id=etc:users:jcmvbkbc:qemu-target-xtensa
365 S: Maintained
366 F: target/xtensa/
367 F: hw/xtensa/
368 F: tests/tcg/xtensa/
369 F: disas/xtensa.c
370 F: include/hw/xtensa/xtensa-isa.h
371 F: default-configs/*/xtensa*.mak
373 TriCore TCG CPUs
374 M: Bastian Koppelmann <kbastian@mail.uni-paderborn.de>
375 S: Maintained
376 F: target/tricore/
377 F: hw/tricore/
378 F: include/hw/tricore/
380 Multiarch Linux User Tests
381 M: Alex Bennée <alex.bennee@linaro.org>
382 S: Maintained
383 F: tests/tcg/multiarch/
385 Guest CPU Cores (KVM)
386 ---------------------
387 Overall KVM CPUs
388 M: Paolo Bonzini <pbonzini@redhat.com>
389 L: kvm@vger.kernel.org
390 S: Supported
391 F: */*/kvm*
392 F: accel/kvm/
393 F: accel/stubs/kvm-stub.c
394 F: include/hw/kvm/
395 F: include/sysemu/kvm*.h
396 F: scripts/kvm/kvm_flightrecorder
398 ARM KVM CPUs
399 M: Peter Maydell <peter.maydell@linaro.org>
400 L: qemu-arm@nongnu.org
401 S: Maintained
402 F: target/arm/kvm.c
404 MIPS KVM CPUs
405 M: Huacai Chen <chenhuacai@kernel.org>
406 S: Odd Fixes
407 F: target/mips/kvm.c
409 PPC KVM CPUs
410 M: David Gibson <david@gibson.dropbear.id.au>
411 M: Greg Kurz <groug@kaod.org>
412 S: Maintained
413 F: target/ppc/kvm.c
415 S390 KVM CPUs
416 M: Halil Pasic <pasic@linux.ibm.com>
417 M: Cornelia Huck <cohuck@redhat.com>
418 M: Christian Borntraeger <borntraeger@de.ibm.com>
419 S: Supported
420 F: target/s390x/kvm.c
421 F: target/s390x/kvm_s390x.h
422 F: target/s390x/kvm-stub.c
423 F: target/s390x/ioinst.[ch]
424 F: target/s390x/machine.c
425 F: target/s390x/sigp.c
426 F: target/s390x/cpu_features*.[ch]
427 F: target/s390x/cpu_models.[ch]
428 F: hw/s390x/pv.c
429 F: include/hw/s390x/pv.h
430 F: hw/intc/s390_flic.c
431 F: hw/intc/s390_flic_kvm.c
432 F: include/hw/s390x/s390_flic.h
433 F: gdb-xml/s390*.xml
434 T: git https://gitlab.com/cohuck/qemu.git s390-next
435 T: git https://github.com/borntraeger/qemu.git s390-next
436 L: qemu-s390x@nongnu.org
438 X86 KVM CPUs
439 M: Paolo Bonzini <pbonzini@redhat.com>
440 M: Marcelo Tosatti <mtosatti@redhat.com>
441 L: kvm@vger.kernel.org
442 S: Supported
443 F: target/i386/kvm/
444 F: scripts/kvm/vmxcap
446 Guest CPU Cores (other accelerators)
447 ------------------------------------
448 Overall
449 M: Richard Henderson <richard.henderson@linaro.org>
450 R: Paolo Bonzini <pbonzini@redhat.com>
451 S: Maintained
452 F: include/qemu/accel.h
453 F: include/sysemu/accel-ops.h
454 F: include/hw/core/accel-cpu.h
455 F: accel/accel-*.c
456 F: accel/Makefile.objs
457 F: accel/stubs/Makefile.objs
459 X86 HVF CPUs
460 M: Cameron Esfahani <dirty@apple.com>
461 M: Roman Bolshakov <r.bolshakov@yadro.com>
462 W: https://wiki.qemu.org/Features/HVF
463 S: Maintained
464 F: target/i386/hvf/
465 F: include/sysemu/hvf.h
467 WHPX CPUs
468 M: Sunil Muthuswamy <sunilmut@microsoft.com>
469 S: Supported
470 F: target/i386/whpx/
471 F: include/sysemu/whpx.h
473 Guest CPU Cores (Xen)
474 ---------------------
475 X86 Xen CPUs
476 M: Stefano Stabellini <sstabellini@kernel.org>
477 M: Anthony Perard <anthony.perard@citrix.com>
478 M: Paul Durrant <paul@xen.org>
479 L: xen-devel@lists.xenproject.org
480 S: Supported
481 F: */xen*
482 F: accel/xen/*
483 F: hw/9pfs/xen-9p*
484 F: hw/char/xen_console.c
485 F: hw/display/xenfb.c
486 F: hw/net/xen_nic.c
487 F: hw/usb/xen-usb.c
488 F: hw/block/xen*
489 F: hw/block/dataplane/xen*
490 F: hw/xen/
491 F: hw/xenpv/
492 F: hw/i386/xen/
493 F: hw/pci-host/xen_igd_pt.c
494 F: include/hw/block/dataplane/xen*
495 F: include/hw/xen/
496 F: include/sysemu/xen.h
497 F: include/sysemu/xen-mapcache.h
498 F: stubs/xen-hw-stub.c
500 Guest CPU Cores (HAXM)
501 ---------------------
502 X86 HAXM CPUs
503 M: Wenchao Wang <wenchao.wang@intel.com>
504 M: Colin Xu <colin.xu@intel.com>
505 L: haxm-team@intel.com
506 W: https://github.com/intel/haxm/issues
507 S: Maintained
508 F: accel/stubs/hax-stub.c
509 F: include/sysemu/hax.h
510 F: target/i386/hax/
512 Hosts
513 -----
514 LINUX
515 M: Michael S. Tsirkin <mst@redhat.com>
516 M: Cornelia Huck <cohuck@redhat.com>
517 M: Paolo Bonzini <pbonzini@redhat.com>
518 S: Maintained
519 F: linux-headers/
520 F: scripts/update-linux-headers.sh
522 POSIX
523 M: Paolo Bonzini <pbonzini@redhat.com>
524 S: Maintained
525 F: os-posix.c
526 F: include/sysemu/os-posix.h
527 F: util/*posix*.c
528 F: include/qemu/*posix*.h
530 NETBSD
531 M: Kamil Rytarowski <kamil@netbsd.org>
532 S: Maintained
533 K: ^Subject:.*(?i)NetBSD
535 OPENBSD
536 M: Brad Smith <brad@comstyle.com>
537 S: Maintained
538 K: ^Subject:.*(?i)OpenBSD
540 W32, W64
541 M: Stefan Weil <sw@weilnetz.de>
542 S: Maintained
543 F: *win32*
544 F: */*win32*
545 F: include/*/*win32*
546 X: qga/*win32*
547 F: qemu.nsi
549 Alpha Machines
550 --------------
551 M: Richard Henderson <richard.henderson@linaro.org>
552 S: Maintained
553 F: hw/alpha/
554 F: hw/isa/smc37c669-superio.c
555 F: tests/tcg/alpha/system/
557 ARM Machines
558 ------------
559 Allwinner-a10
560 M: Beniamino Galvani <b.galvani@gmail.com>
561 M: Peter Maydell <peter.maydell@linaro.org>
562 L: qemu-arm@nongnu.org
563 S: Odd Fixes
564 F: hw/*/allwinner*
565 F: include/hw/*/allwinner*
566 F: hw/arm/cubieboard.c
568 Allwinner-h3
569 M: Niek Linnenbank <nieklinnenbank@gmail.com>
570 L: qemu-arm@nongnu.org
571 S: Maintained
572 F: hw/*/allwinner-h3*
573 F: include/hw/*/allwinner-h3*
574 F: hw/arm/orangepi.c
575 F: docs/system/arm/orangepi.rst
577 ARM PrimeCell and CMSDK devices
578 M: Peter Maydell <peter.maydell@linaro.org>
579 L: qemu-arm@nongnu.org
580 S: Maintained
581 F: hw/char/pl011.c
582 F: include/hw/char/pl011.h
583 F: hw/display/pl110*
584 F: hw/dma/pl080.c
585 F: include/hw/dma/pl080.h
586 F: hw/dma/pl330.c
587 F: hw/gpio/pl061.c
588 F: hw/input/pl050.c
589 F: hw/intc/pl190.c
590 F: hw/sd/pl181.c
591 F: hw/ssi/pl022.c
592 F: include/hw/ssi/pl022.h
593 F: hw/rtc/pl031.c
594 F: include/hw/rtc/pl031.h
595 F: include/hw/arm/primecell.h
596 F: hw/timer/cmsdk-apb-timer.c
597 F: include/hw/timer/cmsdk-apb-timer.h
598 F: tests/qtest/cmsdk-apb-timer-test.c
599 F: hw/timer/cmsdk-apb-dualtimer.c
600 F: include/hw/timer/cmsdk-apb-dualtimer.h
601 F: tests/qtest/cmsdk-apb-dualtimer-test.c
602 F: hw/char/cmsdk-apb-uart.c
603 F: include/hw/char/cmsdk-apb-uart.h
604 F: hw/watchdog/cmsdk-apb-watchdog.c
605 F: include/hw/watchdog/cmsdk-apb-watchdog.h
606 F: tests/qtest/cmsdk-apb-watchdog-test.c
607 F: hw/misc/tz-ppc.c
608 F: include/hw/misc/tz-ppc.h
609 F: hw/misc/tz-mpc.c
610 F: include/hw/misc/tz-mpc.h
611 F: hw/misc/tz-msc.c
612 F: include/hw/misc/tz-msc.h
614 ARM cores
615 M: Peter Maydell <peter.maydell@linaro.org>
616 L: qemu-arm@nongnu.org
617 S: Maintained
618 F: hw/intc/arm*
619 F: hw/intc/gic_internal.h
620 F: hw/misc/a9scu.c
621 F: hw/misc/arm11scu.c
622 F: hw/misc/arm_l2x0.c
623 F: hw/timer/a9gtimer*
624 F: hw/timer/arm*
625 F: include/hw/arm/arm*.h
626 F: include/hw/intc/arm*
627 F: include/hw/misc/a9scu.h
628 F: include/hw/misc/arm11scu.h
629 F: include/hw/timer/a9gtimer.h
630 F: include/hw/timer/arm_mptimer.h
631 F: include/hw/timer/armv7m_systick.h
632 F: tests/qtest/test-arm-mptimer.c
634 Exynos
635 M: Igor Mitsyanko <i.mitsyanko@gmail.com>
636 M: Peter Maydell <peter.maydell@linaro.org>
637 L: qemu-arm@nongnu.org
638 S: Odd Fixes
639 F: hw/*/exynos*
640 F: include/hw/arm/exynos4210.h
642 Calxeda Highbank
643 M: Rob Herring <robh@kernel.org>
644 M: Peter Maydell <peter.maydell@linaro.org>
645 L: qemu-arm@nongnu.org
646 S: Odd Fixes
647 F: hw/arm/highbank.c
648 F: hw/net/xgmac.c
650 Canon DIGIC
651 M: Antony Pavlov <antonynpavlov@gmail.com>
652 M: Peter Maydell <peter.maydell@linaro.org>
653 L: qemu-arm@nongnu.org
654 S: Odd Fixes
655 F: include/hw/arm/digic.h
656 F: hw/*/digic*
657 F: include/hw/*/digic*
658 F: tests/acceptance/machine_arm_canona1100.py
659 F: docs/system/arm/digic.rst
661 Goldfish RTC
662 M: Anup Patel <anup.patel@wdc.com>
663 M: Alistair Francis <Alistair.Francis@wdc.com>
664 L: qemu-riscv@nongnu.org
665 S: Maintained
666 F: hw/rtc/goldfish_rtc.c
667 F: include/hw/rtc/goldfish_rtc.h
669 Gumstix
670 M: Peter Maydell <peter.maydell@linaro.org>
671 R: Philippe Mathieu-Daudé <f4bug@amsat.org>
672 L: qemu-arm@nongnu.org
673 S: Odd Fixes
674 F: hw/arm/gumstix.c
675 F: docs/system/arm/gumstix.rst
677 i.MX25 PDK
678 M: Peter Maydell <peter.maydell@linaro.org>
679 R: Jean-Christophe Dubois <jcd@tribudubois.net>
680 L: qemu-arm@nongnu.org
681 S: Odd Fixes
682 F: hw/arm/fsl-imx25.c
683 F: hw/arm/imx25_pdk.c
684 F: hw/misc/imx25_ccm.c
685 F: hw/watchdog/wdt_imx2.c
686 F: include/hw/arm/fsl-imx25.h
687 F: include/hw/misc/imx25_ccm.h
688 F: include/hw/watchdog/wdt_imx2.h
690 i.MX31 (kzm)
691 M: Peter Maydell <peter.maydell@linaro.org>
692 L: qemu-arm@nongnu.org
693 S: Odd Fixes
694 F: hw/arm/kzm.c
695 F: hw/*/imx_*
696 F: hw/*/*imx31*
697 F: include/hw/*/imx_*
698 F: include/hw/*/*imx31*
700 Integrator CP
701 M: Peter Maydell <peter.maydell@linaro.org>
702 L: qemu-arm@nongnu.org
703 S: Maintained
704 F: hw/arm/integratorcp.c
705 F: hw/misc/arm_integrator_debug.c
706 F: include/hw/misc/arm_integrator_debug.h
707 F: tests/acceptance/machine_arm_integratorcp.py
708 F: docs/system/arm/integratorcp.rst
710 MCIMX6UL EVK / i.MX6ul
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/mcimx6ul-evk.c
716 F: hw/arm/fsl-imx6ul.c
717 F: hw/misc/imx6ul_ccm.c
718 F: include/hw/arm/fsl-imx6ul.h
719 F: include/hw/misc/imx6ul_ccm.h
721 MCIMX7D SABRE / i.MX7
722 M: Peter Maydell <peter.maydell@linaro.org>
723 R: Andrey Smirnov <andrew.smirnov@gmail.com>
724 L: qemu-arm@nongnu.org
725 S: Odd Fixes
726 F: hw/arm/mcimx7d-sabre.c
727 F: hw/arm/fsl-imx7.c
728 F: hw/misc/imx7_*.c
729 F: include/hw/arm/fsl-imx7.h
730 F: include/hw/misc/imx7_*.h
731 F: hw/pci-host/designware.c
732 F: include/hw/pci-host/designware.h
734 MPS2
735 M: Peter Maydell <peter.maydell@linaro.org>
736 L: qemu-arm@nongnu.org
737 S: Maintained
738 F: hw/arm/mps2.c
739 F: hw/arm/mps2-tz.c
740 F: hw/misc/mps2-*.c
741 F: include/hw/misc/mps2-*.h
742 F: hw/arm/armsse.c
743 F: include/hw/arm/armsse.h
744 F: hw/misc/iotkit-secctl.c
745 F: include/hw/misc/iotkit-secctl.h
746 F: hw/misc/iotkit-sysctl.c
747 F: include/hw/misc/iotkit-sysctl.h
748 F: hw/misc/iotkit-sysinfo.c
749 F: include/hw/misc/iotkit-sysinfo.h
750 F: hw/misc/armsse-cpu-pwrctrl.c
751 F: include/hw/misc/armsse-cpu-pwrctrl.h
752 F: hw/misc/armsse-cpuid.c
753 F: include/hw/misc/armsse-cpuid.h
754 F: hw/misc/armsse-mhu.c
755 F: include/hw/misc/armsse-mhu.h
756 F: hw/timer/sse-counter.c
757 F: include/hw/timer/sse-counter.h
758 F: hw/timer/sse-timer.c
759 F: include/hw/timer/sse-timer.h
760 F: tests/qtest/sse-timer-test.c
761 F: docs/system/arm/mps2.rst
763 Musca
764 M: Peter Maydell <peter.maydell@linaro.org>
765 L: qemu-arm@nongnu.org
766 S: Maintained
767 F: hw/arm/musca.c
768 F: docs/system/arm/musca.rst
770 Musicpal
771 M: Jan Kiszka <jan.kiszka@web.de>
772 M: Peter Maydell <peter.maydell@linaro.org>
773 L: qemu-arm@nongnu.org
774 S: Odd Fixes
775 F: hw/arm/musicpal.c
776 F: docs/system/arm/musicpal.rst
778 Nuvoton NPCM7xx
779 M: Havard Skinnemoen <hskinnemoen@google.com>
780 M: Tyrone Ting <kfting@nuvoton.com>
781 L: qemu-arm@nongnu.org
782 S: Supported
783 F: hw/*/npcm7xx*
784 F: include/hw/*/npcm7xx*
785 F: tests/qtest/npcm7xx*
786 F: pc-bios/npcm7xx_bootrom.bin
787 F: roms/vbootrom
788 F: docs/system/arm/nuvoton.rst
790 nSeries
791 M: Andrzej Zaborowski <balrogg@gmail.com>
792 M: Peter Maydell <peter.maydell@linaro.org>
793 L: qemu-arm@nongnu.org
794 S: Odd Fixes
795 F: hw/arm/nseries.c
796 F: hw/display/blizzard.c
797 F: hw/input/lm832x.c
798 F: hw/input/tsc2005.c
799 F: hw/misc/cbus.c
800 F: hw/rtc/twl92230.c
801 F: include/hw/display/blizzard.h
802 F: include/hw/input/tsc2xxx.h
803 F: include/hw/misc/cbus.h
804 F: tests/acceptance/machine_arm_n8x0.py
805 F: docs/system/arm/nseries.rst
807 Palm
808 M: Andrzej Zaborowski <balrogg@gmail.com>
809 M: Peter Maydell <peter.maydell@linaro.org>
810 L: qemu-arm@nongnu.org
811 S: Odd Fixes
812 F: hw/arm/palm.c
813 F: hw/input/tsc210x.c
814 F: include/hw/input/tsc2xxx.h
815 F: docs/system/arm/palm.rst
817 Raspberry Pi
818 M: Peter Maydell <peter.maydell@linaro.org>
819 R: Andrew Baumann <Andrew.Baumann@microsoft.com>
820 R: Philippe Mathieu-Daudé <f4bug@amsat.org>
821 L: qemu-arm@nongnu.org
822 S: Odd Fixes
823 F: hw/arm/raspi.c
824 F: hw/arm/raspi_platform.h
825 F: hw/*/bcm283*
826 F: include/hw/arm/raspi*
827 F: include/hw/*/bcm283*
828 F: docs/system/arm/raspi.rst
830 Real View
831 M: Peter Maydell <peter.maydell@linaro.org>
832 L: qemu-arm@nongnu.org
833 S: Maintained
834 F: hw/arm/realview*
835 F: hw/cpu/realview_mpcore.c
836 F: hw/intc/realview_gic.c
837 F: include/hw/intc/realview_gic.h
838 F: docs/system/arm/realview.rst
840 PXA2XX
841 M: Andrzej Zaborowski <balrogg@gmail.com>
842 M: Peter Maydell <peter.maydell@linaro.org>
843 L: qemu-arm@nongnu.org
844 S: Odd Fixes
845 F: hw/arm/mainstone.c
846 F: hw/arm/spitz.c
847 F: hw/arm/tosa.c
848 F: hw/arm/z2.c
849 F: hw/*/pxa2xx*
850 F: hw/display/tc6393xb.c
851 F: hw/gpio/max7310.c
852 F: hw/gpio/zaurus.c
853 F: hw/misc/mst_fpga.c
854 F: hw/misc/max111x.c
855 F: include/hw/misc/max111x.h
856 F: include/hw/arm/pxa.h
857 F: include/hw/arm/sharpsl.h
858 F: include/hw/display/tc6393xb.h
859 F: docs/system/arm/xscale.rst
861 SABRELITE / i.MX6
862 M: Peter Maydell <peter.maydell@linaro.org>
863 R: Jean-Christophe Dubois <jcd@tribudubois.net>
864 L: qemu-arm@nongnu.org
865 S: Odd Fixes
866 F: hw/arm/sabrelite.c
867 F: hw/arm/fsl-imx6.c
868 F: hw/misc/imx6_*.c
869 F: hw/ssi/imx_spi.c
870 F: hw/usb/imx-usb-phy.c
871 F: include/hw/usb/imx-usb-phy.h
872 F: include/hw/arm/fsl-imx6.h
873 F: include/hw/misc/imx6_*.h
874 F: include/hw/ssi/imx_spi.h
876 SBSA-REF
877 M: Radoslaw Biernacki <rad@semihalf.com>
878 M: Peter Maydell <peter.maydell@linaro.org>
879 R: Leif Lindholm <leif@nuviainc.com>
880 L: qemu-arm@nongnu.org
881 S: Maintained
882 F: hw/arm/sbsa-ref.c
883 F: docs/system/arm/sbsa.rst
885 Sharp SL-5500 (Collie) PDA
886 M: Peter Maydell <peter.maydell@linaro.org>
887 L: qemu-arm@nongnu.org
888 S: Odd Fixes
889 F: hw/arm/collie.c
890 F: hw/arm/strongarm*
891 F: docs/system/arm/collie.rst
893 Stellaris
894 M: Peter Maydell <peter.maydell@linaro.org>
895 L: qemu-arm@nongnu.org
896 S: Maintained
897 F: hw/*/stellaris*
898 F: include/hw/input/gamepad.h
899 F: docs/system/arm/stellaris.rst
901 Versatile Express
902 M: Peter Maydell <peter.maydell@linaro.org>
903 L: qemu-arm@nongnu.org
904 S: Maintained
905 F: hw/arm/vexpress.c
906 F: docs/system/arm/vexpress.rst
908 Versatile PB
909 M: Peter Maydell <peter.maydell@linaro.org>
910 L: qemu-arm@nongnu.org
911 S: Maintained
912 F: hw/*/versatile*
913 F: include/hw/i2c/arm_sbcon_i2c.h
914 F: hw/misc/arm_sysctl.c
915 F: docs/system/arm/versatile.rst
917 Virt
918 M: Peter Maydell <peter.maydell@linaro.org>
919 L: qemu-arm@nongnu.org
920 S: Maintained
921 F: hw/arm/virt*
922 F: include/hw/arm/virt.h
923 F: docs/system/arm/virt.rst
925 Xilinx Zynq
926 M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
927 M: Alistair Francis <alistair@alistair23.me>
928 M: Peter Maydell <peter.maydell@linaro.org>
929 L: qemu-arm@nongnu.org
930 S: Maintained
931 F: hw/*/xilinx_*
932 F: hw/*/cadence_*
933 F: hw/misc/zynq*
934 F: include/hw/misc/zynq*
935 X: hw/ssi/xilinx_*
937 Xilinx ZynqMP and Versal
938 M: Alistair Francis <alistair@alistair23.me>
939 M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
940 M: Peter Maydell <peter.maydell@linaro.org>
941 L: qemu-arm@nongnu.org
942 S: Maintained
943 F: hw/*/xlnx*.c
944 F: include/hw/*/xlnx*.h
945 F: include/hw/ssi/xilinx_spips.h
946 F: hw/display/dpcd.c
947 F: include/hw/display/dpcd.h
948 F: docs/system/arm/xlnx-versal-virt.rst
950 ARM ACPI Subsystem
951 M: Shannon Zhao <shannon.zhaosl@gmail.com>
952 L: qemu-arm@nongnu.org
953 S: Maintained
954 F: hw/arm/virt-acpi-build.c
956 STM32F205
957 M: Alistair Francis <alistair@alistair23.me>
958 M: Peter Maydell <peter.maydell@linaro.org>
959 L: qemu-arm@nongnu.org
960 S: Maintained
961 F: hw/arm/stm32f205_soc.c
962 F: hw/misc/stm32f2xx_syscfg.c
963 F: hw/char/stm32f2xx_usart.c
964 F: hw/timer/stm32f2xx_timer.c
965 F: hw/adc/*
966 F: hw/ssi/stm32f2xx_spi.c
967 F: include/hw/*/stm32*.h
969 STM32F405
970 M: Alistair Francis <alistair@alistair23.me>
971 M: Peter Maydell <peter.maydell@linaro.org>
972 L: qemu-arm@nongnu.org
973 S: Maintained
974 F: hw/arm/stm32f405_soc.c
975 F: hw/misc/stm32f4xx_syscfg.c
976 F: hw/misc/stm32f4xx_exti.c
978 Netduino 2
979 M: Alistair Francis <alistair@alistair23.me>
980 M: Peter Maydell <peter.maydell@linaro.org>
981 L: qemu-arm@nongnu.org
982 S: Maintained
983 F: hw/arm/netduino2.c
985 Netduino Plus 2
986 M: Alistair Francis <alistair@alistair23.me>
987 M: Peter Maydell <peter.maydell@linaro.org>
988 L: qemu-arm@nongnu.org
989 S: Maintained
990 F: hw/arm/netduinoplus2.c
992 SmartFusion2
993 M: Subbaraya Sundeep <sundeep.lkml@gmail.com>
994 M: Peter Maydell <peter.maydell@linaro.org>
995 L: qemu-arm@nongnu.org
996 S: Maintained
997 F: hw/arm/msf2-soc.c
998 F: hw/misc/msf2-sysreg.c
999 F: hw/timer/mss-timer.c
1000 F: hw/ssi/mss-spi.c
1001 F: include/hw/arm/msf2-soc.h
1002 F: include/hw/misc/msf2-sysreg.h
1003 F: include/hw/timer/mss-timer.h
1004 F: include/hw/ssi/mss-spi.h
1005 F: hw/net/msf2-emac.c
1006 F: include/hw/net/msf2-emac.h
1008 Emcraft M2S-FG484
1009 M: Subbaraya Sundeep <sundeep.lkml@gmail.com>
1010 M: Peter Maydell <peter.maydell@linaro.org>
1011 L: qemu-arm@nongnu.org
1012 S: Maintained
1013 F: hw/arm/msf2-som.c
1015 ASPEED BMCs
1016 M: Cédric Le Goater <clg@kaod.org>
1017 M: Peter Maydell <peter.maydell@linaro.org>
1018 R: Andrew Jeffery <andrew@aj.id.au>
1019 R: Joel Stanley <joel@jms.id.au>
1020 L: qemu-arm@nongnu.org
1021 S: Maintained
1022 F: hw/*/*aspeed*
1023 F: hw/misc/pca9552.c
1024 F: include/hw/*/*aspeed*
1025 F: include/hw/misc/pca9552*.h
1026 F: hw/net/ftgmac100.c
1027 F: include/hw/net/ftgmac100.h
1028 F: docs/system/arm/aspeed.rst
1030 NRF51
1031 M: Joel Stanley <joel@jms.id.au>
1032 M: Peter Maydell <peter.maydell@linaro.org>
1033 L: qemu-arm@nongnu.org
1034 S: Maintained
1035 F: hw/*/nrf51*.c
1036 F: hw/*/microbit*.c
1037 F: include/hw/*/nrf51*.h
1038 F: include/hw/*/microbit*.h
1039 F: tests/qtest/microbit-test.c
1041 AVR Machines
1042 -------------
1044 AVR MCUs
1045 M: Michael Rolnik <mrolnik@gmail.com>
1046 S: Maintained
1047 F: default-configs/*/avr-softmmu.mak
1048 F: hw/avr/
1049 F: include/hw/char/avr_usart.h
1050 F: hw/char/avr_usart.c
1051 F: include/hw/timer/avr_timer16.h
1052 F: hw/timer/avr_timer16.c
1053 F: include/hw/misc/avr_power.h
1054 F: hw/misc/avr_power.c
1056 Arduino
1057 M: Philippe Mathieu-Daudé <f4bug@amsat.org>
1058 S: Maintained
1059 F: hw/avr/arduino.c
1061 CRIS Machines
1062 -------------
1063 Axis Dev88
1064 M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
1065 S: Maintained
1066 F: hw/cris/axis_dev88.c
1067 F: hw/*/etraxfs_*.c
1069 HP-PARISC Machines
1070 ------------------
1071 HP B160L
1072 M: Richard Henderson <richard.henderson@linaro.org>
1073 R: Helge Deller <deller@gmx.de>
1074 S: Odd Fixes
1075 F: default-configs/*/hppa-softmmu.mak
1076 F: hw/hppa/
1077 F: pc-bios/hppa-firmware.img
1079 LM32 Machines
1080 -------------
1081 EVR32 and uclinux BSP
1082 R: Michael Walle <michael@walle.cc>
1083 S: Orphan
1084 F: hw/lm32/lm32_boards.c
1086 milkymist
1087 R: Michael Walle <michael@walle.cc>
1088 S: Orphan
1089 F: hw/lm32/milkymist.c
1091 M68K Machines
1092 -------------
1093 an5206
1094 M: Thomas Huth <huth@tuxfamily.org>
1095 S: Odd Fixes
1096 F: hw/m68k/an5206.c
1097 F: hw/m68k/mcf5206.c
1099 mcf5208
1100 M: Thomas Huth <huth@tuxfamily.org>
1101 S: Odd Fixes
1102 F: hw/m68k/mcf5208.c
1103 F: hw/m68k/mcf_intc.c
1104 F: hw/char/mcf_uart.c
1105 F: hw/net/mcf_fec.c
1106 F: include/hw/m68k/mcf*.h
1108 NeXTcube
1109 M: Thomas Huth <huth@tuxfamily.org>
1110 S: Odd Fixes
1111 F: hw/m68k/next-*.c
1112 F: hw/display/next-fb.c
1113 F: include/hw/m68k/next-cube.h
1115 q800
1116 M: Laurent Vivier <laurent@vivier.eu>
1117 S: Maintained
1118 F: hw/m68k/q800.c
1119 F: hw/misc/mac_via.c
1120 F: hw/nubus/*
1121 F: hw/display/macfb.c
1122 F: hw/block/swim.c
1123 F: hw/m68k/bootinfo.h
1124 F: include/standard-headers/asm-m68k/bootinfo.h
1125 F: include/standard-headers/asm-m68k/bootinfo-mac.h
1126 F: include/hw/misc/mac_via.h
1127 F: include/hw/nubus/*
1128 F: include/hw/display/macfb.h
1129 F: include/hw/block/swim.h
1131 virt
1132 M: Laurent Vivier <laurent@vivier.eu>
1133 S: Maintained
1134 F: hw/m68k/virt.c
1135 F: hw/char/goldfish_tty.c
1136 F: hw/intc/goldfish_pic.c
1137 F: hw/intc/m68k_irqc.c
1138 F: hw/misc/virt_ctrl.c
1139 F: include/hw/char/goldfish_tty.h
1140 F: include/hw/intc/goldfish_pic.h
1141 F: include/hw/intc/m68k_irqc.h
1142 F: include/hw/misc/virt_ctrl.h
1144 MicroBlaze Machines
1145 -------------------
1146 petalogix_s3adsp1800
1147 M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
1148 S: Maintained
1149 F: hw/microblaze/petalogix_s3adsp1800_mmu.c
1150 F: include/hw/char/xilinx_uartlite.h
1151 F: tests/acceptance/machine_microblaze.py
1153 petalogix_ml605
1154 M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
1155 S: Maintained
1156 F: hw/microblaze/petalogix_ml605_mmu.c
1158 MIPS Machines
1159 -------------
1160 Jazz
1161 M: Hervé Poussineau <hpoussin@reactos.org>
1162 R: Aleksandar Rikalo <aleksandar.rikalo@syrmia.com>
1163 S: Maintained
1164 F: hw/mips/jazz.c
1165 F: hw/display/jazz_led.c
1166 F: hw/dma/rc4030.c
1168 Malta
1169 M: Philippe Mathieu-Daudé <f4bug@amsat.org>
1170 R: Aurelien Jarno <aurelien@aurel32.net>
1171 S: Odd Fixes
1172 F: hw/isa/piix4.c
1173 F: hw/acpi/piix4.c
1174 F: hw/mips/malta.c
1175 F: hw/mips/gt64xxx_pci.c
1176 F: include/hw/southbridge/piix.h
1177 F: tests/acceptance/linux_ssh_mips_malta.py
1178 F: tests/acceptance/machine_mips_malta.py
1180 Mipssim
1181 R: Aleksandar Rikalo <aleksandar.rikalo@syrmia.com>
1182 S: Orphan
1183 F: hw/mips/mipssim.c
1184 F: hw/net/mipsnet.c
1186 Fuloong 2E
1187 M: Huacai Chen <chenhuacai@kernel.org>
1188 M: Philippe Mathieu-Daudé <f4bug@amsat.org>
1189 R: Jiaxun Yang <jiaxun.yang@flygoat.com>
1190 S: Odd Fixes
1191 F: hw/mips/fuloong2e.c
1192 F: hw/isa/vt82c686.c
1193 F: hw/pci-host/bonito.c
1194 F: hw/usb/vt82c686-uhci-pci.c
1195 F: include/hw/isa/vt82c686.h
1197 Loongson-3 virtual platforms
1198 M: Huacai Chen <chenhuacai@kernel.org>
1199 R: Jiaxun Yang <jiaxun.yang@flygoat.com>
1200 S: Maintained
1201 F: hw/intc/loongson_liointc.c
1202 F: hw/mips/loongson3_bootp.c
1203 F: hw/mips/loongson3_bootp.h
1204 F: hw/mips/loongson3_virt.c
1205 F: tests/acceptance/machine_mips_loongson3v.py
1207 Boston
1208 M: Paul Burton <paulburton@kernel.org>
1209 R: Aleksandar Rikalo <aleksandar.rikalo@syrmia.com>
1210 S: Odd Fixes
1211 F: hw/core/loader-fit.c
1212 F: hw/mips/boston.c
1213 F: hw/pci-host/xilinx-pcie.c
1214 F: include/hw/pci-host/xilinx-pcie.h
1216 OpenRISC Machines
1217 -----------------
1218 or1k-sim
1219 M: Jia Liu <proljc@gmail.com>
1220 S: Maintained
1221 F: hw/openrisc/openrisc_sim.c
1223 PowerPC Machines
1224 ----------------
1226 M: David Gibson <david@gibson.dropbear.id.au>
1227 M: Greg Kurz <groug@kaod.org>
1228 L: qemu-ppc@nongnu.org
1229 S: Odd Fixes
1230 F: hw/ppc/ppc405_boards.c
1232 Bamboo
1233 M: David Gibson <david@gibson.dropbear.id.au>
1234 M: Greg Kurz <groug@kaod.org>
1235 L: qemu-ppc@nongnu.org
1236 S: Odd Fixes
1237 F: hw/ppc/ppc440_bamboo.c
1239 e500
1240 M: David Gibson <david@gibson.dropbear.id.au>
1241 M: Greg Kurz <groug@kaod.org>
1242 L: qemu-ppc@nongnu.org
1243 S: Odd Fixes
1244 F: hw/ppc/e500*
1245 F: hw/gpio/mpc8xxx.c
1246 F: hw/i2c/mpc_i2c.c
1247 F: hw/net/fsl_etsec/
1248 F: hw/pci-host/ppce500.c
1249 F: include/hw/ppc/ppc_e500.h
1250 F: include/hw/pci-host/ppce500.h
1251 F: pc-bios/u-boot.e500
1253 mpc8544ds
1254 M: David Gibson <david@gibson.dropbear.id.au>
1255 M: Greg Kurz <groug@kaod.org>
1256 L: qemu-ppc@nongnu.org
1257 S: Odd Fixes
1258 F: hw/ppc/mpc8544ds.c
1259 F: hw/ppc/mpc8544_guts.c
1261 New World (mac99)
1262 M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
1263 R: David Gibson <david@gibson.dropbear.id.au>
1264 R: Greg Kurz <groug@kaod.org>
1265 L: qemu-ppc@nongnu.org
1266 S: Odd Fixes
1267 F: hw/ppc/mac_newworld.c
1268 F: hw/pci-host/uninorth.c
1269 F: hw/pci-bridge/dec.[hc]
1270 F: hw/misc/macio/
1271 F: hw/misc/mos6522.c
1272 F: hw/nvram/mac_nvram.c
1273 F: hw/input/adb*
1274 F: include/hw/misc/macio/
1275 F: include/hw/misc/mos6522.h
1276 F: include/hw/ppc/mac_dbdma.h
1277 F: include/hw/pci-host/uninorth.h
1278 F: include/hw/input/adb*
1279 F: pc-bios/qemu_vga.ndrv
1281 Old World (g3beige)
1282 M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
1283 R: David Gibson <david@gibson.dropbear.id.au>
1284 R: Greg Kurz <groug@kaod.org>
1285 L: qemu-ppc@nongnu.org
1286 S: Odd Fixes
1287 F: hw/ppc/mac_oldworld.c
1288 F: hw/pci-host/grackle.c
1289 F: hw/misc/macio/
1290 F: hw/intc/heathrow_pic.c
1291 F: hw/input/adb*
1292 F: include/hw/intc/heathrow_pic.h
1293 F: include/hw/input/adb*
1294 F: pc-bios/qemu_vga.ndrv
1296 PReP
1297 M: Hervé Poussineau <hpoussin@reactos.org>
1298 R: David Gibson <david@gibson.dropbear.id.au>
1299 R: Greg Kurz <groug@kaod.org>
1300 L: qemu-ppc@nongnu.org
1301 S: Maintained
1302 F: hw/ppc/prep.c
1303 F: hw/ppc/prep_systemio.c
1304 F: hw/ppc/rs6000_mc.c
1305 F: hw/pci-host/prep.[hc]
1306 F: hw/isa/i82378.c
1307 F: hw/isa/pc87312.c
1308 F: hw/dma/i82374.c
1309 F: hw/rtc/m48t59-isa.c
1310 F: include/hw/isa/pc87312.h
1311 F: include/hw/rtc/m48t59.h
1312 F: tests/acceptance/ppc_prep_40p.py
1314 sPAPR
1315 M: David Gibson <david@gibson.dropbear.id.au>
1316 M: Greg Kurz <groug@kaod.org>
1317 L: qemu-ppc@nongnu.org
1318 S: Supported
1319 F: hw/*/spapr*
1320 F: include/hw/*/spapr*
1321 F: hw/*/xics*
1322 F: include/hw/*/xics*
1323 F: pc-bios/slof.bin
1324 F: docs/specs/ppc-spapr-hcalls.txt
1325 F: docs/specs/ppc-spapr-hotplug.txt
1326 F: tests/qtest/spapr*
1327 F: tests/qtest/libqos/*spapr*
1328 F: tests/qtest/rtas*
1329 F: tests/qtest/libqos/rtas*
1331 PowerNV (Non-Virtualized)
1332 M: Cédric Le Goater <clg@kaod.org>
1333 M: David Gibson <david@gibson.dropbear.id.au>
1334 M: Greg Kurz <groug@kaod.org>
1335 L: qemu-ppc@nongnu.org
1336 S: Maintained
1337 F: hw/ppc/pnv*
1338 F: hw/intc/pnv*
1339 F: hw/intc/xics_pnv.c
1340 F: hw/pci-host/pnv*
1341 F: include/hw/ppc/pnv*
1342 F: include/hw/pci-host/pnv*
1343 F: pc-bios/skiboot.lid
1344 F: tests/qtest/pnv*
1346 virtex_ml507
1347 M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
1348 L: qemu-ppc@nongnu.org
1349 S: Odd Fixes
1350 F: hw/ppc/virtex_ml507.c
1352 sam460ex
1353 M: BALATON Zoltan <balaton@eik.bme.hu>
1354 R: David Gibson <david@gibson.dropbear.id.au>
1355 R: Greg Kurz <groug@kaod.org>
1356 L: qemu-ppc@nongnu.org
1357 S: Maintained
1358 F: hw/ppc/sam460ex.c
1359 F: hw/ppc/ppc440_pcix.c
1360 F: hw/display/sm501*
1361 F: hw/ide/sii3112.c
1362 F: hw/rtc/m41t80.c
1363 F: pc-bios/canyonlands.dt[sb]
1364 F: pc-bios/u-boot-sam460ex-20100605.bin
1365 F: roms/u-boot-sam460ex
1367 pegasos2
1368 M: BALATON Zoltan <balaton@eik.bme.hu>
1369 R: David Gibson <david@gibson.dropbear.id.au>
1370 L: qemu-ppc@nongnu.org
1371 S: Maintained
1372 F: hw/ppc/pegasos2.c
1373 F: hw/pci-host/mv64361.c
1374 F: hw/pci-host/mv643xx.h
1375 F: include/hw/pci-host/mv64361.h
1377 RISC-V Machines
1378 ---------------
1379 OpenTitan
1380 M: Alistair Francis <Alistair.Francis@wdc.com>
1381 L: qemu-riscv@nongnu.org
1382 S: Supported
1383 F: hw/riscv/opentitan.c
1384 F: hw/char/ibex_uart.c
1385 F: hw/intc/ibex_plic.c
1386 F: include/hw/riscv/opentitan.h
1387 F: include/hw/char/ibex_uart.h
1388 F: include/hw/intc/ibex_plic.h
1390 Microchip PolarFire SoC Icicle Kit
1391 M: Bin Meng <bin.meng@windriver.com>
1392 L: qemu-riscv@nongnu.org
1393 S: Supported
1394 F: hw/riscv/microchip_pfsoc.c
1395 F: hw/char/mchp_pfsoc_mmuart.c
1396 F: hw/misc/mchp_pfsoc_dmc.c
1397 F: hw/misc/mchp_pfsoc_ioscb.c
1398 F: hw/misc/mchp_pfsoc_sysreg.c
1399 F: include/hw/riscv/microchip_pfsoc.h
1400 F: include/hw/char/mchp_pfsoc_mmuart.h
1401 F: include/hw/misc/mchp_pfsoc_dmc.h
1402 F: include/hw/misc/mchp_pfsoc_ioscb.h
1403 F: include/hw/misc/mchp_pfsoc_sysreg.h
1405 SiFive Machines
1406 M: Alistair Francis <Alistair.Francis@wdc.com>
1407 M: Bin Meng <bin.meng@windriver.com>
1408 M: Palmer Dabbelt <palmer@dabbelt.com>
1409 L: qemu-riscv@nongnu.org
1410 S: Supported
1411 F: hw/*/*sifive*.c
1412 F: include/hw/*/*sifive*.h
1414 RX Machines
1415 -----------
1416 rx-gdbsim
1417 R: Yoshinori Sato <ysato@users.sourceforge.jp>
1418 S: Orphan
1419 F: docs/system/target-rx.rst
1420 F: hw/rx/rx-gdbsim.c
1421 F: tests/acceptance/machine_rx_gdbsim.py
1423 SH4 Machines
1424 ------------
1426 R: Yoshinori Sato <ysato@users.sourceforge.jp>
1427 R: Magnus Damm <magnus.damm@gmail.com>
1428 S: Odd Fixes
1429 F: hw/char/sh_serial.c
1430 F: hw/sh4/r2d.c
1431 F: hw/intc/sh_intc.c
1432 F: hw/pci-host/sh_pci.c
1433 F: hw/timer/sh_timer.c
1434 F: include/hw/sh4/sh_intc.h
1436 Shix
1437 R: Yoshinori Sato <ysato@users.sourceforge.jp>
1438 R: Magnus Damm <magnus.damm@gmail.com>
1439 S: Odd Fixes
1440 F: hw/block/tc58128.c
1441 F: hw/char/sh_serial.c
1442 F: hw/sh4/shix.c
1443 F: hw/intc/sh_intc.c
1444 F: hw/timer/sh_timer.c
1445 F: include/hw/sh4/sh_intc.h
1447 SPARC Machines
1448 --------------
1449 Sun4m
1450 M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
1451 S: Maintained
1452 F: hw/sparc/sun4m.c
1453 F: hw/sparc/sun4m_iommu.c
1454 F: hw/display/cg3.c
1455 F: hw/display/tcx.c
1456 F: hw/dma/sparc32_dma.c
1457 F: hw/misc/eccmemctl.c
1458 F: hw/*/slavio_*.c
1459 F: include/hw/nvram/sun_nvram.h
1460 F: include/hw/sparc/sparc32_dma.h
1461 F: include/hw/sparc/sun4m_iommu.h
1462 F: pc-bios/openbios-sparc32
1464 Sun4u
1465 M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
1466 S: Maintained
1467 F: hw/sparc64/sun4u.c
1468 F: hw/sparc64/sun4u_iommu.c
1469 F: include/hw/sparc/sun4u_iommu.h
1470 F: hw/pci-host/sabre.c
1471 F: include/hw/pci-host/sabre.h
1472 F: hw/pci-bridge/simba.c
1473 F: include/hw/pci-bridge/simba.h
1474 F: pc-bios/openbios-sparc64
1475 F: tests/acceptance/machine_sparc64_sun4u.py
1477 Sun4v
1478 M: Artyom Tarasenko <atar4qemu@gmail.com>
1479 S: Maintained
1480 F: hw/sparc64/niagara.c
1481 F: hw/rtc/sun4v-rtc.c
1482 F: include/hw/rtc/sun4v-rtc.h
1484 Leon3
1485 M: Fabien Chouteau <chouteau@adacore.com>
1486 M: KONRAD Frederic <frederic.konrad@adacore.com>
1487 S: Maintained
1488 F: hw/sparc/leon3.c
1489 F: hw/*/grlib*
1490 F: include/hw/*/grlib*
1491 F: tests/acceptance/machine_sparc_leon3.py
1493 S390 Machines
1494 -------------
1495 S390 Virtio-ccw
1496 M: Cornelia Huck <cohuck@redhat.com>
1497 M: Halil Pasic <pasic@linux.ibm.com>
1498 M: Christian Borntraeger <borntraeger@de.ibm.com>
1499 S: Supported
1500 F: hw/char/sclp*.[hc]
1501 F: hw/char/terminal3270.c
1502 F: hw/s390x/
1503 F: include/hw/s390x/
1504 F: hw/watchdog/wdt_diag288.c
1505 F: include/hw/watchdog/wdt_diag288.h
1506 F: default-configs/*/s390x-softmmu.mak
1507 F: tests/acceptance/machine_s390_ccw_virtio.py
1508 T: git https://gitlab.com/cohuck/qemu.git s390-next
1509 T: git https://github.com/borntraeger/qemu.git s390-next
1510 L: qemu-s390x@nongnu.org
1512 S390-ccw boot
1513 M: Christian Borntraeger <borntraeger@de.ibm.com>
1514 M: Thomas Huth <thuth@redhat.com>
1515 S: Supported
1516 F: hw/s390x/ipl.*
1517 F: pc-bios/s390-ccw/
1518 F: pc-bios/s390-ccw.img
1519 F: docs/devel/s390-dasd-ipl.rst
1520 T: git https://github.com/borntraeger/qemu.git s390-next
1521 L: qemu-s390x@nongnu.org
1523 S390 PCI
1524 M: Matthew Rosato <mjrosato@linux.ibm.com>
1525 M: Eric Farman <farman@linux.ibm.com>
1526 S: Supported
1527 F: hw/s390x/s390-pci*
1528 F: include/hw/s390x/s390-pci*
1529 L: qemu-s390x@nongnu.org
1531 UniCore32 Machines
1532 ------------------
1533 PKUnity-3 SoC initramfs-with-busybox
1534 M: Guan Xuetao <gxt@mprc.pku.edu.cn>
1535 S: Maintained
1536 F: hw/*/puv3*
1537 F: hw/unicore32/
1539 X86 Machines
1540 ------------
1542 M: Michael S. Tsirkin <mst@redhat.com>
1543 M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
1544 S: Supported
1545 F: include/hw/i386/
1546 F: hw/i386/
1547 F: hw/pci-host/i440fx.c
1548 F: hw/pci-host/q35.c
1549 F: hw/pci-host/pam.c
1550 F: include/hw/pci-host/i440fx.h
1551 F: include/hw/pci-host/q35.h
1552 F: include/hw/pci-host/pam.h
1553 F: hw/isa/piix3.c
1554 F: hw/isa/lpc_ich9.c
1555 F: hw/i2c/smbus_ich9.c
1556 F: hw/acpi/piix4.c
1557 F: hw/acpi/ich9.c
1558 F: include/hw/acpi/ich9.h
1559 F: include/hw/southbridge/piix.h
1560 F: hw/misc/sga.c
1561 F: hw/isa/apm.c
1562 F: include/hw/isa/apm.h
1563 F: tests/unit/test-x86-cpuid.c
1564 F: tests/qtest/test-x86-cpuid-compat.c
1566 PC Chipset
1567 M: Michael S. Tsirkin <mst@redhat.com>
1568 M: Paolo Bonzini <pbonzini@redhat.com>
1569 S: Supported
1570 F: hw/char/debugcon.c
1571 F: hw/char/parallel*
1572 F: hw/char/serial*
1573 F: hw/dma/i8257*
1574 F: hw/i2c/pm_smbus.c
1575 F: hw/input/pckbd.c
1576 F: hw/intc/apic*
1577 F: hw/intc/ioapic*
1578 F: hw/intc/i8259*
1579 F: hw/isa/isa-superio.c
1580 F: hw/misc/debugexit.c
1581 F: hw/misc/pc-testdev.c
1582 F: hw/timer/hpet*
1583 F: hw/timer/i8254*
1584 F: hw/rtc/mc146818rtc*
1585 F: hw/watchdog/wdt_ib700.c
1586 F: hw/watchdog/wdt_i6300esb.c
1587 F: include/hw/display/vga.h
1588 F: include/hw/char/parallel.h
1589 F: include/hw/dma/i8257.h
1590 F: include/hw/i2c/pm_smbus.h
1591 F: include/hw/input/i8042.h
1592 F: include/hw/isa/i8259_internal.h
1593 F: include/hw/isa/superio.h
1594 F: include/hw/timer/hpet.h
1595 F: include/hw/timer/i8254*
1596 F: include/hw/rtc/mc146818rtc*
1598 microvm
1599 M: Sergio Lopez <slp@redhat.com>
1600 M: Paolo Bonzini <pbonzini@redhat.com>
1601 S: Maintained
1602 F: docs/microvm.rst
1603 F: hw/i386/microvm.c
1604 F: include/hw/i386/microvm.h
1605 F: pc-bios/bios-microvm.bin
1607 Machine core
1608 M: Eduardo Habkost <ehabkost@redhat.com>
1609 M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
1610 S: Supported
1611 F: cpu.c
1612 F: hw/core/cpu.c
1613 F: hw/core/machine-qmp-cmds.c
1614 F: hw/core/machine.c
1615 F: hw/core/null-machine.c
1616 F: hw/core/numa.c
1617 F: hw/cpu/cluster.c
1618 F: qapi/machine.json
1619 F: qapi/machine-target.json
1620 F: include/hw/boards.h
1621 F: include/hw/core/cpu.h
1622 F: include/hw/cpu/cluster.h
1623 F: include/sysemu/numa.h
1624 T: git https://gitlab.com/ehabkost/qemu.git machine-next
1626 Xtensa Machines
1627 ---------------
1629 M: Max Filippov <jcmvbkbc@gmail.com>
1630 S: Maintained
1631 F: hw/xtensa/sim.c
1633 virt
1634 M: Max Filippov <jcmvbkbc@gmail.com>
1635 S: Maintained
1636 F: hw/xtensa/virt.c
1638 XTFPGA (LX60, LX200, ML605, KC705)
1639 M: Max Filippov <jcmvbkbc@gmail.com>
1640 S: Maintained
1641 F: hw/xtensa/xtfpga.c
1642 F: hw/net/opencores_eth.c
1644 Devices
1645 -------
1646 Xilinx CAN
1647 M: Vikram Garhwal <fnu.vikram@xilinx.com>
1648 M: Francisco Iglesias <francisco.iglesias@xilinx.com>
1649 S: Maintained
1650 F: hw/net/can/xlnx-*
1651 F: include/hw/net/xlnx-*
1652 F: tests/qtest/xlnx-can-test*
1655 M: Jiri Slaby <jslaby@suse.cz>
1656 S: Maintained
1657 F: hw/misc/edu.c
1660 M: John Snow <jsnow@redhat.com>
1661 L: qemu-block@nongnu.org
1662 S: Supported
1663 F: include/hw/ide.h
1664 F: include/hw/ide/
1665 F: hw/ide/
1666 F: hw/block/block.c
1667 F: hw/block/cdrom.c
1668 F: hw/block/hd-geometry.c
1669 F: tests/qtest/ide-test.c
1670 F: tests/qtest/ahci-test.c
1671 F: tests/qtest/cdrom-test.c
1672 F: tests/qtest/libqos/ahci*
1673 T: git https://gitlab.com/jsnow/qemu.git ide
1675 IPMI
1676 M: Corey Minyard <minyard@acm.org>
1677 S: Maintained
1678 F: include/hw/ipmi/*
1679 F: hw/ipmi/*
1680 F: hw/smbios/smbios_type_38.c
1681 F: tests/qtest/ipmi*
1682 T: git https://github.com/cminyard/qemu.git master-ipmi-rebase
1684 Floppy
1685 M: John Snow <jsnow@redhat.com>
1686 L: qemu-block@nongnu.org
1687 S: Supported
1688 F: hw/block/fdc.c
1689 F: include/hw/block/fdc.h
1690 F: tests/qtest/fdc-test.c
1691 T: git https://gitlab.com/jsnow/qemu.git ide
1693 OMAP
1694 M: Peter Maydell <peter.maydell@linaro.org>
1695 L: qemu-arm@nongnu.org
1696 S: Maintained
1697 F: hw/*/omap*
1698 F: include/hw/arm/omap.h
1699 F: docs/system/arm/sx1.rst
1701 IPack
1702 M: Alberto Garcia <berto@igalia.com>
1703 S: Odd Fixes
1704 F: hw/char/ipoctal232.c
1705 F: hw/ipack/
1708 M: Michael S. Tsirkin <mst@redhat.com>
1709 M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
1710 S: Supported
1711 F: include/hw/pci/*
1712 F: hw/misc/pci-testdev.c
1713 F: hw/pci/*
1714 F: hw/pci-bridge/*
1715 F: qapi/pci.json
1716 F: docs/pci*
1717 F: docs/specs/*pci*
1718 F: default-configs/pci.mak
1720 ACPI/SMBIOS
1721 M: Michael S. Tsirkin <mst@redhat.com>
1722 M: Igor Mammedov <imammedo@redhat.com>
1723 S: Supported
1724 F: include/hw/acpi/*
1725 F: include/hw/firmware/smbios.h
1726 F: hw/mem/*
1727 F: hw/acpi/*
1728 F: hw/smbios/*
1729 F: hw/i386/acpi-build.[hc]
1730 F: hw/arm/virt-acpi-build.c
1731 F: qapi/acpi.json
1732 F: tests/qtest/bios-tables-test*
1733 F: tests/qtest/acpi-utils.[hc]
1734 F: tests/data/acpi/
1736 ACPI/HEST/GHES
1737 R: Dongjiu Geng <gengdongjiu1@gmail.com>
1738 L: qemu-arm@nongnu.org
1739 S: Maintained
1740 F: hw/acpi/ghes.c
1741 F: include/hw/acpi/ghes.h
1742 F: docs/specs/acpi_hest_ghes.rst
1744 ppc4xx
1745 M: David Gibson <david@gibson.dropbear.id.au>
1746 L: qemu-ppc@nongnu.org
1747 S: Odd Fixes
1748 F: hw/ppc/ppc4*.c
1749 F: hw/i2c/ppc4xx_i2c.c
1750 F: include/hw/ppc/ppc4xx.h
1751 F: include/hw/i2c/ppc4xx_i2c.h
1752 F: hw/intc/ppc-uic.c
1753 F: include/hw/intc/ppc-uic.h
1755 Character devices
1756 M: Marc-André Lureau <marcandre.lureau@redhat.com>
1757 R: Paolo Bonzini <pbonzini@redhat.com>
1758 S: Odd Fixes
1759 F: hw/char/
1761 Network devices
1762 M: Jason Wang <jasowang@redhat.com>
1763 S: Odd Fixes
1764 F: hw/net/
1765 F: include/hw/net/
1766 F: tests/qtest/virtio-net-test.c
1767 F: docs/virtio-net-failover.rst
1768 T: git https://github.com/jasowang/qemu.git net
1770 Parallel NOR Flash devices
1771 M: Philippe Mathieu-Daudé <philmd@redhat.com>
1772 T: git https://gitlab.com/philmd/qemu.git pflash-next
1773 S: Maintained
1774 F: hw/block/pflash_cfi*.c
1775 F: include/hw/block/flash.h
1777 SCSI
1778 M: Paolo Bonzini <pbonzini@redhat.com>
1779 R: Fam Zheng <fam@euphon.net>
1780 S: Supported
1781 F: include/hw/scsi/*
1782 F: hw/scsi/*
1783 F: tests/qtest/virtio-scsi-test.c
1784 F: tests/qtest/fuzz-virtio-scsi-test.c
1785 F: tests/qtest/am53c974-test.c
1786 T: git https://github.com/bonzini/qemu.git scsi-next
1789 M: Alistair Francis <alistair@alistair23.me>
1790 S: Maintained
1791 F: hw/ssi/*
1792 F: hw/block/m25p80.c
1793 F: include/hw/ssi/ssi.h
1794 X: hw/ssi/xilinx_*
1795 F: tests/qtest/m25p80-test.c
1797 Xilinx SPI
1798 M: Alistair Francis <alistair@alistair23.me>
1799 S: Maintained
1800 F: hw/ssi/xilinx_*
1802 SD (Secure Card)
1803 M: Philippe Mathieu-Daudé <f4bug@amsat.org>
1804 M: Bin Meng <bin.meng@windriver.com>
1805 L: qemu-block@nongnu.org
1806 S: Odd Fixes
1807 F: include/hw/sd/sd*
1808 F: hw/sd/core.c
1809 F: hw/sd/sd*
1810 F: hw/sd/ssi-sd.c
1811 F: tests/qtest/sd*
1814 M: Gerd Hoffmann <kraxel@redhat.com>
1815 S: Maintained
1816 F: hw/usb/*
1817 F: tests/qtest/usb-*-test.c
1818 F: docs/usb2.txt
1819 F: docs/usb-storage.txt
1820 F: include/hw/usb.h
1821 F: include/hw/usb/
1822 F: default-configs/usb.mak
1824 USB (serial adapter)
1825 M: Gerd Hoffmann <kraxel@redhat.com>
1826 M: Samuel Thibault <samuel.thibault@ens-lyon.org>
1827 S: Maintained
1828 F: hw/usb/dev-serial.c
1830 VFIO
1831 M: Alex Williamson <alex.williamson@redhat.com>
1832 S: Supported
1833 F: hw/vfio/*
1834 F: include/hw/vfio/
1835 F: docs/igd-assign.txt
1837 vfio-ccw
1838 M: Cornelia Huck <cohuck@redhat.com>
1839 M: Eric Farman <farman@linux.ibm.com>
1840 M: Matthew Rosato <mjrosato@linux.ibm.com>
1841 S: Supported
1842 F: hw/vfio/ccw.c
1843 F: hw/s390x/s390-ccw.c
1844 F: include/hw/s390x/s390-ccw.h
1845 F: include/hw/s390x/vfio-ccw.h
1846 T: git https://gitlab.com/cohuck/qemu.git s390-next
1847 L: qemu-s390x@nongnu.org
1849 vfio-ap
1850 M: Tony Krowiak <akrowiak@linux.ibm.com>
1851 M: Halil Pasic <pasic@linux.ibm.com>
1852 M: Jason Herne <jjherne@linux.ibm.com>
1853 S: Supported
1854 F: hw/s390x/ap-device.c
1855 F: hw/s390x/ap-bridge.c
1856 F: include/hw/s390x/ap-device.h
1857 F: include/hw/s390x/ap-bridge.h
1858 F: hw/vfio/ap.c
1859 F: docs/system/s390x/vfio-ap.rst
1860 L: qemu-s390x@nongnu.org
1862 vhost
1863 M: Michael S. Tsirkin <mst@redhat.com>
1864 S: Supported
1865 F: hw/*/*vhost*
1866 F: docs/interop/vhost-user.json
1867 F: docs/interop/vhost-user.rst
1868 F: contrib/vhost-user-*/
1869 F: backends/vhost-user.c
1870 F: include/sysemu/vhost-user-backend.h
1872 virtio
1873 M: Michael S. Tsirkin <mst@redhat.com>
1874 S: Supported
1875 F: hw/*/virtio*
1876 F: hw/virtio/Makefile.objs
1877 F: hw/virtio/trace-events
1878 F: net/vhost-user.c
1879 F: include/hw/virtio/
1881 virtio-balloon
1882 M: Michael S. Tsirkin <mst@redhat.com>
1883 M: David Hildenbrand <david@redhat.com>
1884 S: Maintained
1885 F: hw/virtio/virtio-balloon*.c
1886 F: include/hw/virtio/virtio-balloon.h
1887 F: softmmu/balloon.c
1888 F: include/sysemu/balloon.h
1890 virtio-9p
1891 M: Greg Kurz <groug@kaod.org>
1892 M: Christian Schoenebeck <qemu_oss@crudebyte.com>
1893 S: Odd Fixes
1894 F: hw/9pfs/
1895 X: hw/9pfs/xen-9p*
1896 F: fsdev/
1897 F: docs/tools/virtfs-proxy-helper.rst
1898 F: tests/qtest/virtio-9p-test.c
1899 T: git https://gitlab.com/gkurz/qemu.git 9p-next
1900 T: git https://github.com/cschoenebeck/qemu.git 9p.next
1902 virtio-blk
1903 M: Stefan Hajnoczi <stefanha@redhat.com>
1904 L: qemu-block@nongnu.org
1905 S: Supported
1906 F: hw/block/virtio-blk.c
1907 F: hw/block/dataplane/*
1908 F: tests/qtest/virtio-blk-test.c
1909 T: git https://github.com/stefanha/qemu.git block
1911 virtio-ccw
1912 M: Cornelia Huck <cohuck@redhat.com>
1913 M: Halil Pasic <pasic@linux.ibm.com>
1914 S: Supported
1915 F: hw/s390x/virtio-ccw*.[hc]
1916 F: hw/s390x/vhost-vsock-ccw.c
1917 T: git https://gitlab.com/cohuck/qemu.git s390-next
1918 T: git https://github.com/borntraeger/qemu.git s390-next
1919 L: qemu-s390x@nongnu.org
1921 virtiofs
1922 M: Dr. David Alan Gilbert <dgilbert@redhat.com>
1923 M: Stefan Hajnoczi <stefanha@redhat.com>
1924 S: Supported
1925 F: tools/virtiofsd/*
1926 F: hw/virtio/vhost-user-fs*
1927 F: include/hw/virtio/vhost-user-fs.h
1928 F: docs/tools/virtiofsd.rst
1929 L: virtio-fs@redhat.com
1931 virtio-input
1932 M: Gerd Hoffmann <kraxel@redhat.com>
1933 S: Maintained
1934 F: hw/input/vhost-user-input.c
1935 F: hw/input/virtio-input*.c
1936 F: include/hw/virtio/virtio-input.h
1937 F: contrib/vhost-user-input/*
1939 virtio-iommu
1940 M: Eric Auger <eric.auger@redhat.com>
1941 S: Maintained
1942 F: hw/virtio/virtio-iommu*.c
1943 F: include/hw/virtio/virtio-iommu.h
1945 virtio-serial
1946 M: Laurent Vivier <lvivier@redhat.com>
1947 R: Amit Shah <amit@kernel.org>
1948 S: Supported
1949 F: hw/char/virtio-serial-bus.c
1950 F: hw/char/virtio-console.c
1951 F: include/hw/virtio/virtio-serial.h
1952 F: tests/qtest/virtio-serial-test.c
1954 virtio-rng
1955 M: Laurent Vivier <lvivier@redhat.com>
1956 R: Amit Shah <amit@kernel.org>
1957 S: Supported
1958 F: hw/virtio/virtio-rng.c
1959 F: include/hw/virtio/virtio-rng.h
1960 F: include/sysemu/rng*.h
1961 F: backends/rng*.c
1962 F: tests/qtest/virtio-rng-test.c
1964 virtio-crypto
1965 M: Gonglei <arei.gonglei@huawei.com>
1966 S: Supported
1967 F: hw/virtio/virtio-crypto.c
1968 F: hw/virtio/virtio-crypto-pci.c
1969 F: include/hw/virtio/virtio-crypto.h
1971 virtio-mem
1972 M: David Hildenbrand <david@redhat.com>
1973 S: Supported
1974 W: https://virtio-mem.gitlab.io/
1975 F: hw/virtio/virtio-mem.c
1976 F: hw/virtio/virtio-mem-pci.h
1977 F: hw/virtio/virtio-mem-pci.c
1978 F: include/hw/virtio/virtio-mem.h
1980 nvme
1981 M: Keith Busch <kbusch@kernel.org>
1982 M: Klaus Jensen <its@irrelevant.dk>
1983 L: qemu-block@nongnu.org
1984 S: Supported
1985 F: hw/block/nvme*
1986 F: include/block/nvme.h
1987 F: tests/qtest/nvme-test.c
1988 F: docs/system/nvme.rst
1989 T: git git://git.infradead.org/qemu-nvme.git nvme-next
1991 megasas
1992 M: Hannes Reinecke <hare@suse.com>
1993 L: qemu-block@nongnu.org
1994 S: Supported
1995 F: hw/scsi/megasas.c
1996 F: hw/scsi/mfi.h
1997 F: tests/qtest/megasas-test.c
1998 F: tests/qtest/fuzz-megasas-test.c
2000 Network packet abstractions
2001 M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
2002 S: Maintained
2003 F: include/net/eth.h
2004 F: net/eth.c
2005 F: hw/net/net_rx_pkt*
2006 F: hw/net/net_tx_pkt*
2008 Vmware
2009 M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
2010 S: Maintained
2011 F: hw/net/vmxnet*
2012 F: hw/scsi/vmw_pvscsi*
2013 F: tests/qtest/vmxnet3-test.c
2015 Rocker
2016 M: Jiri Pirko <jiri@resnulli.us>
2017 S: Maintained
2018 F: hw/net/rocker/
2019 F: qapi/rocker.json
2020 F: tests/rocker/
2021 F: docs/specs/rocker.txt
2023 NVDIMM
2024 M: Xiao Guangrong <xiaoguangrong.eric@gmail.com>
2025 S: Maintained
2026 F: hw/acpi/nvdimm.c
2027 F: hw/mem/nvdimm.c
2028 F: include/hw/mem/nvdimm.h
2029 F: docs/nvdimm.txt
2031 e1000x
2032 M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
2033 S: Maintained
2034 F: hw/net/e1000x*
2036 e1000e
2037 M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
2038 S: Maintained
2039 F: hw/net/e1000e*
2040 F: tests/qtest/fuzz-e1000e-test.c
2042 eepro100
2043 M: Stefan Weil <sw@weilnetz.de>
2044 S: Maintained
2045 F: hw/net/eepro100.c
2047 tulip
2048 M: Sven Schnelle <svens@stackframe.org>
2049 S: Maintained
2050 F: hw/net/tulip.c
2051 F: hw/net/tulip.h
2053 Generic Loader
2054 M: Alistair Francis <alistair@alistair23.me>
2055 S: Maintained
2056 F: hw/core/generic-loader.c
2057 F: include/hw/core/generic-loader.h
2058 F: docs/system/generic-loader.rst
2060 Guest Loader
2061 M: Alex Bennée <alex.bennee@linaro.org>
2062 S: Maintained
2063 F: hw/core/guest-loader.c
2064 F: docs/system/guest-loader.rst
2065 F: tests/acceptance/boot_xen.py
2067 Intel Hexadecimal Object File Loader
2068 M: Su Hang <suhang16@mails.ucas.ac.cn>
2069 S: Maintained
2070 F: tests/qtest/hexloader-test.c
2071 F: tests/data/hex-loader/test.hex
2073 CHRP NVRAM
2074 M: Thomas Huth <thuth@redhat.com>
2075 S: Maintained
2076 F: hw/nvram/chrp_nvram.c
2077 F: include/hw/nvram/chrp_nvram.h
2078 F: tests/qtest/prom-env-test.c
2080 VM Generation ID
2081 S: Orphan
2082 F: hw/acpi/vmgenid.c
2083 F: include/hw/acpi/vmgenid.h
2084 F: docs/specs/vmgenid.txt
2085 F: tests/qtest/vmgenid-test.c
2086 F: stubs/vmgenid.c
2089 M: Philippe Mathieu-Daudé <f4bug@amsat.org>
2090 S: Maintained
2091 F: include/hw/misc/led.h
2092 F: hw/misc/led.c
2094 Unimplemented device
2095 M: Peter Maydell <peter.maydell@linaro.org>
2096 R: Philippe Mathieu-Daudé <f4bug@amsat.org>
2097 S: Maintained
2098 F: include/hw/misc/unimp.h
2099 F: hw/misc/unimp.c
2101 Empty slot
2102 M: Artyom Tarasenko <atar4qemu@gmail.com>
2103 R: Philippe Mathieu-Daudé <f4bug@amsat.org>
2104 S: Maintained
2105 F: include/hw/misc/empty_slot.h
2106 F: hw/misc/empty_slot.c
2108 Standard VGA
2109 M: Gerd Hoffmann <kraxel@redhat.com>
2110 S: Maintained
2111 F: hw/display/vga*
2112 F: hw/display/bochs-display.c
2113 F: include/hw/display/vga.h
2114 F: include/hw/display/bochs-vbe.h
2116 ramfb
2117 M: Gerd Hoffmann <kraxel@redhat.com>
2118 S: Maintained
2119 F: hw/display/ramfb*.c
2120 F: include/hw/display/ramfb.h
2122 virtio-gpu
2123 M: Gerd Hoffmann <kraxel@redhat.com>
2124 S: Maintained
2125 F: hw/display/virtio-gpu*
2126 F: hw/display/virtio-vga.*
2127 F: include/hw/virtio/virtio-gpu.h
2129 vhost-user-blk
2130 M: Raphael Norwitz <raphael.norwitz@nutanix.com>
2131 S: Maintained
2132 F: contrib/vhost-user-blk/
2133 F: contrib/vhost-user-scsi/
2134 F: hw/block/vhost-user-blk.c
2135 F: hw/scsi/vhost-user-scsi.c
2136 F: hw/virtio/vhost-user-blk-pci.c
2137 F: hw/virtio/vhost-user-scsi-pci.c
2138 F: include/hw/virtio/vhost-user-blk.h
2139 F: include/hw/virtio/vhost-user-scsi.h
2141 vhost-user-gpu
2142 M: Marc-André Lureau <marcandre.lureau@redhat.com>
2143 M: Gerd Hoffmann <kraxel@redhat.com>
2144 S: Maintained
2145 F: docs/interop/vhost-user-gpu.rst
2146 F: contrib/vhost-user-gpu
2147 F: hw/display/vhost-user-*
2149 Cirrus VGA
2150 M: Gerd Hoffmann <kraxel@redhat.com>
2151 S: Odd Fixes
2152 W: https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
2153 F: hw/display/cirrus*
2155 EDID Generator
2156 M: Gerd Hoffmann <kraxel@redhat.com>
2157 S: Maintained
2158 F: hw/display/edid*
2159 F: include/hw/display/edid.h
2160 F: qemu-edid.c
2162 PIIX4 South Bridge (i82371AB)
2163 M: Hervé Poussineau <hpoussin@reactos.org>
2164 M: Philippe Mathieu-Daudé <f4bug@amsat.org>
2165 S: Maintained
2166 F: hw/isa/piix4.c
2167 F: include/hw/southbridge/piix.h
2169 Firmware configuration (fw_cfg)
2170 M: Philippe Mathieu-Daudé <philmd@redhat.com>
2171 R: Laszlo Ersek <lersek@redhat.com>
2172 R: Gerd Hoffmann <kraxel@redhat.com>
2173 S: Supported
2174 F: docs/specs/fw_cfg.txt
2175 F: hw/nvram/fw_cfg*.c
2176 F: stubs/fw_cfg.c
2177 F: include/hw/nvram/fw_cfg.h
2178 F: include/standard-headers/linux/qemu_fw_cfg.h
2179 F: tests/qtest/libqos/fw_cfg.c
2180 F: tests/qtest/fw_cfg-test.c
2181 T: git https://github.com/philmd/qemu.git fw_cfg-next
2183 XIVE
2184 M: Cédric Le Goater <clg@kaod.org>
2185 R: David Gibson <david@gibson.dropbear.id.au>
2186 R: Greg Kurz <groug@kaod.org>
2187 L: qemu-ppc@nongnu.org
2188 S: Supported
2189 F: hw/*/*xive*
2190 F: include/hw/*/*xive*
2191 F: docs/*/*xive*
2193 Renesas peripherals
2194 R: Yoshinori Sato <ysato@users.sourceforge.jp>
2195 R: Magnus Damm <magnus.damm@gmail.com>
2196 S: Odd Fixes
2197 F: hw/char/renesas_sci.c
2198 F: hw/char/sh_serial.c
2199 F: hw/timer/renesas_*.c
2200 F: hw/timer/sh_timer.c
2201 F: include/hw/char/renesas_sci.h
2202 F: include/hw/sh4/sh.h
2203 F: include/hw/timer/renesas_*.h
2205 Renesas RX peripherals
2206 R: Yoshinori Sato <ysato@users.sourceforge.jp>
2207 S: Orphan
2208 F: hw/intc/rx_icu.c
2209 F: hw/rx/
2210 F: include/hw/intc/rx_icu.h
2211 F: include/hw/rx/
2213 CAN bus subsystem and hardware
2214 M: Pavel Pisa <pisa@cmp.felk.cvut.cz>
2215 M: Vikram Garhwal <fnu.vikram@xilinx.com>
2216 S: Maintained
2217 W: https://canbus.pages.fel.cvut.cz/
2218 F: net/can/*
2219 F: hw/net/can/*
2220 F: include/net/can_*.h
2222 Subsystems
2223 ----------
2224 Audio
2225 M: Gerd Hoffmann <kraxel@redhat.com>
2226 S: Maintained
2227 F: audio/
2228 F: hw/audio/
2229 F: include/hw/audio/
2230 F: qapi/audio.json
2231 F: tests/qtest/ac97-test.c
2232 F: tests/qtest/es1370-test.c
2233 F: tests/qtest/intel-hda-test.c
2235 Block layer core
2236 M: Kevin Wolf <kwolf@redhat.com>
2237 M: Max Reitz <mreitz@redhat.com>
2238 L: qemu-block@nongnu.org
2239 S: Supported
2240 F: block*
2241 F: block/
2242 F: hw/block/
2243 F: include/block/
2244 F: qemu-img*
2245 F: docs/tools/qemu-img.rst
2246 F: qemu-io*
2247 F: tests/qemu-iotests/
2248 F: util/qemu-progress.c
2249 F: qobject/block-qdict.c
2250 F: tests/unit/check-block-qdict.c
2251 T: git https://repo.or.cz/qemu/kevin.git block
2253 Storage daemon
2254 M: Kevin Wolf <kwolf@redhat.com>
2255 L: qemu-block@nongnu.org
2256 S: Supported
2257 F: storage-daemon/
2258 F: docs/interop/qemu-storage-daemon-qmp-ref.rst
2259 F: docs/tools/qemu-storage-daemon.rst
2260 T: git https://repo.or.cz/qemu/kevin.git block
2262 Block I/O path
2263 M: Stefan Hajnoczi <stefanha@redhat.com>
2264 M: Fam Zheng <fam@euphon.net>
2265 L: qemu-block@nongnu.org
2266 S: Supported
2267 F: util/async.c
2268 F: util/aio-*.c
2269 F: util/aio-*.h
2270 F: util/fdmon-*.c
2271 F: block/io.c
2272 F: migration/block*
2273 F: include/block/aio.h
2274 F: include/block/aio-wait.h
2275 F: scripts/qemugdb/aio.py
2276 F: tests/unit/test-fdmon-epoll.c
2277 T: git https://github.com/stefanha/qemu.git block
2279 Block SCSI subsystem
2280 M: Paolo Bonzini <pbonzini@redhat.com>
2281 R: Fam Zheng <fam@euphon.net>
2282 L: qemu-block@nongnu.org
2283 S: Supported
2284 F: include/scsi/*
2285 F: scsi/*
2287 Block Jobs
2288 M: John Snow <jsnow@redhat.com>
2289 M: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
2290 L: qemu-block@nongnu.org
2291 S: Supported
2292 F: blockjob.c
2293 F: include/block/blockjob.h
2294 F: job.c
2295 F: job-qmp.c
2296 F: include/qemu/job.h
2297 F: block/backup.c
2298 F: block/commit.c
2299 F: block/stream.c
2300 F: block/mirror.c
2301 F: qapi/job.json
2302 F: block/block-copy.c
2303 F: include/block/block-copy.c
2304 F: block/backup-top.h
2305 F: block/backup-top.c
2306 F: include/block/aio_task.h
2307 F: block/aio_task.c
2308 F: util/qemu-co-shared-resource.c
2309 F: include/qemu/co-shared-resource.h
2310 T: git https://gitlab.com/jsnow/qemu.git jobs
2311 T: git https://src.openvz.org/scm/~vsementsov/qemu.git jobs
2313 Block QAPI, monitor, command line
2314 M: Markus Armbruster <armbru@redhat.com>
2315 S: Supported
2316 F: blockdev.c
2317 F: blockdev-hmp-cmds.c
2318 F: block/qapi.c
2319 F: qapi/block*.json
2320 F: qapi/transaction.json
2321 T: git https://repo.or.cz/qemu/armbru.git block-next
2323 Dirty Bitmaps
2324 M: Eric Blake <eblake@redhat.com>
2325 M: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
2326 R: John Snow <jsnow@redhat.com>
2327 L: qemu-block@nongnu.org
2328 S: Supported
2329 F: include/qemu/hbitmap.h
2330 F: include/block/dirty-bitmap.h
2331 F: block/monitor/bitmap-qmp-cmds.c
2332 F: block/dirty-bitmap.c
2333 F: block/qcow2-bitmap.c
2334 F: migration/block-dirty-bitmap.c
2335 F: util/hbitmap.c
2336 F: tests/unit/test-hbitmap.c
2337 F: docs/interop/bitmaps.rst
2338 T: git https://repo.or.cz/qemu/ericb.git bitmaps
2340 Character device backends
2341 M: Marc-André Lureau <marcandre.lureau@redhat.com>
2342 R: Paolo Bonzini <pbonzini@redhat.com>
2343 S: Maintained
2344 F: chardev/
2345 F: include/chardev/
2346 F: qapi/char.json
2348 Character Devices (Braille)
2349 M: Samuel Thibault <samuel.thibault@ens-lyon.org>
2350 S: Maintained
2351 F: chardev/baum.c
2353 Command line option argument parsing
2354 M: Markus Armbruster <armbru@redhat.com>
2355 S: Supported
2356 F: include/qemu/option.h
2357 F: tests/unit/test-keyval.c
2358 F: tests/unit/test-qemu-opts.c
2359 F: util/keyval.c
2360 F: util/qemu-option.c
2362 Coverity model
2363 M: Markus Armbruster <armbru@redhat.com>
2364 S: Supported
2365 F: scripts/coverity-model.c
2367 Coverity Scan integration
2368 M: Peter Maydell <peter.maydell@linaro.org>
2369 S: Maintained
2370 F: scripts/coverity-scan/
2372 Device Tree
2373 M: Alistair Francis <alistair.francis@wdc.com>
2374 R: David Gibson <david@gibson.dropbear.id.au>
2375 S: Maintained
2376 F: softmmu/device_tree.c
2377 F: include/sysemu/device_tree.h
2379 Dump
2380 S: Supported
2381 M: Marc-André Lureau <marcandre.lureau@redhat.com>
2382 F: dump/
2383 F: hw/misc/vmcoreinfo.c
2384 F: include/hw/misc/vmcoreinfo.h
2385 F: include/qemu/win_dump_defs
2386 F: include/sysemu/dump-arch.h
2387 F: include/sysemu/dump.h
2388 F: qapi/dump.json
2389 F: scripts/dump-guest-memory.py
2390 F: stubs/dump.c
2392 Error reporting
2393 M: Markus Armbruster <armbru@redhat.com>
2394 S: Supported
2395 F: include/qapi/error.h
2396 F: include/qemu/error-report.h
2397 F: qapi/error.json
2398 F: util/error.c
2399 F: util/qemu-error.c
2400 F: scripts/coccinelle/err-bad-newline.cocci
2401 F: scripts/coccinelle/error-use-after-free.cocci
2402 F: scripts/coccinelle/error_propagate_null.cocci
2403 F: scripts/coccinelle/remove_local_err.cocci
2404 F: scripts/coccinelle/use-error_fatal.cocci
2405 F: scripts/coccinelle/errp-guard.cocci
2407 GDB stub
2408 M: Alex Bennée <alex.bennee@linaro.org>
2409 R: Philippe Mathieu-Daudé <philmd@redhat.com>
2410 S: Maintained
2411 F: gdbstub*
2412 F: include/exec/gdbstub.h
2413 F: gdb-xml/
2414 F: tests/tcg/multiarch/gdbstub/
2416 Memory API
2417 M: Paolo Bonzini <pbonzini@redhat.com>
2418 S: Supported
2419 F: include/exec/ioport.h
2420 F: include/exec/memop.h
2421 F: include/exec/memory.h
2422 F: include/exec/ram_addr.h
2423 F: include/exec/ramblock.h
2424 F: softmmu/dma-helpers.c
2425 F: softmmu/ioport.c
2426 F: softmmu/memory.c
2427 F: softmmu/physmem.c
2428 F: include/exec/memory-internal.h
2429 F: scripts/coccinelle/memory-region-housekeeping.cocci
2431 SPICE
2432 M: Gerd Hoffmann <kraxel@redhat.com>
2433 S: Supported
2434 F: include/ui/qemu-spice.h
2435 F: include/ui/spice-display.h
2436 F: ui/spice-*.c
2437 F: audio/spiceaudio.c
2438 F: hw/display/qxl*
2439 F: qapi/ui.json
2440 F: docs/spice-port-fqdn.txt
2442 Graphics
2443 M: Gerd Hoffmann <kraxel@redhat.com>
2444 S: Odd Fixes
2445 F: ui/
2446 F: include/ui/
2447 F: qapi/ui.json
2448 F: util/drm.c
2450 Cocoa graphics
2451 M: Peter Maydell <peter.maydell@linaro.org>
2452 S: Odd Fixes
2453 F: ui/cocoa.m
2455 Main loop
2456 M: Paolo Bonzini <pbonzini@redhat.com>
2457 S: Maintained
2458 F: include/qemu/main-loop.h
2459 F: include/sysemu/runstate.h
2460 F: include/sysemu/runstate-action.h
2461 F: util/main-loop.c
2462 F: util/qemu-timer.c
2463 F: softmmu/vl.c
2464 F: softmmu/main.c
2465 F: softmmu/cpus.c
2466 F: softmmu/cpu-throttle.c
2467 F: softmmu/cpu-timers.c
2468 F: softmmu/icount.c
2469 F: softmmu/runstate-action.c
2470 F: qapi/run-state.json
2472 Read, Copy, Update (RCU)
2473 M: Paolo Bonzini <pbonzini@redhat.com>
2474 S: Maintained
2475 F: include/qemu/rcu*.h
2476 F: tests/unit/rcutorture.c
2477 F: tests/unit/test-rcu-*.c
2478 F: util/rcu.c
2480 Human Monitor (HMP)
2481 M: Dr. David Alan Gilbert <dgilbert@redhat.com>
2482 S: Maintained
2483 F: monitor/monitor-internal.h
2484 F: monitor/misc.c
2485 F: monitor/monitor.c
2486 F: monitor/hmp*
2487 F: hmp.h
2488 F: hmp-commands*.hx
2489 F: include/monitor/hmp-target.h
2490 F: tests/qtest/test-hmp.c
2491 F: include/qemu/qemu-print.h
2492 F: util/qemu-print.c
2494 Network device backends
2495 M: Jason Wang <jasowang@redhat.com>
2496 S: Maintained
2497 F: net/
2498 F: include/net/
2499 F: qemu-bridge-helper.c
2500 T: git https://github.com/jasowang/qemu.git net
2501 F: qapi/net.json
2503 Netmap network backend
2504 M: Luigi Rizzo <rizzo@iet.unipi.it>
2505 M: Giuseppe Lettieri <g.lettieri@iet.unipi.it>
2506 M: Vincenzo Maffione <v.maffione@gmail.com>
2507 W: http://info.iet.unipi.it/~luigi/netmap/
2508 S: Maintained
2509 F: net/netmap.c
2511 Host Memory Backends
2512 M: Eduardo Habkost <ehabkost@redhat.com>
2513 M: Igor Mammedov <imammedo@redhat.com>
2514 S: Maintained
2515 F: backends/hostmem*.c
2516 F: include/sysemu/hostmem.h
2517 T: git https://gitlab.com/ehabkost/qemu.git machine-next
2519 Cryptodev Backends
2520 M: Gonglei <arei.gonglei@huawei.com>
2521 S: Maintained
2522 F: include/sysemu/cryptodev*.h
2523 F: backends/cryptodev*.c
2525 Python library
2526 M: John Snow <jsnow@redhat.com>
2527 M: Cleber Rosa <crosa@redhat.com>
2528 R: Eduardo Habkost <ehabkost@redhat.com>
2529 S: Maintained
2530 F: python/
2531 T: git https://gitlab.com/jsnow/qemu.git python
2533 Python scripts
2534 M: Eduardo Habkost <ehabkost@redhat.com>
2535 M: Cleber Rosa <crosa@redhat.com>
2536 S: Odd Fixes
2537 F: scripts/*.py
2538 F: tests/*.py
2540 Benchmark util
2541 M: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
2542 S: Maintained
2543 F: scripts/simplebench/
2545 Transactions helper
2546 M: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
2547 S: Maintained
2548 F: include/qemu/transactions.h
2549 F: util/transactions.c
2551 QAPI
2552 M: Markus Armbruster <armbru@redhat.com>
2553 M: Michael Roth <michael.roth@amd.com>
2554 S: Supported
2555 F: qapi/
2556 X: qapi/*.json
2557 F: include/qapi/
2558 X: include/qapi/qmp/
2559 F: include/qapi/qmp/dispatch.h
2560 F: tests/qapi-schema/
2561 F: tests/unit/test-*-visitor.c
2562 F: tests/unit/test-qapi-*.c
2563 F: tests/unit/test-qmp-*.c
2564 F: tests/unit/test-visitor-serialization.c
2565 F: scripts/qapi-gen.py
2566 F: scripts/qapi/*
2567 F: docs/sphinx/qapidoc.py
2568 F: docs/devel/qapi*
2569 T: git https://repo.or.cz/qemu/armbru.git qapi-next
2571 QAPI Schema
2572 M: Eric Blake <eblake@redhat.com>
2573 M: Markus Armbruster <armbru@redhat.com>
2574 S: Supported
2575 F: qapi/*.json
2576 T: git https://repo.or.cz/qemu/armbru.git qapi-next
2578 QObject
2579 M: Markus Armbruster <armbru@redhat.com>
2580 S: Supported
2581 F: qobject/
2582 F: include/qapi/qmp/
2583 X: include/qapi/qmp/dispatch.h
2584 F: scripts/coccinelle/qobject.cocci
2585 F: tests/unit/check-qdict.c
2586 F: tests/unit/check-qjson.c
2587 F: tests/unit/check-qlist.c
2588 F: tests/unit/check-qlit.c
2589 F: tests/unit/check-qnull.c
2590 F: tests/unit/check-qnum.c
2591 F: tests/unit/check-qobject.c
2592 F: tests/unit/check-qstring.c
2593 F: tests/data/qobject/qdict.txt
2594 T: git https://repo.or.cz/qemu/armbru.git qapi-next
2596 QEMU Guest Agent
2597 M: Michael Roth <michael.roth@amd.com>
2598 S: Maintained
2599 F: qga/
2600 F: docs/interop/qemu-ga.rst
2601 F: docs/interop/qemu-ga-ref.rst
2602 F: scripts/qemu-guest-agent/
2603 F: tests/unit/test-qga.c
2604 T: git https://github.com/mdroth/qemu.git qga
2607 M: Paolo Bonzini <pbonzini@redhat.com>
2608 R: Daniel P. Berrange <berrange@redhat.com>
2609 R: Eduardo Habkost <ehabkost@redhat.com>
2610 S: Supported
2611 F: docs/qdev-device-use.txt
2612 F: hw/core/qdev*
2613 F: hw/core/bus.c
2614 F: hw/core/sysbus.c
2615 F: include/hw/qdev*
2616 F: include/monitor/qdev.h
2617 F: include/qom/
2618 F: qapi/qom.json
2619 F: qapi/qdev.json
2620 F: scripts/coccinelle/qom-parent-type.cocci
2621 F: softmmu/qdev-monitor.c
2622 F: stubs/qdev.c
2623 F: qom/
2624 F: tests/unit/check-qom-interface.c
2625 F: tests/unit/check-qom-proplist.c
2626 F: tests/unit/test-qdev-global-props.c
2628 QOM boilerplate conversion script
2629 M: Eduardo Habkost <ehabkost@redhat.com>
2630 S: Maintained
2631 F: scripts/codeconverter/
2634 M: Markus Armbruster <armbru@redhat.com>
2635 S: Supported
2636 F: monitor/monitor-internal.h
2637 F: monitor/qmp*
2638 F: monitor/misc.c
2639 F: monitor/monitor.c
2640 F: qapi/control.json
2641 F: qapi/error.json
2642 F: qapi/introspect.json
2643 F: docs/devel/*qmp-*
2644 F: docs/interop/*qmp-*
2645 F: scripts/qmp/
2646 F: tests/qtest/qmp-test.c
2647 F: tests/qtest/qmp-cmd-test.c
2648 T: git https://repo.or.cz/qemu/armbru.git qapi-next
2650 qtest
2651 M: Thomas Huth <thuth@redhat.com>
2652 M: Laurent Vivier <lvivier@redhat.com>
2653 R: Paolo Bonzini <pbonzini@redhat.com>
2654 S: Maintained
2655 F: softmmu/qtest.c
2656 F: accel/qtest/
2657 F: tests/qtest/
2658 F: docs/devel/qgraph.rst
2659 X: tests/qtest/bios-tables-test*
2661 Device Fuzzing
2662 M: Alexander Bulekov <alxndr@bu.edu>
2663 R: Paolo Bonzini <pbonzini@redhat.com>
2664 R: Bandan Das <bsd@redhat.com>
2665 R: Stefan Hajnoczi <stefanha@redhat.com>
2666 R: Thomas Huth <thuth@redhat.com>
2667 S: Maintained
2668 F: tests/qtest/fuzz/
2669 F: tests/qtest/fuzz-*test.c
2670 F: scripts/oss-fuzz/
2671 F: hw/mem/sparse-mem.c
2672 F: docs/devel/fuzzing.rst
2674 Register API
2675 M: Alistair Francis <alistair@alistair23.me>
2676 S: Maintained
2677 F: hw/core/register.c
2678 F: include/hw/register.h
2679 F: include/hw/registerfields.h
2681 SLIRP
2682 M: Samuel Thibault <samuel.thibault@ens-lyon.org>
2683 S: Maintained
2684 F: slirp/
2685 F: net/slirp.c
2686 F: include/net/slirp.h
2687 T: git https://people.debian.org/~sthibault/qemu.git slirp
2689 Streams
2690 M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
2691 S: Maintained
2692 F: hw/core/stream.c
2693 F: include/hw/stream.h
2695 Stubs
2696 M: Paolo Bonzini <pbonzini@redhat.com>
2697 S: Maintained
2698 F: stubs/
2700 Tracing
2701 M: Stefan Hajnoczi <stefanha@redhat.com>
2702 S: Maintained
2703 F: trace/
2704 F: trace-events
2705 F: docs/qemu-option-trace.rst.inc
2706 F: qapi/trace.json
2707 F: scripts/tracetool.py
2708 F: scripts/tracetool/
2709 F: scripts/qemu-trace-stap*
2710 F: docs/tools/qemu-trace-stap.rst
2711 F: docs/devel/tracing.txt
2712 T: git https://github.com/stefanha/qemu.git tracing
2715 M: Stefan Berger <stefanb@linux.ibm.com>
2716 S: Maintained
2717 F: tpm.c
2718 F: stubs/tpm.c
2719 F: hw/tpm/*
2720 F: include/hw/acpi/tpm.h
2721 F: include/sysemu/tpm*
2722 F: qapi/tpm.json
2723 F: backends/tpm/
2724 F: tests/qtest/*tpm*
2725 T: git https://github.com/stefanberger/qemu-tpm.git tpm-next
2727 Checkpatch
2728 S: Odd Fixes
2729 F: scripts/checkpatch.pl
2731 Migration
2732 M: Juan Quintela <quintela@redhat.com>
2733 M: Dr. David Alan Gilbert <dgilbert@redhat.com>
2734 S: Maintained
2735 F: hw/core/vmstate-if.c
2736 F: include/hw/vmstate-if.h
2737 F: include/migration/
2738 F: migration/
2739 F: scripts/vmstate-static-checker.py
2740 F: tests/vmstate-static-checker-data/
2741 F: tests/qtest/migration-test.c
2742 F: docs/devel/migration.rst
2743 F: qapi/migration.json
2744 F: tests/migration/
2746 D-Bus
2747 M: Marc-André Lureau <marcandre.lureau@redhat.com>
2748 S: Maintained
2749 F: backends/dbus-vmstate.c
2750 F: tests/dbus-vmstate*
2751 F: util/dbus.c
2752 F: include/qemu/dbus.h
2753 F: docs/interop/dbus.rst
2754 F: docs/interop/dbus-vmstate.rst
2756 Seccomp
2757 M: Eduardo Otubo <otubo@redhat.com>
2758 S: Supported
2759 F: softmmu/qemu-seccomp.c
2760 F: include/sysemu/seccomp.h
2762 Cryptography
2763 M: Daniel P. Berrange <berrange@redhat.com>
2764 S: Maintained
2765 F: crypto/
2766 F: include/crypto/
2767 F: qapi/crypto.json
2768 F: tests/unit/test-crypto-*
2769 F: tests/bench/benchmark-crypto-*
2770 F: tests/unit/crypto-tls-*
2771 F: tests/unit/pkix_asn1_tab.c
2772 F: qemu.sasl
2774 Coroutines
2775 M: Stefan Hajnoczi <stefanha@redhat.com>
2776 M: Kevin Wolf <kwolf@redhat.com>
2777 S: Maintained
2778 F: util/*coroutine*
2779 F: include/qemu/coroutine*
2780 F: tests/unit/test-coroutine.c
2782 Buffers
2783 M: Daniel P. Berrange <berrange@redhat.com>
2784 S: Odd Fixes
2785 F: util/buffer.c
2786 F: include/qemu/buffer.h
2788 I/O Channels
2789 M: Daniel P. Berrange <berrange@redhat.com>
2790 S: Maintained
2791 F: io/
2792 F: include/io/
2793 F: tests/unit/test-io-*
2795 User authorization
2796 M: Daniel P. Berrange <berrange@redhat.com>
2797 S: Maintained
2798 F: authz/
2799 F: qapi/authz.json
2800 F: include/authz/
2801 F: tests/unit/test-authz-*
2803 Sockets
2804 M: Daniel P. Berrange <berrange@redhat.com>
2805 M: Gerd Hoffmann <kraxel@redhat.com>
2806 S: Maintained
2807 F: include/qemu/sockets.h
2808 F: util/qemu-sockets.c
2809 F: qapi/sockets.json
2811 File monitor
2812 M: Daniel P. Berrange <berrange@redhat.com>
2813 S: Odd Fixes
2814 F: util/filemonitor*.c
2815 F: include/qemu/filemonitor.h
2816 F: tests/unit/test-util-filemonitor.c
2818 Throttling infrastructure
2819 M: Alberto Garcia <berto@igalia.com>
2820 S: Supported
2821 F: block/throttle-groups.c
2822 F: include/block/throttle-groups.h
2823 F: include/qemu/throttle*.h
2824 F: util/throttle.c
2825 F: docs/throttle.txt
2826 F: tests/unit/test-throttle.c
2827 L: qemu-block@nongnu.org
2829 UUID
2830 M: Fam Zheng <fam@euphon.net>
2831 S: Supported
2832 F: util/uuid.c
2833 F: include/qemu/uuid.h
2834 F: tests/unit/test-uuid.c
2836 Yank feature
2837 M: Lukas Straub <lukasstraub2@web.de>
2838 S: Odd fixes
2839 F: util/yank.c
2840 F: migration/yank_functions*
2841 F: tests/unit/test-yank.c
2842 F: include/qemu/yank.h
2843 F: qapi/yank.json
2845 COLO Framework
2846 M: zhanghailiang <zhang.zhanghailiang@huawei.com>
2847 S: Maintained
2848 F: migration/colo*
2849 F: include/migration/colo.h
2850 F: include/migration/failover.h
2851 F: docs/COLO-FT.txt
2853 COLO Proxy
2854 M: Zhang Chen <chen.zhang@intel.com>
2855 M: Li Zhijian <lizhijian@cn.fujitsu.com>
2856 S: Supported
2857 F: docs/colo-proxy.txt
2858 F: net/colo*
2859 F: net/filter-rewriter.c
2860 F: net/filter-mirror.c
2862 Record/replay
2863 M: Pavel Dovgalyuk <pavel.dovgaluk@ispras.ru>
2864 R: Paolo Bonzini <pbonzini@redhat.com>
2865 W: https://wiki.qemu.org/Features/record-replay
2866 S: Supported
2867 F: replay/*
2868 F: block/blkreplay.c
2869 F: net/filter-replay.c
2870 F: include/sysemu/replay.h
2871 F: docs/replay.txt
2872 F: stubs/replay.c
2873 F: tests/acceptance/replay_kernel.py
2874 F: tests/acceptance/reverse_debugging.py
2875 F: qapi/replay.json
2877 IOVA Tree
2878 M: Peter Xu <peterx@redhat.com>
2879 S: Maintained
2880 F: include/qemu/iova-tree.h
2881 F: util/iova-tree.c
2883 elf2dmp
2884 M: Viktor Prutyanov <viktor.prutyanov@phystech.edu>
2885 S: Maintained
2886 F: contrib/elf2dmp/
2888 I2C and SMBus
2889 M: Corey Minyard <cminyard@mvista.com>
2890 S: Maintained
2891 F: hw/i2c/core.c
2892 F: hw/i2c/smbus_slave.c
2893 F: hw/i2c/smbus_master.c
2894 F: hw/i2c/smbus_eeprom.c
2895 F: include/hw/i2c/i2c.h
2896 F: include/hw/i2c/smbus_master.h
2897 F: include/hw/i2c/smbus_slave.h
2898 F: include/hw/i2c/smbus_eeprom.h
2900 Firmware schema specifications
2901 M: Laszlo Ersek <lersek@redhat.com>
2902 M: Philippe Mathieu-Daudé <philmd@redhat.com>
2903 R: Daniel P. Berrange <berrange@redhat.com>
2904 R: Kashyap Chamarthy <kchamart@redhat.com>
2905 S: Maintained
2906 F: docs/interop/firmware.json
2908 EDK2 Firmware
2909 M: Laszlo Ersek <lersek@redhat.com>
2910 M: Philippe Mathieu-Daudé <philmd@redhat.com>
2911 S: Supported
2912 F: pc-bios/descriptors/??-edk2-*.json
2913 F: pc-bios/edk2-*
2914 F: roms/Makefile.edk2
2915 F: roms/edk2
2916 F: roms/edk2-*
2917 F: tests/data/uefi-boot-images/
2918 F: tests/uefi-test-tools/
2919 F: .gitlab-ci.d/edk2.yml
2920 F: .gitlab-ci.d/edk2/
2922 VT-d Emulation
2923 M: Michael S. Tsirkin <mst@redhat.com>
2924 M: Peter Xu <peterx@redhat.com>
2925 R: Jason Wang <jasowang@redhat.com>
2926 S: Supported
2927 F: hw/i386/intel_iommu.c
2928 F: hw/i386/intel_iommu_internal.h
2929 F: include/hw/i386/intel_iommu.h
2931 OpenSBI Firmware
2932 M: Bin Meng <bmeng.cn@gmail.com>
2933 S: Supported
2934 F: pc-bios/opensbi-*
2935 F: .gitlab-ci.d/opensbi.yml
2936 F: .gitlab-ci.d/opensbi/
2938 Clock framework
2939 M: Luc Michel <luc@lmichel.fr>
2940 R: Damien Hedde <damien.hedde@greensocs.com>
2941 S: Maintained
2942 F: include/hw/clock.h
2943 F: include/hw/qdev-clock.h
2944 F: hw/core/clock.c
2945 F: hw/core/clock-vmstate.c
2946 F: hw/core/qdev-clock.c
2947 F: docs/devel/clocks.rst
2949 Usermode Emulation
2950 ------------------
2951 Overall usermode emulation
2952 M: Riku Voipio <riku.voipio@iki.fi>
2953 S: Maintained
2954 F: thunk.c
2955 F: accel/tcg/user-exec*.c
2957 BSD user
2958 M: Warner Losh <imp@bsdimp.com>
2959 R: Kyle Evans <kevans@freebsd.org>
2960 S: Maintained
2961 F: bsd-user/
2962 F: default-configs/targets/*-bsd-user.mak
2963 T: git https://github.com/qemu-bsd-user/qemu-bsd-user bsd-user-rebase-3.1
2965 Linux user
2966 M: Laurent Vivier <laurent@vivier.eu>
2967 S: Maintained
2968 F: linux-user/
2969 F: default-configs/targets/*linux-user.mak
2970 F: scripts/qemu-binfmt-conf.sh
2971 F: scripts/update-syscalltbl.sh
2972 F: scripts/update-mips-syscall-args.sh
2973 F: scripts/gensyscalls.sh
2975 Tiny Code Generator (TCG)
2976 -------------------------
2977 Common TCG code
2978 M: Richard Henderson <richard.henderson@linaro.org>
2979 S: Maintained
2980 F: tcg/
2981 F: include/tcg/
2983 TCG Plugins
2984 M: Alex Bennée <alex.bennee@linaro.org>
2985 S: Maintained
2986 F: docs/devel/tcg-plugins.rst
2987 F: plugins/
2988 F: tests/plugin/
2989 F: tests/acceptance/tcg_plugins.py
2990 F: contrib/plugins/
2992 AArch64 TCG target
2993 M: Richard Henderson <richard.henderson@linaro.org>
2994 S: Maintained
2995 L: qemu-arm@nongnu.org
2996 F: tcg/aarch64/
2997 F: disas/arm-a64.cc
2998 F: disas/libvixl/
3000 ARM TCG target
3001 M: Andrzej Zaborowski <balrogg@gmail.com>
3002 S: Maintained
3003 L: qemu-arm@nongnu.org
3004 F: tcg/arm/
3005 F: disas/arm.c
3007 i386 TCG target
3008 M: Richard Henderson <richard.henderson@linaro.org>
3009 S: Maintained
3010 F: tcg/i386/
3011 F: disas/i386.c
3013 MIPS TCG target
3014 M: Philippe Mathieu-Daudé <f4bug@amsat.org>
3015 R: Aurelien Jarno <aurelien@aurel32.net>
3016 R: Huacai Chen <chenhuacai@kernel.org>
3017 R: Jiaxun Yang <jiaxun.yang@flygoat.com>
3018 R: Aleksandar Rikalo <aleksandar.rikalo@syrmia.com>
3019 S: Odd Fixes
3020 F: tcg/mips/
3022 PPC TCG target
3023 M: Richard Henderson <richard.henderson@linaro.org>
3024 S: Odd Fixes
3025 F: tcg/ppc/
3026 F: disas/ppc.c
3028 RISC-V TCG target
3029 M: Palmer Dabbelt <palmer@dabbelt.com>
3030 M: Alistair Francis <Alistair.Francis@wdc.com>
3031 L: qemu-riscv@nongnu.org
3032 S: Maintained
3033 F: tcg/riscv/
3034 F: disas/riscv.c
3036 S390 TCG target
3037 M: Richard Henderson <richard.henderson@linaro.org>
3038 S: Maintained
3039 F: tcg/s390/
3040 F: disas/s390.c
3041 L: qemu-s390x@nongnu.org
3043 SPARC TCG target
3044 S: Odd Fixes
3045 F: tcg/sparc/
3046 F: disas/sparc.c
3048 TCI TCG target
3049 M: Stefan Weil <sw@weilnetz.de>
3050 S: Maintained
3051 F: tcg/tci/
3052 F: tcg/tci.c
3053 F: disas/tci.c
3055 Block drivers
3056 -------------
3057 VMDK
3058 M: Fam Zheng <fam@euphon.net>
3059 L: qemu-block@nongnu.org
3060 S: Supported
3061 F: block/vmdk.c
3064 M: Jason Dillaman <dillaman@redhat.com>
3065 L: qemu-block@nongnu.org
3066 S: Supported
3067 F: block/rbd.c
3069 Sheepdog
3070 M: Liu Yuan <namei.unix@gmail.com>
3071 L: qemu-block@nongnu.org
3072 S: Odd Fixes
3073 F: block/sheepdog.c
3075 VHDX
3076 M: Jeff Cody <codyprime@gmail.com>
3077 L: qemu-block@nongnu.org
3078 S: Supported
3079 F: block/vhdx*
3082 M: Stefan Weil <sw@weilnetz.de>
3083 L: qemu-block@nongnu.org
3084 S: Maintained
3085 F: block/vdi.c
3087 iSCSI
3088 M: Ronnie Sahlberg <ronniesahlberg@gmail.com>
3089 M: Paolo Bonzini <pbonzini@redhat.com>
3090 M: Peter Lieven <pl@kamp.de>
3091 L: qemu-block@nongnu.org
3092 S: Odd Fixes
3093 F: block/iscsi.c
3094 F: block/iscsi-opts.c
3096 Network Block Device (NBD)
3097 M: Eric Blake <eblake@redhat.com>
3098 M: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
3099 L: qemu-block@nongnu.org
3100 S: Maintained
3101 F: block/nbd*
3102 F: nbd/
3103 F: include/block/nbd*
3104 F: qemu-nbd.*
3105 F: blockdev-nbd.c
3106 F: docs/interop/nbd.txt
3107 F: docs/tools/qemu-nbd.rst
3108 T: git https://repo.or.cz/qemu/ericb.git nbd
3109 T: git https://src.openvz.org/scm/~vsementsov/qemu.git nbd
3112 M: Peter Lieven <pl@kamp.de>
3113 L: qemu-block@nongnu.org
3114 S: Maintained
3115 F: block/nfs.c
3118 M: Richard W.M. Jones <rjones@redhat.com>
3119 L: qemu-block@nongnu.org
3120 S: Supported
3121 F: block/ssh.c
3123 CURL
3124 L: qemu-block@nongnu.org
3125 S: Odd Fixes
3126 F: block/curl.c
3128 GLUSTER
3129 L: qemu-block@nongnu.org
3130 L: integration@gluster.org
3131 S: Odd Fixes
3132 F: block/gluster.c
3134 Null Block Driver
3135 M: Fam Zheng <fam@euphon.net>
3136 L: qemu-block@nongnu.org
3137 S: Supported
3138 F: block/null.c
3140 NVMe Block Driver
3141 M: Stefan Hajnoczi <stefanha@redhat.com>
3142 R: Fam Zheng <fam@euphon.net>
3143 L: qemu-block@nongnu.org
3144 S: Supported
3145 F: block/nvme*
3146 F: include/block/nvme.h
3147 T: git https://github.com/stefanha/qemu.git block
3149 Bootdevice
3150 M: Gonglei <arei.gonglei@huawei.com>
3151 S: Maintained
3152 F: softmmu/bootdevice.c
3154 Quorum
3155 M: Alberto Garcia <berto@igalia.com>
3156 S: Supported
3157 F: block/quorum.c
3158 L: qemu-block@nongnu.org
3160 blklogwrites
3161 M: Ari Sundholm <ari@tuxera.com>
3162 L: qemu-block@nongnu.org
3163 S: Supported
3164 F: block/blklogwrites.c
3166 blkverify
3167 M: Stefan Hajnoczi <stefanha@redhat.com>
3168 L: qemu-block@nongnu.org
3169 S: Supported
3170 F: block/blkverify.c
3172 bochs
3173 M: Stefan Hajnoczi <stefanha@redhat.com>
3174 L: qemu-block@nongnu.org
3175 S: Supported
3176 F: block/bochs.c
3178 cloop
3179 M: Stefan Hajnoczi <stefanha@redhat.com>
3180 L: qemu-block@nongnu.org
3181 S: Supported
3182 F: block/cloop.c
3185 M: Stefan Hajnoczi <stefanha@redhat.com>
3186 L: qemu-block@nongnu.org
3187 S: Supported
3188 F: block/dmg.c
3190 parallels
3191 M: Stefan Hajnoczi <stefanha@redhat.com>
3192 M: Denis V. Lunev <den@openvz.org>
3193 M: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
3194 L: qemu-block@nongnu.org
3195 S: Supported
3196 F: block/parallels.c
3197 F: block/parallels-ext.c
3198 F: docs/interop/parallels.txt
3199 T: git https://src.openvz.org/scm/~vsementsov/qemu.git parallels
3202 M: Stefan Hajnoczi <stefanha@redhat.com>
3203 L: qemu-block@nongnu.org
3204 S: Supported
3205 F: block/qed.c
3208 M: Kevin Wolf <kwolf@redhat.com>
3209 L: qemu-block@nongnu.org
3210 S: Supported
3211 F: block/linux-aio.c
3212 F: include/block/raw-aio.h
3213 F: block/raw-format.c
3214 F: block/file-posix.c
3215 F: block/file-win32.c
3216 F: block/win32-aio.c
3218 Linux io_uring
3219 M: Aarushi Mehta <mehta.aaru20@gmail.com>
3220 M: Julia Suvorova <jusual@redhat.com>
3221 M: Stefan Hajnoczi <stefanha@redhat.com>
3222 L: qemu-block@nongnu.org
3223 S: Maintained
3224 F: block/io_uring.c
3225 F: stubs/io_uring.c
3227 qcow2
3228 M: Kevin Wolf <kwolf@redhat.com>
3229 M: Max Reitz <mreitz@redhat.com>
3230 L: qemu-block@nongnu.org
3231 S: Supported
3232 F: block/qcow2*
3233 F: docs/interop/qcow2.txt
3235 qcow
3236 M: Kevin Wolf <kwolf@redhat.com>
3237 L: qemu-block@nongnu.org
3238 S: Supported
3239 F: block/qcow.c
3241 blkdebug
3242 M: Kevin Wolf <kwolf@redhat.com>
3243 M: Max Reitz <mreitz@redhat.com>
3244 L: qemu-block@nongnu.org
3245 S: Supported
3246 F: block/blkdebug.c
3249 M: Kevin Wolf <kwolf@redhat.com>
3250 L: qemu-block@nongnu.org
3251 S: Supported
3252 F: block/vpc.c
3254 vvfat
3255 M: Kevin Wolf <kwolf@redhat.com>
3256 L: qemu-block@nongnu.org
3257 S: Odd Fixes
3258 F: block/vvfat.c
3260 Image format fuzzer
3261 M: Stefan Hajnoczi <stefanha@redhat.com>
3262 L: qemu-block@nongnu.org
3263 S: Supported
3264 F: tests/image-fuzzer/
3266 Vhost-user block device backend server
3267 M: Coiby Xu <Coiby.Xu@gmail.com>
3268 S: Maintained
3269 F: block/export/vhost-user-blk-server.c
3270 F: block/export/vhost-user-blk-server.h
3271 F: include/qemu/vhost-user-server.h
3272 F: tests/qtest/libqos/vhost-user-blk.c
3273 F: util/vhost-user-server.c
3275 FUSE block device exports
3276 M: Max Reitz <mreitz@redhat.com>
3277 L: qemu-block@nongnu.org
3278 S: Supported
3279 F: block/export/fuse.c
3281 Replication
3282 M: Wen Congyang <wencongyang2@huawei.com>
3283 M: Xie Changlong <xiechanglong.d@gmail.com>
3284 S: Supported
3285 F: replication*
3286 F: block/replication.c
3287 F: tests/unit/test-replication.c
3288 F: docs/block-replication.txt
3290 PVRDMA
3291 M: Yuval Shaia <yuval.shaia.ml@gmail.com>
3292 M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
3293 S: Maintained
3294 F: hw/rdma/*
3295 F: hw/rdma/vmw/*
3296 F: docs/pvrdma.txt
3297 F: contrib/rdmacm-mux/*
3298 F: qapi/rdma.json
3300 Semihosting
3301 M: Alex Bennée <alex.bennee@linaro.org>
3302 S: Maintained
3303 F: semihosting/
3304 F: include/semihosting/
3305 F: tests/tcg/multiarch/arm-compat-semi/
3307 Multi-process QEMU
3308 M: Elena Ufimtseva <elena.ufimtseva@oracle.com>
3309 M: Jagannathan Raman <jag.raman@oracle.com>
3310 M: John G Johnson <john.g.johnson@oracle.com>
3311 S: Maintained
3312 F: docs/devel/multi-process.rst
3313 F: docs/system/multi-process.rst
3314 F: hw/pci-host/remote.c
3315 F: include/hw/pci-host/remote.h
3316 F: hw/remote/machine.c
3317 F: include/hw/remote/machine.h
3318 F: hw/remote/mpqemu-link.c
3319 F: include/hw/remote/mpqemu-link.h
3320 F: hw/remote/message.c
3321 F: hw/remote/remote-obj.c
3322 F: include/hw/remote/memory.h
3323 F: hw/remote/memory.c
3324 F: hw/remote/proxy.c
3325 F: include/hw/remote/proxy.h
3326 F: hw/remote/proxy-memory-listener.c
3327 F: include/hw/remote/proxy-memory-listener.h
3328 F: hw/remote/iohub.c
3329 F: include/hw/remote/iohub.h
3331 Build and test automation
3332 -------------------------
3333 Build and test automation, general continuous integration
3334 M: Alex Bennée <alex.bennee@linaro.org>
3335 M: Philippe Mathieu-Daudé <f4bug@amsat.org>
3336 M: Thomas Huth <thuth@redhat.com>
3337 R: Wainer dos Santos Moschetta <wainersm@redhat.com>
3338 R: Willian Rampazzo <willianr@redhat.com>
3339 S: Maintained
3340 F: .github/lockdown.yml
3341 F: .gitlab-ci.yml
3342 F: .gitlab-ci.d/
3343 F: .travis.yml
3344 F: scripts/ci/
3345 F: tests/docker/
3346 F: tests/vm/
3347 F: scripts/archive-source.sh
3348 W: https://gitlab.com/qemu-project/qemu/pipelines
3349 W: https://travis-ci.org/qemu/qemu
3351 FreeBSD Hosted Continuous Integration
3352 M: Ed Maste <emaste@freebsd.org>
3353 M: Li-Wen Hsu <lwhsu@freebsd.org>
3354 S: Maintained
3355 F: .cirrus.yml
3356 W: https://cirrus-ci.com/github/qemu/qemu
3358 Windows Hosted Continuous Integration
3359 M: Yonggang Luo <luoyonggang@gmail.com>
3360 S: Maintained
3361 F: .cirrus.yml
3362 W: https://cirrus-ci.com/github/qemu/qemu
3364 Guest Test Compilation Support
3365 M: Alex Bennée <alex.bennee@linaro.org>
3366 R: Philippe Mathieu-Daudé <f4bug@amsat.org>
3367 S: Maintained
3368 F: tests/tcg/Makefile
3369 F: tests/tcg/Makefile.include
3371 Acceptance (Integration) Testing with the Avocado framework
3372 W: https://trello.com/b/6Qi1pxVn/avocado-qemu
3373 R: Cleber Rosa <crosa@redhat.com>
3374 R: Philippe Mathieu-Daudé <philmd@redhat.com>
3375 R: Wainer dos Santos Moschetta <wainersm@redhat.com>
3376 S: Odd Fixes
3377 F: tests/acceptance/
3379 Documentation
3380 -------------
3381 Build system architecture
3382 M: Daniel P. Berrange <berrange@redhat.com>
3383 S: Odd Fixes
3384 F: docs/devel/build-system.txt
3386 GIT Data Mining Config
3387 M: Alex Bennée <alex.bennee@linaro.org>
3388 S: Odd Fixes
3389 F: gitdm.config
3390 F: contrib/gitdm/*
3392 Incompatible changes
3393 R: libvir-list@redhat.com
3394 F: docs/system/deprecated.rst
3396 Build System
3397 ------------
3398 GIT submodules
3399 M: Daniel P. Berrange <berrange@redhat.com>
3400 S: Odd Fixes
3401 F: scripts/git-submodule.sh
3403 UI translations
3404 S: Orphan
3405 F: po/*.po
3407 Sphinx documentation configuration and build machinery
3408 M: Peter Maydell <peter.maydell@linaro.org>
3409 S: Maintained
3410 F: docs/conf.py
3411 F: docs/*/conf.py
3412 F: docs/sphinx/
3414 Miscellaneous
3415 -------------
3416 Performance Tools and Tests
3417 M: Ahmed Karaman <ahmedkhaledkaraman@gmail.com>
3418 S: Maintained
3419 F: scripts/performance/