s390x/cpumodel: msa9 facility
[qemu/ar7.git] / MAINTAINERS
bloba73a61a54654ca29672ef3cbb997ee446bcf3721
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: Richard Henderson <rth@twiddle.net>
114 R: Paolo Bonzini <pbonzini@redhat.com>
115 S: Maintained
116 F: cpus.c
117 F: exec.c
118 F: accel/tcg/
119 F: accel/stubs/tcg-stub.c
120 F: scripts/decodetree.py
121 F: docs/devel/decodetree.rst
122 F: include/exec/cpu*.h
123 F: include/exec/exec-all.h
124 F: include/exec/helper*.h
125 F: include/exec/tb-hash.h
126 F: include/sysemu/cpus.h
128 FPU emulation
129 M: Aurelien Jarno <aurelien@aurel32.net>
130 M: Peter Maydell <peter.maydell@linaro.org>
131 M: Alex Bennée <alex.bennee@linaro.org>
132 S: Maintained
133 F: fpu/
134 F: include/fpu/
135 F: tests/fp/
137 Alpha
138 M: Richard Henderson <rth@twiddle.net>
139 S: Maintained
140 F: target/alpha/
141 F: tests/tcg/alpha/
142 F: disas/alpha.c
145 M: Peter Maydell <peter.maydell@linaro.org>
146 L: qemu-arm@nongnu.org
147 S: Maintained
148 F: target/arm/
149 F: tests/tcg/arm/
150 F: tests/tcg/aarch64/
151 F: hw/arm/
152 F: hw/cpu/a*mpcore.c
153 F: include/hw/cpu/a*mpcore.h
154 F: disas/arm.c
155 F: disas/arm-a64.cc
156 F: disas/libvixl/
158 ARM SMMU
159 M: Eric Auger <eric.auger@redhat.com>
160 L: qemu-arm@nongnu.org
161 S: Maintained
162 F: hw/arm/smmu*
163 F: include/hw/arm/smmu*
165 CRIS
166 M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
167 S: Maintained
168 F: target/cris/
169 F: hw/cris/
170 F: include/hw/cris/
171 F: tests/tcg/cris/
172 F: disas/cris.c
174 HPPA (PA-RISC)
175 M: Richard Henderson <rth@twiddle.net>
176 S: Maintained
177 F: target/hppa/
178 F: hw/hppa/
179 F: disas/hppa.c
181 LM32
182 M: Michael Walle <michael@walle.cc>
183 S: Maintained
184 F: target/lm32/
185 F: disas/lm32.c
186 F: hw/lm32/
187 F: hw/*/lm32_*
188 F: hw/*/milkymist-*
189 F: include/hw/display/milkymist_tmu2.h
190 F: include/hw/char/lm32_juart.h
191 F: include/hw/lm32/
192 F: tests/tcg/lm32/
194 M68K
195 M: Laurent Vivier <laurent@vivier.eu>
196 S: Maintained
197 F: target/m68k/
198 F: disas/m68k.c
200 MicroBlaze
201 M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
202 S: Maintained
203 F: target/microblaze/
204 F: hw/microblaze/
205 F: disas/microblaze.c
207 MIPS
208 M: Aurelien Jarno <aurelien@aurel32.net>
209 M: Aleksandar Markovic <amarkovic@wavecomp.com>
210 R: Aleksandar Rikalo <arikalo@wavecomp.com>
211 S: Maintained
212 F: target/mips/
213 F: default-configs/*mips*
214 F: disas/mips.c
215 F: disas/nanomips.cpp
216 F: disas/nanomips.h
217 F: hw/intc/mips_gic.c
218 F: hw/mips/
219 F: hw/misc/mips_*
220 F: hw/timer/mips_gictimer.c
221 F: include/hw/intc/mips_gic.h
222 F: include/hw/mips/
223 F: include/hw/misc/mips_*
224 F: include/hw/timer/mips_gictimer.h
225 F: tests/tcg/mips/
226 K: ^Subject:.*(?i)mips
228 Moxie
229 M: Anthony Green <green@moxielogic.com>
230 S: Maintained
231 F: target/moxie/
232 F: disas/moxie.c
233 F: hw/moxie/
234 F: default-configs/moxie-softmmu.mak
236 NiosII
237 M: Chris Wulff <crwulff@gmail.com>
238 M: Marek Vasut <marex@denx.de>
239 S: Maintained
240 F: target/nios2/
241 F: hw/nios2/
242 F: hw/intc/nios2_iic.c
243 F: disas/nios2.c
244 F: default-configs/nios2-softmmu.mak
246 OpenRISC
247 M: Stafford Horne <shorne@gmail.com>
248 S: Odd Fixes
249 F: target/openrisc/
250 F: hw/openrisc/
251 F: tests/tcg/openrisc/
253 PowerPC
254 M: David Gibson <david@gibson.dropbear.id.au>
255 L: qemu-ppc@nongnu.org
256 S: Maintained
257 F: target/ppc/
258 F: hw/ppc/
259 F: include/hw/ppc/
260 F: disas/ppc.c
262 RISC-V
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 S: Maintained
344 F: tests/tcg/multiarch/
346 Guest CPU Cores (KVM):
347 ----------------------
349 Overall
350 M: Paolo Bonzini <pbonzini@redhat.com>
351 L: kvm@vger.kernel.org
352 S: Supported
353 F: */kvm.*
354 F: accel/kvm/
355 F: accel/stubs/kvm-stub.c
356 F: include/hw/kvm/
357 F: include/sysemu/kvm*.h
358 F: scripts/kvm/kvm_flightrecorder
361 M: Peter Maydell <peter.maydell@linaro.org>
362 L: qemu-arm@nongnu.org
363 S: Maintained
364 F: target/arm/kvm.c
366 MIPS
367 M: James Hogan <jhogan@kernel.org>
368 R: Aleksandar Rikalo <arikalo@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: Supported
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 M: Paul Durrant <paul.durrant@citrix.com>
411 L: xen-devel@lists.xenproject.org
412 S: Supported
413 F: */xen*
414 F: hw/9pfs/xen-9p-backend.c
415 F: hw/char/xen_console.c
416 F: hw/display/xenfb.c
417 F: hw/net/xen_nic.c
418 F: hw/block/xen*
419 F: hw/block/dataplane/xen*
420 F: hw/xen/
421 F: hw/xenpv/
422 F: hw/i386/xen/
423 F: include/hw/block/dataplane/xen*
424 F: include/hw/xen/
425 F: include/sysemu/xen-mapcache.h
427 Hosts:
428 ------
430 LINUX
431 M: Michael S. Tsirkin <mst@redhat.com>
432 M: Cornelia Huck <cohuck@redhat.com>
433 M: Paolo Bonzini <pbonzini@redhat.com>
434 S: Maintained
435 F: linux-headers/
436 F: scripts/update-linux-headers.sh
438 POSIX
439 M: Paolo Bonzini <pbonzini@redhat.com>
440 S: Maintained
441 F: os-posix.c
442 F: include/sysemu/os-posix.h
443 F: util/*posix*.c
444 F: include/qemu/*posix*.h
446 NETBSD
447 L: qemu-devel@nongnu.org
448 M: Kamil Rytarowski <kamil@netbsd.org>
449 S: Maintained
450 K: ^Subject:.*(?i)NetBSD
452 OPENBSD
453 L: qemu-devel@nongnu.org
454 M: Brad Smith <brad@comstyle.com>
455 S: Maintained
456 K: ^Subject:.*(?i)OpenBSD
458 W32, W64
459 L: qemu-devel@nongnu.org
460 M: Stefan Weil <sw@weilnetz.de>
461 S: Maintained
462 F: *win32*
463 F: */*win32*
464 F: include/*/*win32*
465 X: qga/*win32*
466 F: qemu.nsi
468 Alpha Machines
469 M: Richard Henderson <rth@twiddle.net>
470 S: Maintained
471 F: hw/alpha/
472 F: hw/isa/smc37c669-superio.c
474 ARM Machines
475 ------------
476 Allwinner-a10
477 M: Beniamino Galvani <b.galvani@gmail.com>
478 M: Peter Maydell <peter.maydell@linaro.org>
479 L: qemu-arm@nongnu.org
480 S: Odd Fixes
481 F: hw/*/allwinner*
482 F: include/hw/*/allwinner*
483 F: hw/arm/cubieboard.c
485 ARM PrimeCell and CMSDK devices
486 M: Peter Maydell <peter.maydell@linaro.org>
487 L: qemu-arm@nongnu.org
488 S: Maintained
489 F: hw/char/pl011.c
490 F: include/hw/char/pl011.h
491 F: hw/display/pl110*
492 F: hw/dma/pl080.c
493 F: include/hw/dma/pl080.h
494 F: hw/dma/pl330.c
495 F: hw/gpio/pl061.c
496 F: hw/input/pl050.c
497 F: hw/intc/pl190.c
498 F: hw/sd/pl181.c
499 F: hw/ssi/pl022.c
500 F: include/hw/ssi/pl022.h
501 F: hw/timer/pl031.c
502 F: include/hw/timer/pl031.h
503 F: include/hw/arm/primecell.h
504 F: hw/timer/cmsdk-apb-timer.c
505 F: include/hw/timer/cmsdk-apb-timer.h
506 F: hw/timer/cmsdk-apb-dualtimer.c
507 F: include/hw/timer/cmsdk-apb-dualtimer.h
508 F: hw/char/cmsdk-apb-uart.c
509 F: include/hw/char/cmsdk-apb-uart.h
510 F: hw/watchdog/cmsdk-apb-watchdog.c
511 F: include/hw/watchdog/cmsdk-apb-watchdog.h
512 F: hw/misc/tz-ppc.c
513 F: include/hw/misc/tz-ppc.h
514 F: hw/misc/tz-mpc.c
515 F: include/hw/misc/tz-mpc.h
516 F: hw/misc/tz-msc.c
517 F: include/hw/misc/tz-msc.h
519 ARM cores
520 M: Peter Maydell <peter.maydell@linaro.org>
521 L: qemu-arm@nongnu.org
522 S: Maintained
523 F: hw/intc/arm*
524 F: hw/intc/gic_internal.h
525 F: hw/misc/a9scu.c
526 F: hw/misc/arm11scu.c
527 F: hw/misc/arm_l2x0.c
528 F: hw/timer/a9gtimer*
529 F: hw/timer/arm*
530 F: include/hw/arm/arm*.h
531 F: include/hw/intc/arm*
532 F: include/hw/misc/a9scu.h
533 F: include/hw/misc/arm11scu.h
534 F: include/hw/timer/a9gtimer.h
535 F: include/hw/timer/arm_mptimer.h
536 F: include/hw/timer/armv7m_systick.h
537 F: tests/test-arm-mptimer.c
539 Exynos
540 M: Igor Mitsyanko <i.mitsyanko@gmail.com>
541 M: Peter Maydell <peter.maydell@linaro.org>
542 L: qemu-arm@nongnu.org
543 S: Odd Fixes
544 F: hw/*/exynos*
545 F: include/hw/arm/exynos4210.h
547 Calxeda Highbank
548 M: Rob Herring <robh@kernel.org>
549 M: Peter Maydell <peter.maydell@linaro.org>
550 L: qemu-arm@nongnu.org
551 S: Odd Fixes
552 F: hw/arm/highbank.c
553 F: hw/net/xgmac.c
555 Canon DIGIC
556 M: Antony Pavlov <antonynpavlov@gmail.com>
557 M: Peter Maydell <peter.maydell@linaro.org>
558 L: qemu-arm@nongnu.org
559 S: Odd Fixes
560 F: include/hw/arm/digic.h
561 F: hw/*/digic*
562 F: include/hw/*/digic*
564 Gumstix
565 M: Peter Maydell <peter.maydell@linaro.org>
566 R: Philippe Mathieu-Daudé <f4bug@amsat.org>
567 L: qemu-devel@nongnu.org
568 L: qemu-arm@nongnu.org
569 S: Odd Fixes
570 F: hw/arm/gumstix.c
572 i.MX25 PDK
573 M: Peter Maydell <peter.maydell@linaro.org>
574 R: Jean-Christophe Dubois <jcd@tribudubois.net>
575 L: qemu-arm@nongnu.org
576 S: Odd Fixes
577 F: hw/arm/fsl-imx25.c
578 F: hw/arm/imx25_pdk.c
579 F: hw/misc/imx25_ccm.c
580 F: include/hw/arm/fsl-imx25.h
581 F: include/hw/misc/imx25_ccm.h
583 i.MX31 (kzm)
584 M: Peter Chubb <peter.chubb@nicta.com.au>
585 M: Peter Maydell <peter.maydell@linaro.org>
586 L: qemu-arm@nongnu.org
587 S: Odd Fixes
588 F: hw/arm/kzm.c
589 F: hw/*/imx_*
590 F: hw/*/*imx31*
591 F: include/hw/*/imx_*
592 F: include/hw/*/*imx31*
594 Integrator CP
595 M: Peter Maydell <peter.maydell@linaro.org>
596 L: qemu-arm@nongnu.org
597 S: Maintained
598 F: hw/arm/integratorcp.c
599 F: hw/misc/arm_integrator_debug.c
600 F: include/hw/misc/arm_integrator_debug.h
602 MCIMX6UL EVK / i.MX6ul
603 M: Peter Maydell <peter.maydell@linaro.org>
604 R: Jean-Christophe Dubois <jcd@tribudubois.net>
605 L: qemu-arm@nongnu.org
606 S: Odd Fixes
607 F: hw/arm/mcimx6ul-evk.c
608 F: hw/arm/fsl-imx6ul.c
609 F: hw/misc/imx6ul_ccm.c
610 F: include/hw/arm/fsl-imx6ul.h
611 F: include/hw/misc/imx6ul_ccm.h
613 MCIMX7D SABRE / i.MX7
614 M: Peter Maydell <peter.maydell@linaro.org>
615 R: Andrey Smirnov <andrew.smirnov@gmail.com>
616 L: qemu-arm@nongnu.org
617 S: Odd Fixes
618 F: hw/arm/mcimx7d-sabre.c
619 F: hw/arm/fsl-imx7.c
620 F: hw/misc/imx7_*.c
621 F: include/hw/arm/fsl-imx7.h
622 F: include/hw/misc/imx7_*.h
623 F: hw/pci-host/designware.c
624 F: include/hw/pci-host/designware.h
626 MPS2
627 M: Peter Maydell <peter.maydell@linaro.org>
628 L: qemu-arm@nongnu.org
629 S: Maintained
630 F: hw/arm/mps2.c
631 F: hw/arm/mps2-tz.c
632 F: hw/misc/mps2-*.c
633 F: include/hw/misc/mps2-*.h
634 F: hw/arm/armsse.c
635 F: include/hw/arm/armsse.h
636 F: hw/misc/iotkit-secctl.c
637 F: include/hw/misc/iotkit-secctl.h
638 F: hw/misc/iotkit-sysctl.c
639 F: include/hw/misc/iotkit-sysctl.h
640 F: hw/misc/iotkit-sysinfo.c
641 F: include/hw/misc/iotkit-sysinfo.h
642 F: hw/misc/armsse-cpuid.c
643 F: include/hw/misc/armsse-cpuid.h
644 F: hw/misc/armsse-mhu.c
645 F: include/hw/misc/armsse-mhu.h
647 Musca
648 M: Peter Maydell <peter.maydell@linaro.org>
649 L: qemu-arm@nongnu.org
650 S: Maintained
651 F: hw/arm/musca.c
653 Musicpal
654 M: Jan Kiszka <jan.kiszka@web.de>
655 M: Peter Maydell <peter.maydell@linaro.org>
656 L: qemu-arm@nongnu.org
657 S: Odd Fixes
658 F: hw/arm/musicpal.c
660 nSeries
661 M: Andrzej Zaborowski <balrogg@gmail.com>
662 M: Peter Maydell <peter.maydell@linaro.org>
663 L: qemu-arm@nongnu.org
664 S: Odd Fixes
665 F: hw/arm/nseries.c
666 F: hw/display/blizzard.c
667 F: hw/input/lm832x.c
668 F: hw/input/tsc2005.c
669 F: hw/misc/cbus.c
670 F: hw/timer/twl92230.c
671 F: include/hw/display/blizzard.h
672 F: include/hw/input/tsc2xxx.h
673 F: include/hw/misc/cbus.h
675 Palm
676 M: Andrzej Zaborowski <balrogg@gmail.com>
677 M: Peter Maydell <peter.maydell@linaro.org>
678 L: qemu-arm@nongnu.org
679 S: Odd Fixes
680 F: hw/arm/palm.c
681 F: hw/input/tsc210x.c
682 F: include/hw/input/tsc2xxx.h
684 Raspberry Pi
685 M: Peter Maydell <peter.maydell@linaro.org>
686 R: Andrew Baumann <Andrew.Baumann@microsoft.com>
687 R: Philippe Mathieu-Daudé <f4bug@amsat.org>
688 L: qemu-arm@nongnu.org
689 S: Odd Fixes
690 F: hw/arm/raspi.c
691 F: hw/arm/raspi_platform.h
692 F: hw/*/bcm283*
693 F: include/hw/arm/raspi*
694 F: include/hw/*/bcm283*
696 Real View
697 M: Peter Maydell <peter.maydell@linaro.org>
698 L: qemu-arm@nongnu.org
699 S: Maintained
700 F: hw/arm/realview*
701 F: hw/cpu/realview_mpcore.c
702 F: hw/intc/realview_gic.c
703 F: include/hw/intc/realview_gic.h
705 PXA2XX
706 M: Andrzej Zaborowski <balrogg@gmail.com>
707 M: Peter Maydell <peter.maydell@linaro.org>
708 L: qemu-arm@nongnu.org
709 S: Odd Fixes
710 F: hw/arm/mainstone.c
711 F: hw/arm/spitz.c
712 F: hw/arm/tosa.c
713 F: hw/arm/z2.c
714 F: hw/*/pxa2xx*
715 F: hw/display/tc6393xb.c
716 F: hw/gpio/max7310.c
717 F: hw/gpio/zaurus.c
718 F: hw/misc/mst_fpga.c
719 F: hw/misc/max111x.c
720 F: include/hw/arm/pxa.h
721 F: include/hw/arm/sharpsl.h
722 F: include/hw/display/tc6393xb.h
724 SABRELITE / i.MX6
725 M: Peter Maydell <peter.maydell@linaro.org>
726 R: Jean-Christophe Dubois <jcd@tribudubois.net>
727 L: qemu-arm@nongnu.org
728 S: Odd Fixes
729 F: hw/arm/sabrelite.c
730 F: hw/arm/fsl-imx6.c
731 F: hw/misc/imx6_*.c
732 F: hw/ssi/imx_spi.c
733 F: include/hw/arm/fsl-imx6.h
734 F: include/hw/misc/imx6_*.h
735 F: include/hw/ssi/imx_spi.h
737 Sharp SL-5500 (Collie) PDA
738 M: Peter Maydell <peter.maydell@linaro.org>
739 L: qemu-arm@nongnu.org
740 S: Odd Fixes
741 F: hw/arm/collie.c
742 F: hw/arm/strongarm*
744 Stellaris
745 M: Peter Maydell <peter.maydell@linaro.org>
746 L: qemu-arm@nongnu.org
747 S: Maintained
748 F: hw/*/stellaris*
749 F: include/hw/input/gamepad.h
751 Versatile Express
752 M: Peter Maydell <peter.maydell@linaro.org>
753 L: qemu-arm@nongnu.org
754 S: Maintained
755 F: hw/arm/vexpress.c
757 Versatile PB
758 M: Peter Maydell <peter.maydell@linaro.org>
759 L: qemu-arm@nongnu.org
760 S: Maintained
761 F: hw/*/versatile*
762 F: hw/misc/arm_sysctl.c
764 Virt
765 M: Peter Maydell <peter.maydell@linaro.org>
766 L: qemu-arm@nongnu.org
767 S: Maintained
768 F: hw/arm/virt*
769 F: include/hw/arm/virt.h
771 Xilinx Zynq
772 M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
773 M: Alistair Francis <alistair@alistair23.me>
774 M: Peter Maydell <peter.maydell@linaro.org>
775 L: qemu-arm@nongnu.org
776 S: Maintained
777 F: hw/*/xilinx_*
778 F: hw/*/cadence_*
779 F: hw/misc/zynq*
780 F: include/hw/misc/zynq*
781 X: hw/ssi/xilinx_*
783 Xilinx ZynqMP
784 M: Alistair Francis <alistair@alistair23.me>
785 M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
786 M: Peter Maydell <peter.maydell@linaro.org>
787 L: qemu-arm@nongnu.org
788 S: Maintained
789 F: hw/*/xlnx*.c
790 F: include/hw/*/xlnx*.h
791 F: include/hw/ssi/xilinx_spips.h
792 F: hw/display/dpcd.c
793 F: include/hw/display/dpcd.h
795 ARM ACPI Subsystem
796 M: Shannon Zhao <shannon.zhaosl@gmail.com>
797 L: qemu-arm@nongnu.org
798 S: Maintained
799 F: hw/arm/virt-acpi-build.c
801 STM32F205
802 M: Alistair Francis <alistair@alistair23.me>
803 M: Peter Maydell <peter.maydell@linaro.org>
804 S: Maintained
805 F: hw/arm/stm32f205_soc.c
806 F: hw/misc/stm32f2xx_syscfg.c
807 F: hw/char/stm32f2xx_usart.c
808 F: hw/timer/stm32f2xx_timer.c
809 F: hw/adc/*
810 F: hw/ssi/stm32f2xx_spi.c
811 F: include/hw/*/stm32*.h
813 Netduino 2
814 M: Alistair Francis <alistair@alistair23.me>
815 M: Peter Maydell <peter.maydell@linaro.org>
816 S: Maintained
817 F: hw/arm/netduino2.c
819 SmartFusion2
820 M: Subbaraya Sundeep <sundeep.lkml@gmail.com>
821 M: Peter Maydell <peter.maydell@linaro.org>
822 S: Maintained
823 F: hw/arm/msf2-soc.c
824 F: hw/misc/msf2-sysreg.c
825 F: hw/timer/mss-timer.c
826 F: hw/ssi/mss-spi.c
827 F: include/hw/arm/msf2-soc.h
828 F: include/hw/misc/msf2-sysreg.h
829 F: include/hw/timer/mss-timer.h
830 F: include/hw/ssi/mss-spi.h
832 Emcraft M2S-FG484
833 M: Subbaraya Sundeep <sundeep.lkml@gmail.com>
834 M: Peter Maydell <peter.maydell@linaro.org>
835 S: Maintained
836 F: hw/arm/msf2-som.c
838 ASPEED BMCs
839 M: Cédric Le Goater <clg@kaod.org>
840 M: Peter Maydell <peter.maydell@linaro.org>
841 R: Andrew Jeffery <andrew@aj.id.au>
842 R: Joel Stanley <joel@jms.id.au>
843 L: qemu-arm@nongnu.org
844 S: Maintained
845 F: hw/*/*aspeed*
846 F: hw/misc/pca9552.c
847 F: include/hw/*/*aspeed*
848 F: include/hw/misc/pca9552*.h
849 F: hw/net/ftgmac100.c
850 F: include/hw/net/ftgmac100.h
852 NRF51
853 M: Joel Stanley <joel@jms.id.au>
854 M: Peter Maydell <peter.maydell@linaro.org>
855 L: qemu-arm@nongnu.org
856 S: Maintained
857 F: hw/*/nrf51*.c
858 F: hw/*/microbit*.c
859 F: include/hw/*/nrf51*.h
860 F: include/hw/*/microbit*.h
861 F: tests/microbit-test.c
863 CRIS Machines
864 -------------
865 Axis Dev88
866 M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
867 S: Maintained
868 F: hw/cris/axis_dev88.c
869 F: hw/*/etraxfs_*.c
871 HP-PARISC Machines
872 ------------------
873 Dino
874 M: Richard Henderson <rth@twiddle.net>
875 R: Helge Deller <deller@gmx.de>
876 S: Odd Fixes
877 F: hw/hppa/
878 F: pc-bios/hppa-firmware.img
880 LM32 Machines
881 -------------
882 EVR32 and uclinux BSP
883 M: Michael Walle <michael@walle.cc>
884 S: Maintained
885 F: hw/lm32/lm32_boards.c
887 milkymist
888 M: Michael Walle <michael@walle.cc>
889 S: Maintained
890 F: hw/lm32/milkymist.c
892 M68K Machines
893 -------------
894 an5206
895 M: Thomas Huth <huth@tuxfamily.org>
896 S: Odd Fixes
897 F: hw/m68k/an5206.c
898 F: hw/m68k/mcf5206.c
900 mcf5208
901 M: Thomas Huth <huth@tuxfamily.org>
902 S: Odd Fixes
903 F: hw/m68k/mcf5208.c
904 F: hw/m68k/mcf_intc.c
905 F: hw/char/mcf_uart.c
906 F: hw/net/mcf_fec.c
907 F: include/hw/m68k/mcf*.h
909 MicroBlaze Machines
910 -------------------
911 petalogix_s3adsp1800
912 M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
913 S: Maintained
914 F: hw/microblaze/petalogix_s3adsp1800_mmu.c
915 F: include/hw/char/xilinx_uartlite.h
917 petalogix_ml605
918 M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
919 S: Maintained
920 F: hw/microblaze/petalogix_ml605_mmu.c
922 MIPS Machines
923 -------------
924 Jazz
925 M: Hervé Poussineau <hpoussin@reactos.org>
926 R: Aleksandar Rikalo <arikalo@wavecomp.com>
927 S: Maintained
928 F: hw/mips/mips_jazz.c
929 F: hw/display/jazz_led.c
930 F: hw/dma/rc4030.c
932 Malta
933 M: Aurelien Jarno <aurelien@aurel32.net>
934 R: Aleksandar Rikalo <arikalo@wavecomp.com>
935 S: Maintained
936 F: hw/mips/mips_malta.c
938 Mipssim
939 M: Aleksandar Markovic <amarkovic@wavecomp.com>
940 R: Aleksandar Rikalo <arikalo@wavecomp.com>
941 S: Odd Fixes
942 F: hw/mips/mips_mipssim.c
943 F: hw/net/mipsnet.c
945 R4000
946 M: Aurelien Jarno <aurelien@aurel32.net>
947 R: Aleksandar Rikalo <arikalo@wavecomp.com>
948 S: Maintained
949 F: hw/mips/mips_r4k.c
951 Fulong 2E
952 M: Aleksandar Markovic <amarkovic@wavecomp.com>
953 R: Aleksandar Rikalo <arikalo@wavecomp.com>
954 S: Odd Fixes
955 F: hw/mips/mips_fulong2e.c
956 F: hw/isa/vt82c686.c
957 F: hw/pci-host/bonito.c
958 F: include/hw/isa/vt82c686.h
960 Boston
961 M: Paul Burton <pburton@wavecomp.com>
962 R: Aleksandar Rikalo <arikalo@wavecomp.com>
963 S: Maintained
964 F: hw/core/loader-fit.c
965 F: hw/mips/boston.c
966 F: hw/pci-host/xilinx-pcie.c
967 F: include/hw/pci-host/xilinx-pcie.h
969 OpenRISC Machines
970 -----------------
971 or1k-sim
972 M: Jia Liu <proljc@gmail.com>
973 S: Maintained
974 F: hw/openrisc/openrisc_sim.c
976 PowerPC Machines
977 ----------------
979 M: David Gibson <david@gibson.dropbear.id.au>
980 L: qemu-ppc@nongnu.org
981 S: Odd Fixes
982 F: hw/ppc/ppc405_boards.c
984 Bamboo
985 M: David Gibson <david@gibson.dropbear.id.au>
986 L: qemu-ppc@nongnu.org
987 S: Odd Fixes
988 F: hw/ppc/ppc440_bamboo.c
990 e500
991 M: David Gibson <david@gibson.dropbear.id.au>
992 L: qemu-ppc@nongnu.org
993 S: Odd Fixes
994 F: hw/ppc/e500*
995 F: hw/gpio/mpc8xxx.c
996 F: hw/i2c/mpc_i2c.c
997 F: hw/net/fsl_etsec/
998 F: hw/pci-host/ppce500.c
999 F: include/hw/ppc/ppc_e500.h
1000 F: include/hw/pci-host/ppce500.h
1001 F: pc-bios/u-boot.e500
1003 mpc8544ds
1004 M: David Gibson <david@gibson.dropbear.id.au>
1005 L: qemu-ppc@nongnu.org
1006 S: Odd Fixes
1007 F: hw/ppc/mpc8544ds.c
1008 F: hw/ppc/mpc8544_guts.c
1010 New World (mac99)
1011 M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
1012 R: David Gibson <david@gibson.dropbear.id.au>
1013 L: qemu-ppc@nongnu.org
1014 S: Odd Fixes
1015 F: hw/ppc/mac_newworld.c
1016 F: hw/pci-host/uninorth.c
1017 F: hw/pci-bridge/dec.[hc]
1018 F: hw/misc/macio/
1019 F: hw/misc/mos6522.c
1020 F: hw/nvram/mac_nvram.c
1021 F: hw/input/adb*
1022 F: include/hw/misc/macio/
1023 F: include/hw/misc/mos6522.h
1024 F: include/hw/ppc/mac_dbdma.h
1025 F: include/hw/pci-host/uninorth.h
1026 F: include/hw/input/adb*
1027 F: pc-bios/qemu_vga.ndrv
1029 Old World (g3beige)
1030 M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
1031 R: David Gibson <david@gibson.dropbear.id.au>
1032 L: qemu-ppc@nongnu.org
1033 S: Odd Fixes
1034 F: hw/ppc/mac_oldworld.c
1035 F: hw/pci-host/grackle.c
1036 F: hw/misc/macio/
1037 F: hw/intc/heathrow_pic.c
1038 F: hw/input/adb*
1039 F: include/hw/intc/heathrow_pic.h
1040 F: include/hw/input/adb*
1041 F: pc-bios/qemu_vga.ndrv
1043 PReP
1044 M: Hervé Poussineau <hpoussin@reactos.org>
1045 L: qemu-devel@nongnu.org
1046 L: qemu-ppc@nongnu.org
1047 S: Maintained
1048 F: hw/ppc/prep.c
1049 F: hw/ppc/prep_systemio.c
1050 F: hw/ppc/rs6000_mc.c
1051 F: hw/pci-host/prep.[hc]
1052 F: hw/isa/i82378.c
1053 F: hw/isa/pc87312.c
1054 F: hw/dma/i82374.c
1055 F: hw/timer/m48t59-isa.c
1056 F: include/hw/isa/pc87312.h
1057 F: include/hw/timer/m48t59.h
1058 F: pc-bios/ppc_rom.bin
1060 sPAPR
1061 M: David Gibson <david@gibson.dropbear.id.au>
1062 L: qemu-ppc@nongnu.org
1063 S: Supported
1064 F: hw/*/spapr*
1065 F: include/hw/*/spapr*
1066 F: hw/*/xics*
1067 F: include/hw/*/xics*
1068 F: pc-bios/spapr-rtas/*
1069 F: pc-bios/spapr-rtas.bin
1070 F: pc-bios/slof.bin
1071 F: docs/specs/ppc-spapr-hcalls.txt
1072 F: docs/specs/ppc-spapr-hotplug.txt
1073 F: tests/spapr*
1074 F: tests/libqos/*spapr*
1075 F: tests/rtas*
1076 F: tests/libqos/rtas*
1078 PowerNV (Non-Virtualized)
1079 M: Cédric Le Goater <clg@kaod.org>
1080 M: David Gibson <david@gibson.dropbear.id.au>
1081 L: qemu-ppc@nongnu.org
1082 S: Maintained
1083 F: hw/ppc/pnv*
1084 F: hw/intc/pnv*
1085 F: hw/intc/xics_pnv.c
1086 F: include/hw/ppc/pnv*
1087 F: pc-bios/skiboot.lid
1088 F: tests/pnv*
1090 virtex_ml507
1091 M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
1092 L: qemu-ppc@nongnu.org
1093 S: Odd Fixes
1094 F: hw/ppc/virtex_ml507.c
1096 sam460ex
1097 M: BALATON Zoltan <balaton@eik.bme.hu>
1098 L: qemu-ppc@nongnu.org
1099 S: Maintained
1100 F: hw/ppc/sam460ex.c
1101 F: hw/ppc/ppc440_pcix.c
1102 F: hw/display/sm501*
1103 F: hw/ide/sii3112.c
1104 F: hw/timer/m41t80.c
1105 F: pc-bios/canyonlands.dt[sb]
1106 F: pc-bios/u-boot-sam460ex-20100605.bin
1107 F: roms/u-boot-sam460ex
1109 SH4 Machines
1110 ------------
1112 M: Magnus Damm <magnus.damm@gmail.com>
1113 S: Maintained
1114 F: hw/sh4/r2d.c
1115 F: hw/intc/sh_intc.c
1116 F: hw/timer/sh_timer.c
1118 Shix
1119 M: Magnus Damm <magnus.damm@gmail.com>
1120 S: Odd Fixes
1121 F: hw/sh4/shix.c
1123 SPARC Machines
1124 --------------
1125 Sun4m
1126 M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
1127 S: Maintained
1128 F: hw/sparc/sun4m.c
1129 F: hw/sparc/sun4m_iommu.c
1130 F: hw/display/cg3.c
1131 F: hw/display/tcx.c
1132 F: hw/dma/sparc32_dma.c
1133 F: hw/misc/eccmemctl.c
1134 F: hw/*/slavio_*.c
1135 F: include/hw/nvram/sun_nvram.h
1136 F: include/hw/sparc/sparc32_dma.h
1137 F: include/hw/sparc/sun4m_iommu.h
1138 F: pc-bios/openbios-sparc32
1140 Sun4u
1141 M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
1142 S: Maintained
1143 F: hw/sparc64/sun4u.c
1144 F: hw/sparc64/sun4u_iommu.c
1145 F: include/hw/sparc/sun4u_iommu.h
1146 F: hw/pci-host/sabre.c
1147 F: include/hw/pci-host/sabre.h
1148 F: hw/pci-bridge/simba.c
1149 F: include/hw/pci-bridge/simba.h
1150 F: pc-bios/openbios-sparc64
1152 Sun4v
1153 M: Artyom Tarasenko <atar4qemu@gmail.com>
1154 S: Maintained
1155 F: hw/sparc64/niagara.c
1156 F: hw/timer/sun4v-rtc.c
1157 F: include/hw/timer/sun4v-rtc.h
1159 Leon3
1160 M: Fabien Chouteau <chouteau@adacore.com>
1161 S: Maintained
1162 F: hw/sparc/leon3.c
1163 F: hw/*/grlib*
1164 F: include/hw/sparc/grlib.h
1166 S390 Machines
1167 -------------
1168 S390 Virtio-ccw
1169 M: Cornelia Huck <cohuck@redhat.com>
1170 M: Halil Pasic <pasic@linux.ibm.com>
1171 M: Christian Borntraeger <borntraeger@de.ibm.com>
1172 S: Supported
1173 F: hw/char/sclp*.[hc]
1174 F: hw/char/terminal3270.c
1175 F: hw/s390x/
1176 F: include/hw/s390x/
1177 F: hw/watchdog/wdt_diag288.c
1178 F: include/hw/watchdog/wdt_diag288.h
1179 F: default-configs/s390x-softmmu.mak
1180 T: git https://github.com/cohuck/qemu.git s390-next
1181 T: git https://github.com/borntraeger/qemu.git s390-next
1182 L: qemu-s390x@nongnu.org
1184 S390-ccw boot
1185 M: Christian Borntraeger <borntraeger@de.ibm.com>
1186 M: Thomas Huth <thuth@redhat.com>
1187 S: Supported
1188 F: hw/s390x/ipl.*
1189 F: pc-bios/s390-ccw/
1190 F: pc-bios/s390-ccw.img
1191 F: docs/devel/s390-dasd-ipl.txt
1192 T: git https://github.com/borntraeger/qemu.git s390-next
1193 L: qemu-s390x@nongnu.org
1195 S390 PCI
1196 M: Collin Walling <walling@linux.ibm.com>
1197 S: Supported
1198 F: hw/s390x/s390-pci*
1199 L: qemu-s390x@nongnu.org
1201 UniCore32 Machines
1202 -------------
1203 PKUnity-3 SoC initramfs-with-busybox
1204 M: Guan Xuetao <gxt@mprc.pku.edu.cn>
1205 S: Maintained
1206 F: hw/*/puv3*
1207 F: hw/unicore32/
1209 X86 Machines
1210 ------------
1212 M: Michael S. Tsirkin <mst@redhat.com>
1213 M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
1214 S: Supported
1215 F: include/hw/i386/
1216 F: hw/i386/
1217 F: hw/pci-host/piix.c
1218 F: hw/pci-host/q35.c
1219 F: hw/pci-host/pam.c
1220 F: include/hw/pci-host/q35.h
1221 F: include/hw/pci-host/pam.h
1222 F: hw/isa/piix4.c
1223 F: hw/isa/lpc_ich9.c
1224 F: hw/i2c/smbus_ich9.c
1225 F: hw/acpi/piix4.c
1226 F: hw/acpi/ich9.c
1227 F: include/hw/acpi/ich9.h
1228 F: include/hw/acpi/piix4.h
1229 F: hw/misc/sga.c
1230 F: hw/isa/apm.c
1231 F: include/hw/isa/apm.h
1232 F: tests/test-x86-cpuid.c
1233 F: tests/test-x86-cpuid-compat.c
1235 PC Chipset
1236 M: Michael S. Tsirkin <mst@redhat.com>
1237 M: Paolo Bonzini <pbonzini@redhat.com>
1238 S: Supported
1239 F: hw/char/debugcon.c
1240 F: hw/char/parallel*
1241 F: hw/char/serial*
1242 F: hw/dma/i8257*
1243 F: hw/i2c/pm_smbus.c
1244 F: hw/input/pckbd.c
1245 F: hw/intc/apic*
1246 F: hw/intc/ioapic*
1247 F: hw/intc/i8259*
1248 F: hw/isa/isa-superio.c
1249 F: hw/misc/debugexit.c
1250 F: hw/misc/pc-testdev.c
1251 F: hw/timer/hpet*
1252 F: hw/timer/i8254*
1253 F: hw/timer/mc146818rtc*
1254 F: hw/watchdog/wdt_ib700.c
1255 F: hw/watchdog/wdt_i6300esb.c
1256 F: include/hw/display/vga.h
1257 F: include/hw/char/parallel.h
1258 F: include/hw/dma/i8257.h
1259 F: include/hw/i2c/pm_smbus.h
1260 F: include/hw/input/i8042.h
1261 F: include/hw/isa/i8259_internal.h
1262 F: include/hw/isa/superio.h
1263 F: include/hw/timer/hpet.h
1264 F: include/hw/timer/i8254*
1265 F: include/hw/timer/mc146818rtc*
1267 Machine core
1268 M: Eduardo Habkost <ehabkost@redhat.com>
1269 M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
1270 S: Supported
1271 F: hw/core/machine.c
1272 F: hw/core/null-machine.c
1273 F: hw/cpu/cluster.c
1274 F: include/hw/boards.h
1275 F: include/hw/cpu/cluster.h
1276 T: git https://github.com/ehabkost/qemu.git machine-next
1278 Xtensa Machines
1279 ---------------
1281 M: Max Filippov <jcmvbkbc@gmail.com>
1282 S: Maintained
1283 F: hw/xtensa/sim.c
1285 XTFPGA (LX60, LX200, ML605, KC705)
1286 M: Max Filippov <jcmvbkbc@gmail.com>
1287 S: Maintained
1288 F: hw/xtensa/xtfpga.c
1289 F: hw/net/opencores_eth.c
1291 Devices
1292 -------
1294 M: Jiri Slaby <jslaby@suse.cz>
1295 S: Maintained
1296 F: hw/misc/edu.c
1299 M: John Snow <jsnow@redhat.com>
1300 L: qemu-block@nongnu.org
1301 S: Supported
1302 F: include/hw/ide.h
1303 F: include/hw/ide/
1304 F: hw/ide/
1305 F: hw/block/block.c
1306 F: hw/block/cdrom.c
1307 F: hw/block/hd-geometry.c
1308 F: tests/ide-test.c
1309 F: tests/ahci-test.c
1310 F: tests/cdrom-test.c
1311 F: tests/libqos/ahci*
1312 T: git https://github.com/jnsnow/qemu.git ide
1314 IPMI
1315 M: Corey Minyard <minyard@acm.org>
1316 S: Maintained
1317 F: include/hw/ipmi/*
1318 F: hw/ipmi/*
1319 F: hw/smbios/smbios_type_38.c
1320 F: tests/ipmi*
1321 T: git https://github.com/cminyard/qemu.git master-ipmi-rebase
1323 Floppy
1324 M: John Snow <jsnow@redhat.com>
1325 L: qemu-block@nongnu.org
1326 S: Supported
1327 F: hw/block/fdc.c
1328 F: include/hw/block/fdc.h
1329 F: tests/fdc-test.c
1330 T: git https://github.com/jnsnow/qemu.git ide
1332 OMAP
1333 M: Peter Maydell <peter.maydell@linaro.org>
1334 S: Maintained
1335 F: hw/*/omap*
1336 F: include/hw/arm/omap.h
1338 IPack
1339 M: Alberto Garcia <berto@igalia.com>
1340 S: Odd Fixes
1341 F: hw/char/ipoctal232.c
1342 F: hw/ipack/
1345 M: Michael S. Tsirkin <mst@redhat.com>
1346 M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
1347 S: Supported
1348 F: include/hw/pci/*
1349 F: hw/misc/pci-testdev.c
1350 F: hw/pci/*
1351 F: hw/pci-bridge/*
1352 F: docs/pci*
1353 F: docs/specs/*pci*
1354 F: default-configs/pci.mak
1356 ACPI/SMBIOS
1357 M: Michael S. Tsirkin <mst@redhat.com>
1358 M: Igor Mammedov <imammedo@redhat.com>
1359 S: Supported
1360 F: include/hw/acpi/*
1361 F: include/hw/firmware/smbios.h
1362 F: hw/mem/*
1363 F: hw/acpi/*
1364 F: hw/smbios/*
1365 F: hw/i386/acpi-build.[hc]
1366 F: hw/arm/virt-acpi-build.c
1367 F: tests/bios-tables-test.c
1368 F: tests/acpi-utils.[hc]
1369 F: tests/data/acpi/
1371 ppc4xx
1372 M: David Gibson <david@gibson.dropbear.id.au>
1373 L: qemu-ppc@nongnu.org
1374 S: Odd Fixes
1375 F: hw/ppc/ppc4*.c
1376 F: hw/i2c/ppc4xx_i2c.c
1377 F: include/hw/ppc/ppc4xx.h
1378 F: include/hw/i2c/ppc4xx_i2c.h
1380 Character devices
1381 M: Marc-André Lureau <marcandre.lureau@redhat.com>
1382 R: Paolo Bonzini <pbonzini@redhat.com>
1383 S: Odd Fixes
1384 F: hw/char/
1386 Network devices
1387 M: Jason Wang <jasowang@redhat.com>
1388 S: Odd Fixes
1389 F: hw/net/
1390 F: include/hw/net/
1391 F: tests/virtio-net-test.c
1392 T: git https://github.com/jasowang/qemu.git net
1394 Parallel NOR Flash devices
1395 M: Philippe Mathieu-Daudé <philmd@redhat.com>
1396 T: git https://gitlab.com/philmd/qemu.git pflash-next
1397 S: Maintained
1398 F: hw/block/pflash_cfi*.c
1399 F: include/hw/block/flash.h
1401 SCSI
1402 M: Paolo Bonzini <pbonzini@redhat.com>
1403 R: Fam Zheng <fam@euphon.net>
1404 S: Supported
1405 F: include/hw/scsi/*
1406 F: hw/scsi/*
1407 F: tests/virtio-scsi-test.c
1408 T: git https://github.com/bonzini/qemu.git scsi-next
1411 M: Alistair Francis <alistair@alistair23.me>
1412 S: Maintained
1413 F: hw/ssi/*
1414 F: hw/block/m25p80.c
1415 F: include/hw/ssi/ssi.h
1416 X: hw/ssi/xilinx_*
1417 F: tests/m25p80-test.c
1419 Xilinx SPI
1420 M: Alistair Francis <alistair@alistair23.me>
1421 S: Maintained
1422 F: hw/ssi/xilinx_*
1424 SD (Secure Card)
1425 M: Philippe Mathieu-Daudé <f4bug@amsat.org>
1426 S: Odd Fixes
1427 F: include/hw/sd/sd*
1428 F: hw/sd/core.c
1429 F: hw/sd/sd*
1430 F: tests/sd*
1433 M: Gerd Hoffmann <kraxel@redhat.com>
1434 S: Maintained
1435 F: hw/usb/*
1436 F: tests/usb-*-test.c
1437 F: docs/usb2.txt
1438 F: docs/usb-storage.txt
1439 F: include/hw/usb.h
1440 F: include/hw/usb/
1441 F: default-configs/usb.mak
1443 USB (serial adapter)
1444 M: Gerd Hoffmann <kraxel@redhat.com>
1445 M: Samuel Thibault <samuel.thibault@ens-lyon.org>
1446 S: Maintained
1447 F: hw/usb/dev-serial.c
1449 VFIO
1450 M: Alex Williamson <alex.williamson@redhat.com>
1451 S: Supported
1452 F: hw/vfio/*
1453 F: include/hw/vfio/
1455 vfio-ccw
1456 M: Cornelia Huck <cohuck@redhat.com>
1457 M: Eric Farman <farman@linux.ibm.com>
1458 M: Farhan Ali <alifm@linux.ibm.com>
1459 S: Supported
1460 F: hw/vfio/ccw.c
1461 F: hw/s390x/s390-ccw.c
1462 F: include/hw/s390x/s390-ccw.h
1463 F: include/hw/s390x/vfio-ccw.h
1464 T: git https://github.com/cohuck/qemu.git s390-next
1465 L: qemu-s390x@nongnu.org
1467 vfio-ap
1468 M: Christian Borntraeger <borntraeger@de.ibm.com>
1469 M: Tony Krowiak <akrowiak@linux.ibm.com>
1470 M: Halil Pasic <pasic@linux.ibm.com>
1471 M: Pierre Morel <pmorel@linux.ibm.com>
1472 S: Supported
1473 F: hw/s390x/ap-device.c
1474 F: hw/s390x/ap-bridge.c
1475 F: include/hw/s390x/ap-device.h
1476 F: include/hw/s390x/ap-bridge.h
1477 F: hw/vfio/ap.c
1478 F: docs/vfio-ap.txt
1479 L: qemu-s390x@nongnu.org
1481 vhost
1482 M: Michael S. Tsirkin <mst@redhat.com>
1483 S: Supported
1484 F: hw/*/*vhost*
1485 F: docs/interop/vhost-user.json
1486 F: docs/interop/vhost-user.txt
1487 F: contrib/vhost-user-*/
1488 F: backends/vhost-user.c
1489 F: include/sysemu/vhost-user-backend.h
1491 virtio
1492 M: Michael S. Tsirkin <mst@redhat.com>
1493 S: Supported
1494 F: hw/*/virtio*
1495 F: hw/virtio/Makefile.objs
1496 F: hw/virtio/trace-events
1497 F: net/vhost-user.c
1498 F: include/hw/virtio/
1499 F: tests/virtio-balloon-test.c
1501 virtio-9p
1502 M: Greg Kurz <groug@kaod.org>
1503 S: Supported
1504 F: hw/9pfs/
1505 F: fsdev/
1506 F: tests/virtio-9p-test.c
1507 T: git https://github.com/gkurz/qemu.git 9p-next
1509 virtio-blk
1510 M: Stefan Hajnoczi <stefanha@redhat.com>
1511 L: qemu-block@nongnu.org
1512 S: Supported
1513 F: hw/block/virtio-blk.c
1514 F: hw/block/dataplane/*
1515 F: tests/virtio-blk-test.c
1516 T: git https://github.com/stefanha/qemu.git block
1518 virtio-ccw
1519 M: Cornelia Huck <cohuck@redhat.com>
1520 M: Halil Pasic <pasic@linux.ibm.com>
1521 S: Supported
1522 F: hw/s390x/virtio-ccw*.[hc]
1523 F: hw/s390x/vhost-vsock-ccw.c
1524 T: git https://github.com/cohuck/qemu.git s390-next
1525 T: git https://github.com/borntraeger/qemu.git s390-next
1526 L: qemu-s390x@nongnu.org
1528 virtio-input
1529 M: Gerd Hoffmann <kraxel@redhat.com>
1530 S: Maintained
1531 F: hw/input/vhost-user-input.c
1532 F: hw/input/virtio-input*.c
1533 F: include/hw/virtio/virtio-input.h
1535 virtio-serial
1536 M: Amit Shah <amit@kernel.org>
1537 S: Supported
1538 F: hw/char/virtio-serial-bus.c
1539 F: hw/char/virtio-console.c
1540 F: include/hw/virtio/virtio-serial.h
1541 F: tests/virtio-console-test.c
1542 F: tests/virtio-serial-test.c
1544 virtio-rng
1545 M: Amit Shah <amit@kernel.org>
1546 S: Supported
1547 F: hw/virtio/virtio-rng.c
1548 F: include/hw/virtio/virtio-rng.h
1549 F: include/sysemu/rng*.h
1550 F: backends/rng*.c
1551 F: tests/virtio-rng-test.c
1553 virtio-crypto
1554 M: Gonglei <arei.gonglei@huawei.com>
1555 S: Supported
1556 F: hw/virtio/virtio-crypto.c
1557 F: hw/virtio/virtio-crypto-pci.c
1558 F: include/hw/virtio/virtio-crypto.h
1560 nvme
1561 M: Keith Busch <keith.busch@intel.com>
1562 L: qemu-block@nongnu.org
1563 S: Supported
1564 F: hw/block/nvme*
1565 F: tests/nvme-test.c
1567 megasas
1568 M: Hannes Reinecke <hare@suse.com>
1569 L: qemu-block@nongnu.org
1570 S: Supported
1571 F: hw/scsi/megasas.c
1572 F: hw/scsi/mfi.h
1573 F: tests/megasas-test.c
1575 Network packet abstractions
1576 M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
1577 S: Maintained
1578 F: include/net/eth.h
1579 F: net/eth.c
1580 F: hw/net/net_rx_pkt*
1581 F: hw/net/net_tx_pkt*
1583 Vmware
1584 M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
1585 S: Maintained
1586 F: hw/net/vmxnet*
1587 F: hw/scsi/vmw_pvscsi*
1588 F: tests/vmxnet3-test.c
1590 Rocker
1591 M: Jiri Pirko <jiri@resnulli.us>
1592 S: Maintained
1593 F: hw/net/rocker/
1594 F: tests/rocker/
1595 F: docs/specs/rocker.txt
1597 NVDIMM
1598 M: Xiao Guangrong <xiaoguangrong.eric@gmail.com>
1599 S: Maintained
1600 F: hw/acpi/nvdimm.c
1601 F: hw/mem/nvdimm.c
1602 F: include/hw/mem/nvdimm.h
1603 F: docs/nvdimm.txt
1605 e1000x
1606 M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
1607 S: Maintained
1608 F: hw/net/e1000x*
1610 e1000e
1611 M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
1612 S: Maintained
1613 F: hw/net/e1000e*
1615 eepro100
1616 M: Stefan Weil <sw@weilnetz.de>
1617 S: Maintained
1618 F: hw/net/eepro100.c
1620 Generic Loader
1621 M: Alistair Francis <alistair@alistair23.me>
1622 S: Maintained
1623 F: hw/core/generic-loader.c
1624 F: include/hw/core/generic-loader.h
1625 F: docs/generic-loader.txt
1627 Intel Hexadecimal Object File Loader
1628 M: Su Hang <suhang16@mails.ucas.ac.cn>
1629 S: Maintained
1630 F: tests/hexloader-test.c
1631 F: tests/data/hex-loader/test.hex
1633 CHRP NVRAM
1634 M: Thomas Huth <thuth@redhat.com>
1635 S: Maintained
1636 F: hw/nvram/chrp_nvram.c
1637 F: include/hw/nvram/chrp_nvram.h
1638 F: tests/prom-env-test.c
1640 VM Generation ID
1641 M: Ben Warren <ben@skyportsystems.com>
1642 S: Maintained
1643 F: hw/acpi/vmgenid.c
1644 F: include/hw/acpi/vmgenid.h
1645 F: docs/specs/vmgenid.txt
1646 F: tests/vmgenid-test.c
1647 F: stubs/vmgenid.c
1649 Unimplemented device
1650 M: Peter Maydell <peter.maydell@linaro.org>
1651 R: Philippe Mathieu-Daudé <f4bug@amsat.org>
1652 S: Maintained
1653 F: include/hw/misc/unimp.h
1654 F: hw/misc/unimp.c
1656 Standard VGA
1657 M: Gerd Hoffmann <kraxel@redhat.com>
1658 S: Maintained
1659 F: hw/display/vga*
1660 F: hw/display/bochs-display.c
1661 F: include/hw/display/vga.h
1662 F: include/hw/display/bochs-vbe.h
1664 ramfb
1665 M: Gerd Hoffmann <kraxel@redhat.com>
1666 S: Maintained
1667 F: hw/display/ramfb*.c
1668 F: include/hw/display/ramfb.h
1670 virtio-gpu
1671 M: Gerd Hoffmann <kraxel@redhat.com>
1672 S: Maintained
1673 F: hw/display/virtio-gpu*
1674 F: hw/display/virtio-vga.c
1675 F: include/hw/virtio/virtio-gpu.h
1677 Cirrus VGA
1678 M: Gerd Hoffmann <kraxel@redhat.com>
1679 S: Odd Fixes
1680 W: https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
1681 F: hw/display/cirrus*
1683 EDID Generator
1684 M: Gerd Hoffmann <kraxel@redhat.com>
1685 S: Maintained
1686 F: hw/display/edid*
1687 F: include/hw/display/edid.h
1688 F: qemu-edid.c
1690 Firmware configuration (fw_cfg)
1691 M: Philippe Mathieu-Daudé <philmd@redhat.com>
1692 R: Laszlo Ersek <lersek@redhat.com>
1693 R: Gerd Hoffmann <kraxel@redhat.com>
1694 S: Supported
1695 F: docs/specs/fw_cfg.txt
1696 F: hw/nvram/fw_cfg.c
1697 F: include/hw/nvram/fw_cfg.h
1698 F: include/standard-headers/linux/qemu_fw_cfg.h
1699 F: tests/libqos/fw_cfg.c
1700 F: tests/fw_cfg-test.c
1701 T: git https://github.com/philmd/qemu.git fw_cfg-next
1703 XIVE
1704 M: David Gibson <david@gibson.dropbear.id.au>
1705 M: Cédric Le Goater <clg@kaod.org>
1706 L: qemu-ppc@nongnu.org
1707 S: Supported
1708 F: hw/*/*xive*
1709 F: include/hw/*/*xive*
1711 Subsystems
1712 ----------
1713 Audio
1714 M: Gerd Hoffmann <kraxel@redhat.com>
1715 S: Maintained
1716 F: audio/
1717 F: hw/audio/
1718 F: include/hw/audio/
1719 F: tests/ac97-test.c
1720 F: tests/es1370-test.c
1721 F: tests/intel-hda-test.c
1723 Block layer core
1724 M: Kevin Wolf <kwolf@redhat.com>
1725 M: Max Reitz <mreitz@redhat.com>
1726 L: qemu-block@nongnu.org
1727 S: Supported
1728 F: block*
1729 F: block/
1730 F: hw/block/
1731 F: include/block/
1732 F: qemu-img*
1733 F: qemu-io*
1734 F: tests/qemu-iotests/
1735 F: util/qemu-progress.c
1736 F: qobject/block-qdict.c
1737 F: tests/check-block-qdict.c
1738 T: git https://repo.or.cz/qemu/kevin.git block
1740 Block I/O path
1741 M: Stefan Hajnoczi <stefanha@redhat.com>
1742 M: Fam Zheng <fam@euphon.net>
1743 L: qemu-block@nongnu.org
1744 S: Supported
1745 F: util/async.c
1746 F: util/aio-*.c
1747 F: block/io.c
1748 F: migration/block*
1749 F: include/block/aio.h
1750 F: include/block/aio-wait.h
1751 F: scripts/qemugdb/aio.py
1752 T: git https://github.com/stefanha/qemu.git block
1754 Block SCSI subsystem
1755 M: Paolo Bonzini <pbonzini@redhat.com>
1756 R: Fam Zheng <fam@euphon.net>
1757 L: qemu-block@nongnu.org
1758 S: Supported
1759 F: include/scsi/*
1760 F: scsi/*
1762 Block Jobs
1763 M: John Snow <jsnow@redhat.com>
1764 L: qemu-block@nongnu.org
1765 S: Supported
1766 F: blockjob.c
1767 F: include/block/blockjob.h
1768 F: job.c
1769 F: job-qmp.c
1770 F: include/qemu/job.h
1771 F: block/backup.c
1772 F: block/commit.c
1773 F: block/stream.c
1774 F: block/mirror.c
1775 F: qapi/job.json
1776 T: git https://github.com/jnsnow/qemu.git jobs
1778 Block QAPI, monitor, command line
1779 M: Markus Armbruster <armbru@redhat.com>
1780 S: Supported
1781 F: blockdev.c
1782 F: block/qapi.c
1783 F: qapi/block*.json
1784 F: qapi/transaction.json
1785 T: git https://repo.or.cz/qemu/armbru.git block-next
1787 Dirty Bitmaps
1788 M: Fam Zheng <fam@euphon.net>
1789 M: John Snow <jsnow@redhat.com>
1790 L: qemu-block@nongnu.org
1791 S: Supported
1792 F: util/hbitmap.c
1793 F: block/dirty-bitmap.c
1794 F: include/qemu/hbitmap.h
1795 F: include/block/dirty-bitmap.h
1796 F: tests/test-hbitmap.c
1797 F: docs/interop/bitmaps.rst
1798 T: git https://github.com/famz/qemu.git bitmaps
1799 T: git https://github.com/jnsnow/qemu.git bitmaps
1801 Character device backends
1802 M: Marc-André Lureau <marcandre.lureau@redhat.com>
1803 R: Paolo Bonzini <pbonzini@redhat.com>
1804 S: Maintained
1805 F: chardev/
1806 F: include/chardev/
1807 F: qapi/char.json
1809 Character Devices (Braille)
1810 M: Samuel Thibault <samuel.thibault@ens-lyon.org>
1811 S: Maintained
1812 F: chardev/baum.c
1814 Command line option argument parsing
1815 M: Markus Armbruster <armbru@redhat.com>
1816 S: Supported
1817 F: include/qemu/option.h
1818 F: tests/test-keyval.c
1819 F: tests/test-qemu-opts.c
1820 F: util/keyval.c
1821 F: util/qemu-option.c
1823 Coverity model
1824 M: Markus Armbruster <armbru@redhat.com>
1825 S: Supported
1826 F: scripts/coverity-model.c
1829 L: qemu-devel@nongnu.org
1830 S: Supported
1831 F: qom/cpu.c
1832 F: include/qom/cpu.h
1834 Device Tree
1835 M: Alistair Francis <alistair.francis@wdc.com>
1836 R: David Gibson <david@gibson.dropbear.id.au>
1837 S: Maintained
1838 F: device_tree.c
1839 F: include/sysemu/device_tree.h
1841 Dump
1842 S: Supported
1843 M: Marc-André Lureau <marcandre.lureau@redhat.com>
1844 F: dump.c
1845 F: hw/misc/vmcoreinfo.c
1846 F: include/hw/misc/vmcoreinfo.h
1847 F: include/sysemu/dump-arch.h
1848 F: include/sysemu/dump.h
1849 F: scripts/dump-guest-memory.py
1850 F: stubs/dump.c
1852 Error reporting
1853 M: Markus Armbruster <armbru@redhat.com>
1854 S: Supported
1855 F: include/qapi/error.h
1856 F: include/qemu/error-report.h
1857 F: util/error.c
1858 F: util/qemu-error.c
1860 GDB stub
1861 S: Orphan
1862 F: gdbstub*
1863 F: gdb-xml/
1865 Memory API
1866 M: Paolo Bonzini <pbonzini@redhat.com>
1867 S: Supported
1868 F: include/exec/ioport.h
1869 F: ioport.c
1870 F: include/exec/memory.h
1871 F: include/exec/ram_addr.h
1872 F: memory.c
1873 F: include/exec/memory-internal.h
1874 F: exec.c
1876 SPICE
1877 M: Gerd Hoffmann <kraxel@redhat.com>
1878 S: Supported
1879 F: include/ui/qemu-spice.h
1880 F: include/ui/spice-display.h
1881 F: ui/spice-*.c
1882 F: audio/spiceaudio.c
1883 F: hw/display/qxl*
1884 F: qapi/ui.json
1885 F: docs/spice-port-fqdn.txt
1887 Graphics
1888 M: Gerd Hoffmann <kraxel@redhat.com>
1889 S: Odd Fixes
1890 F: ui/
1891 F: include/ui/
1892 F: qapi/ui.json
1893 F: util/drm.c
1895 Cocoa graphics
1896 M: Peter Maydell <peter.maydell@linaro.org>
1897 S: Odd Fixes
1898 F: ui/cocoa.m
1900 Main loop
1901 M: Paolo Bonzini <pbonzini@redhat.com>
1902 S: Maintained
1903 F: cpus.c
1904 F: util/main-loop.c
1905 F: util/qemu-timer.c
1906 F: vl.c
1907 F: qapi/run-state.json
1909 Human Monitor (HMP)
1910 M: Dr. David Alan Gilbert <dgilbert@redhat.com>
1911 S: Maintained
1912 F: monitor.c
1913 F: hmp.[ch]
1914 F: hmp-commands*.hx
1915 F: include/monitor/hmp-target.h
1916 F: tests/test-hmp.c
1917 F: include/qemu/qemu-print.h
1918 F: util/qemu-print.c
1920 Network device backends
1921 M: Jason Wang <jasowang@redhat.com>
1922 S: Maintained
1923 F: net/
1924 F: include/net/
1925 T: git https://github.com/jasowang/qemu.git net
1926 F: qapi/net.json
1928 Netmap network backend
1929 M: Luigi Rizzo <rizzo@iet.unipi.it>
1930 M: Giuseppe Lettieri <g.lettieri@iet.unipi.it>
1931 M: Vincenzo Maffione <v.maffione@gmail.com>
1932 W: http://info.iet.unipi.it/~luigi/netmap/
1933 S: Maintained
1934 F: net/netmap.c
1936 NUMA
1937 M: Eduardo Habkost <ehabkost@redhat.com>
1938 S: Maintained
1939 F: numa.c
1940 F: include/sysemu/numa.h
1941 T: git https://github.com/ehabkost/qemu.git machine-next
1943 Host Memory Backends
1944 M: Eduardo Habkost <ehabkost@redhat.com>
1945 M: Igor Mammedov <imammedo@redhat.com>
1946 S: Maintained
1947 F: backends/hostmem*.c
1948 F: include/sysemu/hostmem.h
1949 T: git https://github.com/ehabkost/qemu.git machine-next
1951 Cryptodev Backends
1952 M: Gonglei <arei.gonglei@huawei.com>
1953 S: Maintained
1954 F: include/sysemu/cryptodev*.h
1955 F: backends/cryptodev*.c
1957 Python scripts
1958 M: Eduardo Habkost <ehabkost@redhat.com>
1959 M: Cleber Rosa <crosa@redhat.com>
1960 S: Odd fixes
1961 F: scripts/qmp/*
1962 F: scripts/*.py
1963 F: tests/*.py
1965 QAPI
1966 M: Markus Armbruster <armbru@redhat.com>
1967 M: Michael Roth <mdroth@linux.vnet.ibm.com>
1968 S: Supported
1969 F: qapi/
1970 X: qapi/*.json
1971 F: include/qapi/
1972 X: include/qapi/qmp/
1973 F: include/qapi/qmp/dispatch.h
1974 F: tests/qapi-schema/
1975 F: tests/test-*-visitor.c
1976 F: tests/test-qapi-*.c
1977 F: tests/test-qmp-*.c
1978 F: tests/test-visitor-serialization.c
1979 F: scripts/qapi-gen.py
1980 F: scripts/qapi/*
1981 F: docs/devel/qapi*
1982 T: git https://repo.or.cz/qemu/armbru.git qapi-next
1984 QAPI Schema
1985 M: Eric Blake <eblake@redhat.com>
1986 M: Markus Armbruster <armbru@redhat.com>
1987 S: Supported
1988 F: qapi/*.json
1989 T: git https://repo.or.cz/qemu/armbru.git qapi-next
1991 QObject
1992 M: Markus Armbruster <armbru@redhat.com>
1993 S: Supported
1994 F: qobject/
1995 F: include/qapi/qmp/
1996 X: include/qapi/qmp/dispatch.h
1997 F: scripts/coccinelle/qobject.cocci
1998 F: tests/check-qdict.c
1999 F: tests/check-qjson.c
2000 F: tests/check-qlist.c
2001 F: tests/check-qlit.c
2002 F: tests/check-qnull.c
2003 F: tests/check-qnum.c
2004 F: tests/check-qobject.c
2005 F: tests/check-qstring.c
2006 F: tests/data/qobject/qdict.txt
2007 T: git https://repo.or.cz/qemu/armbru.git qapi-next
2009 QEMU Guest Agent
2010 M: Michael Roth <mdroth@linux.vnet.ibm.com>
2011 S: Maintained
2012 F: qga/
2013 F: qemu-ga.texi
2014 F: scripts/qemu-guest-agent/
2015 F: tests/test-qga.c
2016 F: docs/interop/qemu-ga-ref.texi
2017 T: git https://github.com/mdroth/qemu.git qga
2020 M: Andreas Färber <afaerber@suse.de>
2021 S: Supported
2022 T: git https://github.com/afaerber/qemu-cpu.git qom-next
2023 F: include/qom/
2024 X: include/qom/cpu.h
2025 F: qom/
2026 X: qom/cpu.c
2027 F: tests/check-qom-interface.c
2028 F: tests/check-qom-proplist.c
2031 M: Markus Armbruster <armbru@redhat.com>
2032 S: Supported
2033 F: qmp.c
2034 F: monitor.c
2035 F: docs/devel/*qmp-*
2036 F: docs/interop/*qmp-*
2037 F: scripts/qmp/
2038 F: tests/qmp-test.c
2039 F: tests/qmp-cmd-test.c
2040 T: git https://repo.or.cz/qemu/armbru.git qapi-next
2042 qtest
2043 M: Thomas Huth <thuth@redhat.com>
2044 M: Laurent Vivier <lvivier@redhat.com>
2045 R: Paolo Bonzini <pbonzini@redhat.com>
2046 S: Maintained
2047 F: qtest.c
2048 F: accel/qtest.c
2049 F: tests/libqtest.*
2050 F: tests/libqos/
2051 F: tests/*-test.c
2053 Register API
2054 M: Alistair Francis <alistair@alistair23.me>
2055 S: Maintained
2056 F: hw/core/register.c
2057 F: include/hw/register.h
2058 F: include/hw/registerfields.h
2060 SLIRP
2061 M: Samuel Thibault <samuel.thibault@ens-lyon.org>
2062 M: Jan Kiszka <jan.kiszka@siemens.com>
2063 S: Maintained
2064 F: slirp/
2065 F: net/slirp.c
2066 F: include/net/slirp.h
2067 T: git https://people.debian.org/~sthibault/qemu.git slirp
2068 T: git git://git.kiszka.org/qemu.git queues/slirp
2070 Stubs
2071 M: Paolo Bonzini <pbonzini@redhat.com>
2072 S: Maintained
2073 F: stubs/
2075 Tracing
2076 M: Stefan Hajnoczi <stefanha@redhat.com>
2077 S: Maintained
2078 F: trace/
2079 F: trace-events
2080 F: qemu-option-trace.texi
2081 F: scripts/tracetool.py
2082 F: scripts/tracetool/
2083 F: scripts/qemu-trace-stap*
2084 F: docs/devel/tracing.txt
2085 T: git https://github.com/stefanha/qemu.git tracing
2088 M: Stefan Berger <stefanb@linux.ibm.com>
2089 S: Maintained
2090 F: tpm.c
2091 F: stubs/tpm.c
2092 F: hw/tpm/*
2093 F: include/hw/acpi/tpm.h
2094 F: include/sysemu/tpm*
2095 F: qapi/tpm.json
2096 F: backends/tpm.c
2097 F: tests/*tpm*
2098 T: git https://github.com/stefanberger/qemu-tpm.git tpm-next
2100 Checkpatch
2101 S: Odd Fixes
2102 F: scripts/checkpatch.pl
2104 Migration
2105 M: Juan Quintela <quintela@redhat.com>
2106 M: Dr. David Alan Gilbert <dgilbert@redhat.com>
2107 S: Maintained
2108 F: include/migration/
2109 F: migration/
2110 F: scripts/vmstate-static-checker.py
2111 F: tests/vmstate-static-checker-data/
2112 F: tests/migration-test.c
2113 F: docs/devel/migration.rst
2114 F: qapi/migration.json
2116 Seccomp
2117 M: Eduardo Otubo <otubo@redhat.com>
2118 S: Supported
2119 F: qemu-seccomp.c
2120 F: include/sysemu/seccomp.h
2122 Cryptography
2123 M: Daniel P. Berrange <berrange@redhat.com>
2124 S: Maintained
2125 F: crypto/
2126 F: include/crypto/
2127 F: tests/test-crypto-*
2128 F: tests/benchmark-crypto-*
2129 F: tests/crypto-tls-*
2130 F: tests/pkix_asn1_tab.c
2131 F: qemu.sasl
2133 Coroutines
2134 M: Stefan Hajnoczi <stefanha@redhat.com>
2135 M: Kevin Wolf <kwolf@redhat.com>
2136 S: Maintained
2137 F: util/*coroutine*
2138 F: include/qemu/coroutine*
2139 F: tests/test-coroutine.c
2141 Buffers
2142 M: Daniel P. Berrange <berrange@redhat.com>
2143 S: Odd fixes
2144 F: util/buffer.c
2145 F: include/qemu/buffer.h
2147 I/O Channels
2148 M: Daniel P. Berrange <berrange@redhat.com>
2149 S: Maintained
2150 F: io/
2151 F: include/io/
2152 F: tests/test-io-*
2154 User authorization
2155 M: Daniel P. Berrange <berrange@redhat.com>
2156 S: Maintained
2157 F: authz/
2158 F: qapi/authz.json
2159 F: include/authz/
2160 F: tests/test-authz-*
2162 Sockets
2163 M: Daniel P. Berrange <berrange@redhat.com>
2164 M: Gerd Hoffmann <kraxel@redhat.com>
2165 S: Maintained
2166 F: include/qemu/sockets.h
2167 F: util/qemu-sockets.c
2168 F: qapi/sockets.json
2170 File monitor
2171 M: Daniel P. Berrange <berrange@redhat.com>
2172 S: Odd fixes
2173 F: util/filemonitor*.c
2174 F: include/qemu/filemonitor.h
2175 F: tests/test-util-filemonitor.c
2177 Throttling infrastructure
2178 M: Alberto Garcia <berto@igalia.com>
2179 S: Supported
2180 F: block/throttle-groups.c
2181 F: include/block/throttle-groups.h
2182 F: include/qemu/throttle*.h
2183 F: util/throttle.c
2184 F: docs/throttle.txt
2185 F: tests/test-throttle.c
2186 L: qemu-block@nongnu.org
2188 UUID
2189 M: Fam Zheng <fam@euphon.net>
2190 S: Supported
2191 F: util/uuid.c
2192 F: include/qemu/uuid.h
2193 F: tests/test-uuid.c
2195 COLO Framework
2196 M: zhanghailiang <zhang.zhanghailiang@huawei.com>
2197 S: Maintained
2198 F: migration/colo*
2199 F: include/migration/colo.h
2200 F: include/migration/failover.h
2201 F: docs/COLO-FT.txt
2203 COLO Proxy
2204 M: Zhang Chen <chen.zhang@intel.com>
2205 M: Li Zhijian <lizhijian@cn.fujitsu.com>
2206 S: Supported
2207 F: docs/colo-proxy.txt
2208 F: net/colo*
2209 F: net/filter-rewriter.c
2210 F: net/filter-mirror.c
2212 Record/replay
2213 M: Pavel Dovgalyuk <pavel.dovgaluk@ispras.ru>
2214 R: Paolo Bonzini <pbonzini@redhat.com>
2215 W: https://wiki.qemu.org/Features/record-replay
2216 S: Supported
2217 F: replay/*
2218 F: block/blkreplay.c
2219 F: net/filter-replay.c
2220 F: include/sysemu/replay.h
2221 F: docs/replay.txt
2222 F: stubs/replay.c
2224 IOVA Tree
2225 M: Peter Xu <peterx@redhat.com>
2226 S: Maintained
2227 F: include/qemu/iova-tree.h
2228 F: util/iova-tree.c
2230 elf2dmp
2231 M: Viktor Prutyanov <viktor.prutyanov@phystech.edu>
2232 S: Maintained
2233 F: contrib/elf2dmp/
2235 I2C and SMBus
2236 M: Corey Minyard <cminyard@mvista.com>
2237 S: Maintained
2238 F: hw/i2c/core.c
2239 F: hw/i2c/smbus_slave.c
2240 F: hw/i2c/smbus_master.c
2241 F: hw/i2c/smbus_eeprom.c
2242 F: include/hw/i2c/i2c.h
2243 F: include/hw/i2c/smbus_master.h
2244 F: include/hw/i2c/smbus_slave.h
2245 F: include/hw/i2c/smbus_eeprom.h
2247 EDK2 Firmware
2248 M: Laszlo Ersek <lersek@redhat.com>
2249 M: Philippe Mathieu-Daudé <philmd@redhat.com>
2250 S: Supported
2251 F: pc-bios/descriptors/??-edk2-*.json
2252 F: pc-bios/edk2-*
2253 F: roms/Makefile.edk2
2254 F: roms/edk2
2255 F: roms/edk2-*
2256 F: tests/data/uefi-boot-images/
2257 F: tests/uefi-test-tools/
2259 Usermode Emulation
2260 ------------------
2261 Overall
2262 M: Riku Voipio <riku.voipio@iki.fi>
2263 S: Maintained
2264 F: thunk.c
2265 F: accel/tcg/user-exec*.c
2267 BSD user
2268 S: Orphan
2269 F: bsd-user/
2270 F: default-configs/*-bsd-user.mak
2272 Linux user
2273 M: Riku Voipio <riku.voipio@iki.fi>
2274 R: Laurent Vivier <laurent@vivier.eu>
2275 S: Maintained
2276 F: linux-user/
2277 F: default-configs/*-linux-user.mak
2278 F: scripts/qemu-binfmt-conf.sh
2280 Tiny Code Generator (TCG)
2281 -------------------------
2282 Common code
2283 M: Richard Henderson <rth@twiddle.net>
2284 S: Maintained
2285 F: tcg/
2287 AArch64 target
2288 M: Claudio Fontana <claudio.fontana@huawei.com>
2289 M: Claudio Fontana <claudio.fontana@gmail.com>
2290 S: Maintained
2291 L: qemu-arm@nongnu.org
2292 F: tcg/aarch64/
2293 F: disas/arm-a64.cc
2294 F: disas/libvixl/
2296 ARM target
2297 M: Andrzej Zaborowski <balrogg@gmail.com>
2298 S: Maintained
2299 L: qemu-arm@nongnu.org
2300 F: tcg/arm/
2301 F: disas/arm.c
2303 i386 target
2304 M: Richard Henderson <rth@twiddle.net>
2305 S: Maintained
2306 F: tcg/i386/
2307 F: disas/i386.c
2309 MIPS target
2310 M: Aurelien Jarno <aurelien@aurel32.net>
2311 R: Aleksandar Rikalo <arikalo@wavecomp.com>
2312 S: Maintained
2313 F: tcg/mips/
2314 F: disas/mips.c
2317 M: Richard Henderson <rth@twiddle.net>
2318 S: Odd Fixes
2319 F: tcg/ppc/
2320 F: disas/ppc.c
2322 RISC-V
2323 M: Palmer Dabbelt <palmer@sifive.com>
2324 M: Alistair Francis <Alistair.Francis@wdc.com>
2325 L: qemu-riscv@nongnu.org
2326 S: Maintained
2327 F: tcg/riscv/
2328 F: disas/riscv.c
2330 S390 target
2331 M: Richard Henderson <rth@twiddle.net>
2332 S: Maintained
2333 F: tcg/s390/
2334 F: disas/s390.c
2335 L: qemu-s390x@nongnu.org
2337 SPARC target
2338 S: Odd Fixes
2339 F: tcg/sparc/
2340 F: disas/sparc.c
2342 TCI target
2343 M: Stefan Weil <sw@weilnetz.de>
2344 S: Maintained
2345 F: tcg/tci/
2346 F: tcg/tci.c
2347 F: disas/tci.c
2349 Block drivers
2350 -------------
2351 VMDK
2352 M: Fam Zheng <fam@euphon.net>
2353 L: qemu-block@nongnu.org
2354 S: Supported
2355 F: block/vmdk.c
2358 M: Josh Durgin <jdurgin@redhat.com>
2359 L: qemu-block@nongnu.org
2360 S: Supported
2361 F: block/rbd.c
2363 Sheepdog
2364 M: Liu Yuan <namei.unix@gmail.com>
2365 L: qemu-block@nongnu.org
2366 L: sheepdog@lists.wpkg.org
2367 S: Odd Fixes
2368 F: block/sheepdog.c
2370 VHDX
2371 M: Jeff Cody <codyprime@gmail.com>
2372 L: qemu-block@nongnu.org
2373 S: Supported
2374 F: block/vhdx*
2377 M: Stefan Weil <sw@weilnetz.de>
2378 L: qemu-block@nongnu.org
2379 S: Maintained
2380 F: block/vdi.c
2382 iSCSI
2383 M: Ronnie Sahlberg <ronniesahlberg@gmail.com>
2384 M: Paolo Bonzini <pbonzini@redhat.com>
2385 M: Peter Lieven <pl@kamp.de>
2386 L: qemu-block@nongnu.org
2387 S: Odd Fixes
2388 F: block/iscsi.c
2389 F: block/iscsi-opts.c
2391 Network Block Device (NBD)
2392 M: Eric Blake <eblake@redhat.com>
2393 L: qemu-block@nongnu.org
2394 S: Maintained
2395 F: block/nbd*
2396 F: nbd/
2397 F: include/block/nbd*
2398 F: qemu-nbd.*
2399 F: blockdev-nbd.c
2400 F: docs/interop/nbd.txt
2401 T: git https://repo.or.cz/qemu/ericb.git nbd
2404 M: Peter Lieven <pl@kamp.de>
2405 L: qemu-block@nongnu.org
2406 S: Maintained
2407 F: block/nfs.c
2410 M: Richard W.M. Jones <rjones@redhat.com>
2411 L: qemu-block@nongnu.org
2412 S: Supported
2413 F: block/ssh.c
2415 CURL
2416 L: qemu-block@nongnu.org
2417 S: Odd Fixes
2418 F: block/curl.c
2420 GLUSTER
2421 L: qemu-block@nongnu.org
2422 L: integration@gluster.org
2423 S: Odd Fixes
2424 F: block/gluster.c
2426 Null Block Driver
2427 M: Fam Zheng <fam@euphon.net>
2428 L: qemu-block@nongnu.org
2429 S: Supported
2430 F: block/null.c
2432 NVMe Block Driver
2433 M: Fam Zheng <fam@euphon.net>
2434 L: qemu-block@nongnu.org
2435 S: Supported
2436 F: block/nvme*
2438 Bootdevice
2439 M: Gonglei <arei.gonglei@huawei.com>
2440 S: Maintained
2441 F: bootdevice.c
2443 Quorum
2444 M: Alberto Garcia <berto@igalia.com>
2445 S: Supported
2446 F: block/quorum.c
2447 L: qemu-block@nongnu.org
2449 blklogwrites
2450 M: Ari Sundholm <ari@tuxera.com>
2451 L: qemu-block@nongnu.org
2452 S: Supported
2453 F: block/blklogwrites.c
2455 blkverify
2456 M: Stefan Hajnoczi <stefanha@redhat.com>
2457 L: qemu-block@nongnu.org
2458 S: Supported
2459 F: block/blkverify.c
2461 bochs
2462 M: Stefan Hajnoczi <stefanha@redhat.com>
2463 L: qemu-block@nongnu.org
2464 S: Supported
2465 F: block/bochs.c
2467 cloop
2468 M: Stefan Hajnoczi <stefanha@redhat.com>
2469 L: qemu-block@nongnu.org
2470 S: Supported
2471 F: block/cloop.c
2474 M: Stefan Hajnoczi <stefanha@redhat.com>
2475 L: qemu-block@nongnu.org
2476 S: Supported
2477 F: block/dmg.c
2479 parallels
2480 M: Stefan Hajnoczi <stefanha@redhat.com>
2481 M: Denis V. Lunev <den@openvz.org>
2482 L: qemu-block@nongnu.org
2483 S: Supported
2484 F: block/parallels.c
2485 F: docs/interop/parallels.txt
2488 M: Stefan Hajnoczi <stefanha@redhat.com>
2489 L: qemu-block@nongnu.org
2490 S: Supported
2491 F: block/qed.c
2494 M: Kevin Wolf <kwolf@redhat.com>
2495 L: qemu-block@nongnu.org
2496 S: Supported
2497 F: block/linux-aio.c
2498 F: include/block/raw-aio.h
2499 F: block/raw-format.c
2500 F: block/file-posix.c
2501 F: block/file-win32.c
2502 F: block/win32-aio.c
2504 qcow2
2505 M: Kevin Wolf <kwolf@redhat.com>
2506 M: Max Reitz <mreitz@redhat.com>
2507 L: qemu-block@nongnu.org
2508 S: Supported
2509 F: block/qcow2*
2510 F: docs/interop/qcow2.txt
2512 qcow
2513 M: Kevin Wolf <kwolf@redhat.com>
2514 L: qemu-block@nongnu.org
2515 S: Supported
2516 F: block/qcow.c
2518 blkdebug
2519 M: Kevin Wolf <kwolf@redhat.com>
2520 M: Max Reitz <mreitz@redhat.com>
2521 L: qemu-block@nongnu.org
2522 S: Supported
2523 F: block/blkdebug.c
2526 M: Kevin Wolf <kwolf@redhat.com>
2527 L: qemu-block@nongnu.org
2528 S: Supported
2529 F: block/vpc.c
2531 vvfat
2532 M: Kevin Wolf <kwolf@redhat.com>
2533 L: qemu-block@nongnu.org
2534 S: Supported
2535 F: block/vvfat.c
2537 Image format fuzzer
2538 M: Stefan Hajnoczi <stefanha@redhat.com>
2539 L: qemu-block@nongnu.org
2540 S: Supported
2541 F: tests/image-fuzzer/
2543 Replication
2544 M: Wen Congyang <wencongyang2@huawei.com>
2545 M: Xie Changlong <xiechanglong.d@gmail.com>
2546 S: Supported
2547 F: replication*
2548 F: block/replication.c
2549 F: tests/test-replication.c
2550 F: docs/block-replication.txt
2552 PVRDMA
2553 M: Yuval Shaia <yuval.shaia@oracle.com>
2554 M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
2555 S: Maintained
2556 F: hw/rdma/*
2557 F: hw/rdma/vmw/*
2558 F: docs/pvrdma.txt
2559 F: contrib/rdmacm-mux/*
2560 F: qapi/rdma.json
2562 Build and test automation
2563 -------------------------
2564 Build and test automation
2565 M: Alex Bennée <alex.bennee@linaro.org>
2566 M: Fam Zheng <fam@euphon.net>
2567 R: Philippe Mathieu-Daudé <philmd@redhat.com>
2568 L: qemu-devel@nongnu.org
2569 S: Maintained
2570 F: .travis.yml
2571 F: scripts/travis/
2572 F: .shippable.yml
2573 F: tests/docker/
2574 F: tests/vm/
2575 F: scripts/archive-source.sh
2576 W: https://travis-ci.org/qemu/qemu
2577 W: https://app.shippable.com/github/qemu/qemu
2578 W: http://patchew.org/QEMU/
2580 FreeBSD Hosted Continuous Integration
2581 M: Ed Maste <emaste@freebsd.org>
2582 M: Li-Wen Hsu <lwhsu@freebsd.org>
2583 L: qemu-devel@nongnu.org
2584 S: Maintained
2585 F: .cirrus.yml
2586 W: https://cirrus-ci.com/github/qemu/qemu
2588 GitLab Continuous Integration
2589 M: Thomas Huth <thuth@redhat.com>
2590 S: Maintained
2591 F: .gitlab-ci.yml
2593 Guest Test Compilation Support
2594 M: Alex Bennée <alex.bennee@linaro.org>
2595 R: Philippe Mathieu-Daudé <f4bug@amsat.org>
2596 S: Maintained
2597 F: tests/tcg/Makefile
2598 F: tests/tcg/Makefile.include
2599 L: qemu-devel@nongnu.org
2601 Documentation
2602 -------------
2603 Build system architecture
2604 M: Daniel P. Berrange <berrange@redhat.com>
2605 S: Odd Fixes
2606 F: docs/devel/build-system.txt
2608 GIT Data Mining Config
2609 M: Alex Bennée <alex.bennee@linaro.org>
2610 S: Odd Fixes
2611 F: gitdm.config
2612 F: contrib/gitdm/*
2614 Incompatible changes
2615 R: libvir-list@redhat.com
2616 F: qemu-deprecated.texi
2618 Build System
2619 ------------
2620 GIT submodules
2621 M: Daniel P. Berrange <berrange@redhat.com>
2622 S: Odd Fixes
2623 F: scripts/git-submodule.sh
2625 Sphinx documentation configuration and build machinery
2626 M: Peter Maydell <peter.maydell@linaro.org>
2627 S: Maintained
2628 F: docs/conf.py
2629 F: docs/*/conf.py