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