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