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