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