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