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