target/ppc: Fix xxspltib
[qemu/ar7.git] / MAINTAINERS
blob1f5f8b7a2c379df60aa959255d6fca363be65947
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
473 F: tests/tcg/alpha/system/
475 ARM Machines
476 ------------
477 Allwinner-a10
478 M: Beniamino Galvani <b.galvani@gmail.com>
479 M: Peter Maydell <peter.maydell@linaro.org>
480 L: qemu-arm@nongnu.org
481 S: Odd Fixes
482 F: hw/*/allwinner*
483 F: include/hw/*/allwinner*
484 F: hw/arm/cubieboard.c
486 ARM PrimeCell and CMSDK devices
487 M: Peter Maydell <peter.maydell@linaro.org>
488 L: qemu-arm@nongnu.org
489 S: Maintained
490 F: hw/char/pl011.c
491 F: include/hw/char/pl011.h
492 F: hw/display/pl110*
493 F: hw/dma/pl080.c
494 F: include/hw/dma/pl080.h
495 F: hw/dma/pl330.c
496 F: hw/gpio/pl061.c
497 F: hw/input/pl050.c
498 F: hw/intc/pl190.c
499 F: hw/sd/pl181.c
500 F: hw/ssi/pl022.c
501 F: include/hw/ssi/pl022.h
502 F: hw/timer/pl031.c
503 F: include/hw/timer/pl031.h
504 F: include/hw/arm/primecell.h
505 F: hw/timer/cmsdk-apb-timer.c
506 F: include/hw/timer/cmsdk-apb-timer.h
507 F: hw/timer/cmsdk-apb-dualtimer.c
508 F: include/hw/timer/cmsdk-apb-dualtimer.h
509 F: hw/char/cmsdk-apb-uart.c
510 F: include/hw/char/cmsdk-apb-uart.h
511 F: hw/watchdog/cmsdk-apb-watchdog.c
512 F: include/hw/watchdog/cmsdk-apb-watchdog.h
513 F: hw/misc/tz-ppc.c
514 F: include/hw/misc/tz-ppc.h
515 F: hw/misc/tz-mpc.c
516 F: include/hw/misc/tz-mpc.h
517 F: hw/misc/tz-msc.c
518 F: include/hw/misc/tz-msc.h
520 ARM cores
521 M: Peter Maydell <peter.maydell@linaro.org>
522 L: qemu-arm@nongnu.org
523 S: Maintained
524 F: hw/intc/arm*
525 F: hw/intc/gic_internal.h
526 F: hw/misc/a9scu.c
527 F: hw/misc/arm11scu.c
528 F: hw/misc/arm_l2x0.c
529 F: hw/timer/a9gtimer*
530 F: hw/timer/arm*
531 F: include/hw/arm/arm*.h
532 F: include/hw/intc/arm*
533 F: include/hw/misc/a9scu.h
534 F: include/hw/misc/arm11scu.h
535 F: include/hw/timer/a9gtimer.h
536 F: include/hw/timer/arm_mptimer.h
537 F: include/hw/timer/armv7m_systick.h
538 F: tests/test-arm-mptimer.c
540 Exynos
541 M: Igor Mitsyanko <i.mitsyanko@gmail.com>
542 M: Peter Maydell <peter.maydell@linaro.org>
543 L: qemu-arm@nongnu.org
544 S: Odd Fixes
545 F: hw/*/exynos*
546 F: include/hw/arm/exynos4210.h
548 Calxeda Highbank
549 M: Rob Herring <robh@kernel.org>
550 M: Peter Maydell <peter.maydell@linaro.org>
551 L: qemu-arm@nongnu.org
552 S: Odd Fixes
553 F: hw/arm/highbank.c
554 F: hw/net/xgmac.c
556 Canon DIGIC
557 M: Antony Pavlov <antonynpavlov@gmail.com>
558 M: Peter Maydell <peter.maydell@linaro.org>
559 L: qemu-arm@nongnu.org
560 S: Odd Fixes
561 F: include/hw/arm/digic.h
562 F: hw/*/digic*
563 F: include/hw/*/digic*
565 Gumstix
566 M: Peter Maydell <peter.maydell@linaro.org>
567 R: Philippe Mathieu-Daudé <f4bug@amsat.org>
568 L: qemu-devel@nongnu.org
569 L: qemu-arm@nongnu.org
570 S: Odd Fixes
571 F: hw/arm/gumstix.c
573 i.MX25 PDK
574 M: Peter Maydell <peter.maydell@linaro.org>
575 R: Jean-Christophe Dubois <jcd@tribudubois.net>
576 L: qemu-arm@nongnu.org
577 S: Odd Fixes
578 F: hw/arm/fsl-imx25.c
579 F: hw/arm/imx25_pdk.c
580 F: hw/misc/imx25_ccm.c
581 F: include/hw/arm/fsl-imx25.h
582 F: include/hw/misc/imx25_ccm.h
584 i.MX31 (kzm)
585 M: Peter Chubb <peter.chubb@nicta.com.au>
586 M: Peter Maydell <peter.maydell@linaro.org>
587 L: qemu-arm@nongnu.org
588 S: Odd Fixes
589 F: hw/arm/kzm.c
590 F: hw/*/imx_*
591 F: hw/*/*imx31*
592 F: include/hw/*/imx_*
593 F: include/hw/*/*imx31*
595 Integrator CP
596 M: Peter Maydell <peter.maydell@linaro.org>
597 L: qemu-arm@nongnu.org
598 S: Maintained
599 F: hw/arm/integratorcp.c
600 F: hw/misc/arm_integrator_debug.c
601 F: include/hw/misc/arm_integrator_debug.h
603 MCIMX6UL EVK / i.MX6ul
604 M: Peter Maydell <peter.maydell@linaro.org>
605 R: Jean-Christophe Dubois <jcd@tribudubois.net>
606 L: qemu-arm@nongnu.org
607 S: Odd Fixes
608 F: hw/arm/mcimx6ul-evk.c
609 F: hw/arm/fsl-imx6ul.c
610 F: hw/misc/imx6ul_ccm.c
611 F: include/hw/arm/fsl-imx6ul.h
612 F: include/hw/misc/imx6ul_ccm.h
614 MCIMX7D SABRE / i.MX7
615 M: Peter Maydell <peter.maydell@linaro.org>
616 R: Andrey Smirnov <andrew.smirnov@gmail.com>
617 L: qemu-arm@nongnu.org
618 S: Odd Fixes
619 F: hw/arm/mcimx7d-sabre.c
620 F: hw/arm/fsl-imx7.c
621 F: hw/misc/imx7_*.c
622 F: include/hw/arm/fsl-imx7.h
623 F: include/hw/misc/imx7_*.h
624 F: hw/pci-host/designware.c
625 F: include/hw/pci-host/designware.h
627 MPS2
628 M: Peter Maydell <peter.maydell@linaro.org>
629 L: qemu-arm@nongnu.org
630 S: Maintained
631 F: hw/arm/mps2.c
632 F: hw/arm/mps2-tz.c
633 F: hw/misc/mps2-*.c
634 F: include/hw/misc/mps2-*.h
635 F: hw/arm/armsse.c
636 F: include/hw/arm/armsse.h
637 F: hw/misc/iotkit-secctl.c
638 F: include/hw/misc/iotkit-secctl.h
639 F: hw/misc/iotkit-sysctl.c
640 F: include/hw/misc/iotkit-sysctl.h
641 F: hw/misc/iotkit-sysinfo.c
642 F: include/hw/misc/iotkit-sysinfo.h
643 F: hw/misc/armsse-cpuid.c
644 F: include/hw/misc/armsse-cpuid.h
645 F: hw/misc/armsse-mhu.c
646 F: include/hw/misc/armsse-mhu.h
648 Musca
649 M: Peter Maydell <peter.maydell@linaro.org>
650 L: qemu-arm@nongnu.org
651 S: Maintained
652 F: hw/arm/musca.c
654 Musicpal
655 M: Jan Kiszka <jan.kiszka@web.de>
656 M: Peter Maydell <peter.maydell@linaro.org>
657 L: qemu-arm@nongnu.org
658 S: Odd Fixes
659 F: hw/arm/musicpal.c
661 nSeries
662 M: Andrzej Zaborowski <balrogg@gmail.com>
663 M: Peter Maydell <peter.maydell@linaro.org>
664 L: qemu-arm@nongnu.org
665 S: Odd Fixes
666 F: hw/arm/nseries.c
667 F: hw/display/blizzard.c
668 F: hw/input/lm832x.c
669 F: hw/input/tsc2005.c
670 F: hw/misc/cbus.c
671 F: hw/timer/twl92230.c
672 F: include/hw/display/blizzard.h
673 F: include/hw/input/tsc2xxx.h
674 F: include/hw/misc/cbus.h
676 Palm
677 M: Andrzej Zaborowski <balrogg@gmail.com>
678 M: Peter Maydell <peter.maydell@linaro.org>
679 L: qemu-arm@nongnu.org
680 S: Odd Fixes
681 F: hw/arm/palm.c
682 F: hw/input/tsc210x.c
683 F: include/hw/input/tsc2xxx.h
685 Raspberry Pi
686 M: Peter Maydell <peter.maydell@linaro.org>
687 R: Andrew Baumann <Andrew.Baumann@microsoft.com>
688 R: Philippe Mathieu-Daudé <f4bug@amsat.org>
689 L: qemu-arm@nongnu.org
690 S: Odd Fixes
691 F: hw/arm/raspi.c
692 F: hw/arm/raspi_platform.h
693 F: hw/*/bcm283*
694 F: include/hw/arm/raspi*
695 F: include/hw/*/bcm283*
697 Real View
698 M: Peter Maydell <peter.maydell@linaro.org>
699 L: qemu-arm@nongnu.org
700 S: Maintained
701 F: hw/arm/realview*
702 F: hw/cpu/realview_mpcore.c
703 F: hw/intc/realview_gic.c
704 F: include/hw/intc/realview_gic.h
706 PXA2XX
707 M: Andrzej Zaborowski <balrogg@gmail.com>
708 M: Peter Maydell <peter.maydell@linaro.org>
709 L: qemu-arm@nongnu.org
710 S: Odd Fixes
711 F: hw/arm/mainstone.c
712 F: hw/arm/spitz.c
713 F: hw/arm/tosa.c
714 F: hw/arm/z2.c
715 F: hw/*/pxa2xx*
716 F: hw/display/tc6393xb.c
717 F: hw/gpio/max7310.c
718 F: hw/gpio/zaurus.c
719 F: hw/misc/mst_fpga.c
720 F: hw/misc/max111x.c
721 F: include/hw/arm/pxa.h
722 F: include/hw/arm/sharpsl.h
723 F: include/hw/display/tc6393xb.h
725 SABRELITE / i.MX6
726 M: Peter Maydell <peter.maydell@linaro.org>
727 R: Jean-Christophe Dubois <jcd@tribudubois.net>
728 L: qemu-arm@nongnu.org
729 S: Odd Fixes
730 F: hw/arm/sabrelite.c
731 F: hw/arm/fsl-imx6.c
732 F: hw/misc/imx6_*.c
733 F: hw/ssi/imx_spi.c
734 F: include/hw/arm/fsl-imx6.h
735 F: include/hw/misc/imx6_*.h
736 F: include/hw/ssi/imx_spi.h
738 Sharp SL-5500 (Collie) PDA
739 M: Peter Maydell <peter.maydell@linaro.org>
740 L: qemu-arm@nongnu.org
741 S: Odd Fixes
742 F: hw/arm/collie.c
743 F: hw/arm/strongarm*
745 Stellaris
746 M: Peter Maydell <peter.maydell@linaro.org>
747 L: qemu-arm@nongnu.org
748 S: Maintained
749 F: hw/*/stellaris*
750 F: include/hw/input/gamepad.h
752 Versatile Express
753 M: Peter Maydell <peter.maydell@linaro.org>
754 L: qemu-arm@nongnu.org
755 S: Maintained
756 F: hw/arm/vexpress.c
758 Versatile PB
759 M: Peter Maydell <peter.maydell@linaro.org>
760 L: qemu-arm@nongnu.org
761 S: Maintained
762 F: hw/*/versatile*
763 F: hw/misc/arm_sysctl.c
765 Virt
766 M: Peter Maydell <peter.maydell@linaro.org>
767 L: qemu-arm@nongnu.org
768 S: Maintained
769 F: hw/arm/virt*
770 F: include/hw/arm/virt.h
772 Xilinx Zynq
773 M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
774 M: Alistair Francis <alistair@alistair23.me>
775 M: Peter Maydell <peter.maydell@linaro.org>
776 L: qemu-arm@nongnu.org
777 S: Maintained
778 F: hw/*/xilinx_*
779 F: hw/*/cadence_*
780 F: hw/misc/zynq*
781 F: include/hw/misc/zynq*
782 X: hw/ssi/xilinx_*
784 Xilinx ZynqMP
785 M: Alistair Francis <alistair@alistair23.me>
786 M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
787 M: Peter Maydell <peter.maydell@linaro.org>
788 L: qemu-arm@nongnu.org
789 S: Maintained
790 F: hw/*/xlnx*.c
791 F: include/hw/*/xlnx*.h
792 F: include/hw/ssi/xilinx_spips.h
793 F: hw/display/dpcd.c
794 F: include/hw/display/dpcd.h
796 ARM ACPI Subsystem
797 M: Shannon Zhao <shannon.zhaosl@gmail.com>
798 L: qemu-arm@nongnu.org
799 S: Maintained
800 F: hw/arm/virt-acpi-build.c
802 STM32F205
803 M: Alistair Francis <alistair@alistair23.me>
804 M: Peter Maydell <peter.maydell@linaro.org>
805 S: Maintained
806 F: hw/arm/stm32f205_soc.c
807 F: hw/misc/stm32f2xx_syscfg.c
808 F: hw/char/stm32f2xx_usart.c
809 F: hw/timer/stm32f2xx_timer.c
810 F: hw/adc/*
811 F: hw/ssi/stm32f2xx_spi.c
812 F: include/hw/*/stm32*.h
814 Netduino 2
815 M: Alistair Francis <alistair@alistair23.me>
816 M: Peter Maydell <peter.maydell@linaro.org>
817 S: Maintained
818 F: hw/arm/netduino2.c
820 SmartFusion2
821 M: Subbaraya Sundeep <sundeep.lkml@gmail.com>
822 M: Peter Maydell <peter.maydell@linaro.org>
823 S: Maintained
824 F: hw/arm/msf2-soc.c
825 F: hw/misc/msf2-sysreg.c
826 F: hw/timer/mss-timer.c
827 F: hw/ssi/mss-spi.c
828 F: include/hw/arm/msf2-soc.h
829 F: include/hw/misc/msf2-sysreg.h
830 F: include/hw/timer/mss-timer.h
831 F: include/hw/ssi/mss-spi.h
833 Emcraft M2S-FG484
834 M: Subbaraya Sundeep <sundeep.lkml@gmail.com>
835 M: Peter Maydell <peter.maydell@linaro.org>
836 S: Maintained
837 F: hw/arm/msf2-som.c
839 ASPEED BMCs
840 M: Cédric Le Goater <clg@kaod.org>
841 M: Peter Maydell <peter.maydell@linaro.org>
842 R: Andrew Jeffery <andrew@aj.id.au>
843 R: Joel Stanley <joel@jms.id.au>
844 L: qemu-arm@nongnu.org
845 S: Maintained
846 F: hw/*/*aspeed*
847 F: hw/misc/pca9552.c
848 F: include/hw/*/*aspeed*
849 F: include/hw/misc/pca9552*.h
850 F: hw/net/ftgmac100.c
851 F: include/hw/net/ftgmac100.h
853 NRF51
854 M: Joel Stanley <joel@jms.id.au>
855 M: Peter Maydell <peter.maydell@linaro.org>
856 L: qemu-arm@nongnu.org
857 S: Maintained
858 F: hw/*/nrf51*.c
859 F: hw/*/microbit*.c
860 F: include/hw/*/nrf51*.h
861 F: include/hw/*/microbit*.h
862 F: tests/microbit-test.c
864 CRIS Machines
865 -------------
866 Axis Dev88
867 M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
868 S: Maintained
869 F: hw/cris/axis_dev88.c
870 F: hw/*/etraxfs_*.c
872 HP-PARISC Machines
873 ------------------
874 Dino
875 M: Richard Henderson <rth@twiddle.net>
876 R: Helge Deller <deller@gmx.de>
877 S: Odd Fixes
878 F: hw/hppa/
879 F: pc-bios/hppa-firmware.img
881 LM32 Machines
882 -------------
883 EVR32 and uclinux BSP
884 M: Michael Walle <michael@walle.cc>
885 S: Maintained
886 F: hw/lm32/lm32_boards.c
888 milkymist
889 M: Michael Walle <michael@walle.cc>
890 S: Maintained
891 F: hw/lm32/milkymist.c
893 M68K Machines
894 -------------
895 an5206
896 M: Thomas Huth <huth@tuxfamily.org>
897 S: Odd Fixes
898 F: hw/m68k/an5206.c
899 F: hw/m68k/mcf5206.c
901 mcf5208
902 M: Thomas Huth <huth@tuxfamily.org>
903 S: Odd Fixes
904 F: hw/m68k/mcf5208.c
905 F: hw/m68k/mcf_intc.c
906 F: hw/char/mcf_uart.c
907 F: hw/net/mcf_fec.c
908 F: include/hw/m68k/mcf*.h
910 MicroBlaze Machines
911 -------------------
912 petalogix_s3adsp1800
913 M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
914 S: Maintained
915 F: hw/microblaze/petalogix_s3adsp1800_mmu.c
916 F: include/hw/char/xilinx_uartlite.h
918 petalogix_ml605
919 M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
920 S: Maintained
921 F: hw/microblaze/petalogix_ml605_mmu.c
923 MIPS Machines
924 -------------
925 Jazz
926 M: Hervé Poussineau <hpoussin@reactos.org>
927 R: Aleksandar Rikalo <arikalo@wavecomp.com>
928 S: Maintained
929 F: hw/mips/mips_jazz.c
930 F: hw/display/jazz_led.c
931 F: hw/dma/rc4030.c
933 Malta
934 M: Aurelien Jarno <aurelien@aurel32.net>
935 R: Aleksandar Rikalo <arikalo@wavecomp.com>
936 S: Maintained
937 F: hw/mips/mips_malta.c
938 F: tests/acceptance/linux_ssh_mips_malta.py
940 Mipssim
941 M: Aleksandar Markovic <amarkovic@wavecomp.com>
942 R: Aleksandar Rikalo <arikalo@wavecomp.com>
943 S: Odd Fixes
944 F: hw/mips/mips_mipssim.c
945 F: hw/net/mipsnet.c
947 R4000
948 M: Aurelien Jarno <aurelien@aurel32.net>
949 R: Aleksandar Rikalo <arikalo@wavecomp.com>
950 S: Maintained
951 F: hw/mips/mips_r4k.c
953 Fulong 2E
954 M: Aleksandar Markovic <amarkovic@wavecomp.com>
955 R: Aleksandar Rikalo <arikalo@wavecomp.com>
956 S: Odd Fixes
957 F: hw/mips/mips_fulong2e.c
958 F: hw/isa/vt82c686.c
959 F: hw/pci-host/bonito.c
960 F: include/hw/isa/vt82c686.h
962 Boston
963 M: Paul Burton <pburton@wavecomp.com>
964 R: Aleksandar Rikalo <arikalo@wavecomp.com>
965 S: Maintained
966 F: hw/core/loader-fit.c
967 F: hw/mips/boston.c
968 F: hw/pci-host/xilinx-pcie.c
969 F: include/hw/pci-host/xilinx-pcie.h
971 OpenRISC Machines
972 -----------------
973 or1k-sim
974 M: Jia Liu <proljc@gmail.com>
975 S: Maintained
976 F: hw/openrisc/openrisc_sim.c
978 PowerPC Machines
979 ----------------
981 M: David Gibson <david@gibson.dropbear.id.au>
982 L: qemu-ppc@nongnu.org
983 S: Odd Fixes
984 F: hw/ppc/ppc405_boards.c
986 Bamboo
987 M: David Gibson <david@gibson.dropbear.id.au>
988 L: qemu-ppc@nongnu.org
989 S: Odd Fixes
990 F: hw/ppc/ppc440_bamboo.c
992 e500
993 M: David Gibson <david@gibson.dropbear.id.au>
994 L: qemu-ppc@nongnu.org
995 S: Odd Fixes
996 F: hw/ppc/e500*
997 F: hw/gpio/mpc8xxx.c
998 F: hw/i2c/mpc_i2c.c
999 F: hw/net/fsl_etsec/
1000 F: hw/pci-host/ppce500.c
1001 F: include/hw/ppc/ppc_e500.h
1002 F: include/hw/pci-host/ppce500.h
1003 F: pc-bios/u-boot.e500
1005 mpc8544ds
1006 M: David Gibson <david@gibson.dropbear.id.au>
1007 L: qemu-ppc@nongnu.org
1008 S: Odd Fixes
1009 F: hw/ppc/mpc8544ds.c
1010 F: hw/ppc/mpc8544_guts.c
1012 New World (mac99)
1013 M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
1014 R: David Gibson <david@gibson.dropbear.id.au>
1015 L: qemu-ppc@nongnu.org
1016 S: Odd Fixes
1017 F: hw/ppc/mac_newworld.c
1018 F: hw/pci-host/uninorth.c
1019 F: hw/pci-bridge/dec.[hc]
1020 F: hw/misc/macio/
1021 F: hw/misc/mos6522.c
1022 F: hw/nvram/mac_nvram.c
1023 F: hw/input/adb*
1024 F: include/hw/misc/macio/
1025 F: include/hw/misc/mos6522.h
1026 F: include/hw/ppc/mac_dbdma.h
1027 F: include/hw/pci-host/uninorth.h
1028 F: include/hw/input/adb*
1029 F: pc-bios/qemu_vga.ndrv
1031 Old World (g3beige)
1032 M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
1033 R: David Gibson <david@gibson.dropbear.id.au>
1034 L: qemu-ppc@nongnu.org
1035 S: Odd Fixes
1036 F: hw/ppc/mac_oldworld.c
1037 F: hw/pci-host/grackle.c
1038 F: hw/misc/macio/
1039 F: hw/intc/heathrow_pic.c
1040 F: hw/input/adb*
1041 F: include/hw/intc/heathrow_pic.h
1042 F: include/hw/input/adb*
1043 F: pc-bios/qemu_vga.ndrv
1045 PReP
1046 M: Hervé Poussineau <hpoussin@reactos.org>
1047 L: qemu-devel@nongnu.org
1048 L: qemu-ppc@nongnu.org
1049 S: Maintained
1050 F: hw/ppc/prep.c
1051 F: hw/ppc/prep_systemio.c
1052 F: hw/ppc/rs6000_mc.c
1053 F: hw/pci-host/prep.[hc]
1054 F: hw/isa/i82378.c
1055 F: hw/isa/pc87312.c
1056 F: hw/dma/i82374.c
1057 F: hw/timer/m48t59-isa.c
1058 F: include/hw/isa/pc87312.h
1059 F: include/hw/timer/m48t59.h
1060 F: pc-bios/ppc_rom.bin
1062 sPAPR
1063 M: David Gibson <david@gibson.dropbear.id.au>
1064 L: qemu-ppc@nongnu.org
1065 S: Supported
1066 F: hw/*/spapr*
1067 F: include/hw/*/spapr*
1068 F: hw/*/xics*
1069 F: include/hw/*/xics*
1070 F: pc-bios/spapr-rtas/*
1071 F: pc-bios/spapr-rtas.bin
1072 F: pc-bios/slof.bin
1073 F: docs/specs/ppc-spapr-hcalls.txt
1074 F: docs/specs/ppc-spapr-hotplug.txt
1075 F: tests/spapr*
1076 F: tests/libqos/*spapr*
1077 F: tests/rtas*
1078 F: tests/libqos/rtas*
1080 PowerNV (Non-Virtualized)
1081 M: Cédric Le Goater <clg@kaod.org>
1082 M: David Gibson <david@gibson.dropbear.id.au>
1083 L: qemu-ppc@nongnu.org
1084 S: Maintained
1085 F: hw/ppc/pnv*
1086 F: hw/intc/pnv*
1087 F: hw/intc/xics_pnv.c
1088 F: include/hw/ppc/pnv*
1089 F: pc-bios/skiboot.lid
1090 F: tests/pnv*
1092 virtex_ml507
1093 M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
1094 L: qemu-ppc@nongnu.org
1095 S: Odd Fixes
1096 F: hw/ppc/virtex_ml507.c
1098 sam460ex
1099 M: BALATON Zoltan <balaton@eik.bme.hu>
1100 L: qemu-ppc@nongnu.org
1101 S: Maintained
1102 F: hw/ppc/sam460ex.c
1103 F: hw/ppc/ppc440_pcix.c
1104 F: hw/display/sm501*
1105 F: hw/ide/sii3112.c
1106 F: hw/timer/m41t80.c
1107 F: pc-bios/canyonlands.dt[sb]
1108 F: pc-bios/u-boot-sam460ex-20100605.bin
1109 F: roms/u-boot-sam460ex
1111 SH4 Machines
1112 ------------
1114 M: Magnus Damm <magnus.damm@gmail.com>
1115 S: Maintained
1116 F: hw/sh4/r2d.c
1117 F: hw/intc/sh_intc.c
1118 F: hw/timer/sh_timer.c
1120 Shix
1121 M: Magnus Damm <magnus.damm@gmail.com>
1122 S: Odd Fixes
1123 F: hw/sh4/shix.c
1125 SPARC Machines
1126 --------------
1127 Sun4m
1128 M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
1129 S: Maintained
1130 F: hw/sparc/sun4m.c
1131 F: hw/sparc/sun4m_iommu.c
1132 F: hw/display/cg3.c
1133 F: hw/display/tcx.c
1134 F: hw/dma/sparc32_dma.c
1135 F: hw/misc/eccmemctl.c
1136 F: hw/*/slavio_*.c
1137 F: include/hw/nvram/sun_nvram.h
1138 F: include/hw/sparc/sparc32_dma.h
1139 F: include/hw/sparc/sun4m_iommu.h
1140 F: pc-bios/openbios-sparc32
1142 Sun4u
1143 M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
1144 S: Maintained
1145 F: hw/sparc64/sun4u.c
1146 F: hw/sparc64/sun4u_iommu.c
1147 F: include/hw/sparc/sun4u_iommu.h
1148 F: hw/pci-host/sabre.c
1149 F: include/hw/pci-host/sabre.h
1150 F: hw/pci-bridge/simba.c
1151 F: include/hw/pci-bridge/simba.h
1152 F: pc-bios/openbios-sparc64
1154 Sun4v
1155 M: Artyom Tarasenko <atar4qemu@gmail.com>
1156 S: Maintained
1157 F: hw/sparc64/niagara.c
1158 F: hw/timer/sun4v-rtc.c
1159 F: include/hw/timer/sun4v-rtc.h
1161 Leon3
1162 M: Fabien Chouteau <chouteau@adacore.com>
1163 M: KONRAD Frederic <frederic.konrad@adacore.com>
1164 S: Maintained
1165 F: hw/sparc/leon3.c
1166 F: hw/*/grlib*
1167 F: include/hw/*/grlib*
1169 S390 Machines
1170 -------------
1171 S390 Virtio-ccw
1172 M: Cornelia Huck <cohuck@redhat.com>
1173 M: Halil Pasic <pasic@linux.ibm.com>
1174 M: Christian Borntraeger <borntraeger@de.ibm.com>
1175 S: Supported
1176 F: hw/char/sclp*.[hc]
1177 F: hw/char/terminal3270.c
1178 F: hw/s390x/
1179 F: include/hw/s390x/
1180 F: hw/watchdog/wdt_diag288.c
1181 F: include/hw/watchdog/wdt_diag288.h
1182 F: default-configs/s390x-softmmu.mak
1183 T: git https://github.com/cohuck/qemu.git s390-next
1184 T: git https://github.com/borntraeger/qemu.git s390-next
1185 L: qemu-s390x@nongnu.org
1187 S390-ccw boot
1188 M: Christian Borntraeger <borntraeger@de.ibm.com>
1189 M: Thomas Huth <thuth@redhat.com>
1190 S: Supported
1191 F: hw/s390x/ipl.*
1192 F: pc-bios/s390-ccw/
1193 F: pc-bios/s390-ccw.img
1194 F: docs/devel/s390-dasd-ipl.txt
1195 T: git https://github.com/borntraeger/qemu.git s390-next
1196 L: qemu-s390x@nongnu.org
1198 S390 PCI
1199 M: Collin Walling <walling@linux.ibm.com>
1200 S: Supported
1201 F: hw/s390x/s390-pci*
1202 L: qemu-s390x@nongnu.org
1204 UniCore32 Machines
1205 -------------
1206 PKUnity-3 SoC initramfs-with-busybox
1207 M: Guan Xuetao <gxt@mprc.pku.edu.cn>
1208 S: Maintained
1209 F: hw/*/puv3*
1210 F: hw/unicore32/
1212 X86 Machines
1213 ------------
1215 M: Michael S. Tsirkin <mst@redhat.com>
1216 M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
1217 S: Supported
1218 F: include/hw/i386/
1219 F: hw/i386/
1220 F: hw/pci-host/piix.c
1221 F: hw/pci-host/q35.c
1222 F: hw/pci-host/pam.c
1223 F: include/hw/pci-host/q35.h
1224 F: include/hw/pci-host/pam.h
1225 F: hw/isa/piix4.c
1226 F: hw/isa/lpc_ich9.c
1227 F: hw/i2c/smbus_ich9.c
1228 F: hw/acpi/piix4.c
1229 F: hw/acpi/ich9.c
1230 F: include/hw/acpi/ich9.h
1231 F: include/hw/acpi/piix4.h
1232 F: hw/misc/sga.c
1233 F: hw/isa/apm.c
1234 F: include/hw/isa/apm.h
1235 F: tests/test-x86-cpuid.c
1236 F: tests/test-x86-cpuid-compat.c
1238 PC Chipset
1239 M: Michael S. Tsirkin <mst@redhat.com>
1240 M: Paolo Bonzini <pbonzini@redhat.com>
1241 S: Supported
1242 F: hw/char/debugcon.c
1243 F: hw/char/parallel*
1244 F: hw/char/serial*
1245 F: hw/dma/i8257*
1246 F: hw/i2c/pm_smbus.c
1247 F: hw/input/pckbd.c
1248 F: hw/intc/apic*
1249 F: hw/intc/ioapic*
1250 F: hw/intc/i8259*
1251 F: hw/isa/isa-superio.c
1252 F: hw/misc/debugexit.c
1253 F: hw/misc/pc-testdev.c
1254 F: hw/timer/hpet*
1255 F: hw/timer/i8254*
1256 F: hw/timer/mc146818rtc*
1257 F: hw/watchdog/wdt_ib700.c
1258 F: hw/watchdog/wdt_i6300esb.c
1259 F: include/hw/display/vga.h
1260 F: include/hw/char/parallel.h
1261 F: include/hw/dma/i8257.h
1262 F: include/hw/i2c/pm_smbus.h
1263 F: include/hw/input/i8042.h
1264 F: include/hw/isa/i8259_internal.h
1265 F: include/hw/isa/superio.h
1266 F: include/hw/timer/hpet.h
1267 F: include/hw/timer/i8254*
1268 F: include/hw/timer/mc146818rtc*
1270 Machine core
1271 M: Eduardo Habkost <ehabkost@redhat.com>
1272 M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
1273 S: Supported
1274 F: hw/core/machine.c
1275 F: hw/core/null-machine.c
1276 F: hw/cpu/cluster.c
1277 F: include/hw/boards.h
1278 F: include/hw/cpu/cluster.h
1279 T: git https://github.com/ehabkost/qemu.git machine-next
1281 Xtensa Machines
1282 ---------------
1284 M: Max Filippov <jcmvbkbc@gmail.com>
1285 S: Maintained
1286 F: hw/xtensa/sim.c
1288 XTFPGA (LX60, LX200, ML605, KC705)
1289 M: Max Filippov <jcmvbkbc@gmail.com>
1290 S: Maintained
1291 F: hw/xtensa/xtfpga.c
1292 F: hw/net/opencores_eth.c
1294 Devices
1295 -------
1297 M: Jiri Slaby <jslaby@suse.cz>
1298 S: Maintained
1299 F: hw/misc/edu.c
1302 M: John Snow <jsnow@redhat.com>
1303 L: qemu-block@nongnu.org
1304 S: Supported
1305 F: include/hw/ide.h
1306 F: include/hw/ide/
1307 F: hw/ide/
1308 F: hw/block/block.c
1309 F: hw/block/cdrom.c
1310 F: hw/block/hd-geometry.c
1311 F: tests/ide-test.c
1312 F: tests/ahci-test.c
1313 F: tests/cdrom-test.c
1314 F: tests/libqos/ahci*
1315 T: git https://github.com/jnsnow/qemu.git ide
1317 IPMI
1318 M: Corey Minyard <minyard@acm.org>
1319 S: Maintained
1320 F: include/hw/ipmi/*
1321 F: hw/ipmi/*
1322 F: hw/smbios/smbios_type_38.c
1323 F: tests/ipmi*
1324 T: git https://github.com/cminyard/qemu.git master-ipmi-rebase
1326 Floppy
1327 M: John Snow <jsnow@redhat.com>
1328 L: qemu-block@nongnu.org
1329 S: Supported
1330 F: hw/block/fdc.c
1331 F: include/hw/block/fdc.h
1332 F: tests/fdc-test.c
1333 T: git https://github.com/jnsnow/qemu.git ide
1335 OMAP
1336 M: Peter Maydell <peter.maydell@linaro.org>
1337 S: Maintained
1338 F: hw/*/omap*
1339 F: include/hw/arm/omap.h
1341 IPack
1342 M: Alberto Garcia <berto@igalia.com>
1343 S: Odd Fixes
1344 F: hw/char/ipoctal232.c
1345 F: hw/ipack/
1348 M: Michael S. Tsirkin <mst@redhat.com>
1349 M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
1350 S: Supported
1351 F: include/hw/pci/*
1352 F: hw/misc/pci-testdev.c
1353 F: hw/pci/*
1354 F: hw/pci-bridge/*
1355 F: docs/pci*
1356 F: docs/specs/*pci*
1357 F: default-configs/pci.mak
1359 ACPI/SMBIOS
1360 M: Michael S. Tsirkin <mst@redhat.com>
1361 M: Igor Mammedov <imammedo@redhat.com>
1362 S: Supported
1363 F: include/hw/acpi/*
1364 F: include/hw/firmware/smbios.h
1365 F: hw/mem/*
1366 F: hw/acpi/*
1367 F: hw/smbios/*
1368 F: hw/i386/acpi-build.[hc]
1369 F: hw/arm/virt-acpi-build.c
1370 F: tests/bios-tables-test.c
1371 F: tests/acpi-utils.[hc]
1372 F: tests/data/acpi/
1374 ppc4xx
1375 M: David Gibson <david@gibson.dropbear.id.au>
1376 L: qemu-ppc@nongnu.org
1377 S: Odd Fixes
1378 F: hw/ppc/ppc4*.c
1379 F: hw/i2c/ppc4xx_i2c.c
1380 F: include/hw/ppc/ppc4xx.h
1381 F: include/hw/i2c/ppc4xx_i2c.h
1383 Character devices
1384 M: Marc-André Lureau <marcandre.lureau@redhat.com>
1385 R: Paolo Bonzini <pbonzini@redhat.com>
1386 S: Odd Fixes
1387 F: hw/char/
1389 Network devices
1390 M: Jason Wang <jasowang@redhat.com>
1391 S: Odd Fixes
1392 F: hw/net/
1393 F: include/hw/net/
1394 F: tests/virtio-net-test.c
1395 T: git https://github.com/jasowang/qemu.git net
1397 Parallel NOR Flash devices
1398 M: Philippe Mathieu-Daudé <philmd@redhat.com>
1399 T: git https://gitlab.com/philmd/qemu.git pflash-next
1400 S: Maintained
1401 F: hw/block/pflash_cfi*.c
1402 F: include/hw/block/flash.h
1404 SCSI
1405 M: Paolo Bonzini <pbonzini@redhat.com>
1406 R: Fam Zheng <fam@euphon.net>
1407 S: Supported
1408 F: include/hw/scsi/*
1409 F: hw/scsi/*
1410 F: tests/virtio-scsi-test.c
1411 T: git https://github.com/bonzini/qemu.git scsi-next
1414 M: Alistair Francis <alistair@alistair23.me>
1415 S: Maintained
1416 F: hw/ssi/*
1417 F: hw/block/m25p80.c
1418 F: include/hw/ssi/ssi.h
1419 X: hw/ssi/xilinx_*
1420 F: tests/m25p80-test.c
1422 Xilinx SPI
1423 M: Alistair Francis <alistair@alistair23.me>
1424 S: Maintained
1425 F: hw/ssi/xilinx_*
1427 SD (Secure Card)
1428 M: Philippe Mathieu-Daudé <f4bug@amsat.org>
1429 S: Odd Fixes
1430 F: include/hw/sd/sd*
1431 F: hw/sd/core.c
1432 F: hw/sd/sd*
1433 F: tests/sd*
1436 M: Gerd Hoffmann <kraxel@redhat.com>
1437 S: Maintained
1438 F: hw/usb/*
1439 F: tests/usb-*-test.c
1440 F: docs/usb2.txt
1441 F: docs/usb-storage.txt
1442 F: include/hw/usb.h
1443 F: include/hw/usb/
1444 F: default-configs/usb.mak
1446 USB (serial adapter)
1447 M: Gerd Hoffmann <kraxel@redhat.com>
1448 M: Samuel Thibault <samuel.thibault@ens-lyon.org>
1449 S: Maintained
1450 F: hw/usb/dev-serial.c
1452 VFIO
1453 M: Alex Williamson <alex.williamson@redhat.com>
1454 S: Supported
1455 F: hw/vfio/*
1456 F: include/hw/vfio/
1458 vfio-ccw
1459 M: Cornelia Huck <cohuck@redhat.com>
1460 M: Eric Farman <farman@linux.ibm.com>
1461 M: Farhan Ali <alifm@linux.ibm.com>
1462 S: Supported
1463 F: hw/vfio/ccw.c
1464 F: hw/s390x/s390-ccw.c
1465 F: include/hw/s390x/s390-ccw.h
1466 F: include/hw/s390x/vfio-ccw.h
1467 T: git https://github.com/cohuck/qemu.git s390-next
1468 L: qemu-s390x@nongnu.org
1470 vfio-ap
1471 M: Christian Borntraeger <borntraeger@de.ibm.com>
1472 M: Tony Krowiak <akrowiak@linux.ibm.com>
1473 M: Halil Pasic <pasic@linux.ibm.com>
1474 M: Pierre Morel <pmorel@linux.ibm.com>
1475 S: Supported
1476 F: hw/s390x/ap-device.c
1477 F: hw/s390x/ap-bridge.c
1478 F: include/hw/s390x/ap-device.h
1479 F: include/hw/s390x/ap-bridge.h
1480 F: hw/vfio/ap.c
1481 F: docs/vfio-ap.txt
1482 L: qemu-s390x@nongnu.org
1484 vhost
1485 M: Michael S. Tsirkin <mst@redhat.com>
1486 S: Supported
1487 F: hw/*/*vhost*
1488 F: docs/interop/vhost-user.json
1489 F: docs/interop/vhost-user.rst
1490 F: contrib/vhost-user-*/
1491 F: backends/vhost-user.c
1492 F: include/sysemu/vhost-user-backend.h
1494 virtio
1495 M: Michael S. Tsirkin <mst@redhat.com>
1496 S: Supported
1497 F: hw/*/virtio*
1498 F: hw/virtio/Makefile.objs
1499 F: hw/virtio/trace-events
1500 F: net/vhost-user.c
1501 F: include/hw/virtio/
1502 F: tests/virtio-balloon-test.c
1504 virtio-9p
1505 M: Greg Kurz <groug@kaod.org>
1506 S: Supported
1507 F: hw/9pfs/
1508 F: fsdev/
1509 F: tests/virtio-9p-test.c
1510 T: git https://github.com/gkurz/qemu.git 9p-next
1512 virtio-blk
1513 M: Stefan Hajnoczi <stefanha@redhat.com>
1514 L: qemu-block@nongnu.org
1515 S: Supported
1516 F: hw/block/virtio-blk.c
1517 F: hw/block/dataplane/*
1518 F: tests/virtio-blk-test.c
1519 T: git https://github.com/stefanha/qemu.git block
1521 virtio-ccw
1522 M: Cornelia Huck <cohuck@redhat.com>
1523 M: Halil Pasic <pasic@linux.ibm.com>
1524 S: Supported
1525 F: hw/s390x/virtio-ccw*.[hc]
1526 F: hw/s390x/vhost-vsock-ccw.c
1527 T: git https://github.com/cohuck/qemu.git s390-next
1528 T: git https://github.com/borntraeger/qemu.git s390-next
1529 L: qemu-s390x@nongnu.org
1531 virtio-input
1532 M: Gerd Hoffmann <kraxel@redhat.com>
1533 S: Maintained
1534 F: hw/input/vhost-user-input.c
1535 F: hw/input/virtio-input*.c
1536 F: include/hw/virtio/virtio-input.h
1537 F: contrib/vhost-user-input/*
1539 virtio-serial
1540 M: Amit Shah <amit@kernel.org>
1541 S: Supported
1542 F: hw/char/virtio-serial-bus.c
1543 F: hw/char/virtio-console.c
1544 F: include/hw/virtio/virtio-serial.h
1545 F: tests/virtio-console-test.c
1546 F: tests/virtio-serial-test.c
1548 virtio-rng
1549 M: Amit Shah <amit@kernel.org>
1550 S: Supported
1551 F: hw/virtio/virtio-rng.c
1552 F: include/hw/virtio/virtio-rng.h
1553 F: include/sysemu/rng*.h
1554 F: backends/rng*.c
1555 F: tests/virtio-rng-test.c
1557 virtio-crypto
1558 M: Gonglei <arei.gonglei@huawei.com>
1559 S: Supported
1560 F: hw/virtio/virtio-crypto.c
1561 F: hw/virtio/virtio-crypto-pci.c
1562 F: include/hw/virtio/virtio-crypto.h
1564 nvme
1565 M: Keith Busch <keith.busch@intel.com>
1566 L: qemu-block@nongnu.org
1567 S: Supported
1568 F: hw/block/nvme*
1569 F: tests/nvme-test.c
1571 megasas
1572 M: Hannes Reinecke <hare@suse.com>
1573 L: qemu-block@nongnu.org
1574 S: Supported
1575 F: hw/scsi/megasas.c
1576 F: hw/scsi/mfi.h
1577 F: tests/megasas-test.c
1579 Network packet abstractions
1580 M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
1581 S: Maintained
1582 F: include/net/eth.h
1583 F: net/eth.c
1584 F: hw/net/net_rx_pkt*
1585 F: hw/net/net_tx_pkt*
1587 Vmware
1588 M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
1589 S: Maintained
1590 F: hw/net/vmxnet*
1591 F: hw/scsi/vmw_pvscsi*
1592 F: tests/vmxnet3-test.c
1594 Rocker
1595 M: Jiri Pirko <jiri@resnulli.us>
1596 S: Maintained
1597 F: hw/net/rocker/
1598 F: tests/rocker/
1599 F: docs/specs/rocker.txt
1601 NVDIMM
1602 M: Xiao Guangrong <xiaoguangrong.eric@gmail.com>
1603 S: Maintained
1604 F: hw/acpi/nvdimm.c
1605 F: hw/mem/nvdimm.c
1606 F: include/hw/mem/nvdimm.h
1607 F: docs/nvdimm.txt
1609 e1000x
1610 M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
1611 S: Maintained
1612 F: hw/net/e1000x*
1614 e1000e
1615 M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
1616 S: Maintained
1617 F: hw/net/e1000e*
1619 eepro100
1620 M: Stefan Weil <sw@weilnetz.de>
1621 S: Maintained
1622 F: hw/net/eepro100.c
1624 Generic Loader
1625 M: Alistair Francis <alistair@alistair23.me>
1626 S: Maintained
1627 F: hw/core/generic-loader.c
1628 F: include/hw/core/generic-loader.h
1629 F: docs/generic-loader.txt
1631 Intel Hexadecimal Object File Loader
1632 M: Su Hang <suhang16@mails.ucas.ac.cn>
1633 S: Maintained
1634 F: tests/hexloader-test.c
1635 F: tests/data/hex-loader/test.hex
1637 CHRP NVRAM
1638 M: Thomas Huth <thuth@redhat.com>
1639 S: Maintained
1640 F: hw/nvram/chrp_nvram.c
1641 F: include/hw/nvram/chrp_nvram.h
1642 F: tests/prom-env-test.c
1644 VM Generation ID
1645 M: Ben Warren <ben@skyportsystems.com>
1646 S: Maintained
1647 F: hw/acpi/vmgenid.c
1648 F: include/hw/acpi/vmgenid.h
1649 F: docs/specs/vmgenid.txt
1650 F: tests/vmgenid-test.c
1651 F: stubs/vmgenid.c
1653 Unimplemented device
1654 M: Peter Maydell <peter.maydell@linaro.org>
1655 R: Philippe Mathieu-Daudé <f4bug@amsat.org>
1656 S: Maintained
1657 F: include/hw/misc/unimp.h
1658 F: hw/misc/unimp.c
1660 Standard VGA
1661 M: Gerd Hoffmann <kraxel@redhat.com>
1662 S: Maintained
1663 F: hw/display/vga*
1664 F: hw/display/bochs-display.c
1665 F: include/hw/display/vga.h
1666 F: include/hw/display/bochs-vbe.h
1668 ramfb
1669 M: Gerd Hoffmann <kraxel@redhat.com>
1670 S: Maintained
1671 F: hw/display/ramfb*.c
1672 F: include/hw/display/ramfb.h
1674 virtio-gpu
1675 M: Gerd Hoffmann <kraxel@redhat.com>
1676 S: Maintained
1677 F: hw/display/virtio-gpu*
1678 F: hw/display/virtio-vga.c
1679 F: include/hw/virtio/virtio-gpu.h
1681 Cirrus VGA
1682 M: Gerd Hoffmann <kraxel@redhat.com>
1683 S: Odd Fixes
1684 W: https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
1685 F: hw/display/cirrus*
1687 EDID Generator
1688 M: Gerd Hoffmann <kraxel@redhat.com>
1689 S: Maintained
1690 F: hw/display/edid*
1691 F: include/hw/display/edid.h
1692 F: qemu-edid.c
1694 Firmware configuration (fw_cfg)
1695 M: Philippe Mathieu-Daudé <philmd@redhat.com>
1696 R: Laszlo Ersek <lersek@redhat.com>
1697 R: Gerd Hoffmann <kraxel@redhat.com>
1698 S: Supported
1699 F: docs/specs/fw_cfg.txt
1700 F: hw/nvram/fw_cfg.c
1701 F: stubs/fw_cfg.c
1702 F: include/hw/nvram/fw_cfg.h
1703 F: include/standard-headers/linux/qemu_fw_cfg.h
1704 F: tests/libqos/fw_cfg.c
1705 F: tests/fw_cfg-test.c
1706 T: git https://github.com/philmd/qemu.git fw_cfg-next
1708 XIVE
1709 M: David Gibson <david@gibson.dropbear.id.au>
1710 M: Cédric Le Goater <clg@kaod.org>
1711 L: qemu-ppc@nongnu.org
1712 S: Supported
1713 F: hw/*/*xive*
1714 F: include/hw/*/*xive*
1716 Subsystems
1717 ----------
1718 Audio
1719 M: Gerd Hoffmann <kraxel@redhat.com>
1720 S: Maintained
1721 F: audio/
1722 F: hw/audio/
1723 F: include/hw/audio/
1724 F: tests/ac97-test.c
1725 F: tests/es1370-test.c
1726 F: tests/intel-hda-test.c
1728 Block layer core
1729 M: Kevin Wolf <kwolf@redhat.com>
1730 M: Max Reitz <mreitz@redhat.com>
1731 L: qemu-block@nongnu.org
1732 S: Supported
1733 F: block*
1734 F: block/
1735 F: hw/block/
1736 F: include/block/
1737 F: qemu-img*
1738 F: qemu-io*
1739 F: tests/qemu-iotests/
1740 F: util/qemu-progress.c
1741 F: qobject/block-qdict.c
1742 F: tests/check-block-qdict.c
1743 T: git https://repo.or.cz/qemu/kevin.git block
1745 Block I/O path
1746 M: Stefan Hajnoczi <stefanha@redhat.com>
1747 M: Fam Zheng <fam@euphon.net>
1748 L: qemu-block@nongnu.org
1749 S: Supported
1750 F: util/async.c
1751 F: util/aio-*.c
1752 F: block/io.c
1753 F: migration/block*
1754 F: include/block/aio.h
1755 F: include/block/aio-wait.h
1756 F: scripts/qemugdb/aio.py
1757 T: git https://github.com/stefanha/qemu.git block
1759 Block SCSI subsystem
1760 M: Paolo Bonzini <pbonzini@redhat.com>
1761 R: Fam Zheng <fam@euphon.net>
1762 L: qemu-block@nongnu.org
1763 S: Supported
1764 F: include/scsi/*
1765 F: scsi/*
1767 Block Jobs
1768 M: John Snow <jsnow@redhat.com>
1769 L: qemu-block@nongnu.org
1770 S: Supported
1771 F: blockjob.c
1772 F: include/block/blockjob.h
1773 F: job.c
1774 F: job-qmp.c
1775 F: include/qemu/job.h
1776 F: block/backup.c
1777 F: block/commit.c
1778 F: block/stream.c
1779 F: block/mirror.c
1780 F: qapi/job.json
1781 T: git https://github.com/jnsnow/qemu.git jobs
1783 Block QAPI, monitor, command line
1784 M: Markus Armbruster <armbru@redhat.com>
1785 S: Supported
1786 F: blockdev.c
1787 F: block/qapi.c
1788 F: qapi/block*.json
1789 F: qapi/transaction.json
1790 T: git https://repo.or.cz/qemu/armbru.git block-next
1792 Dirty Bitmaps
1793 M: Fam Zheng <fam@euphon.net>
1794 M: John Snow <jsnow@redhat.com>
1795 L: qemu-block@nongnu.org
1796 S: Supported
1797 F: util/hbitmap.c
1798 F: block/dirty-bitmap.c
1799 F: include/qemu/hbitmap.h
1800 F: include/block/dirty-bitmap.h
1801 F: tests/test-hbitmap.c
1802 F: docs/interop/bitmaps.rst
1803 T: git https://github.com/famz/qemu.git bitmaps
1804 T: git https://github.com/jnsnow/qemu.git bitmaps
1806 Character device backends
1807 M: Marc-André Lureau <marcandre.lureau@redhat.com>
1808 R: Paolo Bonzini <pbonzini@redhat.com>
1809 S: Maintained
1810 F: chardev/
1811 F: include/chardev/
1812 F: qapi/char.json
1814 Character Devices (Braille)
1815 M: Samuel Thibault <samuel.thibault@ens-lyon.org>
1816 S: Maintained
1817 F: chardev/baum.c
1819 Command line option argument parsing
1820 M: Markus Armbruster <armbru@redhat.com>
1821 S: Supported
1822 F: include/qemu/option.h
1823 F: tests/test-keyval.c
1824 F: tests/test-qemu-opts.c
1825 F: util/keyval.c
1826 F: util/qemu-option.c
1828 Coverity model
1829 M: Markus Armbruster <armbru@redhat.com>
1830 S: Supported
1831 F: scripts/coverity-model.c
1834 L: qemu-devel@nongnu.org
1835 S: Supported
1836 F: qom/cpu.c
1837 F: include/qom/cpu.h
1839 Device Tree
1840 M: Alistair Francis <alistair.francis@wdc.com>
1841 R: David Gibson <david@gibson.dropbear.id.au>
1842 S: Maintained
1843 F: device_tree.c
1844 F: include/sysemu/device_tree.h
1846 Dump
1847 S: Supported
1848 M: Marc-André Lureau <marcandre.lureau@redhat.com>
1849 F: dump.c
1850 F: hw/misc/vmcoreinfo.c
1851 F: include/hw/misc/vmcoreinfo.h
1852 F: include/sysemu/dump-arch.h
1853 F: include/sysemu/dump.h
1854 F: scripts/dump-guest-memory.py
1855 F: stubs/dump.c
1857 Error reporting
1858 M: Markus Armbruster <armbru@redhat.com>
1859 S: Supported
1860 F: include/qapi/error.h
1861 F: include/qemu/error-report.h
1862 F: util/error.c
1863 F: util/qemu-error.c
1865 GDB stub
1866 S: Orphan
1867 F: gdbstub*
1868 F: gdb-xml/
1870 Memory API
1871 M: Paolo Bonzini <pbonzini@redhat.com>
1872 S: Supported
1873 F: include/exec/ioport.h
1874 F: ioport.c
1875 F: include/exec/memory.h
1876 F: include/exec/ram_addr.h
1877 F: memory.c
1878 F: include/exec/memory-internal.h
1879 F: exec.c
1881 SPICE
1882 M: Gerd Hoffmann <kraxel@redhat.com>
1883 S: Supported
1884 F: include/ui/qemu-spice.h
1885 F: include/ui/spice-display.h
1886 F: ui/spice-*.c
1887 F: audio/spiceaudio.c
1888 F: hw/display/qxl*
1889 F: qapi/ui.json
1890 F: docs/spice-port-fqdn.txt
1892 Graphics
1893 M: Gerd Hoffmann <kraxel@redhat.com>
1894 S: Odd Fixes
1895 F: ui/
1896 F: include/ui/
1897 F: qapi/ui.json
1898 F: util/drm.c
1900 Cocoa graphics
1901 M: Peter Maydell <peter.maydell@linaro.org>
1902 S: Odd Fixes
1903 F: ui/cocoa.m
1905 Main loop
1906 M: Paolo Bonzini <pbonzini@redhat.com>
1907 S: Maintained
1908 F: cpus.c
1909 F: util/main-loop.c
1910 F: util/qemu-timer.c
1911 F: vl.c
1912 F: qapi/run-state.json
1914 Human Monitor (HMP)
1915 M: Dr. David Alan Gilbert <dgilbert@redhat.com>
1916 S: Maintained
1917 F: monitor.c
1918 F: hmp.[ch]
1919 F: hmp-commands*.hx
1920 F: include/monitor/hmp-target.h
1921 F: tests/test-hmp.c
1922 F: include/qemu/qemu-print.h
1923 F: util/qemu-print.c
1925 Network device backends
1926 M: Jason Wang <jasowang@redhat.com>
1927 S: Maintained
1928 F: net/
1929 F: include/net/
1930 T: git https://github.com/jasowang/qemu.git net
1931 F: qapi/net.json
1933 Netmap network backend
1934 M: Luigi Rizzo <rizzo@iet.unipi.it>
1935 M: Giuseppe Lettieri <g.lettieri@iet.unipi.it>
1936 M: Vincenzo Maffione <v.maffione@gmail.com>
1937 W: http://info.iet.unipi.it/~luigi/netmap/
1938 S: Maintained
1939 F: net/netmap.c
1941 NUMA
1942 M: Eduardo Habkost <ehabkost@redhat.com>
1943 S: Maintained
1944 F: numa.c
1945 F: include/sysemu/numa.h
1946 T: git https://github.com/ehabkost/qemu.git machine-next
1948 Host Memory Backends
1949 M: Eduardo Habkost <ehabkost@redhat.com>
1950 M: Igor Mammedov <imammedo@redhat.com>
1951 S: Maintained
1952 F: backends/hostmem*.c
1953 F: include/sysemu/hostmem.h
1954 T: git https://github.com/ehabkost/qemu.git machine-next
1956 Cryptodev Backends
1957 M: Gonglei <arei.gonglei@huawei.com>
1958 S: Maintained
1959 F: include/sysemu/cryptodev*.h
1960 F: backends/cryptodev*.c
1962 Python scripts
1963 M: Eduardo Habkost <ehabkost@redhat.com>
1964 M: Cleber Rosa <crosa@redhat.com>
1965 S: Odd fixes
1966 F: scripts/qmp/*
1967 F: scripts/*.py
1968 F: tests/*.py
1970 QAPI
1971 M: Markus Armbruster <armbru@redhat.com>
1972 M: Michael Roth <mdroth@linux.vnet.ibm.com>
1973 S: Supported
1974 F: qapi/
1975 X: qapi/*.json
1976 F: include/qapi/
1977 X: include/qapi/qmp/
1978 F: include/qapi/qmp/dispatch.h
1979 F: tests/qapi-schema/
1980 F: tests/test-*-visitor.c
1981 F: tests/test-qapi-*.c
1982 F: tests/test-qmp-*.c
1983 F: tests/test-visitor-serialization.c
1984 F: scripts/qapi-gen.py
1985 F: scripts/qapi/*
1986 F: docs/devel/qapi*
1987 T: git https://repo.or.cz/qemu/armbru.git qapi-next
1989 QAPI Schema
1990 M: Eric Blake <eblake@redhat.com>
1991 M: Markus Armbruster <armbru@redhat.com>
1992 S: Supported
1993 F: qapi/*.json
1994 T: git https://repo.or.cz/qemu/armbru.git qapi-next
1996 QObject
1997 M: Markus Armbruster <armbru@redhat.com>
1998 S: Supported
1999 F: qobject/
2000 F: include/qapi/qmp/
2001 X: include/qapi/qmp/dispatch.h
2002 F: scripts/coccinelle/qobject.cocci
2003 F: tests/check-qdict.c
2004 F: tests/check-qjson.c
2005 F: tests/check-qlist.c
2006 F: tests/check-qlit.c
2007 F: tests/check-qnull.c
2008 F: tests/check-qnum.c
2009 F: tests/check-qobject.c
2010 F: tests/check-qstring.c
2011 F: tests/data/qobject/qdict.txt
2012 T: git https://repo.or.cz/qemu/armbru.git qapi-next
2014 QEMU Guest Agent
2015 M: Michael Roth <mdroth@linux.vnet.ibm.com>
2016 S: Maintained
2017 F: qga/
2018 F: qemu-ga.texi
2019 F: scripts/qemu-guest-agent/
2020 F: tests/test-qga.c
2021 F: docs/interop/qemu-ga-ref.texi
2022 T: git https://github.com/mdroth/qemu.git qga
2025 M: Andreas Färber <afaerber@suse.de>
2026 S: Supported
2027 T: git https://github.com/afaerber/qemu-cpu.git qom-next
2028 F: include/qom/
2029 X: include/qom/cpu.h
2030 F: qom/
2031 X: qom/cpu.c
2032 F: tests/check-qom-interface.c
2033 F: tests/check-qom-proplist.c
2036 M: Markus Armbruster <armbru@redhat.com>
2037 S: Supported
2038 F: qmp.c
2039 F: monitor.c
2040 F: docs/devel/*qmp-*
2041 F: docs/interop/*qmp-*
2042 F: scripts/qmp/
2043 F: tests/qmp-test.c
2044 F: tests/qmp-cmd-test.c
2045 T: git https://repo.or.cz/qemu/armbru.git qapi-next
2047 qtest
2048 M: Thomas Huth <thuth@redhat.com>
2049 M: Laurent Vivier <lvivier@redhat.com>
2050 R: Paolo Bonzini <pbonzini@redhat.com>
2051 S: Maintained
2052 F: qtest.c
2053 F: accel/qtest.c
2054 F: tests/libqtest.*
2055 F: tests/libqos/
2056 F: tests/*-test.c
2058 Register API
2059 M: Alistair Francis <alistair@alistair23.me>
2060 S: Maintained
2061 F: hw/core/register.c
2062 F: include/hw/register.h
2063 F: include/hw/registerfields.h
2065 SLIRP
2066 M: Samuel Thibault <samuel.thibault@ens-lyon.org>
2067 M: Jan Kiszka <jan.kiszka@siemens.com>
2068 S: Maintained
2069 F: slirp/
2070 F: net/slirp.c
2071 F: include/net/slirp.h
2072 T: git https://people.debian.org/~sthibault/qemu.git slirp
2073 T: git git://git.kiszka.org/qemu.git queues/slirp
2075 Stubs
2076 M: Paolo Bonzini <pbonzini@redhat.com>
2077 S: Maintained
2078 F: stubs/
2080 Tracing
2081 M: Stefan Hajnoczi <stefanha@redhat.com>
2082 S: Maintained
2083 F: trace/
2084 F: trace-events
2085 F: qemu-option-trace.texi
2086 F: scripts/tracetool.py
2087 F: scripts/tracetool/
2088 F: scripts/qemu-trace-stap*
2089 F: docs/devel/tracing.txt
2090 T: git https://github.com/stefanha/qemu.git tracing
2093 M: Stefan Berger <stefanb@linux.ibm.com>
2094 S: Maintained
2095 F: tpm.c
2096 F: stubs/tpm.c
2097 F: hw/tpm/*
2098 F: include/hw/acpi/tpm.h
2099 F: include/sysemu/tpm*
2100 F: qapi/tpm.json
2101 F: backends/tpm.c
2102 F: tests/*tpm*
2103 T: git https://github.com/stefanberger/qemu-tpm.git tpm-next
2105 Checkpatch
2106 S: Odd Fixes
2107 F: scripts/checkpatch.pl
2109 Migration
2110 M: Juan Quintela <quintela@redhat.com>
2111 M: Dr. David Alan Gilbert <dgilbert@redhat.com>
2112 S: Maintained
2113 F: include/migration/
2114 F: migration/
2115 F: scripts/vmstate-static-checker.py
2116 F: tests/vmstate-static-checker-data/
2117 F: tests/migration-test.c
2118 F: docs/devel/migration.rst
2119 F: qapi/migration.json
2121 Seccomp
2122 M: Eduardo Otubo <otubo@redhat.com>
2123 S: Supported
2124 F: qemu-seccomp.c
2125 F: include/sysemu/seccomp.h
2127 Cryptography
2128 M: Daniel P. Berrange <berrange@redhat.com>
2129 S: Maintained
2130 F: crypto/
2131 F: include/crypto/
2132 F: tests/test-crypto-*
2133 F: tests/benchmark-crypto-*
2134 F: tests/crypto-tls-*
2135 F: tests/pkix_asn1_tab.c
2136 F: qemu.sasl
2138 Coroutines
2139 M: Stefan Hajnoczi <stefanha@redhat.com>
2140 M: Kevin Wolf <kwolf@redhat.com>
2141 S: Maintained
2142 F: util/*coroutine*
2143 F: include/qemu/coroutine*
2144 F: tests/test-coroutine.c
2146 Buffers
2147 M: Daniel P. Berrange <berrange@redhat.com>
2148 S: Odd fixes
2149 F: util/buffer.c
2150 F: include/qemu/buffer.h
2152 I/O Channels
2153 M: Daniel P. Berrange <berrange@redhat.com>
2154 S: Maintained
2155 F: io/
2156 F: include/io/
2157 F: tests/test-io-*
2159 User authorization
2160 M: Daniel P. Berrange <berrange@redhat.com>
2161 S: Maintained
2162 F: authz/
2163 F: qapi/authz.json
2164 F: include/authz/
2165 F: tests/test-authz-*
2167 Sockets
2168 M: Daniel P. Berrange <berrange@redhat.com>
2169 M: Gerd Hoffmann <kraxel@redhat.com>
2170 S: Maintained
2171 F: include/qemu/sockets.h
2172 F: util/qemu-sockets.c
2173 F: qapi/sockets.json
2175 File monitor
2176 M: Daniel P. Berrange <berrange@redhat.com>
2177 S: Odd fixes
2178 F: util/filemonitor*.c
2179 F: include/qemu/filemonitor.h
2180 F: tests/test-util-filemonitor.c
2182 Throttling infrastructure
2183 M: Alberto Garcia <berto@igalia.com>
2184 S: Supported
2185 F: block/throttle-groups.c
2186 F: include/block/throttle-groups.h
2187 F: include/qemu/throttle*.h
2188 F: util/throttle.c
2189 F: docs/throttle.txt
2190 F: tests/test-throttle.c
2191 L: qemu-block@nongnu.org
2193 UUID
2194 M: Fam Zheng <fam@euphon.net>
2195 S: Supported
2196 F: util/uuid.c
2197 F: include/qemu/uuid.h
2198 F: tests/test-uuid.c
2200 COLO Framework
2201 M: zhanghailiang <zhang.zhanghailiang@huawei.com>
2202 S: Maintained
2203 F: migration/colo*
2204 F: include/migration/colo.h
2205 F: include/migration/failover.h
2206 F: docs/COLO-FT.txt
2208 COLO Proxy
2209 M: Zhang Chen <chen.zhang@intel.com>
2210 M: Li Zhijian <lizhijian@cn.fujitsu.com>
2211 S: Supported
2212 F: docs/colo-proxy.txt
2213 F: net/colo*
2214 F: net/filter-rewriter.c
2215 F: net/filter-mirror.c
2217 Record/replay
2218 M: Pavel Dovgalyuk <pavel.dovgaluk@ispras.ru>
2219 R: Paolo Bonzini <pbonzini@redhat.com>
2220 W: https://wiki.qemu.org/Features/record-replay
2221 S: Supported
2222 F: replay/*
2223 F: block/blkreplay.c
2224 F: net/filter-replay.c
2225 F: include/sysemu/replay.h
2226 F: docs/replay.txt
2227 F: stubs/replay.c
2229 IOVA Tree
2230 M: Peter Xu <peterx@redhat.com>
2231 S: Maintained
2232 F: include/qemu/iova-tree.h
2233 F: util/iova-tree.c
2235 elf2dmp
2236 M: Viktor Prutyanov <viktor.prutyanov@phystech.edu>
2237 S: Maintained
2238 F: contrib/elf2dmp/
2240 I2C and SMBus
2241 M: Corey Minyard <cminyard@mvista.com>
2242 S: Maintained
2243 F: hw/i2c/core.c
2244 F: hw/i2c/smbus_slave.c
2245 F: hw/i2c/smbus_master.c
2246 F: hw/i2c/smbus_eeprom.c
2247 F: include/hw/i2c/i2c.h
2248 F: include/hw/i2c/smbus_master.h
2249 F: include/hw/i2c/smbus_slave.h
2250 F: include/hw/i2c/smbus_eeprom.h
2252 EDK2 Firmware
2253 M: Laszlo Ersek <lersek@redhat.com>
2254 M: Philippe Mathieu-Daudé <philmd@redhat.com>
2255 S: Supported
2256 F: pc-bios/descriptors/??-edk2-*.json
2257 F: pc-bios/edk2-*
2258 F: roms/Makefile.edk2
2259 F: roms/edk2
2260 F: roms/edk2-*
2261 F: tests/data/uefi-boot-images/
2262 F: tests/uefi-test-tools/
2264 Usermode Emulation
2265 ------------------
2266 Overall
2267 M: Riku Voipio <riku.voipio@iki.fi>
2268 S: Maintained
2269 F: thunk.c
2270 F: accel/tcg/user-exec*.c
2272 BSD user
2273 S: Orphan
2274 F: bsd-user/
2275 F: default-configs/*-bsd-user.mak
2277 Linux user
2278 M: Riku Voipio <riku.voipio@iki.fi>
2279 R: Laurent Vivier <laurent@vivier.eu>
2280 S: Maintained
2281 F: linux-user/
2282 F: default-configs/*-linux-user.mak
2283 F: scripts/qemu-binfmt-conf.sh
2285 Tiny Code Generator (TCG)
2286 -------------------------
2287 Common code
2288 M: Richard Henderson <rth@twiddle.net>
2289 S: Maintained
2290 F: tcg/
2292 AArch64 target
2293 M: Claudio Fontana <claudio.fontana@huawei.com>
2294 M: Claudio Fontana <claudio.fontana@gmail.com>
2295 S: Maintained
2296 L: qemu-arm@nongnu.org
2297 F: tcg/aarch64/
2298 F: disas/arm-a64.cc
2299 F: disas/libvixl/
2301 ARM target
2302 M: Andrzej Zaborowski <balrogg@gmail.com>
2303 S: Maintained
2304 L: qemu-arm@nongnu.org
2305 F: tcg/arm/
2306 F: disas/arm.c
2308 i386 target
2309 M: Richard Henderson <rth@twiddle.net>
2310 S: Maintained
2311 F: tcg/i386/
2312 F: disas/i386.c
2314 MIPS target
2315 M: Aurelien Jarno <aurelien@aurel32.net>
2316 R: Aleksandar Rikalo <arikalo@wavecomp.com>
2317 S: Maintained
2318 F: tcg/mips/
2319 F: disas/mips.c
2322 M: Richard Henderson <rth@twiddle.net>
2323 S: Odd Fixes
2324 F: tcg/ppc/
2325 F: disas/ppc.c
2327 RISC-V
2328 M: Palmer Dabbelt <palmer@sifive.com>
2329 M: Alistair Francis <Alistair.Francis@wdc.com>
2330 L: qemu-riscv@nongnu.org
2331 S: Maintained
2332 F: tcg/riscv/
2333 F: disas/riscv.c
2335 S390 target
2336 M: Richard Henderson <rth@twiddle.net>
2337 S: Maintained
2338 F: tcg/s390/
2339 F: disas/s390.c
2340 L: qemu-s390x@nongnu.org
2342 SPARC target
2343 S: Odd Fixes
2344 F: tcg/sparc/
2345 F: disas/sparc.c
2347 TCI target
2348 M: Stefan Weil <sw@weilnetz.de>
2349 S: Maintained
2350 F: tcg/tci/
2351 F: tcg/tci.c
2352 F: disas/tci.c
2354 Block drivers
2355 -------------
2356 VMDK
2357 M: Fam Zheng <fam@euphon.net>
2358 L: qemu-block@nongnu.org
2359 S: Supported
2360 F: block/vmdk.c
2363 M: Josh Durgin <jdurgin@redhat.com>
2364 L: qemu-block@nongnu.org
2365 S: Supported
2366 F: block/rbd.c
2368 Sheepdog
2369 M: Liu Yuan <namei.unix@gmail.com>
2370 L: qemu-block@nongnu.org
2371 L: sheepdog@lists.wpkg.org
2372 S: Odd Fixes
2373 F: block/sheepdog.c
2375 VHDX
2376 M: Jeff Cody <codyprime@gmail.com>
2377 L: qemu-block@nongnu.org
2378 S: Supported
2379 F: block/vhdx*
2382 M: Stefan Weil <sw@weilnetz.de>
2383 L: qemu-block@nongnu.org
2384 S: Maintained
2385 F: block/vdi.c
2387 iSCSI
2388 M: Ronnie Sahlberg <ronniesahlberg@gmail.com>
2389 M: Paolo Bonzini <pbonzini@redhat.com>
2390 M: Peter Lieven <pl@kamp.de>
2391 L: qemu-block@nongnu.org
2392 S: Odd Fixes
2393 F: block/iscsi.c
2394 F: block/iscsi-opts.c
2396 Network Block Device (NBD)
2397 M: Eric Blake <eblake@redhat.com>
2398 L: qemu-block@nongnu.org
2399 S: Maintained
2400 F: block/nbd*
2401 F: nbd/
2402 F: include/block/nbd*
2403 F: qemu-nbd.*
2404 F: blockdev-nbd.c
2405 F: docs/interop/nbd.txt
2406 T: git https://repo.or.cz/qemu/ericb.git nbd
2409 M: Peter Lieven <pl@kamp.de>
2410 L: qemu-block@nongnu.org
2411 S: Maintained
2412 F: block/nfs.c
2415 M: Richard W.M. Jones <rjones@redhat.com>
2416 L: qemu-block@nongnu.org
2417 S: Supported
2418 F: block/ssh.c
2420 CURL
2421 L: qemu-block@nongnu.org
2422 S: Odd Fixes
2423 F: block/curl.c
2425 GLUSTER
2426 L: qemu-block@nongnu.org
2427 L: integration@gluster.org
2428 S: Odd Fixes
2429 F: block/gluster.c
2431 Null Block Driver
2432 M: Fam Zheng <fam@euphon.net>
2433 L: qemu-block@nongnu.org
2434 S: Supported
2435 F: block/null.c
2437 NVMe Block Driver
2438 M: Fam Zheng <fam@euphon.net>
2439 L: qemu-block@nongnu.org
2440 S: Supported
2441 F: block/nvme*
2443 Bootdevice
2444 M: Gonglei <arei.gonglei@huawei.com>
2445 S: Maintained
2446 F: bootdevice.c
2448 Quorum
2449 M: Alberto Garcia <berto@igalia.com>
2450 S: Supported
2451 F: block/quorum.c
2452 L: qemu-block@nongnu.org
2454 blklogwrites
2455 M: Ari Sundholm <ari@tuxera.com>
2456 L: qemu-block@nongnu.org
2457 S: Supported
2458 F: block/blklogwrites.c
2460 blkverify
2461 M: Stefan Hajnoczi <stefanha@redhat.com>
2462 L: qemu-block@nongnu.org
2463 S: Supported
2464 F: block/blkverify.c
2466 bochs
2467 M: Stefan Hajnoczi <stefanha@redhat.com>
2468 L: qemu-block@nongnu.org
2469 S: Supported
2470 F: block/bochs.c
2472 cloop
2473 M: Stefan Hajnoczi <stefanha@redhat.com>
2474 L: qemu-block@nongnu.org
2475 S: Supported
2476 F: block/cloop.c
2479 M: Stefan Hajnoczi <stefanha@redhat.com>
2480 L: qemu-block@nongnu.org
2481 S: Supported
2482 F: block/dmg.c
2484 parallels
2485 M: Stefan Hajnoczi <stefanha@redhat.com>
2486 M: Denis V. Lunev <den@openvz.org>
2487 L: qemu-block@nongnu.org
2488 S: Supported
2489 F: block/parallels.c
2490 F: docs/interop/parallels.txt
2493 M: Stefan Hajnoczi <stefanha@redhat.com>
2494 L: qemu-block@nongnu.org
2495 S: Supported
2496 F: block/qed.c
2499 M: Kevin Wolf <kwolf@redhat.com>
2500 L: qemu-block@nongnu.org
2501 S: Supported
2502 F: block/linux-aio.c
2503 F: include/block/raw-aio.h
2504 F: block/raw-format.c
2505 F: block/file-posix.c
2506 F: block/file-win32.c
2507 F: block/win32-aio.c
2509 qcow2
2510 M: Kevin Wolf <kwolf@redhat.com>
2511 M: Max Reitz <mreitz@redhat.com>
2512 L: qemu-block@nongnu.org
2513 S: Supported
2514 F: block/qcow2*
2515 F: docs/interop/qcow2.txt
2517 qcow
2518 M: Kevin Wolf <kwolf@redhat.com>
2519 L: qemu-block@nongnu.org
2520 S: Supported
2521 F: block/qcow.c
2523 blkdebug
2524 M: Kevin Wolf <kwolf@redhat.com>
2525 M: Max Reitz <mreitz@redhat.com>
2526 L: qemu-block@nongnu.org
2527 S: Supported
2528 F: block/blkdebug.c
2531 M: Kevin Wolf <kwolf@redhat.com>
2532 L: qemu-block@nongnu.org
2533 S: Supported
2534 F: block/vpc.c
2536 vvfat
2537 M: Kevin Wolf <kwolf@redhat.com>
2538 L: qemu-block@nongnu.org
2539 S: Supported
2540 F: block/vvfat.c
2542 Image format fuzzer
2543 M: Stefan Hajnoczi <stefanha@redhat.com>
2544 L: qemu-block@nongnu.org
2545 S: Supported
2546 F: tests/image-fuzzer/
2548 Replication
2549 M: Wen Congyang <wencongyang2@huawei.com>
2550 M: Xie Changlong <xiechanglong.d@gmail.com>
2551 S: Supported
2552 F: replication*
2553 F: block/replication.c
2554 F: tests/test-replication.c
2555 F: docs/block-replication.txt
2557 PVRDMA
2558 M: Yuval Shaia <yuval.shaia@oracle.com>
2559 M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
2560 S: Maintained
2561 F: hw/rdma/*
2562 F: hw/rdma/vmw/*
2563 F: docs/pvrdma.txt
2564 F: contrib/rdmacm-mux/*
2565 F: qapi/rdma.json
2567 Semihosting
2568 M: Alex Bennée <alex.bennee@linaro.org>
2569 L: qemu-devel@nongnu.org
2570 S: Maintained
2571 F: hw/semihosting/
2572 F: include/hw/semihosting/
2574 Build and test automation
2575 -------------------------
2576 Build and test automation
2577 M: Alex Bennée <alex.bennee@linaro.org>
2578 M: Fam Zheng <fam@euphon.net>
2579 R: Philippe Mathieu-Daudé <philmd@redhat.com>
2580 L: qemu-devel@nongnu.org
2581 S: Maintained
2582 F: .travis.yml
2583 F: scripts/travis/
2584 F: .shippable.yml
2585 F: tests/docker/
2586 F: tests/vm/
2587 F: scripts/archive-source.sh
2588 W: https://travis-ci.org/qemu/qemu
2589 W: https://app.shippable.com/github/qemu/qemu
2590 W: http://patchew.org/QEMU/
2592 FreeBSD Hosted Continuous Integration
2593 M: Ed Maste <emaste@freebsd.org>
2594 M: Li-Wen Hsu <lwhsu@freebsd.org>
2595 L: qemu-devel@nongnu.org
2596 S: Maintained
2597 F: .cirrus.yml
2598 W: https://cirrus-ci.com/github/qemu/qemu
2600 GitLab Continuous Integration
2601 M: Thomas Huth <thuth@redhat.com>
2602 S: Maintained
2603 F: .gitlab-ci.yml
2605 Guest Test Compilation Support
2606 M: Alex Bennée <alex.bennee@linaro.org>
2607 R: Philippe Mathieu-Daudé <f4bug@amsat.org>
2608 S: Maintained
2609 F: tests/tcg/Makefile
2610 F: tests/tcg/Makefile.include
2611 L: qemu-devel@nongnu.org
2613 Documentation
2614 -------------
2615 Build system architecture
2616 M: Daniel P. Berrange <berrange@redhat.com>
2617 S: Odd Fixes
2618 F: docs/devel/build-system.txt
2620 GIT Data Mining Config
2621 M: Alex Bennée <alex.bennee@linaro.org>
2622 S: Odd Fixes
2623 F: gitdm.config
2624 F: contrib/gitdm/*
2626 Incompatible changes
2627 R: libvir-list@redhat.com
2628 F: qemu-deprecated.texi
2630 Build System
2631 ------------
2632 GIT submodules
2633 M: Daniel P. Berrange <berrange@redhat.com>
2634 S: Odd Fixes
2635 F: scripts/git-submodule.sh
2637 Sphinx documentation configuration and build machinery
2638 M: Peter Maydell <peter.maydell@linaro.org>
2639 S: Maintained
2640 F: docs/conf.py
2641 F: docs/*/conf.py