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 1837nitro-enclave 1838M: Alexander Graf <graf@amazon.com> 1839M: Dorjoy Chowdhury <dorjoychy111@gmail.com> 1840S: Maintained 1841F: hw/core/eif.c 1842F: hw/core/eif.h 1843 1844Machine core 1845M: Eduardo Habkost <eduardo@habkost.net> 1846M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com> 1847R: Philippe Mathieu-Daudé <philmd@linaro.org> 1848R: Yanan Wang <wangyanan55@huawei.com> 1849R: Zhao Liu <zhao1.liu@intel.com> 1850S: Supported 1851F: hw/core/cpu-common.c 1852F: hw/core/cpu-sysemu.c 1853F: hw/core/machine-qmp-cmds.c 1854F: hw/core/machine.c 1855F: hw/core/machine-smp.c 1856F: hw/core/null-machine.c 1857F: hw/core/numa.c 1858F: hw/cpu/cluster.c 1859F: qapi/machine.json 1860F: qapi/machine-common.json 1861F: qapi/machine-target.json 1862F: include/hw/boards.h 1863F: include/hw/core/cpu.h 1864F: include/hw/cpu/cluster.h 1865F: include/sysemu/numa.h 1866F: tests/functional/test_cpu_queries.py 1867F: tests/functional/test_empty_cpu_model.py 1868F: tests/unit/test-smp-parse.c 1869T: git https://gitlab.com/ehabkost/qemu.git machine-next 1870 1871Xtensa Machines 1872--------------- 1873sim 1874M: Max Filippov <jcmvbkbc@gmail.com> 1875S: Maintained 1876F: hw/xtensa/sim.c 1877 1878virt 1879M: Max Filippov <jcmvbkbc@gmail.com> 1880S: Maintained 1881F: hw/xtensa/virt.c 1882 1883XTFPGA (LX60, LX200, ML605, KC705) 1884M: Max Filippov <jcmvbkbc@gmail.com> 1885S: Maintained 1886F: hw/xtensa/xtfpga.c 1887F: hw/net/opencores_eth.c 1888F: include/hw/xtensa/mx_pic.h 1889F: tests/functional/test_xtensa_lx60.py 1890 1891Devices 1892------- 1893Overall Audio frontends 1894M: Gerd Hoffmann <kraxel@redhat.com> 1895S: Odd Fixes 1896F: hw/audio/ 1897F: include/hw/audio/ 1898F: tests/qtest/ac97-test.c 1899F: tests/qtest/es1370-test.c 1900F: tests/qtest/intel-hda-test.c 1901F: tests/qtest/fuzz-sb16-test.c 1902 1903Xilinx CAN 1904M: Francisco Iglesias <francisco.iglesias@amd.com> 1905S: Maintained 1906F: hw/net/can/xlnx-* 1907F: include/hw/net/xlnx-* 1908F: tests/qtest/xlnx-can*-test* 1909 1910EDU 1911M: Jiri Slaby <jslaby@suse.cz> 1912S: Maintained 1913F: hw/misc/edu.c 1914F: docs/specs/edu.rst 1915 1916IDE 1917M: John Snow <jsnow@redhat.com> 1918L: qemu-block@nongnu.org 1919S: Odd Fixes 1920F: include/hw/ide/ 1921F: hw/ide/ 1922F: hw/block/block.c 1923F: hw/block/cdrom.c 1924F: hw/block/hd-geometry.c 1925F: tests/qtest/ide-test.c 1926F: tests/qtest/ahci-test.c 1927F: tests/qtest/cdrom-test.c 1928F: tests/qtest/libqos/ahci* 1929T: git https://gitlab.com/jsnow/qemu.git ide 1930 1931IPMI 1932M: Corey Minyard <minyard@acm.org> 1933S: Maintained 1934F: include/hw/ipmi/* 1935F: hw/ipmi/* 1936F: hw/smbios/smbios_type_38.c 1937F: tests/qtest/ipmi* 1938T: git https://github.com/cminyard/qemu.git master-ipmi-rebase 1939 1940Floppy 1941M: John Snow <jsnow@redhat.com> 1942L: qemu-block@nongnu.org 1943S: Odd Fixes 1944F: hw/block/fdc.c 1945F: hw/block/fdc-internal.h 1946F: hw/block/fdc-isa.c 1947F: hw/block/fdc-sysbus.c 1948F: include/hw/block/fdc.h 1949F: tests/qtest/fdc-test.c 1950T: git https://gitlab.com/jsnow/qemu.git ide 1951 1952Hyper-V VMBus 1953M: Maciej S. Szmigiero <maciej.szmigiero@oracle.com> 1954S: Odd Fixes 1955F: hw/hyperv/vmbus.c 1956F: include/hw/hyperv/vmbus*.h 1957 1958OMAP 1959M: Peter Maydell <peter.maydell@linaro.org> 1960L: qemu-arm@nongnu.org 1961S: Maintained 1962F: hw/*/omap* 1963F: include/hw/arm/omap.h 1964F: docs/system/arm/sx1.rst 1965 1966IPack 1967M: Alberto Garcia <berto@igalia.com> 1968S: Odd Fixes 1969F: hw/char/ipoctal232.c 1970F: hw/ipack/ 1971 1972PCI 1973M: Michael S. Tsirkin <mst@redhat.com> 1974M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com> 1975S: Supported 1976F: include/hw/pci/* 1977F: hw/misc/pci-testdev.c 1978F: hw/pci/* 1979F: hw/pci-bridge/* 1980F: qapi/pci.json 1981F: docs/pci* 1982F: docs/specs/*pci* 1983 1984PCIE DOE 1985M: Huai-Cheng Kuo <hchkuo@avery-design.com.tw> 1986M: Chris Browy <cbrowy@avery-design.com> 1987S: Supported 1988F: include/hw/pci/pcie_doe.h 1989F: hw/pci/pcie_doe.c 1990 1991ACPI/SMBIOS 1992M: Michael S. Tsirkin <mst@redhat.com> 1993M: Igor Mammedov <imammedo@redhat.com> 1994R: Ani Sinha <anisinha@redhat.com> 1995S: Supported 1996F: include/hw/acpi/* 1997F: include/hw/firmware/smbios.h 1998F: hw/acpi/* 1999F: hw/smbios/* 2000F: hw/i386/acpi-build.[hc] 2001F: hw/arm/virt-acpi-build.c 2002F: qapi/acpi.json 2003F: tests/qtest/bios-tables-test* 2004F: tests/qtest/acpi-utils.[hc] 2005F: tests/data/acpi/ 2006F: docs/specs/acpi_cpu_hotplug.rst 2007F: docs/specs/acpi_mem_hotplug.rst 2008F: docs/specs/acpi_nvdimm.rst 2009F: docs/specs/acpi_pci_hotplug.rst 2010F: docs/specs/acpi_hw_reduced_hotplug.rst 2011 2012ARM ACPI Subsystem 2013M: Shannon Zhao <shannon.zhaosl@gmail.com> 2014L: qemu-arm@nongnu.org 2015S: Maintained 2016F: hw/arm/virt-acpi-build.c 2017 2018RISC-V ACPI Subsystem 2019M: Sunil V L <sunilvl@ventanamicro.com> 2020L: qemu-riscv@nongnu.org 2021S: Maintained 2022F: hw/riscv/virt-acpi-build.c 2023 2024ACPI/VIOT 2025M: Jean-Philippe Brucker <jean-philippe@linaro.org> 2026S: Supported 2027F: hw/acpi/viot.c 2028F: hw/acpi/viot.h 2029 2030ACPI/AVOCADO/BIOSBITS 2031M: Ani Sinha <anisinha@redhat.com> 2032M: Michael S. Tsirkin <mst@redhat.com> 2033S: Supported 2034F: tests/functional/acpi-bits/* 2035F: tests/functional/test_acpi_bits.py 2036F: docs/devel/acpi-bits.rst 2037 2038ACPI/HEST/GHES 2039R: Dongjiu Geng <gengdongjiu1@gmail.com> 2040L: qemu-arm@nongnu.org 2041S: Maintained 2042F: hw/acpi/ghes.c 2043F: include/hw/acpi/ghes.h 2044F: docs/specs/acpi_hest_ghes.rst 2045 2046ppc4xx 2047L: qemu-ppc@nongnu.org 2048S: Orphan 2049F: hw/ppc/ppc4xx*.c 2050F: hw/ppc/ppc440_uc.c 2051F: hw/ppc/ppc440.h 2052F: hw/i2c/ppc4xx_i2c.c 2053F: include/hw/pci-host/ppc4xx.h 2054F: include/hw/ppc/ppc4xx.h 2055F: include/hw/i2c/ppc4xx_i2c.h 2056F: hw/intc/ppc-uic.c 2057F: include/hw/intc/ppc-uic.h 2058 2059Character devices 2060M: Marc-André Lureau <marcandre.lureau@redhat.com> 2061R: Paolo Bonzini <pbonzini@redhat.com> 2062S: Odd Fixes 2063F: hw/char/ 2064F: include/hw/char/ 2065 2066Network devices 2067M: Jason Wang <jasowang@redhat.com> 2068S: Odd Fixes 2069F: hw/net/ 2070F: include/hw/net/ 2071F: tests/qtest/virtio-net-test.c 2072F: tests/functional/test_info_usernet.py 2073F: docs/virtio-net-failover.rst 2074T: git https://github.com/jasowang/qemu.git net 2075 2076Parallel NOR Flash devices 2077M: Philippe Mathieu-Daudé <philmd@linaro.org> 2078T: git https://gitlab.com/philmd/qemu.git pflash-next 2079S: Maintained 2080F: hw/block/pflash_cfi*.c 2081F: include/hw/block/flash.h 2082 2083SCSI 2084M: Paolo Bonzini <pbonzini@redhat.com> 2085R: Fam Zheng <fam@euphon.net> 2086S: Supported 2087F: include/hw/scsi/* 2088F: hw/scsi/* 2089F: tests/qtest/virtio-scsi-test.c 2090F: tests/qtest/fuzz-virtio-scsi-test.c 2091F: tests/qtest/am53c974-test.c 2092F: tests/qtest/fuzz-lsi53c895a-test.c 2093T: git https://github.com/bonzini/qemu.git scsi-next 2094 2095SSI 2096M: Alistair Francis <alistair@alistair23.me> 2097S: Maintained 2098F: hw/ssi/* 2099F: hw/block/m25p80* 2100F: include/hw/ssi/ssi.h 2101X: hw/ssi/xilinx_* 2102F: tests/qtest/m25p80-test.c 2103 2104Xilinx SPI 2105M: Alistair Francis <alistair@alistair23.me> 2106S: Maintained 2107F: hw/ssi/xilinx_* 2108 2109SD (Secure Card) 2110M: Philippe Mathieu-Daudé <philmd@linaro.org> 2111M: Bin Meng <bmeng.cn@gmail.com> 2112L: qemu-block@nongnu.org 2113S: Odd Fixes 2114F: include/hw/sd/sd* 2115F: hw/sd/core.c 2116F: hw/sd/sd* 2117F: hw/sd/ssi-sd.c 2118F: tests/qtest/fuzz-sdcard-test.c 2119F: tests/qtest/sdhci-test.c 2120 2121USB 2122S: Orphan 2123F: hw/usb/* 2124F: stubs/usb-dev-stub.c 2125F: tests/qtest/usb-*-test.c 2126F: docs/system/devices/usb.rst 2127F: include/hw/usb.h 2128F: include/hw/usb/ 2129 2130USB (serial adapter) 2131M: Samuel Thibault <samuel.thibault@ens-lyon.org> 2132S: Maintained 2133F: hw/usb/dev-serial.c 2134 2135VFIO 2136M: Alex Williamson <alex.williamson@redhat.com> 2137M: Cédric Le Goater <clg@redhat.com> 2138S: Supported 2139F: hw/vfio/* 2140F: include/hw/vfio/ 2141F: docs/igd-assign.txt 2142F: docs/devel/migration/vfio.rst 2143F: qapi/vfio.json 2144 2145vfio-ccw 2146M: Eric Farman <farman@linux.ibm.com> 2147M: Matthew Rosato <mjrosato@linux.ibm.com> 2148S: Supported 2149F: hw/vfio/ccw.c 2150F: hw/s390x/s390-ccw.c 2151F: include/hw/s390x/s390-ccw.h 2152F: include/hw/s390x/vfio-ccw.h 2153L: qemu-s390x@nongnu.org 2154 2155vfio-ap 2156M: Tony Krowiak <akrowiak@linux.ibm.com> 2157M: Halil Pasic <pasic@linux.ibm.com> 2158M: Jason Herne <jjherne@linux.ibm.com> 2159S: Supported 2160F: hw/s390x/ap-device.c 2161F: hw/s390x/ap-bridge.c 2162F: include/hw/s390x/ap-device.h 2163F: include/hw/s390x/ap-bridge.h 2164F: hw/vfio/ap.c 2165F: docs/system/s390x/vfio-ap.rst 2166L: qemu-s390x@nongnu.org 2167 2168iommufd 2169M: Yi Liu <yi.l.liu@intel.com> 2170M: Eric Auger <eric.auger@redhat.com> 2171M: Zhenzhong Duan <zhenzhong.duan@intel.com> 2172S: Supported 2173F: backends/iommufd.c 2174F: include/sysemu/iommufd.h 2175F: backends/host_iommu_device.c 2176F: include/sysemu/host_iommu_device.h 2177F: include/qemu/chardev_open.h 2178F: util/chardev_open.c 2179F: docs/devel/vfio-iommufd.rst 2180 2181vhost 2182M: Michael S. Tsirkin <mst@redhat.com> 2183R: Stefano Garzarella <sgarzare@redhat.com> 2184S: Supported 2185F: hw/*/*vhost* 2186F: docs/interop/vhost-user.json 2187F: docs/interop/vhost-user.rst 2188F: contrib/vhost-user-*/ 2189F: backends/vhost-user.c 2190F: include/sysemu/vhost-user-backend.h 2191F: subprojects/libvhost-user/ 2192 2193vhost-shadow-virtqueue 2194R: Eugenio Pérez <eperezma@redhat.com> 2195F: hw/virtio/vhost-shadow-virtqueue.* 2196 2197virtio 2198M: Michael S. Tsirkin <mst@redhat.com> 2199S: Supported 2200F: hw/*/virtio* 2201F: hw/virtio/Makefile.objs 2202F: hw/virtio/trace-events 2203F: qapi/virtio.json 2204F: net/vhost-user.c 2205F: include/hw/virtio/ 2206F: docs/devel/virtio* 2207F: docs/devel/migration/virtio.rst 2208F: tests/functional/test_virtio_version.py 2209 2210virtio-balloon 2211M: Michael S. Tsirkin <mst@redhat.com> 2212M: David Hildenbrand <david@redhat.com> 2213S: Maintained 2214F: docs/interop/virtio-balloon-stats.rst 2215F: hw/virtio/virtio-balloon*.c 2216F: include/hw/virtio/virtio-balloon.h 2217F: system/balloon.c 2218F: include/sysemu/balloon.h 2219 2220virtio-9p 2221M: Greg Kurz <groug@kaod.org> 2222M: Christian Schoenebeck <qemu_oss@crudebyte.com> 2223S: Maintained 2224W: https://wiki.qemu.org/Documentation/9p 2225F: hw/9pfs/ 2226X: hw/9pfs/xen-9p* 2227F: fsdev/ 2228F: tests/qtest/virtio-9p-test.c 2229F: tests/qtest/libqos/virtio-9p* 2230T: git https://gitlab.com/gkurz/qemu.git 9p-next 2231T: git https://github.com/cschoenebeck/qemu.git 9p.next 2232 2233virtio-blk 2234M: Stefan Hajnoczi <stefanha@redhat.com> 2235L: qemu-block@nongnu.org 2236S: Supported 2237F: hw/block/virtio-blk-common.c 2238F: hw/block/virtio-blk.c 2239F: hw/block/dataplane/* 2240F: include/hw/virtio/virtio-blk-common.h 2241F: tests/qtest/virtio-blk-test.c 2242T: git https://github.com/stefanha/qemu.git block 2243 2244virtio-ccw 2245M: Cornelia Huck <cohuck@redhat.com> 2246M: Halil Pasic <pasic@linux.ibm.com> 2247M: Eric Farman <farman@linux.ibm.com> 2248S: Supported 2249F: hw/s390x/virtio-ccw*.[hc] 2250F: hw/s390x/vhost-*-ccw.c 2251T: git https://gitlab.com/cohuck/qemu.git s390-next 2252T: git https://github.com/borntraeger/qemu.git s390-next 2253L: qemu-s390x@nongnu.org 2254 2255virtio-dmabuf 2256M: Albert Esteve <aesteve@redhat.com> 2257S: Supported 2258F: hw/display/virtio-dmabuf.c 2259F: include/hw/virtio/virtio-dmabuf.h 2260F: tests/unit/test-virtio-dmabuf.c 2261 2262virtiofs 2263M: Stefan Hajnoczi <stefanha@redhat.com> 2264S: Supported 2265F: hw/virtio/vhost-user-fs* 2266F: include/hw/virtio/vhost-user-fs.h 2267L: virtio-fs@lists.linux.dev 2268 2269virtio-input 2270M: Gerd Hoffmann <kraxel@redhat.com> 2271S: Odd Fixes 2272F: docs/system/devices/vhost-user-input.rst 2273F: hw/input/virtio-input*.c 2274F: hw/virtio/vhost-user-input.c 2275F: include/hw/virtio/virtio-input.h 2276F: contrib/vhost-user-input/* 2277 2278virtio-iommu 2279M: Eric Auger <eric.auger@redhat.com> 2280S: Maintained 2281F: hw/virtio/virtio-iommu*.c 2282F: include/hw/virtio/virtio-iommu.h 2283 2284virtio-serial 2285M: Laurent Vivier <lvivier@redhat.com> 2286R: Amit Shah <amit@kernel.org> 2287S: Supported 2288F: hw/char/virtio-serial-bus.c 2289F: hw/char/virtio-console.c 2290F: include/hw/virtio/virtio-serial.h 2291F: tests/qtest/virtio-serial-test.c 2292 2293virtio-rng 2294M: Laurent Vivier <lvivier@redhat.com> 2295R: Amit Shah <amit@kernel.org> 2296S: Supported 2297F: hw/virtio/virtio-rng.c 2298F: include/hw/virtio/virtio-rng.h 2299F: include/sysemu/rng*.h 2300F: backends/rng*.c 2301F: tests/qtest/virtio-rng-test.c 2302 2303virtio-nsm 2304M: Alexander Graf <graf@amazon.com> 2305M: Dorjoy Chowdhury <dorjoychy111@gmail.com> 2306S: Maintained 2307F: hw/virtio/cbor-helpers.c 2308F: hw/virtio/virtio-nsm.c 2309F: hw/virtio/virtio-nsm-pci.c 2310F: include/hw/virtio/cbor-helpers.h 2311F: include/hw/virtio/virtio-nsm.h 2312 2313vhost-user-stubs 2314M: Alex Bennée <alex.bennee@linaro.org> 2315S: Maintained 2316F: hw/virtio/vhost-user-base.c 2317F: hw/virtio/vhost-user-device* 2318 2319vhost-user-rng 2320M: Mathieu Poirier <mathieu.poirier@linaro.org> 2321S: Supported 2322F: docs/system/devices/vhost-user-rng.rst 2323F: hw/virtio/vhost-user-rng.c 2324F: hw/virtio/vhost-user-rng-pci.c 2325F: include/hw/virtio/vhost-user-rng.h 2326F: tools/vhost-user-rng/* 2327 2328vhost-user-gpio 2329M: Alex Bennée <alex.bennee@linaro.org> 2330R: Viresh Kumar <viresh.kumar@linaro.org> 2331S: Maintained 2332F: hw/virtio/vhost-user-gpio* 2333F: include/hw/virtio/vhost-user-gpio.h 2334F: tests/qtest/libqos/virtio-gpio.* 2335 2336vhost-user-snd 2337M: Alex Bennée <alex.bennee@linaro.org> 2338R: Manos Pitsidianakis <manos.pitsidianakis@linaro.org> 2339S: Maintained 2340F: hw/virtio/vhost-user-snd* 2341F: include/hw/virtio/vhost-user-snd.h 2342 2343vhost-user-scmi 2344R: mzamazal@redhat.com 2345S: Supported 2346F: hw/virtio/vhost-user-scmi* 2347F: include/hw/virtio/vhost-user-scmi.h 2348F: tests/qtest/libqos/virtio-scmi.* 2349 2350virtio-crypto 2351M: Gonglei <arei.gonglei@huawei.com> 2352S: Supported 2353F: hw/virtio/virtio-crypto.c 2354F: hw/virtio/virtio-crypto-pci.c 2355F: include/hw/virtio/virtio-crypto.h 2356 2357virtio based memory device 2358M: David Hildenbrand <david@redhat.com> 2359S: Supported 2360F: hw/virtio/virtio-md-pci.c 2361F: include/hw/virtio/virtio-md-pci.h 2362F: stubs/virtio-md-pci.c 2363 2364virtio-mem 2365M: David Hildenbrand <david@redhat.com> 2366S: Supported 2367W: https://virtio-mem.gitlab.io/ 2368F: hw/virtio/virtio-mem.c 2369F: hw/virtio/virtio-mem-pci.h 2370F: hw/virtio/virtio-mem-pci.c 2371F: include/hw/virtio/virtio-mem.h 2372 2373virtio-snd 2374M: Gerd Hoffmann <kraxel@redhat.com> 2375R: Manos Pitsidianakis <manos.pitsidianakis@linaro.org> 2376S: Supported 2377F: hw/audio/virtio-snd.c 2378F: hw/audio/virtio-snd-pci.c 2379F: include/hw/audio/virtio-snd.h 2380F: docs/system/devices/virtio-snd.rst 2381 2382nvme 2383M: Keith Busch <kbusch@kernel.org> 2384M: Klaus Jensen <its@irrelevant.dk> 2385R: Jesper Devantier <foss@defmacro.it> 2386L: qemu-block@nongnu.org 2387S: Supported 2388F: hw/nvme/* 2389F: include/block/nvme.h 2390F: tests/qtest/nvme-test.c 2391F: docs/system/devices/nvme.rst 2392T: git git://git.infradead.org/qemu-nvme.git nvme-next 2393 2394ufs 2395M: Jeuk Kim <jeuk20.kim@samsung.com> 2396S: Supported 2397F: hw/ufs/* 2398F: include/block/ufs.h 2399F: tests/qtest/ufs-test.c 2400 2401megasas 2402M: Hannes Reinecke <hare@suse.com> 2403L: qemu-block@nongnu.org 2404S: Supported 2405F: hw/scsi/megasas.c 2406F: hw/scsi/mfi.h 2407F: tests/qtest/megasas-test.c 2408F: tests/qtest/fuzz-megasas-test.c 2409 2410Network packet abstractions 2411M: Dmitry Fleytman <dmitry.fleytman@gmail.com> 2412R: Akihiko Odaki <akihiko.odaki@daynix.com> 2413S: Maintained 2414F: include/net/eth.h 2415F: net/eth.c 2416F: hw/net/net_rx_pkt* 2417F: hw/net/net_tx_pkt* 2418 2419Vmware 2420M: Dmitry Fleytman <dmitry.fleytman@gmail.com> 2421S: Maintained 2422F: docs/specs/vmw_pvscsi-spec.txt 2423F: hw/display/vmware_vga.c 2424F: hw/net/vmxnet* 2425F: hw/scsi/vmw_pvscsi* 2426F: pc-bios/efi-vmxnet3.rom 2427F: pc-bios/vgabios-vmware.bin 2428F: roms/config.vga-vmware 2429F: tests/qtest/vmxnet3-test.c 2430F: docs/specs/vwm_pvscsi-spec.rst 2431 2432Rocker 2433M: Jiri Pirko <jiri@resnulli.us> 2434S: Maintained 2435F: hw/net/rocker/ 2436F: qapi/rocker.json 2437F: tests/rocker/ 2438F: docs/specs/rocker.rst 2439 2440e1000x 2441M: Dmitry Fleytman <dmitry.fleytman@gmail.com> 2442R: Akihiko Odaki <akihiko.odaki@daynix.com> 2443S: Maintained 2444F: hw/net/e1000x* 2445 2446e1000e 2447M: Dmitry Fleytman <dmitry.fleytman@gmail.com> 2448R: Akihiko Odaki <akihiko.odaki@daynix.com> 2449S: Maintained 2450F: hw/net/e1000e* 2451F: tests/qtest/fuzz-e1000e-test.c 2452F: tests/qtest/e1000e-test.c 2453F: tests/qtest/libqos/e1000e.* 2454 2455igb 2456M: Akihiko Odaki <akihiko.odaki@daynix.com> 2457R: Sriram Yagnaraman <sriram.yagnaraman@ericsson.com> 2458S: Maintained 2459F: docs/system/devices/igb.rst 2460F: hw/net/igb* 2461F: tests/functional/test_netdev_ethtool.py 2462F: tests/qtest/igb-test.c 2463F: tests/qtest/libqos/igb.c 2464 2465eepro100 2466M: Stefan Weil <sw@weilnetz.de> 2467S: Maintained 2468F: hw/net/eepro100.c 2469 2470tulip 2471M: Sven Schnelle <svens@stackframe.org> 2472S: Maintained 2473F: hw/net/tulip.c 2474F: hw/net/tulip.h 2475 2476pca954x 2477M: Patrick Leis <venture@google.com> 2478S: Maintained 2479F: hw/i2c/i2c_mux_pca954x.c 2480F: include/hw/i2c/i2c_mux_pca954x.h 2481 2482pcf8574 2483M: Dmitrii Sharikhin <d.sharikhin@yadro.com> 2484S: Maintained 2485F: hw/gpio/pcf8574.c 2486F: include/gpio/pcf8574.h 2487 2488Generic Loader 2489M: Alistair Francis <alistair@alistair23.me> 2490S: Maintained 2491F: hw/core/generic-loader.c 2492F: hw/core/uboot_image.h 2493F: include/hw/core/generic-loader.h 2494F: docs/system/generic-loader.rst 2495 2496Guest Loader 2497M: Alex Bennée <alex.bennee@linaro.org> 2498S: Maintained 2499F: hw/core/guest-loader.c 2500F: docs/system/guest-loader.rst 2501F: tests/avocado/boot_xen.py 2502 2503Intel Hexadecimal Object File Loader 2504M: Su Hang <suhang16@mails.ucas.ac.cn> 2505S: Maintained 2506F: tests/qtest/hexloader-test.c 2507F: tests/data/hex-loader/test.hex 2508 2509CHRP NVRAM 2510M: Thomas Huth <thuth@redhat.com> 2511S: Maintained 2512F: hw/nvram/chrp_nvram.c 2513F: include/hw/nvram/chrp_nvram.h 2514F: tests/qtest/prom-env-test.c 2515 2516VM Generation ID 2517S: Orphan 2518R: Ani Sinha <ani@anisinha.ca> 2519F: hw/acpi/vmgenid.c 2520F: include/hw/acpi/vmgenid.h 2521F: docs/specs/vmgenid.rst 2522F: tests/qtest/vmgenid-test.c 2523 2524LED 2525M: Philippe Mathieu-Daudé <philmd@linaro.org> 2526S: Maintained 2527F: include/hw/misc/led.h 2528F: hw/misc/led.c 2529 2530Unimplemented device 2531M: Peter Maydell <peter.maydell@linaro.org> 2532R: Philippe Mathieu-Daudé <philmd@linaro.org> 2533R: Ani Sinha <ani@anisinha.ca> 2534S: Maintained 2535F: include/hw/misc/unimp.h 2536F: hw/misc/unimp.c 2537 2538Empty slot 2539M: Artyom Tarasenko <atar4qemu@gmail.com> 2540R: Philippe Mathieu-Daudé <philmd@linaro.org> 2541R: Ani Sinha <ani@anisinha.ca> 2542S: Maintained 2543F: include/hw/misc/empty_slot.h 2544F: hw/misc/empty_slot.c 2545 2546Standard VGA 2547M: Gerd Hoffmann <kraxel@redhat.com> 2548S: Maintained 2549F: hw/display/vga* 2550F: hw/display/bochs-display.c 2551F: include/hw/display/vga.h 2552F: include/hw/display/bochs-vbe.h 2553F: docs/specs/standard-vga.rst 2554 2555ramfb 2556M: Gerd Hoffmann <kraxel@redhat.com> 2557S: Maintained 2558F: hw/display/ramfb*.c 2559F: include/hw/display/ramfb.h 2560 2561virtio-gpu 2562S: Orphan 2563F: hw/display/virtio-gpu* 2564F: hw/display/virtio-vga.* 2565F: include/hw/virtio/virtio-gpu.h 2566F: docs/system/devices/virtio-gpu.rst 2567 2568vhost-user-blk 2569M: Raphael Norwitz <raphael@enfabrica.net> 2570S: Maintained 2571F: contrib/vhost-user-blk/ 2572F: contrib/vhost-user-scsi/ 2573F: hw/block/vhost-user-blk.c 2574F: hw/block/virtio-blk-common.c 2575F: hw/scsi/vhost-user-scsi.c 2576F: hw/virtio/vhost-user-blk-pci.c 2577F: hw/virtio/vhost-user-scsi-pci.c 2578F: include/hw/virtio/vhost-user-blk.h 2579F: include/hw/virtio/vhost-user-scsi.h 2580F: include/hw/virtio/virtio-blk-common.h 2581 2582vhost-user-gpu 2583M: Marc-André Lureau <marcandre.lureau@redhat.com> 2584S: Maintained 2585F: docs/interop/vhost-user-gpu.rst 2586F: contrib/vhost-user-gpu 2587F: hw/display/vhost-user-* 2588 2589Cirrus VGA 2590M: Gerd Hoffmann <kraxel@redhat.com> 2591S: Odd Fixes 2592W: https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/ 2593F: hw/display/cirrus* 2594 2595EDID Generator 2596M: Gerd Hoffmann <kraxel@redhat.com> 2597S: Maintained 2598F: hw/display/edid* 2599F: include/hw/display/edid.h 2600F: qemu-edid.c 2601 2602PIIX4 South Bridge (i82371AB) 2603M: Hervé Poussineau <hpoussin@reactos.org> 2604M: Philippe Mathieu-Daudé <philmd@linaro.org> 2605S: Maintained 2606F: hw/isa/piix.c 2607F: include/hw/southbridge/piix.h 2608 2609VIA South Bridges (VT82C686B, VT8231) 2610M: BALATON Zoltan <balaton@eik.bme.hu> 2611M: Philippe Mathieu-Daudé <philmd@linaro.org> 2612R: Jiaxun Yang <jiaxun.yang@flygoat.com> 2613S: Maintained 2614F: hw/isa/vt82c686.c 2615F: hw/usb/vt82c686-uhci-pci.c 2616F: include/hw/isa/vt82c686.h 2617 2618Firmware configuration (fw_cfg) 2619M: Philippe Mathieu-Daudé <philmd@linaro.org> 2620R: Gerd Hoffmann <kraxel@redhat.com> 2621S: Supported 2622F: docs/specs/fw_cfg.txt 2623F: hw/nvram/fw_cfg*.c 2624F: stubs/fw_cfg.c 2625F: include/hw/nvram/fw_cfg.h 2626F: include/standard-headers/linux/qemu_fw_cfg.h 2627F: tests/qtest/libqos/fw_cfg.c 2628F: tests/qtest/fw_cfg-test.c 2629T: git https://github.com/philmd/qemu.git fw_cfg-next 2630 2631XIVE 2632M: Cédric Le Goater <clg@kaod.org> 2633R: Frédéric Barrat <fbarrat@linux.ibm.com> 2634L: qemu-ppc@nongnu.org 2635S: Odd Fixes 2636F: hw/*/*xive* 2637F: include/hw/*/*xive* 2638F: docs/*/*xive* 2639 2640Renesas peripherals 2641R: Yoshinori Sato <ysato@users.sourceforge.jp> 2642R: Magnus Damm <magnus.damm@gmail.com> 2643S: Odd Fixes 2644F: hw/char/renesas_sci.c 2645F: hw/char/sh_serial.c 2646F: hw/timer/renesas_*.c 2647F: hw/timer/sh_timer.c 2648F: include/hw/char/renesas_sci.h 2649F: include/hw/sh4/sh.h 2650F: include/hw/timer/renesas_*.h 2651 2652Renesas RX peripherals 2653R: Yoshinori Sato <ysato@users.sourceforge.jp> 2654S: Orphan 2655F: hw/intc/rx_icu.c 2656F: hw/rx/ 2657F: include/hw/intc/rx_icu.h 2658F: include/hw/rx/ 2659 2660CAN bus subsystem and hardware 2661M: Pavel Pisa <pisa@cmp.felk.cvut.cz> 2662M: Francisco Iglesias <francisco.iglesias@amd.com> 2663S: Maintained 2664W: https://canbus.pages.fel.cvut.cz/ 2665F: net/can/* 2666F: hw/net/can/* 2667F: include/net/can_*.h 2668F: docs/system/devices/can.rst 2669 2670OpenPIC interrupt controller 2671M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> 2672S: Odd Fixes 2673F: hw/intc/openpic.c 2674F: include/hw/ppc/openpic.h 2675 2676MIPS CPS 2677M: Philippe Mathieu-Daudé <philmd@linaro.org> 2678S: Odd Fixes 2679F: hw/misc/mips_* 2680F: include/hw/misc/mips_* 2681 2682MIPS GIC 2683M: Philippe Mathieu-Daudé <philmd@linaro.org> 2684S: Odd Fixes 2685F: hw/intc/mips_gic.c 2686F: hw/timer/mips_gictimer.c 2687F: include/hw/intc/mips_gic.h 2688F: include/hw/timer/mips_gictimer.h 2689 2690S390 3270 device 2691M: Halil Pasic <pasic@linux.ibm.com> 2692M: Christian Borntraeger <borntraeger@linux.ibm.com> 2693S: Odd fixes 2694F: include/hw/s390x/3270-ccw.h 2695F: hw/char/terminal3270.c 2696F: hw/s390x/3270-ccw.c 2697L: qemu-s390x@nongnu.org 2698 2699S390 diag 288 watchdog 2700M: Halil Pasic <pasic@linux.ibm.com> 2701M: Christian Borntraeger <borntraeger@linux.ibm.com> 2702S: Supported 2703F: hw/watchdog/wdt_diag288.c 2704F: include/hw/watchdog/wdt_diag288.h 2705L: qemu-s390x@nongnu.org 2706 2707S390 storage key device 2708M: Halil Pasic <pasic@linux.ibm.com> 2709M: Christian Borntraeger <borntraeger@linux.ibm.com> 2710S: Supported 2711F: hw/s390x/storage-keys.h 2712F: hw/s390x/s390-skeys*.c 2713L: qemu-s390x@nongnu.org 2714 2715S390 storage attribute device 2716M: Halil Pasic <pasic@linux.ibm.com> 2717M: Christian Borntraeger <borntraeger@linux.ibm.com> 2718S: Supported 2719F: hw/s390x/storage-attributes.h 2720F: hw/s390x/s390-stattrib*.c 2721L: qemu-s390x@nongnu.org 2722 2723S390 floating interrupt controller 2724M: Halil Pasic <pasic@linux.ibm.com> 2725M: Christian Borntraeger <borntraeger@linux.ibm.com> 2726M: David Hildenbrand <david@redhat.com> 2727S: Supported 2728F: hw/intc/s390_flic*.c 2729F: include/hw/s390x/s390_flic.h 2730L: qemu-s390x@nongnu.org 2731 2732CanoKey 2733M: Hongren (Zenithal) Zheng <i@zenithal.me> 2734S: Maintained 2735R: Canokeys.org <contact@canokeys.org> 2736F: hw/usb/canokey.c 2737F: hw/usb/canokey.h 2738F: docs/system/devices/canokey.rst 2739 2740Hyper-V Dynamic Memory Protocol 2741M: Maciej S. Szmigiero <maciej.szmigiero@oracle.com> 2742S: Supported 2743F: hw/hyperv/hv-balloon*.c 2744F: hw/hyperv/hv-balloon*.h 2745F: include/hw/hyperv/dynmem-proto.h 2746F: include/hw/hyperv/hv-balloon.h 2747 2748Subsystems 2749---------- 2750Overall Audio backends 2751M: Gerd Hoffmann <kraxel@redhat.com> 2752M: Marc-André Lureau <marcandre.lureau@redhat.com> 2753S: Odd Fixes 2754F: audio/ 2755X: audio/alsaaudio.c 2756X: audio/coreaudio.c 2757X: audio/dsound* 2758X: audio/jackaudio.c 2759X: audio/ossaudio.c 2760X: audio/paaudio.c 2761X: audio/sdlaudio.c 2762X: audio/sndioaudio.c 2763X: audio/spiceaudio.c 2764F: qapi/audio.json 2765 2766ALSA Audio backend 2767M: Gerd Hoffmann <kraxel@redhat.com> 2768R: Christian Schoenebeck <qemu_oss@crudebyte.com> 2769S: Odd Fixes 2770F: audio/alsaaudio.c 2771 2772Core Audio framework backend 2773M: Gerd Hoffmann <kraxel@redhat.com> 2774M: Philippe Mathieu-Daudé <philmd@linaro.org> 2775R: Christian Schoenebeck <qemu_oss@crudebyte.com> 2776R: Akihiko Odaki <akihiko.odaki@daynix.com> 2777S: Odd Fixes 2778F: audio/coreaudio.c 2779 2780DSound Audio backend 2781M: Gerd Hoffmann <kraxel@redhat.com> 2782S: Odd Fixes 2783F: audio/dsound* 2784 2785JACK Audio Connection Kit backend 2786M: Gerd Hoffmann <kraxel@redhat.com> 2787R: Christian Schoenebeck <qemu_oss@crudebyte.com> 2788S: Odd Fixes 2789F: audio/jackaudio.c 2790 2791Open Sound System (OSS) Audio backend 2792M: Gerd Hoffmann <kraxel@redhat.com> 2793S: Odd Fixes 2794F: audio/ossaudio.c 2795 2796PulseAudio backend 2797M: Gerd Hoffmann <kraxel@redhat.com> 2798S: Odd Fixes 2799F: audio/paaudio.c 2800 2801SDL Audio backend 2802M: Gerd Hoffmann <kraxel@redhat.com> 2803R: Thomas Huth <huth@tuxfamily.org> 2804S: Odd Fixes 2805F: audio/sdlaudio.c 2806 2807Sndio Audio backend 2808M: Gerd Hoffmann <kraxel@redhat.com> 2809R: Alexandre Ratchov <alex@caoua.org> 2810S: Odd Fixes 2811F: audio/sndioaudio.c 2812 2813Block layer core 2814M: Kevin Wolf <kwolf@redhat.com> 2815M: Hanna Reitz <hreitz@redhat.com> 2816L: qemu-block@nongnu.org 2817S: Supported 2818F: block* 2819F: block/ 2820F: hw/block/ 2821F: qapi/block*.json 2822F: qapi/transaction.json 2823F: include/block/ 2824F: include/sysemu/block-*.h 2825F: qemu-img* 2826F: docs/tools/qemu-img.rst 2827F: qemu-io* 2828F: tests/qemu-iotests/ 2829F: util/qemu-progress.c 2830F: qobject/block-qdict.c 2831F: tests/unit/check-block-qdict.c 2832T: git https://repo.or.cz/qemu/kevin.git block 2833 2834Storage daemon 2835M: Kevin Wolf <kwolf@redhat.com> 2836L: qemu-block@nongnu.org 2837S: Supported 2838F: storage-daemon/ 2839F: docs/interop/qemu-storage-daemon-qmp-ref.rst 2840F: docs/tools/qemu-storage-daemon.rst 2841T: git https://repo.or.cz/qemu/kevin.git block 2842 2843Block I/O path 2844M: Stefan Hajnoczi <stefanha@redhat.com> 2845M: Fam Zheng <fam@euphon.net> 2846L: qemu-block@nongnu.org 2847S: Supported 2848F: util/async.c 2849F: util/aio-*.c 2850F: util/aio-*.h 2851F: util/defer-call.c 2852F: util/fdmon-*.c 2853F: block/io.c 2854F: include/block/aio.h 2855F: include/block/aio-wait.h 2856F: include/qemu/defer-call.h 2857F: scripts/qemugdb/aio.py 2858F: tests/unit/test-fdmon-epoll.c 2859T: git https://github.com/stefanha/qemu.git block 2860 2861Block SCSI subsystem 2862M: Paolo Bonzini <pbonzini@redhat.com> 2863R: Fam Zheng <fam@euphon.net> 2864L: qemu-block@nongnu.org 2865S: Supported 2866F: include/scsi/* 2867F: scsi/* 2868 2869Block Jobs 2870M: John Snow <jsnow@redhat.com> 2871M: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru> 2872L: qemu-block@nongnu.org 2873S: Supported 2874F: blockjob.c 2875F: include/block/blockjob.h 2876F: job.c 2877F: job-qmp.c 2878F: include/qemu/job.h 2879F: block/backup.c 2880F: block/commit.c 2881F: block/stream.c 2882F: block/mirror.c 2883F: qapi/job.json 2884F: block/block-copy.c 2885F: include/block/block-copy.h 2886F: block/reqlist.c 2887F: include/block/reqlist.h 2888F: block/copy-before-write.h 2889F: block/copy-before-write.c 2890F: block/snapshot-access.c 2891F: include/block/aio_task.h 2892F: block/aio_task.c 2893F: util/qemu-co-shared-resource.c 2894F: include/qemu/co-shared-resource.h 2895T: git https://gitlab.com/jsnow/qemu.git jobs 2896T: git https://gitlab.com/vsementsov/qemu.git block 2897 2898Compute Express Link 2899M: Jonathan Cameron <jonathan.cameron@huawei.com> 2900R: Fan Ni <fan.ni@samsung.com> 2901S: Supported 2902F: hw/cxl/ 2903F: hw/mem/cxl_type3.c 2904F: include/hw/cxl/ 2905F: qapi/cxl.json 2906 2907Dirty Bitmaps 2908M: Eric Blake <eblake@redhat.com> 2909M: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru> 2910R: John Snow <jsnow@redhat.com> 2911L: qemu-block@nongnu.org 2912S: Supported 2913F: include/qemu/hbitmap.h 2914F: include/block/dirty-bitmap.h 2915F: block/monitor/bitmap-qmp-cmds.c 2916F: block/dirty-bitmap.c 2917F: block/qcow2-bitmap.c 2918F: migration/block-dirty-bitmap.c 2919F: util/hbitmap.c 2920F: tests/unit/test-hbitmap.c 2921F: docs/interop/bitmaps.rst 2922T: git https://repo.or.cz/qemu/ericb.git bitmaps 2923T: git https://gitlab.com/vsementsov/qemu.git block 2924 2925Character device backends 2926M: Marc-André Lureau <marcandre.lureau@redhat.com> 2927R: Paolo Bonzini <pbonzini@redhat.com> 2928S: Maintained 2929F: chardev/ 2930F: include/chardev/ 2931F: qapi/char.json 2932 2933Character Devices (Braille) 2934M: Samuel Thibault <samuel.thibault@ens-lyon.org> 2935S: Maintained 2936F: chardev/baum.c 2937 2938Command line option argument parsing 2939M: Markus Armbruster <armbru@redhat.com> 2940S: Supported 2941F: include/qemu/option.h 2942F: tests/unit/test-keyval.c 2943F: tests/unit/test-qemu-opts.c 2944F: tests/functional/test_version.py 2945F: util/keyval.c 2946F: util/qemu-option.c 2947 2948Coverity model 2949M: Markus Armbruster <armbru@redhat.com> 2950S: Supported 2951F: scripts/coverity-model.c 2952 2953Coverity Scan integration 2954M: Peter Maydell <peter.maydell@linaro.org> 2955S: Maintained 2956F: scripts/coverity-scan/ 2957 2958Device Tree 2959M: Alistair Francis <alistair.francis@wdc.com> 2960R: David Gibson <david@gibson.dropbear.id.au> 2961S: Maintained 2962F: system/device_tree.c 2963F: include/sysemu/device_tree.h 2964 2965Dump 2966S: Supported 2967M: Marc-André Lureau <marcandre.lureau@redhat.com> 2968F: dump/ 2969F: hw/misc/vmcoreinfo.c 2970F: include/hw/misc/vmcoreinfo.h 2971F: include/qemu/win_dump_defs 2972F: include/sysemu/dump-arch.h 2973F: include/sysemu/dump.h 2974F: qapi/dump.json 2975F: scripts/dump-guest-memory.py 2976F: stubs/dump.c 2977F: docs/specs/vmcoreinfo.rst 2978 2979Error reporting 2980M: Markus Armbruster <armbru@redhat.com> 2981S: Supported 2982F: include/qapi/error.h 2983F: include/qemu/error-report.h 2984F: qapi/error.json 2985F: util/error.c 2986F: util/error-report.c 2987F: scripts/coccinelle/err-bad-newline.cocci 2988F: scripts/coccinelle/error-use-after-free.cocci 2989F: scripts/coccinelle/error_propagate_null.cocci 2990F: scripts/coccinelle/remove_local_err.cocci 2991F: scripts/coccinelle/use-error_fatal.cocci 2992F: scripts/coccinelle/errp-guard.cocci 2993 2994GDB stub 2995M: Alex Bennée <alex.bennee@linaro.org> 2996R: Philippe Mathieu-Daudé <philmd@linaro.org> 2997S: Maintained 2998F: docs/system/gdb.rst 2999F: gdbstub/* 3000F: include/exec/gdbstub.h 3001F: include/gdbstub/* 3002F: gdb-xml/ 3003F: tests/tcg/multiarch/gdbstub/* 3004F: scripts/feature_to_c.py 3005F: scripts/probe-gdb-support.py 3006T: git https://gitlab.com/stsquad/qemu gdbstub/next 3007 3008Memory API 3009M: Paolo Bonzini <pbonzini@redhat.com> 3010M: Peter Xu <peterx@redhat.com> 3011M: David Hildenbrand <david@redhat.com> 3012R: Philippe Mathieu-Daudé <philmd@linaro.org> 3013S: Supported 3014F: include/exec/ioport.h 3015F: include/exec/memop.h 3016F: include/exec/memory.h 3017F: include/exec/ram_addr.h 3018F: include/exec/ramblock.h 3019F: include/sysemu/memory_mapping.h 3020F: system/dma-helpers.c 3021F: system/ioport.c 3022F: system/memory.c 3023F: system/memory_mapping.c 3024F: system/physmem.c 3025F: include/exec/memory-internal.h 3026F: scripts/coccinelle/memory-region-housekeeping.cocci 3027 3028Memory devices 3029M: David Hildenbrand <david@redhat.com> 3030M: Igor Mammedov <imammedo@redhat.com> 3031R: Xiao Guangrong <xiaoguangrong.eric@gmail.com> 3032S: Supported 3033F: hw/mem/memory-device.c 3034F: hw/mem/nvdimm.c 3035F: hw/mem/pc-dimm.c 3036F: include/hw/mem/memory-device.h 3037F: include/hw/mem/nvdimm.h 3038F: include/hw/mem/pc-dimm.h 3039F: stubs/memory_device.c 3040F: docs/nvdimm.txt 3041 3042SPICE 3043S: Orphan 3044F: include/ui/qemu-spice.h 3045F: include/ui/spice-display.h 3046F: ui/spice-*.c 3047F: audio/spiceaudio.c 3048F: hw/display/qxl* 3049F: qapi/ui.json 3050F: docs/spice-port-fqdn.txt 3051 3052Graphics 3053M: Marc-André Lureau <marcandre.lureau@redhat.com> 3054S: Odd Fixes 3055F: ui/ 3056F: include/ui/ 3057F: qapi/ui.json 3058F: util/drm.c 3059F: docs/devel/ui.rst 3060 3061Cocoa graphics 3062M: Peter Maydell <peter.maydell@linaro.org> 3063M: Philippe Mathieu-Daudé <philmd@linaro.org> 3064R: Akihiko Odaki <akihiko.odaki@daynix.com> 3065S: Odd Fixes 3066F: ui/cocoa.m 3067 3068Main loop 3069M: Paolo Bonzini <pbonzini@redhat.com> 3070S: Maintained 3071F: include/qemu/main-loop.h 3072F: include/sysemu/runstate.h 3073F: include/sysemu/runstate-action.h 3074F: util/main-loop.c 3075F: util/qemu-timer*.c 3076F: system/vl.c 3077F: system/main.c 3078F: system/cpus.c 3079F: system/cpu-throttle.c 3080F: system/cpu-timers.c 3081F: system/runstate* 3082F: qapi/run-state.json 3083 3084Read, Copy, Update (RCU) 3085M: Paolo Bonzini <pbonzini@redhat.com> 3086S: Maintained 3087F: docs/devel/lockcnt.rst 3088F: docs/devel/rcu.rst 3089F: include/qemu/rcu*.h 3090F: include/qemu/lockcnt.h 3091F: tests/unit/rcutorture.c 3092F: tests/unit/test-rcu-*.c 3093F: util/lockcnt.c 3094F: util/rcu.c 3095 3096Human Monitor (HMP) 3097M: Dr. David Alan Gilbert <dave@treblig.org> 3098S: Maintained 3099F: monitor/monitor-internal.h 3100F: monitor/misc.c 3101F: monitor/monitor.c 3102F: monitor/hmp* 3103F: hmp.h 3104F: hmp-commands*.hx 3105F: include/monitor/hmp-target.h 3106F: tests/qtest/test-hmp.c 3107F: include/qemu/qemu-print.h 3108F: util/qemu-print.c 3109 3110Network device backends 3111M: Jason Wang <jasowang@redhat.com> 3112S: Maintained 3113F: net/ 3114F: include/net/ 3115F: qemu-bridge-helper.c 3116T: git https://github.com/jasowang/qemu.git net 3117F: qapi/net.json 3118 3119Netmap network backend 3120M: Luigi Rizzo <rizzo@iet.unipi.it> 3121M: Giuseppe Lettieri <g.lettieri@iet.unipi.it> 3122M: Vincenzo Maffione <v.maffione@gmail.com> 3123W: http://info.iet.unipi.it/~luigi/netmap/ 3124S: Maintained 3125F: net/netmap.c 3126 3127AF_XDP network backend 3128R: Ilya Maximets <i.maximets@ovn.org> 3129F: net/af-xdp.c 3130 3131Host Memory Backends 3132M: David Hildenbrand <david@redhat.com> 3133M: Igor Mammedov <imammedo@redhat.com> 3134S: Maintained 3135F: backends/hostmem*.c 3136F: include/sysemu/hostmem.h 3137F: docs/system/vm-templating.rst 3138T: git https://gitlab.com/ehabkost/qemu.git machine-next 3139 3140Cryptodev Backends 3141M: Gonglei <arei.gonglei@huawei.com> 3142M: zhenwei pi <pizhenwei@bytedance.com> 3143S: Maintained 3144F: include/sysemu/cryptodev*.h 3145F: backends/cryptodev*.c 3146F: qapi/cryptodev.json 3147 3148Python library 3149M: John Snow <jsnow@redhat.com> 3150M: Cleber Rosa <crosa@redhat.com> 3151S: Maintained 3152F: python/ 3153T: git https://gitlab.com/jsnow/qemu.git python 3154 3155Python scripts 3156M: John Snow <jsnow@redhat.com> 3157M: Cleber Rosa <crosa@redhat.com> 3158S: Odd Fixes 3159F: scripts/*.py 3160F: tests/*.py 3161 3162Benchmark util 3163M: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru> 3164S: Maintained 3165F: scripts/simplebench/ 3166T: git https://gitlab.com/vsementsov/qemu.git simplebench 3167 3168Transactions helper 3169M: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru> 3170S: Maintained 3171F: include/qemu/transactions.h 3172F: util/transactions.c 3173T: git https://gitlab.com/vsementsov/qemu.git block 3174 3175QAPI 3176M: Markus Armbruster <armbru@redhat.com> 3177M: Michael Roth <michael.roth@amd.com> 3178S: Supported 3179F: qapi/ 3180X: qapi/*.json 3181F: include/qapi/ 3182X: include/qapi/qmp/ 3183F: include/qapi/qmp/dispatch.h 3184F: tests/qapi-schema/ 3185F: tests/unit/test-*-visitor.c 3186F: tests/unit/test-qapi-*.c 3187F: tests/unit/test-qmp-*.c 3188F: tests/unit/test-visitor-serialization.c 3189F: scripts/qapi-gen.py 3190F: scripts/qapi/* 3191F: docs/sphinx/qapidoc.py 3192F: docs/devel/qapi* 3193T: git https://repo.or.cz/qemu/armbru.git qapi-next 3194 3195QAPI Schema 3196M: Eric Blake <eblake@redhat.com> 3197M: Markus Armbruster <armbru@redhat.com> 3198S: Supported 3199F: qapi/*.json 3200F: qga/qapi-schema.json 3201T: git https://repo.or.cz/qemu/armbru.git qapi-next 3202 3203QObject 3204M: Markus Armbruster <armbru@redhat.com> 3205S: Supported 3206F: qobject/ 3207F: include/qapi/qmp/ 3208X: include/qapi/qmp/dispatch.h 3209F: scripts/coccinelle/qobject.cocci 3210F: tests/unit/check-qdict.c 3211F: tests/unit/check-qjson.c 3212F: tests/unit/check-qlist.c 3213F: tests/unit/check-qlit.c 3214F: tests/unit/check-qnull.c 3215F: tests/unit/check-qnum.c 3216F: tests/unit/check-qobject.c 3217F: tests/unit/check-qstring.c 3218F: tests/data/qobject/qdict.txt 3219T: git https://repo.or.cz/qemu/armbru.git qapi-next 3220 3221QEMU Guest Agent 3222M: Michael Roth <michael.roth@amd.com> 3223M: Konstantin Kostiuk <kkostiuk@redhat.com> 3224S: Maintained 3225F: qga/ 3226F: contrib/systemd/qemu-guest-agent.service 3227F: docs/interop/qemu-ga.rst 3228F: docs/interop/qemu-ga-ref.rst 3229F: scripts/qemu-guest-agent/ 3230F: tests/*/test-qga* 3231T: git https://github.com/mdroth/qemu.git qga 3232 3233QEMU Guest Agent Win32 3234M: Konstantin Kostiuk <kkostiuk@redhat.com> 3235S: Maintained 3236F: qga/*win32* 3237F: qga/vss-win32/ 3238F: qga/installer/ 3239T: git https://github.com/kostyanf14/qemu.git qga-win32 3240 3241QOM 3242M: Paolo Bonzini <pbonzini@redhat.com> 3243R: Daniel P. Berrange <berrange@redhat.com> 3244R: Eduardo Habkost <eduardo@habkost.net> 3245S: Supported 3246F: docs/devel/qom.rst 3247F: docs/qdev-device-use.txt 3248F: hw/core/qdev* 3249F: hw/core/bus.c 3250F: hw/core/sysbus.c 3251F: include/hw/qdev* 3252F: include/monitor/qdev.h 3253F: include/qom/ 3254F: qapi/qom.json 3255F: qapi/qdev.json 3256F: scripts/coccinelle/qom-parent-type.cocci 3257F: scripts/qom-cast-macro-clean-cocci-gen.py 3258F: system/qdev-monitor.c 3259F: stubs/qdev.c 3260F: qom/ 3261F: tests/unit/check-qom-interface.c 3262F: tests/unit/check-qom-proplist.c 3263F: tests/unit/test-qdev-global-props.c 3264 3265QOM boilerplate conversion script 3266M: Eduardo Habkost <eduardo@habkost.net> 3267S: Maintained 3268F: scripts/codeconverter/ 3269 3270QMP 3271M: Markus Armbruster <armbru@redhat.com> 3272S: Supported 3273F: monitor/monitor-internal.h 3274F: monitor/qmp* 3275F: monitor/misc.c 3276F: monitor/monitor.c 3277F: qapi/control.json 3278F: qapi/error.json 3279F: qapi/introspect.json 3280F: docs/devel/*qmp-* 3281F: docs/interop/*qmp-* 3282F: scripts/qmp/ 3283F: tests/qtest/qmp-test.c 3284F: tests/qtest/qmp-cmd-test.c 3285T: git https://repo.or.cz/qemu/armbru.git qapi-next 3286 3287qtest 3288M: Fabiano Rosas <farosas@suse.de> 3289M: Laurent Vivier <lvivier@redhat.com> 3290R: Paolo Bonzini <pbonzini@redhat.com> 3291S: Maintained 3292F: system/qtest.c 3293F: include/sysemu/qtest.h 3294F: accel/qtest/ 3295F: tests/qtest/ 3296F: docs/devel/qgraph.rst 3297F: docs/devel/qtest.rst 3298X: tests/qtest/bios-tables-test* 3299X: tests/qtest/migration-* 3300 3301Device Fuzzing 3302M: Alexander Bulekov <alxndr@bu.edu> 3303R: Paolo Bonzini <pbonzini@redhat.com> 3304R: Bandan Das <bsd@redhat.com> 3305R: Stefan Hajnoczi <stefanha@redhat.com> 3306R: Fabiano Rosas <farosas@suse.de> 3307R: Darren Kenny <darren.kenny@oracle.com> 3308R: Qiuhao Li <Qiuhao.Li@outlook.com> 3309S: Maintained 3310F: tests/qtest/fuzz/ 3311F: tests/qtest/fuzz-*test.c 3312F: tests/docker/test-fuzz 3313F: scripts/oss-fuzz/ 3314F: hw/mem/sparse-mem.c 3315F: docs/devel/fuzzing.rst 3316 3317Register API 3318M: Alistair Francis <alistair@alistair23.me> 3319S: Maintained 3320F: hw/core/register.c 3321F: include/hw/register.h 3322F: include/hw/registerfields.h 3323 3324Rust 3325M: Manos Pitsidianakis <manos.pitsidianakis@linaro.org> 3326S: Maintained 3327F: rust/qemu-api 3328F: rust/qemu-api-macros 3329F: rust/rustfmt.toml 3330 3331SLIRP 3332M: Samuel Thibault <samuel.thibault@ens-lyon.org> 3333S: Maintained 3334F: net/slirp.c 3335F: include/net/slirp.h 3336T: git https://people.debian.org/~sthibault/qemu.git slirp 3337 3338Stats 3339S: Orphan 3340F: include/sysemu/stats.h 3341F: stats/ 3342F: qapi/stats.json 3343 3344Streams 3345M: Edgar E. Iglesias <edgar.iglesias@gmail.com> 3346S: Maintained 3347F: hw/core/stream.c 3348F: include/hw/stream.h 3349 3350Stubs 3351M: Paolo Bonzini <pbonzini@redhat.com> 3352S: Maintained 3353F: stubs/ 3354 3355Tracing 3356M: Stefan Hajnoczi <stefanha@redhat.com> 3357R: Mads Ynddal <mads@ynddal.dk> 3358S: Maintained 3359F: trace/ 3360F: trace-events 3361F: docs/qemu-option-trace.rst.inc 3362F: qapi/trace.json 3363F: scripts/tracetool.py 3364F: scripts/tracetool/ 3365F: scripts/qemu-trace-stap* 3366F: docs/tools/qemu-trace-stap.rst 3367F: docs/devel/tracing.rst 3368T: git https://github.com/stefanha/qemu.git tracing 3369 3370Simpletrace 3371M: Mads Ynddal <mads@ynddal.dk> 3372S: Maintained 3373F: scripts/simpletrace.py 3374 3375TPM 3376M: Stefan Berger <stefanb@linux.ibm.com> 3377S: Maintained 3378F: system/tpm* 3379F: hw/tpm/* 3380F: include/hw/acpi/tpm.h 3381F: include/sysemu/tpm* 3382F: qapi/tpm.json 3383F: backends/tpm/ 3384F: tests/qtest/*tpm* 3385F: docs/specs/tpm.rst 3386T: git https://github.com/stefanberger/qemu-tpm.git tpm-next 3387 3388SPDM 3389M: Alistair Francis <alistair.francis@wdc.com> 3390S: Maintained 3391F: backends/spdm-socket.c 3392F: include/sysemu/spdm-socket.h 3393 3394Checkpatch 3395S: Odd Fixes 3396F: scripts/checkpatch.pl 3397 3398Migration 3399M: Peter Xu <peterx@redhat.com> 3400M: Fabiano Rosas <farosas@suse.de> 3401S: Maintained 3402F: hw/core/vmstate-if.c 3403F: include/hw/vmstate-if.h 3404F: include/migration/ 3405F: include/qemu/userfaultfd.h 3406F: migration/ 3407F: scripts/vmstate-static-checker.py 3408F: tests/vmstate-static-checker-data/ 3409F: tests/qtest/migration-* 3410F: docs/devel/migration/ 3411F: qapi/migration.json 3412F: tests/migration/ 3413F: util/userfaultfd.c 3414X: migration/rdma* 3415 3416RDMA Migration 3417R: Li Zhijian <lizhijian@fujitsu.com> 3418R: Peter Xu <peterx@redhat.com> 3419S: Odd Fixes 3420F: migration/rdma* 3421 3422Migration dirty limit and dirty page rate 3423M: Hyman Huang <yong.huang@smartx.com> 3424S: Maintained 3425F: system/dirtylimit.c 3426F: include/sysemu/dirtylimit.h 3427F: migration/dirtyrate.c 3428F: migration/dirtyrate.h 3429F: include/sysemu/dirtyrate.h 3430F: docs/devel/migration/dirty-limit.rst 3431 3432Detached LUKS header 3433M: Hyman Huang <yong.huang@smartx.com> 3434S: Maintained 3435F: tests/qemu-iotests/tests/luks-detached-header 3436F: docs/devel/luks-detached-header.rst 3437 3438D-Bus 3439M: Marc-André Lureau <marcandre.lureau@redhat.com> 3440S: Maintained 3441F: backends/dbus-vmstate.c 3442F: ui/dbus* 3443F: audio/dbus* 3444F: util/dbus.c 3445F: include/ui/dbus* 3446F: include/qemu/dbus.h 3447F: docs/interop/dbus* 3448F: docs/sphinx/dbus* 3449F: docs/sphinx/fakedbusdoc.py 3450F: tests/qtest/dbus* 3451F: scripts/xml-preprocess* 3452 3453Seccomp 3454M: Daniel P. Berrange <berrange@redhat.com> 3455S: Odd Fixes 3456F: system/qemu-seccomp.c 3457F: include/sysemu/seccomp.h 3458F: tests/unit/test-seccomp.c 3459 3460Cryptography 3461M: Daniel P. Berrange <berrange@redhat.com> 3462S: Maintained 3463F: crypto/ 3464F: include/crypto/ 3465F: host/include/*/host/crypto/ 3466F: qapi/crypto.json 3467F: tests/unit/test-crypto-* 3468F: tests/bench/benchmark-crypto-* 3469F: tests/unit/crypto-tls-* 3470F: tests/unit/pkix_asn1_tab.c.inc 3471F: qemu.sasl 3472 3473Coroutines 3474M: Stefan Hajnoczi <stefanha@redhat.com> 3475M: Kevin Wolf <kwolf@redhat.com> 3476S: Maintained 3477F: util/*coroutine* 3478F: include/qemu/coroutine* 3479F: tests/unit/test-coroutine.c 3480 3481Buffers 3482M: Daniel P. Berrange <berrange@redhat.com> 3483S: Odd Fixes 3484F: util/buffer.c 3485F: include/qemu/buffer.h 3486 3487I/O Channels 3488M: Daniel P. Berrange <berrange@redhat.com> 3489S: Maintained 3490F: io/ 3491F: include/io/ 3492F: tests/unit/test-io-* 3493 3494User authorization 3495M: Daniel P. Berrange <berrange@redhat.com> 3496S: Maintained 3497F: authz/ 3498F: qapi/authz.json 3499F: include/authz/ 3500F: tests/unit/test-authz-* 3501 3502Sockets 3503M: Daniel P. Berrange <berrange@redhat.com> 3504S: Maintained 3505F: include/qemu/sockets.h 3506F: util/qemu-sockets.c 3507F: qapi/sockets.json 3508 3509File monitor 3510M: Daniel P. Berrange <berrange@redhat.com> 3511S: Odd Fixes 3512F: util/filemonitor*.c 3513F: include/qemu/filemonitor.h 3514F: tests/unit/test-util-filemonitor.c 3515 3516Throttling infrastructure 3517M: Alberto Garcia <berto@igalia.com> 3518S: Supported 3519F: block/throttle-groups.c 3520F: include/block/throttle-groups.h 3521F: include/qemu/throttle*.h 3522F: util/throttle.c 3523F: docs/throttle.txt 3524F: tests/unit/test-throttle.c 3525L: qemu-block@nongnu.org 3526 3527UUID 3528M: Fam Zheng <fam@euphon.net> 3529S: Supported 3530F: util/uuid.c 3531F: include/qemu/uuid.h 3532F: tests/unit/test-uuid.c 3533 3534Yank feature 3535M: Lukas Straub <lukasstraub2@web.de> 3536S: Odd fixes 3537F: util/yank.c 3538F: migration/yank_functions* 3539F: tests/unit/test-yank.c 3540F: include/qemu/yank.h 3541F: qapi/yank.json 3542 3543COLO Framework 3544M: Hailiang Zhang <zhanghailiang@xfusion.com> 3545S: Maintained 3546F: migration/colo* 3547F: include/migration/colo.h 3548F: include/migration/failover.h 3549F: docs/COLO-FT.txt 3550 3551COLO Proxy 3552M: Zhang Chen <chen.zhang@intel.com> 3553M: Li Zhijian <lizhijian@fujitsu.com> 3554S: Supported 3555F: docs/colo-proxy.txt 3556F: net/colo* 3557F: net/filter-rewriter.c 3558F: net/filter-mirror.c 3559F: tests/qtest/test-filter* 3560 3561Record/replay 3562M: Pavel Dovgalyuk <pavel.dovgaluk@ispras.ru> 3563R: Paolo Bonzini <pbonzini@redhat.com> 3564W: https://wiki.qemu.org/Features/record-replay 3565S: Supported 3566F: replay/* 3567F: block/blkreplay.c 3568F: net/filter-replay.c 3569F: include/exec/replay-core.h 3570F: include/sysemu/replay.h 3571F: docs/devel/replay.rst 3572F: docs/system/replay.rst 3573F: stubs/replay.c 3574F: tests/avocado/replay_kernel.py 3575F: tests/avocado/replay_linux.py 3576F: tests/avocado/reverse_debugging.py 3577F: qapi/replay.json 3578 3579IOVA Tree 3580M: Peter Xu <peterx@redhat.com> 3581S: Maintained 3582F: include/qemu/iova-tree.h 3583F: util/iova-tree.c 3584 3585elf2dmp 3586M: Viktor Prutyanov <viktor.prutyanov@phystech.edu> 3587R: Akihiko Odaki <akihiko.odaki@daynix.com> 3588S: Maintained 3589F: contrib/elf2dmp/ 3590 3591Overall sensors 3592M: Philippe Mathieu-Daudé <philmd@linaro.org> 3593S: Odd Fixes 3594F: hw/sensor 3595F: include/hw/sensor 3596 3597I2C and SMBus 3598M: Corey Minyard <cminyard@mvista.com> 3599S: Maintained 3600F: hw/i2c/core.c 3601F: hw/i2c/smbus_slave.c 3602F: hw/i2c/smbus_master.c 3603F: hw/i2c/smbus_eeprom.c 3604F: include/hw/i2c/i2c.h 3605F: include/hw/i2c/smbus_master.h 3606F: include/hw/i2c/smbus_slave.h 3607F: include/hw/i2c/smbus_eeprom.h 3608 3609PMBus 3610M: Titus Rwantare <titusr@google.com> 3611S: Maintained 3612F: hw/i2c/pmbus_device.c 3613F: hw/sensor/adm1272.c 3614F: hw/sensor/isl_pmbus_vr.c 3615F: hw/sensor/max34451.c 3616F: include/hw/i2c/pmbus_device.h 3617F: include/hw/sensor/isl_pmbus_vr.h 3618F: tests/qtest/adm1272-test.c 3619F: tests/qtest/max34451-test.c 3620F: tests/qtest/isl_pmbus_vr-test.c 3621 3622FSI 3623M: Ninad Palsule <ninad@linux.ibm.com> 3624R: Cédric Le Goater <clg@kaod.org> 3625S: Maintained 3626F: hw/fsi/* 3627F: include/hw/fsi/* 3628F: docs/specs/fsi.rst 3629F: tests/qtest/aspeed_fsi-test.c 3630 3631Firmware schema specifications 3632M: Philippe Mathieu-Daudé <philmd@linaro.org> 3633R: Daniel P. Berrange <berrange@redhat.com> 3634R: Kashyap Chamarthy <kchamart@redhat.com> 3635S: Maintained 3636F: docs/interop/firmware.json 3637 3638EDK2 Firmware 3639M: Philippe Mathieu-Daudé <philmd@linaro.org> 3640M: Gerd Hoffmann <kraxel@redhat.com> 3641S: Supported 3642F: hw/i386/*ovmf* 3643F: pc-bios/descriptors/??-edk2-*.json 3644F: pc-bios/edk2-* 3645F: roms/Makefile.edk2 3646F: roms/edk2 3647F: roms/edk2-* 3648F: tests/data/uefi-boot-images/ 3649F: tests/uefi-test-tools/ 3650 3651VT-d Emulation 3652M: Michael S. Tsirkin <mst@redhat.com> 3653R: Jason Wang <jasowang@redhat.com> 3654R: Yi Liu <yi.l.liu@intel.com> 3655R: Clément Mathieu--Drif <clement.mathieu--drif@eviden.com> 3656S: Supported 3657F: hw/i386/intel_iommu.c 3658F: hw/i386/intel_iommu_internal.h 3659F: include/hw/i386/intel_iommu.h 3660 3661AMD-Vi Emulation 3662S: Orphan 3663F: hw/i386/amd_iommu.? 3664 3665OpenSBI Firmware 3666M: Bin Meng <bmeng.cn@gmail.com> 3667S: Supported 3668F: pc-bios/opensbi-* 3669F: .gitlab-ci.d/opensbi.yml 3670F: .gitlab-ci.d/opensbi/ 3671 3672Clock framework 3673M: Luc Michel <luc@lmichel.fr> 3674R: Damien Hedde <damien.hedde@dahe.fr> 3675S: Maintained 3676F: include/hw/clock.h 3677F: include/hw/qdev-clock.h 3678F: hw/core/clock.c 3679F: hw/core/clock-vmstate.c 3680F: hw/core/qdev-clock.c 3681F: docs/devel/clocks.rst 3682 3683Reset framework 3684M: Peter Maydell <peter.maydell@linaro.org> 3685S: Maintained 3686F: include/hw/resettable.h 3687F: include/hw/core/resetcontainer.h 3688F: include/sysemu/reset.h 3689F: hw/core/reset.c 3690F: hw/core/resettable.c 3691F: hw/core/resetcontainer.c 3692 3693Usermode Emulation 3694------------------ 3695Overall usermode emulation 3696M: Riku Voipio <riku.voipio@iki.fi> 3697S: Maintained 3698F: accel/tcg/user-exec*.c 3699F: include/user/ 3700F: common-user/ 3701 3702BSD user 3703M: Warner Losh <imp@bsdimp.com> 3704R: Kyle Evans <kevans@freebsd.org> 3705S: Maintained 3706F: bsd-user/ 3707F: configs/targets/*-bsd-user.mak 3708F: tests/vm/*bsd 3709T: git https://github.com/qemu-bsd-user/qemu-bsd-user bsd-user-rebase-3.1 3710 3711Linux user 3712M: Laurent Vivier <laurent@vivier.eu> 3713S: Maintained 3714F: linux-user/ 3715F: configs/targets/*linux-user.mak 3716F: scripts/qemu-binfmt-conf.sh 3717F: scripts/update-syscalltbl.sh 3718F: scripts/update-mips-syscall-args.sh 3719 3720Tiny Code Generator (TCG) 3721------------------------- 3722Common TCG code 3723M: Richard Henderson <richard.henderson@linaro.org> 3724S: Maintained 3725F: tcg/ 3726F: include/tcg/ 3727 3728TCG Plugins 3729M: Alex Bennée <alex.bennee@linaro.org> 3730T: git https://gitlab.com/stsquad/qemu plugins/next 3731R: Alexandre Iooss <erdnaxe@crans.org> 3732R: Mahmoud Mandour <ma.mandourr@gmail.com> 3733R: Pierrick Bouvier <pierrick.bouvier@linaro.org> 3734S: Maintained 3735F: docs/devel/tcg-plugins.rst 3736F: plugins/ 3737F: tests/tcg/plugins/ 3738F: tests/avocado/tcg_plugins.py 3739F: contrib/plugins/ 3740 3741AArch64 TCG target 3742M: Richard Henderson <richard.henderson@linaro.org> 3743S: Maintained 3744L: qemu-arm@nongnu.org 3745F: tcg/aarch64/ 3746 3747ARM TCG target 3748M: Richard Henderson <richard.henderson@linaro.org> 3749S: Maintained 3750L: qemu-arm@nongnu.org 3751F: tcg/arm/ 3752 3753i386 TCG target 3754M: Richard Henderson <richard.henderson@linaro.org> 3755S: Maintained 3756F: tcg/i386/ 3757 3758LoongArch64 TCG target 3759M: WANG Xuerui <git@xen0n.name> 3760S: Maintained 3761F: tcg/loongarch64/ 3762 3763MIPS TCG target 3764M: Philippe Mathieu-Daudé <philmd@linaro.org> 3765R: Aurelien Jarno <aurelien@aurel32.net> 3766R: Huacai Chen <chenhuacai@kernel.org> 3767R: Jiaxun Yang <jiaxun.yang@flygoat.com> 3768R: Aleksandar Rikalo <arikalo@gmail.com> 3769S: Odd Fixes 3770F: tcg/mips/ 3771 3772PPC TCG target 3773M: Richard Henderson <richard.henderson@linaro.org> 3774S: Odd Fixes 3775F: tcg/ppc/ 3776 3777RISC-V TCG target 3778M: Palmer Dabbelt <palmer@dabbelt.com> 3779M: Alistair Francis <Alistair.Francis@wdc.com> 3780L: qemu-riscv@nongnu.org 3781S: Maintained 3782F: tcg/riscv/ 3783F: disas/riscv.[ch] 3784 3785S390 TCG target 3786M: Richard Henderson <richard.henderson@linaro.org> 3787S: Maintained 3788F: tcg/s390/ 3789L: qemu-s390x@nongnu.org 3790 3791SPARC TCG target 3792S: Odd Fixes 3793F: tcg/sparc64/ 3794F: disas/sparc.c 3795 3796TCI TCG target 3797M: Stefan Weil <sw@weilnetz.de> 3798S: Maintained 3799F: tcg/tci/ 3800F: tcg/tci.c 3801F: disas/tci.c 3802 3803Block drivers 3804------------- 3805VMDK 3806M: Fam Zheng <fam@euphon.net> 3807L: qemu-block@nongnu.org 3808S: Supported 3809F: block/vmdk.c 3810 3811RBD 3812M: Ilya Dryomov <idryomov@gmail.com> 3813R: Peter Lieven <pl@dlhnet.de> 3814L: qemu-block@nongnu.org 3815S: Supported 3816F: block/rbd.c 3817 3818VHDX 3819M: Jeff Cody <codyprime@gmail.com> 3820L: qemu-block@nongnu.org 3821S: Supported 3822F: block/vhdx* 3823 3824VDI 3825M: Stefan Weil <sw@weilnetz.de> 3826L: qemu-block@nongnu.org 3827S: Maintained 3828F: block/vdi.c 3829 3830blkio 3831M: Stefan Hajnoczi <stefanha@redhat.com> 3832L: qemu-block@nongnu.org 3833S: Maintained 3834F: block/blkio.c 3835 3836iSCSI 3837M: Ronnie Sahlberg <ronniesahlberg@gmail.com> 3838M: Paolo Bonzini <pbonzini@redhat.com> 3839M: Peter Lieven <pl@dlhnet.de> 3840L: qemu-block@nongnu.org 3841S: Odd Fixes 3842F: block/iscsi.c 3843F: block/iscsi-opts.c 3844 3845Network Block Device (NBD) 3846M: Eric Blake <eblake@redhat.com> 3847M: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru> 3848L: qemu-block@nongnu.org 3849S: Maintained 3850F: block/nbd* 3851F: nbd/ 3852F: include/block/nbd* 3853F: qemu-nbd.* 3854F: blockdev-nbd.c 3855F: docs/interop/nbd.rst 3856F: docs/tools/qemu-nbd.rst 3857F: tests/qemu-iotests/tests/*nbd* 3858T: git https://repo.or.cz/qemu/ericb.git nbd 3859T: git https://gitlab.com/vsementsov/qemu.git block 3860 3861NFS 3862M: Peter Lieven <pl@dlhnet.de> 3863L: qemu-block@nongnu.org 3864S: Maintained 3865F: block/nfs.c 3866 3867SSH 3868M: Richard W.M. Jones <rjones@redhat.com> 3869L: qemu-block@nongnu.org 3870S: Supported 3871F: block/ssh.c 3872 3873CURL 3874L: qemu-block@nongnu.org 3875S: Odd Fixes 3876F: block/curl.c 3877 3878GLUSTER 3879L: qemu-block@nongnu.org 3880L: integration@gluster.org 3881S: Odd Fixes 3882F: block/gluster.c 3883 3884Null Block Driver 3885M: Fam Zheng <fam@euphon.net> 3886L: qemu-block@nongnu.org 3887S: Supported 3888F: block/null.c 3889 3890NVMe Block Driver 3891M: Stefan Hajnoczi <stefanha@redhat.com> 3892R: Fam Zheng <fam@euphon.net> 3893R: Philippe Mathieu-Daudé <philmd@linaro.org> 3894L: qemu-block@nongnu.org 3895S: Supported 3896F: block/nvme* 3897F: include/block/nvme.h 3898T: git https://github.com/stefanha/qemu.git block 3899 3900Bootdevice 3901M: Gonglei <arei.gonglei@huawei.com> 3902S: Maintained 3903F: system/bootdevice.c 3904 3905Quorum 3906M: Alberto Garcia <berto@igalia.com> 3907S: Supported 3908F: block/quorum.c 3909L: qemu-block@nongnu.org 3910 3911blklogwrites 3912M: Ari Sundholm <ari@tuxera.com> 3913L: qemu-block@nongnu.org 3914S: Supported 3915F: block/blklogwrites.c 3916 3917blkverify 3918M: Stefan Hajnoczi <stefanha@redhat.com> 3919L: qemu-block@nongnu.org 3920S: Supported 3921F: block/blkverify.c 3922F: docs/devel/blkverify.rst 3923 3924bochs 3925M: Stefan Hajnoczi <stefanha@redhat.com> 3926L: qemu-block@nongnu.org 3927S: Supported 3928F: block/bochs.c 3929 3930cloop 3931M: Stefan Hajnoczi <stefanha@redhat.com> 3932L: qemu-block@nongnu.org 3933S: Supported 3934F: block/cloop.c 3935 3936dmg 3937M: Stefan Hajnoczi <stefanha@redhat.com> 3938L: qemu-block@nongnu.org 3939S: Supported 3940F: block/dmg.c 3941 3942parallels 3943M: Stefan Hajnoczi <stefanha@redhat.com> 3944M: Denis V. Lunev <den@openvz.org> 3945L: qemu-block@nongnu.org 3946S: Supported 3947F: block/parallels.c 3948F: block/parallels-ext.c 3949F: docs/interop/parallels.rst 3950F: docs/interop/prl-xml.rst 3951T: git https://src.openvz.org/scm/~den/qemu.git parallels 3952 3953qed 3954M: Stefan Hajnoczi <stefanha@redhat.com> 3955L: qemu-block@nongnu.org 3956S: Supported 3957F: block/qed.c 3958 3959raw 3960M: Kevin Wolf <kwolf@redhat.com> 3961L: qemu-block@nongnu.org 3962S: Supported 3963F: block/linux-aio.c 3964F: include/block/raw-aio.h 3965F: block/raw-format.c 3966F: block/file-posix.c 3967F: block/file-win32.c 3968F: block/win32-aio.c 3969 3970Linux io_uring 3971M: Aarushi Mehta <mehta.aaru20@gmail.com> 3972M: Julia Suvorova <jusual@redhat.com> 3973M: Stefan Hajnoczi <stefanha@redhat.com> 3974R: Stefano Garzarella <sgarzare@redhat.com> 3975L: qemu-block@nongnu.org 3976S: Maintained 3977F: block/io_uring.c 3978F: stubs/io_uring.c 3979 3980qcow2 3981M: Kevin Wolf <kwolf@redhat.com> 3982M: Hanna Reitz <hreitz@redhat.com> 3983L: qemu-block@nongnu.org 3984S: Supported 3985F: block/qcow2* 3986F: docs/interop/qcow2.txt 3987 3988qcow 3989M: Kevin Wolf <kwolf@redhat.com> 3990L: qemu-block@nongnu.org 3991S: Supported 3992F: block/qcow.c 3993 3994blkdebug 3995M: Kevin Wolf <kwolf@redhat.com> 3996M: Hanna Reitz <hreitz@redhat.com> 3997L: qemu-block@nongnu.org 3998S: Supported 3999F: block/blkdebug.c 4000F: docs/devel/blkdebug.rst 4001 4002vpc 4003M: Kevin Wolf <kwolf@redhat.com> 4004L: qemu-block@nongnu.org 4005S: Supported 4006F: block/vpc.c 4007 4008vvfat 4009M: Kevin Wolf <kwolf@redhat.com> 4010L: qemu-block@nongnu.org 4011S: Odd Fixes 4012F: block/vvfat.c 4013 4014Image format fuzzer 4015M: Stefan Hajnoczi <stefanha@redhat.com> 4016L: qemu-block@nongnu.org 4017S: Supported 4018F: tests/image-fuzzer/ 4019 4020Vhost-user block device backend server 4021M: Coiby Xu <Coiby.Xu@gmail.com> 4022S: Maintained 4023F: block/export/vhost-user-blk-server.c 4024F: block/export/vhost-user-blk-server.h 4025F: block/export/virtio-blk-handler.c 4026F: block/export/virtio-blk-handler.h 4027F: include/qemu/vhost-user-server.h 4028F: tests/qtest/libqos/vhost-user-blk.c 4029F: tests/qtest/libqos/vhost-user-blk.h 4030F: tests/qtest/vhost-user-blk-test.c 4031F: util/vhost-user-server.c 4032 4033FUSE block device exports 4034M: Hanna Reitz <hreitz@redhat.com> 4035L: qemu-block@nongnu.org 4036S: Supported 4037F: block/export/fuse.c 4038 4039VDUSE library and block device exports 4040M: Xie Yongji <xieyongji@bytedance.com> 4041S: Maintained 4042F: subprojects/libvduse/ 4043F: block/export/vduse-blk.c 4044F: block/export/vduse-blk.h 4045 4046Replication 4047M: Wen Congyang <wencongyang2@huawei.com> 4048M: Xie Changlong <xiechanglong.d@gmail.com> 4049S: Supported 4050F: replication* 4051F: block/replication.c 4052F: tests/unit/test-replication.c 4053F: docs/block-replication.txt 4054 4055Semihosting 4056M: Alex Bennée <alex.bennee@linaro.org> 4057S: Maintained 4058F: semihosting/ 4059F: include/semihosting/ 4060F: tests/tcg/multiarch/arm-compat-semi/ 4061F: tests/tcg/aarch64/system/semiheap.c 4062 4063Multi-process QEMU 4064M: Elena Ufimtseva <elena.ufimtseva@oracle.com> 4065M: Jagannathan Raman <jag.raman@oracle.com> 4066S: Maintained 4067F: docs/devel/multi-process.rst 4068F: docs/system/multi-process.rst 4069F: hw/pci-host/remote.c 4070F: include/hw/pci-host/remote.h 4071F: hw/remote/machine.c 4072F: include/hw/remote/machine.h 4073F: hw/remote/mpqemu-link.c 4074F: include/hw/remote/mpqemu-link.h 4075F: hw/remote/message.c 4076F: hw/remote/remote-obj.c 4077F: include/hw/remote/memory.h 4078F: hw/remote/memory.c 4079F: hw/remote/proxy.c 4080F: include/hw/remote/proxy.h 4081F: hw/remote/proxy-memory-listener.c 4082F: include/hw/remote/proxy-memory-listener.h 4083F: hw/remote/iohub.c 4084F: include/hw/remote/iohub.h 4085F: subprojects/libvfio-user 4086F: hw/remote/vfio-user-obj.c 4087F: include/hw/remote/vfio-user-obj.h 4088F: hw/remote/iommu.c 4089F: include/hw/remote/iommu.h 4090 4091EBPF: 4092M: Jason Wang <jasowang@redhat.com> 4093R: Andrew Melnychenko <andrew@daynix.com> 4094R: Yuri Benditovich <yuri.benditovich@daynix.com> 4095S: Maintained 4096F: docs/devel/ebpf_rss.rst 4097F: ebpf/* 4098F: tools/ebpf/* 4099 4100Build and test automation 4101------------------------- 4102Build and test automation, general continuous integration 4103M: Alex Bennée <alex.bennee@linaro.org> 4104T: git https://gitlab.com/stsquad/qemu testing/next 4105M: Philippe Mathieu-Daudé <philmd@linaro.org> 4106M: Thomas Huth <thuth@redhat.com> 4107R: Wainer dos Santos Moschetta <wainersm@redhat.com> 4108S: Maintained 4109F: .github/workflows/lockdown.yml 4110F: .gitlab-ci.yml 4111F: .gitlab-ci.d/ 4112F: .travis.yml 4113F: docs/devel/ci* 4114F: scripts/ci/ 4115F: tests/docker/ 4116F: tests/vm/ 4117F: tests/lcitool/ 4118F: tests/avocado/tuxrun_baselines.py 4119F: scripts/archive-source.sh 4120F: docs/devel/testing.rst 4121W: https://gitlab.com/qemu-project/qemu/pipelines 4122W: https://travis-ci.org/qemu/qemu 4123 4124FreeBSD Hosted Continuous Integration 4125M: Ed Maste <emaste@freebsd.org> 4126M: Li-Wen Hsu <lwhsu@freebsd.org> 4127S: Maintained 4128F: .gitlab-ci.d/cirrus/freebsd* 4129F: tests/vm/freebsd 4130W: https://cirrus-ci.com/github/qemu/qemu 4131 4132Functional testing framework 4133M: Thomas Huth <thuth@redhat.com> 4134R: Philippe Mathieu-Daudé <philmd@linaro.org> 4135F: tests/functional/qemu_test/ 4136 4137Windows Hosted Continuous Integration 4138M: Yonggang Luo <luoyonggang@gmail.com> 4139S: Maintained 4140F: .gitlab-ci.d/windows.yml 4141 4142Guest Test Compilation Support 4143M: Alex Bennée <alex.bennee@linaro.org> 4144R: Philippe Mathieu-Daudé <philmd@linaro.org> 4145S: Maintained 4146F: tests/tcg/Makefile.target 4147 4148Integration Testing with the Avocado framework 4149W: https://trello.com/b/6Qi1pxVn/avocado-qemu 4150R: Cleber Rosa <crosa@redhat.com> 4151R: Philippe Mathieu-Daudé <philmd@linaro.org> 4152R: Wainer dos Santos Moschetta <wainersm@redhat.com> 4153S: Odd Fixes 4154F: tests/avocado/ 4155 4156GitLab custom runner (Works On Arm Sponsored) 4157M: Alex Bennée <alex.bennee@linaro.org> 4158M: Philippe Mathieu-Daudé <philmd@linaro.org> 4159S: Maintained 4160F: .gitlab-ci.d/custom-runners/ubuntu-22.04-aarch64.yml 4161F: .gitlab-ci.d/custom-runners/ubuntu-22.04-aarch32.yml 4162 4163Documentation 4164------------- 4165Build system architecture 4166M: Daniel P. Berrange <berrange@redhat.com> 4167S: Odd Fixes 4168F: docs/devel/build-system.rst 4169 4170GIT Data Mining Config 4171M: Alex Bennée <alex.bennee@linaro.org> 4172S: Odd Fixes 4173F: gitdm.config 4174F: contrib/gitdm/* 4175 4176Incompatible changes 4177R: devel@lists.libvirt.org 4178F: docs/about/deprecated.rst 4179 4180Build System 4181------------ 4182Meson 4183M: Paolo Bonzini <pbonzini@redhat.com> 4184R: Marc-André Lureau <marcandre.lureau@redhat.com> 4185R: Daniel P. Berrange <berrange@redhat.com> 4186R: Philippe Mathieu-Daudé <philmd@linaro.org> 4187S: Maintained 4188F: meson.build 4189F: meson_options.txt 4190F: scripts/meson-buildoptions.* 4191F: scripts/check_sparse.py 4192F: scripts/symlink-install-tree.py 4193 4194Top Level Makefile and configure 4195M: Paolo Bonzini <pbonzini@redhat.com> 4196R: Alex Bennée <alex.bennee@linaro.org> 4197R: Thomas Huth <thuth@redhat.com> 4198S: Maintained 4199F: Makefile 4200F: configure 4201F: scripts/mtest2make.py 4202F: tests/Makefile.include 4203 4204Kconfig 4205M: Paolo Bonzini <pbonzini@redhat.com> 4206S: Maintained 4207F: scripts/minikconf.py 4208F: docs/devel/kconfig.rst 4209F: Kconfig* 4210F: */Kconfig* 4211F: hw/*/Kconfig* 4212F: target/*/Kconfig* 4213 4214GIT submodules 4215M: Daniel P. Berrange <berrange@redhat.com> 4216S: Odd Fixes 4217F: scripts/git-submodule.sh 4218 4219UI translations 4220S: Orphan 4221F: po/*.po 4222 4223Sphinx documentation configuration and build machinery 4224M: Peter Maydell <peter.maydell@linaro.org> 4225S: Maintained 4226F: docs/conf.py 4227F: docs/*/conf.py 4228F: docs/sphinx/ 4229F: docs/_templates/ 4230F: docs/devel/docs.rst 4231 4232Rust build system integration 4233M: Manos Pitsidianakis <manos.pitsidianakis@linaro.org> 4234S: Maintained 4235F: scripts/rust/ 4236F: rust/.gitignore 4237F: rust/Kconfig 4238F: rust/meson.build 4239F: rust/wrapper.h 4240 4241Miscellaneous 4242------------- 4243Performance Tools and Tests 4244M: Ahmed Karaman <ahmedkhaledkaraman@gmail.com> 4245S: Maintained 4246F: scripts/performance/ 4247 4248Code Coverage Tools 4249M: Alex Bennée <alex.bennee@linaro.org> 4250S: Odd Fixes 4251F: scripts/coverage/ 4252 4253Machine development tool 4254M: Maksim Davydov <davydov-max@yandex-team.ru> 4255S: Supported 4256F: scripts/compare-machine-types.py 4257