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