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