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