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