tcg: Add TCG_CALL_NO_RETURN
[qemu/ar7.git] / MAINTAINERS
blob827d6445d3f56cca732b735feeddf8591c173bc9
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
87 M: Cornelia Huck <cohuck@redhat.com>
88 S: Supported
89 F: default-configs/s390x-softmmu.mak
90 F: gdb-xml/s390*.xml
91 F: hw/char/sclp*.[hc]
92 F: hw/char/terminal3270.c
93 F: hw/intc/s390_flic.c
94 F: hw/intc/s390_flic_kvm.c
95 F: hw/s390x/
96 F: hw/vfio/ap.c
97 F: hw/vfio/ccw.c
98 F: hw/watchdog/wdt_diag288.c
99 F: include/hw/s390x/
100 F: include/hw/watchdog/wdt_diag288.h
101 F: pc-bios/s390-ccw/
102 F: pc-bios/s390-ccw.img
103 F: target/s390x/
104 F: docs/vfio-ap.txt
105 K: ^Subject:.*(?i)s390x?
106 T: git https://github.com/cohuck/qemu.git s390-next
107 L: qemu-s390x@nongnu.org
109 Guest CPU cores (TCG):
110 ----------------------
111 Overall
112 L: qemu-devel@nongnu.org
113 M: Peter Crosthwaite <crosthwaite.peter@gmail.com>
114 M: Richard Henderson <rth@twiddle.net>
115 R: Paolo Bonzini <pbonzini@redhat.com>
116 S: Maintained
117 F: cpus.c
118 F: exec.c
119 F: accel/tcg/
120 F: accel/stubs/tcg-stub.c
121 F: include/exec/cpu*.h
122 F: include/exec/exec-all.h
123 F: include/exec/helper*.h
124 F: include/exec/tb-hash.h
125 F: include/sysemu/cpus.h
127 FPU emulation
128 M: Aurelien Jarno <aurelien@aurel32.net>
129 M: Peter Maydell <peter.maydell@linaro.org>
130 M: Alex Bennée <alex.bennee@linaro.org>
131 S: Maintained
132 F: fpu/
133 F: include/fpu/
134 F: tests/fp/
136 Alpha
137 M: Richard Henderson <rth@twiddle.net>
138 S: Maintained
139 F: target/alpha/
140 F: tests/tcg/alpha/
141 F: disas/alpha.c
144 M: Peter Maydell <peter.maydell@linaro.org>
145 L: qemu-arm@nongnu.org
146 S: Maintained
147 F: target/arm/
148 F: tests/tcg/arm/
149 F: tests/tcg/aarch64/
150 F: hw/arm/
151 F: hw/cpu/a*mpcore.c
152 F: include/hw/cpu/a*mpcore.h
153 F: disas/arm.c
154 F: disas/arm-a64.cc
155 F: disas/libvixl/
157 ARM SMMU
158 M: Eric Auger <eric.auger@redhat.com>
159 L: qemu-arm@nongnu.org
160 S: Maintained
161 F: hw/arm/smmu*
162 F: include/hw/arm/smmu*
164 CRIS
165 M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
166 S: Maintained
167 F: target/cris/
168 F: hw/cris/
169 F: include/hw/cris/
170 F: tests/tcg/cris/
171 F: disas/cris.c
173 HPPA (PA-RISC)
174 M: Richard Henderson <rth@twiddle.net>
175 S: Maintained
176 F: target/hppa/
177 F: hw/hppa/
178 F: disas/hppa.c
180 LM32
181 M: Michael Walle <michael@walle.cc>
182 S: Maintained
183 F: target/lm32/
184 F: disas/lm32.c
185 F: hw/lm32/
186 F: hw/*/lm32_*
187 F: hw/*/milkymist-*
188 F: include/hw/char/lm32_juart.h
189 F: include/hw/lm32/
190 F: tests/tcg/lm32/
192 M68K
193 M: Laurent Vivier <laurent@vivier.eu>
194 S: Maintained
195 F: target/m68k/
196 F: disas/m68k.c
198 MicroBlaze
199 M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
200 S: Maintained
201 F: target/microblaze/
202 F: hw/microblaze/
203 F: disas/microblaze.c
205 MIPS
206 M: Aurelien Jarno <aurelien@aurel32.net>
207 M: Aleksandar Markovic <amarkovic@wavecomp.com>
208 R: Stefan Markovic <smarkovic@wavecomp.com>
209 S: Maintained
210 F: target/mips/
211 F: hw/mips/
212 F: hw/misc/mips_*
213 F: hw/intc/mips_gic.c
214 F: hw/timer/mips_gictimer.c
215 F: include/hw/mips/
216 F: include/hw/misc/mips_*
217 F: include/hw/intc/mips_gic.h
218 F: include/hw/timer/mips_gictimer.h
219 F: tests/tcg/mips/
220 F: disas/mips.c
221 F: disas/nanomips.h
222 F: disas/nanomips.cpp
224 Moxie
225 M: Anthony Green <green@moxielogic.com>
226 S: Maintained
227 F: target/moxie/
228 F: disas/moxie.c
229 F: hw/moxie/
230 F: default-configs/moxie-softmmu.mak
232 NiosII
233 M: Chris Wulff <crwulff@gmail.com>
234 M: Marek Vasut <marex@denx.de>
235 S: Maintained
236 F: target/nios2/
237 F: hw/nios2/
238 F: hw/intc/nios2_iic.c
239 F: disas/nios2.c
240 F: default-configs/nios2-softmmu.mak
242 OpenRISC
243 M: Stafford Horne <shorne@gmail.com>
244 S: Odd Fixes
245 F: target/openrisc/
246 F: hw/openrisc/
247 F: tests/tcg/openrisc/
249 PowerPC
250 M: David Gibson <david@gibson.dropbear.id.au>
251 L: qemu-ppc@nongnu.org
252 S: Maintained
253 F: target/ppc/
254 F: hw/ppc/
255 F: include/hw/ppc/
256 F: disas/ppc.c
258 RISC-V
259 M: Michael Clark <mjc@sifive.com>
260 M: Palmer Dabbelt <palmer@sifive.com>
261 M: Alistair Francis <Alistair.Francis@wdc.com>
262 M: Sagar Karandikar <sagark@eecs.berkeley.edu>
263 M: Bastian Koppelmann <kbastian@mail.uni-paderborn.de>
264 L: qemu-riscv@nongnu.org
265 S: Maintained
266 F: target/riscv/
267 F: hw/riscv/
268 F: include/hw/riscv/
269 F: linux-user/host/riscv32/
270 F: linux-user/host/riscv64/
272 S390
273 M: Richard Henderson <rth@twiddle.net>
274 M: David Hildenbrand <david@redhat.com>
275 S: Maintained
276 F: target/s390x/
277 F: hw/s390x/
278 F: disas/s390.c
279 F: tests/tcg/s390x/
280 L: qemu-s390x@nongnu.org
283 M: Aurelien Jarno <aurelien@aurel32.net>
284 S: Odd Fixes
285 F: target/sh4/
286 F: hw/sh4/
287 F: disas/sh4.c
288 F: include/hw/sh4/
290 SPARC
291 M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
292 M: Artyom Tarasenko <atar4qemu@gmail.com>
293 S: Maintained
294 F: target/sparc/
295 F: hw/sparc/
296 F: hw/sparc64/
297 F: include/hw/sparc/sparc64.h
298 F: disas/sparc.c
300 UniCore32
301 M: Guan Xuetao <gxt@mprc.pku.edu.cn>
302 S: Maintained
303 F: target/unicore32/
304 F: hw/unicore32/
305 F: include/hw/unicore32/
308 M: Paolo Bonzini <pbonzini@redhat.com>
309 M: Richard Henderson <rth@twiddle.net>
310 M: Eduardo Habkost <ehabkost@redhat.com>
311 S: Maintained
312 F: target/i386/
313 F: tests/tcg/i386/
314 F: tests/tcg/x86_64/
315 F: hw/i386/
316 F: disas/i386.c
317 F: docs/qemu-cpu-models.texi
318 T: git https://github.com/ehabkost/qemu.git x86-next
320 Xtensa
321 M: Max Filippov <jcmvbkbc@gmail.com>
322 W: http://wiki.osll.ru/doku.php?id=etc:users:jcmvbkbc:qemu-target-xtensa
323 S: Maintained
324 F: target/xtensa/
325 F: hw/xtensa/
326 F: tests/tcg/xtensa/
327 F: disas/xtensa.c
328 F: include/hw/xtensa/xtensa-isa.h
329 F: default-configs/xtensa*.mak
331 TriCore
332 M: Bastian Koppelmann <kbastian@mail.uni-paderborn.de>
333 S: Maintained
334 F: target/tricore/
335 F: hw/tricore/
336 F: include/hw/tricore/
338 Multiarch Linux User Tests
339 M: Alex Bennée <alex.bennee@linaro.org>
340 F: tests/tcg/multiarch/
342 Guest CPU Cores (KVM):
343 ----------------------
345 Overall
346 M: Paolo Bonzini <pbonzini@redhat.com>
347 L: kvm@vger.kernel.org
348 S: Supported
349 F: */kvm.*
350 F: accel/kvm/
351 F: accel/stubs/kvm-stub.c
352 F: include/hw/kvm/
353 F: include/sysemu/kvm*.h
354 F: scripts/kvm/kvm_flightrecorder
357 M: Peter Maydell <peter.maydell@linaro.org>
358 L: qemu-arm@nongnu.org
359 S: Maintained
360 F: target/arm/kvm.c
362 MIPS
363 M: James Hogan <jhogan@kernel.org>
364 R: Stefan Markovic <smarkovic@wavecomp.com>
365 S: Maintained
366 F: target/mips/kvm.c
369 M: David Gibson <david@gibson.dropbear.id.au>
370 S: Maintained
371 F: target/ppc/kvm.c
373 S390
374 M: Halil Pasic <pasic@linux.ibm.com>
375 M: Cornelia Huck <cohuck@redhat.com>
376 M: Christian Borntraeger <borntraeger@de.ibm.com>
377 S: Maintained
378 F: target/s390x/kvm.c
379 F: target/s390x/kvm_s390x.h
380 F: target/s390x/kvm-stub.c
381 F: target/s390x/ioinst.[ch]
382 F: target/s390x/machine.c
383 F: target/s390x/sigp.c
384 F: hw/intc/s390_flic.c
385 F: hw/intc/s390_flic_kvm.c
386 F: include/hw/s390x/s390_flic.h
387 F: gdb-xml/s390*.xml
388 T: git https://github.com/cohuck/qemu.git s390-next
389 T: git https://github.com/borntraeger/qemu.git s390-next
390 L: qemu-s390x@nongnu.org
393 M: Paolo Bonzini <pbonzini@redhat.com>
394 M: Marcelo Tosatti <mtosatti@redhat.com>
395 L: kvm@vger.kernel.org
396 S: Supported
397 F: target/i386/kvm.c
398 F: scripts/kvm/vmxcap
400 Guest CPU Cores (Xen):
401 ----------------------
404 M: Stefano Stabellini <sstabellini@kernel.org>
405 M: Anthony Perard <anthony.perard@citrix.com>
406 L: xen-devel@lists.xenproject.org
407 S: Supported
408 F: */xen*
409 F: hw/9pfs/xen-9p-backend.c
410 F: hw/char/xen_console.c
411 F: hw/display/xenfb.c
412 F: hw/net/xen_nic.c
413 F: hw/block/xen_*
414 F: hw/xen/
415 F: hw/xenpv/
416 F: hw/i386/xen/
417 F: include/hw/xen/
418 F: include/sysemu/xen-mapcache.h
420 Hosts:
421 ------
423 LINUX
424 L: qemu-devel@nongnu.org
425 S: Maintained
426 F: linux-*
427 F: linux-headers/
429 POSIX
430 L: qemu-devel@nongnu.org
431 S: Maintained
432 F: *posix*
434 NETBSD
435 L: qemu-devel@nongnu.org
436 M: Kamil Rytarowski <kamil@netbsd.org>
437 S: Maintained
438 K: ^Subject:.*(?i)NetBSD
440 OPENBSD
441 L: qemu-devel@nongnu.org
442 M: Brad Smith <brad@comstyle.com>
443 S: Maintained
444 K: ^Subject:.*(?i)OpenBSD
446 W32, W64
447 L: qemu-devel@nongnu.org
448 M: Stefan Weil <sw@weilnetz.de>
449 S: Maintained
450 F: *win32*
451 F: */*win32*
452 F: include/*/*win32*
453 X: qga/*win32*
454 F: qemu.nsi
456 Alpha Machines
457 M: Richard Henderson <rth@twiddle.net>
458 S: Maintained
459 F: hw/alpha/
460 F: hw/isa/smc37c669-superio.c
462 ARM Machines
463 ------------
464 Allwinner-a10
465 M: Beniamino Galvani <b.galvani@gmail.com>
466 M: Peter Maydell <peter.maydell@linaro.org>
467 L: qemu-arm@nongnu.org
468 S: Odd Fixes
469 F: hw/*/allwinner*
470 F: include/hw/*/allwinner*
471 F: hw/arm/cubieboard.c
473 ARM PrimeCell and CMSDK devices
474 M: Peter Maydell <peter.maydell@linaro.org>
475 L: qemu-arm@nongnu.org
476 S: Maintained
477 F: hw/char/pl011.c
478 F: include/hw/char/pl011.h
479 F: hw/display/pl110*
480 F: hw/dma/pl080.c
481 F: include/hw/dma/pl080.h
482 F: hw/dma/pl330.c
483 F: hw/gpio/pl061.c
484 F: hw/input/pl050.c
485 F: hw/intc/pl190.c
486 F: hw/sd/pl181.c
487 F: hw/ssi/pl022.c
488 F: include/hw/ssi/pl022.h
489 F: hw/timer/pl031.c
490 F: include/hw/arm/primecell.h
491 F: hw/timer/cmsdk-apb-timer.c
492 F: include/hw/timer/cmsdk-apb-timer.h
493 F: hw/timer/cmsdk-apb-dualtimer.c
494 F: include/hw/timer/cmsdk-apb-dualtimer.h
495 F: hw/char/cmsdk-apb-uart.c
496 F: include/hw/char/cmsdk-apb-uart.h
497 F: hw/watchdog/cmsdk-apb-watchdog.c
498 F: include/hw/watchdog/cmsdk-apb-watchdog.h
499 F: hw/misc/tz-ppc.c
500 F: include/hw/misc/tz-ppc.h
501 F: hw/misc/tz-mpc.c
502 F: include/hw/misc/tz-mpc.h
503 F: hw/misc/tz-msc.c
504 F: include/hw/misc/tz-msc.h
506 ARM cores
507 M: Peter Maydell <peter.maydell@linaro.org>
508 L: qemu-arm@nongnu.org
509 S: Maintained
510 F: hw/intc/arm*
511 F: hw/intc/gic_internal.h
512 F: hw/misc/a9scu.c
513 F: hw/misc/arm11scu.c
514 F: hw/timer/a9gtimer*
515 F: hw/timer/arm*
516 F: include/hw/arm/arm*.h
517 F: include/hw/intc/arm*
518 F: include/hw/misc/a9scu.h
519 F: include/hw/misc/arm11scu.h
520 F: include/hw/timer/a9gtimer.h
521 F: include/hw/timer/arm_mptimer.h
522 F: include/hw/timer/armv7m_systick.h
523 F: tests/test-arm-mptimer.c
525 Exynos
526 M: Igor Mitsyanko <i.mitsyanko@gmail.com>
527 M: Peter Maydell <peter.maydell@linaro.org>
528 L: qemu-arm@nongnu.org
529 S: Odd Fixes
530 F: hw/*/exynos*
531 F: include/hw/arm/exynos4210.h
533 Calxeda Highbank
534 M: Rob Herring <robh@kernel.org>
535 M: Peter Maydell <peter.maydell@linaro.org>
536 L: qemu-arm@nongnu.org
537 S: Odd Fixes
538 F: hw/arm/highbank.c
539 F: hw/net/xgmac.c
541 Canon DIGIC
542 M: Antony Pavlov <antonynpavlov@gmail.com>
543 M: Peter Maydell <peter.maydell@linaro.org>
544 L: qemu-arm@nongnu.org
545 S: Odd Fixes
546 F: include/hw/arm/digic.h
547 F: hw/*/digic*
548 F: include/hw/*/digic*
550 Gumstix
551 M: Peter Maydell <peter.maydell@linaro.org>
552 R: Philippe Mathieu-Daudé <f4bug@amsat.org>
553 L: qemu-devel@nongnu.org
554 L: qemu-arm@nongnu.org
555 S: Odd Fixes
556 F: hw/arm/gumstix.c
558 i.MX25 PDK
559 M: Peter Maydell <peter.maydell@linaro.org>
560 R: Jean-Christophe Dubois <jcd@tribudubois.net>
561 L: qemu-arm@nongnu.org
562 S: Odd Fixes
563 F: hw/arm/fsl-imx25.c
564 F: hw/arm/imx25_pdk.c
565 F: hw/misc/imx25_ccm.c
566 F: include/hw/arm/fsl-imx25.h
567 F: include/hw/misc/imx25_ccm.h
569 i.MX31 (kzm)
570 M: Peter Chubb <peter.chubb@nicta.com.au>
571 M: Peter Maydell <peter.maydell@linaro.org>
572 L: qemu-arm@nongnu.org
573 S: Odd Fixes
574 F: hw/arm/kzm.c
575 F: hw/*/imx_*
576 F: hw/*/*imx31*
577 F: include/hw/*/imx_*
578 F: include/hw/*/*imx31*
580 Integrator CP
581 M: Peter Maydell <peter.maydell@linaro.org>
582 L: qemu-arm@nongnu.org
583 S: Maintained
584 F: hw/arm/integratorcp.c
585 F: hw/misc/arm_integrator_debug.c
587 MCIMX6UL EVK / i.MX6ul
588 M: Peter Maydell <peter.maydell@linaro.org>
589 R: Jean-Christophe Dubois <jcd@tribudubois.net>
590 L: qemu-arm@nongnu.org
591 S: Odd Fixes
592 F: hw/arm/mcimx6ul-evk.c
593 F: hw/arm/fsl-imx6ul.c
594 F: hw/misc/imx6ul_ccm.c
595 F: include/hw/arm/fsl-imx6ul.h
596 F: include/hw/misc/imx6ul_ccm.h
598 MCIMX7D SABRE / i.MX7
599 M: Peter Maydell <peter.maydell@linaro.org>
600 R: Andrey Smirnov <andrew.smirnov@gmail.com>
601 L: qemu-arm@nongnu.org
602 S: Odd Fixes
603 F: hw/arm/mcimx7d-sabre.c
604 F: hw/arm/fsl-imx7.c
605 F: include/hw/arm/fsl-imx7.h
606 F: hw/pci-host/designware.c
607 F: include/hw/pci-host/designware.h
609 MPS2
610 M: Peter Maydell <peter.maydell@linaro.org>
611 L: qemu-arm@nongnu.org
612 S: Maintained
613 F: hw/arm/mps2.c
614 F: hw/arm/mps2-tz.c
615 F: hw/misc/mps2-*.c
616 F: include/hw/misc/mps2-*.h
617 F: hw/arm/iotkit.c
618 F: include/hw/arm/iotkit.h
619 F: hw/misc/iotkit-secctl.c
620 F: include/hw/misc/iotkit-secctl.h
621 F: hw/misc/iotkit-sysctl.c
622 F: include/hw/misc/iotkit-sysctl.h
623 F: hw/misc/iotkit-sysinfo.c
624 F: include/hw/misc/iotkit-sysinfo.h
626 Musicpal
627 M: Jan Kiszka <jan.kiszka@web.de>
628 M: Peter Maydell <peter.maydell@linaro.org>
629 L: qemu-arm@nongnu.org
630 S: Odd Fixes
631 F: hw/arm/musicpal.c
633 nSeries
634 M: Andrzej Zaborowski <balrogg@gmail.com>
635 M: Peter Maydell <peter.maydell@linaro.org>
636 L: qemu-arm@nongnu.org
637 S: Odd Fixes
638 F: hw/arm/nseries.c
640 Palm
641 M: Andrzej Zaborowski <balrogg@gmail.com>
642 M: Peter Maydell <peter.maydell@linaro.org>
643 L: qemu-arm@nongnu.org
644 S: Odd Fixes
645 F: hw/arm/palm.c
647 Raspberry Pi
648 M: Peter Maydell <peter.maydell@linaro.org>
649 R: Andrew Baumann <Andrew.Baumann@microsoft.com>
650 R: Philippe Mathieu-Daudé <f4bug@amsat.org>
651 L: qemu-arm@nongnu.org
652 S: Odd Fixes
653 F: hw/arm/raspi.c
654 F: hw/arm/raspi_platform.h
655 F: hw/*/bcm283*
656 F: include/hw/arm/raspi*
657 F: include/hw/*/bcm283*
659 Real View
660 M: Peter Maydell <peter.maydell@linaro.org>
661 L: qemu-arm@nongnu.org
662 S: Maintained
663 F: hw/arm/realview*
664 F: hw/cpu/realview_mpcore.c
665 F: hw/intc/realview_gic.c
666 F: include/hw/intc/realview_gic.h
668 PXA2XX
669 M: Andrzej Zaborowski <balrogg@gmail.com>
670 M: Peter Maydell <peter.maydell@linaro.org>
671 L: qemu-arm@nongnu.org
672 S: Odd Fixes
673 F: hw/arm/mainstone.c
674 F: hw/arm/spitz.c
675 F: hw/arm/tosa.c
676 F: hw/arm/z2.c
677 F: hw/*/pxa2xx*
678 F: hw/display/tc6393xb.c
679 F: hw/gpio/max7310.c
680 F: hw/gpio/zaurus.c
681 F: hw/misc/mst_fpga.c
682 F: include/hw/arm/pxa.h
683 F: include/hw/arm/sharpsl.h
685 SABRELITE / i.MX6
686 M: Peter Maydell <peter.maydell@linaro.org>
687 R: Jean-Christophe Dubois <jcd@tribudubois.net>
688 L: qemu-arm@nongnu.org
689 S: Odd Fixes
690 F: hw/arm/sabrelite.c
691 F: hw/arm/fsl-imx6.c
692 F: hw/misc/imx6_src.c
693 F: hw/ssi/imx_spi.c
694 F: include/hw/arm/fsl-imx6.h
695 F: include/hw/misc/imx6_src.h
696 F: include/hw/ssi/imx_spi.h
698 Sharp SL-5500 (Collie) PDA
699 M: Peter Maydell <peter.maydell@linaro.org>
700 L: qemu-arm@nongnu.org
701 S: Odd Fixes
702 F: hw/arm/collie.c
703 F: hw/arm/strongarm*
705 Stellaris
706 M: Peter Maydell <peter.maydell@linaro.org>
707 L: qemu-arm@nongnu.org
708 S: Maintained
709 F: hw/*/stellaris*
711 Versatile Express
712 M: Peter Maydell <peter.maydell@linaro.org>
713 L: qemu-arm@nongnu.org
714 S: Maintained
715 F: hw/arm/vexpress.c
717 Versatile PB
718 M: Peter Maydell <peter.maydell@linaro.org>
719 L: qemu-arm@nongnu.org
720 S: Maintained
721 F: hw/*/versatile*
722 F: hw/misc/arm_sysctl.c
724 Virt
725 M: Peter Maydell <peter.maydell@linaro.org>
726 L: qemu-arm@nongnu.org
727 S: Maintained
728 F: hw/arm/virt*
729 F: include/hw/arm/virt.h
731 Xilinx Zynq
732 M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
733 M: Alistair Francis <alistair@alistair23.me>
734 M: Peter Maydell <peter.maydell@linaro.org>
735 L: qemu-arm@nongnu.org
736 S: Maintained
737 F: hw/*/xilinx_*
738 F: hw/*/cadence_*
739 F: hw/misc/zynq*
740 F: include/hw/misc/zynq*
741 X: hw/ssi/xilinx_*
743 Xilinx ZynqMP
744 M: Alistair Francis <alistair@alistair23.me>
745 M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
746 M: Peter Maydell <peter.maydell@linaro.org>
747 L: qemu-arm@nongnu.org
748 S: Maintained
749 F: hw/*/xlnx*.c
750 F: include/hw/*/xlnx*.h
751 F: include/hw/ssi/xilinx_spips.h
752 F: hw/display/dpcd.c
753 F: include/hw/display/dpcd.h
755 ARM ACPI Subsystem
756 M: Shannon Zhao <shannon.zhaosl@gmail.com>
757 L: qemu-arm@nongnu.org
758 S: Maintained
759 F: hw/arm/virt-acpi-build.c
761 STM32F205
762 M: Alistair Francis <alistair@alistair23.me>
763 M: Peter Maydell <peter.maydell@linaro.org>
764 S: Maintained
765 F: hw/arm/stm32f205_soc.c
766 F: hw/misc/stm32f2xx_syscfg.c
767 F: hw/char/stm32f2xx_usart.c
768 F: hw/timer/stm32f2xx_timer.c
769 F: hw/adc/*
770 F: hw/ssi/stm32f2xx_spi.c
771 F: include/hw/*/stm32*.h
773 Netduino 2
774 M: Alistair Francis <alistair@alistair23.me>
775 M: Peter Maydell <peter.maydell@linaro.org>
776 S: Maintained
777 F: hw/arm/netduino2.c
779 SmartFusion2
780 M: Subbaraya Sundeep <sundeep.lkml@gmail.com>
781 M: Peter Maydell <peter.maydell@linaro.org>
782 S: Maintained
783 F: hw/arm/msf2-soc.c
784 F: hw/misc/msf2-sysreg.c
785 F: hw/timer/mss-timer.c
786 F: hw/ssi/mss-spi.c
787 F: include/hw/arm/msf2-soc.h
788 F: include/hw/misc/msf2-sysreg.h
789 F: include/hw/timer/mss-timer.h
790 F: include/hw/ssi/mss-spi.h
792 Emcraft M2S-FG484
793 M: Subbaraya Sundeep <sundeep.lkml@gmail.com>
794 M: Peter Maydell <peter.maydell@linaro.org>
795 S: Maintained
796 F: hw/arm/msf2-som.c
798 ASPEED BMCs
799 M: Cédric Le Goater <clg@kaod.org>
800 M: Peter Maydell <peter.maydell@linaro.org>
801 R: Andrew Jeffery <andrew@aj.id.au>
802 R: Joel Stanley <joel@jms.id.au>
803 L: qemu-arm@nongnu.org
804 S: Maintained
805 F: hw/*/*aspeed*
806 F: include/hw/*/*aspeed*
807 F: hw/net/ftgmac100.c
808 F: include/hw/net/ftgmac100.h
810 NRF51
811 M: Joel Stanley <joel@jms.id.au>
812 M: Peter Maydell <peter.maydell@linaro.org>
813 L: qemu-arm@nongnu.org
814 S: Maintained
815 F: hw/arm/nrf51_soc.c
816 F: hw/arm/microbit.c
817 F: include/hw/arm/nrf51_soc.h
819 CRIS Machines
820 -------------
821 Axis Dev88
822 M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
823 S: Maintained
824 F: hw/cris/axis_dev88.c
825 F: hw/*/etraxfs_*.c
827 LM32 Machines
828 -------------
829 EVR32 and uclinux BSP
830 M: Michael Walle <michael@walle.cc>
831 S: Maintained
832 F: hw/lm32/lm32_boards.c
834 milkymist
835 M: Michael Walle <michael@walle.cc>
836 S: Maintained
837 F: hw/lm32/milkymist.c
839 M68K Machines
840 -------------
841 an5206
842 M: Thomas Huth <huth@tuxfamily.org>
843 S: Odd Fixes
844 F: hw/m68k/an5206.c
845 F: hw/m68k/mcf5206.c
847 mcf5208
848 M: Thomas Huth <huth@tuxfamily.org>
849 S: Odd Fixes
850 F: hw/m68k/mcf5208.c
851 F: hw/m68k/mcf_intc.c
852 F: hw/char/mcf_uart.c
853 F: hw/net/mcf_fec.c
854 F: include/hw/m68k/mcf*.h
856 MicroBlaze Machines
857 -------------------
858 petalogix_s3adsp1800
859 M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
860 S: Maintained
861 F: hw/microblaze/petalogix_s3adsp1800_mmu.c
862 F: include/hw/char/xilinx_uartlite.h
864 petalogix_ml605
865 M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
866 S: Maintained
867 F: hw/microblaze/petalogix_ml605_mmu.c
869 MIPS Machines
870 -------------
871 Jazz
872 M: Hervé Poussineau <hpoussin@reactos.org>
873 R: Stefan Markovic <smarkovic@wavecomp.com>
874 S: Maintained
875 F: hw/mips/mips_jazz.c
876 F: hw/display/jazz_led.c
877 F: hw/dma/rc4030.c
879 Malta
880 M: Aurelien Jarno <aurelien@aurel32.net>
881 R: Stefan Markovic <smarkovic@wavecomp.com>
882 S: Maintained
883 F: hw/mips/mips_malta.c
885 Mipssim
886 M: Aleksandar Markovic <amarkovic@wavecomp.com>
887 R: Stefan Markovic <smarkovic@wavecomp.com>
888 S: Odd Fixes
889 F: hw/mips/mips_mipssim.c
890 F: hw/net/mipsnet.c
892 R4000
893 M: Aurelien Jarno <aurelien@aurel32.net>
894 R: Stefan Markovic <smarkovic@wavecomp.com>
895 S: Maintained
896 F: hw/mips/mips_r4k.c
898 Fulong 2E
899 M: Aleksandar Markovic <amarkovic@wavecomp.com>
900 R: Stefan Markovic <smarkovic@wavecomp.com>
901 S: Odd Fixes
902 F: hw/mips/mips_fulong2e.c
903 F: hw/isa/vt82c686.c
904 F: hw/pci-host/bonito.c
905 F: include/hw/isa/vt82c686.h
907 Boston
908 M: Paul Burton <pburton@wavecomp.com>
909 R: Stefan Markovic <smarkovic@wavecomp.com>
910 S: Maintained
911 F: hw/core/loader-fit.c
912 F: hw/mips/boston.c
913 F: hw/pci-host/xilinx-pcie.c
914 F: include/hw/pci-host/xilinx-pcie.h
916 OpenRISC Machines
917 -----------------
918 or1k-sim
919 M: Jia Liu <proljc@gmail.com>
920 S: Maintained
921 F: hw/openrisc/openrisc_sim.c
923 PowerPC Machines
924 ----------------
926 M: David Gibson <david@gibson.dropbear.id.au>
927 L: qemu-ppc@nongnu.org
928 S: Odd Fixes
929 F: hw/ppc/ppc405_boards.c
931 Bamboo
932 M: David Gibson <david@gibson.dropbear.id.au>
933 L: qemu-ppc@nongnu.org
934 S: Odd Fixes
935 F: hw/ppc/ppc440_bamboo.c
937 e500
938 M: David Gibson <david@gibson.dropbear.id.au>
939 L: qemu-ppc@nongnu.org
940 S: Odd Fixes
941 F: hw/ppc/e500.[hc]
942 F: hw/ppc/e500plat.c
943 F: include/hw/ppc/ppc_e500.h
944 F: include/hw/pci-host/ppce500.h
945 F: pc-bios/u-boot.e500
947 mpc8544ds
948 M: David Gibson <david@gibson.dropbear.id.au>
949 L: qemu-ppc@nongnu.org
950 S: Odd Fixes
951 F: hw/ppc/mpc8544ds.c
952 F: hw/ppc/mpc8544_guts.c
954 New World
955 M: David Gibson <david@gibson.dropbear.id.au>
956 L: qemu-ppc@nongnu.org
957 S: Odd Fixes
958 F: hw/ppc/mac_newworld.c
959 F: hw/pci-host/uninorth.c
960 F: hw/pci-bridge/dec.[hc]
961 F: hw/misc/macio/
962 F: hw/misc/mos6522.c
963 F: hw/nvram/mac_nvram.c
964 F: include/hw/misc/macio/
965 F: include/hw/misc/mos6522.h
966 F: include/hw/ppc/mac_dbdma.h
967 F: include/hw/pci-host/uninorth.h
969 Old World
970 M: David Gibson <david@gibson.dropbear.id.au>
971 L: qemu-ppc@nongnu.org
972 S: Odd Fixes
973 F: hw/ppc/mac_oldworld.c
974 F: hw/pci-host/grackle.c
975 F: hw/misc/macio/
976 F: hw/intc/heathrow_pic.c
977 F: include/hw/intc/heathrow_pic.h
979 PReP
980 M: Hervé Poussineau <hpoussin@reactos.org>
981 L: qemu-devel@nongnu.org
982 L: qemu-ppc@nongnu.org
983 S: Maintained
984 F: hw/ppc/prep.c
985 F: hw/ppc/prep_systemio.c
986 F: hw/ppc/rs6000_mc.c
987 F: hw/pci-host/prep.[hc]
988 F: hw/isa/i82378.c
989 F: hw/isa/pc87312.c
990 F: hw/dma/i82374.c
991 F: hw/timer/m48t59-isa.c
992 F: include/hw/isa/pc87312.h
993 F: include/hw/timer/m48t59.h
994 F: pc-bios/ppc_rom.bin
996 sPAPR
997 M: David Gibson <david@gibson.dropbear.id.au>
998 L: qemu-ppc@nongnu.org
999 S: Supported
1000 F: hw/*/spapr*
1001 F: include/hw/*/spapr*
1002 F: hw/*/xics*
1003 F: include/hw/*/xics*
1004 F: pc-bios/spapr-rtas/*
1005 F: pc-bios/spapr-rtas.bin
1006 F: pc-bios/slof.bin
1007 F: pc-bios/skiboot.lid
1008 F: docs/specs/ppc-spapr-hcalls.txt
1009 F: docs/specs/ppc-spapr-hotplug.txt
1010 F: tests/spapr*
1011 F: tests/libqos/*spapr*
1012 F: tests/rtas*
1013 F: tests/libqos/rtas*
1015 XIVE
1016 M: David Gibson <david@gibson.dropbear.id.au>
1017 M: Cédric Le Goater <clg@kaod.org>
1018 L: qemu-ppc@nongnu.org
1019 S: Supported
1020 F: hw/*/*xive*
1021 F: include/hw/*/*xive*
1023 virtex_ml507
1024 M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
1025 L: qemu-ppc@nongnu.org
1026 S: Odd Fixes
1027 F: hw/ppc/virtex_ml507.c
1029 sam460ex
1030 M: BALATON Zoltan <balaton@eik.bme.hu>
1031 L: qemu-ppc@nongnu.org
1032 S: Maintained
1033 F: hw/ide/sii3112.c
1034 F: hw/timer/m41t80.c
1036 SH4 Machines
1037 ------------
1039 M: Magnus Damm <magnus.damm@gmail.com>
1040 S: Maintained
1041 F: hw/sh4/r2d.c
1042 F: hw/intc/sh_intc.c
1043 F: hw/timer/sh_timer.c
1045 Shix
1046 M: Magnus Damm <magnus.damm@gmail.com>
1047 S: Odd Fixes
1048 F: hw/sh4/shix.c
1050 SPARC Machines
1051 --------------
1052 Sun4m
1053 M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
1054 S: Maintained
1055 F: hw/sparc/sun4m.c
1056 F: hw/sparc/sun4m_iommu.c
1057 F: hw/dma/sparc32_dma.c
1058 F: hw/misc/eccmemctl.c
1059 F: hw/misc/slavio_misc.c
1060 F: include/hw/sparc/sparc32_dma.h
1061 F: pc-bios/openbios-sparc32
1062 F: include/hw/sparc/sun4m_iommu.h
1064 Sun4u
1065 M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
1066 S: Maintained
1067 F: hw/sparc64/sun4u.c
1068 F: pc-bios/openbios-sparc64
1069 F: hw/pci-host/sabre.c
1070 F: include/hw/pci-host/sabre.h
1072 Sun4v
1073 M: Artyom Tarasenko <atar4qemu@gmail.com>
1074 S: Maintained
1075 F: hw/sparc64/niagara.c
1076 F: hw/timer/sun4v-rtc.c
1077 F: include/hw/timer/sun4v-rtc.h
1079 Leon3
1080 M: Fabien Chouteau <chouteau@adacore.com>
1081 S: Maintained
1082 F: hw/sparc/leon3.c
1083 F: hw/*/grlib*
1084 F: include/hw/sparc/grlib.h
1086 S390 Machines
1087 -------------
1088 S390 Virtio-ccw
1089 M: Cornelia Huck <cohuck@redhat.com>
1090 M: Halil Pasic <pasic@linux.ibm.com>
1091 M: Christian Borntraeger <borntraeger@de.ibm.com>
1092 S: Supported
1093 F: hw/char/sclp*.[hc]
1094 F: hw/char/terminal3270.c
1095 F: hw/s390x/
1096 F: include/hw/s390x/
1097 F: hw/watchdog/wdt_diag288.c
1098 F: include/hw/watchdog/wdt_diag288.h
1099 F: default-configs/s390x-softmmu.mak
1100 T: git https://github.com/cohuck/qemu.git s390-next
1101 T: git https://github.com/borntraeger/qemu.git s390-next
1102 L: qemu-s390x@nongnu.org
1104 S390-ccw boot
1105 M: Christian Borntraeger <borntraeger@de.ibm.com>
1106 M: Thomas Huth <thuth@redhat.com>
1107 S: Supported
1108 F: hw/s390x/ipl.*
1109 F: pc-bios/s390-ccw/
1110 F: pc-bios/s390-ccw.img
1111 T: git https://github.com/borntraeger/qemu.git s390-next
1112 L: qemu-s390x@nongnu.org
1114 S390 PCI
1115 M: Collin Walling <walling@linux.ibm.com>
1116 S: Supported
1117 F: hw/s390x/s390-pci*
1118 L: qemu-s390x@nongnu.org
1120 UniCore32 Machines
1121 -------------
1122 PKUnity-3 SoC initramfs-with-busybox
1123 M: Guan Xuetao <gxt@mprc.pku.edu.cn>
1124 S: Maintained
1125 F: hw/*/puv3*
1126 F: hw/unicore32/
1128 X86 Machines
1129 ------------
1131 M: Michael S. Tsirkin <mst@redhat.com>
1132 M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
1133 S: Supported
1134 F: include/hw/i386/
1135 F: hw/i386/
1136 F: hw/pci-host/piix.c
1137 F: hw/pci-host/q35.c
1138 F: hw/pci-host/pam.c
1139 F: include/hw/pci-host/q35.h
1140 F: include/hw/pci-host/pam.h
1141 F: hw/isa/piix4.c
1142 F: hw/isa/lpc_ich9.c
1143 F: hw/i2c/smbus_ich9.c
1144 F: hw/acpi/piix4.c
1145 F: hw/acpi/ich9.c
1146 F: include/hw/acpi/ich9.h
1147 F: include/hw/acpi/piix4.h
1148 F: hw/misc/sga.c
1150 PC Chipset
1151 M: Michael S. Tsirkin <mst@redhat.com>
1152 M: Paolo Bonzini <pbonzini@redhat.com>
1153 S: Supported
1154 F: hw/char/debugcon.c
1155 F: hw/char/parallel*
1156 F: hw/char/serial*
1157 F: hw/dma/i8257*
1158 F: hw/i2c/pm_smbus.c
1159 F: hw/input/pckbd.c
1160 F: hw/intc/apic*
1161 F: hw/intc/ioapic*
1162 F: hw/intc/i8259*
1163 F: hw/isa/isa-superio.c
1164 F: hw/misc/debugexit.c
1165 F: hw/misc/pc-testdev.c
1166 F: hw/timer/hpet*
1167 F: hw/timer/i8254*
1168 F: hw/timer/mc146818rtc*
1169 F: hw/watchdog/wdt_ib700.c
1170 F: hw/watchdog/wdt_i6300esb.c
1171 F: include/hw/display/vga.h
1172 F: include/hw/char/parallel.h
1173 F: include/hw/dma/i8257.h
1174 F: include/hw/i2c/pm_smbus.h
1175 F: include/hw/input/i8042.h
1176 F: include/hw/isa/i8259_internal.h
1177 F: include/hw/isa/superio.h
1178 F: include/hw/timer/hpet.h
1179 F: include/hw/timer/i8254*
1180 F: include/hw/timer/mc146818rtc*
1182 Machine core
1183 M: Eduardo Habkost <ehabkost@redhat.com>
1184 M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
1185 S: Supported
1186 F: hw/core/machine.c
1187 F: hw/core/null-machine.c
1188 F: include/hw/boards.h
1189 T: git https://github.com/ehabkost/qemu.git machine-next
1191 Xtensa Machines
1192 ---------------
1194 M: Max Filippov <jcmvbkbc@gmail.com>
1195 S: Maintained
1196 F: hw/xtensa/sim.c
1198 XTFPGA (LX60, LX200, ML605, KC705)
1199 M: Max Filippov <jcmvbkbc@gmail.com>
1200 S: Maintained
1201 F: hw/xtensa/xtfpga.c
1202 F: hw/net/opencores_eth.c
1204 Devices
1205 -------
1207 M: Jiri Slaby <jslaby@suse.cz>
1208 S: Maintained
1209 F: hw/misc/edu.c
1212 M: John Snow <jsnow@redhat.com>
1213 L: qemu-block@nongnu.org
1214 S: Supported
1215 F: include/hw/ide.h
1216 F: include/hw/ide/
1217 F: hw/ide/
1218 F: hw/block/block.c
1219 F: hw/block/cdrom.c
1220 F: hw/block/hd-geometry.c
1221 F: tests/ide-test.c
1222 F: tests/ahci-test.c
1223 F: tests/cdrom-test.c
1224 F: tests/libqos/ahci*
1225 T: git https://github.com/jnsnow/qemu.git ide
1227 IPMI
1228 M: Corey Minyard <minyard@acm.org>
1229 S: Maintained
1230 F: include/hw/ipmi/*
1231 F: hw/ipmi/*
1232 F: hw/smbios/smbios_type_38.c
1233 F: tests/ipmi*
1234 T: git https://github.com/cminyard/qemu.git master-ipmi-rebase
1236 Floppy
1237 M: John Snow <jsnow@redhat.com>
1238 L: qemu-block@nongnu.org
1239 S: Supported
1240 F: hw/block/fdc.c
1241 F: include/hw/block/fdc.h
1242 F: tests/fdc-test.c
1243 T: git https://github.com/jnsnow/qemu.git ide
1245 OMAP
1246 M: Peter Maydell <peter.maydell@linaro.org>
1247 S: Maintained
1248 F: hw/*/omap*
1249 F: include/hw/arm/omap.h
1251 IPack
1252 M: Alberto Garcia <berto@igalia.com>
1253 S: Odd Fixes
1254 F: hw/char/ipoctal232.c
1255 F: hw/ipack/
1258 M: Michael S. Tsirkin <mst@redhat.com>
1259 M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
1260 S: Supported
1261 F: include/hw/pci/*
1262 F: hw/misc/pci-testdev.c
1263 F: hw/pci/*
1264 F: hw/pci-bridge/*
1265 F: docs/pci*
1266 F: docs/specs/*pci*
1267 F: default-configs/pci.mak
1269 ACPI/SMBIOS
1270 M: Michael S. Tsirkin <mst@redhat.com>
1271 M: Igor Mammedov <imammedo@redhat.com>
1272 S: Supported
1273 F: include/hw/acpi/*
1274 F: include/hw/firmware/smbios.h
1275 F: hw/mem/*
1276 F: hw/acpi/*
1277 F: hw/smbios/*
1278 F: hw/i386/acpi-build.[hc]
1279 F: hw/arm/virt-acpi-build.c
1280 F: tests/bios-tables-test.c
1281 F: tests/acpi-utils.[hc]
1282 F: tests/data/acpi/
1284 ppc4xx
1285 M: David Gibson <david@gibson.dropbear.id.au>
1286 L: qemu-ppc@nongnu.org
1287 S: Odd Fixes
1288 F: hw/ppc/ppc4*.c
1289 F: hw/i2c/ppc4xx_i2c.c
1290 F: include/hw/ppc/ppc4xx.h
1291 F: include/hw/i2c/ppc4xx_i2c.h
1293 ppce500
1294 M: David Gibson <david@gibson.dropbear.id.au>
1295 L: qemu-ppc@nongnu.org
1296 S: Odd Fixes
1297 F: hw/ppc/e500*
1298 F: hw/pci-host/ppce500.c
1299 F: hw/net/fsl_etsec/
1301 Character devices
1302 M: Marc-André Lureau <marcandre.lureau@redhat.com>
1303 R: Paolo Bonzini <pbonzini@redhat.com>
1304 S: Odd Fixes
1305 F: hw/char/
1307 Network devices
1308 M: Jason Wang <jasowang@redhat.com>
1309 S: Odd Fixes
1310 F: hw/net/
1311 F: include/hw/net/
1312 F: tests/virtio-net-test.c
1313 T: git https://github.com/jasowang/qemu.git net
1315 SCSI
1316 M: Paolo Bonzini <pbonzini@redhat.com>
1317 R: Fam Zheng <fam@euphon.net>
1318 S: Supported
1319 F: include/hw/scsi/*
1320 F: hw/scsi/*
1321 F: tests/virtio-scsi-test.c
1322 T: git https://github.com/bonzini/qemu.git scsi-next
1325 M: Peter Crosthwaite <crosthwaite.peter@gmail.com>
1326 M: Alistair Francis <alistair@alistair23.me>
1327 S: Maintained
1328 F: hw/ssi/*
1329 F: hw/block/m25p80.c
1330 F: include/hw/ssi/ssi.h
1331 X: hw/ssi/xilinx_*
1332 F: tests/m25p80-test.c
1334 Xilinx SPI
1335 M: Alistair Francis <alistair@alistair23.me>
1336 M: Peter Crosthwaite <crosthwaite.peter@gmail.com>
1337 S: Maintained
1338 F: hw/ssi/xilinx_*
1340 SD (Secure Card)
1341 M: Philippe Mathieu-Daudé <f4bug@amsat.org>
1342 S: Odd Fixes
1343 F: include/hw/sd/sd*
1344 F: hw/sd/core.c
1345 F: hw/sd/sd*
1346 F: tests/sd*
1349 M: Gerd Hoffmann <kraxel@redhat.com>
1350 S: Maintained
1351 F: hw/usb/*
1352 F: tests/usb-*-test.c
1353 F: docs/usb2.txt
1354 F: docs/usb-storage.txt
1355 F: include/hw/usb.h
1356 F: include/hw/usb/
1357 F: default-configs/usb.mak
1359 USB (serial adapter)
1360 M: Gerd Hoffmann <kraxel@redhat.com>
1361 M: Samuel Thibault <samuel.thibault@ens-lyon.org>
1362 S: Maintained
1363 F: hw/usb/dev-serial.c
1365 VFIO
1366 M: Alex Williamson <alex.williamson@redhat.com>
1367 S: Supported
1368 F: hw/vfio/*
1369 F: include/hw/vfio/
1371 vfio-ccw
1372 M: Cornelia Huck <cohuck@redhat.com>
1373 M: Eric Farman <farman@linux.ibm.com>
1374 M: Farhan Ali <alifm@linux.ibm.com>
1375 S: Supported
1376 F: hw/vfio/ccw.c
1377 F: hw/s390x/s390-ccw.c
1378 F: include/hw/s390x/s390-ccw.h
1379 T: git https://github.com/cohuck/qemu.git s390-next
1380 L: qemu-s390x@nongnu.org
1382 vfio-ap
1383 M: Christian Borntraeger <borntraeger@de.ibm.com>
1384 M: Tony Krowiak <akrowiak@linux.ibm.com>
1385 M: Halil Pasic <pasic@linux.ibm.com>
1386 M: Pierre Morel <pmorel@linux.ibm.com>
1387 S: Supported
1388 F: hw/s390x/ap-device.c
1389 F: hw/s390x/ap-bridge.c
1390 F: include/hw/s390x/ap-device.h
1391 F: include/hw/s390x/ap-bridge.h
1392 F: hw/vfio/ap.c
1393 F: docs/vfio-ap.txt
1394 L: qemu-s390x@nongnu.org
1396 vhost
1397 M: Michael S. Tsirkin <mst@redhat.com>
1398 S: Supported
1399 F: hw/*/*vhost*
1400 F: docs/interop/vhost-user.txt
1401 F: contrib/vhost-user-*/
1403 virtio
1404 M: Michael S. Tsirkin <mst@redhat.com>
1405 S: Supported
1406 F: hw/*/virtio*
1407 F: hw/virtio/Makefile.objs
1408 F: hw/virtio/trace-events
1409 F: net/vhost-user.c
1410 F: include/hw/virtio/
1411 F: tests/virtio-balloon-test.c
1413 virtio-9p
1414 M: Greg Kurz <groug@kaod.org>
1415 S: Supported
1416 F: hw/9pfs/
1417 F: fsdev/
1418 F: tests/virtio-9p-test.c
1419 T: git https://github.com/gkurz/qemu.git 9p-next
1421 virtio-blk
1422 M: Stefan Hajnoczi <stefanha@redhat.com>
1423 L: qemu-block@nongnu.org
1424 S: Supported
1425 F: hw/block/virtio-blk.c
1426 F: hw/block/dataplane/*
1427 F: tests/virtio-blk-test.c
1428 T: git https://github.com/stefanha/qemu.git block
1430 virtio-ccw
1431 M: Cornelia Huck <cohuck@redhat.com>
1432 M: Halil Pasic <pasic@linux.ibm.com>
1433 S: Supported
1434 F: hw/s390x/virtio-ccw*.[hc]
1435 F: hw/s390x/vhost-vsock-ccw.c
1436 T: git https://github.com/cohuck/qemu.git s390-next
1437 T: git https://github.com/borntraeger/qemu.git s390-next
1438 L: qemu-s390x@nongnu.org
1440 virtio-input
1441 M: Gerd Hoffmann <kraxel@redhat.com>
1442 S: Maintained
1443 F: hw/input/virtio-input*.c
1444 F: include/hw/virtio/virtio-input.h
1446 virtio-serial
1447 M: Amit Shah <amit@kernel.org>
1448 S: Supported
1449 F: hw/char/virtio-serial-bus.c
1450 F: hw/char/virtio-console.c
1451 F: include/hw/virtio/virtio-serial.h
1452 F: tests/virtio-console-test.c
1453 F: tests/virtio-serial-test.c
1455 virtio-rng
1456 M: Amit Shah <amit@kernel.org>
1457 S: Supported
1458 F: hw/virtio/virtio-rng.c
1459 F: include/hw/virtio/virtio-rng.h
1460 F: include/sysemu/rng*.h
1461 F: backends/rng*.c
1462 F: tests/virtio-rng-test.c
1464 virtio-crypto
1465 M: Gonglei <arei.gonglei@huawei.com>
1466 S: Supported
1467 F: hw/virtio/virtio-crypto.c
1468 F: hw/virtio/virtio-crypto-pci.c
1469 F: include/hw/virtio/virtio-crypto.h
1471 nvme
1472 M: Keith Busch <keith.busch@intel.com>
1473 L: qemu-block@nongnu.org
1474 S: Supported
1475 F: hw/block/nvme*
1476 F: tests/nvme-test.c
1478 megasas
1479 M: Hannes Reinecke <hare@suse.com>
1480 L: qemu-block@nongnu.org
1481 S: Supported
1482 F: hw/scsi/megasas.c
1483 F: hw/scsi/mfi.h
1484 F: tests/megasas-test.c
1486 Network packet abstractions
1487 M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
1488 S: Maintained
1489 F: include/net/eth.h
1490 F: net/eth.c
1491 F: hw/net/net_rx_pkt*
1492 F: hw/net/net_tx_pkt*
1494 Vmware
1495 M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
1496 S: Maintained
1497 F: hw/net/vmxnet*
1498 F: hw/scsi/vmw_pvscsi*
1499 F: tests/vmxnet3-test.c
1501 Rocker
1502 M: Jiri Pirko <jiri@resnulli.us>
1503 S: Maintained
1504 F: hw/net/rocker/
1505 F: tests/rocker/
1506 F: docs/specs/rocker.txt
1508 NVDIMM
1509 M: Xiao Guangrong <xiaoguangrong.eric@gmail.com>
1510 S: Maintained
1511 F: hw/acpi/nvdimm.c
1512 F: hw/mem/nvdimm.c
1513 F: include/hw/mem/nvdimm.h
1514 F: docs/nvdimm.txt
1516 e1000x
1517 M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
1518 S: Maintained
1519 F: hw/net/e1000x*
1521 e1000e
1522 M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
1523 S: Maintained
1524 F: hw/net/e1000e*
1526 eepro100
1527 M: Stefan Weil <sw@weilnetz.de>
1528 S: Maintained
1529 F: hw/net/eepro100.c
1531 Generic Loader
1532 M: Alistair Francis <alistair@alistair23.me>
1533 S: Maintained
1534 F: hw/core/generic-loader.c
1535 F: include/hw/core/generic-loader.h
1536 F: docs/generic-loader.txt
1538 Intel Hexadecimal Object File Loader
1539 M: Su Hang <suhang16@mails.ucas.ac.cn>
1540 S: Maintained
1541 F: tests/hexloader-test.c
1542 F: tests/data/hex-loader/test.hex
1544 CHRP NVRAM
1545 M: Thomas Huth <thuth@redhat.com>
1546 S: Maintained
1547 F: hw/nvram/chrp_nvram.c
1548 F: include/hw/nvram/chrp_nvram.h
1549 F: tests/prom-env-test.c
1551 VM Generation ID
1552 M: Ben Warren <ben@skyportsystems.com>
1553 S: Maintained
1554 F: hw/acpi/vmgenid.c
1555 F: include/hw/acpi/vmgenid.h
1556 F: docs/specs/vmgenid.txt
1557 F: tests/vmgenid-test.c
1558 F: stubs/vmgenid.c
1560 Unimplemented device
1561 M: Peter Maydell <peter.maydell@linaro.org>
1562 R: Philippe Mathieu-Daudé <f4bug@amsat.org>
1563 S: Maintained
1564 F: include/hw/misc/unimp.h
1565 F: hw/misc/unimp.c
1567 Standard VGA
1568 M: Gerd Hoffmann <kraxel@redhat.com>
1569 S: Maintained
1570 F: hw/display/vga*
1571 F: hw/display/bochs-display.c
1572 F: include/hw/display/vga.h
1573 F: include/hw/display/bochs-vbe.h
1575 ramfb
1576 M: Gerd Hoffmann <kraxel@redhat.com>
1577 S: Maintained
1578 F: hw/display/ramfb*.c
1579 F: include/hw/display/ramfb.h
1581 virtio-gpu
1582 M: Gerd Hoffmann <kraxel@redhat.com>
1583 S: Maintained
1584 F: hw/display/virtio-gpu*
1585 F: hw/display/virtio-vga.c
1586 F: include/hw/virtio/virtio-gpu.h
1588 Cirrus VGA
1589 M: Gerd Hoffmann <kraxel@redhat.com>
1590 S: Odd Fixes
1591 W: https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
1592 F: hw/display/cirrus*
1594 EDID Generator
1595 M: Gerd Hoffmann <kraxel@redhat.com>
1596 S: Maintained
1597 F: hw/display/edid*
1598 F: include/hw/display/edid.h
1599 F: qemu-edid.c
1601 Firmware configuration (fw_cfg)
1602 M: Philippe Mathieu-Daudé <philmd@redhat.com>
1603 R: Laszlo Ersek <lersek@redhat.com>
1604 R: Gerd Hoffmann <kraxel@redhat.com>
1605 S: Supported
1606 F: docs/specs/fw_cfg.txt
1607 F: hw/nvram/fw_cfg.c
1608 F: include/hw/nvram/fw_cfg.h
1609 F: include/standard-headers/linux/qemu_fw_cfg.h
1610 F: tests/libqos/fw_cfg.c
1611 F: tests/fw_cfg-test.c
1612 T: git https://github.com/philmd/qemu.git fw_cfg-next
1614 Subsystems
1615 ----------
1616 Audio
1617 M: Gerd Hoffmann <kraxel@redhat.com>
1618 S: Maintained
1619 F: audio/
1620 F: hw/audio/
1621 F: include/hw/audio/
1622 F: tests/ac97-test.c
1623 F: tests/es1370-test.c
1624 F: tests/intel-hda-test.c
1626 Block layer core
1627 M: Kevin Wolf <kwolf@redhat.com>
1628 M: Max Reitz <mreitz@redhat.com>
1629 L: qemu-block@nongnu.org
1630 S: Supported
1631 F: block*
1632 F: block/
1633 F: hw/block/
1634 F: include/block/
1635 F: qemu-img*
1636 F: qemu-io*
1637 F: tests/qemu-iotests/
1638 F: util/qemu-progress.c
1639 F: qobject/block-qdict.c
1640 F: tests/check-block-qdict.c
1641 T: git https://repo.or.cz/qemu/kevin.git block
1643 Block I/O path
1644 M: Stefan Hajnoczi <stefanha@redhat.com>
1645 M: Fam Zheng <fam@euphon.net>
1646 L: qemu-block@nongnu.org
1647 S: Supported
1648 F: util/async.c
1649 F: util/aio-*.c
1650 F: block/io.c
1651 F: migration/block*
1652 F: include/block/aio.h
1653 F: include/block/aio-wait.h
1654 F: scripts/qemugdb/aio.py
1655 T: git https://github.com/stefanha/qemu.git block
1657 Block SCSI subsystem
1658 M: Paolo Bonzini <pbonzini@redhat.com>
1659 R: Fam Zheng <fam@euphon.net>
1660 L: qemu-block@nongnu.org
1661 S: Supported
1662 F: include/scsi/*
1663 F: scsi/*
1665 Block Jobs
1666 M: Jeff Cody <jcody@redhat.com>
1667 L: qemu-block@nongnu.org
1668 S: Supported
1669 F: blockjob.c
1670 F: include/block/blockjob.h
1671 F: job.c
1672 F: job-qmp.c
1673 F: include/qemu/job.h
1674 F: block/backup.c
1675 F: block/commit.c
1676 F: block/stream.c
1677 F: block/mirror.c
1678 F: qapi/job.json
1679 T: git https://github.com/codyprime/qemu-kvm-jtc.git block
1681 Block QAPI, monitor, command line
1682 M: Markus Armbruster <armbru@redhat.com>
1683 S: Supported
1684 F: blockdev.c
1685 F: block/qapi.c
1686 F: qapi/block*.json
1687 F: qapi/transaction.json
1688 T: git https://repo.or.cz/qemu/armbru.git block-next
1690 Dirty Bitmaps
1691 M: Fam Zheng <fam@euphon.net>
1692 M: John Snow <jsnow@redhat.com>
1693 L: qemu-block@nongnu.org
1694 S: Supported
1695 F: util/hbitmap.c
1696 F: block/dirty-bitmap.c
1697 F: include/qemu/hbitmap.h
1698 F: include/block/dirty-bitmap.h
1699 F: tests/test-hbitmap.c
1700 F: docs/interop/bitmaps.rst
1701 T: git https://github.com/famz/qemu.git bitmaps
1702 T: git https://github.com/jnsnow/qemu.git bitmaps
1704 Character device backends
1705 M: Marc-André Lureau <marcandre.lureau@redhat.com>
1706 R: Paolo Bonzini <pbonzini@redhat.com>
1707 S: Maintained
1708 F: chardev/
1709 F: include/chardev/
1710 F: qapi/char.json
1712 Character Devices (Braille)
1713 M: Samuel Thibault <samuel.thibault@ens-lyon.org>
1714 S: Maintained
1715 F: chardev/baum.c
1717 Command line option argument parsing
1718 M: Markus Armbruster <armbru@redhat.com>
1719 S: Supported
1720 F: include/qemu/option.h
1721 F: tests/test-keyval.c
1722 F: tests/test-qemu-opts.c
1723 F: util/keyval.c
1724 F: util/qemu-option.c
1726 Coverity model
1727 M: Markus Armbruster <armbru@redhat.com>
1728 S: Supported
1729 F: scripts/coverity-model.c
1732 L: qemu-devel@nongnu.org
1733 S: Supported
1734 F: qom/cpu.c
1735 F: include/qom/cpu.h
1737 Device Tree
1738 M: Peter Crosthwaite <crosthwaite.peter@gmail.com>
1739 M: Alexander Graf <agraf@suse.de>
1740 S: Maintained
1741 F: device_tree.c
1742 F: include/sysemu/device_tree.h
1744 Dump
1745 S: Supported
1746 M: Marc-André Lureau <marcandre.lureau@redhat.com>
1747 F: dump.c
1748 F: hw/misc/vmcoreinfo.c
1749 F: include/hw/misc/vmcoreinfo.h
1750 F: include/sysemu/dump-arch.h
1751 F: include/sysemu/dump.h
1752 F: scripts/dump-guest-memory.py
1753 F: stubs/dump.c
1755 Error reporting
1756 M: Markus Armbruster <armbru@redhat.com>
1757 S: Supported
1758 F: include/qapi/error.h
1759 F: include/qemu/error-report.h
1760 F: util/error.c
1761 F: util/qemu-error.c
1763 GDB stub
1764 L: qemu-devel@nongnu.org
1765 S: Odd Fixes
1766 F: gdbstub*
1767 F: gdb-xml/
1769 Memory API
1770 M: Paolo Bonzini <pbonzini@redhat.com>
1771 S: Supported
1772 F: include/exec/ioport.h
1773 F: ioport.c
1774 F: include/exec/memory.h
1775 F: include/exec/ram_addr.h
1776 F: memory.c
1777 F: include/exec/memory-internal.h
1778 F: exec.c
1780 SPICE
1781 M: Gerd Hoffmann <kraxel@redhat.com>
1782 S: Supported
1783 F: include/ui/qemu-spice.h
1784 F: include/ui/spice-display.h
1785 F: ui/spice-*.c
1786 F: audio/spiceaudio.c
1787 F: hw/display/qxl*
1788 F: qapi/ui.json
1789 F: docs/spice-port-fqdn.txt
1791 Graphics
1792 M: Gerd Hoffmann <kraxel@redhat.com>
1793 S: Odd Fixes
1794 F: ui/
1795 F: include/ui/
1796 F: qapi/ui.json
1797 F: util/drm.c
1799 Cocoa graphics
1800 M: Peter Maydell <peter.maydell@linaro.org>
1801 S: Odd Fixes
1802 F: ui/cocoa.m
1804 Main loop
1805 M: Paolo Bonzini <pbonzini@redhat.com>
1806 S: Maintained
1807 F: cpus.c
1808 F: util/main-loop.c
1809 F: util/qemu-timer.c
1810 F: vl.c
1811 F: qapi/run-state.json
1813 Human Monitor (HMP)
1814 M: Dr. David Alan Gilbert <dgilbert@redhat.com>
1815 S: Maintained
1816 F: monitor.c
1817 F: hmp.[ch]
1818 F: hmp-commands*.hx
1819 F: include/monitor/hmp-target.h
1820 F: tests/test-hmp.c
1822 Network device backends
1823 M: Jason Wang <jasowang@redhat.com>
1824 S: Maintained
1825 F: net/
1826 F: include/net/
1827 T: git https://github.com/jasowang/qemu.git net
1828 F: qapi/net.json
1830 Netmap network backend
1831 M: Luigi Rizzo <rizzo@iet.unipi.it>
1832 M: Giuseppe Lettieri <g.lettieri@iet.unipi.it>
1833 M: Vincenzo Maffione <v.maffione@gmail.com>
1834 W: http://info.iet.unipi.it/~luigi/netmap/
1835 S: Maintained
1836 F: net/netmap.c
1838 NUMA
1839 M: Eduardo Habkost <ehabkost@redhat.com>
1840 S: Maintained
1841 F: numa.c
1842 F: include/sysemu/numa.h
1843 T: git https://github.com/ehabkost/qemu.git machine-next
1845 Host Memory Backends
1846 M: Eduardo Habkost <ehabkost@redhat.com>
1847 M: Igor Mammedov <imammedo@redhat.com>
1848 S: Maintained
1849 F: backends/hostmem*.c
1850 F: include/sysemu/hostmem.h
1851 T: git https://github.com/ehabkost/qemu.git machine-next
1853 Cryptodev Backends
1854 M: Gonglei <arei.gonglei@huawei.com>
1855 S: Maintained
1856 F: include/sysemu/cryptodev*.h
1857 F: backends/cryptodev*.c
1859 Python scripts
1860 M: Eduardo Habkost <ehabkost@redhat.com>
1861 M: Cleber Rosa <crosa@redhat.com>
1862 S: Odd fixes
1863 F: scripts/qmp/*
1864 F: scripts/*.py
1865 F: tests/*.py
1867 QAPI
1868 M: Markus Armbruster <armbru@redhat.com>
1869 M: Michael Roth <mdroth@linux.vnet.ibm.com>
1870 S: Supported
1871 F: qapi/
1872 X: qapi/*.json
1873 F: include/qapi/
1874 X: include/qapi/qmp/
1875 F: include/qapi/qmp/dispatch.h
1876 F: tests/qapi-schema/
1877 F: tests/test-*-visitor.c
1878 F: tests/test-qapi-*.c
1879 F: tests/test-qmp-*.c
1880 F: tests/test-visitor-serialization.c
1881 F: scripts/qapi-gen.py
1882 F: scripts/qapi/*
1883 F: docs/devel/qapi*
1884 T: git https://repo.or.cz/qemu/armbru.git qapi-next
1886 QAPI Schema
1887 M: Eric Blake <eblake@redhat.com>
1888 M: Markus Armbruster <armbru@redhat.com>
1889 S: Supported
1890 F: qapi/*.json
1891 T: git https://repo.or.cz/qemu/armbru.git qapi-next
1893 QObject
1894 M: Markus Armbruster <armbru@redhat.com>
1895 S: Supported
1896 F: qobject/
1897 F: include/qapi/qmp/
1898 X: include/qapi/qmp/dispatch.h
1899 F: scripts/coccinelle/qobject.cocci
1900 F: tests/check-qdict.c
1901 F: tests/check-qnum.c
1902 F: tests/check-qjson.c
1903 F: tests/check-qlist.c
1904 F: tests/check-qstring.c
1905 T: git https://repo.or.cz/qemu/armbru.git qapi-next
1907 QEMU Guest Agent
1908 M: Michael Roth <mdroth@linux.vnet.ibm.com>
1909 S: Maintained
1910 F: qga/
1911 F: qemu-ga.texi
1912 F: scripts/qemu-guest-agent/
1913 F: tests/test-qga.c
1914 F: docs/interop/qemu-ga-ref.texi
1915 T: git https://github.com/mdroth/qemu.git qga
1918 M: Andreas Färber <afaerber@suse.de>
1919 S: Supported
1920 T: git https://github.com/afaerber/qemu-cpu.git qom-next
1921 F: include/qom/
1922 X: include/qom/cpu.h
1923 F: qom/
1924 X: qom/cpu.c
1925 F: tests/check-qom-interface.c
1926 F: tests/check-qom-proplist.c
1929 M: Markus Armbruster <armbru@redhat.com>
1930 S: Supported
1931 F: qmp.c
1932 F: monitor.c
1933 F: docs/devel/*qmp-*
1934 F: docs/interop/*qmp-*
1935 F: scripts/qmp/
1936 F: tests/qmp-test.c
1937 F: tests/qmp-cmd-test.c
1938 T: git https://repo.or.cz/qemu/armbru.git qapi-next
1940 qtest
1941 M: Thomas Huth <thuth@redhat.com>
1942 M: Laurent Vivier <lvivier@redhat.com>
1943 R: Paolo Bonzini <pbonzini@redhat.com>
1944 S: Maintained
1945 F: qtest.c
1946 F: tests/libqtest.*
1947 F: tests/libqos/
1948 F: tests/*-test.c
1950 Register API
1951 M: Alistair Francis <alistair@alistair23.me>
1952 S: Maintained
1953 F: hw/core/register.c
1954 F: include/hw/register.h
1955 F: include/hw/registerfields.h
1957 SLIRP
1958 M: Samuel Thibault <samuel.thibault@ens-lyon.org>
1959 M: Jan Kiszka <jan.kiszka@siemens.com>
1960 S: Maintained
1961 F: slirp/
1962 F: net/slirp.c
1963 F: include/net/slirp.h
1964 T: git https://people.debian.org/~sthibault/qemu.git slirp
1965 T: git git://git.kiszka.org/qemu.git queues/slirp
1967 Stubs
1968 M: Paolo Bonzini <pbonzini@redhat.com>
1969 S: Maintained
1970 F: stubs/
1972 Tracing
1973 M: Stefan Hajnoczi <stefanha@redhat.com>
1974 S: Maintained
1975 F: trace/
1976 F: trace-events
1977 F: qemu-option-trace.texi
1978 F: scripts/tracetool.py
1979 F: scripts/tracetool/
1980 F: docs/devel/tracing.txt
1981 T: git https://github.com/stefanha/qemu.git tracing
1984 M: Stefan Berger <stefanb@linux.ibm.com>
1985 S: Maintained
1986 F: tpm.c
1987 F: stubs/tpm.c
1988 F: hw/tpm/*
1989 F: include/hw/acpi/tpm.h
1990 F: include/sysemu/tpm*
1991 F: qapi/tpm.json
1992 F: backends/tpm.c
1993 F: tests/*tpm*
1994 T: git https://github.com/stefanberger/qemu-tpm.git tpm-next
1996 Checkpatch
1997 S: Odd Fixes
1998 F: scripts/checkpatch.pl
2000 Migration
2001 M: Juan Quintela <quintela@redhat.com>
2002 M: Dr. David Alan Gilbert <dgilbert@redhat.com>
2003 S: Maintained
2004 F: include/migration/
2005 F: migration/
2006 F: scripts/vmstate-static-checker.py
2007 F: tests/vmstate-static-checker-data/
2008 F: tests/migration-test.c
2009 F: docs/devel/migration.rst
2010 F: qapi/migration.json
2012 Seccomp
2013 M: Eduardo Otubo <otubo@redhat.com>
2014 S: Supported
2015 F: qemu-seccomp.c
2016 F: include/sysemu/seccomp.h
2018 Cryptography
2019 M: Daniel P. Berrange <berrange@redhat.com>
2020 S: Maintained
2021 F: crypto/
2022 F: include/crypto/
2023 F: tests/test-crypto-*
2024 F: tests/benchmark-crypto-*
2025 F: qemu.sasl
2027 Coroutines
2028 M: Stefan Hajnoczi <stefanha@redhat.com>
2029 M: Kevin Wolf <kwolf@redhat.com>
2030 F: util/*coroutine*
2031 F: include/qemu/coroutine*
2032 F: tests/test-coroutine.c
2034 Buffers
2035 M: Daniel P. Berrange <berrange@redhat.com>
2036 S: Odd fixes
2037 F: util/buffer.c
2038 F: include/qemu/buffer.h
2040 I/O Channels
2041 M: Daniel P. Berrange <berrange@redhat.com>
2042 S: Maintained
2043 F: io/
2044 F: include/io/
2045 F: tests/test-io-*
2047 Sockets
2048 M: Daniel P. Berrange <berrange@redhat.com>
2049 M: Gerd Hoffmann <kraxel@redhat.com>
2050 S: Maintained
2051 F: include/qemu/sockets.h
2052 F: util/qemu-sockets.c
2053 F: qapi/sockets.json
2055 Throttling infrastructure
2056 M: Alberto Garcia <berto@igalia.com>
2057 S: Supported
2058 F: block/throttle-groups.c
2059 F: include/block/throttle-groups.h
2060 F: include/qemu/throttle*.h
2061 F: util/throttle.c
2062 F: docs/throttle.txt
2063 F: tests/test-throttle.c
2064 L: qemu-block@nongnu.org
2066 UUID
2067 M: Fam Zheng <fam@euphon.net>
2068 S: Supported
2069 F: util/uuid.c
2070 F: include/qemu/uuid.h
2071 F: tests/test-uuid.c
2073 COLO Framework
2074 M: zhanghailiang <zhang.zhanghailiang@huawei.com>
2075 S: Maintained
2076 F: migration/colo*
2077 F: include/migration/colo.h
2078 F: include/migration/failover.h
2079 F: docs/COLO-FT.txt
2081 COLO Proxy
2082 M: Zhang Chen <zhangckid@gmail.com>
2083 M: Li Zhijian <lizhijian@cn.fujitsu.com>
2084 S: Supported
2085 F: docs/colo-proxy.txt
2086 F: net/colo*
2087 F: net/filter-rewriter.c
2088 F: net/filter-mirror.c
2090 Record/replay
2091 M: Pavel Dovgalyuk <pavel.dovgaluk@ispras.ru>
2092 R: Paolo Bonzini <pbonzini@redhat.com>
2093 W: https://wiki.qemu.org/Features/record-replay
2094 S: Supported
2095 F: replay/*
2096 F: block/blkreplay.c
2097 F: net/filter-replay.c
2098 F: include/sysemu/replay.h
2099 F: docs/replay.txt
2100 F: stubs/replay.c
2102 IOVA Tree
2103 M: Peter Xu <peterx@redhat.com>
2104 S: Maintained
2105 F: include/qemu/iova-tree.h
2106 F: util/iova-tree.c
2108 elf2dmp
2109 M: Viktor Prutyanov <viktor.prutyanov@phystech.edu>
2110 S: Maintained
2111 F: contrib/elf2dmp/
2113 Usermode Emulation
2114 ------------------
2115 Overall
2116 M: Riku Voipio <riku.voipio@iki.fi>
2117 S: Maintained
2118 F: thunk.c
2119 F: accel/tcg/user-exec*.c
2121 BSD user
2122 S: Orphan
2123 F: bsd-user/
2124 F: default-configs/*-bsd-user.mak
2126 Linux user
2127 M: Riku Voipio <riku.voipio@iki.fi>
2128 R: Laurent Vivier <laurent@vivier.eu>
2129 S: Maintained
2130 F: linux-user/
2131 F: default-configs/*-linux-user.mak
2132 F: scripts/qemu-binfmt-conf.sh
2134 Tiny Code Generator (TCG)
2135 -------------------------
2136 Common code
2137 M: Richard Henderson <rth@twiddle.net>
2138 S: Maintained
2139 F: tcg/
2141 AArch64 target
2142 M: Claudio Fontana <claudio.fontana@huawei.com>
2143 M: Claudio Fontana <claudio.fontana@gmail.com>
2144 S: Maintained
2145 L: qemu-arm@nongnu.org
2146 F: tcg/aarch64/
2147 F: disas/arm-a64.cc
2148 F: disas/libvixl/
2150 ARM target
2151 M: Andrzej Zaborowski <balrogg@gmail.com>
2152 S: Maintained
2153 L: qemu-arm@nongnu.org
2154 F: tcg/arm/
2155 F: disas/arm.c
2157 i386 target
2158 L: qemu-devel@nongnu.org
2159 S: Maintained
2160 F: tcg/i386/
2161 F: disas/i386.c
2163 MIPS target
2164 M: Aurelien Jarno <aurelien@aurel32.net>
2165 R: Stefan Markovic <smarkovic@wavecomp.com>
2166 S: Maintained
2167 F: tcg/mips/
2168 F: disas/mips.c
2171 M: Richard Henderson <rth@twiddle.net>
2172 S: Odd Fixes
2173 F: tcg/ppc/
2174 F: disas/ppc.c
2176 RISC-V
2177 M: Michael Clark <mjc@sifive.com>
2178 M: Palmer Dabbelt <palmer@sifive.com>
2179 M: Alistair Francis <Alistair.Francis@wdc.com>
2180 L: qemu-riscv@nongnu.org
2181 S: Maintained
2182 F: tcg/riscv/
2183 F: disas/riscv.c
2185 S390 target
2186 M: Richard Henderson <rth@twiddle.net>
2187 S: Maintained
2188 F: tcg/s390/
2189 F: disas/s390.c
2190 L: qemu-s390x@nongnu.org
2192 SPARC target
2193 S: Odd Fixes
2194 F: tcg/sparc/
2195 F: disas/sparc.c
2197 TCI target
2198 M: Stefan Weil <sw@weilnetz.de>
2199 S: Maintained
2200 F: tcg/tci/
2201 F: tcg/tci.c
2202 F: disas/tci.c
2204 Block drivers
2205 -------------
2206 VMDK
2207 M: Fam Zheng <fam@euphon.net>
2208 L: qemu-block@nongnu.org
2209 S: Supported
2210 F: block/vmdk.c
2213 M: Josh Durgin <jdurgin@redhat.com>
2214 M: Jeff Cody <jcody@redhat.com>
2215 L: qemu-block@nongnu.org
2216 S: Supported
2217 F: block/rbd.c
2218 T: git https://github.com/codyprime/qemu-kvm-jtc.git block
2220 Sheepdog
2221 M: Liu Yuan <namei.unix@gmail.com>
2222 M: Jeff Cody <jcody@redhat.com>
2223 L: qemu-block@nongnu.org
2224 S: Supported
2225 F: block/sheepdog.c
2226 T: git https://github.com/codyprime/qemu-kvm-jtc.git block
2228 VHDX
2229 M: Jeff Cody <jcody@redhat.com>
2230 L: qemu-block@nongnu.org
2231 S: Supported
2232 F: block/vhdx*
2233 T: git https://github.com/codyprime/qemu-kvm-jtc.git block
2236 M: Stefan Weil <sw@weilnetz.de>
2237 L: qemu-block@nongnu.org
2238 S: Maintained
2239 F: block/vdi.c
2241 iSCSI
2242 M: Ronnie Sahlberg <ronniesahlberg@gmail.com>
2243 M: Paolo Bonzini <pbonzini@redhat.com>
2244 M: Peter Lieven <pl@kamp.de>
2245 L: qemu-block@nongnu.org
2246 S: Odd Fixes
2247 F: block/iscsi.c
2248 F: block/iscsi-opts.c
2250 Network Block Device (NBD)
2251 M: Eric Blake <eblake@redhat.com>
2252 L: qemu-block@nongnu.org
2253 S: Maintained
2254 F: block/nbd*
2255 F: nbd/
2256 F: include/block/nbd*
2257 F: qemu-nbd.*
2258 F: blockdev-nbd.c
2259 F: docs/interop/nbd.txt
2260 T: git https://repo.or.cz/qemu/ericb.git nbd
2263 M: Jeff Cody <jcody@redhat.com>
2264 M: Peter Lieven <pl@kamp.de>
2265 L: qemu-block@nongnu.org
2266 S: Maintained
2267 F: block/nfs.c
2268 T: git https://github.com/codyprime/qemu-kvm-jtc.git block
2271 M: Richard W.M. Jones <rjones@redhat.com>
2272 M: Jeff Cody <jcody@redhat.com>
2273 L: qemu-block@nongnu.org
2274 S: Supported
2275 F: block/ssh.c
2276 T: git https://github.com/codyprime/qemu-kvm-jtc.git block
2278 CURL
2279 M: Jeff Cody <jcody@redhat.com>
2280 L: qemu-block@nongnu.org
2281 S: Supported
2282 F: block/curl.c
2283 T: git https://github.com/codyprime/qemu-kvm-jtc.git block
2285 GLUSTER
2286 M: Jeff Cody <jcody@redhat.com>
2287 L: qemu-block@nongnu.org
2288 S: Supported
2289 F: block/gluster.c
2290 T: git https://github.com/codyprime/qemu-kvm-jtc.git block
2292 Null Block Driver
2293 M: Fam Zheng <fam@euphon.net>
2294 L: qemu-block@nongnu.org
2295 S: Supported
2296 F: block/null.c
2298 NVMe Block Driver
2299 M: Fam Zheng <fam@euphon.net>
2300 L: qemu-block@nongnu.org
2301 S: Supported
2302 F: block/nvme*
2304 Bootdevice
2305 M: Gonglei <arei.gonglei@huawei.com>
2306 S: Maintained
2307 F: bootdevice.c
2309 Quorum
2310 M: Alberto Garcia <berto@igalia.com>
2311 S: Supported
2312 F: block/quorum.c
2313 L: qemu-block@nongnu.org
2315 blklogwrites
2316 M: Ari Sundholm <ari@tuxera.com>
2317 L: qemu-block@nongnu.org
2318 S: Supported
2319 F: block/blklogwrites.c
2321 blkverify
2322 M: Stefan Hajnoczi <stefanha@redhat.com>
2323 L: qemu-block@nongnu.org
2324 S: Supported
2325 F: block/blkverify.c
2327 bochs
2328 M: Stefan Hajnoczi <stefanha@redhat.com>
2329 L: qemu-block@nongnu.org
2330 S: Supported
2331 F: block/bochs.c
2333 cloop
2334 M: Stefan Hajnoczi <stefanha@redhat.com>
2335 L: qemu-block@nongnu.org
2336 S: Supported
2337 F: block/cloop.c
2340 M: Stefan Hajnoczi <stefanha@redhat.com>
2341 L: qemu-block@nongnu.org
2342 S: Supported
2343 F: block/dmg.c
2345 parallels
2346 M: Stefan Hajnoczi <stefanha@redhat.com>
2347 M: Denis V. Lunev <den@openvz.org>
2348 L: qemu-block@nongnu.org
2349 S: Supported
2350 F: block/parallels.c
2351 F: docs/interop/parallels.txt
2354 M: Stefan Hajnoczi <stefanha@redhat.com>
2355 L: qemu-block@nongnu.org
2356 S: Supported
2357 F: block/qed.c
2360 M: Kevin Wolf <kwolf@redhat.com>
2361 L: qemu-block@nongnu.org
2362 S: Supported
2363 F: block/linux-aio.c
2364 F: include/block/raw-aio.h
2365 F: block/raw-format.c
2366 F: block/file-posix.c
2367 F: block/file-win32.c
2368 F: block/win32-aio.c
2370 qcow2
2371 M: Kevin Wolf <kwolf@redhat.com>
2372 M: Max Reitz <mreitz@redhat.com>
2373 L: qemu-block@nongnu.org
2374 S: Supported
2375 F: block/qcow2*
2376 F: docs/interop/qcow2.txt
2378 qcow
2379 M: Kevin Wolf <kwolf@redhat.com>
2380 L: qemu-block@nongnu.org
2381 S: Supported
2382 F: block/qcow.c
2384 blkdebug
2385 M: Kevin Wolf <kwolf@redhat.com>
2386 M: Max Reitz <mreitz@redhat.com>
2387 L: qemu-block@nongnu.org
2388 S: Supported
2389 F: block/blkdebug.c
2392 M: Kevin Wolf <kwolf@redhat.com>
2393 L: qemu-block@nongnu.org
2394 S: Supported
2395 F: block/vpc.c
2397 vvfat
2398 M: Kevin Wolf <kwolf@redhat.com>
2399 L: qemu-block@nongnu.org
2400 S: Supported
2401 F: block/vvfat.c
2403 Image format fuzzer
2404 M: Stefan Hajnoczi <stefanha@redhat.com>
2405 L: qemu-block@nongnu.org
2406 S: Supported
2407 F: tests/image-fuzzer/
2409 Replication
2410 M: Wen Congyang <wencongyang2@huawei.com>
2411 M: Xie Changlong <xiechanglong.d@gmail.com>
2412 S: Supported
2413 F: replication*
2414 F: block/replication.c
2415 F: tests/test-replication.c
2416 F: docs/block-replication.txt
2418 PVRDMA
2419 M: Yuval Shaia <yuval.shaia@oracle.com>
2420 M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
2421 S: Maintained
2422 F: hw/rdma/*
2423 F: hw/rdma/vmw/*
2424 F: docs/pvrdma.txt
2425 F: contrib/rdmacm-mux/*
2426 F: qapi/rdma.json
2428 Build and test automation
2429 -------------------------
2430 Build and test automation
2431 M: Alex Bennée <alex.bennee@linaro.org>
2432 M: Fam Zheng <fam@euphon.net>
2433 R: Philippe Mathieu-Daudé <philmd@redhat.com>
2434 L: qemu-devel@nongnu.org
2435 S: Maintained
2436 F: .travis.yml
2437 F: scripts/travis/
2438 F: .shippable.yml
2439 F: tests/docker/
2440 F: tests/vm/
2441 W: https://travis-ci.org/qemu/qemu
2442 W: https://app.shippable.com/github/qemu/qemu
2443 W: http://patchew.org/QEMU/
2445 Guest Test Compilation Support
2446 M: Alex Bennée <alex.bennee@linaro.org>
2447 R: Philippe Mathieu-Daudé <f4bug@amsat.org>
2448 F: tests/tcg/Makefile
2449 F: tests/tcg/Makefile.include
2450 L: qemu-devel@nongnu.org
2452 Documentation
2453 -------------
2454 Build system architecture
2455 M: Daniel P. Berrange <berrange@redhat.com>
2456 S: Odd Fixes
2457 F: docs/devel/build-system.txt
2459 Incompatible changes
2460 R: libvir-list@redhat.com
2461 F: qemu-deprecated.texi
2463 Build System
2464 ------------
2465 GIT submodules
2466 M: Daniel P. Berrange <berrange@redhat.com>
2467 S: Odd Fixes
2468 F: scripts/git-submodule.sh