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