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 (keep in sync with docs/devel/maintainers.rst): 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 67Project policy and developer guides 68R: Alex Bennée <alex.bennee@linaro.org> 69R: Daniel P. Berrangé <berrange@redhat.com> 70R: Thomas Huth <thuth@redhat.com> 71R: Markus Armbruster <armbru@redhat.com> 72R: Philippe Mathieu-Daudé <philmd@linaro.org> 73W: https://www.qemu.org/docs/master/devel/index.html 74S: Odd Fixes 75F: docs/devel/style.rst 76F: docs/devel/code-of-conduct.rst 77F: docs/devel/conflict-resolution.rst 78F: docs/devel/submitting-a-patch.rst 79F: docs/devel/submitting-a-pull-request.rst 80 81Responsible Disclosure, Reporting Security Issues 82------------------------------------------------- 83W: https://wiki.qemu.org/SecurityProcess 84M: Michael S. Tsirkin <mst@redhat.com> 85L: secalert@redhat.com 86 87Trivial patches 88--------------- 89Trivial patches 90M: Michael Tokarev <mjt@tls.msk.ru> 91M: Laurent Vivier <laurent@vivier.eu> 92S: Maintained 93L: qemu-trivial@nongnu.org 94K: ^Subject:.*(?i)trivial 95F: docs/devel/trivial-patches.rst 96T: git git://git.corpit.ru/qemu.git trivial-patches 97T: git https://github.com/vivier/qemu.git trivial-patches 98 99Architecture support 100-------------------- 101S390 general architecture support 102M: Thomas Huth <thuth@redhat.com> 103S: Supported 104F: configs/devices/s390x-softmmu/default.mak 105F: gdb-xml/s390*.xml 106F: hw/char/sclp*.[hc] 107F: hw/char/terminal3270.c 108F: hw/intc/s390_flic.c 109F: hw/intc/s390_flic_kvm.c 110F: hw/s390x/ 111F: hw/vfio/ap.c 112F: hw/vfio/ccw.c 113F: hw/watchdog/wdt_diag288.c 114F: include/hw/s390x/ 115F: include/hw/watchdog/wdt_diag288.h 116F: pc-bios/s390-ccw/ 117F: pc-bios/s390-ccw.img 118F: target/s390x/ 119F: docs/system/target-s390x.rst 120F: docs/system/s390x/ 121F: tests/migration/s390x/ 122K: ^Subject:.*(?i)s390x? 123L: qemu-s390x@nongnu.org 124 125MIPS general architecture support 126M: Philippe Mathieu-Daudé <philmd@linaro.org> 127R: Jiaxun Yang <jiaxun.yang@flygoat.com> 128S: Odd Fixes 129K: ^Subject:.*(?i)mips 130F: docs/system/target-mips.rst 131F: configs/targets/mips* 132 133X86 general architecture support 134M: Paolo Bonzini <pbonzini@redhat.com> 135R: Zhao Liu <zhao1.liu@intel.com> 136S: Maintained 137F: configs/devices/i386-softmmu/default.mak 138F: configs/targets/i386-softmmu.mak 139F: configs/targets/x86_64-softmmu.mak 140F: docs/system/target-i386* 141F: target/i386/*.[ch] 142F: target/i386/Kconfig 143F: target/i386/meson.build 144F: tools/i386/ 145 146Guest CPU cores (TCG) 147--------------------- 148Overall TCG CPUs 149M: Richard Henderson <richard.henderson@linaro.org> 150R: Paolo Bonzini <pbonzini@redhat.com> 151S: Maintained 152F: system/cpus.c 153F: system/watchpoint.c 154F: cpu-common.c 155F: cpu-target.c 156F: page-vary-target.c 157F: page-vary-common.c 158F: accel/tcg/ 159F: accel/stubs/tcg-stub.c 160F: util/cacheinfo.c 161F: util/cacheflush.c 162F: scripts/decodetree.py 163F: docs/devel/decodetree.rst 164F: docs/devel/tcg* 165F: include/exec/cpu*.h 166F: include/exec/exec-all.h 167F: include/exec/tb-flush.h 168F: include/exec/target_long.h 169F: include/exec/helper*.h 170F: include/exec/helper*.h.inc 171F: include/exec/helper-info.c.inc 172F: include/exec/page-protection.h 173F: include/sysemu/cpus.h 174F: include/sysemu/tcg.h 175F: include/hw/core/tcg-cpu-ops.h 176F: host/include/*/host/cpuinfo.h 177F: util/cpuinfo-*.c 178F: include/tcg/ 179F: tests/decode/ 180 181FPU emulation 182M: Aurelien Jarno <aurelien@aurel32.net> 183M: Peter Maydell <peter.maydell@linaro.org> 184M: Alex Bennée <alex.bennee@linaro.org> 185S: Maintained 186F: fpu/ 187F: include/fpu/ 188F: tests/fp/ 189 190Alpha TCG CPUs 191M: Richard Henderson <richard.henderson@linaro.org> 192S: Maintained 193F: target/alpha/ 194F: tests/tcg/alpha/ 195F: disas/alpha.c 196 197ARM TCG CPUs 198M: Peter Maydell <peter.maydell@linaro.org> 199L: qemu-arm@nongnu.org 200S: Maintained 201F: target/arm/ 202F: target/arm/tcg/ 203F: tests/tcg/arm/ 204F: tests/tcg/aarch64/ 205F: tests/qtest/arm-cpu-features.c 206F: hw/arm/ 207F: hw/cpu/a*mpcore.c 208F: include/hw/cpu/a*mpcore.h 209F: docs/system/target-arm.rst 210F: docs/system/arm/cpu-features.rst 211 212ARM SMMU 213M: Eric Auger <eric.auger@redhat.com> 214L: qemu-arm@nongnu.org 215S: Maintained 216F: hw/arm/smmu* 217F: include/hw/arm/smmu* 218F: tests/avocado/smmu.py 219 220AVR TCG CPUs 221M: Michael Rolnik <mrolnik@gmail.com> 222S: Maintained 223F: docs/system/target-avr.rst 224F: gdb-xml/avr-cpu.xml 225F: target/avr/ 226F: tests/functional/test_avr_mega2560.py 227 228Hexagon TCG CPUs 229M: Brian Cain <bcain@quicinc.com> 230S: Supported 231F: target/hexagon/ 232X: target/hexagon/idef-parser/ 233X: target/hexagon/gen_idef_parser_funcs.py 234F: linux-user/hexagon/ 235F: tests/tcg/hexagon/ 236F: disas/hexagon.c 237F: configs/targets/hexagon-linux-user/default.mak 238F: docker/dockerfiles/debian-hexagon-cross.docker 239F: gdb-xml/hexagon*.xml 240T: git https://github.com/quic/qemu.git hex-next 241 242Hexagon idef-parser 243M: Alessandro Di Federico <ale@rev.ng> 244M: Anton Johansson <anjo@rev.ng> 245S: Supported 246F: target/hexagon/idef-parser/ 247F: target/hexagon/gen_idef_parser_funcs.py 248 249HPPA (PA-RISC) TCG CPUs 250M: Richard Henderson <richard.henderson@linaro.org> 251S: Maintained 252F: target/hppa/ 253F: disas/hppa.c 254F: tests/tcg/hppa/ 255 256LoongArch TCG CPUs 257M: Song Gao <gaosong@loongson.cn> 258S: Maintained 259F: target/loongarch/ 260F: tests/tcg/loongarch64/ 261F: tests/functional/test_loongarch64_virt.py 262 263M68K TCG CPUs 264M: Laurent Vivier <laurent@vivier.eu> 265S: Maintained 266F: target/m68k/ 267F: disas/m68k.c 268F: tests/tcg/m68k/ 269 270MicroBlaze TCG CPUs 271M: Edgar E. Iglesias <edgar.iglesias@gmail.com> 272S: Maintained 273F: target/microblaze/ 274F: hw/microblaze/ 275F: disas/microblaze.c 276F: tests/docker/dockerfiles/debian-microblaze-cross.d/build-toolchain.sh 277 278MIPS TCG CPUs 279M: Philippe Mathieu-Daudé <philmd@linaro.org> 280R: Aurelien Jarno <aurelien@aurel32.net> 281R: Jiaxun Yang <jiaxun.yang@flygoat.com> 282R: Aleksandar Rikalo <arikalo@gmail.com> 283S: Odd Fixes 284F: target/mips/ 285F: disas/*mips.c 286F: docs/system/cpu-models-mips.rst.inc 287F: tests/tcg/mips/ 288 289OpenRISC TCG CPUs 290M: Stafford Horne <shorne@gmail.com> 291S: Odd Fixes 292F: docs/system/openrisc/cpu-features.rst 293F: target/openrisc/ 294F: hw/openrisc/ 295F: include/hw/openrisc/ 296F: tests/tcg/openrisc/ 297 298PowerPC TCG CPUs 299M: Nicholas Piggin <npiggin@gmail.com> 300M: Daniel Henrique Barboza <danielhb413@gmail.com> 301L: qemu-ppc@nongnu.org 302S: Odd Fixes 303F: target/ppc/ 304F: hw/ppc/ppc.c 305F: hw/ppc/ppc_booke.c 306F: include/hw/ppc/ppc.h 307F: hw/ppc/meson.build 308F: hw/ppc/trace* 309F: configs/devices/ppc* 310F: docs/system/ppc/embedded.rst 311F: docs/system/target-ppc.rst 312F: tests/tcg/ppc*/* 313F: tests/functional/test_ppc_74xx.py 314 315RISC-V TCG CPUs 316M: Palmer Dabbelt <palmer@dabbelt.com> 317M: Alistair Francis <alistair.francis@wdc.com> 318M: Bin Meng <bmeng.cn@gmail.com> 319R: Weiwei Li <liwei1518@gmail.com> 320R: Daniel Henrique Barboza <dbarboza@ventanamicro.com> 321R: Liu Zhiwei <zhiwei_liu@linux.alibaba.com> 322L: qemu-riscv@nongnu.org 323S: Supported 324F: configs/targets/riscv* 325F: docs/system/target-riscv.rst 326F: target/riscv/ 327F: hw/riscv/ 328F: hw/intc/riscv* 329F: include/hw/riscv/ 330F: linux-user/host/riscv32/ 331F: linux-user/host/riscv64/ 332F: tests/tcg/riscv64/ 333 334RISC-V XThead* extensions 335M: Christoph Muellner <christoph.muellner@vrull.eu> 336M: LIU Zhiwei <zhiwei_liu@linux.alibaba.com> 337L: qemu-riscv@nongnu.org 338S: Supported 339F: target/riscv/insn_trans/trans_xthead.c.inc 340F: target/riscv/xthead*.decode 341F: target/riscv/th_* 342F: disas/riscv-xthead* 343 344RISC-V XVentanaCondOps extension 345M: Philipp Tomsich <philipp.tomsich@vrull.eu> 346L: qemu-riscv@nongnu.org 347S: Maintained 348F: target/riscv/XVentanaCondOps.decode 349F: target/riscv/insn_trans/trans_xventanacondops.c.inc 350F: disas/riscv-xventana* 351 352RENESAS RX CPUs 353R: Yoshinori Sato <ysato@users.sourceforge.jp> 354S: Orphan 355F: target/rx/ 356 357S390 TCG CPUs 358M: Richard Henderson <richard.henderson@linaro.org> 359M: David Hildenbrand <david@redhat.com> 360R: Ilya Leoshkevich <iii@linux.ibm.com> 361S: Maintained 362F: target/s390x/ 363F: target/s390x/tcg 364F: hw/s390x/ 365F: tests/tcg/s390x/ 366L: qemu-s390x@nongnu.org 367 368SH4 TCG CPUs 369R: Yoshinori Sato <ysato@users.sourceforge.jp> 370S: Orphan 371F: target/sh4/ 372F: hw/sh4/ 373F: disas/sh4.c 374F: include/hw/sh4/ 375F: tests/tcg/sh4/ 376 377SPARC TCG CPUs 378M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> 379M: Artyom Tarasenko <atar4qemu@gmail.com> 380S: Maintained 381F: target/sparc/ 382F: hw/sparc/ 383F: hw/sparc64/ 384F: include/hw/sparc/sparc64.h 385F: disas/sparc.c 386F: tests/tcg/sparc64/ 387 388X86 TCG CPUs 389M: Paolo Bonzini <pbonzini@redhat.com> 390M: Richard Henderson <richard.henderson@linaro.org> 391M: Eduardo Habkost <eduardo@habkost.net> 392S: Maintained 393F: target/i386/tcg/ 394F: tests/tcg/i386/ 395F: tests/tcg/x86_64/ 396F: hw/i386/ 397F: docs/system/i386/cpu.rst 398F: docs/system/cpu-models-x86* 399T: git https://gitlab.com/ehabkost/qemu.git x86-next 400 401Xtensa TCG CPUs 402M: Max Filippov <jcmvbkbc@gmail.com> 403W: http://wiki.osll.ru/doku.php?id=etc:users:jcmvbkbc:qemu-target-xtensa 404S: Maintained 405F: target/xtensa/ 406F: hw/xtensa/ 407F: tests/tcg/xtensa/ 408F: tests/tcg/xtensaeb/ 409F: disas/xtensa.c 410F: include/hw/xtensa/xtensa-isa.h 411F: configs/devices/xtensa*/default.mak 412 413TriCore TCG CPUs 414M: Bastian Koppelmann <kbastian@mail.uni-paderborn.de> 415S: Maintained 416F: target/tricore/ 417F: hw/tricore/ 418F: include/hw/tricore/ 419F: tests/tcg/tricore/ 420 421Multiarch Linux User Tests 422M: Alex Bennée <alex.bennee@linaro.org> 423S: Maintained 424F: tests/tcg/multiarch/ 425 426Guest CPU Cores (KVM) 427--------------------- 428Overall KVM CPUs 429M: Paolo Bonzini <pbonzini@redhat.com> 430L: kvm@vger.kernel.org 431S: Supported 432F: */*/kvm* 433F: accel/kvm/ 434F: accel/stubs/kvm-stub.c 435F: include/hw/kvm/ 436F: include/sysemu/kvm*.h 437F: scripts/kvm/kvm_flightrecorder 438 439ARM KVM CPUs 440M: Peter Maydell <peter.maydell@linaro.org> 441L: qemu-arm@nongnu.org 442S: Maintained 443F: target/arm/kvm.c 444 445MIPS KVM CPUs 446M: Huacai Chen <chenhuacai@kernel.org> 447S: Odd Fixes 448F: target/mips/kvm* 449F: target/mips/sysemu/ 450 451PPC KVM CPUs 452M: Nicholas Piggin <npiggin@gmail.com> 453R: Daniel Henrique Barboza <danielhb413@gmail.com> 454S: Odd Fixes 455F: target/ppc/kvm.c 456 457S390 KVM CPUs 458M: Halil Pasic <pasic@linux.ibm.com> 459M: Christian Borntraeger <borntraeger@linux.ibm.com> 460S: Supported 461F: target/s390x/kvm/ 462F: target/s390x/machine.c 463F: target/s390x/sigp.c 464F: gdb-xml/s390*.xml 465T: git https://github.com/borntraeger/qemu.git s390-next 466L: qemu-s390x@nongnu.org 467 468X86 KVM CPUs 469M: Paolo Bonzini <pbonzini@redhat.com> 470M: Marcelo Tosatti <mtosatti@redhat.com> 471L: kvm@vger.kernel.org 472S: Supported 473F: docs/system/i386/amd-memory-encryption.rst 474F: docs/system/i386/sgx.rst 475F: target/i386/kvm/ 476F: target/i386/sev* 477F: scripts/kvm/vmxcap 478 479Xen emulation on X86 KVM CPUs 480M: David Woodhouse <dwmw2@infradead.org> 481M: Paul Durrant <paul@xen.org> 482S: Supported 483F: include/sysemu/kvm_xen.h 484F: target/i386/kvm/xen* 485F: hw/i386/kvm/xen* 486F: tests/avocado/kvm_xen_guest.py 487 488Guest CPU Cores (other accelerators) 489------------------------------------ 490Overall 491M: Richard Henderson <richard.henderson@linaro.org> 492R: Paolo Bonzini <pbonzini@redhat.com> 493S: Maintained 494F: include/qemu/accel.h 495F: include/sysemu/accel-*.h 496F: include/hw/core/accel-cpu.h 497F: accel/accel-*.c 498F: accel/Makefile.objs 499F: accel/stubs/Makefile.objs 500 501Apple Silicon HVF CPUs 502M: Alexander Graf <agraf@csgraf.de> 503S: Maintained 504F: target/arm/hvf/ 505 506X86 HVF CPUs 507M: Cameron Esfahani <dirty@apple.com> 508M: Roman Bolshakov <rbolshakov@ddn.com> 509W: https://wiki.qemu.org/Features/HVF 510S: Maintained 511F: target/i386/hvf/ 512 513HVF 514M: Cameron Esfahani <dirty@apple.com> 515M: Roman Bolshakov <rbolshakov@ddn.com> 516W: https://wiki.qemu.org/Features/HVF 517S: Maintained 518F: accel/hvf/ 519F: include/sysemu/hvf.h 520F: include/sysemu/hvf_int.h 521 522WHPX CPUs 523M: Sunil Muthuswamy <sunilmut@microsoft.com> 524S: Supported 525F: target/i386/whpx/ 526F: include/sysemu/whpx.h 527 528Guest CPU Cores (Xen) 529--------------------- 530X86 Xen CPUs 531M: Stefano Stabellini <sstabellini@kernel.org> 532M: Anthony PERARD <anthony@xenproject.org> 533M: Paul Durrant <paul@xen.org> 534M: Edgar E. Iglesias <edgar.iglesias@gmail.com> 535L: xen-devel@lists.xenproject.org 536S: Supported 537F: */xen* 538F: accel/xen/* 539F: hw/9pfs/xen-9p* 540F: hw/char/xen_console.c 541F: hw/display/xenfb.c 542F: hw/net/xen_nic.c 543F: hw/usb/xen-usb.c 544F: hw/block/xen* 545F: hw/block/dataplane/xen* 546F: hw/xen/ 547F: hw/xenpv/ 548F: hw/i386/xen/ 549F: hw/pci-host/xen_igd_pt.c 550F: include/hw/block/dataplane/xen* 551F: include/hw/xen/ 552F: include/sysemu/xen.h 553F: include/sysemu/xen-mapcache.h 554F: stubs/xen-hw-stub.c 555F: docs/system/arm/xenpvh.rst 556F: docs/system/i386/xenpvh.rst 557 558Guest CPU Cores (NVMM) 559---------------------- 560NetBSD Virtual Machine Monitor (NVMM) CPU support 561M: Reinoud Zandijk <reinoud@netbsd.org> 562S: Maintained 563F: include/sysemu/nvmm.h 564F: target/i386/nvmm/ 565 566Hosts 567----- 568LINUX 569M: Michael S. Tsirkin <mst@redhat.com> 570M: Cornelia Huck <cohuck@redhat.com> 571M: Paolo Bonzini <pbonzini@redhat.com> 572S: Maintained 573F: linux-headers/ 574F: include/standard-headers/ 575F: scripts/update-linux-headers.sh 576 577POSIX 578M: Paolo Bonzini <pbonzini@redhat.com> 579S: Maintained 580F: os-posix.c 581F: include/sysemu/os-posix.h 582F: util/*posix*.c 583F: include/qemu/*posix*.h 584 585NETBSD 586M: Reinoud Zandijk <reinoud@netbsd.org> 587M: Ryo ONODERA <ryoon@netbsd.org> 588S: Maintained 589K: ^Subject:.*(?i)NetBSD 590 591OPENBSD 592M: Brad Smith <brad@comstyle.com> 593S: Maintained 594K: ^Subject:.*(?i)OpenBSD 595 596W32, W64 597M: Stefan Weil <sw@weilnetz.de> 598S: Maintained 599F: *win32* 600F: */*win32* 601F: include/*/*win32* 602X: qga/*win32* 603F: qemu.nsi 604F: scripts/nsis.py 605 606Darwin (macOS, iOS) 607M: Philippe Mathieu-Daudé <philmd@linaro.org> 608S: Odd Fixes 609F: .gitlab-ci.d/cirrus/macos-* 610F: */*.m 611F: scripts/entitlement.sh 612 613Alpha Machines 614-------------- 615M: Richard Henderson <richard.henderson@linaro.org> 616S: Maintained 617F: hw/alpha/ 618F: hw/isa/smc37c669-superio.c 619F: tests/tcg/alpha/system/ 620 621ARM Machines 622------------ 623Allwinner-a10 624M: Beniamino Galvani <b.galvani@gmail.com> 625M: Peter Maydell <peter.maydell@linaro.org> 626R: Strahinja Jankovic <strahinja.p.jankovic@gmail.com> 627L: qemu-arm@nongnu.org 628S: Odd Fixes 629F: hw/*/allwinner* 630F: hw/ide/ahci-allwinner.c 631F: include/hw/*/allwinner* 632F: hw/arm/cubieboard.c 633F: docs/system/arm/cubieboard.rst 634F: hw/misc/axp209.c 635 636Allwinner-h3 637M: Niek Linnenbank <nieklinnenbank@gmail.com> 638L: qemu-arm@nongnu.org 639S: Maintained 640F: hw/*/allwinner-h3* 641F: include/hw/*/allwinner-h3* 642F: hw/arm/orangepi.c 643F: docs/system/arm/orangepi.rst 644 645ARM PrimeCell and CMSDK devices 646M: Peter Maydell <peter.maydell@linaro.org> 647L: qemu-arm@nongnu.org 648S: Maintained 649F: hw/char/pl011.c 650F: include/hw/char/pl011.h 651F: hw/display/pl110* 652F: hw/dma/pl080.c 653F: include/hw/dma/pl080.h 654F: hw/dma/pl330.c 655F: hw/gpio/pl061.c 656F: hw/input/pl050.c 657F: include/hw/input/pl050.h 658F: hw/intc/pl190.c 659F: hw/sd/pl181.c 660F: hw/ssi/pl022.c 661F: include/hw/ssi/pl022.h 662F: hw/rtc/pl031.c 663F: include/hw/rtc/pl031.h 664F: include/hw/arm/primecell.h 665F: hw/timer/cmsdk-apb-timer.c 666F: include/hw/timer/cmsdk-apb-timer.h 667F: tests/qtest/cmsdk-apb-timer-test.c 668F: hw/timer/cmsdk-apb-dualtimer.c 669F: include/hw/timer/cmsdk-apb-dualtimer.h 670F: tests/qtest/cmsdk-apb-dualtimer-test.c 671F: hw/char/cmsdk-apb-uart.c 672F: include/hw/char/cmsdk-apb-uart.h 673F: hw/watchdog/cmsdk-apb-watchdog.c 674F: include/hw/watchdog/cmsdk-apb-watchdog.h 675F: tests/qtest/cmsdk-apb-watchdog-test.c 676F: hw/misc/tz-ppc.c 677F: include/hw/misc/tz-ppc.h 678F: hw/misc/tz-mpc.c 679F: include/hw/misc/tz-mpc.h 680F: hw/misc/tz-msc.c 681F: include/hw/misc/tz-msc.h 682 683ARM cores 684M: Peter Maydell <peter.maydell@linaro.org> 685L: qemu-arm@nongnu.org 686S: Maintained 687F: hw/intc/arm* 688F: hw/intc/gic*_internal.h 689F: hw/misc/a9scu.c 690F: hw/misc/arm11scu.c 691F: hw/misc/arm_l2x0.c 692F: hw/misc/armv7m_ras.c 693F: hw/timer/a9gtimer* 694F: hw/timer/arm* 695F: include/hw/arm/arm*.h 696F: include/hw/intc/arm* 697F: include/hw/misc/a9scu.h 698F: include/hw/misc/arm11scu.h 699F: include/hw/timer/a9gtimer.h 700F: include/hw/timer/arm_mptimer.h 701F: include/hw/timer/armv7m_systick.h 702F: include/hw/misc/armv7m_ras.h 703F: tests/qtest/test-arm-mptimer.c 704 705B-L475E-IOT01A IoT Node 706M: Samuel Tardieu <sam@rfc1149.net> 707L: qemu-arm@nongnu.org 708S: Maintained 709F: hw/arm/b-l475e-iot01a.c 710F: hw/display/dm163.c 711F: tests/qtest/dm163-test.c 712 713Exynos 714M: Igor Mitsyanko <i.mitsyanko@gmail.com> 715M: Peter Maydell <peter.maydell@linaro.org> 716L: qemu-arm@nongnu.org 717S: Odd Fixes 718F: hw/*/exynos* 719F: include/hw/*/exynos* 720 721Calxeda Highbank 722M: Rob Herring <robh@kernel.org> 723M: Peter Maydell <peter.maydell@linaro.org> 724L: qemu-arm@nongnu.org 725S: Odd Fixes 726F: hw/arm/highbank.c 727F: hw/net/xgmac.c 728F: docs/system/arm/highbank.rst 729 730Canon DIGIC 731M: Antony Pavlov <antonynpavlov@gmail.com> 732M: Peter Maydell <peter.maydell@linaro.org> 733L: qemu-arm@nongnu.org 734S: Odd Fixes 735F: include/hw/arm/digic.h 736F: hw/*/digic* 737F: include/hw/*/digic* 738F: tests/functional/test_arm_canona1100.py 739F: docs/system/arm/digic.rst 740 741Goldfish RTC 742M: Anup Patel <anup.patel@wdc.com> 743M: Alistair Francis <Alistair.Francis@wdc.com> 744L: qemu-riscv@nongnu.org 745S: Maintained 746F: hw/rtc/goldfish_rtc.c 747F: include/hw/rtc/goldfish_rtc.h 748 749i.MX25 PDK 750M: Peter Maydell <peter.maydell@linaro.org> 751R: Jean-Christophe Dubois <jcd@tribudubois.net> 752L: qemu-arm@nongnu.org 753S: Odd Fixes 754F: hw/arm/fsl-imx25.c 755F: hw/arm/imx25_pdk.c 756F: hw/misc/imx25_ccm.c 757F: hw/watchdog/wdt_imx2.c 758F: include/hw/arm/fsl-imx25.h 759F: include/hw/misc/imx25_ccm.h 760F: include/hw/watchdog/wdt_imx2.h 761F: docs/system/arm/imx25-pdk.rst 762 763i.MX31 (kzm) 764M: Peter Maydell <peter.maydell@linaro.org> 765L: qemu-arm@nongnu.org 766S: Odd Fixes 767F: hw/arm/kzm.c 768F: hw/*/imx_* 769F: hw/*/*imx31* 770F: include/hw/*/imx_* 771F: include/hw/*/*imx31* 772F: docs/system/arm/kzm.rst 773 774Integrator CP 775M: Peter Maydell <peter.maydell@linaro.org> 776L: qemu-arm@nongnu.org 777S: Maintained 778F: hw/arm/integratorcp.c 779F: hw/misc/arm_integrator_debug.c 780F: include/hw/misc/arm_integrator_debug.h 781F: tests/functional/test_arm_integratorcp.py 782F: docs/system/arm/integratorcp.rst 783 784MCIMX6UL EVK / i.MX6ul 785M: Peter Maydell <peter.maydell@linaro.org> 786R: Jean-Christophe Dubois <jcd@tribudubois.net> 787L: qemu-arm@nongnu.org 788S: Odd Fixes 789F: hw/arm/mcimx6ul-evk.c 790F: hw/arm/fsl-imx6ul.c 791F: hw/misc/imx6ul_ccm.c 792F: include/hw/arm/fsl-imx6ul.h 793F: include/hw/misc/imx6ul_ccm.h 794 795MCIMX7D SABRE / i.MX7 796M: Peter Maydell <peter.maydell@linaro.org> 797R: Andrey Smirnov <andrew.smirnov@gmail.com> 798L: qemu-arm@nongnu.org 799S: Odd Fixes 800F: hw/arm/mcimx7d-sabre.c 801F: hw/arm/fsl-imx7.c 802F: hw/misc/imx7_*.c 803F: include/hw/arm/fsl-imx7.h 804F: include/hw/misc/imx7_*.h 805F: hw/pci-host/designware.c 806F: include/hw/pci-host/designware.h 807 808MPS2 / MPS3 809M: Peter Maydell <peter.maydell@linaro.org> 810L: qemu-arm@nongnu.org 811S: Maintained 812F: hw/arm/mps2.c 813F: hw/arm/mps2-tz.c 814F: hw/arm/mps3r.c 815F: hw/misc/mps2-*.c 816F: include/hw/misc/mps2-*.h 817F: hw/arm/armsse.c 818F: include/hw/arm/armsse.h 819F: hw/misc/iotkit-secctl.c 820F: include/hw/misc/iotkit-secctl.h 821F: hw/misc/iotkit-sysctl.c 822F: include/hw/misc/iotkit-sysctl.h 823F: hw/misc/iotkit-sysinfo.c 824F: include/hw/misc/iotkit-sysinfo.h 825F: hw/misc/armsse-cpu-pwrctrl.c 826F: include/hw/misc/armsse-cpu-pwrctrl.h 827F: hw/misc/armsse-cpuid.c 828F: include/hw/misc/armsse-cpuid.h 829F: hw/misc/armsse-mhu.c 830F: include/hw/misc/armsse-mhu.h 831F: hw/timer/sse-counter.c 832F: include/hw/timer/sse-counter.h 833F: hw/timer/sse-timer.c 834F: include/hw/timer/sse-timer.h 835F: tests/qtest/sse-timer-test.c 836F: docs/system/arm/mps2.rst 837 838Musca 839M: Peter Maydell <peter.maydell@linaro.org> 840L: qemu-arm@nongnu.org 841S: Maintained 842F: hw/arm/musca.c 843F: docs/system/arm/musca.rst 844 845Musicpal 846M: Jan Kiszka <jan.kiszka@web.de> 847M: Peter Maydell <peter.maydell@linaro.org> 848L: qemu-arm@nongnu.org 849S: Odd Fixes 850F: hw/arm/musicpal.c 851F: hw/net/mv88w8618_eth.c 852F: include/hw/net/mv88w8618_eth.h 853F: docs/system/arm/musicpal.rst 854 855Nuvoton NPCM7xx 856M: Tyrone Ting <kfting@nuvoton.com> 857M: Hao Wu <wuhaotsh@google.com> 858L: qemu-arm@nongnu.org 859S: Supported 860F: hw/*/npcm* 861F: hw/sensor/adm1266.c 862F: include/hw/*/npcm* 863F: tests/qtest/npcm* 864F: tests/qtest/adm1266-test.c 865F: pc-bios/npcm7xx_bootrom.bin 866F: roms/vbootrom 867F: docs/system/arm/nuvoton.rst 868 869Raspberry Pi 870M: Peter Maydell <peter.maydell@linaro.org> 871R: Philippe Mathieu-Daudé <philmd@linaro.org> 872L: qemu-arm@nongnu.org 873S: Odd Fixes 874F: hw/arm/raspi.c 875F: hw/arm/raspi_platform.h 876F: hw/*/bcm283* 877F: include/hw/arm/rasp* 878F: include/hw/*/bcm283* 879F: docs/system/arm/raspi.rst 880F: tests/functional/test_arm_raspi2.py 881F: tests/functional/test_aarch64_raspi3.py 882F: tests/functional/test_aarch64_raspi4.py 883 884Real View 885M: Peter Maydell <peter.maydell@linaro.org> 886L: qemu-arm@nongnu.org 887S: Maintained 888F: hw/arm/realview* 889F: hw/cpu/realview_mpcore.c 890F: hw/intc/realview_gic.c 891F: include/hw/intc/realview_gic.h 892F: docs/system/arm/realview.rst 893 894SABRELITE / i.MX6 895M: Peter Maydell <peter.maydell@linaro.org> 896R: Jean-Christophe Dubois <jcd@tribudubois.net> 897L: qemu-arm@nongnu.org 898S: Odd Fixes 899F: docs/system/arm/sabrelite.rst 900F: hw/arm/sabrelite.c 901F: hw/arm/fsl-imx6.c 902F: hw/misc/imx6_*.c 903F: hw/ssi/imx_spi.c 904F: hw/usb/imx-usb-phy.c 905F: include/hw/usb/imx-usb-phy.h 906F: include/hw/arm/fsl-imx6.h 907F: include/hw/misc/imx6_*.h 908F: include/hw/ssi/imx_spi.h 909 910SBSA-REF 911M: Radoslaw Biernacki <rad@semihalf.com> 912M: Peter Maydell <peter.maydell@linaro.org> 913R: Leif Lindholm <quic_llindhol@quicinc.com> 914R: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org> 915L: qemu-arm@nongnu.org 916S: Maintained 917F: hw/arm/sbsa-ref.c 918F: hw/misc/sbsa_ec.c 919F: hw/watchdog/sbsa_gwdt.c 920F: include/hw/watchdog/sbsa_gwdt.h 921F: docs/system/arm/sbsa.rst 922F: tests/functional/test_aarch64_sbsaref.py 923 924Sharp SL-5500 (Collie) PDA 925M: Peter Maydell <peter.maydell@linaro.org> 926L: qemu-arm@nongnu.org 927S: Odd Fixes 928F: hw/arm/collie.c 929F: hw/arm/strongarm* 930F: hw/gpio/zaurus.c 931F: include/hw/arm/sharpsl.h 932F: docs/system/arm/collie.rst 933 934Stellaris 935M: Peter Maydell <peter.maydell@linaro.org> 936L: qemu-arm@nongnu.org 937S: Maintained 938F: hw/*/stellaris* 939F: hw/display/ssd03* 940F: include/hw/input/gamepad.h 941F: include/hw/timer/stellaris-gptm.h 942F: docs/system/arm/stellaris.rst 943 944STM32L4x5 SoC Family 945M: Samuel Tardieu <sam@rfc1149.net> 946L: qemu-arm@nongnu.org 947S: Maintained 948F: hw/arm/stm32l4x5_soc.c 949F: hw/char/stm32l4x5_usart.c 950F: hw/misc/stm32l4x5_exti.c 951F: hw/misc/stm32l4x5_syscfg.c 952F: hw/misc/stm32l4x5_rcc.c 953F: hw/gpio/stm32l4x5_gpio.c 954F: include/hw/*/stm32l4x5_*.h 955F: tests/qtest/stm32l4x5* 956 957STM32VLDISCOVERY 958M: Alexandre Iooss <erdnaxe@crans.org> 959L: qemu-arm@nongnu.org 960S: Maintained 961F: hw/arm/stm32vldiscovery.c 962F: docs/system/arm/stm32.rst 963 964Versatile Express 965M: Peter Maydell <peter.maydell@linaro.org> 966L: qemu-arm@nongnu.org 967S: Maintained 968F: hw/arm/vexpress.c 969F: hw/display/sii9022.c 970F: docs/system/arm/vexpress.rst 971F: tests/functional/test_arm_vexpress.py 972 973Versatile PB 974M: Peter Maydell <peter.maydell@linaro.org> 975L: qemu-arm@nongnu.org 976S: Maintained 977F: hw/*/versatile* 978F: hw/i2c/arm_sbcon_i2c.c 979F: include/hw/i2c/arm_sbcon_i2c.h 980F: hw/misc/arm_sysctl.c 981F: docs/system/arm/versatile.rst 982 983Virt 984M: Peter Maydell <peter.maydell@linaro.org> 985L: qemu-arm@nongnu.org 986S: Maintained 987F: hw/arm/virt* 988F: include/hw/arm/virt.h 989F: docs/system/arm/virt.rst 990F: tests/functional/test_aarch64_virt.py 991F: tests/functional/test_arm_tuxrun.py 992 993Xilinx Zynq 994M: Edgar E. Iglesias <edgar.iglesias@gmail.com> 995M: Alistair Francis <alistair@alistair23.me> 996M: Peter Maydell <peter.maydell@linaro.org> 997L: qemu-arm@nongnu.org 998S: Maintained 999F: hw/*/xilinx_* 1000F: hw/*/cadence_* 1001F: hw/misc/zynq_slcr.c 1002F: hw/adc/zynq-xadc.c 1003F: include/hw/misc/zynq_slcr.h 1004F: include/hw/adc/zynq-xadc.h 1005X: hw/ssi/xilinx_* 1006F: docs/system/arm/xlnx-zynq.rst 1007 1008Xilinx ZynqMP and Versal 1009M: Alistair Francis <alistair@alistair23.me> 1010M: Edgar E. Iglesias <edgar.iglesias@gmail.com> 1011M: Peter Maydell <peter.maydell@linaro.org> 1012L: qemu-arm@nongnu.org 1013S: Maintained 1014F: hw/*/xlnx*.c 1015F: include/hw/*/xlnx*.h 1016F: include/hw/ssi/xilinx_spips.h 1017F: hw/display/dpcd.c 1018F: include/hw/display/dpcd.h 1019F: docs/system/arm/xlnx-versal-virt.rst 1020 1021Xilinx Versal OSPI 1022M: Francisco Iglesias <francisco.iglesias@amd.com> 1023S: Maintained 1024F: hw/ssi/xlnx-versal-ospi.c 1025F: include/hw/ssi/xlnx-versal-ospi.h 1026 1027Xilinx Versal CFI 1028M: Francisco Iglesias <francisco.iglesias@amd.com> 1029S: Maintained 1030F: hw/misc/xlnx-cfi-if.c 1031F: include/hw/misc/xlnx-cfi-if.h 1032F: hw/misc/xlnx-versal-cfu.c 1033F: include/hw/misc/xlnx-versal-cfu.h 1034F: hw/misc/xlnx-versal-cframe-reg.c 1035F: include/hw/misc/xlnx-versal-cframe-reg.h 1036 1037STM32F100 1038M: Alexandre Iooss <erdnaxe@crans.org> 1039L: qemu-arm@nongnu.org 1040S: Maintained 1041F: hw/arm/stm32f100_soc.c 1042 1043STM32F205 1044M: Alistair Francis <alistair@alistair23.me> 1045M: Peter Maydell <peter.maydell@linaro.org> 1046L: qemu-arm@nongnu.org 1047S: Maintained 1048F: hw/arm/stm32f205_soc.c 1049F: hw/misc/stm32f2xx_syscfg.c 1050F: hw/char/stm32f2xx_usart.c 1051F: hw/timer/stm32f2xx_timer.c 1052F: hw/adc/* 1053F: hw/ssi/stm32f2xx_spi.c 1054F: include/hw/*/stm32*.h 1055 1056STM32F405 1057M: Alistair Francis <alistair@alistair23.me> 1058M: Peter Maydell <peter.maydell@linaro.org> 1059L: qemu-arm@nongnu.org 1060S: Maintained 1061F: hw/arm/stm32f405_soc.c 1062F: hw/misc/stm32f4xx_syscfg.c 1063F: hw/misc/stm32f4xx_exti.c 1064F: hw/misc/stm32_rcc.c 1065F: include/hw/misc/stm32_rcc.h 1066 1067Netduino 2 1068M: Alistair Francis <alistair@alistair23.me> 1069M: Peter Maydell <peter.maydell@linaro.org> 1070L: qemu-arm@nongnu.org 1071S: Maintained 1072F: hw/arm/netduino2.c 1073 1074Netduino Plus 2 1075M: Alistair Francis <alistair@alistair23.me> 1076M: Peter Maydell <peter.maydell@linaro.org> 1077L: qemu-arm@nongnu.org 1078S: Maintained 1079F: hw/arm/netduinoplus2.c 1080 1081Olimex STM32 H405 1082M: Felipe Balbi <balbi@kernel.org> 1083L: qemu-arm@nongnu.org 1084S: Maintained 1085F: hw/arm/olimex-stm32-h405.c 1086 1087SmartFusion2 1088M: Subbaraya Sundeep <sundeep.lkml@gmail.com> 1089M: Peter Maydell <peter.maydell@linaro.org> 1090L: qemu-arm@nongnu.org 1091S: Maintained 1092F: hw/arm/msf2-soc.c 1093F: hw/misc/msf2-sysreg.c 1094F: hw/timer/mss-timer.c 1095F: hw/ssi/mss-spi.c 1096F: include/hw/arm/msf2-soc.h 1097F: include/hw/misc/msf2-sysreg.h 1098F: include/hw/timer/mss-timer.h 1099F: include/hw/ssi/mss-spi.h 1100F: hw/net/msf2-emac.c 1101F: include/hw/net/msf2-emac.h 1102 1103Emcraft M2S-FG484 1104M: Subbaraya Sundeep <sundeep.lkml@gmail.com> 1105M: Peter Maydell <peter.maydell@linaro.org> 1106L: qemu-arm@nongnu.org 1107S: Maintained 1108F: hw/arm/msf2-som.c 1109F: docs/system/arm/emcraft-sf2.rst 1110 1111ASPEED BMCs 1112M: Cédric Le Goater <clg@kaod.org> 1113M: Peter Maydell <peter.maydell@linaro.org> 1114R: Steven Lee <steven_lee@aspeedtech.com> 1115R: Troy Lee <leetroy@gmail.com> 1116R: Jamin Lin <jamin_lin@aspeedtech.com> 1117R: Andrew Jeffery <andrew@codeconstruct.com.au> 1118R: Joel Stanley <joel@jms.id.au> 1119L: qemu-arm@nongnu.org 1120S: Maintained 1121F: hw/*/*aspeed* 1122F: include/hw/*/*aspeed* 1123F: hw/net/ftgmac100.c 1124F: include/hw/net/ftgmac100.h 1125F: docs/system/arm/aspeed.rst 1126F: tests/*/*aspeed* 1127F: tests/*/*ast2700* 1128F: hw/arm/fby35.c 1129 1130NRF51 1131M: Joel Stanley <joel@jms.id.au> 1132M: Peter Maydell <peter.maydell@linaro.org> 1133L: qemu-arm@nongnu.org 1134S: Maintained 1135F: hw/*/nrf51*.c 1136F: hw/*/microbit*.c 1137F: include/hw/*/nrf51*.h 1138F: include/hw/*/microbit*.h 1139F: tests/qtest/microbit-test.c 1140F: docs/system/arm/nrf.rst 1141 1142ARM PL011 Rust device 1143M: Manos Pitsidianakis <manos.pitsidianakis@linaro.org> 1144S: Maintained 1145F: rust/hw/char/pl011/ 1146 1147AVR Machines 1148------------- 1149 1150AVR MCUs 1151M: Michael Rolnik <mrolnik@gmail.com> 1152S: Maintained 1153F: configs/devices/avr-softmmu/default.mak 1154F: hw/avr/ 1155F: include/hw/char/avr_usart.h 1156F: hw/char/avr_usart.c 1157F: include/hw/timer/avr_timer16.h 1158F: hw/timer/avr_timer16.c 1159F: include/hw/misc/avr_power.h 1160F: hw/misc/avr_power.c 1161 1162Arduino 1163M: Philippe Mathieu-Daudé <philmd@linaro.org> 1164S: Maintained 1165F: hw/avr/arduino.c 1166 1167HP-PARISC Machines 1168------------------ 1169HP B160L, HP C3700 1170M: Richard Henderson <richard.henderson@linaro.org> 1171R: Helge Deller <deller@gmx.de> 1172S: Odd Fixes 1173F: configs/devices/hppa-softmmu/default.mak 1174F: hw/display/artist.c 1175F: hw/hppa/ 1176F: hw/input/lasips2.c 1177F: hw/net/*i82596* 1178F: hw/misc/lasi.c 1179F: hw/pci-host/astro.c 1180F: hw/pci-host/dino.c 1181F: include/hw/input/lasips2.h 1182F: include/hw/misc/lasi.h 1183F: include/hw/net/lasi_82596.h 1184F: include/hw/pci-host/astro.h 1185F: include/hw/pci-host/dino.h 1186F: pc-bios/hppa-firmware.img 1187F: roms/seabios-hppa/ 1188 1189LoongArch Machines 1190------------------ 1191Virt 1192M: Song Gao <gaosong@loongson.cn> 1193R: Jiaxun Yang <jiaxun.yang@flygoat.com> 1194S: Maintained 1195F: docs/system/loongarch/virt.rst 1196F: configs/targets/loongarch64-softmmu.mak 1197F: configs/devices/loongarch64-softmmu/default.mak 1198F: hw/loongarch/ 1199F: include/hw/loongarch/virt.h 1200F: include/hw/intc/loongarch_*.h 1201F: include/hw/intc/loongson_ipi_common.h 1202F: hw/intc/loongarch_*.c 1203F: hw/intc/loongson_ipi_common.c 1204F: include/hw/pci-host/ls7a.h 1205F: hw/rtc/ls7a_rtc.c 1206F: gdb-xml/loongarch*.xml 1207 1208M68K Machines 1209------------- 1210an5206 1211M: Thomas Huth <huth@tuxfamily.org> 1212S: Odd Fixes 1213F: hw/m68k/an5206.c 1214F: hw/m68k/mcf5206.c 1215 1216mcf5208 1217M: Thomas Huth <huth@tuxfamily.org> 1218S: Odd Fixes 1219F: hw/m68k/mcf5208.c 1220F: hw/m68k/mcf_intc.c 1221F: hw/char/mcf_uart.c 1222F: hw/net/mcf_fec.c 1223F: include/hw/m68k/mcf*.h 1224 1225NeXTcube 1226M: Thomas Huth <huth@tuxfamily.org> 1227S: Odd Fixes 1228F: hw/m68k/next-*.c 1229F: hw/display/next-fb.c 1230F: include/hw/m68k/next-cube.h 1231F: tests/functional/test_m68k_nextcube.py 1232 1233q800 1234M: Laurent Vivier <laurent@vivier.eu> 1235S: Maintained 1236F: hw/m68k/q800.c 1237F: hw/m68k/q800-glue.c 1238F: hw/misc/mac_via.c 1239F: hw/nubus/* 1240F: hw/display/macfb.c 1241F: hw/block/swim.c 1242F: hw/misc/djmemc.c 1243F: hw/misc/iosb.c 1244F: hw/audio/asc.c 1245F: hw/m68k/bootinfo.h 1246F: include/standard-headers/asm-m68k/bootinfo.h 1247F: include/standard-headers/asm-m68k/bootinfo-mac.h 1248F: include/hw/misc/mac_via.h 1249F: include/hw/nubus/* 1250F: include/hw/display/macfb.h 1251F: include/hw/block/swim.h 1252F: include/hw/m68k/q800.h 1253F: include/hw/m68k/q800-glue.h 1254F: include/hw/misc/djmemc.h 1255F: include/hw/misc/iosb.h 1256F: include/hw/audio/asc.h 1257F: tests/functional/test_m68k_q800.py 1258 1259virt 1260M: Laurent Vivier <laurent@vivier.eu> 1261S: Maintained 1262F: hw/m68k/virt.c 1263F: hw/char/goldfish_tty.c 1264F: hw/intc/goldfish_pic.c 1265F: hw/intc/m68k_irqc.c 1266F: hw/misc/virt_ctrl.c 1267F: include/hw/char/goldfish_tty.h 1268F: include/hw/intc/goldfish_pic.h 1269F: include/hw/intc/m68k_irqc.h 1270F: include/hw/misc/virt_ctrl.h 1271F: docs/specs/virt-ctlr.rst 1272 1273MicroBlaze Machines 1274------------------- 1275petalogix_s3adsp1800 1276M: Edgar E. Iglesias <edgar.iglesias@gmail.com> 1277S: Maintained 1278F: hw/microblaze/petalogix_s3adsp1800_mmu.c 1279F: include/hw/char/xilinx_uartlite.h 1280F: tests/functional/test_microblaze*.py 1281 1282petalogix_ml605 1283M: Edgar E. Iglesias <edgar.iglesias@gmail.com> 1284S: Maintained 1285F: hw/microblaze/petalogix_ml605_mmu.c 1286 1287MIPS Machines 1288------------- 1289Overall MIPS Machines 1290M: Philippe Mathieu-Daudé <philmd@linaro.org> 1291S: Odd Fixes 1292F: configs/devices/mips*/* 1293F: hw/mips/ 1294F: include/hw/mips/ 1295 1296Jazz 1297M: Hervé Poussineau <hpoussin@reactos.org> 1298R: Aleksandar Rikalo <arikalo@gmail.com> 1299S: Maintained 1300F: hw/mips/jazz.c 1301F: hw/display/g364fb.c 1302F: hw/display/jazz_led.c 1303F: hw/dma/rc4030.c 1304F: hw/nvram/ds1225y.c 1305 1306Malta 1307M: Philippe Mathieu-Daudé <philmd@linaro.org> 1308R: Aurelien Jarno <aurelien@aurel32.net> 1309S: Odd Fixes 1310F: hw/isa/piix.c 1311F: hw/isa/fdc37m81x-superio.c 1312F: hw/acpi/piix4.c 1313F: hw/mips/malta.c 1314F: hw/pci-host/gt64120.c 1315F: include/hw/southbridge/piix.h 1316F: tests/avocado/linux_ssh_mips_malta.py 1317F: tests/functional/test_mips*_malta.py 1318F: tests/functional/test_mips*_tuxrun.py 1319 1320Mipssim 1321R: Aleksandar Rikalo <arikalo@gmail.com> 1322S: Orphan 1323F: hw/mips/mipssim.c 1324F: hw/net/mipsnet.c 1325 1326Fuloong 2E 1327M: Huacai Chen <chenhuacai@kernel.org> 1328M: Philippe Mathieu-Daudé <philmd@linaro.org> 1329R: Jiaxun Yang <jiaxun.yang@flygoat.com> 1330S: Odd Fixes 1331F: hw/mips/fuloong2e.c 1332F: hw/pci-host/bonito.c 1333F: include/hw/pci-host/bonito.h 1334F: tests/functional/test_mips64el_fuloong2e.py 1335 1336Loongson-3 virtual platforms 1337M: Huacai Chen <chenhuacai@kernel.org> 1338R: Jiaxun Yang <jiaxun.yang@flygoat.com> 1339S: Maintained 1340F: hw/intc/loongson_ipi_common.c 1341F: hw/intc/loongson_ipi.c 1342F: hw/intc/loongson_liointc.c 1343F: hw/mips/loongson3_bootp.c 1344F: hw/mips/loongson3_bootp.h 1345F: hw/mips/loongson3_virt.c 1346F: include/hw/intc/loongson_ipi_common.h 1347F: include/hw/intc/loongson_ipi.h 1348F: include/hw/intc/loongson_liointc.h 1349F: tests/functional/test_mips64el_loongson3v.py 1350 1351Boston 1352M: Paul Burton <paulburton@kernel.org> 1353R: Aleksandar Rikalo <arikalo@gmail.com> 1354S: Odd Fixes 1355F: hw/core/loader-fit.c 1356F: hw/mips/boston.c 1357F: hw/pci-host/xilinx-pcie.c 1358F: include/hw/pci-host/xilinx-pcie.h 1359 1360OpenRISC Machines 1361----------------- 1362or1k-sim 1363M: Jia Liu <proljc@gmail.com> 1364S: Maintained 1365F: docs/system/openrisc/or1k-sim.rst 1366F: hw/intc/ompic.c 1367F: hw/openrisc/openrisc_sim.c 1368 1369PowerPC Machines 1370---------------- 1371405 (ref405ep) 1372L: qemu-ppc@nongnu.org 1373S: Orphan 1374F: hw/ppc/ppc405* 1375F: tests/functional/test_ppc_405.py 1376 1377Bamboo 1378L: qemu-ppc@nongnu.org 1379S: Orphan 1380F: hw/ppc/ppc440_bamboo.c 1381F: hw/pci-host/ppc4xx_pci.c 1382F: tests/functional/test_ppc_bamboo.py 1383 1384e500 1385M: Bernhard Beschow <shentey@gmail.com> 1386L: qemu-ppc@nongnu.org 1387S: Odd Fixes 1388F: hw/ppc/e500* 1389F: hw/ppc/ppce500_spin.c 1390F: hw/gpio/mpc8xxx.c 1391F: hw/i2c/mpc_i2c.c 1392F: hw/net/fsl_etsec/ 1393F: hw/pci-host/ppce500.c 1394F: include/hw/ppc/ppc_e500.h 1395F: include/hw/pci-host/ppce500.h 1396F: pc-bios/u-boot.e500 1397F: hw/intc/openpic_kvm.c 1398F: include/hw/ppc/openpic_kvm.h 1399F: docs/system/ppc/ppce500.rst 1400F: tests/functional/test_ppc64_e500.py 1401F: tests/functional/test_ppc_tuxrun.py 1402 1403mpc8544ds 1404M: Bernhard Beschow <shentey@gmail.com> 1405L: qemu-ppc@nongnu.org 1406S: Odd Fixes 1407F: hw/ppc/mpc8544ds.c 1408F: hw/ppc/mpc8544_guts.c 1409F: tests/functional/test_ppc_mpc8544ds.py 1410 1411New World (mac99) 1412M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> 1413L: qemu-ppc@nongnu.org 1414S: Odd Fixes 1415F: docs/system/ppc/powermac.rst 1416F: hw/ppc/mac_newworld.c 1417F: hw/pci-host/uninorth.c 1418F: hw/pci-bridge/dec.[hc] 1419F: hw/misc/macio/ 1420F: hw/misc/mos6522.c 1421F: hw/nvram/mac_nvram.c 1422F: hw/ppc/fw_cfg.c 1423F: hw/input/adb* 1424F: include/hw/misc/macio/ 1425F: include/hw/misc/mos6522.h 1426F: include/hw/nvram/mac_nvram.h 1427F: include/hw/ppc/mac_dbdma.h 1428F: include/hw/pci-host/uninorth.h 1429F: include/hw/input/adb* 1430F: pc-bios/qemu_vga.ndrv 1431F: tests/functional/test_ppc_mac.py 1432 1433Old World (g3beige) 1434M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> 1435L: qemu-ppc@nongnu.org 1436S: Odd Fixes 1437F: docs/system/ppc/powermac.rst 1438F: hw/ppc/mac_oldworld.c 1439F: hw/pci-host/grackle.c 1440F: hw/misc/macio/ 1441F: hw/intc/heathrow_pic.c 1442F: hw/input/adb* 1443F: include/hw/intc/heathrow_pic.h 1444F: include/hw/input/adb* 1445F: include/hw/pci-host/grackle.h 1446F: pc-bios/qemu_vga.ndrv 1447F: tests/functional/test_ppc_mac.py 1448 1449PReP 1450M: Hervé Poussineau <hpoussin@reactos.org> 1451L: qemu-ppc@nongnu.org 1452S: Maintained 1453F: docs/system/ppc/prep.rst 1454F: hw/ppc/prep.c 1455F: hw/ppc/prep_systemio.c 1456F: hw/ppc/rs6000_mc.c 1457F: hw/pci-host/raven.c 1458F: hw/isa/i82378.c 1459F: hw/isa/pc87312.c 1460F: hw/dma/i82374.c 1461F: hw/rtc/m48t59-isa.c 1462F: include/hw/isa/pc87312.h 1463F: include/hw/rtc/m48t59.h 1464F: tests/functional/test_ppc_40p.py 1465 1466sPAPR (pseries) 1467M: Nicholas Piggin <npiggin@gmail.com> 1468R: Daniel Henrique Barboza <danielhb413@gmail.com> 1469R: David Gibson <david@gibson.dropbear.id.au> 1470R: Harsh Prateek Bora <harshpb@linux.ibm.com> 1471L: qemu-ppc@nongnu.org 1472S: Odd Fixes 1473F: hw/*/spapr* 1474F: include/hw/*/spapr* 1475F: hw/*/xics* 1476F: include/hw/*/xics* 1477F: include/hw/ppc/fdt.h 1478F: hw/ppc/fdt.c 1479F: include/hw/ppc/pef.h 1480F: hw/ppc/pef.c 1481F: pc-bios/slof.bin 1482F: docs/system/ppc/pseries.rst 1483F: docs/specs/ppc-spapr-* 1484F: tests/qtest/spapr* 1485F: tests/qtest/libqos/*spapr* 1486F: tests/qtest/rtas* 1487F: tests/qtest/libqos/rtas* 1488F: tests/functional/test_ppc64_pseries.py 1489F: tests/functional/test_ppc64_hv.py 1490F: tests/functional/test_ppc64_tuxrun.py 1491 1492PowerNV (Non-Virtualized) 1493M: Cédric Le Goater <clg@kaod.org> 1494M: Nicholas Piggin <npiggin@gmail.com> 1495R: Frédéric Barrat <fbarrat@linux.ibm.com> 1496L: qemu-ppc@nongnu.org 1497S: Odd Fixes 1498F: docs/system/ppc/powernv.rst 1499F: hw/ppc/pnv* 1500F: hw/intc/pnv* 1501F: hw/intc/xics_pnv.c 1502F: hw/pci-host/pnv* 1503F: include/hw/ppc/pnv* 1504F: include/hw/pci-host/pnv* 1505F: pc-bios/skiboot.lid 1506F: tests/qtest/pnv* 1507F: tests/functional/test_ppc64_powernv.py 1508 1509pca955x 1510M: Glenn Miles <milesg@linux.ibm.com> 1511L: qemu-ppc@nongnu.org 1512L: qemu-arm@nongnu.org 1513S: Odd Fixes 1514F: hw/gpio/pca955*.c 1515F: include/hw/gpio/pca955*.h 1516 1517virtex_ml507 1518M: Edgar E. Iglesias <edgar.iglesias@gmail.com> 1519L: qemu-ppc@nongnu.org 1520S: Odd Fixes 1521F: hw/ppc/virtex_ml507.c 1522F: tests/functional/test_ppc_virtex_ml507.py 1523 1524sam460ex 1525M: BALATON Zoltan <balaton@eik.bme.hu> 1526L: qemu-ppc@nongnu.org 1527S: Maintained 1528F: hw/ppc/sam460ex.c 1529F: hw/ppc/ppc440_uc.c 1530F: hw/pci-host/ppc440_pcix.c 1531F: hw/display/sm501* 1532F: hw/ide/sii3112.c 1533F: hw/rtc/m41t80.c 1534F: pc-bios/canyonlands.dt[sb] 1535F: pc-bios/u-boot-sam460ex-20100605.bin 1536F: roms/u-boot-sam460ex 1537F: docs/system/ppc/amigang.rst 1538 1539pegasos2 1540M: BALATON Zoltan <balaton@eik.bme.hu> 1541L: qemu-ppc@nongnu.org 1542S: Maintained 1543F: hw/ppc/pegasos2.c 1544F: hw/pci-host/mv64361.c 1545F: hw/pci-host/mv643xx.h 1546F: include/hw/pci-host/mv64361.h 1547 1548amigaone 1549M: BALATON Zoltan <balaton@eik.bme.hu> 1550L: qemu-ppc@nongnu.org 1551S: Maintained 1552F: hw/ppc/amigaone.c 1553F: hw/pci-host/articia.c 1554F: include/hw/pci-host/articia.h 1555F: tests/functional/test_ppc_amiga.py 1556 1557Virtual Open Firmware (VOF) 1558M: Alexey Kardashevskiy <aik@ozlabs.ru> 1559R: David Gibson <david@gibson.dropbear.id.au> 1560L: qemu-ppc@nongnu.org 1561S: Odd Fixes 1562F: hw/ppc/spapr_vof* 1563F: hw/ppc/vof* 1564F: include/hw/ppc/vof* 1565F: pc-bios/vof/* 1566F: pc-bios/vof* 1567 1568RISC-V Machines 1569--------------- 1570OpenTitan 1571M: Alistair Francis <Alistair.Francis@wdc.com> 1572L: qemu-riscv@nongnu.org 1573S: Supported 1574F: hw/riscv/opentitan.c 1575F: hw/*/ibex_*.c 1576F: include/hw/riscv/opentitan.h 1577F: include/hw/*/ibex_*.h 1578 1579Microchip PolarFire SoC Icicle Kit 1580M: Bin Meng <bmeng.cn@gmail.com> 1581L: qemu-riscv@nongnu.org 1582S: Supported 1583F: docs/system/riscv/microchip-icicle-kit.rst 1584F: hw/riscv/microchip_pfsoc.c 1585F: hw/char/mchp_pfsoc_mmuart.c 1586F: hw/misc/mchp_pfsoc_dmc.c 1587F: hw/misc/mchp_pfsoc_ioscb.c 1588F: hw/misc/mchp_pfsoc_sysreg.c 1589F: include/hw/riscv/microchip_pfsoc.h 1590F: include/hw/char/mchp_pfsoc_mmuart.h 1591F: include/hw/misc/mchp_pfsoc_dmc.h 1592F: include/hw/misc/mchp_pfsoc_ioscb.h 1593F: include/hw/misc/mchp_pfsoc_sysreg.h 1594 1595Shakti C class SoC 1596M: Vijai Kumar K <vijai@behindbytes.com> 1597L: qemu-riscv@nongnu.org 1598S: Supported 1599F: docs/system/riscv/shakti-c.rst 1600F: hw/riscv/shakti_c.c 1601F: hw/char/shakti_uart.c 1602F: include/hw/riscv/shakti_c.h 1603F: include/hw/char/shakti_uart.h 1604 1605SiFive Machines 1606M: Alistair Francis <Alistair.Francis@wdc.com> 1607M: Bin Meng <bmeng.cn@gmail.com> 1608M: Palmer Dabbelt <palmer@dabbelt.com> 1609L: qemu-riscv@nongnu.org 1610S: Supported 1611F: docs/system/riscv/sifive_u.rst 1612F: hw/*/*sifive*.c 1613F: include/hw/*/*sifive*.h 1614 1615RX Machines 1616----------- 1617rx-gdbsim 1618R: Yoshinori Sato <ysato@users.sourceforge.jp> 1619S: Orphan 1620F: docs/system/target-rx.rst 1621F: hw/rx/rx-gdbsim.c 1622F: tests/functional/test_rx_gdbsim.py 1623 1624SH4 Machines 1625------------ 1626R2D 1627R: Yoshinori Sato <ysato@users.sourceforge.jp> 1628R: Magnus Damm <magnus.damm@gmail.com> 1629S: Odd Fixes 1630F: hw/char/sh_serial.c 1631F: hw/sh4/r2d.c 1632F: hw/intc/sh_intc.c 1633F: hw/pci-host/sh_pci.c 1634F: hw/timer/sh_timer.c 1635F: include/hw/sh4/sh_intc.h 1636F: include/hw/timer/tmu012.h 1637F: tests/functional/test_sh4_r2d.py 1638F: tests/functional/test_sh4_tuxrun.py 1639 1640SPARC Machines 1641-------------- 1642Sun4m 1643M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> 1644S: Maintained 1645F: hw/sparc/sun4m.c 1646F: hw/sparc/sun4m_iommu.c 1647F: hw/display/cg3.c 1648F: hw/display/tcx.c 1649F: hw/dma/sparc32_dma.c 1650F: hw/misc/eccmemctl.c 1651F: hw/*/slavio_*.c 1652F: include/hw/nvram/sun_nvram.h 1653F: include/hw/sparc/sparc32_dma.h 1654F: include/hw/sparc/sun4m_iommu.h 1655F: pc-bios/openbios-sparc32 1656F: tests/functional/test_sparc_sun4m.py 1657 1658Sun4u 1659M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> 1660S: Maintained 1661F: hw/sparc64/sun4u.c 1662F: hw/sparc64/sun4u_iommu.c 1663F: include/hw/sparc/sun4u_iommu.h 1664F: hw/pci-host/sabre.c 1665F: include/hw/pci-host/sabre.h 1666F: hw/pci-bridge/simba.c 1667F: include/hw/pci-bridge/simba.h 1668F: pc-bios/openbios-sparc64 1669F: tests/functional/test_sparc64_sun4u.py 1670F: tests/functional/test_sparc64_tuxrun.py 1671 1672Sun4v 1673M: Artyom Tarasenko <atar4qemu@gmail.com> 1674S: Maintained 1675F: hw/sparc64/niagara.c 1676F: hw/rtc/sun4v-rtc.c 1677F: include/hw/rtc/sun4v-rtc.h 1678 1679Leon3 1680M: Clément Chigot <chigot@adacore.com> 1681M: Frederic Konrad <konrad.frederic@yahoo.fr> 1682S: Maintained 1683F: hw/sparc/leon3.c 1684F: hw/*/grlib* 1685F: include/hw/*/grlib* 1686 1687S390 Machines 1688------------- 1689S390 Virtio-ccw 1690M: Halil Pasic <pasic@linux.ibm.com> 1691M: Christian Borntraeger <borntraeger@linux.ibm.com> 1692M: Eric Farman <farman@linux.ibm.com> 1693S: Supported 1694F: hw/s390x/ 1695F: include/hw/s390x/ 1696F: configs/devices/s390x-softmmu/default.mak 1697F: tests/functional/test_s390x_* 1698T: git https://github.com/borntraeger/qemu.git s390-next 1699L: qemu-s390x@nongnu.org 1700 1701S390-ccw boot 1702M: Christian Borntraeger <borntraeger@linux.ibm.com> 1703M: Thomas Huth <thuth@redhat.com> 1704S: Supported 1705F: hw/s390x/ipl.* 1706F: pc-bios/s390-ccw/ 1707F: pc-bios/s390-ccw.img 1708F: docs/devel/s390-dasd-ipl.rst 1709T: git https://github.com/borntraeger/qemu.git s390-next 1710L: qemu-s390x@nongnu.org 1711 1712S390 PCI 1713M: Matthew Rosato <mjrosato@linux.ibm.com> 1714M: Eric Farman <farman@linux.ibm.com> 1715S: Supported 1716F: hw/s390x/s390-pci* 1717F: include/hw/s390x/s390-pci* 1718L: qemu-s390x@nongnu.org 1719 1720S390 channel subsystem 1721M: Halil Pasic <pasic@linux.ibm.com> 1722M: Christian Borntraeger <borntraeger@linux.ibm.com> 1723M: Eric Farman <farman@linux.ibm.com> 1724S: Supported 1725F: hw/s390x/ccw-device.[ch] 1726F: hw/s390x/css.c 1727F: hw/s390x/css-bridge.c 1728F: include/hw/s390x/css.h 1729F: include/hw/s390x/css-bridge.h 1730F: include/hw/s390x/ioinst.h 1731F: target/s390x/ioinst.c 1732L: qemu-s390x@nongnu.org 1733 1734S390 CPU models 1735M: David Hildenbrand <david@redhat.com> 1736S: Maintained 1737F: target/s390x/cpu_features*.[ch] 1738F: target/s390x/cpu_models.[ch] 1739L: qemu-s390x@nongnu.org 1740 1741S390 SCLP-backed devices 1742M: Halil Pasic <pasic@linux.ibm.com> 1743M: Christian Borntraeger <borntraeger@linux.ibm.com> 1744S: Supported 1745F: include/hw/s390x/event-facility.h 1746F: include/hw/s390x/sclp.h 1747F: hw/char/sclp*.[hc] 1748F: hw/s390x/event-facility.c 1749F: hw/s390x/sclp*.c 1750L: qemu-s390x@nongnu.org 1751 1752S390 CPU topology 1753M: Nina Schoetterl-Glausch <nsg@linux.ibm.com> 1754S: Supported 1755F: include/hw/s390x/cpu-topology.h 1756F: hw/s390x/cpu-topology.c 1757F: target/s390x/kvm/stsi-topology.c 1758F: docs/devel/s390-cpu-topology.rst 1759F: docs/system/s390x/cpu-topology.rst 1760F: tests/functional/test_s390x_topology.py 1761 1762X86 Machines 1763------------ 1764PC 1765M: Michael S. Tsirkin <mst@redhat.com> 1766M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com> 1767S: Supported 1768F: include/hw/i386/ 1769F: hw/i386/ 1770F: hw/pci-host/i440fx.c 1771F: hw/pci-host/q35.c 1772F: hw/pci-host/pam.c 1773F: include/hw/pci-host/i440fx.h 1774F: include/hw/pci-host/q35.h 1775F: include/hw/pci-host/pam.h 1776F: hw/isa/piix.c 1777F: hw/isa/lpc_ich9.c 1778F: hw/i2c/smbus_ich9.c 1779F: hw/acpi/piix4.c 1780F: hw/acpi/ich9*.c 1781F: include/hw/acpi/ich9*.h 1782F: include/hw/southbridge/ich9.h 1783F: include/hw/southbridge/piix.h 1784F: hw/isa/apm.c 1785F: include/hw/isa/apm.h 1786F: tests/unit/test-x86-topo.c 1787F: tests/qtest/test-x86-cpuid-compat.c 1788F: tests/functional/test_i386_tuxrun.py 1789F: tests/functional/test_mem_addr_space.py 1790F: tests/functional/test_pc_cpu_hotplug_props.py 1791F: tests/functional/test_x86_64_tuxrun.py 1792F: tests/functional/test_x86_cpu_model_versions.py 1793 1794PC Chipset 1795M: Michael S. Tsirkin <mst@redhat.com> 1796M: Paolo Bonzini <pbonzini@redhat.com> 1797S: Supported 1798F: hw/char/debugcon.c 1799F: hw/char/parallel* 1800F: hw/char/serial* 1801F: hw/dma/i8257* 1802F: hw/i2c/pm_smbus.c 1803F: hw/input/pckbd.c 1804F: hw/intc/apic* 1805F: hw/intc/ioapic* 1806F: hw/intc/i8259* 1807F: hw/isa/isa-superio.c 1808F: hw/misc/debugexit.c 1809F: hw/misc/pc-testdev.c 1810F: hw/timer/hpet* 1811F: hw/timer/i8254* 1812F: hw/rtc/mc146818rtc* 1813F: hw/watchdog/wdt_ib700.c 1814F: hw/watchdog/wdt_i6300esb.c 1815F: include/hw/display/vga.h 1816F: include/hw/char/parallel*.h 1817F: include/hw/dma/i8257.h 1818F: include/hw/i2c/pm_smbus.h 1819F: include/hw/input/i8042.h 1820F: include/hw/intc/ioapic* 1821F: include/hw/intc/i8259.h 1822F: include/hw/isa/i8259_internal.h 1823F: include/hw/isa/superio.h 1824F: include/hw/timer/hpet.h 1825F: include/hw/timer/i8254* 1826F: include/hw/rtc/mc146818rtc* 1827 1828microvm 1829M: Sergio Lopez <slp@redhat.com> 1830M: Paolo Bonzini <pbonzini@redhat.com> 1831S: Maintained 1832F: docs/system/i386/microvm.rst 1833F: hw/i386/microvm.c 1834F: include/hw/i386/microvm.h 1835F: pc-bios/bios-microvm.bin 1836 1837Machine core 1838M: Eduardo Habkost <eduardo@habkost.net> 1839M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com> 1840R: Philippe Mathieu-Daudé <philmd@linaro.org> 1841R: Yanan Wang <wangyanan55@huawei.com> 1842R: Zhao Liu <zhao1.liu@intel.com> 1843S: Supported 1844F: hw/core/cpu-common.c 1845F: hw/core/cpu-sysemu.c 1846F: hw/core/machine-qmp-cmds.c 1847F: hw/core/machine.c 1848F: hw/core/machine-smp.c 1849F: hw/core/null-machine.c 1850F: hw/core/numa.c 1851F: hw/cpu/cluster.c 1852F: qapi/machine.json 1853F: qapi/machine-common.json 1854F: qapi/machine-target.json 1855F: include/hw/boards.h 1856F: include/hw/core/cpu.h 1857F: include/hw/cpu/cluster.h 1858F: include/sysemu/numa.h 1859F: tests/functional/test_cpu_queries.py 1860F: tests/functional/test_empty_cpu_model.py 1861F: tests/unit/test-smp-parse.c 1862T: git https://gitlab.com/ehabkost/qemu.git machine-next 1863 1864Xtensa Machines 1865--------------- 1866sim 1867M: Max Filippov <jcmvbkbc@gmail.com> 1868S: Maintained 1869F: hw/xtensa/sim.c 1870 1871virt 1872M: Max Filippov <jcmvbkbc@gmail.com> 1873S: Maintained 1874F: hw/xtensa/virt.c 1875 1876XTFPGA (LX60, LX200, ML605, KC705) 1877M: Max Filippov <jcmvbkbc@gmail.com> 1878S: Maintained 1879F: hw/xtensa/xtfpga.c 1880F: hw/net/opencores_eth.c 1881F: include/hw/xtensa/mx_pic.h 1882F: tests/functional/test_xtensa_lx60.py 1883 1884Devices 1885------- 1886Overall Audio frontends 1887M: Gerd Hoffmann <kraxel@redhat.com> 1888S: Odd Fixes 1889F: hw/audio/ 1890F: include/hw/audio/ 1891F: tests/qtest/ac97-test.c 1892F: tests/qtest/es1370-test.c 1893F: tests/qtest/intel-hda-test.c 1894F: tests/qtest/fuzz-sb16-test.c 1895 1896Xilinx CAN 1897M: Francisco Iglesias <francisco.iglesias@amd.com> 1898S: Maintained 1899F: hw/net/can/xlnx-* 1900F: include/hw/net/xlnx-* 1901F: tests/qtest/xlnx-can*-test* 1902 1903EDU 1904M: Jiri Slaby <jslaby@suse.cz> 1905S: Maintained 1906F: hw/misc/edu.c 1907F: docs/specs/edu.rst 1908 1909IDE 1910M: John Snow <jsnow@redhat.com> 1911L: qemu-block@nongnu.org 1912S: Odd Fixes 1913F: include/hw/ide/ 1914F: hw/ide/ 1915F: hw/block/block.c 1916F: hw/block/cdrom.c 1917F: hw/block/hd-geometry.c 1918F: tests/qtest/ide-test.c 1919F: tests/qtest/ahci-test.c 1920F: tests/qtest/cdrom-test.c 1921F: tests/qtest/libqos/ahci* 1922T: git https://gitlab.com/jsnow/qemu.git ide 1923 1924IPMI 1925M: Corey Minyard <minyard@acm.org> 1926S: Maintained 1927F: include/hw/ipmi/* 1928F: hw/ipmi/* 1929F: hw/smbios/smbios_type_38.c 1930F: tests/qtest/ipmi* 1931T: git https://github.com/cminyard/qemu.git master-ipmi-rebase 1932 1933Floppy 1934M: John Snow <jsnow@redhat.com> 1935L: qemu-block@nongnu.org 1936S: Odd Fixes 1937F: hw/block/fdc.c 1938F: hw/block/fdc-internal.h 1939F: hw/block/fdc-isa.c 1940F: hw/block/fdc-sysbus.c 1941F: include/hw/block/fdc.h 1942F: tests/qtest/fdc-test.c 1943T: git https://gitlab.com/jsnow/qemu.git ide 1944 1945Hyper-V VMBus 1946M: Maciej S. Szmigiero <maciej.szmigiero@oracle.com> 1947S: Odd Fixes 1948F: hw/hyperv/vmbus.c 1949F: include/hw/hyperv/vmbus*.h 1950 1951OMAP 1952M: Peter Maydell <peter.maydell@linaro.org> 1953L: qemu-arm@nongnu.org 1954S: Maintained 1955F: hw/*/omap* 1956F: include/hw/arm/omap.h 1957F: docs/system/arm/sx1.rst 1958 1959IPack 1960M: Alberto Garcia <berto@igalia.com> 1961S: Odd Fixes 1962F: hw/char/ipoctal232.c 1963F: hw/ipack/ 1964 1965PCI 1966M: Michael S. Tsirkin <mst@redhat.com> 1967M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com> 1968S: Supported 1969F: include/hw/pci/* 1970F: hw/misc/pci-testdev.c 1971F: hw/pci/* 1972F: hw/pci-bridge/* 1973F: qapi/pci.json 1974F: docs/pci* 1975F: docs/specs/*pci* 1976 1977PCIE DOE 1978M: Huai-Cheng Kuo <hchkuo@avery-design.com.tw> 1979M: Chris Browy <cbrowy@avery-design.com> 1980S: Supported 1981F: include/hw/pci/pcie_doe.h 1982F: hw/pci/pcie_doe.c 1983 1984ACPI/SMBIOS 1985M: Michael S. Tsirkin <mst@redhat.com> 1986M: Igor Mammedov <imammedo@redhat.com> 1987R: Ani Sinha <anisinha@redhat.com> 1988S: Supported 1989F: include/hw/acpi/* 1990F: include/hw/firmware/smbios.h 1991F: hw/acpi/* 1992F: hw/smbios/* 1993F: hw/i386/acpi-build.[hc] 1994F: hw/arm/virt-acpi-build.c 1995F: qapi/acpi.json 1996F: tests/qtest/bios-tables-test* 1997F: tests/qtest/acpi-utils.[hc] 1998F: tests/data/acpi/ 1999F: docs/specs/acpi_cpu_hotplug.rst 2000F: docs/specs/acpi_mem_hotplug.rst 2001F: docs/specs/acpi_nvdimm.rst 2002F: docs/specs/acpi_pci_hotplug.rst 2003F: docs/specs/acpi_hw_reduced_hotplug.rst 2004 2005ARM ACPI Subsystem 2006M: Shannon Zhao <shannon.zhaosl@gmail.com> 2007L: qemu-arm@nongnu.org 2008S: Maintained 2009F: hw/arm/virt-acpi-build.c 2010 2011RISC-V ACPI Subsystem 2012M: Sunil V L <sunilvl@ventanamicro.com> 2013L: qemu-riscv@nongnu.org 2014S: Maintained 2015F: hw/riscv/virt-acpi-build.c 2016 2017ACPI/VIOT 2018M: Jean-Philippe Brucker <jean-philippe@linaro.org> 2019S: Supported 2020F: hw/acpi/viot.c 2021F: hw/acpi/viot.h 2022 2023ACPI/AVOCADO/BIOSBITS 2024M: Ani Sinha <anisinha@redhat.com> 2025M: Michael S. Tsirkin <mst@redhat.com> 2026S: Supported 2027F: tests/functional/acpi-bits/* 2028F: tests/functional/test_acpi_bits.py 2029F: docs/devel/acpi-bits.rst 2030 2031ACPI/HEST/GHES 2032R: Dongjiu Geng <gengdongjiu1@gmail.com> 2033L: qemu-arm@nongnu.org 2034S: Maintained 2035F: hw/acpi/ghes.c 2036F: include/hw/acpi/ghes.h 2037F: docs/specs/acpi_hest_ghes.rst 2038 2039ppc4xx 2040L: qemu-ppc@nongnu.org 2041S: Orphan 2042F: hw/ppc/ppc4xx*.c 2043F: hw/ppc/ppc440_uc.c 2044F: hw/ppc/ppc440.h 2045F: hw/i2c/ppc4xx_i2c.c 2046F: include/hw/pci-host/ppc4xx.h 2047F: include/hw/ppc/ppc4xx.h 2048F: include/hw/i2c/ppc4xx_i2c.h 2049F: hw/intc/ppc-uic.c 2050F: include/hw/intc/ppc-uic.h 2051 2052Character devices 2053M: Marc-André Lureau <marcandre.lureau@redhat.com> 2054R: Paolo Bonzini <pbonzini@redhat.com> 2055S: Odd Fixes 2056F: hw/char/ 2057F: include/hw/char/ 2058 2059Network devices 2060M: Jason Wang <jasowang@redhat.com> 2061S: Odd Fixes 2062F: hw/net/ 2063F: include/hw/net/ 2064F: tests/qtest/virtio-net-test.c 2065F: tests/functional/test_info_usernet.py 2066F: docs/virtio-net-failover.rst 2067T: git https://github.com/jasowang/qemu.git net 2068 2069Parallel NOR Flash devices 2070M: Philippe Mathieu-Daudé <philmd@linaro.org> 2071T: git https://gitlab.com/philmd/qemu.git pflash-next 2072S: Maintained 2073F: hw/block/pflash_cfi*.c 2074F: include/hw/block/flash.h 2075 2076SCSI 2077M: Paolo Bonzini <pbonzini@redhat.com> 2078R: Fam Zheng <fam@euphon.net> 2079S: Supported 2080F: include/hw/scsi/* 2081F: hw/scsi/* 2082F: tests/qtest/virtio-scsi-test.c 2083F: tests/qtest/fuzz-virtio-scsi-test.c 2084F: tests/qtest/am53c974-test.c 2085F: tests/qtest/fuzz-lsi53c895a-test.c 2086T: git https://github.com/bonzini/qemu.git scsi-next 2087 2088SSI 2089M: Alistair Francis <alistair@alistair23.me> 2090S: Maintained 2091F: hw/ssi/* 2092F: hw/block/m25p80* 2093F: include/hw/ssi/ssi.h 2094X: hw/ssi/xilinx_* 2095F: tests/qtest/m25p80-test.c 2096 2097Xilinx SPI 2098M: Alistair Francis <alistair@alistair23.me> 2099S: Maintained 2100F: hw/ssi/xilinx_* 2101 2102SD (Secure Card) 2103M: Philippe Mathieu-Daudé <philmd@linaro.org> 2104M: Bin Meng <bmeng.cn@gmail.com> 2105L: qemu-block@nongnu.org 2106S: Odd Fixes 2107F: include/hw/sd/sd* 2108F: hw/sd/core.c 2109F: hw/sd/sd* 2110F: hw/sd/ssi-sd.c 2111F: tests/qtest/fuzz-sdcard-test.c 2112F: tests/qtest/sdhci-test.c 2113 2114USB 2115S: Orphan 2116F: hw/usb/* 2117F: stubs/usb-dev-stub.c 2118F: tests/qtest/usb-*-test.c 2119F: docs/system/devices/usb.rst 2120F: include/hw/usb.h 2121F: include/hw/usb/ 2122 2123USB (serial adapter) 2124M: Samuel Thibault <samuel.thibault@ens-lyon.org> 2125S: Maintained 2126F: hw/usb/dev-serial.c 2127 2128VFIO 2129M: Alex Williamson <alex.williamson@redhat.com> 2130M: Cédric Le Goater <clg@redhat.com> 2131S: Supported 2132F: hw/vfio/* 2133F: include/hw/vfio/ 2134F: docs/igd-assign.txt 2135F: docs/devel/migration/vfio.rst 2136F: qapi/vfio.json 2137 2138vfio-ccw 2139M: Eric Farman <farman@linux.ibm.com> 2140M: Matthew Rosato <mjrosato@linux.ibm.com> 2141S: Supported 2142F: hw/vfio/ccw.c 2143F: hw/s390x/s390-ccw.c 2144F: include/hw/s390x/s390-ccw.h 2145F: include/hw/s390x/vfio-ccw.h 2146L: qemu-s390x@nongnu.org 2147 2148vfio-ap 2149M: Tony Krowiak <akrowiak@linux.ibm.com> 2150M: Halil Pasic <pasic@linux.ibm.com> 2151M: Jason Herne <jjherne@linux.ibm.com> 2152S: Supported 2153F: hw/s390x/ap-device.c 2154F: hw/s390x/ap-bridge.c 2155F: include/hw/s390x/ap-device.h 2156F: include/hw/s390x/ap-bridge.h 2157F: hw/vfio/ap.c 2158F: docs/system/s390x/vfio-ap.rst 2159L: qemu-s390x@nongnu.org 2160 2161iommufd 2162M: Yi Liu <yi.l.liu@intel.com> 2163M: Eric Auger <eric.auger@redhat.com> 2164M: Zhenzhong Duan <zhenzhong.duan@intel.com> 2165S: Supported 2166F: backends/iommufd.c 2167F: include/sysemu/iommufd.h 2168F: backends/host_iommu_device.c 2169F: include/sysemu/host_iommu_device.h 2170F: include/qemu/chardev_open.h 2171F: util/chardev_open.c 2172F: docs/devel/vfio-iommufd.rst 2173 2174vhost 2175M: Michael S. Tsirkin <mst@redhat.com> 2176R: Stefano Garzarella <sgarzare@redhat.com> 2177S: Supported 2178F: hw/*/*vhost* 2179F: docs/interop/vhost-user.json 2180F: docs/interop/vhost-user.rst 2181F: contrib/vhost-user-*/ 2182F: backends/vhost-user.c 2183F: include/sysemu/vhost-user-backend.h 2184F: subprojects/libvhost-user/ 2185 2186vhost-shadow-virtqueue 2187R: Eugenio Pérez <eperezma@redhat.com> 2188F: hw/virtio/vhost-shadow-virtqueue.* 2189 2190virtio 2191M: Michael S. Tsirkin <mst@redhat.com> 2192S: Supported 2193F: hw/*/virtio* 2194F: hw/virtio/Makefile.objs 2195F: hw/virtio/trace-events 2196F: qapi/virtio.json 2197F: net/vhost-user.c 2198F: include/hw/virtio/ 2199F: docs/devel/virtio* 2200F: docs/devel/migration/virtio.rst 2201F: tests/functional/test_virtio_version.py 2202 2203virtio-balloon 2204M: Michael S. Tsirkin <mst@redhat.com> 2205M: David Hildenbrand <david@redhat.com> 2206S: Maintained 2207F: docs/interop/virtio-balloon-stats.rst 2208F: hw/virtio/virtio-balloon*.c 2209F: include/hw/virtio/virtio-balloon.h 2210F: system/balloon.c 2211F: include/sysemu/balloon.h 2212 2213virtio-9p 2214M: Greg Kurz <groug@kaod.org> 2215M: Christian Schoenebeck <qemu_oss@crudebyte.com> 2216S: Maintained 2217W: https://wiki.qemu.org/Documentation/9p 2218F: hw/9pfs/ 2219X: hw/9pfs/xen-9p* 2220F: fsdev/ 2221F: tests/qtest/virtio-9p-test.c 2222F: tests/qtest/libqos/virtio-9p* 2223T: git https://gitlab.com/gkurz/qemu.git 9p-next 2224T: git https://github.com/cschoenebeck/qemu.git 9p.next 2225 2226virtio-blk 2227M: Stefan Hajnoczi <stefanha@redhat.com> 2228L: qemu-block@nongnu.org 2229S: Supported 2230F: hw/block/virtio-blk-common.c 2231F: hw/block/virtio-blk.c 2232F: hw/block/dataplane/* 2233F: include/hw/virtio/virtio-blk-common.h 2234F: tests/qtest/virtio-blk-test.c 2235T: git https://github.com/stefanha/qemu.git block 2236 2237virtio-ccw 2238M: Cornelia Huck <cohuck@redhat.com> 2239M: Halil Pasic <pasic@linux.ibm.com> 2240M: Eric Farman <farman@linux.ibm.com> 2241S: Supported 2242F: hw/s390x/virtio-ccw*.[hc] 2243F: hw/s390x/vhost-*-ccw.c 2244T: git https://gitlab.com/cohuck/qemu.git s390-next 2245T: git https://github.com/borntraeger/qemu.git s390-next 2246L: qemu-s390x@nongnu.org 2247 2248virtio-dmabuf 2249M: Albert Esteve <aesteve@redhat.com> 2250S: Supported 2251F: hw/display/virtio-dmabuf.c 2252F: include/hw/virtio/virtio-dmabuf.h 2253F: tests/unit/test-virtio-dmabuf.c 2254 2255virtiofs 2256M: Stefan Hajnoczi <stefanha@redhat.com> 2257S: Supported 2258F: hw/virtio/vhost-user-fs* 2259F: include/hw/virtio/vhost-user-fs.h 2260L: virtio-fs@lists.linux.dev 2261 2262virtio-input 2263M: Gerd Hoffmann <kraxel@redhat.com> 2264S: Odd Fixes 2265F: docs/system/devices/vhost-user-input.rst 2266F: hw/input/virtio-input*.c 2267F: hw/virtio/vhost-user-input.c 2268F: include/hw/virtio/virtio-input.h 2269F: contrib/vhost-user-input/* 2270 2271virtio-iommu 2272M: Eric Auger <eric.auger@redhat.com> 2273S: Maintained 2274F: hw/virtio/virtio-iommu*.c 2275F: include/hw/virtio/virtio-iommu.h 2276 2277virtio-serial 2278M: Laurent Vivier <lvivier@redhat.com> 2279R: Amit Shah <amit@kernel.org> 2280S: Supported 2281F: hw/char/virtio-serial-bus.c 2282F: hw/char/virtio-console.c 2283F: include/hw/virtio/virtio-serial.h 2284F: tests/qtest/virtio-serial-test.c 2285 2286virtio-rng 2287M: Laurent Vivier <lvivier@redhat.com> 2288R: Amit Shah <amit@kernel.org> 2289S: Supported 2290F: hw/virtio/virtio-rng.c 2291F: include/hw/virtio/virtio-rng.h 2292F: include/sysemu/rng*.h 2293F: backends/rng*.c 2294F: tests/qtest/virtio-rng-test.c 2295 2296vhost-user-stubs 2297M: Alex Bennée <alex.bennee@linaro.org> 2298S: Maintained 2299F: hw/virtio/vhost-user-base.c 2300F: hw/virtio/vhost-user-device* 2301 2302vhost-user-rng 2303M: Mathieu Poirier <mathieu.poirier@linaro.org> 2304S: Supported 2305F: docs/system/devices/vhost-user-rng.rst 2306F: hw/virtio/vhost-user-rng.c 2307F: hw/virtio/vhost-user-rng-pci.c 2308F: include/hw/virtio/vhost-user-rng.h 2309F: tools/vhost-user-rng/* 2310 2311vhost-user-gpio 2312M: Alex Bennée <alex.bennee@linaro.org> 2313R: Viresh Kumar <viresh.kumar@linaro.org> 2314S: Maintained 2315F: hw/virtio/vhost-user-gpio* 2316F: include/hw/virtio/vhost-user-gpio.h 2317F: tests/qtest/libqos/virtio-gpio.* 2318 2319vhost-user-snd 2320M: Alex Bennée <alex.bennee@linaro.org> 2321R: Manos Pitsidianakis <manos.pitsidianakis@linaro.org> 2322S: Maintained 2323F: hw/virtio/vhost-user-snd* 2324F: include/hw/virtio/vhost-user-snd.h 2325 2326vhost-user-scmi 2327R: mzamazal@redhat.com 2328S: Supported 2329F: hw/virtio/vhost-user-scmi* 2330F: include/hw/virtio/vhost-user-scmi.h 2331F: tests/qtest/libqos/virtio-scmi.* 2332 2333virtio-crypto 2334M: Gonglei <arei.gonglei@huawei.com> 2335S: Supported 2336F: hw/virtio/virtio-crypto.c 2337F: hw/virtio/virtio-crypto-pci.c 2338F: include/hw/virtio/virtio-crypto.h 2339 2340virtio based memory device 2341M: David Hildenbrand <david@redhat.com> 2342S: Supported 2343F: hw/virtio/virtio-md-pci.c 2344F: include/hw/virtio/virtio-md-pci.h 2345F: stubs/virtio-md-pci.c 2346 2347virtio-mem 2348M: David Hildenbrand <david@redhat.com> 2349S: Supported 2350W: https://virtio-mem.gitlab.io/ 2351F: hw/virtio/virtio-mem.c 2352F: hw/virtio/virtio-mem-pci.h 2353F: hw/virtio/virtio-mem-pci.c 2354F: include/hw/virtio/virtio-mem.h 2355 2356virtio-snd 2357M: Gerd Hoffmann <kraxel@redhat.com> 2358R: Manos Pitsidianakis <manos.pitsidianakis@linaro.org> 2359S: Supported 2360F: hw/audio/virtio-snd.c 2361F: hw/audio/virtio-snd-pci.c 2362F: include/hw/audio/virtio-snd.h 2363F: docs/system/devices/virtio-snd.rst 2364 2365nvme 2366M: Keith Busch <kbusch@kernel.org> 2367M: Klaus Jensen <its@irrelevant.dk> 2368R: Jesper Devantier <foss@defmacro.it> 2369L: qemu-block@nongnu.org 2370S: Supported 2371F: hw/nvme/* 2372F: include/block/nvme.h 2373F: tests/qtest/nvme-test.c 2374F: docs/system/devices/nvme.rst 2375T: git git://git.infradead.org/qemu-nvme.git nvme-next 2376 2377ufs 2378M: Jeuk Kim <jeuk20.kim@samsung.com> 2379S: Supported 2380F: hw/ufs/* 2381F: include/block/ufs.h 2382F: tests/qtest/ufs-test.c 2383 2384megasas 2385M: Hannes Reinecke <hare@suse.com> 2386L: qemu-block@nongnu.org 2387S: Supported 2388F: hw/scsi/megasas.c 2389F: hw/scsi/mfi.h 2390F: tests/qtest/megasas-test.c 2391F: tests/qtest/fuzz-megasas-test.c 2392 2393Network packet abstractions 2394M: Dmitry Fleytman <dmitry.fleytman@gmail.com> 2395R: Akihiko Odaki <akihiko.odaki@daynix.com> 2396S: Maintained 2397F: include/net/eth.h 2398F: net/eth.c 2399F: hw/net/net_rx_pkt* 2400F: hw/net/net_tx_pkt* 2401 2402Vmware 2403M: Dmitry Fleytman <dmitry.fleytman@gmail.com> 2404S: Maintained 2405F: docs/specs/vmw_pvscsi-spec.txt 2406F: hw/display/vmware_vga.c 2407F: hw/net/vmxnet* 2408F: hw/scsi/vmw_pvscsi* 2409F: pc-bios/efi-vmxnet3.rom 2410F: pc-bios/vgabios-vmware.bin 2411F: roms/config.vga-vmware 2412F: tests/qtest/vmxnet3-test.c 2413F: docs/specs/vwm_pvscsi-spec.rst 2414 2415Rocker 2416M: Jiri Pirko <jiri@resnulli.us> 2417S: Maintained 2418F: hw/net/rocker/ 2419F: qapi/rocker.json 2420F: tests/rocker/ 2421F: docs/specs/rocker.rst 2422 2423e1000x 2424M: Dmitry Fleytman <dmitry.fleytman@gmail.com> 2425R: Akihiko Odaki <akihiko.odaki@daynix.com> 2426S: Maintained 2427F: hw/net/e1000x* 2428 2429e1000e 2430M: Dmitry Fleytman <dmitry.fleytman@gmail.com> 2431R: Akihiko Odaki <akihiko.odaki@daynix.com> 2432S: Maintained 2433F: hw/net/e1000e* 2434F: tests/qtest/fuzz-e1000e-test.c 2435F: tests/qtest/e1000e-test.c 2436F: tests/qtest/libqos/e1000e.* 2437 2438igb 2439M: Akihiko Odaki <akihiko.odaki@daynix.com> 2440R: Sriram Yagnaraman <sriram.yagnaraman@ericsson.com> 2441S: Maintained 2442F: docs/system/devices/igb.rst 2443F: hw/net/igb* 2444F: tests/functional/test_netdev_ethtool.py 2445F: tests/qtest/igb-test.c 2446F: tests/qtest/libqos/igb.c 2447 2448eepro100 2449M: Stefan Weil <sw@weilnetz.de> 2450S: Maintained 2451F: hw/net/eepro100.c 2452 2453tulip 2454M: Sven Schnelle <svens@stackframe.org> 2455S: Maintained 2456F: hw/net/tulip.c 2457F: hw/net/tulip.h 2458 2459pca954x 2460M: Patrick Leis <venture@google.com> 2461S: Maintained 2462F: hw/i2c/i2c_mux_pca954x.c 2463F: include/hw/i2c/i2c_mux_pca954x.h 2464 2465pcf8574 2466M: Dmitrii Sharikhin <d.sharikhin@yadro.com> 2467S: Maintained 2468F: hw/gpio/pcf8574.c 2469F: include/gpio/pcf8574.h 2470 2471Generic Loader 2472M: Alistair Francis <alistair@alistair23.me> 2473S: Maintained 2474F: hw/core/generic-loader.c 2475F: hw/core/uboot_image.h 2476F: include/hw/core/generic-loader.h 2477F: docs/system/generic-loader.rst 2478 2479Guest Loader 2480M: Alex Bennée <alex.bennee@linaro.org> 2481S: Maintained 2482F: hw/core/guest-loader.c 2483F: docs/system/guest-loader.rst 2484F: tests/avocado/boot_xen.py 2485 2486Intel Hexadecimal Object File Loader 2487M: Su Hang <suhang16@mails.ucas.ac.cn> 2488S: Maintained 2489F: tests/qtest/hexloader-test.c 2490F: tests/data/hex-loader/test.hex 2491 2492CHRP NVRAM 2493M: Thomas Huth <thuth@redhat.com> 2494S: Maintained 2495F: hw/nvram/chrp_nvram.c 2496F: include/hw/nvram/chrp_nvram.h 2497F: tests/qtest/prom-env-test.c 2498 2499VM Generation ID 2500S: Orphan 2501R: Ani Sinha <ani@anisinha.ca> 2502F: hw/acpi/vmgenid.c 2503F: include/hw/acpi/vmgenid.h 2504F: docs/specs/vmgenid.rst 2505F: tests/qtest/vmgenid-test.c 2506 2507LED 2508M: Philippe Mathieu-Daudé <philmd@linaro.org> 2509S: Maintained 2510F: include/hw/misc/led.h 2511F: hw/misc/led.c 2512 2513Unimplemented device 2514M: Peter Maydell <peter.maydell@linaro.org> 2515R: Philippe Mathieu-Daudé <philmd@linaro.org> 2516R: Ani Sinha <ani@anisinha.ca> 2517S: Maintained 2518F: include/hw/misc/unimp.h 2519F: hw/misc/unimp.c 2520 2521Empty slot 2522M: Artyom Tarasenko <atar4qemu@gmail.com> 2523R: Philippe Mathieu-Daudé <philmd@linaro.org> 2524R: Ani Sinha <ani@anisinha.ca> 2525S: Maintained 2526F: include/hw/misc/empty_slot.h 2527F: hw/misc/empty_slot.c 2528 2529Standard VGA 2530M: Gerd Hoffmann <kraxel@redhat.com> 2531S: Maintained 2532F: hw/display/vga* 2533F: hw/display/bochs-display.c 2534F: include/hw/display/vga.h 2535F: include/hw/display/bochs-vbe.h 2536F: docs/specs/standard-vga.rst 2537 2538ramfb 2539M: Gerd Hoffmann <kraxel@redhat.com> 2540S: Maintained 2541F: hw/display/ramfb*.c 2542F: include/hw/display/ramfb.h 2543 2544virtio-gpu 2545S: Orphan 2546F: hw/display/virtio-gpu* 2547F: hw/display/virtio-vga.* 2548F: include/hw/virtio/virtio-gpu.h 2549F: docs/system/devices/virtio-gpu.rst 2550 2551vhost-user-blk 2552M: Raphael Norwitz <raphael@enfabrica.net> 2553S: Maintained 2554F: contrib/vhost-user-blk/ 2555F: contrib/vhost-user-scsi/ 2556F: hw/block/vhost-user-blk.c 2557F: hw/block/virtio-blk-common.c 2558F: hw/scsi/vhost-user-scsi.c 2559F: hw/virtio/vhost-user-blk-pci.c 2560F: hw/virtio/vhost-user-scsi-pci.c 2561F: include/hw/virtio/vhost-user-blk.h 2562F: include/hw/virtio/vhost-user-scsi.h 2563F: include/hw/virtio/virtio-blk-common.h 2564 2565vhost-user-gpu 2566M: Marc-André Lureau <marcandre.lureau@redhat.com> 2567S: Maintained 2568F: docs/interop/vhost-user-gpu.rst 2569F: contrib/vhost-user-gpu 2570F: hw/display/vhost-user-* 2571 2572Cirrus VGA 2573M: Gerd Hoffmann <kraxel@redhat.com> 2574S: Odd Fixes 2575W: https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/ 2576F: hw/display/cirrus* 2577 2578EDID Generator 2579M: Gerd Hoffmann <kraxel@redhat.com> 2580S: Maintained 2581F: hw/display/edid* 2582F: include/hw/display/edid.h 2583F: qemu-edid.c 2584 2585PIIX4 South Bridge (i82371AB) 2586M: Hervé Poussineau <hpoussin@reactos.org> 2587M: Philippe Mathieu-Daudé <philmd@linaro.org> 2588S: Maintained 2589F: hw/isa/piix.c 2590F: include/hw/southbridge/piix.h 2591 2592VIA South Bridges (VT82C686B, VT8231) 2593M: BALATON Zoltan <balaton@eik.bme.hu> 2594M: Philippe Mathieu-Daudé <philmd@linaro.org> 2595R: Jiaxun Yang <jiaxun.yang@flygoat.com> 2596S: Maintained 2597F: hw/isa/vt82c686.c 2598F: hw/usb/vt82c686-uhci-pci.c 2599F: include/hw/isa/vt82c686.h 2600 2601Firmware configuration (fw_cfg) 2602M: Philippe Mathieu-Daudé <philmd@linaro.org> 2603R: Gerd Hoffmann <kraxel@redhat.com> 2604S: Supported 2605F: docs/specs/fw_cfg.txt 2606F: hw/nvram/fw_cfg*.c 2607F: stubs/fw_cfg.c 2608F: include/hw/nvram/fw_cfg.h 2609F: include/standard-headers/linux/qemu_fw_cfg.h 2610F: tests/qtest/libqos/fw_cfg.c 2611F: tests/qtest/fw_cfg-test.c 2612T: git https://github.com/philmd/qemu.git fw_cfg-next 2613 2614XIVE 2615M: Cédric Le Goater <clg@kaod.org> 2616R: Frédéric Barrat <fbarrat@linux.ibm.com> 2617L: qemu-ppc@nongnu.org 2618S: Odd Fixes 2619F: hw/*/*xive* 2620F: include/hw/*/*xive* 2621F: docs/*/*xive* 2622 2623Renesas peripherals 2624R: Yoshinori Sato <ysato@users.sourceforge.jp> 2625R: Magnus Damm <magnus.damm@gmail.com> 2626S: Odd Fixes 2627F: hw/char/renesas_sci.c 2628F: hw/char/sh_serial.c 2629F: hw/timer/renesas_*.c 2630F: hw/timer/sh_timer.c 2631F: include/hw/char/renesas_sci.h 2632F: include/hw/sh4/sh.h 2633F: include/hw/timer/renesas_*.h 2634 2635Renesas RX peripherals 2636R: Yoshinori Sato <ysato@users.sourceforge.jp> 2637S: Orphan 2638F: hw/intc/rx_icu.c 2639F: hw/rx/ 2640F: include/hw/intc/rx_icu.h 2641F: include/hw/rx/ 2642 2643CAN bus subsystem and hardware 2644M: Pavel Pisa <pisa@cmp.felk.cvut.cz> 2645M: Francisco Iglesias <francisco.iglesias@amd.com> 2646S: Maintained 2647W: https://canbus.pages.fel.cvut.cz/ 2648F: net/can/* 2649F: hw/net/can/* 2650F: include/net/can_*.h 2651F: docs/system/devices/can.rst 2652 2653OpenPIC interrupt controller 2654M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> 2655S: Odd Fixes 2656F: hw/intc/openpic.c 2657F: include/hw/ppc/openpic.h 2658 2659MIPS CPS 2660M: Philippe Mathieu-Daudé <philmd@linaro.org> 2661S: Odd Fixes 2662F: hw/misc/mips_* 2663F: include/hw/misc/mips_* 2664 2665MIPS GIC 2666M: Philippe Mathieu-Daudé <philmd@linaro.org> 2667S: Odd Fixes 2668F: hw/intc/mips_gic.c 2669F: hw/timer/mips_gictimer.c 2670F: include/hw/intc/mips_gic.h 2671F: include/hw/timer/mips_gictimer.h 2672 2673S390 3270 device 2674M: Halil Pasic <pasic@linux.ibm.com> 2675M: Christian Borntraeger <borntraeger@linux.ibm.com> 2676S: Odd fixes 2677F: include/hw/s390x/3270-ccw.h 2678F: hw/char/terminal3270.c 2679F: hw/s390x/3270-ccw.c 2680L: qemu-s390x@nongnu.org 2681 2682S390 diag 288 watchdog 2683M: Halil Pasic <pasic@linux.ibm.com> 2684M: Christian Borntraeger <borntraeger@linux.ibm.com> 2685S: Supported 2686F: hw/watchdog/wdt_diag288.c 2687F: include/hw/watchdog/wdt_diag288.h 2688L: qemu-s390x@nongnu.org 2689 2690S390 storage key device 2691M: Halil Pasic <pasic@linux.ibm.com> 2692M: Christian Borntraeger <borntraeger@linux.ibm.com> 2693S: Supported 2694F: hw/s390x/storage-keys.h 2695F: hw/s390x/s390-skeys*.c 2696L: qemu-s390x@nongnu.org 2697 2698S390 storage attribute device 2699M: Halil Pasic <pasic@linux.ibm.com> 2700M: Christian Borntraeger <borntraeger@linux.ibm.com> 2701S: Supported 2702F: hw/s390x/storage-attributes.h 2703F: hw/s390x/s390-stattrib*.c 2704L: qemu-s390x@nongnu.org 2705 2706S390 floating interrupt controller 2707M: Halil Pasic <pasic@linux.ibm.com> 2708M: Christian Borntraeger <borntraeger@linux.ibm.com> 2709M: David Hildenbrand <david@redhat.com> 2710S: Supported 2711F: hw/intc/s390_flic*.c 2712F: include/hw/s390x/s390_flic.h 2713L: qemu-s390x@nongnu.org 2714 2715CanoKey 2716M: Hongren (Zenithal) Zheng <i@zenithal.me> 2717S: Maintained 2718R: Canokeys.org <contact@canokeys.org> 2719F: hw/usb/canokey.c 2720F: hw/usb/canokey.h 2721F: docs/system/devices/canokey.rst 2722 2723Hyper-V Dynamic Memory Protocol 2724M: Maciej S. Szmigiero <maciej.szmigiero@oracle.com> 2725S: Supported 2726F: hw/hyperv/hv-balloon*.c 2727F: hw/hyperv/hv-balloon*.h 2728F: include/hw/hyperv/dynmem-proto.h 2729F: include/hw/hyperv/hv-balloon.h 2730 2731Subsystems 2732---------- 2733Overall Audio backends 2734M: Gerd Hoffmann <kraxel@redhat.com> 2735M: Marc-André Lureau <marcandre.lureau@redhat.com> 2736S: Odd Fixes 2737F: audio/ 2738X: audio/alsaaudio.c 2739X: audio/coreaudio.c 2740X: audio/dsound* 2741X: audio/jackaudio.c 2742X: audio/ossaudio.c 2743X: audio/paaudio.c 2744X: audio/sdlaudio.c 2745X: audio/sndioaudio.c 2746X: audio/spiceaudio.c 2747F: qapi/audio.json 2748 2749ALSA Audio backend 2750M: Gerd Hoffmann <kraxel@redhat.com> 2751R: Christian Schoenebeck <qemu_oss@crudebyte.com> 2752S: Odd Fixes 2753F: audio/alsaaudio.c 2754 2755Core Audio framework backend 2756M: Gerd Hoffmann <kraxel@redhat.com> 2757M: Philippe Mathieu-Daudé <philmd@linaro.org> 2758R: Christian Schoenebeck <qemu_oss@crudebyte.com> 2759R: Akihiko Odaki <akihiko.odaki@daynix.com> 2760S: Odd Fixes 2761F: audio/coreaudio.c 2762 2763DSound Audio backend 2764M: Gerd Hoffmann <kraxel@redhat.com> 2765S: Odd Fixes 2766F: audio/dsound* 2767 2768JACK Audio Connection Kit backend 2769M: Gerd Hoffmann <kraxel@redhat.com> 2770R: Christian Schoenebeck <qemu_oss@crudebyte.com> 2771S: Odd Fixes 2772F: audio/jackaudio.c 2773 2774Open Sound System (OSS) Audio backend 2775M: Gerd Hoffmann <kraxel@redhat.com> 2776S: Odd Fixes 2777F: audio/ossaudio.c 2778 2779PulseAudio backend 2780M: Gerd Hoffmann <kraxel@redhat.com> 2781S: Odd Fixes 2782F: audio/paaudio.c 2783 2784SDL Audio backend 2785M: Gerd Hoffmann <kraxel@redhat.com> 2786R: Thomas Huth <huth@tuxfamily.org> 2787S: Odd Fixes 2788F: audio/sdlaudio.c 2789 2790Sndio Audio backend 2791M: Gerd Hoffmann <kraxel@redhat.com> 2792R: Alexandre Ratchov <alex@caoua.org> 2793S: Odd Fixes 2794F: audio/sndioaudio.c 2795 2796Block layer core 2797M: Kevin Wolf <kwolf@redhat.com> 2798M: Hanna Reitz <hreitz@redhat.com> 2799L: qemu-block@nongnu.org 2800S: Supported 2801F: block* 2802F: block/ 2803F: hw/block/ 2804F: qapi/block*.json 2805F: qapi/transaction.json 2806F: include/block/ 2807F: include/sysemu/block-*.h 2808F: qemu-img* 2809F: docs/tools/qemu-img.rst 2810F: qemu-io* 2811F: tests/qemu-iotests/ 2812F: util/qemu-progress.c 2813F: qobject/block-qdict.c 2814F: tests/unit/check-block-qdict.c 2815T: git https://repo.or.cz/qemu/kevin.git block 2816 2817Storage daemon 2818M: Kevin Wolf <kwolf@redhat.com> 2819L: qemu-block@nongnu.org 2820S: Supported 2821F: storage-daemon/ 2822F: docs/interop/qemu-storage-daemon-qmp-ref.rst 2823F: docs/tools/qemu-storage-daemon.rst 2824T: git https://repo.or.cz/qemu/kevin.git block 2825 2826Block I/O path 2827M: Stefan Hajnoczi <stefanha@redhat.com> 2828M: Fam Zheng <fam@euphon.net> 2829L: qemu-block@nongnu.org 2830S: Supported 2831F: util/async.c 2832F: util/aio-*.c 2833F: util/aio-*.h 2834F: util/defer-call.c 2835F: util/fdmon-*.c 2836F: block/io.c 2837F: include/block/aio.h 2838F: include/block/aio-wait.h 2839F: include/qemu/defer-call.h 2840F: scripts/qemugdb/aio.py 2841F: tests/unit/test-fdmon-epoll.c 2842T: git https://github.com/stefanha/qemu.git block 2843 2844Block SCSI subsystem 2845M: Paolo Bonzini <pbonzini@redhat.com> 2846R: Fam Zheng <fam@euphon.net> 2847L: qemu-block@nongnu.org 2848S: Supported 2849F: include/scsi/* 2850F: scsi/* 2851 2852Block Jobs 2853M: John Snow <jsnow@redhat.com> 2854M: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru> 2855L: qemu-block@nongnu.org 2856S: Supported 2857F: blockjob.c 2858F: include/block/blockjob.h 2859F: job.c 2860F: job-qmp.c 2861F: include/qemu/job.h 2862F: block/backup.c 2863F: block/commit.c 2864F: block/stream.c 2865F: block/mirror.c 2866F: qapi/job.json 2867F: block/block-copy.c 2868F: include/block/block-copy.h 2869F: block/reqlist.c 2870F: include/block/reqlist.h 2871F: block/copy-before-write.h 2872F: block/copy-before-write.c 2873F: block/snapshot-access.c 2874F: include/block/aio_task.h 2875F: block/aio_task.c 2876F: util/qemu-co-shared-resource.c 2877F: include/qemu/co-shared-resource.h 2878T: git https://gitlab.com/jsnow/qemu.git jobs 2879T: git https://gitlab.com/vsementsov/qemu.git block 2880 2881Compute Express Link 2882M: Jonathan Cameron <jonathan.cameron@huawei.com> 2883R: Fan Ni <fan.ni@samsung.com> 2884S: Supported 2885F: hw/cxl/ 2886F: hw/mem/cxl_type3.c 2887F: include/hw/cxl/ 2888F: qapi/cxl.json 2889 2890Dirty Bitmaps 2891M: Eric Blake <eblake@redhat.com> 2892M: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru> 2893R: John Snow <jsnow@redhat.com> 2894L: qemu-block@nongnu.org 2895S: Supported 2896F: include/qemu/hbitmap.h 2897F: include/block/dirty-bitmap.h 2898F: block/monitor/bitmap-qmp-cmds.c 2899F: block/dirty-bitmap.c 2900F: block/qcow2-bitmap.c 2901F: migration/block-dirty-bitmap.c 2902F: util/hbitmap.c 2903F: tests/unit/test-hbitmap.c 2904F: docs/interop/bitmaps.rst 2905T: git https://repo.or.cz/qemu/ericb.git bitmaps 2906T: git https://gitlab.com/vsementsov/qemu.git block 2907 2908Character device backends 2909M: Marc-André Lureau <marcandre.lureau@redhat.com> 2910R: Paolo Bonzini <pbonzini@redhat.com> 2911S: Maintained 2912F: chardev/ 2913F: include/chardev/ 2914F: qapi/char.json 2915 2916Character Devices (Braille) 2917M: Samuel Thibault <samuel.thibault@ens-lyon.org> 2918S: Maintained 2919F: chardev/baum.c 2920 2921Command line option argument parsing 2922M: Markus Armbruster <armbru@redhat.com> 2923S: Supported 2924F: include/qemu/option.h 2925F: tests/unit/test-keyval.c 2926F: tests/unit/test-qemu-opts.c 2927F: tests/functional/test_version.py 2928F: util/keyval.c 2929F: util/qemu-option.c 2930 2931Coverity model 2932M: Markus Armbruster <armbru@redhat.com> 2933S: Supported 2934F: scripts/coverity-model.c 2935 2936Coverity Scan integration 2937M: Peter Maydell <peter.maydell@linaro.org> 2938S: Maintained 2939F: scripts/coverity-scan/ 2940 2941Device Tree 2942M: Alistair Francis <alistair.francis@wdc.com> 2943R: David Gibson <david@gibson.dropbear.id.au> 2944S: Maintained 2945F: system/device_tree.c 2946F: include/sysemu/device_tree.h 2947 2948Dump 2949S: Supported 2950M: Marc-André Lureau <marcandre.lureau@redhat.com> 2951F: dump/ 2952F: hw/misc/vmcoreinfo.c 2953F: include/hw/misc/vmcoreinfo.h 2954F: include/qemu/win_dump_defs 2955F: include/sysemu/dump-arch.h 2956F: include/sysemu/dump.h 2957F: qapi/dump.json 2958F: scripts/dump-guest-memory.py 2959F: stubs/dump.c 2960F: docs/specs/vmcoreinfo.rst 2961 2962Error reporting 2963M: Markus Armbruster <armbru@redhat.com> 2964S: Supported 2965F: include/qapi/error.h 2966F: include/qemu/error-report.h 2967F: qapi/error.json 2968F: util/error.c 2969F: util/error-report.c 2970F: scripts/coccinelle/err-bad-newline.cocci 2971F: scripts/coccinelle/error-use-after-free.cocci 2972F: scripts/coccinelle/error_propagate_null.cocci 2973F: scripts/coccinelle/remove_local_err.cocci 2974F: scripts/coccinelle/use-error_fatal.cocci 2975F: scripts/coccinelle/errp-guard.cocci 2976 2977GDB stub 2978M: Alex Bennée <alex.bennee@linaro.org> 2979R: Philippe Mathieu-Daudé <philmd@linaro.org> 2980S: Maintained 2981F: docs/system/gdb.rst 2982F: gdbstub/* 2983F: include/exec/gdbstub.h 2984F: include/gdbstub/* 2985F: gdb-xml/ 2986F: tests/tcg/multiarch/gdbstub/* 2987F: scripts/feature_to_c.py 2988F: scripts/probe-gdb-support.py 2989T: git https://gitlab.com/stsquad/qemu gdbstub/next 2990 2991Memory API 2992M: Paolo Bonzini <pbonzini@redhat.com> 2993M: Peter Xu <peterx@redhat.com> 2994M: David Hildenbrand <david@redhat.com> 2995R: Philippe Mathieu-Daudé <philmd@linaro.org> 2996S: Supported 2997F: include/exec/ioport.h 2998F: include/exec/memop.h 2999F: include/exec/memory.h 3000F: include/exec/ram_addr.h 3001F: include/exec/ramblock.h 3002F: include/sysemu/memory_mapping.h 3003F: system/dma-helpers.c 3004F: system/ioport.c 3005F: system/memory.c 3006F: system/memory_mapping.c 3007F: system/physmem.c 3008F: include/exec/memory-internal.h 3009F: scripts/coccinelle/memory-region-housekeeping.cocci 3010 3011Memory devices 3012M: David Hildenbrand <david@redhat.com> 3013M: Igor Mammedov <imammedo@redhat.com> 3014R: Xiao Guangrong <xiaoguangrong.eric@gmail.com> 3015S: Supported 3016F: hw/mem/memory-device.c 3017F: hw/mem/nvdimm.c 3018F: hw/mem/pc-dimm.c 3019F: include/hw/mem/memory-device.h 3020F: include/hw/mem/nvdimm.h 3021F: include/hw/mem/pc-dimm.h 3022F: stubs/memory_device.c 3023F: docs/nvdimm.txt 3024 3025SPICE 3026S: Orphan 3027F: include/ui/qemu-spice.h 3028F: include/ui/spice-display.h 3029F: ui/spice-*.c 3030F: audio/spiceaudio.c 3031F: hw/display/qxl* 3032F: qapi/ui.json 3033F: docs/spice-port-fqdn.txt 3034 3035Graphics 3036M: Marc-André Lureau <marcandre.lureau@redhat.com> 3037S: Odd Fixes 3038F: ui/ 3039F: include/ui/ 3040F: qapi/ui.json 3041F: util/drm.c 3042F: docs/devel/ui.rst 3043 3044Cocoa graphics 3045M: Peter Maydell <peter.maydell@linaro.org> 3046M: Philippe Mathieu-Daudé <philmd@linaro.org> 3047R: Akihiko Odaki <akihiko.odaki@daynix.com> 3048S: Odd Fixes 3049F: ui/cocoa.m 3050 3051Main loop 3052M: Paolo Bonzini <pbonzini@redhat.com> 3053S: Maintained 3054F: include/qemu/main-loop.h 3055F: include/sysemu/runstate.h 3056F: include/sysemu/runstate-action.h 3057F: util/main-loop.c 3058F: util/qemu-timer*.c 3059F: system/vl.c 3060F: system/main.c 3061F: system/cpus.c 3062F: system/cpu-throttle.c 3063F: system/cpu-timers.c 3064F: system/runstate* 3065F: qapi/run-state.json 3066 3067Read, Copy, Update (RCU) 3068M: Paolo Bonzini <pbonzini@redhat.com> 3069S: Maintained 3070F: docs/devel/lockcnt.rst 3071F: docs/devel/rcu.rst 3072F: include/qemu/rcu*.h 3073F: include/qemu/lockcnt.h 3074F: tests/unit/rcutorture.c 3075F: tests/unit/test-rcu-*.c 3076F: util/lockcnt.c 3077F: util/rcu.c 3078 3079Human Monitor (HMP) 3080M: Dr. David Alan Gilbert <dave@treblig.org> 3081S: Maintained 3082F: monitor/monitor-internal.h 3083F: monitor/misc.c 3084F: monitor/monitor.c 3085F: monitor/hmp* 3086F: hmp.h 3087F: hmp-commands*.hx 3088F: include/monitor/hmp-target.h 3089F: tests/qtest/test-hmp.c 3090F: include/qemu/qemu-print.h 3091F: util/qemu-print.c 3092 3093Network device backends 3094M: Jason Wang <jasowang@redhat.com> 3095S: Maintained 3096F: net/ 3097F: include/net/ 3098F: qemu-bridge-helper.c 3099T: git https://github.com/jasowang/qemu.git net 3100F: qapi/net.json 3101 3102Netmap network backend 3103M: Luigi Rizzo <rizzo@iet.unipi.it> 3104M: Giuseppe Lettieri <g.lettieri@iet.unipi.it> 3105M: Vincenzo Maffione <v.maffione@gmail.com> 3106W: http://info.iet.unipi.it/~luigi/netmap/ 3107S: Maintained 3108F: net/netmap.c 3109 3110AF_XDP network backend 3111R: Ilya Maximets <i.maximets@ovn.org> 3112F: net/af-xdp.c 3113 3114Host Memory Backends 3115M: David Hildenbrand <david@redhat.com> 3116M: Igor Mammedov <imammedo@redhat.com> 3117S: Maintained 3118F: backends/hostmem*.c 3119F: include/sysemu/hostmem.h 3120F: docs/system/vm-templating.rst 3121T: git https://gitlab.com/ehabkost/qemu.git machine-next 3122 3123Cryptodev Backends 3124M: Gonglei <arei.gonglei@huawei.com> 3125M: zhenwei pi <pizhenwei@bytedance.com> 3126S: Maintained 3127F: include/sysemu/cryptodev*.h 3128F: backends/cryptodev*.c 3129F: qapi/cryptodev.json 3130 3131Python library 3132M: John Snow <jsnow@redhat.com> 3133M: Cleber Rosa <crosa@redhat.com> 3134S: Maintained 3135F: python/ 3136T: git https://gitlab.com/jsnow/qemu.git python 3137 3138Python scripts 3139M: John Snow <jsnow@redhat.com> 3140M: Cleber Rosa <crosa@redhat.com> 3141S: Odd Fixes 3142F: scripts/*.py 3143F: tests/*.py 3144 3145Benchmark util 3146M: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru> 3147S: Maintained 3148F: scripts/simplebench/ 3149T: git https://gitlab.com/vsementsov/qemu.git simplebench 3150 3151Transactions helper 3152M: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru> 3153S: Maintained 3154F: include/qemu/transactions.h 3155F: util/transactions.c 3156T: git https://gitlab.com/vsementsov/qemu.git block 3157 3158QAPI 3159M: Markus Armbruster <armbru@redhat.com> 3160M: Michael Roth <michael.roth@amd.com> 3161S: Supported 3162F: qapi/ 3163X: qapi/*.json 3164F: include/qapi/ 3165X: include/qapi/qmp/ 3166F: include/qapi/qmp/dispatch.h 3167F: tests/qapi-schema/ 3168F: tests/unit/test-*-visitor.c 3169F: tests/unit/test-qapi-*.c 3170F: tests/unit/test-qmp-*.c 3171F: tests/unit/test-visitor-serialization.c 3172F: scripts/qapi-gen.py 3173F: scripts/qapi/* 3174F: docs/sphinx/qapidoc.py 3175F: docs/devel/qapi* 3176T: git https://repo.or.cz/qemu/armbru.git qapi-next 3177 3178QAPI Schema 3179M: Eric Blake <eblake@redhat.com> 3180M: Markus Armbruster <armbru@redhat.com> 3181S: Supported 3182F: qapi/*.json 3183F: qga/qapi-schema.json 3184T: git https://repo.or.cz/qemu/armbru.git qapi-next 3185 3186QObject 3187M: Markus Armbruster <armbru@redhat.com> 3188S: Supported 3189F: qobject/ 3190F: include/qapi/qmp/ 3191X: include/qapi/qmp/dispatch.h 3192F: scripts/coccinelle/qobject.cocci 3193F: tests/unit/check-qdict.c 3194F: tests/unit/check-qjson.c 3195F: tests/unit/check-qlist.c 3196F: tests/unit/check-qlit.c 3197F: tests/unit/check-qnull.c 3198F: tests/unit/check-qnum.c 3199F: tests/unit/check-qobject.c 3200F: tests/unit/check-qstring.c 3201F: tests/data/qobject/qdict.txt 3202T: git https://repo.or.cz/qemu/armbru.git qapi-next 3203 3204QEMU Guest Agent 3205M: Michael Roth <michael.roth@amd.com> 3206M: Konstantin Kostiuk <kkostiuk@redhat.com> 3207S: Maintained 3208F: qga/ 3209F: contrib/systemd/qemu-guest-agent.service 3210F: docs/interop/qemu-ga.rst 3211F: docs/interop/qemu-ga-ref.rst 3212F: scripts/qemu-guest-agent/ 3213F: tests/*/test-qga* 3214T: git https://github.com/mdroth/qemu.git qga 3215 3216QEMU Guest Agent Win32 3217M: Konstantin Kostiuk <kkostiuk@redhat.com> 3218S: Maintained 3219F: qga/*win32* 3220F: qga/vss-win32/ 3221F: qga/installer/ 3222T: git https://github.com/kostyanf14/qemu.git qga-win32 3223 3224QOM 3225M: Paolo Bonzini <pbonzini@redhat.com> 3226R: Daniel P. Berrange <berrange@redhat.com> 3227R: Eduardo Habkost <eduardo@habkost.net> 3228S: Supported 3229F: docs/devel/qom.rst 3230F: docs/qdev-device-use.txt 3231F: hw/core/qdev* 3232F: hw/core/bus.c 3233F: hw/core/sysbus.c 3234F: include/hw/qdev* 3235F: include/monitor/qdev.h 3236F: include/qom/ 3237F: qapi/qom.json 3238F: qapi/qdev.json 3239F: scripts/coccinelle/qom-parent-type.cocci 3240F: scripts/qom-cast-macro-clean-cocci-gen.py 3241F: system/qdev-monitor.c 3242F: stubs/qdev.c 3243F: qom/ 3244F: tests/unit/check-qom-interface.c 3245F: tests/unit/check-qom-proplist.c 3246F: tests/unit/test-qdev-global-props.c 3247 3248QOM boilerplate conversion script 3249M: Eduardo Habkost <eduardo@habkost.net> 3250S: Maintained 3251F: scripts/codeconverter/ 3252 3253QMP 3254M: Markus Armbruster <armbru@redhat.com> 3255S: Supported 3256F: monitor/monitor-internal.h 3257F: monitor/qmp* 3258F: monitor/misc.c 3259F: monitor/monitor.c 3260F: qapi/control.json 3261F: qapi/error.json 3262F: qapi/introspect.json 3263F: docs/devel/*qmp-* 3264F: docs/interop/*qmp-* 3265F: scripts/qmp/ 3266F: tests/qtest/qmp-test.c 3267F: tests/qtest/qmp-cmd-test.c 3268T: git https://repo.or.cz/qemu/armbru.git qapi-next 3269 3270qtest 3271M: Fabiano Rosas <farosas@suse.de> 3272M: Laurent Vivier <lvivier@redhat.com> 3273R: Paolo Bonzini <pbonzini@redhat.com> 3274S: Maintained 3275F: system/qtest.c 3276F: include/sysemu/qtest.h 3277F: accel/qtest/ 3278F: tests/qtest/ 3279F: docs/devel/qgraph.rst 3280F: docs/devel/qtest.rst 3281X: tests/qtest/bios-tables-test* 3282X: tests/qtest/migration-* 3283 3284Device Fuzzing 3285M: Alexander Bulekov <alxndr@bu.edu> 3286R: Paolo Bonzini <pbonzini@redhat.com> 3287R: Bandan Das <bsd@redhat.com> 3288R: Stefan Hajnoczi <stefanha@redhat.com> 3289R: Fabiano Rosas <farosas@suse.de> 3290R: Darren Kenny <darren.kenny@oracle.com> 3291R: Qiuhao Li <Qiuhao.Li@outlook.com> 3292S: Maintained 3293F: tests/qtest/fuzz/ 3294F: tests/qtest/fuzz-*test.c 3295F: tests/docker/test-fuzz 3296F: scripts/oss-fuzz/ 3297F: hw/mem/sparse-mem.c 3298F: docs/devel/fuzzing.rst 3299 3300Register API 3301M: Alistair Francis <alistair@alistair23.me> 3302S: Maintained 3303F: hw/core/register.c 3304F: include/hw/register.h 3305F: include/hw/registerfields.h 3306 3307Rust 3308M: Manos Pitsidianakis <manos.pitsidianakis@linaro.org> 3309S: Maintained 3310F: rust/qemu-api 3311F: rust/qemu-api-macros 3312F: rust/rustfmt.toml 3313 3314SLIRP 3315M: Samuel Thibault <samuel.thibault@ens-lyon.org> 3316S: Maintained 3317F: net/slirp.c 3318F: include/net/slirp.h 3319T: git https://people.debian.org/~sthibault/qemu.git slirp 3320 3321Stats 3322S: Orphan 3323F: include/sysemu/stats.h 3324F: stats/ 3325F: qapi/stats.json 3326 3327Streams 3328M: Edgar E. Iglesias <edgar.iglesias@gmail.com> 3329S: Maintained 3330F: hw/core/stream.c 3331F: include/hw/stream.h 3332 3333Stubs 3334M: Paolo Bonzini <pbonzini@redhat.com> 3335S: Maintained 3336F: stubs/ 3337 3338Tracing 3339M: Stefan Hajnoczi <stefanha@redhat.com> 3340R: Mads Ynddal <mads@ynddal.dk> 3341S: Maintained 3342F: trace/ 3343F: trace-events 3344F: docs/qemu-option-trace.rst.inc 3345F: qapi/trace.json 3346F: scripts/tracetool.py 3347F: scripts/tracetool/ 3348F: scripts/qemu-trace-stap* 3349F: docs/tools/qemu-trace-stap.rst 3350F: docs/devel/tracing.rst 3351T: git https://github.com/stefanha/qemu.git tracing 3352 3353Simpletrace 3354M: Mads Ynddal <mads@ynddal.dk> 3355S: Maintained 3356F: scripts/simpletrace.py 3357 3358TPM 3359M: Stefan Berger <stefanb@linux.ibm.com> 3360S: Maintained 3361F: system/tpm* 3362F: hw/tpm/* 3363F: include/hw/acpi/tpm.h 3364F: include/sysemu/tpm* 3365F: qapi/tpm.json 3366F: backends/tpm/ 3367F: tests/qtest/*tpm* 3368F: docs/specs/tpm.rst 3369T: git https://github.com/stefanberger/qemu-tpm.git tpm-next 3370 3371SPDM 3372M: Alistair Francis <alistair.francis@wdc.com> 3373S: Maintained 3374F: backends/spdm-socket.c 3375F: include/sysemu/spdm-socket.h 3376 3377Checkpatch 3378S: Odd Fixes 3379F: scripts/checkpatch.pl 3380 3381Migration 3382M: Peter Xu <peterx@redhat.com> 3383M: Fabiano Rosas <farosas@suse.de> 3384S: Maintained 3385F: hw/core/vmstate-if.c 3386F: include/hw/vmstate-if.h 3387F: include/migration/ 3388F: include/qemu/userfaultfd.h 3389F: migration/ 3390F: scripts/vmstate-static-checker.py 3391F: tests/vmstate-static-checker-data/ 3392F: tests/qtest/migration-* 3393F: docs/devel/migration/ 3394F: qapi/migration.json 3395F: tests/migration/ 3396F: util/userfaultfd.c 3397X: migration/rdma* 3398 3399RDMA Migration 3400R: Li Zhijian <lizhijian@fujitsu.com> 3401R: Peter Xu <peterx@redhat.com> 3402S: Odd Fixes 3403F: migration/rdma* 3404 3405Migration dirty limit and dirty page rate 3406M: Hyman Huang <yong.huang@smartx.com> 3407S: Maintained 3408F: system/dirtylimit.c 3409F: include/sysemu/dirtylimit.h 3410F: migration/dirtyrate.c 3411F: migration/dirtyrate.h 3412F: include/sysemu/dirtyrate.h 3413F: docs/devel/migration/dirty-limit.rst 3414 3415Detached LUKS header 3416M: Hyman Huang <yong.huang@smartx.com> 3417S: Maintained 3418F: tests/qemu-iotests/tests/luks-detached-header 3419F: docs/devel/luks-detached-header.rst 3420 3421D-Bus 3422M: Marc-André Lureau <marcandre.lureau@redhat.com> 3423S: Maintained 3424F: backends/dbus-vmstate.c 3425F: ui/dbus* 3426F: audio/dbus* 3427F: util/dbus.c 3428F: include/ui/dbus* 3429F: include/qemu/dbus.h 3430F: docs/interop/dbus* 3431F: docs/sphinx/dbus* 3432F: docs/sphinx/fakedbusdoc.py 3433F: tests/qtest/dbus* 3434F: scripts/xml-preprocess* 3435 3436Seccomp 3437M: Daniel P. Berrange <berrange@redhat.com> 3438S: Odd Fixes 3439F: system/qemu-seccomp.c 3440F: include/sysemu/seccomp.h 3441F: tests/unit/test-seccomp.c 3442 3443Cryptography 3444M: Daniel P. Berrange <berrange@redhat.com> 3445S: Maintained 3446F: crypto/ 3447F: include/crypto/ 3448F: host/include/*/host/crypto/ 3449F: qapi/crypto.json 3450F: tests/unit/test-crypto-* 3451F: tests/bench/benchmark-crypto-* 3452F: tests/unit/crypto-tls-* 3453F: tests/unit/pkix_asn1_tab.c.inc 3454F: qemu.sasl 3455 3456Coroutines 3457M: Stefan Hajnoczi <stefanha@redhat.com> 3458M: Kevin Wolf <kwolf@redhat.com> 3459S: Maintained 3460F: util/*coroutine* 3461F: include/qemu/coroutine* 3462F: tests/unit/test-coroutine.c 3463 3464Buffers 3465M: Daniel P. Berrange <berrange@redhat.com> 3466S: Odd Fixes 3467F: util/buffer.c 3468F: include/qemu/buffer.h 3469 3470I/O Channels 3471M: Daniel P. Berrange <berrange@redhat.com> 3472S: Maintained 3473F: io/ 3474F: include/io/ 3475F: tests/unit/test-io-* 3476 3477User authorization 3478M: Daniel P. Berrange <berrange@redhat.com> 3479S: Maintained 3480F: authz/ 3481F: qapi/authz.json 3482F: include/authz/ 3483F: tests/unit/test-authz-* 3484 3485Sockets 3486M: Daniel P. Berrange <berrange@redhat.com> 3487S: Maintained 3488F: include/qemu/sockets.h 3489F: util/qemu-sockets.c 3490F: qapi/sockets.json 3491 3492File monitor 3493M: Daniel P. Berrange <berrange@redhat.com> 3494S: Odd Fixes 3495F: util/filemonitor*.c 3496F: include/qemu/filemonitor.h 3497F: tests/unit/test-util-filemonitor.c 3498 3499Throttling infrastructure 3500M: Alberto Garcia <berto@igalia.com> 3501S: Supported 3502F: block/throttle-groups.c 3503F: include/block/throttle-groups.h 3504F: include/qemu/throttle*.h 3505F: util/throttle.c 3506F: docs/throttle.txt 3507F: tests/unit/test-throttle.c 3508L: qemu-block@nongnu.org 3509 3510UUID 3511M: Fam Zheng <fam@euphon.net> 3512S: Supported 3513F: util/uuid.c 3514F: include/qemu/uuid.h 3515F: tests/unit/test-uuid.c 3516 3517Yank feature 3518M: Lukas Straub <lukasstraub2@web.de> 3519S: Odd fixes 3520F: util/yank.c 3521F: migration/yank_functions* 3522F: tests/unit/test-yank.c 3523F: include/qemu/yank.h 3524F: qapi/yank.json 3525 3526COLO Framework 3527M: Hailiang Zhang <zhanghailiang@xfusion.com> 3528S: Maintained 3529F: migration/colo* 3530F: include/migration/colo.h 3531F: include/migration/failover.h 3532F: docs/COLO-FT.txt 3533 3534COLO Proxy 3535M: Zhang Chen <chen.zhang@intel.com> 3536M: Li Zhijian <lizhijian@fujitsu.com> 3537S: Supported 3538F: docs/colo-proxy.txt 3539F: net/colo* 3540F: net/filter-rewriter.c 3541F: net/filter-mirror.c 3542F: tests/qtest/test-filter* 3543 3544Record/replay 3545M: Pavel Dovgalyuk <pavel.dovgaluk@ispras.ru> 3546R: Paolo Bonzini <pbonzini@redhat.com> 3547W: https://wiki.qemu.org/Features/record-replay 3548S: Supported 3549F: replay/* 3550F: block/blkreplay.c 3551F: net/filter-replay.c 3552F: include/exec/replay-core.h 3553F: include/sysemu/replay.h 3554F: docs/devel/replay.rst 3555F: docs/system/replay.rst 3556F: stubs/replay.c 3557F: tests/avocado/replay_kernel.py 3558F: tests/avocado/replay_linux.py 3559F: tests/avocado/reverse_debugging.py 3560F: qapi/replay.json 3561 3562IOVA Tree 3563M: Peter Xu <peterx@redhat.com> 3564S: Maintained 3565F: include/qemu/iova-tree.h 3566F: util/iova-tree.c 3567 3568elf2dmp 3569M: Viktor Prutyanov <viktor.prutyanov@phystech.edu> 3570R: Akihiko Odaki <akihiko.odaki@daynix.com> 3571S: Maintained 3572F: contrib/elf2dmp/ 3573 3574Overall sensors 3575M: Philippe Mathieu-Daudé <philmd@linaro.org> 3576S: Odd Fixes 3577F: hw/sensor 3578F: include/hw/sensor 3579 3580I2C and SMBus 3581M: Corey Minyard <cminyard@mvista.com> 3582S: Maintained 3583F: hw/i2c/core.c 3584F: hw/i2c/smbus_slave.c 3585F: hw/i2c/smbus_master.c 3586F: hw/i2c/smbus_eeprom.c 3587F: include/hw/i2c/i2c.h 3588F: include/hw/i2c/smbus_master.h 3589F: include/hw/i2c/smbus_slave.h 3590F: include/hw/i2c/smbus_eeprom.h 3591 3592PMBus 3593M: Titus Rwantare <titusr@google.com> 3594S: Maintained 3595F: hw/i2c/pmbus_device.c 3596F: hw/sensor/adm1272.c 3597F: hw/sensor/isl_pmbus_vr.c 3598F: hw/sensor/max34451.c 3599F: include/hw/i2c/pmbus_device.h 3600F: include/hw/sensor/isl_pmbus_vr.h 3601F: tests/qtest/adm1272-test.c 3602F: tests/qtest/max34451-test.c 3603F: tests/qtest/isl_pmbus_vr-test.c 3604 3605FSI 3606M: Ninad Palsule <ninad@linux.ibm.com> 3607R: Cédric Le Goater <clg@kaod.org> 3608S: Maintained 3609F: hw/fsi/* 3610F: include/hw/fsi/* 3611F: docs/specs/fsi.rst 3612F: tests/qtest/aspeed_fsi-test.c 3613 3614Firmware schema specifications 3615M: Philippe Mathieu-Daudé <philmd@linaro.org> 3616R: Daniel P. Berrange <berrange@redhat.com> 3617R: Kashyap Chamarthy <kchamart@redhat.com> 3618S: Maintained 3619F: docs/interop/firmware.json 3620 3621EDK2 Firmware 3622M: Philippe Mathieu-Daudé <philmd@linaro.org> 3623M: Gerd Hoffmann <kraxel@redhat.com> 3624S: Supported 3625F: hw/i386/*ovmf* 3626F: pc-bios/descriptors/??-edk2-*.json 3627F: pc-bios/edk2-* 3628F: roms/Makefile.edk2 3629F: roms/edk2 3630F: roms/edk2-* 3631F: tests/data/uefi-boot-images/ 3632F: tests/uefi-test-tools/ 3633 3634VT-d Emulation 3635M: Michael S. Tsirkin <mst@redhat.com> 3636R: Jason Wang <jasowang@redhat.com> 3637R: Yi Liu <yi.l.liu@intel.com> 3638R: Clément Mathieu--Drif <clement.mathieu--drif@eviden.com> 3639S: Supported 3640F: hw/i386/intel_iommu.c 3641F: hw/i386/intel_iommu_internal.h 3642F: include/hw/i386/intel_iommu.h 3643 3644AMD-Vi Emulation 3645S: Orphan 3646F: hw/i386/amd_iommu.? 3647 3648OpenSBI Firmware 3649M: Bin Meng <bmeng.cn@gmail.com> 3650S: Supported 3651F: pc-bios/opensbi-* 3652F: .gitlab-ci.d/opensbi.yml 3653F: .gitlab-ci.d/opensbi/ 3654 3655Clock framework 3656M: Luc Michel <luc@lmichel.fr> 3657R: Damien Hedde <damien.hedde@dahe.fr> 3658S: Maintained 3659F: include/hw/clock.h 3660F: include/hw/qdev-clock.h 3661F: hw/core/clock.c 3662F: hw/core/clock-vmstate.c 3663F: hw/core/qdev-clock.c 3664F: docs/devel/clocks.rst 3665 3666Reset framework 3667M: Peter Maydell <peter.maydell@linaro.org> 3668S: Maintained 3669F: include/hw/resettable.h 3670F: include/hw/core/resetcontainer.h 3671F: include/sysemu/reset.h 3672F: hw/core/reset.c 3673F: hw/core/resettable.c 3674F: hw/core/resetcontainer.c 3675 3676Usermode Emulation 3677------------------ 3678Overall usermode emulation 3679M: Riku Voipio <riku.voipio@iki.fi> 3680S: Maintained 3681F: accel/tcg/user-exec*.c 3682F: include/user/ 3683F: common-user/ 3684 3685BSD user 3686M: Warner Losh <imp@bsdimp.com> 3687R: Kyle Evans <kevans@freebsd.org> 3688S: Maintained 3689F: bsd-user/ 3690F: configs/targets/*-bsd-user.mak 3691F: tests/vm/*bsd 3692T: git https://github.com/qemu-bsd-user/qemu-bsd-user bsd-user-rebase-3.1 3693 3694Linux user 3695M: Laurent Vivier <laurent@vivier.eu> 3696S: Maintained 3697F: linux-user/ 3698F: configs/targets/*linux-user.mak 3699F: scripts/qemu-binfmt-conf.sh 3700F: scripts/update-syscalltbl.sh 3701F: scripts/update-mips-syscall-args.sh 3702 3703Tiny Code Generator (TCG) 3704------------------------- 3705Common TCG code 3706M: Richard Henderson <richard.henderson@linaro.org> 3707S: Maintained 3708F: tcg/ 3709F: include/tcg/ 3710 3711TCG Plugins 3712M: Alex Bennée <alex.bennee@linaro.org> 3713T: git https://gitlab.com/stsquad/qemu plugins/next 3714R: Alexandre Iooss <erdnaxe@crans.org> 3715R: Mahmoud Mandour <ma.mandourr@gmail.com> 3716R: Pierrick Bouvier <pierrick.bouvier@linaro.org> 3717S: Maintained 3718F: docs/devel/tcg-plugins.rst 3719F: plugins/ 3720F: tests/tcg/plugins/ 3721F: tests/avocado/tcg_plugins.py 3722F: contrib/plugins/ 3723 3724AArch64 TCG target 3725M: Richard Henderson <richard.henderson@linaro.org> 3726S: Maintained 3727L: qemu-arm@nongnu.org 3728F: tcg/aarch64/ 3729 3730ARM TCG target 3731M: Richard Henderson <richard.henderson@linaro.org> 3732S: Maintained 3733L: qemu-arm@nongnu.org 3734F: tcg/arm/ 3735 3736i386 TCG target 3737M: Richard Henderson <richard.henderson@linaro.org> 3738S: Maintained 3739F: tcg/i386/ 3740 3741LoongArch64 TCG target 3742M: WANG Xuerui <git@xen0n.name> 3743S: Maintained 3744F: tcg/loongarch64/ 3745 3746MIPS TCG target 3747M: Philippe Mathieu-Daudé <philmd@linaro.org> 3748R: Aurelien Jarno <aurelien@aurel32.net> 3749R: Huacai Chen <chenhuacai@kernel.org> 3750R: Jiaxun Yang <jiaxun.yang@flygoat.com> 3751R: Aleksandar Rikalo <arikalo@gmail.com> 3752S: Odd Fixes 3753F: tcg/mips/ 3754 3755PPC TCG target 3756M: Richard Henderson <richard.henderson@linaro.org> 3757S: Odd Fixes 3758F: tcg/ppc/ 3759 3760RISC-V TCG target 3761M: Palmer Dabbelt <palmer@dabbelt.com> 3762M: Alistair Francis <Alistair.Francis@wdc.com> 3763L: qemu-riscv@nongnu.org 3764S: Maintained 3765F: tcg/riscv/ 3766F: disas/riscv.[ch] 3767 3768S390 TCG target 3769M: Richard Henderson <richard.henderson@linaro.org> 3770S: Maintained 3771F: tcg/s390/ 3772L: qemu-s390x@nongnu.org 3773 3774SPARC TCG target 3775S: Odd Fixes 3776F: tcg/sparc64/ 3777F: disas/sparc.c 3778 3779TCI TCG target 3780M: Stefan Weil <sw@weilnetz.de> 3781S: Maintained 3782F: tcg/tci/ 3783F: tcg/tci.c 3784F: disas/tci.c 3785 3786Block drivers 3787------------- 3788VMDK 3789M: Fam Zheng <fam@euphon.net> 3790L: qemu-block@nongnu.org 3791S: Supported 3792F: block/vmdk.c 3793 3794RBD 3795M: Ilya Dryomov <idryomov@gmail.com> 3796R: Peter Lieven <pl@dlhnet.de> 3797L: qemu-block@nongnu.org 3798S: Supported 3799F: block/rbd.c 3800 3801VHDX 3802M: Jeff Cody <codyprime@gmail.com> 3803L: qemu-block@nongnu.org 3804S: Supported 3805F: block/vhdx* 3806 3807VDI 3808M: Stefan Weil <sw@weilnetz.de> 3809L: qemu-block@nongnu.org 3810S: Maintained 3811F: block/vdi.c 3812 3813blkio 3814M: Stefan Hajnoczi <stefanha@redhat.com> 3815L: qemu-block@nongnu.org 3816S: Maintained 3817F: block/blkio.c 3818 3819iSCSI 3820M: Ronnie Sahlberg <ronniesahlberg@gmail.com> 3821M: Paolo Bonzini <pbonzini@redhat.com> 3822M: Peter Lieven <pl@dlhnet.de> 3823L: qemu-block@nongnu.org 3824S: Odd Fixes 3825F: block/iscsi.c 3826F: block/iscsi-opts.c 3827 3828Network Block Device (NBD) 3829M: Eric Blake <eblake@redhat.com> 3830M: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru> 3831L: qemu-block@nongnu.org 3832S: Maintained 3833F: block/nbd* 3834F: nbd/ 3835F: include/block/nbd* 3836F: qemu-nbd.* 3837F: blockdev-nbd.c 3838F: docs/interop/nbd.rst 3839F: docs/tools/qemu-nbd.rst 3840F: tests/qemu-iotests/tests/*nbd* 3841T: git https://repo.or.cz/qemu/ericb.git nbd 3842T: git https://gitlab.com/vsementsov/qemu.git block 3843 3844NFS 3845M: Peter Lieven <pl@dlhnet.de> 3846L: qemu-block@nongnu.org 3847S: Maintained 3848F: block/nfs.c 3849 3850SSH 3851M: Richard W.M. Jones <rjones@redhat.com> 3852L: qemu-block@nongnu.org 3853S: Supported 3854F: block/ssh.c 3855 3856CURL 3857L: qemu-block@nongnu.org 3858S: Odd Fixes 3859F: block/curl.c 3860 3861GLUSTER 3862L: qemu-block@nongnu.org 3863L: integration@gluster.org 3864S: Odd Fixes 3865F: block/gluster.c 3866 3867Null Block Driver 3868M: Fam Zheng <fam@euphon.net> 3869L: qemu-block@nongnu.org 3870S: Supported 3871F: block/null.c 3872 3873NVMe Block Driver 3874M: Stefan Hajnoczi <stefanha@redhat.com> 3875R: Fam Zheng <fam@euphon.net> 3876R: Philippe Mathieu-Daudé <philmd@linaro.org> 3877L: qemu-block@nongnu.org 3878S: Supported 3879F: block/nvme* 3880F: include/block/nvme.h 3881T: git https://github.com/stefanha/qemu.git block 3882 3883Bootdevice 3884M: Gonglei <arei.gonglei@huawei.com> 3885S: Maintained 3886F: system/bootdevice.c 3887 3888Quorum 3889M: Alberto Garcia <berto@igalia.com> 3890S: Supported 3891F: block/quorum.c 3892L: qemu-block@nongnu.org 3893 3894blklogwrites 3895M: Ari Sundholm <ari@tuxera.com> 3896L: qemu-block@nongnu.org 3897S: Supported 3898F: block/blklogwrites.c 3899 3900blkverify 3901M: Stefan Hajnoczi <stefanha@redhat.com> 3902L: qemu-block@nongnu.org 3903S: Supported 3904F: block/blkverify.c 3905F: docs/devel/blkverify.rst 3906 3907bochs 3908M: Stefan Hajnoczi <stefanha@redhat.com> 3909L: qemu-block@nongnu.org 3910S: Supported 3911F: block/bochs.c 3912 3913cloop 3914M: Stefan Hajnoczi <stefanha@redhat.com> 3915L: qemu-block@nongnu.org 3916S: Supported 3917F: block/cloop.c 3918 3919dmg 3920M: Stefan Hajnoczi <stefanha@redhat.com> 3921L: qemu-block@nongnu.org 3922S: Supported 3923F: block/dmg.c 3924 3925parallels 3926M: Stefan Hajnoczi <stefanha@redhat.com> 3927M: Denis V. Lunev <den@openvz.org> 3928L: qemu-block@nongnu.org 3929S: Supported 3930F: block/parallels.c 3931F: block/parallels-ext.c 3932F: docs/interop/parallels.rst 3933F: docs/interop/prl-xml.rst 3934T: git https://src.openvz.org/scm/~den/qemu.git parallels 3935 3936qed 3937M: Stefan Hajnoczi <stefanha@redhat.com> 3938L: qemu-block@nongnu.org 3939S: Supported 3940F: block/qed.c 3941 3942raw 3943M: Kevin Wolf <kwolf@redhat.com> 3944L: qemu-block@nongnu.org 3945S: Supported 3946F: block/linux-aio.c 3947F: include/block/raw-aio.h 3948F: block/raw-format.c 3949F: block/file-posix.c 3950F: block/file-win32.c 3951F: block/win32-aio.c 3952 3953Linux io_uring 3954M: Aarushi Mehta <mehta.aaru20@gmail.com> 3955M: Julia Suvorova <jusual@redhat.com> 3956M: Stefan Hajnoczi <stefanha@redhat.com> 3957R: Stefano Garzarella <sgarzare@redhat.com> 3958L: qemu-block@nongnu.org 3959S: Maintained 3960F: block/io_uring.c 3961F: stubs/io_uring.c 3962 3963qcow2 3964M: Kevin Wolf <kwolf@redhat.com> 3965M: Hanna Reitz <hreitz@redhat.com> 3966L: qemu-block@nongnu.org 3967S: Supported 3968F: block/qcow2* 3969F: docs/interop/qcow2.txt 3970 3971qcow 3972M: Kevin Wolf <kwolf@redhat.com> 3973L: qemu-block@nongnu.org 3974S: Supported 3975F: block/qcow.c 3976 3977blkdebug 3978M: Kevin Wolf <kwolf@redhat.com> 3979M: Hanna Reitz <hreitz@redhat.com> 3980L: qemu-block@nongnu.org 3981S: Supported 3982F: block/blkdebug.c 3983F: docs/devel/blkdebug.rst 3984 3985vpc 3986M: Kevin Wolf <kwolf@redhat.com> 3987L: qemu-block@nongnu.org 3988S: Supported 3989F: block/vpc.c 3990 3991vvfat 3992M: Kevin Wolf <kwolf@redhat.com> 3993L: qemu-block@nongnu.org 3994S: Odd Fixes 3995F: block/vvfat.c 3996 3997Image format fuzzer 3998M: Stefan Hajnoczi <stefanha@redhat.com> 3999L: qemu-block@nongnu.org 4000S: Supported 4001F: tests/image-fuzzer/ 4002 4003Vhost-user block device backend server 4004M: Coiby Xu <Coiby.Xu@gmail.com> 4005S: Maintained 4006F: block/export/vhost-user-blk-server.c 4007F: block/export/vhost-user-blk-server.h 4008F: block/export/virtio-blk-handler.c 4009F: block/export/virtio-blk-handler.h 4010F: include/qemu/vhost-user-server.h 4011F: tests/qtest/libqos/vhost-user-blk.c 4012F: tests/qtest/libqos/vhost-user-blk.h 4013F: tests/qtest/vhost-user-blk-test.c 4014F: util/vhost-user-server.c 4015 4016FUSE block device exports 4017M: Hanna Reitz <hreitz@redhat.com> 4018L: qemu-block@nongnu.org 4019S: Supported 4020F: block/export/fuse.c 4021 4022VDUSE library and block device exports 4023M: Xie Yongji <xieyongji@bytedance.com> 4024S: Maintained 4025F: subprojects/libvduse/ 4026F: block/export/vduse-blk.c 4027F: block/export/vduse-blk.h 4028 4029Replication 4030M: Wen Congyang <wencongyang2@huawei.com> 4031M: Xie Changlong <xiechanglong.d@gmail.com> 4032S: Supported 4033F: replication* 4034F: block/replication.c 4035F: tests/unit/test-replication.c 4036F: docs/block-replication.txt 4037 4038Semihosting 4039M: Alex Bennée <alex.bennee@linaro.org> 4040S: Maintained 4041F: semihosting/ 4042F: include/semihosting/ 4043F: tests/tcg/multiarch/arm-compat-semi/ 4044F: tests/tcg/aarch64/system/semiheap.c 4045 4046Multi-process QEMU 4047M: Elena Ufimtseva <elena.ufimtseva@oracle.com> 4048M: Jagannathan Raman <jag.raman@oracle.com> 4049S: Maintained 4050F: docs/devel/multi-process.rst 4051F: docs/system/multi-process.rst 4052F: hw/pci-host/remote.c 4053F: include/hw/pci-host/remote.h 4054F: hw/remote/machine.c 4055F: include/hw/remote/machine.h 4056F: hw/remote/mpqemu-link.c 4057F: include/hw/remote/mpqemu-link.h 4058F: hw/remote/message.c 4059F: hw/remote/remote-obj.c 4060F: include/hw/remote/memory.h 4061F: hw/remote/memory.c 4062F: hw/remote/proxy.c 4063F: include/hw/remote/proxy.h 4064F: hw/remote/proxy-memory-listener.c 4065F: include/hw/remote/proxy-memory-listener.h 4066F: hw/remote/iohub.c 4067F: include/hw/remote/iohub.h 4068F: subprojects/libvfio-user 4069F: hw/remote/vfio-user-obj.c 4070F: include/hw/remote/vfio-user-obj.h 4071F: hw/remote/iommu.c 4072F: include/hw/remote/iommu.h 4073 4074EBPF: 4075M: Jason Wang <jasowang@redhat.com> 4076R: Andrew Melnychenko <andrew@daynix.com> 4077R: Yuri Benditovich <yuri.benditovich@daynix.com> 4078S: Maintained 4079F: docs/devel/ebpf_rss.rst 4080F: ebpf/* 4081F: tools/ebpf/* 4082 4083Build and test automation 4084------------------------- 4085Build and test automation, general continuous integration 4086M: Alex Bennée <alex.bennee@linaro.org> 4087T: git https://gitlab.com/stsquad/qemu testing/next 4088M: Philippe Mathieu-Daudé <philmd@linaro.org> 4089M: Thomas Huth <thuth@redhat.com> 4090R: Wainer dos Santos Moschetta <wainersm@redhat.com> 4091S: Maintained 4092F: .github/workflows/lockdown.yml 4093F: .gitlab-ci.yml 4094F: .gitlab-ci.d/ 4095F: .travis.yml 4096F: docs/devel/ci* 4097F: scripts/ci/ 4098F: tests/docker/ 4099F: tests/vm/ 4100F: tests/lcitool/ 4101F: tests/avocado/tuxrun_baselines.py 4102F: scripts/archive-source.sh 4103F: docs/devel/testing.rst 4104W: https://gitlab.com/qemu-project/qemu/pipelines 4105W: https://travis-ci.org/qemu/qemu 4106 4107FreeBSD Hosted Continuous Integration 4108M: Ed Maste <emaste@freebsd.org> 4109M: Li-Wen Hsu <lwhsu@freebsd.org> 4110S: Maintained 4111F: .gitlab-ci.d/cirrus/freebsd* 4112F: tests/vm/freebsd 4113W: https://cirrus-ci.com/github/qemu/qemu 4114 4115Functional testing framework 4116M: Thomas Huth <thuth@redhat.com> 4117R: Philippe Mathieu-Daudé <philmd@linaro.org> 4118F: tests/functional/qemu_test/ 4119 4120Windows Hosted Continuous Integration 4121M: Yonggang Luo <luoyonggang@gmail.com> 4122S: Maintained 4123F: .gitlab-ci.d/windows.yml 4124 4125Guest Test Compilation Support 4126M: Alex Bennée <alex.bennee@linaro.org> 4127R: Philippe Mathieu-Daudé <philmd@linaro.org> 4128S: Maintained 4129F: tests/tcg/Makefile.target 4130 4131Integration Testing with the Avocado framework 4132W: https://trello.com/b/6Qi1pxVn/avocado-qemu 4133R: Cleber Rosa <crosa@redhat.com> 4134R: Philippe Mathieu-Daudé <philmd@linaro.org> 4135R: Wainer dos Santos Moschetta <wainersm@redhat.com> 4136S: Odd Fixes 4137F: tests/avocado/ 4138 4139GitLab custom runner (Works On Arm Sponsored) 4140M: Alex Bennée <alex.bennee@linaro.org> 4141M: Philippe Mathieu-Daudé <philmd@linaro.org> 4142S: Maintained 4143F: .gitlab-ci.d/custom-runners/ubuntu-22.04-aarch64.yml 4144F: .gitlab-ci.d/custom-runners/ubuntu-22.04-aarch32.yml 4145 4146Documentation 4147------------- 4148Build system architecture 4149M: Daniel P. Berrange <berrange@redhat.com> 4150S: Odd Fixes 4151F: docs/devel/build-system.rst 4152 4153GIT Data Mining Config 4154M: Alex Bennée <alex.bennee@linaro.org> 4155S: Odd Fixes 4156F: gitdm.config 4157F: contrib/gitdm/* 4158 4159Incompatible changes 4160R: devel@lists.libvirt.org 4161F: docs/about/deprecated.rst 4162 4163Build System 4164------------ 4165Meson 4166M: Paolo Bonzini <pbonzini@redhat.com> 4167R: Marc-André Lureau <marcandre.lureau@redhat.com> 4168R: Daniel P. Berrange <berrange@redhat.com> 4169R: Philippe Mathieu-Daudé <philmd@linaro.org> 4170S: Maintained 4171F: meson.build 4172F: meson_options.txt 4173F: scripts/meson-buildoptions.* 4174F: scripts/check_sparse.py 4175F: scripts/symlink-install-tree.py 4176 4177Top Level Makefile and configure 4178M: Paolo Bonzini <pbonzini@redhat.com> 4179R: Alex Bennée <alex.bennee@linaro.org> 4180R: Thomas Huth <thuth@redhat.com> 4181S: Maintained 4182F: Makefile 4183F: configure 4184F: scripts/mtest2make.py 4185F: tests/Makefile.include 4186 4187Kconfig 4188M: Paolo Bonzini <pbonzini@redhat.com> 4189S: Maintained 4190F: scripts/minikconf.py 4191F: docs/devel/kconfig.rst 4192F: Kconfig* 4193F: */Kconfig* 4194F: hw/*/Kconfig* 4195F: target/*/Kconfig* 4196 4197GIT submodules 4198M: Daniel P. Berrange <berrange@redhat.com> 4199S: Odd Fixes 4200F: scripts/git-submodule.sh 4201 4202UI translations 4203S: Orphan 4204F: po/*.po 4205 4206Sphinx documentation configuration and build machinery 4207M: Peter Maydell <peter.maydell@linaro.org> 4208S: Maintained 4209F: docs/conf.py 4210F: docs/*/conf.py 4211F: docs/sphinx/ 4212F: docs/_templates/ 4213F: docs/devel/docs.rst 4214 4215Rust build system integration 4216M: Manos Pitsidianakis <manos.pitsidianakis@linaro.org> 4217S: Maintained 4218F: scripts/rust/ 4219F: rust/.gitignore 4220F: rust/Kconfig 4221F: rust/meson.build 4222F: rust/wrapper.h 4223 4224Miscellaneous 4225------------- 4226Performance Tools and Tests 4227M: Ahmed Karaman <ahmedkhaledkaraman@gmail.com> 4228S: Maintained 4229F: scripts/performance/ 4230 4231Code Coverage Tools 4232M: Alex Bennée <alex.bennee@linaro.org> 4233S: Odd Fixes 4234F: scripts/coverage/ 4235 4236Machine development tool 4237M: Maksim Davydov <davydov-max@yandex-team.ru> 4238S: Supported 4239F: scripts/compare-machine-types.py 4240