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