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> 2240S: Maintained 2241F: include/net/eth.h 2242F: net/eth.c 2243F: hw/net/net_rx_pkt* 2244F: hw/net/net_tx_pkt* 2245 2246Vmware 2247M: Dmitry Fleytman <dmitry.fleytman@gmail.com> 2248S: Maintained 2249F: hw/net/vmxnet* 2250F: hw/scsi/vmw_pvscsi* 2251F: tests/qtest/vmxnet3-test.c 2252 2253Rocker 2254M: Jiri Pirko <jiri@resnulli.us> 2255S: Maintained 2256F: hw/net/rocker/ 2257F: qapi/rocker.json 2258F: tests/rocker/ 2259F: docs/specs/rocker.txt 2260 2261e1000x 2262M: Dmitry Fleytman <dmitry.fleytman@gmail.com> 2263R: Akihiko Odaki <akihiko.odaki@daynix.com> 2264S: Maintained 2265F: hw/net/e1000x* 2266 2267e1000e 2268M: Dmitry Fleytman <dmitry.fleytman@gmail.com> 2269R: Akihiko Odaki <akihiko.odaki@daynix.com> 2270S: Maintained 2271F: hw/net/e1000e* 2272F: tests/qtest/fuzz-e1000e-test.c 2273F: tests/qtest/e1000e-test.c 2274F: tests/qtest/libqos/e1000e.* 2275 2276igb 2277M: Akihiko Odaki <akihiko.odaki@daynix.com> 2278R: Sriram Yagnaraman <sriram.yagnaraman@est.tech> 2279S: Maintained 2280F: docs/system/devices/igb.rst 2281F: hw/net/igb* 2282F: tests/avocado/netdev-ethtool.py 2283F: tests/qtest/igb-test.c 2284F: tests/qtest/libqos/igb.c 2285 2286eepro100 2287M: Stefan Weil <sw@weilnetz.de> 2288S: Maintained 2289F: hw/net/eepro100.c 2290 2291tulip 2292M: Sven Schnelle <svens@stackframe.org> 2293S: Maintained 2294F: hw/net/tulip.c 2295F: hw/net/tulip.h 2296 2297pca954x 2298M: Patrick Venture <venture@google.com> 2299S: Maintained 2300F: hw/i2c/i2c_mux_pca954x.c 2301F: include/hw/i2c/i2c_mux_pca954x.h 2302 2303Generic Loader 2304M: Alistair Francis <alistair@alistair23.me> 2305S: Maintained 2306F: hw/core/generic-loader.c 2307F: hw/core/uboot_image.h 2308F: include/hw/core/generic-loader.h 2309F: docs/system/generic-loader.rst 2310 2311Guest Loader 2312M: Alex Bennée <alex.bennee@linaro.org> 2313S: Maintained 2314F: hw/core/guest-loader.c 2315F: docs/system/guest-loader.rst 2316F: tests/avocado/boot_xen.py 2317 2318Intel Hexadecimal Object File Loader 2319M: Su Hang <suhang16@mails.ucas.ac.cn> 2320S: Maintained 2321F: tests/qtest/hexloader-test.c 2322F: tests/data/hex-loader/test.hex 2323 2324CHRP NVRAM 2325M: Thomas Huth <thuth@redhat.com> 2326S: Maintained 2327F: hw/nvram/chrp_nvram.c 2328F: include/hw/nvram/chrp_nvram.h 2329F: tests/qtest/prom-env-test.c 2330 2331VM Generation ID 2332S: Orphan 2333R: Ani Sinha <ani@anisinha.ca> 2334F: hw/acpi/vmgenid.c 2335F: include/hw/acpi/vmgenid.h 2336F: docs/specs/vmgenid.txt 2337F: tests/qtest/vmgenid-test.c 2338 2339LED 2340M: Philippe Mathieu-Daudé <philmd@linaro.org> 2341S: Maintained 2342F: include/hw/misc/led.h 2343F: hw/misc/led.c 2344 2345Unimplemented device 2346M: Peter Maydell <peter.maydell@linaro.org> 2347R: Philippe Mathieu-Daudé <philmd@linaro.org> 2348R: Ani Sinha <ani@anisinha.ca> 2349S: Maintained 2350F: include/hw/misc/unimp.h 2351F: hw/misc/unimp.c 2352 2353Empty slot 2354M: Artyom Tarasenko <atar4qemu@gmail.com> 2355R: Philippe Mathieu-Daudé <philmd@linaro.org> 2356R: Ani Sinha <ani@anisinha.ca> 2357S: Maintained 2358F: include/hw/misc/empty_slot.h 2359F: hw/misc/empty_slot.c 2360 2361Standard VGA 2362M: Gerd Hoffmann <kraxel@redhat.com> 2363S: Maintained 2364F: hw/display/vga* 2365F: hw/display/bochs-display.c 2366F: include/hw/display/vga.h 2367F: include/hw/display/bochs-vbe.h 2368 2369ramfb 2370M: Gerd Hoffmann <kraxel@redhat.com> 2371S: Maintained 2372F: hw/display/ramfb*.c 2373F: include/hw/display/ramfb.h 2374 2375virtio-gpu 2376M: Gerd Hoffmann <kraxel@redhat.com> 2377S: Odd Fixes 2378F: hw/display/virtio-gpu* 2379F: hw/display/virtio-vga.* 2380F: include/hw/virtio/virtio-gpu.h 2381 2382vhost-user-blk 2383M: Raphael Norwitz <raphael.norwitz@nutanix.com> 2384S: Maintained 2385F: contrib/vhost-user-blk/ 2386F: contrib/vhost-user-scsi/ 2387F: hw/block/vhost-user-blk.c 2388F: hw/block/virtio-blk-common.c 2389F: hw/scsi/vhost-user-scsi.c 2390F: hw/virtio/vhost-user-blk-pci.c 2391F: hw/virtio/vhost-user-scsi-pci.c 2392F: include/hw/virtio/vhost-user-blk.h 2393F: include/hw/virtio/vhost-user-scsi.h 2394F: include/hw/virtio/virtio-blk-common.h 2395 2396vhost-user-gpu 2397M: Marc-André Lureau <marcandre.lureau@redhat.com> 2398R: Gerd Hoffmann <kraxel@redhat.com> 2399S: Maintained 2400F: docs/interop/vhost-user-gpu.rst 2401F: contrib/vhost-user-gpu 2402F: hw/display/vhost-user-* 2403 2404Cirrus VGA 2405M: Gerd Hoffmann <kraxel@redhat.com> 2406S: Odd Fixes 2407W: https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/ 2408F: hw/display/cirrus* 2409 2410EDID Generator 2411M: Gerd Hoffmann <kraxel@redhat.com> 2412S: Maintained 2413F: hw/display/edid* 2414F: include/hw/display/edid.h 2415F: qemu-edid.c 2416 2417PIIX4 South Bridge (i82371AB) 2418M: Hervé Poussineau <hpoussin@reactos.org> 2419M: Philippe Mathieu-Daudé <philmd@linaro.org> 2420S: Maintained 2421F: hw/isa/piix4.c 2422F: include/hw/southbridge/piix.h 2423 2424Firmware configuration (fw_cfg) 2425M: Philippe Mathieu-Daudé <philmd@linaro.org> 2426R: Gerd Hoffmann <kraxel@redhat.com> 2427S: Supported 2428F: docs/specs/fw_cfg.txt 2429F: hw/nvram/fw_cfg*.c 2430F: stubs/fw_cfg.c 2431F: include/hw/nvram/fw_cfg.h 2432F: include/standard-headers/linux/qemu_fw_cfg.h 2433F: tests/qtest/libqos/fw_cfg.c 2434F: tests/qtest/fw_cfg-test.c 2435T: git https://github.com/philmd/qemu.git fw_cfg-next 2436 2437XIVE 2438M: Cédric Le Goater <clg@kaod.org> 2439L: qemu-ppc@nongnu.org 2440S: Odd Fixes 2441F: hw/*/*xive* 2442F: include/hw/*/*xive* 2443F: docs/*/*xive* 2444 2445Renesas peripherals 2446R: Yoshinori Sato <ysato@users.sourceforge.jp> 2447R: Magnus Damm <magnus.damm@gmail.com> 2448S: Odd Fixes 2449F: hw/char/renesas_sci.c 2450F: hw/char/sh_serial.c 2451F: hw/timer/renesas_*.c 2452F: hw/timer/sh_timer.c 2453F: include/hw/char/renesas_sci.h 2454F: include/hw/sh4/sh.h 2455F: include/hw/timer/renesas_*.h 2456 2457Renesas RX peripherals 2458R: Yoshinori Sato <ysato@users.sourceforge.jp> 2459S: Orphan 2460F: hw/intc/rx_icu.c 2461F: hw/rx/ 2462F: include/hw/intc/rx_icu.h 2463F: include/hw/rx/ 2464 2465CAN bus subsystem and hardware 2466M: Pavel Pisa <pisa@cmp.felk.cvut.cz> 2467M: Vikram Garhwal <fnu.vikram@xilinx.com> 2468S: Maintained 2469W: https://canbus.pages.fel.cvut.cz/ 2470F: net/can/* 2471F: hw/net/can/* 2472F: include/net/can_*.h 2473 2474OpenPIC interrupt controller 2475M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> 2476S: Odd Fixes 2477F: hw/intc/openpic.c 2478F: include/hw/ppc/openpic.h 2479 2480MIPS CPS 2481M: Philippe Mathieu-Daudé <philmd@linaro.org> 2482S: Odd Fixes 2483F: hw/misc/mips_* 2484F: include/hw/misc/mips_* 2485 2486MIPS GIC 2487M: Philippe Mathieu-Daudé <philmd@linaro.org> 2488S: Odd Fixes 2489F: hw/intc/mips_gic.c 2490F: hw/timer/mips_gictimer.c 2491F: include/hw/intc/mips_gic.h 2492F: include/hw/timer/mips_gictimer.h 2493 2494S390 3270 device 2495M: Halil Pasic <pasic@linux.ibm.com> 2496M: Christian Borntraeger <borntraeger@linux.ibm.com> 2497S: Odd fixes 2498F: include/hw/s390x/3270-ccw.h 2499F: hw/char/terminal3270.c 2500F: hw/s390x/3270-ccw.c 2501L: qemu-s390x@nongnu.org 2502 2503S390 diag 288 watchdog 2504M: Halil Pasic <pasic@linux.ibm.com> 2505M: Christian Borntraeger <borntraeger@linux.ibm.com> 2506S: Supported 2507F: hw/watchdog/wdt_diag288.c 2508F: include/hw/watchdog/wdt_diag288.h 2509L: qemu-s390x@nongnu.org 2510 2511S390 storage key device 2512M: Halil Pasic <pasic@linux.ibm.com> 2513M: Christian Borntraeger <borntraeger@linux.ibm.com> 2514S: Supported 2515F: hw/s390x/storage-keys.h 2516F: hw/390x/s390-skeys*.c 2517L: qemu-s390x@nongnu.org 2518 2519S390 storage attribute device 2520M: Halil Pasic <pasic@linux.ibm.com> 2521M: Christian Borntraeger <borntraeger@linux.ibm.com> 2522S: Supported 2523F: hw/s390x/storage-attributes.h 2524F: hw/s390/s390-stattrib*.c 2525L: qemu-s390x@nongnu.org 2526 2527S390 floating interrupt controller 2528M: Halil Pasic <pasic@linux.ibm.com> 2529M: Christian Borntraeger <borntraeger@linux.ibm.com> 2530M: David Hildenbrand <david@redhat.com> 2531S: Supported 2532F: hw/intc/s390_flic*.c 2533F: include/hw/s390x/s390_flic.h 2534L: qemu-s390x@nongnu.org 2535 2536CanoKey 2537M: Hongren (Zenithal) Zheng <i@zenithal.me> 2538S: Maintained 2539R: Canokeys.org <contact@canokeys.org> 2540F: hw/usb/canokey.c 2541F: hw/usb/canokey.h 2542F: docs/system/devices/canokey.rst 2543 2544Subsystems 2545---------- 2546Overall Audio backends 2547M: Gerd Hoffmann <kraxel@redhat.com> 2548M: Marc-André Lureau <marcandre.lureau@redhat.com> 2549S: Odd Fixes 2550F: audio/ 2551X: audio/alsaaudio.c 2552X: audio/coreaudio.c 2553X: audio/dsound* 2554X: audio/jackaudio.c 2555X: audio/ossaudio.c 2556X: audio/paaudio.c 2557X: audio/sdlaudio.c 2558X: audio/sndioaudio.c 2559X: audio/spiceaudio.c 2560F: qapi/audio.json 2561 2562ALSA Audio backend 2563M: Gerd Hoffmann <kraxel@redhat.com> 2564R: Christian Schoenebeck <qemu_oss@crudebyte.com> 2565S: Odd Fixes 2566F: audio/alsaaudio.c 2567 2568Core Audio framework backend 2569M: Gerd Hoffmann <kraxel@redhat.com> 2570M: Philippe Mathieu-Daudé <philmd@linaro.org> 2571R: Christian Schoenebeck <qemu_oss@crudebyte.com> 2572R: Akihiko Odaki <akihiko.odaki@daynix.com> 2573S: Odd Fixes 2574F: audio/coreaudio.c 2575 2576DSound Audio backend 2577M: Gerd Hoffmann <kraxel@redhat.com> 2578S: Odd Fixes 2579F: audio/dsound* 2580 2581JACK Audio Connection Kit backend 2582M: Gerd Hoffmann <kraxel@redhat.com> 2583R: Christian Schoenebeck <qemu_oss@crudebyte.com> 2584S: Odd Fixes 2585F: audio/jackaudio.c 2586 2587Open Sound System (OSS) Audio backend 2588M: Gerd Hoffmann <kraxel@redhat.com> 2589S: Odd Fixes 2590F: audio/ossaudio.c 2591 2592PulseAudio backend 2593M: Gerd Hoffmann <kraxel@redhat.com> 2594S: Odd Fixes 2595F: audio/paaudio.c 2596 2597SDL Audio backend 2598M: Gerd Hoffmann <kraxel@redhat.com> 2599R: Thomas Huth <huth@tuxfamily.org> 2600S: Odd Fixes 2601F: audio/sdlaudio.c 2602 2603Sndio Audio backend 2604M: Gerd Hoffmann <kraxel@redhat.com> 2605R: Alexandre Ratchov <alex@caoua.org> 2606S: Odd Fixes 2607F: audio/sndioaudio.c 2608 2609Block layer core 2610M: Kevin Wolf <kwolf@redhat.com> 2611M: Hanna Reitz <hreitz@redhat.com> 2612L: qemu-block@nongnu.org 2613S: Supported 2614F: block* 2615F: block/ 2616F: hw/block/ 2617F: qapi/block*.json 2618F: qapi/transaction.json 2619F: include/block/ 2620F: include/sysemu/block-*.h 2621F: qemu-img* 2622F: docs/tools/qemu-img.rst 2623F: qemu-io* 2624F: tests/qemu-iotests/ 2625F: util/qemu-progress.c 2626F: qobject/block-qdict.c 2627F: tests/unit/check-block-qdict.c 2628T: git https://repo.or.cz/qemu/kevin.git block 2629 2630Storage daemon 2631M: Kevin Wolf <kwolf@redhat.com> 2632L: qemu-block@nongnu.org 2633S: Supported 2634F: storage-daemon/ 2635F: docs/interop/qemu-storage-daemon-qmp-ref.rst 2636F: docs/tools/qemu-storage-daemon.rst 2637T: git https://repo.or.cz/qemu/kevin.git block 2638 2639Block I/O path 2640M: Stefan Hajnoczi <stefanha@redhat.com> 2641M: Fam Zheng <fam@euphon.net> 2642L: qemu-block@nongnu.org 2643S: Supported 2644F: util/async.c 2645F: util/aio-*.c 2646F: util/aio-*.h 2647F: util/fdmon-*.c 2648F: block/io.c 2649F: migration/block* 2650F: include/block/aio.h 2651F: include/block/aio-wait.h 2652F: scripts/qemugdb/aio.py 2653F: tests/unit/test-fdmon-epoll.c 2654T: git https://github.com/stefanha/qemu.git block 2655 2656Block SCSI subsystem 2657M: Paolo Bonzini <pbonzini@redhat.com> 2658R: Fam Zheng <fam@euphon.net> 2659L: qemu-block@nongnu.org 2660S: Supported 2661F: include/scsi/* 2662F: scsi/* 2663 2664Block Jobs 2665M: John Snow <jsnow@redhat.com> 2666M: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru> 2667L: qemu-block@nongnu.org 2668S: Supported 2669F: blockjob.c 2670F: include/block/blockjob.h 2671F: job.c 2672F: job-qmp.c 2673F: include/qemu/job.h 2674F: block/backup.c 2675F: block/commit.c 2676F: block/stream.c 2677F: block/mirror.c 2678F: qapi/job.json 2679F: block/block-copy.c 2680F: include/block/block-copy.h 2681F: block/reqlist.c 2682F: include/block/reqlist.h 2683F: block/copy-before-write.h 2684F: block/copy-before-write.c 2685F: block/snapshot-access.c 2686F: include/block/aio_task.h 2687F: block/aio_task.c 2688F: util/qemu-co-shared-resource.c 2689F: include/qemu/co-shared-resource.h 2690T: git https://gitlab.com/jsnow/qemu.git jobs 2691T: git https://gitlab.com/vsementsov/qemu.git block 2692 2693Compute Express Link 2694M: Jonathan Cameron <jonathan.cameron@huawei.com> 2695R: Fan Ni <fan.ni@samsung.com> 2696S: Supported 2697F: hw/cxl/ 2698F: hw/mem/cxl_type3.c 2699F: include/hw/cxl/ 2700 2701Dirty Bitmaps 2702M: Eric Blake <eblake@redhat.com> 2703M: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru> 2704R: John Snow <jsnow@redhat.com> 2705L: qemu-block@nongnu.org 2706S: Supported 2707F: include/qemu/hbitmap.h 2708F: include/block/dirty-bitmap.h 2709F: block/monitor/bitmap-qmp-cmds.c 2710F: block/dirty-bitmap.c 2711F: block/qcow2-bitmap.c 2712F: migration/block-dirty-bitmap.c 2713F: util/hbitmap.c 2714F: tests/unit/test-hbitmap.c 2715F: docs/interop/bitmaps.rst 2716T: git https://repo.or.cz/qemu/ericb.git bitmaps 2717T: git https://gitlab.com/vsementsov/qemu.git block 2718 2719Character device backends 2720M: Marc-André Lureau <marcandre.lureau@redhat.com> 2721R: Paolo Bonzini <pbonzini@redhat.com> 2722S: Maintained 2723F: chardev/ 2724F: include/chardev/ 2725F: qapi/char.json 2726 2727Character Devices (Braille) 2728M: Samuel Thibault <samuel.thibault@ens-lyon.org> 2729S: Maintained 2730F: chardev/baum.c 2731 2732Command line option argument parsing 2733M: Markus Armbruster <armbru@redhat.com> 2734S: Supported 2735F: include/qemu/option.h 2736F: tests/unit/test-keyval.c 2737F: tests/unit/test-qemu-opts.c 2738F: util/keyval.c 2739F: util/qemu-option.c 2740 2741Coverity model 2742M: Markus Armbruster <armbru@redhat.com> 2743S: Supported 2744F: scripts/coverity-model.c 2745 2746Coverity Scan integration 2747M: Peter Maydell <peter.maydell@linaro.org> 2748S: Maintained 2749F: scripts/coverity-scan/ 2750 2751Device Tree 2752M: Alistair Francis <alistair.francis@wdc.com> 2753R: David Gibson <david@gibson.dropbear.id.au> 2754S: Maintained 2755F: softmmu/device_tree.c 2756F: include/sysemu/device_tree.h 2757 2758Dump 2759S: Supported 2760M: Marc-André Lureau <marcandre.lureau@redhat.com> 2761F: dump/ 2762F: hw/misc/vmcoreinfo.c 2763F: include/hw/misc/vmcoreinfo.h 2764F: include/qemu/win_dump_defs 2765F: include/sysemu/dump-arch.h 2766F: include/sysemu/dump.h 2767F: qapi/dump.json 2768F: scripts/dump-guest-memory.py 2769F: stubs/dump.c 2770 2771Error reporting 2772M: Markus Armbruster <armbru@redhat.com> 2773S: Supported 2774F: include/qapi/error.h 2775F: include/qemu/error-report.h 2776F: qapi/error.json 2777F: util/error.c 2778F: util/qemu-error.c 2779F: scripts/coccinelle/err-bad-newline.cocci 2780F: scripts/coccinelle/error-use-after-free.cocci 2781F: scripts/coccinelle/error_propagate_null.cocci 2782F: scripts/coccinelle/remove_local_err.cocci 2783F: scripts/coccinelle/use-error_fatal.cocci 2784F: scripts/coccinelle/errp-guard.cocci 2785 2786GDB stub 2787M: Alex Bennée <alex.bennee@linaro.org> 2788R: Philippe Mathieu-Daudé <philmd@linaro.org> 2789S: Maintained 2790F: docs/system/gdb.rst 2791F: gdbstub/* 2792F: include/exec/gdbstub.h 2793F: include/gdbstub/* 2794F: gdb-xml/ 2795F: tests/tcg/multiarch/gdbstub/ 2796F: scripts/feature_to_c.sh 2797F: scripts/probe-gdb-support.py 2798 2799Memory API 2800M: Paolo Bonzini <pbonzini@redhat.com> 2801M: Peter Xu <peterx@redhat.com> 2802M: David Hildenbrand <david@redhat.com> 2803R: Philippe Mathieu-Daudé <philmd@linaro.org> 2804S: Supported 2805F: include/exec/ioport.h 2806F: include/exec/memop.h 2807F: include/exec/memory.h 2808F: include/exec/ram_addr.h 2809F: include/exec/ramblock.h 2810F: include/sysemu/memory_mapping.h 2811F: softmmu/dma-helpers.c 2812F: softmmu/ioport.c 2813F: softmmu/memory.c 2814F: softmmu/memory_mapping.c 2815F: softmmu/physmem.c 2816F: include/exec/memory-internal.h 2817F: scripts/coccinelle/memory-region-housekeeping.cocci 2818 2819Memory devices 2820M: David Hildenbrand <david@redhat.com> 2821M: Igor Mammedov <imammedo@redhat.com> 2822R: Xiao Guangrong <xiaoguangrong.eric@gmail.com> 2823S: Supported 2824F: hw/mem/memory-device.c 2825F: hw/mem/nvdimm.c 2826F: hw/mem/pc-dimm.c 2827F: include/hw/mem/memory-device.h 2828F: include/hw/mem/nvdimm.h 2829F: include/hw/mem/pc-dimm.h 2830F: docs/nvdimm.txt 2831 2832SPICE 2833M: Gerd Hoffmann <kraxel@redhat.com> 2834S: Odd Fixes 2835F: include/ui/qemu-spice.h 2836F: include/ui/spice-display.h 2837F: ui/spice-*.c 2838F: audio/spiceaudio.c 2839F: hw/display/qxl* 2840F: qapi/ui.json 2841F: docs/spice-port-fqdn.txt 2842 2843Graphics 2844M: Gerd Hoffmann <kraxel@redhat.com> 2845M: Marc-André Lureau <marcandre.lureau@redhat.com> 2846S: Odd Fixes 2847F: ui/ 2848F: include/ui/ 2849F: qapi/ui.json 2850F: util/drm.c 2851F: docs/devel/ui.rst 2852 2853Cocoa graphics 2854M: Peter Maydell <peter.maydell@linaro.org> 2855M: Philippe Mathieu-Daudé <philmd@linaro.org> 2856R: Akihiko Odaki <akihiko.odaki@daynix.com> 2857S: Odd Fixes 2858F: ui/cocoa.m 2859 2860Main loop 2861M: Paolo Bonzini <pbonzini@redhat.com> 2862S: Maintained 2863F: include/exec/gen-icount.h 2864F: include/qemu/main-loop.h 2865F: include/sysemu/runstate.h 2866F: include/sysemu/runstate-action.h 2867F: util/main-loop.c 2868F: util/qemu-timer.c 2869F: softmmu/vl.c 2870F: softmmu/main.c 2871F: softmmu/cpus.c 2872F: softmmu/cpu-throttle.c 2873F: softmmu/cpu-timers.c 2874F: softmmu/icount.c 2875F: softmmu/runstate* 2876F: qapi/run-state.json 2877 2878Read, Copy, Update (RCU) 2879M: Paolo Bonzini <pbonzini@redhat.com> 2880S: Maintained 2881F: docs/devel/lockcnt.txt 2882F: docs/devel/rcu.txt 2883F: include/qemu/rcu*.h 2884F: tests/unit/rcutorture.c 2885F: tests/unit/test-rcu-*.c 2886F: util/rcu.c 2887 2888Human Monitor (HMP) 2889M: Dr. David Alan Gilbert <dave@treblig.org> 2890S: Maintained 2891F: monitor/monitor-internal.h 2892F: monitor/misc.c 2893F: monitor/monitor.c 2894F: monitor/hmp* 2895F: hmp.h 2896F: hmp-commands*.hx 2897F: include/monitor/hmp-target.h 2898F: tests/qtest/test-hmp.c 2899F: include/qemu/qemu-print.h 2900F: util/qemu-print.c 2901 2902Network device backends 2903M: Jason Wang <jasowang@redhat.com> 2904S: Maintained 2905F: net/ 2906F: include/net/ 2907F: qemu-bridge-helper.c 2908T: git https://github.com/jasowang/qemu.git net 2909F: qapi/net.json 2910 2911Netmap network backend 2912M: Luigi Rizzo <rizzo@iet.unipi.it> 2913M: Giuseppe Lettieri <g.lettieri@iet.unipi.it> 2914M: Vincenzo Maffione <v.maffione@gmail.com> 2915W: http://info.iet.unipi.it/~luigi/netmap/ 2916S: Maintained 2917F: net/netmap.c 2918 2919Host Memory Backends 2920M: David Hildenbrand <david@redhat.com> 2921M: Igor Mammedov <imammedo@redhat.com> 2922S: Maintained 2923F: backends/hostmem*.c 2924F: include/sysemu/hostmem.h 2925T: git https://gitlab.com/ehabkost/qemu.git machine-next 2926 2927Cryptodev Backends 2928M: Gonglei <arei.gonglei@huawei.com> 2929M: zhenwei pi <pizhenwei@bytedance.com> 2930S: Maintained 2931F: include/sysemu/cryptodev*.h 2932F: backends/cryptodev*.c 2933F: qapi/cryptodev.json 2934 2935Python library 2936M: John Snow <jsnow@redhat.com> 2937M: Cleber Rosa <crosa@redhat.com> 2938R: Beraldo Leal <bleal@redhat.com> 2939S: Maintained 2940F: python/ 2941T: git https://gitlab.com/jsnow/qemu.git python 2942 2943Python scripts 2944M: John Snow <jsnow@redhat.com> 2945M: Cleber Rosa <crosa@redhat.com> 2946S: Odd Fixes 2947F: scripts/*.py 2948F: tests/*.py 2949 2950Benchmark util 2951M: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru> 2952S: Maintained 2953F: scripts/simplebench/ 2954T: git https://gitlab.com/vsementsov/qemu.git simplebench 2955 2956Transactions helper 2957M: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru> 2958S: Maintained 2959F: include/qemu/transactions.h 2960F: util/transactions.c 2961T: git https://gitlab.com/vsementsov/qemu.git block 2962 2963QAPI 2964M: Markus Armbruster <armbru@redhat.com> 2965M: Michael Roth <michael.roth@amd.com> 2966S: Supported 2967F: qapi/ 2968X: qapi/*.json 2969F: include/qapi/ 2970X: include/qapi/qmp/ 2971F: include/qapi/qmp/dispatch.h 2972F: tests/qapi-schema/ 2973F: tests/unit/test-*-visitor.c 2974F: tests/unit/test-qapi-*.c 2975F: tests/unit/test-qmp-*.c 2976F: tests/unit/test-visitor-serialization.c 2977F: scripts/qapi-gen.py 2978F: scripts/qapi/* 2979F: docs/sphinx/qapidoc.py 2980F: docs/devel/qapi* 2981T: git https://repo.or.cz/qemu/armbru.git qapi-next 2982 2983QAPI Schema 2984M: Eric Blake <eblake@redhat.com> 2985M: Markus Armbruster <armbru@redhat.com> 2986S: Supported 2987F: qapi/*.json 2988T: git https://repo.or.cz/qemu/armbru.git qapi-next 2989 2990QObject 2991M: Markus Armbruster <armbru@redhat.com> 2992S: Supported 2993F: qobject/ 2994F: include/qapi/qmp/ 2995X: include/qapi/qmp/dispatch.h 2996F: scripts/coccinelle/qobject.cocci 2997F: tests/unit/check-qdict.c 2998F: tests/unit/check-qjson.c 2999F: tests/unit/check-qlist.c 3000F: tests/unit/check-qlit.c 3001F: tests/unit/check-qnull.c 3002F: tests/unit/check-qnum.c 3003F: tests/unit/check-qobject.c 3004F: tests/unit/check-qstring.c 3005F: tests/data/qobject/qdict.txt 3006T: git https://repo.or.cz/qemu/armbru.git qapi-next 3007 3008QEMU Guest Agent 3009M: Michael Roth <michael.roth@amd.com> 3010M: Konstantin Kostiuk <kkostiuk@redhat.com> 3011S: Maintained 3012F: qga/ 3013F: docs/interop/qemu-ga.rst 3014F: docs/interop/qemu-ga-ref.rst 3015F: scripts/qemu-guest-agent/ 3016F: tests/unit/test-qga.c 3017T: git https://github.com/mdroth/qemu.git qga 3018 3019QEMU Guest Agent Win32 3020M: Konstantin Kostiuk <kkostiuk@redhat.com> 3021S: Maintained 3022F: qga/*win32* 3023F: qga/vss-win32/ 3024F: qga/installer/ 3025T: git https://github.com/kostyanf14/qemu.git qga-win32 3026 3027QOM 3028M: Paolo Bonzini <pbonzini@redhat.com> 3029R: Daniel P. Berrange <berrange@redhat.com> 3030R: Eduardo Habkost <eduardo@habkost.net> 3031S: Supported 3032F: docs/devel/qom.rst 3033F: docs/qdev-device-use.txt 3034F: hw/core/qdev* 3035F: hw/core/bus.c 3036F: hw/core/sysbus.c 3037F: include/hw/qdev* 3038F: include/monitor/qdev.h 3039F: include/qom/ 3040F: qapi/qom.json 3041F: qapi/qdev.json 3042F: scripts/coccinelle/qom-parent-type.cocci 3043F: softmmu/qdev-monitor.c 3044F: stubs/qdev.c 3045F: qom/ 3046F: tests/unit/check-qom-interface.c 3047F: tests/unit/check-qom-proplist.c 3048F: tests/unit/test-qdev-global-props.c 3049 3050QOM boilerplate conversion script 3051M: Eduardo Habkost <eduardo@habkost.net> 3052S: Maintained 3053F: scripts/codeconverter/ 3054 3055QMP 3056M: Markus Armbruster <armbru@redhat.com> 3057S: Supported 3058F: monitor/monitor-internal.h 3059F: monitor/qmp* 3060F: monitor/misc.c 3061F: monitor/monitor.c 3062F: qapi/control.json 3063F: qapi/error.json 3064F: qapi/introspect.json 3065F: docs/devel/*qmp-* 3066F: docs/interop/*qmp-* 3067F: scripts/qmp/ 3068F: tests/qtest/qmp-test.c 3069F: tests/qtest/qmp-cmd-test.c 3070T: git https://repo.or.cz/qemu/armbru.git qapi-next 3071 3072qtest 3073M: Thomas Huth <thuth@redhat.com> 3074M: Laurent Vivier <lvivier@redhat.com> 3075R: Paolo Bonzini <pbonzini@redhat.com> 3076S: Maintained 3077F: softmmu/qtest.c 3078F: accel/qtest/ 3079F: tests/qtest/ 3080F: docs/devel/qgraph.rst 3081F: docs/devel/qtest.rst 3082X: tests/qtest/bios-tables-test* 3083 3084Device Fuzzing 3085M: Alexander Bulekov <alxndr@bu.edu> 3086R: Paolo Bonzini <pbonzini@redhat.com> 3087R: Bandan Das <bsd@redhat.com> 3088R: Stefan Hajnoczi <stefanha@redhat.com> 3089R: Thomas Huth <thuth@redhat.com> 3090R: Darren Kenny <darren.kenny@oracle.com> 3091R: Qiuhao Li <Qiuhao.Li@outlook.com> 3092S: Maintained 3093F: tests/qtest/fuzz/ 3094F: tests/qtest/fuzz-*test.c 3095F: scripts/oss-fuzz/ 3096F: hw/mem/sparse-mem.c 3097F: docs/devel/fuzzing.rst 3098 3099Register API 3100M: Alistair Francis <alistair@alistair23.me> 3101S: Maintained 3102F: hw/core/register.c 3103F: include/hw/register.h 3104F: include/hw/registerfields.h 3105 3106SLIRP 3107M: Samuel Thibault <samuel.thibault@ens-lyon.org> 3108S: Maintained 3109F: net/slirp.c 3110F: include/net/slirp.h 3111T: git https://people.debian.org/~sthibault/qemu.git slirp 3112 3113Stats 3114S: Orphan 3115F: include/sysemu/stats.h 3116F: stats/ 3117 3118Streams 3119M: Edgar E. Iglesias <edgar.iglesias@gmail.com> 3120S: Maintained 3121F: hw/core/stream.c 3122F: include/hw/stream.h 3123 3124Stubs 3125M: Paolo Bonzini <pbonzini@redhat.com> 3126S: Maintained 3127F: stubs/ 3128 3129Tracing 3130M: Stefan Hajnoczi <stefanha@redhat.com> 3131S: Maintained 3132F: trace/ 3133F: trace-events 3134F: docs/qemu-option-trace.rst.inc 3135F: qapi/trace.json 3136F: scripts/tracetool.py 3137F: scripts/tracetool/ 3138F: scripts/qemu-trace-stap* 3139F: docs/tools/qemu-trace-stap.rst 3140F: docs/devel/tracing.rst 3141T: git https://github.com/stefanha/qemu.git tracing 3142 3143TPM 3144M: Stefan Berger <stefanb@linux.ibm.com> 3145S: Maintained 3146F: softmmu/tpm* 3147F: hw/tpm/* 3148F: include/hw/acpi/tpm.h 3149F: include/sysemu/tpm* 3150F: qapi/tpm.json 3151F: backends/tpm/ 3152F: tests/qtest/*tpm* 3153F: docs/specs/tpm.rst 3154T: git https://github.com/stefanberger/qemu-tpm.git tpm-next 3155 3156Checkpatch 3157S: Odd Fixes 3158F: scripts/checkpatch.pl 3159 3160Migration 3161M: Juan Quintela <quintela@redhat.com> 3162R: Peter Xu <peterx@redhat.com> 3163R: Leonardo Bras <leobras@redhat.com> 3164S: Maintained 3165F: hw/core/vmstate-if.c 3166F: include/hw/vmstate-if.h 3167F: include/migration/ 3168F: include/qemu/userfaultfd.h 3169F: migration/ 3170F: scripts/vmstate-static-checker.py 3171F: tests/vmstate-static-checker-data/ 3172F: tests/qtest/migration-test.c 3173F: docs/devel/migration.rst 3174F: qapi/migration.json 3175F: tests/migration/ 3176F: util/userfaultfd.c 3177 3178D-Bus 3179M: Marc-André Lureau <marcandre.lureau@redhat.com> 3180S: Maintained 3181F: backends/dbus-vmstate.c 3182F: ui/dbus* 3183F: audio/dbus* 3184F: util/dbus.c 3185F: include/ui/dbus* 3186F: include/qemu/dbus.h 3187F: docs/interop/dbus* 3188F: docs/sphinx/dbus* 3189F: docs/sphinx/fakedbusdoc.py 3190F: tests/qtest/dbus* 3191 3192Seccomp 3193M: Daniel P. Berrange <berrange@redhat.com> 3194S: Odd Fixes 3195F: softmmu/qemu-seccomp.c 3196F: include/sysemu/seccomp.h 3197F: tests/unit/test-seccomp.c 3198 3199Cryptography 3200M: Daniel P. Berrange <berrange@redhat.com> 3201S: Maintained 3202F: crypto/ 3203F: include/crypto/ 3204F: qapi/crypto.json 3205F: tests/unit/test-crypto-* 3206F: tests/bench/benchmark-crypto-* 3207F: tests/unit/crypto-tls-* 3208F: tests/unit/pkix_asn1_tab.c 3209F: qemu.sasl 3210 3211Coroutines 3212M: Stefan Hajnoczi <stefanha@redhat.com> 3213M: Kevin Wolf <kwolf@redhat.com> 3214S: Maintained 3215F: util/*coroutine* 3216F: include/qemu/coroutine* 3217F: tests/unit/test-coroutine.c 3218 3219Buffers 3220M: Daniel P. Berrange <berrange@redhat.com> 3221S: Odd Fixes 3222F: util/buffer.c 3223F: include/qemu/buffer.h 3224 3225I/O Channels 3226M: Daniel P. Berrange <berrange@redhat.com> 3227S: Maintained 3228F: io/ 3229F: include/io/ 3230F: tests/unit/test-io-* 3231 3232User authorization 3233M: Daniel P. Berrange <berrange@redhat.com> 3234S: Maintained 3235F: authz/ 3236F: qapi/authz.json 3237F: include/authz/ 3238F: tests/unit/test-authz-* 3239 3240Sockets 3241M: Daniel P. Berrange <berrange@redhat.com> 3242S: Maintained 3243F: include/qemu/sockets.h 3244F: util/qemu-sockets.c 3245F: qapi/sockets.json 3246 3247File monitor 3248M: Daniel P. Berrange <berrange@redhat.com> 3249S: Odd Fixes 3250F: util/filemonitor*.c 3251F: include/qemu/filemonitor.h 3252F: tests/unit/test-util-filemonitor.c 3253 3254Throttling infrastructure 3255M: Alberto Garcia <berto@igalia.com> 3256S: Supported 3257F: block/throttle-groups.c 3258F: include/block/throttle-groups.h 3259F: include/qemu/throttle*.h 3260F: util/throttle.c 3261F: docs/throttle.txt 3262F: tests/unit/test-throttle.c 3263L: qemu-block@nongnu.org 3264 3265UUID 3266M: Fam Zheng <fam@euphon.net> 3267S: Supported 3268F: util/uuid.c 3269F: include/qemu/uuid.h 3270F: tests/unit/test-uuid.c 3271 3272Yank feature 3273M: Lukas Straub <lukasstraub2@web.de> 3274S: Odd fixes 3275F: util/yank.c 3276F: migration/yank_functions* 3277F: tests/unit/test-yank.c 3278F: include/qemu/yank.h 3279F: qapi/yank.json 3280 3281COLO Framework 3282M: Hailiang Zhang <zhanghailiang@xfusion.com> 3283S: Maintained 3284F: migration/colo* 3285F: include/migration/colo.h 3286F: include/migration/failover.h 3287F: docs/COLO-FT.txt 3288 3289COLO Proxy 3290M: Zhang Chen <chen.zhang@intel.com> 3291M: Li Zhijian <lizhijian@fujitsu.com> 3292S: Supported 3293F: docs/colo-proxy.txt 3294F: net/colo* 3295F: net/filter-rewriter.c 3296F: net/filter-mirror.c 3297F: tests/qtest/test-filter* 3298 3299Record/replay 3300M: Pavel Dovgalyuk <pavel.dovgaluk@ispras.ru> 3301R: Paolo Bonzini <pbonzini@redhat.com> 3302W: https://wiki.qemu.org/Features/record-replay 3303S: Supported 3304F: replay/* 3305F: block/blkreplay.c 3306F: net/filter-replay.c 3307F: include/exec/replay-core.h 3308F: include/sysemu/replay.h 3309F: docs/devel/replay.rst 3310F: docs/system/replay.rst 3311F: stubs/replay.c 3312F: tests/avocado/replay_kernel.py 3313F: tests/avocado/replay_linux.py 3314F: tests/avocado/reverse_debugging.py 3315F: qapi/replay.json 3316 3317IOVA Tree 3318M: Peter Xu <peterx@redhat.com> 3319S: Maintained 3320F: include/qemu/iova-tree.h 3321F: util/iova-tree.c 3322 3323elf2dmp 3324M: Viktor Prutyanov <viktor.prutyanov@phystech.edu> 3325S: Maintained 3326F: contrib/elf2dmp/ 3327 3328I2C and SMBus 3329M: Corey Minyard <cminyard@mvista.com> 3330S: Maintained 3331F: hw/i2c/core.c 3332F: hw/i2c/smbus_slave.c 3333F: hw/i2c/smbus_master.c 3334F: hw/i2c/smbus_eeprom.c 3335F: include/hw/i2c/i2c.h 3336F: include/hw/i2c/smbus_master.h 3337F: include/hw/i2c/smbus_slave.h 3338F: include/hw/i2c/smbus_eeprom.h 3339 3340PMBus 3341M: Titus Rwantare <titusr@google.com> 3342S: Maintained 3343F: hw/i2c/pmbus_device.c 3344F: hw/sensor/adm1272.c 3345F: hw/sensor/isl_pmbus_vr.c 3346F: hw/sensor/max34451.c 3347F: include/hw/i2c/pmbus_device.h 3348F: include/hw/sensor/isl_pmbus_vr.h 3349F: tests/qtest/adm1272-test.c 3350F: tests/qtest/max34451-test.c 3351F: tests/qtest/isl_pmbus_vr-test.c 3352 3353Firmware schema specifications 3354M: Philippe Mathieu-Daudé <philmd@linaro.org> 3355R: Daniel P. Berrange <berrange@redhat.com> 3356R: Kashyap Chamarthy <kchamart@redhat.com> 3357S: Maintained 3358F: docs/interop/firmware.json 3359 3360EDK2 Firmware 3361M: Philippe Mathieu-Daudé <philmd@linaro.org> 3362M: Gerd Hoffmann <kraxel@redhat.com> 3363S: Supported 3364F: hw/i386/*ovmf* 3365F: pc-bios/descriptors/??-edk2-*.json 3366F: pc-bios/edk2-* 3367F: roms/Makefile.edk2 3368F: roms/edk2 3369F: roms/edk2-* 3370F: tests/data/uefi-boot-images/ 3371F: tests/uefi-test-tools/ 3372 3373VT-d Emulation 3374M: Michael S. Tsirkin <mst@redhat.com> 3375M: Peter Xu <peterx@redhat.com> 3376R: Jason Wang <jasowang@redhat.com> 3377S: Supported 3378F: hw/i386/intel_iommu.c 3379F: hw/i386/intel_iommu_internal.h 3380F: include/hw/i386/intel_iommu.h 3381 3382AMD-Vi Emulation 3383S: Orphan 3384F: hw/i386/amd_iommu.? 3385 3386OpenSBI Firmware 3387M: Bin Meng <bmeng.cn@gmail.com> 3388S: Supported 3389F: pc-bios/opensbi-* 3390F: .gitlab-ci.d/opensbi.yml 3391F: .gitlab-ci.d/opensbi/ 3392 3393Clock framework 3394M: Luc Michel <luc@lmichel.fr> 3395R: Damien Hedde <damien.hedde@dahe.fr> 3396S: Maintained 3397F: include/hw/clock.h 3398F: include/hw/qdev-clock.h 3399F: hw/core/clock.c 3400F: hw/core/clock-vmstate.c 3401F: hw/core/qdev-clock.c 3402F: docs/devel/clocks.rst 3403 3404Usermode Emulation 3405------------------ 3406Overall usermode emulation 3407M: Riku Voipio <riku.voipio@iki.fi> 3408S: Maintained 3409F: accel/tcg/user-exec*.c 3410F: include/user/ 3411F: common-user/ 3412 3413BSD user 3414M: Warner Losh <imp@bsdimp.com> 3415R: Kyle Evans <kevans@freebsd.org> 3416S: Maintained 3417F: bsd-user/ 3418F: configs/targets/*-bsd-user.mak 3419F: tests/vm/*bsd 3420T: git https://github.com/qemu-bsd-user/qemu-bsd-user bsd-user-rebase-3.1 3421 3422Linux user 3423M: Laurent Vivier <laurent@vivier.eu> 3424S: Maintained 3425F: linux-user/ 3426F: configs/targets/*linux-user.mak 3427F: scripts/qemu-binfmt-conf.sh 3428F: scripts/update-syscalltbl.sh 3429F: scripts/update-mips-syscall-args.sh 3430F: scripts/gensyscalls.sh 3431 3432Tiny Code Generator (TCG) 3433------------------------- 3434Common TCG code 3435M: Richard Henderson <richard.henderson@linaro.org> 3436S: Maintained 3437F: tcg/ 3438F: include/tcg/ 3439 3440TCG Plugins 3441M: Alex Bennée <alex.bennee@linaro.org> 3442R: Alexandre Iooss <erdnaxe@crans.org> 3443R: Mahmoud Mandour <ma.mandourr@gmail.com> 3444S: Maintained 3445F: docs/devel/tcg-plugins.rst 3446F: plugins/ 3447F: tests/plugin/ 3448F: tests/avocado/tcg_plugins.py 3449F: contrib/plugins/ 3450 3451AArch64 TCG target 3452M: Richard Henderson <richard.henderson@linaro.org> 3453S: Maintained 3454L: qemu-arm@nongnu.org 3455F: tcg/aarch64/ 3456 3457ARM TCG target 3458M: Richard Henderson <richard.henderson@linaro.org> 3459S: Maintained 3460L: qemu-arm@nongnu.org 3461F: tcg/arm/ 3462 3463i386 TCG target 3464M: Richard Henderson <richard.henderson@linaro.org> 3465S: Maintained 3466F: tcg/i386/ 3467 3468LoongArch64 TCG target 3469M: WANG Xuerui <git@xen0n.name> 3470S: Maintained 3471F: tcg/loongarch64/ 3472 3473MIPS TCG target 3474M: Philippe Mathieu-Daudé <philmd@linaro.org> 3475R: Aurelien Jarno <aurelien@aurel32.net> 3476R: Huacai Chen <chenhuacai@kernel.org> 3477R: Jiaxun Yang <jiaxun.yang@flygoat.com> 3478R: Aleksandar Rikalo <aleksandar.rikalo@syrmia.com> 3479S: Odd Fixes 3480F: tcg/mips/ 3481 3482PPC TCG target 3483M: Richard Henderson <richard.henderson@linaro.org> 3484S: Odd Fixes 3485F: tcg/ppc/ 3486 3487RISC-V TCG target 3488M: Palmer Dabbelt <palmer@dabbelt.com> 3489M: Alistair Francis <Alistair.Francis@wdc.com> 3490L: qemu-riscv@nongnu.org 3491S: Maintained 3492F: tcg/riscv/ 3493F: disas/riscv.c 3494 3495S390 TCG target 3496M: Richard Henderson <richard.henderson@linaro.org> 3497S: Maintained 3498F: tcg/s390/ 3499L: qemu-s390x@nongnu.org 3500 3501SPARC TCG target 3502S: Odd Fixes 3503F: tcg/sparc64/ 3504F: disas/sparc.c 3505 3506TCI TCG target 3507M: Stefan Weil <sw@weilnetz.de> 3508S: Maintained 3509F: tcg/tci/ 3510F: tcg/tci.c 3511F: disas/tci.c 3512 3513Block drivers 3514------------- 3515VMDK 3516M: Fam Zheng <fam@euphon.net> 3517L: qemu-block@nongnu.org 3518S: Supported 3519F: block/vmdk.c 3520 3521RBD 3522M: Ilya Dryomov <idryomov@gmail.com> 3523R: Peter Lieven <pl@kamp.de> 3524L: qemu-block@nongnu.org 3525S: Supported 3526F: block/rbd.c 3527 3528VHDX 3529M: Jeff Cody <codyprime@gmail.com> 3530L: qemu-block@nongnu.org 3531S: Supported 3532F: block/vhdx* 3533 3534VDI 3535M: Stefan Weil <sw@weilnetz.de> 3536L: qemu-block@nongnu.org 3537S: Maintained 3538F: block/vdi.c 3539 3540blkio 3541M: Stefan Hajnoczi <stefanha@redhat.com> 3542L: qemu-block@nongnu.org 3543S: Maintained 3544F: block/blkio.c 3545 3546iSCSI 3547M: Ronnie Sahlberg <ronniesahlberg@gmail.com> 3548M: Paolo Bonzini <pbonzini@redhat.com> 3549M: Peter Lieven <pl@kamp.de> 3550L: qemu-block@nongnu.org 3551S: Odd Fixes 3552F: block/iscsi.c 3553F: block/iscsi-opts.c 3554 3555Network Block Device (NBD) 3556M: Eric Blake <eblake@redhat.com> 3557M: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru> 3558L: qemu-block@nongnu.org 3559S: Maintained 3560F: block/nbd* 3561F: nbd/ 3562F: include/block/nbd* 3563F: qemu-nbd.* 3564F: blockdev-nbd.c 3565F: docs/interop/nbd.txt 3566F: docs/tools/qemu-nbd.rst 3567F: tests/qemu-iotests/tests/*nbd* 3568T: git https://repo.or.cz/qemu/ericb.git nbd 3569T: git https://gitlab.com/vsementsov/qemu.git block 3570 3571NFS 3572M: Peter Lieven <pl@kamp.de> 3573L: qemu-block@nongnu.org 3574S: Maintained 3575F: block/nfs.c 3576 3577SSH 3578M: Richard W.M. Jones <rjones@redhat.com> 3579L: qemu-block@nongnu.org 3580S: Supported 3581F: block/ssh.c 3582 3583CURL 3584L: qemu-block@nongnu.org 3585S: Odd Fixes 3586F: block/curl.c 3587 3588GLUSTER 3589L: qemu-block@nongnu.org 3590L: integration@gluster.org 3591S: Odd Fixes 3592F: block/gluster.c 3593 3594Null Block Driver 3595M: Fam Zheng <fam@euphon.net> 3596L: qemu-block@nongnu.org 3597S: Supported 3598F: block/null.c 3599 3600NVMe Block Driver 3601M: Stefan Hajnoczi <stefanha@redhat.com> 3602R: Fam Zheng <fam@euphon.net> 3603R: Philippe Mathieu-Daudé <philmd@linaro.org> 3604L: qemu-block@nongnu.org 3605S: Supported 3606F: block/nvme* 3607F: include/block/nvme.h 3608T: git https://github.com/stefanha/qemu.git block 3609 3610Bootdevice 3611M: Gonglei <arei.gonglei@huawei.com> 3612S: Maintained 3613F: softmmu/bootdevice.c 3614 3615Quorum 3616M: Alberto Garcia <berto@igalia.com> 3617S: Supported 3618F: block/quorum.c 3619L: qemu-block@nongnu.org 3620 3621blklogwrites 3622M: Ari Sundholm <ari@tuxera.com> 3623L: qemu-block@nongnu.org 3624S: Supported 3625F: block/blklogwrites.c 3626 3627blkverify 3628M: Stefan Hajnoczi <stefanha@redhat.com> 3629L: qemu-block@nongnu.org 3630S: Supported 3631F: block/blkverify.c 3632 3633bochs 3634M: Stefan Hajnoczi <stefanha@redhat.com> 3635L: qemu-block@nongnu.org 3636S: Supported 3637F: block/bochs.c 3638 3639cloop 3640M: Stefan Hajnoczi <stefanha@redhat.com> 3641L: qemu-block@nongnu.org 3642S: Supported 3643F: block/cloop.c 3644 3645dmg 3646M: Stefan Hajnoczi <stefanha@redhat.com> 3647L: qemu-block@nongnu.org 3648S: Supported 3649F: block/dmg.c 3650 3651parallels 3652M: Stefan Hajnoczi <stefanha@redhat.com> 3653M: Denis V. Lunev <den@openvz.org> 3654L: qemu-block@nongnu.org 3655S: Supported 3656F: block/parallels.c 3657F: block/parallels-ext.c 3658F: docs/interop/parallels.txt 3659 3660qed 3661M: Stefan Hajnoczi <stefanha@redhat.com> 3662L: qemu-block@nongnu.org 3663S: Supported 3664F: block/qed.c 3665 3666raw 3667M: Kevin Wolf <kwolf@redhat.com> 3668L: qemu-block@nongnu.org 3669S: Supported 3670F: block/linux-aio.c 3671F: include/block/raw-aio.h 3672F: block/raw-format.c 3673F: block/file-posix.c 3674F: block/file-win32.c 3675F: block/win32-aio.c 3676 3677Linux io_uring 3678M: Aarushi Mehta <mehta.aaru20@gmail.com> 3679M: Julia Suvorova <jusual@redhat.com> 3680M: Stefan Hajnoczi <stefanha@redhat.com> 3681R: Stefano Garzarella <sgarzare@redhat.com> 3682L: qemu-block@nongnu.org 3683S: Maintained 3684F: block/io_uring.c 3685F: stubs/io_uring.c 3686 3687qcow2 3688M: Kevin Wolf <kwolf@redhat.com> 3689M: Hanna Reitz <hreitz@redhat.com> 3690L: qemu-block@nongnu.org 3691S: Supported 3692F: block/qcow2* 3693F: docs/interop/qcow2.txt 3694 3695qcow 3696M: Kevin Wolf <kwolf@redhat.com> 3697L: qemu-block@nongnu.org 3698S: Supported 3699F: block/qcow.c 3700 3701blkdebug 3702M: Kevin Wolf <kwolf@redhat.com> 3703M: Hanna Reitz <hreitz@redhat.com> 3704L: qemu-block@nongnu.org 3705S: Supported 3706F: block/blkdebug.c 3707 3708vpc 3709M: Kevin Wolf <kwolf@redhat.com> 3710L: qemu-block@nongnu.org 3711S: Supported 3712F: block/vpc.c 3713 3714vvfat 3715M: Kevin Wolf <kwolf@redhat.com> 3716L: qemu-block@nongnu.org 3717S: Odd Fixes 3718F: block/vvfat.c 3719 3720Image format fuzzer 3721M: Stefan Hajnoczi <stefanha@redhat.com> 3722L: qemu-block@nongnu.org 3723S: Supported 3724F: tests/image-fuzzer/ 3725 3726Vhost-user block device backend server 3727M: Coiby Xu <Coiby.Xu@gmail.com> 3728S: Maintained 3729F: block/export/vhost-user-blk-server.c 3730F: block/export/vhost-user-blk-server.h 3731F: block/export/virtio-blk-handler.c 3732F: block/export/virtio-blk-handler.h 3733F: include/qemu/vhost-user-server.h 3734F: tests/qtest/libqos/vhost-user-blk.c 3735F: tests/qtest/libqos/vhost-user-blk.h 3736F: tests/qtest/vhost-user-blk-test.c 3737F: util/vhost-user-server.c 3738 3739FUSE block device exports 3740M: Hanna Reitz <hreitz@redhat.com> 3741L: qemu-block@nongnu.org 3742S: Supported 3743F: block/export/fuse.c 3744 3745VDUSE library and block device exports 3746M: Xie Yongji <xieyongji@bytedance.com> 3747S: Maintained 3748F: subprojects/libvduse/ 3749F: block/export/vduse-blk.c 3750F: block/export/vduse-blk.h 3751 3752Replication 3753M: Wen Congyang <wencongyang2@huawei.com> 3754M: Xie Changlong <xiechanglong.d@gmail.com> 3755S: Supported 3756F: replication* 3757F: block/replication.c 3758F: tests/unit/test-replication.c 3759F: docs/block-replication.txt 3760 3761PVRDMA 3762M: Yuval Shaia <yuval.shaia.ml@gmail.com> 3763M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com> 3764S: Maintained 3765F: hw/rdma/* 3766F: hw/rdma/vmw/* 3767F: docs/pvrdma.txt 3768F: contrib/rdmacm-mux/* 3769F: qapi/rdma.json 3770 3771Semihosting 3772M: Alex Bennée <alex.bennee@linaro.org> 3773S: Maintained 3774F: semihosting/ 3775F: include/semihosting/ 3776F: tests/tcg/multiarch/arm-compat-semi/ 3777F: tests/tcg/aarch64/system/semiheap.c 3778 3779Multi-process QEMU 3780M: Elena Ufimtseva <elena.ufimtseva@oracle.com> 3781M: Jagannathan Raman <jag.raman@oracle.com> 3782M: John G Johnson <john.g.johnson@oracle.com> 3783S: Maintained 3784F: docs/devel/multi-process.rst 3785F: docs/system/multi-process.rst 3786F: hw/pci-host/remote.c 3787F: include/hw/pci-host/remote.h 3788F: hw/remote/machine.c 3789F: include/hw/remote/machine.h 3790F: hw/remote/mpqemu-link.c 3791F: include/hw/remote/mpqemu-link.h 3792F: hw/remote/message.c 3793F: hw/remote/remote-obj.c 3794F: include/hw/remote/memory.h 3795F: hw/remote/memory.c 3796F: hw/remote/proxy.c 3797F: include/hw/remote/proxy.h 3798F: hw/remote/proxy-memory-listener.c 3799F: include/hw/remote/proxy-memory-listener.h 3800F: hw/remote/iohub.c 3801F: include/hw/remote/iohub.h 3802F: subprojects/libvfio-user 3803F: hw/remote/vfio-user-obj.c 3804F: include/hw/remote/vfio-user-obj.h 3805F: hw/remote/iommu.c 3806F: include/hw/remote/iommu.h 3807 3808EBPF: 3809M: Jason Wang <jasowang@redhat.com> 3810R: Andrew Melnychenko <andrew@daynix.com> 3811R: Yuri Benditovich <yuri.benditovich@daynix.com> 3812S: Maintained 3813F: ebpf/* 3814F: tools/ebpf/* 3815 3816Build and test automation 3817------------------------- 3818Build and test automation, general continuous integration 3819M: Alex Bennée <alex.bennee@linaro.org> 3820M: Philippe Mathieu-Daudé <philmd@linaro.org> 3821M: Thomas Huth <thuth@redhat.com> 3822R: Wainer dos Santos Moschetta <wainersm@redhat.com> 3823R: Beraldo Leal <bleal@redhat.com> 3824S: Maintained 3825F: .github/workflows/lockdown.yml 3826F: .gitlab-ci.yml 3827F: .gitlab-ci.d/ 3828F: .travis.yml 3829F: scripts/ci/ 3830F: tests/docker/ 3831F: tests/vm/ 3832F: tests/lcitool/ 3833F: tests/avocado/tuxrun_baselines.py 3834F: scripts/archive-source.sh 3835F: docs/devel/testing.rst 3836W: https://gitlab.com/qemu-project/qemu/pipelines 3837W: https://travis-ci.org/qemu/qemu 3838 3839FreeBSD Hosted Continuous Integration 3840M: Ed Maste <emaste@freebsd.org> 3841M: Li-Wen Hsu <lwhsu@freebsd.org> 3842S: Maintained 3843F: .gitlab-ci.d/cirrus/freebsd* 3844F: tests/vm/freebsd 3845W: https://cirrus-ci.com/github/qemu/qemu 3846 3847Windows Hosted Continuous Integration 3848M: Yonggang Luo <luoyonggang@gmail.com> 3849S: Maintained 3850F: .gitlab-ci.d/windows.yml 3851 3852Guest Test Compilation Support 3853M: Alex Bennée <alex.bennee@linaro.org> 3854R: Philippe Mathieu-Daudé <philmd@linaro.org> 3855S: Maintained 3856F: tests/tcg/Makefile.target 3857 3858Integration Testing with the Avocado framework 3859W: https://trello.com/b/6Qi1pxVn/avocado-qemu 3860R: Cleber Rosa <crosa@redhat.com> 3861R: Philippe Mathieu-Daudé <philmd@linaro.org> 3862R: Wainer dos Santos Moschetta <wainersm@redhat.com> 3863R: Beraldo Leal <bleal@redhat.com> 3864S: Odd Fixes 3865F: tests/avocado/ 3866 3867GitLab custom runner (Works On Arm Sponsored) 3868M: Alex Bennée <alex.bennee@linaro.org> 3869M: Philippe Mathieu-Daudé <philmd@linaro.org> 3870S: Maintained 3871F: .gitlab-ci.d/custom-runners/ubuntu-22.04-aarch64.yml 3872F: .gitlab-ci.d/custom-runners/ubuntu-22.04-aarch32.yml 3873 3874Documentation 3875------------- 3876Build system architecture 3877M: Daniel P. Berrange <berrange@redhat.com> 3878S: Odd Fixes 3879F: docs/devel/build-system.rst 3880 3881GIT Data Mining Config 3882M: Alex Bennée <alex.bennee@linaro.org> 3883S: Odd Fixes 3884F: gitdm.config 3885F: contrib/gitdm/* 3886 3887Incompatible changes 3888R: libvir-list@redhat.com 3889F: docs/about/deprecated.rst 3890 3891Build System 3892------------ 3893Meson 3894M: Paolo Bonzini <pbonzini@redhat.com> 3895R: Marc-André Lureau <marcandre.lureau@redhat.com> 3896R: Daniel P. Berrange <berrange@redhat.com> 3897R: Thomas Huth <thuth@redhat.com> 3898R: Philippe Mathieu-Daudé <philmd@linaro.org> 3899S: Maintained 3900F: meson.build 3901F: meson_options.txt 3902F: scripts/meson-buildoptions.* 3903F: scripts/check_sparse.py 3904F: scripts/symlink-install-tree.py 3905 3906Top Level Makefile and configure 3907M: Paolo Bonzini <pbonzini@redhat.com> 3908R: Alex Bennée <alex.bennee@linaro.org> 3909R: Thomas Huth <thuth@redhat.com> 3910S: Maintained 3911F: Makefile 3912F: configure 3913F: scripts/mtest2make.py 3914F: tests/Makefile.include 3915 3916Kconfig 3917M: Paolo Bonzini <pbonzini@redhat.com> 3918S: Maintained 3919F: scripts/minikconf.py 3920F: docs/devel/kconfig.rst 3921F: Kconfig* 3922F: */Kconfig* 3923F: hw/*/Kconfig* 3924F: target/*/Kconfig* 3925 3926GIT submodules 3927M: Daniel P. Berrange <berrange@redhat.com> 3928S: Odd Fixes 3929F: scripts/git-submodule.sh 3930 3931UI translations 3932S: Orphan 3933F: po/*.po 3934 3935Sphinx documentation configuration and build machinery 3936M: Peter Maydell <peter.maydell@linaro.org> 3937S: Maintained 3938F: docs/conf.py 3939F: docs/*/conf.py 3940F: docs/sphinx/ 3941F: docs/_templates/ 3942 3943Miscellaneous 3944------------- 3945Performance Tools and Tests 3946M: Ahmed Karaman <ahmedkhaledkaraman@gmail.com> 3947S: Maintained 3948F: scripts/performance/ 3949 3950Code Coverage Tools 3951M: Alex Bennée <alex.bennee@linaro.org> 3952S: Odd Fixes 3953F: scripts/coverage/ 3954