xen: add a mechanism to automatically create XenDevice-s...
[qemu.git] / MAINTAINERS
blob43b2691b5d7ceb776c4ebe921876d649539b92ca
1 QEMU Maintainers
2 ================
4 The intention of this file is not to establish who owns what portions of the
5 code base, but to provide a set of names that developers can consult when they
6 have a question about a particular subset and also to provide a set of names
7 to be CC'd when submitting a patch to obtain appropriate review.
9 In general, if you have a question about inclusion of a patch, you should
10 consult qemu-devel and not any specific individual privately.
12 Descriptions of section entries:
14         M: Mail patches to: FullName <address@domain>
15            Maintainers are looking after a certain area and must be CCed on
16            patches. They are considered the main contact point.
17         R: Designated reviewer: FullName <address@domain>
18            These reviewers should be CCed on patches.
19            Reviewers are familiar with the subject matter and provide feedback
20            even though they are not maintainers.
21         L: Mailing list that is relevant to this area
22            These lists should be CCed on patches.
23         W: Web-page with status/info
24         Q: Patchwork web based patch tracking system site
25         T: SCM tree type and location.  Type is one of: git, hg, quilt, stgit.
26         S: Status, one of the following:
27            Supported:   Someone is actually paid to look after this.
28            Maintained:  Someone actually looks after it.
29            Odd Fixes:   It has a maintainer but they don't have time to do
30                         much other than throw the odd patch in. See below.
31            Orphan:      No current maintainer [but maybe you could take the
32                         role as you write your new code].
33            Obsolete:    Old code. Something tagged obsolete generally means
34                         it has been replaced by a better system and you
35                         should be using that.
36         F: Files and directories with wildcard patterns.
37            A trailing slash includes all files and subdirectory files.
38            F:   drivers/net/    all files in and below drivers/net
39            F:   drivers/net/*   all files in drivers/net, but not below
40            F:   */net/*         all files in "any top level directory"/net
41            One pattern per line.  Multiple F: lines acceptable.
42         X: Files and directories that are NOT maintained, same rules as F:
43            Files exclusions are tested before file matches.
44            Can be useful for excluding a specific subdirectory, for instance:
45            F:   net/
46            X:   net/ipv6/
47            matches all files in and below net excluding net/ipv6/
48         K: Keyword perl extended regex pattern to match content in a
49            patch or file.  For instance:
50            K: of_get_profile
51               matches patches or files that contain "of_get_profile"
52            K: \b(printk|pr_(info|err))\b
53               matches patches or files that contain one or more of the words
54               printk, pr_info or pr_err
55            One regex pattern per line.  Multiple K: lines acceptable.
58 General Project Administration
59 ------------------------------
60 M: Peter Maydell <peter.maydell@linaro.org>
62 All patches CC here
63 L: qemu-devel@nongnu.org
64 F: *
65 F: */
67 Responsible Disclosure, Reporting Security Issues
68 ------------------------------
69 W: https://wiki.qemu.org/SecurityProcess
70 M: Michael S. Tsirkin <mst@redhat.com>
71 L: secalert@redhat.com
73 Trivial patches
74 ---------------
75 Trivial patches
76 M: Michael Tokarev <mjt@tls.msk.ru>
77 M: Laurent Vivier <laurent@vivier.eu>
78 S: Maintained
79 L: qemu-trivial@nongnu.org
80 K: ^Subject:.*(?i)trivial
81 T: git git://git.corpit.ru/qemu.git trivial-patches
82 T: git https://github.com/vivier/qemu.git trivial-patches
84 Architecture support
85 --------------------
86 S390
87 M: Cornelia Huck <cohuck@redhat.com>
88 S: Supported
89 F: default-configs/s390x-softmmu.mak
90 F: gdb-xml/s390*.xml
91 F: hw/char/sclp*.[hc]
92 F: hw/char/terminal3270.c
93 F: hw/intc/s390_flic.c
94 F: hw/intc/s390_flic_kvm.c
95 F: hw/s390x/
96 F: hw/vfio/ap.c
97 F: hw/vfio/ccw.c
98 F: hw/watchdog/wdt_diag288.c
99 F: include/hw/s390x/
100 F: include/hw/watchdog/wdt_diag288.h
101 F: pc-bios/s390-ccw/
102 F: pc-bios/s390-ccw.img
103 F: target/s390x/
104 F: docs/vfio-ap.txt
105 K: ^Subject:.*(?i)s390x?
106 T: git https://github.com/cohuck/qemu.git s390-next
107 L: qemu-s390x@nongnu.org
109 Guest CPU cores (TCG):
110 ----------------------
111 Overall
112 L: qemu-devel@nongnu.org
113 M: Peter Crosthwaite <crosthwaite.peter@gmail.com>
114 M: Richard Henderson <rth@twiddle.net>
115 R: Paolo Bonzini <pbonzini@redhat.com>
116 S: Maintained
117 F: cpus.c
118 F: exec.c
119 F: accel/tcg/
120 F: accel/stubs/tcg-stub.c
121 F: include/exec/cpu*.h
122 F: include/exec/exec-all.h
123 F: include/exec/helper*.h
124 F: include/exec/tb-hash.h
125 F: include/sysemu/cpus.h
127 FPU emulation
128 M: Aurelien Jarno <aurelien@aurel32.net>
129 M: Peter Maydell <peter.maydell@linaro.org>
130 M: Alex Bennée <alex.bennee@linaro.org>
131 S: Maintained
132 F: fpu/
133 F: include/fpu/
134 F: tests/fp/
136 Alpha
137 M: Richard Henderson <rth@twiddle.net>
138 S: Maintained
139 F: target/alpha/
140 F: tests/tcg/alpha/
141 F: disas/alpha.c
144 M: Peter Maydell <peter.maydell@linaro.org>
145 L: qemu-arm@nongnu.org
146 S: Maintained
147 F: target/arm/
148 F: tests/tcg/arm/
149 F: tests/tcg/aarch64/
150 F: hw/arm/
151 F: hw/cpu/a*mpcore.c
152 F: include/hw/cpu/a*mpcore.h
153 F: disas/arm.c
154 F: disas/arm-a64.cc
155 F: disas/libvixl/
157 ARM SMMU
158 M: Eric Auger <eric.auger@redhat.com>
159 L: qemu-arm@nongnu.org
160 S: Maintained
161 F: hw/arm/smmu*
162 F: include/hw/arm/smmu*
164 CRIS
165 M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
166 S: Maintained
167 F: target/cris/
168 F: hw/cris/
169 F: include/hw/cris/
170 F: tests/tcg/cris/
171 F: disas/cris.c
173 HPPA (PA-RISC)
174 M: Richard Henderson <rth@twiddle.net>
175 S: Maintained
176 F: target/hppa/
177 F: hw/hppa/
178 F: disas/hppa.c
180 LM32
181 M: Michael Walle <michael@walle.cc>
182 S: Maintained
183 F: target/lm32/
184 F: disas/lm32.c
185 F: hw/lm32/
186 F: hw/*/lm32_*
187 F: hw/*/milkymist-*
188 F: include/hw/char/lm32_juart.h
189 F: include/hw/lm32/
190 F: tests/tcg/lm32/
192 M68K
193 M: Laurent Vivier <laurent@vivier.eu>
194 S: Maintained
195 F: target/m68k/
196 F: disas/m68k.c
198 MicroBlaze
199 M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
200 S: Maintained
201 F: target/microblaze/
202 F: hw/microblaze/
203 F: disas/microblaze.c
205 MIPS
206 M: Aurelien Jarno <aurelien@aurel32.net>
207 M: Aleksandar Markovic <amarkovic@wavecomp.com>
208 R: Aleksandar Rikalo <arikalo@wavecomp.com>
209 R: Stefan Markovic <smarkovic@wavecomp.com>
210 S: Maintained
211 F: target/mips/
212 F: default-configs/*mips*
213 F: disas/mips.c
214 F: disas/nanomips.cpp
215 F: disas/nanomips.h
216 F: hw/intc/mips_gic.c
217 F: hw/mips/
218 F: hw/misc/mips_*
219 F: hw/timer/mips_gictimer.c
220 F: include/hw/intc/mips_gic.h
221 F: include/hw/mips/
222 F: include/hw/misc/mips_*
223 F: include/hw/timer/mips_gictimer.h
224 F: tests/tcg/mips/
225 K: ^Subject:.*(?i)mips
227 Moxie
228 M: Anthony Green <green@moxielogic.com>
229 S: Maintained
230 F: target/moxie/
231 F: disas/moxie.c
232 F: hw/moxie/
233 F: default-configs/moxie-softmmu.mak
235 NiosII
236 M: Chris Wulff <crwulff@gmail.com>
237 M: Marek Vasut <marex@denx.de>
238 S: Maintained
239 F: target/nios2/
240 F: hw/nios2/
241 F: hw/intc/nios2_iic.c
242 F: disas/nios2.c
243 F: default-configs/nios2-softmmu.mak
245 OpenRISC
246 M: Stafford Horne <shorne@gmail.com>
247 S: Odd Fixes
248 F: target/openrisc/
249 F: hw/openrisc/
250 F: tests/tcg/openrisc/
252 PowerPC
253 M: David Gibson <david@gibson.dropbear.id.au>
254 L: qemu-ppc@nongnu.org
255 S: Maintained
256 F: target/ppc/
257 F: hw/ppc/
258 F: include/hw/ppc/
259 F: disas/ppc.c
261 RISC-V
262 M: Michael Clark <mjc@sifive.com>
263 M: Palmer Dabbelt <palmer@sifive.com>
264 M: Alistair Francis <Alistair.Francis@wdc.com>
265 M: Sagar Karandikar <sagark@eecs.berkeley.edu>
266 M: Bastian Koppelmann <kbastian@mail.uni-paderborn.de>
267 L: qemu-riscv@nongnu.org
268 S: Supported
269 F: target/riscv/
270 F: hw/riscv/
271 F: include/hw/riscv/
272 F: linux-user/host/riscv32/
273 F: linux-user/host/riscv64/
275 S390
276 M: Richard Henderson <rth@twiddle.net>
277 M: David Hildenbrand <david@redhat.com>
278 S: Maintained
279 F: target/s390x/
280 F: hw/s390x/
281 F: disas/s390.c
282 F: tests/tcg/s390x/
283 L: qemu-s390x@nongnu.org
286 M: Aurelien Jarno <aurelien@aurel32.net>
287 S: Odd Fixes
288 F: target/sh4/
289 F: hw/sh4/
290 F: disas/sh4.c
291 F: include/hw/sh4/
293 SPARC
294 M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
295 M: Artyom Tarasenko <atar4qemu@gmail.com>
296 S: Maintained
297 F: target/sparc/
298 F: hw/sparc/
299 F: hw/sparc64/
300 F: include/hw/sparc/sparc64.h
301 F: disas/sparc.c
303 UniCore32
304 M: Guan Xuetao <gxt@mprc.pku.edu.cn>
305 S: Maintained
306 F: target/unicore32/
307 F: hw/unicore32/
308 F: include/hw/unicore32/
311 M: Paolo Bonzini <pbonzini@redhat.com>
312 M: Richard Henderson <rth@twiddle.net>
313 M: Eduardo Habkost <ehabkost@redhat.com>
314 S: Maintained
315 F: target/i386/
316 F: tests/tcg/i386/
317 F: tests/tcg/x86_64/
318 F: hw/i386/
319 F: disas/i386.c
320 F: docs/qemu-cpu-models.texi
321 T: git https://github.com/ehabkost/qemu.git x86-next
323 Xtensa
324 M: Max Filippov <jcmvbkbc@gmail.com>
325 W: http://wiki.osll.ru/doku.php?id=etc:users:jcmvbkbc:qemu-target-xtensa
326 S: Maintained
327 F: target/xtensa/
328 F: hw/xtensa/
329 F: tests/tcg/xtensa/
330 F: disas/xtensa.c
331 F: include/hw/xtensa/xtensa-isa.h
332 F: default-configs/xtensa*.mak
334 TriCore
335 M: Bastian Koppelmann <kbastian@mail.uni-paderborn.de>
336 S: Maintained
337 F: target/tricore/
338 F: hw/tricore/
339 F: include/hw/tricore/
341 Multiarch Linux User Tests
342 M: Alex Bennée <alex.bennee@linaro.org>
343 F: tests/tcg/multiarch/
345 Guest CPU Cores (KVM):
346 ----------------------
348 Overall
349 M: Paolo Bonzini <pbonzini@redhat.com>
350 L: kvm@vger.kernel.org
351 S: Supported
352 F: */kvm.*
353 F: accel/kvm/
354 F: accel/stubs/kvm-stub.c
355 F: include/hw/kvm/
356 F: include/sysemu/kvm*.h
357 F: scripts/kvm/kvm_flightrecorder
360 M: Peter Maydell <peter.maydell@linaro.org>
361 L: qemu-arm@nongnu.org
362 S: Maintained
363 F: target/arm/kvm.c
365 MIPS
366 M: James Hogan <jhogan@kernel.org>
367 R: Aleksandar Rikalo <arikalo@wavecomp.com>
368 R: Stefan Markovic <smarkovic@wavecomp.com>
369 S: Maintained
370 F: target/mips/kvm.c
373 M: David Gibson <david@gibson.dropbear.id.au>
374 S: Maintained
375 F: target/ppc/kvm.c
377 S390
378 M: Halil Pasic <pasic@linux.ibm.com>
379 M: Cornelia Huck <cohuck@redhat.com>
380 M: Christian Borntraeger <borntraeger@de.ibm.com>
381 S: Maintained
382 F: target/s390x/kvm.c
383 F: target/s390x/kvm_s390x.h
384 F: target/s390x/kvm-stub.c
385 F: target/s390x/ioinst.[ch]
386 F: target/s390x/machine.c
387 F: target/s390x/sigp.c
388 F: hw/intc/s390_flic.c
389 F: hw/intc/s390_flic_kvm.c
390 F: include/hw/s390x/s390_flic.h
391 F: gdb-xml/s390*.xml
392 T: git https://github.com/cohuck/qemu.git s390-next
393 T: git https://github.com/borntraeger/qemu.git s390-next
394 L: qemu-s390x@nongnu.org
397 M: Paolo Bonzini <pbonzini@redhat.com>
398 M: Marcelo Tosatti <mtosatti@redhat.com>
399 L: kvm@vger.kernel.org
400 S: Supported
401 F: target/i386/kvm.c
402 F: scripts/kvm/vmxcap
404 Guest CPU Cores (Xen):
405 ----------------------
408 M: Stefano Stabellini <sstabellini@kernel.org>
409 M: Anthony Perard <anthony.perard@citrix.com>
410 L: xen-devel@lists.xenproject.org
411 S: Supported
412 F: */xen*
413 F: hw/9pfs/xen-9p-backend.c
414 F: hw/char/xen_console.c
415 F: hw/display/xenfb.c
416 F: hw/net/xen_nic.c
417 F: hw/block/xen*
418 F: hw/block/dataplane/xen*
419 F: hw/xen/
420 F: hw/xenpv/
421 F: hw/i386/xen/
422 F: include/hw/block/dataplane/xen*
423 F: include/hw/xen/
424 F: include/sysemu/xen-mapcache.h
426 Hosts:
427 ------
429 LINUX
430 L: qemu-devel@nongnu.org
431 S: Maintained
432 F: linux-*
433 F: linux-headers/
435 POSIX
436 L: qemu-devel@nongnu.org
437 S: Maintained
438 F: *posix*
440 NETBSD
441 L: qemu-devel@nongnu.org
442 M: Kamil Rytarowski <kamil@netbsd.org>
443 S: Maintained
444 K: ^Subject:.*(?i)NetBSD
446 OPENBSD
447 L: qemu-devel@nongnu.org
448 M: Brad Smith <brad@comstyle.com>
449 S: Maintained
450 K: ^Subject:.*(?i)OpenBSD
452 W32, W64
453 L: qemu-devel@nongnu.org
454 M: Stefan Weil <sw@weilnetz.de>
455 S: Maintained
456 F: *win32*
457 F: */*win32*
458 F: include/*/*win32*
459 X: qga/*win32*
460 F: qemu.nsi
462 Alpha Machines
463 M: Richard Henderson <rth@twiddle.net>
464 S: Maintained
465 F: hw/alpha/
466 F: hw/isa/smc37c669-superio.c
468 ARM Machines
469 ------------
470 Allwinner-a10
471 M: Beniamino Galvani <b.galvani@gmail.com>
472 M: Peter Maydell <peter.maydell@linaro.org>
473 L: qemu-arm@nongnu.org
474 S: Odd Fixes
475 F: hw/*/allwinner*
476 F: include/hw/*/allwinner*
477 F: hw/arm/cubieboard.c
479 ARM PrimeCell and CMSDK devices
480 M: Peter Maydell <peter.maydell@linaro.org>
481 L: qemu-arm@nongnu.org
482 S: Maintained
483 F: hw/char/pl011.c
484 F: include/hw/char/pl011.h
485 F: hw/display/pl110*
486 F: hw/dma/pl080.c
487 F: include/hw/dma/pl080.h
488 F: hw/dma/pl330.c
489 F: hw/gpio/pl061.c
490 F: hw/input/pl050.c
491 F: hw/intc/pl190.c
492 F: hw/sd/pl181.c
493 F: hw/ssi/pl022.c
494 F: include/hw/ssi/pl022.h
495 F: hw/timer/pl031.c
496 F: include/hw/arm/primecell.h
497 F: hw/timer/cmsdk-apb-timer.c
498 F: include/hw/timer/cmsdk-apb-timer.h
499 F: hw/timer/cmsdk-apb-dualtimer.c
500 F: include/hw/timer/cmsdk-apb-dualtimer.h
501 F: hw/char/cmsdk-apb-uart.c
502 F: include/hw/char/cmsdk-apb-uart.h
503 F: hw/watchdog/cmsdk-apb-watchdog.c
504 F: include/hw/watchdog/cmsdk-apb-watchdog.h
505 F: hw/misc/tz-ppc.c
506 F: include/hw/misc/tz-ppc.h
507 F: hw/misc/tz-mpc.c
508 F: include/hw/misc/tz-mpc.h
509 F: hw/misc/tz-msc.c
510 F: include/hw/misc/tz-msc.h
512 ARM cores
513 M: Peter Maydell <peter.maydell@linaro.org>
514 L: qemu-arm@nongnu.org
515 S: Maintained
516 F: hw/intc/arm*
517 F: hw/intc/gic_internal.h
518 F: hw/misc/a9scu.c
519 F: hw/misc/arm11scu.c
520 F: hw/misc/arm_l2x0.c
521 F: hw/timer/a9gtimer*
522 F: hw/timer/arm*
523 F: include/hw/arm/arm*.h
524 F: include/hw/intc/arm*
525 F: include/hw/misc/a9scu.h
526 F: include/hw/misc/arm11scu.h
527 F: include/hw/timer/a9gtimer.h
528 F: include/hw/timer/arm_mptimer.h
529 F: include/hw/timer/armv7m_systick.h
530 F: tests/test-arm-mptimer.c
532 Exynos
533 M: Igor Mitsyanko <i.mitsyanko@gmail.com>
534 M: Peter Maydell <peter.maydell@linaro.org>
535 L: qemu-arm@nongnu.org
536 S: Odd Fixes
537 F: hw/*/exynos*
538 F: include/hw/arm/exynos4210.h
540 Calxeda Highbank
541 M: Rob Herring <robh@kernel.org>
542 M: Peter Maydell <peter.maydell@linaro.org>
543 L: qemu-arm@nongnu.org
544 S: Odd Fixes
545 F: hw/arm/highbank.c
546 F: hw/net/xgmac.c
548 Canon DIGIC
549 M: Antony Pavlov <antonynpavlov@gmail.com>
550 M: Peter Maydell <peter.maydell@linaro.org>
551 L: qemu-arm@nongnu.org
552 S: Odd Fixes
553 F: include/hw/arm/digic.h
554 F: hw/*/digic*
555 F: include/hw/*/digic*
557 Gumstix
558 M: Peter Maydell <peter.maydell@linaro.org>
559 R: Philippe Mathieu-Daudé <f4bug@amsat.org>
560 L: qemu-devel@nongnu.org
561 L: qemu-arm@nongnu.org
562 S: Odd Fixes
563 F: hw/arm/gumstix.c
565 i.MX25 PDK
566 M: Peter Maydell <peter.maydell@linaro.org>
567 R: Jean-Christophe Dubois <jcd@tribudubois.net>
568 L: qemu-arm@nongnu.org
569 S: Odd Fixes
570 F: hw/arm/fsl-imx25.c
571 F: hw/arm/imx25_pdk.c
572 F: hw/misc/imx25_ccm.c
573 F: include/hw/arm/fsl-imx25.h
574 F: include/hw/misc/imx25_ccm.h
576 i.MX31 (kzm)
577 M: Peter Chubb <peter.chubb@nicta.com.au>
578 M: Peter Maydell <peter.maydell@linaro.org>
579 L: qemu-arm@nongnu.org
580 S: Odd Fixes
581 F: hw/arm/kzm.c
582 F: hw/*/imx_*
583 F: hw/*/*imx31*
584 F: include/hw/*/imx_*
585 F: include/hw/*/*imx31*
587 Integrator CP
588 M: Peter Maydell <peter.maydell@linaro.org>
589 L: qemu-arm@nongnu.org
590 S: Maintained
591 F: hw/arm/integratorcp.c
592 F: hw/misc/arm_integrator_debug.c
593 F: include/hw/misc/arm_integrator_debug.h
595 MCIMX6UL EVK / i.MX6ul
596 M: Peter Maydell <peter.maydell@linaro.org>
597 R: Jean-Christophe Dubois <jcd@tribudubois.net>
598 L: qemu-arm@nongnu.org
599 S: Odd Fixes
600 F: hw/arm/mcimx6ul-evk.c
601 F: hw/arm/fsl-imx6ul.c
602 F: hw/misc/imx6ul_ccm.c
603 F: include/hw/arm/fsl-imx6ul.h
604 F: include/hw/misc/imx6ul_ccm.h
606 MCIMX7D SABRE / i.MX7
607 M: Peter Maydell <peter.maydell@linaro.org>
608 R: Andrey Smirnov <andrew.smirnov@gmail.com>
609 L: qemu-arm@nongnu.org
610 S: Odd Fixes
611 F: hw/arm/mcimx7d-sabre.c
612 F: hw/arm/fsl-imx7.c
613 F: hw/misc/imx7_*.c
614 F: include/hw/arm/fsl-imx7.h
615 F: include/hw/misc/imx7_*.h
616 F: hw/pci-host/designware.c
617 F: include/hw/pci-host/designware.h
619 MPS2
620 M: Peter Maydell <peter.maydell@linaro.org>
621 L: qemu-arm@nongnu.org
622 S: Maintained
623 F: hw/arm/mps2.c
624 F: hw/arm/mps2-tz.c
625 F: hw/misc/mps2-*.c
626 F: include/hw/misc/mps2-*.h
627 F: hw/arm/iotkit.c
628 F: include/hw/arm/iotkit.h
629 F: hw/misc/iotkit-secctl.c
630 F: include/hw/misc/iotkit-secctl.h
631 F: hw/misc/iotkit-sysctl.c
632 F: include/hw/misc/iotkit-sysctl.h
633 F: hw/misc/iotkit-sysinfo.c
634 F: include/hw/misc/iotkit-sysinfo.h
636 Musicpal
637 M: Jan Kiszka <jan.kiszka@web.de>
638 M: Peter Maydell <peter.maydell@linaro.org>
639 L: qemu-arm@nongnu.org
640 S: Odd Fixes
641 F: hw/arm/musicpal.c
643 nSeries
644 M: Andrzej Zaborowski <balrogg@gmail.com>
645 M: Peter Maydell <peter.maydell@linaro.org>
646 L: qemu-arm@nongnu.org
647 S: Odd Fixes
648 F: hw/arm/nseries.c
649 F: hw/input/lm832x.c
650 F: hw/input/tsc2005.c
651 F: hw/misc/cbus.c
652 F: hw/timer/twl92230.c
654 Palm
655 M: Andrzej Zaborowski <balrogg@gmail.com>
656 M: Peter Maydell <peter.maydell@linaro.org>
657 L: qemu-arm@nongnu.org
658 S: Odd Fixes
659 F: hw/arm/palm.c
660 F: hw/input/tsc210x.c
662 Raspberry Pi
663 M: Peter Maydell <peter.maydell@linaro.org>
664 R: Andrew Baumann <Andrew.Baumann@microsoft.com>
665 R: Philippe Mathieu-Daudé <f4bug@amsat.org>
666 L: qemu-arm@nongnu.org
667 S: Odd Fixes
668 F: hw/arm/raspi.c
669 F: hw/arm/raspi_platform.h
670 F: hw/*/bcm283*
671 F: include/hw/arm/raspi*
672 F: include/hw/*/bcm283*
674 Real View
675 M: Peter Maydell <peter.maydell@linaro.org>
676 L: qemu-arm@nongnu.org
677 S: Maintained
678 F: hw/arm/realview*
679 F: hw/cpu/realview_mpcore.c
680 F: hw/intc/realview_gic.c
681 F: include/hw/intc/realview_gic.h
683 PXA2XX
684 M: Andrzej Zaborowski <balrogg@gmail.com>
685 M: Peter Maydell <peter.maydell@linaro.org>
686 L: qemu-arm@nongnu.org
687 S: Odd Fixes
688 F: hw/arm/mainstone.c
689 F: hw/arm/spitz.c
690 F: hw/arm/tosa.c
691 F: hw/arm/z2.c
692 F: hw/*/pxa2xx*
693 F: hw/display/tc6393xb.c
694 F: hw/gpio/max7310.c
695 F: hw/gpio/zaurus.c
696 F: hw/misc/mst_fpga.c
697 F: hw/misc/max111x.c
698 F: include/hw/arm/pxa.h
699 F: include/hw/arm/sharpsl.h
701 SABRELITE / i.MX6
702 M: Peter Maydell <peter.maydell@linaro.org>
703 R: Jean-Christophe Dubois <jcd@tribudubois.net>
704 L: qemu-arm@nongnu.org
705 S: Odd Fixes
706 F: hw/arm/sabrelite.c
707 F: hw/arm/fsl-imx6.c
708 F: hw/misc/imx6_*.c
709 F: hw/ssi/imx_spi.c
710 F: include/hw/arm/fsl-imx6.h
711 F: include/hw/misc/imx6_*.h
712 F: include/hw/ssi/imx_spi.h
714 Sharp SL-5500 (Collie) PDA
715 M: Peter Maydell <peter.maydell@linaro.org>
716 L: qemu-arm@nongnu.org
717 S: Odd Fixes
718 F: hw/arm/collie.c
719 F: hw/arm/strongarm*
721 Stellaris
722 M: Peter Maydell <peter.maydell@linaro.org>
723 L: qemu-arm@nongnu.org
724 S: Maintained
725 F: hw/*/stellaris*
727 Versatile Express
728 M: Peter Maydell <peter.maydell@linaro.org>
729 L: qemu-arm@nongnu.org
730 S: Maintained
731 F: hw/arm/vexpress.c
733 Versatile PB
734 M: Peter Maydell <peter.maydell@linaro.org>
735 L: qemu-arm@nongnu.org
736 S: Maintained
737 F: hw/*/versatile*
738 F: hw/misc/arm_sysctl.c
740 Virt
741 M: Peter Maydell <peter.maydell@linaro.org>
742 L: qemu-arm@nongnu.org
743 S: Maintained
744 F: hw/arm/virt*
745 F: include/hw/arm/virt.h
747 Xilinx Zynq
748 M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
749 M: Alistair Francis <alistair@alistair23.me>
750 M: Peter Maydell <peter.maydell@linaro.org>
751 L: qemu-arm@nongnu.org
752 S: Maintained
753 F: hw/*/xilinx_*
754 F: hw/*/cadence_*
755 F: hw/misc/zynq*
756 F: include/hw/misc/zynq*
757 X: hw/ssi/xilinx_*
759 Xilinx ZynqMP
760 M: Alistair Francis <alistair@alistair23.me>
761 M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
762 M: Peter Maydell <peter.maydell@linaro.org>
763 L: qemu-arm@nongnu.org
764 S: Maintained
765 F: hw/*/xlnx*.c
766 F: include/hw/*/xlnx*.h
767 F: include/hw/ssi/xilinx_spips.h
768 F: hw/display/dpcd.c
769 F: include/hw/display/dpcd.h
771 ARM ACPI Subsystem
772 M: Shannon Zhao <shannon.zhaosl@gmail.com>
773 L: qemu-arm@nongnu.org
774 S: Maintained
775 F: hw/arm/virt-acpi-build.c
777 STM32F205
778 M: Alistair Francis <alistair@alistair23.me>
779 M: Peter Maydell <peter.maydell@linaro.org>
780 S: Maintained
781 F: hw/arm/stm32f205_soc.c
782 F: hw/misc/stm32f2xx_syscfg.c
783 F: hw/char/stm32f2xx_usart.c
784 F: hw/timer/stm32f2xx_timer.c
785 F: hw/adc/*
786 F: hw/ssi/stm32f2xx_spi.c
787 F: include/hw/*/stm32*.h
789 Netduino 2
790 M: Alistair Francis <alistair@alistair23.me>
791 M: Peter Maydell <peter.maydell@linaro.org>
792 S: Maintained
793 F: hw/arm/netduino2.c
795 SmartFusion2
796 M: Subbaraya Sundeep <sundeep.lkml@gmail.com>
797 M: Peter Maydell <peter.maydell@linaro.org>
798 S: Maintained
799 F: hw/arm/msf2-soc.c
800 F: hw/misc/msf2-sysreg.c
801 F: hw/timer/mss-timer.c
802 F: hw/ssi/mss-spi.c
803 F: include/hw/arm/msf2-soc.h
804 F: include/hw/misc/msf2-sysreg.h
805 F: include/hw/timer/mss-timer.h
806 F: include/hw/ssi/mss-spi.h
808 Emcraft M2S-FG484
809 M: Subbaraya Sundeep <sundeep.lkml@gmail.com>
810 M: Peter Maydell <peter.maydell@linaro.org>
811 S: Maintained
812 F: hw/arm/msf2-som.c
814 ASPEED BMCs
815 M: Cédric Le Goater <clg@kaod.org>
816 M: Peter Maydell <peter.maydell@linaro.org>
817 R: Andrew Jeffery <andrew@aj.id.au>
818 R: Joel Stanley <joel@jms.id.au>
819 L: qemu-arm@nongnu.org
820 S: Maintained
821 F: hw/*/*aspeed*
822 F: hw/misc/pca9552.c
823 F: include/hw/*/*aspeed*
824 F: include/hw/misc/pca9552*.h
825 F: hw/net/ftgmac100.c
826 F: include/hw/net/ftgmac100.h
828 NRF51
829 M: Joel Stanley <joel@jms.id.au>
830 M: Peter Maydell <peter.maydell@linaro.org>
831 L: qemu-arm@nongnu.org
832 S: Maintained
833 F: hw/arm/nrf51_soc.c
834 F: hw/arm/microbit.c
835 F: include/hw/arm/nrf51_soc.h
837 CRIS Machines
838 -------------
839 Axis Dev88
840 M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
841 S: Maintained
842 F: hw/cris/axis_dev88.c
843 F: hw/*/etraxfs_*.c
845 LM32 Machines
846 -------------
847 EVR32 and uclinux BSP
848 M: Michael Walle <michael@walle.cc>
849 S: Maintained
850 F: hw/lm32/lm32_boards.c
852 milkymist
853 M: Michael Walle <michael@walle.cc>
854 S: Maintained
855 F: hw/lm32/milkymist.c
857 M68K Machines
858 -------------
859 an5206
860 M: Thomas Huth <huth@tuxfamily.org>
861 S: Odd Fixes
862 F: hw/m68k/an5206.c
863 F: hw/m68k/mcf5206.c
865 mcf5208
866 M: Thomas Huth <huth@tuxfamily.org>
867 S: Odd Fixes
868 F: hw/m68k/mcf5208.c
869 F: hw/m68k/mcf_intc.c
870 F: hw/char/mcf_uart.c
871 F: hw/net/mcf_fec.c
872 F: include/hw/m68k/mcf*.h
874 MicroBlaze Machines
875 -------------------
876 petalogix_s3adsp1800
877 M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
878 S: Maintained
879 F: hw/microblaze/petalogix_s3adsp1800_mmu.c
880 F: include/hw/char/xilinx_uartlite.h
882 petalogix_ml605
883 M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
884 S: Maintained
885 F: hw/microblaze/petalogix_ml605_mmu.c
887 MIPS Machines
888 -------------
889 Jazz
890 M: Hervé Poussineau <hpoussin@reactos.org>
891 R: Aleksandar Rikalo <arikalo@wavecomp.com>
892 R: Stefan Markovic <smarkovic@wavecomp.com>
893 S: Maintained
894 F: hw/mips/mips_jazz.c
895 F: hw/display/jazz_led.c
896 F: hw/dma/rc4030.c
898 Malta
899 M: Aurelien Jarno <aurelien@aurel32.net>
900 R: Aleksandar Rikalo <arikalo@wavecomp.com>
901 R: Stefan Markovic <smarkovic@wavecomp.com>
902 S: Maintained
903 F: hw/mips/mips_malta.c
905 Mipssim
906 M: Aleksandar Markovic <amarkovic@wavecomp.com>
907 R: Aleksandar Rikalo <arikalo@wavecomp.com>
908 R: Stefan Markovic <smarkovic@wavecomp.com>
909 S: Odd Fixes
910 F: hw/mips/mips_mipssim.c
911 F: hw/net/mipsnet.c
913 R4000
914 M: Aurelien Jarno <aurelien@aurel32.net>
915 R: Aleksandar Rikalo <arikalo@wavecomp.com>
916 R: Stefan Markovic <smarkovic@wavecomp.com>
917 S: Maintained
918 F: hw/mips/mips_r4k.c
920 Fulong 2E
921 M: Aleksandar Markovic <amarkovic@wavecomp.com>
922 R: Aleksandar Rikalo <arikalo@wavecomp.com>
923 R: Stefan Markovic <smarkovic@wavecomp.com>
924 S: Odd Fixes
925 F: hw/mips/mips_fulong2e.c
926 F: hw/isa/vt82c686.c
927 F: hw/pci-host/bonito.c
928 F: include/hw/isa/vt82c686.h
930 Boston
931 M: Paul Burton <pburton@wavecomp.com>
932 R: Aleksandar Rikalo <arikalo@wavecomp.com>
933 R: Stefan Markovic <smarkovic@wavecomp.com>
934 S: Maintained
935 F: hw/core/loader-fit.c
936 F: hw/mips/boston.c
937 F: hw/pci-host/xilinx-pcie.c
938 F: include/hw/pci-host/xilinx-pcie.h
940 OpenRISC Machines
941 -----------------
942 or1k-sim
943 M: Jia Liu <proljc@gmail.com>
944 S: Maintained
945 F: hw/openrisc/openrisc_sim.c
947 PowerPC Machines
948 ----------------
950 M: David Gibson <david@gibson.dropbear.id.au>
951 L: qemu-ppc@nongnu.org
952 S: Odd Fixes
953 F: hw/ppc/ppc405_boards.c
955 Bamboo
956 M: David Gibson <david@gibson.dropbear.id.au>
957 L: qemu-ppc@nongnu.org
958 S: Odd Fixes
959 F: hw/ppc/ppc440_bamboo.c
961 e500
962 M: David Gibson <david@gibson.dropbear.id.au>
963 L: qemu-ppc@nongnu.org
964 S: Odd Fixes
965 F: hw/ppc/e500.[hc]
966 F: hw/ppc/e500plat.c
967 F: hw/gpio/mpc8xxx.c
968 F: include/hw/ppc/ppc_e500.h
969 F: include/hw/pci-host/ppce500.h
970 F: pc-bios/u-boot.e500
972 mpc8544ds
973 M: David Gibson <david@gibson.dropbear.id.au>
974 L: qemu-ppc@nongnu.org
975 S: Odd Fixes
976 F: hw/ppc/mpc8544ds.c
977 F: hw/ppc/mpc8544_guts.c
979 New World (mac99)
980 M: David Gibson <david@gibson.dropbear.id.au>
981 L: qemu-ppc@nongnu.org
982 S: Odd Fixes
983 F: hw/ppc/mac_newworld.c
984 F: hw/pci-host/uninorth.c
985 F: hw/pci-bridge/dec.[hc]
986 F: hw/misc/macio/
987 F: hw/misc/mos6522.c
988 F: hw/nvram/mac_nvram.c
989 F: hw/input/adb*
990 F: include/hw/misc/macio/
991 F: include/hw/misc/mos6522.h
992 F: include/hw/ppc/mac_dbdma.h
993 F: include/hw/pci-host/uninorth.h
994 F: include/hw/input/adb*
995 F: pc-bios/qemu_vga.ndrv
997 Old World (g3beige)
998 M: David Gibson <david@gibson.dropbear.id.au>
999 L: qemu-ppc@nongnu.org
1000 S: Odd Fixes
1001 F: hw/ppc/mac_oldworld.c
1002 F: hw/pci-host/grackle.c
1003 F: hw/misc/macio/
1004 F: hw/intc/heathrow_pic.c
1005 F: hw/input/adb*
1006 F: include/hw/intc/heathrow_pic.h
1007 F: include/hw/input/adb*
1008 F: pc-bios/qemu_vga.ndrv
1010 PReP
1011 M: Hervé Poussineau <hpoussin@reactos.org>
1012 L: qemu-devel@nongnu.org
1013 L: qemu-ppc@nongnu.org
1014 S: Maintained
1015 F: hw/ppc/prep.c
1016 F: hw/ppc/prep_systemio.c
1017 F: hw/ppc/rs6000_mc.c
1018 F: hw/pci-host/prep.[hc]
1019 F: hw/isa/i82378.c
1020 F: hw/isa/pc87312.c
1021 F: hw/dma/i82374.c
1022 F: hw/timer/m48t59-isa.c
1023 F: include/hw/isa/pc87312.h
1024 F: include/hw/timer/m48t59.h
1025 F: pc-bios/ppc_rom.bin
1027 sPAPR
1028 M: David Gibson <david@gibson.dropbear.id.au>
1029 L: qemu-ppc@nongnu.org
1030 S: Supported
1031 F: hw/*/spapr*
1032 F: include/hw/*/spapr*
1033 F: hw/*/xics*
1034 F: include/hw/*/xics*
1035 F: pc-bios/spapr-rtas/*
1036 F: pc-bios/spapr-rtas.bin
1037 F: pc-bios/slof.bin
1038 F: pc-bios/skiboot.lid
1039 F: docs/specs/ppc-spapr-hcalls.txt
1040 F: docs/specs/ppc-spapr-hotplug.txt
1041 F: tests/spapr*
1042 F: tests/libqos/*spapr*
1043 F: tests/rtas*
1044 F: tests/libqos/rtas*
1046 XIVE
1047 M: David Gibson <david@gibson.dropbear.id.au>
1048 M: Cédric Le Goater <clg@kaod.org>
1049 L: qemu-ppc@nongnu.org
1050 S: Supported
1051 F: hw/*/*xive*
1052 F: include/hw/*/*xive*
1054 virtex_ml507
1055 M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
1056 L: qemu-ppc@nongnu.org
1057 S: Odd Fixes
1058 F: hw/ppc/virtex_ml507.c
1060 sam460ex
1061 M: BALATON Zoltan <balaton@eik.bme.hu>
1062 L: qemu-ppc@nongnu.org
1063 S: Maintained
1064 F: hw/ppc/sam460ex.c
1065 F: hw/ppc/ppc440_pcix.c
1066 F: hw/display/sm501*
1067 F: hw/ide/sii3112.c
1068 F: hw/timer/m41t80.c
1069 F: pc-bios/canyonlands.dt[sb]
1070 F: pc-bios/u-boot-sam460ex-20100605.bin
1071 F: roms/u-boot-sam460ex
1073 SH4 Machines
1074 ------------
1076 M: Magnus Damm <magnus.damm@gmail.com>
1077 S: Maintained
1078 F: hw/sh4/r2d.c
1079 F: hw/intc/sh_intc.c
1080 F: hw/timer/sh_timer.c
1082 Shix
1083 M: Magnus Damm <magnus.damm@gmail.com>
1084 S: Odd Fixes
1085 F: hw/sh4/shix.c
1087 SPARC Machines
1088 --------------
1089 Sun4m
1090 M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
1091 S: Maintained
1092 F: hw/sparc/sun4m.c
1093 F: hw/sparc/sun4m_iommu.c
1094 F: hw/dma/sparc32_dma.c
1095 F: hw/misc/eccmemctl.c
1096 F: hw/misc/slavio_misc.c
1097 F: include/hw/sparc/sparc32_dma.h
1098 F: pc-bios/openbios-sparc32
1099 F: include/hw/sparc/sun4m_iommu.h
1101 Sun4u
1102 M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
1103 S: Maintained
1104 F: hw/sparc64/sun4u.c
1105 F: pc-bios/openbios-sparc64
1106 F: hw/pci-host/sabre.c
1107 F: include/hw/pci-host/sabre.h
1109 Sun4v
1110 M: Artyom Tarasenko <atar4qemu@gmail.com>
1111 S: Maintained
1112 F: hw/sparc64/niagara.c
1113 F: hw/timer/sun4v-rtc.c
1114 F: include/hw/timer/sun4v-rtc.h
1116 Leon3
1117 M: Fabien Chouteau <chouteau@adacore.com>
1118 S: Maintained
1119 F: hw/sparc/leon3.c
1120 F: hw/*/grlib*
1121 F: include/hw/sparc/grlib.h
1123 S390 Machines
1124 -------------
1125 S390 Virtio-ccw
1126 M: Cornelia Huck <cohuck@redhat.com>
1127 M: Halil Pasic <pasic@linux.ibm.com>
1128 M: Christian Borntraeger <borntraeger@de.ibm.com>
1129 S: Supported
1130 F: hw/char/sclp*.[hc]
1131 F: hw/char/terminal3270.c
1132 F: hw/s390x/
1133 F: include/hw/s390x/
1134 F: hw/watchdog/wdt_diag288.c
1135 F: include/hw/watchdog/wdt_diag288.h
1136 F: default-configs/s390x-softmmu.mak
1137 T: git https://github.com/cohuck/qemu.git s390-next
1138 T: git https://github.com/borntraeger/qemu.git s390-next
1139 L: qemu-s390x@nongnu.org
1141 S390-ccw boot
1142 M: Christian Borntraeger <borntraeger@de.ibm.com>
1143 M: Thomas Huth <thuth@redhat.com>
1144 S: Supported
1145 F: hw/s390x/ipl.*
1146 F: pc-bios/s390-ccw/
1147 F: pc-bios/s390-ccw.img
1148 T: git https://github.com/borntraeger/qemu.git s390-next
1149 L: qemu-s390x@nongnu.org
1151 S390 PCI
1152 M: Collin Walling <walling@linux.ibm.com>
1153 S: Supported
1154 F: hw/s390x/s390-pci*
1155 L: qemu-s390x@nongnu.org
1157 UniCore32 Machines
1158 -------------
1159 PKUnity-3 SoC initramfs-with-busybox
1160 M: Guan Xuetao <gxt@mprc.pku.edu.cn>
1161 S: Maintained
1162 F: hw/*/puv3*
1163 F: hw/unicore32/
1165 X86 Machines
1166 ------------
1168 M: Michael S. Tsirkin <mst@redhat.com>
1169 M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
1170 S: Supported
1171 F: include/hw/i386/
1172 F: hw/i386/
1173 F: hw/pci-host/piix.c
1174 F: hw/pci-host/q35.c
1175 F: hw/pci-host/pam.c
1176 F: include/hw/pci-host/q35.h
1177 F: include/hw/pci-host/pam.h
1178 F: hw/isa/piix4.c
1179 F: hw/isa/lpc_ich9.c
1180 F: hw/i2c/smbus_ich9.c
1181 F: hw/acpi/piix4.c
1182 F: hw/acpi/ich9.c
1183 F: include/hw/acpi/ich9.h
1184 F: include/hw/acpi/piix4.h
1185 F: hw/misc/sga.c
1187 PC Chipset
1188 M: Michael S. Tsirkin <mst@redhat.com>
1189 M: Paolo Bonzini <pbonzini@redhat.com>
1190 S: Supported
1191 F: hw/char/debugcon.c
1192 F: hw/char/parallel*
1193 F: hw/char/serial*
1194 F: hw/dma/i8257*
1195 F: hw/i2c/pm_smbus.c
1196 F: hw/input/pckbd.c
1197 F: hw/intc/apic*
1198 F: hw/intc/ioapic*
1199 F: hw/intc/i8259*
1200 F: hw/isa/isa-superio.c
1201 F: hw/misc/debugexit.c
1202 F: hw/misc/pc-testdev.c
1203 F: hw/timer/hpet*
1204 F: hw/timer/i8254*
1205 F: hw/timer/mc146818rtc*
1206 F: hw/watchdog/wdt_ib700.c
1207 F: hw/watchdog/wdt_i6300esb.c
1208 F: include/hw/display/vga.h
1209 F: include/hw/char/parallel.h
1210 F: include/hw/dma/i8257.h
1211 F: include/hw/i2c/pm_smbus.h
1212 F: include/hw/input/i8042.h
1213 F: include/hw/isa/i8259_internal.h
1214 F: include/hw/isa/superio.h
1215 F: include/hw/timer/hpet.h
1216 F: include/hw/timer/i8254*
1217 F: include/hw/timer/mc146818rtc*
1219 Machine core
1220 M: Eduardo Habkost <ehabkost@redhat.com>
1221 M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
1222 S: Supported
1223 F: hw/core/machine.c
1224 F: hw/core/null-machine.c
1225 F: hw/cpu/cluster.c
1226 F: include/hw/boards.h
1227 F: include/hw/cpu/cluster.h
1228 T: git https://github.com/ehabkost/qemu.git machine-next
1230 Xtensa Machines
1231 ---------------
1233 M: Max Filippov <jcmvbkbc@gmail.com>
1234 S: Maintained
1235 F: hw/xtensa/sim.c
1237 XTFPGA (LX60, LX200, ML605, KC705)
1238 M: Max Filippov <jcmvbkbc@gmail.com>
1239 S: Maintained
1240 F: hw/xtensa/xtfpga.c
1241 F: hw/net/opencores_eth.c
1243 Devices
1244 -------
1246 M: Jiri Slaby <jslaby@suse.cz>
1247 S: Maintained
1248 F: hw/misc/edu.c
1251 M: John Snow <jsnow@redhat.com>
1252 L: qemu-block@nongnu.org
1253 S: Supported
1254 F: include/hw/ide.h
1255 F: include/hw/ide/
1256 F: hw/ide/
1257 F: hw/block/block.c
1258 F: hw/block/cdrom.c
1259 F: hw/block/hd-geometry.c
1260 F: tests/ide-test.c
1261 F: tests/ahci-test.c
1262 F: tests/cdrom-test.c
1263 F: tests/libqos/ahci*
1264 T: git https://github.com/jnsnow/qemu.git ide
1266 IPMI
1267 M: Corey Minyard <minyard@acm.org>
1268 S: Maintained
1269 F: include/hw/ipmi/*
1270 F: hw/ipmi/*
1271 F: hw/smbios/smbios_type_38.c
1272 F: tests/ipmi*
1273 T: git https://github.com/cminyard/qemu.git master-ipmi-rebase
1275 Floppy
1276 M: John Snow <jsnow@redhat.com>
1277 L: qemu-block@nongnu.org
1278 S: Supported
1279 F: hw/block/fdc.c
1280 F: include/hw/block/fdc.h
1281 F: tests/fdc-test.c
1282 T: git https://github.com/jnsnow/qemu.git ide
1284 OMAP
1285 M: Peter Maydell <peter.maydell@linaro.org>
1286 S: Maintained
1287 F: hw/*/omap*
1288 F: include/hw/arm/omap.h
1290 IPack
1291 M: Alberto Garcia <berto@igalia.com>
1292 S: Odd Fixes
1293 F: hw/char/ipoctal232.c
1294 F: hw/ipack/
1297 M: Michael S. Tsirkin <mst@redhat.com>
1298 M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
1299 S: Supported
1300 F: include/hw/pci/*
1301 F: hw/misc/pci-testdev.c
1302 F: hw/pci/*
1303 F: hw/pci-bridge/*
1304 F: docs/pci*
1305 F: docs/specs/*pci*
1306 F: default-configs/pci.mak
1308 ACPI/SMBIOS
1309 M: Michael S. Tsirkin <mst@redhat.com>
1310 M: Igor Mammedov <imammedo@redhat.com>
1311 S: Supported
1312 F: include/hw/acpi/*
1313 F: include/hw/firmware/smbios.h
1314 F: hw/mem/*
1315 F: hw/acpi/*
1316 F: hw/smbios/*
1317 F: hw/i386/acpi-build.[hc]
1318 F: hw/arm/virt-acpi-build.c
1319 F: tests/bios-tables-test.c
1320 F: tests/acpi-utils.[hc]
1321 F: tests/data/acpi/
1323 ppc4xx
1324 M: David Gibson <david@gibson.dropbear.id.au>
1325 L: qemu-ppc@nongnu.org
1326 S: Odd Fixes
1327 F: hw/ppc/ppc4*.c
1328 F: hw/i2c/ppc4xx_i2c.c
1329 F: include/hw/ppc/ppc4xx.h
1330 F: include/hw/i2c/ppc4xx_i2c.h
1332 ppce500
1333 M: David Gibson <david@gibson.dropbear.id.au>
1334 L: qemu-ppc@nongnu.org
1335 S: Odd Fixes
1336 F: hw/ppc/e500*
1337 F: hw/pci-host/ppce500.c
1338 F: hw/net/fsl_etsec/
1340 Character devices
1341 M: Marc-André Lureau <marcandre.lureau@redhat.com>
1342 R: Paolo Bonzini <pbonzini@redhat.com>
1343 S: Odd Fixes
1344 F: hw/char/
1346 Network devices
1347 M: Jason Wang <jasowang@redhat.com>
1348 S: Odd Fixes
1349 F: hw/net/
1350 F: include/hw/net/
1351 F: tests/virtio-net-test.c
1352 T: git https://github.com/jasowang/qemu.git net
1354 SCSI
1355 M: Paolo Bonzini <pbonzini@redhat.com>
1356 R: Fam Zheng <fam@euphon.net>
1357 S: Supported
1358 F: include/hw/scsi/*
1359 F: hw/scsi/*
1360 F: tests/virtio-scsi-test.c
1361 T: git https://github.com/bonzini/qemu.git scsi-next
1364 M: Peter Crosthwaite <crosthwaite.peter@gmail.com>
1365 M: Alistair Francis <alistair@alistair23.me>
1366 S: Maintained
1367 F: hw/ssi/*
1368 F: hw/block/m25p80.c
1369 F: include/hw/ssi/ssi.h
1370 X: hw/ssi/xilinx_*
1371 F: tests/m25p80-test.c
1373 Xilinx SPI
1374 M: Alistair Francis <alistair@alistair23.me>
1375 M: Peter Crosthwaite <crosthwaite.peter@gmail.com>
1376 S: Maintained
1377 F: hw/ssi/xilinx_*
1379 SD (Secure Card)
1380 M: Philippe Mathieu-Daudé <f4bug@amsat.org>
1381 S: Odd Fixes
1382 F: include/hw/sd/sd*
1383 F: hw/sd/core.c
1384 F: hw/sd/sd*
1385 F: tests/sd*
1388 M: Gerd Hoffmann <kraxel@redhat.com>
1389 S: Maintained
1390 F: hw/usb/*
1391 F: tests/usb-*-test.c
1392 F: docs/usb2.txt
1393 F: docs/usb-storage.txt
1394 F: include/hw/usb.h
1395 F: include/hw/usb/
1396 F: default-configs/usb.mak
1398 USB (serial adapter)
1399 M: Gerd Hoffmann <kraxel@redhat.com>
1400 M: Samuel Thibault <samuel.thibault@ens-lyon.org>
1401 S: Maintained
1402 F: hw/usb/dev-serial.c
1404 VFIO
1405 M: Alex Williamson <alex.williamson@redhat.com>
1406 S: Supported
1407 F: hw/vfio/*
1408 F: include/hw/vfio/
1410 vfio-ccw
1411 M: Cornelia Huck <cohuck@redhat.com>
1412 M: Eric Farman <farman@linux.ibm.com>
1413 M: Farhan Ali <alifm@linux.ibm.com>
1414 S: Supported
1415 F: hw/vfio/ccw.c
1416 F: hw/s390x/s390-ccw.c
1417 F: include/hw/s390x/s390-ccw.h
1418 T: git https://github.com/cohuck/qemu.git s390-next
1419 L: qemu-s390x@nongnu.org
1421 vfio-ap
1422 M: Christian Borntraeger <borntraeger@de.ibm.com>
1423 M: Tony Krowiak <akrowiak@linux.ibm.com>
1424 M: Halil Pasic <pasic@linux.ibm.com>
1425 M: Pierre Morel <pmorel@linux.ibm.com>
1426 S: Supported
1427 F: hw/s390x/ap-device.c
1428 F: hw/s390x/ap-bridge.c
1429 F: include/hw/s390x/ap-device.h
1430 F: include/hw/s390x/ap-bridge.h
1431 F: hw/vfio/ap.c
1432 F: docs/vfio-ap.txt
1433 L: qemu-s390x@nongnu.org
1435 vhost
1436 M: Michael S. Tsirkin <mst@redhat.com>
1437 S: Supported
1438 F: hw/*/*vhost*
1439 F: docs/interop/vhost-user.txt
1440 F: contrib/vhost-user-*/
1442 virtio
1443 M: Michael S. Tsirkin <mst@redhat.com>
1444 S: Supported
1445 F: hw/*/virtio*
1446 F: hw/virtio/Makefile.objs
1447 F: hw/virtio/trace-events
1448 F: net/vhost-user.c
1449 F: include/hw/virtio/
1450 F: tests/virtio-balloon-test.c
1452 virtio-9p
1453 M: Greg Kurz <groug@kaod.org>
1454 S: Supported
1455 F: hw/9pfs/
1456 F: fsdev/
1457 F: tests/virtio-9p-test.c
1458 T: git https://github.com/gkurz/qemu.git 9p-next
1460 virtio-blk
1461 M: Stefan Hajnoczi <stefanha@redhat.com>
1462 L: qemu-block@nongnu.org
1463 S: Supported
1464 F: hw/block/virtio-blk.c
1465 F: hw/block/dataplane/*
1466 F: tests/virtio-blk-test.c
1467 T: git https://github.com/stefanha/qemu.git block
1469 virtio-ccw
1470 M: Cornelia Huck <cohuck@redhat.com>
1471 M: Halil Pasic <pasic@linux.ibm.com>
1472 S: Supported
1473 F: hw/s390x/virtio-ccw*.[hc]
1474 F: hw/s390x/vhost-vsock-ccw.c
1475 T: git https://github.com/cohuck/qemu.git s390-next
1476 T: git https://github.com/borntraeger/qemu.git s390-next
1477 L: qemu-s390x@nongnu.org
1479 virtio-input
1480 M: Gerd Hoffmann <kraxel@redhat.com>
1481 S: Maintained
1482 F: hw/input/virtio-input*.c
1483 F: include/hw/virtio/virtio-input.h
1485 virtio-serial
1486 M: Amit Shah <amit@kernel.org>
1487 S: Supported
1488 F: hw/char/virtio-serial-bus.c
1489 F: hw/char/virtio-console.c
1490 F: include/hw/virtio/virtio-serial.h
1491 F: tests/virtio-console-test.c
1492 F: tests/virtio-serial-test.c
1494 virtio-rng
1495 M: Amit Shah <amit@kernel.org>
1496 S: Supported
1497 F: hw/virtio/virtio-rng.c
1498 F: include/hw/virtio/virtio-rng.h
1499 F: include/sysemu/rng*.h
1500 F: backends/rng*.c
1501 F: tests/virtio-rng-test.c
1503 virtio-crypto
1504 M: Gonglei <arei.gonglei@huawei.com>
1505 S: Supported
1506 F: hw/virtio/virtio-crypto.c
1507 F: hw/virtio/virtio-crypto-pci.c
1508 F: include/hw/virtio/virtio-crypto.h
1510 nvme
1511 M: Keith Busch <keith.busch@intel.com>
1512 L: qemu-block@nongnu.org
1513 S: Supported
1514 F: hw/block/nvme*
1515 F: tests/nvme-test.c
1517 megasas
1518 M: Hannes Reinecke <hare@suse.com>
1519 L: qemu-block@nongnu.org
1520 S: Supported
1521 F: hw/scsi/megasas.c
1522 F: hw/scsi/mfi.h
1523 F: tests/megasas-test.c
1525 Network packet abstractions
1526 M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
1527 S: Maintained
1528 F: include/net/eth.h
1529 F: net/eth.c
1530 F: hw/net/net_rx_pkt*
1531 F: hw/net/net_tx_pkt*
1533 Vmware
1534 M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
1535 S: Maintained
1536 F: hw/net/vmxnet*
1537 F: hw/scsi/vmw_pvscsi*
1538 F: tests/vmxnet3-test.c
1540 Rocker
1541 M: Jiri Pirko <jiri@resnulli.us>
1542 S: Maintained
1543 F: hw/net/rocker/
1544 F: tests/rocker/
1545 F: docs/specs/rocker.txt
1547 NVDIMM
1548 M: Xiao Guangrong <xiaoguangrong.eric@gmail.com>
1549 S: Maintained
1550 F: hw/acpi/nvdimm.c
1551 F: hw/mem/nvdimm.c
1552 F: include/hw/mem/nvdimm.h
1553 F: docs/nvdimm.txt
1555 e1000x
1556 M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
1557 S: Maintained
1558 F: hw/net/e1000x*
1560 e1000e
1561 M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
1562 S: Maintained
1563 F: hw/net/e1000e*
1565 eepro100
1566 M: Stefan Weil <sw@weilnetz.de>
1567 S: Maintained
1568 F: hw/net/eepro100.c
1570 Generic Loader
1571 M: Alistair Francis <alistair@alistair23.me>
1572 S: Maintained
1573 F: hw/core/generic-loader.c
1574 F: include/hw/core/generic-loader.h
1575 F: docs/generic-loader.txt
1577 Intel Hexadecimal Object File Loader
1578 M: Su Hang <suhang16@mails.ucas.ac.cn>
1579 S: Maintained
1580 F: tests/hexloader-test.c
1581 F: tests/data/hex-loader/test.hex
1583 CHRP NVRAM
1584 M: Thomas Huth <thuth@redhat.com>
1585 S: Maintained
1586 F: hw/nvram/chrp_nvram.c
1587 F: include/hw/nvram/chrp_nvram.h
1588 F: tests/prom-env-test.c
1590 VM Generation ID
1591 M: Ben Warren <ben@skyportsystems.com>
1592 S: Maintained
1593 F: hw/acpi/vmgenid.c
1594 F: include/hw/acpi/vmgenid.h
1595 F: docs/specs/vmgenid.txt
1596 F: tests/vmgenid-test.c
1597 F: stubs/vmgenid.c
1599 Unimplemented device
1600 M: Peter Maydell <peter.maydell@linaro.org>
1601 R: Philippe Mathieu-Daudé <f4bug@amsat.org>
1602 S: Maintained
1603 F: include/hw/misc/unimp.h
1604 F: hw/misc/unimp.c
1606 Standard VGA
1607 M: Gerd Hoffmann <kraxel@redhat.com>
1608 S: Maintained
1609 F: hw/display/vga*
1610 F: hw/display/bochs-display.c
1611 F: include/hw/display/vga.h
1612 F: include/hw/display/bochs-vbe.h
1614 ramfb
1615 M: Gerd Hoffmann <kraxel@redhat.com>
1616 S: Maintained
1617 F: hw/display/ramfb*.c
1618 F: include/hw/display/ramfb.h
1620 virtio-gpu
1621 M: Gerd Hoffmann <kraxel@redhat.com>
1622 S: Maintained
1623 F: hw/display/virtio-gpu*
1624 F: hw/display/virtio-vga.c
1625 F: include/hw/virtio/virtio-gpu.h
1627 Cirrus VGA
1628 M: Gerd Hoffmann <kraxel@redhat.com>
1629 S: Odd Fixes
1630 W: https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
1631 F: hw/display/cirrus*
1633 EDID Generator
1634 M: Gerd Hoffmann <kraxel@redhat.com>
1635 S: Maintained
1636 F: hw/display/edid*
1637 F: include/hw/display/edid.h
1638 F: qemu-edid.c
1640 Firmware configuration (fw_cfg)
1641 M: Philippe Mathieu-Daudé <philmd@redhat.com>
1642 R: Laszlo Ersek <lersek@redhat.com>
1643 R: Gerd Hoffmann <kraxel@redhat.com>
1644 S: Supported
1645 F: docs/specs/fw_cfg.txt
1646 F: hw/nvram/fw_cfg.c
1647 F: include/hw/nvram/fw_cfg.h
1648 F: include/standard-headers/linux/qemu_fw_cfg.h
1649 F: tests/libqos/fw_cfg.c
1650 F: tests/fw_cfg-test.c
1651 T: git https://github.com/philmd/qemu.git fw_cfg-next
1653 Subsystems
1654 ----------
1655 Audio
1656 M: Gerd Hoffmann <kraxel@redhat.com>
1657 S: Maintained
1658 F: audio/
1659 F: hw/audio/
1660 F: include/hw/audio/
1661 F: tests/ac97-test.c
1662 F: tests/es1370-test.c
1663 F: tests/intel-hda-test.c
1665 Block layer core
1666 M: Kevin Wolf <kwolf@redhat.com>
1667 M: Max Reitz <mreitz@redhat.com>
1668 L: qemu-block@nongnu.org
1669 S: Supported
1670 F: block*
1671 F: block/
1672 F: hw/block/
1673 F: include/block/
1674 F: qemu-img*
1675 F: qemu-io*
1676 F: tests/qemu-iotests/
1677 F: util/qemu-progress.c
1678 F: qobject/block-qdict.c
1679 F: tests/check-block-qdict.c
1680 T: git https://repo.or.cz/qemu/kevin.git block
1682 Block I/O path
1683 M: Stefan Hajnoczi <stefanha@redhat.com>
1684 M: Fam Zheng <fam@euphon.net>
1685 L: qemu-block@nongnu.org
1686 S: Supported
1687 F: util/async.c
1688 F: util/aio-*.c
1689 F: block/io.c
1690 F: migration/block*
1691 F: include/block/aio.h
1692 F: include/block/aio-wait.h
1693 F: scripts/qemugdb/aio.py
1694 T: git https://github.com/stefanha/qemu.git block
1696 Block SCSI subsystem
1697 M: Paolo Bonzini <pbonzini@redhat.com>
1698 R: Fam Zheng <fam@euphon.net>
1699 L: qemu-block@nongnu.org
1700 S: Supported
1701 F: include/scsi/*
1702 F: scsi/*
1704 Block Jobs
1705 M: Jeff Cody <jcody@redhat.com>
1706 L: qemu-block@nongnu.org
1707 S: Supported
1708 F: blockjob.c
1709 F: include/block/blockjob.h
1710 F: job.c
1711 F: job-qmp.c
1712 F: include/qemu/job.h
1713 F: block/backup.c
1714 F: block/commit.c
1715 F: block/stream.c
1716 F: block/mirror.c
1717 F: qapi/job.json
1718 T: git https://github.com/codyprime/qemu-kvm-jtc.git block
1720 Block QAPI, monitor, command line
1721 M: Markus Armbruster <armbru@redhat.com>
1722 S: Supported
1723 F: blockdev.c
1724 F: block/qapi.c
1725 F: qapi/block*.json
1726 F: qapi/transaction.json
1727 T: git https://repo.or.cz/qemu/armbru.git block-next
1729 Dirty Bitmaps
1730 M: Fam Zheng <fam@euphon.net>
1731 M: John Snow <jsnow@redhat.com>
1732 L: qemu-block@nongnu.org
1733 S: Supported
1734 F: util/hbitmap.c
1735 F: block/dirty-bitmap.c
1736 F: include/qemu/hbitmap.h
1737 F: include/block/dirty-bitmap.h
1738 F: tests/test-hbitmap.c
1739 F: docs/interop/bitmaps.rst
1740 T: git https://github.com/famz/qemu.git bitmaps
1741 T: git https://github.com/jnsnow/qemu.git bitmaps
1743 Character device backends
1744 M: Marc-André Lureau <marcandre.lureau@redhat.com>
1745 R: Paolo Bonzini <pbonzini@redhat.com>
1746 S: Maintained
1747 F: chardev/
1748 F: include/chardev/
1749 F: qapi/char.json
1751 Character Devices (Braille)
1752 M: Samuel Thibault <samuel.thibault@ens-lyon.org>
1753 S: Maintained
1754 F: chardev/baum.c
1756 Command line option argument parsing
1757 M: Markus Armbruster <armbru@redhat.com>
1758 S: Supported
1759 F: include/qemu/option.h
1760 F: tests/test-keyval.c
1761 F: tests/test-qemu-opts.c
1762 F: util/keyval.c
1763 F: util/qemu-option.c
1765 Coverity model
1766 M: Markus Armbruster <armbru@redhat.com>
1767 S: Supported
1768 F: scripts/coverity-model.c
1771 L: qemu-devel@nongnu.org
1772 S: Supported
1773 F: qom/cpu.c
1774 F: include/qom/cpu.h
1776 Device Tree
1777 M: Peter Crosthwaite <crosthwaite.peter@gmail.com>
1778 M: Alexander Graf <agraf@suse.de>
1779 S: Maintained
1780 F: device_tree.c
1781 F: include/sysemu/device_tree.h
1783 Dump
1784 S: Supported
1785 M: Marc-André Lureau <marcandre.lureau@redhat.com>
1786 F: dump.c
1787 F: hw/misc/vmcoreinfo.c
1788 F: include/hw/misc/vmcoreinfo.h
1789 F: include/sysemu/dump-arch.h
1790 F: include/sysemu/dump.h
1791 F: scripts/dump-guest-memory.py
1792 F: stubs/dump.c
1794 Error reporting
1795 M: Markus Armbruster <armbru@redhat.com>
1796 S: Supported
1797 F: include/qapi/error.h
1798 F: include/qemu/error-report.h
1799 F: util/error.c
1800 F: util/qemu-error.c
1802 GDB stub
1803 L: qemu-devel@nongnu.org
1804 S: Odd Fixes
1805 F: gdbstub*
1806 F: gdb-xml/
1808 Memory API
1809 M: Paolo Bonzini <pbonzini@redhat.com>
1810 S: Supported
1811 F: include/exec/ioport.h
1812 F: ioport.c
1813 F: include/exec/memory.h
1814 F: include/exec/ram_addr.h
1815 F: memory.c
1816 F: include/exec/memory-internal.h
1817 F: exec.c
1819 SPICE
1820 M: Gerd Hoffmann <kraxel@redhat.com>
1821 S: Supported
1822 F: include/ui/qemu-spice.h
1823 F: include/ui/spice-display.h
1824 F: ui/spice-*.c
1825 F: audio/spiceaudio.c
1826 F: hw/display/qxl*
1827 F: qapi/ui.json
1828 F: docs/spice-port-fqdn.txt
1830 Graphics
1831 M: Gerd Hoffmann <kraxel@redhat.com>
1832 S: Odd Fixes
1833 F: ui/
1834 F: include/ui/
1835 F: qapi/ui.json
1836 F: util/drm.c
1838 Cocoa graphics
1839 M: Peter Maydell <peter.maydell@linaro.org>
1840 S: Odd Fixes
1841 F: ui/cocoa.m
1843 Main loop
1844 M: Paolo Bonzini <pbonzini@redhat.com>
1845 S: Maintained
1846 F: cpus.c
1847 F: util/main-loop.c
1848 F: util/qemu-timer.c
1849 F: vl.c
1850 F: qapi/run-state.json
1852 Human Monitor (HMP)
1853 M: Dr. David Alan Gilbert <dgilbert@redhat.com>
1854 S: Maintained
1855 F: monitor.c
1856 F: hmp.[ch]
1857 F: hmp-commands*.hx
1858 F: include/monitor/hmp-target.h
1859 F: tests/test-hmp.c
1861 Network device backends
1862 M: Jason Wang <jasowang@redhat.com>
1863 S: Maintained
1864 F: net/
1865 F: include/net/
1866 T: git https://github.com/jasowang/qemu.git net
1867 F: qapi/net.json
1869 Netmap network backend
1870 M: Luigi Rizzo <rizzo@iet.unipi.it>
1871 M: Giuseppe Lettieri <g.lettieri@iet.unipi.it>
1872 M: Vincenzo Maffione <v.maffione@gmail.com>
1873 W: http://info.iet.unipi.it/~luigi/netmap/
1874 S: Maintained
1875 F: net/netmap.c
1877 NUMA
1878 M: Eduardo Habkost <ehabkost@redhat.com>
1879 S: Maintained
1880 F: numa.c
1881 F: include/sysemu/numa.h
1882 T: git https://github.com/ehabkost/qemu.git machine-next
1884 Host Memory Backends
1885 M: Eduardo Habkost <ehabkost@redhat.com>
1886 M: Igor Mammedov <imammedo@redhat.com>
1887 S: Maintained
1888 F: backends/hostmem*.c
1889 F: include/sysemu/hostmem.h
1890 T: git https://github.com/ehabkost/qemu.git machine-next
1892 Cryptodev Backends
1893 M: Gonglei <arei.gonglei@huawei.com>
1894 S: Maintained
1895 F: include/sysemu/cryptodev*.h
1896 F: backends/cryptodev*.c
1898 Python scripts
1899 M: Eduardo Habkost <ehabkost@redhat.com>
1900 M: Cleber Rosa <crosa@redhat.com>
1901 S: Odd fixes
1902 F: scripts/qmp/*
1903 F: scripts/*.py
1904 F: tests/*.py
1906 QAPI
1907 M: Markus Armbruster <armbru@redhat.com>
1908 M: Michael Roth <mdroth@linux.vnet.ibm.com>
1909 S: Supported
1910 F: qapi/
1911 X: qapi/*.json
1912 F: include/qapi/
1913 X: include/qapi/qmp/
1914 F: include/qapi/qmp/dispatch.h
1915 F: tests/qapi-schema/
1916 F: tests/test-*-visitor.c
1917 F: tests/test-qapi-*.c
1918 F: tests/test-qmp-*.c
1919 F: tests/test-visitor-serialization.c
1920 F: scripts/qapi-gen.py
1921 F: scripts/qapi/*
1922 F: docs/devel/qapi*
1923 T: git https://repo.or.cz/qemu/armbru.git qapi-next
1925 QAPI Schema
1926 M: Eric Blake <eblake@redhat.com>
1927 M: Markus Armbruster <armbru@redhat.com>
1928 S: Supported
1929 F: qapi/*.json
1930 T: git https://repo.or.cz/qemu/armbru.git qapi-next
1932 QObject
1933 M: Markus Armbruster <armbru@redhat.com>
1934 S: Supported
1935 F: qobject/
1936 F: include/qapi/qmp/
1937 X: include/qapi/qmp/dispatch.h
1938 F: scripts/coccinelle/qobject.cocci
1939 F: tests/check-qdict.c
1940 F: tests/check-qnum.c
1941 F: tests/check-qjson.c
1942 F: tests/check-qlist.c
1943 F: tests/check-qstring.c
1944 T: git https://repo.or.cz/qemu/armbru.git qapi-next
1946 QEMU Guest Agent
1947 M: Michael Roth <mdroth@linux.vnet.ibm.com>
1948 S: Maintained
1949 F: qga/
1950 F: qemu-ga.texi
1951 F: scripts/qemu-guest-agent/
1952 F: tests/test-qga.c
1953 F: docs/interop/qemu-ga-ref.texi
1954 T: git https://github.com/mdroth/qemu.git qga
1957 M: Andreas Färber <afaerber@suse.de>
1958 S: Supported
1959 T: git https://github.com/afaerber/qemu-cpu.git qom-next
1960 F: include/qom/
1961 X: include/qom/cpu.h
1962 F: qom/
1963 X: qom/cpu.c
1964 F: tests/check-qom-interface.c
1965 F: tests/check-qom-proplist.c
1968 M: Markus Armbruster <armbru@redhat.com>
1969 S: Supported
1970 F: qmp.c
1971 F: monitor.c
1972 F: docs/devel/*qmp-*
1973 F: docs/interop/*qmp-*
1974 F: scripts/qmp/
1975 F: tests/qmp-test.c
1976 F: tests/qmp-cmd-test.c
1977 T: git https://repo.or.cz/qemu/armbru.git qapi-next
1979 qtest
1980 M: Thomas Huth <thuth@redhat.com>
1981 M: Laurent Vivier <lvivier@redhat.com>
1982 R: Paolo Bonzini <pbonzini@redhat.com>
1983 S: Maintained
1984 F: qtest.c
1985 F: tests/libqtest.*
1986 F: tests/libqos/
1987 F: tests/*-test.c
1989 Register API
1990 M: Alistair Francis <alistair@alistair23.me>
1991 S: Maintained
1992 F: hw/core/register.c
1993 F: include/hw/register.h
1994 F: include/hw/registerfields.h
1996 SLIRP
1997 M: Samuel Thibault <samuel.thibault@ens-lyon.org>
1998 M: Jan Kiszka <jan.kiszka@siemens.com>
1999 S: Maintained
2000 F: slirp/
2001 F: net/slirp.c
2002 F: include/net/slirp.h
2003 T: git https://people.debian.org/~sthibault/qemu.git slirp
2004 T: git git://git.kiszka.org/qemu.git queues/slirp
2006 Stubs
2007 M: Paolo Bonzini <pbonzini@redhat.com>
2008 S: Maintained
2009 F: stubs/
2011 Tracing
2012 M: Stefan Hajnoczi <stefanha@redhat.com>
2013 S: Maintained
2014 F: trace/
2015 F: trace-events
2016 F: qemu-option-trace.texi
2017 F: scripts/tracetool.py
2018 F: scripts/tracetool/
2019 F: docs/devel/tracing.txt
2020 T: git https://github.com/stefanha/qemu.git tracing
2023 M: Stefan Berger <stefanb@linux.ibm.com>
2024 S: Maintained
2025 F: tpm.c
2026 F: stubs/tpm.c
2027 F: hw/tpm/*
2028 F: include/hw/acpi/tpm.h
2029 F: include/sysemu/tpm*
2030 F: qapi/tpm.json
2031 F: backends/tpm.c
2032 F: tests/*tpm*
2033 T: git https://github.com/stefanberger/qemu-tpm.git tpm-next
2035 Checkpatch
2036 S: Odd Fixes
2037 F: scripts/checkpatch.pl
2039 Migration
2040 M: Juan Quintela <quintela@redhat.com>
2041 M: Dr. David Alan Gilbert <dgilbert@redhat.com>
2042 S: Maintained
2043 F: include/migration/
2044 F: migration/
2045 F: scripts/vmstate-static-checker.py
2046 F: tests/vmstate-static-checker-data/
2047 F: tests/migration-test.c
2048 F: docs/devel/migration.rst
2049 F: qapi/migration.json
2051 Seccomp
2052 M: Eduardo Otubo <otubo@redhat.com>
2053 S: Supported
2054 F: qemu-seccomp.c
2055 F: include/sysemu/seccomp.h
2057 Cryptography
2058 M: Daniel P. Berrange <berrange@redhat.com>
2059 S: Maintained
2060 F: crypto/
2061 F: include/crypto/
2062 F: tests/test-crypto-*
2063 F: tests/benchmark-crypto-*
2064 F: qemu.sasl
2066 Coroutines
2067 M: Stefan Hajnoczi <stefanha@redhat.com>
2068 M: Kevin Wolf <kwolf@redhat.com>
2069 F: util/*coroutine*
2070 F: include/qemu/coroutine*
2071 F: tests/test-coroutine.c
2073 Buffers
2074 M: Daniel P. Berrange <berrange@redhat.com>
2075 S: Odd fixes
2076 F: util/buffer.c
2077 F: include/qemu/buffer.h
2079 I/O Channels
2080 M: Daniel P. Berrange <berrange@redhat.com>
2081 S: Maintained
2082 F: io/
2083 F: include/io/
2084 F: tests/test-io-*
2086 Sockets
2087 M: Daniel P. Berrange <berrange@redhat.com>
2088 M: Gerd Hoffmann <kraxel@redhat.com>
2089 S: Maintained
2090 F: include/qemu/sockets.h
2091 F: util/qemu-sockets.c
2092 F: qapi/sockets.json
2094 Throttling infrastructure
2095 M: Alberto Garcia <berto@igalia.com>
2096 S: Supported
2097 F: block/throttle-groups.c
2098 F: include/block/throttle-groups.h
2099 F: include/qemu/throttle*.h
2100 F: util/throttle.c
2101 F: docs/throttle.txt
2102 F: tests/test-throttle.c
2103 L: qemu-block@nongnu.org
2105 UUID
2106 M: Fam Zheng <fam@euphon.net>
2107 S: Supported
2108 F: util/uuid.c
2109 F: include/qemu/uuid.h
2110 F: tests/test-uuid.c
2112 COLO Framework
2113 M: zhanghailiang <zhang.zhanghailiang@huawei.com>
2114 S: Maintained
2115 F: migration/colo*
2116 F: include/migration/colo.h
2117 F: include/migration/failover.h
2118 F: docs/COLO-FT.txt
2120 COLO Proxy
2121 M: Zhang Chen <zhangckid@gmail.com>
2122 M: Li Zhijian <lizhijian@cn.fujitsu.com>
2123 S: Supported
2124 F: docs/colo-proxy.txt
2125 F: net/colo*
2126 F: net/filter-rewriter.c
2127 F: net/filter-mirror.c
2129 Record/replay
2130 M: Pavel Dovgalyuk <pavel.dovgaluk@ispras.ru>
2131 R: Paolo Bonzini <pbonzini@redhat.com>
2132 W: https://wiki.qemu.org/Features/record-replay
2133 S: Supported
2134 F: replay/*
2135 F: block/blkreplay.c
2136 F: net/filter-replay.c
2137 F: include/sysemu/replay.h
2138 F: docs/replay.txt
2139 F: stubs/replay.c
2141 IOVA Tree
2142 M: Peter Xu <peterx@redhat.com>
2143 S: Maintained
2144 F: include/qemu/iova-tree.h
2145 F: util/iova-tree.c
2147 elf2dmp
2148 M: Viktor Prutyanov <viktor.prutyanov@phystech.edu>
2149 S: Maintained
2150 F: contrib/elf2dmp/
2152 Usermode Emulation
2153 ------------------
2154 Overall
2155 M: Riku Voipio <riku.voipio@iki.fi>
2156 S: Maintained
2157 F: thunk.c
2158 F: accel/tcg/user-exec*.c
2160 BSD user
2161 S: Orphan
2162 F: bsd-user/
2163 F: default-configs/*-bsd-user.mak
2165 Linux user
2166 M: Riku Voipio <riku.voipio@iki.fi>
2167 R: Laurent Vivier <laurent@vivier.eu>
2168 S: Maintained
2169 F: linux-user/
2170 F: default-configs/*-linux-user.mak
2171 F: scripts/qemu-binfmt-conf.sh
2173 Tiny Code Generator (TCG)
2174 -------------------------
2175 Common code
2176 M: Richard Henderson <rth@twiddle.net>
2177 S: Maintained
2178 F: tcg/
2180 AArch64 target
2181 M: Claudio Fontana <claudio.fontana@huawei.com>
2182 M: Claudio Fontana <claudio.fontana@gmail.com>
2183 S: Maintained
2184 L: qemu-arm@nongnu.org
2185 F: tcg/aarch64/
2186 F: disas/arm-a64.cc
2187 F: disas/libvixl/
2189 ARM target
2190 M: Andrzej Zaborowski <balrogg@gmail.com>
2191 S: Maintained
2192 L: qemu-arm@nongnu.org
2193 F: tcg/arm/
2194 F: disas/arm.c
2196 i386 target
2197 L: qemu-devel@nongnu.org
2198 S: Maintained
2199 F: tcg/i386/
2200 F: disas/i386.c
2202 MIPS target
2203 M: Aurelien Jarno <aurelien@aurel32.net>
2204 R: Aleksandar Rikalo <arikalo@wavecomp.com>
2205 R: Stefan Markovic <smarkovic@wavecomp.com>
2206 S: Maintained
2207 F: tcg/mips/
2208 F: disas/mips.c
2211 M: Richard Henderson <rth@twiddle.net>
2212 S: Odd Fixes
2213 F: tcg/ppc/
2214 F: disas/ppc.c
2216 RISC-V
2217 M: Michael Clark <mjc@sifive.com>
2218 M: Palmer Dabbelt <palmer@sifive.com>
2219 M: Alistair Francis <Alistair.Francis@wdc.com>
2220 L: qemu-riscv@nongnu.org
2221 S: Maintained
2222 F: tcg/riscv/
2223 F: disas/riscv.c
2225 S390 target
2226 M: Richard Henderson <rth@twiddle.net>
2227 S: Maintained
2228 F: tcg/s390/
2229 F: disas/s390.c
2230 L: qemu-s390x@nongnu.org
2232 SPARC target
2233 S: Odd Fixes
2234 F: tcg/sparc/
2235 F: disas/sparc.c
2237 TCI target
2238 M: Stefan Weil <sw@weilnetz.de>
2239 S: Maintained
2240 F: tcg/tci/
2241 F: tcg/tci.c
2242 F: disas/tci.c
2244 Block drivers
2245 -------------
2246 VMDK
2247 M: Fam Zheng <fam@euphon.net>
2248 L: qemu-block@nongnu.org
2249 S: Supported
2250 F: block/vmdk.c
2253 M: Josh Durgin <jdurgin@redhat.com>
2254 M: Jeff Cody <jcody@redhat.com>
2255 L: qemu-block@nongnu.org
2256 S: Supported
2257 F: block/rbd.c
2258 T: git https://github.com/codyprime/qemu-kvm-jtc.git block
2260 Sheepdog
2261 M: Liu Yuan <namei.unix@gmail.com>
2262 M: Jeff Cody <jcody@redhat.com>
2263 L: qemu-block@nongnu.org
2264 S: Supported
2265 F: block/sheepdog.c
2266 T: git https://github.com/codyprime/qemu-kvm-jtc.git block
2268 VHDX
2269 M: Jeff Cody <jcody@redhat.com>
2270 L: qemu-block@nongnu.org
2271 S: Supported
2272 F: block/vhdx*
2273 T: git https://github.com/codyprime/qemu-kvm-jtc.git block
2276 M: Stefan Weil <sw@weilnetz.de>
2277 L: qemu-block@nongnu.org
2278 S: Maintained
2279 F: block/vdi.c
2281 iSCSI
2282 M: Ronnie Sahlberg <ronniesahlberg@gmail.com>
2283 M: Paolo Bonzini <pbonzini@redhat.com>
2284 M: Peter Lieven <pl@kamp.de>
2285 L: qemu-block@nongnu.org
2286 S: Odd Fixes
2287 F: block/iscsi.c
2288 F: block/iscsi-opts.c
2290 Network Block Device (NBD)
2291 M: Eric Blake <eblake@redhat.com>
2292 L: qemu-block@nongnu.org
2293 S: Maintained
2294 F: block/nbd*
2295 F: nbd/
2296 F: include/block/nbd*
2297 F: qemu-nbd.*
2298 F: blockdev-nbd.c
2299 F: docs/interop/nbd.txt
2300 T: git https://repo.or.cz/qemu/ericb.git nbd
2303 M: Jeff Cody <jcody@redhat.com>
2304 M: Peter Lieven <pl@kamp.de>
2305 L: qemu-block@nongnu.org
2306 S: Maintained
2307 F: block/nfs.c
2308 T: git https://github.com/codyprime/qemu-kvm-jtc.git block
2311 M: Richard W.M. Jones <rjones@redhat.com>
2312 M: Jeff Cody <jcody@redhat.com>
2313 L: qemu-block@nongnu.org
2314 S: Supported
2315 F: block/ssh.c
2316 T: git https://github.com/codyprime/qemu-kvm-jtc.git block
2318 CURL
2319 M: Jeff Cody <jcody@redhat.com>
2320 L: qemu-block@nongnu.org
2321 S: Supported
2322 F: block/curl.c
2323 T: git https://github.com/codyprime/qemu-kvm-jtc.git block
2325 GLUSTER
2326 M: Jeff Cody <jcody@redhat.com>
2327 L: qemu-block@nongnu.org
2328 S: Supported
2329 F: block/gluster.c
2330 T: git https://github.com/codyprime/qemu-kvm-jtc.git block
2332 Null Block Driver
2333 M: Fam Zheng <fam@euphon.net>
2334 L: qemu-block@nongnu.org
2335 S: Supported
2336 F: block/null.c
2338 NVMe Block Driver
2339 M: Fam Zheng <fam@euphon.net>
2340 L: qemu-block@nongnu.org
2341 S: Supported
2342 F: block/nvme*
2344 Bootdevice
2345 M: Gonglei <arei.gonglei@huawei.com>
2346 S: Maintained
2347 F: bootdevice.c
2349 Quorum
2350 M: Alberto Garcia <berto@igalia.com>
2351 S: Supported
2352 F: block/quorum.c
2353 L: qemu-block@nongnu.org
2355 blklogwrites
2356 M: Ari Sundholm <ari@tuxera.com>
2357 L: qemu-block@nongnu.org
2358 S: Supported
2359 F: block/blklogwrites.c
2361 blkverify
2362 M: Stefan Hajnoczi <stefanha@redhat.com>
2363 L: qemu-block@nongnu.org
2364 S: Supported
2365 F: block/blkverify.c
2367 bochs
2368 M: Stefan Hajnoczi <stefanha@redhat.com>
2369 L: qemu-block@nongnu.org
2370 S: Supported
2371 F: block/bochs.c
2373 cloop
2374 M: Stefan Hajnoczi <stefanha@redhat.com>
2375 L: qemu-block@nongnu.org
2376 S: Supported
2377 F: block/cloop.c
2380 M: Stefan Hajnoczi <stefanha@redhat.com>
2381 L: qemu-block@nongnu.org
2382 S: Supported
2383 F: block/dmg.c
2385 parallels
2386 M: Stefan Hajnoczi <stefanha@redhat.com>
2387 M: Denis V. Lunev <den@openvz.org>
2388 L: qemu-block@nongnu.org
2389 S: Supported
2390 F: block/parallels.c
2391 F: docs/interop/parallels.txt
2394 M: Stefan Hajnoczi <stefanha@redhat.com>
2395 L: qemu-block@nongnu.org
2396 S: Supported
2397 F: block/qed.c
2400 M: Kevin Wolf <kwolf@redhat.com>
2401 L: qemu-block@nongnu.org
2402 S: Supported
2403 F: block/linux-aio.c
2404 F: include/block/raw-aio.h
2405 F: block/raw-format.c
2406 F: block/file-posix.c
2407 F: block/file-win32.c
2408 F: block/win32-aio.c
2410 qcow2
2411 M: Kevin Wolf <kwolf@redhat.com>
2412 M: Max Reitz <mreitz@redhat.com>
2413 L: qemu-block@nongnu.org
2414 S: Supported
2415 F: block/qcow2*
2416 F: docs/interop/qcow2.txt
2418 qcow
2419 M: Kevin Wolf <kwolf@redhat.com>
2420 L: qemu-block@nongnu.org
2421 S: Supported
2422 F: block/qcow.c
2424 blkdebug
2425 M: Kevin Wolf <kwolf@redhat.com>
2426 M: Max Reitz <mreitz@redhat.com>
2427 L: qemu-block@nongnu.org
2428 S: Supported
2429 F: block/blkdebug.c
2432 M: Kevin Wolf <kwolf@redhat.com>
2433 L: qemu-block@nongnu.org
2434 S: Supported
2435 F: block/vpc.c
2437 vvfat
2438 M: Kevin Wolf <kwolf@redhat.com>
2439 L: qemu-block@nongnu.org
2440 S: Supported
2441 F: block/vvfat.c
2443 Image format fuzzer
2444 M: Stefan Hajnoczi <stefanha@redhat.com>
2445 L: qemu-block@nongnu.org
2446 S: Supported
2447 F: tests/image-fuzzer/
2449 Replication
2450 M: Wen Congyang <wencongyang2@huawei.com>
2451 M: Xie Changlong <xiechanglong.d@gmail.com>
2452 S: Supported
2453 F: replication*
2454 F: block/replication.c
2455 F: tests/test-replication.c
2456 F: docs/block-replication.txt
2458 PVRDMA
2459 M: Yuval Shaia <yuval.shaia@oracle.com>
2460 M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
2461 S: Maintained
2462 F: hw/rdma/*
2463 F: hw/rdma/vmw/*
2464 F: docs/pvrdma.txt
2465 F: contrib/rdmacm-mux/*
2466 F: qapi/rdma.json
2468 Build and test automation
2469 -------------------------
2470 Build and test automation
2471 M: Alex Bennée <alex.bennee@linaro.org>
2472 M: Fam Zheng <fam@euphon.net>
2473 R: Philippe Mathieu-Daudé <philmd@redhat.com>
2474 L: qemu-devel@nongnu.org
2475 S: Maintained
2476 F: .travis.yml
2477 F: scripts/travis/
2478 F: .shippable.yml
2479 F: tests/docker/
2480 F: tests/vm/
2481 W: https://travis-ci.org/qemu/qemu
2482 W: https://app.shippable.com/github/qemu/qemu
2483 W: http://patchew.org/QEMU/
2485 Guest Test Compilation Support
2486 M: Alex Bennée <alex.bennee@linaro.org>
2487 R: Philippe Mathieu-Daudé <f4bug@amsat.org>
2488 F: tests/tcg/Makefile
2489 F: tests/tcg/Makefile.include
2490 L: qemu-devel@nongnu.org
2492 Documentation
2493 -------------
2494 Build system architecture
2495 M: Daniel P. Berrange <berrange@redhat.com>
2496 S: Odd Fixes
2497 F: docs/devel/build-system.txt
2499 Incompatible changes
2500 R: libvir-list@redhat.com
2501 F: qemu-deprecated.texi
2503 Build System
2504 ------------
2505 GIT submodules
2506 M: Daniel P. Berrange <berrange@redhat.com>
2507 S: Odd Fixes
2508 F: scripts/git-submodule.sh