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