]> git.proxmox.com Git - mirror_qemu.git/blob - MAINTAINERS
Merge remote-tracking branch 'remotes/nvme/tags/nvme-next-pull-request' into staging
[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 general architecture support
87 M: Cornelia Huck <cohuck@redhat.com>
88 M: Thomas Huth <thuth@redhat.com>
89 S: Supported
90 F: default-configs/*/s390x-softmmu.mak
91 F: gdb-xml/s390*.xml
92 F: hw/char/sclp*.[hc]
93 F: hw/char/terminal3270.c
94 F: hw/intc/s390_flic.c
95 F: hw/intc/s390_flic_kvm.c
96 F: hw/s390x/
97 F: hw/vfio/ap.c
98 F: hw/vfio/ccw.c
99 F: hw/watchdog/wdt_diag288.c
100 F: include/hw/s390x/
101 F: include/hw/watchdog/wdt_diag288.h
102 F: pc-bios/s390-ccw/
103 F: pc-bios/s390-ccw.img
104 F: target/s390x/
105 F: docs/system/target-s390x.rst
106 F: docs/system/s390x/
107 F: tests/migration/s390x/
108 K: ^Subject:.*(?i)s390x?
109 T: git https://gitlab.com/cohuck/qemu.git s390-next
110 L: qemu-s390x@nongnu.org
111
112 Guest CPU cores (TCG)
113 ---------------------
114 Overall TCG CPUs
115 M: Richard Henderson <richard.henderson@linaro.org>
116 R: Paolo Bonzini <pbonzini@redhat.com>
117 S: Maintained
118 F: softmmu/cpus.c
119 F: cpus-common.c
120 F: page-vary.c
121 F: page-vary-common.c
122 F: accel/tcg/
123 F: accel/stubs/tcg-stub.c
124 F: util/cacheinfo.c
125 F: util/cacheflush.c
126 F: scripts/decodetree.py
127 F: docs/devel/decodetree.rst
128 F: include/exec/cpu*.h
129 F: include/exec/exec-all.h
130 F: include/exec/helper*.h
131 F: include/exec/tb-hash.h
132 F: include/sysemu/cpus.h
133 F: include/sysemu/tcg.h
134 F: include/hw/core/tcg-cpu-ops.h
135
136 FPU emulation
137 M: Aurelien Jarno <aurelien@aurel32.net>
138 M: Peter Maydell <peter.maydell@linaro.org>
139 M: Alex Bennée <alex.bennee@linaro.org>
140 S: Maintained
141 F: fpu/
142 F: include/fpu/
143 F: tests/fp/
144
145 Alpha TCG CPUs
146 M: Richard Henderson <richard.henderson@linaro.org>
147 S: Maintained
148 F: target/alpha/
149 F: tests/tcg/alpha/
150 F: disas/alpha.c
151
152 ARM TCG CPUs
153 M: Peter Maydell <peter.maydell@linaro.org>
154 L: qemu-arm@nongnu.org
155 S: Maintained
156 F: target/arm/
157 F: tests/tcg/arm/
158 F: tests/tcg/aarch64/
159 F: hw/arm/
160 F: hw/cpu/a*mpcore.c
161 F: include/hw/cpu/a*mpcore.h
162 F: disas/arm.c
163 F: disas/arm-a64.cc
164 F: disas/libvixl/
165 F: docs/system/target-arm.rst
166 F: docs/system/arm/cpu-features.rst
167
168 ARM SMMU
169 M: Eric Auger <eric.auger@redhat.com>
170 L: qemu-arm@nongnu.org
171 S: Maintained
172 F: hw/arm/smmu*
173 F: include/hw/arm/smmu*
174
175 AVR TCG CPUs
176 M: Michael Rolnik <mrolnik@gmail.com>
177 S: Maintained
178 F: docs/system/target-avr.rst
179 F: gdb-xml/avr-cpu.xml
180 F: target/avr/
181 F: tests/acceptance/machine_avr6.py
182
183 CRIS TCG CPUs
184 M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
185 S: Maintained
186 F: target/cris/
187 F: hw/cris/
188 F: include/hw/cris/
189 F: tests/tcg/cris/
190 F: disas/cris.c
191
192 Hexagon TCG CPUs
193 M: Taylor Simpson <tsimpson@quicinc.com>
194 S: Supported
195 F: target/hexagon/
196 F: linux-user/hexagon/
197 F: tests/tcg/hexagon/
198 F: disas/hexagon.c
199 F: default-configs/targets/hexagon-linux-user.mak
200
201 HPPA (PA-RISC) TCG CPUs
202 M: Richard Henderson <richard.henderson@linaro.org>
203 S: Maintained
204 F: target/hppa/
205 F: hw/hppa/
206 F: disas/hppa.c
207 F: hw/net/*i82596*
208 F: include/hw/net/lasi_82596.h
209
210 M68K TCG CPUs
211 M: Laurent Vivier <laurent@vivier.eu>
212 S: Maintained
213 F: target/m68k/
214 F: disas/m68k.c
215
216 MicroBlaze TCG CPUs
217 M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
218 S: Maintained
219 F: target/microblaze/
220 F: hw/microblaze/
221 F: disas/microblaze.c
222
223 MIPS TCG CPUs
224 M: Philippe Mathieu-Daudé <f4bug@amsat.org>
225 R: Aurelien Jarno <aurelien@aurel32.net>
226 R: Jiaxun Yang <jiaxun.yang@flygoat.com>
227 R: Aleksandar Rikalo <aleksandar.rikalo@syrmia.com>
228 S: Odd Fixes
229 F: target/mips/
230 F: default-configs/*/*mips*
231 F: disas/mips.c
232 F: docs/system/cpu-models-mips.rst.inc
233 F: hw/intc/mips_gic.c
234 F: hw/mips/
235 F: hw/misc/mips_*
236 F: hw/timer/mips_gictimer.c
237 F: include/hw/intc/mips_gic.h
238 F: include/hw/mips/
239 F: include/hw/misc/mips_*
240 F: include/hw/timer/mips_gictimer.h
241 F: tests/tcg/mips/
242 K: ^Subject:.*(?i)mips
243
244 MIPS TCG CPUs (nanoMIPS ISA)
245 S: Orphan
246 F: disas/nanomips.*
247
248 NiosII TCG CPUs
249 M: Chris Wulff <crwulff@gmail.com>
250 M: Marek Vasut <marex@denx.de>
251 S: Maintained
252 F: target/nios2/
253 F: hw/nios2/
254 F: disas/nios2.c
255 F: default-configs/*/nios2-softmmu.mak
256
257 OpenRISC TCG CPUs
258 M: Stafford Horne <shorne@gmail.com>
259 S: Odd Fixes
260 F: target/openrisc/
261 F: hw/openrisc/
262 F: tests/tcg/openrisc/
263
264 PowerPC TCG CPUs
265 M: David Gibson <david@gibson.dropbear.id.au>
266 M: Greg Kurz <groug@kaod.org>
267 L: qemu-ppc@nongnu.org
268 S: Maintained
269 F: target/ppc/
270 F: hw/ppc/
271 F: include/hw/ppc/
272 F: disas/ppc.c
273 F: tests/acceptance/machine_ppc.py
274
275 RISC-V TCG CPUs
276 M: Palmer Dabbelt <palmer@dabbelt.com>
277 M: Alistair Francis <alistair.francis@wdc.com>
278 M: Bin Meng <bin.meng@windriver.com>
279 L: qemu-riscv@nongnu.org
280 S: Supported
281 F: target/riscv/
282 F: hw/riscv/
283 F: include/hw/riscv/
284 F: linux-user/host/riscv32/
285 F: linux-user/host/riscv64/
286
287 RENESAS RX CPUs
288 R: Yoshinori Sato <ysato@users.sourceforge.jp>
289 S: Orphan
290 F: target/rx/
291
292 S390 TCG CPUs
293 M: Richard Henderson <richard.henderson@linaro.org>
294 M: David Hildenbrand <david@redhat.com>
295 S: Maintained
296 F: target/s390x/
297 F: hw/s390x/
298 F: disas/s390.c
299 F: tests/tcg/s390x/
300 L: qemu-s390x@nongnu.org
301
302 SH4 TCG CPUs
303 R: Yoshinori Sato <ysato@users.sourceforge.jp>
304 S: Orphan
305 F: target/sh4/
306 F: hw/sh4/
307 F: disas/sh4.c
308 F: include/hw/sh4/
309
310 SPARC TCG CPUs
311 M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
312 M: Artyom Tarasenko <atar4qemu@gmail.com>
313 S: Maintained
314 F: target/sparc/
315 F: hw/sparc/
316 F: hw/sparc64/
317 F: include/hw/sparc/sparc64.h
318 F: disas/sparc.c
319
320 X86 TCG CPUs
321 M: Paolo Bonzini <pbonzini@redhat.com>
322 M: Richard Henderson <richard.henderson@linaro.org>
323 M: Eduardo Habkost <ehabkost@redhat.com>
324 S: Maintained
325 F: target/i386/tcg/
326 F: tests/tcg/i386/
327 F: tests/tcg/x86_64/
328 F: hw/i386/
329 F: disas/i386.c
330 F: docs/system/cpu-models-x86.rst.inc
331 T: git https://gitlab.com/ehabkost/qemu.git x86-next
332
333 Xtensa TCG CPUs
334 M: Max Filippov <jcmvbkbc@gmail.com>
335 W: http://wiki.osll.ru/doku.php?id=etc:users:jcmvbkbc:qemu-target-xtensa
336 S: Maintained
337 F: target/xtensa/
338 F: hw/xtensa/
339 F: tests/tcg/xtensa/
340 F: disas/xtensa.c
341 F: include/hw/xtensa/xtensa-isa.h
342 F: default-configs/*/xtensa*.mak
343
344 TriCore TCG CPUs
345 M: Bastian Koppelmann <kbastian@mail.uni-paderborn.de>
346 S: Maintained
347 F: target/tricore/
348 F: hw/tricore/
349 F: include/hw/tricore/
350
351 Multiarch Linux User Tests
352 M: Alex Bennée <alex.bennee@linaro.org>
353 S: Maintained
354 F: tests/tcg/multiarch/
355
356 Guest CPU Cores (KVM)
357 ---------------------
358 Overall KVM CPUs
359 M: Paolo Bonzini <pbonzini@redhat.com>
360 L: kvm@vger.kernel.org
361 S: Supported
362 F: */*/kvm*
363 F: accel/kvm/
364 F: accel/stubs/kvm-stub.c
365 F: include/hw/kvm/
366 F: include/sysemu/kvm*.h
367 F: scripts/kvm/kvm_flightrecorder
368
369 ARM KVM CPUs
370 M: Peter Maydell <peter.maydell@linaro.org>
371 L: qemu-arm@nongnu.org
372 S: Maintained
373 F: target/arm/kvm.c
374
375 MIPS KVM CPUs
376 M: Huacai Chen <chenhuacai@kernel.org>
377 S: Odd Fixes
378 F: target/mips/kvm*
379 F: target/mips/sysemu/
380
381 PPC KVM CPUs
382 M: David Gibson <david@gibson.dropbear.id.au>
383 M: Greg Kurz <groug@kaod.org>
384 S: Maintained
385 F: target/ppc/kvm.c
386
387 S390 KVM CPUs
388 M: Halil Pasic <pasic@linux.ibm.com>
389 M: Cornelia Huck <cohuck@redhat.com>
390 M: Christian Borntraeger <borntraeger@de.ibm.com>
391 S: Supported
392 F: target/s390x/kvm.c
393 F: target/s390x/kvm_s390x.h
394 F: target/s390x/kvm-stub.c
395 F: target/s390x/ioinst.[ch]
396 F: target/s390x/machine.c
397 F: target/s390x/sigp.c
398 F: target/s390x/cpu_features*.[ch]
399 F: target/s390x/cpu_models.[ch]
400 F: hw/s390x/pv.c
401 F: include/hw/s390x/pv.h
402 F: hw/intc/s390_flic.c
403 F: hw/intc/s390_flic_kvm.c
404 F: include/hw/s390x/s390_flic.h
405 F: gdb-xml/s390*.xml
406 T: git https://gitlab.com/cohuck/qemu.git s390-next
407 T: git https://github.com/borntraeger/qemu.git s390-next
408 L: qemu-s390x@nongnu.org
409
410 X86 KVM CPUs
411 M: Paolo Bonzini <pbonzini@redhat.com>
412 M: Marcelo Tosatti <mtosatti@redhat.com>
413 L: kvm@vger.kernel.org
414 S: Supported
415 F: target/i386/kvm/
416 F: scripts/kvm/vmxcap
417
418 Guest CPU Cores (other accelerators)
419 ------------------------------------
420 Overall
421 M: Richard Henderson <richard.henderson@linaro.org>
422 R: Paolo Bonzini <pbonzini@redhat.com>
423 S: Maintained
424 F: include/qemu/accel.h
425 F: include/sysemu/accel-ops.h
426 F: include/hw/core/accel-cpu.h
427 F: accel/accel-*.c
428 F: accel/Makefile.objs
429 F: accel/stubs/Makefile.objs
430
431 X86 HVF CPUs
432 M: Cameron Esfahani <dirty@apple.com>
433 M: Roman Bolshakov <r.bolshakov@yadro.com>
434 W: https://wiki.qemu.org/Features/HVF
435 S: Maintained
436 F: target/i386/hvf/
437 F: include/sysemu/hvf.h
438
439 WHPX CPUs
440 M: Sunil Muthuswamy <sunilmut@microsoft.com>
441 S: Supported
442 F: target/i386/whpx/
443 F: include/sysemu/whpx.h
444
445 Guest CPU Cores (Xen)
446 ---------------------
447 X86 Xen CPUs
448 M: Stefano Stabellini <sstabellini@kernel.org>
449 M: Anthony Perard <anthony.perard@citrix.com>
450 M: Paul Durrant <paul@xen.org>
451 L: xen-devel@lists.xenproject.org
452 S: Supported
453 F: */xen*
454 F: accel/xen/*
455 F: hw/9pfs/xen-9p*
456 F: hw/char/xen_console.c
457 F: hw/display/xenfb.c
458 F: hw/net/xen_nic.c
459 F: hw/usb/xen-usb.c
460 F: hw/block/xen*
461 F: hw/block/dataplane/xen*
462 F: hw/xen/
463 F: hw/xenpv/
464 F: hw/i386/xen/
465 F: hw/pci-host/xen_igd_pt.c
466 F: include/hw/block/dataplane/xen*
467 F: include/hw/xen/
468 F: include/sysemu/xen.h
469 F: include/sysemu/xen-mapcache.h
470 F: stubs/xen-hw-stub.c
471
472 Guest CPU Cores (HAXM)
473 ---------------------
474 X86 HAXM CPUs
475 M: Wenchao Wang <wenchao.wang@intel.com>
476 M: Colin Xu <colin.xu@intel.com>
477 L: haxm-team@intel.com
478 W: https://github.com/intel/haxm/issues
479 S: Maintained
480 F: accel/stubs/hax-stub.c
481 F: include/sysemu/hax.h
482 F: target/i386/hax/
483
484 Guest CPU Cores (NVMM)
485 ----------------------
486 NetBSD Virtual Machine Monitor (NVMM) CPU support
487 M: Kamil Rytarowski <kamil@netbsd.org>
488 M: Reinoud Zandijk <reinoud@netbsd.org>
489 S: Maintained
490 F: include/sysemu/nvmm.h
491 F: target/i386/nvmm/
492
493 Hosts
494 -----
495 LINUX
496 M: Michael S. Tsirkin <mst@redhat.com>
497 M: Cornelia Huck <cohuck@redhat.com>
498 M: Paolo Bonzini <pbonzini@redhat.com>
499 S: Maintained
500 F: linux-headers/
501 F: scripts/update-linux-headers.sh
502
503 POSIX
504 M: Paolo Bonzini <pbonzini@redhat.com>
505 S: Maintained
506 F: os-posix.c
507 F: include/sysemu/os-posix.h
508 F: util/*posix*.c
509 F: include/qemu/*posix*.h
510
511 NETBSD
512 M: Kamil Rytarowski <kamil@netbsd.org>
513 M: Reinoud Zandijk <reinoud@netbsd.org>
514 M: Ryo ONODERA <ryoon@netbsd.org>
515 S: Maintained
516 K: ^Subject:.*(?i)NetBSD
517
518 OPENBSD
519 M: Brad Smith <brad@comstyle.com>
520 S: Maintained
521 K: ^Subject:.*(?i)OpenBSD
522
523 W32, W64
524 M: Stefan Weil <sw@weilnetz.de>
525 S: Maintained
526 F: *win32*
527 F: */*win32*
528 F: include/*/*win32*
529 X: qga/*win32*
530 F: qemu.nsi
531
532 Alpha Machines
533 --------------
534 M: Richard Henderson <richard.henderson@linaro.org>
535 S: Maintained
536 F: hw/alpha/
537 F: hw/isa/smc37c669-superio.c
538 F: tests/tcg/alpha/system/
539
540 ARM Machines
541 ------------
542 Allwinner-a10
543 M: Beniamino Galvani <b.galvani@gmail.com>
544 M: Peter Maydell <peter.maydell@linaro.org>
545 L: qemu-arm@nongnu.org
546 S: Odd Fixes
547 F: hw/*/allwinner*
548 F: include/hw/*/allwinner*
549 F: hw/arm/cubieboard.c
550
551 Allwinner-h3
552 M: Niek Linnenbank <nieklinnenbank@gmail.com>
553 L: qemu-arm@nongnu.org
554 S: Maintained
555 F: hw/*/allwinner-h3*
556 F: include/hw/*/allwinner-h3*
557 F: hw/arm/orangepi.c
558 F: docs/system/arm/orangepi.rst
559
560 ARM PrimeCell and CMSDK devices
561 M: Peter Maydell <peter.maydell@linaro.org>
562 L: qemu-arm@nongnu.org
563 S: Maintained
564 F: hw/char/pl011.c
565 F: include/hw/char/pl011.h
566 F: hw/display/pl110*
567 F: hw/dma/pl080.c
568 F: include/hw/dma/pl080.h
569 F: hw/dma/pl330.c
570 F: hw/gpio/pl061.c
571 F: hw/input/pl050.c
572 F: hw/intc/pl190.c
573 F: hw/sd/pl181.c
574 F: hw/ssi/pl022.c
575 F: include/hw/ssi/pl022.h
576 F: hw/rtc/pl031.c
577 F: include/hw/rtc/pl031.h
578 F: include/hw/arm/primecell.h
579 F: hw/timer/cmsdk-apb-timer.c
580 F: include/hw/timer/cmsdk-apb-timer.h
581 F: tests/qtest/cmsdk-apb-timer-test.c
582 F: hw/timer/cmsdk-apb-dualtimer.c
583 F: include/hw/timer/cmsdk-apb-dualtimer.h
584 F: tests/qtest/cmsdk-apb-dualtimer-test.c
585 F: hw/char/cmsdk-apb-uart.c
586 F: include/hw/char/cmsdk-apb-uart.h
587 F: hw/watchdog/cmsdk-apb-watchdog.c
588 F: include/hw/watchdog/cmsdk-apb-watchdog.h
589 F: tests/qtest/cmsdk-apb-watchdog-test.c
590 F: hw/misc/tz-ppc.c
591 F: include/hw/misc/tz-ppc.h
592 F: hw/misc/tz-mpc.c
593 F: include/hw/misc/tz-mpc.h
594 F: hw/misc/tz-msc.c
595 F: include/hw/misc/tz-msc.h
596
597 ARM cores
598 M: Peter Maydell <peter.maydell@linaro.org>
599 L: qemu-arm@nongnu.org
600 S: Maintained
601 F: hw/intc/arm*
602 F: hw/intc/gic_internal.h
603 F: hw/misc/a9scu.c
604 F: hw/misc/arm11scu.c
605 F: hw/misc/arm_l2x0.c
606 F: hw/timer/a9gtimer*
607 F: hw/timer/arm*
608 F: include/hw/arm/arm*.h
609 F: include/hw/intc/arm*
610 F: include/hw/misc/a9scu.h
611 F: include/hw/misc/arm11scu.h
612 F: include/hw/timer/a9gtimer.h
613 F: include/hw/timer/arm_mptimer.h
614 F: include/hw/timer/armv7m_systick.h
615 F: tests/qtest/test-arm-mptimer.c
616
617 Exynos
618 M: Igor Mitsyanko <i.mitsyanko@gmail.com>
619 M: Peter Maydell <peter.maydell@linaro.org>
620 L: qemu-arm@nongnu.org
621 S: Odd Fixes
622 F: hw/*/exynos*
623 F: include/hw/arm/exynos4210.h
624
625 Calxeda Highbank
626 M: Rob Herring <robh@kernel.org>
627 M: Peter Maydell <peter.maydell@linaro.org>
628 L: qemu-arm@nongnu.org
629 S: Odd Fixes
630 F: hw/arm/highbank.c
631 F: hw/net/xgmac.c
632
633 Canon DIGIC
634 M: Antony Pavlov <antonynpavlov@gmail.com>
635 M: Peter Maydell <peter.maydell@linaro.org>
636 L: qemu-arm@nongnu.org
637 S: Odd Fixes
638 F: include/hw/arm/digic.h
639 F: hw/*/digic*
640 F: include/hw/*/digic*
641 F: tests/acceptance/machine_arm_canona1100.py
642 F: docs/system/arm/digic.rst
643
644 Goldfish RTC
645 M: Anup Patel <anup.patel@wdc.com>
646 M: Alistair Francis <Alistair.Francis@wdc.com>
647 L: qemu-riscv@nongnu.org
648 S: Maintained
649 F: hw/rtc/goldfish_rtc.c
650 F: include/hw/rtc/goldfish_rtc.h
651
652 Gumstix
653 M: Peter Maydell <peter.maydell@linaro.org>
654 R: Philippe Mathieu-Daudé <f4bug@amsat.org>
655 L: qemu-arm@nongnu.org
656 S: Odd Fixes
657 F: hw/arm/gumstix.c
658 F: docs/system/arm/gumstix.rst
659
660 i.MX25 PDK
661 M: Peter Maydell <peter.maydell@linaro.org>
662 R: Jean-Christophe Dubois <jcd@tribudubois.net>
663 L: qemu-arm@nongnu.org
664 S: Odd Fixes
665 F: hw/arm/fsl-imx25.c
666 F: hw/arm/imx25_pdk.c
667 F: hw/misc/imx25_ccm.c
668 F: hw/watchdog/wdt_imx2.c
669 F: include/hw/arm/fsl-imx25.h
670 F: include/hw/misc/imx25_ccm.h
671 F: include/hw/watchdog/wdt_imx2.h
672
673 i.MX31 (kzm)
674 M: Peter Maydell <peter.maydell@linaro.org>
675 L: qemu-arm@nongnu.org
676 S: Odd Fixes
677 F: hw/arm/kzm.c
678 F: hw/*/imx_*
679 F: hw/*/*imx31*
680 F: include/hw/*/imx_*
681 F: include/hw/*/*imx31*
682
683 Integrator CP
684 M: Peter Maydell <peter.maydell@linaro.org>
685 L: qemu-arm@nongnu.org
686 S: Maintained
687 F: hw/arm/integratorcp.c
688 F: hw/misc/arm_integrator_debug.c
689 F: include/hw/misc/arm_integrator_debug.h
690 F: tests/acceptance/machine_arm_integratorcp.py
691 F: docs/system/arm/integratorcp.rst
692
693 MCIMX6UL EVK / i.MX6ul
694 M: Peter Maydell <peter.maydell@linaro.org>
695 R: Jean-Christophe Dubois <jcd@tribudubois.net>
696 L: qemu-arm@nongnu.org
697 S: Odd Fixes
698 F: hw/arm/mcimx6ul-evk.c
699 F: hw/arm/fsl-imx6ul.c
700 F: hw/misc/imx6ul_ccm.c
701 F: include/hw/arm/fsl-imx6ul.h
702 F: include/hw/misc/imx6ul_ccm.h
703
704 MCIMX7D SABRE / i.MX7
705 M: Peter Maydell <peter.maydell@linaro.org>
706 R: Andrey Smirnov <andrew.smirnov@gmail.com>
707 L: qemu-arm@nongnu.org
708 S: Odd Fixes
709 F: hw/arm/mcimx7d-sabre.c
710 F: hw/arm/fsl-imx7.c
711 F: hw/misc/imx7_*.c
712 F: include/hw/arm/fsl-imx7.h
713 F: include/hw/misc/imx7_*.h
714 F: hw/pci-host/designware.c
715 F: include/hw/pci-host/designware.h
716
717 MPS2
718 M: Peter Maydell <peter.maydell@linaro.org>
719 L: qemu-arm@nongnu.org
720 S: Maintained
721 F: hw/arm/mps2.c
722 F: hw/arm/mps2-tz.c
723 F: hw/misc/mps2-*.c
724 F: include/hw/misc/mps2-*.h
725 F: hw/arm/armsse.c
726 F: include/hw/arm/armsse.h
727 F: hw/misc/iotkit-secctl.c
728 F: include/hw/misc/iotkit-secctl.h
729 F: hw/misc/iotkit-sysctl.c
730 F: include/hw/misc/iotkit-sysctl.h
731 F: hw/misc/iotkit-sysinfo.c
732 F: include/hw/misc/iotkit-sysinfo.h
733 F: hw/misc/armsse-cpu-pwrctrl.c
734 F: include/hw/misc/armsse-cpu-pwrctrl.h
735 F: hw/misc/armsse-cpuid.c
736 F: include/hw/misc/armsse-cpuid.h
737 F: hw/misc/armsse-mhu.c
738 F: include/hw/misc/armsse-mhu.h
739 F: hw/timer/sse-counter.c
740 F: include/hw/timer/sse-counter.h
741 F: hw/timer/sse-timer.c
742 F: include/hw/timer/sse-timer.h
743 F: tests/qtest/sse-timer-test.c
744 F: docs/system/arm/mps2.rst
745
746 Musca
747 M: Peter Maydell <peter.maydell@linaro.org>
748 L: qemu-arm@nongnu.org
749 S: Maintained
750 F: hw/arm/musca.c
751 F: docs/system/arm/musca.rst
752
753 Musicpal
754 M: Jan Kiszka <jan.kiszka@web.de>
755 M: Peter Maydell <peter.maydell@linaro.org>
756 L: qemu-arm@nongnu.org
757 S: Odd Fixes
758 F: hw/arm/musicpal.c
759 F: docs/system/arm/musicpal.rst
760
761 Nuvoton NPCM7xx
762 M: Havard Skinnemoen <hskinnemoen@google.com>
763 M: Tyrone Ting <kfting@nuvoton.com>
764 L: qemu-arm@nongnu.org
765 S: Supported
766 F: hw/*/npcm7xx*
767 F: include/hw/*/npcm7xx*
768 F: tests/qtest/npcm7xx*
769 F: pc-bios/npcm7xx_bootrom.bin
770 F: roms/vbootrom
771 F: docs/system/arm/nuvoton.rst
772
773 nSeries
774 M: Andrzej Zaborowski <balrogg@gmail.com>
775 M: Peter Maydell <peter.maydell@linaro.org>
776 L: qemu-arm@nongnu.org
777 S: Odd Fixes
778 F: hw/arm/nseries.c
779 F: hw/display/blizzard.c
780 F: hw/input/lm832x.c
781 F: hw/input/tsc2005.c
782 F: hw/misc/cbus.c
783 F: hw/rtc/twl92230.c
784 F: include/hw/display/blizzard.h
785 F: include/hw/input/tsc2xxx.h
786 F: include/hw/misc/cbus.h
787 F: tests/acceptance/machine_arm_n8x0.py
788 F: docs/system/arm/nseries.rst
789
790 Palm
791 M: Andrzej Zaborowski <balrogg@gmail.com>
792 M: Peter Maydell <peter.maydell@linaro.org>
793 L: qemu-arm@nongnu.org
794 S: Odd Fixes
795 F: hw/arm/palm.c
796 F: hw/input/tsc210x.c
797 F: include/hw/input/tsc2xxx.h
798 F: docs/system/arm/palm.rst
799
800 Raspberry Pi
801 M: Peter Maydell <peter.maydell@linaro.org>
802 R: Andrew Baumann <Andrew.Baumann@microsoft.com>
803 R: Philippe Mathieu-Daudé <f4bug@amsat.org>
804 L: qemu-arm@nongnu.org
805 S: Odd Fixes
806 F: hw/arm/raspi.c
807 F: hw/arm/raspi_platform.h
808 F: hw/*/bcm283*
809 F: include/hw/arm/raspi*
810 F: include/hw/*/bcm283*
811 F: docs/system/arm/raspi.rst
812
813 Real View
814 M: Peter Maydell <peter.maydell@linaro.org>
815 L: qemu-arm@nongnu.org
816 S: Maintained
817 F: hw/arm/realview*
818 F: hw/cpu/realview_mpcore.c
819 F: hw/intc/realview_gic.c
820 F: include/hw/intc/realview_gic.h
821 F: docs/system/arm/realview.rst
822
823 PXA2XX
824 M: Andrzej Zaborowski <balrogg@gmail.com>
825 M: Peter Maydell <peter.maydell@linaro.org>
826 L: qemu-arm@nongnu.org
827 S: Odd Fixes
828 F: hw/arm/mainstone.c
829 F: hw/arm/spitz.c
830 F: hw/arm/tosa.c
831 F: hw/arm/z2.c
832 F: hw/*/pxa2xx*
833 F: hw/display/tc6393xb.c
834 F: hw/gpio/max7310.c
835 F: hw/gpio/zaurus.c
836 F: hw/misc/mst_fpga.c
837 F: hw/misc/max111x.c
838 F: include/hw/misc/max111x.h
839 F: include/hw/arm/pxa.h
840 F: include/hw/arm/sharpsl.h
841 F: include/hw/display/tc6393xb.h
842 F: docs/system/arm/xscale.rst
843
844 SABRELITE / i.MX6
845 M: Peter Maydell <peter.maydell@linaro.org>
846 R: Jean-Christophe Dubois <jcd@tribudubois.net>
847 L: qemu-arm@nongnu.org
848 S: Odd Fixes
849 F: hw/arm/sabrelite.c
850 F: hw/arm/fsl-imx6.c
851 F: hw/misc/imx6_*.c
852 F: hw/ssi/imx_spi.c
853 F: hw/usb/imx-usb-phy.c
854 F: include/hw/usb/imx-usb-phy.h
855 F: include/hw/arm/fsl-imx6.h
856 F: include/hw/misc/imx6_*.h
857 F: include/hw/ssi/imx_spi.h
858
859 SBSA-REF
860 M: Radoslaw Biernacki <rad@semihalf.com>
861 M: Peter Maydell <peter.maydell@linaro.org>
862 R: Leif Lindholm <leif@nuviainc.com>
863 L: qemu-arm@nongnu.org
864 S: Maintained
865 F: hw/arm/sbsa-ref.c
866 F: docs/system/arm/sbsa.rst
867
868 Sharp SL-5500 (Collie) PDA
869 M: Peter Maydell <peter.maydell@linaro.org>
870 L: qemu-arm@nongnu.org
871 S: Odd Fixes
872 F: hw/arm/collie.c
873 F: hw/arm/strongarm*
874 F: docs/system/arm/collie.rst
875
876 Stellaris
877 M: Peter Maydell <peter.maydell@linaro.org>
878 L: qemu-arm@nongnu.org
879 S: Maintained
880 F: hw/*/stellaris*
881 F: include/hw/input/gamepad.h
882 F: docs/system/arm/stellaris.rst
883
884 Versatile Express
885 M: Peter Maydell <peter.maydell@linaro.org>
886 L: qemu-arm@nongnu.org
887 S: Maintained
888 F: hw/arm/vexpress.c
889 F: docs/system/arm/vexpress.rst
890
891 Versatile PB
892 M: Peter Maydell <peter.maydell@linaro.org>
893 L: qemu-arm@nongnu.org
894 S: Maintained
895 F: hw/*/versatile*
896 F: include/hw/i2c/arm_sbcon_i2c.h
897 F: hw/misc/arm_sysctl.c
898 F: docs/system/arm/versatile.rst
899
900 Virt
901 M: Peter Maydell <peter.maydell@linaro.org>
902 L: qemu-arm@nongnu.org
903 S: Maintained
904 F: hw/arm/virt*
905 F: include/hw/arm/virt.h
906 F: docs/system/arm/virt.rst
907
908 Xilinx Zynq
909 M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
910 M: Alistair Francis <alistair@alistair23.me>
911 M: Peter Maydell <peter.maydell@linaro.org>
912 L: qemu-arm@nongnu.org
913 S: Maintained
914 F: hw/*/xilinx_*
915 F: hw/*/cadence_*
916 F: hw/misc/zynq*
917 F: include/hw/misc/zynq*
918 X: hw/ssi/xilinx_*
919
920 Xilinx ZynqMP and Versal
921 M: Alistair Francis <alistair@alistair23.me>
922 M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
923 M: Peter Maydell <peter.maydell@linaro.org>
924 L: qemu-arm@nongnu.org
925 S: Maintained
926 F: hw/*/xlnx*.c
927 F: include/hw/*/xlnx*.h
928 F: include/hw/ssi/xilinx_spips.h
929 F: hw/display/dpcd.c
930 F: include/hw/display/dpcd.h
931 F: docs/system/arm/xlnx-versal-virt.rst
932
933 ARM ACPI Subsystem
934 M: Shannon Zhao <shannon.zhaosl@gmail.com>
935 L: qemu-arm@nongnu.org
936 S: Maintained
937 F: hw/arm/virt-acpi-build.c
938
939 STM32F205
940 M: Alistair Francis <alistair@alistair23.me>
941 M: Peter Maydell <peter.maydell@linaro.org>
942 L: qemu-arm@nongnu.org
943 S: Maintained
944 F: hw/arm/stm32f205_soc.c
945 F: hw/misc/stm32f2xx_syscfg.c
946 F: hw/char/stm32f2xx_usart.c
947 F: hw/timer/stm32f2xx_timer.c
948 F: hw/adc/*
949 F: hw/ssi/stm32f2xx_spi.c
950 F: include/hw/*/stm32*.h
951
952 STM32F405
953 M: Alistair Francis <alistair@alistair23.me>
954 M: Peter Maydell <peter.maydell@linaro.org>
955 L: qemu-arm@nongnu.org
956 S: Maintained
957 F: hw/arm/stm32f405_soc.c
958 F: hw/misc/stm32f4xx_syscfg.c
959 F: hw/misc/stm32f4xx_exti.c
960
961 Netduino 2
962 M: Alistair Francis <alistair@alistair23.me>
963 M: Peter Maydell <peter.maydell@linaro.org>
964 L: qemu-arm@nongnu.org
965 S: Maintained
966 F: hw/arm/netduino2.c
967
968 Netduino Plus 2
969 M: Alistair Francis <alistair@alistair23.me>
970 M: Peter Maydell <peter.maydell@linaro.org>
971 L: qemu-arm@nongnu.org
972 S: Maintained
973 F: hw/arm/netduinoplus2.c
974
975 SmartFusion2
976 M: Subbaraya Sundeep <sundeep.lkml@gmail.com>
977 M: Peter Maydell <peter.maydell@linaro.org>
978 L: qemu-arm@nongnu.org
979 S: Maintained
980 F: hw/arm/msf2-soc.c
981 F: hw/misc/msf2-sysreg.c
982 F: hw/timer/mss-timer.c
983 F: hw/ssi/mss-spi.c
984 F: include/hw/arm/msf2-soc.h
985 F: include/hw/misc/msf2-sysreg.h
986 F: include/hw/timer/mss-timer.h
987 F: include/hw/ssi/mss-spi.h
988 F: hw/net/msf2-emac.c
989 F: include/hw/net/msf2-emac.h
990
991 Emcraft M2S-FG484
992 M: Subbaraya Sundeep <sundeep.lkml@gmail.com>
993 M: Peter Maydell <peter.maydell@linaro.org>
994 L: qemu-arm@nongnu.org
995 S: Maintained
996 F: hw/arm/msf2-som.c
997
998 ASPEED BMCs
999 M: Cédric Le Goater <clg@kaod.org>
1000 M: Peter Maydell <peter.maydell@linaro.org>
1001 R: Andrew Jeffery <andrew@aj.id.au>
1002 R: Joel Stanley <joel@jms.id.au>
1003 L: qemu-arm@nongnu.org
1004 S: Maintained
1005 F: hw/*/*aspeed*
1006 F: hw/misc/pca9552.c
1007 F: include/hw/*/*aspeed*
1008 F: include/hw/misc/pca9552*.h
1009 F: hw/net/ftgmac100.c
1010 F: include/hw/net/ftgmac100.h
1011 F: docs/system/arm/aspeed.rst
1012 F: tests/qtest/*aspeed*
1013
1014 NRF51
1015 M: Joel Stanley <joel@jms.id.au>
1016 M: Peter Maydell <peter.maydell@linaro.org>
1017 L: qemu-arm@nongnu.org
1018 S: Maintained
1019 F: hw/*/nrf51*.c
1020 F: hw/*/microbit*.c
1021 F: include/hw/*/nrf51*.h
1022 F: include/hw/*/microbit*.h
1023 F: tests/qtest/microbit-test.c
1024
1025 AVR Machines
1026 -------------
1027
1028 AVR MCUs
1029 M: Michael Rolnik <mrolnik@gmail.com>
1030 S: Maintained
1031 F: default-configs/*/avr-softmmu.mak
1032 F: hw/avr/
1033 F: include/hw/char/avr_usart.h
1034 F: hw/char/avr_usart.c
1035 F: include/hw/timer/avr_timer16.h
1036 F: hw/timer/avr_timer16.c
1037 F: include/hw/misc/avr_power.h
1038 F: hw/misc/avr_power.c
1039
1040 Arduino
1041 M: Philippe Mathieu-Daudé <f4bug@amsat.org>
1042 S: Maintained
1043 F: hw/avr/arduino.c
1044
1045 CRIS Machines
1046 -------------
1047 Axis Dev88
1048 M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
1049 S: Maintained
1050 F: hw/cris/axis_dev88.c
1051 F: hw/*/etraxfs_*.c
1052
1053 HP-PARISC Machines
1054 ------------------
1055 HP B160L
1056 M: Richard Henderson <richard.henderson@linaro.org>
1057 R: Helge Deller <deller@gmx.de>
1058 S: Odd Fixes
1059 F: default-configs/*/hppa-softmmu.mak
1060 F: hw/hppa/
1061 F: pc-bios/hppa-firmware.img
1062
1063 M68K Machines
1064 -------------
1065 an5206
1066 M: Thomas Huth <huth@tuxfamily.org>
1067 S: Odd Fixes
1068 F: hw/m68k/an5206.c
1069 F: hw/m68k/mcf5206.c
1070
1071 mcf5208
1072 M: Thomas Huth <huth@tuxfamily.org>
1073 S: Odd Fixes
1074 F: hw/m68k/mcf5208.c
1075 F: hw/m68k/mcf_intc.c
1076 F: hw/char/mcf_uart.c
1077 F: hw/net/mcf_fec.c
1078 F: include/hw/m68k/mcf*.h
1079
1080 NeXTcube
1081 M: Thomas Huth <huth@tuxfamily.org>
1082 S: Odd Fixes
1083 F: hw/m68k/next-*.c
1084 F: hw/display/next-fb.c
1085 F: include/hw/m68k/next-cube.h
1086
1087 q800
1088 M: Laurent Vivier <laurent@vivier.eu>
1089 S: Maintained
1090 F: hw/m68k/q800.c
1091 F: hw/misc/mac_via.c
1092 F: hw/nubus/*
1093 F: hw/display/macfb.c
1094 F: hw/block/swim.c
1095 F: hw/m68k/bootinfo.h
1096 F: include/standard-headers/asm-m68k/bootinfo.h
1097 F: include/standard-headers/asm-m68k/bootinfo-mac.h
1098 F: include/hw/misc/mac_via.h
1099 F: include/hw/nubus/*
1100 F: include/hw/display/macfb.h
1101 F: include/hw/block/swim.h
1102
1103 virt
1104 M: Laurent Vivier <laurent@vivier.eu>
1105 S: Maintained
1106 F: hw/m68k/virt.c
1107 F: hw/char/goldfish_tty.c
1108 F: hw/intc/goldfish_pic.c
1109 F: hw/intc/m68k_irqc.c
1110 F: hw/misc/virt_ctrl.c
1111 F: include/hw/char/goldfish_tty.h
1112 F: include/hw/intc/goldfish_pic.h
1113 F: include/hw/intc/m68k_irqc.h
1114 F: include/hw/misc/virt_ctrl.h
1115
1116 MicroBlaze Machines
1117 -------------------
1118 petalogix_s3adsp1800
1119 M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
1120 S: Maintained
1121 F: hw/microblaze/petalogix_s3adsp1800_mmu.c
1122 F: include/hw/char/xilinx_uartlite.h
1123 F: tests/acceptance/machine_microblaze.py
1124
1125 petalogix_ml605
1126 M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
1127 S: Maintained
1128 F: hw/microblaze/petalogix_ml605_mmu.c
1129
1130 MIPS Machines
1131 -------------
1132 Jazz
1133 M: Hervé Poussineau <hpoussin@reactos.org>
1134 R: Aleksandar Rikalo <aleksandar.rikalo@syrmia.com>
1135 S: Maintained
1136 F: hw/mips/jazz.c
1137 F: hw/display/jazz_led.c
1138 F: hw/dma/rc4030.c
1139
1140 Malta
1141 M: Philippe Mathieu-Daudé <f4bug@amsat.org>
1142 R: Aurelien Jarno <aurelien@aurel32.net>
1143 S: Odd Fixes
1144 F: hw/isa/piix4.c
1145 F: hw/acpi/piix4.c
1146 F: hw/mips/malta.c
1147 F: hw/mips/gt64xxx_pci.c
1148 F: include/hw/southbridge/piix.h
1149 F: tests/acceptance/linux_ssh_mips_malta.py
1150 F: tests/acceptance/machine_mips_malta.py
1151
1152 Mipssim
1153 R: Aleksandar Rikalo <aleksandar.rikalo@syrmia.com>
1154 S: Orphan
1155 F: hw/mips/mipssim.c
1156 F: hw/net/mipsnet.c
1157
1158 Fuloong 2E
1159 M: Huacai Chen <chenhuacai@kernel.org>
1160 M: Philippe Mathieu-Daudé <f4bug@amsat.org>
1161 R: Jiaxun Yang <jiaxun.yang@flygoat.com>
1162 S: Odd Fixes
1163 F: hw/mips/fuloong2e.c
1164 F: hw/isa/vt82c686.c
1165 F: hw/pci-host/bonito.c
1166 F: hw/usb/vt82c686-uhci-pci.c
1167 F: include/hw/isa/vt82c686.h
1168
1169 Loongson-3 virtual platforms
1170 M: Huacai Chen <chenhuacai@kernel.org>
1171 R: Jiaxun Yang <jiaxun.yang@flygoat.com>
1172 S: Maintained
1173 F: hw/intc/loongson_liointc.c
1174 F: hw/mips/loongson3_bootp.c
1175 F: hw/mips/loongson3_bootp.h
1176 F: hw/mips/loongson3_virt.c
1177 F: tests/acceptance/machine_mips_loongson3v.py
1178
1179 Boston
1180 M: Paul Burton <paulburton@kernel.org>
1181 R: Aleksandar Rikalo <aleksandar.rikalo@syrmia.com>
1182 S: Odd Fixes
1183 F: hw/core/loader-fit.c
1184 F: hw/mips/boston.c
1185 F: hw/pci-host/xilinx-pcie.c
1186 F: include/hw/pci-host/xilinx-pcie.h
1187
1188 OpenRISC Machines
1189 -----------------
1190 or1k-sim
1191 M: Jia Liu <proljc@gmail.com>
1192 S: Maintained
1193 F: hw/openrisc/openrisc_sim.c
1194
1195 PowerPC Machines
1196 ----------------
1197 405
1198 M: David Gibson <david@gibson.dropbear.id.au>
1199 M: Greg Kurz <groug@kaod.org>
1200 L: qemu-ppc@nongnu.org
1201 S: Odd Fixes
1202 F: hw/ppc/ppc405_boards.c
1203
1204 Bamboo
1205 M: David Gibson <david@gibson.dropbear.id.au>
1206 M: Greg Kurz <groug@kaod.org>
1207 L: qemu-ppc@nongnu.org
1208 S: Odd Fixes
1209 F: hw/ppc/ppc440_bamboo.c
1210
1211 e500
1212 M: David Gibson <david@gibson.dropbear.id.au>
1213 M: Greg Kurz <groug@kaod.org>
1214 L: qemu-ppc@nongnu.org
1215 S: Odd Fixes
1216 F: hw/ppc/e500*
1217 F: hw/gpio/mpc8xxx.c
1218 F: hw/i2c/mpc_i2c.c
1219 F: hw/net/fsl_etsec/
1220 F: hw/pci-host/ppce500.c
1221 F: include/hw/ppc/ppc_e500.h
1222 F: include/hw/pci-host/ppce500.h
1223 F: pc-bios/u-boot.e500
1224
1225 mpc8544ds
1226 M: David Gibson <david@gibson.dropbear.id.au>
1227 M: Greg Kurz <groug@kaod.org>
1228 L: qemu-ppc@nongnu.org
1229 S: Odd Fixes
1230 F: hw/ppc/mpc8544ds.c
1231 F: hw/ppc/mpc8544_guts.c
1232
1233 New World (mac99)
1234 M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
1235 R: David Gibson <david@gibson.dropbear.id.au>
1236 R: Greg Kurz <groug@kaod.org>
1237 L: qemu-ppc@nongnu.org
1238 S: Odd Fixes
1239 F: hw/ppc/mac_newworld.c
1240 F: hw/pci-host/uninorth.c
1241 F: hw/pci-bridge/dec.[hc]
1242 F: hw/misc/macio/
1243 F: hw/misc/mos6522.c
1244 F: hw/nvram/mac_nvram.c
1245 F: hw/input/adb*
1246 F: include/hw/misc/macio/
1247 F: include/hw/misc/mos6522.h
1248 F: include/hw/ppc/mac_dbdma.h
1249 F: include/hw/pci-host/uninorth.h
1250 F: include/hw/input/adb*
1251 F: pc-bios/qemu_vga.ndrv
1252
1253 Old World (g3beige)
1254 M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
1255 R: David Gibson <david@gibson.dropbear.id.au>
1256 R: Greg Kurz <groug@kaod.org>
1257 L: qemu-ppc@nongnu.org
1258 S: Odd Fixes
1259 F: hw/ppc/mac_oldworld.c
1260 F: hw/pci-host/grackle.c
1261 F: hw/misc/macio/
1262 F: hw/intc/heathrow_pic.c
1263 F: hw/input/adb*
1264 F: include/hw/intc/heathrow_pic.h
1265 F: include/hw/input/adb*
1266 F: pc-bios/qemu_vga.ndrv
1267
1268 PReP
1269 M: Hervé Poussineau <hpoussin@reactos.org>
1270 R: David Gibson <david@gibson.dropbear.id.au>
1271 R: Greg Kurz <groug@kaod.org>
1272 L: qemu-ppc@nongnu.org
1273 S: Maintained
1274 F: hw/ppc/prep.c
1275 F: hw/ppc/prep_systemio.c
1276 F: hw/ppc/rs6000_mc.c
1277 F: hw/pci-host/prep.[hc]
1278 F: hw/isa/i82378.c
1279 F: hw/isa/pc87312.c
1280 F: hw/dma/i82374.c
1281 F: hw/rtc/m48t59-isa.c
1282 F: include/hw/isa/pc87312.h
1283 F: include/hw/rtc/m48t59.h
1284 F: tests/acceptance/ppc_prep_40p.py
1285
1286 sPAPR
1287 M: David Gibson <david@gibson.dropbear.id.au>
1288 M: Greg Kurz <groug@kaod.org>
1289 L: qemu-ppc@nongnu.org
1290 S: Supported
1291 F: hw/*/spapr*
1292 F: include/hw/*/spapr*
1293 F: hw/*/xics*
1294 F: include/hw/*/xics*
1295 F: pc-bios/slof.bin
1296 F: docs/specs/ppc-spapr-hcalls.txt
1297 F: docs/specs/ppc-spapr-hotplug.txt
1298 F: tests/qtest/spapr*
1299 F: tests/qtest/libqos/*spapr*
1300 F: tests/qtest/rtas*
1301 F: tests/qtest/libqos/rtas*
1302
1303 PowerNV (Non-Virtualized)
1304 M: Cédric Le Goater <clg@kaod.org>
1305 M: David Gibson <david@gibson.dropbear.id.au>
1306 M: Greg Kurz <groug@kaod.org>
1307 L: qemu-ppc@nongnu.org
1308 S: Maintained
1309 F: hw/ppc/pnv*
1310 F: hw/intc/pnv*
1311 F: hw/intc/xics_pnv.c
1312 F: hw/pci-host/pnv*
1313 F: include/hw/ppc/pnv*
1314 F: include/hw/pci-host/pnv*
1315 F: pc-bios/skiboot.lid
1316 F: tests/qtest/pnv*
1317
1318 virtex_ml507
1319 M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
1320 L: qemu-ppc@nongnu.org
1321 S: Odd Fixes
1322 F: hw/ppc/virtex_ml507.c
1323
1324 sam460ex
1325 M: BALATON Zoltan <balaton@eik.bme.hu>
1326 R: David Gibson <david@gibson.dropbear.id.au>
1327 R: Greg Kurz <groug@kaod.org>
1328 L: qemu-ppc@nongnu.org
1329 S: Maintained
1330 F: hw/ppc/sam460ex.c
1331 F: hw/ppc/ppc440_pcix.c
1332 F: hw/display/sm501*
1333 F: hw/ide/sii3112.c
1334 F: hw/rtc/m41t80.c
1335 F: pc-bios/canyonlands.dt[sb]
1336 F: pc-bios/u-boot-sam460ex-20100605.bin
1337 F: roms/u-boot-sam460ex
1338
1339 pegasos2
1340 M: BALATON Zoltan <balaton@eik.bme.hu>
1341 R: David Gibson <david@gibson.dropbear.id.au>
1342 L: qemu-ppc@nongnu.org
1343 S: Maintained
1344 F: hw/ppc/pegasos2.c
1345 F: hw/pci-host/mv64361.c
1346 F: hw/pci-host/mv643xx.h
1347 F: include/hw/pci-host/mv64361.h
1348
1349 RISC-V Machines
1350 ---------------
1351 OpenTitan
1352 M: Alistair Francis <Alistair.Francis@wdc.com>
1353 L: qemu-riscv@nongnu.org
1354 S: Supported
1355 F: hw/riscv/opentitan.c
1356 F: hw/char/ibex_uart.c
1357 F: hw/intc/ibex_plic.c
1358 F: include/hw/riscv/opentitan.h
1359 F: include/hw/char/ibex_uart.h
1360 F: include/hw/intc/ibex_plic.h
1361
1362 Microchip PolarFire SoC Icicle Kit
1363 M: Bin Meng <bin.meng@windriver.com>
1364 L: qemu-riscv@nongnu.org
1365 S: Supported
1366 F: hw/riscv/microchip_pfsoc.c
1367 F: hw/char/mchp_pfsoc_mmuart.c
1368 F: hw/misc/mchp_pfsoc_dmc.c
1369 F: hw/misc/mchp_pfsoc_ioscb.c
1370 F: hw/misc/mchp_pfsoc_sysreg.c
1371 F: include/hw/riscv/microchip_pfsoc.h
1372 F: include/hw/char/mchp_pfsoc_mmuart.h
1373 F: include/hw/misc/mchp_pfsoc_dmc.h
1374 F: include/hw/misc/mchp_pfsoc_ioscb.h
1375 F: include/hw/misc/mchp_pfsoc_sysreg.h
1376
1377 Shakti C class SoC
1378 M: Vijai Kumar K <vijai@behindbytes.com>
1379 L: qemu-riscv@nongnu.org
1380 S: Supported
1381 F: hw/riscv/shakti_c.c
1382 F: hw/char/shakti_uart.c
1383 F: include/hw/riscv/shakti_c.h
1384 F: include/hw/char/shakti_uart.h
1385
1386 SiFive Machines
1387 M: Alistair Francis <Alistair.Francis@wdc.com>
1388 M: Bin Meng <bin.meng@windriver.com>
1389 M: Palmer Dabbelt <palmer@dabbelt.com>
1390 L: qemu-riscv@nongnu.org
1391 S: Supported
1392 F: hw/*/*sifive*.c
1393 F: include/hw/*/*sifive*.h
1394
1395 RX Machines
1396 -----------
1397 rx-gdbsim
1398 R: Yoshinori Sato <ysato@users.sourceforge.jp>
1399 S: Orphan
1400 F: docs/system/target-rx.rst
1401 F: hw/rx/rx-gdbsim.c
1402 F: tests/acceptance/machine_rx_gdbsim.py
1403
1404 SH4 Machines
1405 ------------
1406 R2D
1407 R: Yoshinori Sato <ysato@users.sourceforge.jp>
1408 R: Magnus Damm <magnus.damm@gmail.com>
1409 S: Odd Fixes
1410 F: hw/char/sh_serial.c
1411 F: hw/sh4/r2d.c
1412 F: hw/intc/sh_intc.c
1413 F: hw/pci-host/sh_pci.c
1414 F: hw/timer/sh_timer.c
1415 F: include/hw/sh4/sh_intc.h
1416
1417 Shix
1418 R: Yoshinori Sato <ysato@users.sourceforge.jp>
1419 R: Magnus Damm <magnus.damm@gmail.com>
1420 S: Odd Fixes
1421 F: hw/block/tc58128.c
1422 F: hw/char/sh_serial.c
1423 F: hw/sh4/shix.c
1424 F: hw/intc/sh_intc.c
1425 F: hw/timer/sh_timer.c
1426 F: include/hw/sh4/sh_intc.h
1427
1428 SPARC Machines
1429 --------------
1430 Sun4m
1431 M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
1432 S: Maintained
1433 F: hw/sparc/sun4m.c
1434 F: hw/sparc/sun4m_iommu.c
1435 F: hw/display/cg3.c
1436 F: hw/display/tcx.c
1437 F: hw/dma/sparc32_dma.c
1438 F: hw/misc/eccmemctl.c
1439 F: hw/*/slavio_*.c
1440 F: include/hw/nvram/sun_nvram.h
1441 F: include/hw/sparc/sparc32_dma.h
1442 F: include/hw/sparc/sun4m_iommu.h
1443 F: pc-bios/openbios-sparc32
1444
1445 Sun4u
1446 M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
1447 S: Maintained
1448 F: hw/sparc64/sun4u.c
1449 F: hw/sparc64/sun4u_iommu.c
1450 F: include/hw/sparc/sun4u_iommu.h
1451 F: hw/pci-host/sabre.c
1452 F: include/hw/pci-host/sabre.h
1453 F: hw/pci-bridge/simba.c
1454 F: include/hw/pci-bridge/simba.h
1455 F: pc-bios/openbios-sparc64
1456 F: tests/acceptance/machine_sparc64_sun4u.py
1457
1458 Sun4v
1459 M: Artyom Tarasenko <atar4qemu@gmail.com>
1460 S: Maintained
1461 F: hw/sparc64/niagara.c
1462 F: hw/rtc/sun4v-rtc.c
1463 F: include/hw/rtc/sun4v-rtc.h
1464
1465 Leon3
1466 M: Fabien Chouteau <chouteau@adacore.com>
1467 M: KONRAD Frederic <frederic.konrad@adacore.com>
1468 S: Maintained
1469 F: hw/sparc/leon3.c
1470 F: hw/*/grlib*
1471 F: include/hw/*/grlib*
1472 F: tests/acceptance/machine_sparc_leon3.py
1473
1474 S390 Machines
1475 -------------
1476 S390 Virtio-ccw
1477 M: Cornelia Huck <cohuck@redhat.com>
1478 M: Halil Pasic <pasic@linux.ibm.com>
1479 M: Christian Borntraeger <borntraeger@de.ibm.com>
1480 S: Supported
1481 F: hw/char/sclp*.[hc]
1482 F: hw/char/terminal3270.c
1483 F: hw/s390x/
1484 F: include/hw/s390x/
1485 F: hw/watchdog/wdt_diag288.c
1486 F: include/hw/watchdog/wdt_diag288.h
1487 F: default-configs/*/s390x-softmmu.mak
1488 F: tests/acceptance/machine_s390_ccw_virtio.py
1489 T: git https://gitlab.com/cohuck/qemu.git s390-next
1490 T: git https://github.com/borntraeger/qemu.git s390-next
1491 L: qemu-s390x@nongnu.org
1492
1493 S390-ccw boot
1494 M: Christian Borntraeger <borntraeger@de.ibm.com>
1495 M: Thomas Huth <thuth@redhat.com>
1496 S: Supported
1497 F: hw/s390x/ipl.*
1498 F: pc-bios/s390-ccw/
1499 F: pc-bios/s390-ccw.img
1500 F: docs/devel/s390-dasd-ipl.rst
1501 T: git https://github.com/borntraeger/qemu.git s390-next
1502 L: qemu-s390x@nongnu.org
1503
1504 S390 PCI
1505 M: Matthew Rosato <mjrosato@linux.ibm.com>
1506 M: Eric Farman <farman@linux.ibm.com>
1507 S: Supported
1508 F: hw/s390x/s390-pci*
1509 F: include/hw/s390x/s390-pci*
1510 L: qemu-s390x@nongnu.org
1511
1512 X86 Machines
1513 ------------
1514 PC
1515 M: Michael S. Tsirkin <mst@redhat.com>
1516 M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
1517 S: Supported
1518 F: include/hw/i386/
1519 F: hw/i386/
1520 F: hw/pci-host/i440fx.c
1521 F: hw/pci-host/q35.c
1522 F: hw/pci-host/pam.c
1523 F: include/hw/pci-host/i440fx.h
1524 F: include/hw/pci-host/q35.h
1525 F: include/hw/pci-host/pam.h
1526 F: hw/isa/piix3.c
1527 F: hw/isa/lpc_ich9.c
1528 F: hw/i2c/smbus_ich9.c
1529 F: hw/acpi/piix4.c
1530 F: hw/acpi/ich9.c
1531 F: include/hw/acpi/ich9.h
1532 F: include/hw/southbridge/piix.h
1533 F: hw/misc/sga.c
1534 F: hw/isa/apm.c
1535 F: include/hw/isa/apm.h
1536 F: tests/unit/test-x86-cpuid.c
1537 F: tests/qtest/test-x86-cpuid-compat.c
1538
1539 PC Chipset
1540 M: Michael S. Tsirkin <mst@redhat.com>
1541 M: Paolo Bonzini <pbonzini@redhat.com>
1542 S: Supported
1543 F: hw/char/debugcon.c
1544 F: hw/char/parallel*
1545 F: hw/char/serial*
1546 F: hw/dma/i8257*
1547 F: hw/i2c/pm_smbus.c
1548 F: hw/input/pckbd.c
1549 F: hw/intc/apic*
1550 F: hw/intc/ioapic*
1551 F: hw/intc/i8259*
1552 F: hw/isa/isa-superio.c
1553 F: hw/misc/debugexit.c
1554 F: hw/misc/pc-testdev.c
1555 F: hw/timer/hpet*
1556 F: hw/timer/i8254*
1557 F: hw/rtc/mc146818rtc*
1558 F: hw/watchdog/wdt_ib700.c
1559 F: hw/watchdog/wdt_i6300esb.c
1560 F: include/hw/display/vga.h
1561 F: include/hw/char/parallel.h
1562 F: include/hw/dma/i8257.h
1563 F: include/hw/i2c/pm_smbus.h
1564 F: include/hw/input/i8042.h
1565 F: include/hw/isa/i8259_internal.h
1566 F: include/hw/isa/superio.h
1567 F: include/hw/timer/hpet.h
1568 F: include/hw/timer/i8254*
1569 F: include/hw/rtc/mc146818rtc*
1570
1571 microvm
1572 M: Sergio Lopez <slp@redhat.com>
1573 M: Paolo Bonzini <pbonzini@redhat.com>
1574 S: Maintained
1575 F: docs/microvm.rst
1576 F: hw/i386/microvm.c
1577 F: include/hw/i386/microvm.h
1578 F: pc-bios/bios-microvm.bin
1579
1580 Machine core
1581 M: Eduardo Habkost <ehabkost@redhat.com>
1582 M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
1583 S: Supported
1584 F: cpu.c
1585 F: hw/core/cpu.c
1586 F: hw/core/machine-qmp-cmds.c
1587 F: hw/core/machine.c
1588 F: hw/core/null-machine.c
1589 F: hw/core/numa.c
1590 F: hw/cpu/cluster.c
1591 F: qapi/machine.json
1592 F: qapi/machine-target.json
1593 F: include/hw/boards.h
1594 F: include/hw/core/cpu.h
1595 F: include/hw/cpu/cluster.h
1596 F: include/sysemu/numa.h
1597 T: git https://gitlab.com/ehabkost/qemu.git machine-next
1598
1599 Xtensa Machines
1600 ---------------
1601 sim
1602 M: Max Filippov <jcmvbkbc@gmail.com>
1603 S: Maintained
1604 F: hw/xtensa/sim.c
1605
1606 virt
1607 M: Max Filippov <jcmvbkbc@gmail.com>
1608 S: Maintained
1609 F: hw/xtensa/virt.c
1610
1611 XTFPGA (LX60, LX200, ML605, KC705)
1612 M: Max Filippov <jcmvbkbc@gmail.com>
1613 S: Maintained
1614 F: hw/xtensa/xtfpga.c
1615 F: hw/net/opencores_eth.c
1616
1617 Devices
1618 -------
1619 Xilinx CAN
1620 M: Vikram Garhwal <fnu.vikram@xilinx.com>
1621 M: Francisco Iglesias <francisco.iglesias@xilinx.com>
1622 S: Maintained
1623 F: hw/net/can/xlnx-*
1624 F: include/hw/net/xlnx-*
1625 F: tests/qtest/xlnx-can-test*
1626
1627 EDU
1628 M: Jiri Slaby <jslaby@suse.cz>
1629 S: Maintained
1630 F: hw/misc/edu.c
1631
1632 IDE
1633 M: John Snow <jsnow@redhat.com>
1634 L: qemu-block@nongnu.org
1635 S: Supported
1636 F: include/hw/ide.h
1637 F: include/hw/ide/
1638 F: hw/ide/
1639 F: hw/block/block.c
1640 F: hw/block/cdrom.c
1641 F: hw/block/hd-geometry.c
1642 F: tests/qtest/ide-test.c
1643 F: tests/qtest/ahci-test.c
1644 F: tests/qtest/cdrom-test.c
1645 F: tests/qtest/libqos/ahci*
1646 T: git https://gitlab.com/jsnow/qemu.git ide
1647
1648 IPMI
1649 M: Corey Minyard <minyard@acm.org>
1650 S: Maintained
1651 F: include/hw/ipmi/*
1652 F: hw/ipmi/*
1653 F: hw/smbios/smbios_type_38.c
1654 F: tests/qtest/ipmi*
1655 T: git https://github.com/cminyard/qemu.git master-ipmi-rebase
1656
1657 Floppy
1658 M: John Snow <jsnow@redhat.com>
1659 L: qemu-block@nongnu.org
1660 S: Supported
1661 F: hw/block/fdc.c
1662 F: include/hw/block/fdc.h
1663 F: tests/qtest/fdc-test.c
1664 T: git https://gitlab.com/jsnow/qemu.git ide
1665
1666 OMAP
1667 M: Peter Maydell <peter.maydell@linaro.org>
1668 L: qemu-arm@nongnu.org
1669 S: Maintained
1670 F: hw/*/omap*
1671 F: include/hw/arm/omap.h
1672 F: docs/system/arm/sx1.rst
1673
1674 IPack
1675 M: Alberto Garcia <berto@igalia.com>
1676 S: Odd Fixes
1677 F: hw/char/ipoctal232.c
1678 F: hw/ipack/
1679
1680 PCI
1681 M: Michael S. Tsirkin <mst@redhat.com>
1682 M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
1683 S: Supported
1684 F: include/hw/pci/*
1685 F: hw/misc/pci-testdev.c
1686 F: hw/pci/*
1687 F: hw/pci-bridge/*
1688 F: qapi/pci.json
1689 F: docs/pci*
1690 F: docs/specs/*pci*
1691 F: default-configs/pci.mak
1692
1693 ACPI/SMBIOS
1694 M: Michael S. Tsirkin <mst@redhat.com>
1695 M: Igor Mammedov <imammedo@redhat.com>
1696 S: Supported
1697 F: include/hw/acpi/*
1698 F: include/hw/firmware/smbios.h
1699 F: hw/mem/*
1700 F: hw/acpi/*
1701 F: hw/smbios/*
1702 F: hw/i386/acpi-build.[hc]
1703 F: hw/arm/virt-acpi-build.c
1704 F: qapi/acpi.json
1705 F: tests/qtest/bios-tables-test*
1706 F: tests/qtest/acpi-utils.[hc]
1707 F: tests/data/acpi/
1708
1709 ACPI/HEST/GHES
1710 R: Dongjiu Geng <gengdongjiu1@gmail.com>
1711 L: qemu-arm@nongnu.org
1712 S: Maintained
1713 F: hw/acpi/ghes.c
1714 F: include/hw/acpi/ghes.h
1715 F: docs/specs/acpi_hest_ghes.rst
1716
1717 ppc4xx
1718 M: David Gibson <david@gibson.dropbear.id.au>
1719 L: qemu-ppc@nongnu.org
1720 S: Odd Fixes
1721 F: hw/ppc/ppc4*.c
1722 F: hw/i2c/ppc4xx_i2c.c
1723 F: include/hw/ppc/ppc4xx.h
1724 F: include/hw/i2c/ppc4xx_i2c.h
1725 F: hw/intc/ppc-uic.c
1726 F: include/hw/intc/ppc-uic.h
1727
1728 Character devices
1729 M: Marc-André Lureau <marcandre.lureau@redhat.com>
1730 R: Paolo Bonzini <pbonzini@redhat.com>
1731 S: Odd Fixes
1732 F: hw/char/
1733
1734 Network devices
1735 M: Jason Wang <jasowang@redhat.com>
1736 S: Odd Fixes
1737 F: hw/net/
1738 F: include/hw/net/
1739 F: tests/qtest/virtio-net-test.c
1740 F: docs/virtio-net-failover.rst
1741 T: git https://github.com/jasowang/qemu.git net
1742
1743 Parallel NOR Flash devices
1744 M: Philippe Mathieu-Daudé <philmd@redhat.com>
1745 T: git https://gitlab.com/philmd/qemu.git pflash-next
1746 S: Maintained
1747 F: hw/block/pflash_cfi*.c
1748 F: include/hw/block/flash.h
1749
1750 SCSI
1751 M: Paolo Bonzini <pbonzini@redhat.com>
1752 R: Fam Zheng <fam@euphon.net>
1753 S: Supported
1754 F: include/hw/scsi/*
1755 F: hw/scsi/*
1756 F: tests/qtest/virtio-scsi-test.c
1757 F: tests/qtest/fuzz-virtio-scsi-test.c
1758 F: tests/qtest/am53c974-test.c
1759 T: git https://github.com/bonzini/qemu.git scsi-next
1760
1761 SSI
1762 M: Alistair Francis <alistair@alistair23.me>
1763 S: Maintained
1764 F: hw/ssi/*
1765 F: hw/block/m25p80.c
1766 F: include/hw/ssi/ssi.h
1767 X: hw/ssi/xilinx_*
1768 F: tests/qtest/m25p80-test.c
1769
1770 Xilinx SPI
1771 M: Alistair Francis <alistair@alistair23.me>
1772 S: Maintained
1773 F: hw/ssi/xilinx_*
1774
1775 SD (Secure Card)
1776 M: Philippe Mathieu-Daudé <f4bug@amsat.org>
1777 M: Bin Meng <bin.meng@windriver.com>
1778 L: qemu-block@nongnu.org
1779 S: Odd Fixes
1780 F: include/hw/sd/sd*
1781 F: hw/sd/core.c
1782 F: hw/sd/sd*
1783 F: hw/sd/ssi-sd.c
1784 F: tests/qtest/sd*
1785
1786 USB
1787 M: Gerd Hoffmann <kraxel@redhat.com>
1788 S: Maintained
1789 F: hw/usb/*
1790 F: stubs/usb-dev-stub.c
1791 F: tests/qtest/usb-*-test.c
1792 F: docs/usb2.txt
1793 F: docs/usb-storage.txt
1794 F: include/hw/usb.h
1795 F: include/hw/usb/
1796 F: default-configs/usb.mak
1797
1798 USB (serial adapter)
1799 M: Gerd Hoffmann <kraxel@redhat.com>
1800 M: Samuel Thibault <samuel.thibault@ens-lyon.org>
1801 S: Maintained
1802 F: hw/usb/dev-serial.c
1803
1804 VFIO
1805 M: Alex Williamson <alex.williamson@redhat.com>
1806 S: Supported
1807 F: hw/vfio/*
1808 F: include/hw/vfio/
1809 F: docs/igd-assign.txt
1810
1811 vfio-ccw
1812 M: Cornelia Huck <cohuck@redhat.com>
1813 M: Eric Farman <farman@linux.ibm.com>
1814 M: Matthew Rosato <mjrosato@linux.ibm.com>
1815 S: Supported
1816 F: hw/vfio/ccw.c
1817 F: hw/s390x/s390-ccw.c
1818 F: include/hw/s390x/s390-ccw.h
1819 F: include/hw/s390x/vfio-ccw.h
1820 T: git https://gitlab.com/cohuck/qemu.git s390-next
1821 L: qemu-s390x@nongnu.org
1822
1823 vfio-ap
1824 M: Tony Krowiak <akrowiak@linux.ibm.com>
1825 M: Halil Pasic <pasic@linux.ibm.com>
1826 M: Jason Herne <jjherne@linux.ibm.com>
1827 S: Supported
1828 F: hw/s390x/ap-device.c
1829 F: hw/s390x/ap-bridge.c
1830 F: include/hw/s390x/ap-device.h
1831 F: include/hw/s390x/ap-bridge.h
1832 F: hw/vfio/ap.c
1833 F: docs/system/s390x/vfio-ap.rst
1834 L: qemu-s390x@nongnu.org
1835
1836 vhost
1837 M: Michael S. Tsirkin <mst@redhat.com>
1838 S: Supported
1839 F: hw/*/*vhost*
1840 F: docs/interop/vhost-user.json
1841 F: docs/interop/vhost-user.rst
1842 F: contrib/vhost-user-*/
1843 F: backends/vhost-user.c
1844 F: include/sysemu/vhost-user-backend.h
1845
1846 virtio
1847 M: Michael S. Tsirkin <mst@redhat.com>
1848 S: Supported
1849 F: hw/*/virtio*
1850 F: hw/virtio/Makefile.objs
1851 F: hw/virtio/trace-events
1852 F: net/vhost-user.c
1853 F: include/hw/virtio/
1854
1855 virtio-balloon
1856 M: Michael S. Tsirkin <mst@redhat.com>
1857 M: David Hildenbrand <david@redhat.com>
1858 S: Maintained
1859 F: hw/virtio/virtio-balloon*.c
1860 F: include/hw/virtio/virtio-balloon.h
1861 F: softmmu/balloon.c
1862 F: include/sysemu/balloon.h
1863
1864 virtio-9p
1865 M: Greg Kurz <groug@kaod.org>
1866 M: Christian Schoenebeck <qemu_oss@crudebyte.com>
1867 S: Odd Fixes
1868 F: hw/9pfs/
1869 X: hw/9pfs/xen-9p*
1870 F: fsdev/
1871 F: docs/tools/virtfs-proxy-helper.rst
1872 F: tests/qtest/virtio-9p-test.c
1873 T: git https://gitlab.com/gkurz/qemu.git 9p-next
1874 T: git https://github.com/cschoenebeck/qemu.git 9p.next
1875
1876 virtio-blk
1877 M: Stefan Hajnoczi <stefanha@redhat.com>
1878 L: qemu-block@nongnu.org
1879 S: Supported
1880 F: hw/block/virtio-blk.c
1881 F: hw/block/dataplane/*
1882 F: tests/qtest/virtio-blk-test.c
1883 T: git https://github.com/stefanha/qemu.git block
1884
1885 virtio-ccw
1886 M: Cornelia Huck <cohuck@redhat.com>
1887 M: Halil Pasic <pasic@linux.ibm.com>
1888 S: Supported
1889 F: hw/s390x/virtio-ccw*.[hc]
1890 F: hw/s390x/vhost-vsock-ccw.c
1891 T: git https://gitlab.com/cohuck/qemu.git s390-next
1892 T: git https://github.com/borntraeger/qemu.git s390-next
1893 L: qemu-s390x@nongnu.org
1894
1895 virtiofs
1896 M: Dr. David Alan Gilbert <dgilbert@redhat.com>
1897 M: Stefan Hajnoczi <stefanha@redhat.com>
1898 S: Supported
1899 F: tools/virtiofsd/*
1900 F: hw/virtio/vhost-user-fs*
1901 F: include/hw/virtio/vhost-user-fs.h
1902 F: docs/tools/virtiofsd.rst
1903 L: virtio-fs@redhat.com
1904
1905 virtio-input
1906 M: Gerd Hoffmann <kraxel@redhat.com>
1907 S: Maintained
1908 F: hw/input/vhost-user-input.c
1909 F: hw/input/virtio-input*.c
1910 F: include/hw/virtio/virtio-input.h
1911 F: contrib/vhost-user-input/*
1912
1913 virtio-iommu
1914 M: Eric Auger <eric.auger@redhat.com>
1915 S: Maintained
1916 F: hw/virtio/virtio-iommu*.c
1917 F: include/hw/virtio/virtio-iommu.h
1918
1919 virtio-serial
1920 M: Laurent Vivier <lvivier@redhat.com>
1921 R: Amit Shah <amit@kernel.org>
1922 S: Supported
1923 F: hw/char/virtio-serial-bus.c
1924 F: hw/char/virtio-console.c
1925 F: include/hw/virtio/virtio-serial.h
1926 F: tests/qtest/virtio-serial-test.c
1927
1928 virtio-rng
1929 M: Laurent Vivier <lvivier@redhat.com>
1930 R: Amit Shah <amit@kernel.org>
1931 S: Supported
1932 F: hw/virtio/virtio-rng.c
1933 F: include/hw/virtio/virtio-rng.h
1934 F: include/sysemu/rng*.h
1935 F: backends/rng*.c
1936 F: tests/qtest/virtio-rng-test.c
1937
1938 virtio-crypto
1939 M: Gonglei <arei.gonglei@huawei.com>
1940 S: Supported
1941 F: hw/virtio/virtio-crypto.c
1942 F: hw/virtio/virtio-crypto-pci.c
1943 F: include/hw/virtio/virtio-crypto.h
1944
1945 virtio-mem
1946 M: David Hildenbrand <david@redhat.com>
1947 S: Supported
1948 W: https://virtio-mem.gitlab.io/
1949 F: hw/virtio/virtio-mem.c
1950 F: hw/virtio/virtio-mem-pci.h
1951 F: hw/virtio/virtio-mem-pci.c
1952 F: include/hw/virtio/virtio-mem.h
1953
1954 nvme
1955 M: Keith Busch <kbusch@kernel.org>
1956 M: Klaus Jensen <its@irrelevant.dk>
1957 L: qemu-block@nongnu.org
1958 S: Supported
1959 F: hw/nvme/*
1960 F: include/block/nvme.h
1961 F: tests/qtest/nvme-test.c
1962 F: docs/system/nvme.rst
1963 T: git git://git.infradead.org/qemu-nvme.git nvme-next
1964
1965 megasas
1966 M: Hannes Reinecke <hare@suse.com>
1967 L: qemu-block@nongnu.org
1968 S: Supported
1969 F: hw/scsi/megasas.c
1970 F: hw/scsi/mfi.h
1971 F: tests/qtest/megasas-test.c
1972 F: tests/qtest/fuzz-megasas-test.c
1973
1974 Network packet abstractions
1975 M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
1976 S: Maintained
1977 F: include/net/eth.h
1978 F: net/eth.c
1979 F: hw/net/net_rx_pkt*
1980 F: hw/net/net_tx_pkt*
1981
1982 Vmware
1983 M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
1984 S: Maintained
1985 F: hw/net/vmxnet*
1986 F: hw/scsi/vmw_pvscsi*
1987 F: tests/qtest/vmxnet3-test.c
1988
1989 Rocker
1990 M: Jiri Pirko <jiri@resnulli.us>
1991 S: Maintained
1992 F: hw/net/rocker/
1993 F: qapi/rocker.json
1994 F: tests/rocker/
1995 F: docs/specs/rocker.txt
1996
1997 NVDIMM
1998 M: Xiao Guangrong <xiaoguangrong.eric@gmail.com>
1999 S: Maintained
2000 F: hw/acpi/nvdimm.c
2001 F: hw/mem/nvdimm.c
2002 F: include/hw/mem/nvdimm.h
2003 F: docs/nvdimm.txt
2004
2005 e1000x
2006 M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
2007 S: Maintained
2008 F: hw/net/e1000x*
2009
2010 e1000e
2011 M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
2012 S: Maintained
2013 F: hw/net/e1000e*
2014 F: tests/qtest/fuzz-e1000e-test.c
2015
2016 eepro100
2017 M: Stefan Weil <sw@weilnetz.de>
2018 S: Maintained
2019 F: hw/net/eepro100.c
2020
2021 tulip
2022 M: Sven Schnelle <svens@stackframe.org>
2023 S: Maintained
2024 F: hw/net/tulip.c
2025 F: hw/net/tulip.h
2026
2027 pca954x
2028 M: Patrick Venture <venture@google.com>
2029 S: Maintained
2030 F: hw/i2c/i2c_mux_pca954x.c
2031 F: include/hw/i2c/i2c_mux_pca954x.h
2032
2033 Generic Loader
2034 M: Alistair Francis <alistair@alistair23.me>
2035 S: Maintained
2036 F: hw/core/generic-loader.c
2037 F: include/hw/core/generic-loader.h
2038 F: docs/system/generic-loader.rst
2039
2040 Guest Loader
2041 M: Alex Bennée <alex.bennee@linaro.org>
2042 S: Maintained
2043 F: hw/core/guest-loader.c
2044 F: docs/system/guest-loader.rst
2045 F: tests/acceptance/boot_xen.py
2046
2047 Intel Hexadecimal Object File Loader
2048 M: Su Hang <suhang16@mails.ucas.ac.cn>
2049 S: Maintained
2050 F: tests/qtest/hexloader-test.c
2051 F: tests/data/hex-loader/test.hex
2052
2053 CHRP NVRAM
2054 M: Thomas Huth <thuth@redhat.com>
2055 S: Maintained
2056 F: hw/nvram/chrp_nvram.c
2057 F: include/hw/nvram/chrp_nvram.h
2058 F: tests/qtest/prom-env-test.c
2059
2060 VM Generation ID
2061 S: Orphan
2062 F: hw/acpi/vmgenid.c
2063 F: include/hw/acpi/vmgenid.h
2064 F: docs/specs/vmgenid.txt
2065 F: tests/qtest/vmgenid-test.c
2066 F: stubs/vmgenid.c
2067
2068 LED
2069 M: Philippe Mathieu-Daudé <f4bug@amsat.org>
2070 S: Maintained
2071 F: include/hw/misc/led.h
2072 F: hw/misc/led.c
2073
2074 Unimplemented device
2075 M: Peter Maydell <peter.maydell@linaro.org>
2076 R: Philippe Mathieu-Daudé <f4bug@amsat.org>
2077 S: Maintained
2078 F: include/hw/misc/unimp.h
2079 F: hw/misc/unimp.c
2080
2081 Empty slot
2082 M: Artyom Tarasenko <atar4qemu@gmail.com>
2083 R: Philippe Mathieu-Daudé <f4bug@amsat.org>
2084 S: Maintained
2085 F: include/hw/misc/empty_slot.h
2086 F: hw/misc/empty_slot.c
2087
2088 Standard VGA
2089 M: Gerd Hoffmann <kraxel@redhat.com>
2090 S: Maintained
2091 F: hw/display/vga*
2092 F: hw/display/bochs-display.c
2093 F: include/hw/display/vga.h
2094 F: include/hw/display/bochs-vbe.h
2095
2096 ramfb
2097 M: Gerd Hoffmann <kraxel@redhat.com>
2098 S: Maintained
2099 F: hw/display/ramfb*.c
2100 F: include/hw/display/ramfb.h
2101
2102 virtio-gpu
2103 M: Gerd Hoffmann <kraxel@redhat.com>
2104 S: Maintained
2105 F: hw/display/virtio-gpu*
2106 F: hw/display/virtio-vga.*
2107 F: include/hw/virtio/virtio-gpu.h
2108
2109 vhost-user-blk
2110 M: Raphael Norwitz <raphael.norwitz@nutanix.com>
2111 S: Maintained
2112 F: contrib/vhost-user-blk/
2113 F: contrib/vhost-user-scsi/
2114 F: hw/block/vhost-user-blk.c
2115 F: hw/scsi/vhost-user-scsi.c
2116 F: hw/virtio/vhost-user-blk-pci.c
2117 F: hw/virtio/vhost-user-scsi-pci.c
2118 F: include/hw/virtio/vhost-user-blk.h
2119 F: include/hw/virtio/vhost-user-scsi.h
2120
2121 vhost-user-gpu
2122 M: Marc-André Lureau <marcandre.lureau@redhat.com>
2123 M: Gerd Hoffmann <kraxel@redhat.com>
2124 S: Maintained
2125 F: docs/interop/vhost-user-gpu.rst
2126 F: contrib/vhost-user-gpu
2127 F: hw/display/vhost-user-*
2128
2129 Cirrus VGA
2130 M: Gerd Hoffmann <kraxel@redhat.com>
2131 S: Odd Fixes
2132 W: https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
2133 F: hw/display/cirrus*
2134
2135 EDID Generator
2136 M: Gerd Hoffmann <kraxel@redhat.com>
2137 S: Maintained
2138 F: hw/display/edid*
2139 F: include/hw/display/edid.h
2140 F: qemu-edid.c
2141
2142 PIIX4 South Bridge (i82371AB)
2143 M: Hervé Poussineau <hpoussin@reactos.org>
2144 M: Philippe Mathieu-Daudé <f4bug@amsat.org>
2145 S: Maintained
2146 F: hw/isa/piix4.c
2147 F: include/hw/southbridge/piix.h
2148
2149 Firmware configuration (fw_cfg)
2150 M: Philippe Mathieu-Daudé <philmd@redhat.com>
2151 R: Laszlo Ersek <lersek@redhat.com>
2152 R: Gerd Hoffmann <kraxel@redhat.com>
2153 S: Supported
2154 F: docs/specs/fw_cfg.txt
2155 F: hw/nvram/fw_cfg*.c
2156 F: stubs/fw_cfg.c
2157 F: include/hw/nvram/fw_cfg.h
2158 F: include/standard-headers/linux/qemu_fw_cfg.h
2159 F: tests/qtest/libqos/fw_cfg.c
2160 F: tests/qtest/fw_cfg-test.c
2161 T: git https://github.com/philmd/qemu.git fw_cfg-next
2162
2163 XIVE
2164 M: Cédric Le Goater <clg@kaod.org>
2165 R: David Gibson <david@gibson.dropbear.id.au>
2166 R: Greg Kurz <groug@kaod.org>
2167 L: qemu-ppc@nongnu.org
2168 S: Supported
2169 F: hw/*/*xive*
2170 F: include/hw/*/*xive*
2171 F: docs/*/*xive*
2172
2173 Renesas peripherals
2174 R: Yoshinori Sato <ysato@users.sourceforge.jp>
2175 R: Magnus Damm <magnus.damm@gmail.com>
2176 S: Odd Fixes
2177 F: hw/char/renesas_sci.c
2178 F: hw/char/sh_serial.c
2179 F: hw/timer/renesas_*.c
2180 F: hw/timer/sh_timer.c
2181 F: include/hw/char/renesas_sci.h
2182 F: include/hw/sh4/sh.h
2183 F: include/hw/timer/renesas_*.h
2184
2185 Renesas RX peripherals
2186 R: Yoshinori Sato <ysato@users.sourceforge.jp>
2187 S: Orphan
2188 F: hw/intc/rx_icu.c
2189 F: hw/rx/
2190 F: include/hw/intc/rx_icu.h
2191 F: include/hw/rx/
2192
2193 CAN bus subsystem and hardware
2194 M: Pavel Pisa <pisa@cmp.felk.cvut.cz>
2195 M: Vikram Garhwal <fnu.vikram@xilinx.com>
2196 S: Maintained
2197 W: https://canbus.pages.fel.cvut.cz/
2198 F: net/can/*
2199 F: hw/net/can/*
2200 F: include/net/can_*.h
2201
2202 Subsystems
2203 ----------
2204 Audio
2205 M: Gerd Hoffmann <kraxel@redhat.com>
2206 S: Maintained
2207 F: audio/
2208 F: hw/audio/
2209 F: include/hw/audio/
2210 F: qapi/audio.json
2211 F: tests/qtest/ac97-test.c
2212 F: tests/qtest/es1370-test.c
2213 F: tests/qtest/intel-hda-test.c
2214
2215 Block layer core
2216 M: Kevin Wolf <kwolf@redhat.com>
2217 M: Max Reitz <mreitz@redhat.com>
2218 L: qemu-block@nongnu.org
2219 S: Supported
2220 F: block*
2221 F: block/
2222 F: hw/block/
2223 F: include/block/
2224 F: qemu-img*
2225 F: docs/tools/qemu-img.rst
2226 F: qemu-io*
2227 F: tests/qemu-iotests/
2228 F: util/qemu-progress.c
2229 F: qobject/block-qdict.c
2230 F: tests/unit/check-block-qdict.c
2231 T: git https://repo.or.cz/qemu/kevin.git block
2232
2233 Storage daemon
2234 M: Kevin Wolf <kwolf@redhat.com>
2235 L: qemu-block@nongnu.org
2236 S: Supported
2237 F: storage-daemon/
2238 F: docs/interop/qemu-storage-daemon-qmp-ref.rst
2239 F: docs/tools/qemu-storage-daemon.rst
2240 T: git https://repo.or.cz/qemu/kevin.git block
2241
2242 Block I/O path
2243 M: Stefan Hajnoczi <stefanha@redhat.com>
2244 M: Fam Zheng <fam@euphon.net>
2245 L: qemu-block@nongnu.org
2246 S: Supported
2247 F: util/async.c
2248 F: util/aio-*.c
2249 F: util/aio-*.h
2250 F: util/fdmon-*.c
2251 F: block/io.c
2252 F: migration/block*
2253 F: include/block/aio.h
2254 F: include/block/aio-wait.h
2255 F: scripts/qemugdb/aio.py
2256 F: tests/unit/test-fdmon-epoll.c
2257 T: git https://github.com/stefanha/qemu.git block
2258
2259 Block SCSI subsystem
2260 M: Paolo Bonzini <pbonzini@redhat.com>
2261 R: Fam Zheng <fam@euphon.net>
2262 L: qemu-block@nongnu.org
2263 S: Supported
2264 F: include/scsi/*
2265 F: scsi/*
2266
2267 Block Jobs
2268 M: John Snow <jsnow@redhat.com>
2269 M: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
2270 L: qemu-block@nongnu.org
2271 S: Supported
2272 F: blockjob.c
2273 F: include/block/blockjob.h
2274 F: job.c
2275 F: job-qmp.c
2276 F: include/qemu/job.h
2277 F: block/backup.c
2278 F: block/commit.c
2279 F: block/stream.c
2280 F: block/mirror.c
2281 F: qapi/job.json
2282 F: block/block-copy.c
2283 F: include/block/block-copy.c
2284 F: block/backup-top.h
2285 F: block/backup-top.c
2286 F: include/block/aio_task.h
2287 F: block/aio_task.c
2288 F: util/qemu-co-shared-resource.c
2289 F: include/qemu/co-shared-resource.h
2290 T: git https://gitlab.com/jsnow/qemu.git jobs
2291 T: git https://src.openvz.org/scm/~vsementsov/qemu.git jobs
2292
2293 Block QAPI, monitor, command line
2294 M: Markus Armbruster <armbru@redhat.com>
2295 S: Supported
2296 F: blockdev.c
2297 F: blockdev-hmp-cmds.c
2298 F: block/qapi.c
2299 F: qapi/block*.json
2300 F: qapi/transaction.json
2301 T: git https://repo.or.cz/qemu/armbru.git block-next
2302
2303 Dirty Bitmaps
2304 M: Eric Blake <eblake@redhat.com>
2305 M: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
2306 R: John Snow <jsnow@redhat.com>
2307 L: qemu-block@nongnu.org
2308 S: Supported
2309 F: include/qemu/hbitmap.h
2310 F: include/block/dirty-bitmap.h
2311 F: block/monitor/bitmap-qmp-cmds.c
2312 F: block/dirty-bitmap.c
2313 F: block/qcow2-bitmap.c
2314 F: migration/block-dirty-bitmap.c
2315 F: util/hbitmap.c
2316 F: tests/unit/test-hbitmap.c
2317 F: docs/interop/bitmaps.rst
2318 T: git https://repo.or.cz/qemu/ericb.git bitmaps
2319
2320 Character device backends
2321 M: Marc-André Lureau <marcandre.lureau@redhat.com>
2322 R: Paolo Bonzini <pbonzini@redhat.com>
2323 S: Maintained
2324 F: chardev/
2325 F: include/chardev/
2326 F: qapi/char.json
2327
2328 Character Devices (Braille)
2329 M: Samuel Thibault <samuel.thibault@ens-lyon.org>
2330 S: Maintained
2331 F: chardev/baum.c
2332
2333 Command line option argument parsing
2334 M: Markus Armbruster <armbru@redhat.com>
2335 S: Supported
2336 F: include/qemu/option.h
2337 F: tests/unit/test-keyval.c
2338 F: tests/unit/test-qemu-opts.c
2339 F: util/keyval.c
2340 F: util/qemu-option.c
2341
2342 Coverity model
2343 M: Markus Armbruster <armbru@redhat.com>
2344 S: Supported
2345 F: scripts/coverity-model.c
2346
2347 Coverity Scan integration
2348 M: Peter Maydell <peter.maydell@linaro.org>
2349 S: Maintained
2350 F: scripts/coverity-scan/
2351
2352 Device Tree
2353 M: Alistair Francis <alistair.francis@wdc.com>
2354 R: David Gibson <david@gibson.dropbear.id.au>
2355 S: Maintained
2356 F: softmmu/device_tree.c
2357 F: include/sysemu/device_tree.h
2358
2359 Dump
2360 S: Supported
2361 M: Marc-André Lureau <marcandre.lureau@redhat.com>
2362 F: dump/
2363 F: hw/misc/vmcoreinfo.c
2364 F: include/hw/misc/vmcoreinfo.h
2365 F: include/qemu/win_dump_defs
2366 F: include/sysemu/dump-arch.h
2367 F: include/sysemu/dump.h
2368 F: qapi/dump.json
2369 F: scripts/dump-guest-memory.py
2370 F: stubs/dump.c
2371
2372 Error reporting
2373 M: Markus Armbruster <armbru@redhat.com>
2374 S: Supported
2375 F: include/qapi/error.h
2376 F: include/qemu/error-report.h
2377 F: qapi/error.json
2378 F: util/error.c
2379 F: util/qemu-error.c
2380 F: scripts/coccinelle/err-bad-newline.cocci
2381 F: scripts/coccinelle/error-use-after-free.cocci
2382 F: scripts/coccinelle/error_propagate_null.cocci
2383 F: scripts/coccinelle/remove_local_err.cocci
2384 F: scripts/coccinelle/use-error_fatal.cocci
2385 F: scripts/coccinelle/errp-guard.cocci
2386
2387 GDB stub
2388 M: Alex Bennée <alex.bennee@linaro.org>
2389 R: Philippe Mathieu-Daudé <philmd@redhat.com>
2390 S: Maintained
2391 F: gdbstub*
2392 F: include/exec/gdbstub.h
2393 F: gdb-xml/
2394 F: tests/tcg/multiarch/gdbstub/
2395
2396 Memory API
2397 M: Paolo Bonzini <pbonzini@redhat.com>
2398 S: Supported
2399 F: include/exec/ioport.h
2400 F: include/exec/memop.h
2401 F: include/exec/memory.h
2402 F: include/exec/ram_addr.h
2403 F: include/exec/ramblock.h
2404 F: softmmu/dma-helpers.c
2405 F: softmmu/ioport.c
2406 F: softmmu/memory.c
2407 F: softmmu/physmem.c
2408 F: include/exec/memory-internal.h
2409 F: scripts/coccinelle/memory-region-housekeeping.cocci
2410
2411 SPICE
2412 M: Gerd Hoffmann <kraxel@redhat.com>
2413 S: Supported
2414 F: include/ui/qemu-spice.h
2415 F: include/ui/spice-display.h
2416 F: ui/spice-*.c
2417 F: audio/spiceaudio.c
2418 F: hw/display/qxl*
2419 F: qapi/ui.json
2420 F: docs/spice-port-fqdn.txt
2421
2422 Graphics
2423 M: Gerd Hoffmann <kraxel@redhat.com>
2424 S: Odd Fixes
2425 F: ui/
2426 F: include/ui/
2427 F: qapi/ui.json
2428 F: util/drm.c
2429
2430 Cocoa graphics
2431 M: Peter Maydell <peter.maydell@linaro.org>
2432 S: Odd Fixes
2433 F: ui/cocoa.m
2434
2435 Main loop
2436 M: Paolo Bonzini <pbonzini@redhat.com>
2437 S: Maintained
2438 F: include/exec/gen-icount.h
2439 F: include/qemu/main-loop.h
2440 F: include/sysemu/runstate.h
2441 F: include/sysemu/runstate-action.h
2442 F: util/main-loop.c
2443 F: util/qemu-timer.c
2444 F: softmmu/vl.c
2445 F: softmmu/main.c
2446 F: softmmu/cpus.c
2447 F: softmmu/cpu-throttle.c
2448 F: softmmu/cpu-timers.c
2449 F: softmmu/icount.c
2450 F: softmmu/runstate-action.c
2451 F: qapi/run-state.json
2452
2453 Read, Copy, Update (RCU)
2454 M: Paolo Bonzini <pbonzini@redhat.com>
2455 S: Maintained
2456 F: include/qemu/rcu*.h
2457 F: tests/unit/rcutorture.c
2458 F: tests/unit/test-rcu-*.c
2459 F: util/rcu.c
2460
2461 Human Monitor (HMP)
2462 M: Dr. David Alan Gilbert <dgilbert@redhat.com>
2463 S: Maintained
2464 F: monitor/monitor-internal.h
2465 F: monitor/misc.c
2466 F: monitor/monitor.c
2467 F: monitor/hmp*
2468 F: hmp.h
2469 F: hmp-commands*.hx
2470 F: include/monitor/hmp-target.h
2471 F: tests/qtest/test-hmp.c
2472 F: include/qemu/qemu-print.h
2473 F: util/qemu-print.c
2474
2475 Network device backends
2476 M: Jason Wang <jasowang@redhat.com>
2477 S: Maintained
2478 F: net/
2479 F: include/net/
2480 F: qemu-bridge-helper.c
2481 T: git https://github.com/jasowang/qemu.git net
2482 F: qapi/net.json
2483
2484 Netmap network backend
2485 M: Luigi Rizzo <rizzo@iet.unipi.it>
2486 M: Giuseppe Lettieri <g.lettieri@iet.unipi.it>
2487 M: Vincenzo Maffione <v.maffione@gmail.com>
2488 W: http://info.iet.unipi.it/~luigi/netmap/
2489 S: Maintained
2490 F: net/netmap.c
2491
2492 Host Memory Backends
2493 M: Eduardo Habkost <ehabkost@redhat.com>
2494 M: Igor Mammedov <imammedo@redhat.com>
2495 S: Maintained
2496 F: backends/hostmem*.c
2497 F: include/sysemu/hostmem.h
2498 T: git https://gitlab.com/ehabkost/qemu.git machine-next
2499
2500 Cryptodev Backends
2501 M: Gonglei <arei.gonglei@huawei.com>
2502 S: Maintained
2503 F: include/sysemu/cryptodev*.h
2504 F: backends/cryptodev*.c
2505
2506 Python library
2507 M: John Snow <jsnow@redhat.com>
2508 M: Cleber Rosa <crosa@redhat.com>
2509 R: Eduardo Habkost <ehabkost@redhat.com>
2510 S: Maintained
2511 F: python/
2512 T: git https://gitlab.com/jsnow/qemu.git python
2513
2514 Python scripts
2515 M: Eduardo Habkost <ehabkost@redhat.com>
2516 M: Cleber Rosa <crosa@redhat.com>
2517 S: Odd Fixes
2518 F: scripts/*.py
2519 F: tests/*.py
2520
2521 Benchmark util
2522 M: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
2523 S: Maintained
2524 F: scripts/simplebench/
2525
2526 Transactions helper
2527 M: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
2528 S: Maintained
2529 F: include/qemu/transactions.h
2530 F: util/transactions.c
2531
2532 QAPI
2533 M: Markus Armbruster <armbru@redhat.com>
2534 M: Michael Roth <michael.roth@amd.com>
2535 S: Supported
2536 F: qapi/
2537 X: qapi/*.json
2538 F: include/qapi/
2539 X: include/qapi/qmp/
2540 F: include/qapi/qmp/dispatch.h
2541 F: tests/qapi-schema/
2542 F: tests/unit/test-*-visitor.c
2543 F: tests/unit/test-qapi-*.c
2544 F: tests/unit/test-qmp-*.c
2545 F: tests/unit/test-visitor-serialization.c
2546 F: scripts/qapi-gen.py
2547 F: scripts/qapi/*
2548 F: docs/sphinx/qapidoc.py
2549 F: docs/devel/qapi*
2550 T: git https://repo.or.cz/qemu/armbru.git qapi-next
2551
2552 QAPI Schema
2553 M: Eric Blake <eblake@redhat.com>
2554 M: Markus Armbruster <armbru@redhat.com>
2555 S: Supported
2556 F: qapi/*.json
2557 T: git https://repo.or.cz/qemu/armbru.git qapi-next
2558
2559 QObject
2560 M: Markus Armbruster <armbru@redhat.com>
2561 S: Supported
2562 F: qobject/
2563 F: include/qapi/qmp/
2564 X: include/qapi/qmp/dispatch.h
2565 F: scripts/coccinelle/qobject.cocci
2566 F: tests/unit/check-qdict.c
2567 F: tests/unit/check-qjson.c
2568 F: tests/unit/check-qlist.c
2569 F: tests/unit/check-qlit.c
2570 F: tests/unit/check-qnull.c
2571 F: tests/unit/check-qnum.c
2572 F: tests/unit/check-qobject.c
2573 F: tests/unit/check-qstring.c
2574 F: tests/data/qobject/qdict.txt
2575 T: git https://repo.or.cz/qemu/armbru.git qapi-next
2576
2577 QEMU Guest Agent
2578 M: Michael Roth <michael.roth@amd.com>
2579 S: Maintained
2580 F: qga/
2581 F: docs/interop/qemu-ga.rst
2582 F: docs/interop/qemu-ga-ref.rst
2583 F: scripts/qemu-guest-agent/
2584 F: tests/unit/test-qga.c
2585 T: git https://github.com/mdroth/qemu.git qga
2586
2587 QOM
2588 M: Paolo Bonzini <pbonzini@redhat.com>
2589 R: Daniel P. Berrange <berrange@redhat.com>
2590 R: Eduardo Habkost <ehabkost@redhat.com>
2591 S: Supported
2592 F: docs/qdev-device-use.txt
2593 F: hw/core/qdev*
2594 F: hw/core/bus.c
2595 F: hw/core/sysbus.c
2596 F: include/hw/qdev*
2597 F: include/monitor/qdev.h
2598 F: include/qom/
2599 F: qapi/qom.json
2600 F: qapi/qdev.json
2601 F: scripts/coccinelle/qom-parent-type.cocci
2602 F: softmmu/qdev-monitor.c
2603 F: stubs/qdev.c
2604 F: qom/
2605 F: tests/unit/check-qom-interface.c
2606 F: tests/unit/check-qom-proplist.c
2607 F: tests/unit/test-qdev-global-props.c
2608
2609 QOM boilerplate conversion script
2610 M: Eduardo Habkost <ehabkost@redhat.com>
2611 S: Maintained
2612 F: scripts/codeconverter/
2613
2614 QMP
2615 M: Markus Armbruster <armbru@redhat.com>
2616 S: Supported
2617 F: monitor/monitor-internal.h
2618 F: monitor/qmp*
2619 F: monitor/misc.c
2620 F: monitor/monitor.c
2621 F: qapi/control.json
2622 F: qapi/error.json
2623 F: qapi/introspect.json
2624 F: docs/devel/*qmp-*
2625 F: docs/interop/*qmp-*
2626 F: scripts/qmp/
2627 F: tests/qtest/qmp-test.c
2628 F: tests/qtest/qmp-cmd-test.c
2629 T: git https://repo.or.cz/qemu/armbru.git qapi-next
2630
2631 qtest
2632 M: Thomas Huth <thuth@redhat.com>
2633 M: Laurent Vivier <lvivier@redhat.com>
2634 R: Paolo Bonzini <pbonzini@redhat.com>
2635 S: Maintained
2636 F: softmmu/qtest.c
2637 F: accel/qtest/
2638 F: tests/qtest/
2639 F: docs/devel/qgraph.rst
2640 X: tests/qtest/bios-tables-test*
2641
2642 Device Fuzzing
2643 M: Alexander Bulekov <alxndr@bu.edu>
2644 R: Paolo Bonzini <pbonzini@redhat.com>
2645 R: Bandan Das <bsd@redhat.com>
2646 R: Stefan Hajnoczi <stefanha@redhat.com>
2647 R: Thomas Huth <thuth@redhat.com>
2648 S: Maintained
2649 F: tests/qtest/fuzz/
2650 F: tests/qtest/fuzz-*test.c
2651 F: scripts/oss-fuzz/
2652 F: hw/mem/sparse-mem.c
2653 F: docs/devel/fuzzing.rst
2654
2655 Register API
2656 M: Alistair Francis <alistair@alistair23.me>
2657 S: Maintained
2658 F: hw/core/register.c
2659 F: include/hw/register.h
2660 F: include/hw/registerfields.h
2661
2662 SLIRP
2663 M: Samuel Thibault <samuel.thibault@ens-lyon.org>
2664 S: Maintained
2665 F: slirp/
2666 F: net/slirp.c
2667 F: include/net/slirp.h
2668 T: git https://people.debian.org/~sthibault/qemu.git slirp
2669
2670 Streams
2671 M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
2672 S: Maintained
2673 F: hw/core/stream.c
2674 F: include/hw/stream.h
2675
2676 Stubs
2677 M: Paolo Bonzini <pbonzini@redhat.com>
2678 S: Maintained
2679 F: stubs/
2680
2681 Tracing
2682 M: Stefan Hajnoczi <stefanha@redhat.com>
2683 S: Maintained
2684 F: trace/
2685 F: trace-events
2686 F: docs/qemu-option-trace.rst.inc
2687 F: qapi/trace.json
2688 F: scripts/tracetool.py
2689 F: scripts/tracetool/
2690 F: scripts/qemu-trace-stap*
2691 F: docs/tools/qemu-trace-stap.rst
2692 F: docs/devel/tracing.txt
2693 T: git https://github.com/stefanha/qemu.git tracing
2694
2695 TPM
2696 M: Stefan Berger <stefanb@linux.ibm.com>
2697 S: Maintained
2698 F: tpm.c
2699 F: stubs/tpm.c
2700 F: hw/tpm/*
2701 F: include/hw/acpi/tpm.h
2702 F: include/sysemu/tpm*
2703 F: qapi/tpm.json
2704 F: backends/tpm/
2705 F: tests/qtest/*tpm*
2706 T: git https://github.com/stefanberger/qemu-tpm.git tpm-next
2707
2708 Checkpatch
2709 S: Odd Fixes
2710 F: scripts/checkpatch.pl
2711
2712 Migration
2713 M: Juan Quintela <quintela@redhat.com>
2714 M: Dr. David Alan Gilbert <dgilbert@redhat.com>
2715 S: Maintained
2716 F: hw/core/vmstate-if.c
2717 F: include/hw/vmstate-if.h
2718 F: include/migration/
2719 F: migration/
2720 F: scripts/vmstate-static-checker.py
2721 F: tests/vmstate-static-checker-data/
2722 F: tests/qtest/migration-test.c
2723 F: docs/devel/migration.rst
2724 F: qapi/migration.json
2725 F: tests/migration/
2726
2727 D-Bus
2728 M: Marc-André Lureau <marcandre.lureau@redhat.com>
2729 S: Maintained
2730 F: backends/dbus-vmstate.c
2731 F: tests/dbus-vmstate*
2732 F: util/dbus.c
2733 F: include/qemu/dbus.h
2734 F: docs/interop/dbus.rst
2735 F: docs/interop/dbus-vmstate.rst
2736
2737 Seccomp
2738 M: Eduardo Otubo <otubo@redhat.com>
2739 S: Supported
2740 F: softmmu/qemu-seccomp.c
2741 F: include/sysemu/seccomp.h
2742
2743 Cryptography
2744 M: Daniel P. Berrange <berrange@redhat.com>
2745 S: Maintained
2746 F: crypto/
2747 F: include/crypto/
2748 F: qapi/crypto.json
2749 F: tests/unit/test-crypto-*
2750 F: tests/bench/benchmark-crypto-*
2751 F: tests/unit/crypto-tls-*
2752 F: tests/unit/pkix_asn1_tab.c
2753 F: qemu.sasl
2754
2755 Coroutines
2756 M: Stefan Hajnoczi <stefanha@redhat.com>
2757 M: Kevin Wolf <kwolf@redhat.com>
2758 S: Maintained
2759 F: util/*coroutine*
2760 F: include/qemu/coroutine*
2761 F: tests/unit/test-coroutine.c
2762
2763 Buffers
2764 M: Daniel P. Berrange <berrange@redhat.com>
2765 S: Odd Fixes
2766 F: util/buffer.c
2767 F: include/qemu/buffer.h
2768
2769 I/O Channels
2770 M: Daniel P. Berrange <berrange@redhat.com>
2771 S: Maintained
2772 F: io/
2773 F: include/io/
2774 F: tests/unit/test-io-*
2775
2776 User authorization
2777 M: Daniel P. Berrange <berrange@redhat.com>
2778 S: Maintained
2779 F: authz/
2780 F: qapi/authz.json
2781 F: include/authz/
2782 F: tests/unit/test-authz-*
2783
2784 Sockets
2785 M: Daniel P. Berrange <berrange@redhat.com>
2786 M: Gerd Hoffmann <kraxel@redhat.com>
2787 S: Maintained
2788 F: include/qemu/sockets.h
2789 F: util/qemu-sockets.c
2790 F: qapi/sockets.json
2791
2792 File monitor
2793 M: Daniel P. Berrange <berrange@redhat.com>
2794 S: Odd Fixes
2795 F: util/filemonitor*.c
2796 F: include/qemu/filemonitor.h
2797 F: tests/unit/test-util-filemonitor.c
2798
2799 Throttling infrastructure
2800 M: Alberto Garcia <berto@igalia.com>
2801 S: Supported
2802 F: block/throttle-groups.c
2803 F: include/block/throttle-groups.h
2804 F: include/qemu/throttle*.h
2805 F: util/throttle.c
2806 F: docs/throttle.txt
2807 F: tests/unit/test-throttle.c
2808 L: qemu-block@nongnu.org
2809
2810 UUID
2811 M: Fam Zheng <fam@euphon.net>
2812 S: Supported
2813 F: util/uuid.c
2814 F: include/qemu/uuid.h
2815 F: tests/unit/test-uuid.c
2816
2817 Yank feature
2818 M: Lukas Straub <lukasstraub2@web.de>
2819 S: Odd fixes
2820 F: util/yank.c
2821 F: migration/yank_functions*
2822 F: tests/unit/test-yank.c
2823 F: include/qemu/yank.h
2824 F: qapi/yank.json
2825
2826 COLO Framework
2827 M: zhanghailiang <zhang.zhanghailiang@huawei.com>
2828 S: Maintained
2829 F: migration/colo*
2830 F: include/migration/colo.h
2831 F: include/migration/failover.h
2832 F: docs/COLO-FT.txt
2833
2834 COLO Proxy
2835 M: Zhang Chen <chen.zhang@intel.com>
2836 M: Li Zhijian <lizhijian@cn.fujitsu.com>
2837 S: Supported
2838 F: docs/colo-proxy.txt
2839 F: net/colo*
2840 F: net/filter-rewriter.c
2841 F: net/filter-mirror.c
2842
2843 Record/replay
2844 M: Pavel Dovgalyuk <pavel.dovgaluk@ispras.ru>
2845 R: Paolo Bonzini <pbonzini@redhat.com>
2846 W: https://wiki.qemu.org/Features/record-replay
2847 S: Supported
2848 F: replay/*
2849 F: block/blkreplay.c
2850 F: net/filter-replay.c
2851 F: include/sysemu/replay.h
2852 F: docs/replay.txt
2853 F: stubs/replay.c
2854 F: tests/acceptance/replay_kernel.py
2855 F: tests/acceptance/reverse_debugging.py
2856 F: qapi/replay.json
2857
2858 IOVA Tree
2859 M: Peter Xu <peterx@redhat.com>
2860 S: Maintained
2861 F: include/qemu/iova-tree.h
2862 F: util/iova-tree.c
2863
2864 elf2dmp
2865 M: Viktor Prutyanov <viktor.prutyanov@phystech.edu>
2866 S: Maintained
2867 F: contrib/elf2dmp/
2868
2869 I2C and SMBus
2870 M: Corey Minyard <cminyard@mvista.com>
2871 S: Maintained
2872 F: hw/i2c/core.c
2873 F: hw/i2c/smbus_slave.c
2874 F: hw/i2c/smbus_master.c
2875 F: hw/i2c/smbus_eeprom.c
2876 F: include/hw/i2c/i2c.h
2877 F: include/hw/i2c/smbus_master.h
2878 F: include/hw/i2c/smbus_slave.h
2879 F: include/hw/i2c/smbus_eeprom.h
2880
2881 Firmware schema specifications
2882 M: Laszlo Ersek <lersek@redhat.com>
2883 M: Philippe Mathieu-Daudé <philmd@redhat.com>
2884 R: Daniel P. Berrange <berrange@redhat.com>
2885 R: Kashyap Chamarthy <kchamart@redhat.com>
2886 S: Maintained
2887 F: docs/interop/firmware.json
2888
2889 EDK2 Firmware
2890 M: Laszlo Ersek <lersek@redhat.com>
2891 M: Philippe Mathieu-Daudé <philmd@redhat.com>
2892 S: Supported
2893 F: pc-bios/descriptors/??-edk2-*.json
2894 F: pc-bios/edk2-*
2895 F: roms/Makefile.edk2
2896 F: roms/edk2
2897 F: roms/edk2-*
2898 F: tests/data/uefi-boot-images/
2899 F: tests/uefi-test-tools/
2900 F: .gitlab-ci.d/edk2.yml
2901 F: .gitlab-ci.d/edk2/
2902
2903 VT-d Emulation
2904 M: Michael S. Tsirkin <mst@redhat.com>
2905 M: Peter Xu <peterx@redhat.com>
2906 R: Jason Wang <jasowang@redhat.com>
2907 S: Supported
2908 F: hw/i386/intel_iommu.c
2909 F: hw/i386/intel_iommu_internal.h
2910 F: include/hw/i386/intel_iommu.h
2911
2912 OpenSBI Firmware
2913 M: Bin Meng <bmeng.cn@gmail.com>
2914 S: Supported
2915 F: pc-bios/opensbi-*
2916 F: .gitlab-ci.d/opensbi.yml
2917 F: .gitlab-ci.d/opensbi/
2918
2919 Clock framework
2920 M: Luc Michel <luc@lmichel.fr>
2921 R: Damien Hedde <damien.hedde@greensocs.com>
2922 S: Maintained
2923 F: include/hw/clock.h
2924 F: include/hw/qdev-clock.h
2925 F: hw/core/clock.c
2926 F: hw/core/clock-vmstate.c
2927 F: hw/core/qdev-clock.c
2928 F: docs/devel/clocks.rst
2929
2930 Usermode Emulation
2931 ------------------
2932 Overall usermode emulation
2933 M: Riku Voipio <riku.voipio@iki.fi>
2934 S: Maintained
2935 F: thunk.c
2936 F: accel/tcg/user-exec*.c
2937
2938 BSD user
2939 M: Warner Losh <imp@bsdimp.com>
2940 R: Kyle Evans <kevans@freebsd.org>
2941 S: Maintained
2942 F: bsd-user/
2943 F: default-configs/targets/*-bsd-user.mak
2944 T: git https://github.com/qemu-bsd-user/qemu-bsd-user bsd-user-rebase-3.1
2945
2946 Linux user
2947 M: Laurent Vivier <laurent@vivier.eu>
2948 S: Maintained
2949 F: linux-user/
2950 F: default-configs/targets/*linux-user.mak
2951 F: scripts/qemu-binfmt-conf.sh
2952 F: scripts/update-syscalltbl.sh
2953 F: scripts/update-mips-syscall-args.sh
2954 F: scripts/gensyscalls.sh
2955
2956 Tiny Code Generator (TCG)
2957 -------------------------
2958 Common TCG code
2959 M: Richard Henderson <richard.henderson@linaro.org>
2960 S: Maintained
2961 F: tcg/
2962 F: include/tcg/
2963
2964 TCG Plugins
2965 M: Alex Bennée <alex.bennee@linaro.org>
2966 S: Maintained
2967 F: docs/devel/tcg-plugins.rst
2968 F: plugins/
2969 F: tests/plugin/
2970 F: tests/acceptance/tcg_plugins.py
2971 F: contrib/plugins/
2972
2973 AArch64 TCG target
2974 M: Richard Henderson <richard.henderson@linaro.org>
2975 S: Maintained
2976 L: qemu-arm@nongnu.org
2977 F: tcg/aarch64/
2978 F: disas/arm-a64.cc
2979 F: disas/libvixl/
2980
2981 ARM TCG target
2982 M: Andrzej Zaborowski <balrogg@gmail.com>
2983 S: Maintained
2984 L: qemu-arm@nongnu.org
2985 F: tcg/arm/
2986 F: disas/arm.c
2987
2988 i386 TCG target
2989 M: Richard Henderson <richard.henderson@linaro.org>
2990 S: Maintained
2991 F: tcg/i386/
2992 F: disas/i386.c
2993
2994 MIPS TCG target
2995 M: Philippe Mathieu-Daudé <f4bug@amsat.org>
2996 R: Aurelien Jarno <aurelien@aurel32.net>
2997 R: Huacai Chen <chenhuacai@kernel.org>
2998 R: Jiaxun Yang <jiaxun.yang@flygoat.com>
2999 R: Aleksandar Rikalo <aleksandar.rikalo@syrmia.com>
3000 S: Odd Fixes
3001 F: tcg/mips/
3002
3003 PPC TCG target
3004 M: Richard Henderson <richard.henderson@linaro.org>
3005 S: Odd Fixes
3006 F: tcg/ppc/
3007 F: disas/ppc.c
3008
3009 RISC-V TCG target
3010 M: Palmer Dabbelt <palmer@dabbelt.com>
3011 M: Alistair Francis <Alistair.Francis@wdc.com>
3012 L: qemu-riscv@nongnu.org
3013 S: Maintained
3014 F: tcg/riscv/
3015 F: disas/riscv.c
3016
3017 S390 TCG target
3018 M: Richard Henderson <richard.henderson@linaro.org>
3019 S: Maintained
3020 F: tcg/s390/
3021 F: disas/s390.c
3022 L: qemu-s390x@nongnu.org
3023
3024 SPARC TCG target
3025 S: Odd Fixes
3026 F: tcg/sparc/
3027 F: disas/sparc.c
3028
3029 TCI TCG target
3030 M: Stefan Weil <sw@weilnetz.de>
3031 S: Maintained
3032 F: tcg/tci/
3033 F: tcg/tci.c
3034 F: disas/tci.c
3035
3036 Block drivers
3037 -------------
3038 VMDK
3039 M: Fam Zheng <fam@euphon.net>
3040 L: qemu-block@nongnu.org
3041 S: Supported
3042 F: block/vmdk.c
3043
3044 RBD
3045 M: Jason Dillaman <dillaman@redhat.com>
3046 L: qemu-block@nongnu.org
3047 S: Supported
3048 F: block/rbd.c
3049
3050 VHDX
3051 M: Jeff Cody <codyprime@gmail.com>
3052 L: qemu-block@nongnu.org
3053 S: Supported
3054 F: block/vhdx*
3055
3056 VDI
3057 M: Stefan Weil <sw@weilnetz.de>
3058 L: qemu-block@nongnu.org
3059 S: Maintained
3060 F: block/vdi.c
3061
3062 iSCSI
3063 M: Ronnie Sahlberg <ronniesahlberg@gmail.com>
3064 M: Paolo Bonzini <pbonzini@redhat.com>
3065 M: Peter Lieven <pl@kamp.de>
3066 L: qemu-block@nongnu.org
3067 S: Odd Fixes
3068 F: block/iscsi.c
3069 F: block/iscsi-opts.c
3070
3071 Network Block Device (NBD)
3072 M: Eric Blake <eblake@redhat.com>
3073 M: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
3074 L: qemu-block@nongnu.org
3075 S: Maintained
3076 F: block/nbd*
3077 F: nbd/
3078 F: include/block/nbd*
3079 F: qemu-nbd.*
3080 F: blockdev-nbd.c
3081 F: docs/interop/nbd.txt
3082 F: docs/tools/qemu-nbd.rst
3083 T: git https://repo.or.cz/qemu/ericb.git nbd
3084 T: git https://src.openvz.org/scm/~vsementsov/qemu.git nbd
3085
3086 NFS
3087 M: Peter Lieven <pl@kamp.de>
3088 L: qemu-block@nongnu.org
3089 S: Maintained
3090 F: block/nfs.c
3091
3092 SSH
3093 M: Richard W.M. Jones <rjones@redhat.com>
3094 L: qemu-block@nongnu.org
3095 S: Supported
3096 F: block/ssh.c
3097
3098 CURL
3099 L: qemu-block@nongnu.org
3100 S: Odd Fixes
3101 F: block/curl.c
3102
3103 GLUSTER
3104 L: qemu-block@nongnu.org
3105 L: integration@gluster.org
3106 S: Odd Fixes
3107 F: block/gluster.c
3108
3109 Null Block Driver
3110 M: Fam Zheng <fam@euphon.net>
3111 L: qemu-block@nongnu.org
3112 S: Supported
3113 F: block/null.c
3114
3115 NVMe Block Driver
3116 M: Stefan Hajnoczi <stefanha@redhat.com>
3117 R: Fam Zheng <fam@euphon.net>
3118 L: qemu-block@nongnu.org
3119 S: Supported
3120 F: block/nvme*
3121 F: include/block/nvme.h
3122 T: git https://github.com/stefanha/qemu.git block
3123
3124 Bootdevice
3125 M: Gonglei <arei.gonglei@huawei.com>
3126 S: Maintained
3127 F: softmmu/bootdevice.c
3128
3129 Quorum
3130 M: Alberto Garcia <berto@igalia.com>
3131 S: Supported
3132 F: block/quorum.c
3133 L: qemu-block@nongnu.org
3134
3135 blklogwrites
3136 M: Ari Sundholm <ari@tuxera.com>
3137 L: qemu-block@nongnu.org
3138 S: Supported
3139 F: block/blklogwrites.c
3140
3141 blkverify
3142 M: Stefan Hajnoczi <stefanha@redhat.com>
3143 L: qemu-block@nongnu.org
3144 S: Supported
3145 F: block/blkverify.c
3146
3147 bochs
3148 M: Stefan Hajnoczi <stefanha@redhat.com>
3149 L: qemu-block@nongnu.org
3150 S: Supported
3151 F: block/bochs.c
3152
3153 cloop
3154 M: Stefan Hajnoczi <stefanha@redhat.com>
3155 L: qemu-block@nongnu.org
3156 S: Supported
3157 F: block/cloop.c
3158
3159 dmg
3160 M: Stefan Hajnoczi <stefanha@redhat.com>
3161 L: qemu-block@nongnu.org
3162 S: Supported
3163 F: block/dmg.c
3164
3165 parallels
3166 M: Stefan Hajnoczi <stefanha@redhat.com>
3167 M: Denis V. Lunev <den@openvz.org>
3168 M: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
3169 L: qemu-block@nongnu.org
3170 S: Supported
3171 F: block/parallels.c
3172 F: block/parallels-ext.c
3173 F: docs/interop/parallels.txt
3174 T: git https://src.openvz.org/scm/~vsementsov/qemu.git parallels
3175
3176 qed
3177 M: Stefan Hajnoczi <stefanha@redhat.com>
3178 L: qemu-block@nongnu.org
3179 S: Supported
3180 F: block/qed.c
3181
3182 raw
3183 M: Kevin Wolf <kwolf@redhat.com>
3184 L: qemu-block@nongnu.org
3185 S: Supported
3186 F: block/linux-aio.c
3187 F: include/block/raw-aio.h
3188 F: block/raw-format.c
3189 F: block/file-posix.c
3190 F: block/file-win32.c
3191 F: block/win32-aio.c
3192
3193 Linux io_uring
3194 M: Aarushi Mehta <mehta.aaru20@gmail.com>
3195 M: Julia Suvorova <jusual@redhat.com>
3196 M: Stefan Hajnoczi <stefanha@redhat.com>
3197 L: qemu-block@nongnu.org
3198 S: Maintained
3199 F: block/io_uring.c
3200 F: stubs/io_uring.c
3201
3202 qcow2
3203 M: Kevin Wolf <kwolf@redhat.com>
3204 M: Max Reitz <mreitz@redhat.com>
3205 L: qemu-block@nongnu.org
3206 S: Supported
3207 F: block/qcow2*
3208 F: docs/interop/qcow2.txt
3209
3210 qcow
3211 M: Kevin Wolf <kwolf@redhat.com>
3212 L: qemu-block@nongnu.org
3213 S: Supported
3214 F: block/qcow.c
3215
3216 blkdebug
3217 M: Kevin Wolf <kwolf@redhat.com>
3218 M: Max Reitz <mreitz@redhat.com>
3219 L: qemu-block@nongnu.org
3220 S: Supported
3221 F: block/blkdebug.c
3222
3223 vpc
3224 M: Kevin Wolf <kwolf@redhat.com>
3225 L: qemu-block@nongnu.org
3226 S: Supported
3227 F: block/vpc.c
3228
3229 vvfat
3230 M: Kevin Wolf <kwolf@redhat.com>
3231 L: qemu-block@nongnu.org
3232 S: Odd Fixes
3233 F: block/vvfat.c
3234
3235 Image format fuzzer
3236 M: Stefan Hajnoczi <stefanha@redhat.com>
3237 L: qemu-block@nongnu.org
3238 S: Supported
3239 F: tests/image-fuzzer/
3240
3241 Vhost-user block device backend server
3242 M: Coiby Xu <Coiby.Xu@gmail.com>
3243 S: Maintained
3244 F: block/export/vhost-user-blk-server.c
3245 F: block/export/vhost-user-blk-server.h
3246 F: include/qemu/vhost-user-server.h
3247 F: tests/qtest/libqos/vhost-user-blk.c
3248 F: util/vhost-user-server.c
3249
3250 FUSE block device exports
3251 M: Max Reitz <mreitz@redhat.com>
3252 L: qemu-block@nongnu.org
3253 S: Supported
3254 F: block/export/fuse.c
3255
3256 Replication
3257 M: Wen Congyang <wencongyang2@huawei.com>
3258 M: Xie Changlong <xiechanglong.d@gmail.com>
3259 S: Supported
3260 F: replication*
3261 F: block/replication.c
3262 F: tests/unit/test-replication.c
3263 F: docs/block-replication.txt
3264
3265 PVRDMA
3266 M: Yuval Shaia <yuval.shaia.ml@gmail.com>
3267 M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
3268 S: Maintained
3269 F: hw/rdma/*
3270 F: hw/rdma/vmw/*
3271 F: docs/pvrdma.txt
3272 F: contrib/rdmacm-mux/*
3273 F: qapi/rdma.json
3274
3275 Semihosting
3276 M: Alex Bennée <alex.bennee@linaro.org>
3277 S: Maintained
3278 F: semihosting/
3279 F: include/semihosting/
3280 F: tests/tcg/multiarch/arm-compat-semi/
3281
3282 Multi-process QEMU
3283 M: Elena Ufimtseva <elena.ufimtseva@oracle.com>
3284 M: Jagannathan Raman <jag.raman@oracle.com>
3285 M: John G Johnson <john.g.johnson@oracle.com>
3286 S: Maintained
3287 F: docs/devel/multi-process.rst
3288 F: docs/system/multi-process.rst
3289 F: hw/pci-host/remote.c
3290 F: include/hw/pci-host/remote.h
3291 F: hw/remote/machine.c
3292 F: include/hw/remote/machine.h
3293 F: hw/remote/mpqemu-link.c
3294 F: include/hw/remote/mpqemu-link.h
3295 F: hw/remote/message.c
3296 F: hw/remote/remote-obj.c
3297 F: include/hw/remote/memory.h
3298 F: hw/remote/memory.c
3299 F: hw/remote/proxy.c
3300 F: include/hw/remote/proxy.h
3301 F: hw/remote/proxy-memory-listener.c
3302 F: include/hw/remote/proxy-memory-listener.h
3303 F: hw/remote/iohub.c
3304 F: include/hw/remote/iohub.h
3305
3306 Build and test automation
3307 -------------------------
3308 Build and test automation, general continuous integration
3309 M: Alex Bennée <alex.bennee@linaro.org>
3310 M: Philippe Mathieu-Daudé <f4bug@amsat.org>
3311 M: Thomas Huth <thuth@redhat.com>
3312 R: Wainer dos Santos Moschetta <wainersm@redhat.com>
3313 R: Willian Rampazzo <willianr@redhat.com>
3314 S: Maintained
3315 F: .github/lockdown.yml
3316 F: .gitlab-ci.yml
3317 F: .gitlab-ci.d/
3318 F: .travis.yml
3319 F: scripts/ci/
3320 F: tests/docker/
3321 F: tests/vm/
3322 F: scripts/archive-source.sh
3323 W: https://gitlab.com/qemu-project/qemu/pipelines
3324 W: https://travis-ci.org/qemu/qemu
3325
3326 FreeBSD Hosted Continuous Integration
3327 M: Ed Maste <emaste@freebsd.org>
3328 M: Li-Wen Hsu <lwhsu@freebsd.org>
3329 S: Maintained
3330 F: .cirrus.yml
3331 W: https://cirrus-ci.com/github/qemu/qemu
3332
3333 Windows Hosted Continuous Integration
3334 M: Yonggang Luo <luoyonggang@gmail.com>
3335 S: Maintained
3336 F: .cirrus.yml
3337 W: https://cirrus-ci.com/github/qemu/qemu
3338
3339 Guest Test Compilation Support
3340 M: Alex Bennée <alex.bennee@linaro.org>
3341 R: Philippe Mathieu-Daudé <f4bug@amsat.org>
3342 S: Maintained
3343 F: tests/tcg/Makefile
3344 F: tests/tcg/Makefile.include
3345
3346 Acceptance (Integration) Testing with the Avocado framework
3347 W: https://trello.com/b/6Qi1pxVn/avocado-qemu
3348 R: Cleber Rosa <crosa@redhat.com>
3349 R: Philippe Mathieu-Daudé <philmd@redhat.com>
3350 R: Wainer dos Santos Moschetta <wainersm@redhat.com>
3351 S: Odd Fixes
3352 F: tests/acceptance/
3353
3354 Documentation
3355 -------------
3356 Build system architecture
3357 M: Daniel P. Berrange <berrange@redhat.com>
3358 S: Odd Fixes
3359 F: docs/devel/build-system.txt
3360
3361 GIT Data Mining Config
3362 M: Alex Bennée <alex.bennee@linaro.org>
3363 S: Odd Fixes
3364 F: gitdm.config
3365 F: contrib/gitdm/*
3366
3367 Incompatible changes
3368 R: libvir-list@redhat.com
3369 F: docs/system/deprecated.rst
3370
3371 Build System
3372 ------------
3373 GIT submodules
3374 M: Daniel P. Berrange <berrange@redhat.com>
3375 S: Odd Fixes
3376 F: scripts/git-submodule.sh
3377
3378 UI translations
3379 S: Orphan
3380 F: po/*.po
3381
3382 Sphinx documentation configuration and build machinery
3383 M: Peter Maydell <peter.maydell@linaro.org>
3384 S: Maintained
3385 F: docs/conf.py
3386 F: docs/*/conf.py
3387 F: docs/sphinx/
3388
3389 Miscellaneous
3390 -------------
3391 Performance Tools and Tests
3392 M: Ahmed Karaman <ahmedkhaledkaraman@gmail.com>
3393 S: Maintained
3394 F: scripts/performance/