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