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