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