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