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