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