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