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