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