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