blob: bcaf36e525dfd6e29fd2c5869c1f6c57cbe6f0bc [file] [log] [blame]
bellardb6f97c12008-05-09 09:39:00 +00001QEMU Maintainers
2================
3
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05004The 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.
bellard3cd9acb2008-06-04 14:57:43 +00008
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05009In general, if you have a question about inclusion of a patch, you should
10consult qemu-devel and not any specific individual privately.
bellardb6f97c12008-05-09 09:39:00 +000011
Anthony Liguorifd5d5c52010-09-09 14:51:31 -050012Descriptions of section entries:
bellardb6f97c12008-05-09 09:39:00 +000013
Anthony Liguorifd5d5c52010-09-09 14:51:31 -050014 M: Mail patches to: FullName <address@domain>
Cornelia Huck9436e082018-10-26 12:57:11 +020015 Maintainers are looking after a certain area and must be CCed on
16 patches. They are considered the main contact point.
Paul E. McKenneyfdf6fab2014-06-02 09:06:37 -070017 R: Designated reviewer: FullName <address@domain>
18 These reviewers should be CCed on patches.
Cornelia Huck9436e082018-10-26 12:57:11 +020019 Reviewers are familiar with the subject matter and provide feedback
20 even though they are not maintainers.
Anthony Liguorifd5d5c52010-09-09 14:51:31 -050021 L: Mailing list that is relevant to this area
Cornelia Huck9436e082018-10-26 12:57:11 +020022 These lists should be CCed on patches.
Anthony Liguorifd5d5c52010-09-09 14:51:31 -050023 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.
Alex Bennée668725c2022-11-17 17:25:23 +000026 S: Status, one of the following (keep in sync with docs/devel/maintainers.rst):
Anthony Liguorifd5d5c52010-09-09 14:51:31 -050027 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
Peter Maydellc91bbff2011-11-09 19:45:38 +000030 much other than throw the odd patch in. See below.
Anthony Liguorifd5d5c52010-09-09 14:51:31 -050031 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.
bellardb6f97c12008-05-09 09:39:00 +000056
bellardb6f97c12008-05-09 09:39:00 +000057
Anthony Liguorifd5d5c52010-09-09 14:51:31 -050058General Project Administration
59------------------------------
Peter Maydellff0d4872014-10-15 21:30:52 +010060M: Peter Maydell <peter.maydell@linaro.org>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -050061
Stephen Warrenc9a19d52016-02-08 20:04:25 -070062All patches CC here
63L: qemu-devel@nongnu.org
64F: *
65F: */
66
Alex Bennée3be8c032023-04-03 14:49:13 +010067Project 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>
73W: https://www.qemu.org/docs/master/devel/index.html
74S: Odd Fixes
75F: docs/devel/style.rst
76F: docs/devel/code-of-conduct.rst
77F: docs/devel/conflict-resolution.rst
78F: docs/devel/submitting-a-patch.rst
79F: docs/devel/submitting-a-pull-request.rst
80
Michael S. Tsirkin62622c12014-04-17 16:45:46 +030081Responsible Disclosure, Reporting Security Issues
Markus Armbruster84995ea2019-06-06 19:24:08 +020082-------------------------------------------------
Stefan Hajnoczi70b7fba2017-11-21 12:04:35 +000083W: https://wiki.qemu.org/SecurityProcess
Michael S. Tsirkin62622c12014-04-17 16:45:46 +030084M: Michael S. Tsirkin <mst@redhat.com>
Michael S. Tsirkin62622c12014-04-17 16:45:46 +030085L: secalert@redhat.com
86
Laurent Vivier936c2232016-10-08 12:00:07 +020087Trivial patches
88---------------
89Trivial patches
90M: Michael Tokarev <mjt@tls.msk.ru>
91M: Laurent Vivier <laurent@vivier.eu>
92S: Maintained
93L: qemu-trivial@nongnu.org
94K: ^Subject:.*(?i)trivial
Thomas Huth4db546d2022-12-12 18:48:41 +010095F: docs/devel/trivial-patches.rst
Laurent Vivier936c2232016-10-08 12:00:07 +020096T: git git://git.corpit.ru/qemu.git trivial-patches
Stefan Hajnoczie18a8b32018-11-08 11:15:26 +000097T: git https://github.com/vivier/qemu.git trivial-patches
Laurent Vivier936c2232016-10-08 12:00:07 +020098
Cornelia Huckdaf14ce2018-01-15 15:43:11 +010099Architecture support
100--------------------
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200101S390 general architecture support
Cornelia Huckcdb509a2020-05-25 17:58:55 +0200102M: Thomas Huth <thuth@redhat.com>
Cornelia Huckdaf14ce2018-01-15 15:43:11 +0100103S: Supported
Alex Bennée812b31d2021-07-07 14:17:43 +0100104F: configs/devices/s390x-softmmu/default.mak
Cornelia Huckdaf14ce2018-01-15 15:43:11 +0100105F: gdb-xml/s390*.xml
106F: hw/char/sclp*.[hc]
107F: hw/char/terminal3270.c
108F: hw/intc/s390_flic.c
109F: hw/intc/s390_flic_kvm.c
110F: hw/s390x/
Tony Krowiak2fe29422018-10-10 13:03:07 -0400111F: hw/vfio/ap.c
Cornelia Huckdaf14ce2018-01-15 15:43:11 +0100112F: hw/vfio/ccw.c
113F: hw/watchdog/wdt_diag288.c
114F: include/hw/s390x/
115F: include/hw/watchdog/wdt_diag288.h
116F: pc-bios/s390-ccw/
117F: pc-bios/s390-ccw.img
118F: target/s390x/
Cornelia Huckf58f0842020-03-18 11:39:40 +0100119F: docs/system/target-s390x.rst
120F: docs/system/s390x/
Cornelia Hucka1c993c2019-05-29 11:05:12 +0200121F: tests/migration/s390x/
Cornelia Huckdaf14ce2018-01-15 15:43:11 +0100122K: ^Subject:.*(?i)s390x?
Cornelia Huckdaf14ce2018-01-15 15:43:11 +0100123L: qemu-s390x@nongnu.org
124
Philippe Mathieu-Daudée955acd2021-10-04 10:31:57 +0200125MIPS general architecture support
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +0200126M: Philippe Mathieu-Daudé <philmd@linaro.org>
Philippe Mathieu-Daudée955acd2021-10-04 10:31:57 +0200127R: Jiaxun Yang <jiaxun.yang@flygoat.com>
128S: Odd Fixes
129K: ^Subject:.*(?i)mips
Thomas Huth6b1ec8a2022-12-12 18:12:52 +0100130F: docs/system/target-mips.rst
131F: configs/targets/mips*
Philippe Mathieu-Daudée955acd2021-10-04 10:31:57 +0200132
Thomas Huthd2299962023-09-29 15:45:51 +0200133X86 general architecture support
134M: Paolo Bonzini <pbonzini@redhat.com>
135S: Maintained
136F: configs/devices/i386-softmmu/default.mak
137F: configs/targets/i386-softmmu.mak
138F: configs/targets/x86_64-softmmu.mak
139F: docs/system/target-i386*
140F: target/i386/*.[ch]
141F: target/i386/Kconfig
142F: target/i386/meson.build
Anthony Harivel84369d72024-05-22 17:34:51 +0200143F: tools/i386/
Thomas Huthd2299962023-09-29 15:45:51 +0200144
Markus Armbruster84995ea2019-06-06 19:24:08 +0200145Guest CPU cores (TCG)
146---------------------
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200147Overall TCG CPUs
Richard Henderson336f7442020-11-12 20:35:43 -0800148M: Richard Henderson <richard.henderson@linaro.org>
Paolo Bonzini2185fd62018-10-19 14:25:42 +0200149R: Paolo Bonzini <pbonzini@redhat.com>
Paolo Bonzini2b1641d2015-11-13 18:49:54 +0100150S: Maintained
Philippe Mathieu-Daudé8d7f2e72023-10-04 11:06:28 +0200151F: system/cpus.c
152F: system/watchpoint.c
Philippe Mathieu-Daudéfe0007f2023-09-14 20:57:12 +0200153F: cpu-common.c
154F: cpu-target.c
Philippe Mathieu-Daudé8c7907a2023-09-14 20:57:13 +0200155F: page-vary-target.c
Richard Henderson44b99a62021-03-22 12:24:26 +0100156F: page-vary-common.c
Philippe Mathieu-Daudéc6a88dd2017-06-29 12:03:04 -0300157F: accel/tcg/
Thomas Huth9681ad32018-11-22 13:57:18 +0100158F: accel/stubs/tcg-stub.c
Richard Henderson084cfca2020-12-14 08:02:33 -0600159F: util/cacheinfo.c
160F: util/cacheflush.c
Philippe Mathieu-Daudé55fd1892018-11-10 22:13:12 +0100161F: scripts/decodetree.py
Richard Henderson3fdbf5d2019-02-23 13:00:10 -0800162F: docs/devel/decodetree.rst
Thomas Huth4db546d2022-12-12 18:48:41 +0100163F: docs/devel/tcg*
Paolo Bonzini2b1641d2015-11-13 18:49:54 +0100164F: include/exec/cpu*.h
165F: include/exec/exec-all.h
Alex Bennée548c9602023-03-02 18:57:43 -0800166F: include/exec/tb-flush.h
Alex Bennée4692a862023-03-02 18:58:00 -0800167F: include/exec/target_long.h
Paolo Bonzini486bbe52014-10-22 00:18:01 +0200168F: include/exec/helper*.h
Richard Hendersone4eff8e2023-03-31 19:07:00 -0700169F: include/exec/helper*.h.inc
Richard Hendersond53106c2023-03-31 10:37:04 -0700170F: include/exec/helper-info.c.inc
Philippe Mathieu-Daudé74781c02023-12-06 20:27:32 +0100171F: include/exec/page-protection.h
Thomas Huth460423d2016-09-09 23:15:04 +0200172F: include/sysemu/cpus.h
Markus Armbruster14a48c12019-05-23 16:35:05 +0200173F: include/sysemu/tcg.h
Claudio Fontana78271682021-02-04 17:39:23 +0100174F: include/hw/core/tcg-cpu-ops.h
Richard Henderson6bc12fd2023-05-17 21:12:08 -0700175F: host/include/*/host/cpuinfo.h
176F: util/cpuinfo-*.c
Richard Henderson427fbf32023-03-27 18:02:33 -0700177F: include/tcg/
Thomas Huth80a59bc2023-10-13 08:57:39 +0200178F: tests/decode/
Paolo Bonzini486bbe52014-10-22 00:18:01 +0200179
Peter Maydell1badb582016-02-19 16:25:01 +0000180FPU emulation
181M: Aurelien Jarno <aurelien@aurel32.net>
182M: Peter Maydell <peter.maydell@linaro.org>
Alex Bennée0636e4d2018-12-05 12:48:12 +0000183M: Alex Bennée <alex.bennee@linaro.org>
184S: Maintained
Peter Maydell1badb582016-02-19 16:25:01 +0000185F: fpu/
186F: include/fpu/
Alex Bennée0636e4d2018-12-05 12:48:12 +0000187F: tests/fp/
Peter Maydell1badb582016-02-19 16:25:01 +0000188
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200189Alpha TCG CPUs
Richard Henderson336f7442020-11-12 20:35:43 -0800190M: Richard Henderson <richard.henderson@linaro.org>
Richard Henderson8d6df262011-05-20 12:23:18 -0700191S: Maintained
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200192F: target/alpha/
Paolo Bonzinic0bd0b52014-10-22 00:31:28 +0200193F: tests/tcg/alpha/
Paolo Bonzinic17652e2015-09-22 11:36:16 +0200194F: disas/alpha.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500195
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200196ARM TCG CPUs
Peter Maydell1ce9ce62011-09-20 16:18:46 +0100197M: Peter Maydell <peter.maydell@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000198L: qemu-arm@nongnu.org
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500199S: Maintained
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200200F: target/arm/
Fabiano Rosasf0984d42023-02-17 17:11:29 -0300201F: target/arm/tcg/
Alex Bennéec3487222018-04-05 15:45:32 +0100202F: tests/tcg/arm/
Alex Bennée29e04362018-05-09 10:31:30 +0100203F: tests/tcg/aarch64/
Philippe Mathieu-Daudéc32c3d62021-05-26 19:04:21 +0200204F: tests/qtest/arm-cpu-features.c
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100205F: hw/arm/
206F: hw/cpu/a*mpcore.c
Thomas Huthf7e242d2016-09-23 14:14:18 +0200207F: include/hw/cpu/a*mpcore.h
Peter Maydellc11a8e82020-03-09 21:58:15 +0000208F: docs/system/target-arm.rst
Philippe Mathieu-Daudé6e84a912020-11-20 16:45:40 +0100209F: docs/system/arm/cpu-features.rst
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500210
Eric Auger49154ea2018-11-22 19:01:43 +0100211ARM SMMU
212M: Eric Auger <eric.auger@redhat.com>
213L: qemu-arm@nongnu.org
214S: Maintained
215F: hw/arm/smmu*
216F: include/hw/arm/smmu*
Willian Rampazzobbbd9b62021-11-05 12:53:54 -0300217F: tests/avocado/smmu.py
Eric Auger49154ea2018-11-22 19:01:43 +0100218
Michael Rolnikc8c0d262020-01-24 01:51:07 +0100219AVR TCG CPUs
220M: Michael Rolnik <mrolnik@gmail.com>
Michael Rolnikc8c0d262020-01-24 01:51:07 +0100221S: Maintained
Thomas Huth0abd3862020-08-12 17:53:04 +0200222F: docs/system/target-avr.rst
Michael Rolnik12b35402020-01-26 18:52:23 +0100223F: gdb-xml/avr-cpu.xml
Michael Rolnikc8c0d262020-01-24 01:51:07 +0100224F: target/avr/
Thomas Huth4c0a2df2024-08-30 15:38:11 +0200225F: tests/functional/test_avr_mega2560.py
Michael Rolnikc8c0d262020-01-24 01:51:07 +0100226
Taylor Simpson5f508bc2021-02-07 23:45:51 -0600227Hexagon TCG CPUs
Taylor Simpson7d196e22023-05-24 09:11:26 -0700228M: Brian Cain <bcain@quicinc.com>
Taylor Simpson5f508bc2021-02-07 23:45:51 -0600229S: Supported
230F: target/hexagon/
Alessandro Di Federico647357d2022-09-23 19:38:21 +0200231X: target/hexagon/idef-parser/
232X: target/hexagon/gen_idef_parser_funcs.py
Taylor Simpson5f508bc2021-02-07 23:45:51 -0600233F: linux-user/hexagon/
234F: tests/tcg/hexagon/
235F: disas/hexagon.c
Alex Bennée812b31d2021-07-07 14:17:43 +0100236F: configs/targets/hexagon-linux-user/default.mak
Alessandro Di Federicoafbdf0a2021-05-12 11:20:26 +0100237F: docker/dockerfiles/debian-hexagon-cross.docker
Matheus Tavares Bernardinoab930e82023-05-04 12:37:33 -0300238F: gdb-xml/hexagon*.xml
Brian Cain2442cc62024-07-31 13:39:10 -0700239T: git https://github.com/quic/qemu.git hex-next
Taylor Simpson5f508bc2021-02-07 23:45:51 -0600240
Alessandro Di Federico647357d2022-09-23 19:38:21 +0200241Hexagon idef-parser
242M: Alessandro Di Federico <ale@rev.ng>
243M: Anton Johansson <anjo@rev.ng>
244S: Supported
245F: target/hexagon/idef-parser/
246F: target/hexagon/gen_idef_parser_funcs.py
247
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200248HPPA (PA-RISC) TCG CPUs
Richard Henderson336f7442020-11-12 20:35:43 -0800249M: Richard Henderson <richard.henderson@linaro.org>
Richard Henderson61766fe2016-12-15 11:26:14 -0800250S: Maintained
251F: target/hppa/
252F: disas/hppa.c
Thomas Huth71c1d342023-10-18 08:24:01 +0200253F: tests/tcg/hppa/
Richard Henderson61766fe2016-12-15 11:26:14 -0800254
Song Gao64baad62022-06-06 20:42:51 +0800255LoongArch TCG CPUs
256M: Song Gao <gaosong@loongson.cn>
Song Gao64baad62022-06-06 20:42:51 +0800257S: Maintained
258F: target/loongarch/
Xiaojuan Yangc4293332022-06-06 20:43:32 +0800259F: tests/tcg/loongarch64/
Thomas Huth4c0a2df2024-08-30 15:38:11 +0200260F: tests/functional/test_loongarch64_virt.py
Song Gao64baad62022-06-06 20:42:51 +0800261
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200262M68K TCG CPUs
Laurent Vivier595a9262016-05-06 12:30:29 +0200263M: Laurent Vivier <laurent@vivier.eu>
264S: Maintained
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200265F: target/m68k/
Thomas Huthe9a56112016-11-02 09:39:33 +0100266F: disas/m68k.c
Thomas Huth71c1d342023-10-18 08:24:01 +0200267F: tests/tcg/m68k/
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500268
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200269MicroBlaze TCG CPUs
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500270M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
271S: Maintained
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200272F: target/microblaze/
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100273F: hw/microblaze/
Paolo Bonzinic17652e2015-09-22 11:36:16 +0200274F: disas/microblaze.c
Richard Hendersonb58a4e62021-10-26 11:22:12 +0100275F: tests/docker/dockerfiles/debian-microblaze-cross.d/build-toolchain.sh
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500276
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200277MIPS TCG CPUs
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +0200278M: Philippe Mathieu-Daudé <philmd@linaro.org>
Aleksandar Markovic099d5102020-03-13 02:00:50 +0100279R: Aurelien Jarno <aurelien@aurel32.net>
Aleksandar Markovic15d983d2020-07-01 20:25:58 +0200280R: Jiaxun Yang <jiaxun.yang@flygoat.com>
Aleksandar Rikalo45c577f2024-02-09 07:21:47 +0100281R: Aleksandar Rikalo <arikalo@gmail.com>
Philippe Mathieu-Daudécf960312020-10-09 17:05:13 +0200282S: Odd Fixes
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200283F: target/mips/
Philippe Mathieu-Daudé30dd5ff2022-10-30 23:38:49 +0100284F: disas/*mips.c
Kashyap Chamarthy1bf84a12020-02-28 15:36:01 +0000285F: docs/system/cpu-models-mips.rst.inc
Paolo Bonzinic0bd0b52014-10-22 00:31:28 +0200286F: tests/tcg/mips/
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500287
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200288OpenRISC TCG CPUs
Stafford Horne1d7cf182017-03-15 22:37:41 +0900289M: Stafford Horne <shorne@gmail.com>
290S: Odd Fixes
Thomas Huth4db546d2022-12-12 18:48:41 +0100291F: docs/system/openrisc/cpu-features.rst
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200292F: target/openrisc/
Jia Liu945dad62013-07-02 20:55:17 +0800293F: hw/openrisc/
Thomas Huthe257b8c2023-10-17 17:42:42 +0200294F: include/hw/openrisc/
Paolo Bonzinic0bd0b52014-10-22 00:31:28 +0200295F: tests/tcg/openrisc/
Jia Liu945dad62013-07-02 20:55:17 +0800296
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200297PowerPC TCG CPUs
Daniel Henrique Barboza0cbc34d2023-09-15 08:05:07 -0300298M: Nicholas Piggin <npiggin@gmail.com>
David Gibson14fe3222021-11-05 14:28:51 +1100299M: Daniel Henrique Barboza <danielhb413@gmail.com>
Andreas Färbera6c98682012-01-13 13:33:57 +0000300L: qemu-ppc@nongnu.org
Daniel Henrique Barboza2e93a902022-11-17 12:32:18 -0300301S: Odd Fixes
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200302F: target/ppc/
David Gibson7ddb1202021-09-27 14:17:45 +1000303F: hw/ppc/ppc.c
304F: hw/ppc/ppc_booke.c
305F: include/hw/ppc/ppc.h
Cédric Le Goater9c46b512023-10-02 17:51:42 +0200306F: hw/ppc/meson.build
307F: hw/ppc/trace*
308F: configs/devices/ppc*
309F: docs/system/ppc/embedded.rst
310F: docs/system/target-ppc.rst
Thomas Huth71c1d342023-10-18 08:24:01 +0200311F: tests/tcg/ppc*/*
Thomas Hutheeba3d72024-08-30 15:38:07 +0200312F: tests/functional/test_ppc_74xx.py
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500313
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200314RISC-V TCG CPUs
Palmer Dabbeltc1677bc2019-10-29 09:39:03 -0700315M: Palmer Dabbelt <palmer@dabbelt.com>
Alistair Francisab2c9122021-04-06 18:48:25 -0400316M: Alistair Francis <alistair.francis@wdc.com>
Bin Meng8372c3a2024-05-05 15:23:12 +0800317M: Bin Meng <bmeng.cn@gmail.com>
Weiwei Lic0ce1f22023-10-30 16:16:07 +0800318R: Weiwei Li <liwei1518@gmail.com>
Alistair Francisa3ae8d42023-02-09 10:33:08 +1000319R: Daniel Henrique Barboza <dbarboza@ventanamicro.com>
320R: Liu Zhiwei <zhiwei_liu@linux.alibaba.com>
Palmer Dabbelta094b352018-10-30 09:19:05 -0700321L: qemu-riscv@nongnu.org
Palmer Dabbelt7b91ae72018-11-21 12:57:36 -0800322S: Supported
Thomas Huth5d0ce902023-09-29 14:37:27 +0200323F: configs/targets/riscv*
324F: docs/system/target-riscv.rst
Michael Clark4dc62b12018-03-03 01:31:09 +1300325F: target/riscv/
326F: hw/riscv/
Thomas Huth5d0ce902023-09-29 14:37:27 +0200327F: hw/intc/riscv*
Michael Clark4dc62b12018-03-03 01:31:09 +1300328F: include/hw/riscv/
Alistair Francisf936eac2018-12-19 19:16:31 +0000329F: linux-user/host/riscv32/
Alistair Francis511f3132018-12-19 19:16:41 +0000330F: linux-user/host/riscv64/
Thomas Huth71c1d342023-10-18 08:24:01 +0200331F: tests/tcg/riscv64/
Michael Clark4dc62b12018-03-03 01:31:09 +1300332
Christoph Müllner179d9e22023-01-31 21:20:13 +0100333RISC-V XThead* extensions
334M: Christoph Muellner <christoph.muellner@vrull.eu>
335M: LIU Zhiwei <zhiwei_liu@linux.alibaba.com>
336L: qemu-riscv@nongnu.org
337S: Supported
338F: target/riscv/insn_trans/trans_xthead.c.inc
339F: target/riscv/xthead*.decode
Christoph Müllnerfd53ee22024-04-29 09:36:56 +0200340F: target/riscv/th_*
Thomas Huth5d0ce902023-09-29 14:37:27 +0200341F: disas/riscv-xthead*
Christoph Müllner179d9e22023-01-31 21:20:13 +0100342
Philipp Tomsich34888f02022-02-02 01:52:49 +0100343RISC-V XVentanaCondOps extension
344M: Philipp Tomsich <philipp.tomsich@vrull.eu>
345L: qemu-riscv@nongnu.org
Philipp Tomsich4f249312023-03-07 19:07:08 +0100346S: Maintained
Philipp Tomsich34888f02022-02-02 01:52:49 +0100347F: target/riscv/XVentanaCondOps.decode
348F: target/riscv/insn_trans/trans_xventanacondops.c.inc
Thomas Huth5d0ce902023-09-29 14:37:27 +0200349F: disas/riscv-xventana*
Philipp Tomsich34888f02022-02-02 01:52:49 +0100350
Yoshinori Satoa4f34ec2019-01-21 05:20:54 -0800351RENESAS RX CPUs
Philippe Mathieu-Daudéb2744da2021-03-12 16:55:12 +0100352R: Yoshinori Sato <ysato@users.sourceforge.jp>
353S: Orphan
Yoshinori Satoa4f34ec2019-01-21 05:20:54 -0800354F: target/rx/
355
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200356S390 TCG CPUs
Richard Henderson336f7442020-11-12 20:35:43 -0800357M: Richard Henderson <richard.henderson@linaro.org>
Cornelia Huckced01bb2018-01-15 16:18:20 +0100358M: David Hildenbrand <david@redhat.com>
Christian Borntraeger9d711f12022-10-19 14:56:40 +0200359R: Ilya Leoshkevich <iii@linux.ibm.com>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500360S: Maintained
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200361F: target/s390x/
Cho, Yu-Chenc9274b62021-07-07 18:53:17 +0800362F: target/s390x/tcg
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100363F: hw/s390x/
Pavel Zbitskiy276ba122018-08-20 22:50:58 -0400364F: tests/tcg/s390x/
Cornelia Huck146bd282017-10-05 17:05:23 +0200365L: qemu-s390x@nongnu.org
bellardb6f97c12008-05-09 09:39:00 +0000366
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200367SH4 TCG CPUs
Philippe Mathieu-Daudé2d53d0c2021-03-12 16:55:13 +0100368R: Yoshinori Sato <ysato@users.sourceforge.jp>
369S: Orphan
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200370F: target/sh4/
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100371F: hw/sh4/
Paolo Bonzinic17652e2015-09-22 11:36:16 +0200372F: disas/sh4.c
Thomas Huth8a90f902016-09-09 23:18:21 +0200373F: include/hw/sh4/
Thomas Huth71c1d342023-10-18 08:24:01 +0200374F: tests/tcg/sh4/
bellardb6f97c12008-05-09 09:39:00 +0000375
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200376SPARC TCG CPUs
Mark Cave-Aylandf2416d32015-03-02 22:23:27 +0000377M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Mark Cave-Ayland2c742bf2016-06-20 21:55:16 +0100378M: Artyom Tarasenko <atar4qemu@gmail.com>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500379S: Maintained
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200380F: target/sparc/
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100381F: hw/sparc/
382F: hw/sparc64/
Philippe Mathieu-Daudé84dbe972018-11-25 21:49:37 +0100383F: include/hw/sparc/sparc64.h
Paolo Bonzinic17652e2015-09-22 11:36:16 +0200384F: disas/sparc.c
Thomas Huth71c1d342023-10-18 08:24:01 +0200385F: tests/tcg/sparc64/
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500386
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200387X86 TCG CPUs
Paolo Bonzinid46d72f2014-10-21 15:16:06 +0200388M: Paolo Bonzini <pbonzini@redhat.com>
Richard Henderson336f7442020-11-12 20:35:43 -0800389M: Richard Henderson <richard.henderson@linaro.org>
Eduardo Habkost24c4cd12021-11-30 15:47:22 -0500390M: Eduardo Habkost <eduardo@habkost.net>
Eduardo Habkostb203a4b2015-04-08 08:36:24 -0300391S: Maintained
Claudio Fontanaf5cc5a52021-03-22 14:27:40 +0100392F: target/i386/tcg/
Alex Bennée41324312018-04-05 15:35:11 +0100393F: tests/tcg/i386/
Alex Bennée3a082ec2018-04-17 11:14:37 +0100394F: tests/tcg/x86_64/
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100395F: hw/i386/
Thomas Huth4db546d2022-12-12 18:48:41 +0100396F: docs/system/i386/cpu.rst
Daniel P. Berrangé38dec0e2021-06-07 14:58:40 +0100397F: docs/system/cpu-models-x86*
Eduardo Habkostf953c102020-12-14 16:20:32 -0500398T: git https://gitlab.com/ehabkost/qemu.git x86-next
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500399
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200400Xtensa TCG CPUs
Max Filippov16e7caa2011-09-06 03:55:56 +0400401M: Max Filippov <jcmvbkbc@gmail.com>
Max Filippovb8105d22018-02-27 21:15:34 -0800402W: http://wiki.osll.ru/doku.php?id=etc:users:jcmvbkbc:qemu-target-xtensa
Max Filippov16e7caa2011-09-06 03:55:56 +0400403S: Maintained
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200404F: target/xtensa/
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100405F: hw/xtensa/
Paolo Bonzinic0bd0b52014-10-22 00:31:28 +0200406F: tests/tcg/xtensa/
Max Filippov51139fb2021-10-01 22:01:52 -0700407F: tests/tcg/xtensaeb/
Max Filippov5a6539e2017-10-31 16:17:43 -0700408F: disas/xtensa.c
Max Filippov895e4892018-11-22 15:06:21 -0800409F: include/hw/xtensa/xtensa-isa.h
Alex Bennée812b31d2021-07-07 14:17:43 +0100410F: configs/devices/xtensa*/default.mak
Max Filippov16e7caa2011-09-06 03:55:56 +0400411
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200412TriCore TCG CPUs
Bastian Koppelmann48e06fe2014-09-01 12:59:46 +0100413M: Bastian Koppelmann <kbastian@mail.uni-paderborn.de>
414S: Maintained
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200415F: target/tricore/
Bastian Koppelmann48e06fe2014-09-01 12:59:46 +0100416F: hw/tricore/
Thomas Huthd46d14e2016-09-09 23:17:09 +0200417F: include/hw/tricore/
Bastian Koppelmannbe78e792021-05-12 11:20:34 +0100418F: tests/tcg/tricore/
Bastian Koppelmann48e06fe2014-09-01 12:59:46 +0100419
Alex Bennéedd28beb2018-04-05 15:03:22 +0100420Multiarch Linux User Tests
421M: Alex Bennée <alex.bennee@linaro.org>
Stefan Hajnoczi00a25292019-03-01 16:35:18 +0000422S: Maintained
Alex Bennéedd28beb2018-04-05 15:03:22 +0100423F: tests/tcg/multiarch/
424
Markus Armbruster84995ea2019-06-06 19:24:08 +0200425Guest CPU Cores (KVM)
426---------------------
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200427Overall KVM CPUs
Michael S. Tsirkinc6d559d2013-06-04 16:06:37 +0300428M: Paolo Bonzini <pbonzini@redhat.com>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500429L: kvm@vger.kernel.org
430S: Supported
Philippe Mathieu-Daudéa6bb42f2020-06-18 14:33:33 +0200431F: */*/kvm*
Philippe Mathieu-Daudé1962cb22017-06-29 12:03:05 -0300432F: accel/kvm/
Thomas Huth9681ad32018-11-22 13:57:18 +0100433F: accel/stubs/kvm-stub.c
434F: include/hw/kvm/
Thomas Hutha95e9a42016-02-25 13:33:25 +0100435F: include/sysemu/kvm*.h
Thomas Huth9681ad32018-11-22 13:57:18 +0100436F: scripts/kvm/kvm_flightrecorder
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500437
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200438ARM KVM CPUs
Peter Maydelled4659d2013-03-05 00:34:43 +0000439M: Peter Maydell <peter.maydell@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000440L: qemu-arm@nongnu.org
Peter Maydelled4659d2013-03-05 00:34:43 +0000441S: Maintained
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200442F: target/arm/kvm.c
Peter Maydelled4659d2013-03-05 00:34:43 +0000443
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200444MIPS KVM CPUs
Huacai Chendab1e1e2020-12-05 17:22:01 +0800445M: Huacai Chen <chenhuacai@kernel.org>
Aleksandar Markovic134f7f72020-02-24 12:50:58 +0100446S: Odd Fixes
Philippe Mathieu-Daudé85d8da32021-04-13 10:31:44 +0200447F: target/mips/kvm*
448F: target/mips/sysemu/
James Hogana31896c2014-06-17 23:10:37 +0100449
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200450PPC KVM CPUs
Daniel Henrique Barboza0cbc34d2023-09-15 08:05:07 -0300451M: Nicholas Piggin <npiggin@gmail.com>
452R: Daniel Henrique Barboza <danielhb413@gmail.com>
Daniel Henrique Barboza2e93a902022-11-17 12:32:18 -0300453S: Odd Fixes
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200454F: target/ppc/kvm.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500455
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200456S390 KVM CPUs
Christian Borntraeger7c8e2642018-12-04 14:38:02 +0100457M: Halil Pasic <pasic@linux.ibm.com>
Christian Borntraeger2c092952021-11-26 11:24:49 +0100458M: Christian Borntraeger <borntraeger@linux.ibm.com>
Cornelia Huck0922e8c2019-02-13 11:31:59 +0100459S: Supported
Cho, Yu-Chen67043602021-07-07 18:53:23 +0800460F: target/s390x/kvm/
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200461F: target/s390x/machine.c
David Hildenbrand74b4c742017-09-28 22:36:54 +0200462F: target/s390x/sigp.c
Cornelia Huckc5bfb202015-11-04 15:59:55 +0100463F: gdb-xml/s390*.xml
Stefan Hajnoczie18a8b32018-11-08 11:15:26 +0000464T: git https://github.com/borntraeger/qemu.git s390-next
Cornelia Huck146bd282017-10-05 17:05:23 +0200465L: qemu-s390x@nongnu.org
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500466
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200467X86 KVM CPUs
Paolo Bonzinid46d72f2014-10-21 15:16:06 +0200468M: Paolo Bonzini <pbonzini@redhat.com>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500469M: Marcelo Tosatti <mtosatti@redhat.com>
470L: kvm@vger.kernel.org
471S: Supported
Cornelia Huck96a46de2022-02-09 09:08:56 +0100472F: docs/system/i386/amd-memory-encryption.rst
Philippe Mathieu-Daudéa8211862021-10-07 19:56:09 +0200473F: docs/system/i386/sgx.rst
Claudio Fontanaa9dc68d2020-12-12 16:55:08 +0100474F: target/i386/kvm/
Philippe Mathieu-Daudé8c9e7f82021-10-07 18:17:16 +0200475F: target/i386/sev*
Thomas Huth9681ad32018-11-22 13:57:18 +0100476F: scripts/kvm/vmxcap
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500477
David Woodhouse438bec42023-03-07 09:59:59 +0000478Xen emulation on X86 KVM CPUs
479M: David Woodhouse <dwmw2@infradead.org>
480M: Paul Durrant <paul@xen.org>
481S: Supported
482F: include/sysemu/kvm_xen.h
483F: target/i386/kvm/xen*
484F: hw/i386/kvm/xen*
David Woodhousecc9d10b2023-10-19 15:30:23 +0100485F: tests/avocado/kvm_xen_guest.py
David Woodhouse438bec42023-03-07 09:59:59 +0000486
Philippe Mathieu-Daudé79ac3912020-06-18 14:33:34 +0200487Guest CPU Cores (other accelerators)
488------------------------------------
489Overall
Richard Henderson336f7442020-11-12 20:35:43 -0800490M: Richard Henderson <richard.henderson@linaro.org>
Philippe Mathieu-Daudé79ac3912020-06-18 14:33:34 +0200491R: Paolo Bonzini <pbonzini@redhat.com>
492S: Maintained
Claudio Fontana940e43a2021-02-04 17:39:24 +0100493F: include/qemu/accel.h
Markus Armbruster75e55192023-01-19 10:15:45 +0100494F: include/sysemu/accel-*.h
Claudio Fontanafb6916d2021-02-04 17:39:26 +0100495F: include/hw/core/accel-cpu.h
Claudio Fontanab86f59c2021-02-04 17:39:25 +0100496F: accel/accel-*.c
Philippe Mathieu-Daudé79ac3912020-06-18 14:33:34 +0200497F: accel/Makefile.objs
498F: accel/stubs/Makefile.objs
499
Alexander Grafa1477da2021-09-16 17:53:58 +0200500Apple Silicon HVF CPUs
501M: Alexander Graf <agraf@csgraf.de>
502S: Maintained
503F: target/arm/hvf/
504
Roman Bolshakov674fc212020-03-16 20:18:27 +0300505X86 HVF CPUs
Roman Bolshakovde6b5282020-06-25 01:58:51 +0300506M: Cameron Esfahani <dirty@apple.com>
Philippe Mathieu-Daudé3b4a0252023-06-21 13:32:23 +0200507M: Roman Bolshakov <rbolshakov@ddn.com>
Roman Bolshakovde6b5282020-06-25 01:58:51 +0300508W: https://wiki.qemu.org/Features/HVF
Roman Bolshakov674fc212020-03-16 20:18:27 +0300509S: Maintained
Roman Bolshakov674fc212020-03-16 20:18:27 +0300510F: target/i386/hvf/
Alexander Grafd57bc3c2021-06-03 14:09:30 +0100511
512HVF
513M: Cameron Esfahani <dirty@apple.com>
Philippe Mathieu-Daudé3b4a0252023-06-21 13:32:23 +0200514M: Roman Bolshakov <rbolshakov@ddn.com>
Alexander Grafd57bc3c2021-06-03 14:09:30 +0100515W: https://wiki.qemu.org/Features/HVF
516S: Maintained
517F: accel/hvf/
Roman Bolshakov674fc212020-03-16 20:18:27 +0300518F: include/sysemu/hvf.h
Alexander Grafd57bc3c2021-06-03 14:09:30 +0100519F: include/sysemu/hvf_int.h
Roman Bolshakov674fc212020-03-16 20:18:27 +0300520
Sunil Muthuswamyc220cde2020-02-18 20:38:32 +0000521WHPX CPUs
522M: Sunil Muthuswamy <sunilmut@microsoft.com>
523S: Supported
Claudio Fontana1fc33bb2020-12-12 16:55:09 +0100524F: target/i386/whpx/
Sunil Muthuswamyc220cde2020-02-18 20:38:32 +0000525F: include/sysemu/whpx.h
526
Markus Armbruster84995ea2019-06-06 19:24:08 +0200527Guest CPU Cores (Xen)
528---------------------
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200529X86 Xen CPUs
Stefano Stabellini3623c572016-03-29 11:02:49 +0100530M: Stefano Stabellini <sstabellini@kernel.org>
Anthony PERARDa0dbef92024-04-29 16:49:38 +0100531M: Anthony PERARD <anthony@xenproject.org>
Paul Durrant784e9722019-09-13 13:24:18 +0100532M: Paul Durrant <paul@xen.org>
Stefano Stabellinid01a6ff2024-07-10 13:28:52 -0700533M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
Anthony PERARD6d062202016-11-25 15:30:40 +0000534L: xen-devel@lists.xenproject.org
Stefano Stabellini8a6b0cd2011-07-29 16:05:13 +0100535S: Supported
Stefano Stabellini8a6b0cd2011-07-29 16:05:13 +0100536F: */xen*
Philippe Mathieu-Daudéda278d52020-05-08 12:02:22 +0200537F: accel/xen/*
Greg Kurzb8278912019-05-29 12:24:44 +0200538F: hw/9pfs/xen-9p*
Paolo Bonzinic92451c2015-09-22 11:36:48 +0200539F: hw/char/xen_console.c
540F: hw/display/xenfb.c
541F: hw/net/xen_nic.c
Anthony PERARD758af9c2020-04-06 17:50:43 +0100542F: hw/usb/xen-usb.c
Paul Durrant1a72d9a2019-01-08 14:48:48 +0000543F: hw/block/xen*
Paul Durrant4ea7d1a2019-01-08 14:48:53 +0000544F: hw/block/dataplane/xen*
Paolo Bonzinic92451c2015-09-22 11:36:48 +0200545F: hw/xen/
546F: hw/xenpv/
Stefano Stabellini9027ac52015-12-21 14:58:28 +0000547F: hw/i386/xen/
Philippe Mathieu-Daudé14018972019-12-09 10:50:01 +0100548F: hw/pci-host/xen_igd_pt.c
Paul Durrantfcab2b42019-01-08 14:48:55 +0000549F: include/hw/block/dataplane/xen*
Paolo Bonzinic92451c2015-09-22 11:36:48 +0200550F: include/hw/xen/
Philippe Mathieu-Daudéda278d52020-05-08 12:02:22 +0200551F: include/sysemu/xen.h
Stefano Stabellini9027ac52015-12-21 14:58:28 +0000552F: include/sysemu/xen-mapcache.h
Philippe Mathieu-Daudé71f364b2020-09-08 17:55:28 +0200553F: stubs/xen-hw-stub.c
Edgar E. Iglesiasc2144422024-08-10 19:13:40 +0200554F: docs/system/arm/xenpvh.rst
Edgar E. Iglesias0b57c812024-08-09 19:32:27 +0200555F: docs/system/i386/xenpvh.rst
Stefano Stabellini8a6b0cd2011-07-29 16:05:13 +0100556
Reinoud Zandijk39becfc2021-04-02 22:25:35 +0200557Guest CPU Cores (NVMM)
558----------------------
559NetBSD Virtual Machine Monitor (NVMM) CPU support
Reinoud Zandijk39becfc2021-04-02 22:25:35 +0200560M: Reinoud Zandijk <reinoud@netbsd.org>
561S: Maintained
562F: include/sysemu/nvmm.h
563F: target/i386/nvmm/
564
Markus Armbruster84995ea2019-06-06 19:24:08 +0200565Hosts
566-----
Stefan Weil1bdd6872012-01-27 18:53:49 +0100567LINUX
Philippe Mathieu-Daudéf5fecb42018-12-18 12:56:11 +0100568M: Michael S. Tsirkin <mst@redhat.com>
569M: Cornelia Huck <cohuck@redhat.com>
570M: Paolo Bonzini <pbonzini@redhat.com>
Stefan Weil1bdd6872012-01-27 18:53:49 +0100571S: Maintained
Stefan Weil1bdd6872012-01-27 18:53:49 +0100572F: linux-headers/
Cornelia Hucke05ea752023-09-29 16:30:12 +0200573F: include/standard-headers/
Philippe Mathieu-Daudéf5fecb42018-12-18 12:56:11 +0100574F: scripts/update-linux-headers.sh
Stefan Weil1bdd6872012-01-27 18:53:49 +0100575
576POSIX
Philippe Mathieu-Daudéf3f02042018-12-18 12:56:12 +0100577M: Paolo Bonzini <pbonzini@redhat.com>
Stefan Weil1bdd6872012-01-27 18:53:49 +0100578S: Maintained
Philippe Mathieu-Daudéf3f02042018-12-18 12:56:12 +0100579F: os-posix.c
580F: include/sysemu/os-posix.h
581F: util/*posix*.c
582F: include/qemu/*posix*.h
Stefan Weil1bdd6872012-01-27 18:53:49 +0100583
Kamil Rytarowski3c2bdbc2017-05-13 04:21:43 +0200584NETBSD
Reinoud Zandijk39becfc2021-04-02 22:25:35 +0200585M: Reinoud Zandijk <reinoud@netbsd.org>
586M: Ryo ONODERA <ryoon@netbsd.org>
Kamil Rytarowski3c2bdbc2017-05-13 04:21:43 +0200587S: Maintained
Thomas Huth1b612702017-07-27 12:09:34 +0200588K: ^Subject:.*(?i)NetBSD
Kamil Rytarowski3c2bdbc2017-05-13 04:21:43 +0200589
Brad Smith0a773d52018-02-16 11:46:20 -0500590OPENBSD
Brad Smith0a773d52018-02-16 11:46:20 -0500591M: Brad Smith <brad@comstyle.com>
592S: Maintained
593K: ^Subject:.*(?i)OpenBSD
594
Stefan Weil1bdd6872012-01-27 18:53:49 +0100595W32, W64
Stefan Weil1bdd6872012-01-27 18:53:49 +0100596M: Stefan Weil <sw@weilnetz.de>
597S: Maintained
598F: *win32*
Thomas Huth03972662016-09-29 09:43:31 +0200599F: */*win32*
600F: include/*/*win32*
601X: qga/*win32*
Stefan Weil885bdc92015-09-25 22:25:32 +0200602F: qemu.nsi
Alex Bennée48fad832022-10-27 19:36:21 +0100603F: scripts/nsis.py
Stefan Weil1bdd6872012-01-27 18:53:49 +0100604
Philippe Mathieu-Daudéc82b7ef2022-03-14 18:28:35 +0100605Darwin (macOS, iOS)
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +0200606M: Philippe Mathieu-Daudé <philmd@linaro.org>
Philippe Mathieu-Daudéc82b7ef2022-03-14 18:28:35 +0100607S: Odd Fixes
608F: .gitlab-ci.d/cirrus/macos-*
609F: */*.m
Alex Bennée48fad832022-10-27 19:36:21 +0100610F: scripts/entitlement.sh
Philippe Mathieu-Daudéc82b7ef2022-03-14 18:28:35 +0100611
Philippe Mathieu-Daudéb250d042018-03-08 23:39:42 +0100612Alpha Machines
Markus Armbruster84995ea2019-06-06 19:24:08 +0200613--------------
Richard Henderson336f7442020-11-12 20:35:43 -0800614M: Richard Henderson <richard.henderson@linaro.org>
Philippe Mathieu-Daudéb250d042018-03-08 23:39:42 +0100615S: Maintained
616F: hw/alpha/
Philippe Mathieu-Daudé7bea0dd2018-03-08 23:39:43 +0100617F: hw/isa/smc37c669-superio.c
Richard Henderson8d8a8ab2019-05-01 11:43:06 -0700618F: tests/tcg/alpha/system/
Philippe Mathieu-Daudéb250d042018-03-08 23:39:42 +0100619
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500620ARM Machines
621------------
liguang84291fe2013-12-17 19:42:38 +0000622Allwinner-a10
Beniamino Galvani85b4d5d2015-09-24 01:29:37 +0100623M: Beniamino Galvani <b.galvani@gmail.com>
Peter Maydella00d7f22018-11-19 15:29:08 +0000624M: Peter Maydell <peter.maydell@linaro.org>
Strahinja Jankovic632dfea2022-12-26 23:03:00 +0100625R: Strahinja Jankovic <strahinja.p.jankovic@gmail.com>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000626L: qemu-arm@nongnu.org
Peter Maydella00d7f22018-11-19 15:29:08 +0000627S: Odd Fixes
Beniamino Galvani85b4d5d2015-09-24 01:29:37 +0100628F: hw/*/allwinner*
Philippe Mathieu-Daudé9d19a8f2024-02-26 14:07:23 +0000629F: hw/ide/ahci-allwinner.c
Beniamino Galvani85b4d5d2015-09-24 01:29:37 +0100630F: include/hw/*/allwinner*
liguang84291fe2013-12-17 19:42:38 +0000631F: hw/arm/cubieboard.c
Peter Maydelld4a7c362021-07-13 15:22:24 +0100632F: docs/system/arm/cubieboard.rst
Strahinja Jankovic632dfea2022-12-26 23:03:00 +0100633F: hw/misc/axp209.c
liguang84291fe2013-12-17 19:42:38 +0000634
Niek Linnenbank740dafc2020-03-11 23:18:37 +0100635Allwinner-h3
636M: Niek Linnenbank <nieklinnenbank@gmail.com>
637L: qemu-arm@nongnu.org
638S: Maintained
639F: hw/*/allwinner-h3*
640F: include/hw/*/allwinner-h3*
Niek Linnenbankb0c96662020-03-11 23:18:38 +0100641F: hw/arm/orangepi.c
Philippe Mathieu-Daudéc67d7322020-11-20 16:45:43 +0100642F: docs/system/arm/orangepi.rst
Niek Linnenbank740dafc2020-03-11 23:18:37 +0100643
Peter Maydelle5a6a6e2017-07-17 13:36:09 +0100644ARM PrimeCell and CMSDK devices
Paolo Bonzini06271002015-09-22 11:45:00 +0200645M: Peter Maydell <peter.maydell@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000646L: qemu-arm@nongnu.org
Paolo Bonzini06271002015-09-22 11:45:00 +0200647S: Maintained
648F: hw/char/pl011.c
Philippe Mathieu-Daudéc6427ff2017-09-08 14:31:32 -0300649F: include/hw/char/pl011.h
Paolo Bonzini06271002015-09-22 11:45:00 +0200650F: hw/display/pl110*
651F: hw/dma/pl080.c
Peter Maydellaa74e352018-08-20 11:24:33 +0100652F: include/hw/dma/pl080.h
Paolo Bonzini06271002015-09-22 11:45:00 +0200653F: hw/dma/pl330.c
654F: hw/gpio/pl061.c
655F: hw/input/pl050.c
Thomas Huth4940da22023-10-20 08:09:33 +0200656F: include/hw/input/pl050.h
Paolo Bonzini06271002015-09-22 11:45:00 +0200657F: hw/intc/pl190.c
658F: hw/sd/pl181.c
Peter Maydell1d528662018-08-24 13:17:44 +0100659F: hw/ssi/pl022.c
660F: include/hw/ssi/pl022.h
Philippe Mathieu-Daudé877c1812019-10-04 01:03:52 +0200661F: hw/rtc/pl031.c
662F: include/hw/rtc/pl031.h
Paolo Bonzini06271002015-09-22 11:45:00 +0200663F: include/hw/arm/primecell.h
Peter Maydelle5a6a6e2017-07-17 13:36:09 +0100664F: hw/timer/cmsdk-apb-timer.c
665F: include/hw/timer/cmsdk-apb-timer.h
Peter Maydell30858da2021-01-28 11:41:23 +0000666F: tests/qtest/cmsdk-apb-timer-test.c
Peter Maydell4f4c6202018-08-24 13:17:41 +0100667F: hw/timer/cmsdk-apb-dualtimer.c
668F: include/hw/timer/cmsdk-apb-dualtimer.h
Peter Maydell9bc064b2021-01-28 11:41:25 +0000669F: tests/qtest/cmsdk-apb-dualtimer-test.c
Peter Maydelle5a6a6e2017-07-17 13:36:09 +0100670F: hw/char/cmsdk-apb-uart.c
671F: include/hw/char/cmsdk-apb-uart.h
Peter Maydell050c2ea2018-08-20 11:24:33 +0100672F: hw/watchdog/cmsdk-apb-watchdog.c
673F: include/hw/watchdog/cmsdk-apb-watchdog.h
Peter Maydell9cf5eb22021-01-28 11:41:24 +0000674F: tests/qtest/cmsdk-apb-watchdog-test.c
Peter Maydell0d4a7552018-05-31 14:50:51 +0100675F: hw/misc/tz-ppc.c
676F: include/hw/misc/tz-ppc.h
Peter Maydell344f4b12018-06-22 13:28:39 +0100677F: hw/misc/tz-mpc.c
678F: include/hw/misc/tz-mpc.h
Peter Maydell211e7012018-08-24 13:17:43 +0100679F: hw/misc/tz-msc.c
680F: include/hw/misc/tz-msc.h
Paolo Bonzini06271002015-09-22 11:45:00 +0200681
682ARM cores
683M: Peter Maydell <peter.maydell@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000684L: qemu-arm@nongnu.org
Paolo Bonzini06271002015-09-22 11:45:00 +0200685S: Maintained
686F: hw/intc/arm*
Thomas Huth662c3eb2023-10-27 08:07:09 +0200687F: hw/intc/gic*_internal.h
Paolo Bonzini06271002015-09-22 11:45:00 +0200688F: hw/misc/a9scu.c
689F: hw/misc/arm11scu.c
Thomas Huthb7f30112019-01-07 15:23:47 +0000690F: hw/misc/arm_l2x0.c
Peter Maydell2f9db772021-08-12 10:33:32 +0100691F: hw/misc/armv7m_ras.c
Paolo Bonzini06271002015-09-22 11:45:00 +0200692F: hw/timer/a9gtimer*
Philippe Mathieu-Daudéc6427ff2017-09-08 14:31:32 -0300693F: hw/timer/arm*
694F: include/hw/arm/arm*.h
Paolo Bonzini06271002015-09-22 11:45:00 +0200695F: include/hw/intc/arm*
696F: include/hw/misc/a9scu.h
697F: include/hw/misc/arm11scu.h
698F: include/hw/timer/a9gtimer.h
699F: include/hw/timer/arm_mptimer.h
Philippe Mathieu-Daudéc6427ff2017-09-08 14:31:32 -0300700F: include/hw/timer/armv7m_systick.h
Peter Maydell2f9db772021-08-12 10:33:32 +0100701F: include/hw/misc/armv7m_ras.h
Thomas Huth1e8a1fa2019-09-09 12:04:01 +0200702F: tests/qtest/test-arm-mptimer.c
Paolo Bonzini06271002015-09-22 11:45:00 +0200703
Inès Varhole569d952024-09-21 12:47:16 +0200704B-L475E-IOT01A IoT Node
705M: Samuel Tardieu <sam@rfc1149.net>
706L: qemu-arm@nongnu.org
707S: Maintained
708F: hw/arm/b-l475e-iot01a.c
709F: hw/display/dm163.c
710F: tests/qtest/dm163-test.c
711
Evgeny Voevodinfc63dcf2012-02-16 09:56:06 +0000712Exynos
Igor Mitsyankof44c5c62013-07-31 10:27:35 +0400713M: Igor Mitsyanko <i.mitsyanko@gmail.com>
Peter Maydella00d7f22018-11-19 15:29:08 +0000714M: Peter Maydell <peter.maydell@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000715L: qemu-arm@nongnu.org
Peter Maydella00d7f22018-11-19 15:29:08 +0000716S: Odd Fixes
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100717F: hw/*/exynos*
Peter Maydell78cb12a2022-04-04 16:46:48 +0100718F: include/hw/*/exynos*
Evgeny Voevodinfc63dcf2012-02-16 09:56:06 +0000719
Mark Langsdorf766fd092012-02-16 09:56:10 +0000720Calxeda Highbank
Rob Herring9ef137c2014-05-27 17:09:49 +0100721M: Rob Herring <robh@kernel.org>
Peter Maydella00d7f22018-11-19 15:29:08 +0000722M: Peter Maydell <peter.maydell@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000723L: qemu-arm@nongnu.org
Peter Maydella00d7f22018-11-19 15:29:08 +0000724S: Odd Fixes
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100725F: hw/arm/highbank.c
726F: hw/net/xgmac.c
Peter Maydellc90df7c2021-07-13 15:22:26 +0100727F: docs/system/arm/highbank.rst
Mark Langsdorf766fd092012-02-16 09:56:10 +0000728
Antony Pavlov9082f122013-12-17 19:42:37 +0000729Canon DIGIC
730M: Antony Pavlov <antonynpavlov@gmail.com>
Peter Maydella00d7f22018-11-19 15:29:08 +0000731M: Peter Maydell <peter.maydell@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000732L: qemu-arm@nongnu.org
Peter Maydella00d7f22018-11-19 15:29:08 +0000733S: Odd Fixes
Antony Pavlov9082f122013-12-17 19:42:37 +0000734F: include/hw/arm/digic.h
735F: hw/*/digic*
Philippe Mathieu-Daudé7ad5f2d2018-11-25 21:49:50 +0100736F: include/hw/*/digic*
Thomas Huthe3fc99b2024-08-30 15:38:13 +0200737F: tests/functional/test_arm_canona1100.py
Peter Maydell2d21dd12020-07-13 18:57:43 +0100738F: docs/system/arm/digic.rst
Antony Pavlov9082f122013-12-17 19:42:37 +0000739
Anup Patel9c8fdce2019-11-06 11:56:50 +0000740Goldfish RTC
741M: Anup Patel <anup.patel@wdc.com>
742M: Alistair Francis <Alistair.Francis@wdc.com>
743L: qemu-riscv@nongnu.org
744S: Maintained
745F: hw/rtc/goldfish_rtc.c
746F: include/hw/rtc/goldfish_rtc.h
747
Thomas Huth123a0692018-11-26 13:39:23 +0000748i.MX25 PDK
749M: Peter Maydell <peter.maydell@linaro.org>
750R: Jean-Christophe Dubois <jcd@tribudubois.net>
751L: qemu-arm@nongnu.org
752S: Odd Fixes
753F: hw/arm/fsl-imx25.c
754F: hw/arm/imx25_pdk.c
755F: hw/misc/imx25_ccm.c
Guenter Roeck37f959592020-05-17 09:21:28 -0700756F: hw/watchdog/wdt_imx2.c
Thomas Huth123a0692018-11-26 13:39:23 +0000757F: include/hw/arm/fsl-imx25.h
758F: include/hw/misc/imx25_ccm.h
Guenter Roeck37f959592020-05-17 09:21:28 -0700759F: include/hw/watchdog/wdt_imx2.h
Peter Maydellb1b3e3e2021-07-22 18:52:29 +0100760F: docs/system/arm/imx25-pdk.rst
Thomas Huth123a0692018-11-26 13:39:23 +0000761
Thomas Huth95a5db32018-11-19 15:29:08 +0000762i.MX31 (kzm)
Peter Maydella00d7f22018-11-19 15:29:08 +0000763M: Peter Maydell <peter.maydell@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000764L: qemu-arm@nongnu.org
Thomas Huth95a5db32018-11-19 15:29:08 +0000765S: Odd Fixes
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100766F: hw/arm/kzm.c
Thomas Huth95a5db32018-11-19 15:29:08 +0000767F: hw/*/imx_*
768F: hw/*/*imx31*
769F: include/hw/*/imx_*
770F: include/hw/*/*imx31*
Peter Maydellfa6c9392021-07-22 18:52:28 +0100771F: docs/system/arm/kzm.rst
Peter Chubb03255592012-07-04 10:43:34 +0000772
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500773Integrator CP
Peter Maydell1ce9ce62011-09-20 16:18:46 +0100774M: Peter Maydell <peter.maydell@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000775L: qemu-arm@nongnu.org
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500776S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100777F: hw/arm/integratorcp.c
Thomas Huthf7e242d2016-09-23 14:14:18 +0200778F: hw/misc/arm_integrator_debug.c
Thomas Huthb7f30112019-01-07 15:23:47 +0000779F: include/hw/misc/arm_integrator_debug.h
Philippe Mathieu-Daudéef83aea2024-08-30 15:38:27 +0200780F: tests/functional/test_arm_integratorcp.py
Peter Maydellc11a8e82020-03-09 21:58:15 +0000781F: docs/system/arm/integratorcp.rst
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500782
Thomas Huth95a5db32018-11-19 15:29:08 +0000783MCIMX6UL EVK / i.MX6ul
784M: Peter Maydell <peter.maydell@linaro.org>
785R: Jean-Christophe Dubois <jcd@tribudubois.net>
786L: qemu-arm@nongnu.org
787S: Odd Fixes
788F: hw/arm/mcimx6ul-evk.c
789F: hw/arm/fsl-imx6ul.c
790F: hw/misc/imx6ul_ccm.c
791F: include/hw/arm/fsl-imx6ul.h
792F: include/hw/misc/imx6ul_ccm.h
793
794MCIMX7D SABRE / i.MX7
795M: Peter Maydell <peter.maydell@linaro.org>
796R: Andrey Smirnov <andrew.smirnov@gmail.com>
797L: qemu-arm@nongnu.org
798S: Odd Fixes
799F: hw/arm/mcimx7d-sabre.c
800F: hw/arm/fsl-imx7.c
Thomas Huthb7f30112019-01-07 15:23:47 +0000801F: hw/misc/imx7_*.c
Thomas Huth95a5db32018-11-19 15:29:08 +0000802F: include/hw/arm/fsl-imx7.h
Thomas Huthb7f30112019-01-07 15:23:47 +0000803F: include/hw/misc/imx7_*.h
Thomas Huth95a5db32018-11-19 15:29:08 +0000804F: hw/pci-host/designware.c
805F: include/hw/pci-host/designware.h
806
Peter Maydell273a70a2024-02-06 13:29:26 +0000807MPS2 / MPS3
Peter Maydelle5a6a6e2017-07-17 13:36:09 +0100808M: Peter Maydell <peter.maydell@linaro.org>
809L: qemu-arm@nongnu.org
810S: Maintained
811F: hw/arm/mps2.c
Peter Maydell0d4a7552018-05-31 14:50:51 +0100812F: hw/arm/mps2-tz.c
Peter Maydell273a70a2024-02-06 13:29:26 +0000813F: hw/arm/mps3r.c
Peter Maydell0d4a7552018-05-31 14:50:51 +0100814F: hw/misc/mps2-*.c
815F: include/hw/misc/mps2-*.h
Peter Maydell6eee5d22019-02-01 14:55:42 +0000816F: hw/arm/armsse.c
817F: include/hw/arm/armsse.h
Philippe Mathieu-Daudéc56c5762018-11-25 21:49:51 +0100818F: hw/misc/iotkit-secctl.c
819F: include/hw/misc/iotkit-secctl.h
Peter Maydell75750e42018-08-24 13:17:42 +0100820F: hw/misc/iotkit-sysctl.c
821F: include/hw/misc/iotkit-sysctl.h
Peter Maydellc667a252018-08-24 13:17:43 +0100822F: hw/misc/iotkit-sysinfo.c
823F: include/hw/misc/iotkit-sysinfo.h
Peter Maydell4239b312021-02-19 14:45:53 +0000824F: hw/misc/armsse-cpu-pwrctrl.c
825F: include/hw/misc/armsse-cpu-pwrctrl.h
Peter Maydell5aeb3682019-02-01 14:55:43 +0000826F: hw/misc/armsse-cpuid.c
827F: include/hw/misc/armsse-cpuid.h
Peter Maydellcdf63442019-02-28 10:55:15 +0000828F: hw/misc/armsse-mhu.c
829F: include/hw/misc/armsse-mhu.h
Peter Maydell0d10df32021-02-19 14:45:44 +0000830F: hw/timer/sse-counter.c
831F: include/hw/timer/sse-counter.h
Peter Maydell0b8ceee2021-02-19 14:45:45 +0000832F: hw/timer/sse-timer.c
833F: include/hw/timer/sse-timer.h
Peter Maydell1eca58a2021-02-19 14:46:17 +0000834F: tests/qtest/sse-timer-test.c
Peter Maydellba7912a2020-05-07 16:18:18 +0100835F: docs/system/arm/mps2.rst
Peter Maydelle5a6a6e2017-07-17 13:36:09 +0100836
Peter Maydell8f69a4c2019-02-21 18:17:47 +0000837Musca
838M: Peter Maydell <peter.maydell@linaro.org>
839L: qemu-arm@nongnu.org
840S: Maintained
841F: hw/arm/musca.c
Peter Maydell9f8f6402020-05-07 16:18:19 +0100842F: docs/system/arm/musca.rst
Peter Maydell8f69a4c2019-02-21 18:17:47 +0000843
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500844Musicpal
845M: Jan Kiszka <jan.kiszka@web.de>
Peter Maydella00d7f22018-11-19 15:29:08 +0000846M: Peter Maydell <peter.maydell@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000847L: qemu-arm@nongnu.org
Peter Maydella00d7f22018-11-19 15:29:08 +0000848S: Odd Fixes
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100849F: hw/arm/musicpal.c
Philippe Mathieu-Daudé6d81f482022-01-07 19:44:29 +0100850F: hw/net/mv88w8618_eth.c
851F: include/hw/net/mv88w8618_eth.h
Peter Maydellc11a8e82020-03-09 21:58:15 +0000852F: docs/system/arm/musicpal.rst
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500853
Havard Skinnemoene5a7ba82020-09-10 22:20:48 -0700854Nuvoton NPCM7xx
Havard Skinnemoene5a7ba82020-09-10 22:20:48 -0700855M: Tyrone Ting <kfting@nuvoton.com>
Hao Wu73c793d2023-02-08 15:54:31 -0800856M: Hao Wu <wuhaotsh@google.com>
Havard Skinnemoene5a7ba82020-09-10 22:20:48 -0700857L: qemu-arm@nongnu.org
858S: Supported
Hao Wu69fbfb82023-02-08 15:54:32 -0800859F: hw/*/npcm*
Titus Rwantare6f351a72023-10-23 23:46:44 +0000860F: hw/sensor/adm1266.c
Hao Wu69fbfb82023-02-08 15:54:32 -0800861F: include/hw/*/npcm*
862F: tests/qtest/npcm*
Titus Rwantare5861f5a2023-10-23 23:46:45 +0000863F: tests/qtest/adm1266-test.c
Havard Skinnemoend1cb5ed2020-09-10 22:20:53 -0700864F: pc-bios/npcm7xx_bootrom.bin
865F: roms/vbootrom
Philippe Mathieu-Daudé71703112020-11-20 16:45:42 +0100866F: docs/system/arm/nuvoton.rst
Havard Skinnemoene5a7ba82020-09-10 22:20:48 -0700867
Thomas Huth95a5db32018-11-19 15:29:08 +0000868Raspberry Pi
869M: Peter Maydell <peter.maydell@linaro.org>
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +0200870R: Philippe Mathieu-Daudé <philmd@linaro.org>
Thomas Huth95a5db32018-11-19 15:29:08 +0000871L: qemu-arm@nongnu.org
872S: Odd Fixes
Thomas Huth123a0692018-11-26 13:39:23 +0000873F: hw/arm/raspi.c
Thomas Huth95a5db32018-11-19 15:29:08 +0000874F: hw/arm/raspi_platform.h
875F: hw/*/bcm283*
Thomas Huth29ecf2d2023-10-12 09:34:58 +0200876F: include/hw/arm/rasp*
Thomas Huth95a5db32018-11-19 15:29:08 +0000877F: include/hw/*/bcm283*
Philippe Mathieu-Daudéd9f2ac32020-11-20 18:39:51 +0100878F: docs/system/arm/raspi.rst
Philippe Mathieu-Daudé165ab272024-09-06 20:05:44 +0200879F: tests/functional/test_arm_raspi2.py
Philippe Mathieu-Daudé471f7ff2024-09-06 20:05:45 +0200880F: tests/functional/test_aarch64_raspi3.py
Philippe Mathieu-Daudé547738b2024-09-06 20:05:46 +0200881F: tests/functional/test_aarch64_raspi4.py
Thomas Huth95a5db32018-11-19 15:29:08 +0000882
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500883Real View
Peter Maydell1ce9ce62011-09-20 16:18:46 +0100884M: Peter Maydell <peter.maydell@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000885L: qemu-arm@nongnu.org
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500886S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100887F: hw/arm/realview*
Thomas Huthf7e242d2016-09-23 14:14:18 +0200888F: hw/cpu/realview_mpcore.c
Paolo Bonzini5ea53042015-09-22 11:49:41 +0200889F: hw/intc/realview_gic.c
890F: include/hw/intc/realview_gic.h
Peter Maydellc11a8e82020-03-09 21:58:15 +0000891F: docs/system/arm/realview.rst
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500892
Thomas Huth95a5db32018-11-19 15:29:08 +0000893SABRELITE / i.MX6
894M: Peter Maydell <peter.maydell@linaro.org>
895R: Jean-Christophe Dubois <jcd@tribudubois.net>
896L: qemu-arm@nongnu.org
897S: Odd Fixes
Thomas Huth4db546d2022-12-12 18:48:41 +0100898F: docs/system/arm/sabrelite.rst
Thomas Huth95a5db32018-11-19 15:29:08 +0000899F: hw/arm/sabrelite.c
900F: hw/arm/fsl-imx6.c
Thomas Huthb7f30112019-01-07 15:23:47 +0000901F: hw/misc/imx6_*.c
Thomas Huth95a5db32018-11-19 15:29:08 +0000902F: hw/ssi/imx_spi.c
Guenter Roeck0701a5e2020-03-12 18:45:47 -0700903F: hw/usb/imx-usb-phy.c
904F: include/hw/usb/imx-usb-phy.h
Thomas Huth95a5db32018-11-19 15:29:08 +0000905F: include/hw/arm/fsl-imx6.h
Thomas Huthb7f30112019-01-07 15:23:47 +0000906F: include/hw/misc/imx6_*.h
Thomas Huth95a5db32018-11-19 15:29:08 +0000907F: include/hw/ssi/imx_spi.h
908
Hongbo Zhang64580902019-07-01 17:26:18 +0100909SBSA-REF
Radoslaw Biernacki428a3772020-05-12 19:07:04 +0200910M: Radoslaw Biernacki <rad@semihalf.com>
Hongbo Zhang64580902019-07-01 17:26:18 +0100911M: Peter Maydell <peter.maydell@linaro.org>
Leif Lindholm14d5add2022-05-05 12:37:40 +0100912R: Leif Lindholm <quic_llindhol@quicinc.com>
Marcin Juszkiewicz96e6d252023-05-15 16:37:53 +0200913R: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org>
Hongbo Zhang64580902019-07-01 17:26:18 +0100914L: qemu-arm@nongnu.org
915S: Maintained
916F: hw/arm/sbsa-ref.c
Thomas Huthd02ce622023-09-29 16:19:18 +0200917F: hw/misc/sbsa_ec.c
918F: hw/watchdog/sbsa_gwdt.c
919F: include/hw/watchdog/sbsa_gwdt.h
Philippe Mathieu-Daudé9eeeb802020-11-20 16:45:44 +0100920F: docs/system/arm/sbsa.rst
Philippe Mathieu-Daudé8f16cd82024-08-30 15:38:28 +0200921F: tests/functional/test_aarch64_sbsaref.py
Hongbo Zhang64580902019-07-01 17:26:18 +0100922
Thomas Huth671f11b2018-11-13 10:47:58 +0000923Sharp SL-5500 (Collie) PDA
924M: Peter Maydell <peter.maydell@linaro.org>
925L: qemu-arm@nongnu.org
926S: Odd Fixes
927F: hw/arm/collie.c
928F: hw/arm/strongarm*
Peter Maydell504f9352024-09-03 17:07:05 +0100929F: hw/gpio/zaurus.c
930F: include/hw/arm/sharpsl.h
Peter Maydellb76b60f2020-07-13 18:57:44 +0100931F: docs/system/arm/collie.rst
Thomas Huth671f11b2018-11-13 10:47:58 +0000932
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500933Stellaris
Peter Maydell1ce9ce62011-09-20 16:18:46 +0100934M: Peter Maydell <peter.maydell@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000935L: qemu-arm@nongnu.org
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500936S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100937F: hw/*/stellaris*
Thomas Huth7c7e1f62023-10-20 08:09:36 +0200938F: hw/display/ssd03*
Philippe Mathieu-Daudé98fa3322019-04-12 18:54:11 +0200939F: include/hw/input/gamepad.h
Thomas Huth7c7e1f62023-10-20 08:09:36 +0200940F: include/hw/timer/stellaris-gptm.h
Peter Maydellc11a8e82020-03-09 21:58:15 +0000941F: docs/system/arm/stellaris.rst
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500942
Inès Varhole569d952024-09-21 12:47:16 +0200943STM32L4x5 SoC Family
944M: Samuel Tardieu <sam@rfc1149.net>
945L: qemu-arm@nongnu.org
946S: Maintained
947F: hw/arm/stm32l4x5_soc.c
948F: hw/char/stm32l4x5_usart.c
949F: hw/misc/stm32l4x5_exti.c
950F: hw/misc/stm32l4x5_syscfg.c
951F: hw/misc/stm32l4x5_rcc.c
952F: hw/gpio/stm32l4x5_gpio.c
953F: include/hw/*/stm32l4x5_*.h
954F: tests/qtest/stm32l4x5*
955
Alexandre Iooss2ac24102021-06-17 18:56:45 +0200956STM32VLDISCOVERY
957M: Alexandre Iooss <erdnaxe@crans.org>
958L: qemu-arm@nongnu.org
959S: Maintained
960F: hw/arm/stm32vldiscovery.c
Alexandre Iooss1af060e2021-06-17 18:56:46 +0200961F: docs/system/arm/stm32.rst
Alexandre Iooss2ac24102021-06-17 18:56:45 +0200962
Thomas Huth95a5db32018-11-19 15:29:08 +0000963Versatile Express
964M: Peter Maydell <peter.maydell@linaro.org>
965L: qemu-arm@nongnu.org
966S: Maintained
967F: hw/arm/vexpress.c
Thomas Huth42c31682023-10-20 08:09:35 +0200968F: hw/display/sii9022.c
Peter Maydell5a1d4242020-05-07 16:18:17 +0100969F: docs/system/arm/vexpress.rst
Thomas Huthc3cff722024-09-19 20:57:42 +0200970F: tests/functional/test_arm_vexpress.py
Thomas Huth95a5db32018-11-19 15:29:08 +0000971
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500972Versatile PB
Peter Maydell1ce9ce62011-09-20 16:18:46 +0100973M: Peter Maydell <peter.maydell@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000974L: qemu-arm@nongnu.org
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500975S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100976F: hw/*/versatile*
Philippe Mathieu-Daudé500a64d2023-01-10 09:25:08 +0100977F: hw/i2c/arm_sbcon_i2c.c
Philippe Mathieu-Daudéf61c3fb2020-06-17 09:25:29 +0200978F: include/hw/i2c/arm_sbcon_i2c.h
Philippe Mathieu-Daudéc6427ff2017-09-08 14:31:32 -0300979F: hw/misc/arm_sysctl.c
Peter Maydellc11a8e82020-03-09 21:58:15 +0000980F: docs/system/arm/versatile.rst
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500981
Thomas Huth95a5db32018-11-19 15:29:08 +0000982Virt
983M: Peter Maydell <peter.maydell@linaro.org>
984L: qemu-arm@nongnu.org
985S: Maintained
986F: hw/arm/virt*
987F: include/hw/arm/virt.h
Peter Maydell6a0b7502020-07-13 18:57:46 +0100988F: docs/system/arm/virt.rst
Philippe Mathieu-Daudé1255f5e2024-08-30 15:38:29 +0200989F: tests/functional/test_aarch64_virt.py
Thomas Huthde9f57a2024-10-11 15:19:23 +0200990F: tests/functional/test_arm_tuxrun.py
Thomas Huth95a5db32018-11-19 15:29:08 +0000991
Peter A. G. Crosthwaitee3260502012-03-05 14:39:13 +1000992Xilinx Zynq
Alistair Franciscc0100f2016-07-28 09:55:39 -0700993M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
Alistair Francisc22e5802018-03-01 11:05:58 +0000994M: Alistair Francis <alistair@alistair23.me>
Peter Maydella00d7f22018-11-19 15:29:08 +0000995M: Peter Maydell <peter.maydell@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000996L: qemu-arm@nongnu.org
Peter A. G. Crosthwaitee3260502012-03-05 14:39:13 +1000997S: Maintained
Alistair Franciscc0100f2016-07-28 09:55:39 -0700998F: hw/*/xilinx_*
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100999F: hw/*/cadence_*
Corey Minyard246f5302021-05-18 15:51:24 -05001000F: hw/misc/zynq_slcr.c
1001F: hw/adc/zynq-xadc.c
1002F: include/hw/misc/zynq_slcr.h
1003F: include/hw/adc/zynq-xadc.h
Alistair Franciscc0100f2016-07-28 09:55:39 -07001004X: hw/ssi/xilinx_*
Sai Pavan Boddu2d305062024-06-21 18:29:06 +05301005F: docs/system/arm/xlnx-zynq.rst
Peter A. G. Crosthwaitee3260502012-03-05 14:39:13 +10001006
Edgar E. Iglesiasff9e1572020-08-03 18:47:49 +02001007Xilinx ZynqMP and Versal
Alistair Francisc22e5802018-03-01 11:05:58 +00001008M: Alistair Francis <alistair@alistair23.me>
Alistair Franciscc0100f2016-07-28 09:55:39 -07001009M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
Peter Maydella00d7f22018-11-19 15:29:08 +00001010M: Peter Maydell <peter.maydell@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +00001011L: qemu-arm@nongnu.org
Alistair Francis137805f2015-08-25 15:45:07 +01001012S: Maintained
Alistair Franciscc0100f2016-07-28 09:55:39 -07001013F: hw/*/xlnx*.c
Markus Armbrusterf586d5f2016-09-05 14:28:52 +02001014F: include/hw/*/xlnx*.h
Philippe Mathieu-Daudé24d6d8b2018-11-25 21:49:39 +01001015F: include/hw/ssi/xilinx_spips.h
1016F: hw/display/dpcd.c
1017F: include/hw/display/dpcd.h
Edgar E. Iglesiasff9e1572020-08-03 18:47:49 +02001018F: docs/system/arm/xlnx-versal-virt.rst
Alistair Francis137805f2015-08-25 15:45:07 +01001019
Francisco Iglesias72e58842022-01-21 16:11:41 +00001020Xilinx Versal OSPI
Francisco Iglesiasdbd1fbe2024-09-13 15:31:50 +01001021M: Francisco Iglesias <francisco.iglesias@amd.com>
Francisco Iglesias72e58842022-01-21 16:11:41 +00001022S: Maintained
1023F: hw/ssi/xlnx-versal-ospi.c
1024F: include/hw/ssi/xlnx-versal-ospi.h
1025
Francisco Iglesias5a8559e2023-08-31 17:56:54 +01001026Xilinx Versal CFI
1027M: Francisco Iglesias <francisco.iglesias@amd.com>
1028S: Maintained
1029F: hw/misc/xlnx-cfi-if.c
1030F: include/hw/misc/xlnx-cfi-if.h
Francisco Iglesias86d916c2023-08-31 17:56:55 +01001031F: hw/misc/xlnx-versal-cfu.c
1032F: include/hw/misc/xlnx-versal-cfu.h
Francisco Iglesiasc6766f52023-08-31 17:56:58 +01001033F: hw/misc/xlnx-versal-cframe-reg.c
1034F: include/hw/misc/xlnx-versal-cframe-reg.h
Francisco Iglesias5a8559e2023-08-31 17:56:54 +01001035
Alexandre Iooss0f76deb2021-06-17 18:56:44 +02001036STM32F100
1037M: Alexandre Iooss <erdnaxe@crans.org>
1038L: qemu-arm@nongnu.org
1039S: Maintained
1040F: hw/arm/stm32f100_soc.c
1041
Alistair Francisa1f81932016-10-04 13:28:07 +01001042STM32F205
1043M: Alistair Francis <alistair@alistair23.me>
Peter Maydella00d7f22018-11-19 15:29:08 +00001044M: Peter Maydell <peter.maydell@linaro.org>
Philippe Mathieu-Daudé8ef350b2020-01-20 19:59:27 +01001045L: qemu-arm@nongnu.org
Alistair Francisa1f81932016-10-04 13:28:07 +01001046S: Maintained
1047F: hw/arm/stm32f205_soc.c
1048F: hw/misc/stm32f2xx_syscfg.c
1049F: hw/char/stm32f2xx_usart.c
1050F: hw/timer/stm32f2xx_timer.c
1051F: hw/adc/*
1052F: hw/ssi/stm32f2xx_spi.c
Philippe Mathieu-Daudé0e0d3452017-09-08 14:36:19 -03001053F: include/hw/*/stm32*.h
Alistair Francisa1f81932016-10-04 13:28:07 +01001054
Alistair Francis529fc5f2020-01-17 14:09:29 +00001055STM32F405
1056M: Alistair Francis <alistair@alistair23.me>
1057M: Peter Maydell <peter.maydell@linaro.org>
Philippe Mathieu-Daudé8ef350b2020-01-20 19:59:27 +01001058L: qemu-arm@nongnu.org
Alistair Francis529fc5f2020-01-17 14:09:29 +00001059S: Maintained
1060F: hw/arm/stm32f405_soc.c
1061F: hw/misc/stm32f4xx_syscfg.c
1062F: hw/misc/stm32f4xx_exti.c
Román Cárdenas Rodríguezd1613f22024-10-14 17:05:50 +01001063F: hw/misc/stm32_rcc.c
1064F: include/hw/misc/stm32_rcc.h
Alistair Francis529fc5f2020-01-17 14:09:29 +00001065
Alistair Francisa1f81932016-10-04 13:28:07 +01001066Netduino 2
1067M: Alistair Francis <alistair@alistair23.me>
Peter Maydella00d7f22018-11-19 15:29:08 +00001068M: Peter Maydell <peter.maydell@linaro.org>
Philippe Mathieu-Daudé8ef350b2020-01-20 19:59:27 +01001069L: qemu-arm@nongnu.org
Alistair Francisa1f81932016-10-04 13:28:07 +01001070S: Maintained
1071F: hw/arm/netduino2.c
1072
Alistair Francis60d6c422020-01-17 14:09:29 +00001073Netduino Plus 2
1074M: Alistair Francis <alistair@alistair23.me>
1075M: Peter Maydell <peter.maydell@linaro.org>
Philippe Mathieu-Daudé8ef350b2020-01-20 19:59:27 +01001076L: qemu-arm@nongnu.org
Alistair Francis60d6c422020-01-17 14:09:29 +00001077S: Maintained
1078F: hw/arm/netduinoplus2.c
1079
Felipe Balbiee5bffa2022-12-30 16:57:33 +02001080Olimex STM32 H405
1081M: Felipe Balbi <balbi@kernel.org>
1082L: qemu-arm@nongnu.org
1083S: Maintained
1084F: hw/arm/olimex-stm32-h405.c
1085
Subbaraya Sundeep670bc4c2017-11-13 13:55:25 +00001086SmartFusion2
1087M: Subbaraya Sundeep <sundeep.lkml@gmail.com>
Peter Maydella00d7f22018-11-19 15:29:08 +00001088M: Peter Maydell <peter.maydell@linaro.org>
Philippe Mathieu-Daudé8ef350b2020-01-20 19:59:27 +01001089L: qemu-arm@nongnu.org
Subbaraya Sundeep670bc4c2017-11-13 13:55:25 +00001090S: Maintained
1091F: hw/arm/msf2-soc.c
1092F: hw/misc/msf2-sysreg.c
1093F: hw/timer/mss-timer.c
1094F: hw/ssi/mss-spi.c
1095F: include/hw/arm/msf2-soc.h
1096F: include/hw/misc/msf2-sysreg.h
1097F: include/hw/timer/mss-timer.h
1098F: include/hw/ssi/mss-spi.h
Subbaraya Sundeep1c664372020-04-16 20:24:49 +05301099F: hw/net/msf2-emac.c
1100F: include/hw/net/msf2-emac.h
Subbaraya Sundeep670bc4c2017-11-13 13:55:25 +00001101
1102Emcraft M2S-FG484
1103M: Subbaraya Sundeep <sundeep.lkml@gmail.com>
Peter Maydella00d7f22018-11-19 15:29:08 +00001104M: Peter Maydell <peter.maydell@linaro.org>
Philippe Mathieu-Daudé8ef350b2020-01-20 19:59:27 +01001105L: qemu-arm@nongnu.org
Subbaraya Sundeep670bc4c2017-11-13 13:55:25 +00001106S: Maintained
1107F: hw/arm/msf2-som.c
Peter Maydell3f65df32021-07-13 15:22:25 +01001108F: docs/system/arm/emcraft-sf2.rst
Subbaraya Sundeep670bc4c2017-11-13 13:55:25 +00001109
Joel Stanleyf87db1b2018-06-26 17:50:39 +01001110ASPEED BMCs
1111M: Cédric Le Goater <clg@kaod.org>
Peter Maydella00d7f22018-11-19 15:29:08 +00001112M: Peter Maydell <peter.maydell@linaro.org>
Jamin Lin5f445212024-06-05 14:03:10 +08001113R: Steven Lee <steven_lee@aspeedtech.com>
1114R: Troy Lee <leetroy@gmail.com>
1115R: Jamin Lin <jamin_lin@aspeedtech.com>
Andrew Jefferycbe27c32023-09-25 15:52:12 +09301116R: Andrew Jeffery <andrew@codeconstruct.com.au>
Joel Stanleyf87db1b2018-06-26 17:50:39 +01001117R: Joel Stanley <joel@jms.id.au>
1118L: qemu-arm@nongnu.org
1119S: Maintained
1120F: hw/*/*aspeed*
1121F: include/hw/*/*aspeed*
1122F: hw/net/ftgmac100.c
1123F: include/hw/net/ftgmac100.h
Philippe Mathieu-Daudéde8ee7d2020-11-20 16:45:41 +01001124F: docs/system/arm/aspeed.rst
Thomas Huthe354d992023-04-24 10:22:41 +01001125F: tests/*/*aspeed*
Jamin Lin34fdd732024-10-01 10:43:34 +08001126F: tests/*/*ast2700*
Peter Delevoryasc2f58c22022-07-14 16:24:38 +02001127F: hw/arm/fby35.c
Joel Stanleyf87db1b2018-06-26 17:50:39 +01001128
Joel Stanleyc0066d12018-09-25 14:02:30 +01001129NRF51
1130M: Joel Stanley <joel@jms.id.au>
Peter Maydella00d7f22018-11-19 15:29:08 +00001131M: Peter Maydell <peter.maydell@linaro.org>
Joel Stanleyc0066d12018-09-25 14:02:30 +01001132L: qemu-arm@nongnu.org
1133S: Maintained
Stefan Hajnoczic8de3f52019-01-29 11:46:04 +00001134F: hw/*/nrf51*.c
1135F: hw/*/microbit*.c
1136F: include/hw/*/nrf51*.h
1137F: include/hw/*/microbit*.h
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02001138F: tests/qtest/microbit-test.c
Alexandre Iooss90a76c62021-06-21 09:56:25 +02001139F: docs/system/arm/nrf.rst
Joel Stanleyc0066d12018-09-25 14:02:30 +01001140
Paolo Bonzinid0f0cd52024-10-10 16:11:28 +02001141ARM PL011 Rust device
1142M: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
1143S: Maintained
1144F: rust/hw/char/pl011/
1145
Michael Rolnik42f3ff02020-01-24 01:51:21 +01001146AVR Machines
1147-------------
1148
1149AVR MCUs
1150M: Michael Rolnik <mrolnik@gmail.com>
Michael Rolnik42f3ff02020-01-24 01:51:21 +01001151S: Maintained
Alex Bennée812b31d2021-07-07 14:17:43 +01001152F: configs/devices/avr-softmmu/default.mak
Philippe Mathieu-Daudé7dd8f6f2020-01-24 01:51:25 +01001153F: hw/avr/
Michael Rolnik429ca9d2020-01-24 01:51:17 +01001154F: include/hw/char/avr_usart.h
1155F: hw/char/avr_usart.c
Michael Rolnik8ff47bc2020-01-24 01:51:18 +01001156F: include/hw/timer/avr_timer16.h
1157F: hw/timer/avr_timer16.c
Michael Rolnikdc288de2020-01-24 01:51:19 +01001158F: include/hw/misc/avr_power.h
1159F: hw/misc/avr_power.c
Michael Rolnik42f3ff02020-01-24 01:51:21 +01001160
Philippe Mathieu-Daudé50486d62020-01-24 01:51:27 +01001161Arduino
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02001162M: Philippe Mathieu-Daudé <philmd@linaro.org>
Philippe Mathieu-Daudé50486d62020-01-24 01:51:27 +01001163S: Maintained
1164F: hw/avr/arduino.c
1165
Philippe Mathieu-Daudée1883962018-12-18 12:56:10 +01001166HP-PARISC Machines
1167------------------
Helge Dellerae759c92023-10-14 19:48:27 +02001168HP B160L, HP C3700
Richard Henderson336f7442020-11-12 20:35:43 -08001169M: Richard Henderson <richard.henderson@linaro.org>
Philippe Mathieu-Daudée1883962018-12-18 12:56:10 +01001170R: Helge Deller <deller@gmx.de>
1171S: Odd Fixes
Alex Bennée812b31d2021-07-07 14:17:43 +01001172F: configs/devices/hppa-softmmu/default.mak
Thomas Huthe416fd72023-11-07 11:30:44 +01001173F: hw/display/artist.c
Philippe Mathieu-Daudée1883962018-12-18 12:56:10 +01001174F: hw/hppa/
Thomas Huth8db07602023-10-17 17:19:33 +02001175F: hw/input/lasips2.c
Philippe Mathieu-Daudé11f976a2021-10-04 10:38:35 +02001176F: hw/net/*i82596*
Mark Cave-Ayland45f569a2022-05-04 10:25:52 +01001177F: hw/misc/lasi.c
Helge Dellerae759c92023-10-14 19:48:27 +02001178F: hw/pci-host/astro.c
Mark Cave-Ayland0db93502022-05-04 10:25:32 +01001179F: hw/pci-host/dino.c
Thomas Huth8db07602023-10-17 17:19:33 +02001180F: include/hw/input/lasips2.h
Mark Cave-Ayland45f569a2022-05-04 10:25:52 +01001181F: include/hw/misc/lasi.h
Philippe Mathieu-Daudé11f976a2021-10-04 10:38:35 +02001182F: include/hw/net/lasi_82596.h
Helge Dellerae759c92023-10-14 19:48:27 +02001183F: include/hw/pci-host/astro.h
Mark Cave-Ayland0db93502022-05-04 10:25:32 +01001184F: include/hw/pci-host/dino.h
Philippe Mathieu-Daudée1883962018-12-18 12:56:10 +01001185F: pc-bios/hppa-firmware.img
Helge Dellerae759c92023-10-14 19:48:27 +02001186F: roms/seabios-hppa/
Philippe Mathieu-Daudée1883962018-12-18 12:56:10 +01001187
Xiaojuan Yangd88b51d2022-06-06 20:43:08 +08001188LoongArch Machines
1189------------------
1190Virt
Xiaojuan Yangd88b51d2022-06-06 20:43:08 +08001191M: Song Gao <gaosong@loongson.cn>
Jiaxun Yang36ff1782024-06-27 05:13:28 +01001192R: Jiaxun Yang <jiaxun.yang@flygoat.com>
Xiaojuan Yangd88b51d2022-06-06 20:43:08 +08001193S: Maintained
Xiaojuan Yang587858e2022-07-29 15:30:17 +08001194F: docs/system/loongarch/virt.rst
Xiaojuan Yanga8a506c2022-06-06 20:43:20 +08001195F: configs/targets/loongarch64-softmmu.mak
1196F: configs/devices/loongarch64-softmmu/default.mak
1197F: hw/loongarch/
1198F: include/hw/loongarch/virt.h
Xiaojuan Yangf6783e32022-06-06 20:43:21 +08001199F: include/hw/intc/loongarch_*.h
Bibo Mao7e555782024-07-23 11:25:53 +02001200F: include/hw/intc/loongson_ipi_common.h
Xiaojuan Yangf6783e32022-06-06 20:43:21 +08001201F: hw/intc/loongarch_*.c
Bibo Mao7e555782024-07-23 11:25:53 +02001202F: hw/intc/loongson_ipi_common.c
Xiaojuan Yang0f4fcf12022-06-06 20:43:22 +08001203F: include/hw/pci-host/ls7a.h
Xiaojuan Yangc117f682022-06-06 20:43:28 +08001204F: hw/rtc/ls7a_rtc.c
Xiaojuan Yangca61e752022-06-06 20:43:31 +08001205F: gdb-xml/loongarch*.xml
Xiaojuan Yangd88b51d2022-06-06 20:43:08 +08001206
Aurelien Jarnoafcacd52011-01-14 20:39:19 +01001207M68K Machines
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001208-------------
1209an5206
Thomas Huth5baf2742017-02-12 23:38:17 +01001210M: Thomas Huth <huth@tuxfamily.org>
1211S: Odd Fixes
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01001212F: hw/m68k/an5206.c
Thomas Huthe9a56112016-11-02 09:39:33 +01001213F: hw/m68k/mcf5206.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001214
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001215mcf5208
Thomas Huth5baf2742017-02-12 23:38:17 +01001216M: Thomas Huth <huth@tuxfamily.org>
1217S: Odd Fixes
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01001218F: hw/m68k/mcf5208.c
Thomas Huthe9a56112016-11-02 09:39:33 +01001219F: hw/m68k/mcf_intc.c
1220F: hw/char/mcf_uart.c
1221F: hw/net/mcf_fec.c
Thomas Huth5baf2742017-02-12 23:38:17 +01001222F: include/hw/m68k/mcf*.h
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001223
Thomas Huth1810b812018-06-30 08:33:57 +00001224NeXTcube
1225M: Thomas Huth <huth@tuxfamily.org>
1226S: Odd Fixes
1227F: hw/m68k/next-*.c
1228F: hw/display/next-fb.c
1229F: include/hw/m68k/next-cube.h
Thomas Huth576fffb2024-08-30 15:38:22 +02001230F: tests/functional/test_m68k_nextcube.py
Thomas Huth1810b812018-06-30 08:33:57 +00001231
Laurent Vivier6dca62a2019-10-26 18:45:40 +02001232q800
1233M: Laurent Vivier <laurent@vivier.eu>
1234S: Maintained
Laurent Vivier04e7ca82019-10-26 18:45:45 +02001235F: hw/m68k/q800.c
Mark Cave-Ayland8e093282023-06-21 09:53:36 +01001236F: hw/m68k/q800-glue.c
Laurent Vivier6dca62a2019-10-26 18:45:40 +02001237F: hw/misc/mac_via.c
Laurent Vivierfa2ba3b2019-10-26 18:45:42 +02001238F: hw/nubus/*
Laurent Vivier8ac919a2019-10-26 18:45:43 +02001239F: hw/display/macfb.c
Laurent Vivierc701ec62019-10-26 18:45:44 +02001240F: hw/block/swim.c
Mark Cave-Aylande2fd6952023-10-04 09:37:48 +01001241F: hw/misc/djmemc.c
Mark Cave-Aylandbdc2c772023-10-04 09:37:51 +01001242F: hw/misc/iosb.c
Mark Cave-Aylandac13a6b2023-10-04 09:37:53 +01001243F: hw/audio/asc.c
Laurent Vivier04e7ca82019-10-26 18:45:45 +02001244F: hw/m68k/bootinfo.h
Laurent Vivier382d71a2020-12-20 12:26:09 +01001245F: include/standard-headers/asm-m68k/bootinfo.h
1246F: include/standard-headers/asm-m68k/bootinfo-mac.h
Laurent Vivier6dca62a2019-10-26 18:45:40 +02001247F: include/hw/misc/mac_via.h
Laurent Vivierfa2ba3b2019-10-26 18:45:42 +02001248F: include/hw/nubus/*
Laurent Vivier8ac919a2019-10-26 18:45:43 +02001249F: include/hw/display/macfb.h
Laurent Vivierc701ec62019-10-26 18:45:44 +02001250F: include/hw/block/swim.h
Mark Cave-Aylanda8019222023-06-21 09:53:32 +01001251F: include/hw/m68k/q800.h
Mark Cave-Ayland8e093282023-06-21 09:53:36 +01001252F: include/hw/m68k/q800-glue.h
Mark Cave-Aylande2fd6952023-10-04 09:37:48 +01001253F: include/hw/misc/djmemc.h
Mark Cave-Aylandbdc2c772023-10-04 09:37:51 +01001254F: include/hw/misc/iosb.h
Mark Cave-Aylandac13a6b2023-10-04 09:37:53 +01001255F: include/hw/audio/asc.h
Thomas Huthc7f36632024-09-06 20:05:37 +02001256F: tests/functional/test_m68k_q800.py
Laurent Vivier6dca62a2019-10-26 18:45:40 +02001257
Laurent Viviere1cecdc2021-03-12 22:41:45 +01001258virt
1259M: Laurent Vivier <laurent@vivier.eu>
1260S: Maintained
1261F: hw/m68k/virt.c
1262F: hw/char/goldfish_tty.c
1263F: hw/intc/goldfish_pic.c
1264F: hw/intc/m68k_irqc.c
1265F: hw/misc/virt_ctrl.c
1266F: include/hw/char/goldfish_tty.h
1267F: include/hw/intc/goldfish_pic.h
1268F: include/hw/intc/m68k_irqc.h
1269F: include/hw/misc/virt_ctrl.h
Peter Maydell6e0c8492023-09-27 16:12:03 +01001270F: docs/specs/virt-ctlr.rst
Laurent Viviere1cecdc2021-03-12 22:41:45 +01001271
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001272MicroBlaze Machines
1273-------------------
1274petalogix_s3adsp1800
1275M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
1276S: Maintained
Peter Maydell6e481d52013-06-24 11:49:32 +01001277F: hw/microblaze/petalogix_s3adsp1800_mmu.c
Philippe Mathieu-Daudéa734c7b2018-11-25 21:49:41 +01001278F: include/hw/char/xilinx_uartlite.h
Thomas Huth624fb342024-08-30 15:38:16 +02001279F: tests/functional/test_microblaze*.py
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001280
Peter A. G. Crosthwaited36e8ce2012-06-26 14:29:40 +10001281petalogix_ml605
Alistair Francis4b46ba62015-08-25 15:45:06 +01001282M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
Peter A. G. Crosthwaited36e8ce2012-06-26 14:29:40 +10001283S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01001284F: hw/microblaze/petalogix_ml605_mmu.c
Peter A. G. Crosthwaited36e8ce2012-06-26 14:29:40 +10001285
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001286MIPS Machines
1287-------------
Philippe Mathieu-Daudéf44d1d42021-10-04 10:26:38 +02001288Overall MIPS Machines
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02001289M: Philippe Mathieu-Daudé <philmd@linaro.org>
Philippe Mathieu-Daudéf44d1d42021-10-04 10:26:38 +02001290S: Odd Fixes
1291F: configs/devices/mips*/*
1292F: hw/mips/
1293F: include/hw/mips/
1294
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001295Jazz
1296M: Hervé Poussineau <hpoussin@reactos.org>
Aleksandar Rikalo45c577f2024-02-09 07:21:47 +01001297R: Aleksandar Rikalo <arikalo@gmail.com>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001298S: Maintained
Aleksandar Markovic52987222020-05-18 22:09:20 +02001299F: hw/mips/jazz.c
Thomas Huth740ee842023-09-29 16:09:35 +02001300F: hw/display/g364fb.c
Philippe Mathieu-Daudé0886a782018-11-25 21:49:40 +01001301F: hw/display/jazz_led.c
1302F: hw/dma/rc4030.c
Thomas Huth740ee842023-09-29 16:09:35 +02001303F: hw/nvram/ds1225y.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001304
1305Malta
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02001306M: Philippe Mathieu-Daudé <philmd@linaro.org>
Aleksandar Markovic485cd982019-12-10 13:55:17 +01001307R: Aurelien Jarno <aurelien@aurel32.net>
Aleksandar Markovicca263c02020-10-07 22:37:21 +02001308S: Odd Fixes
Bernhard Beschow16971892023-10-07 14:38:27 +02001309F: hw/isa/piix.c
Paolo Bonzinifbd75802024-02-13 16:50:01 +01001310F: hw/isa/fdc37m81x-superio.c
Aleksandar Markovic60041372019-12-10 13:55:18 +01001311F: hw/acpi/piix4.c
Aleksandar Markovic52987222020-05-18 22:09:20 +02001312F: hw/mips/malta.c
Philippe Mathieu-Daudéa7db7592023-01-13 09:20:12 +01001313F: hw/pci-host/gt64120.c
Aleksandar Markovic60041372019-12-10 13:55:18 +01001314F: include/hw/southbridge/piix.h
Willian Rampazzobbbd9b62021-11-05 12:53:54 -03001315F: tests/avocado/linux_ssh_mips_malta.py
Thomas Hutha2a2a5b2024-10-11 15:19:31 +02001316F: tests/functional/test_mips*_malta.py
1317F: tests/functional/test_mips*_tuxrun.py
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001318
1319Mipssim
Aleksandar Rikalo45c577f2024-02-09 07:21:47 +01001320R: Aleksandar Rikalo <arikalo@gmail.com>
John Snow4251dfb2020-10-30 11:34:16 -04001321S: Orphan
Aleksandar Markovic52987222020-05-18 22:09:20 +02001322F: hw/mips/mipssim.c
Yongbok Kim659f42d2017-03-10 15:32:32 +00001323F: hw/net/mipsnet.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001324
Philippe Mathieu-Daudéc3a09ff2020-04-26 12:16:37 +02001325Fuloong 2E
Huacai Chendab1e1e2020-12-05 17:22:01 +08001326M: Huacai Chen <chenhuacai@kernel.org>
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02001327M: Philippe Mathieu-Daudé <philmd@linaro.org>
Huacai Chen97eeef82020-04-08 17:16:20 +08001328R: Jiaxun Yang <jiaxun.yang@flygoat.com>
Yongbok Kim659f42d2017-03-10 15:32:32 +00001329S: Odd Fixes
Philippe Mathieu-Daudéc3a09ff2020-04-26 12:16:37 +02001330F: hw/mips/fuloong2e.c
Thomas Huth5021bfa2018-11-22 14:02:40 +01001331F: hw/pci-host/bonito.c
Philippe Mathieu-Daudéaad07962023-01-05 13:48:08 +01001332F: include/hw/pci-host/bonito.h
Philippe Mathieu-Daudébce9e482024-08-30 15:38:30 +02001333F: tests/functional/test_mips64el_fuloong2e.py
Yongbok Kim659f42d2017-03-10 15:32:32 +00001334
Aleksandar Markovic53fb8bf2020-06-27 20:13:17 +02001335Loongson-3 virtual platforms
Huacai Chendab1e1e2020-12-05 17:22:01 +08001336M: Huacai Chen <chenhuacai@kernel.org>
Huacai Chen2c5b1a72020-06-24 18:45:31 +08001337R: Jiaxun Yang <jiaxun.yang@flygoat.com>
1338S: Maintained
Bibo Mao7e555782024-07-23 11:25:53 +02001339F: hw/intc/loongson_ipi_common.c
Jiaxun Yangb4a12df2024-05-08 14:06:47 +01001340F: hw/intc/loongson_ipi.c
Huacai Chen2c5b1a72020-06-24 18:45:31 +08001341F: hw/intc/loongson_liointc.c
Huacai Chend2245e22020-10-16 14:51:58 +08001342F: hw/mips/loongson3_bootp.c
1343F: hw/mips/loongson3_bootp.h
Huacai Chenc76b4092020-04-27 17:33:14 +08001344F: hw/mips/loongson3_virt.c
Bibo Mao7e555782024-07-23 11:25:53 +02001345F: include/hw/intc/loongson_ipi_common.h
Jiaxun Yangb4a12df2024-05-08 14:06:47 +01001346F: include/hw/intc/loongson_ipi.h
Thomas Huthb5b47422023-10-17 17:33:45 +02001347F: include/hw/intc/loongson_liointc.h
Thomas Huth4c0a2df2024-08-30 15:38:11 +02001348F: tests/functional/test_mips64el_loongson3v.py
Huacai Chen2c5b1a72020-06-24 18:45:31 +08001349
Yongbok Kim659f42d2017-03-10 15:32:32 +00001350Boston
Philippe Mathieu-Daudé4ba98e92020-10-09 18:15:59 +02001351M: Paul Burton <paulburton@kernel.org>
Aleksandar Rikalo45c577f2024-02-09 07:21:47 +01001352R: Aleksandar Rikalo <arikalo@gmail.com>
Philippe Mathieu-Daudé4ba98e92020-10-09 18:15:59 +02001353S: Odd Fixes
Yongbok Kim659f42d2017-03-10 15:32:32 +00001354F: hw/core/loader-fit.c
1355F: hw/mips/boston.c
1356F: hw/pci-host/xilinx-pcie.c
Thomas Huth5021bfa2018-11-22 14:02:40 +01001357F: include/hw/pci-host/xilinx-pcie.h
Yongbok Kim659f42d2017-03-10 15:32:32 +00001358
Jia Liu945dad62013-07-02 20:55:17 +08001359OpenRISC Machines
1360-----------------
1361or1k-sim
1362M: Jia Liu <proljc@gmail.com>
1363S: Maintained
Thomas Huth4db546d2022-12-12 18:48:41 +01001364F: docs/system/openrisc/or1k-sim.rst
Thomas Hutha4a2f7f2023-10-20 08:24:48 +02001365F: hw/intc/ompic.c
Jia Liu945dad62013-07-02 20:55:17 +08001366F: hw/openrisc/openrisc_sim.c
1367
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001368PowerPC Machines
1369----------------
Cédric Le Goater1335caf2022-08-09 17:38:41 +02001370405 (ref405ep)
Andreas Färbera6c98682012-01-13 13:33:57 +00001371L: qemu-ppc@nongnu.org
David Gibson0f514ee2021-09-21 13:02:17 +10001372S: Orphan
Cédric Le Goater6d714462023-10-02 17:51:37 +02001373F: hw/ppc/ppc405*
Thomas Huth4c0a2df2024-08-30 15:38:11 +02001374F: tests/functional/test_ppc_405.py
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001375
Andreas Färberaaade8d2012-08-22 05:48:47 +00001376Bamboo
Andreas Färberaaade8d2012-08-22 05:48:47 +00001377L: qemu-ppc@nongnu.org
David Gibson0f514ee2021-09-21 13:02:17 +10001378S: Orphan
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01001379F: hw/ppc/ppc440_bamboo.c
Philippe Mathieu-Daudé55abb292023-10-11 06:31:50 +02001380F: hw/pci-host/ppc4xx_pci.c
Thomas Huthe3fc99b2024-08-30 15:38:13 +02001381F: tests/functional/test_ppc_bamboo.py
Andreas Färberaaade8d2012-08-22 05:48:47 +00001382
Andreas Färber98cded32012-08-22 05:48:45 +00001383e500
Bernhard Beschow6b7d2f62024-09-26 09:59:48 +02001384M: Bernhard Beschow <shentey@gmail.com>
Andreas Färber98cded32012-08-22 05:48:45 +00001385L: qemu-ppc@nongnu.org
Bernhard Beschow6b7d2f62024-09-26 09:59:48 +02001386S: Odd Fixes
Thomas Huthce6fc612019-01-30 17:22:25 +01001387F: hw/ppc/e500*
Cédric Le Goaterab8e1af2023-10-02 17:51:39 +02001388F: hw/ppc/ppce500_spin.c
Thomas Huth2c6aba12019-01-02 16:57:56 +01001389F: hw/gpio/mpc8xxx.c
Andrew Randrianasulu7abb4792019-03-06 13:28:12 +03001390F: hw/i2c/mpc_i2c.c
Thomas Huthce6fc612019-01-30 17:22:25 +01001391F: hw/net/fsl_etsec/
1392F: hw/pci-host/ppce500.c
Thomas Huthb5d55022016-09-05 22:03:36 +02001393F: include/hw/ppc/ppc_e500.h
1394F: include/hw/pci-host/ppce500.h
1395F: pc-bios/u-boot.e500
Thomas Huthb96a7482023-10-19 17:58:22 +02001396F: hw/intc/openpic_kvm.c
David Gibsonff8cdbb2021-09-21 13:34:35 +10001397F: include/hw/ppc/openpic_kvm.h
Cédric Le Goaterab8e1af2023-10-02 17:51:39 +02001398F: docs/system/ppc/ppce500.rst
Thomas Huth53a62fd2024-09-19 20:57:45 +02001399F: tests/functional/test_ppc64_e500.py
Thomas Huth9ca82392024-10-11 15:19:32 +02001400F: tests/functional/test_ppc_tuxrun.py
Andreas Färber98cded32012-08-22 05:48:45 +00001401
1402mpc8544ds
Bernhard Beschow6b7d2f62024-09-26 09:59:48 +02001403M: Bernhard Beschow <shentey@gmail.com>
Andreas Färber98cded32012-08-22 05:48:45 +00001404L: qemu-ppc@nongnu.org
Bernhard Beschow6b7d2f62024-09-26 09:59:48 +02001405S: Odd Fixes
Andreas Färber98cded32012-08-22 05:48:45 +00001406F: hw/ppc/mpc8544ds.c
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01001407F: hw/ppc/mpc8544_guts.c
Thomas Huth407a6882024-08-30 15:38:19 +02001408F: tests/functional/test_ppc_mpc8544ds.py
Andreas Färber98cded32012-08-22 05:48:45 +00001409
Thomas Huth2c6aba12019-01-02 16:57:56 +01001410New World (mac99)
Mark Cave-Ayland40e3dd02019-01-28 21:21:56 +00001411M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Andreas Färbera6c98682012-01-13 13:33:57 +00001412L: qemu-ppc@nongnu.org
Alexander Grafbba8e232018-10-30 10:35:31 +01001413S: Odd Fixes
Thomas Huthc5288762022-01-12 11:28:26 +01001414F: docs/system/ppc/powermac.rst
Andreas Färberbaec1912013-01-23 23:03:54 +00001415F: hw/ppc/mac_newworld.c
Peter Maydell6e481d52013-06-24 11:49:32 +01001416F: hw/pci-host/uninorth.c
1417F: hw/pci-bridge/dec.[hc]
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01001418F: hw/misc/macio/
Philippe Mathieu-Daudé6ba16472018-06-06 11:59:20 -03001419F: hw/misc/mos6522.c
Thomas Huthb5d55022016-09-05 22:03:36 +02001420F: hw/nvram/mac_nvram.c
Cédric Le Goater61985582023-10-02 17:51:41 +02001421F: hw/ppc/fw_cfg.c
Thomas Huth2c6aba12019-01-02 16:57:56 +01001422F: hw/input/adb*
Philippe Mathieu-Daudéeba45922018-06-06 11:59:19 -03001423F: include/hw/misc/macio/
Philippe Mathieu-Daudé6ba16472018-06-06 11:59:20 -03001424F: include/hw/misc/mos6522.h
BALATON Zoltan443f07b2022-10-28 13:56:27 +02001425F: include/hw/nvram/mac_nvram.h
Philippe Mathieu-Daudéeba45922018-06-06 11:59:19 -03001426F: include/hw/ppc/mac_dbdma.h
Thomas Huth5021bfa2018-11-22 14:02:40 +01001427F: include/hw/pci-host/uninorth.h
Thomas Huth2c6aba12019-01-02 16:57:56 +01001428F: include/hw/input/adb*
Mark Cave-Ayland52804c62019-01-02 10:22:43 +00001429F: pc-bios/qemu_vga.ndrv
Thomas Huth12c0b402024-09-19 20:57:46 +02001430F: tests/functional/test_ppc_mac.py
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001431
Thomas Huth2c6aba12019-01-02 16:57:56 +01001432Old World (g3beige)
Mark Cave-Ayland40e3dd02019-01-28 21:21:56 +00001433M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Andreas Färbera6c98682012-01-13 13:33:57 +00001434L: qemu-ppc@nongnu.org
Alexander Grafbba8e232018-10-30 10:35:31 +01001435S: Odd Fixes
Thomas Huthc5288762022-01-12 11:28:26 +01001436F: docs/system/ppc/powermac.rst
Andreas Färberbaec1912013-01-23 23:03:54 +00001437F: hw/ppc/mac_oldworld.c
Peter Maydell6e481d52013-06-24 11:49:32 +01001438F: hw/pci-host/grackle.c
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01001439F: hw/misc/macio/
Thomas Huth835c42d2016-09-29 09:40:33 +02001440F: hw/intc/heathrow_pic.c
Thomas Huth2c6aba12019-01-02 16:57:56 +01001441F: hw/input/adb*
Philippe Mathieu-Daudé97e16db2018-11-25 21:49:43 +01001442F: include/hw/intc/heathrow_pic.h
Thomas Huth2c6aba12019-01-02 16:57:56 +01001443F: include/hw/input/adb*
BALATON Zoltan87e5a4f2022-10-28 13:56:25 +02001444F: include/hw/pci-host/grackle.h
Mark Cave-Ayland52804c62019-01-02 10:22:43 +00001445F: pc-bios/qemu_vga.ndrv
Thomas Huth12c0b402024-09-19 20:57:46 +02001446F: tests/functional/test_ppc_mac.py
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001447
Andreas Färberec38d392011-11-01 00:03:07 +01001448PReP
Hervé Poussineau8178e892017-01-12 09:47:29 +01001449M: Hervé Poussineau <hpoussin@reactos.org>
Andreas Färbera6c98682012-01-13 13:33:57 +00001450L: qemu-ppc@nongnu.org
Hervé Poussineau8178e892017-01-12 09:47:29 +01001451S: Maintained
Thomas Huthc5288762022-01-12 11:28:26 +01001452F: docs/system/ppc/prep.rst
Andreas Färber75610152013-01-26 20:41:58 +01001453F: hw/ppc/prep.c
Hervé Poussineau8178e892017-01-12 09:47:29 +01001454F: hw/ppc/prep_systemio.c
1455F: hw/ppc/rs6000_mc.c
Philippe Mathieu-Daudé46fd3202021-04-16 18:18:58 +02001456F: hw/pci-host/raven.c
Philippe Mathieu-Daudé0a9464b2017-10-17 13:43:48 -03001457F: hw/isa/i82378.c
Philippe Mathieu-Daudéa48c6b52018-03-08 23:39:25 +01001458F: hw/isa/pc87312.c
Philippe Mathieu-Daudé1cd6dcc2017-10-17 13:43:46 -03001459F: hw/dma/i82374.c
Philippe Mathieu-Daudé819ce6b2019-10-04 01:03:54 +02001460F: hw/rtc/m48t59-isa.c
Philippe Mathieu-Daudéa48c6b52018-03-08 23:39:25 +01001461F: include/hw/isa/pc87312.h
Philippe Mathieu-Daudé819ce6b2019-10-04 01:03:54 +02001462F: include/hw/rtc/m48t59.h
Thomas Huth407a6882024-08-30 15:38:19 +02001463F: tests/functional/test_ppc_40p.py
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001464
Thomas Huthc5288762022-01-12 11:28:26 +01001465sPAPR (pseries)
Daniel Henrique Barboza0cbc34d2023-09-15 08:05:07 -03001466M: Nicholas Piggin <npiggin@gmail.com>
1467R: Daniel Henrique Barboza <danielhb413@gmail.com>
David Gibson14fe3222021-11-05 14:28:51 +11001468R: David Gibson <david@gibson.dropbear.id.au>
Harsh Prateek Borafcdae012023-05-03 15:06:19 +05301469R: Harsh Prateek Bora <harshpb@linux.ibm.com>
Andreas Färber8a269ca2012-08-22 05:48:44 +00001470L: qemu-ppc@nongnu.org
Daniel Henrique Barboza2e93a902022-11-17 12:32:18 -03001471S: Odd Fixes
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01001472F: hw/*/spapr*
David Gibsonf9de2da2013-06-15 11:51:52 +10001473F: include/hw/*/spapr*
1474F: hw/*/xics*
1475F: include/hw/*/xics*
Cédric Le Goaterd79d9982023-10-02 17:51:40 +02001476F: include/hw/ppc/fdt.h
1477F: hw/ppc/fdt.c
1478F: include/hw/ppc/pef.h
1479F: hw/ppc/pef.c
Thomas Huthb5d55022016-09-05 22:03:36 +02001480F: pc-bios/slof.bin
Thomas Huthc5288762022-01-12 11:28:26 +01001481F: docs/system/ppc/pseries.rst
1482F: docs/specs/ppc-spapr-*
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02001483F: tests/qtest/spapr*
Thomas Huth1cf43232019-09-10 16:41:20 +02001484F: tests/qtest/libqos/*spapr*
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02001485F: tests/qtest/rtas*
Thomas Huth1cf43232019-09-10 16:41:20 +02001486F: tests/qtest/libqos/rtas*
Thomas Huth407a6882024-08-30 15:38:19 +02001487F: tests/functional/test_ppc64_pseries.py
Thomas Huth88c90712024-08-30 15:38:21 +02001488F: tests/functional/test_ppc64_hv.py
Thomas Huthd9dff752024-10-11 15:19:19 +02001489F: tests/functional/test_ppc64_tuxrun.py
Andreas Färber8a269ca2012-08-22 05:48:44 +00001490
Cédric Le Goater1af82d42019-03-13 17:24:23 +01001491PowerNV (Non-Virtualized)
1492M: Cédric Le Goater <clg@kaod.org>
Daniel Henrique Barboza0cbc34d2023-09-15 08:05:07 -03001493M: Nicholas Piggin <npiggin@gmail.com>
Cédric Le Goater602b88e2023-06-20 07:59:03 +02001494R: Frédéric Barrat <fbarrat@linux.ibm.com>
Cédric Le Goater1af82d42019-03-13 17:24:23 +01001495L: qemu-ppc@nongnu.org
Cédric Le Goaterb0877572022-09-29 20:09:46 +02001496S: Odd Fixes
Thomas Huthc5288762022-01-12 11:28:26 +01001497F: docs/system/ppc/powernv.rst
Cédric Le Goater1af82d42019-03-13 17:24:23 +01001498F: hw/ppc/pnv*
1499F: hw/intc/pnv*
1500F: hw/intc/xics_pnv.c
Markus Armbruster157ed952020-06-09 14:23:27 +02001501F: hw/pci-host/pnv*
Cédric Le Goater1af82d42019-03-13 17:24:23 +01001502F: include/hw/ppc/pnv*
Markus Armbruster157ed952020-06-09 14:23:27 +02001503F: include/hw/pci-host/pnv*
Cédric Le Goater1af82d42019-03-13 17:24:23 +01001504F: pc-bios/skiboot.lid
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02001505F: tests/qtest/pnv*
Thomas Huth407a6882024-08-30 15:38:19 +02001506F: tests/functional/test_ppc64_powernv.py
Cédric Le Goater1af82d42019-03-13 17:24:23 +01001507
Glenn Milesde0c7d52024-02-05 17:40:16 +10001508pca955x
Glenn Miles0fa5eef2024-03-28 14:49:14 -05001509M: Glenn Miles <milesg@linux.ibm.com>
Glenn Milesde0c7d52024-02-05 17:40:16 +10001510L: qemu-ppc@nongnu.org
1511L: qemu-arm@nongnu.org
1512S: Odd Fixes
Cédric Le Goater6328d8f2024-03-25 14:48:32 +01001513F: hw/gpio/pca955*.c
1514F: include/hw/gpio/pca955*.h
Glenn Milesde0c7d52024-02-05 17:40:16 +10001515
Andreas Färber794d00b2012-08-22 05:48:48 +00001516virtex_ml507
1517M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
1518L: qemu-ppc@nongnu.org
1519S: Odd Fixes
Peter Maydell6e481d52013-06-24 11:49:32 +01001520F: hw/ppc/virtex_ml507.c
Thomas Huth407a6882024-08-30 15:38:19 +02001521F: tests/functional/test_ppc_virtex_ml507.py
Andreas Färber794d00b2012-08-22 05:48:48 +00001522
BALATON Zoltana9dd6602017-12-16 23:42:39 +01001523sam460ex
1524M: BALATON Zoltan <balaton@eik.bme.hu>
1525L: qemu-ppc@nongnu.org
1526S: Maintained
BALATON Zoltan33c6a8b2019-01-02 03:06:38 +01001527F: hw/ppc/sam460ex.c
Philippe Mathieu-Daudéb3e12162023-10-11 16:07:20 +02001528F: hw/ppc/ppc440_uc.c
Philippe Mathieu-Daudé22dc8a42023-10-11 06:38:18 +02001529F: hw/pci-host/ppc440_pcix.c
BALATON Zoltan33c6a8b2019-01-02 03:06:38 +01001530F: hw/display/sm501*
BALATON Zoltana9dd6602017-12-16 23:42:39 +01001531F: hw/ide/sii3112.c
Philippe Mathieu-Daudéde04c312019-10-04 01:03:55 +02001532F: hw/rtc/m41t80.c
BALATON Zoltan33c6a8b2019-01-02 03:06:38 +01001533F: pc-bios/canyonlands.dt[sb]
1534F: pc-bios/u-boot-sam460ex-20100605.bin
1535F: roms/u-boot-sam460ex
BALATON Zoltan623d9062024-02-21 00:22:00 +01001536F: docs/system/ppc/amigang.rst
BALATON Zoltana9dd6602017-12-16 23:42:39 +01001537
BALATON Zoltanba7e5ac2021-03-25 14:50:39 +01001538pegasos2
1539M: BALATON Zoltan <balaton@eik.bme.hu>
BALATON Zoltanba7e5ac2021-03-25 14:50:39 +01001540L: qemu-ppc@nongnu.org
1541S: Maintained
1542F: hw/ppc/pegasos2.c
1543F: hw/pci-host/mv64361.c
1544F: hw/pci-host/mv643xx.h
1545F: include/hw/pci-host/mv64361.h
1546
BALATON Zoltand9656f82023-11-07 19:40:17 +01001547amigaone
1548M: BALATON Zoltan <balaton@eik.bme.hu>
1549L: qemu-ppc@nongnu.org
1550S: Maintained
1551F: hw/ppc/amigaone.c
1552F: hw/pci-host/articia.c
1553F: include/hw/pci-host/articia.h
Thomas Huthcef1bec2024-08-30 15:38:20 +02001554F: tests/functional/test_ppc_amiga.py
BALATON Zoltand9656f82023-11-07 19:40:17 +01001555
Alexey Kardashevskiyfc8c7452021-06-25 15:51:55 +10001556Virtual Open Firmware (VOF)
1557M: Alexey Kardashevskiy <aik@ozlabs.ru>
Alexey Kardashevskiy21bde1e2021-07-08 16:56:25 +10001558R: David Gibson <david@gibson.dropbear.id.au>
Alexey Kardashevskiyfc8c7452021-06-25 15:51:55 +10001559L: qemu-ppc@nongnu.org
Daniel Henrique Barboza0cbc34d2023-09-15 08:05:07 -03001560S: Odd Fixes
Alexey Kardashevskiyfc8c7452021-06-25 15:51:55 +10001561F: hw/ppc/spapr_vof*
1562F: hw/ppc/vof*
1563F: include/hw/ppc/vof*
1564F: pc-bios/vof/*
1565F: pc-bios/vof*
1566
Alistair Francisfe0fe472020-04-23 11:30:50 -07001567RISC-V Machines
1568---------------
1569OpenTitan
1570M: Alistair Francis <Alistair.Francis@wdc.com>
1571L: qemu-riscv@nongnu.org
1572S: Supported
1573F: hw/riscv/opentitan.c
Alistair Francisdf41cbd2021-06-18 17:27:54 +10001574F: hw/*/ibex_*.c
Alistair Francisfe0fe472020-04-23 11:30:50 -07001575F: include/hw/riscv/opentitan.h
Alistair Francisdf41cbd2021-06-18 17:27:54 +10001576F: include/hw/*/ibex_*.h
Alistair Francisfe0fe472020-04-23 11:30:50 -07001577
Bin Meng56f6e312020-09-01 09:38:59 +08001578Microchip PolarFire SoC Icicle Kit
Bin Meng8372c3a2024-05-05 15:23:12 +08001579M: Bin Meng <bmeng.cn@gmail.com>
Bin Meng56f6e312020-09-01 09:38:59 +08001580L: qemu-riscv@nongnu.org
1581S: Supported
Thomas Huth5d0ce902023-09-29 14:37:27 +02001582F: docs/system/riscv/microchip-icicle-kit.rst
Bin Meng56f6e312020-09-01 09:38:59 +08001583F: hw/riscv/microchip_pfsoc.c
Bin Menga8fb0a52020-09-01 09:39:00 +08001584F: hw/char/mchp_pfsoc_mmuart.c
Bin Meng3400b152020-10-28 13:30:02 +08001585F: hw/misc/mchp_pfsoc_dmc.c
Bin Menga937b302020-10-28 13:30:04 +08001586F: hw/misc/mchp_pfsoc_ioscb.c
Bin Meng0f250652020-10-28 13:30:06 +08001587F: hw/misc/mchp_pfsoc_sysreg.c
Bin Meng56f6e312020-09-01 09:38:59 +08001588F: include/hw/riscv/microchip_pfsoc.h
Bin Menga8fb0a52020-09-01 09:39:00 +08001589F: include/hw/char/mchp_pfsoc_mmuart.h
Bin Meng3400b152020-10-28 13:30:02 +08001590F: include/hw/misc/mchp_pfsoc_dmc.h
Bin Menga937b302020-10-28 13:30:04 +08001591F: include/hw/misc/mchp_pfsoc_ioscb.h
Bin Meng0f250652020-10-28 13:30:06 +08001592F: include/hw/misc/mchp_pfsoc_sysreg.h
Bin Meng56f6e312020-09-01 09:38:59 +08001593
Vijai Kumar K7a261ba2021-04-01 23:44:55 +05301594Shakti C class SoC
1595M: Vijai Kumar K <vijai@behindbytes.com>
1596L: qemu-riscv@nongnu.org
1597S: Supported
Thomas Huth5d0ce902023-09-29 14:37:27 +02001598F: docs/system/riscv/shakti-c.rst
Vijai Kumar K7a261ba2021-04-01 23:44:55 +05301599F: hw/riscv/shakti_c.c
Vijai Kumar K07f334d2021-04-01 23:44:56 +05301600F: hw/char/shakti_uart.c
Vijai Kumar K7a261ba2021-04-01 23:44:55 +05301601F: include/hw/riscv/shakti_c.h
Vijai Kumar K07f334d2021-04-01 23:44:56 +05301602F: include/hw/char/shakti_uart.h
Vijai Kumar K7a261ba2021-04-01 23:44:55 +05301603
Alistair Francis4fcad932021-02-08 18:11:27 -08001604SiFive Machines
1605M: Alistair Francis <Alistair.Francis@wdc.com>
Bin Meng8372c3a2024-05-05 15:23:12 +08001606M: Bin Meng <bmeng.cn@gmail.com>
Alistair Francis4fcad932021-02-08 18:11:27 -08001607M: Palmer Dabbelt <palmer@dabbelt.com>
1608L: qemu-riscv@nongnu.org
1609S: Supported
Thomas Huth5d0ce902023-09-29 14:37:27 +02001610F: docs/system/riscv/sifive_u.rst
Alistair Francis4fcad932021-02-08 18:11:27 -08001611F: hw/*/*sifive*.c
1612F: include/hw/*/*sifive*.h
1613
Yoshinori Satobda19d72019-01-21 22:16:00 +09001614RX Machines
1615-----------
1616rx-gdbsim
Philippe Mathieu-Daudéb2744da2021-03-12 16:55:12 +01001617R: Yoshinori Sato <ysato@users.sourceforge.jp>
1618S: Orphan
Yoshinori Sato4adbfa42020-01-23 22:25:25 +09001619F: docs/system/target-rx.rst
Yoshinori Satobda19d72019-01-21 22:16:00 +09001620F: hw/rx/rx-gdbsim.c
Thomas Huthd5674412024-08-30 15:38:24 +02001621F: tests/functional/test_rx_gdbsim.py
Yoshinori Satobda19d72019-01-21 22:16:00 +09001622
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001623SH4 Machines
1624------------
1625R2D
Philippe Mathieu-Daudé2d53d0c2021-03-12 16:55:13 +01001626R: Yoshinori Sato <ysato@users.sourceforge.jp>
Aleksandar Markovica9fb4462020-06-11 11:53:16 +02001627R: Magnus Damm <magnus.damm@gmail.com>
Philippe Mathieu-Daudéf1660612020-10-31 16:23:40 +01001628S: Odd Fixes
Philippe Mathieu-Daudé7ae5c8b2021-02-21 19:52:29 +01001629F: hw/char/sh_serial.c
Peter Maydell6e481d52013-06-24 11:49:32 +01001630F: hw/sh4/r2d.c
Thomas Huth81527b92016-09-30 11:32:02 +02001631F: hw/intc/sh_intc.c
Philippe Mathieu-Daudéc64bd102021-02-21 19:56:35 +01001632F: hw/pci-host/sh_pci.c
Philippe Mathieu-Daudé25e79522021-02-21 19:53:35 +01001633F: hw/timer/sh_timer.c
Philippe Mathieu-Daudé65b8dc22020-06-10 23:41:52 +02001634F: include/hw/sh4/sh_intc.h
Thomas Huth670185c2023-10-26 10:00:11 +02001635F: include/hw/timer/tmu012.h
Thomas Hutha94bfe12024-09-19 20:57:47 +02001636F: tests/functional/test_sh4_r2d.py
Thomas Huthc592ff32024-10-11 15:19:34 +02001637F: tests/functional/test_sh4_tuxrun.py
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001638
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001639SPARC Machines
1640--------------
1641Sun4m
Mark Cave-Aylandf2416d32015-03-02 22:23:27 +00001642M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001643S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01001644F: hw/sparc/sun4m.c
Markus Armbrusterc468e362018-08-10 13:55:53 +02001645F: hw/sparc/sun4m_iommu.c
Thomas Huthaec2b882019-02-15 13:39:24 +01001646F: hw/display/cg3.c
1647F: hw/display/tcx.c
Thomas Huthc10a1c72016-09-19 21:58:34 +02001648F: hw/dma/sparc32_dma.c
Thomas Huth7098b792016-09-23 14:27:25 +02001649F: hw/misc/eccmemctl.c
Thomas Huthaec2b882019-02-15 13:39:24 +01001650F: hw/*/slavio_*.c
1651F: include/hw/nvram/sun_nvram.h
Thomas Huthc10a1c72016-09-19 21:58:34 +02001652F: include/hw/sparc/sparc32_dma.h
Philippe Mathieu-Daudéd0476152018-11-25 21:49:44 +01001653F: include/hw/sparc/sun4m_iommu.h
Thomas Huthaec2b882019-02-15 13:39:24 +01001654F: pc-bios/openbios-sparc32
Thomas Huthf90527d2024-09-19 20:57:44 +02001655F: tests/functional/test_sparc_sun4m.py
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001656
1657Sun4u
Mark Cave-Aylandf2416d32015-03-02 22:23:27 +00001658M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001659S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01001660F: hw/sparc64/sun4u.c
Philippe Mathieu-Daudé8ef856b2018-12-18 12:56:05 +01001661F: hw/sparc64/sun4u_iommu.c
1662F: include/hw/sparc/sun4u_iommu.h
Thomas Huth5021bfa2018-11-22 14:02:40 +01001663F: hw/pci-host/sabre.c
1664F: include/hw/pci-host/sabre.h
Philippe Mathieu-Daudé8ef856b2018-12-18 12:56:05 +01001665F: hw/pci-bridge/simba.c
1666F: include/hw/pci-bridge/simba.h
1667F: pc-bios/openbios-sparc64
Thomas Huthe3fc99b2024-08-30 15:38:13 +02001668F: tests/functional/test_sparc64_sun4u.py
Thomas Huth116667a2024-10-11 15:19:21 +02001669F: tests/functional/test_sparc64_tuxrun.py
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001670
Artyom Tarasenkoa2664ca2016-09-29 14:46:45 +02001671Sun4v
1672M: Artyom Tarasenko <atar4qemu@gmail.com>
1673S: Maintained
Fam Zheng626e4a42017-10-13 16:53:54 +08001674F: hw/sparc64/niagara.c
Philippe Mathieu-Daudé2811ac32019-10-04 01:03:56 +02001675F: hw/rtc/sun4v-rtc.c
1676F: include/hw/rtc/sun4v-rtc.h
Artyom Tarasenkoa2664ca2016-09-29 14:46:45 +02001677
Fabien Chouteauce6c7602012-05-22 10:14:28 +02001678Leon3
Clément Chigot9e2a7ca2024-01-31 09:50:47 +01001679M: Clément Chigot <chigot@adacore.com>
Frederic Konrad034e0502022-04-01 15:35:49 +01001680M: Frederic Konrad <konrad.frederic@yahoo.fr>
Fabien Chouteauce6c7602012-05-22 10:14:28 +02001681S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01001682F: hw/sparc/leon3.c
1683F: hw/*/grlib*
KONRAD Frederic162abf12019-05-15 14:31:32 +02001684F: include/hw/*/grlib*
Fabien Chouteauce6c7602012-05-22 10:14:28 +02001685
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001686S390 Machines
1687-------------
Cornelia Huckdd4ad642013-03-05 02:22:01 +00001688S390 Virtio-ccw
Christian Borntraeger7c8e2642018-12-04 14:38:02 +01001689M: Halil Pasic <pasic@linux.ibm.com>
Christian Borntraeger2c092952021-11-26 11:24:49 +01001690M: Christian Borntraeger <borntraeger@linux.ibm.com>
Eric Farman6a6d3df2022-01-12 17:40:44 +01001691M: Eric Farman <farman@linux.ibm.com>
Cornelia Huckdd4ad642013-03-05 02:22:01 +00001692S: Supported
Cornelia Huckc5bfb202015-11-04 15:59:55 +01001693F: hw/s390x/
Cornelia Huck4277af12014-10-20 19:00:03 +02001694F: include/hw/s390x/
Alex Bennée812b31d2021-07-07 14:17:43 +01001695F: configs/devices/s390x-softmmu/default.mak
Thomas Hutha7a9f512024-10-11 15:19:22 +02001696F: tests/functional/test_s390x_*
Stefan Hajnoczie18a8b32018-11-08 11:15:26 +00001697T: git https://github.com/borntraeger/qemu.git s390-next
Cornelia Huck146bd282017-10-05 17:05:23 +02001698L: qemu-s390x@nongnu.org
Cornelia Huckdd4ad642013-03-05 02:22:01 +00001699
Christian Borntraeger8e4eb422018-10-29 16:42:25 +01001700S390-ccw boot
Christian Borntraeger2c092952021-11-26 11:24:49 +01001701M: Christian Borntraeger <borntraeger@linux.ibm.com>
Cornelia Huck304584b2018-01-15 16:14:45 +01001702M: Thomas Huth <thuth@redhat.com>
1703S: Supported
Christian Borntraeger8e4eb422018-10-29 16:42:25 +01001704F: hw/s390x/ipl.*
Cornelia Huck304584b2018-01-15 16:14:45 +01001705F: pc-bios/s390-ccw/
1706F: pc-bios/s390-ccw.img
Cornelia Huckcc3d15a2020-01-28 13:24:14 +01001707F: docs/devel/s390-dasd-ipl.rst
Stefan Hajnoczie18a8b32018-11-08 11:15:26 +00001708T: git https://github.com/borntraeger/qemu.git s390-next
Cornelia Huck304584b2018-01-15 16:14:45 +01001709L: qemu-s390x@nongnu.org
1710
Christian Borntraegerd5bfb422018-10-29 16:42:24 +01001711S390 PCI
Matthew Rosatoecd66632019-09-27 09:21:01 -04001712M: Matthew Rosato <mjrosato@linux.ibm.com>
Matthew Rosato074c84b2021-03-25 09:55:09 -04001713M: Eric Farman <farman@linux.ibm.com>
Christian Borntraegerd5bfb422018-10-29 16:42:24 +01001714S: Supported
1715F: hw/s390x/s390-pci*
Matthew Rosato408b55d2020-10-26 11:34:31 -04001716F: include/hw/s390x/s390-pci*
Christian Borntraegerd5bfb422018-10-29 16:42:24 +01001717L: qemu-s390x@nongnu.org
1718
Cornelia Huck56e34832021-12-22 11:55:48 +01001719S390 channel subsystem
1720M: Halil Pasic <pasic@linux.ibm.com>
1721M: Christian Borntraeger <borntraeger@linux.ibm.com>
Eric Farman6a6d3df2022-01-12 17:40:44 +01001722M: Eric Farman <farman@linux.ibm.com>
Cornelia Huck56e34832021-12-22 11:55:48 +01001723S: Supported
1724F: hw/s390x/ccw-device.[ch]
1725F: hw/s390x/css.c
1726F: hw/s390x/css-bridge.c
1727F: include/hw/s390x/css.h
1728F: include/hw/s390x/css-bridge.h
1729F: include/hw/s390x/ioinst.h
1730F: target/s390x/ioinst.c
1731L: qemu-s390x@nongnu.org
1732
1733S390 CPU models
1734M: David Hildenbrand <david@redhat.com>
1735S: Maintained
1736F: target/s390x/cpu_features*.[ch]
1737F: target/s390x/cpu_models.[ch]
1738L: qemu-s390x@nongnu.org
1739
1740S390 SCLP-backed devices
1741M: Halil Pasic <pasic@linux.ibm.com>
1742M: Christian Borntraeger <borntraeger@linux.ibm.com>
1743S: Supported
1744F: include/hw/s390x/event-facility.h
1745F: include/hw/s390x/sclp.h
1746F: hw/char/sclp*.[hc]
1747F: hw/s390x/event-facility.c
1748F: hw/s390x/sclp*.c
1749L: qemu-s390x@nongnu.org
1750
Pierre Morelc809bbc2023-10-16 20:39:07 +02001751S390 CPU topology
1752M: Nina Schoetterl-Glausch <nsg@linux.ibm.com>
1753S: Supported
1754F: include/hw/s390x/cpu-topology.h
1755F: hw/s390x/cpu-topology.c
Pierre Morelf4f54b52023-10-16 20:39:08 +02001756F: target/s390x/kvm/stsi-topology.c
Pierre Morel0d177cd2023-10-16 20:39:18 +02001757F: docs/devel/s390-cpu-topology.rst
1758F: docs/system/s390x/cpu-topology.rst
Thomas Huthe2e9fd22024-08-30 15:38:14 +02001759F: tests/functional/test_s390x_topology.py
Pierre Morelc809bbc2023-10-16 20:39:07 +02001760
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001761X86 Machines
1762------------
1763PC
Michael S. Tsirkin046a6482013-11-06 17:16:42 +02001764M: Michael S. Tsirkin <mst@redhat.com>
Marcel Apfelbaumfe355cb2018-04-26 11:45:23 +03001765M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001766S: Supported
Michael S. Tsirkin046a6482013-11-06 17:16:42 +02001767F: include/hw/i386/
1768F: hw/i386/
Philippe Mathieu-Daudé0f25d862019-02-02 21:03:07 +01001769F: hw/pci-host/i440fx.c
Michael S. Tsirkin046a6482013-11-06 17:16:42 +02001770F: hw/pci-host/q35.c
1771F: hw/pci-host/pam.c
Philippe Mathieu-Daudé0fd61a22019-02-02 20:57:47 +01001772F: include/hw/pci-host/i440fx.h
Michael S. Tsirkin046a6482013-11-06 17:16:42 +02001773F: include/hw/pci-host/q35.h
1774F: include/hw/pci-host/pam.h
Bernhard Beschow16971892023-10-07 14:38:27 +02001775F: hw/isa/piix.c
Michael S. Tsirkin046a6482013-11-06 17:16:42 +02001776F: hw/isa/lpc_ich9.c
1777F: hw/i2c/smbus_ich9.c
1778F: hw/acpi/piix4.c
Philippe Mathieu-Daudéfbae27e2022-12-12 11:51:15 +01001779F: hw/acpi/ich9*.c
1780F: include/hw/acpi/ich9*.h
Bernhard Beschow1a6981b2023-02-13 18:30:33 +01001781F: include/hw/southbridge/ich9.h
Philippe Mathieu-Daudéfff123b2018-01-06 16:37:26 +01001782F: include/hw/southbridge/piix.h
Philippe Mathieu-Daudé6f5a3292018-12-18 12:56:06 +01001783F: hw/isa/apm.c
1784F: include/hw/isa/apm.h
Zhao Liuaf4c26e2023-10-24 17:03:05 +08001785F: tests/unit/test-x86-topo.c
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02001786F: tests/qtest/test-x86-cpuid-compat.c
Thomas Huth4007fc92024-10-11 15:19:26 +02001787F: tests/functional/test_i386_tuxrun.py
Thomas Huthcce85722024-08-30 15:38:06 +02001788F: tests/functional/test_mem_addr_space.py
1789F: tests/functional/test_pc_cpu_hotplug_props.py
Thomas Huth7cea8fe2024-10-11 15:19:27 +02001790F: tests/functional/test_x86_64_tuxrun.py
Thomas Huthbe849ef2024-08-30 15:38:15 +02001791F: tests/functional/test_x86_cpu_model_versions.py
Paolo Bonzini9cc3b732015-09-22 11:56:47 +02001792
1793PC Chipset
1794M: Michael S. Tsirkin <mst@redhat.com>
1795M: Paolo Bonzini <pbonzini@redhat.com>
Philippe Mathieu-Daudé1732be82017-10-17 13:43:50 -03001796S: Supported
Paolo Bonzini9cc3b732015-09-22 11:56:47 +02001797F: hw/char/debugcon.c
Philippe Mathieu-Daudébb3d5ea2018-03-08 23:39:22 +01001798F: hw/char/parallel*
Paolo Bonzini9cc3b732015-09-22 11:56:47 +02001799F: hw/char/serial*
1800F: hw/dma/i8257*
1801F: hw/i2c/pm_smbus.c
Philippe Mathieu-Daudé1732be82017-10-17 13:43:50 -03001802F: hw/input/pckbd.c
Paolo Bonzini9cc3b732015-09-22 11:56:47 +02001803F: hw/intc/apic*
1804F: hw/intc/ioapic*
1805F: hw/intc/i8259*
Philippe Mathieu-Daudé1854eb22018-03-08 23:39:29 +01001806F: hw/isa/isa-superio.c
Paolo Bonzini9cc3b732015-09-22 11:56:47 +02001807F: hw/misc/debugexit.c
1808F: hw/misc/pc-testdev.c
1809F: hw/timer/hpet*
1810F: hw/timer/i8254*
Philippe Mathieu-Daudébcdb9062019-10-04 01:03:53 +02001811F: hw/rtc/mc146818rtc*
Philippe Mathieu-Daudéedc46af2017-10-17 13:43:49 -03001812F: hw/watchdog/wdt_ib700.c
Philippe Mathieu-Daudé4bcbc772018-11-25 21:49:47 +01001813F: hw/watchdog/wdt_i6300esb.c
Philippe Mathieu-Daudé866e2b32017-10-17 13:44:21 -03001814F: include/hw/display/vga.h
Bernhard Beschow9cc44d92023-06-12 10:12:38 +02001815F: include/hw/char/parallel*.h
Philippe Mathieu-Daudé55f613a2018-03-08 23:39:23 +01001816F: include/hw/dma/i8257.h
Thomas Hutha2feb342016-09-05 23:31:15 +02001817F: include/hw/i2c/pm_smbus.h
Philippe Mathieu-Daudé47973a22018-03-08 23:39:24 +01001818F: include/hw/input/i8042.h
Bernhard Beschow7f546402023-02-13 18:30:31 +01001819F: include/hw/intc/ioapic*
Thomas Huth63458972023-10-17 17:26:25 +02001820F: include/hw/intc/i8259.h
Philippe Mathieu-Daudé4bcbc772018-11-25 21:49:47 +01001821F: include/hw/isa/i8259_internal.h
Philippe Mathieu-Daudé1854eb22018-03-08 23:39:29 +01001822F: include/hw/isa/superio.h
Thomas Hutha2feb342016-09-05 23:31:15 +02001823F: include/hw/timer/hpet.h
1824F: include/hw/timer/i8254*
Philippe Mathieu-Daudébcdb9062019-10-04 01:03:53 +02001825F: include/hw/rtc/mc146818rtc*
Michael S. Tsirkin046a6482013-11-06 17:16:42 +02001826
Sergio Lopez5cb48f02019-10-08 12:42:28 +02001827microvm
1828M: Sergio Lopez <slp@redhat.com>
1829M: Paolo Bonzini <pbonzini@redhat.com>
1830S: Maintained
Alex Bennée0b09d442021-10-12 16:14:47 +01001831F: docs/system/i386/microvm.rst
Sergio Lopez5cb48f02019-10-08 12:42:28 +02001832F: hw/i386/microvm.c
1833F: include/hw/i386/microvm.h
1834F: pc-bios/bios-microvm.bin
1835
Michael S. Tsirkin5da4fb0012016-03-11 16:06:56 +02001836Machine core
Eduardo Habkost24c4cd12021-11-30 15:47:22 -05001837M: Eduardo Habkost <eduardo@habkost.net>
Marcel Apfelbaumfe355cb2018-04-26 11:45:23 +03001838M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02001839R: Philippe Mathieu-Daudé <philmd@linaro.org>
Yanan Wangda7595c2021-12-28 17:22:14 +08001840R: Yanan Wang <wangyanan55@huawei.com>
Zhao Liue4a44f92024-07-23 00:44:12 +08001841R: Zhao Liu <zhao1.liu@intel.com>
Michael S. Tsirkin5da4fb0012016-03-11 16:06:56 +02001842S: Supported
Zhao Liu85178692024-01-15 17:48:42 +08001843F: hw/core/cpu-common.c
1844F: hw/core/cpu-sysemu.c
Markus Armbruster52924de2019-06-19 22:10:43 +02001845F: hw/core/machine-qmp-cmds.c
Michael S. Tsirkin5da4fb0012016-03-11 16:06:56 +02001846F: hw/core/machine.c
Yanan Wang86ce2d22021-10-26 11:46:58 +08001847F: hw/core/machine-smp.c
Thomas Huthc1629c52017-01-23 06:54:55 +01001848F: hw/core/null-machine.c
Markus Armbrusterac057872019-06-19 22:10:42 +02001849F: hw/core/numa.c
Luc Michel335d52f2019-01-07 15:23:45 +00001850F: hw/cpu/cluster.c
Markus Armbruster8ac25c82019-06-19 22:10:41 +02001851F: qapi/machine.json
Pierre Morel5de1aff2023-10-16 20:39:06 +02001852F: qapi/machine-common.json
Markus Armbruster7f7b4e72019-06-19 22:10:45 +02001853F: qapi/machine-target.json
Michael S. Tsirkin5da4fb0012016-03-11 16:06:56 +02001854F: include/hw/boards.h
Markus Armbruster2e5b09f2019-07-09 17:20:52 +02001855F: include/hw/core/cpu.h
Luc Michel335d52f2019-01-07 15:23:45 +00001856F: include/hw/cpu/cluster.h
Markus Armbruster2dd02582019-06-19 22:10:40 +02001857F: include/sysemu/numa.h
Thomas Huthcce85722024-08-30 15:38:06 +02001858F: tests/functional/test_cpu_queries.py
1859F: tests/functional/test_empty_cpu_model.py
Yanan Wang9e8e3932021-10-26 11:46:59 +08001860F: tests/unit/test-smp-parse.c
Eduardo Habkostf953c102020-12-14 16:20:32 -05001861T: git https://gitlab.com/ehabkost/qemu.git machine-next
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001862
Max Filippov16e7caa2011-09-06 03:55:56 +04001863Xtensa Machines
1864---------------
Max Filippov375847a2011-10-28 02:11:05 +04001865sim
Max Filippov16e7caa2011-09-06 03:55:56 +04001866M: Max Filippov <jcmvbkbc@gmail.com>
1867S: Maintained
Max Filippov437a8c12014-10-22 07:25:42 +04001868F: hw/xtensa/sim.c
Max Filippov375847a2011-10-28 02:11:05 +04001869
Max Filippovd9e85532018-09-10 16:33:24 -07001870virt
1871M: Max Filippov <jcmvbkbc@gmail.com>
1872S: Maintained
1873F: hw/xtensa/virt.c
1874
Max Filippov437a8c12014-10-22 07:25:42 +04001875XTFPGA (LX60, LX200, ML605, KC705)
Max Filippov375847a2011-10-28 02:11:05 +04001876M: Max Filippov <jcmvbkbc@gmail.com>
1877S: Maintained
Max Filippov437a8c12014-10-22 07:25:42 +04001878F: hw/xtensa/xtfpga.c
1879F: hw/net/opencores_eth.c
Thomas Huth2b531602023-11-07 11:21:04 +01001880F: include/hw/xtensa/mx_pic.h
Thomas Huthd1939092024-09-19 20:57:43 +02001881F: tests/functional/test_xtensa_lx60.py
Max Filippov16e7caa2011-09-06 03:55:56 +04001882
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001883Devices
1884-------
Philippe Mathieu-Daudéa8f4aee2021-08-16 21:10:12 +02001885Overall Audio frontends
1886M: Gerd Hoffmann <kraxel@redhat.com>
1887S: Odd Fixes
1888F: hw/audio/
1889F: include/hw/audio/
1890F: tests/qtest/ac97-test.c
1891F: tests/qtest/es1370-test.c
1892F: tests/qtest/intel-hda-test.c
1893F: tests/qtest/fuzz-sb16-test.c
1894
Vikram Garhwald36d7112020-11-18 11:48:46 -08001895Xilinx CAN
Vikram Garhwal32bd99d2022-11-14 15:10:57 +00001896M: Francisco Iglesias <francisco.iglesias@amd.com>
Vikram Garhwald36d7112020-11-18 11:48:46 -08001897S: Maintained
1898F: hw/net/can/xlnx-*
1899F: include/hw/net/xlnx-*
Vikram Garhwal1d2a6022023-06-06 10:19:31 +01001900F: tests/qtest/xlnx-can*-test*
Vikram Garhwald36d7112020-11-18 11:48:46 -08001901
Jiri Slabyb30934c2015-01-21 17:48:33 +01001902EDU
1903M: Jiri Slaby <jslaby@suse.cz>
1904S: Maintained
1905F: hw/misc/edu.c
Peter Maydell4df3f192023-09-27 16:11:59 +01001906F: docs/specs/edu.rst
Jiri Slabyb30934c2015-01-21 17:48:33 +01001907
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001908IDE
John Snowc0953482015-03-04 23:37:55 -05001909M: John Snow <jsnow@redhat.com>
1910L: qemu-block@nongnu.org
John Snow1b0477a2023-02-06 13:25:44 -05001911S: Odd Fixes
Thomas Huthc9f7acd2016-09-23 18:09:56 +02001912F: include/hw/ide/
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001913F: hw/ide/
John Snowc0953482015-03-04 23:37:55 -05001914F: hw/block/block.c
1915F: hw/block/cdrom.c
1916F: hw/block/hd-geometry.c
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02001917F: tests/qtest/ide-test.c
1918F: tests/qtest/ahci-test.c
1919F: tests/qtest/cdrom-test.c
Thomas Huth1cf43232019-09-10 16:41:20 +02001920F: tests/qtest/libqos/ahci*
John Snow77582e22020-10-01 12:24:01 -04001921T: git https://gitlab.com/jsnow/qemu.git ide
John Snowc0953482015-03-04 23:37:55 -05001922
Corey Minyardcaf316b2017-12-07 14:55:31 -06001923IPMI
1924M: Corey Minyard <minyard@acm.org>
1925S: Maintained
1926F: include/hw/ipmi/*
1927F: hw/ipmi/*
1928F: hw/smbios/smbios_type_38.c
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02001929F: tests/qtest/ipmi*
Stefan Hajnoczie18a8b32018-11-08 11:15:26 +00001930T: git https://github.com/cminyard/qemu.git master-ipmi-rebase
Corey Minyardcaf316b2017-12-07 14:55:31 -06001931
John Snowc0953482015-03-04 23:37:55 -05001932Floppy
1933M: John Snow <jsnow@redhat.com>
1934L: qemu-block@nongnu.org
John Snow1b0477a2023-02-06 13:25:44 -05001935S: Odd Fixes
John Snowc0953482015-03-04 23:37:55 -05001936F: hw/block/fdc.c
Philippe Mathieu-Daudé5a5d2f32021-06-14 21:32:17 +02001937F: hw/block/fdc-internal.h
Philippe Mathieu-Daudé72ea60e2021-06-14 21:32:18 +02001938F: hw/block/fdc-isa.c
Philippe Mathieu-Daudé14307592021-06-14 21:32:19 +02001939F: hw/block/fdc-sysbus.c
John Snowc0953482015-03-04 23:37:55 -05001940F: include/hw/block/fdc.h
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02001941F: tests/qtest/fdc-test.c
John Snow77582e22020-10-01 12:24:01 -04001942T: git https://gitlab.com/jsnow/qemu.git ide
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001943
Maciej S. Szmigieroee344762021-11-20 19:41:58 +01001944Hyper-V VMBus
1945M: Maciej S. Szmigiero <maciej.szmigiero@oracle.com>
1946S: Odd Fixes
1947F: hw/hyperv/vmbus.c
1948F: include/hw/hyperv/vmbus*.h
1949
Peter Maydellf5f487b2011-09-17 17:26:15 +01001950OMAP
1951M: Peter Maydell <peter.maydell@linaro.org>
Philippe Mathieu-Daudé8ef350b2020-01-20 19:59:27 +01001952L: qemu-arm@nongnu.org
Peter Maydellf5f487b2011-09-17 17:26:15 +01001953S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01001954F: hw/*/omap*
Thomas Huthed0db862016-02-25 12:22:04 +01001955F: include/hw/arm/omap.h
Philippe Mathieu-Daudé66278f82020-11-20 16:45:45 +01001956F: docs/system/arm/sx1.rst
Peter Maydellf5f487b2011-09-17 17:26:15 +01001957
Paolo Bonzini28d54e52015-09-22 11:37:27 +02001958IPack
1959M: Alberto Garcia <berto@igalia.com>
1960S: Odd Fixes
1961F: hw/char/ipoctal232.c
1962F: hw/ipack/
1963
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001964PCI
1965M: Michael S. Tsirkin <mst@redhat.com>
Marcel Apfelbaumfe355cb2018-04-26 11:45:23 +03001966M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001967S: Supported
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01001968F: include/hw/pci/*
Paolo Bonzinif178bc62015-09-22 11:56:48 +02001969F: hw/misc/pci-testdev.c
Michael S. Tsirkinca818cf2012-12-12 15:11:55 +02001970F: hw/pci/*
Paolo Bonzinif178bc62015-09-22 11:56:48 +02001971F: hw/pci-bridge/*
Philippe Mathieu-Daudé61c7f982020-09-13 21:53:48 +02001972F: qapi/pci.json
Philippe Mathieu-Daudé68179922017-09-08 14:36:25 -03001973F: docs/pci*
1974F: docs/specs/*pci*
Michael S. Tsirkin0e0b3592015-06-23 08:09:34 +02001975
Huai-Cheng Kuo5fb52f62022-10-14 16:10:41 +01001976PCIE DOE
1977M: Huai-Cheng Kuo <hchkuo@avery-design.com.tw>
1978M: Chris Browy <cbrowy@avery-design.com>
1979S: Supported
1980F: include/hw/pci/pcie_doe.h
1981F: hw/pci/pcie_doe.c
1982
Michael S. Tsirkind31e5ae2015-08-12 12:17:36 +03001983ACPI/SMBIOS
Michael S. Tsirkin0e0b3592015-06-23 08:09:34 +02001984M: Michael S. Tsirkin <mst@redhat.com>
1985M: Igor Mammedov <imammedo@redhat.com>
Ani Sinha104593c2023-03-29 09:38:34 +05301986R: Ani Sinha <anisinha@redhat.com>
Michael S. Tsirkin0e0b3592015-06-23 08:09:34 +02001987S: Supported
1988F: include/hw/acpi/*
Philippe Mathieu-Daudéa2eb5c02018-12-11 17:34:06 +01001989F: include/hw/firmware/smbios.h
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01001990F: hw/acpi/*
Michael S. Tsirkind31e5ae2015-08-12 12:17:36 +03001991F: hw/smbios/*
Michael S. Tsirkin0e0b3592015-06-23 08:09:34 +02001992F: hw/i386/acpi-build.[hc]
Michael S. Tsirkin0e0b3592015-06-23 08:09:34 +02001993F: hw/arm/virt-acpi-build.c
Philippe Mathieu-Daudé27c91882020-09-13 21:53:47 +02001994F: qapi/acpi.json
Thomas Huthb963ea12020-06-07 07:20:22 +02001995F: tests/qtest/bios-tables-test*
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02001996F: tests/qtest/acpi-utils.[hc]
Philippe Mathieu-Daudéfaae23b2018-11-25 21:49:36 +01001997F: tests/data/acpi/
Peter Maydellfcc6f732021-07-27 18:04:14 +01001998F: docs/specs/acpi_cpu_hotplug.rst
1999F: docs/specs/acpi_mem_hotplug.rst
David Hildenbrand2fcd0052022-06-17 14:31:51 +02002000F: docs/specs/acpi_nvdimm.rst
Peter Maydellfcc6f732021-07-27 18:04:14 +01002001F: docs/specs/acpi_pci_hotplug.rst
2002F: docs/specs/acpi_hw_reduced_hotplug.rst
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002003
Sunil V L47fc3402023-03-02 14:42:12 +05302004ARM ACPI Subsystem
2005M: Shannon Zhao <shannon.zhaosl@gmail.com>
2006L: qemu-arm@nongnu.org
2007S: Maintained
2008F: hw/arm/virt-acpi-build.c
2009
2010RISC-V ACPI Subsystem
2011M: Sunil V L <sunilvl@ventanamicro.com>
2012L: qemu-riscv@nongnu.org
2013S: Maintained
2014F: hw/riscv/virt-acpi-build.c
2015
Ani Sinhad1355362021-12-13 10:29:24 +05302016ACPI/VIOT
2017M: Jean-Philippe Brucker <jean-philippe@linaro.org>
Ani Sinhad1355362021-12-13 10:29:24 +05302018S: Supported
2019F: hw/acpi/viot.c
2020F: hw/acpi/viot.h
2021
Ani Sinha76f831d2022-10-21 15:21:08 +05302022ACPI/AVOCADO/BIOSBITS
Ani Sinha607a0792023-03-20 17:12:33 +05302023M: Ani Sinha <anisinha@redhat.com>
Ani Sinha242a58c2022-11-11 20:41:38 +05302024M: Michael S. Tsirkin <mst@redhat.com>
Ani Sinha76f831d2022-10-21 15:21:08 +05302025S: Supported
Thomas Huth05caa062024-08-30 15:38:23 +02002026F: tests/functional/acpi-bits/*
2027F: tests/functional/test_acpi_bits.py
Ani Sinha76f831d2022-10-21 15:21:08 +05302028F: docs/devel/acpi-bits.rst
2029
Dongjiu Gengf7e462f2020-05-12 11:06:09 +08002030ACPI/HEST/GHES
Dongjiu Gengd6eed462021-03-11 19:29:04 +08002031R: Dongjiu Geng <gengdongjiu1@gmail.com>
Dongjiu Gengf7e462f2020-05-12 11:06:09 +08002032L: qemu-arm@nongnu.org
2033S: Maintained
2034F: hw/acpi/ghes.c
2035F: include/hw/acpi/ghes.h
2036F: docs/specs/acpi_hest_ghes.rst
2037
Andreas Färberaaade8d2012-08-22 05:48:47 +00002038ppc4xx
Andreas Färberaaade8d2012-08-22 05:48:47 +00002039L: qemu-ppc@nongnu.org
David Gibson0f514ee2021-09-21 13:02:17 +10002040S: Orphan
Cédric Le Goatere20dbe52023-10-02 17:51:38 +02002041F: hw/ppc/ppc4xx*.c
2042F: hw/ppc/ppc440_uc.c
2043F: hw/ppc/ppc440.h
Philippe Mathieu-Daudéaa3a41f2017-10-17 13:43:45 -03002044F: hw/i2c/ppc4xx_i2c.c
Philippe Mathieu-Daudé4d641f32023-10-11 06:56:51 +02002045F: include/hw/pci-host/ppc4xx.h
Thomas Huthb5d55022016-09-05 22:03:36 +02002046F: include/hw/ppc/ppc4xx.h
Philippe Mathieu-Daudéaa3a41f2017-10-17 13:43:45 -03002047F: include/hw/i2c/ppc4xx_i2c.h
Peter Maydell34d08312020-12-12 00:15:31 +00002048F: hw/intc/ppc-uic.c
2049F: include/hw/intc/ppc-uic.h
Andreas Färberaaade8d2012-08-22 05:48:47 +00002050
Paolo Bonzini61af0ee2015-09-22 11:40:00 +02002051Character devices
Paolo Bonzini2185fd62018-10-19 14:25:42 +02002052M: Marc-André Lureau <marcandre.lureau@redhat.com>
2053R: Paolo Bonzini <pbonzini@redhat.com>
Paolo Bonzini61af0ee2015-09-22 11:40:00 +02002054S: Odd Fixes
2055F: hw/char/
Thomas Huth63fc0722023-09-29 14:44:39 +02002056F: include/hw/char/
Paolo Bonzini61af0ee2015-09-22 11:40:00 +02002057
Paolo Bonzinif536f112015-09-22 11:40:00 +02002058Network devices
2059M: Jason Wang <jasowang@redhat.com>
2060S: Odd Fixes
2061F: hw/net/
Philippe Mathieu-Daudé6061b5c2017-10-17 13:43:52 -03002062F: include/hw/net/
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02002063F: tests/qtest/virtio-net-test.c
Thomas Hutheeba3d72024-08-30 15:38:07 +02002064F: tests/functional/test_info_usernet.py
Jens Freimann9711cd02019-10-29 12:49:04 +01002065F: docs/virtio-net-failover.rst
Stefan Hajnoczie18a8b32018-11-08 11:15:26 +00002066T: git https://github.com/jasowang/qemu.git net
Paolo Bonzinif536f112015-09-22 11:40:00 +02002067
Philippe Mathieu-Daudée0c9d0c2019-05-06 00:47:37 +02002068Parallel NOR Flash devices
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02002069M: Philippe Mathieu-Daudé <philmd@linaro.org>
Philippe Mathieu-Daudée0c9d0c2019-05-06 00:47:37 +02002070T: git https://gitlab.com/philmd/qemu.git pflash-next
2071S: Maintained
2072F: hw/block/pflash_cfi*.c
2073F: include/hw/block/flash.h
2074
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002075SCSI
Paolo Bonzinide7724f2012-02-22 15:59:52 +01002076M: Paolo Bonzini <pbonzini@redhat.com>
Fam Zhengfe5ca462018-11-21 23:30:36 +08002077R: Fam Zheng <fam@euphon.net>
Paolo Bonzinide7724f2012-02-22 15:59:52 +01002078S: Supported
Thomas Huth74460f32016-09-05 22:11:41 +02002079F: include/hw/scsi/*
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01002080F: hw/scsi/*
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02002081F: tests/qtest/virtio-scsi-test.c
Philippe Mathieu-Daudéb43957d2021-01-26 12:16:38 +01002082F: tests/qtest/fuzz-virtio-scsi-test.c
Mark Cave-Aylandce94fa72021-04-07 20:58:01 +01002083F: tests/qtest/am53c974-test.c
Philippe Mathieu-Daudéaa629762021-11-23 12:17:32 +01002084F: tests/qtest/fuzz-lsi53c895a-test.c
Stefan Hajnoczie18a8b32018-11-08 11:15:26 +00002085T: git https://github.com/bonzini/qemu.git scsi-next
Paolo Bonzinide7724f2012-02-22 15:59:52 +01002086
Peter A. G. Crosthwaitefcb56292012-08-06 11:38:19 +10002087SSI
Alistair Francisc22e5802018-03-01 11:05:58 +00002088M: Alistair Francis <alistair@alistair23.me>
Peter A. G. Crosthwaitefcb56292012-08-06 11:38:19 +10002089S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01002090F: hw/ssi/*
Cédric Le Goater2389bcc2022-10-24 11:20:15 +02002091F: hw/block/m25p80*
Philippe Mathieu-Daudé982d0092017-09-08 14:36:26 -03002092F: include/hw/ssi/ssi.h
Alistair Francis4b46ba62015-08-25 15:45:06 +01002093X: hw/ssi/xilinx_*
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02002094F: tests/qtest/m25p80-test.c
Alistair Francis4b46ba62015-08-25 15:45:06 +01002095
2096Xilinx SPI
Alistair Francisc22e5802018-03-01 11:05:58 +00002097M: Alistair Francis <alistair@alistair23.me>
Alistair Francis4b46ba62015-08-25 15:45:06 +01002098S: Maintained
2099F: hw/ssi/xilinx_*
Peter A. G. Crosthwaitefcb56292012-08-06 11:38:19 +10002100
Philippe Mathieu-Daudé076a0fc2018-03-09 17:09:45 +00002101SD (Secure Card)
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02002102M: Philippe Mathieu-Daudé <philmd@linaro.org>
Bin Meng8372c3a2024-05-05 15:23:12 +08002103M: Bin Meng <bmeng.cn@gmail.com>
Philippe Mathieu-Daudéba412472020-06-05 06:56:38 +02002104L: qemu-block@nongnu.org
Philippe Mathieu-Daudé076a0fc2018-03-09 17:09:45 +00002105S: Odd Fixes
2106F: include/hw/sd/sd*
2107F: hw/sd/core.c
2108F: hw/sd/sd*
Philippe Mathieu-Daudé1232ed12019-10-12 08:54:24 +02002109F: hw/sd/ssi-sd.c
Philippe Mathieu-Daudé59b63d72021-06-29 10:09:28 +02002110F: tests/qtest/fuzz-sdcard-test.c
2111F: tests/qtest/sdhci-test.c
Philippe Mathieu-Daudé076a0fc2018-03-09 17:09:45 +00002112
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002113USB
Gerd Hoffmann21d61b32024-05-16 14:03:39 +02002114S: Orphan
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01002115F: hw/usb/*
Philippe Mathieu-Daudé9c3c8342021-04-25 00:41:10 +02002116F: stubs/usb-dev-stub.c
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02002117F: tests/qtest/usb-*-test.c
Peter Maydell2a49e4e2021-07-28 15:14:54 +01002118F: docs/system/devices/usb.rst
Thomas Huthbeded0f2016-02-25 10:36:05 +01002119F: include/hw/usb.h
2120F: include/hw/usb/
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002121
Paolo Bonzinie26082f2014-10-22 14:53:32 +02002122USB (serial adapter)
Paolo Bonzinie26082f2014-10-22 14:53:32 +02002123M: Samuel Thibault <samuel.thibault@ens-lyon.org>
2124S: Maintained
2125F: hw/usb/dev-serial.c
2126
Alex Williamson92e1fb52012-09-26 11:19:39 -06002127VFIO
2128M: Alex Williamson <alex.williamson@redhat.com>
Alex Williamson2696da62023-06-28 11:29:32 -06002129M: Cédric Le Goater <clg@redhat.com>
Alex Williamson92e1fb52012-09-26 11:19:39 -06002130S: Supported
Kim Phillipscf7087d2014-12-19 15:24:06 -07002131F: hw/vfio/*
Thomas Huth99b88c62016-03-10 09:39:09 -07002132F: include/hw/vfio/
Philippe Mathieu-Daudé4e779bf2021-02-02 16:56:11 +01002133F: docs/igd-assign.txt
Avihai Horon8e0b21e2024-04-07 11:11:25 +03002134F: docs/devel/migration/vfio.rst
Avihai Horona0359b52024-05-15 16:21:35 +03002135F: qapi/vfio.json
Alex Williamson92e1fb52012-09-26 11:19:39 -06002136
Dong Jia Shi5eb74552017-05-17 02:48:13 +02002137vfio-ccw
Christian Borntraeger79139382018-10-29 16:42:22 +01002138M: Eric Farman <farman@linux.ibm.com>
Matthew Rosato074c84b2021-03-25 09:55:09 -04002139M: Matthew Rosato <mjrosato@linux.ibm.com>
Dong Jia Shi5eb74552017-05-17 02:48:13 +02002140S: Supported
2141F: hw/vfio/ccw.c
2142F: hw/s390x/s390-ccw.c
2143F: include/hw/s390x/s390-ccw.h
Jason J. Herne44445d82019-04-04 10:34:20 -04002144F: include/hw/s390x/vfio-ccw.h
Cornelia Huck146bd282017-10-05 17:05:23 +02002145L: qemu-s390x@nongnu.org
Dong Jia Shi5eb74552017-05-17 02:48:13 +02002146
Tony Krowiaka51b3152018-10-10 13:03:06 -04002147vfio-ap
Tony Krowiaka51b3152018-10-10 13:03:06 -04002148M: Tony Krowiak <akrowiak@linux.ibm.com>
2149M: Halil Pasic <pasic@linux.ibm.com>
Matthew Rosato074c84b2021-03-25 09:55:09 -04002150M: Jason Herne <jjherne@linux.ibm.com>
Tony Krowiaka51b3152018-10-10 13:03:06 -04002151S: Supported
2152F: hw/s390x/ap-device.c
2153F: hw/s390x/ap-bridge.c
2154F: include/hw/s390x/ap-device.h
2155F: include/hw/s390x/ap-bridge.h
Tony Krowiak2fe29422018-10-10 13:03:07 -04002156F: hw/vfio/ap.c
Cornelia Huckf58f0842020-03-18 11:39:40 +01002157F: docs/system/s390x/vfio-ap.rst
Tony Krowiaka51b3152018-10-10 13:03:06 -04002158L: qemu-s390x@nongnu.org
2159
Eric Auger6e6d8ac2023-11-21 16:44:00 +08002160iommufd
2161M: Yi Liu <yi.l.liu@intel.com>
2162M: Eric Auger <eric.auger@redhat.com>
2163M: Zhenzhong Duan <zhenzhong.duan@intel.com>
2164S: Supported
2165F: backends/iommufd.c
2166F: include/sysemu/iommufd.h
Zhenzhong Duan1f94b212024-06-05 16:30:27 +08002167F: backends/host_iommu_device.c
2168F: include/sysemu/host_iommu_device.h
Yi Liud6b5c4c2023-11-21 16:44:01 +08002169F: include/qemu/chardev_open.h
2170F: util/chardev_open.c
Zhenzhong Duan98dad2b2023-11-21 16:44:26 +08002171F: docs/devel/vfio-iommufd.rst
Eric Auger6e6d8ac2023-11-21 16:44:00 +08002172
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002173vhost
2174M: Michael S. Tsirkin <mst@redhat.com>
Stefano Garzarella7967b7e2024-07-04 10:13:36 +02002175R: Stefano Garzarella <sgarzare@redhat.com>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002176S: Supported
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01002177F: hw/*/*vhost*
Marc-André Lureau482580a2019-03-08 15:04:44 +01002178F: docs/interop/vhost-user.json
Marc-André Lureaued1be662019-03-15 19:07:35 +01002179F: docs/interop/vhost-user.rst
Philippe Mathieu-Daudé72c1e862018-11-25 21:49:49 +01002180F: contrib/vhost-user-*/
Marc-André Lureauf24bb722019-05-03 15:00:31 +02002181F: backends/vhost-user.c
2182F: include/sysemu/vhost-user-backend.h
Stefan Weil viaec09f222022-11-26 16:25:06 +01002183F: subprojects/libvhost-user/
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002184
Eugenio Pérez2b6fc0b2023-03-31 17:04:10 +02002185vhost-shadow-virtqueue
2186R: Eugenio Pérez <eperezma@redhat.com>
2187F: hw/virtio/vhost-shadow-virtqueue.*
2188
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002189virtio
Michael S. Tsirkina75143e2014-01-26 12:39:55 +02002190M: Michael S. Tsirkin <mst@redhat.com>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002191S: Supported
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01002192F: hw/*/virtio*
Thomas Huth72fa6052016-09-23 18:11:21 +02002193F: hw/virtio/Makefile.objs
2194F: hw/virtio/trace-events
Markus Armbruster3b311252022-10-20 14:04:58 +02002195F: qapi/virtio.json
Michael S. Tsirkin6a084ea2015-06-15 16:20:21 +02002196F: net/vhost-user.c
Thomas Huth494f7b52016-02-25 11:13:03 +01002197F: include/hw/virtio/
Thomas Huth4db546d2022-12-12 18:48:41 +01002198F: docs/devel/virtio*
Avihai Horon8e0b21e2024-04-07 11:11:25 +03002199F: docs/devel/migration/virtio.rst
Thomas Huthcce85722024-08-30 15:38:06 +02002200F: tests/functional/test_virtio_version.py
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002201
David Hildenbrand6d7b25a2020-03-12 14:37:25 +01002202virtio-balloon
2203M: Michael S. Tsirkin <mst@redhat.com>
2204M: David Hildenbrand <david@redhat.com>
2205S: Maintained
Thomas Huth14dc58e2022-01-05 12:52:45 +01002206F: docs/interop/virtio-balloon-stats.rst
David Hildenbrand6d7b25a2020-03-12 14:37:25 +01002207F: hw/virtio/virtio-balloon*.c
2208F: include/hw/virtio/virtio-balloon.h
Philippe Mathieu-Daudé8d7f2e72023-10-04 11:06:28 +02002209F: system/balloon.c
David Hildenbrand6d7b25a2020-03-12 14:37:25 +01002210F: include/sysemu/balloon.h
2211
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002212virtio-9p
Greg Kurz8c1cd712016-06-17 16:35:05 +02002213M: Greg Kurz <groug@kaod.org>
Christian Schoenebeck233982a2020-05-14 08:06:43 +02002214M: Christian Schoenebeck <qemu_oss@crudebyte.com>
Christian Schoenebeck3548fa02023-07-03 16:34:17 +02002215S: Maintained
Christian Schoenebeck6f569082021-05-06 15:12:23 +02002216W: https://wiki.qemu.org/Documentation/9p
Andreas Färberaebeca22012-04-13 17:19:12 +02002217F: hw/9pfs/
Greg Kurzb8278912019-05-29 12:24:44 +02002218X: hw/9pfs/xen-9p*
Andreas Färberaebeca22012-04-13 17:19:12 +02002219F: fsdev/
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02002220F: tests/qtest/virtio-9p-test.c
Christian Schoenebeck818e42f2022-11-28 18:12:04 +01002221F: tests/qtest/libqos/virtio-9p*
Greg Kurz1a001952021-01-15 14:42:24 +01002222T: git https://gitlab.com/gkurz/qemu.git 9p-next
Christian Schoenebeck90225f92021-01-30 15:39:14 +01002223T: git https://github.com/cschoenebeck/qemu.git 9p.next
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002224
2225virtio-blk
Stefan Hajnoczi54d01a02012-11-09 14:29:03 +01002226M: Stefan Hajnoczi <stefanha@redhat.com>
Stefan Hajnoczib457a5f2015-04-29 15:13:25 +01002227L: qemu-block@nongnu.org
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002228S: Supported
Daniil Tatianind9cf55a2022-09-06 10:31:08 +03002229F: hw/block/virtio-blk-common.c
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01002230F: hw/block/virtio-blk.c
Stefan Hajnoczib457a5f2015-04-29 15:13:25 +01002231F: hw/block/dataplane/*
Daniil Tatianind9cf55a2022-09-06 10:31:08 +03002232F: include/hw/virtio/virtio-blk-common.h
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02002233F: tests/qtest/virtio-blk-test.c
Stefan Hajnoczie18a8b32018-11-08 11:15:26 +00002234T: git https://github.com/stefanha/qemu.git block
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002235
Cornelia Huckdd4ad642013-03-05 02:22:01 +00002236virtio-ccw
Cornelia Huckc1976ae2017-07-04 11:22:15 +02002237M: Cornelia Huck <cohuck@redhat.com>
Christian Borntraeger68b91e82018-10-29 16:42:23 +01002238M: Halil Pasic <pasic@linux.ibm.com>
Eric Farman6a6d3df2022-01-12 17:40:44 +01002239M: Eric Farman <farman@linux.ibm.com>
Cornelia Huckdd4ad642013-03-05 02:22:01 +00002240S: Supported
Thomas Huth901f5f12018-07-25 14:20:16 +02002241F: hw/s390x/virtio-ccw*.[hc]
Eric Farman117d7942022-05-25 16:58:14 +02002242F: hw/s390x/vhost-*-ccw.c
Cornelia Huck99eaf132020-12-14 14:26:28 +01002243T: git https://gitlab.com/cohuck/qemu.git s390-next
Stefan Hajnoczie18a8b32018-11-08 11:15:26 +00002244T: git https://github.com/borntraeger/qemu.git s390-next
Cornelia Huck146bd282017-10-05 17:05:23 +02002245L: qemu-s390x@nongnu.org
Cornelia Huckdd4ad642013-03-05 02:22:01 +00002246
Albert Estevefaefdba2023-10-02 08:57:04 +02002247virtio-dmabuf
2248M: Albert Esteve <aesteve@redhat.com>
2249S: Supported
2250F: hw/display/virtio-dmabuf.c
2251F: include/hw/virtio/virtio-dmabuf.h
2252F: tests/unit/test-virtio-dmabuf.c
2253
Dr. David Alan Gilbertbad7d2c32019-10-21 11:41:36 +01002254virtiofs
Dr. David Alan Gilbertbad7d2c32019-10-21 11:41:36 +01002255M: Stefan Hajnoczi <stefanha@redhat.com>
2256S: Supported
Dr. David Alan Gilbertbad7d2c32019-10-21 11:41:36 +01002257F: hw/virtio/vhost-user-fs*
2258F: include/hw/virtio/vhost-user-fs.h
Stefan Hajnoczic96c1162023-11-11 08:49:20 +08002259L: virtio-fs@lists.linux.dev
Dr. David Alan Gilbertbad7d2c32019-10-21 11:41:36 +01002260
Gerd Hoffmanna5d4d7b2015-06-19 10:25:34 +02002261virtio-input
2262M: Gerd Hoffmann <kraxel@redhat.com>
Gerd Hoffmann1e2edb92021-08-10 10:34:49 +02002263S: Odd Fixes
Leo Yan887d5772024-01-04 21:09:43 +00002264F: docs/system/devices/vhost-user-input.rst
Gerd Hoffmanna5d4d7b2015-06-19 10:25:34 +02002265F: hw/input/virtio-input*.c
Leo Yan87c7fb72024-01-04 21:09:44 +00002266F: hw/virtio/vhost-user-input.c
Gerd Hoffmanna5d4d7b2015-06-19 10:25:34 +02002267F: include/hw/virtio/virtio-input.h
Marc-André Lureau06914c92019-05-14 12:41:26 +02002268F: contrib/vhost-user-input/*
Gerd Hoffmanna5d4d7b2015-06-19 10:25:34 +02002269
Eric Augerc1dee912020-02-14 14:27:45 +01002270virtio-iommu
2271M: Eric Auger <eric.auger@redhat.com>
2272S: Maintained
2273F: hw/virtio/virtio-iommu*.c
2274F: include/hw/virtio/virtio-iommu.h
2275
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002276virtio-serial
Laurent Vivier2501db72019-09-10 16:03:50 +02002277M: Laurent Vivier <lvivier@redhat.com>
2278R: Amit Shah <amit@kernel.org>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002279S: Supported
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01002280F: hw/char/virtio-serial-bus.c
2281F: hw/char/virtio-console.c
Amit Shah68a5e382014-11-18 18:01:27 +05302282F: include/hw/virtio/virtio-serial.h
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02002283F: tests/qtest/virtio-serial-test.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002284
Amit Shah1f51a5c2014-11-18 18:01:26 +05302285virtio-rng
Laurent Vivier2501db72019-09-10 16:03:50 +02002286M: Laurent Vivier <lvivier@redhat.com>
2287R: Amit Shah <amit@kernel.org>
Amit Shah1f51a5c2014-11-18 18:01:26 +05302288S: Supported
2289F: hw/virtio/virtio-rng.c
2290F: include/hw/virtio/virtio-rng.h
Thomas Huth750cf862016-02-25 13:44:20 +01002291F: include/sysemu/rng*.h
Amit Shah1f51a5c2014-11-18 18:01:26 +05302292F: backends/rng*.c
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02002293F: tests/qtest/virtio-rng-test.c
Amit Shah1f51a5c2014-11-18 18:01:26 +05302294
Alex Bennée62759892024-01-04 21:09:35 +00002295vhost-user-stubs
2296M: Alex Bennée <alex.bennee@linaro.org>
2297S: Maintained
2298F: hw/virtio/vhost-user-base.c
2299F: hw/virtio/vhost-user-device*
2300
Mathieu Poiriere3e01462021-06-14 14:28:42 -06002301vhost-user-rng
2302M: Mathieu Poirier <mathieu.poirier@linaro.org>
2303S: Supported
Thomas Huth4db546d2022-12-12 18:48:41 +01002304F: docs/system/devices/vhost-user-rng.rst
Mathieu Poiriere3e01462021-06-14 14:28:42 -06002305F: hw/virtio/vhost-user-rng.c
2306F: hw/virtio/vhost-user-rng-pci.c
2307F: include/hw/virtio/vhost-user-rng.h
2308F: tools/vhost-user-rng/*
2309
Viresh Kumar27ba7b02022-08-02 10:50:00 +01002310vhost-user-gpio
2311M: Alex Bennée <alex.bennee@linaro.org>
2312R: Viresh Kumar <viresh.kumar@linaro.org>
2313S: Maintained
Viresh Kumar25c60a42022-08-02 10:50:01 +01002314F: hw/virtio/vhost-user-gpio*
Viresh Kumar27ba7b02022-08-02 10:50:00 +01002315F: include/hw/virtio/vhost-user-gpio.h
Alex Bennée8fcfc822022-08-02 10:50:10 +01002316F: tests/qtest/libqos/virtio-gpio.*
Viresh Kumar27ba7b02022-08-02 10:50:00 +01002317
Manos Pitsidianakis4ae0fc12024-01-04 21:09:40 +00002318vhost-user-snd
2319M: Alex Bennée <alex.bennee@linaro.org>
2320R: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
2321S: Maintained
2322F: hw/virtio/vhost-user-snd*
2323F: include/hw/virtio/vhost-user-snd.h
2324
Milan Zamazala5dab092023-06-28 12:05:22 +02002325vhost-user-scmi
2326R: mzamazal@redhat.com
2327S: Supported
2328F: hw/virtio/vhost-user-scmi*
2329F: include/hw/virtio/vhost-user-scmi.h
Milan Zamazalb6f53ae2023-06-28 12:05:24 +02002330F: tests/qtest/libqos/virtio-scmi.*
Milan Zamazala5dab092023-06-28 12:05:22 +02002331
Gonglei60340112016-10-28 16:33:31 +08002332virtio-crypto
2333M: Gonglei <arei.gonglei@huawei.com>
2334S: Supported
2335F: hw/virtio/virtio-crypto.c
2336F: hw/virtio/virtio-crypto-pci.c
2337F: include/hw/virtio/virtio-crypto.h
2338
David Hildenbrand18129c12023-07-11 17:34:39 +02002339virtio based memory device
2340M: David Hildenbrand <david@redhat.com>
2341S: Supported
2342F: hw/virtio/virtio-md-pci.c
2343F: include/hw/virtio/virtio-md-pci.h
David Hildenbranddbdf8412023-07-11 17:34:40 +02002344F: stubs/virtio-md-pci.c
David Hildenbrand18129c12023-07-11 17:34:39 +02002345
David Hildenbrand751c7bd2020-06-26 09:22:39 +02002346virtio-mem
2347M: David Hildenbrand <david@redhat.com>
2348S: Supported
2349W: https://virtio-mem.gitlab.io/
2350F: hw/virtio/virtio-mem.c
2351F: hw/virtio/virtio-mem-pci.h
2352F: hw/virtio/virtio-mem-pci.c
2353F: include/hw/virtio/virtio-mem.h
2354
Manos Pitsidianakis2880e672023-10-23 15:03:18 +03002355virtio-snd
2356M: Gerd Hoffmann <kraxel@redhat.com>
2357R: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
2358S: Supported
2359F: hw/audio/virtio-snd.c
Manos Pitsidianakis24269082023-10-23 15:03:19 +03002360F: hw/audio/virtio-snd-pci.c
Manos Pitsidianakis2880e672023-10-23 15:03:18 +03002361F: include/hw/audio/virtio-snd.h
Manos Pitsidianakisf54fea12023-10-23 15:03:28 +03002362F: docs/system/devices/virtio-snd.rst
Manos Pitsidianakis2880e672023-10-23 15:03:18 +03002363
Keith Buschf3c507a2013-06-04 09:17:10 -06002364nvme
Philippe Mathieu-Daudé8261cc12020-04-21 14:22:36 +02002365M: Keith Busch <kbusch@kernel.org>
Keith Busche8cc43d2020-07-06 11:29:22 -07002366M: Klaus Jensen <its@irrelevant.dk>
Klaus Jensen00d7dff2024-02-08 13:54:20 +01002367R: Jesper Devantier <foss@defmacro.it>
Kevin Wolfc95e4c02015-04-30 15:15:13 +02002368L: qemu-block@nongnu.org
Keith Buschf3c507a2013-06-04 09:17:10 -06002369S: Supported
Klaus Jensen88eea452021-04-14 22:14:30 +02002370F: hw/nvme/*
Philippe Mathieu-Daudédc0b4d92020-07-01 16:06:34 +02002371F: include/block/nvme.h
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02002372F: tests/qtest/nvme-test.c
Thomas Huth4db546d2022-12-12 18:48:41 +01002373F: docs/system/devices/nvme.rst
Keith Busche8cc43d2020-07-06 11:29:22 -07002374T: git git://git.infradead.org/qemu-nvme.git nvme-next
Keith Buschf3c507a2013-06-04 09:17:10 -06002375
Jeuk Kimbc4e68d2023-09-06 16:43:48 +09002376ufs
2377M: Jeuk Kim <jeuk20.kim@samsung.com>
2378S: Supported
2379F: hw/ufs/*
2380F: include/block/ufs.h
Jeuk Kim631c8722023-09-06 16:43:51 +09002381F: tests/qtest/ufs-test.c
Jeuk Kimbc4e68d2023-09-06 16:43:48 +09002382
Hannes Reinecked383c622014-04-16 16:44:19 +02002383megasas
Philippe Mathieu-Daudé3fdfb8b2017-09-10 14:15:57 -03002384M: Hannes Reinecke <hare@suse.com>
Kevin Wolfc95e4c02015-04-30 15:15:13 +02002385L: qemu-block@nongnu.org
Hannes Reinecked383c622014-04-16 16:44:19 +02002386S: Supported
2387F: hw/scsi/megasas.c
2388F: hw/scsi/mfi.h
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02002389F: tests/qtest/megasas-test.c
Philippe Mathieu-Daudéc887d332021-01-26 12:16:37 +01002390F: tests/qtest/fuzz-megasas-test.c
Hannes Reinecked383c622014-04-16 16:44:19 +02002391
Dmitry Fleytman605d52e2016-06-01 11:23:39 +03002392Network packet abstractions
Philippe Mathieu-Daudébf4835a2018-01-08 15:34:06 -03002393M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
Akihiko Odakic8110e72023-05-23 11:43:38 +09002394R: Akihiko Odaki <akihiko.odaki@daynix.com>
Dmitry Fleytman605d52e2016-06-01 11:23:39 +03002395S: Maintained
2396F: include/net/eth.h
2397F: net/eth.c
2398F: hw/net/net_rx_pkt*
2399F: hw/net/net_tx_pkt*
2400
Dmitry Fleytman622fb502014-08-27 08:58:43 +03002401Vmware
Philippe Mathieu-Daudébf4835a2018-01-08 15:34:06 -03002402M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
Dmitry Fleytman622fb502014-08-27 08:58:43 +03002403S: Maintained
Thomas Huth6c493722023-11-07 11:27:38 +01002404F: docs/specs/vmw_pvscsi-spec.txt
2405F: hw/display/vmware_vga.c
Dmitry Fleytman622fb502014-08-27 08:58:43 +03002406F: hw/net/vmxnet*
2407F: hw/scsi/vmw_pvscsi*
Thomas Huth6c493722023-11-07 11:27:38 +01002408F: pc-bios/efi-vmxnet3.rom
2409F: pc-bios/vgabios-vmware.bin
2410F: roms/config.vga-vmware
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02002411F: tests/qtest/vmxnet3-test.c
Peter Maydell8472cc52023-09-27 16:11:58 +01002412F: docs/specs/vwm_pvscsi-spec.rst
Dmitry Fleytman622fb502014-08-27 08:58:43 +03002413
Scott Feldmande24d3f2015-03-13 21:09:32 -07002414Rocker
Scott Feldmande24d3f2015-03-13 21:09:32 -07002415M: Jiri Pirko <jiri@resnulli.us>
2416S: Maintained
2417F: hw/net/rocker/
Markus Armbruster92a3c6a2020-11-02 09:15:49 +01002418F: qapi/rocker.json
Thomas Huthde850942016-09-27 16:33:46 +02002419F: tests/rocker/
Peter Maydell9ca68762024-08-09 17:37:54 +01002420F: docs/specs/rocker.rst
Scott Feldmande24d3f2015-03-13 21:09:32 -07002421
Dmitry Fleytman093454e2016-06-01 11:23:44 +03002422e1000x
Philippe Mathieu-Daudébf4835a2018-01-08 15:34:06 -03002423M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
Akihiko Odaki8c061aa2023-02-23 19:20:12 +09002424R: Akihiko Odaki <akihiko.odaki@daynix.com>
Dmitry Fleytman093454e2016-06-01 11:23:44 +03002425S: Maintained
2426F: hw/net/e1000x*
2427
Dmitry Fleytman6f3fbe42016-06-01 11:23:45 +03002428e1000e
Philippe Mathieu-Daudébf4835a2018-01-08 15:34:06 -03002429M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
Akihiko Odaki8c061aa2023-02-23 19:20:12 +09002430R: Akihiko Odaki <akihiko.odaki@daynix.com>
Dmitry Fleytman6f3fbe42016-06-01 11:23:45 +03002431S: Maintained
2432F: hw/net/e1000e*
Philippe Mathieu-Daudé7d6a4f12021-03-10 19:31:22 +01002433F: tests/qtest/fuzz-e1000e-test.c
Akihiko Odaki0c2c2d42023-02-23 19:20:13 +09002434F: tests/qtest/e1000e-test.c
2435F: tests/qtest/libqos/e1000e.*
Dmitry Fleytman6f3fbe42016-06-01 11:23:45 +03002436
Akihiko Odaki3a977de2023-03-09 11:54:57 +08002437igb
2438M: Akihiko Odaki <akihiko.odaki@daynix.com>
Sriram Yagnaraman92360d62024-02-28 09:06:25 +01002439R: Sriram Yagnaraman <sriram.yagnaraman@ericsson.com>
Akihiko Odaki3a977de2023-03-09 11:54:57 +08002440S: Maintained
Akihiko Odaki136e9db2023-02-23 19:50:57 +09002441F: docs/system/devices/igb.rst
Akihiko Odaki3a977de2023-03-09 11:54:57 +08002442F: hw/net/igb*
Thomas Huth4c0a2df2024-08-30 15:38:11 +02002443F: tests/functional/test_netdev_ethtool.py
Akihiko Odaki45cb69b2023-03-10 14:11:25 +08002444F: tests/qtest/igb-test.c
2445F: tests/qtest/libqos/igb.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002446
Stefan Weilebc23272017-11-16 20:49:02 +01002447eepro100
2448M: Stefan Weil <sw@weilnetz.de>
2449S: Maintained
2450F: hw/net/eepro100.c
2451
Sven Schnelle34ea0232019-10-23 10:42:44 +02002452tulip
2453M: Sven Schnelle <svens@stackframe.org>
2454S: Maintained
2455F: hw/net/tulip.c
2456F: hw/net/tulip.h
2457
Patrick Venture065177e2021-04-12 12:45:22 -07002458pca954x
Patrick Leis65295112024-06-26 21:16:22 +00002459M: Patrick Leis <venture@google.com>
Patrick Venture065177e2021-04-12 12:45:22 -07002460S: Maintained
2461F: hw/i2c/i2c_mux_pca954x.c
2462F: include/hw/i2c/i2c_mux_pca954x.h
2463
Dmitriy Sharikhin4cbb1512024-03-11 09:58:31 +00002464pcf8574
2465M: Dmitrii Sharikhin <d.sharikhin@yadro.com>
2466S: Maintained
2467F: hw/gpio/pcf8574.c
2468F: include/gpio/pcf8574.h
2469
Alistair Francise481a1f2016-10-04 13:28:09 +01002470Generic Loader
Alistair Francisc22e5802018-03-01 11:05:58 +00002471M: Alistair Francis <alistair@alistair23.me>
Alistair Francise481a1f2016-10-04 13:28:09 +01002472S: Maintained
2473F: hw/core/generic-loader.c
Alistair Francisefe15922022-05-09 11:13:39 +02002474F: hw/core/uboot_image.h
Alistair Francise481a1f2016-10-04 13:28:09 +01002475F: include/hw/core/generic-loader.h
Alex Bennée70f20112021-03-03 17:36:40 +00002476F: docs/system/generic-loader.rst
Alistair Francise481a1f2016-10-04 13:28:09 +01002477
Alex Bennéea33ff6d2021-03-03 17:36:39 +00002478Guest Loader
2479M: Alex Bennée <alex.bennee@linaro.org>
2480S: Maintained
2481F: hw/core/guest-loader.c
Alex Bennée01460372021-03-03 17:36:41 +00002482F: docs/system/guest-loader.rst
Willian Rampazzobbbd9b62021-11-05 12:53:54 -03002483F: tests/avocado/boot_xen.py
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002484
Su Hang645d3cb2018-08-16 14:05:28 +01002485Intel Hexadecimal Object File Loader
2486M: Su Hang <suhang16@mails.ucas.ac.cn>
2487S: Maintained
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02002488F: tests/qtest/hexloader-test.c
Peter Maydell4b2ff652018-11-02 11:52:37 +00002489F: tests/data/hex-loader/test.hex
Su Hang645d3cb2018-08-16 14:05:28 +01002490
Thomas Huth87a90232016-11-08 12:46:22 +01002491CHRP NVRAM
2492M: Thomas Huth <thuth@redhat.com>
2493S: Maintained
2494F: hw/nvram/chrp_nvram.c
2495F: include/hw/nvram/chrp_nvram.h
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02002496F: tests/qtest/prom-env-test.c
Thomas Huth87a90232016-11-08 12:46:22 +01002497
Ben Warren42697d82017-02-16 15:15:40 -08002498VM Generation ID
John Snow2b429892020-10-30 11:34:15 -04002499S: Orphan
Ani Sinha48006e02022-01-31 17:50:01 +05302500R: Ani Sinha <ani@anisinha.ca>
Ben Warren42697d82017-02-16 15:15:40 -08002501F: hw/acpi/vmgenid.c
2502F: include/hw/acpi/vmgenid.h
Peter Maydell912fb362023-09-27 16:12:05 +01002503F: docs/specs/vmgenid.rst
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02002504F: tests/qtest/vmgenid-test.c
Ben Warren42697d82017-02-16 15:15:40 -08002505
Philippe Mathieu-Daudéc1b29822020-03-21 17:49:01 +01002506LED
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02002507M: Philippe Mathieu-Daudé <philmd@linaro.org>
Philippe Mathieu-Daudéc1b29822020-03-21 17:49:01 +01002508S: Maintained
2509F: include/hw/misc/led.h
2510F: hw/misc/led.c
2511
Philippe Mathieu-Daudé747969d2017-06-29 12:03:08 -03002512Unimplemented device
2513M: Peter Maydell <peter.maydell@linaro.org>
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02002514R: Philippe Mathieu-Daudé <philmd@linaro.org>
Ani Sinha48006e02022-01-31 17:50:01 +05302515R: Ani Sinha <ani@anisinha.ca>
Philippe Mathieu-Daudé747969d2017-06-29 12:03:08 -03002516S: Maintained
2517F: include/hw/misc/unimp.h
2518F: hw/misc/unimp.c
2519
Philippe Mathieu-Daudé60075232019-06-24 17:17:32 +02002520Empty slot
2521M: Artyom Tarasenko <atar4qemu@gmail.com>
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02002522R: Philippe Mathieu-Daudé <philmd@linaro.org>
Ani Sinha48006e02022-01-31 17:50:01 +05302523R: Ani Sinha <ani@anisinha.ca>
Philippe Mathieu-Daudé60075232019-06-24 17:17:32 +02002524S: Maintained
2525F: include/hw/misc/empty_slot.h
2526F: hw/misc/empty_slot.c
2527
Gerd Hoffmanndbb2e472018-05-22 18:50:58 +02002528Standard VGA
2529M: Gerd Hoffmann <kraxel@redhat.com>
2530S: Maintained
2531F: hw/display/vga*
2532F: hw/display/bochs-display.c
2533F: include/hw/display/vga.h
2534F: include/hw/display/bochs-vbe.h
Peter Maydell68ed96b2023-09-27 16:12:02 +01002535F: docs/specs/standard-vga.rst
Gerd Hoffmanndbb2e472018-05-22 18:50:58 +02002536
Gerd Hoffmann58d632c2018-06-13 14:29:48 +02002537ramfb
2538M: Gerd Hoffmann <kraxel@redhat.com>
2539S: Maintained
2540F: hw/display/ramfb*.c
2541F: include/hw/display/ramfb.h
2542
Gerd Hoffmanndbb2e472018-05-22 18:50:58 +02002543virtio-gpu
Gerd Hoffmann2f8cd5a2024-05-28 10:38:55 +02002544S: Orphan
Gerd Hoffmanndbb2e472018-05-22 18:50:58 +02002545F: hw/display/virtio-gpu*
Marc-André Lureauc68082c2019-05-24 15:09:45 +02002546F: hw/display/virtio-vga.*
Gerd Hoffmanndbb2e472018-05-22 18:50:58 +02002547F: include/hw/virtio/virtio-gpu.h
Thomas Huth853c0142023-10-27 08:08:08 +02002548F: docs/system/devices/virtio-gpu.rst
Gerd Hoffmanndbb2e472018-05-22 18:50:58 +02002549
Raphael Norwitzb372d792020-03-26 04:57:27 -04002550vhost-user-blk
Raphael Norwitz1dd69542024-02-03 21:37:58 -05002551M: Raphael Norwitz <raphael@enfabrica.net>
Raphael Norwitzb372d792020-03-26 04:57:27 -04002552S: Maintained
2553F: contrib/vhost-user-blk/
2554F: contrib/vhost-user-scsi/
2555F: hw/block/vhost-user-blk.c
Daniil Tatianin8edd5672022-09-06 10:31:11 +03002556F: hw/block/virtio-blk-common.c
Raphael Norwitzb372d792020-03-26 04:57:27 -04002557F: hw/scsi/vhost-user-scsi.c
2558F: hw/virtio/vhost-user-blk-pci.c
2559F: hw/virtio/vhost-user-scsi-pci.c
2560F: include/hw/virtio/vhost-user-blk.h
2561F: include/hw/virtio/vhost-user-scsi.h
Daniil Tatianin8edd5672022-09-06 10:31:11 +03002562F: include/hw/virtio/virtio-blk-common.h
Raphael Norwitzb372d792020-03-26 04:57:27 -04002563
Marc-André Lureaubd2e44f2019-05-24 15:09:38 +02002564vhost-user-gpu
2565M: Marc-André Lureau <marcandre.lureau@redhat.com>
Marc-André Lureaubd2e44f2019-05-24 15:09:38 +02002566S: Maintained
2567F: docs/interop/vhost-user-gpu.rst
Marc-André Lureaud52c4542019-05-24 15:09:42 +02002568F: contrib/vhost-user-gpu
2569F: hw/display/vhost-user-*
Marc-André Lureaubd2e44f2019-05-24 15:09:38 +02002570
Gerd Hoffmanndbb2e472018-05-22 18:50:58 +02002571Cirrus VGA
2572M: Gerd Hoffmann <kraxel@redhat.com>
2573S: Odd Fixes
2574W: https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
2575F: hw/display/cirrus*
2576
Gerd Hoffmann72d277a2018-09-25 09:56:42 +02002577EDID Generator
2578M: Gerd Hoffmann <kraxel@redhat.com>
2579S: Maintained
2580F: hw/display/edid*
2581F: include/hw/display/edid.h
2582F: qemu-edid.c
2583
Philippe Mathieu-Daudé10386382019-02-02 21:17:45 +01002584PIIX4 South Bridge (i82371AB)
2585M: Hervé Poussineau <hpoussin@reactos.org>
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02002586M: Philippe Mathieu-Daudé <philmd@linaro.org>
Philippe Mathieu-Daudé10386382019-02-02 21:17:45 +01002587S: Maintained
Bernhard Beschow16971892023-10-07 14:38:27 +02002588F: hw/isa/piix.c
Philippe Mathieu-Daudéfff123b2018-01-06 16:37:26 +01002589F: include/hw/southbridge/piix.h
Philippe Mathieu-Daudé10386382019-02-02 21:17:45 +01002590
BALATON Zoltan28900f92023-10-15 16:15:17 +02002591VIA South Bridges (VT82C686B, VT8231)
2592M: BALATON Zoltan <balaton@eik.bme.hu>
2593M: Philippe Mathieu-Daudé <philmd@linaro.org>
2594R: Jiaxun Yang <jiaxun.yang@flygoat.com>
2595S: Maintained
2596F: hw/isa/vt82c686.c
2597F: hw/usb/vt82c686-uhci-pci.c
2598F: include/hw/isa/vt82c686.h
2599
Philippe Mathieu-Daudé15ffb432018-11-22 03:11:39 +01002600Firmware configuration (fw_cfg)
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02002601M: Philippe Mathieu-Daudé <philmd@linaro.org>
Philippe Mathieu-Daudé15ffb432018-11-22 03:11:39 +01002602R: Gerd Hoffmann <kraxel@redhat.com>
2603S: Supported
2604F: docs/specs/fw_cfg.txt
Philippe Mathieu-Daudé8d0bceb2020-10-06 13:19:09 +02002605F: hw/nvram/fw_cfg*.c
Philippe Mathieu-Daudéb15c0f72019-04-22 15:49:41 +02002606F: stubs/fw_cfg.c
Philippe Mathieu-Daudé15ffb432018-11-22 03:11:39 +01002607F: include/hw/nvram/fw_cfg.h
2608F: include/standard-headers/linux/qemu_fw_cfg.h
Thomas Huth1cf43232019-09-10 16:41:20 +02002609F: tests/qtest/libqos/fw_cfg.c
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02002610F: tests/qtest/fw_cfg-test.c
Philippe Mathieu-Daudé15ffb432018-11-22 03:11:39 +01002611T: git https://github.com/philmd/qemu.git fw_cfg-next
2612
Thomas Huth2313abf2019-01-30 16:45:40 +01002613XIVE
Thomas Huth2313abf2019-01-30 16:45:40 +01002614M: Cédric Le Goater <clg@kaod.org>
Cédric Le Goater4901a342023-06-20 07:59:05 +02002615R: Frédéric Barrat <fbarrat@linux.ibm.com>
Thomas Huth2313abf2019-01-30 16:45:40 +01002616L: qemu-ppc@nongnu.org
Cédric Le Goaterb0877572022-09-29 20:09:46 +02002617S: Odd Fixes
Thomas Huth2313abf2019-01-30 16:45:40 +01002618F: hw/*/*xive*
2619F: include/hw/*/*xive*
Cédric Le Goater24563a52019-05-21 10:24:11 +02002620F: docs/*/*xive*
Thomas Huth2313abf2019-01-30 16:45:40 +01002621
Philippe Mathieu-Daudé7bd0d132020-06-10 23:32:38 +02002622Renesas peripherals
Philippe Mathieu-Daudé2d53d0c2021-03-12 16:55:13 +01002623R: Yoshinori Sato <ysato@users.sourceforge.jp>
Philippe Mathieu-Daudé7bd0d132020-06-10 23:32:38 +02002624R: Magnus Damm <magnus.damm@gmail.com>
Philippe Mathieu-Daudéf1660612020-10-31 16:23:40 +01002625S: Odd Fixes
Yoshinori Sato645194c2019-01-21 22:15:59 +09002626F: hw/char/renesas_sci.c
Philippe Mathieu-Daudé7bd0d132020-06-10 23:32:38 +02002627F: hw/char/sh_serial.c
Yoshinori Satoc7f37ba2019-03-20 23:16:05 +09002628F: hw/timer/renesas_*.c
Philippe Mathieu-Daudé7bd0d132020-06-10 23:32:38 +02002629F: hw/timer/sh_timer.c
Yoshinori Sato645194c2019-01-21 22:15:59 +09002630F: include/hw/char/renesas_sci.h
Philippe Mathieu-Daudé7bd0d132020-06-10 23:32:38 +02002631F: include/hw/sh4/sh.h
Yoshinori Satoc7f37ba2019-03-20 23:16:05 +09002632F: include/hw/timer/renesas_*.h
Philippe Mathieu-Daudé7bd0d132020-06-10 23:32:38 +02002633
Yoshinori Satoe78597c2019-01-21 22:15:57 +09002634Renesas RX peripherals
Philippe Mathieu-Daudéb2744da2021-03-12 16:55:12 +01002635R: Yoshinori Sato <ysato@users.sourceforge.jp>
2636S: Orphan
Yoshinori Satoe78597c2019-01-21 22:15:57 +09002637F: hw/intc/rx_icu.c
Yoshinori Sato0c80f502019-01-21 22:16:00 +09002638F: hw/rx/
Yoshinori Satoe78597c2019-01-21 22:15:57 +09002639F: include/hw/intc/rx_icu.h
Yoshinori Sato0c80f502019-01-21 22:16:00 +09002640F: include/hw/rx/
Yoshinori Satoe78597c2019-01-21 22:15:57 +09002641
Pavel Pisade4d4ad2020-09-14 10:13:41 +02002642CAN bus subsystem and hardware
2643M: Pavel Pisa <pisa@cmp.felk.cvut.cz>
Francisco Iglesias02c5e062024-09-13 15:31:50 +01002644M: Francisco Iglesias <francisco.iglesias@amd.com>
Pavel Pisade4d4ad2020-09-14 10:13:41 +02002645S: Maintained
2646W: https://canbus.pages.fel.cvut.cz/
2647F: net/can/*
2648F: hw/net/can/*
2649F: include/net/can_*.h
Thomas Huth8995f1f2023-10-27 08:09:31 +02002650F: docs/system/devices/can.rst
Pavel Pisade4d4ad2020-09-14 10:13:41 +02002651
David Gibsonff8cdbb2021-09-21 13:34:35 +10002652OpenPIC interrupt controller
2653M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
2654S: Odd Fixes
2655F: hw/intc/openpic.c
2656F: include/hw/ppc/openpic.h
2657
Philippe Mathieu-Daudé6cee5472021-10-04 10:26:23 +02002658MIPS CPS
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02002659M: Philippe Mathieu-Daudé <philmd@linaro.org>
Philippe Mathieu-Daudé6cee5472021-10-04 10:26:23 +02002660S: Odd Fixes
2661F: hw/misc/mips_*
2662F: include/hw/misc/mips_*
2663
2664MIPS GIC
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02002665M: Philippe Mathieu-Daudé <philmd@linaro.org>
Philippe Mathieu-Daudé6cee5472021-10-04 10:26:23 +02002666S: Odd Fixes
2667F: hw/intc/mips_gic.c
2668F: hw/timer/mips_gictimer.c
2669F: include/hw/intc/mips_gic.h
2670F: include/hw/timer/mips_gictimer.h
2671
Cornelia Huck56e34832021-12-22 11:55:48 +01002672S390 3270 device
2673M: Halil Pasic <pasic@linux.ibm.com>
2674M: Christian Borntraeger <borntraeger@linux.ibm.com>
2675S: Odd fixes
2676F: include/hw/s390x/3270-ccw.h
2677F: hw/char/terminal3270.c
2678F: hw/s390x/3270-ccw.c
2679L: qemu-s390x@nongnu.org
2680
2681S390 diag 288 watchdog
2682M: Halil Pasic <pasic@linux.ibm.com>
2683M: Christian Borntraeger <borntraeger@linux.ibm.com>
2684S: Supported
2685F: hw/watchdog/wdt_diag288.c
2686F: include/hw/watchdog/wdt_diag288.h
2687L: qemu-s390x@nongnu.org
2688
2689S390 storage key device
2690M: Halil Pasic <pasic@linux.ibm.com>
2691M: Christian Borntraeger <borntraeger@linux.ibm.com>
2692S: Supported
2693F: hw/s390x/storage-keys.h
Eric Farman5cf9a812023-10-20 16:15:09 +02002694F: hw/s390x/s390-skeys*.c
Cornelia Huck56e34832021-12-22 11:55:48 +01002695L: qemu-s390x@nongnu.org
2696
2697S390 storage attribute device
2698M: Halil Pasic <pasic@linux.ibm.com>
2699M: Christian Borntraeger <borntraeger@linux.ibm.com>
2700S: Supported
2701F: hw/s390x/storage-attributes.h
Eric Farman5cf9a812023-10-20 16:15:09 +02002702F: hw/s390x/s390-stattrib*.c
Cornelia Huck56e34832021-12-22 11:55:48 +01002703L: qemu-s390x@nongnu.org
2704
2705S390 floating interrupt controller
2706M: Halil Pasic <pasic@linux.ibm.com>
2707M: Christian Borntraeger <borntraeger@linux.ibm.com>
2708M: David Hildenbrand <david@redhat.com>
2709S: Supported
2710F: hw/intc/s390_flic*.c
2711F: include/hw/s390x/s390_flic.h
2712L: qemu-s390x@nongnu.org
2713
Hongren (Zenithal) Zheng5028d662022-05-19 20:40:55 +08002714CanoKey
2715M: Hongren (Zenithal) Zheng <i@zenithal.me>
2716S: Maintained
2717R: Canokeys.org <contact@canokeys.org>
2718F: hw/usb/canokey.c
2719F: hw/usb/canokey.h
2720F: docs/system/devices/canokey.rst
2721
Maciej S. Szmigiero00313b52023-10-21 23:14:53 +02002722Hyper-V Dynamic Memory Protocol
2723M: Maciej S. Szmigiero <maciej.szmigiero@oracle.com>
2724S: Supported
2725F: hw/hyperv/hv-balloon*.c
2726F: hw/hyperv/hv-balloon*.h
2727F: include/hw/hyperv/dynmem-proto.h
2728F: include/hw/hyperv/hv-balloon.h
2729
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002730Subsystems
2731----------
Philippe Mathieu-Daudéa8f4aee2021-08-16 21:10:12 +02002732Overall Audio backends
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002733M: Gerd Hoffmann <kraxel@redhat.com>
Marc-André Lureaucc991392023-02-07 12:56:10 +04002734M: Marc-André Lureau <marcandre.lureau@redhat.com>
Gerd Hoffmann6bc915f2021-08-10 10:34:46 +02002735S: Odd Fixes
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002736F: audio/
Philippe Mathieu-Daudé0ebe43e2021-08-16 21:10:14 +02002737X: audio/alsaaudio.c
2738X: audio/coreaudio.c
2739X: audio/dsound*
2740X: audio/jackaudio.c
2741X: audio/ossaudio.c
2742X: audio/paaudio.c
2743X: audio/sdlaudio.c
Alexandre Ratchov663df1c2022-09-07 15:23:42 +02002744X: audio/sndioaudio.c
Philippe Mathieu-Daudé4566d142021-08-16 21:10:13 +02002745X: audio/spiceaudio.c
Markus Armbruster92a3c6a2020-11-02 09:15:49 +01002746F: qapi/audio.json
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002747
Philippe Mathieu-Daudé0ebe43e2021-08-16 21:10:14 +02002748ALSA Audio backend
2749M: Gerd Hoffmann <kraxel@redhat.com>
Christian Schoenebeck584ab342021-09-04 15:13:46 +02002750R: Christian Schoenebeck <qemu_oss@crudebyte.com>
Philippe Mathieu-Daudé0ebe43e2021-08-16 21:10:14 +02002751S: Odd Fixes
2752F: audio/alsaaudio.c
2753
2754Core Audio framework backend
2755M: Gerd Hoffmann <kraxel@redhat.com>
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02002756M: Philippe Mathieu-Daudé <philmd@linaro.org>
Christian Schoenebeck584ab342021-09-04 15:13:46 +02002757R: Christian Schoenebeck <qemu_oss@crudebyte.com>
Akihiko Odaki4f978632023-05-12 15:43:37 +01002758R: Akihiko Odaki <akihiko.odaki@daynix.com>
Philippe Mathieu-Daudé0ebe43e2021-08-16 21:10:14 +02002759S: Odd Fixes
2760F: audio/coreaudio.c
2761
2762DSound Audio backend
2763M: Gerd Hoffmann <kraxel@redhat.com>
2764S: Odd Fixes
2765F: audio/dsound*
2766
2767JACK Audio Connection Kit backend
2768M: Gerd Hoffmann <kraxel@redhat.com>
Christian Schoenebeck584ab342021-09-04 15:13:46 +02002769R: Christian Schoenebeck <qemu_oss@crudebyte.com>
Philippe Mathieu-Daudé0ebe43e2021-08-16 21:10:14 +02002770S: Odd Fixes
2771F: audio/jackaudio.c
2772
2773Open Sound System (OSS) Audio backend
2774M: Gerd Hoffmann <kraxel@redhat.com>
2775S: Odd Fixes
2776F: audio/ossaudio.c
2777
2778PulseAudio backend
2779M: Gerd Hoffmann <kraxel@redhat.com>
2780S: Odd Fixes
2781F: audio/paaudio.c
2782
2783SDL Audio backend
2784M: Gerd Hoffmann <kraxel@redhat.com>
Thomas Huth2863bd52021-10-30 08:21:06 +02002785R: Thomas Huth <huth@tuxfamily.org>
Philippe Mathieu-Daudé0ebe43e2021-08-16 21:10:14 +02002786S: Odd Fixes
2787F: audio/sdlaudio.c
2788
Alexandre Ratchov663df1c2022-09-07 15:23:42 +02002789Sndio Audio backend
2790M: Gerd Hoffmann <kraxel@redhat.com>
2791R: Alexandre Ratchov <alex@caoua.org>
2792S: Odd Fixes
2793F: audio/sndioaudio.c
2794
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002795Block layer core
2796M: Kevin Wolf <kwolf@redhat.com>
Hanna Reitzb0c47982021-08-10 16:04:11 +02002797M: Hanna Reitz <hreitz@redhat.com>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002798L: qemu-block@nongnu.org
2799S: Supported
2800F: block*
2801F: block/
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01002802F: hw/block/
Markus Armbrusterb885cdd2022-10-20 14:05:41 +02002803F: qapi/block*.json
2804F: qapi/transaction.json
Kevin Wolf4c346e02015-05-20 12:03:17 +02002805F: include/block/
Stefan Hajnoczi7f9241d2022-10-13 14:59:04 -04002806F: include/sysemu/block-*.h
Kevin Wolf46078762014-04-24 11:53:39 +02002807F: qemu-img*
Wainer dos Santos Moschetta33b2b382021-02-04 10:54:25 -03002808F: docs/tools/qemu-img.rst
Kevin Wolf46078762014-04-24 11:53:39 +02002809F: qemu-io*
Kevin Wolf29242092014-10-21 17:43:17 +02002810F: tests/qemu-iotests/
Max Reitz8dd30c82017-04-28 18:55:17 +02002811F: util/qemu-progress.c
Markus Armbruster0bcc8e52018-06-14 21:14:29 +02002812F: qobject/block-qdict.c
Thomas Huthda668aa2021-03-10 07:33:14 +01002813F: tests/unit/check-block-qdict.c
Stefan Hajnocziebe2aad2018-11-08 11:15:28 +00002814T: git https://repo.or.cz/qemu/kevin.git block
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002815
Stefan Hajnoczic607c7f2020-12-09 10:38:02 +00002816Storage daemon
2817M: Kevin Wolf <kwolf@redhat.com>
2818L: qemu-block@nongnu.org
2819S: Supported
2820F: storage-daemon/
2821F: docs/interop/qemu-storage-daemon-qmp-ref.rst
2822F: docs/tools/qemu-storage-daemon.rst
2823T: git https://repo.or.cz/qemu/kevin.git block
2824
Stefan Hajnoczid55053b2015-04-29 15:13:27 +01002825Block I/O path
2826M: Stefan Hajnoczi <stefanha@redhat.com>
Fam Zhengfe5ca462018-11-21 23:30:36 +08002827M: Fam Zheng <fam@euphon.net>
Stefan Hajnoczid55053b2015-04-29 15:13:27 +01002828L: qemu-block@nongnu.org
2829S: Supported
Paolo Bonzini36c697b2017-05-03 12:30:23 +02002830F: util/async.c
2831F: util/aio-*.c
Stefan Hajnoczi1f050a42020-03-05 17:08:02 +00002832F: util/aio-*.h
Stefan Hajnoczi433fcea2023-09-13 16:00:43 -04002833F: util/defer-call.c
Stefan Hajnoczi1f050a42020-03-05 17:08:02 +00002834F: util/fdmon-*.c
Stefan Hajnoczid55053b2015-04-29 15:13:27 +01002835F: block/io.c
Fam Zhenge1029ae2016-07-18 15:19:47 +08002836F: include/block/aio.h
Stefan Hajnoczif5a53fa2018-03-12 13:22:04 +00002837F: include/block/aio-wait.h
Stefan Hajnoczi433fcea2023-09-13 16:00:43 -04002838F: include/qemu/defer-call.h
Philippe Mathieu-Daudé0a4f9ad2017-09-08 14:36:28 -03002839F: scripts/qemugdb/aio.py
Thomas Huthda668aa2021-03-10 07:33:14 +01002840F: tests/unit/test-fdmon-epoll.c
Stefan Hajnoczie18a8b32018-11-08 11:15:26 +00002841T: git https://github.com/stefanha/qemu.git block
Stefan Hajnoczid55053b2015-04-29 15:13:27 +01002842
Paolo Bonzinie5b57282017-08-22 07:08:27 +02002843Block SCSI subsystem
2844M: Paolo Bonzini <pbonzini@redhat.com>
Fam Zhengfe5ca462018-11-21 23:30:36 +08002845R: Fam Zheng <fam@euphon.net>
Paolo Bonzinie5b57282017-08-22 07:08:27 +02002846L: qemu-block@nongnu.org
2847S: Supported
2848F: include/scsi/*
2849F: scsi/*
2850
Jeff Cody280458a2015-03-06 12:16:06 -05002851Block Jobs
Jeff Cody03283d62018-09-26 14:05:32 -04002852M: John Snow <jsnow@redhat.com>
Vladimir Sementsov-Ogievskiy9e4067b2022-05-26 14:54:32 +03002853M: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
Jeff Cody280458a2015-03-06 12:16:06 -05002854L: qemu-block@nongnu.org
2855S: Supported
2856F: blockjob.c
2857F: include/block/blockjob.h
Kevin Wolf33e9e9b2018-04-12 17:29:59 +02002858F: job.c
Kevin Wolf1a90bc82018-05-03 19:01:14 +02002859F: job-qmp.c
Markus Armbrusterc468e362018-08-10 13:55:53 +02002860F: include/qemu/job.h
Jeff Cody280458a2015-03-06 12:16:06 -05002861F: block/backup.c
2862F: block/commit.c
Jeff Cody77346022016-03-09 21:54:00 -05002863F: block/stream.c
Jeff Cody280458a2015-03-06 12:16:06 -05002864F: block/mirror.c
Kevin Wolfbf425082018-05-16 16:03:10 +02002865F: qapi/job.json
Vladimir Sementsov-Ogievskiyd7beddc2021-01-28 17:41:44 +03002866F: block/block-copy.c
Vladimir Sementsov-Ogievskiyd088e6a2022-03-03 20:43:39 +01002867F: include/block/block-copy.h
2868F: block/reqlist.c
2869F: include/block/reqlist.h
Vladimir Sementsov-Ogievskiyd003e0a2021-08-24 11:38:27 +03002870F: block/copy-before-write.h
2871F: block/copy-before-write.c
Vladimir Sementsov-Ogievskiy1c14eaa2022-03-03 20:43:44 +01002872F: block/snapshot-access.c
Vladimir Sementsov-Ogievskiyd7beddc2021-01-28 17:41:44 +03002873F: include/block/aio_task.h
2874F: block/aio_task.c
2875F: util/qemu-co-shared-resource.c
2876F: include/qemu/co-shared-resource.h
John Snow77582e22020-10-01 12:24:01 -04002877T: git https://gitlab.com/jsnow/qemu.git jobs
Vladimir Sementsov-Ogievskiy9e4067b2022-05-26 14:54:32 +03002878T: git https://gitlab.com/vsementsov/qemu.git block
Jeff Cody280458a2015-03-06 12:16:06 -05002879
Jonathan Cameron502730e2022-04-29 15:40:28 +01002880Compute Express Link
Jonathan Cameron502730e2022-04-29 15:40:28 +01002881M: Jonathan Cameron <jonathan.cameron@huawei.com>
Jonathan Cameron3456fed2023-02-28 11:39:26 +00002882R: Fan Ni <fan.ni@samsung.com>
Jonathan Cameron502730e2022-04-29 15:40:28 +01002883S: Supported
2884F: hw/cxl/
David Hildenbrand2fcd0052022-06-17 14:31:51 +02002885F: hw/mem/cxl_type3.c
Jonathan Cameron502730e2022-04-29 15:40:28 +01002886F: include/hw/cxl/
Markus Armbruster66ba1572024-02-05 09:47:46 +01002887F: qapi/cxl.json
Jonathan Cameron502730e2022-04-29 15:40:28 +01002888
John Snow538193b2016-08-04 14:18:51 -04002889Dirty Bitmaps
Eric Blakeedb05902020-05-14 13:00:03 -05002890M: Eric Blake <eblake@redhat.com>
Vladimir Sementsov-Ogievskiy9e4067b2022-05-26 14:54:32 +03002891M: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
Eric Blakeedb05902020-05-14 13:00:03 -05002892R: John Snow <jsnow@redhat.com>
John Snow538193b2016-08-04 14:18:51 -04002893L: qemu-block@nongnu.org
2894S: Supported
John Snow538193b2016-08-04 14:18:51 -04002895F: include/qemu/hbitmap.h
2896F: include/block/dirty-bitmap.h
Eric Blakebb4e58c2020-05-18 13:53:07 -05002897F: block/monitor/bitmap-qmp-cmds.c
Vladimir Sementsov-Ogievskiy00637c62019-12-19 13:16:03 +03002898F: block/dirty-bitmap.c
2899F: block/qcow2-bitmap.c
Vladimir Sementsov-Ogievskiy052db8e2019-10-26 19:56:55 +03002900F: migration/block-dirty-bitmap.c
Vladimir Sementsov-Ogievskiy00637c62019-12-19 13:16:03 +03002901F: util/hbitmap.c
Thomas Huthda668aa2021-03-10 07:33:14 +01002902F: tests/unit/test-hbitmap.c
Philippe Mathieu-Daudé5746c1c2017-09-08 14:36:32 -03002903F: docs/interop/bitmaps.rst
Eric Blakeedb05902020-05-14 13:00:03 -05002904T: git https://repo.or.cz/qemu/ericb.git bitmaps
Vladimir Sementsov-Ogievskiy9e4067b2022-05-26 14:54:32 +03002905T: git https://gitlab.com/vsementsov/qemu.git block
John Snow538193b2016-08-04 14:18:51 -04002906
Paolo Bonzini61af0ee2015-09-22 11:40:00 +02002907Character device backends
Marc-André Lureau55fc84a2017-01-30 17:37:31 +04002908M: Marc-André Lureau <marcandre.lureau@redhat.com>
Paolo Bonzini2185fd62018-10-19 14:25:42 +02002909R: Paolo Bonzini <pbonzini@redhat.com>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002910S: Maintained
Marc-André Lureau178fe0a2016-12-10 00:29:03 +03002911F: chardev/
Marc-André Lureau8228e352017-01-26 17:19:46 +04002912F: include/chardev/
Markus Armbrusterdbeee392017-08-24 21:13:58 +02002913F: qapi/char.json
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002914
Paolo Bonzinie26082f2014-10-22 14:53:32 +02002915Character Devices (Braille)
2916M: Samuel Thibault <samuel.thibault@ens-lyon.org>
2917S: Maintained
Marc-André Lureau6b10e572017-05-29 12:39:42 +04002918F: chardev/baum.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002919
Markus Armbrustere94630d2017-03-20 13:55:48 +01002920Command line option argument parsing
2921M: Markus Armbruster <armbru@redhat.com>
2922S: Supported
2923F: include/qemu/option.h
Thomas Huthda668aa2021-03-10 07:33:14 +01002924F: tests/unit/test-keyval.c
2925F: tests/unit/test-qemu-opts.c
Thomas Hutheeba3d72024-08-30 15:38:07 +02002926F: tests/functional/test_version.py
Markus Armbrustere94630d2017-03-20 13:55:48 +01002927F: util/keyval.c
2928F: util/qemu-option.c
2929
Markus Armbruster8c413e72015-01-28 11:29:57 +01002930Coverity model
2931M: Markus Armbruster <armbru@redhat.com>
2932S: Supported
2933F: scripts/coverity-model.c
2934
Peter Maydell9c263d02020-03-19 19:33:22 +00002935Coverity Scan integration
2936M: Peter Maydell <peter.maydell@linaro.org>
2937S: Maintained
2938F: scripts/coverity-scan/
2939
Peter A. G. Crosthwaited24b5692012-06-26 14:29:42 +10002940Device Tree
Alistair Francisc3c962c2019-03-26 13:53:32 -07002941M: Alistair Francis <alistair.francis@wdc.com>
2942R: David Gibson <david@gibson.dropbear.id.au>
Peter A. G. Crosthwaited24b5692012-06-26 14:29:42 +10002943S: Maintained
Philippe Mathieu-Daudé8d7f2e72023-10-04 11:06:28 +02002944F: system/device_tree.c
Thomas Huth82407512015-12-17 15:25:12 +01002945F: include/sysemu/device_tree.h
Peter A. G. Crosthwaited24b5692012-06-26 14:29:42 +10002946
Marc-André Lureau3505a222017-09-11 18:59:29 +02002947Dump
2948S: Supported
2949M: Marc-André Lureau <marcandre.lureau@redhat.com>
Markus Armbruster6d3da322019-06-19 22:10:49 +02002950F: dump/
Marc-André Lureau3505a222017-09-11 18:59:29 +02002951F: hw/misc/vmcoreinfo.c
2952F: include/hw/misc/vmcoreinfo.h
Markus Armbruster6d3da322019-06-19 22:10:49 +02002953F: include/qemu/win_dump_defs
Marc-André Lureau3505a222017-09-11 18:59:29 +02002954F: include/sysemu/dump-arch.h
2955F: include/sysemu/dump.h
Markus Armbrusterd06b7472019-06-19 22:10:47 +02002956F: qapi/dump.json
Marc-André Lureau3505a222017-09-11 18:59:29 +02002957F: scripts/dump-guest-memory.py
2958F: stubs/dump.c
Peter Maydell096d3ce2023-09-27 16:12:04 +01002959F: docs/specs/vmcoreinfo.rst
Marc-André Lureau3505a222017-09-11 18:59:29 +02002960
Markus Armbruster4f966762015-09-12 13:29:56 +02002961Error reporting
2962M: Markus Armbruster <armbru@redhat.com>
2963S: Supported
2964F: include/qapi/error.h
2965F: include/qemu/error-report.h
Markus Armbrusterabb3d372019-08-12 07:23:33 +02002966F: qapi/error.json
Markus Armbruster4f966762015-09-12 13:29:56 +02002967F: util/error.c
Zhao Liu3325af52024-03-27 19:55:39 +08002968F: util/error-report.c
Vladimir Sementsov-Ogievskiyd1d3a992020-03-24 18:36:25 +03002969F: scripts/coccinelle/err-bad-newline.cocci
2970F: scripts/coccinelle/error-use-after-free.cocci
2971F: scripts/coccinelle/error_propagate_null.cocci
2972F: scripts/coccinelle/remove_local_err.cocci
2973F: scripts/coccinelle/use-error_fatal.cocci
Vladimir Sementsov-Ogievskiy8220f3a2020-07-07 18:50:31 +02002974F: scripts/coccinelle/errp-guard.cocci
Markus Armbruster4f966762015-09-12 13:29:56 +02002975
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002976GDB stub
Alex Bennéec7b3e862019-06-06 09:27:53 +01002977M: Alex Bennée <alex.bennee@linaro.org>
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02002978R: Philippe Mathieu-Daudé <philmd@linaro.org>
Alex Bennéec7b3e862019-06-06 09:27:53 +01002979S: Maintained
Thomas Huth4db546d2022-12-12 18:48:41 +01002980F: docs/system/gdb.rst
Alex Bennée842b42d2022-09-29 12:42:22 +01002981F: gdbstub/*
Peter Maydell0dec1012021-02-11 12:27:44 +00002982F: include/exec/gdbstub.h
Alex Bennéed96bf492023-03-02 18:57:47 -08002983F: include/gdbstub/*
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002984F: gdb-xml/
Alex Bennée21750c32023-11-06 18:50:56 +00002985F: tests/tcg/multiarch/gdbstub/*
Akihiko Odaki956af7d2023-10-09 17:40:51 +01002986F: scripts/feature_to_c.py
Alex Bennéebcbc36a2023-03-02 18:57:59 -08002987F: scripts/probe-gdb-support.py
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002988
Paolo Bonzini01a9c032014-04-29 16:05:53 +02002989Memory API
2990M: Paolo Bonzini <pbonzini@redhat.com>
David Hildenbrand07b315b2021-07-23 12:05:31 +02002991M: Peter Xu <peterx@redhat.com>
2992M: David Hildenbrand <david@redhat.com>
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02002993R: Philippe Mathieu-Daudé <philmd@linaro.org>
Paolo Bonzini01a9c032014-04-29 16:05:53 +02002994S: Supported
2995F: include/exec/ioport.h
Tony Nguyen14776ab2019-08-24 04:10:58 +10002996F: include/exec/memop.h
Paolo Bonzini01a9c032014-04-29 16:05:53 +02002997F: include/exec/memory.h
Paolo Bonzini2b1641d2015-11-13 18:49:54 +01002998F: include/exec/ram_addr.h
Juan Quintela41aa4e92020-01-22 15:58:57 +01002999F: include/exec/ramblock.h
David Hildenbrand9f04dd72021-07-23 12:05:32 +02003000F: include/sysemu/memory_mapping.h
Philippe Mathieu-Daudé8d7f2e72023-10-04 11:06:28 +02003001F: system/dma-helpers.c
3002F: system/ioport.c
3003F: system/memory.c
3004F: system/memory_mapping.c
3005F: system/physmem.c
Paolo Bonzini01a9c032014-04-29 16:05:53 +02003006F: include/exec/memory-internal.h
Philippe Mathieu-Daudé044e2af2020-02-24 14:45:07 +01003007F: scripts/coccinelle/memory-region-housekeeping.cocci
Paolo Bonzini01a9c032014-04-29 16:05:53 +02003008
David Hildenbrand2fcd0052022-06-17 14:31:51 +02003009Memory devices
3010M: David Hildenbrand <david@redhat.com>
3011M: Igor Mammedov <imammedo@redhat.com>
3012R: Xiao Guangrong <xiaoguangrong.eric@gmail.com>
3013S: Supported
3014F: hw/mem/memory-device.c
3015F: hw/mem/nvdimm.c
3016F: hw/mem/pc-dimm.c
3017F: include/hw/mem/memory-device.h
3018F: include/hw/mem/nvdimm.h
3019F: include/hw/mem/pc-dimm.h
David Hildenbrand759bac62023-09-26 20:57:27 +02003020F: stubs/memory_device.c
David Hildenbrand2fcd0052022-06-17 14:31:51 +02003021F: docs/nvdimm.txt
3022
Gerd Hoffmann7ee3bf02010-12-13 21:30:37 +01003023SPICE
Gerd Hoffmann34761032024-05-28 10:38:56 +02003024S: Orphan
Peter Maydell6e481d52013-06-24 11:49:32 +01003025F: include/ui/qemu-spice.h
Thomas Huth438528a2016-02-25 10:36:06 +01003026F: include/ui/spice-display.h
Gerd Hoffmann7ee3bf02010-12-13 21:30:37 +01003027F: ui/spice-*.c
3028F: audio/spiceaudio.c
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01003029F: hw/display/qxl*
Markus Armbruster608cfed2017-08-24 21:14:00 +02003030F: qapi/ui.json
Philippe Mathieu-Daudé9bd4cb32018-11-25 21:49:52 +01003031F: docs/spice-port-fqdn.txt
Gerd Hoffmann7ee3bf02010-12-13 21:30:37 +01003032
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05003033Graphics
Marc-André Lureaucc991392023-02-07 12:56:10 +04003034M: Marc-André Lureau <marcandre.lureau@redhat.com>
Gerd Hoffmann25eccc32014-04-07 10:42:03 +02003035S: Odd Fixes
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05003036F: ui/
Thomas Huthe2206562016-02-25 10:36:07 +01003037F: include/ui/
Markus Armbruster608cfed2017-08-24 21:14:00 +02003038F: qapi/ui.json
Marc-André Lureaub1d38032018-07-13 15:09:06 +02003039F: util/drm.c
Thomas Huth4db546d2022-12-12 18:48:41 +01003040F: docs/devel/ui.rst
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05003041
Andreas Färber351f1bf2011-10-30 18:08:01 +01003042Cocoa graphics
Peter Maydell30ef3c72013-12-16 15:17:55 +00003043M: Peter Maydell <peter.maydell@linaro.org>
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02003044M: Philippe Mathieu-Daudé <philmd@linaro.org>
Akihiko Odaki4f978632023-05-12 15:43:37 +01003045R: Akihiko Odaki <akihiko.odaki@daynix.com>
Andreas Färber351f1bf2011-10-30 18:08:01 +01003046S: Odd Fixes
3047F: ui/cocoa.m
3048
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05003049Main loop
Paolo Bonzinida26f372014-10-21 15:12:57 +02003050M: Paolo Bonzini <pbonzini@redhat.com>
3051S: Maintained
Markus Armbruster54d31232019-08-12 07:23:59 +02003052F: include/qemu/main-loop.h
3053F: include/sysemu/runstate.h
Alejandro Jimeneze6dba042020-12-11 11:52:43 -05003054F: include/sysemu/runstate-action.h
Paolo Bonzini3ecb29a2017-05-03 13:59:09 +02003055F: util/main-loop.c
Thomas Huth89933512023-10-20 08:21:42 +02003056F: util/qemu-timer*.c
Philippe Mathieu-Daudé8d7f2e72023-10-04 11:06:28 +02003057F: system/vl.c
3058F: system/main.c
3059F: system/cpus.c
3060F: system/cpu-throttle.c
3061F: system/cpu-timers.c
3062F: system/runstate*
Markus Armbruster0e201d32017-08-24 21:13:57 +02003063F: qapi/run-state.json
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05003064
Stefan Hajnoczi1b7e01d2020-09-09 10:08:51 +01003065Read, Copy, Update (RCU)
3066M: Paolo Bonzini <pbonzini@redhat.com>
3067S: Maintained
Peter Maydell362dbb42024-10-14 17:05:54 +01003068F: docs/devel/lockcnt.rst
Peter Maydell90655d82024-10-14 17:05:54 +01003069F: docs/devel/rcu.rst
Stefan Hajnoczi1b7e01d2020-09-09 10:08:51 +01003070F: include/qemu/rcu*.h
Peter Maydell51483f62024-10-14 17:05:54 +01003071F: include/qemu/lockcnt.h
Thomas Huthda668aa2021-03-10 07:33:14 +01003072F: tests/unit/rcutorture.c
3073F: tests/unit/test-rcu-*.c
Peter Maydell51483f62024-10-14 17:05:54 +01003074F: util/lockcnt.c
Stefan Hajnoczi1b7e01d2020-09-09 10:08:51 +01003075F: util/rcu.c
3076
Luiz Capitulino8899b4a2013-06-03 11:14:26 -04003077Human Monitor (HMP)
Dr. David Alan Gilbertb8b6d3c2023-03-30 10:55:24 +01003078M: Dr. David Alan Gilbert <dave@treblig.org>
Luiz Capitulinofbb06212014-02-18 09:08:14 -05003079S: Maintained
Kevin Wolf5bce3082019-06-13 17:33:59 +02003080F: monitor/monitor-internal.h
Kevin Wolfe84328f2019-06-13 17:33:57 +02003081F: monitor/misc.c
Kevin Wolf1d95db72019-06-13 17:34:02 +02003082F: monitor/monitor.c
Kevin Wolff1b3ccf2019-06-13 17:33:58 +02003083F: monitor/hmp*
3084F: hmp.h
Thomas Huthc13e9912016-09-22 21:32:38 +02003085F: hmp-commands*.hx
3086F: include/monitor/hmp-target.h
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02003087F: tests/qtest/test-hmp.c
Markus Armbruster637de4d2019-04-17 21:06:37 +02003088F: include/qemu/qemu-print.h
3089F: util/qemu-print.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05003090
Paolo Bonzinif536f112015-09-22 11:40:00 +02003091Network device backends
Stefan Hajnoczi442469e2015-01-20 15:40:38 +00003092M: Jason Wang <jasowang@redhat.com>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05003093S: Maintained
3094F: net/
Thomas Huthd24b2b12016-02-25 12:56:24 +01003095F: include/net/
Markus Armbrustere9bbc8b2019-06-04 13:52:19 +02003096F: qemu-bridge-helper.c
Stefan Hajnoczie18a8b32018-11-08 11:15:26 +00003097T: git https://github.com/jasowang/qemu.git net
Markus Armbruster3c0bd372017-08-24 21:13:59 +02003098F: qapi/net.json
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05003099
Vincenzo Maffioneaee09ba2013-11-06 18:34:55 +01003100Netmap network backend
3101M: Luigi Rizzo <rizzo@iet.unipi.it>
3102M: Giuseppe Lettieri <g.lettieri@iet.unipi.it>
3103M: Vincenzo Maffione <v.maffione@gmail.com>
3104W: http://info.iet.unipi.it/~luigi/netmap/
3105S: Maintained
3106F: net/netmap.c
3107
Ilya Maximetscb039ef2023-09-13 20:34:37 +02003108AF_XDP network backend
3109R: Ilya Maximets <i.maximets@ovn.org>
3110F: net/af-xdp.c
3111
Eduardo Habkost4fc264f2016-08-01 10:52:42 -03003112Host Memory Backends
David Hildenbrand4ade3ea2021-07-23 12:05:30 +02003113M: David Hildenbrand <david@redhat.com>
Eduardo Habkost4fc264f2016-08-01 10:52:42 -03003114M: Igor Mammedov <imammedo@redhat.com>
3115S: Maintained
3116F: backends/hostmem*.c
3117F: include/sysemu/hostmem.h
David Hildenbrand9cd93132023-09-06 14:05:01 +02003118F: docs/system/vm-templating.rst
Eduardo Habkostf953c102020-12-14 16:20:32 -05003119T: git https://gitlab.com/ehabkost/qemu.git machine-next
Eduardo Habkost4fc264f2016-08-01 10:52:42 -03003120
Gonglei60340112016-10-28 16:33:31 +08003121Cryptodev Backends
3122M: Gonglei <arei.gonglei@huawei.com>
zhenwei pi2133e072023-03-01 18:58:47 +08003123M: zhenwei pi <pizhenwei@bytedance.com>
Gonglei60340112016-10-28 16:33:31 +08003124S: Maintained
3125F: include/sysemu/cryptodev*.h
3126F: backends/cryptodev*.c
zhenwei pi14c9fd12023-03-01 18:58:36 +08003127F: qapi/cryptodev.json
Gonglei60340112016-10-28 16:33:31 +08003128
John Snowb8eaee92020-07-10 15:30:14 -04003129Python library
3130M: John Snow <jsnow@redhat.com>
3131M: Cleber Rosa <crosa@redhat.com>
John Snowb8eaee92020-07-10 15:30:14 -04003132S: Maintained
3133F: python/
3134T: git https://gitlab.com/jsnow/qemu.git python
3135
Eduardo Habkostad904f62017-09-15 20:07:44 -03003136Python scripts
John Snow89d38c72022-02-07 19:05:25 -05003137M: John Snow <jsnow@redhat.com>
Eduardo Habkostad904f62017-09-15 20:07:44 -03003138M: Cleber Rosa <crosa@redhat.com>
John Snow4251dfb2020-10-30 11:34:16 -04003139S: Odd Fixes
Eduardo Habkostad904f62017-09-15 20:07:44 -03003140F: scripts/*.py
3141F: tests/*.py
3142
Vladimir Sementsov-Ogievskiyf4abfc62020-02-28 10:19:14 +03003143Benchmark util
Vladimir Sementsov-Ogievskiy9e4067b2022-05-26 14:54:32 +03003144M: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
Vladimir Sementsov-Ogievskiyf4abfc62020-02-28 10:19:14 +03003145S: Maintained
3146F: scripts/simplebench/
Vladimir Sementsov-Ogievskiy9e4067b2022-05-26 14:54:32 +03003147T: git https://gitlab.com/vsementsov/qemu.git simplebench
Vladimir Sementsov-Ogievskiyf4abfc62020-02-28 10:19:14 +03003148
Vladimir Sementsov-Ogievskiy8cad15b2021-04-28 18:17:36 +03003149Transactions helper
Vladimir Sementsov-Ogievskiy9e4067b2022-05-26 14:54:32 +03003150M: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
Vladimir Sementsov-Ogievskiy8cad15b2021-04-28 18:17:36 +03003151S: Maintained
3152F: include/qemu/transactions.h
3153F: util/transactions.c
Vladimir Sementsov-Ogievskiy9e4067b2022-05-26 14:54:32 +03003154T: git https://gitlab.com/vsementsov/qemu.git block
Vladimir Sementsov-Ogievskiy8cad15b2021-04-28 18:17:36 +03003155
Luiz Capitulino8899b4a2013-06-03 11:14:26 -04003156QAPI
Luiz Capitulino97406182015-05-05 10:39:15 -04003157M: Markus Armbruster <armbru@redhat.com>
Michael Roth2f5f9bc2020-10-27 01:02:53 -05003158M: Michael Roth <michael.roth@amd.com>
Luiz Capitulino97406182015-05-05 10:39:15 -04003159S: Supported
Luiz Capitulino8899b4a2013-06-03 11:14:26 -04003160F: qapi/
Markus Armbruster0311c5b2015-06-12 15:15:54 +02003161X: qapi/*.json
Markus Armbrusterac4abb92015-09-24 18:11:57 +02003162F: include/qapi/
3163X: include/qapi/qmp/
3164F: include/qapi/qmp/dispatch.h
Paolo Bonzinic0bd0b52014-10-22 00:31:28 +02003165F: tests/qapi-schema/
Thomas Huthda668aa2021-03-10 07:33:14 +01003166F: tests/unit/test-*-visitor.c
3167F: tests/unit/test-qapi-*.c
3168F: tests/unit/test-qmp-*.c
3169F: tests/unit/test-visitor-serialization.c
Markus Armbrusterbe25fcc2018-06-20 14:48:27 +02003170F: scripts/qapi-gen.py
3171F: scripts/qapi/*
Peter Maydell4078ee52020-09-25 17:23:02 +01003172F: docs/sphinx/qapidoc.py
Philippe Mathieu-Daudéc39cdbf2017-09-08 14:36:31 -03003173F: docs/devel/qapi*
Stefan Hajnocziebe2aad2018-11-08 11:15:28 +00003174T: git https://repo.or.cz/qemu/armbru.git qapi-next
Luiz Capitulino8899b4a2013-06-03 11:14:26 -04003175
Luiz Capitulino7810d292013-06-03 11:11:53 -04003176QAPI Schema
3177M: Eric Blake <eblake@redhat.com>
Luiz Capitulino7810d292013-06-03 11:11:53 -04003178M: Markus Armbruster <armbru@redhat.com>
3179S: Supported
Markus Armbruster0311c5b2015-06-12 15:15:54 +02003180F: qapi/*.json
Philippe Mathieu-Daudé632d3b22024-07-17 15:58:28 +02003181F: qga/qapi-schema.json
Stefan Hajnocziebe2aad2018-11-08 11:15:28 +00003182T: git https://repo.or.cz/qemu/armbru.git qapi-next
Luiz Capitulino7810d292013-06-03 11:11:53 -04003183
Luiz Capitulinof3582ba2014-10-22 08:54:59 -04003184QObject
Markus Armbrusterdaf5dc72016-09-28 19:33:42 +02003185M: Markus Armbruster <armbru@redhat.com>
3186S: Supported
Luiz Capitulinof3582ba2014-10-22 08:54:59 -04003187F: qobject/
Markus Armbruster7735d2b2015-09-24 18:11:56 +02003188F: include/qapi/qmp/
3189X: include/qapi/qmp/dispatch.h
Eric Blakea2f34532017-04-27 16:58:14 -05003190F: scripts/coccinelle/qobject.cocci
Thomas Huthda668aa2021-03-10 07:33:14 +01003191F: tests/unit/check-qdict.c
3192F: tests/unit/check-qjson.c
3193F: tests/unit/check-qlist.c
3194F: tests/unit/check-qlit.c
3195F: tests/unit/check-qnull.c
3196F: tests/unit/check-qnum.c
3197F: tests/unit/check-qobject.c
3198F: tests/unit/check-qstring.c
Philippe Mathieu-Daudéfe07b622018-12-18 12:37:17 +01003199F: tests/data/qobject/qdict.txt
Stefan Hajnocziebe2aad2018-11-08 11:15:28 +00003200T: git https://repo.or.cz/qemu/armbru.git qapi-next
Luiz Capitulinof3582ba2014-10-22 08:54:59 -04003201
Michael Rothf05d9992014-10-22 07:05:36 -05003202QEMU Guest Agent
Michael Roth2f5f9bc2020-10-27 01:02:53 -05003203M: Michael Roth <michael.roth@amd.com>
Konstantin Kostiuke8cbe582022-07-18 11:52:28 +03003204M: Konstantin Kostiuk <kkostiuk@redhat.com>
Michael Rothf05d9992014-10-22 07:05:36 -05003205S: Maintained
3206F: qga/
Thomas Huth51145a02023-11-07 11:18:11 +01003207F: contrib/systemd/qemu-guest-agent.service
Peter Maydell27a296f2019-09-05 14:10:40 +01003208F: docs/interop/qemu-ga.rst
Peter Maydelldb161152020-09-25 17:23:03 +01003209F: docs/interop/qemu-ga-ref.rst
Philippe Mathieu-Daudéab7f9f72017-09-08 14:36:22 -03003210F: scripts/qemu-guest-agent/
Thomas Huth51145a02023-11-07 11:18:11 +01003211F: tests/*/test-qga*
Stefan Hajnoczie18a8b32018-11-08 11:15:26 +00003212T: git https://github.com/mdroth/qemu.git qga
Michael Rothf05d9992014-10-22 07:05:36 -05003213
Kostiantyn Kostiukcced3a72022-01-05 09:09:42 +00003214QEMU Guest Agent Win32
3215M: Konstantin Kostiuk <kkostiuk@redhat.com>
3216S: Maintained
3217F: qga/*win32*
3218F: qga/vss-win32/
3219F: qga/installer/
3220T: git https://github.com/kostyanf14/qemu.git qga-win32
3221
Andreas Färber4688c942014-04-24 15:00:14 +02003222QOM
Paolo Bonzini1085d862019-06-19 22:10:34 +02003223M: Paolo Bonzini <pbonzini@redhat.com>
3224R: Daniel P. Berrange <berrange@redhat.com>
Eduardo Habkost24c4cd12021-11-30 15:47:22 -05003225R: Eduardo Habkost <eduardo@habkost.net>
Andreas Färber4688c942014-04-24 15:00:14 +02003226S: Supported
Thomas Huth4db546d2022-12-12 18:48:41 +01003227F: docs/devel/qom.rst
Markus Armbruster8f920052019-06-24 16:48:19 +02003228F: docs/qdev-device-use.txt
3229F: hw/core/qdev*
Markus Armbrusterb77b5b32020-06-10 07:32:47 +02003230F: hw/core/bus.c
3231F: hw/core/sysbus.c
Markus Armbruster8f920052019-06-24 16:48:19 +02003232F: include/hw/qdev*
3233F: include/monitor/qdev.h
Andreas Färber4688c942014-04-24 15:00:14 +02003234F: include/qom/
Markus Armbrusterc577ff62019-06-19 22:10:37 +02003235F: qapi/qom.json
3236F: qapi/qdev.json
Paolo Bonzini22fb6eb2020-10-07 12:23:56 -04003237F: scripts/coccinelle/qom-parent-type.cocci
Philippe Mathieu-Daudée3e2c0c2023-06-01 11:34:51 +02003238F: scripts/qom-cast-macro-clean-cocci-gen.py
Philippe Mathieu-Daudé8d7f2e72023-10-04 11:06:28 +02003239F: system/qdev-monitor.c
Philippe Mathieu-Daudé9b45a022021-01-22 21:44:38 +01003240F: stubs/qdev.c
Andreas Färber4688c942014-04-24 15:00:14 +02003241F: qom/
Thomas Huthda668aa2021-03-10 07:33:14 +01003242F: tests/unit/check-qom-interface.c
3243F: tests/unit/check-qom-proplist.c
3244F: tests/unit/test-qdev-global-props.c
Andreas Färber4688c942014-04-24 15:00:14 +02003245
Eduardo Habkost94dfc0f2020-08-31 17:07:28 -04003246QOM boilerplate conversion script
Eduardo Habkost24c4cd12021-11-30 15:47:22 -05003247M: Eduardo Habkost <eduardo@habkost.net>
Eduardo Habkost94dfc0f2020-08-31 17:07:28 -04003248S: Maintained
3249F: scripts/codeconverter/
3250
Luiz Capitulino8899b4a2013-06-03 11:14:26 -04003251QMP
Luiz Capitulino97406182015-05-05 10:39:15 -04003252M: Markus Armbruster <armbru@redhat.com>
3253S: Supported
Kevin Wolf5bce3082019-06-13 17:33:59 +02003254F: monitor/monitor-internal.h
Kevin Wolff1b3ccf2019-06-13 17:33:58 +02003255F: monitor/qmp*
Kevin Wolfe84328f2019-06-13 17:33:57 +02003256F: monitor/misc.c
Kevin Wolf1d95db72019-06-13 17:34:02 +02003257F: monitor/monitor.c
Markus Armbruster92a3c6a2020-11-02 09:15:49 +01003258F: qapi/control.json
Markus Armbrusterabb3d372019-08-12 07:23:33 +02003259F: qapi/error.json
Markus Armbruster92a3c6a2020-11-02 09:15:49 +01003260F: qapi/introspect.json
Philippe Mathieu-Daudéc39cdbf2017-09-08 14:36:31 -03003261F: docs/devel/*qmp-*
Philippe Mathieu-Daudé12b2f0d2018-11-25 21:49:54 +01003262F: docs/interop/*qmp-*
Luiz Capitulino97406182015-05-05 10:39:15 -04003263F: scripts/qmp/
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02003264F: tests/qtest/qmp-test.c
3265F: tests/qtest/qmp-cmd-test.c
Stefan Hajnocziebe2aad2018-11-08 11:15:28 +00003266T: git https://repo.or.cz/qemu/armbru.git qapi-next
Luiz Capitulino8899b4a2013-06-03 11:14:26 -04003267
Paolo Bonzini98a43bf2018-08-14 17:40:41 +02003268qtest
Thomas Huth25e5fe72024-10-11 16:13:44 +02003269M: Fabiano Rosas <farosas@suse.de>
Paolo Bonzini98a43bf2018-08-14 17:40:41 +02003270M: Laurent Vivier <lvivier@redhat.com>
Paolo Bonzini2185fd62018-10-19 14:25:42 +02003271R: Paolo Bonzini <pbonzini@redhat.com>
Paolo Bonzini98a43bf2018-08-14 17:40:41 +02003272S: Maintained
Philippe Mathieu-Daudé8d7f2e72023-10-04 11:06:28 +02003273F: system/qtest.c
Thomas Huthabf8c472023-10-12 13:14:01 +02003274F: include/sysemu/qtest.h
Claudio Fontana1583a382020-07-07 10:21:10 +02003275F: accel/qtest/
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02003276F: tests/qtest/
Emanuele Giuseppe Esposito222455e2021-03-08 08:32:40 +01003277F: docs/devel/qgraph.rst
Thomas Huth4db546d2022-12-12 18:48:41 +01003278F: docs/devel/qtest.rst
Thomas Huth520ddc12020-10-01 06:27:17 +02003279X: tests/qtest/bios-tables-test*
Thomas Huth3f6be802024-06-19 07:54:47 +02003280X: tests/qtest/migration-*
Paolo Bonzini98a43bf2018-08-14 17:40:41 +02003281
Alexander Bulekov5f6fd092020-02-19 23:11:08 -05003282Device Fuzzing
3283M: Alexander Bulekov <alxndr@bu.edu>
3284R: Paolo Bonzini <pbonzini@redhat.com>
3285R: Bandan Das <bsd@redhat.com>
3286R: Stefan Hajnoczi <stefanha@redhat.com>
Thomas Huth25e5fe72024-10-11 16:13:44 +02003287R: Fabiano Rosas <farosas@suse.de>
Darren Kenny85221b02021-08-24 14:04:01 +00003288R: Darren Kenny <darren.kenny@oracle.com>
Qiuhao Li5d32fc32021-08-24 14:26:39 +08003289R: Qiuhao Li <Qiuhao.Li@outlook.com>
Alexander Bulekov5f6fd092020-02-19 23:11:08 -05003290S: Maintained
3291F: tests/qtest/fuzz/
Philippe Mathieu-Daudéd3d39fc2021-01-26 12:28:49 +01003292F: tests/qtest/fuzz-*test.c
Alex Bennée4ab20b52023-06-30 19:03:54 +01003293F: tests/docker/test-fuzz
Alexander Bulekov211635b2020-06-12 01:51:45 -04003294F: scripts/oss-fuzz/
Alexander Bulekov230376d2021-03-15 10:05:10 -04003295F: hw/mem/sparse-mem.c
Alexander Bulekovf3a02082020-11-06 13:05:59 -05003296F: docs/devel/fuzzing.rst
Alexander Bulekov5f6fd092020-02-19 23:11:08 -05003297
Alistair Franciscc0100f2016-07-28 09:55:39 -07003298Register API
Alistair Francisc22e5802018-03-01 11:05:58 +00003299M: Alistair Francis <alistair@alistair23.me>
Alistair Franciscc0100f2016-07-28 09:55:39 -07003300S: Maintained
3301F: hw/core/register.c
3302F: include/hw/register.h
Philippe Mathieu-Daudé06a7b242017-12-13 02:17:33 -03003303F: include/hw/registerfields.h
Alistair Franciscc0100f2016-07-28 09:55:39 -07003304
Manos Pitsidianakis5a5110d2902024-10-03 16:28:49 +03003305Rust
3306M: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
3307S: Maintained
3308F: rust/qemu-api
Manos Pitsidianakis2b74dd92024-10-03 16:28:50 +03003309F: rust/qemu-api-macros
Manos Pitsidianakis5a5110d2902024-10-03 16:28:49 +03003310F: rust/rustfmt.toml
3311
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05003312SLIRP
Samuel Thibaulteda509f2015-08-06 13:10:14 +02003313M: Samuel Thibault <samuel.thibault@ens-lyon.org>
Jan Kiszkabafc72a2011-07-27 14:21:32 +02003314S: Maintained
Thomas Huth663fb1e2015-12-15 09:48:15 +01003315F: net/slirp.c
Thomas Huthd24b2b12016-02-25 12:56:24 +01003316F: include/net/slirp.h
Samuel Thibault02cffe22018-05-31 21:45:10 +02003317T: git https://people.debian.org/~sthibault/qemu.git slirp
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05003318
Markus Armbrusteraa09b3d2023-01-24 13:19:36 +01003319Stats
3320S: Orphan
3321F: include/sysemu/stats.h
3322F: stats/
Markus Armbruster0afbba62024-02-05 09:47:47 +01003323F: qapi/stats.json
Markus Armbrusteraa09b3d2023-01-24 13:19:36 +01003324
Edgar E. Iglesias6d0af392020-05-06 10:25:13 +02003325Streams
3326M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
3327S: Maintained
3328F: hw/core/stream.c
3329F: include/hw/stream.h
3330
Paolo Bonzinib1ed7282016-08-24 16:04:56 +02003331Stubs
3332M: Paolo Bonzini <pbonzini@redhat.com>
3333S: Maintained
3334F: stubs/
3335
Stefan Hajnoczi598a3f32011-09-03 16:24:47 +01003336Tracing
Stefan Hajnoczi1cd0f8c2012-10-07 18:08:49 +02003337M: Stefan Hajnoczi <stefanha@redhat.com>
Mads Ynddal84197262023-09-26 12:34:35 +02003338R: Mads Ynddal <mads@ynddal.dk>
Stefan Hajnoczi598a3f32011-09-03 16:24:47 +01003339S: Maintained
3340F: trace/
Thomas Huth0e076292018-05-09 06:38:20 +02003341F: trace-events
Peter Maydell3a8273b2020-02-28 15:36:18 +00003342F: docs/qemu-option-trace.rst.inc
Markus Armbruster92a3c6a2020-11-02 09:15:49 +01003343F: qapi/trace.json
Lluís Vilanovaf70fd8f2012-04-03 20:48:17 +02003344F: scripts/tracetool.py
3345F: scripts/tracetool/
Daniel P. Berrangé62dd1042019-01-23 12:00:16 +00003346F: scripts/qemu-trace-stap*
Wainer dos Santos Moschetta33b2b382021-02-04 10:54:25 -03003347F: docs/tools/qemu-trace-stap.rst
Stefano Garzarellad0fb9652021-05-17 17:16:58 +02003348F: docs/devel/tracing.rst
Stefan Hajnoczie18a8b32018-11-08 11:15:26 +00003349T: git https://github.com/stefanha/qemu.git tracing
Stefan Hajnoczi598a3f32011-09-03 16:24:47 +01003350
Mads Ynddal84197262023-09-26 12:34:35 +02003351Simpletrace
3352M: Mads Ynddal <mads@ynddal.dk>
3353S: Maintained
3354F: scripts/simpletrace.py
3355
Markus Armbruster3859b6c2017-08-24 21:14:03 +02003356TPM
Stefan Berger1f636692018-10-30 17:34:09 -04003357M: Stefan Berger <stefanb@linux.ibm.com>
Stefan Berger6b4f2502017-09-07 16:16:24 -04003358S: Maintained
Philippe Mathieu-Daudé8d7f2e72023-10-04 11:06:28 +02003359F: system/tpm*
Markus Armbruster3859b6c2017-08-24 21:14:03 +02003360F: hw/tpm/*
3361F: include/hw/acpi/tpm.h
3362F: include/sysemu/tpm*
3363F: qapi/tpm.json
Philippe Mathieu-Daudé8ae92e22020-06-12 10:54:34 +02003364F: backends/tpm/
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02003365F: tests/qtest/*tpm*
Thomas Huth4db546d2022-12-12 18:48:41 +01003366F: docs/specs/tpm.rst
Stefan Hajnoczie18a8b32018-11-08 11:15:26 +00003367T: git https://github.com/stefanberger/qemu-tpm.git tpm-next
Markus Armbruster3859b6c2017-08-24 21:14:03 +02003368
Huai-Cheng Kuobc419a12024-07-03 19:20:26 +10003369SPDM
3370M: Alistair Francis <alistair.francis@wdc.com>
3371S: Maintained
3372F: backends/spdm-socket.c
3373F: include/sysemu/spdm-socket.h
3374
Blue Swirl14f40fd2011-11-26 09:51:23 +00003375Checkpatch
Blue Swirl14f40fd2011-11-26 09:51:23 +00003376S: Odd Fixes
3377F: scripts/checkpatch.pl
3378
Juan Quintelac0787c82014-10-15 10:34:50 +02003379Migration
Peter Xu2bace552023-10-03 10:38:47 -04003380M: Peter Xu <peterx@redhat.com>
3381M: Fabiano Rosas <farosas@suse.de>
Juan Quintelac0787c82014-10-15 10:34:50 +02003382S: Maintained
Marc-André Lureau107b5962019-08-28 16:00:19 +04003383F: hw/core/vmstate-if.c
3384F: include/hw/vmstate-if.h
Juan Quintelac0787c82014-10-15 10:34:50 +02003385F: include/migration/
Markus Armbrusterb8628882023-01-19 10:15:44 +01003386F: include/qemu/userfaultfd.h
Dr. David Alan Gilbert44a1f942014-12-12 11:13:42 +00003387F: migration/
Amit Shahc5515642014-11-18 18:01:25 +05303388F: scripts/vmstate-static-checker.py
3389F: tests/vmstate-static-checker-data/
Thomas Huth3f6be802024-06-19 07:54:47 +02003390F: tests/qtest/migration-*
Avihai Horon8e0b21e2024-04-07 11:11:25 +03003391F: docs/devel/migration/
Markus Armbruster48685a82017-08-24 21:14:01 +02003392F: qapi/migration.json
Hyman Huang(黄勇)fac87d42021-03-19 16:07:57 +08003393F: tests/migration/
Markus Armbrusterb8628882023-01-19 10:15:44 +01003394F: util/userfaultfd.c
Peter Xu8ebcb4b2023-09-25 09:34:41 -04003395X: migration/rdma*
3396
3397RDMA Migration
Peter Xu8ebcb4b2023-09-25 09:34:41 -04003398R: Li Zhijian <lizhijian@fujitsu.com>
3399R: Peter Xu <peterx@redhat.com>
Peter Xu8ebcb4b2023-09-25 09:34:41 -04003400S: Odd Fixes
3401F: migration/rdma*
Juan Quintelac0787c82014-10-15 10:34:50 +02003402
Hyman Huang(黄勇)2b3edd92023-07-27 02:10:09 +08003403Migration dirty limit and dirty page rate
3404M: Hyman Huang <yong.huang@smartx.com>
3405S: Maintained
Philippe Mathieu-Daudé8d7f2e72023-10-04 11:06:28 +02003406F: system/dirtylimit.c
Hyman Huang(黄勇)2b3edd92023-07-27 02:10:09 +08003407F: include/sysemu/dirtylimit.h
3408F: migration/dirtyrate.c
3409F: migration/dirtyrate.h
3410F: include/sysemu/dirtyrate.h
Avihai Horon8e0b21e2024-04-07 11:11:25 +03003411F: docs/devel/migration/dirty-limit.rst
Hyman Huang(黄勇)2b3edd92023-07-27 02:10:09 +08003412
Hyman Huangd87b2582024-01-30 13:37:25 +08003413Detached LUKS header
3414M: Hyman Huang <yong.huang@smartx.com>
3415S: Maintained
3416F: tests/qemu-iotests/tests/luks-detached-header
Hyman Huang9263c412024-02-20 00:04:42 +08003417F: docs/devel/luks-detached-header.rst
Hyman Huangd87b2582024-01-30 13:37:25 +08003418
Marc-André Lureaua5669072019-09-12 16:03:32 +04003419D-Bus
3420M: Marc-André Lureau <marcandre.lureau@redhat.com>
3421S: Maintained
Marc-André Lureau5010cec2019-12-16 11:48:53 +04003422F: backends/dbus-vmstate.c
Marc-André Lureau89f4df92021-10-10 00:30:30 +04003423F: ui/dbus*
3424F: audio/dbus*
Marc-André Lureaua5021d62019-09-27 12:16:54 +04003425F: util/dbus.c
Marc-André Lureau89f4df92021-10-10 00:30:30 +04003426F: include/ui/dbus*
Marc-André Lureaua5021d62019-09-27 12:16:54 +04003427F: include/qemu/dbus.h
Marc-André Lureau89f4df92021-10-10 00:30:30 +04003428F: docs/interop/dbus*
3429F: docs/sphinx/dbus*
3430F: docs/sphinx/fakedbusdoc.py
3431F: tests/qtest/dbus*
Marc-André Lureau9b286e72023-06-06 15:56:41 +04003432F: scripts/xml-preprocess*
Marc-André Lureaua5669072019-09-12 16:03:32 +04003433
Eduardo Otubo92bfedb2013-09-09 14:04:15 -03003434Seccomp
Daniel P. Berrangée3160de2022-02-03 10:49:28 +00003435M: Daniel P. Berrange <berrange@redhat.com>
3436S: Odd Fixes
Philippe Mathieu-Daudé8d7f2e72023-10-04 11:06:28 +02003437F: system/qemu-seccomp.c
Eduardo Otubo92bfedb2013-09-09 14:04:15 -03003438F: include/sysemu/seccomp.h
Daniel P. Berrangéd2ea8da2021-07-29 13:15:43 +01003439F: tests/unit/test-seccomp.c
Eduardo Otubo92bfedb2013-09-09 14:04:15 -03003440
Daniel P. Berrangeddbb0d02015-07-01 18:10:29 +01003441Cryptography
3442M: Daniel P. Berrange <berrange@redhat.com>
3443S: Maintained
3444F: crypto/
3445F: include/crypto/
Richard Henderson6b0a96c2023-06-01 21:57:10 -07003446F: host/include/*/host/crypto/
Markus Armbruster92a3c6a2020-11-02 09:15:49 +01003447F: qapi/crypto.json
Thomas Huthda668aa2021-03-10 07:33:14 +01003448F: tests/unit/test-crypto-*
Thomas Huth3b472e72021-03-12 10:22:38 +01003449F: tests/bench/benchmark-crypto-*
Thomas Huthda668aa2021-03-10 07:33:14 +01003450F: tests/unit/crypto-tls-*
Philippe Mathieu-Daudé0e9bb8a2024-05-02 11:56:41 +02003451F: tests/unit/pkix_asn1_tab.c.inc
Daniel P. Berrange899833c2017-03-16 11:18:46 +00003452F: qemu.sasl
Daniel P. Berrangeddbb0d02015-07-01 18:10:29 +01003453
Daniel P. Berrange10817bf2015-09-01 14:48:02 +01003454Coroutines
3455M: Stefan Hajnoczi <stefanha@redhat.com>
3456M: Kevin Wolf <kwolf@redhat.com>
Stefan Hajnoczi00a25292019-03-01 16:35:18 +00003457S: Maintained
Daniel P. Berrange10817bf2015-09-01 14:48:02 +01003458F: util/*coroutine*
3459F: include/qemu/coroutine*
Thomas Huthda668aa2021-03-10 07:33:14 +01003460F: tests/unit/test-coroutine.c
Daniel P. Berrange10817bf2015-09-01 14:48:02 +01003461
Daniel P. Berrange88c5f202015-03-03 17:13:42 +00003462Buffers
3463M: Daniel P. Berrange <berrange@redhat.com>
John Snow4251dfb2020-10-30 11:34:16 -04003464S: Odd Fixes
Daniel P. Berrange88c5f202015-03-03 17:13:42 +00003465F: util/buffer.c
3466F: include/qemu/buffer.h
3467
Daniel P. Berrange666a3af2015-02-27 16:19:33 +00003468I/O Channels
3469M: Daniel P. Berrange <berrange@redhat.com>
3470S: Maintained
3471F: io/
3472F: include/io/
Thomas Huthda668aa2021-03-10 07:33:14 +01003473F: tests/unit/test-io-*
Daniel P. Berrange666a3af2015-02-27 16:19:33 +00003474
Daniel P. Berrange5b76dd12015-10-21 13:16:21 +01003475User authorization
3476M: Daniel P. Berrange <berrange@redhat.com>
3477S: Maintained
3478F: authz/
Daniel P. Berrangec8c99882015-10-21 14:54:59 +01003479F: qapi/authz.json
Daniel P. Berrange5b76dd12015-10-21 13:16:21 +01003480F: include/authz/
Thomas Huthda668aa2021-03-10 07:33:14 +01003481F: tests/unit/test-authz-*
Daniel P. Berrange5b76dd12015-10-21 13:16:21 +01003482
Gerd Hoffmann5614a282016-01-18 16:03:23 +01003483Sockets
3484M: Daniel P. Berrange <berrange@redhat.com>
Gerd Hoffmann5614a282016-01-18 16:03:23 +01003485S: Maintained
3486F: include/qemu/sockets.h
3487F: util/qemu-sockets.c
Markus Armbrustera2ff5a42017-08-24 21:13:56 +02003488F: qapi/sockets.json
Gerd Hoffmann5614a282016-01-18 16:03:23 +01003489
Daniel P. Berrangé90e33df2018-06-08 17:24:57 +01003490File monitor
3491M: Daniel P. Berrange <berrange@redhat.com>
John Snow4251dfb2020-10-30 11:34:16 -04003492S: Odd Fixes
Daniel P. Berrangé90e33df2018-06-08 17:24:57 +01003493F: util/filemonitor*.c
3494F: include/qemu/filemonitor.h
Thomas Huthda668aa2021-03-10 07:33:14 +01003495F: tests/unit/test-util-filemonitor.c
Daniel P. Berrangé90e33df2018-06-08 17:24:57 +01003496
Alberto Garciad310d852016-02-18 12:27:10 +02003497Throttling infrastructure
3498M: Alberto Garcia <berto@igalia.com>
3499S: Supported
3500F: block/throttle-groups.c
3501F: include/block/throttle-groups.h
Philippe Mathieu-Daudé89603932017-09-08 14:36:27 -03003502F: include/qemu/throttle*.h
Alberto Garciad310d852016-02-18 12:27:10 +02003503F: util/throttle.c
Philippe Mathieu-Daudé89603932017-09-08 14:36:27 -03003504F: docs/throttle.txt
Thomas Huthda668aa2021-03-10 07:33:14 +01003505F: tests/unit/test-throttle.c
Alberto Garciad310d852016-02-18 12:27:10 +02003506L: qemu-block@nongnu.org
3507
Fam Zheng080d7aa2016-09-21 12:27:25 +08003508UUID
Fam Zhengfe5ca462018-11-21 23:30:36 +08003509M: Fam Zheng <fam@euphon.net>
Fam Zheng080d7aa2016-09-21 12:27:25 +08003510S: Supported
3511F: util/uuid.c
3512F: include/qemu/uuid.h
Thomas Huthda668aa2021-03-10 07:33:14 +01003513F: tests/unit/test-uuid.c
Fam Zheng080d7aa2016-09-21 12:27:25 +08003514
Lukas Straub50186052020-12-28 16:08:41 +01003515Yank feature
3516M: Lukas Straub <lukasstraub2@web.de>
3517S: Odd fixes
3518F: util/yank.c
Lukas Straub1a92d6d2021-03-23 18:52:42 +01003519F: migration/yank_functions*
Lukas Straubd3a0bb72021-03-30 20:13:35 +02003520F: tests/unit/test-yank.c
Lukas Straub50186052020-12-28 16:08:41 +01003521F: include/qemu/yank.h
3522F: qapi/yank.json
3523
zhanghailianga4cc3182016-10-27 14:43:09 +08003524COLO Framework
Hailiang Zhang2ac7d742021-12-14 15:54:24 +08003525M: Hailiang Zhang <zhanghailiang@xfusion.com>
zhanghailianga4cc3182016-10-27 14:43:09 +08003526S: Maintained
3527F: migration/colo*
3528F: include/migration/colo.h
3529F: include/migration/failover.h
3530F: docs/COLO-FT.txt
3531
Zhang Chen88f82ed2016-09-27 10:22:35 +08003532COLO Proxy
Zhang Chenc6bf50f2019-03-15 14:12:58 +08003533M: Zhang Chen <chen.zhang@intel.com>
Li Zhijian2ece6e62021-12-31 13:09:01 +08003534M: Li Zhijian <lizhijian@fujitsu.com>
Zhang Chen88f82ed2016-09-27 10:22:35 +08003535S: Supported
3536F: docs/colo-proxy.txt
3537F: net/colo*
3538F: net/filter-rewriter.c
3539F: net/filter-mirror.c
Zhang Chen487cf3f2021-12-21 16:04:00 +08003540F: tests/qtest/test-filter*
Zhang Chen88f82ed2016-09-27 10:22:35 +08003541
Pavel Dovgalyuk62258202017-05-03 14:33:04 +03003542Record/replay
3543M: Pavel Dovgalyuk <pavel.dovgaluk@ispras.ru>
3544R: Paolo Bonzini <pbonzini@redhat.com>
Stefan Hajnoczi70b7fba2017-11-21 12:04:35 +00003545W: https://wiki.qemu.org/Features/record-replay
Pavel Dovgalyuk62258202017-05-03 14:33:04 +03003546S: Supported
3547F: replay/*
3548F: block/blkreplay.c
3549F: net/filter-replay.c
Philippe Mathieu-Daudé5b5968c2022-12-19 18:09:43 +01003550F: include/exec/replay-core.h
Pavel Dovgalyuk62258202017-05-03 14:33:04 +03003551F: include/sysemu/replay.h
Thomas Huth4db546d2022-12-12 18:48:41 +01003552F: docs/devel/replay.rst
3553F: docs/system/replay.rst
Pavel Dovgalyuk62258202017-05-03 14:33:04 +03003554F: stubs/replay.c
Willian Rampazzobbbd9b62021-11-05 12:53:54 -03003555F: tests/avocado/replay_kernel.py
3556F: tests/avocado/replay_linux.py
3557F: tests/avocado/reverse_debugging.py
Pavel Dovgalyuk43d7e1d2020-10-03 20:13:14 +03003558F: qapi/replay.json
Pavel Dovgalyuk62258202017-05-03 14:33:04 +03003559
Peter Xueecf5ee2018-05-18 15:25:16 +08003560IOVA Tree
3561M: Peter Xu <peterx@redhat.com>
3562S: Maintained
3563F: include/qemu/iova-tree.h
3564F: util/iova-tree.c
3565
Viktor Prutyanov5ee547b2018-09-18 12:54:22 +03003566elf2dmp
3567M: Viktor Prutyanov <viktor.prutyanov@phystech.edu>
Akihiko Odakia2de23c2024-03-07 19:20:58 +09003568R: Akihiko Odaki <akihiko.odaki@daynix.com>
Viktor Prutyanov5ee547b2018-09-18 12:54:22 +03003569S: Maintained
3570F: contrib/elf2dmp/
3571
Philippe Mathieu-Daudé39131a42023-02-20 12:02:35 +01003572Overall sensors
3573M: Philippe Mathieu-Daudé <philmd@linaro.org>
3574S: Odd Fixes
3575F: hw/sensor
3576F: include/hw/sensor
3577
Corey Minyard93198b62018-11-13 18:31:27 -06003578I2C and SMBus
3579M: Corey Minyard <cminyard@mvista.com>
3580S: Maintained
3581F: hw/i2c/core.c
3582F: hw/i2c/smbus_slave.c
3583F: hw/i2c/smbus_master.c
3584F: hw/i2c/smbus_eeprom.c
3585F: include/hw/i2c/i2c.h
3586F: include/hw/i2c/smbus_master.h
3587F: include/hw/i2c/smbus_slave.h
3588F: include/hw/i2c/smbus_eeprom.h
3589
Titus Rwantarebf0e0c72022-03-07 12:06:01 -08003590PMBus
3591M: Titus Rwantare <titusr@google.com>
3592S: Maintained
3593F: hw/i2c/pmbus_device.c
3594F: hw/sensor/adm1272.c
Titus Rwantareffcdae62022-03-07 12:06:03 -08003595F: hw/sensor/isl_pmbus_vr.c
Titus Rwantarebf0e0c72022-03-07 12:06:01 -08003596F: hw/sensor/max34451.c
3597F: include/hw/i2c/pmbus_device.h
Titus Rwantareffcdae62022-03-07 12:06:03 -08003598F: include/hw/sensor/isl_pmbus_vr.h
Titus Rwantarebf0e0c72022-03-07 12:06:01 -08003599F: tests/qtest/adm1272-test.c
3600F: tests/qtest/max34451-test.c
Titus Rwantareffcdae62022-03-07 12:06:03 -08003601F: tests/qtest/isl_pmbus_vr-test.c
Titus Rwantarebf0e0c72022-03-07 12:06:01 -08003602
Ninad Palsule649b8ed2024-01-26 04:49:56 -06003603FSI
3604M: Ninad Palsule <ninad@linux.ibm.com>
3605R: Cédric Le Goater <clg@kaod.org>
3606S: Maintained
3607F: hw/fsi/*
3608F: include/hw/fsi/*
3609F: docs/specs/fsi.rst
3610F: tests/qtest/aspeed_fsi-test.c
3611
Philippe Mathieu-Daudéd0d89522020-07-03 20:34:50 +02003612Firmware schema specifications
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02003613M: Philippe Mathieu-Daudé <philmd@linaro.org>
Philippe Mathieu-Daudéd0d89522020-07-03 20:34:50 +02003614R: Daniel P. Berrange <berrange@redhat.com>
3615R: Kashyap Chamarthy <kchamart@redhat.com>
3616S: Maintained
3617F: docs/interop/firmware.json
3618
Laszlo Ersek6739df32019-03-13 13:40:07 +01003619EDK2 Firmware
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02003620M: Philippe Mathieu-Daudé <philmd@linaro.org>
Gerd Hoffmann9b437cd2022-03-08 13:36:00 +01003621M: Gerd Hoffmann <kraxel@redhat.com>
Laszlo Ersek6739df32019-03-13 13:40:07 +01003622S: Supported
Philippe Mathieu-Daudéb5b31862021-05-21 15:34:07 +02003623F: hw/i386/*ovmf*
Laszlo Ersek6739df32019-03-13 13:40:07 +01003624F: pc-bios/descriptors/??-edk2-*.json
3625F: pc-bios/edk2-*
3626F: roms/Makefile.edk2
3627F: roms/edk2
3628F: roms/edk2-*
3629F: tests/data/uefi-boot-images/
3630F: tests/uefi-test-tools/
3631
Peter Xu8bc43f32020-07-01 08:44:18 -04003632VT-d Emulation
3633M: Michael S. Tsirkin <mst@redhat.com>
Peter Xu8bc43f32020-07-01 08:44:18 -04003634R: Jason Wang <jasowang@redhat.com>
Yi Liue3f15732024-07-07 20:21:12 -07003635R: Yi Liu <yi.l.liu@intel.com>
CLEMENT MATHIEU--DRIF9e64bec2024-08-20 09:51:47 +00003636R: Clément Mathieu--Drif <clement.mathieu--drif@eviden.com>
Peter Xu8bc43f32020-07-01 08:44:18 -04003637S: Supported
3638F: hw/i386/intel_iommu.c
3639F: hw/i386/intel_iommu_internal.h
3640F: include/hw/i386/intel_iommu.h
3641
Philippe Mathieu-Daudé2f5a2b32023-03-13 16:30:26 +01003642AMD-Vi Emulation
3643S: Orphan
3644F: hw/i386/amd_iommu.?
3645
Bin Menge92fb012020-06-26 06:13:40 -07003646OpenSBI Firmware
3647M: Bin Meng <bmeng.cn@gmail.com>
3648S: Supported
3649F: pc-bios/opensbi-*
3650F: .gitlab-ci.d/opensbi.yml
3651F: .gitlab-ci.d/opensbi/
3652
Luc Michel59c7a182021-02-11 09:53:18 +01003653Clock framework
3654M: Luc Michel <luc@lmichel.fr>
Damien Hedde1d7e6722023-02-13 10:53:06 +00003655R: Damien Hedde <damien.hedde@dahe.fr>
Luc Michel59c7a182021-02-11 09:53:18 +01003656S: Maintained
3657F: include/hw/clock.h
3658F: include/hw/qdev-clock.h
3659F: hw/core/clock.c
3660F: hw/core/clock-vmstate.c
3661F: hw/core/qdev-clock.c
3662F: docs/devel/clocks.rst
3663
Peter Maydell4c046ce2024-02-20 16:06:18 +00003664Reset framework
3665M: Peter Maydell <peter.maydell@linaro.org>
3666S: Maintained
3667F: include/hw/resettable.h
3668F: include/hw/core/resetcontainer.h
3669F: include/sysemu/reset.h
3670F: hw/core/reset.c
3671F: hw/core/resettable.c
3672F: hw/core/resetcontainer.c
3673
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05003674Usermode Emulation
3675------------------
Markus Armbruster6347e1f2019-06-06 19:24:07 +02003676Overall usermode emulation
Paolo Bonzini486bbe52014-10-22 00:18:01 +02003677M: Riku Voipio <riku.voipio@iki.fi>
3678S: Maintained
Philippe Mathieu-Daudé58410662017-09-11 18:33:25 -03003679F: accel/tcg/user-exec*.c
Richard Hendersonbbf15aa2021-11-17 16:14:00 +01003680F: include/user/
3681F: common-user/
Paolo Bonzini486bbe52014-10-22 00:18:01 +02003682
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05003683BSD user
Warner Losh65a9d382021-03-08 15:40:23 -07003684M: Warner Losh <imp@bsdimp.com>
3685R: Kyle Evans <kevans@freebsd.org>
3686S: Maintained
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05003687F: bsd-user/
Alex Bennée812b31d2021-07-07 14:17:43 +01003688F: configs/targets/*-bsd-user.mak
Warner Loshadbae402022-01-09 11:50:24 -07003689F: tests/vm/*bsd
Warner Losh65a9d382021-03-08 15:40:23 -07003690T: git https://github.com/qemu-bsd-user/qemu-bsd-user bsd-user-rebase-3.1
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05003691
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05003692Linux user
Riku Voipio8f902c52020-07-02 14:16:36 +03003693M: Laurent Vivier <laurent@vivier.eu>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05003694S: Maintained
3695F: linux-user/
Alex Bennée812b31d2021-07-07 14:17:43 +01003696F: configs/targets/*linux-user.mak
Thomas Huthe5dd9872018-01-02 17:25:26 +01003697F: scripts/qemu-binfmt-conf.sh
Laurent Viviere3a6c822020-03-10 11:34:00 +01003698F: scripts/update-syscalltbl.sh
Laurent Vivier57333332020-03-10 11:34:03 +01003699F: scripts/update-mips-syscall-args.sh
Aurelien Jarno42f5a7e2011-01-14 20:39:19 +01003700
3701Tiny Code Generator (TCG)
3702-------------------------
Markus Armbruster6347e1f2019-06-06 19:24:07 +02003703Common TCG code
Richard Henderson336f7442020-11-12 20:35:43 -08003704M: Richard Henderson <richard.henderson@linaro.org>
Aurelien Jarno42f5a7e2011-01-14 20:39:19 +01003705S: Maintained
3706F: tcg/
Philippe Mathieu-Daudéd3582cf2020-01-01 12:23:02 +01003707F: include/tcg/
Aurelien Jarno42f5a7e2011-01-14 20:39:19 +01003708
Alex Bennée22b58672019-10-17 14:25:23 +01003709TCG Plugins
3710M: Alex Bennée <alex.bennee@linaro.org>
Alexandre Iooss3d7caf12021-07-09 15:29:59 +01003711R: Alexandre Iooss <erdnaxe@crans.org>
Mahmoud Mandoura6b95a92021-07-09 15:30:05 +01003712R: Mahmoud Mandour <ma.mandourr@gmail.com>
Pierrick Bouvier1a8081d2024-01-18 07:23:58 +04003713R: Pierrick Bouvier <pierrick.bouvier@linaro.org>
Alex Bennée22b58672019-10-17 14:25:23 +01003714S: Maintained
Alex Bennée8ea6abf2019-11-12 16:28:53 +00003715F: docs/devel/tcg-plugins.rst
Alex Bennée22b58672019-10-17 14:25:23 +01003716F: plugins/
Alex Bennée1b4c1362024-07-29 15:44:09 +01003717F: tests/tcg/plugins/
Willian Rampazzobbbd9b62021-11-05 12:53:54 -03003718F: tests/avocado/tcg_plugins.py
Alex Bennéec17a3862020-09-09 12:27:41 +01003719F: contrib/plugins/
Alex Bennée22b58672019-10-17 14:25:23 +01003720
Markus Armbruster6347e1f2019-06-06 19:24:07 +02003721AArch64 TCG target
Richard Henderson3e5a01e2020-01-06 16:30:37 +10003722M: Richard Henderson <richard.henderson@linaro.org>
Claudio Fontanab25a4642013-06-12 16:20:24 +01003723S: Maintained
Peter Maydellb4f2bd12015-11-03 13:49:42 +00003724L: qemu-arm@nongnu.org
Claudio Fontanab25a4642013-06-12 16:20:24 +01003725F: tcg/aarch64/
3726
Markus Armbruster6347e1f2019-06-06 19:24:07 +02003727ARM TCG target
Peter Maydell7c6ef612021-07-22 19:09:51 +01003728M: Richard Henderson <richard.henderson@linaro.org>
Aurelien Jarno42f5a7e2011-01-14 20:39:19 +01003729S: Maintained
Peter Maydellb4f2bd12015-11-03 13:49:42 +00003730L: qemu-arm@nongnu.org
Aurelien Jarno42f5a7e2011-01-14 20:39:19 +01003731F: tcg/arm/
3732
Markus Armbruster6347e1f2019-06-06 19:24:07 +02003733i386 TCG target
Richard Henderson336f7442020-11-12 20:35:43 -08003734M: Richard Henderson <richard.henderson@linaro.org>
Aurelien Jarno42f5a7e2011-01-14 20:39:19 +01003735S: Maintained
3736F: tcg/i386/
3737
WANG Xueruiafa33252021-12-21 13:40:36 +08003738LoongArch64 TCG target
3739M: WANG Xuerui <git@xen0n.name>
3740S: Maintained
3741F: tcg/loongarch64/
3742
Markus Armbruster6347e1f2019-06-06 19:24:07 +02003743MIPS TCG target
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02003744M: Philippe Mathieu-Daudé <philmd@linaro.org>
Aleksandar Markovic099d5102020-03-13 02:00:50 +01003745R: Aurelien Jarno <aurelien@aurel32.net>
Huacai Chendab1e1e2020-12-05 17:22:01 +08003746R: Huacai Chen <chenhuacai@kernel.org>
Aleksandar Markovic15d983d2020-07-01 20:25:58 +02003747R: Jiaxun Yang <jiaxun.yang@flygoat.com>
Aleksandar Rikalo45c577f2024-02-09 07:21:47 +01003748R: Aleksandar Rikalo <arikalo@gmail.com>
Philippe Mathieu-Daudécf960312020-10-09 17:05:13 +02003749S: Odd Fixes
Aurelien Jarno42f5a7e2011-01-14 20:39:19 +01003750F: tcg/mips/
3751
Markus Armbruster6347e1f2019-06-06 19:24:07 +02003752PPC TCG target
Richard Henderson336f7442020-11-12 20:35:43 -08003753M: Richard Henderson <richard.henderson@linaro.org>
Pranith Kumar15610d42016-10-18 10:21:00 -07003754S: Odd Fixes
Aurelien Jarno42f5a7e2011-01-14 20:39:19 +01003755F: tcg/ppc/
Aurelien Jarno42f5a7e2011-01-14 20:39:19 +01003756
Markus Armbruster6347e1f2019-06-06 19:24:07 +02003757RISC-V TCG target
Palmer Dabbeltc1677bc2019-10-29 09:39:03 -07003758M: Palmer Dabbelt <palmer@dabbelt.com>
Alistair Francisfb1f70f2018-12-19 19:17:07 +00003759M: Alistair Francis <Alistair.Francis@wdc.com>
3760L: qemu-riscv@nongnu.org
3761S: Maintained
3762F: tcg/riscv/
Thomas Huth5d0ce902023-09-29 14:37:27 +02003763F: disas/riscv.[ch]
Alistair Francisfb1f70f2018-12-19 19:17:07 +00003764
Markus Armbruster6347e1f2019-06-06 19:24:07 +02003765S390 TCG target
Richard Henderson336f7442020-11-12 20:35:43 -08003766M: Richard Henderson <richard.henderson@linaro.org>
Aurelien Jarno42f5a7e2011-01-14 20:39:19 +01003767S: Maintained
3768F: tcg/s390/
Cornelia Huck146bd282017-10-05 17:05:23 +02003769L: qemu-s390x@nongnu.org
Aurelien Jarno42f5a7e2011-01-14 20:39:19 +01003770
Markus Armbruster6347e1f2019-06-06 19:24:07 +02003771SPARC TCG target
Markus Armbruster297e8002016-06-20 16:19:25 +02003772S: Odd Fixes
Richard Henderson6d0b52e2022-10-17 08:00:57 +03003773F: tcg/sparc64/
Paolo Bonzinic17652e2015-09-22 11:36:16 +02003774F: disas/sparc.c
Stefan Weilbc75c9e2011-11-24 23:20:43 +01003775
Markus Armbruster6347e1f2019-06-06 19:24:07 +02003776TCI TCG target
Stefan Weilbc75c9e2011-11-24 23:20:43 +01003777M: Stefan Weil <sw@weilnetz.de>
3778S: Maintained
Andreas Färber8ef9cd52012-04-13 17:22:03 +02003779F: tcg/tci/
Philippe Mathieu-Daudé752a2ae2017-06-29 12:03:07 -03003780F: tcg/tci.c
Paolo Bonzinic17652e2015-09-22 11:36:16 +02003781F: disas/tci.c
Andreas Färberaa09c952012-04-13 17:52:27 +02003782
Stefan Hajnoczif05b3282013-11-13 10:33:10 +01003783Block drivers
3784-------------
3785VMDK
Fam Zhengfe5ca462018-11-21 23:30:36 +08003786M: Fam Zheng <fam@euphon.net>
Kevin Wolfc95e4c02015-04-30 15:15:13 +02003787L: qemu-block@nongnu.org
Stefan Hajnoczif05b3282013-11-13 10:33:10 +01003788S: Supported
3789F: block/vmdk.c
3790
3791RBD
Ilya Dryomov07255702021-05-19 13:25:13 +02003792M: Ilya Dryomov <idryomov@gmail.com>
Peter Lievencbd58e72023-01-05 10:50:39 +01003793R: Peter Lieven <pl@dlhnet.de>
Jeff Cody280458a2015-03-06 12:16:06 -05003794L: qemu-block@nongnu.org
Stefan Hajnoczif05b3282013-11-13 10:33:10 +01003795S: Supported
3796F: block/rbd.c
3797
Stefan Hajnoczif05b3282013-11-13 10:33:10 +01003798VHDX
Jeff Cody5f5246b2018-09-26 14:05:33 -04003799M: Jeff Cody <codyprime@gmail.com>
Jeff Cody280458a2015-03-06 12:16:06 -05003800L: qemu-block@nongnu.org
Stefan Hajnoczif05b3282013-11-13 10:33:10 +01003801S: Supported
3802F: block/vhdx*
3803
3804VDI
3805M: Stefan Weil <sw@weilnetz.de>
Kevin Wolfc95e4c02015-04-30 15:15:13 +02003806L: qemu-block@nongnu.org
Stefan Hajnoczif05b3282013-11-13 10:33:10 +01003807S: Maintained
3808F: block/vdi.c
3809
Stefan Hajnoczifd66dbd2022-10-13 14:58:57 -04003810blkio
3811M: Stefan Hajnoczi <stefanha@redhat.com>
3812L: qemu-block@nongnu.org
3813S: Maintained
3814F: block/blkio.c
3815
Stefan Hajnoczif05b3282013-11-13 10:33:10 +01003816iSCSI
3817M: Ronnie Sahlberg <ronniesahlberg@gmail.com>
3818M: Paolo Bonzini <pbonzini@redhat.com>
Peter Lievencbd58e72023-01-05 10:50:39 +01003819M: Peter Lieven <pl@dlhnet.de>
Kevin Wolfc95e4c02015-04-30 15:15:13 +02003820L: qemu-block@nongnu.org
Paolo Bonzini2185fd62018-10-19 14:25:42 +02003821S: Odd Fixes
Stefan Hajnoczif05b3282013-11-13 10:33:10 +01003822F: block/iscsi.c
Peter Lieven2deb63c2017-01-24 13:49:21 +01003823F: block/iscsi-opts.c
Stefan Hajnoczif05b3282013-11-13 10:33:10 +01003824
Eric Blake99c62e72017-07-07 13:21:51 -05003825Network Block Device (NBD)
3826M: Eric Blake <eblake@redhat.com>
Vladimir Sementsov-Ogievskiy9e4067b2022-05-26 14:54:32 +03003827M: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
Eric Blake99c62e72017-07-07 13:21:51 -05003828L: qemu-block@nongnu.org
3829S: Maintained
3830F: block/nbd*
3831F: nbd/
3832F: include/block/nbd*
3833F: qemu-nbd.*
3834F: blockdev-nbd.c
Peter Maydell8dac93a2024-08-09 17:37:54 +01003835F: docs/interop/nbd.rst
Wainer dos Santos Moschetta33b2b382021-02-04 10:54:25 -03003836F: docs/tools/qemu-nbd.rst
Eric Blake58a6fdc2022-05-11 19:49:24 -05003837F: tests/qemu-iotests/tests/*nbd*
Stefan Hajnocziebe2aad2018-11-08 11:15:28 +00003838T: git https://repo.or.cz/qemu/ericb.git nbd
Vladimir Sementsov-Ogievskiy9e4067b2022-05-26 14:54:32 +03003839T: git https://gitlab.com/vsementsov/qemu.git block
Eric Blake99c62e72017-07-07 13:21:51 -05003840
Peter Lieven6542aa92014-02-03 10:26:13 +01003841NFS
Peter Lievencbd58e72023-01-05 10:50:39 +01003842M: Peter Lieven <pl@dlhnet.de>
Jeff Cody280458a2015-03-06 12:16:06 -05003843L: qemu-block@nongnu.org
Peter Lieven6542aa92014-02-03 10:26:13 +01003844S: Maintained
3845F: block/nfs.c
3846
Stefan Hajnoczif05b3282013-11-13 10:33:10 +01003847SSH
3848M: Richard W.M. Jones <rjones@redhat.com>
Jeff Cody280458a2015-03-06 12:16:06 -05003849L: qemu-block@nongnu.org
Stefan Hajnoczif05b3282013-11-13 10:33:10 +01003850S: Supported
3851F: block/ssh.c
Chrysostomos Nanakosc9a12e72014-08-04 17:35:32 +03003852
Jeff Cody280458a2015-03-06 12:16:06 -05003853CURL
Jeff Cody280458a2015-03-06 12:16:06 -05003854L: qemu-block@nongnu.org
Thomas Huth5c6090f2019-05-06 08:18:54 +02003855S: Odd Fixes
Jeff Cody280458a2015-03-06 12:16:06 -05003856F: block/curl.c
Jeff Cody280458a2015-03-06 12:16:06 -05003857
3858GLUSTER
Jeff Cody280458a2015-03-06 12:16:06 -05003859L: qemu-block@nongnu.org
Thomas Huth5c6090f2019-05-06 08:18:54 +02003860L: integration@gluster.org
3861S: Odd Fixes
Jeff Cody280458a2015-03-06 12:16:06 -05003862F: block/gluster.c
Gongleib5e94762014-10-22 11:07:57 +08003863
Fam Zheng199667a2015-04-01 09:45:40 +08003864Null Block Driver
Fam Zhengfe5ca462018-11-21 23:30:36 +08003865M: Fam Zheng <fam@euphon.net>
Fam Zheng199667a2015-04-01 09:45:40 +08003866L: qemu-block@nongnu.org
3867S: Supported
3868F: block/null.c
3869
Fam Zhengbdd6a902018-01-16 14:08:55 +08003870NVMe Block Driver
Stefan Hajnoczi1a949782020-09-07 12:16:32 +01003871M: Stefan Hajnoczi <stefanha@redhat.com>
3872R: Fam Zheng <fam@euphon.net>
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02003873R: Philippe Mathieu-Daudé <philmd@linaro.org>
Fam Zhengbdd6a902018-01-16 14:08:55 +08003874L: qemu-block@nongnu.org
3875S: Supported
3876F: block/nvme*
Philippe Mathieu-Daudédc0b4d92020-07-01 16:06:34 +02003877F: include/block/nvme.h
Stefan Hajnoczi1a949782020-09-07 12:16:32 +01003878T: git https://github.com/stefanha/qemu.git block
Fam Zhengbdd6a902018-01-16 14:08:55 +08003879
Gongleib5e94762014-10-22 11:07:57 +08003880Bootdevice
3881M: Gonglei <arei.gonglei@huawei.com>
3882S: Maintained
Philippe Mathieu-Daudé8d7f2e72023-10-04 11:06:28 +02003883F: system/bootdevice.c
Alberto Garciaecdda9e2015-03-16 18:22:05 +02003884
3885Quorum
3886M: Alberto Garcia <berto@igalia.com>
3887S: Supported
3888F: block/quorum.c
3889L: qemu-block@nongnu.org
Stefan Hajnoczie7c6e632015-04-29 15:13:26 +01003890
Aapo Vienamobfcc2242018-07-03 17:48:48 +03003891blklogwrites
3892M: Ari Sundholm <ari@tuxera.com>
3893L: qemu-block@nongnu.org
3894S: Supported
3895F: block/blklogwrites.c
3896
Stefan Hajnoczie7c6e632015-04-29 15:13:26 +01003897blkverify
3898M: Stefan Hajnoczi <stefanha@redhat.com>
3899L: qemu-block@nongnu.org
3900S: Supported
3901F: block/blkverify.c
Peter Maydell78ac2d82024-10-14 17:05:53 +01003902F: docs/devel/blkverify.rst
Stefan Hajnoczie7c6e632015-04-29 15:13:26 +01003903
3904bochs
3905M: Stefan Hajnoczi <stefanha@redhat.com>
3906L: qemu-block@nongnu.org
3907S: Supported
3908F: block/bochs.c
3909
3910cloop
3911M: Stefan Hajnoczi <stefanha@redhat.com>
3912L: qemu-block@nongnu.org
3913S: Supported
3914F: block/cloop.c
3915
3916dmg
3917M: Stefan Hajnoczi <stefanha@redhat.com>
3918L: qemu-block@nongnu.org
3919S: Supported
3920F: block/dmg.c
3921
3922parallels
3923M: Stefan Hajnoczi <stefanha@redhat.com>
Denis V. Lunevf3073712015-08-21 20:44:16 +03003924M: Denis V. Lunev <den@openvz.org>
Stefan Hajnoczie7c6e632015-04-29 15:13:26 +01003925L: qemu-block@nongnu.org
3926S: Supported
3927F: block/parallels.c
Vladimir Sementsov-Ogievskiya960c4b2021-03-04 12:51:51 +03003928F: block/parallels-ext.c
Peter Maydell1bc0fc02024-08-09 17:37:55 +01003929F: docs/interop/parallels.rst
Peter Maydell7d9fc7e2024-08-09 17:37:55 +01003930F: docs/interop/prl-xml.rst
Denis V. Lunevbb20ec62022-08-23 10:27:00 +02003931T: git https://src.openvz.org/scm/~den/qemu.git parallels
Stefan Hajnoczie7c6e632015-04-29 15:13:26 +01003932
3933qed
3934M: Stefan Hajnoczi <stefanha@redhat.com>
3935L: qemu-block@nongnu.org
3936S: Supported
3937F: block/qed.c
3938
3939raw
3940M: Kevin Wolf <kwolf@redhat.com>
3941L: qemu-block@nongnu.org
3942S: Supported
3943F: block/linux-aio.c
Markus Armbrusterf586d5f2016-09-05 14:28:52 +02003944F: include/block/raw-aio.h
Eric Blake2e6fc7e2016-12-02 13:48:53 -06003945F: block/raw-format.c
Eric Blakec1bb86c2016-12-02 13:48:54 -06003946F: block/file-posix.c
3947F: block/file-win32.c
Stefan Hajnoczie7c6e632015-04-29 15:13:26 +01003948F: block/win32-aio.c
3949
Aarushi Mehta6663a0a2020-01-20 14:18:47 +00003950Linux io_uring
3951M: Aarushi Mehta <mehta.aaru20@gmail.com>
3952M: Julia Suvorova <jusual@redhat.com>
3953M: Stefan Hajnoczi <stefanha@redhat.com>
Stefano Garzarella0ef28012021-07-28 15:15:15 +02003954R: Stefano Garzarella <sgarzare@redhat.com>
Aarushi Mehta6663a0a2020-01-20 14:18:47 +00003955L: qemu-block@nongnu.org
3956S: Maintained
3957F: block/io_uring.c
Aarushi Mehta06a47ef2020-01-20 14:18:48 +00003958F: stubs/io_uring.c
Aarushi Mehta6663a0a2020-01-20 14:18:47 +00003959
Stefan Hajnoczie7c6e632015-04-29 15:13:26 +01003960qcow2
3961M: Kevin Wolf <kwolf@redhat.com>
Hanna Reitzb0c47982021-08-10 16:04:11 +02003962M: Hanna Reitz <hreitz@redhat.com>
Stefan Hajnoczie7c6e632015-04-29 15:13:26 +01003963L: qemu-block@nongnu.org
3964S: Supported
3965F: block/qcow2*
Philippe Mathieu-Daudéb24f9882017-09-08 14:36:23 -03003966F: docs/interop/qcow2.txt
Stefan Hajnoczie7c6e632015-04-29 15:13:26 +01003967
3968qcow
3969M: Kevin Wolf <kwolf@redhat.com>
3970L: qemu-block@nongnu.org
3971S: Supported
3972F: block/qcow.c
3973
3974blkdebug
3975M: Kevin Wolf <kwolf@redhat.com>
Hanna Reitzb0c47982021-08-10 16:04:11 +02003976M: Hanna Reitz <hreitz@redhat.com>
Stefan Hajnoczie7c6e632015-04-29 15:13:26 +01003977L: qemu-block@nongnu.org
3978S: Supported
3979F: block/blkdebug.c
Peter Maydelld5f42aa2024-10-14 17:05:53 +01003980F: docs/devel/blkdebug.rst
Stefan Hajnoczie7c6e632015-04-29 15:13:26 +01003981
3982vpc
3983M: Kevin Wolf <kwolf@redhat.com>
3984L: qemu-block@nongnu.org
3985S: Supported
3986F: block/vpc.c
3987
3988vvfat
3989M: Kevin Wolf <kwolf@redhat.com>
3990L: qemu-block@nongnu.org
Prasad J Pandit4b7c5bc2020-07-11 00:34:51 +05303991S: Odd Fixes
Stefan Hajnoczie7c6e632015-04-29 15:13:26 +01003992F: block/vvfat.c
Stefan Hajnocziabfe4e92015-04-29 15:13:28 +01003993
3994Image format fuzzer
3995M: Stefan Hajnoczi <stefanha@redhat.com>
3996L: qemu-block@nongnu.org
3997S: Supported
3998F: tests/image-fuzzer/
Daniel P. Berrange717171b2015-09-24 14:41:38 +01003999
Coiby Xu8675a372020-09-18 16:09:12 +08004000Vhost-user block device backend server
4001M: Coiby Xu <Coiby.Xu@gmail.com>
4002S: Maintained
4003F: block/export/vhost-user-blk-server.c
Stefan Hajnoczi80a06cc2020-09-24 16:15:48 +01004004F: block/export/vhost-user-blk-server.h
Xie Yongji5c368022022-05-23 16:46:06 +08004005F: block/export/virtio-blk-handler.c
4006F: block/export/virtio-blk-handler.h
Stefan Hajnoczi80a06cc2020-09-24 16:15:48 +01004007F: include/qemu/vhost-user-server.h
Coiby Xu8675a372020-09-18 16:09:12 +08004008F: tests/qtest/libqos/vhost-user-blk.c
Coiby Xu80695202021-03-22 09:23:25 +00004009F: tests/qtest/libqos/vhost-user-blk.h
4010F: tests/qtest/vhost-user-blk-test.c
Stefan Hajnoczi80a06cc2020-09-24 16:15:48 +01004011F: util/vhost-user-server.c
Coiby Xu8675a372020-09-18 16:09:12 +08004012
Max Reitz0c9b70d2020-10-27 20:05:42 +01004013FUSE block device exports
Hanna Reitzb0c47982021-08-10 16:04:11 +02004014M: Hanna Reitz <hreitz@redhat.com>
Max Reitz0c9b70d2020-10-27 20:05:42 +01004015L: qemu-block@nongnu.org
4016S: Supported
4017F: block/export/fuse.c
4018
Xie Yongji2a2359b2022-05-23 16:46:09 +08004019VDUSE library and block device exports
Xie Yongjia6caeee2022-05-23 16:46:08 +08004020M: Xie Yongji <xieyongji@bytedance.com>
4021S: Maintained
4022F: subprojects/libvduse/
Xie Yongji2a2359b2022-05-23 16:46:09 +08004023F: block/export/vduse-blk.c
4024F: block/export/vduse-blk.h
Xie Yongjia6caeee2022-05-23 16:46:08 +08004025
Changlong Xie049105a2016-07-27 15:01:53 +08004026Replication
Changlong Xie205f8612017-04-18 11:08:13 +08004027M: Wen Congyang <wencongyang2@huawei.com>
Zhang Chen3ccc0a02017-04-21 15:12:47 +08004028M: Xie Changlong <xiechanglong.d@gmail.com>
Changlong Xie049105a2016-07-27 15:01:53 +08004029S: Supported
4030F: replication*
4031F: block/replication.c
Thomas Huthda668aa2021-03-10 07:33:14 +01004032F: tests/unit/test-replication.c
Changlong Xie049105a2016-07-27 15:01:53 +08004033F: docs/block-replication.txt
4034
Alex Bennéeb052fec2019-05-13 15:32:56 +01004035Semihosting
4036M: Alex Bennée <alex.bennee@linaro.org>
Alex Bennéeb052fec2019-05-13 15:32:56 +01004037S: Maintained
Philippe Mathieu-Daudé8df9f0c2021-03-05 13:54:50 +00004038F: semihosting/
Philippe Mathieu-Daudé6b5fe132021-03-05 13:54:49 +00004039F: include/semihosting/
Alex Bennée3539d842021-03-23 16:52:51 +00004040F: tests/tcg/multiarch/arm-compat-semi/
Alex Bennéeb904a902022-02-25 17:20:21 +00004041F: tests/tcg/aarch64/system/semiheap.c
Alex Bennéeb052fec2019-05-13 15:32:56 +01004042
John G Johnson8684f1b2021-01-29 11:46:02 -05004043Multi-process QEMU
4044M: Elena Ufimtseva <elena.ufimtseva@oracle.com>
4045M: Jagannathan Raman <jag.raman@oracle.com>
John G Johnson8684f1b2021-01-29 11:46:02 -05004046S: Maintained
4047F: docs/devel/multi-process.rst
Elena Ufimtseva639090d2021-01-29 11:46:03 -05004048F: docs/system/multi-process.rst
Jagannathan Raman6fbd84d2021-01-29 11:46:06 -05004049F: hw/pci-host/remote.c
4050F: include/hw/pci-host/remote.h
Jagannathan Raman3f0e7e52021-01-29 11:46:07 -05004051F: hw/remote/machine.c
4052F: include/hw/remote/machine.h
Elena Ufimtsevaad22c302021-01-29 11:46:10 -05004053F: hw/remote/mpqemu-link.c
4054F: include/hw/remote/mpqemu-link.h
Jagannathan Raman48b06f52021-01-29 11:46:11 -05004055F: hw/remote/message.c
Jagannathan Ramanc7d80c72021-01-29 11:46:12 -05004056F: hw/remote/remote-obj.c
Jagannathan Ramaned5d0012021-01-29 11:46:13 -05004057F: include/hw/remote/memory.h
4058F: hw/remote/memory.c
Elena Ufimtseva9f811202021-01-29 11:46:14 -05004059F: hw/remote/proxy.c
4060F: include/hw/remote/proxy.h
Jagannathan Ramanc746b742021-01-29 11:46:18 -05004061F: hw/remote/proxy-memory-listener.c
4062F: include/hw/remote/proxy-memory-listener.h
Jagannathan Ramanbd36adb2021-01-29 11:46:19 -05004063F: hw/remote/iohub.c
4064F: include/hw/remote/iohub.h
Jagannathan Raman55116962022-06-13 16:26:24 -04004065F: subprojects/libvfio-user
Jagannathan Raman8f9a9252022-06-13 16:26:25 -04004066F: hw/remote/vfio-user-obj.c
Jagannathan Raman08cf3dc2022-06-13 16:26:33 -04004067F: include/hw/remote/vfio-user-obj.h
Jagannathan Raman253007d2022-06-13 16:26:30 -04004068F: hw/remote/iommu.c
4069F: include/hw/remote/iommu.h
John G Johnson8684f1b2021-01-29 11:46:02 -05004070
Andrew Melnychenko90322e62021-05-14 14:48:35 +03004071EBPF:
4072M: Jason Wang <jasowang@redhat.com>
4073R: Andrew Melnychenko <andrew@daynix.com>
4074R: Yuri Benditovich <yuri.benditovich@daynix.com>
4075S: Maintained
Thomas Huth2635f962023-10-17 17:17:40 +02004076F: docs/devel/ebpf_rss.rst
Andrew Melnychenko90322e62021-05-14 14:48:35 +03004077F: ebpf/*
4078F: tools/ebpf/*
4079
Alex Bennéeb9e02c02016-01-31 17:32:39 +00004080Build and test automation
4081-------------------------
Thomas Huth9872ba02021-03-09 12:23:56 +01004082Build and test automation, general continuous integration
Alex Bennéeb9e02c02016-01-31 17:32:39 +00004083M: Alex Bennée <alex.bennee@linaro.org>
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02004084M: Philippe Mathieu-Daudé <philmd@linaro.org>
Thomas Huth9872ba02021-03-09 12:23:56 +01004085M: Thomas Huth <thuth@redhat.com>
4086R: Wainer dos Santos Moschetta <wainersm@redhat.com>
Alex Bennéee70dc7f2017-02-20 10:51:39 +00004087S: Maintained
Yonggang Luoe7c2d742022-03-23 16:07:55 +08004088F: .github/workflows/lockdown.yml
Thomas Huth9872ba02021-03-09 12:23:56 +01004089F: .gitlab-ci.yml
4090F: .gitlab-ci.d/
Alex Bennéeb9e02c02016-01-31 17:32:39 +00004091F: .travis.yml
Thomas Huth145af272023-09-29 15:16:36 +02004092F: docs/devel/ci*
Philippe Mathieu-Daudé04250c62021-02-11 12:27:36 +00004093F: scripts/ci/
Alex Bennéee70dc7f2017-02-20 10:51:39 +00004094F: tests/docker/
Fam Zheng18023822017-09-05 10:11:59 +08004095F: tests/vm/
Philippe Mathieu-Daudé3260f4e2022-02-04 20:43:14 +00004096F: tests/lcitool/
Alex Bennée267fe572023-02-28 19:06:39 +00004097F: tests/avocado/tuxrun_baselines.py
Philippe Mathieu-Daudé54dbfd82019-01-24 02:00:22 +01004098F: scripts/archive-source.sh
Thomas Huth4db546d2022-12-12 18:48:41 +01004099F: docs/devel/testing.rst
Thomas Huth9872ba02021-03-09 12:23:56 +01004100W: https://gitlab.com/qemu-project/qemu/pipelines
Alex Bennéee70dc7f2017-02-20 10:51:39 +00004101W: https://travis-ci.org/qemu/qemu
Daniel P. Berrange717171b2015-09-24 14:41:38 +01004102
Ed Maste7162fbb2019-01-22 17:25:58 +00004103FreeBSD Hosted Continuous Integration
4104M: Ed Maste <emaste@freebsd.org>
4105M: Li-Wen Hsu <lwhsu@freebsd.org>
Ed Maste7162fbb2019-01-22 17:25:58 +00004106S: Maintained
Thomas Huth5be6fd02022-02-17 15:11:38 +01004107F: .gitlab-ci.d/cirrus/freebsd*
4108F: tests/vm/freebsd
Ed Maste7162fbb2019-01-22 17:25:58 +00004109W: https://cirrus-ci.com/github/qemu/qemu
4110
Thomas Huthfa32a632024-08-30 15:38:02 +02004111Functional testing framework
4112M: Thomas Huth <thuth@redhat.com>
4113R: Philippe Mathieu-Daudé <philmd@linaro.org>
4114F: tests/functional/qemu_test/
4115
Yonggang Luodaee8de2021-01-07 02:19:17 -08004116Windows Hosted Continuous Integration
4117M: Yonggang Luo <luoyonggang@gmail.com>
4118S: Maintained
Philippe Mathieu-Daudéda80f112023-03-22 14:57:21 +01004119F: .gitlab-ci.d/windows.yml
Yonggang Luodaee8de2021-01-07 02:19:17 -08004120
Alex Bennée7e970172018-04-06 13:32:18 +01004121Guest Test Compilation Support
4122M: Alex Bennée <alex.bennee@linaro.org>
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02004123R: Philippe Mathieu-Daudé <philmd@linaro.org>
Stefan Hajnoczi00a25292019-03-01 16:35:18 +00004124S: Maintained
Alex Bennée162f9162022-10-27 19:36:23 +01004125F: tests/tcg/Makefile.target
Alex Bennée7e970172018-04-06 13:32:18 +01004126
Willian Rampazzobbbd9b62021-11-05 12:53:54 -03004127Integration Testing with the Avocado framework
Philippe Mathieu-Daudé6634f1c2020-01-29 17:45:05 +01004128W: https://trello.com/b/6Qi1pxVn/avocado-qemu
4129R: Cleber Rosa <crosa@redhat.com>
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02004130R: Philippe Mathieu-Daudé <philmd@linaro.org>
Philippe Mathieu-Daudé6634f1c2020-01-29 17:45:05 +01004131R: Wainer dos Santos Moschetta <wainersm@redhat.com>
4132S: Odd Fixes
Willian Rampazzobbbd9b62021-11-05 12:53:54 -03004133F: tests/avocado/
Philippe Mathieu-Daudé6634f1c2020-01-29 17:45:05 +01004134
Philippe Mathieu-Daudé1e970152021-11-29 14:09:31 +00004135GitLab custom runner (Works On Arm Sponsored)
4136M: Alex Bennée <alex.bennee@linaro.org>
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02004137M: Philippe Mathieu-Daudé <philmd@linaro.org>
Philippe Mathieu-Daudé1e970152021-11-29 14:09:31 +00004138S: Maintained
Alex Bennée66dca262022-09-14 16:59:40 +01004139F: .gitlab-ci.d/custom-runners/ubuntu-22.04-aarch64.yml
4140F: .gitlab-ci.d/custom-runners/ubuntu-22.04-aarch32.yml
Philippe Mathieu-Daudé1e970152021-11-29 14:09:31 +00004141
Daniel P. Berrange717171b2015-09-24 14:41:38 +01004142Documentation
4143-------------
4144Build system architecture
4145M: Daniel P. Berrange <berrange@redhat.com>
4146S: Odd Fixes
Stefano Garzarella551bdfa2021-05-17 17:17:00 +02004147F: docs/devel/build-system.rst
Fam Zheng8a49e972016-06-01 12:25:28 +08004148
Alex Bennée92329a72019-01-14 15:25:13 +00004149GIT Data Mining Config
4150M: Alex Bennée <alex.bennee@linaro.org>
4151S: Odd Fixes
4152F: gitdm.config
4153F: contrib/gitdm/*
4154
Markus Armbrusterb02c9bc2018-07-16 09:32:26 +02004155Incompatible changes
Daniel P. Berrangéf5c5e7d2023-10-27 10:56:43 +01004156R: devel@lists.libvirt.org
Mao Zhongyia476b212021-07-23 14:58:28 +08004157F: docs/about/deprecated.rst
Markus Armbrusterb02c9bc2018-07-16 09:32:26 +02004158
Daniel P. Berrangeaef45d52017-09-29 11:11:56 +01004159Build System
4160------------
Alex Bennée48fad832022-10-27 19:36:21 +01004161Meson
4162M: Paolo Bonzini <pbonzini@redhat.com>
4163R: Marc-André Lureau <marcandre.lureau@redhat.com>
4164R: Daniel P. Berrange <berrange@redhat.com>
Alex Bennée48fad832022-10-27 19:36:21 +01004165R: Philippe Mathieu-Daudé <philmd@linaro.org>
4166S: Maintained
4167F: meson.build
4168F: meson_options.txt
4169F: scripts/meson-buildoptions.*
4170F: scripts/check_sparse.py
4171F: scripts/symlink-install-tree.py
4172
4173Top Level Makefile and configure
4174M: Paolo Bonzini <pbonzini@redhat.com>
4175R: Alex Bennée <alex.bennee@linaro.org>
4176R: Thomas Huth <thuth@redhat.com>
4177S: Maintained
4178F: Makefile
4179F: configure
4180F: scripts/mtest2make.py
4181F: tests/Makefile.include
4182
Paolo Bonzini2f38ff792023-05-03 19:29:17 +02004183Kconfig
4184M: Paolo Bonzini <pbonzini@redhat.com>
4185S: Maintained
4186F: scripts/minikconf.py
4187F: docs/devel/kconfig.rst
4188F: Kconfig*
4189F: */Kconfig*
4190F: hw/*/Kconfig*
4191F: target/*/Kconfig*
4192
Daniel P. Berrangeaef45d52017-09-29 11:11:56 +01004193GIT submodules
4194M: Daniel P. Berrange <berrange@redhat.com>
4195S: Odd Fixes
4196F: scripts/git-submodule.sh
Peter Maydellc10e01b2019-03-07 14:26:47 +00004197
Aleksandar Markovicef45a392019-12-10 13:55:15 +01004198UI translations
John Snow4251dfb2020-10-30 11:34:16 -04004199S: Orphan
Aleksandar Markovicef45a392019-12-10 13:55:15 +01004200F: po/*.po
4201
Peter Maydellc10e01b2019-03-07 14:26:47 +00004202Sphinx documentation configuration and build machinery
4203M: Peter Maydell <peter.maydell@linaro.org>
4204S: Maintained
4205F: docs/conf.py
4206F: docs/*/conf.py
Peter Maydell4078ee52020-09-25 17:23:02 +01004207F: docs/sphinx/
Peter Maydell13f934e2021-07-05 10:55:46 +01004208F: docs/_templates/
Peter Maydelld95f2602023-12-12 16:23:13 +00004209F: docs/devel/docs.rst
Aleksandar Markovic53fb8bf2020-06-27 20:13:17 +02004210
Manos Pitsidianakis764a6ee2024-10-03 16:28:44 +03004211Rust build system integration
4212M: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
4213S: Maintained
Manos Pitsidianakis6fdc5bc2024-10-03 16:28:46 +03004214F: scripts/rust/
4215F: rust/.gitignore
Manos Pitsidianakis764a6ee2024-10-03 16:28:44 +03004216F: rust/Kconfig
Manos Pitsidianakis6fdc5bc2024-10-03 16:28:46 +03004217F: rust/meson.build
4218F: rust/wrapper.h
Manos Pitsidianakis764a6ee2024-10-03 16:28:44 +03004219
Aleksandar Markovic53fb8bf2020-06-27 20:13:17 +02004220Miscellaneous
4221-------------
4222Performance Tools and Tests
4223M: Ahmed Karaman <ahmedkhaledkaraman@gmail.com>
4224S: Maintained
4225F: scripts/performance/
Alex Bennée899c3fc2023-04-03 14:49:10 +01004226
4227Code Coverage Tools
4228M: Alex Bennée <alex.bennee@linaro.org>
4229S: Odd Fixes
4230F: scripts/coverage/
Maksim Davydovb9285052024-03-19 00:35:50 +03004231
4232Machine development tool
4233M: Maksim Davydov <davydov-max@yandex-team.ru>
4234S: Supported
4235F: scripts/compare-machine-types.py