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