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