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