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: 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 67Responsible Disclosure, Reporting Security Issues 68------------------------------------------------- 69W: https://wiki.qemu.org/SecurityProcess 70M: Michael S. Tsirkin <mst@redhat.com> 71L: secalert@redhat.com 72 73Trivial patches 74--------------- 75Trivial patches 76M: Michael Tokarev <mjt@tls.msk.ru> 77M: Laurent Vivier <laurent@vivier.eu> 78S: Maintained 79L: qemu-trivial@nongnu.org 80K: ^Subject:.*(?i)trivial 81T: git git://git.corpit.ru/qemu.git trivial-patches 82T: git https://github.com/vivier/qemu.git trivial-patches 83 84Architecture support 85-------------------- 86S390 general architecture support 87M: Cornelia Huck <cohuck@redhat.com> 88M: Thomas Huth <thuth@redhat.com> 89S: Supported 90F: default-configs/s390x-softmmu.mak 91F: gdb-xml/s390*.xml 92F: hw/char/sclp*.[hc] 93F: hw/char/terminal3270.c 94F: hw/intc/s390_flic.c 95F: hw/intc/s390_flic_kvm.c 96F: hw/s390x/ 97F: hw/vfio/ap.c 98F: hw/vfio/ccw.c 99F: hw/watchdog/wdt_diag288.c 100F: include/hw/s390x/ 101F: include/hw/watchdog/wdt_diag288.h 102F: pc-bios/s390-ccw/ 103F: pc-bios/s390-ccw.img 104F: target/s390x/ 105F: docs/system/target-s390x.rst 106F: docs/system/s390x/ 107F: tests/migration/s390x/ 108K: ^Subject:.*(?i)s390x? 109T: git https://gitlab.com/cohuck/qemu.git s390-next 110L: qemu-s390x@nongnu.org 111 112Guest CPU cores (TCG) 113--------------------- 114Overall TCG CPUs 115M: Richard Henderson <richard.henderson@linaro.org> 116R: Paolo Bonzini <pbonzini@redhat.com> 117S: Maintained 118F: softmmu/cpus.c 119F: cpus-common.c 120F: accel/tcg/ 121F: accel/stubs/tcg-stub.c 122F: util/cacheinfo.c 123F: util/cacheflush.c 124F: scripts/decodetree.py 125F: docs/devel/decodetree.rst 126F: include/exec/cpu*.h 127F: include/exec/exec-all.h 128F: include/exec/helper*.h 129F: include/exec/tb-hash.h 130F: include/sysemu/cpus.h 131F: include/sysemu/tcg.h 132F: include/hw/core/tcg-cpu-ops.h 133 134FPU emulation 135M: Aurelien Jarno <aurelien@aurel32.net> 136M: Peter Maydell <peter.maydell@linaro.org> 137M: Alex Bennée <alex.bennee@linaro.org> 138S: Maintained 139F: fpu/ 140F: include/fpu/ 141F: tests/fp/ 142 143Alpha TCG CPUs 144M: Richard Henderson <richard.henderson@linaro.org> 145S: Maintained 146F: target/alpha/ 147F: tests/tcg/alpha/ 148F: disas/alpha.c 149 150ARM TCG CPUs 151M: Peter Maydell <peter.maydell@linaro.org> 152L: qemu-arm@nongnu.org 153S: Maintained 154F: target/arm/ 155F: tests/tcg/arm/ 156F: tests/tcg/aarch64/ 157F: hw/arm/ 158F: hw/cpu/a*mpcore.c 159F: include/hw/cpu/a*mpcore.h 160F: disas/arm.c 161F: disas/arm-a64.cc 162F: disas/libvixl/ 163F: docs/system/target-arm.rst 164F: docs/system/arm/cpu-features.rst 165 166ARM SMMU 167M: Eric Auger <eric.auger@redhat.com> 168L: qemu-arm@nongnu.org 169S: Maintained 170F: hw/arm/smmu* 171F: include/hw/arm/smmu* 172 173AVR TCG CPUs 174M: Michael Rolnik <mrolnik@gmail.com> 175R: Sarah Harris <S.E.Harris@kent.ac.uk> 176S: Maintained 177F: docs/system/target-avr.rst 178F: gdb-xml/avr-cpu.xml 179F: target/avr/ 180F: tests/acceptance/machine_avr6.py 181 182CRIS TCG CPUs 183M: Edgar E. Iglesias <edgar.iglesias@gmail.com> 184S: Maintained 185F: target/cris/ 186F: hw/cris/ 187F: include/hw/cris/ 188F: tests/tcg/cris/ 189F: disas/cris.c 190 191HPPA (PA-RISC) TCG CPUs 192M: Richard Henderson <richard.henderson@linaro.org> 193S: Maintained 194F: target/hppa/ 195F: hw/hppa/ 196F: disas/hppa.c 197F: hw/net/*i82596* 198F: include/hw/net/lasi_82596.h 199 200LM32 TCG CPUs 201R: Michael Walle <michael@walle.cc> 202S: Orphan 203F: target/lm32/ 204F: disas/lm32.c 205F: hw/lm32/ 206F: hw/*/lm32_* 207F: hw/*/milkymist-* 208F: include/hw/display/milkymist_tmu2.h 209F: include/hw/char/lm32_juart.h 210F: include/hw/lm32/ 211F: tests/tcg/lm32/ 212 213M68K TCG CPUs 214M: Laurent Vivier <laurent@vivier.eu> 215S: Maintained 216F: target/m68k/ 217F: disas/m68k.c 218 219MicroBlaze TCG CPUs 220M: Edgar E. Iglesias <edgar.iglesias@gmail.com> 221S: Maintained 222F: target/microblaze/ 223F: hw/microblaze/ 224F: disas/microblaze.c 225 226MIPS TCG CPUs 227M: Philippe Mathieu-Daudé <f4bug@amsat.org> 228R: Aurelien Jarno <aurelien@aurel32.net> 229R: Jiaxun Yang <jiaxun.yang@flygoat.com> 230R: Aleksandar Rikalo <aleksandar.rikalo@syrmia.com> 231S: Odd Fixes 232F: target/mips/ 233F: default-configs/*mips* 234F: disas/mips.c 235F: docs/system/cpu-models-mips.rst.inc 236F: hw/intc/mips_gic.c 237F: hw/mips/ 238F: hw/misc/mips_* 239F: hw/timer/mips_gictimer.c 240F: include/hw/intc/mips_gic.h 241F: include/hw/mips/ 242F: include/hw/misc/mips_* 243F: include/hw/timer/mips_gictimer.h 244F: tests/tcg/mips/ 245K: ^Subject:.*(?i)mips 246 247MIPS TCG CPUs (nanoMIPS ISA) 248S: Orphan 249F: disas/nanomips.* 250 251Moxie TCG CPUs 252M: Anthony Green <green@moxielogic.com> 253S: Maintained 254F: target/moxie/ 255F: disas/moxie.c 256F: hw/moxie/ 257F: default-configs/moxie-softmmu.mak 258 259NiosII TCG CPUs 260M: Chris Wulff <crwulff@gmail.com> 261M: Marek Vasut <marex@denx.de> 262S: Maintained 263F: target/nios2/ 264F: hw/nios2/ 265F: disas/nios2.c 266F: default-configs/nios2-softmmu.mak 267 268OpenRISC TCG CPUs 269M: Stafford Horne <shorne@gmail.com> 270S: Odd Fixes 271F: target/openrisc/ 272F: hw/openrisc/ 273F: tests/tcg/openrisc/ 274 275PowerPC TCG CPUs 276M: David Gibson <david@gibson.dropbear.id.au> 277M: Greg Kurz <groug@kaod.org> 278L: qemu-ppc@nongnu.org 279S: Maintained 280F: target/ppc/ 281F: hw/ppc/ 282F: include/hw/ppc/ 283F: disas/ppc.c 284F: tests/acceptance/machine_ppc.py 285 286RISC-V TCG CPUs 287M: Palmer Dabbelt <palmer@dabbelt.com> 288M: Alistair Francis <Alistair.Francis@wdc.com> 289M: Sagar Karandikar <sagark@eecs.berkeley.edu> 290M: Bastian Koppelmann <kbastian@mail.uni-paderborn.de> 291L: qemu-riscv@nongnu.org 292S: Supported 293F: target/riscv/ 294F: hw/riscv/ 295F: include/hw/riscv/ 296F: linux-user/host/riscv32/ 297F: linux-user/host/riscv64/ 298 299RENESAS RX CPUs 300M: Yoshinori Sato <ysato@users.sourceforge.jp> 301S: Odd Fixes 302F: target/rx/ 303 304S390 TCG CPUs 305M: Richard Henderson <richard.henderson@linaro.org> 306M: David Hildenbrand <david@redhat.com> 307S: Maintained 308F: target/s390x/ 309F: hw/s390x/ 310F: disas/s390.c 311F: tests/tcg/s390x/ 312L: qemu-s390x@nongnu.org 313 314SH4 TCG CPUs 315M: Yoshinori Sato <ysato@users.sourceforge.jp> 316S: Odd Fixes 317F: target/sh4/ 318F: hw/sh4/ 319F: disas/sh4.c 320F: include/hw/sh4/ 321 322SPARC TCG CPUs 323M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> 324M: Artyom Tarasenko <atar4qemu@gmail.com> 325S: Maintained 326F: target/sparc/ 327F: hw/sparc/ 328F: hw/sparc64/ 329F: include/hw/sparc/sparc64.h 330F: disas/sparc.c 331 332UniCore32 TCG CPUs 333M: Guan Xuetao <gxt@mprc.pku.edu.cn> 334S: Maintained 335F: target/unicore32/ 336F: hw/unicore32/ 337F: include/hw/unicore32/ 338 339X86 TCG CPUs 340M: Paolo Bonzini <pbonzini@redhat.com> 341M: Richard Henderson <richard.henderson@linaro.org> 342M: Eduardo Habkost <ehabkost@redhat.com> 343S: Maintained 344F: target/i386/ 345F: tests/tcg/i386/ 346F: tests/tcg/x86_64/ 347F: hw/i386/ 348F: disas/i386.c 349F: docs/system/cpu-models-x86.rst.inc 350T: git https://gitlab.com/ehabkost/qemu.git x86-next 351 352Xtensa TCG CPUs 353M: Max Filippov <jcmvbkbc@gmail.com> 354W: http://wiki.osll.ru/doku.php?id=etc:users:jcmvbkbc:qemu-target-xtensa 355S: Maintained 356F: target/xtensa/ 357F: hw/xtensa/ 358F: tests/tcg/xtensa/ 359F: disas/xtensa.c 360F: include/hw/xtensa/xtensa-isa.h 361F: default-configs/xtensa*.mak 362 363TriCore TCG CPUs 364M: Bastian Koppelmann <kbastian@mail.uni-paderborn.de> 365S: Maintained 366F: target/tricore/ 367F: hw/tricore/ 368F: include/hw/tricore/ 369 370Multiarch Linux User Tests 371M: Alex Bennée <alex.bennee@linaro.org> 372S: Maintained 373F: tests/tcg/multiarch/ 374 375Guest CPU Cores (KVM) 376--------------------- 377Overall KVM CPUs 378M: Paolo Bonzini <pbonzini@redhat.com> 379L: kvm@vger.kernel.org 380S: Supported 381F: */*/kvm* 382F: accel/kvm/ 383F: accel/stubs/kvm-stub.c 384F: include/hw/kvm/ 385F: include/sysemu/kvm*.h 386F: scripts/kvm/kvm_flightrecorder 387 388ARM KVM CPUs 389M: Peter Maydell <peter.maydell@linaro.org> 390L: qemu-arm@nongnu.org 391S: Maintained 392F: target/arm/kvm.c 393 394MIPS KVM CPUs 395M: Huacai Chen <chenhuacai@kernel.org> 396S: Odd Fixes 397F: target/mips/kvm.c 398 399PPC KVM CPUs 400M: David Gibson <david@gibson.dropbear.id.au> 401M: Greg Kurz <groug@kaod.org> 402S: Maintained 403F: target/ppc/kvm.c 404 405S390 KVM CPUs 406M: Halil Pasic <pasic@linux.ibm.com> 407M: Cornelia Huck <cohuck@redhat.com> 408M: Christian Borntraeger <borntraeger@de.ibm.com> 409S: Supported 410F: target/s390x/kvm.c 411F: target/s390x/kvm_s390x.h 412F: target/s390x/kvm-stub.c 413F: target/s390x/ioinst.[ch] 414F: target/s390x/machine.c 415F: target/s390x/sigp.c 416F: target/s390x/cpu_features*.[ch] 417F: target/s390x/cpu_models.[ch] 418F: hw/s390x/pv.c 419F: include/hw/s390x/pv.h 420F: hw/intc/s390_flic.c 421F: hw/intc/s390_flic_kvm.c 422F: include/hw/s390x/s390_flic.h 423F: gdb-xml/s390*.xml 424T: git https://gitlab.com/cohuck/qemu.git s390-next 425T: git https://github.com/borntraeger/qemu.git s390-next 426L: qemu-s390x@nongnu.org 427 428X86 KVM CPUs 429M: Paolo Bonzini <pbonzini@redhat.com> 430M: Marcelo Tosatti <mtosatti@redhat.com> 431L: kvm@vger.kernel.org 432S: Supported 433F: target/i386/kvm/ 434F: scripts/kvm/vmxcap 435 436Guest CPU Cores (other accelerators) 437------------------------------------ 438Overall 439M: Richard Henderson <richard.henderson@linaro.org> 440R: Paolo Bonzini <pbonzini@redhat.com> 441S: Maintained 442F: include/qemu/accel.h 443F: include/sysemu/accel-ops.h 444F: include/hw/core/accel-cpu.h 445F: accel/accel-*.c 446F: accel/Makefile.objs 447F: accel/stubs/Makefile.objs 448 449X86 HVF CPUs 450M: Cameron Esfahani <dirty@apple.com> 451M: Roman Bolshakov <r.bolshakov@yadro.com> 452W: https://wiki.qemu.org/Features/HVF 453S: Maintained 454F: target/i386/hvf/ 455F: include/sysemu/hvf.h 456 457WHPX CPUs 458M: Sunil Muthuswamy <sunilmut@microsoft.com> 459S: Supported 460F: target/i386/whpx/ 461F: include/sysemu/whpx.h 462 463Guest CPU Cores (Xen) 464--------------------- 465X86 Xen CPUs 466M: Stefano Stabellini <sstabellini@kernel.org> 467M: Anthony Perard <anthony.perard@citrix.com> 468M: Paul Durrant <paul@xen.org> 469L: xen-devel@lists.xenproject.org 470S: Supported 471F: */xen* 472F: accel/xen/* 473F: hw/9pfs/xen-9p* 474F: hw/char/xen_console.c 475F: hw/display/xenfb.c 476F: hw/net/xen_nic.c 477F: hw/usb/xen-usb.c 478F: hw/block/xen* 479F: hw/block/dataplane/xen* 480F: hw/xen/ 481F: hw/xenpv/ 482F: hw/i386/xen/ 483F: hw/pci-host/xen_igd_pt.c 484F: include/hw/block/dataplane/xen* 485F: include/hw/xen/ 486F: include/sysemu/xen.h 487F: include/sysemu/xen-mapcache.h 488F: stubs/xen-hw-stub.c 489 490Guest CPU Cores (HAXM) 491--------------------- 492X86 HAXM CPUs 493M: Wenchao Wang <wenchao.wang@intel.com> 494M: Colin Xu <colin.xu@intel.com> 495L: haxm-team@intel.com 496W: https://github.com/intel/haxm/issues 497S: Maintained 498F: accel/stubs/hax-stub.c 499F: include/sysemu/hax.h 500F: target/i386/hax/ 501 502Hosts 503----- 504LINUX 505M: Michael S. Tsirkin <mst@redhat.com> 506M: Cornelia Huck <cohuck@redhat.com> 507M: Paolo Bonzini <pbonzini@redhat.com> 508S: Maintained 509F: linux-headers/ 510F: scripts/update-linux-headers.sh 511 512POSIX 513M: Paolo Bonzini <pbonzini@redhat.com> 514S: Maintained 515F: os-posix.c 516F: include/sysemu/os-posix.h 517F: util/*posix*.c 518F: include/qemu/*posix*.h 519 520NETBSD 521M: Kamil Rytarowski <kamil@netbsd.org> 522S: Maintained 523K: ^Subject:.*(?i)NetBSD 524 525OPENBSD 526M: Brad Smith <brad@comstyle.com> 527S: Maintained 528K: ^Subject:.*(?i)OpenBSD 529 530W32, W64 531M: Stefan Weil <sw@weilnetz.de> 532S: Maintained 533F: *win32* 534F: */*win32* 535F: include/*/*win32* 536X: qga/*win32* 537F: qemu.nsi 538 539Alpha Machines 540-------------- 541M: Richard Henderson <richard.henderson@linaro.org> 542S: Maintained 543F: hw/alpha/ 544F: hw/isa/smc37c669-superio.c 545F: tests/tcg/alpha/system/ 546 547ARM Machines 548------------ 549Allwinner-a10 550M: Beniamino Galvani <b.galvani@gmail.com> 551M: Peter Maydell <peter.maydell@linaro.org> 552L: qemu-arm@nongnu.org 553S: Odd Fixes 554F: hw/*/allwinner* 555F: include/hw/*/allwinner* 556F: hw/arm/cubieboard.c 557 558Allwinner-h3 559M: Niek Linnenbank <nieklinnenbank@gmail.com> 560L: qemu-arm@nongnu.org 561S: Maintained 562F: hw/*/allwinner-h3* 563F: include/hw/*/allwinner-h3* 564F: hw/arm/orangepi.c 565F: docs/system/arm/orangepi.rst 566 567ARM PrimeCell and CMSDK devices 568M: Peter Maydell <peter.maydell@linaro.org> 569L: qemu-arm@nongnu.org 570S: Maintained 571F: hw/char/pl011.c 572F: include/hw/char/pl011.h 573F: hw/display/pl110* 574F: hw/dma/pl080.c 575F: include/hw/dma/pl080.h 576F: hw/dma/pl330.c 577F: hw/gpio/pl061.c 578F: hw/input/pl050.c 579F: hw/intc/pl190.c 580F: hw/sd/pl181.c 581F: hw/ssi/pl022.c 582F: include/hw/ssi/pl022.h 583F: hw/rtc/pl031.c 584F: include/hw/rtc/pl031.h 585F: include/hw/arm/primecell.h 586F: hw/timer/cmsdk-apb-timer.c 587F: include/hw/timer/cmsdk-apb-timer.h 588F: tests/qtest/cmsdk-apb-timer-test.c 589F: hw/timer/cmsdk-apb-dualtimer.c 590F: include/hw/timer/cmsdk-apb-dualtimer.h 591F: tests/qtest/cmsdk-apb-dualtimer-test.c 592F: hw/char/cmsdk-apb-uart.c 593F: include/hw/char/cmsdk-apb-uart.h 594F: hw/watchdog/cmsdk-apb-watchdog.c 595F: include/hw/watchdog/cmsdk-apb-watchdog.h 596F: tests/qtest/cmsdk-apb-watchdog-test.c 597F: hw/misc/tz-ppc.c 598F: include/hw/misc/tz-ppc.h 599F: hw/misc/tz-mpc.c 600F: include/hw/misc/tz-mpc.h 601F: hw/misc/tz-msc.c 602F: include/hw/misc/tz-msc.h 603 604ARM cores 605M: Peter Maydell <peter.maydell@linaro.org> 606L: qemu-arm@nongnu.org 607S: Maintained 608F: hw/intc/arm* 609F: hw/intc/gic_internal.h 610F: hw/misc/a9scu.c 611F: hw/misc/arm11scu.c 612F: hw/misc/arm_l2x0.c 613F: hw/timer/a9gtimer* 614F: hw/timer/arm* 615F: include/hw/arm/arm*.h 616F: include/hw/intc/arm* 617F: include/hw/misc/a9scu.h 618F: include/hw/misc/arm11scu.h 619F: include/hw/timer/a9gtimer.h 620F: include/hw/timer/arm_mptimer.h 621F: include/hw/timer/armv7m_systick.h 622F: tests/qtest/test-arm-mptimer.c 623 624Exynos 625M: Igor Mitsyanko <i.mitsyanko@gmail.com> 626M: Peter Maydell <peter.maydell@linaro.org> 627L: qemu-arm@nongnu.org 628S: Odd Fixes 629F: hw/*/exynos* 630F: include/hw/arm/exynos4210.h 631 632Calxeda Highbank 633M: Rob Herring <robh@kernel.org> 634M: Peter Maydell <peter.maydell@linaro.org> 635L: qemu-arm@nongnu.org 636S: Odd Fixes 637F: hw/arm/highbank.c 638F: hw/net/xgmac.c 639 640Canon DIGIC 641M: Antony Pavlov <antonynpavlov@gmail.com> 642M: Peter Maydell <peter.maydell@linaro.org> 643L: qemu-arm@nongnu.org 644S: Odd Fixes 645F: include/hw/arm/digic.h 646F: hw/*/digic* 647F: include/hw/*/digic* 648F: tests/acceptance/machine_arm_canona1100.py 649F: docs/system/arm/digic.rst 650 651Goldfish RTC 652M: Anup Patel <anup.patel@wdc.com> 653M: Alistair Francis <Alistair.Francis@wdc.com> 654L: qemu-riscv@nongnu.org 655S: Maintained 656F: hw/rtc/goldfish_rtc.c 657F: include/hw/rtc/goldfish_rtc.h 658 659Gumstix 660M: Peter Maydell <peter.maydell@linaro.org> 661R: Philippe Mathieu-Daudé <f4bug@amsat.org> 662L: qemu-arm@nongnu.org 663S: Odd Fixes 664F: hw/arm/gumstix.c 665F: docs/system/arm/gumstix.rst 666 667i.MX25 PDK 668M: Peter Maydell <peter.maydell@linaro.org> 669R: Jean-Christophe Dubois <jcd@tribudubois.net> 670L: qemu-arm@nongnu.org 671S: Odd Fixes 672F: hw/arm/fsl-imx25.c 673F: hw/arm/imx25_pdk.c 674F: hw/misc/imx25_ccm.c 675F: hw/watchdog/wdt_imx2.c 676F: include/hw/arm/fsl-imx25.h 677F: include/hw/misc/imx25_ccm.h 678F: include/hw/watchdog/wdt_imx2.h 679 680i.MX31 (kzm) 681M: Peter Chubb <peter.chubb@nicta.com.au> 682M: Peter Maydell <peter.maydell@linaro.org> 683L: qemu-arm@nongnu.org 684S: Odd Fixes 685F: hw/arm/kzm.c 686F: hw/*/imx_* 687F: hw/*/*imx31* 688F: include/hw/*/imx_* 689F: include/hw/*/*imx31* 690 691Integrator CP 692M: Peter Maydell <peter.maydell@linaro.org> 693L: qemu-arm@nongnu.org 694S: Maintained 695F: hw/arm/integratorcp.c 696F: hw/misc/arm_integrator_debug.c 697F: include/hw/misc/arm_integrator_debug.h 698F: tests/acceptance/machine_arm_integratorcp.py 699F: docs/system/arm/integratorcp.rst 700 701MCIMX6UL EVK / i.MX6ul 702M: Peter Maydell <peter.maydell@linaro.org> 703R: Jean-Christophe Dubois <jcd@tribudubois.net> 704L: qemu-arm@nongnu.org 705S: Odd Fixes 706F: hw/arm/mcimx6ul-evk.c 707F: hw/arm/fsl-imx6ul.c 708F: hw/misc/imx6ul_ccm.c 709F: include/hw/arm/fsl-imx6ul.h 710F: include/hw/misc/imx6ul_ccm.h 711 712MCIMX7D SABRE / i.MX7 713M: Peter Maydell <peter.maydell@linaro.org> 714R: Andrey Smirnov <andrew.smirnov@gmail.com> 715L: qemu-arm@nongnu.org 716S: Odd Fixes 717F: hw/arm/mcimx7d-sabre.c 718F: hw/arm/fsl-imx7.c 719F: hw/misc/imx7_*.c 720F: include/hw/arm/fsl-imx7.h 721F: include/hw/misc/imx7_*.h 722F: hw/pci-host/designware.c 723F: include/hw/pci-host/designware.h 724 725MPS2 726M: Peter Maydell <peter.maydell@linaro.org> 727L: qemu-arm@nongnu.org 728S: Maintained 729F: hw/arm/mps2.c 730F: hw/arm/mps2-tz.c 731F: hw/misc/mps2-*.c 732F: include/hw/misc/mps2-*.h 733F: hw/arm/armsse.c 734F: include/hw/arm/armsse.h 735F: hw/misc/iotkit-secctl.c 736F: include/hw/misc/iotkit-secctl.h 737F: hw/misc/iotkit-sysctl.c 738F: include/hw/misc/iotkit-sysctl.h 739F: hw/misc/iotkit-sysinfo.c 740F: include/hw/misc/iotkit-sysinfo.h 741F: hw/misc/armsse-cpuid.c 742F: include/hw/misc/armsse-cpuid.h 743F: hw/misc/armsse-mhu.c 744F: include/hw/misc/armsse-mhu.h 745F: docs/system/arm/mps2.rst 746 747Musca 748M: Peter Maydell <peter.maydell@linaro.org> 749L: qemu-arm@nongnu.org 750S: Maintained 751F: hw/arm/musca.c 752F: docs/system/arm/musca.rst 753 754Musicpal 755M: Jan Kiszka <jan.kiszka@web.de> 756M: Peter Maydell <peter.maydell@linaro.org> 757L: qemu-arm@nongnu.org 758S: Odd Fixes 759F: hw/arm/musicpal.c 760F: docs/system/arm/musicpal.rst 761 762Nuvoton NPCM7xx 763M: Havard Skinnemoen <hskinnemoen@google.com> 764M: Tyrone Ting <kfting@nuvoton.com> 765L: qemu-arm@nongnu.org 766S: Supported 767F: hw/*/npcm7xx* 768F: include/hw/*/npcm7xx* 769F: tests/qtest/npcm7xx* 770F: pc-bios/npcm7xx_bootrom.bin 771F: roms/vbootrom 772F: docs/system/arm/nuvoton.rst 773 774nSeries 775M: Andrzej Zaborowski <balrogg@gmail.com> 776M: Peter Maydell <peter.maydell@linaro.org> 777L: qemu-arm@nongnu.org 778S: Odd Fixes 779F: hw/arm/nseries.c 780F: hw/display/blizzard.c 781F: hw/input/lm832x.c 782F: hw/input/tsc2005.c 783F: hw/misc/cbus.c 784F: hw/rtc/twl92230.c 785F: include/hw/display/blizzard.h 786F: include/hw/input/tsc2xxx.h 787F: include/hw/misc/cbus.h 788F: tests/acceptance/machine_arm_n8x0.py 789F: docs/system/arm/nseries.rst 790 791Palm 792M: Andrzej Zaborowski <balrogg@gmail.com> 793M: Peter Maydell <peter.maydell@linaro.org> 794L: qemu-arm@nongnu.org 795S: Odd Fixes 796F: hw/arm/palm.c 797F: hw/input/tsc210x.c 798F: include/hw/input/tsc2xxx.h 799F: docs/system/arm/palm.rst 800 801Raspberry Pi 802M: Peter Maydell <peter.maydell@linaro.org> 803R: Andrew Baumann <Andrew.Baumann@microsoft.com> 804R: Philippe Mathieu-Daudé <f4bug@amsat.org> 805L: qemu-arm@nongnu.org 806S: Odd Fixes 807F: hw/arm/raspi.c 808F: hw/arm/raspi_platform.h 809F: hw/*/bcm283* 810F: include/hw/arm/raspi* 811F: include/hw/*/bcm283* 812F: docs/system/arm/raspi.rst 813 814Real View 815M: Peter Maydell <peter.maydell@linaro.org> 816L: qemu-arm@nongnu.org 817S: Maintained 818F: hw/arm/realview* 819F: hw/cpu/realview_mpcore.c 820F: hw/intc/realview_gic.c 821F: include/hw/intc/realview_gic.h 822F: docs/system/arm/realview.rst 823 824PXA2XX 825M: Andrzej Zaborowski <balrogg@gmail.com> 826M: Peter Maydell <peter.maydell@linaro.org> 827L: qemu-arm@nongnu.org 828S: Odd Fixes 829F: hw/arm/mainstone.c 830F: hw/arm/spitz.c 831F: hw/arm/tosa.c 832F: hw/arm/z2.c 833F: hw/*/pxa2xx* 834F: hw/display/tc6393xb.c 835F: hw/gpio/max7310.c 836F: hw/gpio/zaurus.c 837F: hw/misc/mst_fpga.c 838F: hw/misc/max111x.c 839F: include/hw/misc/max111x.h 840F: include/hw/arm/pxa.h 841F: include/hw/arm/sharpsl.h 842F: include/hw/display/tc6393xb.h 843F: docs/system/arm/xscale.rst 844 845SABRELITE / i.MX6 846M: Peter Maydell <peter.maydell@linaro.org> 847R: Jean-Christophe Dubois <jcd@tribudubois.net> 848L: qemu-arm@nongnu.org 849S: Odd Fixes 850F: hw/arm/sabrelite.c 851F: hw/arm/fsl-imx6.c 852F: hw/misc/imx6_*.c 853F: hw/ssi/imx_spi.c 854F: hw/usb/imx-usb-phy.c 855F: include/hw/usb/imx-usb-phy.h 856F: include/hw/arm/fsl-imx6.h 857F: include/hw/misc/imx6_*.h 858F: include/hw/ssi/imx_spi.h 859 860SBSA-REF 861M: Radoslaw Biernacki <rad@semihalf.com> 862M: Peter Maydell <peter.maydell@linaro.org> 863R: Leif Lindholm <leif@nuviainc.com> 864L: qemu-arm@nongnu.org 865S: Maintained 866F: hw/arm/sbsa-ref.c 867F: docs/system/arm/sbsa.rst 868 869Sharp SL-5500 (Collie) PDA 870M: Peter Maydell <peter.maydell@linaro.org> 871L: qemu-arm@nongnu.org 872S: Odd Fixes 873F: hw/arm/collie.c 874F: hw/arm/strongarm* 875F: docs/system/arm/collie.rst 876 877Stellaris 878M: Peter Maydell <peter.maydell@linaro.org> 879L: qemu-arm@nongnu.org 880S: Maintained 881F: hw/*/stellaris* 882F: include/hw/input/gamepad.h 883F: docs/system/arm/stellaris.rst 884 885Versatile Express 886M: Peter Maydell <peter.maydell@linaro.org> 887L: qemu-arm@nongnu.org 888S: Maintained 889F: hw/arm/vexpress.c 890F: docs/system/arm/vexpress.rst 891 892Versatile PB 893M: Peter Maydell <peter.maydell@linaro.org> 894L: qemu-arm@nongnu.org 895S: Maintained 896F: hw/*/versatile* 897F: include/hw/i2c/arm_sbcon_i2c.h 898F: hw/misc/arm_sysctl.c 899F: docs/system/arm/versatile.rst 900 901Virt 902M: Peter Maydell <peter.maydell@linaro.org> 903L: qemu-arm@nongnu.org 904S: Maintained 905F: hw/arm/virt* 906F: include/hw/arm/virt.h 907F: docs/system/arm/virt.rst 908 909Xilinx Zynq 910M: Edgar E. Iglesias <edgar.iglesias@gmail.com> 911M: Alistair Francis <alistair@alistair23.me> 912M: Peter Maydell <peter.maydell@linaro.org> 913L: qemu-arm@nongnu.org 914S: Maintained 915F: hw/*/xilinx_* 916F: hw/*/cadence_* 917F: hw/misc/zynq* 918F: include/hw/misc/zynq* 919X: hw/ssi/xilinx_* 920 921Xilinx ZynqMP and Versal 922M: Alistair Francis <alistair@alistair23.me> 923M: Edgar E. Iglesias <edgar.iglesias@gmail.com> 924M: Peter Maydell <peter.maydell@linaro.org> 925L: qemu-arm@nongnu.org 926S: Maintained 927F: hw/*/xlnx*.c 928F: include/hw/*/xlnx*.h 929F: include/hw/ssi/xilinx_spips.h 930F: hw/display/dpcd.c 931F: include/hw/display/dpcd.h 932F: docs/system/arm/xlnx-versal-virt.rst 933 934ARM ACPI Subsystem 935M: Shannon Zhao <shannon.zhaosl@gmail.com> 936L: qemu-arm@nongnu.org 937S: Maintained 938F: hw/arm/virt-acpi-build.c 939 940STM32F205 941M: Alistair Francis <alistair@alistair23.me> 942M: Peter Maydell <peter.maydell@linaro.org> 943L: qemu-arm@nongnu.org 944S: Maintained 945F: hw/arm/stm32f205_soc.c 946F: hw/misc/stm32f2xx_syscfg.c 947F: hw/char/stm32f2xx_usart.c 948F: hw/timer/stm32f2xx_timer.c 949F: hw/adc/* 950F: hw/ssi/stm32f2xx_spi.c 951F: include/hw/*/stm32*.h 952 953STM32F405 954M: Alistair Francis <alistair@alistair23.me> 955M: Peter Maydell <peter.maydell@linaro.org> 956L: qemu-arm@nongnu.org 957S: Maintained 958F: hw/arm/stm32f405_soc.c 959F: hw/misc/stm32f4xx_syscfg.c 960F: hw/misc/stm32f4xx_exti.c 961 962Netduino 2 963M: Alistair Francis <alistair@alistair23.me> 964M: Peter Maydell <peter.maydell@linaro.org> 965L: qemu-arm@nongnu.org 966S: Maintained 967F: hw/arm/netduino2.c 968 969Netduino Plus 2 970M: Alistair Francis <alistair@alistair23.me> 971M: Peter Maydell <peter.maydell@linaro.org> 972L: qemu-arm@nongnu.org 973S: Maintained 974F: hw/arm/netduinoplus2.c 975 976SmartFusion2 977M: Subbaraya Sundeep <sundeep.lkml@gmail.com> 978M: Peter Maydell <peter.maydell@linaro.org> 979L: qemu-arm@nongnu.org 980S: Maintained 981F: hw/arm/msf2-soc.c 982F: hw/misc/msf2-sysreg.c 983F: hw/timer/mss-timer.c 984F: hw/ssi/mss-spi.c 985F: include/hw/arm/msf2-soc.h 986F: include/hw/misc/msf2-sysreg.h 987F: include/hw/timer/mss-timer.h 988F: include/hw/ssi/mss-spi.h 989F: hw/net/msf2-emac.c 990F: include/hw/net/msf2-emac.h 991 992Emcraft M2S-FG484 993M: Subbaraya Sundeep <sundeep.lkml@gmail.com> 994M: Peter Maydell <peter.maydell@linaro.org> 995L: qemu-arm@nongnu.org 996S: Maintained 997F: hw/arm/msf2-som.c 998 999ASPEED BMCs 1000M: Cédric Le Goater <clg@kaod.org> 1001M: Peter Maydell <peter.maydell@linaro.org> 1002R: Andrew Jeffery <andrew@aj.id.au> 1003R: Joel Stanley <joel@jms.id.au> 1004L: qemu-arm@nongnu.org 1005S: Maintained 1006F: hw/*/*aspeed* 1007F: hw/misc/pca9552.c 1008F: include/hw/*/*aspeed* 1009F: include/hw/misc/pca9552*.h 1010F: hw/net/ftgmac100.c 1011F: include/hw/net/ftgmac100.h 1012F: docs/system/arm/aspeed.rst 1013 1014NRF51 1015M: Joel Stanley <joel@jms.id.au> 1016M: Peter Maydell <peter.maydell@linaro.org> 1017L: qemu-arm@nongnu.org 1018S: Maintained 1019F: hw/*/nrf51*.c 1020F: hw/*/microbit*.c 1021F: include/hw/*/nrf51*.h 1022F: include/hw/*/microbit*.h 1023F: tests/qtest/microbit-test.c 1024 1025AVR Machines 1026------------- 1027 1028AVR MCUs 1029M: Michael Rolnik <mrolnik@gmail.com> 1030R: Sarah Harris <S.E.Harris@kent.ac.uk> 1031S: Maintained 1032F: default-configs/avr-softmmu.mak 1033F: hw/avr/ 1034F: include/hw/char/avr_usart.h 1035F: hw/char/avr_usart.c 1036F: include/hw/timer/avr_timer16.h 1037F: hw/timer/avr_timer16.c 1038F: include/hw/misc/avr_power.h 1039F: hw/misc/avr_power.c 1040 1041Arduino 1042M: Philippe Mathieu-Daudé <f4bug@amsat.org> 1043R: Sarah Harris <S.E.Harris@kent.ac.uk> 1044S: Maintained 1045F: hw/avr/arduino.c 1046 1047CRIS Machines 1048------------- 1049Axis Dev88 1050M: Edgar E. Iglesias <edgar.iglesias@gmail.com> 1051S: Maintained 1052F: hw/cris/axis_dev88.c 1053F: hw/*/etraxfs_*.c 1054 1055HP-PARISC Machines 1056------------------ 1057HP B160L 1058M: Richard Henderson <richard.henderson@linaro.org> 1059R: Helge Deller <deller@gmx.de> 1060S: Odd Fixes 1061F: default-configs/hppa-softmmu.mak 1062F: hw/hppa/ 1063F: pc-bios/hppa-firmware.img 1064 1065LM32 Machines 1066------------- 1067EVR32 and uclinux BSP 1068R: Michael Walle <michael@walle.cc> 1069S: Orphan 1070F: hw/lm32/lm32_boards.c 1071 1072milkymist 1073R: Michael Walle <michael@walle.cc> 1074S: Orphan 1075F: hw/lm32/milkymist.c 1076 1077M68K Machines 1078------------- 1079an5206 1080M: Thomas Huth <huth@tuxfamily.org> 1081S: Odd Fixes 1082F: hw/m68k/an5206.c 1083F: hw/m68k/mcf5206.c 1084 1085mcf5208 1086M: Thomas Huth <huth@tuxfamily.org> 1087S: Odd Fixes 1088F: hw/m68k/mcf5208.c 1089F: hw/m68k/mcf_intc.c 1090F: hw/char/mcf_uart.c 1091F: hw/net/mcf_fec.c 1092F: include/hw/m68k/mcf*.h 1093 1094NeXTcube 1095M: Thomas Huth <huth@tuxfamily.org> 1096S: Odd Fixes 1097F: hw/m68k/next-*.c 1098F: hw/display/next-fb.c 1099F: include/hw/m68k/next-cube.h 1100 1101q800 1102M: Laurent Vivier <laurent@vivier.eu> 1103S: Maintained 1104F: hw/m68k/q800.c 1105F: hw/misc/mac_via.c 1106F: hw/nubus/* 1107F: hw/display/macfb.c 1108F: hw/block/swim.c 1109F: hw/m68k/bootinfo.h 1110F: include/hw/misc/mac_via.h 1111F: include/hw/nubus/* 1112F: include/hw/display/macfb.h 1113F: include/hw/block/swim.h 1114 1115MicroBlaze Machines 1116------------------- 1117petalogix_s3adsp1800 1118M: Edgar E. Iglesias <edgar.iglesias@gmail.com> 1119S: Maintained 1120F: hw/microblaze/petalogix_s3adsp1800_mmu.c 1121F: include/hw/char/xilinx_uartlite.h 1122F: tests/acceptance/machine_microblaze.py 1123 1124petalogix_ml605 1125M: Edgar E. Iglesias <edgar.iglesias@gmail.com> 1126S: Maintained 1127F: hw/microblaze/petalogix_ml605_mmu.c 1128 1129MIPS Machines 1130------------- 1131Jazz 1132M: Hervé Poussineau <hpoussin@reactos.org> 1133R: Aleksandar Rikalo <aleksandar.rikalo@syrmia.com> 1134S: Maintained 1135F: hw/mips/jazz.c 1136F: hw/display/jazz_led.c 1137F: hw/dma/rc4030.c 1138 1139Malta 1140M: Philippe Mathieu-Daudé <f4bug@amsat.org> 1141R: Aurelien Jarno <aurelien@aurel32.net> 1142S: Odd Fixes 1143F: hw/isa/piix4.c 1144F: hw/acpi/piix4.c 1145F: hw/mips/malta.c 1146F: hw/mips/gt64xxx_pci.c 1147F: include/hw/southbridge/piix.h 1148F: tests/acceptance/linux_ssh_mips_malta.py 1149F: tests/acceptance/machine_mips_malta.py 1150 1151Mipssim 1152R: Aleksandar Rikalo <aleksandar.rikalo@syrmia.com> 1153S: Orphan 1154F: hw/mips/mipssim.c 1155F: hw/net/mipsnet.c 1156 1157Fuloong 2E 1158M: Huacai Chen <chenhuacai@kernel.org> 1159M: Philippe Mathieu-Daudé <f4bug@amsat.org> 1160R: Jiaxun Yang <jiaxun.yang@flygoat.com> 1161S: Odd Fixes 1162F: hw/mips/fuloong2e.c 1163F: hw/isa/vt82c686.c 1164F: hw/pci-host/bonito.c 1165F: include/hw/isa/vt82c686.h 1166 1167Loongson-3 virtual platforms 1168M: Huacai Chen <chenhuacai@kernel.org> 1169R: Jiaxun Yang <jiaxun.yang@flygoat.com> 1170S: Maintained 1171F: hw/intc/loongson_liointc.c 1172F: hw/mips/loongson3_bootp.c 1173F: hw/mips/loongson3_bootp.h 1174F: hw/mips/loongson3_virt.c 1175 1176Boston 1177M: Paul Burton <paulburton@kernel.org> 1178R: Aleksandar Rikalo <aleksandar.rikalo@syrmia.com> 1179S: Odd Fixes 1180F: hw/core/loader-fit.c 1181F: hw/mips/boston.c 1182F: hw/pci-host/xilinx-pcie.c 1183F: include/hw/pci-host/xilinx-pcie.h 1184 1185OpenRISC Machines 1186----------------- 1187or1k-sim 1188M: Jia Liu <proljc@gmail.com> 1189S: Maintained 1190F: hw/openrisc/openrisc_sim.c 1191 1192PowerPC Machines 1193---------------- 1194405 1195M: David Gibson <david@gibson.dropbear.id.au> 1196M: Greg Kurz <groug@kaod.org> 1197L: qemu-ppc@nongnu.org 1198S: Odd Fixes 1199F: hw/ppc/ppc405_boards.c 1200 1201Bamboo 1202M: David Gibson <david@gibson.dropbear.id.au> 1203M: Greg Kurz <groug@kaod.org> 1204L: qemu-ppc@nongnu.org 1205S: Odd Fixes 1206F: hw/ppc/ppc440_bamboo.c 1207 1208e500 1209M: David Gibson <david@gibson.dropbear.id.au> 1210M: Greg Kurz <groug@kaod.org> 1211L: qemu-ppc@nongnu.org 1212S: Odd Fixes 1213F: hw/ppc/e500* 1214F: hw/gpio/mpc8xxx.c 1215F: hw/i2c/mpc_i2c.c 1216F: hw/net/fsl_etsec/ 1217F: hw/pci-host/ppce500.c 1218F: include/hw/ppc/ppc_e500.h 1219F: include/hw/pci-host/ppce500.h 1220F: pc-bios/u-boot.e500 1221 1222mpc8544ds 1223M: David Gibson <david@gibson.dropbear.id.au> 1224M: Greg Kurz <groug@kaod.org> 1225L: qemu-ppc@nongnu.org 1226S: Odd Fixes 1227F: hw/ppc/mpc8544ds.c 1228F: hw/ppc/mpc8544_guts.c 1229 1230New World (mac99) 1231M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> 1232R: David Gibson <david@gibson.dropbear.id.au> 1233R: Greg Kurz <groug@kaod.org> 1234L: qemu-ppc@nongnu.org 1235S: Odd Fixes 1236F: hw/ppc/mac_newworld.c 1237F: hw/pci-host/uninorth.c 1238F: hw/pci-bridge/dec.[hc] 1239F: hw/misc/macio/ 1240F: hw/misc/mos6522.c 1241F: hw/nvram/mac_nvram.c 1242F: hw/input/adb* 1243F: include/hw/misc/macio/ 1244F: include/hw/misc/mos6522.h 1245F: include/hw/ppc/mac_dbdma.h 1246F: include/hw/pci-host/uninorth.h 1247F: include/hw/input/adb* 1248F: pc-bios/qemu_vga.ndrv 1249 1250Old World (g3beige) 1251M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> 1252R: David Gibson <david@gibson.dropbear.id.au> 1253R: Greg Kurz <groug@kaod.org> 1254L: qemu-ppc@nongnu.org 1255S: Odd Fixes 1256F: hw/ppc/mac_oldworld.c 1257F: hw/pci-host/grackle.c 1258F: hw/misc/macio/ 1259F: hw/intc/heathrow_pic.c 1260F: hw/input/adb* 1261F: include/hw/intc/heathrow_pic.h 1262F: include/hw/input/adb* 1263F: pc-bios/qemu_vga.ndrv 1264 1265PReP 1266M: Hervé Poussineau <hpoussin@reactos.org> 1267R: David Gibson <david@gibson.dropbear.id.au> 1268R: Greg Kurz <groug@kaod.org> 1269L: qemu-ppc@nongnu.org 1270S: Maintained 1271F: hw/ppc/prep.c 1272F: hw/ppc/prep_systemio.c 1273F: hw/ppc/rs6000_mc.c 1274F: hw/pci-host/prep.[hc] 1275F: hw/isa/i82378.c 1276F: hw/isa/pc87312.c 1277F: hw/dma/i82374.c 1278F: hw/rtc/m48t59-isa.c 1279F: include/hw/isa/pc87312.h 1280F: include/hw/rtc/m48t59.h 1281F: tests/acceptance/ppc_prep_40p.py 1282 1283sPAPR 1284M: David Gibson <david@gibson.dropbear.id.au> 1285M: Greg Kurz <groug@kaod.org> 1286L: qemu-ppc@nongnu.org 1287S: Supported 1288F: hw/*/spapr* 1289F: include/hw/*/spapr* 1290F: hw/*/xics* 1291F: include/hw/*/xics* 1292F: pc-bios/slof.bin 1293F: docs/specs/ppc-spapr-hcalls.txt 1294F: docs/specs/ppc-spapr-hotplug.txt 1295F: tests/qtest/spapr* 1296F: tests/qtest/libqos/*spapr* 1297F: tests/qtest/rtas* 1298F: tests/qtest/libqos/rtas* 1299 1300PowerNV (Non-Virtualized) 1301M: Cédric Le Goater <clg@kaod.org> 1302M: David Gibson <david@gibson.dropbear.id.au> 1303M: Greg Kurz <groug@kaod.org> 1304L: qemu-ppc@nongnu.org 1305S: Maintained 1306F: hw/ppc/pnv* 1307F: hw/intc/pnv* 1308F: hw/intc/xics_pnv.c 1309F: hw/pci-host/pnv* 1310F: include/hw/ppc/pnv* 1311F: include/hw/pci-host/pnv* 1312F: pc-bios/skiboot.lid 1313F: tests/qtest/pnv* 1314 1315virtex_ml507 1316M: Edgar E. Iglesias <edgar.iglesias@gmail.com> 1317L: qemu-ppc@nongnu.org 1318S: Odd Fixes 1319F: hw/ppc/virtex_ml507.c 1320 1321sam460ex 1322M: BALATON Zoltan <balaton@eik.bme.hu> 1323R: David Gibson <david@gibson.dropbear.id.au> 1324R: Greg Kurz <groug@kaod.org> 1325L: qemu-ppc@nongnu.org 1326S: Maintained 1327F: hw/ppc/sam460ex.c 1328F: hw/ppc/ppc440_pcix.c 1329F: hw/display/sm501* 1330F: hw/ide/sii3112.c 1331F: hw/rtc/m41t80.c 1332F: pc-bios/canyonlands.dt[sb] 1333F: pc-bios/u-boot-sam460ex-20100605.bin 1334F: roms/u-boot-sam460ex 1335 1336RISC-V Machines 1337--------------- 1338OpenTitan 1339M: Alistair Francis <Alistair.Francis@wdc.com> 1340L: qemu-riscv@nongnu.org 1341S: Supported 1342F: hw/riscv/opentitan.c 1343F: hw/char/ibex_uart.c 1344F: hw/intc/ibex_plic.c 1345F: include/hw/riscv/opentitan.h 1346F: include/hw/char/ibex_uart.h 1347F: include/hw/intc/ibex_plic.h 1348 1349Microchip PolarFire SoC Icicle Kit 1350M: Bin Meng <bin.meng@windriver.com> 1351L: qemu-riscv@nongnu.org 1352S: Supported 1353F: hw/riscv/microchip_pfsoc.c 1354F: hw/char/mchp_pfsoc_mmuart.c 1355F: hw/misc/mchp_pfsoc_dmc.c 1356F: hw/misc/mchp_pfsoc_ioscb.c 1357F: hw/misc/mchp_pfsoc_sysreg.c 1358F: include/hw/riscv/microchip_pfsoc.h 1359F: include/hw/char/mchp_pfsoc_mmuart.h 1360F: include/hw/misc/mchp_pfsoc_dmc.h 1361F: include/hw/misc/mchp_pfsoc_ioscb.h 1362F: include/hw/misc/mchp_pfsoc_sysreg.h 1363 1364RX Machines 1365----------- 1366rx-gdbsim 1367M: Yoshinori Sato <ysato@users.sourceforge.jp> 1368S: Odd Fixes 1369F: docs/system/target-rx.rst 1370F: hw/rx/rx-gdbsim.c 1371F: tests/acceptance/machine_rx_gdbsim.py 1372 1373SH4 Machines 1374------------ 1375R2D 1376M: Yoshinori Sato <ysato@users.sourceforge.jp> 1377R: Magnus Damm <magnus.damm@gmail.com> 1378S: Odd Fixes 1379F: hw/sh4/r2d.c 1380F: hw/intc/sh_intc.c 1381F: include/hw/sh4/sh_intc.h 1382 1383Shix 1384M: Yoshinori Sato <ysato@users.sourceforge.jp> 1385R: Magnus Damm <magnus.damm@gmail.com> 1386S: Odd Fixes 1387F: hw/sh4/shix.c 1388F: hw/intc/sh_intc.c 1389F: include/hw/sh4/sh_intc.h 1390 1391SPARC Machines 1392-------------- 1393Sun4m 1394M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> 1395S: Maintained 1396F: hw/sparc/sun4m.c 1397F: hw/sparc/sun4m_iommu.c 1398F: hw/display/cg3.c 1399F: hw/display/tcx.c 1400F: hw/dma/sparc32_dma.c 1401F: hw/misc/eccmemctl.c 1402F: hw/*/slavio_*.c 1403F: include/hw/nvram/sun_nvram.h 1404F: include/hw/sparc/sparc32_dma.h 1405F: include/hw/sparc/sun4m_iommu.h 1406F: pc-bios/openbios-sparc32 1407 1408Sun4u 1409M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> 1410S: Maintained 1411F: hw/sparc64/sun4u.c 1412F: hw/sparc64/sun4u_iommu.c 1413F: include/hw/sparc/sun4u_iommu.h 1414F: hw/pci-host/sabre.c 1415F: include/hw/pci-host/sabre.h 1416F: hw/pci-bridge/simba.c 1417F: include/hw/pci-bridge/simba.h 1418F: pc-bios/openbios-sparc64 1419F: tests/acceptance/machine_sparc64_sun4u.py 1420 1421Sun4v 1422M: Artyom Tarasenko <atar4qemu@gmail.com> 1423S: Maintained 1424F: hw/sparc64/niagara.c 1425F: hw/rtc/sun4v-rtc.c 1426F: include/hw/rtc/sun4v-rtc.h 1427 1428Leon3 1429M: Fabien Chouteau <chouteau@adacore.com> 1430M: KONRAD Frederic <frederic.konrad@adacore.com> 1431S: Maintained 1432F: hw/sparc/leon3.c 1433F: hw/*/grlib* 1434F: include/hw/*/grlib* 1435F: tests/acceptance/machine_sparc_leon3.py 1436 1437S390 Machines 1438------------- 1439S390 Virtio-ccw 1440M: Cornelia Huck <cohuck@redhat.com> 1441M: Halil Pasic <pasic@linux.ibm.com> 1442M: Christian Borntraeger <borntraeger@de.ibm.com> 1443S: Supported 1444F: hw/char/sclp*.[hc] 1445F: hw/char/terminal3270.c 1446F: hw/s390x/ 1447F: include/hw/s390x/ 1448F: hw/watchdog/wdt_diag288.c 1449F: include/hw/watchdog/wdt_diag288.h 1450F: default-configs/s390x-softmmu.mak 1451F: tests/acceptance/machine_s390_ccw_virtio.py 1452T: git https://gitlab.com/cohuck/qemu.git s390-next 1453T: git https://github.com/borntraeger/qemu.git s390-next 1454L: qemu-s390x@nongnu.org 1455 1456S390-ccw boot 1457M: Christian Borntraeger <borntraeger@de.ibm.com> 1458M: Thomas Huth <thuth@redhat.com> 1459S: Supported 1460F: hw/s390x/ipl.* 1461F: pc-bios/s390-ccw/ 1462F: pc-bios/s390-ccw.img 1463F: docs/devel/s390-dasd-ipl.rst 1464T: git https://github.com/borntraeger/qemu.git s390-next 1465L: qemu-s390x@nongnu.org 1466 1467S390 PCI 1468M: Matthew Rosato <mjrosato@linux.ibm.com> 1469S: Supported 1470F: hw/s390x/s390-pci* 1471F: include/hw/s390x/s390-pci* 1472L: qemu-s390x@nongnu.org 1473 1474UniCore32 Machines 1475------------------ 1476PKUnity-3 SoC initramfs-with-busybox 1477M: Guan Xuetao <gxt@mprc.pku.edu.cn> 1478S: Maintained 1479F: hw/*/puv3* 1480F: hw/unicore32/ 1481 1482X86 Machines 1483------------ 1484PC 1485M: Michael S. Tsirkin <mst@redhat.com> 1486M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com> 1487S: Supported 1488F: include/hw/i386/ 1489F: hw/i386/ 1490F: hw/pci-host/i440fx.c 1491F: hw/pci-host/q35.c 1492F: hw/pci-host/pam.c 1493F: include/hw/pci-host/i440fx.h 1494F: include/hw/pci-host/q35.h 1495F: include/hw/pci-host/pam.h 1496F: hw/isa/piix3.c 1497F: hw/isa/lpc_ich9.c 1498F: hw/i2c/smbus_ich9.c 1499F: hw/acpi/piix4.c 1500F: hw/acpi/ich9.c 1501F: include/hw/acpi/ich9.h 1502F: include/hw/southbridge/piix.h 1503F: hw/misc/sga.c 1504F: hw/isa/apm.c 1505F: include/hw/isa/apm.h 1506F: tests/test-x86-cpuid.c 1507F: tests/qtest/test-x86-cpuid-compat.c 1508 1509PC Chipset 1510M: Michael S. Tsirkin <mst@redhat.com> 1511M: Paolo Bonzini <pbonzini@redhat.com> 1512S: Supported 1513F: hw/char/debugcon.c 1514F: hw/char/parallel* 1515F: hw/char/serial* 1516F: hw/dma/i8257* 1517F: hw/i2c/pm_smbus.c 1518F: hw/input/pckbd.c 1519F: hw/intc/apic* 1520F: hw/intc/ioapic* 1521F: hw/intc/i8259* 1522F: hw/isa/isa-superio.c 1523F: hw/misc/debugexit.c 1524F: hw/misc/pc-testdev.c 1525F: hw/timer/hpet* 1526F: hw/timer/i8254* 1527F: hw/rtc/mc146818rtc* 1528F: hw/watchdog/wdt_ib700.c 1529F: hw/watchdog/wdt_i6300esb.c 1530F: include/hw/display/vga.h 1531F: include/hw/char/parallel.h 1532F: include/hw/dma/i8257.h 1533F: include/hw/i2c/pm_smbus.h 1534F: include/hw/input/i8042.h 1535F: include/hw/isa/i8259_internal.h 1536F: include/hw/isa/superio.h 1537F: include/hw/timer/hpet.h 1538F: include/hw/timer/i8254* 1539F: include/hw/rtc/mc146818rtc* 1540 1541microvm 1542M: Sergio Lopez <slp@redhat.com> 1543M: Paolo Bonzini <pbonzini@redhat.com> 1544S: Maintained 1545F: docs/microvm.rst 1546F: hw/i386/microvm.c 1547F: include/hw/i386/microvm.h 1548F: pc-bios/bios-microvm.bin 1549 1550Machine core 1551M: Eduardo Habkost <ehabkost@redhat.com> 1552M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com> 1553S: Supported 1554F: cpu.c 1555F: hw/core/cpu.c 1556F: hw/core/machine-qmp-cmds.c 1557F: hw/core/machine.c 1558F: hw/core/null-machine.c 1559F: hw/core/numa.c 1560F: hw/cpu/cluster.c 1561F: qapi/machine.json 1562F: qapi/machine-target.json 1563F: include/hw/boards.h 1564F: include/hw/core/cpu.h 1565F: include/hw/cpu/cluster.h 1566F: include/sysemu/numa.h 1567T: git https://gitlab.com/ehabkost/qemu.git machine-next 1568 1569Xtensa Machines 1570--------------- 1571sim 1572M: Max Filippov <jcmvbkbc@gmail.com> 1573S: Maintained 1574F: hw/xtensa/sim.c 1575 1576virt 1577M: Max Filippov <jcmvbkbc@gmail.com> 1578S: Maintained 1579F: hw/xtensa/virt.c 1580 1581XTFPGA (LX60, LX200, ML605, KC705) 1582M: Max Filippov <jcmvbkbc@gmail.com> 1583S: Maintained 1584F: hw/xtensa/xtfpga.c 1585F: hw/net/opencores_eth.c 1586 1587Devices 1588------- 1589Xilinx CAN 1590M: Vikram Garhwal <fnu.vikram@xilinx.com> 1591M: Francisco Iglesias <francisco.iglesias@xilinx.com> 1592S: Maintained 1593F: hw/net/can/xlnx-* 1594F: include/hw/net/xlnx-* 1595F: tests/qtest/xlnx-can-test* 1596 1597EDU 1598M: Jiri Slaby <jslaby@suse.cz> 1599S: Maintained 1600F: hw/misc/edu.c 1601 1602IDE 1603M: John Snow <jsnow@redhat.com> 1604L: qemu-block@nongnu.org 1605S: Supported 1606F: include/hw/ide.h 1607F: include/hw/ide/ 1608F: hw/ide/ 1609F: hw/block/block.c 1610F: hw/block/cdrom.c 1611F: hw/block/hd-geometry.c 1612F: tests/qtest/ide-test.c 1613F: tests/qtest/ahci-test.c 1614F: tests/qtest/cdrom-test.c 1615F: tests/qtest/libqos/ahci* 1616T: git https://gitlab.com/jsnow/qemu.git ide 1617 1618IPMI 1619M: Corey Minyard <minyard@acm.org> 1620S: Maintained 1621F: include/hw/ipmi/* 1622F: hw/ipmi/* 1623F: hw/smbios/smbios_type_38.c 1624F: tests/qtest/ipmi* 1625T: git https://github.com/cminyard/qemu.git master-ipmi-rebase 1626 1627Floppy 1628M: John Snow <jsnow@redhat.com> 1629L: qemu-block@nongnu.org 1630S: Supported 1631F: hw/block/fdc.c 1632F: include/hw/block/fdc.h 1633F: tests/qtest/fdc-test.c 1634T: git https://gitlab.com/jsnow/qemu.git ide 1635 1636OMAP 1637M: Peter Maydell <peter.maydell@linaro.org> 1638L: qemu-arm@nongnu.org 1639S: Maintained 1640F: hw/*/omap* 1641F: include/hw/arm/omap.h 1642F: docs/system/arm/sx1.rst 1643 1644IPack 1645M: Alberto Garcia <berto@igalia.com> 1646S: Odd Fixes 1647F: hw/char/ipoctal232.c 1648F: hw/ipack/ 1649 1650PCI 1651M: Michael S. Tsirkin <mst@redhat.com> 1652M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com> 1653S: Supported 1654F: include/hw/pci/* 1655F: hw/misc/pci-testdev.c 1656F: hw/pci/* 1657F: hw/pci-bridge/* 1658F: qapi/pci.json 1659F: docs/pci* 1660F: docs/specs/*pci* 1661F: default-configs/pci.mak 1662 1663ACPI/SMBIOS 1664M: Michael S. Tsirkin <mst@redhat.com> 1665M: Igor Mammedov <imammedo@redhat.com> 1666S: Supported 1667F: include/hw/acpi/* 1668F: include/hw/firmware/smbios.h 1669F: hw/mem/* 1670F: hw/acpi/* 1671F: hw/smbios/* 1672F: hw/i386/acpi-build.[hc] 1673F: hw/arm/virt-acpi-build.c 1674F: qapi/acpi.json 1675F: tests/qtest/bios-tables-test* 1676F: tests/qtest/acpi-utils.[hc] 1677F: tests/data/acpi/ 1678 1679ACPI/HEST/GHES 1680R: Dongjiu Geng <gengdongjiu@huawei.com> 1681R: Xiang Zheng <zhengxiang9@huawei.com> 1682L: qemu-arm@nongnu.org 1683S: Maintained 1684F: hw/acpi/ghes.c 1685F: include/hw/acpi/ghes.h 1686F: docs/specs/acpi_hest_ghes.rst 1687 1688ppc4xx 1689M: David Gibson <david@gibson.dropbear.id.au> 1690L: qemu-ppc@nongnu.org 1691S: Odd Fixes 1692F: hw/ppc/ppc4*.c 1693F: hw/i2c/ppc4xx_i2c.c 1694F: include/hw/ppc/ppc4xx.h 1695F: include/hw/i2c/ppc4xx_i2c.h 1696F: hw/intc/ppc-uic.c 1697F: include/hw/intc/ppc-uic.h 1698 1699Character devices 1700M: Marc-André Lureau <marcandre.lureau@redhat.com> 1701R: Paolo Bonzini <pbonzini@redhat.com> 1702S: Odd Fixes 1703F: hw/char/ 1704 1705Network devices 1706M: Jason Wang <jasowang@redhat.com> 1707S: Odd Fixes 1708F: hw/net/ 1709F: include/hw/net/ 1710F: tests/qtest/virtio-net-test.c 1711F: docs/virtio-net-failover.rst 1712T: git https://github.com/jasowang/qemu.git net 1713 1714Parallel NOR Flash devices 1715M: Philippe Mathieu-Daudé <philmd@redhat.com> 1716T: git https://gitlab.com/philmd/qemu.git pflash-next 1717S: Maintained 1718F: hw/block/pflash_cfi*.c 1719F: include/hw/block/flash.h 1720 1721SCSI 1722M: Paolo Bonzini <pbonzini@redhat.com> 1723R: Fam Zheng <fam@euphon.net> 1724S: Supported 1725F: include/hw/scsi/* 1726F: hw/scsi/* 1727F: tests/qtest/virtio-scsi-test.c 1728T: git https://github.com/bonzini/qemu.git scsi-next 1729 1730SSI 1731M: Alistair Francis <alistair@alistair23.me> 1732S: Maintained 1733F: hw/ssi/* 1734F: hw/block/m25p80.c 1735F: include/hw/ssi/ssi.h 1736X: hw/ssi/xilinx_* 1737F: tests/qtest/m25p80-test.c 1738 1739Xilinx SPI 1740M: Alistair Francis <alistair@alistair23.me> 1741S: Maintained 1742F: hw/ssi/xilinx_* 1743 1744SD (Secure Card) 1745M: Philippe Mathieu-Daudé <f4bug@amsat.org> 1746L: qemu-block@nongnu.org 1747S: Odd Fixes 1748F: include/hw/sd/sd* 1749F: hw/sd/core.c 1750F: hw/sd/sd* 1751F: hw/sd/ssi-sd.c 1752F: tests/qtest/sd* 1753 1754USB 1755M: Gerd Hoffmann <kraxel@redhat.com> 1756S: Maintained 1757F: hw/usb/* 1758F: tests/qtest/usb-*-test.c 1759F: docs/usb2.txt 1760F: docs/usb-storage.txt 1761F: include/hw/usb.h 1762F: include/hw/usb/ 1763F: default-configs/usb.mak 1764 1765USB (serial adapter) 1766M: Gerd Hoffmann <kraxel@redhat.com> 1767M: Samuel Thibault <samuel.thibault@ens-lyon.org> 1768S: Maintained 1769F: hw/usb/dev-serial.c 1770 1771VFIO 1772M: Alex Williamson <alex.williamson@redhat.com> 1773S: Supported 1774F: hw/vfio/* 1775F: include/hw/vfio/ 1776 1777vfio-ccw 1778M: Cornelia Huck <cohuck@redhat.com> 1779M: Eric Farman <farman@linux.ibm.com> 1780S: Supported 1781F: hw/vfio/ccw.c 1782F: hw/s390x/s390-ccw.c 1783F: include/hw/s390x/s390-ccw.h 1784F: include/hw/s390x/vfio-ccw.h 1785T: git https://gitlab.com/cohuck/qemu.git s390-next 1786L: qemu-s390x@nongnu.org 1787 1788vfio-ap 1789M: Christian Borntraeger <borntraeger@de.ibm.com> 1790M: Tony Krowiak <akrowiak@linux.ibm.com> 1791M: Halil Pasic <pasic@linux.ibm.com> 1792M: Pierre Morel <pmorel@linux.ibm.com> 1793S: Supported 1794F: hw/s390x/ap-device.c 1795F: hw/s390x/ap-bridge.c 1796F: include/hw/s390x/ap-device.h 1797F: include/hw/s390x/ap-bridge.h 1798F: hw/vfio/ap.c 1799F: docs/system/s390x/vfio-ap.rst 1800L: qemu-s390x@nongnu.org 1801 1802vhost 1803M: Michael S. Tsirkin <mst@redhat.com> 1804S: Supported 1805F: hw/*/*vhost* 1806F: docs/interop/vhost-user.json 1807F: docs/interop/vhost-user.rst 1808F: contrib/vhost-user-*/ 1809F: backends/vhost-user.c 1810F: include/sysemu/vhost-user-backend.h 1811 1812virtio 1813M: Michael S. Tsirkin <mst@redhat.com> 1814S: Supported 1815F: hw/*/virtio* 1816F: hw/virtio/Makefile.objs 1817F: hw/virtio/trace-events 1818F: net/vhost-user.c 1819F: include/hw/virtio/ 1820 1821virtio-balloon 1822M: Michael S. Tsirkin <mst@redhat.com> 1823M: David Hildenbrand <david@redhat.com> 1824S: Maintained 1825F: hw/virtio/virtio-balloon*.c 1826F: include/hw/virtio/virtio-balloon.h 1827F: softmmu/balloon.c 1828F: include/sysemu/balloon.h 1829 1830virtio-9p 1831M: Greg Kurz <groug@kaod.org> 1832M: Christian Schoenebeck <qemu_oss@crudebyte.com> 1833S: Odd Fixes 1834F: hw/9pfs/ 1835X: hw/9pfs/xen-9p* 1836F: fsdev/ 1837F: docs/interop/virtfs-proxy-helper.rst 1838F: tests/qtest/virtio-9p-test.c 1839T: git https://gitlab.com/gkurz/qemu.git 9p-next 1840 1841virtio-blk 1842M: Stefan Hajnoczi <stefanha@redhat.com> 1843L: qemu-block@nongnu.org 1844S: Supported 1845F: hw/block/virtio-blk.c 1846F: hw/block/dataplane/* 1847F: tests/qtest/virtio-blk-test.c 1848T: git https://github.com/stefanha/qemu.git block 1849 1850virtio-ccw 1851M: Cornelia Huck <cohuck@redhat.com> 1852M: Halil Pasic <pasic@linux.ibm.com> 1853S: Supported 1854F: hw/s390x/virtio-ccw*.[hc] 1855F: hw/s390x/vhost-vsock-ccw.c 1856T: git https://gitlab.com/cohuck/qemu.git s390-next 1857T: git https://github.com/borntraeger/qemu.git s390-next 1858L: qemu-s390x@nongnu.org 1859 1860virtiofs 1861M: Dr. David Alan Gilbert <dgilbert@redhat.com> 1862M: Stefan Hajnoczi <stefanha@redhat.com> 1863S: Supported 1864F: tools/virtiofsd/* 1865F: hw/virtio/vhost-user-fs* 1866F: include/hw/virtio/vhost-user-fs.h 1867F: docs/interop/virtiofsd.rst 1868 1869virtio-input 1870M: Gerd Hoffmann <kraxel@redhat.com> 1871S: Maintained 1872F: hw/input/vhost-user-input.c 1873F: hw/input/virtio-input*.c 1874F: include/hw/virtio/virtio-input.h 1875F: contrib/vhost-user-input/* 1876 1877virtio-iommu 1878M: Eric Auger <eric.auger@redhat.com> 1879S: Maintained 1880F: hw/virtio/virtio-iommu*.c 1881F: include/hw/virtio/virtio-iommu.h 1882 1883virtio-serial 1884M: Laurent Vivier <lvivier@redhat.com> 1885R: Amit Shah <amit@kernel.org> 1886S: Supported 1887F: hw/char/virtio-serial-bus.c 1888F: hw/char/virtio-console.c 1889F: include/hw/virtio/virtio-serial.h 1890F: tests/qtest/virtio-serial-test.c 1891 1892virtio-rng 1893M: Laurent Vivier <lvivier@redhat.com> 1894R: Amit Shah <amit@kernel.org> 1895S: Supported 1896F: hw/virtio/virtio-rng.c 1897F: include/hw/virtio/virtio-rng.h 1898F: include/sysemu/rng*.h 1899F: backends/rng*.c 1900F: tests/qtest/virtio-rng-test.c 1901 1902virtio-crypto 1903M: Gonglei <arei.gonglei@huawei.com> 1904S: Supported 1905F: hw/virtio/virtio-crypto.c 1906F: hw/virtio/virtio-crypto-pci.c 1907F: include/hw/virtio/virtio-crypto.h 1908 1909virtio-mem 1910M: David Hildenbrand <david@redhat.com> 1911S: Supported 1912W: https://virtio-mem.gitlab.io/ 1913F: hw/virtio/virtio-mem.c 1914F: hw/virtio/virtio-mem-pci.h 1915F: hw/virtio/virtio-mem-pci.c 1916F: include/hw/virtio/virtio-mem.h 1917 1918nvme 1919M: Keith Busch <kbusch@kernel.org> 1920M: Klaus Jensen <its@irrelevant.dk> 1921L: qemu-block@nongnu.org 1922S: Supported 1923F: hw/block/nvme* 1924F: include/block/nvme.h 1925F: tests/qtest/nvme-test.c 1926F: docs/specs/nvme.txt 1927T: git git://git.infradead.org/qemu-nvme.git nvme-next 1928 1929megasas 1930M: Hannes Reinecke <hare@suse.com> 1931L: qemu-block@nongnu.org 1932S: Supported 1933F: hw/scsi/megasas.c 1934F: hw/scsi/mfi.h 1935F: tests/qtest/megasas-test.c 1936 1937Network packet abstractions 1938M: Dmitry Fleytman <dmitry.fleytman@gmail.com> 1939S: Maintained 1940F: include/net/eth.h 1941F: net/eth.c 1942F: hw/net/net_rx_pkt* 1943F: hw/net/net_tx_pkt* 1944 1945Vmware 1946M: Dmitry Fleytman <dmitry.fleytman@gmail.com> 1947S: Maintained 1948F: hw/net/vmxnet* 1949F: hw/scsi/vmw_pvscsi* 1950F: tests/qtest/vmxnet3-test.c 1951 1952Rocker 1953M: Jiri Pirko <jiri@resnulli.us> 1954S: Maintained 1955F: hw/net/rocker/ 1956F: qapi/rocker.json 1957F: tests/rocker/ 1958F: docs/specs/rocker.txt 1959 1960NVDIMM 1961M: Xiao Guangrong <xiaoguangrong.eric@gmail.com> 1962S: Maintained 1963F: hw/acpi/nvdimm.c 1964F: hw/mem/nvdimm.c 1965F: include/hw/mem/nvdimm.h 1966F: docs/nvdimm.txt 1967 1968e1000x 1969M: Dmitry Fleytman <dmitry.fleytman@gmail.com> 1970S: Maintained 1971F: hw/net/e1000x* 1972 1973e1000e 1974M: Dmitry Fleytman <dmitry.fleytman@gmail.com> 1975S: Maintained 1976F: hw/net/e1000e* 1977 1978eepro100 1979M: Stefan Weil <sw@weilnetz.de> 1980S: Maintained 1981F: hw/net/eepro100.c 1982 1983tulip 1984M: Sven Schnelle <svens@stackframe.org> 1985S: Maintained 1986F: hw/net/tulip.c 1987F: hw/net/tulip.h 1988 1989Generic Loader 1990M: Alistair Francis <alistair@alistair23.me> 1991S: Maintained 1992F: hw/core/generic-loader.c 1993F: include/hw/core/generic-loader.h 1994F: docs/generic-loader.txt 1995 1996Intel Hexadecimal Object File Loader 1997M: Su Hang <suhang16@mails.ucas.ac.cn> 1998S: Maintained 1999F: tests/qtest/hexloader-test.c 2000F: tests/data/hex-loader/test.hex 2001 2002CHRP NVRAM 2003M: Thomas Huth <thuth@redhat.com> 2004S: Maintained 2005F: hw/nvram/chrp_nvram.c 2006F: include/hw/nvram/chrp_nvram.h 2007F: tests/qtest/prom-env-test.c 2008 2009VM Generation ID 2010S: Orphan 2011F: hw/acpi/vmgenid.c 2012F: include/hw/acpi/vmgenid.h 2013F: docs/specs/vmgenid.txt 2014F: tests/qtest/vmgenid-test.c 2015F: stubs/vmgenid.c 2016 2017LED 2018M: Philippe Mathieu-Daudé <f4bug@amsat.org> 2019S: Maintained 2020F: include/hw/misc/led.h 2021F: hw/misc/led.c 2022 2023Unimplemented device 2024M: Peter Maydell <peter.maydell@linaro.org> 2025R: Philippe Mathieu-Daudé <f4bug@amsat.org> 2026S: Maintained 2027F: include/hw/misc/unimp.h 2028F: hw/misc/unimp.c 2029 2030Empty slot 2031M: Artyom Tarasenko <atar4qemu@gmail.com> 2032R: Philippe Mathieu-Daudé <f4bug@amsat.org> 2033S: Maintained 2034F: include/hw/misc/empty_slot.h 2035F: hw/misc/empty_slot.c 2036 2037Standard VGA 2038M: Gerd Hoffmann <kraxel@redhat.com> 2039S: Maintained 2040F: hw/display/vga* 2041F: hw/display/bochs-display.c 2042F: include/hw/display/vga.h 2043F: include/hw/display/bochs-vbe.h 2044 2045ramfb 2046M: Gerd Hoffmann <kraxel@redhat.com> 2047S: Maintained 2048F: hw/display/ramfb*.c 2049F: include/hw/display/ramfb.h 2050 2051virtio-gpu 2052M: Gerd Hoffmann <kraxel@redhat.com> 2053S: Maintained 2054F: hw/display/virtio-gpu* 2055F: hw/display/virtio-vga.* 2056F: include/hw/virtio/virtio-gpu.h 2057 2058vhost-user-blk 2059M: Raphael Norwitz <raphael.norwitz@nutanix.com> 2060S: Maintained 2061F: contrib/vhost-user-blk/ 2062F: contrib/vhost-user-scsi/ 2063F: hw/block/vhost-user-blk.c 2064F: hw/scsi/vhost-user-scsi.c 2065F: hw/virtio/vhost-user-blk-pci.c 2066F: hw/virtio/vhost-user-scsi-pci.c 2067F: include/hw/virtio/vhost-user-blk.h 2068F: include/hw/virtio/vhost-user-scsi.h 2069 2070vhost-user-gpu 2071M: Marc-André Lureau <marcandre.lureau@redhat.com> 2072M: Gerd Hoffmann <kraxel@redhat.com> 2073S: Maintained 2074F: docs/interop/vhost-user-gpu.rst 2075F: contrib/vhost-user-gpu 2076F: hw/display/vhost-user-* 2077 2078Cirrus VGA 2079M: Gerd Hoffmann <kraxel@redhat.com> 2080S: Odd Fixes 2081W: https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/ 2082F: hw/display/cirrus* 2083 2084EDID Generator 2085M: Gerd Hoffmann <kraxel@redhat.com> 2086S: Maintained 2087F: hw/display/edid* 2088F: include/hw/display/edid.h 2089F: qemu-edid.c 2090 2091PIIX4 South Bridge (i82371AB) 2092M: Hervé Poussineau <hpoussin@reactos.org> 2093M: Philippe Mathieu-Daudé <f4bug@amsat.org> 2094S: Maintained 2095F: hw/isa/piix4.c 2096F: include/hw/southbridge/piix.h 2097 2098Firmware configuration (fw_cfg) 2099M: Philippe Mathieu-Daudé <philmd@redhat.com> 2100R: Laszlo Ersek <lersek@redhat.com> 2101R: Gerd Hoffmann <kraxel@redhat.com> 2102S: Supported 2103F: docs/specs/fw_cfg.txt 2104F: hw/nvram/fw_cfg*.c 2105F: stubs/fw_cfg.c 2106F: include/hw/nvram/fw_cfg.h 2107F: include/standard-headers/linux/qemu_fw_cfg.h 2108F: tests/qtest/libqos/fw_cfg.c 2109F: tests/qtest/fw_cfg-test.c 2110T: git https://github.com/philmd/qemu.git fw_cfg-next 2111 2112XIVE 2113M: Cédric Le Goater <clg@kaod.org> 2114R: David Gibson <david@gibson.dropbear.id.au> 2115R: Greg Kurz <groug@kaod.org> 2116L: qemu-ppc@nongnu.org 2117S: Supported 2118F: hw/*/*xive* 2119F: include/hw/*/*xive* 2120F: docs/*/*xive* 2121 2122Renesas peripherals 2123M: Yoshinori Sato <ysato@users.sourceforge.jp> 2124R: Magnus Damm <magnus.damm@gmail.com> 2125S: Odd Fixes 2126F: hw/char/renesas_sci.c 2127F: hw/char/sh_serial.c 2128F: hw/timer/renesas_*.c 2129F: hw/timer/sh_timer.c 2130F: include/hw/char/renesas_sci.h 2131F: include/hw/sh4/sh.h 2132F: include/hw/timer/renesas_*.h 2133 2134Renesas RX peripherals 2135M: Yoshinori Sato <ysato@users.sourceforge.jp> 2136S: Odd Fixes 2137F: hw/intc/rx_icu.c 2138F: hw/rx/ 2139F: include/hw/intc/rx_icu.h 2140F: include/hw/rx/ 2141 2142CAN bus subsystem and hardware 2143M: Pavel Pisa <pisa@cmp.felk.cvut.cz> 2144M: Vikram Garhwal <fnu.vikram@xilinx.com> 2145S: Maintained 2146W: https://canbus.pages.fel.cvut.cz/ 2147F: net/can/* 2148F: hw/net/can/* 2149F: include/net/can_*.h 2150 2151Subsystems 2152---------- 2153Audio 2154M: Gerd Hoffmann <kraxel@redhat.com> 2155S: Maintained 2156F: audio/ 2157F: hw/audio/ 2158F: include/hw/audio/ 2159F: qapi/audio.json 2160F: tests/qtest/ac97-test.c 2161F: tests/qtest/es1370-test.c 2162F: tests/qtest/intel-hda-test.c 2163 2164Block layer core 2165M: Kevin Wolf <kwolf@redhat.com> 2166M: Max Reitz <mreitz@redhat.com> 2167L: qemu-block@nongnu.org 2168S: Supported 2169F: block* 2170F: block/ 2171F: hw/block/ 2172F: include/block/ 2173F: qemu-img* 2174F: docs/interop/qemu-img.rst 2175F: qemu-io* 2176F: tests/qemu-iotests/ 2177F: util/qemu-progress.c 2178F: qobject/block-qdict.c 2179F: tests/check-block-qdict.c 2180T: git https://repo.or.cz/qemu/kevin.git block 2181 2182Storage daemon 2183M: Kevin Wolf <kwolf@redhat.com> 2184L: qemu-block@nongnu.org 2185S: Supported 2186F: storage-daemon/ 2187F: docs/interop/qemu-storage-daemon-qmp-ref.rst 2188F: docs/tools/qemu-storage-daemon.rst 2189T: git https://repo.or.cz/qemu/kevin.git block 2190 2191Block I/O path 2192M: Stefan Hajnoczi <stefanha@redhat.com> 2193M: Fam Zheng <fam@euphon.net> 2194L: qemu-block@nongnu.org 2195S: Supported 2196F: util/async.c 2197F: util/aio-*.c 2198F: util/aio-*.h 2199F: util/fdmon-*.c 2200F: block/io.c 2201F: migration/block* 2202F: include/block/aio.h 2203F: include/block/aio-wait.h 2204F: scripts/qemugdb/aio.py 2205F: tests/test-fdmon-epoll.c 2206T: git https://github.com/stefanha/qemu.git block 2207 2208Block SCSI subsystem 2209M: Paolo Bonzini <pbonzini@redhat.com> 2210R: Fam Zheng <fam@euphon.net> 2211L: qemu-block@nongnu.org 2212S: Supported 2213F: include/scsi/* 2214F: scsi/* 2215 2216Block Jobs 2217M: John Snow <jsnow@redhat.com> 2218M: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> 2219L: qemu-block@nongnu.org 2220S: Supported 2221F: blockjob.c 2222F: include/block/blockjob.h 2223F: job.c 2224F: job-qmp.c 2225F: include/qemu/job.h 2226F: block/backup.c 2227F: block/commit.c 2228F: block/stream.c 2229F: block/mirror.c 2230F: qapi/job.json 2231F: block/block-copy.c 2232F: include/block/block-copy.c 2233F: block/backup-top.h 2234F: block/backup-top.c 2235F: include/block/aio_task.h 2236F: block/aio_task.c 2237F: util/qemu-co-shared-resource.c 2238F: include/qemu/co-shared-resource.h 2239T: git https://gitlab.com/jsnow/qemu.git jobs 2240T: git https://src.openvz.org/scm/~vsementsov/qemu.git jobs 2241 2242Block QAPI, monitor, command line 2243M: Markus Armbruster <armbru@redhat.com> 2244S: Supported 2245F: blockdev.c 2246F: blockdev-hmp-cmds.c 2247F: block/qapi.c 2248F: qapi/block*.json 2249F: qapi/transaction.json 2250T: git https://repo.or.cz/qemu/armbru.git block-next 2251 2252Dirty Bitmaps 2253M: Eric Blake <eblake@redhat.com> 2254M: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> 2255R: John Snow <jsnow@redhat.com> 2256L: qemu-block@nongnu.org 2257S: Supported 2258F: include/qemu/hbitmap.h 2259F: include/block/dirty-bitmap.h 2260F: block/monitor/bitmap-qmp-cmds.c 2261F: block/dirty-bitmap.c 2262F: block/qcow2-bitmap.c 2263F: migration/block-dirty-bitmap.c 2264F: util/hbitmap.c 2265F: tests/test-hbitmap.c 2266F: docs/interop/bitmaps.rst 2267T: git https://repo.or.cz/qemu/ericb.git bitmaps 2268 2269Character device backends 2270M: Marc-André Lureau <marcandre.lureau@redhat.com> 2271R: Paolo Bonzini <pbonzini@redhat.com> 2272S: Maintained 2273F: chardev/ 2274F: include/chardev/ 2275F: qapi/char.json 2276 2277Character Devices (Braille) 2278M: Samuel Thibault <samuel.thibault@ens-lyon.org> 2279S: Maintained 2280F: chardev/baum.c 2281 2282Command line option argument parsing 2283M: Markus Armbruster <armbru@redhat.com> 2284S: Supported 2285F: include/qemu/option.h 2286F: tests/test-keyval.c 2287F: tests/test-qemu-opts.c 2288F: util/keyval.c 2289F: util/qemu-option.c 2290 2291Coverity model 2292M: Markus Armbruster <armbru@redhat.com> 2293S: Supported 2294F: scripts/coverity-model.c 2295 2296Coverity Scan integration 2297M: Peter Maydell <peter.maydell@linaro.org> 2298S: Maintained 2299F: scripts/coverity-scan/ 2300 2301Device Tree 2302M: Alistair Francis <alistair.francis@wdc.com> 2303R: David Gibson <david@gibson.dropbear.id.au> 2304S: Maintained 2305F: softmmu/device_tree.c 2306F: include/sysemu/device_tree.h 2307 2308Dump 2309S: Supported 2310M: Marc-André Lureau <marcandre.lureau@redhat.com> 2311F: dump/ 2312F: hw/misc/vmcoreinfo.c 2313F: include/hw/misc/vmcoreinfo.h 2314F: include/qemu/win_dump_defs 2315F: include/sysemu/dump-arch.h 2316F: include/sysemu/dump.h 2317F: qapi/dump.json 2318F: scripts/dump-guest-memory.py 2319F: stubs/dump.c 2320 2321Error reporting 2322M: Markus Armbruster <armbru@redhat.com> 2323S: Supported 2324F: include/qapi/error.h 2325F: include/qemu/error-report.h 2326F: qapi/error.json 2327F: util/error.c 2328F: util/qemu-error.c 2329F: scripts/coccinelle/err-bad-newline.cocci 2330F: scripts/coccinelle/error-use-after-free.cocci 2331F: scripts/coccinelle/error_propagate_null.cocci 2332F: scripts/coccinelle/remove_local_err.cocci 2333F: scripts/coccinelle/use-error_fatal.cocci 2334F: scripts/coccinelle/errp-guard.cocci 2335 2336GDB stub 2337M: Alex Bennée <alex.bennee@linaro.org> 2338R: Philippe Mathieu-Daudé <philmd@redhat.com> 2339S: Maintained 2340F: gdbstub* 2341F: gdb-xml/ 2342F: tests/tcg/multiarch/gdbstub/ 2343 2344Memory API 2345M: Paolo Bonzini <pbonzini@redhat.com> 2346S: Supported 2347F: include/exec/ioport.h 2348F: include/exec/memop.h 2349F: include/exec/memory.h 2350F: include/exec/ram_addr.h 2351F: include/exec/ramblock.h 2352F: softmmu/dma-helpers.c 2353F: softmmu/ioport.c 2354F: softmmu/memory.c 2355F: softmmu/physmem.c 2356F: include/exec/memory-internal.h 2357F: scripts/coccinelle/memory-region-housekeeping.cocci 2358 2359SPICE 2360M: Gerd Hoffmann <kraxel@redhat.com> 2361S: Supported 2362F: include/ui/qemu-spice.h 2363F: include/ui/spice-display.h 2364F: ui/spice-*.c 2365F: audio/spiceaudio.c 2366F: hw/display/qxl* 2367F: qapi/ui.json 2368F: docs/spice-port-fqdn.txt 2369 2370Graphics 2371M: Gerd Hoffmann <kraxel@redhat.com> 2372S: Odd Fixes 2373F: ui/ 2374F: include/ui/ 2375F: qapi/ui.json 2376F: util/drm.c 2377 2378Cocoa graphics 2379M: Peter Maydell <peter.maydell@linaro.org> 2380S: Odd Fixes 2381F: ui/cocoa.m 2382 2383Main loop 2384M: Paolo Bonzini <pbonzini@redhat.com> 2385S: Maintained 2386F: include/qemu/main-loop.h 2387F: include/sysemu/runstate.h 2388F: include/sysemu/runstate-action.h 2389F: util/main-loop.c 2390F: util/qemu-timer.c 2391F: softmmu/vl.c 2392F: softmmu/main.c 2393F: softmmu/cpus.c 2394F: softmmu/cpu-throttle.c 2395F: softmmu/cpu-timers.c 2396F: softmmu/icount.c 2397F: softmmu/runstate-action.c 2398F: qapi/run-state.json 2399 2400Read, Copy, Update (RCU) 2401M: Paolo Bonzini <pbonzini@redhat.com> 2402S: Maintained 2403F: include/qemu/rcu*.h 2404F: tests/rcutorture.c 2405F: tests/test-rcu-*.c 2406F: util/rcu.c 2407 2408Human Monitor (HMP) 2409M: Dr. David Alan Gilbert <dgilbert@redhat.com> 2410S: Maintained 2411F: monitor/monitor-internal.h 2412F: monitor/misc.c 2413F: monitor/monitor.c 2414F: monitor/hmp* 2415F: hmp.h 2416F: hmp-commands*.hx 2417F: include/monitor/hmp-target.h 2418F: tests/qtest/test-hmp.c 2419F: include/qemu/qemu-print.h 2420F: util/qemu-print.c 2421 2422Network device backends 2423M: Jason Wang <jasowang@redhat.com> 2424S: Maintained 2425F: net/ 2426F: include/net/ 2427F: qemu-bridge-helper.c 2428T: git https://github.com/jasowang/qemu.git net 2429F: qapi/net.json 2430 2431Netmap network backend 2432M: Luigi Rizzo <rizzo@iet.unipi.it> 2433M: Giuseppe Lettieri <g.lettieri@iet.unipi.it> 2434M: Vincenzo Maffione <v.maffione@gmail.com> 2435W: http://info.iet.unipi.it/~luigi/netmap/ 2436S: Maintained 2437F: net/netmap.c 2438 2439Host Memory Backends 2440M: Eduardo Habkost <ehabkost@redhat.com> 2441M: Igor Mammedov <imammedo@redhat.com> 2442S: Maintained 2443F: backends/hostmem*.c 2444F: include/sysemu/hostmem.h 2445T: git https://gitlab.com/ehabkost/qemu.git machine-next 2446 2447Cryptodev Backends 2448M: Gonglei <arei.gonglei@huawei.com> 2449S: Maintained 2450F: include/sysemu/cryptodev*.h 2451F: backends/cryptodev*.c 2452 2453Python library 2454M: John Snow <jsnow@redhat.com> 2455M: Cleber Rosa <crosa@redhat.com> 2456R: Eduardo Habkost <ehabkost@redhat.com> 2457S: Maintained 2458F: python/ 2459T: git https://gitlab.com/jsnow/qemu.git python 2460 2461Python scripts 2462M: Eduardo Habkost <ehabkost@redhat.com> 2463M: Cleber Rosa <crosa@redhat.com> 2464S: Odd Fixes 2465F: scripts/*.py 2466F: tests/*.py 2467 2468Benchmark util 2469M: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> 2470S: Maintained 2471F: scripts/simplebench/ 2472 2473QAPI 2474M: Markus Armbruster <armbru@redhat.com> 2475M: Michael Roth <michael.roth@amd.com> 2476S: Supported 2477F: qapi/ 2478X: qapi/*.json 2479F: include/qapi/ 2480X: include/qapi/qmp/ 2481F: include/qapi/qmp/dispatch.h 2482F: tests/qapi-schema/ 2483F: tests/test-*-visitor.c 2484F: tests/test-qapi-*.c 2485F: tests/test-qmp-*.c 2486F: tests/test-visitor-serialization.c 2487F: scripts/qapi-gen.py 2488F: scripts/qapi/* 2489F: docs/sphinx/qapidoc.py 2490F: docs/devel/qapi* 2491T: git https://repo.or.cz/qemu/armbru.git qapi-next 2492 2493QAPI Schema 2494M: Eric Blake <eblake@redhat.com> 2495M: Markus Armbruster <armbru@redhat.com> 2496S: Supported 2497F: qapi/*.json 2498T: git https://repo.or.cz/qemu/armbru.git qapi-next 2499 2500QObject 2501M: Markus Armbruster <armbru@redhat.com> 2502S: Supported 2503F: qobject/ 2504F: include/qapi/qmp/ 2505X: include/qapi/qmp/dispatch.h 2506F: scripts/coccinelle/qobject.cocci 2507F: tests/check-qdict.c 2508F: tests/check-qjson.c 2509F: tests/check-qlist.c 2510F: tests/check-qlit.c 2511F: tests/check-qnull.c 2512F: tests/check-qnum.c 2513F: tests/check-qobject.c 2514F: tests/check-qstring.c 2515F: tests/data/qobject/qdict.txt 2516T: git https://repo.or.cz/qemu/armbru.git qapi-next 2517 2518QEMU Guest Agent 2519M: Michael Roth <michael.roth@amd.com> 2520S: Maintained 2521F: qga/ 2522F: docs/interop/qemu-ga.rst 2523F: docs/interop/qemu-ga-ref.rst 2524F: scripts/qemu-guest-agent/ 2525F: tests/test-qga.c 2526T: git https://github.com/mdroth/qemu.git qga 2527 2528QOM 2529M: Paolo Bonzini <pbonzini@redhat.com> 2530R: Daniel P. Berrange <berrange@redhat.com> 2531R: Eduardo Habkost <ehabkost@redhat.com> 2532S: Supported 2533F: docs/qdev-device-use.txt 2534F: hw/core/qdev* 2535F: hw/core/bus.c 2536F: hw/core/sysbus.c 2537F: include/hw/qdev* 2538F: include/monitor/qdev.h 2539F: include/qom/ 2540F: qapi/qom.json 2541F: qapi/qdev.json 2542F: scripts/coccinelle/qom-parent-type.cocci 2543F: softmmu/qdev-monitor.c 2544F: stubs/qdev.c 2545F: qom/ 2546F: tests/check-qom-interface.c 2547F: tests/check-qom-proplist.c 2548F: tests/test-qdev-global-props.c 2549 2550QOM boilerplate conversion script 2551M: Eduardo Habkost <ehabkost@redhat.com> 2552S: Maintained 2553F: scripts/codeconverter/ 2554 2555QMP 2556M: Markus Armbruster <armbru@redhat.com> 2557S: Supported 2558F: monitor/monitor-internal.h 2559F: monitor/qmp* 2560F: monitor/misc.c 2561F: monitor/monitor.c 2562F: qapi/control.json 2563F: qapi/error.json 2564F: qapi/introspect.json 2565F: docs/devel/*qmp-* 2566F: docs/interop/*qmp-* 2567F: scripts/qmp/ 2568F: tests/qtest/qmp-test.c 2569F: tests/qtest/qmp-cmd-test.c 2570T: git https://repo.or.cz/qemu/armbru.git qapi-next 2571 2572qtest 2573M: Thomas Huth <thuth@redhat.com> 2574M: Laurent Vivier <lvivier@redhat.com> 2575R: Paolo Bonzini <pbonzini@redhat.com> 2576S: Maintained 2577F: softmmu/qtest.c 2578F: accel/qtest/ 2579F: tests/qtest/ 2580X: tests/qtest/bios-tables-test* 2581 2582Device Fuzzing 2583M: Alexander Bulekov <alxndr@bu.edu> 2584R: Paolo Bonzini <pbonzini@redhat.com> 2585R: Bandan Das <bsd@redhat.com> 2586R: Stefan Hajnoczi <stefanha@redhat.com> 2587R: Thomas Huth <thuth@redhat.com> 2588S: Maintained 2589F: tests/qtest/fuzz/ 2590F: scripts/oss-fuzz/ 2591F: docs/devel/fuzzing.rst 2592 2593Register API 2594M: Alistair Francis <alistair@alistair23.me> 2595S: Maintained 2596F: hw/core/register.c 2597F: include/hw/register.h 2598F: include/hw/registerfields.h 2599 2600SLIRP 2601M: Samuel Thibault <samuel.thibault@ens-lyon.org> 2602S: Maintained 2603F: slirp/ 2604F: net/slirp.c 2605F: include/net/slirp.h 2606T: git https://people.debian.org/~sthibault/qemu.git slirp 2607 2608Streams 2609M: Edgar E. Iglesias <edgar.iglesias@gmail.com> 2610S: Maintained 2611F: hw/core/stream.c 2612F: include/hw/stream.h 2613 2614Stubs 2615M: Paolo Bonzini <pbonzini@redhat.com> 2616S: Maintained 2617F: stubs/ 2618 2619Tracing 2620M: Stefan Hajnoczi <stefanha@redhat.com> 2621S: Maintained 2622F: trace/ 2623F: trace-events 2624F: docs/qemu-option-trace.rst.inc 2625F: qapi/trace.json 2626F: scripts/tracetool.py 2627F: scripts/tracetool/ 2628F: scripts/qemu-trace-stap* 2629F: docs/interop/qemu-trace-stap.rst 2630F: docs/devel/tracing.txt 2631T: git https://github.com/stefanha/qemu.git tracing 2632 2633TPM 2634M: Stefan Berger <stefanb@linux.ibm.com> 2635S: Maintained 2636F: tpm.c 2637F: stubs/tpm.c 2638F: hw/tpm/* 2639F: include/hw/acpi/tpm.h 2640F: include/sysemu/tpm* 2641F: qapi/tpm.json 2642F: backends/tpm/ 2643F: tests/qtest/*tpm* 2644T: git https://github.com/stefanberger/qemu-tpm.git tpm-next 2645 2646Checkpatch 2647S: Odd Fixes 2648F: scripts/checkpatch.pl 2649 2650Migration 2651M: Juan Quintela <quintela@redhat.com> 2652M: Dr. David Alan Gilbert <dgilbert@redhat.com> 2653S: Maintained 2654F: hw/core/vmstate-if.c 2655F: include/hw/vmstate-if.h 2656F: include/migration/ 2657F: migration/ 2658F: scripts/vmstate-static-checker.py 2659F: tests/vmstate-static-checker-data/ 2660F: tests/qtest/migration-test.c 2661F: docs/devel/migration.rst 2662F: qapi/migration.json 2663 2664D-Bus 2665M: Marc-André Lureau <marcandre.lureau@redhat.com> 2666S: Maintained 2667F: backends/dbus-vmstate.c 2668F: tests/dbus-vmstate* 2669F: util/dbus.c 2670F: include/qemu/dbus.h 2671F: docs/interop/dbus.rst 2672F: docs/interop/dbus-vmstate.rst 2673 2674Seccomp 2675M: Eduardo Otubo <otubo@redhat.com> 2676S: Supported 2677F: softmmu/qemu-seccomp.c 2678F: include/sysemu/seccomp.h 2679 2680Cryptography 2681M: Daniel P. Berrange <berrange@redhat.com> 2682S: Maintained 2683F: crypto/ 2684F: include/crypto/ 2685F: qapi/crypto.json 2686F: tests/test-crypto-* 2687F: tests/benchmark-crypto-* 2688F: tests/crypto-tls-* 2689F: tests/pkix_asn1_tab.c 2690F: qemu.sasl 2691 2692Coroutines 2693M: Stefan Hajnoczi <stefanha@redhat.com> 2694M: Kevin Wolf <kwolf@redhat.com> 2695S: Maintained 2696F: util/*coroutine* 2697F: include/qemu/coroutine* 2698F: tests/test-coroutine.c 2699 2700Buffers 2701M: Daniel P. Berrange <berrange@redhat.com> 2702S: Odd Fixes 2703F: util/buffer.c 2704F: include/qemu/buffer.h 2705 2706I/O Channels 2707M: Daniel P. Berrange <berrange@redhat.com> 2708S: Maintained 2709F: io/ 2710F: include/io/ 2711F: tests/test-io-* 2712 2713User authorization 2714M: Daniel P. Berrange <berrange@redhat.com> 2715S: Maintained 2716F: authz/ 2717F: qapi/authz.json 2718F: include/authz/ 2719F: tests/test-authz-* 2720 2721Sockets 2722M: Daniel P. Berrange <berrange@redhat.com> 2723M: Gerd Hoffmann <kraxel@redhat.com> 2724S: Maintained 2725F: include/qemu/sockets.h 2726F: util/qemu-sockets.c 2727F: qapi/sockets.json 2728 2729File monitor 2730M: Daniel P. Berrange <berrange@redhat.com> 2731S: Odd Fixes 2732F: util/filemonitor*.c 2733F: include/qemu/filemonitor.h 2734F: tests/test-util-filemonitor.c 2735 2736Throttling infrastructure 2737M: Alberto Garcia <berto@igalia.com> 2738S: Supported 2739F: block/throttle-groups.c 2740F: include/block/throttle-groups.h 2741F: include/qemu/throttle*.h 2742F: util/throttle.c 2743F: docs/throttle.txt 2744F: tests/test-throttle.c 2745L: qemu-block@nongnu.org 2746 2747UUID 2748M: Fam Zheng <fam@euphon.net> 2749S: Supported 2750F: util/uuid.c 2751F: include/qemu/uuid.h 2752F: tests/test-uuid.c 2753 2754Yank feature 2755M: Lukas Straub <lukasstraub2@web.de> 2756S: Odd fixes 2757F: util/yank.c 2758F: stubs/yank.c 2759F: include/qemu/yank.h 2760F: qapi/yank.json 2761 2762COLO Framework 2763M: zhanghailiang <zhang.zhanghailiang@huawei.com> 2764S: Maintained 2765F: migration/colo* 2766F: include/migration/colo.h 2767F: include/migration/failover.h 2768F: docs/COLO-FT.txt 2769 2770COLO Proxy 2771M: Zhang Chen <chen.zhang@intel.com> 2772M: Li Zhijian <lizhijian@cn.fujitsu.com> 2773S: Supported 2774F: docs/colo-proxy.txt 2775F: net/colo* 2776F: net/filter-rewriter.c 2777F: net/filter-mirror.c 2778 2779Record/replay 2780M: Pavel Dovgalyuk <pavel.dovgaluk@ispras.ru> 2781R: Paolo Bonzini <pbonzini@redhat.com> 2782W: https://wiki.qemu.org/Features/record-replay 2783S: Supported 2784F: replay/* 2785F: block/blkreplay.c 2786F: net/filter-replay.c 2787F: include/sysemu/replay.h 2788F: docs/replay.txt 2789F: stubs/replay.c 2790F: tests/acceptance/replay_kernel.py 2791F: tests/acceptance/reverse_debugging.py 2792F: qapi/replay.json 2793 2794IOVA Tree 2795M: Peter Xu <peterx@redhat.com> 2796S: Maintained 2797F: include/qemu/iova-tree.h 2798F: util/iova-tree.c 2799 2800elf2dmp 2801M: Viktor Prutyanov <viktor.prutyanov@phystech.edu> 2802S: Maintained 2803F: contrib/elf2dmp/ 2804 2805I2C and SMBus 2806M: Corey Minyard <cminyard@mvista.com> 2807S: Maintained 2808F: hw/i2c/core.c 2809F: hw/i2c/smbus_slave.c 2810F: hw/i2c/smbus_master.c 2811F: hw/i2c/smbus_eeprom.c 2812F: include/hw/i2c/i2c.h 2813F: include/hw/i2c/smbus_master.h 2814F: include/hw/i2c/smbus_slave.h 2815F: include/hw/i2c/smbus_eeprom.h 2816 2817Firmware schema specifications 2818M: Laszlo Ersek <lersek@redhat.com> 2819M: Philippe Mathieu-Daudé <philmd@redhat.com> 2820R: Daniel P. Berrange <berrange@redhat.com> 2821R: Kashyap Chamarthy <kchamart@redhat.com> 2822S: Maintained 2823F: docs/interop/firmware.json 2824 2825EDK2 Firmware 2826M: Laszlo Ersek <lersek@redhat.com> 2827M: Philippe Mathieu-Daudé <philmd@redhat.com> 2828S: Supported 2829F: pc-bios/descriptors/??-edk2-*.json 2830F: pc-bios/edk2-* 2831F: roms/Makefile.edk2 2832F: roms/edk2 2833F: roms/edk2-* 2834F: tests/data/uefi-boot-images/ 2835F: tests/uefi-test-tools/ 2836F: .gitlab-ci.d/edk2.yml 2837F: .gitlab-ci.d/edk2/ 2838 2839VT-d Emulation 2840M: Michael S. Tsirkin <mst@redhat.com> 2841M: Peter Xu <peterx@redhat.com> 2842R: Jason Wang <jasowang@redhat.com> 2843S: Supported 2844F: hw/i386/intel_iommu.c 2845F: hw/i386/intel_iommu_internal.h 2846F: include/hw/i386/intel_iommu.h 2847 2848OpenSBI Firmware 2849M: Bin Meng <bmeng.cn@gmail.com> 2850S: Supported 2851F: pc-bios/opensbi-* 2852F: .gitlab-ci.d/opensbi.yml 2853F: .gitlab-ci.d/opensbi/ 2854 2855Usermode Emulation 2856------------------ 2857Overall usermode emulation 2858M: Riku Voipio <riku.voipio@iki.fi> 2859S: Maintained 2860F: thunk.c 2861F: accel/tcg/user-exec*.c 2862 2863BSD user 2864S: Orphan 2865F: bsd-user/ 2866F: default-configs/*-bsd-user.mak 2867 2868Linux user 2869M: Laurent Vivier <laurent@vivier.eu> 2870S: Maintained 2871F: linux-user/ 2872F: default-configs/*-linux-user.mak 2873F: scripts/qemu-binfmt-conf.sh 2874F: scripts/update-syscalltbl.sh 2875F: scripts/update-mips-syscall-args.sh 2876F: scripts/gensyscalls.sh 2877 2878Tiny Code Generator (TCG) 2879------------------------- 2880Common TCG code 2881M: Richard Henderson <richard.henderson@linaro.org> 2882S: Maintained 2883F: tcg/ 2884F: include/tcg/ 2885 2886TCG Plugins 2887M: Alex Bennée <alex.bennee@linaro.org> 2888S: Maintained 2889F: docs/devel/tcg-plugins.rst 2890F: plugins/ 2891F: tests/plugin/ 2892F: contrib/plugins/ 2893 2894AArch64 TCG target 2895M: Richard Henderson <richard.henderson@linaro.org> 2896S: Maintained 2897L: qemu-arm@nongnu.org 2898F: tcg/aarch64/ 2899F: disas/arm-a64.cc 2900F: disas/libvixl/ 2901 2902ARM TCG target 2903M: Andrzej Zaborowski <balrogg@gmail.com> 2904S: Maintained 2905L: qemu-arm@nongnu.org 2906F: tcg/arm/ 2907F: disas/arm.c 2908 2909i386 TCG target 2910M: Richard Henderson <richard.henderson@linaro.org> 2911S: Maintained 2912F: tcg/i386/ 2913F: disas/i386.c 2914 2915MIPS TCG target 2916M: Philippe Mathieu-Daudé <f4bug@amsat.org> 2917R: Aurelien Jarno <aurelien@aurel32.net> 2918R: Huacai Chen <chenhuacai@kernel.org> 2919R: Jiaxun Yang <jiaxun.yang@flygoat.com> 2920R: Aleksandar Rikalo <aleksandar.rikalo@syrmia.com> 2921S: Odd Fixes 2922F: tcg/mips/ 2923 2924PPC TCG target 2925M: Richard Henderson <richard.henderson@linaro.org> 2926S: Odd Fixes 2927F: tcg/ppc/ 2928F: disas/ppc.c 2929 2930RISC-V TCG target 2931M: Palmer Dabbelt <palmer@dabbelt.com> 2932M: Alistair Francis <Alistair.Francis@wdc.com> 2933L: qemu-riscv@nongnu.org 2934S: Maintained 2935F: tcg/riscv/ 2936F: disas/riscv.c 2937 2938S390 TCG target 2939M: Richard Henderson <richard.henderson@linaro.org> 2940S: Maintained 2941F: tcg/s390/ 2942F: disas/s390.c 2943L: qemu-s390x@nongnu.org 2944 2945SPARC TCG target 2946S: Odd Fixes 2947F: tcg/sparc/ 2948F: disas/sparc.c 2949 2950TCI TCG target 2951M: Stefan Weil <sw@weilnetz.de> 2952S: Maintained 2953F: tcg/tci/ 2954F: tcg/tci.c 2955F: disas/tci.c 2956 2957Block drivers 2958------------- 2959VMDK 2960M: Fam Zheng <fam@euphon.net> 2961L: qemu-block@nongnu.org 2962S: Supported 2963F: block/vmdk.c 2964 2965RBD 2966M: Jason Dillaman <dillaman@redhat.com> 2967L: qemu-block@nongnu.org 2968S: Supported 2969F: block/rbd.c 2970 2971Sheepdog 2972M: Liu Yuan <namei.unix@gmail.com> 2973L: qemu-block@nongnu.org 2974S: Odd Fixes 2975F: block/sheepdog.c 2976 2977VHDX 2978M: Jeff Cody <codyprime@gmail.com> 2979L: qemu-block@nongnu.org 2980S: Supported 2981F: block/vhdx* 2982 2983VDI 2984M: Stefan Weil <sw@weilnetz.de> 2985L: qemu-block@nongnu.org 2986S: Maintained 2987F: block/vdi.c 2988 2989iSCSI 2990M: Ronnie Sahlberg <ronniesahlberg@gmail.com> 2991M: Paolo Bonzini <pbonzini@redhat.com> 2992M: Peter Lieven <pl@kamp.de> 2993L: qemu-block@nongnu.org 2994S: Odd Fixes 2995F: block/iscsi.c 2996F: block/iscsi-opts.c 2997 2998Network Block Device (NBD) 2999M: Eric Blake <eblake@redhat.com> 3000L: qemu-block@nongnu.org 3001S: Maintained 3002F: block/nbd* 3003F: nbd/ 3004F: include/block/nbd* 3005F: qemu-nbd.* 3006F: blockdev-nbd.c 3007F: docs/interop/nbd.txt 3008F: docs/interop/qemu-nbd.rst 3009T: git https://repo.or.cz/qemu/ericb.git nbd 3010 3011NFS 3012M: Peter Lieven <pl@kamp.de> 3013L: qemu-block@nongnu.org 3014S: Maintained 3015F: block/nfs.c 3016 3017SSH 3018M: Richard W.M. Jones <rjones@redhat.com> 3019L: qemu-block@nongnu.org 3020S: Supported 3021F: block/ssh.c 3022 3023CURL 3024L: qemu-block@nongnu.org 3025S: Odd Fixes 3026F: block/curl.c 3027 3028GLUSTER 3029L: qemu-block@nongnu.org 3030L: integration@gluster.org 3031S: Odd Fixes 3032F: block/gluster.c 3033 3034Null Block Driver 3035M: Fam Zheng <fam@euphon.net> 3036L: qemu-block@nongnu.org 3037S: Supported 3038F: block/null.c 3039 3040NVMe Block Driver 3041M: Stefan Hajnoczi <stefanha@redhat.com> 3042R: Fam Zheng <fam@euphon.net> 3043L: qemu-block@nongnu.org 3044S: Supported 3045F: block/nvme* 3046F: include/block/nvme.h 3047T: git https://github.com/stefanha/qemu.git block 3048 3049Bootdevice 3050M: Gonglei <arei.gonglei@huawei.com> 3051S: Maintained 3052F: softmmu/bootdevice.c 3053 3054Quorum 3055M: Alberto Garcia <berto@igalia.com> 3056S: Supported 3057F: block/quorum.c 3058L: qemu-block@nongnu.org 3059 3060blklogwrites 3061M: Ari Sundholm <ari@tuxera.com> 3062L: qemu-block@nongnu.org 3063S: Supported 3064F: block/blklogwrites.c 3065 3066blkverify 3067M: Stefan Hajnoczi <stefanha@redhat.com> 3068L: qemu-block@nongnu.org 3069S: Supported 3070F: block/blkverify.c 3071 3072bochs 3073M: Stefan Hajnoczi <stefanha@redhat.com> 3074L: qemu-block@nongnu.org 3075S: Supported 3076F: block/bochs.c 3077 3078cloop 3079M: Stefan Hajnoczi <stefanha@redhat.com> 3080L: qemu-block@nongnu.org 3081S: Supported 3082F: block/cloop.c 3083 3084dmg 3085M: Stefan Hajnoczi <stefanha@redhat.com> 3086L: qemu-block@nongnu.org 3087S: Supported 3088F: block/dmg.c 3089 3090parallels 3091M: Stefan Hajnoczi <stefanha@redhat.com> 3092M: Denis V. Lunev <den@openvz.org> 3093L: qemu-block@nongnu.org 3094S: Supported 3095F: block/parallels.c 3096F: docs/interop/parallels.txt 3097 3098qed 3099M: Stefan Hajnoczi <stefanha@redhat.com> 3100L: qemu-block@nongnu.org 3101S: Supported 3102F: block/qed.c 3103 3104raw 3105M: Kevin Wolf <kwolf@redhat.com> 3106L: qemu-block@nongnu.org 3107S: Supported 3108F: block/linux-aio.c 3109F: include/block/raw-aio.h 3110F: block/raw-format.c 3111F: block/file-posix.c 3112F: block/file-win32.c 3113F: block/win32-aio.c 3114 3115Linux io_uring 3116M: Aarushi Mehta <mehta.aaru20@gmail.com> 3117M: Julia Suvorova <jusual@redhat.com> 3118M: Stefan Hajnoczi <stefanha@redhat.com> 3119L: qemu-block@nongnu.org 3120S: Maintained 3121F: block/io_uring.c 3122F: stubs/io_uring.c 3123 3124qcow2 3125M: Kevin Wolf <kwolf@redhat.com> 3126M: Max Reitz <mreitz@redhat.com> 3127L: qemu-block@nongnu.org 3128S: Supported 3129F: block/qcow2* 3130F: docs/interop/qcow2.txt 3131 3132qcow 3133M: Kevin Wolf <kwolf@redhat.com> 3134L: qemu-block@nongnu.org 3135S: Supported 3136F: block/qcow.c 3137 3138blkdebug 3139M: Kevin Wolf <kwolf@redhat.com> 3140M: Max Reitz <mreitz@redhat.com> 3141L: qemu-block@nongnu.org 3142S: Supported 3143F: block/blkdebug.c 3144 3145vpc 3146M: Kevin Wolf <kwolf@redhat.com> 3147L: qemu-block@nongnu.org 3148S: Supported 3149F: block/vpc.c 3150 3151vvfat 3152M: Kevin Wolf <kwolf@redhat.com> 3153L: qemu-block@nongnu.org 3154S: Odd Fixes 3155F: block/vvfat.c 3156 3157Image format fuzzer 3158M: Stefan Hajnoczi <stefanha@redhat.com> 3159L: qemu-block@nongnu.org 3160S: Supported 3161F: tests/image-fuzzer/ 3162 3163Vhost-user block device backend server 3164M: Coiby Xu <Coiby.Xu@gmail.com> 3165S: Maintained 3166F: block/export/vhost-user-blk-server.c 3167F: block/export/vhost-user-blk-server.h 3168F: include/qemu/vhost-user-server.h 3169F: tests/qtest/libqos/vhost-user-blk.c 3170F: util/vhost-user-server.c 3171 3172FUSE block device exports 3173M: Max Reitz <mreitz@redhat.com> 3174L: qemu-block@nongnu.org 3175S: Supported 3176F: block/export/fuse.c 3177 3178Replication 3179M: Wen Congyang <wencongyang2@huawei.com> 3180M: Xie Changlong <xiechanglong.d@gmail.com> 3181S: Supported 3182F: replication* 3183F: block/replication.c 3184F: tests/test-replication.c 3185F: docs/block-replication.txt 3186 3187PVRDMA 3188M: Yuval Shaia <yuval.shaia.ml@gmail.com> 3189M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com> 3190S: Maintained 3191F: hw/rdma/* 3192F: hw/rdma/vmw/* 3193F: docs/pvrdma.txt 3194F: contrib/rdmacm-mux/* 3195F: qapi/rdma.json 3196 3197Semihosting 3198M: Alex Bennée <alex.bennee@linaro.org> 3199S: Maintained 3200F: hw/semihosting/ 3201F: include/hw/semihosting/ 3202 3203Multi-process QEMU 3204M: Elena Ufimtseva <elena.ufimtseva@oracle.com> 3205M: Jagannathan Raman <jag.raman@oracle.com> 3206M: John G Johnson <john.g.johnson@oracle.com> 3207S: Maintained 3208F: docs/devel/multi-process.rst 3209F: docs/system/multi-process.rst 3210F: hw/pci-host/remote.c 3211F: include/hw/pci-host/remote.h 3212F: hw/remote/machine.c 3213F: include/hw/remote/machine.h 3214F: hw/remote/mpqemu-link.c 3215F: include/hw/remote/mpqemu-link.h 3216F: hw/remote/message.c 3217F: hw/remote/remote-obj.c 3218F: include/hw/remote/memory.h 3219F: hw/remote/memory.c 3220F: hw/remote/proxy.c 3221F: include/hw/remote/proxy.h 3222F: hw/remote/proxy-memory-listener.c 3223F: include/hw/remote/proxy-memory-listener.h 3224F: hw/remote/iohub.c 3225F: include/hw/remote/iohub.h 3226 3227Build and test automation 3228------------------------- 3229Build and test automation 3230M: Alex Bennée <alex.bennee@linaro.org> 3231M: Fam Zheng <fam@euphon.net> 3232R: Philippe Mathieu-Daudé <philmd@redhat.com> 3233S: Maintained 3234F: .github/lockdown.yml 3235F: .travis.yml 3236F: scripts/travis/ 3237F: .shippable.yml 3238F: tests/docker/ 3239F: tests/vm/ 3240F: scripts/archive-source.sh 3241W: https://travis-ci.org/qemu/qemu 3242W: https://app.shippable.com/github/qemu/qemu 3243W: http://patchew.org/QEMU/ 3244 3245FreeBSD Hosted Continuous Integration 3246M: Ed Maste <emaste@freebsd.org> 3247M: Li-Wen Hsu <lwhsu@freebsd.org> 3248S: Maintained 3249F: .cirrus.yml 3250W: https://cirrus-ci.com/github/qemu/qemu 3251 3252Windows Hosted Continuous Integration 3253M: Yonggang Luo <luoyonggang@gmail.com> 3254S: Maintained 3255F: .cirrus.yml 3256W: https://cirrus-ci.com/github/qemu/qemu 3257 3258GitLab Continuous Integration 3259M: Thomas Huth <thuth@redhat.com> 3260M: Philippe Mathieu-Daudé <philmd@redhat.com> 3261M: Alex Bennée <alex.bennee@linaro.org> 3262R: Wainer dos Santos Moschetta <wainersm@redhat.com> 3263S: Maintained 3264F: .gitlab-ci.yml 3265F: .gitlab-ci.d/crossbuilds.yml 3266F: .gitlab-ci.d/*py 3267F: scripts/ci/gitlab-pipeline-status 3268 3269Guest Test Compilation Support 3270M: Alex Bennée <alex.bennee@linaro.org> 3271R: Philippe Mathieu-Daudé <f4bug@amsat.org> 3272S: Maintained 3273F: tests/tcg/Makefile 3274F: tests/tcg/Makefile.include 3275 3276Acceptance (Integration) Testing with the Avocado framework 3277W: https://trello.com/b/6Qi1pxVn/avocado-qemu 3278R: Cleber Rosa <crosa@redhat.com> 3279R: Philippe Mathieu-Daudé <philmd@redhat.com> 3280R: Wainer dos Santos Moschetta <wainersm@redhat.com> 3281S: Odd Fixes 3282F: tests/acceptance/ 3283 3284Documentation 3285------------- 3286Build system architecture 3287M: Daniel P. Berrange <berrange@redhat.com> 3288S: Odd Fixes 3289F: docs/devel/build-system.txt 3290 3291GIT Data Mining Config 3292M: Alex Bennée <alex.bennee@linaro.org> 3293S: Odd Fixes 3294F: gitdm.config 3295F: contrib/gitdm/* 3296 3297Incompatible changes 3298R: libvir-list@redhat.com 3299F: docs/system/deprecated.rst 3300 3301Build System 3302------------ 3303GIT submodules 3304M: Daniel P. Berrange <berrange@redhat.com> 3305S: Odd Fixes 3306F: scripts/git-submodule.sh 3307 3308UI translations 3309S: Orphan 3310F: po/*.po 3311 3312Sphinx documentation configuration and build machinery 3313M: Peter Maydell <peter.maydell@linaro.org> 3314S: Maintained 3315F: docs/conf.py 3316F: docs/*/conf.py 3317F: docs/sphinx/ 3318 3319Miscellaneous 3320------------- 3321Performance Tools and Tests 3322M: Ahmed Karaman <ahmedkhaledkaraman@gmail.com> 3323S: Maintained 3324F: scripts/performance/ 3325