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: include/hw/isa/vt82c686.h 1184 1185Loongson-3 virtual platforms 1186M: Huacai Chen <chenhuacai@kernel.org> 1187R: Jiaxun Yang <jiaxun.yang@flygoat.com> 1188S: Maintained 1189F: hw/intc/loongson_liointc.c 1190F: hw/mips/loongson3_bootp.c 1191F: hw/mips/loongson3_bootp.h 1192F: hw/mips/loongson3_virt.c 1193F: tests/acceptance/machine_mips_loongson3v.py 1194 1195Boston 1196M: Paul Burton <paulburton@kernel.org> 1197R: Aleksandar Rikalo <aleksandar.rikalo@syrmia.com> 1198S: Odd Fixes 1199F: hw/core/loader-fit.c 1200F: hw/mips/boston.c 1201F: hw/pci-host/xilinx-pcie.c 1202F: include/hw/pci-host/xilinx-pcie.h 1203 1204OpenRISC Machines 1205----------------- 1206or1k-sim 1207M: Jia Liu <proljc@gmail.com> 1208S: Maintained 1209F: hw/openrisc/openrisc_sim.c 1210 1211PowerPC Machines 1212---------------- 1213405 1214M: David Gibson <david@gibson.dropbear.id.au> 1215M: Greg Kurz <groug@kaod.org> 1216L: qemu-ppc@nongnu.org 1217S: Odd Fixes 1218F: hw/ppc/ppc405_boards.c 1219 1220Bamboo 1221M: David Gibson <david@gibson.dropbear.id.au> 1222M: Greg Kurz <groug@kaod.org> 1223L: qemu-ppc@nongnu.org 1224S: Odd Fixes 1225F: hw/ppc/ppc440_bamboo.c 1226 1227e500 1228M: David Gibson <david@gibson.dropbear.id.au> 1229M: Greg Kurz <groug@kaod.org> 1230L: qemu-ppc@nongnu.org 1231S: Odd Fixes 1232F: hw/ppc/e500* 1233F: hw/gpio/mpc8xxx.c 1234F: hw/i2c/mpc_i2c.c 1235F: hw/net/fsl_etsec/ 1236F: hw/pci-host/ppce500.c 1237F: include/hw/ppc/ppc_e500.h 1238F: include/hw/pci-host/ppce500.h 1239F: pc-bios/u-boot.e500 1240 1241mpc8544ds 1242M: David Gibson <david@gibson.dropbear.id.au> 1243M: Greg Kurz <groug@kaod.org> 1244L: qemu-ppc@nongnu.org 1245S: Odd Fixes 1246F: hw/ppc/mpc8544ds.c 1247F: hw/ppc/mpc8544_guts.c 1248 1249New World (mac99) 1250M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> 1251R: David Gibson <david@gibson.dropbear.id.au> 1252R: Greg Kurz <groug@kaod.org> 1253L: qemu-ppc@nongnu.org 1254S: Odd Fixes 1255F: hw/ppc/mac_newworld.c 1256F: hw/pci-host/uninorth.c 1257F: hw/pci-bridge/dec.[hc] 1258F: hw/misc/macio/ 1259F: hw/misc/mos6522.c 1260F: hw/nvram/mac_nvram.c 1261F: hw/input/adb* 1262F: include/hw/misc/macio/ 1263F: include/hw/misc/mos6522.h 1264F: include/hw/ppc/mac_dbdma.h 1265F: include/hw/pci-host/uninorth.h 1266F: include/hw/input/adb* 1267F: pc-bios/qemu_vga.ndrv 1268 1269Old World (g3beige) 1270M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> 1271R: David Gibson <david@gibson.dropbear.id.au> 1272R: Greg Kurz <groug@kaod.org> 1273L: qemu-ppc@nongnu.org 1274S: Odd Fixes 1275F: hw/ppc/mac_oldworld.c 1276F: hw/pci-host/grackle.c 1277F: hw/misc/macio/ 1278F: hw/intc/heathrow_pic.c 1279F: hw/input/adb* 1280F: include/hw/intc/heathrow_pic.h 1281F: include/hw/input/adb* 1282F: pc-bios/qemu_vga.ndrv 1283 1284PReP 1285M: Hervé Poussineau <hpoussin@reactos.org> 1286R: David Gibson <david@gibson.dropbear.id.au> 1287R: Greg Kurz <groug@kaod.org> 1288L: qemu-ppc@nongnu.org 1289S: Maintained 1290F: hw/ppc/prep.c 1291F: hw/ppc/prep_systemio.c 1292F: hw/ppc/rs6000_mc.c 1293F: hw/pci-host/prep.[hc] 1294F: hw/isa/i82378.c 1295F: hw/isa/pc87312.c 1296F: hw/dma/i82374.c 1297F: hw/rtc/m48t59-isa.c 1298F: include/hw/isa/pc87312.h 1299F: include/hw/rtc/m48t59.h 1300F: tests/acceptance/ppc_prep_40p.py 1301 1302sPAPR 1303M: David Gibson <david@gibson.dropbear.id.au> 1304M: Greg Kurz <groug@kaod.org> 1305L: qemu-ppc@nongnu.org 1306S: Supported 1307F: hw/*/spapr* 1308F: include/hw/*/spapr* 1309F: hw/*/xics* 1310F: include/hw/*/xics* 1311F: pc-bios/slof.bin 1312F: docs/specs/ppc-spapr-hcalls.txt 1313F: docs/specs/ppc-spapr-hotplug.txt 1314F: tests/qtest/spapr* 1315F: tests/qtest/libqos/*spapr* 1316F: tests/qtest/rtas* 1317F: tests/qtest/libqos/rtas* 1318 1319PowerNV (Non-Virtualized) 1320M: Cédric Le Goater <clg@kaod.org> 1321M: David Gibson <david@gibson.dropbear.id.au> 1322M: Greg Kurz <groug@kaod.org> 1323L: qemu-ppc@nongnu.org 1324S: Maintained 1325F: hw/ppc/pnv* 1326F: hw/intc/pnv* 1327F: hw/intc/xics_pnv.c 1328F: hw/pci-host/pnv* 1329F: include/hw/ppc/pnv* 1330F: include/hw/pci-host/pnv* 1331F: pc-bios/skiboot.lid 1332F: tests/qtest/pnv* 1333 1334virtex_ml507 1335M: Edgar E. Iglesias <edgar.iglesias@gmail.com> 1336L: qemu-ppc@nongnu.org 1337S: Odd Fixes 1338F: hw/ppc/virtex_ml507.c 1339 1340sam460ex 1341M: BALATON Zoltan <balaton@eik.bme.hu> 1342R: David Gibson <david@gibson.dropbear.id.au> 1343R: Greg Kurz <groug@kaod.org> 1344L: qemu-ppc@nongnu.org 1345S: Maintained 1346F: hw/ppc/sam460ex.c 1347F: hw/ppc/ppc440_pcix.c 1348F: hw/display/sm501* 1349F: hw/ide/sii3112.c 1350F: hw/rtc/m41t80.c 1351F: pc-bios/canyonlands.dt[sb] 1352F: pc-bios/u-boot-sam460ex-20100605.bin 1353F: roms/u-boot-sam460ex 1354 1355RISC-V Machines 1356--------------- 1357OpenTitan 1358M: Alistair Francis <Alistair.Francis@wdc.com> 1359L: qemu-riscv@nongnu.org 1360S: Supported 1361F: hw/riscv/opentitan.c 1362F: hw/char/ibex_uart.c 1363F: hw/intc/ibex_plic.c 1364F: include/hw/riscv/opentitan.h 1365F: include/hw/char/ibex_uart.h 1366F: include/hw/intc/ibex_plic.h 1367 1368Microchip PolarFire SoC Icicle Kit 1369M: Bin Meng <bin.meng@windriver.com> 1370L: qemu-riscv@nongnu.org 1371S: Supported 1372F: hw/riscv/microchip_pfsoc.c 1373F: hw/char/mchp_pfsoc_mmuart.c 1374F: hw/misc/mchp_pfsoc_dmc.c 1375F: hw/misc/mchp_pfsoc_ioscb.c 1376F: hw/misc/mchp_pfsoc_sysreg.c 1377F: include/hw/riscv/microchip_pfsoc.h 1378F: include/hw/char/mchp_pfsoc_mmuart.h 1379F: include/hw/misc/mchp_pfsoc_dmc.h 1380F: include/hw/misc/mchp_pfsoc_ioscb.h 1381F: include/hw/misc/mchp_pfsoc_sysreg.h 1382 1383SiFive Machines 1384M: Alistair Francis <Alistair.Francis@wdc.com> 1385M: Bin Meng <bin.meng@windriver.com> 1386M: Palmer Dabbelt <palmer@dabbelt.com> 1387L: qemu-riscv@nongnu.org 1388S: Supported 1389F: hw/*/*sifive*.c 1390F: include/hw/*/*sifive*.h 1391 1392RX Machines 1393----------- 1394rx-gdbsim 1395M: Yoshinori Sato <ysato@users.sourceforge.jp> 1396S: Odd Fixes 1397F: docs/system/target-rx.rst 1398F: hw/rx/rx-gdbsim.c 1399F: tests/acceptance/machine_rx_gdbsim.py 1400 1401SH4 Machines 1402------------ 1403R2D 1404M: Yoshinori Sato <ysato@users.sourceforge.jp> 1405R: Magnus Damm <magnus.damm@gmail.com> 1406S: Odd Fixes 1407F: hw/sh4/r2d.c 1408F: hw/intc/sh_intc.c 1409F: include/hw/sh4/sh_intc.h 1410 1411Shix 1412M: Yoshinori Sato <ysato@users.sourceforge.jp> 1413R: Magnus Damm <magnus.damm@gmail.com> 1414S: Odd Fixes 1415F: hw/sh4/shix.c 1416F: hw/intc/sh_intc.c 1417F: include/hw/sh4/sh_intc.h 1418 1419SPARC Machines 1420-------------- 1421Sun4m 1422M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> 1423S: Maintained 1424F: hw/sparc/sun4m.c 1425F: hw/sparc/sun4m_iommu.c 1426F: hw/display/cg3.c 1427F: hw/display/tcx.c 1428F: hw/dma/sparc32_dma.c 1429F: hw/misc/eccmemctl.c 1430F: hw/*/slavio_*.c 1431F: include/hw/nvram/sun_nvram.h 1432F: include/hw/sparc/sparc32_dma.h 1433F: include/hw/sparc/sun4m_iommu.h 1434F: pc-bios/openbios-sparc32 1435 1436Sun4u 1437M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> 1438S: Maintained 1439F: hw/sparc64/sun4u.c 1440F: hw/sparc64/sun4u_iommu.c 1441F: include/hw/sparc/sun4u_iommu.h 1442F: hw/pci-host/sabre.c 1443F: include/hw/pci-host/sabre.h 1444F: hw/pci-bridge/simba.c 1445F: include/hw/pci-bridge/simba.h 1446F: pc-bios/openbios-sparc64 1447F: tests/acceptance/machine_sparc64_sun4u.py 1448 1449Sun4v 1450M: Artyom Tarasenko <atar4qemu@gmail.com> 1451S: Maintained 1452F: hw/sparc64/niagara.c 1453F: hw/rtc/sun4v-rtc.c 1454F: include/hw/rtc/sun4v-rtc.h 1455 1456Leon3 1457M: Fabien Chouteau <chouteau@adacore.com> 1458M: KONRAD Frederic <frederic.konrad@adacore.com> 1459S: Maintained 1460F: hw/sparc/leon3.c 1461F: hw/*/grlib* 1462F: include/hw/*/grlib* 1463F: tests/acceptance/machine_sparc_leon3.py 1464 1465S390 Machines 1466------------- 1467S390 Virtio-ccw 1468M: Cornelia Huck <cohuck@redhat.com> 1469M: Halil Pasic <pasic@linux.ibm.com> 1470M: Christian Borntraeger <borntraeger@de.ibm.com> 1471S: Supported 1472F: hw/char/sclp*.[hc] 1473F: hw/char/terminal3270.c 1474F: hw/s390x/ 1475F: include/hw/s390x/ 1476F: hw/watchdog/wdt_diag288.c 1477F: include/hw/watchdog/wdt_diag288.h 1478F: default-configs/*/s390x-softmmu.mak 1479F: tests/acceptance/machine_s390_ccw_virtio.py 1480T: git https://gitlab.com/cohuck/qemu.git s390-next 1481T: git https://github.com/borntraeger/qemu.git s390-next 1482L: qemu-s390x@nongnu.org 1483 1484S390-ccw boot 1485M: Christian Borntraeger <borntraeger@de.ibm.com> 1486M: Thomas Huth <thuth@redhat.com> 1487S: Supported 1488F: hw/s390x/ipl.* 1489F: pc-bios/s390-ccw/ 1490F: pc-bios/s390-ccw.img 1491F: docs/devel/s390-dasd-ipl.rst 1492T: git https://github.com/borntraeger/qemu.git s390-next 1493L: qemu-s390x@nongnu.org 1494 1495S390 PCI 1496M: Matthew Rosato <mjrosato@linux.ibm.com> 1497S: Supported 1498F: hw/s390x/s390-pci* 1499F: include/hw/s390x/s390-pci* 1500L: qemu-s390x@nongnu.org 1501 1502UniCore32 Machines 1503------------------ 1504PKUnity-3 SoC initramfs-with-busybox 1505M: Guan Xuetao <gxt@mprc.pku.edu.cn> 1506S: Maintained 1507F: hw/*/puv3* 1508F: hw/unicore32/ 1509 1510X86 Machines 1511------------ 1512PC 1513M: Michael S. Tsirkin <mst@redhat.com> 1514M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com> 1515S: Supported 1516F: include/hw/i386/ 1517F: hw/i386/ 1518F: hw/pci-host/i440fx.c 1519F: hw/pci-host/q35.c 1520F: hw/pci-host/pam.c 1521F: include/hw/pci-host/i440fx.h 1522F: include/hw/pci-host/q35.h 1523F: include/hw/pci-host/pam.h 1524F: hw/isa/piix3.c 1525F: hw/isa/lpc_ich9.c 1526F: hw/i2c/smbus_ich9.c 1527F: hw/acpi/piix4.c 1528F: hw/acpi/ich9.c 1529F: include/hw/acpi/ich9.h 1530F: include/hw/southbridge/piix.h 1531F: hw/misc/sga.c 1532F: hw/isa/apm.c 1533F: include/hw/isa/apm.h 1534F: tests/test-x86-cpuid.c 1535F: tests/qtest/test-x86-cpuid-compat.c 1536 1537PC Chipset 1538M: Michael S. Tsirkin <mst@redhat.com> 1539M: Paolo Bonzini <pbonzini@redhat.com> 1540S: Supported 1541F: hw/char/debugcon.c 1542F: hw/char/parallel* 1543F: hw/char/serial* 1544F: hw/dma/i8257* 1545F: hw/i2c/pm_smbus.c 1546F: hw/input/pckbd.c 1547F: hw/intc/apic* 1548F: hw/intc/ioapic* 1549F: hw/intc/i8259* 1550F: hw/isa/isa-superio.c 1551F: hw/misc/debugexit.c 1552F: hw/misc/pc-testdev.c 1553F: hw/timer/hpet* 1554F: hw/timer/i8254* 1555F: hw/rtc/mc146818rtc* 1556F: hw/watchdog/wdt_ib700.c 1557F: hw/watchdog/wdt_i6300esb.c 1558F: include/hw/display/vga.h 1559F: include/hw/char/parallel.h 1560F: include/hw/dma/i8257.h 1561F: include/hw/i2c/pm_smbus.h 1562F: include/hw/input/i8042.h 1563F: include/hw/isa/i8259_internal.h 1564F: include/hw/isa/superio.h 1565F: include/hw/timer/hpet.h 1566F: include/hw/timer/i8254* 1567F: include/hw/rtc/mc146818rtc* 1568 1569microvm 1570M: Sergio Lopez <slp@redhat.com> 1571M: Paolo Bonzini <pbonzini@redhat.com> 1572S: Maintained 1573F: docs/microvm.rst 1574F: hw/i386/microvm.c 1575F: include/hw/i386/microvm.h 1576F: pc-bios/bios-microvm.bin 1577 1578Machine core 1579M: Eduardo Habkost <ehabkost@redhat.com> 1580M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com> 1581S: Supported 1582F: cpu.c 1583F: hw/core/cpu.c 1584F: hw/core/machine-qmp-cmds.c 1585F: hw/core/machine.c 1586F: hw/core/null-machine.c 1587F: hw/core/numa.c 1588F: hw/cpu/cluster.c 1589F: qapi/machine.json 1590F: qapi/machine-target.json 1591F: include/hw/boards.h 1592F: include/hw/core/cpu.h 1593F: include/hw/cpu/cluster.h 1594F: include/sysemu/numa.h 1595T: git https://gitlab.com/ehabkost/qemu.git machine-next 1596 1597Xtensa Machines 1598--------------- 1599sim 1600M: Max Filippov <jcmvbkbc@gmail.com> 1601S: Maintained 1602F: hw/xtensa/sim.c 1603 1604virt 1605M: Max Filippov <jcmvbkbc@gmail.com> 1606S: Maintained 1607F: hw/xtensa/virt.c 1608 1609XTFPGA (LX60, LX200, ML605, KC705) 1610M: Max Filippov <jcmvbkbc@gmail.com> 1611S: Maintained 1612F: hw/xtensa/xtfpga.c 1613F: hw/net/opencores_eth.c 1614 1615Devices 1616------- 1617Xilinx CAN 1618M: Vikram Garhwal <fnu.vikram@xilinx.com> 1619M: Francisco Iglesias <francisco.iglesias@xilinx.com> 1620S: Maintained 1621F: hw/net/can/xlnx-* 1622F: include/hw/net/xlnx-* 1623F: tests/qtest/xlnx-can-test* 1624 1625EDU 1626M: Jiri Slaby <jslaby@suse.cz> 1627S: Maintained 1628F: hw/misc/edu.c 1629 1630IDE 1631M: John Snow <jsnow@redhat.com> 1632L: qemu-block@nongnu.org 1633S: Supported 1634F: include/hw/ide.h 1635F: include/hw/ide/ 1636F: hw/ide/ 1637F: hw/block/block.c 1638F: hw/block/cdrom.c 1639F: hw/block/hd-geometry.c 1640F: tests/qtest/ide-test.c 1641F: tests/qtest/ahci-test.c 1642F: tests/qtest/cdrom-test.c 1643F: tests/qtest/libqos/ahci* 1644T: git https://gitlab.com/jsnow/qemu.git ide 1645 1646IPMI 1647M: Corey Minyard <minyard@acm.org> 1648S: Maintained 1649F: include/hw/ipmi/* 1650F: hw/ipmi/* 1651F: hw/smbios/smbios_type_38.c 1652F: tests/qtest/ipmi* 1653T: git https://github.com/cminyard/qemu.git master-ipmi-rebase 1654 1655Floppy 1656M: John Snow <jsnow@redhat.com> 1657L: qemu-block@nongnu.org 1658S: Supported 1659F: hw/block/fdc.c 1660F: include/hw/block/fdc.h 1661F: tests/qtest/fdc-test.c 1662T: git https://gitlab.com/jsnow/qemu.git ide 1663 1664OMAP 1665M: Peter Maydell <peter.maydell@linaro.org> 1666L: qemu-arm@nongnu.org 1667S: Maintained 1668F: hw/*/omap* 1669F: include/hw/arm/omap.h 1670F: docs/system/arm/sx1.rst 1671 1672IPack 1673M: Alberto Garcia <berto@igalia.com> 1674S: Odd Fixes 1675F: hw/char/ipoctal232.c 1676F: hw/ipack/ 1677 1678PCI 1679M: Michael S. Tsirkin <mst@redhat.com> 1680M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com> 1681S: Supported 1682F: include/hw/pci/* 1683F: hw/misc/pci-testdev.c 1684F: hw/pci/* 1685F: hw/pci-bridge/* 1686F: qapi/pci.json 1687F: docs/pci* 1688F: docs/specs/*pci* 1689F: default-configs/pci.mak 1690 1691ACPI/SMBIOS 1692M: Michael S. Tsirkin <mst@redhat.com> 1693M: Igor Mammedov <imammedo@redhat.com> 1694S: Supported 1695F: include/hw/acpi/* 1696F: include/hw/firmware/smbios.h 1697F: hw/mem/* 1698F: hw/acpi/* 1699F: hw/smbios/* 1700F: hw/i386/acpi-build.[hc] 1701F: hw/arm/virt-acpi-build.c 1702F: qapi/acpi.json 1703F: tests/qtest/bios-tables-test* 1704F: tests/qtest/acpi-utils.[hc] 1705F: tests/data/acpi/ 1706 1707ACPI/HEST/GHES 1708R: Dongjiu Geng <gengdongjiu@huawei.com> 1709R: Xiang Zheng <zhengxiang9@huawei.com> 1710L: qemu-arm@nongnu.org 1711S: Maintained 1712F: hw/acpi/ghes.c 1713F: include/hw/acpi/ghes.h 1714F: docs/specs/acpi_hest_ghes.rst 1715 1716ppc4xx 1717M: David Gibson <david@gibson.dropbear.id.au> 1718L: qemu-ppc@nongnu.org 1719S: Odd Fixes 1720F: hw/ppc/ppc4*.c 1721F: hw/i2c/ppc4xx_i2c.c 1722F: include/hw/ppc/ppc4xx.h 1723F: include/hw/i2c/ppc4xx_i2c.h 1724F: hw/intc/ppc-uic.c 1725F: include/hw/intc/ppc-uic.h 1726 1727Character devices 1728M: Marc-André Lureau <marcandre.lureau@redhat.com> 1729R: Paolo Bonzini <pbonzini@redhat.com> 1730S: Odd Fixes 1731F: hw/char/ 1732 1733Network devices 1734M: Jason Wang <jasowang@redhat.com> 1735S: Odd Fixes 1736F: hw/net/ 1737F: include/hw/net/ 1738F: tests/qtest/virtio-net-test.c 1739F: docs/virtio-net-failover.rst 1740T: git https://github.com/jasowang/qemu.git net 1741 1742Parallel NOR Flash devices 1743M: Philippe Mathieu-Daudé <philmd@redhat.com> 1744T: git https://gitlab.com/philmd/qemu.git pflash-next 1745S: Maintained 1746F: hw/block/pflash_cfi*.c 1747F: include/hw/block/flash.h 1748 1749SCSI 1750M: Paolo Bonzini <pbonzini@redhat.com> 1751R: Fam Zheng <fam@euphon.net> 1752S: Supported 1753F: include/hw/scsi/* 1754F: hw/scsi/* 1755F: tests/qtest/virtio-scsi-test.c 1756T: git https://github.com/bonzini/qemu.git scsi-next 1757 1758SSI 1759M: Alistair Francis <alistair@alistair23.me> 1760S: Maintained 1761F: hw/ssi/* 1762F: hw/block/m25p80.c 1763F: include/hw/ssi/ssi.h 1764X: hw/ssi/xilinx_* 1765F: tests/qtest/m25p80-test.c 1766 1767Xilinx SPI 1768M: Alistair Francis <alistair@alistair23.me> 1769S: Maintained 1770F: hw/ssi/xilinx_* 1771 1772SD (Secure Card) 1773M: Philippe Mathieu-Daudé <f4bug@amsat.org> 1774M: Bin Meng <bin.meng@windriver.com> 1775L: qemu-block@nongnu.org 1776S: Odd Fixes 1777F: include/hw/sd/sd* 1778F: hw/sd/core.c 1779F: hw/sd/sd* 1780F: hw/sd/ssi-sd.c 1781F: tests/qtest/sd* 1782 1783USB 1784M: Gerd Hoffmann <kraxel@redhat.com> 1785S: Maintained 1786F: hw/usb/* 1787F: tests/qtest/usb-*-test.c 1788F: docs/usb2.txt 1789F: docs/usb-storage.txt 1790F: include/hw/usb.h 1791F: include/hw/usb/ 1792F: default-configs/usb.mak 1793 1794USB (serial adapter) 1795M: Gerd Hoffmann <kraxel@redhat.com> 1796M: Samuel Thibault <samuel.thibault@ens-lyon.org> 1797S: Maintained 1798F: hw/usb/dev-serial.c 1799 1800VFIO 1801M: Alex Williamson <alex.williamson@redhat.com> 1802S: Supported 1803F: hw/vfio/* 1804F: include/hw/vfio/ 1805 1806vfio-ccw 1807M: Cornelia Huck <cohuck@redhat.com> 1808M: Eric Farman <farman@linux.ibm.com> 1809S: Supported 1810F: hw/vfio/ccw.c 1811F: hw/s390x/s390-ccw.c 1812F: include/hw/s390x/s390-ccw.h 1813F: include/hw/s390x/vfio-ccw.h 1814T: git https://gitlab.com/cohuck/qemu.git s390-next 1815L: qemu-s390x@nongnu.org 1816 1817vfio-ap 1818M: Christian Borntraeger <borntraeger@de.ibm.com> 1819M: Tony Krowiak <akrowiak@linux.ibm.com> 1820M: Halil Pasic <pasic@linux.ibm.com> 1821M: Pierre Morel <pmorel@linux.ibm.com> 1822S: Supported 1823F: hw/s390x/ap-device.c 1824F: hw/s390x/ap-bridge.c 1825F: include/hw/s390x/ap-device.h 1826F: include/hw/s390x/ap-bridge.h 1827F: hw/vfio/ap.c 1828F: docs/system/s390x/vfio-ap.rst 1829L: qemu-s390x@nongnu.org 1830 1831vhost 1832M: Michael S. Tsirkin <mst@redhat.com> 1833S: Supported 1834F: hw/*/*vhost* 1835F: docs/interop/vhost-user.json 1836F: docs/interop/vhost-user.rst 1837F: contrib/vhost-user-*/ 1838F: backends/vhost-user.c 1839F: include/sysemu/vhost-user-backend.h 1840 1841virtio 1842M: Michael S. Tsirkin <mst@redhat.com> 1843S: Supported 1844F: hw/*/virtio* 1845F: hw/virtio/Makefile.objs 1846F: hw/virtio/trace-events 1847F: net/vhost-user.c 1848F: include/hw/virtio/ 1849 1850virtio-balloon 1851M: Michael S. Tsirkin <mst@redhat.com> 1852M: David Hildenbrand <david@redhat.com> 1853S: Maintained 1854F: hw/virtio/virtio-balloon*.c 1855F: include/hw/virtio/virtio-balloon.h 1856F: softmmu/balloon.c 1857F: include/sysemu/balloon.h 1858 1859virtio-9p 1860M: Greg Kurz <groug@kaod.org> 1861M: Christian Schoenebeck <qemu_oss@crudebyte.com> 1862S: Odd Fixes 1863F: hw/9pfs/ 1864X: hw/9pfs/xen-9p* 1865F: fsdev/ 1866F: docs/interop/virtfs-proxy-helper.rst 1867F: tests/qtest/virtio-9p-test.c 1868T: git https://gitlab.com/gkurz/qemu.git 9p-next 1869T: git https://github.com/cschoenebeck/qemu.git 9p.next 1870 1871virtio-blk 1872M: Stefan Hajnoczi <stefanha@redhat.com> 1873L: qemu-block@nongnu.org 1874S: Supported 1875F: hw/block/virtio-blk.c 1876F: hw/block/dataplane/* 1877F: tests/qtest/virtio-blk-test.c 1878T: git https://github.com/stefanha/qemu.git block 1879 1880virtio-ccw 1881M: Cornelia Huck <cohuck@redhat.com> 1882M: Halil Pasic <pasic@linux.ibm.com> 1883S: Supported 1884F: hw/s390x/virtio-ccw*.[hc] 1885F: hw/s390x/vhost-vsock-ccw.c 1886T: git https://gitlab.com/cohuck/qemu.git s390-next 1887T: git https://github.com/borntraeger/qemu.git s390-next 1888L: qemu-s390x@nongnu.org 1889 1890virtiofs 1891M: Dr. David Alan Gilbert <dgilbert@redhat.com> 1892M: Stefan Hajnoczi <stefanha@redhat.com> 1893S: Supported 1894F: tools/virtiofsd/* 1895F: hw/virtio/vhost-user-fs* 1896F: include/hw/virtio/vhost-user-fs.h 1897F: docs/interop/virtiofsd.rst 1898 1899virtio-input 1900M: Gerd Hoffmann <kraxel@redhat.com> 1901S: Maintained 1902F: hw/input/vhost-user-input.c 1903F: hw/input/virtio-input*.c 1904F: include/hw/virtio/virtio-input.h 1905F: contrib/vhost-user-input/* 1906 1907virtio-iommu 1908M: Eric Auger <eric.auger@redhat.com> 1909S: Maintained 1910F: hw/virtio/virtio-iommu*.c 1911F: include/hw/virtio/virtio-iommu.h 1912 1913virtio-serial 1914M: Laurent Vivier <lvivier@redhat.com> 1915R: Amit Shah <amit@kernel.org> 1916S: Supported 1917F: hw/char/virtio-serial-bus.c 1918F: hw/char/virtio-console.c 1919F: include/hw/virtio/virtio-serial.h 1920F: tests/qtest/virtio-serial-test.c 1921 1922virtio-rng 1923M: Laurent Vivier <lvivier@redhat.com> 1924R: Amit Shah <amit@kernel.org> 1925S: Supported 1926F: hw/virtio/virtio-rng.c 1927F: include/hw/virtio/virtio-rng.h 1928F: include/sysemu/rng*.h 1929F: backends/rng*.c 1930F: tests/qtest/virtio-rng-test.c 1931 1932virtio-crypto 1933M: Gonglei <arei.gonglei@huawei.com> 1934S: Supported 1935F: hw/virtio/virtio-crypto.c 1936F: hw/virtio/virtio-crypto-pci.c 1937F: include/hw/virtio/virtio-crypto.h 1938 1939virtio-mem 1940M: David Hildenbrand <david@redhat.com> 1941S: Supported 1942W: https://virtio-mem.gitlab.io/ 1943F: hw/virtio/virtio-mem.c 1944F: hw/virtio/virtio-mem-pci.h 1945F: hw/virtio/virtio-mem-pci.c 1946F: include/hw/virtio/virtio-mem.h 1947 1948nvme 1949M: Keith Busch <kbusch@kernel.org> 1950M: Klaus Jensen <its@irrelevant.dk> 1951L: qemu-block@nongnu.org 1952S: Supported 1953F: hw/block/nvme* 1954F: include/block/nvme.h 1955F: tests/qtest/nvme-test.c 1956F: docs/specs/nvme.txt 1957T: git git://git.infradead.org/qemu-nvme.git nvme-next 1958 1959megasas 1960M: Hannes Reinecke <hare@suse.com> 1961L: qemu-block@nongnu.org 1962S: Supported 1963F: hw/scsi/megasas.c 1964F: hw/scsi/mfi.h 1965F: tests/qtest/megasas-test.c 1966 1967Network packet abstractions 1968M: Dmitry Fleytman <dmitry.fleytman@gmail.com> 1969S: Maintained 1970F: include/net/eth.h 1971F: net/eth.c 1972F: hw/net/net_rx_pkt* 1973F: hw/net/net_tx_pkt* 1974 1975Vmware 1976M: Dmitry Fleytman <dmitry.fleytman@gmail.com> 1977S: Maintained 1978F: hw/net/vmxnet* 1979F: hw/scsi/vmw_pvscsi* 1980F: tests/qtest/vmxnet3-test.c 1981 1982Rocker 1983M: Jiri Pirko <jiri@resnulli.us> 1984S: Maintained 1985F: hw/net/rocker/ 1986F: qapi/rocker.json 1987F: tests/rocker/ 1988F: docs/specs/rocker.txt 1989 1990NVDIMM 1991M: Xiao Guangrong <xiaoguangrong.eric@gmail.com> 1992S: Maintained 1993F: hw/acpi/nvdimm.c 1994F: hw/mem/nvdimm.c 1995F: include/hw/mem/nvdimm.h 1996F: docs/nvdimm.txt 1997 1998e1000x 1999M: Dmitry Fleytman <dmitry.fleytman@gmail.com> 2000S: Maintained 2001F: hw/net/e1000x* 2002 2003e1000e 2004M: Dmitry Fleytman <dmitry.fleytman@gmail.com> 2005S: Maintained 2006F: hw/net/e1000e* 2007 2008eepro100 2009M: Stefan Weil <sw@weilnetz.de> 2010S: Maintained 2011F: hw/net/eepro100.c 2012 2013tulip 2014M: Sven Schnelle <svens@stackframe.org> 2015S: Maintained 2016F: hw/net/tulip.c 2017F: hw/net/tulip.h 2018 2019Generic Loader 2020M: Alistair Francis <alistair@alistair23.me> 2021S: Maintained 2022F: hw/core/generic-loader.c 2023F: include/hw/core/generic-loader.h 2024F: docs/generic-loader.txt 2025 2026Intel Hexadecimal Object File Loader 2027M: Su Hang <suhang16@mails.ucas.ac.cn> 2028S: Maintained 2029F: tests/qtest/hexloader-test.c 2030F: tests/data/hex-loader/test.hex 2031 2032CHRP NVRAM 2033M: Thomas Huth <thuth@redhat.com> 2034S: Maintained 2035F: hw/nvram/chrp_nvram.c 2036F: include/hw/nvram/chrp_nvram.h 2037F: tests/qtest/prom-env-test.c 2038 2039VM Generation ID 2040S: Orphan 2041F: hw/acpi/vmgenid.c 2042F: include/hw/acpi/vmgenid.h 2043F: docs/specs/vmgenid.txt 2044F: tests/qtest/vmgenid-test.c 2045F: stubs/vmgenid.c 2046 2047LED 2048M: Philippe Mathieu-Daudé <f4bug@amsat.org> 2049S: Maintained 2050F: include/hw/misc/led.h 2051F: hw/misc/led.c 2052 2053Unimplemented device 2054M: Peter Maydell <peter.maydell@linaro.org> 2055R: Philippe Mathieu-Daudé <f4bug@amsat.org> 2056S: Maintained 2057F: include/hw/misc/unimp.h 2058F: hw/misc/unimp.c 2059 2060Empty slot 2061M: Artyom Tarasenko <atar4qemu@gmail.com> 2062R: Philippe Mathieu-Daudé <f4bug@amsat.org> 2063S: Maintained 2064F: include/hw/misc/empty_slot.h 2065F: hw/misc/empty_slot.c 2066 2067Standard VGA 2068M: Gerd Hoffmann <kraxel@redhat.com> 2069S: Maintained 2070F: hw/display/vga* 2071F: hw/display/bochs-display.c 2072F: include/hw/display/vga.h 2073F: include/hw/display/bochs-vbe.h 2074 2075ramfb 2076M: Gerd Hoffmann <kraxel@redhat.com> 2077S: Maintained 2078F: hw/display/ramfb*.c 2079F: include/hw/display/ramfb.h 2080 2081virtio-gpu 2082M: Gerd Hoffmann <kraxel@redhat.com> 2083S: Maintained 2084F: hw/display/virtio-gpu* 2085F: hw/display/virtio-vga.* 2086F: include/hw/virtio/virtio-gpu.h 2087 2088vhost-user-blk 2089M: Raphael Norwitz <raphael.norwitz@nutanix.com> 2090S: Maintained 2091F: contrib/vhost-user-blk/ 2092F: contrib/vhost-user-scsi/ 2093F: hw/block/vhost-user-blk.c 2094F: hw/scsi/vhost-user-scsi.c 2095F: hw/virtio/vhost-user-blk-pci.c 2096F: hw/virtio/vhost-user-scsi-pci.c 2097F: include/hw/virtio/vhost-user-blk.h 2098F: include/hw/virtio/vhost-user-scsi.h 2099 2100vhost-user-gpu 2101M: Marc-André Lureau <marcandre.lureau@redhat.com> 2102M: Gerd Hoffmann <kraxel@redhat.com> 2103S: Maintained 2104F: docs/interop/vhost-user-gpu.rst 2105F: contrib/vhost-user-gpu 2106F: hw/display/vhost-user-* 2107 2108Cirrus VGA 2109M: Gerd Hoffmann <kraxel@redhat.com> 2110S: Odd Fixes 2111W: https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/ 2112F: hw/display/cirrus* 2113 2114EDID Generator 2115M: Gerd Hoffmann <kraxel@redhat.com> 2116S: Maintained 2117F: hw/display/edid* 2118F: include/hw/display/edid.h 2119F: qemu-edid.c 2120 2121PIIX4 South Bridge (i82371AB) 2122M: Hervé Poussineau <hpoussin@reactos.org> 2123M: Philippe Mathieu-Daudé <f4bug@amsat.org> 2124S: Maintained 2125F: hw/isa/piix4.c 2126F: include/hw/southbridge/piix.h 2127 2128Firmware configuration (fw_cfg) 2129M: Philippe Mathieu-Daudé <philmd@redhat.com> 2130R: Laszlo Ersek <lersek@redhat.com> 2131R: Gerd Hoffmann <kraxel@redhat.com> 2132S: Supported 2133F: docs/specs/fw_cfg.txt 2134F: hw/nvram/fw_cfg*.c 2135F: stubs/fw_cfg.c 2136F: include/hw/nvram/fw_cfg.h 2137F: include/standard-headers/linux/qemu_fw_cfg.h 2138F: tests/qtest/libqos/fw_cfg.c 2139F: tests/qtest/fw_cfg-test.c 2140T: git https://github.com/philmd/qemu.git fw_cfg-next 2141 2142XIVE 2143M: Cédric Le Goater <clg@kaod.org> 2144R: David Gibson <david@gibson.dropbear.id.au> 2145R: Greg Kurz <groug@kaod.org> 2146L: qemu-ppc@nongnu.org 2147S: Supported 2148F: hw/*/*xive* 2149F: include/hw/*/*xive* 2150F: docs/*/*xive* 2151 2152Renesas peripherals 2153M: Yoshinori Sato <ysato@users.sourceforge.jp> 2154R: Magnus Damm <magnus.damm@gmail.com> 2155S: Odd Fixes 2156F: hw/char/renesas_sci.c 2157F: hw/char/sh_serial.c 2158F: hw/timer/renesas_*.c 2159F: hw/timer/sh_timer.c 2160F: include/hw/char/renesas_sci.h 2161F: include/hw/sh4/sh.h 2162F: include/hw/timer/renesas_*.h 2163 2164Renesas RX peripherals 2165M: Yoshinori Sato <ysato@users.sourceforge.jp> 2166S: Odd Fixes 2167F: hw/intc/rx_icu.c 2168F: hw/rx/ 2169F: include/hw/intc/rx_icu.h 2170F: include/hw/rx/ 2171 2172CAN bus subsystem and hardware 2173M: Pavel Pisa <pisa@cmp.felk.cvut.cz> 2174M: Vikram Garhwal <fnu.vikram@xilinx.com> 2175S: Maintained 2176W: https://canbus.pages.fel.cvut.cz/ 2177F: net/can/* 2178F: hw/net/can/* 2179F: include/net/can_*.h 2180 2181Subsystems 2182---------- 2183Audio 2184M: Gerd Hoffmann <kraxel@redhat.com> 2185S: Maintained 2186F: audio/ 2187F: hw/audio/ 2188F: include/hw/audio/ 2189F: qapi/audio.json 2190F: tests/qtest/ac97-test.c 2191F: tests/qtest/es1370-test.c 2192F: tests/qtest/intel-hda-test.c 2193 2194Block layer core 2195M: Kevin Wolf <kwolf@redhat.com> 2196M: Max Reitz <mreitz@redhat.com> 2197L: qemu-block@nongnu.org 2198S: Supported 2199F: block* 2200F: block/ 2201F: hw/block/ 2202F: include/block/ 2203F: qemu-img* 2204F: docs/interop/qemu-img.rst 2205F: qemu-io* 2206F: tests/qemu-iotests/ 2207F: util/qemu-progress.c 2208F: qobject/block-qdict.c 2209F: tests/check-block-qdict.c 2210T: git https://repo.or.cz/qemu/kevin.git block 2211 2212Storage daemon 2213M: Kevin Wolf <kwolf@redhat.com> 2214L: qemu-block@nongnu.org 2215S: Supported 2216F: storage-daemon/ 2217F: docs/interop/qemu-storage-daemon-qmp-ref.rst 2218F: docs/tools/qemu-storage-daemon.rst 2219T: git https://repo.or.cz/qemu/kevin.git block 2220 2221Block I/O path 2222M: Stefan Hajnoczi <stefanha@redhat.com> 2223M: Fam Zheng <fam@euphon.net> 2224L: qemu-block@nongnu.org 2225S: Supported 2226F: util/async.c 2227F: util/aio-*.c 2228F: util/aio-*.h 2229F: util/fdmon-*.c 2230F: block/io.c 2231F: migration/block* 2232F: include/block/aio.h 2233F: include/block/aio-wait.h 2234F: scripts/qemugdb/aio.py 2235F: tests/test-fdmon-epoll.c 2236T: git https://github.com/stefanha/qemu.git block 2237 2238Block SCSI subsystem 2239M: Paolo Bonzini <pbonzini@redhat.com> 2240R: Fam Zheng <fam@euphon.net> 2241L: qemu-block@nongnu.org 2242S: Supported 2243F: include/scsi/* 2244F: scsi/* 2245 2246Block Jobs 2247M: John Snow <jsnow@redhat.com> 2248M: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> 2249L: qemu-block@nongnu.org 2250S: Supported 2251F: blockjob.c 2252F: include/block/blockjob.h 2253F: job.c 2254F: job-qmp.c 2255F: include/qemu/job.h 2256F: block/backup.c 2257F: block/commit.c 2258F: block/stream.c 2259F: block/mirror.c 2260F: qapi/job.json 2261F: block/block-copy.c 2262F: include/block/block-copy.c 2263F: block/backup-top.h 2264F: block/backup-top.c 2265F: include/block/aio_task.h 2266F: block/aio_task.c 2267F: util/qemu-co-shared-resource.c 2268F: include/qemu/co-shared-resource.h 2269T: git https://gitlab.com/jsnow/qemu.git jobs 2270T: git https://src.openvz.org/scm/~vsementsov/qemu.git jobs 2271 2272Block QAPI, monitor, command line 2273M: Markus Armbruster <armbru@redhat.com> 2274S: Supported 2275F: blockdev.c 2276F: blockdev-hmp-cmds.c 2277F: block/qapi.c 2278F: qapi/block*.json 2279F: qapi/transaction.json 2280T: git https://repo.or.cz/qemu/armbru.git block-next 2281 2282Dirty Bitmaps 2283M: Eric Blake <eblake@redhat.com> 2284M: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> 2285R: John Snow <jsnow@redhat.com> 2286L: qemu-block@nongnu.org 2287S: Supported 2288F: include/qemu/hbitmap.h 2289F: include/block/dirty-bitmap.h 2290F: block/monitor/bitmap-qmp-cmds.c 2291F: block/dirty-bitmap.c 2292F: block/qcow2-bitmap.c 2293F: migration/block-dirty-bitmap.c 2294F: util/hbitmap.c 2295F: tests/test-hbitmap.c 2296F: docs/interop/bitmaps.rst 2297T: git https://repo.or.cz/qemu/ericb.git bitmaps 2298 2299Character device backends 2300M: Marc-André Lureau <marcandre.lureau@redhat.com> 2301R: Paolo Bonzini <pbonzini@redhat.com> 2302S: Maintained 2303F: chardev/ 2304F: include/chardev/ 2305F: qapi/char.json 2306 2307Character Devices (Braille) 2308M: Samuel Thibault <samuel.thibault@ens-lyon.org> 2309S: Maintained 2310F: chardev/baum.c 2311 2312Command line option argument parsing 2313M: Markus Armbruster <armbru@redhat.com> 2314S: Supported 2315F: include/qemu/option.h 2316F: tests/test-keyval.c 2317F: tests/test-qemu-opts.c 2318F: util/keyval.c 2319F: util/qemu-option.c 2320 2321Coverity model 2322M: Markus Armbruster <armbru@redhat.com> 2323S: Supported 2324F: scripts/coverity-model.c 2325 2326Coverity Scan integration 2327M: Peter Maydell <peter.maydell@linaro.org> 2328S: Maintained 2329F: scripts/coverity-scan/ 2330 2331Device Tree 2332M: Alistair Francis <alistair.francis@wdc.com> 2333R: David Gibson <david@gibson.dropbear.id.au> 2334S: Maintained 2335F: softmmu/device_tree.c 2336F: include/sysemu/device_tree.h 2337 2338Dump 2339S: Supported 2340M: Marc-André Lureau <marcandre.lureau@redhat.com> 2341F: dump/ 2342F: hw/misc/vmcoreinfo.c 2343F: include/hw/misc/vmcoreinfo.h 2344F: include/qemu/win_dump_defs 2345F: include/sysemu/dump-arch.h 2346F: include/sysemu/dump.h 2347F: qapi/dump.json 2348F: scripts/dump-guest-memory.py 2349F: stubs/dump.c 2350 2351Error reporting 2352M: Markus Armbruster <armbru@redhat.com> 2353S: Supported 2354F: include/qapi/error.h 2355F: include/qemu/error-report.h 2356F: qapi/error.json 2357F: util/error.c 2358F: util/qemu-error.c 2359F: scripts/coccinelle/err-bad-newline.cocci 2360F: scripts/coccinelle/error-use-after-free.cocci 2361F: scripts/coccinelle/error_propagate_null.cocci 2362F: scripts/coccinelle/remove_local_err.cocci 2363F: scripts/coccinelle/use-error_fatal.cocci 2364F: scripts/coccinelle/errp-guard.cocci 2365 2366GDB stub 2367M: Alex Bennée <alex.bennee@linaro.org> 2368R: Philippe Mathieu-Daudé <philmd@redhat.com> 2369S: Maintained 2370F: gdbstub* 2371F: include/exec/gdbstub.h 2372F: gdb-xml/ 2373F: tests/tcg/multiarch/gdbstub/ 2374 2375Memory API 2376M: Paolo Bonzini <pbonzini@redhat.com> 2377S: Supported 2378F: include/exec/ioport.h 2379F: include/exec/memop.h 2380F: include/exec/memory.h 2381F: include/exec/ram_addr.h 2382F: include/exec/ramblock.h 2383F: softmmu/dma-helpers.c 2384F: softmmu/ioport.c 2385F: softmmu/memory.c 2386F: softmmu/physmem.c 2387F: include/exec/memory-internal.h 2388F: scripts/coccinelle/memory-region-housekeeping.cocci 2389 2390SPICE 2391M: Gerd Hoffmann <kraxel@redhat.com> 2392S: Supported 2393F: include/ui/qemu-spice.h 2394F: include/ui/spice-display.h 2395F: ui/spice-*.c 2396F: audio/spiceaudio.c 2397F: hw/display/qxl* 2398F: qapi/ui.json 2399F: docs/spice-port-fqdn.txt 2400 2401Graphics 2402M: Gerd Hoffmann <kraxel@redhat.com> 2403S: Odd Fixes 2404F: ui/ 2405F: include/ui/ 2406F: qapi/ui.json 2407F: util/drm.c 2408 2409Cocoa graphics 2410M: Peter Maydell <peter.maydell@linaro.org> 2411S: Odd Fixes 2412F: ui/cocoa.m 2413 2414Main loop 2415M: Paolo Bonzini <pbonzini@redhat.com> 2416S: Maintained 2417F: include/qemu/main-loop.h 2418F: include/sysemu/runstate.h 2419F: include/sysemu/runstate-action.h 2420F: util/main-loop.c 2421F: util/qemu-timer.c 2422F: softmmu/vl.c 2423F: softmmu/main.c 2424F: softmmu/cpus.c 2425F: softmmu/cpu-throttle.c 2426F: softmmu/cpu-timers.c 2427F: softmmu/icount.c 2428F: softmmu/runstate-action.c 2429F: qapi/run-state.json 2430 2431Read, Copy, Update (RCU) 2432M: Paolo Bonzini <pbonzini@redhat.com> 2433S: Maintained 2434F: include/qemu/rcu*.h 2435F: tests/rcutorture.c 2436F: tests/test-rcu-*.c 2437F: util/rcu.c 2438 2439Human Monitor (HMP) 2440M: Dr. David Alan Gilbert <dgilbert@redhat.com> 2441S: Maintained 2442F: monitor/monitor-internal.h 2443F: monitor/misc.c 2444F: monitor/monitor.c 2445F: monitor/hmp* 2446F: hmp.h 2447F: hmp-commands*.hx 2448F: include/monitor/hmp-target.h 2449F: tests/qtest/test-hmp.c 2450F: include/qemu/qemu-print.h 2451F: util/qemu-print.c 2452 2453Network device backends 2454M: Jason Wang <jasowang@redhat.com> 2455S: Maintained 2456F: net/ 2457F: include/net/ 2458F: qemu-bridge-helper.c 2459T: git https://github.com/jasowang/qemu.git net 2460F: qapi/net.json 2461 2462Netmap network backend 2463M: Luigi Rizzo <rizzo@iet.unipi.it> 2464M: Giuseppe Lettieri <g.lettieri@iet.unipi.it> 2465M: Vincenzo Maffione <v.maffione@gmail.com> 2466W: http://info.iet.unipi.it/~luigi/netmap/ 2467S: Maintained 2468F: net/netmap.c 2469 2470Host Memory Backends 2471M: Eduardo Habkost <ehabkost@redhat.com> 2472M: Igor Mammedov <imammedo@redhat.com> 2473S: Maintained 2474F: backends/hostmem*.c 2475F: include/sysemu/hostmem.h 2476T: git https://gitlab.com/ehabkost/qemu.git machine-next 2477 2478Cryptodev Backends 2479M: Gonglei <arei.gonglei@huawei.com> 2480S: Maintained 2481F: include/sysemu/cryptodev*.h 2482F: backends/cryptodev*.c 2483 2484Python library 2485M: John Snow <jsnow@redhat.com> 2486M: Cleber Rosa <crosa@redhat.com> 2487R: Eduardo Habkost <ehabkost@redhat.com> 2488S: Maintained 2489F: python/ 2490T: git https://gitlab.com/jsnow/qemu.git python 2491 2492Python scripts 2493M: Eduardo Habkost <ehabkost@redhat.com> 2494M: Cleber Rosa <crosa@redhat.com> 2495S: Odd Fixes 2496F: scripts/*.py 2497F: tests/*.py 2498 2499Benchmark util 2500M: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> 2501S: Maintained 2502F: scripts/simplebench/ 2503 2504QAPI 2505M: Markus Armbruster <armbru@redhat.com> 2506M: Michael Roth <michael.roth@amd.com> 2507S: Supported 2508F: qapi/ 2509X: qapi/*.json 2510F: include/qapi/ 2511X: include/qapi/qmp/ 2512F: include/qapi/qmp/dispatch.h 2513F: tests/qapi-schema/ 2514F: tests/test-*-visitor.c 2515F: tests/test-qapi-*.c 2516F: tests/test-qmp-*.c 2517F: tests/test-visitor-serialization.c 2518F: scripts/qapi-gen.py 2519F: scripts/qapi/* 2520F: docs/sphinx/qapidoc.py 2521F: docs/devel/qapi* 2522T: git https://repo.or.cz/qemu/armbru.git qapi-next 2523 2524QAPI Schema 2525M: Eric Blake <eblake@redhat.com> 2526M: Markus Armbruster <armbru@redhat.com> 2527S: Supported 2528F: qapi/*.json 2529T: git https://repo.or.cz/qemu/armbru.git qapi-next 2530 2531QObject 2532M: Markus Armbruster <armbru@redhat.com> 2533S: Supported 2534F: qobject/ 2535F: include/qapi/qmp/ 2536X: include/qapi/qmp/dispatch.h 2537F: scripts/coccinelle/qobject.cocci 2538F: tests/check-qdict.c 2539F: tests/check-qjson.c 2540F: tests/check-qlist.c 2541F: tests/check-qlit.c 2542F: tests/check-qnull.c 2543F: tests/check-qnum.c 2544F: tests/check-qobject.c 2545F: tests/check-qstring.c 2546F: tests/data/qobject/qdict.txt 2547T: git https://repo.or.cz/qemu/armbru.git qapi-next 2548 2549QEMU Guest Agent 2550M: Michael Roth <michael.roth@amd.com> 2551S: Maintained 2552F: qga/ 2553F: docs/interop/qemu-ga.rst 2554F: docs/interop/qemu-ga-ref.rst 2555F: scripts/qemu-guest-agent/ 2556F: tests/test-qga.c 2557T: git https://github.com/mdroth/qemu.git qga 2558 2559QOM 2560M: Paolo Bonzini <pbonzini@redhat.com> 2561R: Daniel P. Berrange <berrange@redhat.com> 2562R: Eduardo Habkost <ehabkost@redhat.com> 2563S: Supported 2564F: docs/qdev-device-use.txt 2565F: hw/core/qdev* 2566F: hw/core/bus.c 2567F: hw/core/sysbus.c 2568F: include/hw/qdev* 2569F: include/monitor/qdev.h 2570F: include/qom/ 2571F: qapi/qom.json 2572F: qapi/qdev.json 2573F: scripts/coccinelle/qom-parent-type.cocci 2574F: softmmu/qdev-monitor.c 2575F: stubs/qdev.c 2576F: qom/ 2577F: tests/check-qom-interface.c 2578F: tests/check-qom-proplist.c 2579F: tests/test-qdev-global-props.c 2580 2581QOM boilerplate conversion script 2582M: Eduardo Habkost <ehabkost@redhat.com> 2583S: Maintained 2584F: scripts/codeconverter/ 2585 2586QMP 2587M: Markus Armbruster <armbru@redhat.com> 2588S: Supported 2589F: monitor/monitor-internal.h 2590F: monitor/qmp* 2591F: monitor/misc.c 2592F: monitor/monitor.c 2593F: qapi/control.json 2594F: qapi/error.json 2595F: qapi/introspect.json 2596F: docs/devel/*qmp-* 2597F: docs/interop/*qmp-* 2598F: scripts/qmp/ 2599F: tests/qtest/qmp-test.c 2600F: tests/qtest/qmp-cmd-test.c 2601T: git https://repo.or.cz/qemu/armbru.git qapi-next 2602 2603qtest 2604M: Thomas Huth <thuth@redhat.com> 2605M: Laurent Vivier <lvivier@redhat.com> 2606R: Paolo Bonzini <pbonzini@redhat.com> 2607S: Maintained 2608F: softmmu/qtest.c 2609F: accel/qtest/ 2610F: tests/qtest/ 2611X: tests/qtest/bios-tables-test* 2612 2613Device Fuzzing 2614M: Alexander Bulekov <alxndr@bu.edu> 2615R: Paolo Bonzini <pbonzini@redhat.com> 2616R: Bandan Das <bsd@redhat.com> 2617R: Stefan Hajnoczi <stefanha@redhat.com> 2618R: Thomas Huth <thuth@redhat.com> 2619S: Maintained 2620F: tests/qtest/fuzz/ 2621F: scripts/oss-fuzz/ 2622F: docs/devel/fuzzing.rst 2623 2624Register API 2625M: Alistair Francis <alistair@alistair23.me> 2626S: Maintained 2627F: hw/core/register.c 2628F: include/hw/register.h 2629F: include/hw/registerfields.h 2630 2631SLIRP 2632M: Samuel Thibault <samuel.thibault@ens-lyon.org> 2633S: Maintained 2634F: slirp/ 2635F: net/slirp.c 2636F: include/net/slirp.h 2637T: git https://people.debian.org/~sthibault/qemu.git slirp 2638 2639Streams 2640M: Edgar E. Iglesias <edgar.iglesias@gmail.com> 2641S: Maintained 2642F: hw/core/stream.c 2643F: include/hw/stream.h 2644 2645Stubs 2646M: Paolo Bonzini <pbonzini@redhat.com> 2647S: Maintained 2648F: stubs/ 2649 2650Tracing 2651M: Stefan Hajnoczi <stefanha@redhat.com> 2652S: Maintained 2653F: trace/ 2654F: trace-events 2655F: docs/qemu-option-trace.rst.inc 2656F: qapi/trace.json 2657F: scripts/tracetool.py 2658F: scripts/tracetool/ 2659F: scripts/qemu-trace-stap* 2660F: docs/interop/qemu-trace-stap.rst 2661F: docs/devel/tracing.txt 2662T: git https://github.com/stefanha/qemu.git tracing 2663 2664TPM 2665M: Stefan Berger <stefanb@linux.ibm.com> 2666S: Maintained 2667F: tpm.c 2668F: stubs/tpm.c 2669F: hw/tpm/* 2670F: include/hw/acpi/tpm.h 2671F: include/sysemu/tpm* 2672F: qapi/tpm.json 2673F: backends/tpm/ 2674F: tests/qtest/*tpm* 2675T: git https://github.com/stefanberger/qemu-tpm.git tpm-next 2676 2677Checkpatch 2678S: Odd Fixes 2679F: scripts/checkpatch.pl 2680 2681Migration 2682M: Juan Quintela <quintela@redhat.com> 2683M: Dr. David Alan Gilbert <dgilbert@redhat.com> 2684S: Maintained 2685F: hw/core/vmstate-if.c 2686F: include/hw/vmstate-if.h 2687F: include/migration/ 2688F: migration/ 2689F: scripts/vmstate-static-checker.py 2690F: tests/vmstate-static-checker-data/ 2691F: tests/qtest/migration-test.c 2692F: docs/devel/migration.rst 2693F: qapi/migration.json 2694 2695D-Bus 2696M: Marc-André Lureau <marcandre.lureau@redhat.com> 2697S: Maintained 2698F: backends/dbus-vmstate.c 2699F: tests/dbus-vmstate* 2700F: util/dbus.c 2701F: include/qemu/dbus.h 2702F: docs/interop/dbus.rst 2703F: docs/interop/dbus-vmstate.rst 2704 2705Seccomp 2706M: Eduardo Otubo <otubo@redhat.com> 2707S: Supported 2708F: softmmu/qemu-seccomp.c 2709F: include/sysemu/seccomp.h 2710 2711Cryptography 2712M: Daniel P. Berrange <berrange@redhat.com> 2713S: Maintained 2714F: crypto/ 2715F: include/crypto/ 2716F: qapi/crypto.json 2717F: tests/test-crypto-* 2718F: tests/benchmark-crypto-* 2719F: tests/crypto-tls-* 2720F: tests/pkix_asn1_tab.c 2721F: qemu.sasl 2722 2723Coroutines 2724M: Stefan Hajnoczi <stefanha@redhat.com> 2725M: Kevin Wolf <kwolf@redhat.com> 2726S: Maintained 2727F: util/*coroutine* 2728F: include/qemu/coroutine* 2729F: tests/test-coroutine.c 2730 2731Buffers 2732M: Daniel P. Berrange <berrange@redhat.com> 2733S: Odd Fixes 2734F: util/buffer.c 2735F: include/qemu/buffer.h 2736 2737I/O Channels 2738M: Daniel P. Berrange <berrange@redhat.com> 2739S: Maintained 2740F: io/ 2741F: include/io/ 2742F: tests/test-io-* 2743 2744User authorization 2745M: Daniel P. Berrange <berrange@redhat.com> 2746S: Maintained 2747F: authz/ 2748F: qapi/authz.json 2749F: include/authz/ 2750F: tests/test-authz-* 2751 2752Sockets 2753M: Daniel P. Berrange <berrange@redhat.com> 2754M: Gerd Hoffmann <kraxel@redhat.com> 2755S: Maintained 2756F: include/qemu/sockets.h 2757F: util/qemu-sockets.c 2758F: qapi/sockets.json 2759 2760File monitor 2761M: Daniel P. Berrange <berrange@redhat.com> 2762S: Odd Fixes 2763F: util/filemonitor*.c 2764F: include/qemu/filemonitor.h 2765F: tests/test-util-filemonitor.c 2766 2767Throttling infrastructure 2768M: Alberto Garcia <berto@igalia.com> 2769S: Supported 2770F: block/throttle-groups.c 2771F: include/block/throttle-groups.h 2772F: include/qemu/throttle*.h 2773F: util/throttle.c 2774F: docs/throttle.txt 2775F: tests/test-throttle.c 2776L: qemu-block@nongnu.org 2777 2778UUID 2779M: Fam Zheng <fam@euphon.net> 2780S: Supported 2781F: util/uuid.c 2782F: include/qemu/uuid.h 2783F: tests/test-uuid.c 2784 2785Yank feature 2786M: Lukas Straub <lukasstraub2@web.de> 2787S: Odd fixes 2788F: util/yank.c 2789F: stubs/yank.c 2790F: include/qemu/yank.h 2791F: qapi/yank.json 2792 2793COLO Framework 2794M: zhanghailiang <zhang.zhanghailiang@huawei.com> 2795S: Maintained 2796F: migration/colo* 2797F: include/migration/colo.h 2798F: include/migration/failover.h 2799F: docs/COLO-FT.txt 2800 2801COLO Proxy 2802M: Zhang Chen <chen.zhang@intel.com> 2803M: Li Zhijian <lizhijian@cn.fujitsu.com> 2804S: Supported 2805F: docs/colo-proxy.txt 2806F: net/colo* 2807F: net/filter-rewriter.c 2808F: net/filter-mirror.c 2809 2810Record/replay 2811M: Pavel Dovgalyuk <pavel.dovgaluk@ispras.ru> 2812R: Paolo Bonzini <pbonzini@redhat.com> 2813W: https://wiki.qemu.org/Features/record-replay 2814S: Supported 2815F: replay/* 2816F: block/blkreplay.c 2817F: net/filter-replay.c 2818F: include/sysemu/replay.h 2819F: docs/replay.txt 2820F: stubs/replay.c 2821F: tests/acceptance/replay_kernel.py 2822F: tests/acceptance/reverse_debugging.py 2823F: qapi/replay.json 2824 2825IOVA Tree 2826M: Peter Xu <peterx@redhat.com> 2827S: Maintained 2828F: include/qemu/iova-tree.h 2829F: util/iova-tree.c 2830 2831elf2dmp 2832M: Viktor Prutyanov <viktor.prutyanov@phystech.edu> 2833S: Maintained 2834F: contrib/elf2dmp/ 2835 2836I2C and SMBus 2837M: Corey Minyard <cminyard@mvista.com> 2838S: Maintained 2839F: hw/i2c/core.c 2840F: hw/i2c/smbus_slave.c 2841F: hw/i2c/smbus_master.c 2842F: hw/i2c/smbus_eeprom.c 2843F: include/hw/i2c/i2c.h 2844F: include/hw/i2c/smbus_master.h 2845F: include/hw/i2c/smbus_slave.h 2846F: include/hw/i2c/smbus_eeprom.h 2847 2848Firmware schema specifications 2849M: Laszlo Ersek <lersek@redhat.com> 2850M: Philippe Mathieu-Daudé <philmd@redhat.com> 2851R: Daniel P. Berrange <berrange@redhat.com> 2852R: Kashyap Chamarthy <kchamart@redhat.com> 2853S: Maintained 2854F: docs/interop/firmware.json 2855 2856EDK2 Firmware 2857M: Laszlo Ersek <lersek@redhat.com> 2858M: Philippe Mathieu-Daudé <philmd@redhat.com> 2859S: Supported 2860F: pc-bios/descriptors/??-edk2-*.json 2861F: pc-bios/edk2-* 2862F: roms/Makefile.edk2 2863F: roms/edk2 2864F: roms/edk2-* 2865F: tests/data/uefi-boot-images/ 2866F: tests/uefi-test-tools/ 2867F: .gitlab-ci.d/edk2.yml 2868F: .gitlab-ci.d/edk2/ 2869 2870VT-d Emulation 2871M: Michael S. Tsirkin <mst@redhat.com> 2872M: Peter Xu <peterx@redhat.com> 2873R: Jason Wang <jasowang@redhat.com> 2874S: Supported 2875F: hw/i386/intel_iommu.c 2876F: hw/i386/intel_iommu_internal.h 2877F: include/hw/i386/intel_iommu.h 2878 2879OpenSBI Firmware 2880M: Bin Meng <bmeng.cn@gmail.com> 2881S: Supported 2882F: pc-bios/opensbi-* 2883F: .gitlab-ci.d/opensbi.yml 2884F: .gitlab-ci.d/opensbi/ 2885 2886Clock framework 2887M: Luc Michel <luc@lmichel.fr> 2888R: Damien Hedde <damien.hedde@greensocs.com> 2889S: Maintained 2890F: include/hw/clock.h 2891F: include/hw/qdev-clock.h 2892F: hw/core/clock.c 2893F: hw/core/clock-vmstate.c 2894F: hw/core/qdev-clock.c 2895F: docs/devel/clocks.rst 2896 2897Usermode Emulation 2898------------------ 2899Overall usermode emulation 2900M: Riku Voipio <riku.voipio@iki.fi> 2901S: Maintained 2902F: thunk.c 2903F: accel/tcg/user-exec*.c 2904 2905BSD user 2906S: Orphan 2907F: bsd-user/ 2908F: default-configs/targets/*-bsd-user.mak 2909 2910Linux user 2911M: Laurent Vivier <laurent@vivier.eu> 2912S: Maintained 2913F: linux-user/ 2914F: default-configs/targets/*linux-user.mak 2915F: scripts/qemu-binfmt-conf.sh 2916F: scripts/update-syscalltbl.sh 2917F: scripts/update-mips-syscall-args.sh 2918F: scripts/gensyscalls.sh 2919 2920Tiny Code Generator (TCG) 2921------------------------- 2922Common TCG code 2923M: Richard Henderson <richard.henderson@linaro.org> 2924S: Maintained 2925F: tcg/ 2926F: include/tcg/ 2927 2928TCG Plugins 2929M: Alex Bennée <alex.bennee@linaro.org> 2930S: Maintained 2931F: docs/devel/tcg-plugins.rst 2932F: plugins/ 2933F: tests/plugin/ 2934F: tests/acceptance/tcg_plugins.py 2935F: contrib/plugins/ 2936 2937AArch64 TCG target 2938M: Richard Henderson <richard.henderson@linaro.org> 2939S: Maintained 2940L: qemu-arm@nongnu.org 2941F: tcg/aarch64/ 2942F: disas/arm-a64.cc 2943F: disas/libvixl/ 2944 2945ARM TCG target 2946M: Andrzej Zaborowski <balrogg@gmail.com> 2947S: Maintained 2948L: qemu-arm@nongnu.org 2949F: tcg/arm/ 2950F: disas/arm.c 2951 2952i386 TCG target 2953M: Richard Henderson <richard.henderson@linaro.org> 2954S: Maintained 2955F: tcg/i386/ 2956F: disas/i386.c 2957 2958MIPS TCG target 2959M: Philippe Mathieu-Daudé <f4bug@amsat.org> 2960R: Aurelien Jarno <aurelien@aurel32.net> 2961R: Huacai Chen <chenhuacai@kernel.org> 2962R: Jiaxun Yang <jiaxun.yang@flygoat.com> 2963R: Aleksandar Rikalo <aleksandar.rikalo@syrmia.com> 2964S: Odd Fixes 2965F: tcg/mips/ 2966 2967PPC TCG target 2968M: Richard Henderson <richard.henderson@linaro.org> 2969S: Odd Fixes 2970F: tcg/ppc/ 2971F: disas/ppc.c 2972 2973RISC-V TCG target 2974M: Palmer Dabbelt <palmer@dabbelt.com> 2975M: Alistair Francis <Alistair.Francis@wdc.com> 2976L: qemu-riscv@nongnu.org 2977S: Maintained 2978F: tcg/riscv/ 2979F: disas/riscv.c 2980 2981S390 TCG target 2982M: Richard Henderson <richard.henderson@linaro.org> 2983S: Maintained 2984F: tcg/s390/ 2985F: disas/s390.c 2986L: qemu-s390x@nongnu.org 2987 2988SPARC TCG target 2989S: Odd Fixes 2990F: tcg/sparc/ 2991F: disas/sparc.c 2992 2993TCI TCG target 2994M: Stefan Weil <sw@weilnetz.de> 2995S: Maintained 2996F: tcg/tci/ 2997F: tcg/tci.c 2998F: disas/tci.c 2999 3000Block drivers 3001------------- 3002VMDK 3003M: Fam Zheng <fam@euphon.net> 3004L: qemu-block@nongnu.org 3005S: Supported 3006F: block/vmdk.c 3007 3008RBD 3009M: Jason Dillaman <dillaman@redhat.com> 3010L: qemu-block@nongnu.org 3011S: Supported 3012F: block/rbd.c 3013 3014Sheepdog 3015M: Liu Yuan <namei.unix@gmail.com> 3016L: qemu-block@nongnu.org 3017S: Odd Fixes 3018F: block/sheepdog.c 3019 3020VHDX 3021M: Jeff Cody <codyprime@gmail.com> 3022L: qemu-block@nongnu.org 3023S: Supported 3024F: block/vhdx* 3025 3026VDI 3027M: Stefan Weil <sw@weilnetz.de> 3028L: qemu-block@nongnu.org 3029S: Maintained 3030F: block/vdi.c 3031 3032iSCSI 3033M: Ronnie Sahlberg <ronniesahlberg@gmail.com> 3034M: Paolo Bonzini <pbonzini@redhat.com> 3035M: Peter Lieven <pl@kamp.de> 3036L: qemu-block@nongnu.org 3037S: Odd Fixes 3038F: block/iscsi.c 3039F: block/iscsi-opts.c 3040 3041Network Block Device (NBD) 3042M: Eric Blake <eblake@redhat.com> 3043L: qemu-block@nongnu.org 3044S: Maintained 3045F: block/nbd* 3046F: nbd/ 3047F: include/block/nbd* 3048F: qemu-nbd.* 3049F: blockdev-nbd.c 3050F: docs/interop/nbd.txt 3051F: docs/interop/qemu-nbd.rst 3052T: git https://repo.or.cz/qemu/ericb.git nbd 3053 3054NFS 3055M: Peter Lieven <pl@kamp.de> 3056L: qemu-block@nongnu.org 3057S: Maintained 3058F: block/nfs.c 3059 3060SSH 3061M: Richard W.M. Jones <rjones@redhat.com> 3062L: qemu-block@nongnu.org 3063S: Supported 3064F: block/ssh.c 3065 3066CURL 3067L: qemu-block@nongnu.org 3068S: Odd Fixes 3069F: block/curl.c 3070 3071GLUSTER 3072L: qemu-block@nongnu.org 3073L: integration@gluster.org 3074S: Odd Fixes 3075F: block/gluster.c 3076 3077Null Block Driver 3078M: Fam Zheng <fam@euphon.net> 3079L: qemu-block@nongnu.org 3080S: Supported 3081F: block/null.c 3082 3083NVMe Block Driver 3084M: Stefan Hajnoczi <stefanha@redhat.com> 3085R: Fam Zheng <fam@euphon.net> 3086L: qemu-block@nongnu.org 3087S: Supported 3088F: block/nvme* 3089F: include/block/nvme.h 3090T: git https://github.com/stefanha/qemu.git block 3091 3092Bootdevice 3093M: Gonglei <arei.gonglei@huawei.com> 3094S: Maintained 3095F: softmmu/bootdevice.c 3096 3097Quorum 3098M: Alberto Garcia <berto@igalia.com> 3099S: Supported 3100F: block/quorum.c 3101L: qemu-block@nongnu.org 3102 3103blklogwrites 3104M: Ari Sundholm <ari@tuxera.com> 3105L: qemu-block@nongnu.org 3106S: Supported 3107F: block/blklogwrites.c 3108 3109blkverify 3110M: Stefan Hajnoczi <stefanha@redhat.com> 3111L: qemu-block@nongnu.org 3112S: Supported 3113F: block/blkverify.c 3114 3115bochs 3116M: Stefan Hajnoczi <stefanha@redhat.com> 3117L: qemu-block@nongnu.org 3118S: Supported 3119F: block/bochs.c 3120 3121cloop 3122M: Stefan Hajnoczi <stefanha@redhat.com> 3123L: qemu-block@nongnu.org 3124S: Supported 3125F: block/cloop.c 3126 3127dmg 3128M: Stefan Hajnoczi <stefanha@redhat.com> 3129L: qemu-block@nongnu.org 3130S: Supported 3131F: block/dmg.c 3132 3133parallels 3134M: Stefan Hajnoczi <stefanha@redhat.com> 3135M: Denis V. Lunev <den@openvz.org> 3136L: qemu-block@nongnu.org 3137S: Supported 3138F: block/parallels.c 3139F: docs/interop/parallels.txt 3140 3141qed 3142M: Stefan Hajnoczi <stefanha@redhat.com> 3143L: qemu-block@nongnu.org 3144S: Supported 3145F: block/qed.c 3146 3147raw 3148M: Kevin Wolf <kwolf@redhat.com> 3149L: qemu-block@nongnu.org 3150S: Supported 3151F: block/linux-aio.c 3152F: include/block/raw-aio.h 3153F: block/raw-format.c 3154F: block/file-posix.c 3155F: block/file-win32.c 3156F: block/win32-aio.c 3157 3158Linux io_uring 3159M: Aarushi Mehta <mehta.aaru20@gmail.com> 3160M: Julia Suvorova <jusual@redhat.com> 3161M: Stefan Hajnoczi <stefanha@redhat.com> 3162L: qemu-block@nongnu.org 3163S: Maintained 3164F: block/io_uring.c 3165F: stubs/io_uring.c 3166 3167qcow2 3168M: Kevin Wolf <kwolf@redhat.com> 3169M: Max Reitz <mreitz@redhat.com> 3170L: qemu-block@nongnu.org 3171S: Supported 3172F: block/qcow2* 3173F: docs/interop/qcow2.txt 3174 3175qcow 3176M: Kevin Wolf <kwolf@redhat.com> 3177L: qemu-block@nongnu.org 3178S: Supported 3179F: block/qcow.c 3180 3181blkdebug 3182M: Kevin Wolf <kwolf@redhat.com> 3183M: Max Reitz <mreitz@redhat.com> 3184L: qemu-block@nongnu.org 3185S: Supported 3186F: block/blkdebug.c 3187 3188vpc 3189M: Kevin Wolf <kwolf@redhat.com> 3190L: qemu-block@nongnu.org 3191S: Supported 3192F: block/vpc.c 3193 3194vvfat 3195M: Kevin Wolf <kwolf@redhat.com> 3196L: qemu-block@nongnu.org 3197S: Odd Fixes 3198F: block/vvfat.c 3199 3200Image format fuzzer 3201M: Stefan Hajnoczi <stefanha@redhat.com> 3202L: qemu-block@nongnu.org 3203S: Supported 3204F: tests/image-fuzzer/ 3205 3206Vhost-user block device backend server 3207M: Coiby Xu <Coiby.Xu@gmail.com> 3208S: Maintained 3209F: block/export/vhost-user-blk-server.c 3210F: block/export/vhost-user-blk-server.h 3211F: include/qemu/vhost-user-server.h 3212F: tests/qtest/libqos/vhost-user-blk.c 3213F: util/vhost-user-server.c 3214 3215FUSE block device exports 3216M: Max Reitz <mreitz@redhat.com> 3217L: qemu-block@nongnu.org 3218S: Supported 3219F: block/export/fuse.c 3220 3221Replication 3222M: Wen Congyang <wencongyang2@huawei.com> 3223M: Xie Changlong <xiechanglong.d@gmail.com> 3224S: Supported 3225F: replication* 3226F: block/replication.c 3227F: tests/test-replication.c 3228F: docs/block-replication.txt 3229 3230PVRDMA 3231M: Yuval Shaia <yuval.shaia.ml@gmail.com> 3232M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com> 3233S: Maintained 3234F: hw/rdma/* 3235F: hw/rdma/vmw/* 3236F: docs/pvrdma.txt 3237F: contrib/rdmacm-mux/* 3238F: qapi/rdma.json 3239 3240Semihosting 3241M: Alex Bennée <alex.bennee@linaro.org> 3242S: Maintained 3243F: hw/semihosting/ 3244F: include/hw/semihosting/ 3245 3246Multi-process QEMU 3247M: Elena Ufimtseva <elena.ufimtseva@oracle.com> 3248M: Jagannathan Raman <jag.raman@oracle.com> 3249M: John G Johnson <john.g.johnson@oracle.com> 3250S: Maintained 3251F: docs/devel/multi-process.rst 3252F: docs/system/multi-process.rst 3253F: hw/pci-host/remote.c 3254F: include/hw/pci-host/remote.h 3255F: hw/remote/machine.c 3256F: include/hw/remote/machine.h 3257F: hw/remote/mpqemu-link.c 3258F: include/hw/remote/mpqemu-link.h 3259F: hw/remote/message.c 3260F: hw/remote/remote-obj.c 3261F: include/hw/remote/memory.h 3262F: hw/remote/memory.c 3263F: hw/remote/proxy.c 3264F: include/hw/remote/proxy.h 3265F: hw/remote/proxy-memory-listener.c 3266F: include/hw/remote/proxy-memory-listener.h 3267F: hw/remote/iohub.c 3268F: include/hw/remote/iohub.h 3269 3270Build and test automation 3271------------------------- 3272Build and test automation 3273M: Alex Bennée <alex.bennee@linaro.org> 3274M: Fam Zheng <fam@euphon.net> 3275R: Philippe Mathieu-Daudé <philmd@redhat.com> 3276S: Maintained 3277F: .github/lockdown.yml 3278F: .travis.yml 3279F: scripts/ci/ 3280F: tests/docker/ 3281F: tests/vm/ 3282F: scripts/archive-source.sh 3283W: https://travis-ci.org/qemu/qemu 3284W: http://patchew.org/QEMU/ 3285 3286FreeBSD Hosted Continuous Integration 3287M: Ed Maste <emaste@freebsd.org> 3288M: Li-Wen Hsu <lwhsu@freebsd.org> 3289S: Maintained 3290F: .cirrus.yml 3291W: https://cirrus-ci.com/github/qemu/qemu 3292 3293Windows Hosted Continuous Integration 3294M: Yonggang Luo <luoyonggang@gmail.com> 3295S: Maintained 3296F: .cirrus.yml 3297W: https://cirrus-ci.com/github/qemu/qemu 3298 3299GitLab Continuous Integration 3300M: Thomas Huth <thuth@redhat.com> 3301M: Philippe Mathieu-Daudé <philmd@redhat.com> 3302M: Alex Bennée <alex.bennee@linaro.org> 3303R: Wainer dos Santos Moschetta <wainersm@redhat.com> 3304S: Maintained 3305F: .gitlab-ci.yml 3306F: .gitlab-ci.d/crossbuilds.yml 3307F: .gitlab-ci.d/*py 3308F: scripts/ci/gitlab-pipeline-status 3309 3310Guest Test Compilation Support 3311M: Alex Bennée <alex.bennee@linaro.org> 3312R: Philippe Mathieu-Daudé <f4bug@amsat.org> 3313S: Maintained 3314F: tests/tcg/Makefile 3315F: tests/tcg/Makefile.include 3316 3317Acceptance (Integration) Testing with the Avocado framework 3318W: https://trello.com/b/6Qi1pxVn/avocado-qemu 3319R: Cleber Rosa <crosa@redhat.com> 3320R: Philippe Mathieu-Daudé <philmd@redhat.com> 3321R: Wainer dos Santos Moschetta <wainersm@redhat.com> 3322S: Odd Fixes 3323F: tests/acceptance/ 3324 3325Documentation 3326------------- 3327Build system architecture 3328M: Daniel P. Berrange <berrange@redhat.com> 3329S: Odd Fixes 3330F: docs/devel/build-system.txt 3331 3332GIT Data Mining Config 3333M: Alex Bennée <alex.bennee@linaro.org> 3334S: Odd Fixes 3335F: gitdm.config 3336F: contrib/gitdm/* 3337 3338Incompatible changes 3339R: libvir-list@redhat.com 3340F: docs/system/deprecated.rst 3341 3342Build System 3343------------ 3344GIT submodules 3345M: Daniel P. Berrange <berrange@redhat.com> 3346S: Odd Fixes 3347F: scripts/git-submodule.sh 3348 3349UI translations 3350S: Orphan 3351F: po/*.po 3352 3353Sphinx documentation configuration and build machinery 3354M: Peter Maydell <peter.maydell@linaro.org> 3355S: Maintained 3356F: docs/conf.py 3357F: docs/*/conf.py 3358F: docs/sphinx/ 3359 3360Miscellaneous 3361------------- 3362Performance Tools and Tests 3363M: Ahmed Karaman <ahmedkhaledkaraman@gmail.com> 3364S: Maintained 3365F: scripts/performance/ 3366