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