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