blob: 3584d6a6c6da9a3210150534d640d29ddf329dce [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/
Willian Rampazzobbbd9b62021-11-05 12:53:54 -0300225F: tests/avocado/machine_avr6.py
Michael Rolnikc8c0d262020-01-24 01:51:07 +0100226
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200227CRIS TCG CPUs
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500228M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
229S: Maintained
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200230F: target/cris/
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100231F: hw/cris/
Thomas Huthc9b90092016-09-23 18:08:46 +0200232F: include/hw/cris/
Paolo Bonzinic0bd0b52014-10-22 00:31:28 +0200233F: tests/tcg/cris/
Paolo Bonzinic17652e2015-09-22 11:36:16 +0200234F: disas/cris.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500235
Taylor Simpson5f508bc2021-02-07 23:45:51 -0600236Hexagon TCG CPUs
Taylor Simpson7d196e22023-05-24 09:11:26 -0700237M: Brian Cain <bcain@quicinc.com>
Taylor Simpson5f508bc2021-02-07 23:45:51 -0600238S: Supported
239F: target/hexagon/
Alessandro Di Federico647357d2022-09-23 19:38:21 +0200240X: target/hexagon/idef-parser/
241X: target/hexagon/gen_idef_parser_funcs.py
Taylor Simpson5f508bc2021-02-07 23:45:51 -0600242F: linux-user/hexagon/
243F: tests/tcg/hexagon/
244F: disas/hexagon.c
Alex Bennée812b31d2021-07-07 14:17:43 +0100245F: configs/targets/hexagon-linux-user/default.mak
Alessandro Di Federicoafbdf0a2021-05-12 11:20:26 +0100246F: docker/dockerfiles/debian-hexagon-cross.docker
Matheus Tavares Bernardinoab930e82023-05-04 12:37:33 -0300247F: gdb-xml/hexagon*.xml
Brian Cain2442cc62024-07-31 13:39:10 -0700248T: git https://github.com/quic/qemu.git hex-next
Taylor Simpson5f508bc2021-02-07 23:45:51 -0600249
Alessandro Di Federico647357d2022-09-23 19:38:21 +0200250Hexagon idef-parser
251M: Alessandro Di Federico <ale@rev.ng>
252M: Anton Johansson <anjo@rev.ng>
253S: Supported
254F: target/hexagon/idef-parser/
255F: target/hexagon/gen_idef_parser_funcs.py
256
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200257HPPA (PA-RISC) TCG CPUs
Richard Henderson336f7442020-11-12 20:35:43 -0800258M: Richard Henderson <richard.henderson@linaro.org>
Richard Henderson61766fe2016-12-15 11:26:14 -0800259S: Maintained
260F: target/hppa/
261F: disas/hppa.c
Thomas Huth71c1d342023-10-18 08:24:01 +0200262F: tests/tcg/hppa/
Richard Henderson61766fe2016-12-15 11:26:14 -0800263
Song Gao64baad62022-06-06 20:42:51 +0800264LoongArch TCG CPUs
265M: Song Gao <gaosong@loongson.cn>
Song Gao64baad62022-06-06 20:42:51 +0800266S: Maintained
267F: target/loongarch/
Xiaojuan Yangc4293332022-06-06 20:43:32 +0800268F: tests/tcg/loongarch64/
Song Gao7318c622023-05-13 09:27:44 +0800269F: tests/avocado/machine_loongarch.py
Song Gao64baad62022-06-06 20:42:51 +0800270
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200271M68K TCG CPUs
Laurent Vivier595a9262016-05-06 12:30:29 +0200272M: Laurent Vivier <laurent@vivier.eu>
273S: Maintained
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200274F: target/m68k/
Thomas Huthe9a56112016-11-02 09:39:33 +0100275F: disas/m68k.c
Thomas Huth71c1d342023-10-18 08:24:01 +0200276F: tests/tcg/m68k/
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500277
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200278MicroBlaze TCG CPUs
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500279M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
280S: Maintained
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200281F: target/microblaze/
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100282F: hw/microblaze/
Paolo Bonzinic17652e2015-09-22 11:36:16 +0200283F: disas/microblaze.c
Richard Hendersonb58a4e62021-10-26 11:22:12 +0100284F: tests/docker/dockerfiles/debian-microblaze-cross.d/build-toolchain.sh
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500285
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200286MIPS TCG CPUs
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +0200287M: Philippe Mathieu-Daudé <philmd@linaro.org>
Aleksandar Markovic099d5102020-03-13 02:00:50 +0100288R: Aurelien Jarno <aurelien@aurel32.net>
Aleksandar Markovic15d983d2020-07-01 20:25:58 +0200289R: Jiaxun Yang <jiaxun.yang@flygoat.com>
Aleksandar Rikalo45c577f2024-02-09 07:21:47 +0100290R: Aleksandar Rikalo <arikalo@gmail.com>
Philippe Mathieu-Daudécf960312020-10-09 17:05:13 +0200291S: Odd Fixes
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200292F: target/mips/
Philippe Mathieu-Daudé30dd5ff2022-10-30 23:38:49 +0100293F: disas/*mips.c
Kashyap Chamarthy1bf84a12020-02-28 15:36:01 +0000294F: docs/system/cpu-models-mips.rst.inc
Paolo Bonzinic0bd0b52014-10-22 00:31:28 +0200295F: tests/tcg/mips/
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500296
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200297OpenRISC TCG CPUs
Stafford Horne1d7cf182017-03-15 22:37:41 +0900298M: Stafford Horne <shorne@gmail.com>
299S: Odd Fixes
Thomas Huth4db546d2022-12-12 18:48:41 +0100300F: docs/system/openrisc/cpu-features.rst
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200301F: target/openrisc/
Jia Liu945dad62013-07-02 20:55:17 +0800302F: hw/openrisc/
Thomas Huthe257b8c2023-10-17 17:42:42 +0200303F: include/hw/openrisc/
Paolo Bonzinic0bd0b52014-10-22 00:31:28 +0200304F: tests/tcg/openrisc/
Jia Liu945dad62013-07-02 20:55:17 +0800305
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200306PowerPC TCG CPUs
Daniel Henrique Barboza0cbc34d2023-09-15 08:05:07 -0300307M: Nicholas Piggin <npiggin@gmail.com>
David Gibson14fe3222021-11-05 14:28:51 +1100308M: Daniel Henrique Barboza <danielhb413@gmail.com>
Andreas Färbera6c98682012-01-13 13:33:57 +0000309L: qemu-ppc@nongnu.org
Daniel Henrique Barboza2e93a902022-11-17 12:32:18 -0300310S: Odd Fixes
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200311F: target/ppc/
David Gibson7ddb1202021-09-27 14:17:45 +1000312F: hw/ppc/ppc.c
313F: hw/ppc/ppc_booke.c
314F: include/hw/ppc/ppc.h
Cédric Le Goater9c46b512023-10-02 17:51:42 +0200315F: hw/ppc/meson.build
316F: hw/ppc/trace*
317F: configs/devices/ppc*
318F: docs/system/ppc/embedded.rst
319F: docs/system/target-ppc.rst
Thomas Huth71c1d342023-10-18 08:24:01 +0200320F: tests/tcg/ppc*/*
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500321
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200322RISC-V TCG CPUs
Palmer Dabbeltc1677bc2019-10-29 09:39:03 -0700323M: Palmer Dabbelt <palmer@dabbelt.com>
Alistair Francisab2c9122021-04-06 18:48:25 -0400324M: Alistair Francis <alistair.francis@wdc.com>
Bin Meng8372c3a2024-05-05 15:23:12 +0800325M: Bin Meng <bmeng.cn@gmail.com>
Weiwei Lic0ce1f22023-10-30 16:16:07 +0800326R: Weiwei Li <liwei1518@gmail.com>
Alistair Francisa3ae8d42023-02-09 10:33:08 +1000327R: Daniel Henrique Barboza <dbarboza@ventanamicro.com>
328R: Liu Zhiwei <zhiwei_liu@linux.alibaba.com>
Palmer Dabbelta094b352018-10-30 09:19:05 -0700329L: qemu-riscv@nongnu.org
Palmer Dabbelt7b91ae72018-11-21 12:57:36 -0800330S: Supported
Thomas Huth5d0ce902023-09-29 14:37:27 +0200331F: configs/targets/riscv*
332F: docs/system/target-riscv.rst
Michael Clark4dc62b12018-03-03 01:31:09 +1300333F: target/riscv/
334F: hw/riscv/
Thomas Huth5d0ce902023-09-29 14:37:27 +0200335F: hw/intc/riscv*
Michael Clark4dc62b12018-03-03 01:31:09 +1300336F: include/hw/riscv/
Alistair Francisf936eac2018-12-19 19:16:31 +0000337F: linux-user/host/riscv32/
Alistair Francis511f3132018-12-19 19:16:41 +0000338F: linux-user/host/riscv64/
Thomas Huth71c1d342023-10-18 08:24:01 +0200339F: tests/tcg/riscv64/
Michael Clark4dc62b12018-03-03 01:31:09 +1300340
Christoph Müllner179d9e22023-01-31 21:20:13 +0100341RISC-V XThead* extensions
342M: Christoph Muellner <christoph.muellner@vrull.eu>
343M: LIU Zhiwei <zhiwei_liu@linux.alibaba.com>
344L: qemu-riscv@nongnu.org
345S: Supported
346F: target/riscv/insn_trans/trans_xthead.c.inc
347F: target/riscv/xthead*.decode
Christoph Müllnerfd53ee22024-04-29 09:36:56 +0200348F: target/riscv/th_*
Thomas Huth5d0ce902023-09-29 14:37:27 +0200349F: disas/riscv-xthead*
Christoph Müllner179d9e22023-01-31 21:20:13 +0100350
Philipp Tomsich34888f02022-02-02 01:52:49 +0100351RISC-V XVentanaCondOps extension
352M: Philipp Tomsich <philipp.tomsich@vrull.eu>
353L: qemu-riscv@nongnu.org
Philipp Tomsich4f249312023-03-07 19:07:08 +0100354S: Maintained
Philipp Tomsich34888f02022-02-02 01:52:49 +0100355F: target/riscv/XVentanaCondOps.decode
356F: target/riscv/insn_trans/trans_xventanacondops.c.inc
Thomas Huth5d0ce902023-09-29 14:37:27 +0200357F: disas/riscv-xventana*
Philipp Tomsich34888f02022-02-02 01:52:49 +0100358
Yoshinori Satoa4f34ec2019-01-21 05:20:54 -0800359RENESAS RX CPUs
Philippe Mathieu-Daudéb2744da2021-03-12 16:55:12 +0100360R: Yoshinori Sato <ysato@users.sourceforge.jp>
361S: Orphan
Yoshinori Satoa4f34ec2019-01-21 05:20:54 -0800362F: target/rx/
363
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200364S390 TCG CPUs
Richard Henderson336f7442020-11-12 20:35:43 -0800365M: Richard Henderson <richard.henderson@linaro.org>
Cornelia Huckced01bb2018-01-15 16:18:20 +0100366M: David Hildenbrand <david@redhat.com>
Christian Borntraeger9d711f12022-10-19 14:56:40 +0200367R: Ilya Leoshkevich <iii@linux.ibm.com>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500368S: Maintained
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200369F: target/s390x/
Cho, Yu-Chenc9274b62021-07-07 18:53:17 +0800370F: target/s390x/tcg
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100371F: hw/s390x/
Pavel Zbitskiy276ba122018-08-20 22:50:58 -0400372F: tests/tcg/s390x/
Cornelia Huck146bd282017-10-05 17:05:23 +0200373L: qemu-s390x@nongnu.org
bellardb6f97c12008-05-09 09:39:00 +0000374
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200375SH4 TCG CPUs
Philippe Mathieu-Daudé2d53d0c2021-03-12 16:55:13 +0100376R: Yoshinori Sato <ysato@users.sourceforge.jp>
377S: Orphan
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200378F: target/sh4/
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100379F: hw/sh4/
Paolo Bonzinic17652e2015-09-22 11:36:16 +0200380F: disas/sh4.c
Thomas Huth8a90f902016-09-09 23:18:21 +0200381F: include/hw/sh4/
Thomas Huth71c1d342023-10-18 08:24:01 +0200382F: tests/tcg/sh4/
bellardb6f97c12008-05-09 09:39:00 +0000383
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200384SPARC TCG CPUs
Mark Cave-Aylandf2416d32015-03-02 22:23:27 +0000385M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Mark Cave-Ayland2c742bf2016-06-20 21:55:16 +0100386M: Artyom Tarasenko <atar4qemu@gmail.com>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500387S: Maintained
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200388F: target/sparc/
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100389F: hw/sparc/
390F: hw/sparc64/
Philippe Mathieu-Daudé84dbe972018-11-25 21:49:37 +0100391F: include/hw/sparc/sparc64.h
Paolo Bonzinic17652e2015-09-22 11:36:16 +0200392F: disas/sparc.c
Thomas Huth71c1d342023-10-18 08:24:01 +0200393F: tests/tcg/sparc64/
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500394
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200395X86 TCG CPUs
Paolo Bonzinid46d72f2014-10-21 15:16:06 +0200396M: Paolo Bonzini <pbonzini@redhat.com>
Richard Henderson336f7442020-11-12 20:35:43 -0800397M: Richard Henderson <richard.henderson@linaro.org>
Eduardo Habkost24c4cd12021-11-30 15:47:22 -0500398M: Eduardo Habkost <eduardo@habkost.net>
Eduardo Habkostb203a4b2015-04-08 08:36:24 -0300399S: Maintained
Claudio Fontanaf5cc5a52021-03-22 14:27:40 +0100400F: target/i386/tcg/
Alex Bennée41324312018-04-05 15:35:11 +0100401F: tests/tcg/i386/
Alex Bennée3a082ec2018-04-17 11:14:37 +0100402F: tests/tcg/x86_64/
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100403F: hw/i386/
Thomas Huth4db546d2022-12-12 18:48:41 +0100404F: docs/system/i386/cpu.rst
Daniel P. Berrangé38dec0e2021-06-07 14:58:40 +0100405F: docs/system/cpu-models-x86*
Eduardo Habkostf953c102020-12-14 16:20:32 -0500406T: git https://gitlab.com/ehabkost/qemu.git x86-next
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500407
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200408Xtensa TCG CPUs
Max Filippov16e7caa2011-09-06 03:55:56 +0400409M: Max Filippov <jcmvbkbc@gmail.com>
Max Filippovb8105d22018-02-27 21:15:34 -0800410W: http://wiki.osll.ru/doku.php?id=etc:users:jcmvbkbc:qemu-target-xtensa
Max Filippov16e7caa2011-09-06 03:55:56 +0400411S: Maintained
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200412F: target/xtensa/
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100413F: hw/xtensa/
Paolo Bonzinic0bd0b52014-10-22 00:31:28 +0200414F: tests/tcg/xtensa/
Max Filippov51139fb2021-10-01 22:01:52 -0700415F: tests/tcg/xtensaeb/
Max Filippov5a6539e2017-10-31 16:17:43 -0700416F: disas/xtensa.c
Max Filippov895e4892018-11-22 15:06:21 -0800417F: include/hw/xtensa/xtensa-isa.h
Alex Bennée812b31d2021-07-07 14:17:43 +0100418F: configs/devices/xtensa*/default.mak
Max Filippov16e7caa2011-09-06 03:55:56 +0400419
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200420TriCore TCG CPUs
Bastian Koppelmann48e06fe2014-09-01 12:59:46 +0100421M: Bastian Koppelmann <kbastian@mail.uni-paderborn.de>
422S: Maintained
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200423F: target/tricore/
Bastian Koppelmann48e06fe2014-09-01 12:59:46 +0100424F: hw/tricore/
Thomas Huthd46d14e2016-09-09 23:17:09 +0200425F: include/hw/tricore/
Bastian Koppelmannbe78e792021-05-12 11:20:34 +0100426F: tests/tcg/tricore/
Bastian Koppelmann48e06fe2014-09-01 12:59:46 +0100427
Alex Bennéedd28beb2018-04-05 15:03:22 +0100428Multiarch Linux User Tests
429M: Alex Bennée <alex.bennee@linaro.org>
Stefan Hajnoczi00a25292019-03-01 16:35:18 +0000430S: Maintained
Alex Bennéedd28beb2018-04-05 15:03:22 +0100431F: tests/tcg/multiarch/
432
Markus Armbruster84995ea2019-06-06 19:24:08 +0200433Guest CPU Cores (KVM)
434---------------------
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200435Overall KVM CPUs
Michael S. Tsirkinc6d559d2013-06-04 16:06:37 +0300436M: Paolo Bonzini <pbonzini@redhat.com>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500437L: kvm@vger.kernel.org
438S: Supported
Philippe Mathieu-Daudéa6bb42f2020-06-18 14:33:33 +0200439F: */*/kvm*
Philippe Mathieu-Daudé1962cb22017-06-29 12:03:05 -0300440F: accel/kvm/
Thomas Huth9681ad32018-11-22 13:57:18 +0100441F: accel/stubs/kvm-stub.c
442F: include/hw/kvm/
Thomas Hutha95e9a42016-02-25 13:33:25 +0100443F: include/sysemu/kvm*.h
Thomas Huth9681ad32018-11-22 13:57:18 +0100444F: scripts/kvm/kvm_flightrecorder
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500445
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200446ARM KVM CPUs
Peter Maydelled4659d2013-03-05 00:34:43 +0000447M: Peter Maydell <peter.maydell@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000448L: qemu-arm@nongnu.org
Peter Maydelled4659d2013-03-05 00:34:43 +0000449S: Maintained
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200450F: target/arm/kvm.c
Peter Maydelled4659d2013-03-05 00:34:43 +0000451
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200452MIPS KVM CPUs
Huacai Chendab1e1e2020-12-05 17:22:01 +0800453M: Huacai Chen <chenhuacai@kernel.org>
Aleksandar Markovic134f7f72020-02-24 12:50:58 +0100454S: Odd Fixes
Philippe Mathieu-Daudé85d8da32021-04-13 10:31:44 +0200455F: target/mips/kvm*
456F: target/mips/sysemu/
James Hogana31896c2014-06-17 23:10:37 +0100457
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200458PPC KVM CPUs
Daniel Henrique Barboza0cbc34d2023-09-15 08:05:07 -0300459M: Nicholas Piggin <npiggin@gmail.com>
460R: Daniel Henrique Barboza <danielhb413@gmail.com>
Daniel Henrique Barboza2e93a902022-11-17 12:32:18 -0300461S: Odd Fixes
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200462F: target/ppc/kvm.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500463
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200464S390 KVM CPUs
Christian Borntraeger7c8e2642018-12-04 14:38:02 +0100465M: Halil Pasic <pasic@linux.ibm.com>
Christian Borntraeger2c092952021-11-26 11:24:49 +0100466M: Christian Borntraeger <borntraeger@linux.ibm.com>
Cornelia Huck0922e8c2019-02-13 11:31:59 +0100467S: Supported
Cho, Yu-Chen67043602021-07-07 18:53:23 +0800468F: target/s390x/kvm/
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200469F: target/s390x/machine.c
David Hildenbrand74b4c742017-09-28 22:36:54 +0200470F: target/s390x/sigp.c
Cornelia Huckc5bfb202015-11-04 15:59:55 +0100471F: gdb-xml/s390*.xml
Stefan Hajnoczie18a8b32018-11-08 11:15:26 +0000472T: git https://github.com/borntraeger/qemu.git s390-next
Cornelia Huck146bd282017-10-05 17:05:23 +0200473L: qemu-s390x@nongnu.org
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500474
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200475X86 KVM CPUs
Paolo Bonzinid46d72f2014-10-21 15:16:06 +0200476M: Paolo Bonzini <pbonzini@redhat.com>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500477M: Marcelo Tosatti <mtosatti@redhat.com>
478L: kvm@vger.kernel.org
479S: Supported
Cornelia Huck96a46de2022-02-09 09:08:56 +0100480F: docs/system/i386/amd-memory-encryption.rst
Philippe Mathieu-Daudéa8211862021-10-07 19:56:09 +0200481F: docs/system/i386/sgx.rst
Claudio Fontanaa9dc68d2020-12-12 16:55:08 +0100482F: target/i386/kvm/
Philippe Mathieu-Daudé8c9e7f82021-10-07 18:17:16 +0200483F: target/i386/sev*
Thomas Huth9681ad32018-11-22 13:57:18 +0100484F: scripts/kvm/vmxcap
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500485
David Woodhouse438bec42023-03-07 09:59:59 +0000486Xen emulation on X86 KVM CPUs
487M: David Woodhouse <dwmw2@infradead.org>
488M: Paul Durrant <paul@xen.org>
489S: Supported
490F: include/sysemu/kvm_xen.h
491F: target/i386/kvm/xen*
492F: hw/i386/kvm/xen*
David Woodhousecc9d10b2023-10-19 15:30:23 +0100493F: tests/avocado/kvm_xen_guest.py
David Woodhouse438bec42023-03-07 09:59:59 +0000494
Philippe Mathieu-Daudé79ac3912020-06-18 14:33:34 +0200495Guest CPU Cores (other accelerators)
496------------------------------------
497Overall
Richard Henderson336f7442020-11-12 20:35:43 -0800498M: Richard Henderson <richard.henderson@linaro.org>
Philippe Mathieu-Daudé79ac3912020-06-18 14:33:34 +0200499R: Paolo Bonzini <pbonzini@redhat.com>
500S: Maintained
Claudio Fontana940e43a2021-02-04 17:39:24 +0100501F: include/qemu/accel.h
Markus Armbruster75e55192023-01-19 10:15:45 +0100502F: include/sysemu/accel-*.h
Claudio Fontanafb6916d2021-02-04 17:39:26 +0100503F: include/hw/core/accel-cpu.h
Claudio Fontanab86f59c2021-02-04 17:39:25 +0100504F: accel/accel-*.c
Philippe Mathieu-Daudé79ac3912020-06-18 14:33:34 +0200505F: accel/Makefile.objs
506F: accel/stubs/Makefile.objs
507
Alexander Grafa1477da2021-09-16 17:53:58 +0200508Apple Silicon HVF CPUs
509M: Alexander Graf <agraf@csgraf.de>
510S: Maintained
511F: target/arm/hvf/
512
Roman Bolshakov674fc212020-03-16 20:18:27 +0300513X86 HVF CPUs
Roman Bolshakovde6b5282020-06-25 01:58:51 +0300514M: Cameron Esfahani <dirty@apple.com>
Philippe Mathieu-Daudé3b4a0252023-06-21 13:32:23 +0200515M: Roman Bolshakov <rbolshakov@ddn.com>
Roman Bolshakovde6b5282020-06-25 01:58:51 +0300516W: https://wiki.qemu.org/Features/HVF
Roman Bolshakov674fc212020-03-16 20:18:27 +0300517S: Maintained
Roman Bolshakov674fc212020-03-16 20:18:27 +0300518F: target/i386/hvf/
Alexander Grafd57bc3c2021-06-03 14:09:30 +0100519
520HVF
521M: Cameron Esfahani <dirty@apple.com>
Philippe Mathieu-Daudé3b4a0252023-06-21 13:32:23 +0200522M: Roman Bolshakov <rbolshakov@ddn.com>
Alexander Grafd57bc3c2021-06-03 14:09:30 +0100523W: https://wiki.qemu.org/Features/HVF
524S: Maintained
525F: accel/hvf/
Roman Bolshakov674fc212020-03-16 20:18:27 +0300526F: include/sysemu/hvf.h
Alexander Grafd57bc3c2021-06-03 14:09:30 +0100527F: include/sysemu/hvf_int.h
Roman Bolshakov674fc212020-03-16 20:18:27 +0300528
Sunil Muthuswamyc220cde2020-02-18 20:38:32 +0000529WHPX CPUs
530M: Sunil Muthuswamy <sunilmut@microsoft.com>
531S: Supported
Claudio Fontana1fc33bb2020-12-12 16:55:09 +0100532F: target/i386/whpx/
Sunil Muthuswamyc220cde2020-02-18 20:38:32 +0000533F: include/sysemu/whpx.h
534
Markus Armbruster84995ea2019-06-06 19:24:08 +0200535Guest CPU Cores (Xen)
536---------------------
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200537X86 Xen CPUs
Stefano Stabellini3623c572016-03-29 11:02:49 +0100538M: Stefano Stabellini <sstabellini@kernel.org>
Anthony PERARDa0dbef92024-04-29 16:49:38 +0100539M: Anthony PERARD <anthony@xenproject.org>
Paul Durrant784e9722019-09-13 13:24:18 +0100540M: Paul Durrant <paul@xen.org>
Stefano Stabellinid01a6ff2024-07-10 13:28:52 -0700541M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
Anthony PERARD6d062202016-11-25 15:30:40 +0000542L: xen-devel@lists.xenproject.org
Stefano Stabellini8a6b0cd2011-07-29 16:05:13 +0100543S: Supported
Stefano Stabellini8a6b0cd2011-07-29 16:05:13 +0100544F: */xen*
Philippe Mathieu-Daudéda278d52020-05-08 12:02:22 +0200545F: accel/xen/*
Greg Kurzb8278912019-05-29 12:24:44 +0200546F: hw/9pfs/xen-9p*
Paolo Bonzinic92451c2015-09-22 11:36:48 +0200547F: hw/char/xen_console.c
548F: hw/display/xenfb.c
549F: hw/net/xen_nic.c
Anthony PERARD758af9c2020-04-06 17:50:43 +0100550F: hw/usb/xen-usb.c
Paul Durrant1a72d9a2019-01-08 14:48:48 +0000551F: hw/block/xen*
Paul Durrant4ea7d1a2019-01-08 14:48:53 +0000552F: hw/block/dataplane/xen*
Paolo Bonzinic92451c2015-09-22 11:36:48 +0200553F: hw/xen/
554F: hw/xenpv/
Stefano Stabellini9027ac52015-12-21 14:58:28 +0000555F: hw/i386/xen/
Philippe Mathieu-Daudé14018972019-12-09 10:50:01 +0100556F: hw/pci-host/xen_igd_pt.c
Paul Durrantfcab2b42019-01-08 14:48:55 +0000557F: include/hw/block/dataplane/xen*
Paolo Bonzinic92451c2015-09-22 11:36:48 +0200558F: include/hw/xen/
Philippe Mathieu-Daudéda278d52020-05-08 12:02:22 +0200559F: include/sysemu/xen.h
Stefano Stabellini9027ac52015-12-21 14:58:28 +0000560F: include/sysemu/xen-mapcache.h
Philippe Mathieu-Daudé71f364b2020-09-08 17:55:28 +0200561F: stubs/xen-hw-stub.c
Stefano Stabellini8a6b0cd2011-07-29 16:05:13 +0100562
Reinoud Zandijk39becfc2021-04-02 22:25:35 +0200563Guest CPU Cores (NVMM)
564----------------------
565NetBSD Virtual Machine Monitor (NVMM) CPU support
Reinoud Zandijk39becfc2021-04-02 22:25:35 +0200566M: Reinoud Zandijk <reinoud@netbsd.org>
567S: Maintained
568F: include/sysemu/nvmm.h
569F: target/i386/nvmm/
570
Markus Armbruster84995ea2019-06-06 19:24:08 +0200571Hosts
572-----
Stefan Weil1bdd6872012-01-27 18:53:49 +0100573LINUX
Philippe Mathieu-Daudéf5fecb42018-12-18 12:56:11 +0100574M: Michael S. Tsirkin <mst@redhat.com>
575M: Cornelia Huck <cohuck@redhat.com>
576M: Paolo Bonzini <pbonzini@redhat.com>
Stefan Weil1bdd6872012-01-27 18:53:49 +0100577S: Maintained
Stefan Weil1bdd6872012-01-27 18:53:49 +0100578F: linux-headers/
Cornelia Hucke05ea752023-09-29 16:30:12 +0200579F: include/standard-headers/
Philippe Mathieu-Daudéf5fecb42018-12-18 12:56:11 +0100580F: scripts/update-linux-headers.sh
Stefan Weil1bdd6872012-01-27 18:53:49 +0100581
582POSIX
Philippe Mathieu-Daudéf3f02042018-12-18 12:56:12 +0100583M: Paolo Bonzini <pbonzini@redhat.com>
Stefan Weil1bdd6872012-01-27 18:53:49 +0100584S: Maintained
Philippe Mathieu-Daudéf3f02042018-12-18 12:56:12 +0100585F: os-posix.c
586F: include/sysemu/os-posix.h
587F: util/*posix*.c
588F: include/qemu/*posix*.h
Stefan Weil1bdd6872012-01-27 18:53:49 +0100589
Kamil Rytarowski3c2bdbc2017-05-13 04:21:43 +0200590NETBSD
Reinoud Zandijk39becfc2021-04-02 22:25:35 +0200591M: Reinoud Zandijk <reinoud@netbsd.org>
592M: Ryo ONODERA <ryoon@netbsd.org>
Kamil Rytarowski3c2bdbc2017-05-13 04:21:43 +0200593S: Maintained
Thomas Huth1b612702017-07-27 12:09:34 +0200594K: ^Subject:.*(?i)NetBSD
Kamil Rytarowski3c2bdbc2017-05-13 04:21:43 +0200595
Brad Smith0a773d52018-02-16 11:46:20 -0500596OPENBSD
Brad Smith0a773d52018-02-16 11:46:20 -0500597M: Brad Smith <brad@comstyle.com>
598S: Maintained
599K: ^Subject:.*(?i)OpenBSD
600
Stefan Weil1bdd6872012-01-27 18:53:49 +0100601W32, W64
Stefan Weil1bdd6872012-01-27 18:53:49 +0100602M: Stefan Weil <sw@weilnetz.de>
603S: Maintained
604F: *win32*
Thomas Huth03972662016-09-29 09:43:31 +0200605F: */*win32*
606F: include/*/*win32*
607X: qga/*win32*
Stefan Weil885bdc92015-09-25 22:25:32 +0200608F: qemu.nsi
Alex Bennée48fad832022-10-27 19:36:21 +0100609F: scripts/nsis.py
Stefan Weil1bdd6872012-01-27 18:53:49 +0100610
Philippe Mathieu-Daudéc82b7ef2022-03-14 18:28:35 +0100611Darwin (macOS, iOS)
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +0200612M: Philippe Mathieu-Daudé <philmd@linaro.org>
Philippe Mathieu-Daudéc82b7ef2022-03-14 18:28:35 +0100613S: Odd Fixes
614F: .gitlab-ci.d/cirrus/macos-*
615F: */*.m
Alex Bennée48fad832022-10-27 19:36:21 +0100616F: scripts/entitlement.sh
Philippe Mathieu-Daudéc82b7ef2022-03-14 18:28:35 +0100617
Philippe Mathieu-Daudéb250d042018-03-08 23:39:42 +0100618Alpha Machines
Markus Armbruster84995ea2019-06-06 19:24:08 +0200619--------------
Richard Henderson336f7442020-11-12 20:35:43 -0800620M: Richard Henderson <richard.henderson@linaro.org>
Philippe Mathieu-Daudéb250d042018-03-08 23:39:42 +0100621S: Maintained
622F: hw/alpha/
Philippe Mathieu-Daudé7bea0dd2018-03-08 23:39:43 +0100623F: hw/isa/smc37c669-superio.c
Richard Henderson8d8a8ab2019-05-01 11:43:06 -0700624F: tests/tcg/alpha/system/
Philippe Mathieu-Daudéb250d042018-03-08 23:39:42 +0100625
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500626ARM Machines
627------------
liguang84291fe2013-12-17 19:42:38 +0000628Allwinner-a10
Beniamino Galvani85b4d5d2015-09-24 01:29:37 +0100629M: Beniamino Galvani <b.galvani@gmail.com>
Peter Maydella00d7f22018-11-19 15:29:08 +0000630M: Peter Maydell <peter.maydell@linaro.org>
Strahinja Jankovic632dfea2022-12-26 23:03:00 +0100631R: Strahinja Jankovic <strahinja.p.jankovic@gmail.com>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000632L: qemu-arm@nongnu.org
Peter Maydella00d7f22018-11-19 15:29:08 +0000633S: Odd Fixes
Beniamino Galvani85b4d5d2015-09-24 01:29:37 +0100634F: hw/*/allwinner*
Philippe Mathieu-Daudé9d19a8f2024-02-26 14:07:23 +0000635F: hw/ide/ahci-allwinner.c
Beniamino Galvani85b4d5d2015-09-24 01:29:37 +0100636F: include/hw/*/allwinner*
liguang84291fe2013-12-17 19:42:38 +0000637F: hw/arm/cubieboard.c
Peter Maydelld4a7c362021-07-13 15:22:24 +0100638F: docs/system/arm/cubieboard.rst
Strahinja Jankovic632dfea2022-12-26 23:03:00 +0100639F: hw/misc/axp209.c
liguang84291fe2013-12-17 19:42:38 +0000640
Niek Linnenbank740dafc2020-03-11 23:18:37 +0100641Allwinner-h3
642M: Niek Linnenbank <nieklinnenbank@gmail.com>
643L: qemu-arm@nongnu.org
644S: Maintained
645F: hw/*/allwinner-h3*
646F: include/hw/*/allwinner-h3*
Niek Linnenbankb0c96662020-03-11 23:18:38 +0100647F: hw/arm/orangepi.c
Philippe Mathieu-Daudéc67d7322020-11-20 16:45:43 +0100648F: docs/system/arm/orangepi.rst
Niek Linnenbank740dafc2020-03-11 23:18:37 +0100649
Peter Maydelle5a6a6e2017-07-17 13:36:09 +0100650ARM PrimeCell and CMSDK devices
Paolo Bonzini06271002015-09-22 11:45:00 +0200651M: Peter Maydell <peter.maydell@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000652L: qemu-arm@nongnu.org
Paolo Bonzini06271002015-09-22 11:45:00 +0200653S: Maintained
654F: hw/char/pl011.c
Philippe Mathieu-Daudéc6427ff2017-09-08 14:31:32 -0300655F: include/hw/char/pl011.h
Paolo Bonzini06271002015-09-22 11:45:00 +0200656F: hw/display/pl110*
657F: hw/dma/pl080.c
Peter Maydellaa74e352018-08-20 11:24:33 +0100658F: include/hw/dma/pl080.h
Paolo Bonzini06271002015-09-22 11:45:00 +0200659F: hw/dma/pl330.c
660F: hw/gpio/pl061.c
661F: hw/input/pl050.c
Thomas Huth4940da22023-10-20 08:09:33 +0200662F: include/hw/input/pl050.h
Paolo Bonzini06271002015-09-22 11:45:00 +0200663F: hw/intc/pl190.c
664F: hw/sd/pl181.c
Peter Maydell1d528662018-08-24 13:17:44 +0100665F: hw/ssi/pl022.c
666F: include/hw/ssi/pl022.h
Philippe Mathieu-Daudé877c1812019-10-04 01:03:52 +0200667F: hw/rtc/pl031.c
668F: include/hw/rtc/pl031.h
Paolo Bonzini06271002015-09-22 11:45:00 +0200669F: include/hw/arm/primecell.h
Peter Maydelle5a6a6e2017-07-17 13:36:09 +0100670F: hw/timer/cmsdk-apb-timer.c
671F: include/hw/timer/cmsdk-apb-timer.h
Peter Maydell30858da2021-01-28 11:41:23 +0000672F: tests/qtest/cmsdk-apb-timer-test.c
Peter Maydell4f4c6202018-08-24 13:17:41 +0100673F: hw/timer/cmsdk-apb-dualtimer.c
674F: include/hw/timer/cmsdk-apb-dualtimer.h
Peter Maydell9bc064b2021-01-28 11:41:25 +0000675F: tests/qtest/cmsdk-apb-dualtimer-test.c
Peter Maydelle5a6a6e2017-07-17 13:36:09 +0100676F: hw/char/cmsdk-apb-uart.c
677F: include/hw/char/cmsdk-apb-uart.h
Peter Maydell050c2ea2018-08-20 11:24:33 +0100678F: hw/watchdog/cmsdk-apb-watchdog.c
679F: include/hw/watchdog/cmsdk-apb-watchdog.h
Peter Maydell9cf5eb22021-01-28 11:41:24 +0000680F: tests/qtest/cmsdk-apb-watchdog-test.c
Peter Maydell0d4a7552018-05-31 14:50:51 +0100681F: hw/misc/tz-ppc.c
682F: include/hw/misc/tz-ppc.h
Peter Maydell344f4b12018-06-22 13:28:39 +0100683F: hw/misc/tz-mpc.c
684F: include/hw/misc/tz-mpc.h
Peter Maydell211e7012018-08-24 13:17:43 +0100685F: hw/misc/tz-msc.c
686F: include/hw/misc/tz-msc.h
Paolo Bonzini06271002015-09-22 11:45:00 +0200687
688ARM cores
689M: Peter Maydell <peter.maydell@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000690L: qemu-arm@nongnu.org
Paolo Bonzini06271002015-09-22 11:45:00 +0200691S: Maintained
692F: hw/intc/arm*
Thomas Huth662c3eb2023-10-27 08:07:09 +0200693F: hw/intc/gic*_internal.h
Paolo Bonzini06271002015-09-22 11:45:00 +0200694F: hw/misc/a9scu.c
695F: hw/misc/arm11scu.c
Thomas Huthb7f30112019-01-07 15:23:47 +0000696F: hw/misc/arm_l2x0.c
Peter Maydell2f9db772021-08-12 10:33:32 +0100697F: hw/misc/armv7m_ras.c
Paolo Bonzini06271002015-09-22 11:45:00 +0200698F: hw/timer/a9gtimer*
Philippe Mathieu-Daudéc6427ff2017-09-08 14:31:32 -0300699F: hw/timer/arm*
700F: include/hw/arm/arm*.h
Paolo Bonzini06271002015-09-22 11:45:00 +0200701F: include/hw/intc/arm*
702F: include/hw/misc/a9scu.h
703F: include/hw/misc/arm11scu.h
704F: include/hw/timer/a9gtimer.h
705F: include/hw/timer/arm_mptimer.h
Philippe Mathieu-Daudéc6427ff2017-09-08 14:31:32 -0300706F: include/hw/timer/armv7m_systick.h
Peter Maydell2f9db772021-08-12 10:33:32 +0100707F: include/hw/misc/armv7m_ras.h
Thomas Huth1e8a1fa2019-09-09 12:04:01 +0200708F: tests/qtest/test-arm-mptimer.c
Paolo Bonzini06271002015-09-22 11:45:00 +0200709
Evgeny Voevodinfc63dcf2012-02-16 09:56:06 +0000710Exynos
Igor Mitsyankof44c5c62013-07-31 10:27:35 +0400711M: Igor Mitsyanko <i.mitsyanko@gmail.com>
Peter Maydella00d7f22018-11-19 15:29:08 +0000712M: Peter Maydell <peter.maydell@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000713L: qemu-arm@nongnu.org
Peter Maydella00d7f22018-11-19 15:29:08 +0000714S: Odd Fixes
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100715F: hw/*/exynos*
Peter Maydell78cb12a2022-04-04 16:46:48 +0100716F: include/hw/*/exynos*
Evgeny Voevodinfc63dcf2012-02-16 09:56:06 +0000717
Mark Langsdorf766fd092012-02-16 09:56:10 +0000718Calxeda Highbank
Rob Herring9ef137c2014-05-27 17:09:49 +0100719M: Rob Herring <robh@kernel.org>
Peter Maydella00d7f22018-11-19 15:29:08 +0000720M: Peter Maydell <peter.maydell@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000721L: qemu-arm@nongnu.org
Peter Maydella00d7f22018-11-19 15:29:08 +0000722S: Odd Fixes
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100723F: hw/arm/highbank.c
724F: hw/net/xgmac.c
Peter Maydellc90df7c2021-07-13 15:22:26 +0100725F: docs/system/arm/highbank.rst
Mark Langsdorf766fd092012-02-16 09:56:10 +0000726
Antony Pavlov9082f122013-12-17 19:42:37 +0000727Canon DIGIC
728M: Antony Pavlov <antonynpavlov@gmail.com>
Peter Maydella00d7f22018-11-19 15:29:08 +0000729M: Peter Maydell <peter.maydell@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000730L: qemu-arm@nongnu.org
Peter Maydella00d7f22018-11-19 15:29:08 +0000731S: Odd Fixes
Antony Pavlov9082f122013-12-17 19:42:37 +0000732F: include/hw/arm/digic.h
733F: hw/*/digic*
Philippe Mathieu-Daudé7ad5f2d2018-11-25 21:49:50 +0100734F: include/hw/*/digic*
Willian Rampazzobbbd9b62021-11-05 12:53:54 -0300735F: tests/avocado/machine_arm_canona1100.py
Peter Maydell2d21dd12020-07-13 18:57:43 +0100736F: docs/system/arm/digic.rst
Antony Pavlov9082f122013-12-17 19:42:37 +0000737
Anup Patel9c8fdce2019-11-06 11:56:50 +0000738Goldfish RTC
739M: Anup Patel <anup.patel@wdc.com>
740M: Alistair Francis <Alistair.Francis@wdc.com>
741L: qemu-riscv@nongnu.org
742S: Maintained
743F: hw/rtc/goldfish_rtc.c
744F: include/hw/rtc/goldfish_rtc.h
745
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500746Gumstix
Peter Maydella00d7f22018-11-19 15:29:08 +0000747M: Peter Maydell <peter.maydell@linaro.org>
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +0200748R: Philippe Mathieu-Daudé <philmd@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000749L: qemu-arm@nongnu.org
Philippe Mathieu-Daudé1f7161d2018-06-26 17:50:39 +0100750S: Odd Fixes
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100751F: hw/arm/gumstix.c
Peter Maydellbb309002020-07-13 18:57:45 +0100752F: docs/system/arm/gumstix.rst
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500753
Thomas Huth123a0692018-11-26 13:39:23 +0000754i.MX25 PDK
755M: Peter Maydell <peter.maydell@linaro.org>
756R: Jean-Christophe Dubois <jcd@tribudubois.net>
757L: qemu-arm@nongnu.org
758S: Odd Fixes
759F: hw/arm/fsl-imx25.c
760F: hw/arm/imx25_pdk.c
761F: hw/misc/imx25_ccm.c
Guenter Roeck37f959592020-05-17 09:21:28 -0700762F: hw/watchdog/wdt_imx2.c
Thomas Huth123a0692018-11-26 13:39:23 +0000763F: include/hw/arm/fsl-imx25.h
764F: include/hw/misc/imx25_ccm.h
Guenter Roeck37f959592020-05-17 09:21:28 -0700765F: include/hw/watchdog/wdt_imx2.h
Peter Maydellb1b3e3e2021-07-22 18:52:29 +0100766F: docs/system/arm/imx25-pdk.rst
Thomas Huth123a0692018-11-26 13:39:23 +0000767
Thomas Huth95a5db32018-11-19 15:29:08 +0000768i.MX31 (kzm)
Peter Maydella00d7f22018-11-19 15:29:08 +0000769M: Peter Maydell <peter.maydell@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000770L: qemu-arm@nongnu.org
Thomas Huth95a5db32018-11-19 15:29:08 +0000771S: Odd Fixes
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100772F: hw/arm/kzm.c
Thomas Huth95a5db32018-11-19 15:29:08 +0000773F: hw/*/imx_*
774F: hw/*/*imx31*
775F: include/hw/*/imx_*
776F: include/hw/*/*imx31*
Peter Maydellfa6c9392021-07-22 18:52:28 +0100777F: docs/system/arm/kzm.rst
Peter Chubb03255592012-07-04 10:43:34 +0000778
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500779Integrator CP
Peter Maydell1ce9ce62011-09-20 16:18:46 +0100780M: Peter Maydell <peter.maydell@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000781L: qemu-arm@nongnu.org
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500782S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100783F: hw/arm/integratorcp.c
Thomas Huthf7e242d2016-09-23 14:14:18 +0200784F: hw/misc/arm_integrator_debug.c
Thomas Huthb7f30112019-01-07 15:23:47 +0000785F: include/hw/misc/arm_integrator_debug.h
Willian Rampazzobbbd9b62021-11-05 12:53:54 -0300786F: tests/avocado/machine_arm_integratorcp.py
Peter Maydellc11a8e82020-03-09 21:58:15 +0000787F: docs/system/arm/integratorcp.rst
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500788
Thomas Huth95a5db32018-11-19 15:29:08 +0000789MCIMX6UL EVK / i.MX6ul
790M: Peter Maydell <peter.maydell@linaro.org>
791R: Jean-Christophe Dubois <jcd@tribudubois.net>
792L: qemu-arm@nongnu.org
793S: Odd Fixes
794F: hw/arm/mcimx6ul-evk.c
795F: hw/arm/fsl-imx6ul.c
796F: hw/misc/imx6ul_ccm.c
797F: include/hw/arm/fsl-imx6ul.h
798F: include/hw/misc/imx6ul_ccm.h
799
800MCIMX7D SABRE / i.MX7
801M: Peter Maydell <peter.maydell@linaro.org>
802R: Andrey Smirnov <andrew.smirnov@gmail.com>
803L: qemu-arm@nongnu.org
804S: Odd Fixes
805F: hw/arm/mcimx7d-sabre.c
806F: hw/arm/fsl-imx7.c
Thomas Huthb7f30112019-01-07 15:23:47 +0000807F: hw/misc/imx7_*.c
Thomas Huth95a5db32018-11-19 15:29:08 +0000808F: include/hw/arm/fsl-imx7.h
Thomas Huthb7f30112019-01-07 15:23:47 +0000809F: include/hw/misc/imx7_*.h
Thomas Huth95a5db32018-11-19 15:29:08 +0000810F: hw/pci-host/designware.c
811F: include/hw/pci-host/designware.h
812
Peter Maydell273a70a2024-02-06 13:29:26 +0000813MPS2 / MPS3
Peter Maydelle5a6a6e2017-07-17 13:36:09 +0100814M: Peter Maydell <peter.maydell@linaro.org>
815L: qemu-arm@nongnu.org
816S: Maintained
817F: hw/arm/mps2.c
Peter Maydell0d4a7552018-05-31 14:50:51 +0100818F: hw/arm/mps2-tz.c
Peter Maydell273a70a2024-02-06 13:29:26 +0000819F: hw/arm/mps3r.c
Peter Maydell0d4a7552018-05-31 14:50:51 +0100820F: hw/misc/mps2-*.c
821F: include/hw/misc/mps2-*.h
Peter Maydell6eee5d22019-02-01 14:55:42 +0000822F: hw/arm/armsse.c
823F: include/hw/arm/armsse.h
Philippe Mathieu-Daudéc56c5762018-11-25 21:49:51 +0100824F: hw/misc/iotkit-secctl.c
825F: include/hw/misc/iotkit-secctl.h
Peter Maydell75750e42018-08-24 13:17:42 +0100826F: hw/misc/iotkit-sysctl.c
827F: include/hw/misc/iotkit-sysctl.h
Peter Maydellc667a252018-08-24 13:17:43 +0100828F: hw/misc/iotkit-sysinfo.c
829F: include/hw/misc/iotkit-sysinfo.h
Peter Maydell4239b312021-02-19 14:45:53 +0000830F: hw/misc/armsse-cpu-pwrctrl.c
831F: include/hw/misc/armsse-cpu-pwrctrl.h
Peter Maydell5aeb3682019-02-01 14:55:43 +0000832F: hw/misc/armsse-cpuid.c
833F: include/hw/misc/armsse-cpuid.h
Peter Maydellcdf63442019-02-28 10:55:15 +0000834F: hw/misc/armsse-mhu.c
835F: include/hw/misc/armsse-mhu.h
Peter Maydell0d10df32021-02-19 14:45:44 +0000836F: hw/timer/sse-counter.c
837F: include/hw/timer/sse-counter.h
Peter Maydell0b8ceee2021-02-19 14:45:45 +0000838F: hw/timer/sse-timer.c
839F: include/hw/timer/sse-timer.h
Peter Maydell1eca58a2021-02-19 14:46:17 +0000840F: tests/qtest/sse-timer-test.c
Peter Maydellba7912a2020-05-07 16:18:18 +0100841F: docs/system/arm/mps2.rst
Peter Maydelle5a6a6e2017-07-17 13:36:09 +0100842
Peter Maydell8f69a4c2019-02-21 18:17:47 +0000843Musca
844M: Peter Maydell <peter.maydell@linaro.org>
845L: qemu-arm@nongnu.org
846S: Maintained
847F: hw/arm/musca.c
Peter Maydell9f8f6402020-05-07 16:18:19 +0100848F: docs/system/arm/musca.rst
Peter Maydell8f69a4c2019-02-21 18:17:47 +0000849
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500850Musicpal
851M: Jan Kiszka <jan.kiszka@web.de>
Peter Maydella00d7f22018-11-19 15:29:08 +0000852M: Peter Maydell <peter.maydell@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000853L: qemu-arm@nongnu.org
Peter Maydella00d7f22018-11-19 15:29:08 +0000854S: Odd Fixes
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100855F: hw/arm/musicpal.c
Philippe Mathieu-Daudé6d81f482022-01-07 19:44:29 +0100856F: hw/net/mv88w8618_eth.c
857F: include/hw/net/mv88w8618_eth.h
Peter Maydellc11a8e82020-03-09 21:58:15 +0000858F: docs/system/arm/musicpal.rst
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500859
Havard Skinnemoene5a7ba82020-09-10 22:20:48 -0700860Nuvoton NPCM7xx
Havard Skinnemoene5a7ba82020-09-10 22:20:48 -0700861M: Tyrone Ting <kfting@nuvoton.com>
Hao Wu73c793d2023-02-08 15:54:31 -0800862M: Hao Wu <wuhaotsh@google.com>
Havard Skinnemoene5a7ba82020-09-10 22:20:48 -0700863L: qemu-arm@nongnu.org
864S: Supported
Hao Wu69fbfb82023-02-08 15:54:32 -0800865F: hw/*/npcm*
Titus Rwantare6f351a72023-10-23 23:46:44 +0000866F: hw/sensor/adm1266.c
Hao Wu69fbfb82023-02-08 15:54:32 -0800867F: include/hw/*/npcm*
868F: tests/qtest/npcm*
Titus Rwantare5861f5a2023-10-23 23:46:45 +0000869F: tests/qtest/adm1266-test.c
Havard Skinnemoend1cb5ed2020-09-10 22:20:53 -0700870F: pc-bios/npcm7xx_bootrom.bin
871F: roms/vbootrom
Philippe Mathieu-Daudé71703112020-11-20 16:45:42 +0100872F: docs/system/arm/nuvoton.rst
Havard Skinnemoene5a7ba82020-09-10 22:20:48 -0700873
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500874nSeries
Peter Maydella00d7f22018-11-19 15:29:08 +0000875M: Peter Maydell <peter.maydell@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000876L: qemu-arm@nongnu.org
Peter Maydella00d7f22018-11-19 15:29:08 +0000877S: Odd Fixes
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100878F: hw/arm/nseries.c
Philippe Mathieu-Daudé8a08cc72019-04-12 18:54:09 +0200879F: hw/display/blizzard.c
Thomas Huthb7f30112019-01-07 15:23:47 +0000880F: hw/input/lm832x.c
881F: hw/input/tsc2005.c
882F: hw/misc/cbus.c
Philippe Mathieu-Daudé6a648a52019-10-04 01:03:57 +0200883F: hw/rtc/twl92230.c
Philippe Mathieu-Daudé8a08cc72019-04-12 18:54:09 +0200884F: include/hw/display/blizzard.h
Philippe Mathieu-Daudé410bbee2021-06-17 13:53:20 +0200885F: include/hw/input/lm832x.h
Philippe Mathieu-Daudéa331dd02019-04-12 18:54:12 +0200886F: include/hw/input/tsc2xxx.h
Philippe Mathieu-Daudée8fa3952019-04-12 18:54:10 +0200887F: include/hw/misc/cbus.h
Willian Rampazzobbbd9b62021-11-05 12:53:54 -0300888F: tests/avocado/machine_arm_n8x0.py
Peter Maydellc11a8e82020-03-09 21:58:15 +0000889F: docs/system/arm/nseries.rst
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500890
891Palm
Peter Maydella00d7f22018-11-19 15:29:08 +0000892M: Peter Maydell <peter.maydell@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000893L: qemu-arm@nongnu.org
Peter Maydella00d7f22018-11-19 15:29:08 +0000894S: Odd Fixes
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100895F: hw/arm/palm.c
Thomas Huthb7f30112019-01-07 15:23:47 +0000896F: hw/input/tsc210x.c
Philippe Mathieu-Daudéa331dd02019-04-12 18:54:12 +0200897F: include/hw/input/tsc2xxx.h
Peter Maydellc11a8e82020-03-09 21:58:15 +0000898F: docs/system/arm/palm.rst
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500899
Thomas Huth95a5db32018-11-19 15:29:08 +0000900Raspberry Pi
901M: Peter Maydell <peter.maydell@linaro.org>
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +0200902R: Philippe Mathieu-Daudé <philmd@linaro.org>
Thomas Huth95a5db32018-11-19 15:29:08 +0000903L: qemu-arm@nongnu.org
904S: Odd Fixes
Thomas Huth123a0692018-11-26 13:39:23 +0000905F: hw/arm/raspi.c
Thomas Huth95a5db32018-11-19 15:29:08 +0000906F: hw/arm/raspi_platform.h
907F: hw/*/bcm283*
Thomas Huth29ecf2d2023-10-12 09:34:58 +0200908F: include/hw/arm/rasp*
Thomas Huth95a5db32018-11-19 15:29:08 +0000909F: include/hw/*/bcm283*
Philippe Mathieu-Daudéd9f2ac32020-11-20 18:39:51 +0100910F: docs/system/arm/raspi.rst
Thomas Huth95a5db32018-11-19 15:29:08 +0000911
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500912Real View
Peter Maydell1ce9ce62011-09-20 16:18:46 +0100913M: Peter Maydell <peter.maydell@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000914L: qemu-arm@nongnu.org
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500915S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100916F: hw/arm/realview*
Thomas Huthf7e242d2016-09-23 14:14:18 +0200917F: hw/cpu/realview_mpcore.c
Paolo Bonzini5ea53042015-09-22 11:49:41 +0200918F: hw/intc/realview_gic.c
919F: include/hw/intc/realview_gic.h
Peter Maydellc11a8e82020-03-09 21:58:15 +0000920F: docs/system/arm/realview.rst
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500921
Paolo Bonzini9b31bff2015-09-22 11:42:50 +0200922PXA2XX
Peter Maydella00d7f22018-11-19 15:29:08 +0000923M: Peter Maydell <peter.maydell@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000924L: qemu-arm@nongnu.org
Peter Maydella00d7f22018-11-19 15:29:08 +0000925S: Odd Fixes
Paolo Bonzini9b31bff2015-09-22 11:42:50 +0200926F: hw/arm/mainstone.c
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100927F: hw/arm/spitz.c
Paolo Bonzini9b31bff2015-09-22 11:42:50 +0200928F: hw/arm/tosa.c
929F: hw/arm/z2.c
930F: hw/*/pxa2xx*
Thomas Huth123a0692018-11-26 13:39:23 +0000931F: hw/display/tc6393xb.c
932F: hw/gpio/max7310.c
933F: hw/gpio/zaurus.c
Thomas Huth261c1282023-10-20 08:09:34 +0200934F: hw/input/ads7846.c
Thomas Huthf7e242d2016-09-23 14:14:18 +0200935F: hw/misc/mst_fpga.c
Corey Minyard58f3e3f2021-05-18 15:54:52 -0500936F: hw/adc/max111x.c
937F: include/hw/adc/max111x.h
Thomas Huthed0db862016-02-25 12:22:04 +0100938F: include/hw/arm/pxa.h
Thomas Huth123a0692018-11-26 13:39:23 +0000939F: include/hw/arm/sharpsl.h
Philippe Mathieu-Daudéee2ccc52019-04-12 18:54:08 +0200940F: include/hw/display/tc6393xb.h
Peter Maydellc11a8e82020-03-09 21:58:15 +0000941F: docs/system/arm/xscale.rst
Peter Maydellc9543db2021-07-22 18:52:27 +0100942F: docs/system/arm/mainstone.rst
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500943
Thomas Huth95a5db32018-11-19 15:29:08 +0000944SABRELITE / i.MX6
945M: Peter Maydell <peter.maydell@linaro.org>
946R: Jean-Christophe Dubois <jcd@tribudubois.net>
947L: qemu-arm@nongnu.org
948S: Odd Fixes
Thomas Huth4db546d2022-12-12 18:48:41 +0100949F: docs/system/arm/sabrelite.rst
Thomas Huth95a5db32018-11-19 15:29:08 +0000950F: hw/arm/sabrelite.c
951F: hw/arm/fsl-imx6.c
Thomas Huthb7f30112019-01-07 15:23:47 +0000952F: hw/misc/imx6_*.c
Thomas Huth95a5db32018-11-19 15:29:08 +0000953F: hw/ssi/imx_spi.c
Guenter Roeck0701a5e2020-03-12 18:45:47 -0700954F: hw/usb/imx-usb-phy.c
955F: include/hw/usb/imx-usb-phy.h
Thomas Huth95a5db32018-11-19 15:29:08 +0000956F: include/hw/arm/fsl-imx6.h
Thomas Huthb7f30112019-01-07 15:23:47 +0000957F: include/hw/misc/imx6_*.h
Thomas Huth95a5db32018-11-19 15:29:08 +0000958F: include/hw/ssi/imx_spi.h
959
Hongbo Zhang64580902019-07-01 17:26:18 +0100960SBSA-REF
Radoslaw Biernacki428a3772020-05-12 19:07:04 +0200961M: Radoslaw Biernacki <rad@semihalf.com>
Hongbo Zhang64580902019-07-01 17:26:18 +0100962M: Peter Maydell <peter.maydell@linaro.org>
Leif Lindholm14d5add2022-05-05 12:37:40 +0100963R: Leif Lindholm <quic_llindhol@quicinc.com>
Marcin Juszkiewicz96e6d252023-05-15 16:37:53 +0200964R: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org>
Hongbo Zhang64580902019-07-01 17:26:18 +0100965L: qemu-arm@nongnu.org
966S: Maintained
967F: hw/arm/sbsa-ref.c
Thomas Huthd02ce622023-09-29 16:19:18 +0200968F: hw/misc/sbsa_ec.c
969F: hw/watchdog/sbsa_gwdt.c
970F: include/hw/watchdog/sbsa_gwdt.h
Philippe Mathieu-Daudé9eeeb802020-11-20 16:45:44 +0100971F: docs/system/arm/sbsa.rst
Philippe Mathieu-Daudéa0d201b2023-04-24 10:22:34 +0100972F: tests/avocado/machine_aarch64_sbsaref.py
Hongbo Zhang64580902019-07-01 17:26:18 +0100973
Thomas Huth671f11b2018-11-13 10:47:58 +0000974Sharp SL-5500 (Collie) PDA
975M: Peter Maydell <peter.maydell@linaro.org>
976L: qemu-arm@nongnu.org
977S: Odd Fixes
978F: hw/arm/collie.c
979F: hw/arm/strongarm*
Peter Maydellb76b60f2020-07-13 18:57:44 +0100980F: docs/system/arm/collie.rst
Thomas Huth671f11b2018-11-13 10:47:58 +0000981
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500982Stellaris
Peter Maydell1ce9ce62011-09-20 16:18:46 +0100983M: Peter Maydell <peter.maydell@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000984L: qemu-arm@nongnu.org
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500985S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100986F: hw/*/stellaris*
Thomas Huth7c7e1f62023-10-20 08:09:36 +0200987F: hw/display/ssd03*
Philippe Mathieu-Daudé98fa3322019-04-12 18:54:11 +0200988F: include/hw/input/gamepad.h
Thomas Huth7c7e1f62023-10-20 08:09:36 +0200989F: include/hw/timer/stellaris-gptm.h
Peter Maydellc11a8e82020-03-09 21:58:15 +0000990F: docs/system/arm/stellaris.rst
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500991
Alexandre Iooss2ac24102021-06-17 18:56:45 +0200992STM32VLDISCOVERY
993M: Alexandre Iooss <erdnaxe@crans.org>
994L: qemu-arm@nongnu.org
995S: Maintained
996F: hw/arm/stm32vldiscovery.c
Alexandre Iooss1af060e2021-06-17 18:56:46 +0200997F: docs/system/arm/stm32.rst
Alexandre Iooss2ac24102021-06-17 18:56:45 +0200998
Thomas Huth95a5db32018-11-19 15:29:08 +0000999Versatile Express
1000M: Peter Maydell <peter.maydell@linaro.org>
1001L: qemu-arm@nongnu.org
1002S: Maintained
1003F: hw/arm/vexpress.c
Thomas Huth42c31682023-10-20 08:09:35 +02001004F: hw/display/sii9022.c
Peter Maydell5a1d4242020-05-07 16:18:17 +01001005F: docs/system/arm/vexpress.rst
Thomas Huth95a5db32018-11-19 15:29:08 +00001006
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001007Versatile PB
Peter Maydell1ce9ce62011-09-20 16:18:46 +01001008M: Peter Maydell <peter.maydell@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +00001009L: qemu-arm@nongnu.org
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001010S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01001011F: hw/*/versatile*
Philippe Mathieu-Daudé500a64d2023-01-10 09:25:08 +01001012F: hw/i2c/arm_sbcon_i2c.c
Philippe Mathieu-Daudéf61c3fb2020-06-17 09:25:29 +02001013F: include/hw/i2c/arm_sbcon_i2c.h
Philippe Mathieu-Daudéc6427ff2017-09-08 14:31:32 -03001014F: hw/misc/arm_sysctl.c
Peter Maydellc11a8e82020-03-09 21:58:15 +00001015F: docs/system/arm/versatile.rst
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001016
Thomas Huth95a5db32018-11-19 15:29:08 +00001017Virt
1018M: Peter Maydell <peter.maydell@linaro.org>
1019L: qemu-arm@nongnu.org
1020S: Maintained
1021F: hw/arm/virt*
1022F: include/hw/arm/virt.h
Peter Maydell6a0b7502020-07-13 18:57:46 +01001023F: docs/system/arm/virt.rst
Alex Bennée11593542022-04-19 10:09:56 +01001024F: tests/avocado/machine_aarch64_virt.py
Thomas Huth95a5db32018-11-19 15:29:08 +00001025
Peter A. G. Crosthwaitee3260502012-03-05 14:39:13 +10001026Xilinx Zynq
Alistair Franciscc0100f2016-07-28 09:55:39 -07001027M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
Alistair Francisc22e5802018-03-01 11:05:58 +00001028M: Alistair Francis <alistair@alistair23.me>
Peter Maydella00d7f22018-11-19 15:29:08 +00001029M: Peter Maydell <peter.maydell@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +00001030L: qemu-arm@nongnu.org
Peter A. G. Crosthwaitee3260502012-03-05 14:39:13 +10001031S: Maintained
Alistair Franciscc0100f2016-07-28 09:55:39 -07001032F: hw/*/xilinx_*
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01001033F: hw/*/cadence_*
Corey Minyard246f5302021-05-18 15:51:24 -05001034F: hw/misc/zynq_slcr.c
1035F: hw/adc/zynq-xadc.c
1036F: include/hw/misc/zynq_slcr.h
1037F: include/hw/adc/zynq-xadc.h
Alistair Franciscc0100f2016-07-28 09:55:39 -07001038X: hw/ssi/xilinx_*
Sai Pavan Boddu2d305062024-06-21 18:29:06 +05301039F: docs/system/arm/xlnx-zynq.rst
Peter A. G. Crosthwaitee3260502012-03-05 14:39:13 +10001040
Edgar E. Iglesiasff9e1572020-08-03 18:47:49 +02001041Xilinx ZynqMP and Versal
Alistair Francisc22e5802018-03-01 11:05:58 +00001042M: Alistair Francis <alistair@alistair23.me>
Alistair Franciscc0100f2016-07-28 09:55:39 -07001043M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
Peter Maydella00d7f22018-11-19 15:29:08 +00001044M: Peter Maydell <peter.maydell@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +00001045L: qemu-arm@nongnu.org
Alistair Francis137805f2015-08-25 15:45:07 +01001046S: Maintained
Alistair Franciscc0100f2016-07-28 09:55:39 -07001047F: hw/*/xlnx*.c
Markus Armbrusterf586d5f2016-09-05 14:28:52 +02001048F: include/hw/*/xlnx*.h
Philippe Mathieu-Daudé24d6d8b2018-11-25 21:49:39 +01001049F: include/hw/ssi/xilinx_spips.h
1050F: hw/display/dpcd.c
1051F: include/hw/display/dpcd.h
Edgar E. Iglesiasff9e1572020-08-03 18:47:49 +02001052F: docs/system/arm/xlnx-versal-virt.rst
Alistair Francis137805f2015-08-25 15:45:07 +01001053
Francisco Iglesias72e58842022-01-21 16:11:41 +00001054Xilinx Versal OSPI
1055M: Francisco Iglesias <francisco.iglesias@xilinx.com>
1056S: Maintained
1057F: hw/ssi/xlnx-versal-ospi.c
1058F: include/hw/ssi/xlnx-versal-ospi.h
1059
Francisco Iglesias5a8559e2023-08-31 17:56:54 +01001060Xilinx Versal CFI
1061M: Francisco Iglesias <francisco.iglesias@amd.com>
1062S: Maintained
1063F: hw/misc/xlnx-cfi-if.c
1064F: include/hw/misc/xlnx-cfi-if.h
Francisco Iglesias86d916c2023-08-31 17:56:55 +01001065F: hw/misc/xlnx-versal-cfu.c
1066F: include/hw/misc/xlnx-versal-cfu.h
Francisco Iglesiasc6766f52023-08-31 17:56:58 +01001067F: hw/misc/xlnx-versal-cframe-reg.c
1068F: include/hw/misc/xlnx-versal-cframe-reg.h
Francisco Iglesias5a8559e2023-08-31 17:56:54 +01001069
Alexandre Iooss0f76deb2021-06-17 18:56:44 +02001070STM32F100
1071M: Alexandre Iooss <erdnaxe@crans.org>
1072L: qemu-arm@nongnu.org
1073S: Maintained
1074F: hw/arm/stm32f100_soc.c
1075
Alistair Francisa1f81932016-10-04 13:28:07 +01001076STM32F205
1077M: Alistair Francis <alistair@alistair23.me>
Peter Maydella00d7f22018-11-19 15:29:08 +00001078M: Peter Maydell <peter.maydell@linaro.org>
Philippe Mathieu-Daudé8ef350b2020-01-20 19:59:27 +01001079L: qemu-arm@nongnu.org
Alistair Francisa1f81932016-10-04 13:28:07 +01001080S: Maintained
1081F: hw/arm/stm32f205_soc.c
1082F: hw/misc/stm32f2xx_syscfg.c
1083F: hw/char/stm32f2xx_usart.c
1084F: hw/timer/stm32f2xx_timer.c
1085F: hw/adc/*
1086F: hw/ssi/stm32f2xx_spi.c
Philippe Mathieu-Daudé0e0d3452017-09-08 14:36:19 -03001087F: include/hw/*/stm32*.h
Alistair Francisa1f81932016-10-04 13:28:07 +01001088
Alistair Francis529fc5f2020-01-17 14:09:29 +00001089STM32F405
1090M: Alistair Francis <alistair@alistair23.me>
1091M: Peter Maydell <peter.maydell@linaro.org>
Philippe Mathieu-Daudé8ef350b2020-01-20 19:59:27 +01001092L: qemu-arm@nongnu.org
Alistair Francis529fc5f2020-01-17 14:09:29 +00001093S: Maintained
1094F: hw/arm/stm32f405_soc.c
1095F: hw/misc/stm32f4xx_syscfg.c
1096F: hw/misc/stm32f4xx_exti.c
1097
Alistair Francisa1f81932016-10-04 13:28:07 +01001098Netduino 2
1099M: Alistair Francis <alistair@alistair23.me>
Peter Maydella00d7f22018-11-19 15:29:08 +00001100M: Peter Maydell <peter.maydell@linaro.org>
Philippe Mathieu-Daudé8ef350b2020-01-20 19:59:27 +01001101L: qemu-arm@nongnu.org
Alistair Francisa1f81932016-10-04 13:28:07 +01001102S: Maintained
1103F: hw/arm/netduino2.c
1104
Alistair Francis60d6c422020-01-17 14:09:29 +00001105Netduino Plus 2
1106M: Alistair Francis <alistair@alistair23.me>
1107M: Peter Maydell <peter.maydell@linaro.org>
Philippe Mathieu-Daudé8ef350b2020-01-20 19:59:27 +01001108L: qemu-arm@nongnu.org
Alistair Francis60d6c422020-01-17 14:09:29 +00001109S: Maintained
1110F: hw/arm/netduinoplus2.c
1111
Felipe Balbiee5bffa2022-12-30 16:57:33 +02001112Olimex STM32 H405
1113M: Felipe Balbi <balbi@kernel.org>
1114L: qemu-arm@nongnu.org
1115S: Maintained
1116F: hw/arm/olimex-stm32-h405.c
1117
Inès Varhol04a7c7b2024-01-08 14:58:28 +01001118STM32L4x5 SoC Family
1119M: Arnaud Minier <arnaud.minier@telecom-paris.fr>
1120M: Inès Varhol <ines.varhol@telecom-paris.fr>
1121L: qemu-arm@nongnu.org
1122S: Maintained
1123F: hw/arm/stm32l4x5_soc.c
Arnaud Minier4fb37ae2024-03-29 18:43:58 +01001124F: hw/char/stm32l4x5_usart.c
Arnaud Minierd6b55a02024-03-03 15:06:36 +01001125F: hw/misc/stm32l4x5_exti.c
1126F: hw/misc/stm32l4x5_syscfg.c
1127F: hw/misc/stm32l4x5_rcc.c
Inès Varhol1cdcfb62024-03-05 22:03:10 +01001128F: hw/gpio/stm32l4x5_gpio.c
Arnaud Minierd6b55a02024-03-03 15:06:36 +01001129F: include/hw/*/stm32l4x5_*.h
Inès Varhol04a7c7b2024-01-08 14:58:28 +01001130
Inès Varhol41581f12024-01-08 14:58:29 +01001131B-L475E-IOT01A IoT Node
1132M: Arnaud Minier <arnaud.minier@telecom-paris.fr>
1133M: Inès Varhol <ines.varhol@telecom-paris.fr>
1134L: qemu-arm@nongnu.org
1135S: Maintained
1136F: hw/arm/b-l475e-iot01a.c
1137
Subbaraya Sundeep670bc4c2017-11-13 13:55:25 +00001138SmartFusion2
1139M: Subbaraya Sundeep <sundeep.lkml@gmail.com>
Peter Maydella00d7f22018-11-19 15:29:08 +00001140M: Peter Maydell <peter.maydell@linaro.org>
Philippe Mathieu-Daudé8ef350b2020-01-20 19:59:27 +01001141L: qemu-arm@nongnu.org
Subbaraya Sundeep670bc4c2017-11-13 13:55:25 +00001142S: Maintained
1143F: hw/arm/msf2-soc.c
1144F: hw/misc/msf2-sysreg.c
1145F: hw/timer/mss-timer.c
1146F: hw/ssi/mss-spi.c
1147F: include/hw/arm/msf2-soc.h
1148F: include/hw/misc/msf2-sysreg.h
1149F: include/hw/timer/mss-timer.h
1150F: include/hw/ssi/mss-spi.h
Subbaraya Sundeep1c664372020-04-16 20:24:49 +05301151F: hw/net/msf2-emac.c
1152F: include/hw/net/msf2-emac.h
Subbaraya Sundeep670bc4c2017-11-13 13:55:25 +00001153
1154Emcraft M2S-FG484
1155M: Subbaraya Sundeep <sundeep.lkml@gmail.com>
Peter Maydella00d7f22018-11-19 15:29:08 +00001156M: Peter Maydell <peter.maydell@linaro.org>
Philippe Mathieu-Daudé8ef350b2020-01-20 19:59:27 +01001157L: qemu-arm@nongnu.org
Subbaraya Sundeep670bc4c2017-11-13 13:55:25 +00001158S: Maintained
1159F: hw/arm/msf2-som.c
Peter Maydell3f65df32021-07-13 15:22:25 +01001160F: docs/system/arm/emcraft-sf2.rst
Subbaraya Sundeep670bc4c2017-11-13 13:55:25 +00001161
Joel Stanleyf87db1b2018-06-26 17:50:39 +01001162ASPEED BMCs
1163M: Cédric Le Goater <clg@kaod.org>
Peter Maydella00d7f22018-11-19 15:29:08 +00001164M: Peter Maydell <peter.maydell@linaro.org>
Jamin Lin5f445212024-06-05 14:03:10 +08001165R: Steven Lee <steven_lee@aspeedtech.com>
1166R: Troy Lee <leetroy@gmail.com>
1167R: Jamin Lin <jamin_lin@aspeedtech.com>
Andrew Jefferycbe27c32023-09-25 15:52:12 +09301168R: Andrew Jeffery <andrew@codeconstruct.com.au>
Joel Stanleyf87db1b2018-06-26 17:50:39 +01001169R: Joel Stanley <joel@jms.id.au>
1170L: qemu-arm@nongnu.org
1171S: Maintained
1172F: hw/*/*aspeed*
1173F: include/hw/*/*aspeed*
1174F: hw/net/ftgmac100.c
1175F: include/hw/net/ftgmac100.h
Philippe Mathieu-Daudéde8ee7d2020-11-20 16:45:41 +01001176F: docs/system/arm/aspeed.rst
Thomas Huthe354d992023-04-24 10:22:41 +01001177F: tests/*/*aspeed*
Peter Delevoryasc2f58c22022-07-14 16:24:38 +02001178F: hw/arm/fby35.c
Joel Stanleyf87db1b2018-06-26 17:50:39 +01001179
Joel Stanleyc0066d12018-09-25 14:02:30 +01001180NRF51
1181M: Joel Stanley <joel@jms.id.au>
Peter Maydella00d7f22018-11-19 15:29:08 +00001182M: Peter Maydell <peter.maydell@linaro.org>
Joel Stanleyc0066d12018-09-25 14:02:30 +01001183L: qemu-arm@nongnu.org
1184S: Maintained
Stefan Hajnoczic8de3f52019-01-29 11:46:04 +00001185F: hw/*/nrf51*.c
1186F: hw/*/microbit*.c
1187F: include/hw/*/nrf51*.h
1188F: include/hw/*/microbit*.h
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02001189F: tests/qtest/microbit-test.c
Alexandre Iooss90a76c62021-06-21 09:56:25 +02001190F: docs/system/arm/nrf.rst
Joel Stanleyc0066d12018-09-25 14:02:30 +01001191
Michael Rolnik42f3ff02020-01-24 01:51:21 +01001192AVR Machines
1193-------------
1194
1195AVR MCUs
1196M: Michael Rolnik <mrolnik@gmail.com>
Michael Rolnik42f3ff02020-01-24 01:51:21 +01001197S: Maintained
Alex Bennée812b31d2021-07-07 14:17:43 +01001198F: configs/devices/avr-softmmu/default.mak
Philippe Mathieu-Daudé7dd8f6f2020-01-24 01:51:25 +01001199F: hw/avr/
Michael Rolnik429ca9d2020-01-24 01:51:17 +01001200F: include/hw/char/avr_usart.h
1201F: hw/char/avr_usart.c
Michael Rolnik8ff47bc2020-01-24 01:51:18 +01001202F: include/hw/timer/avr_timer16.h
1203F: hw/timer/avr_timer16.c
Michael Rolnikdc288de2020-01-24 01:51:19 +01001204F: include/hw/misc/avr_power.h
1205F: hw/misc/avr_power.c
Michael Rolnik42f3ff02020-01-24 01:51:21 +01001206
Philippe Mathieu-Daudé50486d62020-01-24 01:51:27 +01001207Arduino
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02001208M: Philippe Mathieu-Daudé <philmd@linaro.org>
Philippe Mathieu-Daudé50486d62020-01-24 01:51:27 +01001209S: Maintained
1210F: hw/avr/arduino.c
1211
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001212CRIS Machines
1213-------------
1214Axis Dev88
1215M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
1216S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01001217F: hw/cris/axis_dev88.c
Peter Maydell6e481d52013-06-24 11:49:32 +01001218F: hw/*/etraxfs_*.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001219
Philippe Mathieu-Daudée1883962018-12-18 12:56:10 +01001220HP-PARISC Machines
1221------------------
Helge Dellerae759c92023-10-14 19:48:27 +02001222HP B160L, HP C3700
Richard Henderson336f7442020-11-12 20:35:43 -08001223M: Richard Henderson <richard.henderson@linaro.org>
Philippe Mathieu-Daudée1883962018-12-18 12:56:10 +01001224R: Helge Deller <deller@gmx.de>
1225S: Odd Fixes
Alex Bennée812b31d2021-07-07 14:17:43 +01001226F: configs/devices/hppa-softmmu/default.mak
Thomas Huthe416fd72023-11-07 11:30:44 +01001227F: hw/display/artist.c
Philippe Mathieu-Daudée1883962018-12-18 12:56:10 +01001228F: hw/hppa/
Thomas Huth8db07602023-10-17 17:19:33 +02001229F: hw/input/lasips2.c
Philippe Mathieu-Daudé11f976a2021-10-04 10:38:35 +02001230F: hw/net/*i82596*
Mark Cave-Ayland45f569a2022-05-04 10:25:52 +01001231F: hw/misc/lasi.c
Helge Dellerae759c92023-10-14 19:48:27 +02001232F: hw/pci-host/astro.c
Mark Cave-Ayland0db93502022-05-04 10:25:32 +01001233F: hw/pci-host/dino.c
Thomas Huth8db07602023-10-17 17:19:33 +02001234F: include/hw/input/lasips2.h
Mark Cave-Ayland45f569a2022-05-04 10:25:52 +01001235F: include/hw/misc/lasi.h
Philippe Mathieu-Daudé11f976a2021-10-04 10:38:35 +02001236F: include/hw/net/lasi_82596.h
Helge Dellerae759c92023-10-14 19:48:27 +02001237F: include/hw/pci-host/astro.h
Mark Cave-Ayland0db93502022-05-04 10:25:32 +01001238F: include/hw/pci-host/dino.h
Philippe Mathieu-Daudée1883962018-12-18 12:56:10 +01001239F: pc-bios/hppa-firmware.img
Helge Dellerae759c92023-10-14 19:48:27 +02001240F: roms/seabios-hppa/
Philippe Mathieu-Daudée1883962018-12-18 12:56:10 +01001241
Xiaojuan Yangd88b51d2022-06-06 20:43:08 +08001242LoongArch Machines
1243------------------
1244Virt
Xiaojuan Yangd88b51d2022-06-06 20:43:08 +08001245M: Song Gao <gaosong@loongson.cn>
Jiaxun Yang36ff1782024-06-27 05:13:28 +01001246R: Jiaxun Yang <jiaxun.yang@flygoat.com>
Xiaojuan Yangd88b51d2022-06-06 20:43:08 +08001247S: Maintained
Xiaojuan Yang587858e2022-07-29 15:30:17 +08001248F: docs/system/loongarch/virt.rst
Xiaojuan Yanga8a506c2022-06-06 20:43:20 +08001249F: configs/targets/loongarch64-softmmu.mak
1250F: configs/devices/loongarch64-softmmu/default.mak
1251F: hw/loongarch/
1252F: include/hw/loongarch/virt.h
Xiaojuan Yangf6783e32022-06-06 20:43:21 +08001253F: include/hw/intc/loongarch_*.h
Bibo Mao7e555782024-07-23 11:25:53 +02001254F: include/hw/intc/loongson_ipi_common.h
Xiaojuan Yangf6783e32022-06-06 20:43:21 +08001255F: hw/intc/loongarch_*.c
Bibo Mao7e555782024-07-23 11:25:53 +02001256F: hw/intc/loongson_ipi_common.c
Xiaojuan Yang0f4fcf12022-06-06 20:43:22 +08001257F: include/hw/pci-host/ls7a.h
Xiaojuan Yangc117f682022-06-06 20:43:28 +08001258F: hw/rtc/ls7a_rtc.c
Xiaojuan Yangca61e752022-06-06 20:43:31 +08001259F: gdb-xml/loongarch*.xml
Xiaojuan Yangd88b51d2022-06-06 20:43:08 +08001260
Aurelien Jarnoafcacd52011-01-14 20:39:19 +01001261M68K Machines
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001262-------------
1263an5206
Thomas Huth5baf2742017-02-12 23:38:17 +01001264M: Thomas Huth <huth@tuxfamily.org>
1265S: Odd Fixes
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01001266F: hw/m68k/an5206.c
Thomas Huthe9a56112016-11-02 09:39:33 +01001267F: hw/m68k/mcf5206.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001268
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001269mcf5208
Thomas Huth5baf2742017-02-12 23:38:17 +01001270M: Thomas Huth <huth@tuxfamily.org>
1271S: Odd Fixes
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01001272F: hw/m68k/mcf5208.c
Thomas Huthe9a56112016-11-02 09:39:33 +01001273F: hw/m68k/mcf_intc.c
1274F: hw/char/mcf_uart.c
1275F: hw/net/mcf_fec.c
Thomas Huth5baf2742017-02-12 23:38:17 +01001276F: include/hw/m68k/mcf*.h
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001277
Thomas Huth1810b812018-06-30 08:33:57 +00001278NeXTcube
1279M: Thomas Huth <huth@tuxfamily.org>
1280S: Odd Fixes
1281F: hw/m68k/next-*.c
1282F: hw/display/next-fb.c
1283F: include/hw/m68k/next-cube.h
1284
Laurent Vivier6dca62a2019-10-26 18:45:40 +02001285q800
1286M: Laurent Vivier <laurent@vivier.eu>
1287S: Maintained
Laurent Vivier04e7ca82019-10-26 18:45:45 +02001288F: hw/m68k/q800.c
Mark Cave-Ayland8e093282023-06-21 09:53:36 +01001289F: hw/m68k/q800-glue.c
Laurent Vivier6dca62a2019-10-26 18:45:40 +02001290F: hw/misc/mac_via.c
Laurent Vivierfa2ba3b2019-10-26 18:45:42 +02001291F: hw/nubus/*
Laurent Vivier8ac919a2019-10-26 18:45:43 +02001292F: hw/display/macfb.c
Laurent Vivierc701ec62019-10-26 18:45:44 +02001293F: hw/block/swim.c
Mark Cave-Aylande2fd6952023-10-04 09:37:48 +01001294F: hw/misc/djmemc.c
Mark Cave-Aylandbdc2c772023-10-04 09:37:51 +01001295F: hw/misc/iosb.c
Mark Cave-Aylandac13a6b2023-10-04 09:37:53 +01001296F: hw/audio/asc.c
Laurent Vivier04e7ca82019-10-26 18:45:45 +02001297F: hw/m68k/bootinfo.h
Laurent Vivier382d71a2020-12-20 12:26:09 +01001298F: include/standard-headers/asm-m68k/bootinfo.h
1299F: include/standard-headers/asm-m68k/bootinfo-mac.h
Laurent Vivier6dca62a2019-10-26 18:45:40 +02001300F: include/hw/misc/mac_via.h
Laurent Vivierfa2ba3b2019-10-26 18:45:42 +02001301F: include/hw/nubus/*
Laurent Vivier8ac919a2019-10-26 18:45:43 +02001302F: include/hw/display/macfb.h
Laurent Vivierc701ec62019-10-26 18:45:44 +02001303F: include/hw/block/swim.h
Mark Cave-Aylanda8019222023-06-21 09:53:32 +01001304F: include/hw/m68k/q800.h
Mark Cave-Ayland8e093282023-06-21 09:53:36 +01001305F: include/hw/m68k/q800-glue.h
Mark Cave-Aylande2fd6952023-10-04 09:37:48 +01001306F: include/hw/misc/djmemc.h
Mark Cave-Aylandbdc2c772023-10-04 09:37:51 +01001307F: include/hw/misc/iosb.h
Mark Cave-Aylandac13a6b2023-10-04 09:37:53 +01001308F: include/hw/audio/asc.h
Laurent Vivier6dca62a2019-10-26 18:45:40 +02001309
Laurent Viviere1cecdc2021-03-12 22:41:45 +01001310virt
1311M: Laurent Vivier <laurent@vivier.eu>
1312S: Maintained
1313F: hw/m68k/virt.c
1314F: hw/char/goldfish_tty.c
1315F: hw/intc/goldfish_pic.c
1316F: hw/intc/m68k_irqc.c
1317F: hw/misc/virt_ctrl.c
1318F: include/hw/char/goldfish_tty.h
1319F: include/hw/intc/goldfish_pic.h
1320F: include/hw/intc/m68k_irqc.h
1321F: include/hw/misc/virt_ctrl.h
Peter Maydell6e0c8492023-09-27 16:12:03 +01001322F: docs/specs/virt-ctlr.rst
Laurent Viviere1cecdc2021-03-12 22:41:45 +01001323
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001324MicroBlaze Machines
1325-------------------
1326petalogix_s3adsp1800
1327M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
1328S: Maintained
Peter Maydell6e481d52013-06-24 11:49:32 +01001329F: hw/microblaze/petalogix_s3adsp1800_mmu.c
Philippe Mathieu-Daudéa734c7b2018-11-25 21:49:41 +01001330F: include/hw/char/xilinx_uartlite.h
Willian Rampazzobbbd9b62021-11-05 12:53:54 -03001331F: tests/avocado/machine_microblaze.py
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001332
Peter A. G. Crosthwaited36e8ce2012-06-26 14:29:40 +10001333petalogix_ml605
Alistair Francis4b46ba62015-08-25 15:45:06 +01001334M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
Peter A. G. Crosthwaited36e8ce2012-06-26 14:29:40 +10001335S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01001336F: hw/microblaze/petalogix_ml605_mmu.c
Peter A. G. Crosthwaited36e8ce2012-06-26 14:29:40 +10001337
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001338MIPS Machines
1339-------------
Philippe Mathieu-Daudéf44d1d42021-10-04 10:26:38 +02001340Overall MIPS Machines
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02001341M: Philippe Mathieu-Daudé <philmd@linaro.org>
Philippe Mathieu-Daudéf44d1d42021-10-04 10:26:38 +02001342S: Odd Fixes
1343F: configs/devices/mips*/*
1344F: hw/mips/
1345F: include/hw/mips/
1346
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001347Jazz
1348M: Hervé Poussineau <hpoussin@reactos.org>
Aleksandar Rikalo45c577f2024-02-09 07:21:47 +01001349R: Aleksandar Rikalo <arikalo@gmail.com>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001350S: Maintained
Aleksandar Markovic52987222020-05-18 22:09:20 +02001351F: hw/mips/jazz.c
Thomas Huth740ee842023-09-29 16:09:35 +02001352F: hw/display/g364fb.c
Philippe Mathieu-Daudé0886a782018-11-25 21:49:40 +01001353F: hw/display/jazz_led.c
1354F: hw/dma/rc4030.c
Thomas Huth740ee842023-09-29 16:09:35 +02001355F: hw/nvram/ds1225y.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001356
1357Malta
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02001358M: Philippe Mathieu-Daudé <philmd@linaro.org>
Aleksandar Markovic485cd982019-12-10 13:55:17 +01001359R: Aurelien Jarno <aurelien@aurel32.net>
Aleksandar Markovicca263c02020-10-07 22:37:21 +02001360S: Odd Fixes
Bernhard Beschow16971892023-10-07 14:38:27 +02001361F: hw/isa/piix.c
Paolo Bonzinifbd75802024-02-13 16:50:01 +01001362F: hw/isa/fdc37m81x-superio.c
Aleksandar Markovic60041372019-12-10 13:55:18 +01001363F: hw/acpi/piix4.c
Aleksandar Markovic52987222020-05-18 22:09:20 +02001364F: hw/mips/malta.c
Philippe Mathieu-Daudéa7db7592023-01-13 09:20:12 +01001365F: hw/pci-host/gt64120.c
Aleksandar Markovic60041372019-12-10 13:55:18 +01001366F: include/hw/southbridge/piix.h
Willian Rampazzobbbd9b62021-11-05 12:53:54 -03001367F: tests/avocado/linux_ssh_mips_malta.py
1368F: tests/avocado/machine_mips_malta.py
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001369
1370Mipssim
Aleksandar Rikalo45c577f2024-02-09 07:21:47 +01001371R: Aleksandar Rikalo <arikalo@gmail.com>
John Snow4251dfb2020-10-30 11:34:16 -04001372S: Orphan
Aleksandar Markovic52987222020-05-18 22:09:20 +02001373F: hw/mips/mipssim.c
Yongbok Kim659f42d2017-03-10 15:32:32 +00001374F: hw/net/mipsnet.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001375
Philippe Mathieu-Daudéc3a09ff2020-04-26 12:16:37 +02001376Fuloong 2E
Huacai Chendab1e1e2020-12-05 17:22:01 +08001377M: Huacai Chen <chenhuacai@kernel.org>
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02001378M: Philippe Mathieu-Daudé <philmd@linaro.org>
Huacai Chen97eeef82020-04-08 17:16:20 +08001379R: Jiaxun Yang <jiaxun.yang@flygoat.com>
Yongbok Kim659f42d2017-03-10 15:32:32 +00001380S: Odd Fixes
Philippe Mathieu-Daudéc3a09ff2020-04-26 12:16:37 +02001381F: hw/mips/fuloong2e.c
Thomas Huth5021bfa2018-11-22 14:02:40 +01001382F: hw/pci-host/bonito.c
Philippe Mathieu-Daudéaad07962023-01-05 13:48:08 +01001383F: include/hw/pci-host/bonito.h
Willian Rampazzobbbd9b62021-11-05 12:53:54 -03001384F: tests/avocado/machine_mips_fuloong2e.py
Yongbok Kim659f42d2017-03-10 15:32:32 +00001385
Aleksandar Markovic53fb8bf2020-06-27 20:13:17 +02001386Loongson-3 virtual platforms
Huacai Chendab1e1e2020-12-05 17:22:01 +08001387M: Huacai Chen <chenhuacai@kernel.org>
Huacai Chen2c5b1a72020-06-24 18:45:31 +08001388R: Jiaxun Yang <jiaxun.yang@flygoat.com>
1389S: Maintained
Bibo Mao7e555782024-07-23 11:25:53 +02001390F: hw/intc/loongson_ipi_common.c
Jiaxun Yangb4a12df2024-05-08 14:06:47 +01001391F: hw/intc/loongson_ipi.c
Huacai Chen2c5b1a72020-06-24 18:45:31 +08001392F: hw/intc/loongson_liointc.c
Huacai Chend2245e22020-10-16 14:51:58 +08001393F: hw/mips/loongson3_bootp.c
1394F: hw/mips/loongson3_bootp.h
Huacai Chenc76b4092020-04-27 17:33:14 +08001395F: hw/mips/loongson3_virt.c
Bibo Mao7e555782024-07-23 11:25:53 +02001396F: include/hw/intc/loongson_ipi_common.h
Jiaxun Yangb4a12df2024-05-08 14:06:47 +01001397F: include/hw/intc/loongson_ipi.h
Thomas Huthb5b47422023-10-17 17:33:45 +02001398F: include/hw/intc/loongson_liointc.h
Willian Rampazzobbbd9b62021-11-05 12:53:54 -03001399F: tests/avocado/machine_mips_loongson3v.py
Huacai Chen2c5b1a72020-06-24 18:45:31 +08001400
Yongbok Kim659f42d2017-03-10 15:32:32 +00001401Boston
Philippe Mathieu-Daudé4ba98e92020-10-09 18:15:59 +02001402M: Paul Burton <paulburton@kernel.org>
Aleksandar Rikalo45c577f2024-02-09 07:21:47 +01001403R: Aleksandar Rikalo <arikalo@gmail.com>
Philippe Mathieu-Daudé4ba98e92020-10-09 18:15:59 +02001404S: Odd Fixes
Yongbok Kim659f42d2017-03-10 15:32:32 +00001405F: hw/core/loader-fit.c
1406F: hw/mips/boston.c
1407F: hw/pci-host/xilinx-pcie.c
Thomas Huth5021bfa2018-11-22 14:02:40 +01001408F: include/hw/pci-host/xilinx-pcie.h
Yongbok Kim659f42d2017-03-10 15:32:32 +00001409
Jia Liu945dad62013-07-02 20:55:17 +08001410OpenRISC Machines
1411-----------------
1412or1k-sim
1413M: Jia Liu <proljc@gmail.com>
1414S: Maintained
Thomas Huth4db546d2022-12-12 18:48:41 +01001415F: docs/system/openrisc/or1k-sim.rst
Thomas Hutha4a2f7f2023-10-20 08:24:48 +02001416F: hw/intc/ompic.c
Jia Liu945dad62013-07-02 20:55:17 +08001417F: hw/openrisc/openrisc_sim.c
1418
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001419PowerPC Machines
1420----------------
Cédric Le Goater1335caf2022-08-09 17:38:41 +02001421405 (ref405ep)
Andreas Färbera6c98682012-01-13 13:33:57 +00001422L: qemu-ppc@nongnu.org
David Gibson0f514ee2021-09-21 13:02:17 +10001423S: Orphan
Cédric Le Goater6d714462023-10-02 17:51:37 +02001424F: hw/ppc/ppc405*
1425F: tests/avocado/ppc_405.py
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001426
Andreas Färberaaade8d2012-08-22 05:48:47 +00001427Bamboo
Andreas Färberaaade8d2012-08-22 05:48:47 +00001428L: qemu-ppc@nongnu.org
David Gibson0f514ee2021-09-21 13:02:17 +10001429S: Orphan
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01001430F: hw/ppc/ppc440_bamboo.c
Philippe Mathieu-Daudé55abb292023-10-11 06:31:50 +02001431F: hw/pci-host/ppc4xx_pci.c
Willian Rampazzobbbd9b62021-11-05 12:53:54 -03001432F: tests/avocado/ppc_bamboo.py
Andreas Färberaaade8d2012-08-22 05:48:47 +00001433
Andreas Färber98cded32012-08-22 05:48:45 +00001434e500
Andreas Färber98cded32012-08-22 05:48:45 +00001435L: qemu-ppc@nongnu.org
David Gibson0f514ee2021-09-21 13:02:17 +10001436S: Orphan
Thomas Huthce6fc612019-01-30 17:22:25 +01001437F: hw/ppc/e500*
Cédric Le Goaterab8e1af2023-10-02 17:51:39 +02001438F: hw/ppc/ppce500_spin.c
Thomas Huth2c6aba12019-01-02 16:57:56 +01001439F: hw/gpio/mpc8xxx.c
Andrew Randrianasulu7abb4792019-03-06 13:28:12 +03001440F: hw/i2c/mpc_i2c.c
Thomas Huthce6fc612019-01-30 17:22:25 +01001441F: hw/net/fsl_etsec/
1442F: hw/pci-host/ppce500.c
Thomas Huthb5d55022016-09-05 22:03:36 +02001443F: include/hw/ppc/ppc_e500.h
1444F: include/hw/pci-host/ppce500.h
1445F: pc-bios/u-boot.e500
Thomas Huthb96a7482023-10-19 17:58:22 +02001446F: hw/intc/openpic_kvm.c
David Gibsonff8cdbb2021-09-21 13:34:35 +10001447F: include/hw/ppc/openpic_kvm.h
Cédric Le Goaterab8e1af2023-10-02 17:51:39 +02001448F: docs/system/ppc/ppce500.rst
Andreas Färber98cded32012-08-22 05:48:45 +00001449
1450mpc8544ds
Andreas Färber98cded32012-08-22 05:48:45 +00001451L: qemu-ppc@nongnu.org
David Gibson0f514ee2021-09-21 13:02:17 +10001452S: Orphan
Andreas Färber98cded32012-08-22 05:48:45 +00001453F: hw/ppc/mpc8544ds.c
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01001454F: hw/ppc/mpc8544_guts.c
Willian Rampazzobbbd9b62021-11-05 12:53:54 -03001455F: tests/avocado/ppc_mpc8544ds.py
Andreas Färber98cded32012-08-22 05:48:45 +00001456
Thomas Huth2c6aba12019-01-02 16:57:56 +01001457New World (mac99)
Mark Cave-Ayland40e3dd02019-01-28 21:21:56 +00001458M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Andreas Färbera6c98682012-01-13 13:33:57 +00001459L: qemu-ppc@nongnu.org
Alexander Grafbba8e232018-10-30 10:35:31 +01001460S: Odd Fixes
Thomas Huthc5288762022-01-12 11:28:26 +01001461F: docs/system/ppc/powermac.rst
Andreas Färberbaec1912013-01-23 23:03:54 +00001462F: hw/ppc/mac_newworld.c
Peter Maydell6e481d52013-06-24 11:49:32 +01001463F: hw/pci-host/uninorth.c
1464F: hw/pci-bridge/dec.[hc]
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01001465F: hw/misc/macio/
Philippe Mathieu-Daudé6ba16472018-06-06 11:59:20 -03001466F: hw/misc/mos6522.c
Thomas Huthb5d55022016-09-05 22:03:36 +02001467F: hw/nvram/mac_nvram.c
Cédric Le Goater61985582023-10-02 17:51:41 +02001468F: hw/ppc/fw_cfg.c
Thomas Huth2c6aba12019-01-02 16:57:56 +01001469F: hw/input/adb*
Philippe Mathieu-Daudéeba45922018-06-06 11:59:19 -03001470F: include/hw/misc/macio/
Philippe Mathieu-Daudé6ba16472018-06-06 11:59:20 -03001471F: include/hw/misc/mos6522.h
BALATON Zoltan443f07b2022-10-28 13:56:27 +02001472F: include/hw/nvram/mac_nvram.h
Philippe Mathieu-Daudéeba45922018-06-06 11:59:19 -03001473F: include/hw/ppc/mac_dbdma.h
Thomas Huth5021bfa2018-11-22 14:02:40 +01001474F: include/hw/pci-host/uninorth.h
Thomas Huth2c6aba12019-01-02 16:57:56 +01001475F: include/hw/input/adb*
Mark Cave-Ayland52804c62019-01-02 10:22:43 +00001476F: pc-bios/qemu_vga.ndrv
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001477
Thomas Huth2c6aba12019-01-02 16:57:56 +01001478Old World (g3beige)
Mark Cave-Ayland40e3dd02019-01-28 21:21:56 +00001479M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Andreas Färbera6c98682012-01-13 13:33:57 +00001480L: qemu-ppc@nongnu.org
Alexander Grafbba8e232018-10-30 10:35:31 +01001481S: Odd Fixes
Thomas Huthc5288762022-01-12 11:28:26 +01001482F: docs/system/ppc/powermac.rst
Andreas Färberbaec1912013-01-23 23:03:54 +00001483F: hw/ppc/mac_oldworld.c
Peter Maydell6e481d52013-06-24 11:49:32 +01001484F: hw/pci-host/grackle.c
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01001485F: hw/misc/macio/
Thomas Huth835c42d2016-09-29 09:40:33 +02001486F: hw/intc/heathrow_pic.c
Thomas Huth2c6aba12019-01-02 16:57:56 +01001487F: hw/input/adb*
Philippe Mathieu-Daudé97e16db2018-11-25 21:49:43 +01001488F: include/hw/intc/heathrow_pic.h
Thomas Huth2c6aba12019-01-02 16:57:56 +01001489F: include/hw/input/adb*
BALATON Zoltan87e5a4f2022-10-28 13:56:25 +02001490F: include/hw/pci-host/grackle.h
Mark Cave-Ayland52804c62019-01-02 10:22:43 +00001491F: pc-bios/qemu_vga.ndrv
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001492
Andreas Färberec38d392011-11-01 00:03:07 +01001493PReP
Hervé Poussineau8178e892017-01-12 09:47:29 +01001494M: Hervé Poussineau <hpoussin@reactos.org>
Andreas Färbera6c98682012-01-13 13:33:57 +00001495L: qemu-ppc@nongnu.org
Hervé Poussineau8178e892017-01-12 09:47:29 +01001496S: Maintained
Thomas Huthc5288762022-01-12 11:28:26 +01001497F: docs/system/ppc/prep.rst
Andreas Färber75610152013-01-26 20:41:58 +01001498F: hw/ppc/prep.c
Hervé Poussineau8178e892017-01-12 09:47:29 +01001499F: hw/ppc/prep_systemio.c
1500F: hw/ppc/rs6000_mc.c
Philippe Mathieu-Daudé46fd3202021-04-16 18:18:58 +02001501F: hw/pci-host/raven.c
Philippe Mathieu-Daudé0a9464b2017-10-17 13:43:48 -03001502F: hw/isa/i82378.c
Philippe Mathieu-Daudéa48c6b52018-03-08 23:39:25 +01001503F: hw/isa/pc87312.c
Philippe Mathieu-Daudé1cd6dcc2017-10-17 13:43:46 -03001504F: hw/dma/i82374.c
Philippe Mathieu-Daudé819ce6b2019-10-04 01:03:54 +02001505F: hw/rtc/m48t59-isa.c
Philippe Mathieu-Daudéa48c6b52018-03-08 23:39:25 +01001506F: include/hw/isa/pc87312.h
Philippe Mathieu-Daudé819ce6b2019-10-04 01:03:54 +02001507F: include/hw/rtc/m48t59.h
Willian Rampazzobbbd9b62021-11-05 12:53:54 -03001508F: tests/avocado/ppc_prep_40p.py
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001509
Thomas Huthc5288762022-01-12 11:28:26 +01001510sPAPR (pseries)
Daniel Henrique Barboza0cbc34d2023-09-15 08:05:07 -03001511M: Nicholas Piggin <npiggin@gmail.com>
1512R: Daniel Henrique Barboza <danielhb413@gmail.com>
David Gibson14fe3222021-11-05 14:28:51 +11001513R: David Gibson <david@gibson.dropbear.id.au>
Harsh Prateek Borafcdae012023-05-03 15:06:19 +05301514R: Harsh Prateek Bora <harshpb@linux.ibm.com>
Andreas Färber8a269ca2012-08-22 05:48:44 +00001515L: qemu-ppc@nongnu.org
Daniel Henrique Barboza2e93a902022-11-17 12:32:18 -03001516S: Odd Fixes
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01001517F: hw/*/spapr*
David Gibsonf9de2da2013-06-15 11:51:52 +10001518F: include/hw/*/spapr*
1519F: hw/*/xics*
1520F: include/hw/*/xics*
Cédric Le Goaterd79d9982023-10-02 17:51:40 +02001521F: include/hw/ppc/fdt.h
1522F: hw/ppc/fdt.c
1523F: include/hw/ppc/pef.h
1524F: hw/ppc/pef.c
Thomas Huthb5d55022016-09-05 22:03:36 +02001525F: pc-bios/slof.bin
Thomas Huthc5288762022-01-12 11:28:26 +01001526F: docs/system/ppc/pseries.rst
1527F: docs/specs/ppc-spapr-*
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02001528F: tests/qtest/spapr*
Thomas Huth1cf43232019-09-10 16:41:20 +02001529F: tests/qtest/libqos/*spapr*
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02001530F: tests/qtest/rtas*
Thomas Huth1cf43232019-09-10 16:41:20 +02001531F: tests/qtest/libqos/rtas*
Willian Rampazzobbbd9b62021-11-05 12:53:54 -03001532F: tests/avocado/ppc_pseries.py
Nicholas Pigginc9cb4962023-10-09 13:25:50 +10001533F: tests/avocado/ppc_hv_tests.py
Andreas Färber8a269ca2012-08-22 05:48:44 +00001534
Cédric Le Goater1af82d42019-03-13 17:24:23 +01001535PowerNV (Non-Virtualized)
1536M: Cédric Le Goater <clg@kaod.org>
Daniel Henrique Barboza0cbc34d2023-09-15 08:05:07 -03001537M: Nicholas Piggin <npiggin@gmail.com>
Cédric Le Goater602b88e2023-06-20 07:59:03 +02001538R: Frédéric Barrat <fbarrat@linux.ibm.com>
Cédric Le Goater1af82d42019-03-13 17:24:23 +01001539L: qemu-ppc@nongnu.org
Cédric Le Goaterb0877572022-09-29 20:09:46 +02001540S: Odd Fixes
Thomas Huthc5288762022-01-12 11:28:26 +01001541F: docs/system/ppc/powernv.rst
Cédric Le Goater1af82d42019-03-13 17:24:23 +01001542F: hw/ppc/pnv*
1543F: hw/intc/pnv*
1544F: hw/intc/xics_pnv.c
Markus Armbruster157ed952020-06-09 14:23:27 +02001545F: hw/pci-host/pnv*
Cédric Le Goater1af82d42019-03-13 17:24:23 +01001546F: include/hw/ppc/pnv*
Markus Armbruster157ed952020-06-09 14:23:27 +02001547F: include/hw/pci-host/pnv*
Cédric Le Goater1af82d42019-03-13 17:24:23 +01001548F: pc-bios/skiboot.lid
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02001549F: tests/qtest/pnv*
Cédric Le Goater1af82d42019-03-13 17:24:23 +01001550
Glenn Milesde0c7d52024-02-05 17:40:16 +10001551pca955x
Glenn Miles0fa5eef2024-03-28 14:49:14 -05001552M: Glenn Miles <milesg@linux.ibm.com>
Glenn Milesde0c7d52024-02-05 17:40:16 +10001553L: qemu-ppc@nongnu.org
1554L: qemu-arm@nongnu.org
1555S: Odd Fixes
Cédric Le Goater6328d8f2024-03-25 14:48:32 +01001556F: hw/gpio/pca955*.c
1557F: include/hw/gpio/pca955*.h
Glenn Milesde0c7d52024-02-05 17:40:16 +10001558
Andreas Färber794d00b2012-08-22 05:48:48 +00001559virtex_ml507
1560M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
1561L: qemu-ppc@nongnu.org
1562S: Odd Fixes
Peter Maydell6e481d52013-06-24 11:49:32 +01001563F: hw/ppc/virtex_ml507.c
Willian Rampazzobbbd9b62021-11-05 12:53:54 -03001564F: tests/avocado/ppc_virtex_ml507.py
Andreas Färber794d00b2012-08-22 05:48:48 +00001565
BALATON Zoltana9dd6602017-12-16 23:42:39 +01001566sam460ex
1567M: BALATON Zoltan <balaton@eik.bme.hu>
1568L: qemu-ppc@nongnu.org
1569S: Maintained
BALATON Zoltan33c6a8b2019-01-02 03:06:38 +01001570F: hw/ppc/sam460ex.c
Philippe Mathieu-Daudéb3e12162023-10-11 16:07:20 +02001571F: hw/ppc/ppc440_uc.c
Philippe Mathieu-Daudé22dc8a42023-10-11 06:38:18 +02001572F: hw/pci-host/ppc440_pcix.c
BALATON Zoltan33c6a8b2019-01-02 03:06:38 +01001573F: hw/display/sm501*
BALATON Zoltana9dd6602017-12-16 23:42:39 +01001574F: hw/ide/sii3112.c
Philippe Mathieu-Daudéde04c312019-10-04 01:03:55 +02001575F: hw/rtc/m41t80.c
BALATON Zoltan33c6a8b2019-01-02 03:06:38 +01001576F: pc-bios/canyonlands.dt[sb]
1577F: pc-bios/u-boot-sam460ex-20100605.bin
1578F: roms/u-boot-sam460ex
BALATON Zoltan623d9062024-02-21 00:22:00 +01001579F: docs/system/ppc/amigang.rst
BALATON Zoltana9dd6602017-12-16 23:42:39 +01001580
BALATON Zoltanba7e5ac2021-03-25 14:50:39 +01001581pegasos2
1582M: BALATON Zoltan <balaton@eik.bme.hu>
BALATON Zoltanba7e5ac2021-03-25 14:50:39 +01001583L: qemu-ppc@nongnu.org
1584S: Maintained
1585F: hw/ppc/pegasos2.c
1586F: hw/pci-host/mv64361.c
1587F: hw/pci-host/mv643xx.h
1588F: include/hw/pci-host/mv64361.h
1589
BALATON Zoltand9656f82023-11-07 19:40:17 +01001590amigaone
1591M: BALATON Zoltan <balaton@eik.bme.hu>
1592L: qemu-ppc@nongnu.org
1593S: Maintained
1594F: hw/ppc/amigaone.c
1595F: hw/pci-host/articia.c
1596F: include/hw/pci-host/articia.h
1597
Alexey Kardashevskiyfc8c7452021-06-25 15:51:55 +10001598Virtual Open Firmware (VOF)
1599M: Alexey Kardashevskiy <aik@ozlabs.ru>
Alexey Kardashevskiy21bde1e2021-07-08 16:56:25 +10001600R: David Gibson <david@gibson.dropbear.id.au>
Alexey Kardashevskiyfc8c7452021-06-25 15:51:55 +10001601L: qemu-ppc@nongnu.org
Daniel Henrique Barboza0cbc34d2023-09-15 08:05:07 -03001602S: Odd Fixes
Alexey Kardashevskiyfc8c7452021-06-25 15:51:55 +10001603F: hw/ppc/spapr_vof*
1604F: hw/ppc/vof*
1605F: include/hw/ppc/vof*
1606F: pc-bios/vof/*
1607F: pc-bios/vof*
1608
Alistair Francisfe0fe472020-04-23 11:30:50 -07001609RISC-V Machines
1610---------------
1611OpenTitan
1612M: Alistair Francis <Alistair.Francis@wdc.com>
1613L: qemu-riscv@nongnu.org
1614S: Supported
1615F: hw/riscv/opentitan.c
Alistair Francisdf41cbd2021-06-18 17:27:54 +10001616F: hw/*/ibex_*.c
Alistair Francisfe0fe472020-04-23 11:30:50 -07001617F: include/hw/riscv/opentitan.h
Alistair Francisdf41cbd2021-06-18 17:27:54 +10001618F: include/hw/*/ibex_*.h
Alistair Francisfe0fe472020-04-23 11:30:50 -07001619
Bin Meng56f6e312020-09-01 09:38:59 +08001620Microchip PolarFire SoC Icicle Kit
Bin Meng8372c3a2024-05-05 15:23:12 +08001621M: Bin Meng <bmeng.cn@gmail.com>
Bin Meng56f6e312020-09-01 09:38:59 +08001622L: qemu-riscv@nongnu.org
1623S: Supported
Thomas Huth5d0ce902023-09-29 14:37:27 +02001624F: docs/system/riscv/microchip-icicle-kit.rst
Bin Meng56f6e312020-09-01 09:38:59 +08001625F: hw/riscv/microchip_pfsoc.c
Bin Menga8fb0a52020-09-01 09:39:00 +08001626F: hw/char/mchp_pfsoc_mmuart.c
Bin Meng3400b152020-10-28 13:30:02 +08001627F: hw/misc/mchp_pfsoc_dmc.c
Bin Menga937b302020-10-28 13:30:04 +08001628F: hw/misc/mchp_pfsoc_ioscb.c
Bin Meng0f250652020-10-28 13:30:06 +08001629F: hw/misc/mchp_pfsoc_sysreg.c
Bin Meng56f6e312020-09-01 09:38:59 +08001630F: include/hw/riscv/microchip_pfsoc.h
Bin Menga8fb0a52020-09-01 09:39:00 +08001631F: include/hw/char/mchp_pfsoc_mmuart.h
Bin Meng3400b152020-10-28 13:30:02 +08001632F: include/hw/misc/mchp_pfsoc_dmc.h
Bin Menga937b302020-10-28 13:30:04 +08001633F: include/hw/misc/mchp_pfsoc_ioscb.h
Bin Meng0f250652020-10-28 13:30:06 +08001634F: include/hw/misc/mchp_pfsoc_sysreg.h
Bin Meng56f6e312020-09-01 09:38:59 +08001635
Vijai Kumar K7a261ba2021-04-01 23:44:55 +05301636Shakti C class SoC
1637M: Vijai Kumar K <vijai@behindbytes.com>
1638L: qemu-riscv@nongnu.org
1639S: Supported
Thomas Huth5d0ce902023-09-29 14:37:27 +02001640F: docs/system/riscv/shakti-c.rst
Vijai Kumar K7a261ba2021-04-01 23:44:55 +05301641F: hw/riscv/shakti_c.c
Vijai Kumar K07f334d2021-04-01 23:44:56 +05301642F: hw/char/shakti_uart.c
Vijai Kumar K7a261ba2021-04-01 23:44:55 +05301643F: include/hw/riscv/shakti_c.h
Vijai Kumar K07f334d2021-04-01 23:44:56 +05301644F: include/hw/char/shakti_uart.h
Vijai Kumar K7a261ba2021-04-01 23:44:55 +05301645
Alistair Francis4fcad932021-02-08 18:11:27 -08001646SiFive Machines
1647M: Alistair Francis <Alistair.Francis@wdc.com>
Bin Meng8372c3a2024-05-05 15:23:12 +08001648M: Bin Meng <bmeng.cn@gmail.com>
Alistair Francis4fcad932021-02-08 18:11:27 -08001649M: Palmer Dabbelt <palmer@dabbelt.com>
1650L: qemu-riscv@nongnu.org
1651S: Supported
Thomas Huth5d0ce902023-09-29 14:37:27 +02001652F: docs/system/riscv/sifive_u.rst
Alistair Francis4fcad932021-02-08 18:11:27 -08001653F: hw/*/*sifive*.c
1654F: include/hw/*/*sifive*.h
1655
Yoshinori Satobda19d72019-01-21 22:16:00 +09001656RX Machines
1657-----------
1658rx-gdbsim
Philippe Mathieu-Daudéb2744da2021-03-12 16:55:12 +01001659R: Yoshinori Sato <ysato@users.sourceforge.jp>
1660S: Orphan
Yoshinori Sato4adbfa42020-01-23 22:25:25 +09001661F: docs/system/target-rx.rst
Yoshinori Satobda19d72019-01-21 22:16:00 +09001662F: hw/rx/rx-gdbsim.c
Willian Rampazzobbbd9b62021-11-05 12:53:54 -03001663F: tests/avocado/machine_rx_gdbsim.py
Yoshinori Satobda19d72019-01-21 22:16:00 +09001664
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001665SH4 Machines
1666------------
1667R2D
Philippe Mathieu-Daudé2d53d0c2021-03-12 16:55:13 +01001668R: Yoshinori Sato <ysato@users.sourceforge.jp>
Aleksandar Markovica9fb4462020-06-11 11:53:16 +02001669R: Magnus Damm <magnus.damm@gmail.com>
Philippe Mathieu-Daudéf1660612020-10-31 16:23:40 +01001670S: Odd Fixes
Philippe Mathieu-Daudé7ae5c8b2021-02-21 19:52:29 +01001671F: hw/char/sh_serial.c
Peter Maydell6e481d52013-06-24 11:49:32 +01001672F: hw/sh4/r2d.c
Thomas Huth81527b92016-09-30 11:32:02 +02001673F: hw/intc/sh_intc.c
Philippe Mathieu-Daudéc64bd102021-02-21 19:56:35 +01001674F: hw/pci-host/sh_pci.c
Philippe Mathieu-Daudé25e79522021-02-21 19:53:35 +01001675F: hw/timer/sh_timer.c
Philippe Mathieu-Daudé65b8dc22020-06-10 23:41:52 +02001676F: include/hw/sh4/sh_intc.h
Thomas Huth670185c2023-10-26 10:00:11 +02001677F: include/hw/timer/tmu012.h
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001678
1679Shix
Philippe Mathieu-Daudé2d53d0c2021-03-12 16:55:13 +01001680R: Yoshinori Sato <ysato@users.sourceforge.jp>
Aleksandar Markovica9fb4462020-06-11 11:53:16 +02001681R: Magnus Damm <magnus.damm@gmail.com>
Thomas Huth81527b92016-09-30 11:32:02 +02001682S: Odd Fixes
Philippe Mathieu-Daudé475e70b2021-02-21 19:55:22 +01001683F: hw/block/tc58128.c
Philippe Mathieu-Daudé7ae5c8b2021-02-21 19:52:29 +01001684F: hw/char/sh_serial.c
Peter Maydell6e481d52013-06-24 11:49:32 +01001685F: hw/sh4/shix.c
Philippe Mathieu-Daudé65b8dc22020-06-10 23:41:52 +02001686F: hw/intc/sh_intc.c
Philippe Mathieu-Daudé25e79522021-02-21 19:53:35 +01001687F: hw/timer/sh_timer.c
Philippe Mathieu-Daudé65b8dc22020-06-10 23:41:52 +02001688F: include/hw/sh4/sh_intc.h
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001689
1690SPARC Machines
1691--------------
1692Sun4m
Mark Cave-Aylandf2416d32015-03-02 22:23:27 +00001693M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001694S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01001695F: hw/sparc/sun4m.c
Markus Armbrusterc468e362018-08-10 13:55:53 +02001696F: hw/sparc/sun4m_iommu.c
Thomas Huthaec2b882019-02-15 13:39:24 +01001697F: hw/display/cg3.c
1698F: hw/display/tcx.c
Thomas Huthc10a1c72016-09-19 21:58:34 +02001699F: hw/dma/sparc32_dma.c
Thomas Huth7098b792016-09-23 14:27:25 +02001700F: hw/misc/eccmemctl.c
Thomas Huthaec2b882019-02-15 13:39:24 +01001701F: hw/*/slavio_*.c
1702F: include/hw/nvram/sun_nvram.h
Thomas Huthc10a1c72016-09-19 21:58:34 +02001703F: include/hw/sparc/sparc32_dma.h
Philippe Mathieu-Daudéd0476152018-11-25 21:49:44 +01001704F: include/hw/sparc/sun4m_iommu.h
Thomas Huthaec2b882019-02-15 13:39:24 +01001705F: pc-bios/openbios-sparc32
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001706
1707Sun4u
Mark Cave-Aylandf2416d32015-03-02 22:23:27 +00001708M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001709S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01001710F: hw/sparc64/sun4u.c
Philippe Mathieu-Daudé8ef856b2018-12-18 12:56:05 +01001711F: hw/sparc64/sun4u_iommu.c
1712F: include/hw/sparc/sun4u_iommu.h
Thomas Huth5021bfa2018-11-22 14:02:40 +01001713F: hw/pci-host/sabre.c
1714F: include/hw/pci-host/sabre.h
Philippe Mathieu-Daudé8ef856b2018-12-18 12:56:05 +01001715F: hw/pci-bridge/simba.c
1716F: include/hw/pci-bridge/simba.h
1717F: pc-bios/openbios-sparc64
Willian Rampazzobbbd9b62021-11-05 12:53:54 -03001718F: tests/avocado/machine_sparc64_sun4u.py
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001719
Artyom Tarasenkoa2664ca2016-09-29 14:46:45 +02001720Sun4v
1721M: Artyom Tarasenko <atar4qemu@gmail.com>
1722S: Maintained
Fam Zheng626e4a42017-10-13 16:53:54 +08001723F: hw/sparc64/niagara.c
Philippe Mathieu-Daudé2811ac32019-10-04 01:03:56 +02001724F: hw/rtc/sun4v-rtc.c
1725F: include/hw/rtc/sun4v-rtc.h
Artyom Tarasenkoa2664ca2016-09-29 14:46:45 +02001726
Fabien Chouteauce6c7602012-05-22 10:14:28 +02001727Leon3
Clément Chigot9e2a7ca2024-01-31 09:50:47 +01001728M: Clément Chigot <chigot@adacore.com>
Frederic Konrad034e0502022-04-01 15:35:49 +01001729M: Frederic Konrad <konrad.frederic@yahoo.fr>
Fabien Chouteauce6c7602012-05-22 10:14:28 +02001730S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01001731F: hw/sparc/leon3.c
1732F: hw/*/grlib*
KONRAD Frederic162abf12019-05-15 14:31:32 +02001733F: include/hw/*/grlib*
Fabien Chouteauce6c7602012-05-22 10:14:28 +02001734
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001735S390 Machines
1736-------------
Cornelia Huckdd4ad642013-03-05 02:22:01 +00001737S390 Virtio-ccw
Christian Borntraeger7c8e2642018-12-04 14:38:02 +01001738M: Halil Pasic <pasic@linux.ibm.com>
Christian Borntraeger2c092952021-11-26 11:24:49 +01001739M: Christian Borntraeger <borntraeger@linux.ibm.com>
Eric Farman6a6d3df2022-01-12 17:40:44 +01001740M: Eric Farman <farman@linux.ibm.com>
Cornelia Huckdd4ad642013-03-05 02:22:01 +00001741S: Supported
Cornelia Huckc5bfb202015-11-04 15:59:55 +01001742F: hw/s390x/
Cornelia Huck4277af12014-10-20 19:00:03 +02001743F: include/hw/s390x/
Alex Bennée812b31d2021-07-07 14:17:43 +01001744F: configs/devices/s390x-softmmu/default.mak
Willian Rampazzobbbd9b62021-11-05 12:53:54 -03001745F: tests/avocado/machine_s390_ccw_virtio.py
Stefan Hajnoczie18a8b32018-11-08 11:15:26 +00001746T: git https://github.com/borntraeger/qemu.git s390-next
Cornelia Huck146bd282017-10-05 17:05:23 +02001747L: qemu-s390x@nongnu.org
Cornelia Huckdd4ad642013-03-05 02:22:01 +00001748
Christian Borntraeger8e4eb422018-10-29 16:42:25 +01001749S390-ccw boot
Christian Borntraeger2c092952021-11-26 11:24:49 +01001750M: Christian Borntraeger <borntraeger@linux.ibm.com>
Cornelia Huck304584b2018-01-15 16:14:45 +01001751M: Thomas Huth <thuth@redhat.com>
1752S: Supported
Christian Borntraeger8e4eb422018-10-29 16:42:25 +01001753F: hw/s390x/ipl.*
Cornelia Huck304584b2018-01-15 16:14:45 +01001754F: pc-bios/s390-ccw/
1755F: pc-bios/s390-ccw.img
Cornelia Huckcc3d15a2020-01-28 13:24:14 +01001756F: docs/devel/s390-dasd-ipl.rst
Stefan Hajnoczie18a8b32018-11-08 11:15:26 +00001757T: git https://github.com/borntraeger/qemu.git s390-next
Cornelia Huck304584b2018-01-15 16:14:45 +01001758L: qemu-s390x@nongnu.org
1759
Christian Borntraegerd5bfb422018-10-29 16:42:24 +01001760S390 PCI
Matthew Rosatoecd66632019-09-27 09:21:01 -04001761M: Matthew Rosato <mjrosato@linux.ibm.com>
Matthew Rosato074c84b2021-03-25 09:55:09 -04001762M: Eric Farman <farman@linux.ibm.com>
Christian Borntraegerd5bfb422018-10-29 16:42:24 +01001763S: Supported
1764F: hw/s390x/s390-pci*
Matthew Rosato408b55d2020-10-26 11:34:31 -04001765F: include/hw/s390x/s390-pci*
Christian Borntraegerd5bfb422018-10-29 16:42:24 +01001766L: qemu-s390x@nongnu.org
1767
Cornelia Huck56e34832021-12-22 11:55:48 +01001768S390 channel subsystem
1769M: Halil Pasic <pasic@linux.ibm.com>
1770M: Christian Borntraeger <borntraeger@linux.ibm.com>
Eric Farman6a6d3df2022-01-12 17:40:44 +01001771M: Eric Farman <farman@linux.ibm.com>
Cornelia Huck56e34832021-12-22 11:55:48 +01001772S: Supported
1773F: hw/s390x/ccw-device.[ch]
1774F: hw/s390x/css.c
1775F: hw/s390x/css-bridge.c
1776F: include/hw/s390x/css.h
1777F: include/hw/s390x/css-bridge.h
1778F: include/hw/s390x/ioinst.h
1779F: target/s390x/ioinst.c
1780L: qemu-s390x@nongnu.org
1781
1782S390 CPU models
1783M: David Hildenbrand <david@redhat.com>
1784S: Maintained
1785F: target/s390x/cpu_features*.[ch]
1786F: target/s390x/cpu_models.[ch]
1787L: qemu-s390x@nongnu.org
1788
1789S390 SCLP-backed devices
1790M: Halil Pasic <pasic@linux.ibm.com>
1791M: Christian Borntraeger <borntraeger@linux.ibm.com>
1792S: Supported
1793F: include/hw/s390x/event-facility.h
1794F: include/hw/s390x/sclp.h
1795F: hw/char/sclp*.[hc]
1796F: hw/s390x/event-facility.c
1797F: hw/s390x/sclp*.c
1798L: qemu-s390x@nongnu.org
1799
Pierre Morelc809bbc2023-10-16 20:39:07 +02001800S390 CPU topology
1801M: Nina Schoetterl-Glausch <nsg@linux.ibm.com>
1802S: Supported
1803F: include/hw/s390x/cpu-topology.h
1804F: hw/s390x/cpu-topology.c
Pierre Morelf4f54b52023-10-16 20:39:08 +02001805F: target/s390x/kvm/stsi-topology.c
Pierre Morel0d177cd2023-10-16 20:39:18 +02001806F: docs/devel/s390-cpu-topology.rst
1807F: docs/system/s390x/cpu-topology.rst
Pierre Morele5bc49d2023-10-16 20:39:19 +02001808F: tests/avocado/s390_topology.py
Pierre Morelc809bbc2023-10-16 20:39:07 +02001809
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001810X86 Machines
1811------------
1812PC
Michael S. Tsirkin046a6482013-11-06 17:16:42 +02001813M: Michael S. Tsirkin <mst@redhat.com>
Marcel Apfelbaumfe355cb2018-04-26 11:45:23 +03001814M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001815S: Supported
Michael S. Tsirkin046a6482013-11-06 17:16:42 +02001816F: include/hw/i386/
1817F: hw/i386/
Philippe Mathieu-Daudé0f25d862019-02-02 21:03:07 +01001818F: hw/pci-host/i440fx.c
Michael S. Tsirkin046a6482013-11-06 17:16:42 +02001819F: hw/pci-host/q35.c
1820F: hw/pci-host/pam.c
Philippe Mathieu-Daudé0fd61a22019-02-02 20:57:47 +01001821F: include/hw/pci-host/i440fx.h
Michael S. Tsirkin046a6482013-11-06 17:16:42 +02001822F: include/hw/pci-host/q35.h
1823F: include/hw/pci-host/pam.h
Bernhard Beschow16971892023-10-07 14:38:27 +02001824F: hw/isa/piix.c
Michael S. Tsirkin046a6482013-11-06 17:16:42 +02001825F: hw/isa/lpc_ich9.c
1826F: hw/i2c/smbus_ich9.c
1827F: hw/acpi/piix4.c
Philippe Mathieu-Daudéfbae27e2022-12-12 11:51:15 +01001828F: hw/acpi/ich9*.c
1829F: include/hw/acpi/ich9*.h
Bernhard Beschow1a6981b2023-02-13 18:30:33 +01001830F: include/hw/southbridge/ich9.h
Philippe Mathieu-Daudéfff123b2018-01-06 16:37:26 +01001831F: include/hw/southbridge/piix.h
Philippe Mathieu-Daudé6f5a3292018-12-18 12:56:06 +01001832F: hw/isa/apm.c
1833F: include/hw/isa/apm.h
Zhao Liuaf4c26e2023-10-24 17:03:05 +08001834F: tests/unit/test-x86-topo.c
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02001835F: tests/qtest/test-x86-cpuid-compat.c
Paolo Bonzini9cc3b732015-09-22 11:56:47 +02001836
1837PC Chipset
1838M: Michael S. Tsirkin <mst@redhat.com>
1839M: Paolo Bonzini <pbonzini@redhat.com>
Philippe Mathieu-Daudé1732be82017-10-17 13:43:50 -03001840S: Supported
Paolo Bonzini9cc3b732015-09-22 11:56:47 +02001841F: hw/char/debugcon.c
Philippe Mathieu-Daudébb3d5ea2018-03-08 23:39:22 +01001842F: hw/char/parallel*
Paolo Bonzini9cc3b732015-09-22 11:56:47 +02001843F: hw/char/serial*
1844F: hw/dma/i8257*
1845F: hw/i2c/pm_smbus.c
Philippe Mathieu-Daudé1732be82017-10-17 13:43:50 -03001846F: hw/input/pckbd.c
Paolo Bonzini9cc3b732015-09-22 11:56:47 +02001847F: hw/intc/apic*
1848F: hw/intc/ioapic*
1849F: hw/intc/i8259*
Philippe Mathieu-Daudé1854eb22018-03-08 23:39:29 +01001850F: hw/isa/isa-superio.c
Paolo Bonzini9cc3b732015-09-22 11:56:47 +02001851F: hw/misc/debugexit.c
1852F: hw/misc/pc-testdev.c
1853F: hw/timer/hpet*
1854F: hw/timer/i8254*
Philippe Mathieu-Daudébcdb9062019-10-04 01:03:53 +02001855F: hw/rtc/mc146818rtc*
Philippe Mathieu-Daudéedc46af2017-10-17 13:43:49 -03001856F: hw/watchdog/wdt_ib700.c
Philippe Mathieu-Daudé4bcbc772018-11-25 21:49:47 +01001857F: hw/watchdog/wdt_i6300esb.c
Philippe Mathieu-Daudé866e2b32017-10-17 13:44:21 -03001858F: include/hw/display/vga.h
Bernhard Beschow9cc44d92023-06-12 10:12:38 +02001859F: include/hw/char/parallel*.h
Philippe Mathieu-Daudé55f613a2018-03-08 23:39:23 +01001860F: include/hw/dma/i8257.h
Thomas Hutha2feb342016-09-05 23:31:15 +02001861F: include/hw/i2c/pm_smbus.h
Philippe Mathieu-Daudé47973a22018-03-08 23:39:24 +01001862F: include/hw/input/i8042.h
Bernhard Beschow7f546402023-02-13 18:30:31 +01001863F: include/hw/intc/ioapic*
Thomas Huth63458972023-10-17 17:26:25 +02001864F: include/hw/intc/i8259.h
Philippe Mathieu-Daudé4bcbc772018-11-25 21:49:47 +01001865F: include/hw/isa/i8259_internal.h
Philippe Mathieu-Daudé1854eb22018-03-08 23:39:29 +01001866F: include/hw/isa/superio.h
Thomas Hutha2feb342016-09-05 23:31:15 +02001867F: include/hw/timer/hpet.h
1868F: include/hw/timer/i8254*
Philippe Mathieu-Daudébcdb9062019-10-04 01:03:53 +02001869F: include/hw/rtc/mc146818rtc*
Michael S. Tsirkin046a6482013-11-06 17:16:42 +02001870
Sergio Lopez5cb48f02019-10-08 12:42:28 +02001871microvm
1872M: Sergio Lopez <slp@redhat.com>
1873M: Paolo Bonzini <pbonzini@redhat.com>
1874S: Maintained
Alex Bennée0b09d442021-10-12 16:14:47 +01001875F: docs/system/i386/microvm.rst
Sergio Lopez5cb48f02019-10-08 12:42:28 +02001876F: hw/i386/microvm.c
1877F: include/hw/i386/microvm.h
1878F: pc-bios/bios-microvm.bin
1879
Michael S. Tsirkin5da4fb0012016-03-11 16:06:56 +02001880Machine core
Eduardo Habkost24c4cd12021-11-30 15:47:22 -05001881M: Eduardo Habkost <eduardo@habkost.net>
Marcel Apfelbaumfe355cb2018-04-26 11:45:23 +03001882M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02001883R: Philippe Mathieu-Daudé <philmd@linaro.org>
Yanan Wangda7595c2021-12-28 17:22:14 +08001884R: Yanan Wang <wangyanan55@huawei.com>
Zhao Liue4a44f92024-07-23 00:44:12 +08001885R: Zhao Liu <zhao1.liu@intel.com>
Michael S. Tsirkin5da4fb0012016-03-11 16:06:56 +02001886S: Supported
Zhao Liu85178692024-01-15 17:48:42 +08001887F: hw/core/cpu-common.c
1888F: hw/core/cpu-sysemu.c
Markus Armbruster52924de2019-06-19 22:10:43 +02001889F: hw/core/machine-qmp-cmds.c
Michael S. Tsirkin5da4fb0012016-03-11 16:06:56 +02001890F: hw/core/machine.c
Yanan Wang86ce2d22021-10-26 11:46:58 +08001891F: hw/core/machine-smp.c
Thomas Huthc1629c52017-01-23 06:54:55 +01001892F: hw/core/null-machine.c
Markus Armbrusterac057872019-06-19 22:10:42 +02001893F: hw/core/numa.c
Luc Michel335d52f2019-01-07 15:23:45 +00001894F: hw/cpu/cluster.c
Markus Armbruster8ac25c82019-06-19 22:10:41 +02001895F: qapi/machine.json
Pierre Morel5de1aff2023-10-16 20:39:06 +02001896F: qapi/machine-common.json
Markus Armbruster7f7b4e72019-06-19 22:10:45 +02001897F: qapi/machine-target.json
Michael S. Tsirkin5da4fb0012016-03-11 16:06:56 +02001898F: include/hw/boards.h
Markus Armbruster2e5b09f2019-07-09 17:20:52 +02001899F: include/hw/core/cpu.h
Luc Michel335d52f2019-01-07 15:23:45 +00001900F: include/hw/cpu/cluster.h
Markus Armbruster2dd02582019-06-19 22:10:40 +02001901F: include/sysemu/numa.h
Yanan Wang9e8e3932021-10-26 11:46:59 +08001902F: tests/unit/test-smp-parse.c
Eduardo Habkostf953c102020-12-14 16:20:32 -05001903T: git https://gitlab.com/ehabkost/qemu.git machine-next
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001904
Max Filippov16e7caa2011-09-06 03:55:56 +04001905Xtensa Machines
1906---------------
Max Filippov375847a2011-10-28 02:11:05 +04001907sim
Max Filippov16e7caa2011-09-06 03:55:56 +04001908M: Max Filippov <jcmvbkbc@gmail.com>
1909S: Maintained
Max Filippov437a8c12014-10-22 07:25:42 +04001910F: hw/xtensa/sim.c
Max Filippov375847a2011-10-28 02:11:05 +04001911
Max Filippovd9e85532018-09-10 16:33:24 -07001912virt
1913M: Max Filippov <jcmvbkbc@gmail.com>
1914S: Maintained
1915F: hw/xtensa/virt.c
1916
Max Filippov437a8c12014-10-22 07:25:42 +04001917XTFPGA (LX60, LX200, ML605, KC705)
Max Filippov375847a2011-10-28 02:11:05 +04001918M: Max Filippov <jcmvbkbc@gmail.com>
1919S: Maintained
Max Filippov437a8c12014-10-22 07:25:42 +04001920F: hw/xtensa/xtfpga.c
1921F: hw/net/opencores_eth.c
Thomas Huth2b531602023-11-07 11:21:04 +01001922F: include/hw/xtensa/mx_pic.h
Max Filippov16e7caa2011-09-06 03:55:56 +04001923
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001924Devices
1925-------
Philippe Mathieu-Daudéa8f4aee2021-08-16 21:10:12 +02001926Overall Audio frontends
1927M: Gerd Hoffmann <kraxel@redhat.com>
1928S: Odd Fixes
1929F: hw/audio/
1930F: include/hw/audio/
1931F: tests/qtest/ac97-test.c
1932F: tests/qtest/es1370-test.c
1933F: tests/qtest/intel-hda-test.c
1934F: tests/qtest/fuzz-sb16-test.c
1935
Vikram Garhwald36d7112020-11-18 11:48:46 -08001936Xilinx CAN
Vikram Garhwal32bd99d2022-11-14 15:10:57 +00001937M: Vikram Garhwal <vikram.garhwal@amd.com>
1938M: Francisco Iglesias <francisco.iglesias@amd.com>
Vikram Garhwald36d7112020-11-18 11:48:46 -08001939S: Maintained
1940F: hw/net/can/xlnx-*
1941F: include/hw/net/xlnx-*
Vikram Garhwal1d2a6022023-06-06 10:19:31 +01001942F: tests/qtest/xlnx-can*-test*
Vikram Garhwald36d7112020-11-18 11:48:46 -08001943
Jiri Slabyb30934c2015-01-21 17:48:33 +01001944EDU
1945M: Jiri Slaby <jslaby@suse.cz>
1946S: Maintained
1947F: hw/misc/edu.c
Peter Maydell4df3f192023-09-27 16:11:59 +01001948F: docs/specs/edu.rst
Jiri Slabyb30934c2015-01-21 17:48:33 +01001949
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001950IDE
John Snowc0953482015-03-04 23:37:55 -05001951M: John Snow <jsnow@redhat.com>
1952L: qemu-block@nongnu.org
John Snow1b0477a2023-02-06 13:25:44 -05001953S: Odd Fixes
Thomas Huthc9f7acd2016-09-23 18:09:56 +02001954F: include/hw/ide/
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001955F: hw/ide/
John Snowc0953482015-03-04 23:37:55 -05001956F: hw/block/block.c
1957F: hw/block/cdrom.c
1958F: hw/block/hd-geometry.c
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02001959F: tests/qtest/ide-test.c
1960F: tests/qtest/ahci-test.c
1961F: tests/qtest/cdrom-test.c
Thomas Huth1cf43232019-09-10 16:41:20 +02001962F: tests/qtest/libqos/ahci*
John Snow77582e22020-10-01 12:24:01 -04001963T: git https://gitlab.com/jsnow/qemu.git ide
John Snowc0953482015-03-04 23:37:55 -05001964
Corey Minyardcaf316b2017-12-07 14:55:31 -06001965IPMI
1966M: Corey Minyard <minyard@acm.org>
1967S: Maintained
1968F: include/hw/ipmi/*
1969F: hw/ipmi/*
1970F: hw/smbios/smbios_type_38.c
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02001971F: tests/qtest/ipmi*
Stefan Hajnoczie18a8b32018-11-08 11:15:26 +00001972T: git https://github.com/cminyard/qemu.git master-ipmi-rebase
Corey Minyardcaf316b2017-12-07 14:55:31 -06001973
John Snowc0953482015-03-04 23:37:55 -05001974Floppy
1975M: John Snow <jsnow@redhat.com>
1976L: qemu-block@nongnu.org
John Snow1b0477a2023-02-06 13:25:44 -05001977S: Odd Fixes
John Snowc0953482015-03-04 23:37:55 -05001978F: hw/block/fdc.c
Philippe Mathieu-Daudé5a5d2f32021-06-14 21:32:17 +02001979F: hw/block/fdc-internal.h
Philippe Mathieu-Daudé72ea60e2021-06-14 21:32:18 +02001980F: hw/block/fdc-isa.c
Philippe Mathieu-Daudé14307592021-06-14 21:32:19 +02001981F: hw/block/fdc-sysbus.c
John Snowc0953482015-03-04 23:37:55 -05001982F: include/hw/block/fdc.h
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02001983F: tests/qtest/fdc-test.c
John Snow77582e22020-10-01 12:24:01 -04001984T: git https://gitlab.com/jsnow/qemu.git ide
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001985
Maciej S. Szmigieroee344762021-11-20 19:41:58 +01001986Hyper-V VMBus
1987M: Maciej S. Szmigiero <maciej.szmigiero@oracle.com>
1988S: Odd Fixes
1989F: hw/hyperv/vmbus.c
1990F: include/hw/hyperv/vmbus*.h
1991
Peter Maydellf5f487b2011-09-17 17:26:15 +01001992OMAP
1993M: Peter Maydell <peter.maydell@linaro.org>
Philippe Mathieu-Daudé8ef350b2020-01-20 19:59:27 +01001994L: qemu-arm@nongnu.org
Peter Maydellf5f487b2011-09-17 17:26:15 +01001995S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01001996F: hw/*/omap*
Thomas Huthed0db862016-02-25 12:22:04 +01001997F: include/hw/arm/omap.h
Philippe Mathieu-Daudé66278f82020-11-20 16:45:45 +01001998F: docs/system/arm/sx1.rst
Peter Maydellf5f487b2011-09-17 17:26:15 +01001999
Paolo Bonzini28d54e52015-09-22 11:37:27 +02002000IPack
2001M: Alberto Garcia <berto@igalia.com>
2002S: Odd Fixes
2003F: hw/char/ipoctal232.c
2004F: hw/ipack/
2005
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002006PCI
2007M: Michael S. Tsirkin <mst@redhat.com>
Marcel Apfelbaumfe355cb2018-04-26 11:45:23 +03002008M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002009S: Supported
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01002010F: include/hw/pci/*
Paolo Bonzinif178bc62015-09-22 11:56:48 +02002011F: hw/misc/pci-testdev.c
Michael S. Tsirkinca818cf2012-12-12 15:11:55 +02002012F: hw/pci/*
Paolo Bonzinif178bc62015-09-22 11:56:48 +02002013F: hw/pci-bridge/*
Philippe Mathieu-Daudé61c7f982020-09-13 21:53:48 +02002014F: qapi/pci.json
Philippe Mathieu-Daudé68179922017-09-08 14:36:25 -03002015F: docs/pci*
2016F: docs/specs/*pci*
Michael S. Tsirkin0e0b3592015-06-23 08:09:34 +02002017
Huai-Cheng Kuo5fb52f62022-10-14 16:10:41 +01002018PCIE DOE
2019M: Huai-Cheng Kuo <hchkuo@avery-design.com.tw>
2020M: Chris Browy <cbrowy@avery-design.com>
2021S: Supported
2022F: include/hw/pci/pcie_doe.h
2023F: hw/pci/pcie_doe.c
2024
Michael S. Tsirkind31e5ae2015-08-12 12:17:36 +03002025ACPI/SMBIOS
Michael S. Tsirkin0e0b3592015-06-23 08:09:34 +02002026M: Michael S. Tsirkin <mst@redhat.com>
2027M: Igor Mammedov <imammedo@redhat.com>
Ani Sinha104593c2023-03-29 09:38:34 +05302028R: Ani Sinha <anisinha@redhat.com>
Michael S. Tsirkin0e0b3592015-06-23 08:09:34 +02002029S: Supported
2030F: include/hw/acpi/*
Philippe Mathieu-Daudéa2eb5c02018-12-11 17:34:06 +01002031F: include/hw/firmware/smbios.h
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01002032F: hw/acpi/*
Michael S. Tsirkind31e5ae2015-08-12 12:17:36 +03002033F: hw/smbios/*
Michael S. Tsirkin0e0b3592015-06-23 08:09:34 +02002034F: hw/i386/acpi-build.[hc]
Michael S. Tsirkin0e0b3592015-06-23 08:09:34 +02002035F: hw/arm/virt-acpi-build.c
Philippe Mathieu-Daudé27c91882020-09-13 21:53:47 +02002036F: qapi/acpi.json
Thomas Huthb963ea12020-06-07 07:20:22 +02002037F: tests/qtest/bios-tables-test*
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02002038F: tests/qtest/acpi-utils.[hc]
Philippe Mathieu-Daudéfaae23b2018-11-25 21:49:36 +01002039F: tests/data/acpi/
Peter Maydellfcc6f732021-07-27 18:04:14 +01002040F: docs/specs/acpi_cpu_hotplug.rst
2041F: docs/specs/acpi_mem_hotplug.rst
David Hildenbrand2fcd0052022-06-17 14:31:51 +02002042F: docs/specs/acpi_nvdimm.rst
Peter Maydellfcc6f732021-07-27 18:04:14 +01002043F: docs/specs/acpi_pci_hotplug.rst
2044F: docs/specs/acpi_hw_reduced_hotplug.rst
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002045
Sunil V L47fc3402023-03-02 14:42:12 +05302046ARM ACPI Subsystem
2047M: Shannon Zhao <shannon.zhaosl@gmail.com>
2048L: qemu-arm@nongnu.org
2049S: Maintained
2050F: hw/arm/virt-acpi-build.c
2051
2052RISC-V ACPI Subsystem
2053M: Sunil V L <sunilvl@ventanamicro.com>
2054L: qemu-riscv@nongnu.org
2055S: Maintained
2056F: hw/riscv/virt-acpi-build.c
2057
Ani Sinhad1355362021-12-13 10:29:24 +05302058ACPI/VIOT
2059M: Jean-Philippe Brucker <jean-philippe@linaro.org>
Ani Sinhad1355362021-12-13 10:29:24 +05302060S: Supported
2061F: hw/acpi/viot.c
2062F: hw/acpi/viot.h
2063
Ani Sinha76f831d2022-10-21 15:21:08 +05302064ACPI/AVOCADO/BIOSBITS
Ani Sinha607a0792023-03-20 17:12:33 +05302065M: Ani Sinha <anisinha@redhat.com>
Ani Sinha242a58c2022-11-11 20:41:38 +05302066M: Michael S. Tsirkin <mst@redhat.com>
Ani Sinha76f831d2022-10-21 15:21:08 +05302067S: Supported
2068F: tests/avocado/acpi-bits/*
2069F: tests/avocado/acpi-bits.py
2070F: docs/devel/acpi-bits.rst
2071
Dongjiu Gengf7e462f2020-05-12 11:06:09 +08002072ACPI/HEST/GHES
Dongjiu Gengd6eed462021-03-11 19:29:04 +08002073R: Dongjiu Geng <gengdongjiu1@gmail.com>
Dongjiu Gengf7e462f2020-05-12 11:06:09 +08002074L: qemu-arm@nongnu.org
2075S: Maintained
2076F: hw/acpi/ghes.c
2077F: include/hw/acpi/ghes.h
2078F: docs/specs/acpi_hest_ghes.rst
2079
Andreas Färberaaade8d2012-08-22 05:48:47 +00002080ppc4xx
Andreas Färberaaade8d2012-08-22 05:48:47 +00002081L: qemu-ppc@nongnu.org
David Gibson0f514ee2021-09-21 13:02:17 +10002082S: Orphan
Cédric Le Goatere20dbe52023-10-02 17:51:38 +02002083F: hw/ppc/ppc4xx*.c
2084F: hw/ppc/ppc440_uc.c
2085F: hw/ppc/ppc440.h
Philippe Mathieu-Daudéaa3a41f2017-10-17 13:43:45 -03002086F: hw/i2c/ppc4xx_i2c.c
Philippe Mathieu-Daudé4d641f32023-10-11 06:56:51 +02002087F: include/hw/pci-host/ppc4xx.h
Thomas Huthb5d55022016-09-05 22:03:36 +02002088F: include/hw/ppc/ppc4xx.h
Philippe Mathieu-Daudéaa3a41f2017-10-17 13:43:45 -03002089F: include/hw/i2c/ppc4xx_i2c.h
Peter Maydell34d08312020-12-12 00:15:31 +00002090F: hw/intc/ppc-uic.c
2091F: include/hw/intc/ppc-uic.h
Andreas Färberaaade8d2012-08-22 05:48:47 +00002092
Paolo Bonzini61af0ee2015-09-22 11:40:00 +02002093Character devices
Paolo Bonzini2185fd62018-10-19 14:25:42 +02002094M: Marc-André Lureau <marcandre.lureau@redhat.com>
2095R: Paolo Bonzini <pbonzini@redhat.com>
Paolo Bonzini61af0ee2015-09-22 11:40:00 +02002096S: Odd Fixes
2097F: hw/char/
Thomas Huth63fc0722023-09-29 14:44:39 +02002098F: include/hw/char/
Paolo Bonzini61af0ee2015-09-22 11:40:00 +02002099
Paolo Bonzinif536f112015-09-22 11:40:00 +02002100Network devices
2101M: Jason Wang <jasowang@redhat.com>
2102S: Odd Fixes
2103F: hw/net/
Philippe Mathieu-Daudé6061b5c2017-10-17 13:43:52 -03002104F: include/hw/net/
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02002105F: tests/qtest/virtio-net-test.c
Jens Freimann9711cd02019-10-29 12:49:04 +01002106F: docs/virtio-net-failover.rst
Stefan Hajnoczie18a8b32018-11-08 11:15:26 +00002107T: git https://github.com/jasowang/qemu.git net
Paolo Bonzinif536f112015-09-22 11:40:00 +02002108
Philippe Mathieu-Daudée0c9d0c2019-05-06 00:47:37 +02002109Parallel NOR Flash devices
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02002110M: Philippe Mathieu-Daudé <philmd@linaro.org>
Philippe Mathieu-Daudée0c9d0c2019-05-06 00:47:37 +02002111T: git https://gitlab.com/philmd/qemu.git pflash-next
2112S: Maintained
2113F: hw/block/pflash_cfi*.c
2114F: include/hw/block/flash.h
2115
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002116SCSI
Paolo Bonzinide7724f2012-02-22 15:59:52 +01002117M: Paolo Bonzini <pbonzini@redhat.com>
Fam Zhengfe5ca462018-11-21 23:30:36 +08002118R: Fam Zheng <fam@euphon.net>
Paolo Bonzinide7724f2012-02-22 15:59:52 +01002119S: Supported
Thomas Huth74460f32016-09-05 22:11:41 +02002120F: include/hw/scsi/*
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01002121F: hw/scsi/*
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02002122F: tests/qtest/virtio-scsi-test.c
Philippe Mathieu-Daudéb43957d2021-01-26 12:16:38 +01002123F: tests/qtest/fuzz-virtio-scsi-test.c
Mark Cave-Aylandce94fa72021-04-07 20:58:01 +01002124F: tests/qtest/am53c974-test.c
Philippe Mathieu-Daudéaa629762021-11-23 12:17:32 +01002125F: tests/qtest/fuzz-lsi53c895a-test.c
Stefan Hajnoczie18a8b32018-11-08 11:15:26 +00002126T: git https://github.com/bonzini/qemu.git scsi-next
Paolo Bonzinide7724f2012-02-22 15:59:52 +01002127
Peter A. G. Crosthwaitefcb56292012-08-06 11:38:19 +10002128SSI
Alistair Francisc22e5802018-03-01 11:05:58 +00002129M: Alistair Francis <alistair@alistair23.me>
Peter A. G. Crosthwaitefcb56292012-08-06 11:38:19 +10002130S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01002131F: hw/ssi/*
Cédric Le Goater2389bcc2022-10-24 11:20:15 +02002132F: hw/block/m25p80*
Philippe Mathieu-Daudé982d0092017-09-08 14:36:26 -03002133F: include/hw/ssi/ssi.h
Alistair Francis4b46ba62015-08-25 15:45:06 +01002134X: hw/ssi/xilinx_*
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02002135F: tests/qtest/m25p80-test.c
Alistair Francis4b46ba62015-08-25 15:45:06 +01002136
2137Xilinx SPI
Alistair Francisc22e5802018-03-01 11:05:58 +00002138M: Alistair Francis <alistair@alistair23.me>
Alistair Francis4b46ba62015-08-25 15:45:06 +01002139S: Maintained
2140F: hw/ssi/xilinx_*
Peter A. G. Crosthwaitefcb56292012-08-06 11:38:19 +10002141
Philippe Mathieu-Daudé076a0fc2018-03-09 17:09:45 +00002142SD (Secure Card)
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02002143M: Philippe Mathieu-Daudé <philmd@linaro.org>
Bin Meng8372c3a2024-05-05 15:23:12 +08002144M: Bin Meng <bmeng.cn@gmail.com>
Philippe Mathieu-Daudéba412472020-06-05 06:56:38 +02002145L: qemu-block@nongnu.org
Philippe Mathieu-Daudé076a0fc2018-03-09 17:09:45 +00002146S: Odd Fixes
2147F: include/hw/sd/sd*
2148F: hw/sd/core.c
2149F: hw/sd/sd*
Philippe Mathieu-Daudé1232ed12019-10-12 08:54:24 +02002150F: hw/sd/ssi-sd.c
Philippe Mathieu-Daudé59b63d72021-06-29 10:09:28 +02002151F: tests/qtest/fuzz-sdcard-test.c
2152F: tests/qtest/sdhci-test.c
Philippe Mathieu-Daudé076a0fc2018-03-09 17:09:45 +00002153
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002154USB
Gerd Hoffmann21d61b32024-05-16 14:03:39 +02002155S: Orphan
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01002156F: hw/usb/*
Philippe Mathieu-Daudé9c3c8342021-04-25 00:41:10 +02002157F: stubs/usb-dev-stub.c
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02002158F: tests/qtest/usb-*-test.c
Peter Maydell2a49e4e2021-07-28 15:14:54 +01002159F: docs/system/devices/usb.rst
Thomas Huthbeded0f2016-02-25 10:36:05 +01002160F: include/hw/usb.h
2161F: include/hw/usb/
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002162
Paolo Bonzinie26082f2014-10-22 14:53:32 +02002163USB (serial adapter)
Paolo Bonzinie26082f2014-10-22 14:53:32 +02002164M: Samuel Thibault <samuel.thibault@ens-lyon.org>
2165S: Maintained
2166F: hw/usb/dev-serial.c
2167
Alex Williamson92e1fb52012-09-26 11:19:39 -06002168VFIO
2169M: Alex Williamson <alex.williamson@redhat.com>
Alex Williamson2696da62023-06-28 11:29:32 -06002170M: Cédric Le Goater <clg@redhat.com>
Alex Williamson92e1fb52012-09-26 11:19:39 -06002171S: Supported
Kim Phillipscf7087d2014-12-19 15:24:06 -07002172F: hw/vfio/*
Thomas Huth99b88c62016-03-10 09:39:09 -07002173F: include/hw/vfio/
Philippe Mathieu-Daudé4e779bf2021-02-02 16:56:11 +01002174F: docs/igd-assign.txt
Avihai Horon8e0b21e2024-04-07 11:11:25 +03002175F: docs/devel/migration/vfio.rst
Avihai Horona0359b52024-05-15 16:21:35 +03002176F: qapi/vfio.json
Alex Williamson92e1fb52012-09-26 11:19:39 -06002177
Dong Jia Shi5eb74552017-05-17 02:48:13 +02002178vfio-ccw
Christian Borntraeger79139382018-10-29 16:42:22 +01002179M: Eric Farman <farman@linux.ibm.com>
Matthew Rosato074c84b2021-03-25 09:55:09 -04002180M: Matthew Rosato <mjrosato@linux.ibm.com>
Dong Jia Shi5eb74552017-05-17 02:48:13 +02002181S: Supported
2182F: hw/vfio/ccw.c
2183F: hw/s390x/s390-ccw.c
2184F: include/hw/s390x/s390-ccw.h
Jason J. Herne44445d82019-04-04 10:34:20 -04002185F: include/hw/s390x/vfio-ccw.h
Cornelia Huck146bd282017-10-05 17:05:23 +02002186L: qemu-s390x@nongnu.org
Dong Jia Shi5eb74552017-05-17 02:48:13 +02002187
Tony Krowiaka51b3152018-10-10 13:03:06 -04002188vfio-ap
Tony Krowiaka51b3152018-10-10 13:03:06 -04002189M: Tony Krowiak <akrowiak@linux.ibm.com>
2190M: Halil Pasic <pasic@linux.ibm.com>
Matthew Rosato074c84b2021-03-25 09:55:09 -04002191M: Jason Herne <jjherne@linux.ibm.com>
Tony Krowiaka51b3152018-10-10 13:03:06 -04002192S: Supported
2193F: hw/s390x/ap-device.c
2194F: hw/s390x/ap-bridge.c
2195F: include/hw/s390x/ap-device.h
2196F: include/hw/s390x/ap-bridge.h
Tony Krowiak2fe29422018-10-10 13:03:07 -04002197F: hw/vfio/ap.c
Cornelia Huckf58f0842020-03-18 11:39:40 +01002198F: docs/system/s390x/vfio-ap.rst
Tony Krowiaka51b3152018-10-10 13:03:06 -04002199L: qemu-s390x@nongnu.org
2200
Eric Auger6e6d8ac2023-11-21 16:44:00 +08002201iommufd
2202M: Yi Liu <yi.l.liu@intel.com>
2203M: Eric Auger <eric.auger@redhat.com>
2204M: Zhenzhong Duan <zhenzhong.duan@intel.com>
2205S: Supported
2206F: backends/iommufd.c
2207F: include/sysemu/iommufd.h
Zhenzhong Duan1f94b212024-06-05 16:30:27 +08002208F: backends/host_iommu_device.c
2209F: include/sysemu/host_iommu_device.h
Yi Liud6b5c4c2023-11-21 16:44:01 +08002210F: include/qemu/chardev_open.h
2211F: util/chardev_open.c
Zhenzhong Duan98dad2b2023-11-21 16:44:26 +08002212F: docs/devel/vfio-iommufd.rst
Eric Auger6e6d8ac2023-11-21 16:44:00 +08002213
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002214vhost
2215M: Michael S. Tsirkin <mst@redhat.com>
Stefano Garzarella7967b7e2024-07-04 10:13:36 +02002216R: Stefano Garzarella <sgarzare@redhat.com>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002217S: Supported
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01002218F: hw/*/*vhost*
Marc-André Lureau482580a2019-03-08 15:04:44 +01002219F: docs/interop/vhost-user.json
Marc-André Lureaued1be662019-03-15 19:07:35 +01002220F: docs/interop/vhost-user.rst
Philippe Mathieu-Daudé72c1e862018-11-25 21:49:49 +01002221F: contrib/vhost-user-*/
Marc-André Lureauf24bb722019-05-03 15:00:31 +02002222F: backends/vhost-user.c
2223F: include/sysemu/vhost-user-backend.h
Stefan Weil viaec09f222022-11-26 16:25:06 +01002224F: subprojects/libvhost-user/
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002225
Eugenio Pérez2b6fc0b2023-03-31 17:04:10 +02002226vhost-shadow-virtqueue
2227R: Eugenio Pérez <eperezma@redhat.com>
2228F: hw/virtio/vhost-shadow-virtqueue.*
2229
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002230virtio
Michael S. Tsirkina75143e2014-01-26 12:39:55 +02002231M: Michael S. Tsirkin <mst@redhat.com>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002232S: Supported
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01002233F: hw/*/virtio*
Thomas Huth72fa6052016-09-23 18:11:21 +02002234F: hw/virtio/Makefile.objs
2235F: hw/virtio/trace-events
Markus Armbruster3b311252022-10-20 14:04:58 +02002236F: qapi/virtio.json
Michael S. Tsirkin6a084ea2015-06-15 16:20:21 +02002237F: net/vhost-user.c
Thomas Huth494f7b52016-02-25 11:13:03 +01002238F: include/hw/virtio/
Thomas Huth4db546d2022-12-12 18:48:41 +01002239F: docs/devel/virtio*
Avihai Horon8e0b21e2024-04-07 11:11:25 +03002240F: docs/devel/migration/virtio.rst
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002241
David Hildenbrand6d7b25a2020-03-12 14:37:25 +01002242virtio-balloon
2243M: Michael S. Tsirkin <mst@redhat.com>
2244M: David Hildenbrand <david@redhat.com>
2245S: Maintained
Thomas Huth14dc58e2022-01-05 12:52:45 +01002246F: docs/interop/virtio-balloon-stats.rst
David Hildenbrand6d7b25a2020-03-12 14:37:25 +01002247F: hw/virtio/virtio-balloon*.c
2248F: include/hw/virtio/virtio-balloon.h
Philippe Mathieu-Daudé8d7f2e72023-10-04 11:06:28 +02002249F: system/balloon.c
David Hildenbrand6d7b25a2020-03-12 14:37:25 +01002250F: include/sysemu/balloon.h
2251
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002252virtio-9p
Greg Kurz8c1cd712016-06-17 16:35:05 +02002253M: Greg Kurz <groug@kaod.org>
Christian Schoenebeck233982a2020-05-14 08:06:43 +02002254M: Christian Schoenebeck <qemu_oss@crudebyte.com>
Christian Schoenebeck3548fa02023-07-03 16:34:17 +02002255S: Maintained
Christian Schoenebeck6f569082021-05-06 15:12:23 +02002256W: https://wiki.qemu.org/Documentation/9p
Andreas Färberaebeca22012-04-13 17:19:12 +02002257F: hw/9pfs/
Greg Kurzb8278912019-05-29 12:24:44 +02002258X: hw/9pfs/xen-9p*
Christian Schoenebeck71d72ec2023-06-26 13:49:06 +02002259X: hw/9pfs/9p-proxy*
Andreas Färberaebeca22012-04-13 17:19:12 +02002260F: fsdev/
Christian Schoenebeck71d72ec2023-06-26 13:49:06 +02002261X: fsdev/virtfs-proxy-helper.c
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02002262F: tests/qtest/virtio-9p-test.c
Christian Schoenebeck818e42f2022-11-28 18:12:04 +01002263F: tests/qtest/libqos/virtio-9p*
Greg Kurz1a001952021-01-15 14:42:24 +01002264T: git https://gitlab.com/gkurz/qemu.git 9p-next
Christian Schoenebeck90225f92021-01-30 15:39:14 +01002265T: git https://github.com/cschoenebeck/qemu.git 9p.next
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002266
Christian Schoenebeck71d72ec2023-06-26 13:49:06 +02002267virtio-9p-proxy
2268F: hw/9pfs/9p-proxy*
2269F: fsdev/virtfs-proxy-helper.c
2270F: docs/tools/virtfs-proxy-helper.rst
2271S: Obsolete
2272
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002273virtio-blk
Stefan Hajnoczi54d01a02012-11-09 14:29:03 +01002274M: Stefan Hajnoczi <stefanha@redhat.com>
Stefan Hajnoczib457a5f2015-04-29 15:13:25 +01002275L: qemu-block@nongnu.org
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002276S: Supported
Daniil Tatianind9cf55a2022-09-06 10:31:08 +03002277F: hw/block/virtio-blk-common.c
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01002278F: hw/block/virtio-blk.c
Stefan Hajnoczib457a5f2015-04-29 15:13:25 +01002279F: hw/block/dataplane/*
Daniil Tatianind9cf55a2022-09-06 10:31:08 +03002280F: include/hw/virtio/virtio-blk-common.h
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02002281F: tests/qtest/virtio-blk-test.c
Stefan Hajnoczie18a8b32018-11-08 11:15:26 +00002282T: git https://github.com/stefanha/qemu.git block
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002283
Cornelia Huckdd4ad642013-03-05 02:22:01 +00002284virtio-ccw
Cornelia Huckc1976ae2017-07-04 11:22:15 +02002285M: Cornelia Huck <cohuck@redhat.com>
Christian Borntraeger68b91e82018-10-29 16:42:23 +01002286M: Halil Pasic <pasic@linux.ibm.com>
Eric Farman6a6d3df2022-01-12 17:40:44 +01002287M: Eric Farman <farman@linux.ibm.com>
Cornelia Huckdd4ad642013-03-05 02:22:01 +00002288S: Supported
Thomas Huth901f5f12018-07-25 14:20:16 +02002289F: hw/s390x/virtio-ccw*.[hc]
Eric Farman117d7942022-05-25 16:58:14 +02002290F: hw/s390x/vhost-*-ccw.c
Cornelia Huck99eaf132020-12-14 14:26:28 +01002291T: git https://gitlab.com/cohuck/qemu.git s390-next
Stefan Hajnoczie18a8b32018-11-08 11:15:26 +00002292T: git https://github.com/borntraeger/qemu.git s390-next
Cornelia Huck146bd282017-10-05 17:05:23 +02002293L: qemu-s390x@nongnu.org
Cornelia Huckdd4ad642013-03-05 02:22:01 +00002294
Albert Estevefaefdba2023-10-02 08:57:04 +02002295virtio-dmabuf
2296M: Albert Esteve <aesteve@redhat.com>
2297S: Supported
2298F: hw/display/virtio-dmabuf.c
2299F: include/hw/virtio/virtio-dmabuf.h
2300F: tests/unit/test-virtio-dmabuf.c
2301
Dr. David Alan Gilbertbad7d2c32019-10-21 11:41:36 +01002302virtiofs
Dr. David Alan Gilbertbad7d2c32019-10-21 11:41:36 +01002303M: Stefan Hajnoczi <stefanha@redhat.com>
2304S: Supported
Dr. David Alan Gilbertbad7d2c32019-10-21 11:41:36 +01002305F: hw/virtio/vhost-user-fs*
2306F: include/hw/virtio/vhost-user-fs.h
Stefan Hajnoczic96c1162023-11-11 08:49:20 +08002307L: virtio-fs@lists.linux.dev
Dr. David Alan Gilbertbad7d2c32019-10-21 11:41:36 +01002308
Gerd Hoffmanna5d4d7b2015-06-19 10:25:34 +02002309virtio-input
2310M: Gerd Hoffmann <kraxel@redhat.com>
Gerd Hoffmann1e2edb92021-08-10 10:34:49 +02002311S: Odd Fixes
Leo Yan887d5772024-01-04 21:09:43 +00002312F: docs/system/devices/vhost-user-input.rst
Gerd Hoffmanna5d4d7b2015-06-19 10:25:34 +02002313F: hw/input/virtio-input*.c
Leo Yan87c7fb72024-01-04 21:09:44 +00002314F: hw/virtio/vhost-user-input.c
Gerd Hoffmanna5d4d7b2015-06-19 10:25:34 +02002315F: include/hw/virtio/virtio-input.h
Marc-André Lureau06914c92019-05-14 12:41:26 +02002316F: contrib/vhost-user-input/*
Gerd Hoffmanna5d4d7b2015-06-19 10:25:34 +02002317
Eric Augerc1dee912020-02-14 14:27:45 +01002318virtio-iommu
2319M: Eric Auger <eric.auger@redhat.com>
2320S: Maintained
2321F: hw/virtio/virtio-iommu*.c
2322F: include/hw/virtio/virtio-iommu.h
2323
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002324virtio-serial
Laurent Vivier2501db72019-09-10 16:03:50 +02002325M: Laurent Vivier <lvivier@redhat.com>
2326R: Amit Shah <amit@kernel.org>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002327S: Supported
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01002328F: hw/char/virtio-serial-bus.c
2329F: hw/char/virtio-console.c
Amit Shah68a5e382014-11-18 18:01:27 +05302330F: include/hw/virtio/virtio-serial.h
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02002331F: tests/qtest/virtio-serial-test.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002332
Amit Shah1f51a5c2014-11-18 18:01:26 +05302333virtio-rng
Laurent Vivier2501db72019-09-10 16:03:50 +02002334M: Laurent Vivier <lvivier@redhat.com>
2335R: Amit Shah <amit@kernel.org>
Amit Shah1f51a5c2014-11-18 18:01:26 +05302336S: Supported
2337F: hw/virtio/virtio-rng.c
2338F: include/hw/virtio/virtio-rng.h
Thomas Huth750cf862016-02-25 13:44:20 +01002339F: include/sysemu/rng*.h
Amit Shah1f51a5c2014-11-18 18:01:26 +05302340F: backends/rng*.c
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02002341F: tests/qtest/virtio-rng-test.c
Amit Shah1f51a5c2014-11-18 18:01:26 +05302342
Alex Bennée62759892024-01-04 21:09:35 +00002343vhost-user-stubs
2344M: Alex Bennée <alex.bennee@linaro.org>
2345S: Maintained
2346F: hw/virtio/vhost-user-base.c
2347F: hw/virtio/vhost-user-device*
2348
Mathieu Poiriere3e01462021-06-14 14:28:42 -06002349vhost-user-rng
2350M: Mathieu Poirier <mathieu.poirier@linaro.org>
2351S: Supported
Thomas Huth4db546d2022-12-12 18:48:41 +01002352F: docs/system/devices/vhost-user-rng.rst
Mathieu Poiriere3e01462021-06-14 14:28:42 -06002353F: hw/virtio/vhost-user-rng.c
2354F: hw/virtio/vhost-user-rng-pci.c
2355F: include/hw/virtio/vhost-user-rng.h
2356F: tools/vhost-user-rng/*
2357
Viresh Kumar27ba7b02022-08-02 10:50:00 +01002358vhost-user-gpio
2359M: Alex Bennée <alex.bennee@linaro.org>
2360R: Viresh Kumar <viresh.kumar@linaro.org>
2361S: Maintained
Viresh Kumar25c60a42022-08-02 10:50:01 +01002362F: hw/virtio/vhost-user-gpio*
Viresh Kumar27ba7b02022-08-02 10:50:00 +01002363F: include/hw/virtio/vhost-user-gpio.h
Alex Bennée8fcfc822022-08-02 10:50:10 +01002364F: tests/qtest/libqos/virtio-gpio.*
Viresh Kumar27ba7b02022-08-02 10:50:00 +01002365
Manos Pitsidianakis4ae0fc12024-01-04 21:09:40 +00002366vhost-user-snd
2367M: Alex Bennée <alex.bennee@linaro.org>
2368R: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
2369S: Maintained
2370F: hw/virtio/vhost-user-snd*
2371F: include/hw/virtio/vhost-user-snd.h
2372
Milan Zamazala5dab092023-06-28 12:05:22 +02002373vhost-user-scmi
2374R: mzamazal@redhat.com
2375S: Supported
2376F: hw/virtio/vhost-user-scmi*
2377F: include/hw/virtio/vhost-user-scmi.h
Milan Zamazalb6f53ae2023-06-28 12:05:24 +02002378F: tests/qtest/libqos/virtio-scmi.*
Milan Zamazala5dab092023-06-28 12:05:22 +02002379
Gonglei60340112016-10-28 16:33:31 +08002380virtio-crypto
2381M: Gonglei <arei.gonglei@huawei.com>
2382S: Supported
2383F: hw/virtio/virtio-crypto.c
2384F: hw/virtio/virtio-crypto-pci.c
2385F: include/hw/virtio/virtio-crypto.h
2386
David Hildenbrand18129c12023-07-11 17:34:39 +02002387virtio based memory device
2388M: David Hildenbrand <david@redhat.com>
2389S: Supported
2390F: hw/virtio/virtio-md-pci.c
2391F: include/hw/virtio/virtio-md-pci.h
David Hildenbranddbdf8412023-07-11 17:34:40 +02002392F: stubs/virtio-md-pci.c
David Hildenbrand18129c12023-07-11 17:34:39 +02002393
David Hildenbrand751c7bd2020-06-26 09:22:39 +02002394virtio-mem
2395M: David Hildenbrand <david@redhat.com>
2396S: Supported
2397W: https://virtio-mem.gitlab.io/
2398F: hw/virtio/virtio-mem.c
2399F: hw/virtio/virtio-mem-pci.h
2400F: hw/virtio/virtio-mem-pci.c
2401F: include/hw/virtio/virtio-mem.h
2402
Manos Pitsidianakis2880e672023-10-23 15:03:18 +03002403virtio-snd
2404M: Gerd Hoffmann <kraxel@redhat.com>
2405R: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
2406S: Supported
2407F: hw/audio/virtio-snd.c
Manos Pitsidianakis24269082023-10-23 15:03:19 +03002408F: hw/audio/virtio-snd-pci.c
Manos Pitsidianakis2880e672023-10-23 15:03:18 +03002409F: include/hw/audio/virtio-snd.h
Manos Pitsidianakisf54fea12023-10-23 15:03:28 +03002410F: docs/system/devices/virtio-snd.rst
Manos Pitsidianakis2880e672023-10-23 15:03:18 +03002411
Keith Buschf3c507a2013-06-04 09:17:10 -06002412nvme
Philippe Mathieu-Daudé8261cc12020-04-21 14:22:36 +02002413M: Keith Busch <kbusch@kernel.org>
Keith Busche8cc43d2020-07-06 11:29:22 -07002414M: Klaus Jensen <its@irrelevant.dk>
Klaus Jensen00d7dff2024-02-08 13:54:20 +01002415R: Jesper Devantier <foss@defmacro.it>
Kevin Wolfc95e4c02015-04-30 15:15:13 +02002416L: qemu-block@nongnu.org
Keith Buschf3c507a2013-06-04 09:17:10 -06002417S: Supported
Klaus Jensen88eea452021-04-14 22:14:30 +02002418F: hw/nvme/*
Philippe Mathieu-Daudédc0b4d92020-07-01 16:06:34 +02002419F: include/block/nvme.h
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02002420F: tests/qtest/nvme-test.c
Thomas Huth4db546d2022-12-12 18:48:41 +01002421F: docs/system/devices/nvme.rst
Keith Busche8cc43d2020-07-06 11:29:22 -07002422T: git git://git.infradead.org/qemu-nvme.git nvme-next
Keith Buschf3c507a2013-06-04 09:17:10 -06002423
Jeuk Kimbc4e68d2023-09-06 16:43:48 +09002424ufs
2425M: Jeuk Kim <jeuk20.kim@samsung.com>
2426S: Supported
2427F: hw/ufs/*
2428F: include/block/ufs.h
Jeuk Kim631c8722023-09-06 16:43:51 +09002429F: tests/qtest/ufs-test.c
Jeuk Kimbc4e68d2023-09-06 16:43:48 +09002430
Hannes Reinecked383c622014-04-16 16:44:19 +02002431megasas
Philippe Mathieu-Daudé3fdfb8b2017-09-10 14:15:57 -03002432M: Hannes Reinecke <hare@suse.com>
Kevin Wolfc95e4c02015-04-30 15:15:13 +02002433L: qemu-block@nongnu.org
Hannes Reinecked383c622014-04-16 16:44:19 +02002434S: Supported
2435F: hw/scsi/megasas.c
2436F: hw/scsi/mfi.h
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02002437F: tests/qtest/megasas-test.c
Philippe Mathieu-Daudéc887d332021-01-26 12:16:37 +01002438F: tests/qtest/fuzz-megasas-test.c
Hannes Reinecked383c622014-04-16 16:44:19 +02002439
Dmitry Fleytman605d52e2016-06-01 11:23:39 +03002440Network packet abstractions
Philippe Mathieu-Daudébf4835a2018-01-08 15:34:06 -03002441M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
Akihiko Odakic8110e72023-05-23 11:43:38 +09002442R: Akihiko Odaki <akihiko.odaki@daynix.com>
Dmitry Fleytman605d52e2016-06-01 11:23:39 +03002443S: Maintained
2444F: include/net/eth.h
2445F: net/eth.c
2446F: hw/net/net_rx_pkt*
2447F: hw/net/net_tx_pkt*
2448
Dmitry Fleytman622fb502014-08-27 08:58:43 +03002449Vmware
Philippe Mathieu-Daudébf4835a2018-01-08 15:34:06 -03002450M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
Dmitry Fleytman622fb502014-08-27 08:58:43 +03002451S: Maintained
Thomas Huth6c493722023-11-07 11:27:38 +01002452F: docs/specs/vmw_pvscsi-spec.txt
2453F: hw/display/vmware_vga.c
Dmitry Fleytman622fb502014-08-27 08:58:43 +03002454F: hw/net/vmxnet*
2455F: hw/scsi/vmw_pvscsi*
Thomas Huth6c493722023-11-07 11:27:38 +01002456F: pc-bios/efi-vmxnet3.rom
2457F: pc-bios/vgabios-vmware.bin
2458F: roms/config.vga-vmware
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02002459F: tests/qtest/vmxnet3-test.c
Peter Maydell8472cc52023-09-27 16:11:58 +01002460F: docs/specs/vwm_pvscsi-spec.rst
Dmitry Fleytman622fb502014-08-27 08:58:43 +03002461
Scott Feldmande24d3f2015-03-13 21:09:32 -07002462Rocker
Scott Feldmande24d3f2015-03-13 21:09:32 -07002463M: Jiri Pirko <jiri@resnulli.us>
2464S: Maintained
2465F: hw/net/rocker/
Markus Armbruster92a3c6a2020-11-02 09:15:49 +01002466F: qapi/rocker.json
Thomas Huthde850942016-09-27 16:33:46 +02002467F: tests/rocker/
Peter Maydell9ca68762024-08-09 17:37:54 +01002468F: docs/specs/rocker.rst
Scott Feldmande24d3f2015-03-13 21:09:32 -07002469
Dmitry Fleytman093454e2016-06-01 11:23:44 +03002470e1000x
Philippe Mathieu-Daudébf4835a2018-01-08 15:34:06 -03002471M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
Akihiko Odaki8c061aa2023-02-23 19:20:12 +09002472R: Akihiko Odaki <akihiko.odaki@daynix.com>
Dmitry Fleytman093454e2016-06-01 11:23:44 +03002473S: Maintained
2474F: hw/net/e1000x*
2475
Dmitry Fleytman6f3fbe42016-06-01 11:23:45 +03002476e1000e
Philippe Mathieu-Daudébf4835a2018-01-08 15:34:06 -03002477M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
Akihiko Odaki8c061aa2023-02-23 19:20:12 +09002478R: Akihiko Odaki <akihiko.odaki@daynix.com>
Dmitry Fleytman6f3fbe42016-06-01 11:23:45 +03002479S: Maintained
2480F: hw/net/e1000e*
Philippe Mathieu-Daudé7d6a4f12021-03-10 19:31:22 +01002481F: tests/qtest/fuzz-e1000e-test.c
Akihiko Odaki0c2c2d42023-02-23 19:20:13 +09002482F: tests/qtest/e1000e-test.c
2483F: tests/qtest/libqos/e1000e.*
Dmitry Fleytman6f3fbe42016-06-01 11:23:45 +03002484
Akihiko Odaki3a977de2023-03-09 11:54:57 +08002485igb
2486M: Akihiko Odaki <akihiko.odaki@daynix.com>
Sriram Yagnaraman92360d62024-02-28 09:06:25 +01002487R: Sriram Yagnaraman <sriram.yagnaraman@ericsson.com>
Akihiko Odaki3a977de2023-03-09 11:54:57 +08002488S: Maintained
Akihiko Odaki136e9db2023-02-23 19:50:57 +09002489F: docs/system/devices/igb.rst
Akihiko Odaki3a977de2023-03-09 11:54:57 +08002490F: hw/net/igb*
Akihiko Odaki8e6c7182023-05-23 11:43:01 +09002491F: tests/avocado/netdev-ethtool.py
Akihiko Odaki45cb69b2023-03-10 14:11:25 +08002492F: tests/qtest/igb-test.c
2493F: tests/qtest/libqos/igb.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002494
Stefan Weilebc23272017-11-16 20:49:02 +01002495eepro100
2496M: Stefan Weil <sw@weilnetz.de>
2497S: Maintained
2498F: hw/net/eepro100.c
2499
Sven Schnelle34ea0232019-10-23 10:42:44 +02002500tulip
2501M: Sven Schnelle <svens@stackframe.org>
2502S: Maintained
2503F: hw/net/tulip.c
2504F: hw/net/tulip.h
2505
Patrick Venture065177e2021-04-12 12:45:22 -07002506pca954x
Patrick Leis65295112024-06-26 21:16:22 +00002507M: Patrick Leis <venture@google.com>
Patrick Venture065177e2021-04-12 12:45:22 -07002508S: Maintained
2509F: hw/i2c/i2c_mux_pca954x.c
2510F: include/hw/i2c/i2c_mux_pca954x.h
2511
Dmitriy Sharikhin4cbb1512024-03-11 09:58:31 +00002512pcf8574
2513M: Dmitrii Sharikhin <d.sharikhin@yadro.com>
2514S: Maintained
2515F: hw/gpio/pcf8574.c
2516F: include/gpio/pcf8574.h
2517
Alistair Francise481a1f2016-10-04 13:28:09 +01002518Generic Loader
Alistair Francisc22e5802018-03-01 11:05:58 +00002519M: Alistair Francis <alistair@alistair23.me>
Alistair Francise481a1f2016-10-04 13:28:09 +01002520S: Maintained
2521F: hw/core/generic-loader.c
Alistair Francisefe15922022-05-09 11:13:39 +02002522F: hw/core/uboot_image.h
Alistair Francise481a1f2016-10-04 13:28:09 +01002523F: include/hw/core/generic-loader.h
Alex Bennée70f20112021-03-03 17:36:40 +00002524F: docs/system/generic-loader.rst
Alistair Francise481a1f2016-10-04 13:28:09 +01002525
Alex Bennéea33ff6d2021-03-03 17:36:39 +00002526Guest Loader
2527M: Alex Bennée <alex.bennee@linaro.org>
2528S: Maintained
2529F: hw/core/guest-loader.c
Alex Bennée01460372021-03-03 17:36:41 +00002530F: docs/system/guest-loader.rst
Willian Rampazzobbbd9b62021-11-05 12:53:54 -03002531F: tests/avocado/boot_xen.py
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002532
Su Hang645d3cb2018-08-16 14:05:28 +01002533Intel Hexadecimal Object File Loader
2534M: Su Hang <suhang16@mails.ucas.ac.cn>
2535S: Maintained
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02002536F: tests/qtest/hexloader-test.c
Peter Maydell4b2ff652018-11-02 11:52:37 +00002537F: tests/data/hex-loader/test.hex
Su Hang645d3cb2018-08-16 14:05:28 +01002538
Thomas Huth87a90232016-11-08 12:46:22 +01002539CHRP NVRAM
2540M: Thomas Huth <thuth@redhat.com>
2541S: Maintained
2542F: hw/nvram/chrp_nvram.c
2543F: include/hw/nvram/chrp_nvram.h
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02002544F: tests/qtest/prom-env-test.c
Thomas Huth87a90232016-11-08 12:46:22 +01002545
Ben Warren42697d82017-02-16 15:15:40 -08002546VM Generation ID
John Snow2b429892020-10-30 11:34:15 -04002547S: Orphan
Ani Sinha48006e02022-01-31 17:50:01 +05302548R: Ani Sinha <ani@anisinha.ca>
Ben Warren42697d82017-02-16 15:15:40 -08002549F: hw/acpi/vmgenid.c
2550F: include/hw/acpi/vmgenid.h
Peter Maydell912fb362023-09-27 16:12:05 +01002551F: docs/specs/vmgenid.rst
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02002552F: tests/qtest/vmgenid-test.c
Ben Warren42697d82017-02-16 15:15:40 -08002553
Philippe Mathieu-Daudéc1b29822020-03-21 17:49:01 +01002554LED
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02002555M: Philippe Mathieu-Daudé <philmd@linaro.org>
Philippe Mathieu-Daudéc1b29822020-03-21 17:49:01 +01002556S: Maintained
2557F: include/hw/misc/led.h
2558F: hw/misc/led.c
2559
Philippe Mathieu-Daudé747969d2017-06-29 12:03:08 -03002560Unimplemented device
2561M: Peter Maydell <peter.maydell@linaro.org>
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02002562R: Philippe Mathieu-Daudé <philmd@linaro.org>
Ani Sinha48006e02022-01-31 17:50:01 +05302563R: Ani Sinha <ani@anisinha.ca>
Philippe Mathieu-Daudé747969d2017-06-29 12:03:08 -03002564S: Maintained
2565F: include/hw/misc/unimp.h
2566F: hw/misc/unimp.c
2567
Philippe Mathieu-Daudé60075232019-06-24 17:17:32 +02002568Empty slot
2569M: Artyom Tarasenko <atar4qemu@gmail.com>
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02002570R: Philippe Mathieu-Daudé <philmd@linaro.org>
Ani Sinha48006e02022-01-31 17:50:01 +05302571R: Ani Sinha <ani@anisinha.ca>
Philippe Mathieu-Daudé60075232019-06-24 17:17:32 +02002572S: Maintained
2573F: include/hw/misc/empty_slot.h
2574F: hw/misc/empty_slot.c
2575
Gerd Hoffmanndbb2e472018-05-22 18:50:58 +02002576Standard VGA
2577M: Gerd Hoffmann <kraxel@redhat.com>
2578S: Maintained
2579F: hw/display/vga*
2580F: hw/display/bochs-display.c
2581F: include/hw/display/vga.h
2582F: include/hw/display/bochs-vbe.h
Peter Maydell68ed96b2023-09-27 16:12:02 +01002583F: docs/specs/standard-vga.rst
Gerd Hoffmanndbb2e472018-05-22 18:50:58 +02002584
Gerd Hoffmann58d632c2018-06-13 14:29:48 +02002585ramfb
2586M: Gerd Hoffmann <kraxel@redhat.com>
2587S: Maintained
2588F: hw/display/ramfb*.c
2589F: include/hw/display/ramfb.h
2590
Gerd Hoffmanndbb2e472018-05-22 18:50:58 +02002591virtio-gpu
Gerd Hoffmann2f8cd5a2024-05-28 10:38:55 +02002592S: Orphan
Gerd Hoffmanndbb2e472018-05-22 18:50:58 +02002593F: hw/display/virtio-gpu*
Marc-André Lureauc68082c2019-05-24 15:09:45 +02002594F: hw/display/virtio-vga.*
Gerd Hoffmanndbb2e472018-05-22 18:50:58 +02002595F: include/hw/virtio/virtio-gpu.h
Thomas Huth853c0142023-10-27 08:08:08 +02002596F: docs/system/devices/virtio-gpu.rst
Gerd Hoffmanndbb2e472018-05-22 18:50:58 +02002597
Raphael Norwitzb372d792020-03-26 04:57:27 -04002598vhost-user-blk
Raphael Norwitz1dd69542024-02-03 21:37:58 -05002599M: Raphael Norwitz <raphael@enfabrica.net>
Raphael Norwitzb372d792020-03-26 04:57:27 -04002600S: Maintained
2601F: contrib/vhost-user-blk/
2602F: contrib/vhost-user-scsi/
2603F: hw/block/vhost-user-blk.c
Daniil Tatianin8edd5672022-09-06 10:31:11 +03002604F: hw/block/virtio-blk-common.c
Raphael Norwitzb372d792020-03-26 04:57:27 -04002605F: hw/scsi/vhost-user-scsi.c
2606F: hw/virtio/vhost-user-blk-pci.c
2607F: hw/virtio/vhost-user-scsi-pci.c
2608F: include/hw/virtio/vhost-user-blk.h
2609F: include/hw/virtio/vhost-user-scsi.h
Daniil Tatianin8edd5672022-09-06 10:31:11 +03002610F: include/hw/virtio/virtio-blk-common.h
Raphael Norwitzb372d792020-03-26 04:57:27 -04002611
Marc-André Lureaubd2e44f2019-05-24 15:09:38 +02002612vhost-user-gpu
2613M: Marc-André Lureau <marcandre.lureau@redhat.com>
Marc-André Lureaubd2e44f2019-05-24 15:09:38 +02002614S: Maintained
2615F: docs/interop/vhost-user-gpu.rst
Marc-André Lureaud52c4542019-05-24 15:09:42 +02002616F: contrib/vhost-user-gpu
2617F: hw/display/vhost-user-*
Marc-André Lureaubd2e44f2019-05-24 15:09:38 +02002618
Gerd Hoffmanndbb2e472018-05-22 18:50:58 +02002619Cirrus VGA
2620M: Gerd Hoffmann <kraxel@redhat.com>
2621S: Odd Fixes
2622W: https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
2623F: hw/display/cirrus*
2624
Gerd Hoffmann72d277a2018-09-25 09:56:42 +02002625EDID Generator
2626M: Gerd Hoffmann <kraxel@redhat.com>
2627S: Maintained
2628F: hw/display/edid*
2629F: include/hw/display/edid.h
2630F: qemu-edid.c
2631
Philippe Mathieu-Daudé10386382019-02-02 21:17:45 +01002632PIIX4 South Bridge (i82371AB)
2633M: Hervé Poussineau <hpoussin@reactos.org>
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02002634M: Philippe Mathieu-Daudé <philmd@linaro.org>
Philippe Mathieu-Daudé10386382019-02-02 21:17:45 +01002635S: Maintained
Bernhard Beschow16971892023-10-07 14:38:27 +02002636F: hw/isa/piix.c
Philippe Mathieu-Daudéfff123b2018-01-06 16:37:26 +01002637F: include/hw/southbridge/piix.h
Philippe Mathieu-Daudé10386382019-02-02 21:17:45 +01002638
BALATON Zoltan28900f92023-10-15 16:15:17 +02002639VIA South Bridges (VT82C686B, VT8231)
2640M: BALATON Zoltan <balaton@eik.bme.hu>
2641M: Philippe Mathieu-Daudé <philmd@linaro.org>
2642R: Jiaxun Yang <jiaxun.yang@flygoat.com>
2643S: Maintained
2644F: hw/isa/vt82c686.c
2645F: hw/usb/vt82c686-uhci-pci.c
2646F: include/hw/isa/vt82c686.h
2647
Philippe Mathieu-Daudé15ffb432018-11-22 03:11:39 +01002648Firmware configuration (fw_cfg)
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02002649M: Philippe Mathieu-Daudé <philmd@linaro.org>
Philippe Mathieu-Daudé15ffb432018-11-22 03:11:39 +01002650R: Gerd Hoffmann <kraxel@redhat.com>
2651S: Supported
2652F: docs/specs/fw_cfg.txt
Philippe Mathieu-Daudé8d0bceb2020-10-06 13:19:09 +02002653F: hw/nvram/fw_cfg*.c
Philippe Mathieu-Daudéb15c0f72019-04-22 15:49:41 +02002654F: stubs/fw_cfg.c
Philippe Mathieu-Daudé15ffb432018-11-22 03:11:39 +01002655F: include/hw/nvram/fw_cfg.h
2656F: include/standard-headers/linux/qemu_fw_cfg.h
Thomas Huth1cf43232019-09-10 16:41:20 +02002657F: tests/qtest/libqos/fw_cfg.c
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02002658F: tests/qtest/fw_cfg-test.c
Philippe Mathieu-Daudé15ffb432018-11-22 03:11:39 +01002659T: git https://github.com/philmd/qemu.git fw_cfg-next
2660
Thomas Huth2313abf2019-01-30 16:45:40 +01002661XIVE
Thomas Huth2313abf2019-01-30 16:45:40 +01002662M: Cédric Le Goater <clg@kaod.org>
Cédric Le Goater4901a342023-06-20 07:59:05 +02002663R: Frédéric Barrat <fbarrat@linux.ibm.com>
Thomas Huth2313abf2019-01-30 16:45:40 +01002664L: qemu-ppc@nongnu.org
Cédric Le Goaterb0877572022-09-29 20:09:46 +02002665S: Odd Fixes
Thomas Huth2313abf2019-01-30 16:45:40 +01002666F: hw/*/*xive*
2667F: include/hw/*/*xive*
Cédric Le Goater24563a52019-05-21 10:24:11 +02002668F: docs/*/*xive*
Thomas Huth2313abf2019-01-30 16:45:40 +01002669
Philippe Mathieu-Daudé7bd0d132020-06-10 23:32:38 +02002670Renesas peripherals
Philippe Mathieu-Daudé2d53d0c2021-03-12 16:55:13 +01002671R: Yoshinori Sato <ysato@users.sourceforge.jp>
Philippe Mathieu-Daudé7bd0d132020-06-10 23:32:38 +02002672R: Magnus Damm <magnus.damm@gmail.com>
Philippe Mathieu-Daudéf1660612020-10-31 16:23:40 +01002673S: Odd Fixes
Yoshinori Sato645194c2019-01-21 22:15:59 +09002674F: hw/char/renesas_sci.c
Philippe Mathieu-Daudé7bd0d132020-06-10 23:32:38 +02002675F: hw/char/sh_serial.c
Yoshinori Satoc7f37ba2019-03-20 23:16:05 +09002676F: hw/timer/renesas_*.c
Philippe Mathieu-Daudé7bd0d132020-06-10 23:32:38 +02002677F: hw/timer/sh_timer.c
Yoshinori Sato645194c2019-01-21 22:15:59 +09002678F: include/hw/char/renesas_sci.h
Philippe Mathieu-Daudé7bd0d132020-06-10 23:32:38 +02002679F: include/hw/sh4/sh.h
Yoshinori Satoc7f37ba2019-03-20 23:16:05 +09002680F: include/hw/timer/renesas_*.h
Philippe Mathieu-Daudé7bd0d132020-06-10 23:32:38 +02002681
Yoshinori Satoe78597c2019-01-21 22:15:57 +09002682Renesas RX peripherals
Philippe Mathieu-Daudéb2744da2021-03-12 16:55:12 +01002683R: Yoshinori Sato <ysato@users.sourceforge.jp>
2684S: Orphan
Yoshinori Satoe78597c2019-01-21 22:15:57 +09002685F: hw/intc/rx_icu.c
Yoshinori Sato0c80f502019-01-21 22:16:00 +09002686F: hw/rx/
Yoshinori Satoe78597c2019-01-21 22:15:57 +09002687F: include/hw/intc/rx_icu.h
Yoshinori Sato0c80f502019-01-21 22:16:00 +09002688F: include/hw/rx/
Yoshinori Satoe78597c2019-01-21 22:15:57 +09002689
Pavel Pisade4d4ad2020-09-14 10:13:41 +02002690CAN bus subsystem and hardware
2691M: Pavel Pisa <pisa@cmp.felk.cvut.cz>
2692M: Vikram Garhwal <fnu.vikram@xilinx.com>
2693S: Maintained
2694W: https://canbus.pages.fel.cvut.cz/
2695F: net/can/*
2696F: hw/net/can/*
2697F: include/net/can_*.h
Thomas Huth8995f1f2023-10-27 08:09:31 +02002698F: docs/system/devices/can.rst
Pavel Pisade4d4ad2020-09-14 10:13:41 +02002699
David Gibsonff8cdbb2021-09-21 13:34:35 +10002700OpenPIC interrupt controller
2701M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
2702S: Odd Fixes
2703F: hw/intc/openpic.c
2704F: include/hw/ppc/openpic.h
2705
Philippe Mathieu-Daudé6cee5472021-10-04 10:26:23 +02002706MIPS CPS
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02002707M: Philippe Mathieu-Daudé <philmd@linaro.org>
Philippe Mathieu-Daudé6cee5472021-10-04 10:26:23 +02002708S: Odd Fixes
2709F: hw/misc/mips_*
2710F: include/hw/misc/mips_*
2711
2712MIPS GIC
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02002713M: Philippe Mathieu-Daudé <philmd@linaro.org>
Philippe Mathieu-Daudé6cee5472021-10-04 10:26:23 +02002714S: Odd Fixes
2715F: hw/intc/mips_gic.c
2716F: hw/timer/mips_gictimer.c
2717F: include/hw/intc/mips_gic.h
2718F: include/hw/timer/mips_gictimer.h
2719
Cornelia Huck56e34832021-12-22 11:55:48 +01002720S390 3270 device
2721M: Halil Pasic <pasic@linux.ibm.com>
2722M: Christian Borntraeger <borntraeger@linux.ibm.com>
2723S: Odd fixes
2724F: include/hw/s390x/3270-ccw.h
2725F: hw/char/terminal3270.c
2726F: hw/s390x/3270-ccw.c
2727L: qemu-s390x@nongnu.org
2728
2729S390 diag 288 watchdog
2730M: Halil Pasic <pasic@linux.ibm.com>
2731M: Christian Borntraeger <borntraeger@linux.ibm.com>
2732S: Supported
2733F: hw/watchdog/wdt_diag288.c
2734F: include/hw/watchdog/wdt_diag288.h
2735L: qemu-s390x@nongnu.org
2736
2737S390 storage key device
2738M: Halil Pasic <pasic@linux.ibm.com>
2739M: Christian Borntraeger <borntraeger@linux.ibm.com>
2740S: Supported
2741F: hw/s390x/storage-keys.h
Eric Farman5cf9a812023-10-20 16:15:09 +02002742F: hw/s390x/s390-skeys*.c
Cornelia Huck56e34832021-12-22 11:55:48 +01002743L: qemu-s390x@nongnu.org
2744
2745S390 storage attribute device
2746M: Halil Pasic <pasic@linux.ibm.com>
2747M: Christian Borntraeger <borntraeger@linux.ibm.com>
2748S: Supported
2749F: hw/s390x/storage-attributes.h
Eric Farman5cf9a812023-10-20 16:15:09 +02002750F: hw/s390x/s390-stattrib*.c
Cornelia Huck56e34832021-12-22 11:55:48 +01002751L: qemu-s390x@nongnu.org
2752
2753S390 floating interrupt controller
2754M: Halil Pasic <pasic@linux.ibm.com>
2755M: Christian Borntraeger <borntraeger@linux.ibm.com>
2756M: David Hildenbrand <david@redhat.com>
2757S: Supported
2758F: hw/intc/s390_flic*.c
2759F: include/hw/s390x/s390_flic.h
2760L: qemu-s390x@nongnu.org
2761
Hongren (Zenithal) Zheng5028d662022-05-19 20:40:55 +08002762CanoKey
2763M: Hongren (Zenithal) Zheng <i@zenithal.me>
2764S: Maintained
2765R: Canokeys.org <contact@canokeys.org>
2766F: hw/usb/canokey.c
2767F: hw/usb/canokey.h
2768F: docs/system/devices/canokey.rst
2769
Maciej S. Szmigiero00313b52023-10-21 23:14:53 +02002770Hyper-V Dynamic Memory Protocol
2771M: Maciej S. Szmigiero <maciej.szmigiero@oracle.com>
2772S: Supported
2773F: hw/hyperv/hv-balloon*.c
2774F: hw/hyperv/hv-balloon*.h
2775F: include/hw/hyperv/dynmem-proto.h
2776F: include/hw/hyperv/hv-balloon.h
2777
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002778Subsystems
2779----------
Philippe Mathieu-Daudéa8f4aee2021-08-16 21:10:12 +02002780Overall Audio backends
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002781M: Gerd Hoffmann <kraxel@redhat.com>
Marc-André Lureaucc991392023-02-07 12:56:10 +04002782M: Marc-André Lureau <marcandre.lureau@redhat.com>
Gerd Hoffmann6bc915f2021-08-10 10:34:46 +02002783S: Odd Fixes
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002784F: audio/
Philippe Mathieu-Daudé0ebe43e2021-08-16 21:10:14 +02002785X: audio/alsaaudio.c
2786X: audio/coreaudio.c
2787X: audio/dsound*
2788X: audio/jackaudio.c
2789X: audio/ossaudio.c
2790X: audio/paaudio.c
2791X: audio/sdlaudio.c
Alexandre Ratchov663df1c2022-09-07 15:23:42 +02002792X: audio/sndioaudio.c
Philippe Mathieu-Daudé4566d142021-08-16 21:10:13 +02002793X: audio/spiceaudio.c
Markus Armbruster92a3c6a2020-11-02 09:15:49 +01002794F: qapi/audio.json
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002795
Philippe Mathieu-Daudé0ebe43e2021-08-16 21:10:14 +02002796ALSA Audio backend
2797M: Gerd Hoffmann <kraxel@redhat.com>
Christian Schoenebeck584ab342021-09-04 15:13:46 +02002798R: Christian Schoenebeck <qemu_oss@crudebyte.com>
Philippe Mathieu-Daudé0ebe43e2021-08-16 21:10:14 +02002799S: Odd Fixes
2800F: audio/alsaaudio.c
2801
2802Core Audio framework backend
2803M: Gerd Hoffmann <kraxel@redhat.com>
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02002804M: Philippe Mathieu-Daudé <philmd@linaro.org>
Christian Schoenebeck584ab342021-09-04 15:13:46 +02002805R: Christian Schoenebeck <qemu_oss@crudebyte.com>
Akihiko Odaki4f978632023-05-12 15:43:37 +01002806R: Akihiko Odaki <akihiko.odaki@daynix.com>
Philippe Mathieu-Daudé0ebe43e2021-08-16 21:10:14 +02002807S: Odd Fixes
2808F: audio/coreaudio.c
2809
2810DSound Audio backend
2811M: Gerd Hoffmann <kraxel@redhat.com>
2812S: Odd Fixes
2813F: audio/dsound*
2814
2815JACK Audio Connection Kit backend
2816M: Gerd Hoffmann <kraxel@redhat.com>
Christian Schoenebeck584ab342021-09-04 15:13:46 +02002817R: Christian Schoenebeck <qemu_oss@crudebyte.com>
Philippe Mathieu-Daudé0ebe43e2021-08-16 21:10:14 +02002818S: Odd Fixes
2819F: audio/jackaudio.c
2820
2821Open Sound System (OSS) Audio backend
2822M: Gerd Hoffmann <kraxel@redhat.com>
2823S: Odd Fixes
2824F: audio/ossaudio.c
2825
2826PulseAudio backend
2827M: Gerd Hoffmann <kraxel@redhat.com>
2828S: Odd Fixes
2829F: audio/paaudio.c
2830
2831SDL Audio backend
2832M: Gerd Hoffmann <kraxel@redhat.com>
Thomas Huth2863bd52021-10-30 08:21:06 +02002833R: Thomas Huth <huth@tuxfamily.org>
Philippe Mathieu-Daudé0ebe43e2021-08-16 21:10:14 +02002834S: Odd Fixes
2835F: audio/sdlaudio.c
2836
Alexandre Ratchov663df1c2022-09-07 15:23:42 +02002837Sndio Audio backend
2838M: Gerd Hoffmann <kraxel@redhat.com>
2839R: Alexandre Ratchov <alex@caoua.org>
2840S: Odd Fixes
2841F: audio/sndioaudio.c
2842
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002843Block layer core
2844M: Kevin Wolf <kwolf@redhat.com>
Hanna Reitzb0c47982021-08-10 16:04:11 +02002845M: Hanna Reitz <hreitz@redhat.com>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002846L: qemu-block@nongnu.org
2847S: Supported
2848F: block*
2849F: block/
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01002850F: hw/block/
Markus Armbrusterb885cdd2022-10-20 14:05:41 +02002851F: qapi/block*.json
2852F: qapi/transaction.json
Kevin Wolf4c346e02015-05-20 12:03:17 +02002853F: include/block/
Stefan Hajnoczi7f9241d2022-10-13 14:59:04 -04002854F: include/sysemu/block-*.h
Kevin Wolf46078762014-04-24 11:53:39 +02002855F: qemu-img*
Wainer dos Santos Moschetta33b2b382021-02-04 10:54:25 -03002856F: docs/tools/qemu-img.rst
Kevin Wolf46078762014-04-24 11:53:39 +02002857F: qemu-io*
Kevin Wolf29242092014-10-21 17:43:17 +02002858F: tests/qemu-iotests/
Max Reitz8dd30c82017-04-28 18:55:17 +02002859F: util/qemu-progress.c
Markus Armbruster0bcc8e52018-06-14 21:14:29 +02002860F: qobject/block-qdict.c
Thomas Huthda668aa2021-03-10 07:33:14 +01002861F: tests/unit/check-block-qdict.c
Stefan Hajnocziebe2aad2018-11-08 11:15:28 +00002862T: git https://repo.or.cz/qemu/kevin.git block
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002863
Stefan Hajnoczic607c7f2020-12-09 10:38:02 +00002864Storage daemon
2865M: Kevin Wolf <kwolf@redhat.com>
2866L: qemu-block@nongnu.org
2867S: Supported
2868F: storage-daemon/
2869F: docs/interop/qemu-storage-daemon-qmp-ref.rst
2870F: docs/tools/qemu-storage-daemon.rst
2871T: git https://repo.or.cz/qemu/kevin.git block
2872
Stefan Hajnoczid55053b2015-04-29 15:13:27 +01002873Block I/O path
2874M: Stefan Hajnoczi <stefanha@redhat.com>
Fam Zhengfe5ca462018-11-21 23:30:36 +08002875M: Fam Zheng <fam@euphon.net>
Stefan Hajnoczid55053b2015-04-29 15:13:27 +01002876L: qemu-block@nongnu.org
2877S: Supported
Paolo Bonzini36c697b2017-05-03 12:30:23 +02002878F: util/async.c
2879F: util/aio-*.c
Stefan Hajnoczi1f050a42020-03-05 17:08:02 +00002880F: util/aio-*.h
Stefan Hajnoczi433fcea2023-09-13 16:00:43 -04002881F: util/defer-call.c
Stefan Hajnoczi1f050a42020-03-05 17:08:02 +00002882F: util/fdmon-*.c
Stefan Hajnoczid55053b2015-04-29 15:13:27 +01002883F: block/io.c
Fam Zhenge1029ae2016-07-18 15:19:47 +08002884F: include/block/aio.h
Stefan Hajnoczif5a53fa2018-03-12 13:22:04 +00002885F: include/block/aio-wait.h
Stefan Hajnoczi433fcea2023-09-13 16:00:43 -04002886F: include/qemu/defer-call.h
Philippe Mathieu-Daudé0a4f9ad2017-09-08 14:36:28 -03002887F: scripts/qemugdb/aio.py
Thomas Huthda668aa2021-03-10 07:33:14 +01002888F: tests/unit/test-fdmon-epoll.c
Stefan Hajnoczie18a8b32018-11-08 11:15:26 +00002889T: git https://github.com/stefanha/qemu.git block
Stefan Hajnoczid55053b2015-04-29 15:13:27 +01002890
Paolo Bonzinie5b57282017-08-22 07:08:27 +02002891Block SCSI subsystem
2892M: Paolo Bonzini <pbonzini@redhat.com>
Fam Zhengfe5ca462018-11-21 23:30:36 +08002893R: Fam Zheng <fam@euphon.net>
Paolo Bonzinie5b57282017-08-22 07:08:27 +02002894L: qemu-block@nongnu.org
2895S: Supported
2896F: include/scsi/*
2897F: scsi/*
2898
Jeff Cody280458a2015-03-06 12:16:06 -05002899Block Jobs
Jeff Cody03283d62018-09-26 14:05:32 -04002900M: John Snow <jsnow@redhat.com>
Vladimir Sementsov-Ogievskiy9e4067b2022-05-26 14:54:32 +03002901M: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
Jeff Cody280458a2015-03-06 12:16:06 -05002902L: qemu-block@nongnu.org
2903S: Supported
2904F: blockjob.c
2905F: include/block/blockjob.h
Kevin Wolf33e9e9b2018-04-12 17:29:59 +02002906F: job.c
Kevin Wolf1a90bc82018-05-03 19:01:14 +02002907F: job-qmp.c
Markus Armbrusterc468e362018-08-10 13:55:53 +02002908F: include/qemu/job.h
Jeff Cody280458a2015-03-06 12:16:06 -05002909F: block/backup.c
2910F: block/commit.c
Jeff Cody77346022016-03-09 21:54:00 -05002911F: block/stream.c
Jeff Cody280458a2015-03-06 12:16:06 -05002912F: block/mirror.c
Kevin Wolfbf425082018-05-16 16:03:10 +02002913F: qapi/job.json
Vladimir Sementsov-Ogievskiyd7beddc2021-01-28 17:41:44 +03002914F: block/block-copy.c
Vladimir Sementsov-Ogievskiyd088e6a2022-03-03 20:43:39 +01002915F: include/block/block-copy.h
2916F: block/reqlist.c
2917F: include/block/reqlist.h
Vladimir Sementsov-Ogievskiyd003e0a2021-08-24 11:38:27 +03002918F: block/copy-before-write.h
2919F: block/copy-before-write.c
Vladimir Sementsov-Ogievskiy1c14eaa2022-03-03 20:43:44 +01002920F: block/snapshot-access.c
Vladimir Sementsov-Ogievskiyd7beddc2021-01-28 17:41:44 +03002921F: include/block/aio_task.h
2922F: block/aio_task.c
2923F: util/qemu-co-shared-resource.c
2924F: include/qemu/co-shared-resource.h
John Snow77582e22020-10-01 12:24:01 -04002925T: git https://gitlab.com/jsnow/qemu.git jobs
Vladimir Sementsov-Ogievskiy9e4067b2022-05-26 14:54:32 +03002926T: git https://gitlab.com/vsementsov/qemu.git block
Jeff Cody280458a2015-03-06 12:16:06 -05002927
Jonathan Cameron502730e2022-04-29 15:40:28 +01002928Compute Express Link
Jonathan Cameron502730e2022-04-29 15:40:28 +01002929M: Jonathan Cameron <jonathan.cameron@huawei.com>
Jonathan Cameron3456fed2023-02-28 11:39:26 +00002930R: Fan Ni <fan.ni@samsung.com>
Jonathan Cameron502730e2022-04-29 15:40:28 +01002931S: Supported
2932F: hw/cxl/
David Hildenbrand2fcd0052022-06-17 14:31:51 +02002933F: hw/mem/cxl_type3.c
Jonathan Cameron502730e2022-04-29 15:40:28 +01002934F: include/hw/cxl/
Markus Armbruster66ba1572024-02-05 09:47:46 +01002935F: qapi/cxl.json
Jonathan Cameron502730e2022-04-29 15:40:28 +01002936
John Snow538193b2016-08-04 14:18:51 -04002937Dirty Bitmaps
Eric Blakeedb05902020-05-14 13:00:03 -05002938M: Eric Blake <eblake@redhat.com>
Vladimir Sementsov-Ogievskiy9e4067b2022-05-26 14:54:32 +03002939M: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
Eric Blakeedb05902020-05-14 13:00:03 -05002940R: John Snow <jsnow@redhat.com>
John Snow538193b2016-08-04 14:18:51 -04002941L: qemu-block@nongnu.org
2942S: Supported
John Snow538193b2016-08-04 14:18:51 -04002943F: include/qemu/hbitmap.h
2944F: include/block/dirty-bitmap.h
Eric Blakebb4e58c2020-05-18 13:53:07 -05002945F: block/monitor/bitmap-qmp-cmds.c
Vladimir Sementsov-Ogievskiy00637c62019-12-19 13:16:03 +03002946F: block/dirty-bitmap.c
2947F: block/qcow2-bitmap.c
Vladimir Sementsov-Ogievskiy052db8e2019-10-26 19:56:55 +03002948F: migration/block-dirty-bitmap.c
Vladimir Sementsov-Ogievskiy00637c62019-12-19 13:16:03 +03002949F: util/hbitmap.c
Thomas Huthda668aa2021-03-10 07:33:14 +01002950F: tests/unit/test-hbitmap.c
Philippe Mathieu-Daudé5746c1c2017-09-08 14:36:32 -03002951F: docs/interop/bitmaps.rst
Eric Blakeedb05902020-05-14 13:00:03 -05002952T: git https://repo.or.cz/qemu/ericb.git bitmaps
Vladimir Sementsov-Ogievskiy9e4067b2022-05-26 14:54:32 +03002953T: git https://gitlab.com/vsementsov/qemu.git block
John Snow538193b2016-08-04 14:18:51 -04002954
Paolo Bonzini61af0ee2015-09-22 11:40:00 +02002955Character device backends
Marc-André Lureau55fc84a2017-01-30 17:37:31 +04002956M: Marc-André Lureau <marcandre.lureau@redhat.com>
Paolo Bonzini2185fd62018-10-19 14:25:42 +02002957R: Paolo Bonzini <pbonzini@redhat.com>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002958S: Maintained
Marc-André Lureau178fe0a2016-12-10 00:29:03 +03002959F: chardev/
Marc-André Lureau8228e352017-01-26 17:19:46 +04002960F: include/chardev/
Markus Armbrusterdbeee392017-08-24 21:13:58 +02002961F: qapi/char.json
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002962
Paolo Bonzinie26082f2014-10-22 14:53:32 +02002963Character Devices (Braille)
2964M: Samuel Thibault <samuel.thibault@ens-lyon.org>
2965S: Maintained
Marc-André Lureau6b10e572017-05-29 12:39:42 +04002966F: chardev/baum.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002967
Markus Armbrustere94630d2017-03-20 13:55:48 +01002968Command line option argument parsing
2969M: Markus Armbruster <armbru@redhat.com>
2970S: Supported
2971F: include/qemu/option.h
Thomas Huthda668aa2021-03-10 07:33:14 +01002972F: tests/unit/test-keyval.c
2973F: tests/unit/test-qemu-opts.c
Markus Armbrustere94630d2017-03-20 13:55:48 +01002974F: util/keyval.c
2975F: util/qemu-option.c
2976
Markus Armbruster8c413e72015-01-28 11:29:57 +01002977Coverity model
2978M: Markus Armbruster <armbru@redhat.com>
2979S: Supported
2980F: scripts/coverity-model.c
2981
Peter Maydell9c263d02020-03-19 19:33:22 +00002982Coverity Scan integration
2983M: Peter Maydell <peter.maydell@linaro.org>
2984S: Maintained
2985F: scripts/coverity-scan/
2986
Peter A. G. Crosthwaited24b5692012-06-26 14:29:42 +10002987Device Tree
Alistair Francisc3c962c2019-03-26 13:53:32 -07002988M: Alistair Francis <alistair.francis@wdc.com>
2989R: David Gibson <david@gibson.dropbear.id.au>
Peter A. G. Crosthwaited24b5692012-06-26 14:29:42 +10002990S: Maintained
Philippe Mathieu-Daudé8d7f2e72023-10-04 11:06:28 +02002991F: system/device_tree.c
Thomas Huth82407512015-12-17 15:25:12 +01002992F: include/sysemu/device_tree.h
Peter A. G. Crosthwaited24b5692012-06-26 14:29:42 +10002993
Marc-André Lureau3505a222017-09-11 18:59:29 +02002994Dump
2995S: Supported
2996M: Marc-André Lureau <marcandre.lureau@redhat.com>
Markus Armbruster6d3da322019-06-19 22:10:49 +02002997F: dump/
Marc-André Lureau3505a222017-09-11 18:59:29 +02002998F: hw/misc/vmcoreinfo.c
2999F: include/hw/misc/vmcoreinfo.h
Markus Armbruster6d3da322019-06-19 22:10:49 +02003000F: include/qemu/win_dump_defs
Marc-André Lureau3505a222017-09-11 18:59:29 +02003001F: include/sysemu/dump-arch.h
3002F: include/sysemu/dump.h
Markus Armbrusterd06b7472019-06-19 22:10:47 +02003003F: qapi/dump.json
Marc-André Lureau3505a222017-09-11 18:59:29 +02003004F: scripts/dump-guest-memory.py
3005F: stubs/dump.c
Peter Maydell096d3ce2023-09-27 16:12:04 +01003006F: docs/specs/vmcoreinfo.rst
Marc-André Lureau3505a222017-09-11 18:59:29 +02003007
Markus Armbruster4f966762015-09-12 13:29:56 +02003008Error reporting
3009M: Markus Armbruster <armbru@redhat.com>
3010S: Supported
3011F: include/qapi/error.h
3012F: include/qemu/error-report.h
Markus Armbrusterabb3d372019-08-12 07:23:33 +02003013F: qapi/error.json
Markus Armbruster4f966762015-09-12 13:29:56 +02003014F: util/error.c
Zhao Liu3325af52024-03-27 19:55:39 +08003015F: util/error-report.c
Vladimir Sementsov-Ogievskiyd1d3a992020-03-24 18:36:25 +03003016F: scripts/coccinelle/err-bad-newline.cocci
3017F: scripts/coccinelle/error-use-after-free.cocci
3018F: scripts/coccinelle/error_propagate_null.cocci
3019F: scripts/coccinelle/remove_local_err.cocci
3020F: scripts/coccinelle/use-error_fatal.cocci
Vladimir Sementsov-Ogievskiy8220f3a2020-07-07 18:50:31 +02003021F: scripts/coccinelle/errp-guard.cocci
Markus Armbruster4f966762015-09-12 13:29:56 +02003022
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05003023GDB stub
Alex Bennéec7b3e862019-06-06 09:27:53 +01003024M: Alex Bennée <alex.bennee@linaro.org>
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02003025R: Philippe Mathieu-Daudé <philmd@linaro.org>
Alex Bennéec7b3e862019-06-06 09:27:53 +01003026S: Maintained
Thomas Huth4db546d2022-12-12 18:48:41 +01003027F: docs/system/gdb.rst
Alex Bennée842b42d2022-09-29 12:42:22 +01003028F: gdbstub/*
Peter Maydell0dec1012021-02-11 12:27:44 +00003029F: include/exec/gdbstub.h
Alex Bennéed96bf492023-03-02 18:57:47 -08003030F: include/gdbstub/*
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05003031F: gdb-xml/
Alex Bennée21750c32023-11-06 18:50:56 +00003032F: tests/tcg/multiarch/gdbstub/*
Akihiko Odaki956af7d2023-10-09 17:40:51 +01003033F: scripts/feature_to_c.py
Alex Bennéebcbc36a2023-03-02 18:57:59 -08003034F: scripts/probe-gdb-support.py
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05003035
Paolo Bonzini01a9c032014-04-29 16:05:53 +02003036Memory API
3037M: Paolo Bonzini <pbonzini@redhat.com>
David Hildenbrand07b315b2021-07-23 12:05:31 +02003038M: Peter Xu <peterx@redhat.com>
3039M: David Hildenbrand <david@redhat.com>
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02003040R: Philippe Mathieu-Daudé <philmd@linaro.org>
Paolo Bonzini01a9c032014-04-29 16:05:53 +02003041S: Supported
3042F: include/exec/ioport.h
Tony Nguyen14776ab2019-08-24 04:10:58 +10003043F: include/exec/memop.h
Paolo Bonzini01a9c032014-04-29 16:05:53 +02003044F: include/exec/memory.h
Paolo Bonzini2b1641d2015-11-13 18:49:54 +01003045F: include/exec/ram_addr.h
Juan Quintela41aa4e92020-01-22 15:58:57 +01003046F: include/exec/ramblock.h
David Hildenbrand9f04dd72021-07-23 12:05:32 +02003047F: include/sysemu/memory_mapping.h
Philippe Mathieu-Daudé8d7f2e72023-10-04 11:06:28 +02003048F: system/dma-helpers.c
3049F: system/ioport.c
3050F: system/memory.c
3051F: system/memory_mapping.c
3052F: system/physmem.c
Paolo Bonzini01a9c032014-04-29 16:05:53 +02003053F: include/exec/memory-internal.h
Philippe Mathieu-Daudé044e2af2020-02-24 14:45:07 +01003054F: scripts/coccinelle/memory-region-housekeeping.cocci
Paolo Bonzini01a9c032014-04-29 16:05:53 +02003055
David Hildenbrand2fcd0052022-06-17 14:31:51 +02003056Memory devices
3057M: David Hildenbrand <david@redhat.com>
3058M: Igor Mammedov <imammedo@redhat.com>
3059R: Xiao Guangrong <xiaoguangrong.eric@gmail.com>
3060S: Supported
3061F: hw/mem/memory-device.c
3062F: hw/mem/nvdimm.c
3063F: hw/mem/pc-dimm.c
3064F: include/hw/mem/memory-device.h
3065F: include/hw/mem/nvdimm.h
3066F: include/hw/mem/pc-dimm.h
David Hildenbrand759bac62023-09-26 20:57:27 +02003067F: stubs/memory_device.c
David Hildenbrand2fcd0052022-06-17 14:31:51 +02003068F: docs/nvdimm.txt
3069
Gerd Hoffmann7ee3bf02010-12-13 21:30:37 +01003070SPICE
Gerd Hoffmann34761032024-05-28 10:38:56 +02003071S: Orphan
Peter Maydell6e481d52013-06-24 11:49:32 +01003072F: include/ui/qemu-spice.h
Thomas Huth438528a2016-02-25 10:36:06 +01003073F: include/ui/spice-display.h
Gerd Hoffmann7ee3bf02010-12-13 21:30:37 +01003074F: ui/spice-*.c
3075F: audio/spiceaudio.c
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01003076F: hw/display/qxl*
Markus Armbruster608cfed2017-08-24 21:14:00 +02003077F: qapi/ui.json
Philippe Mathieu-Daudé9bd4cb32018-11-25 21:49:52 +01003078F: docs/spice-port-fqdn.txt
Gerd Hoffmann7ee3bf02010-12-13 21:30:37 +01003079
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05003080Graphics
Marc-André Lureaucc991392023-02-07 12:56:10 +04003081M: Marc-André Lureau <marcandre.lureau@redhat.com>
Gerd Hoffmann25eccc32014-04-07 10:42:03 +02003082S: Odd Fixes
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05003083F: ui/
Thomas Huthe2206562016-02-25 10:36:07 +01003084F: include/ui/
Markus Armbruster608cfed2017-08-24 21:14:00 +02003085F: qapi/ui.json
Marc-André Lureaub1d38032018-07-13 15:09:06 +02003086F: util/drm.c
Thomas Huth4db546d2022-12-12 18:48:41 +01003087F: docs/devel/ui.rst
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05003088
Andreas Färber351f1bf2011-10-30 18:08:01 +01003089Cocoa graphics
Peter Maydell30ef3c72013-12-16 15:17:55 +00003090M: Peter Maydell <peter.maydell@linaro.org>
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02003091M: Philippe Mathieu-Daudé <philmd@linaro.org>
Akihiko Odaki4f978632023-05-12 15:43:37 +01003092R: Akihiko Odaki <akihiko.odaki@daynix.com>
Andreas Färber351f1bf2011-10-30 18:08:01 +01003093S: Odd Fixes
3094F: ui/cocoa.m
3095
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05003096Main loop
Paolo Bonzinida26f372014-10-21 15:12:57 +02003097M: Paolo Bonzini <pbonzini@redhat.com>
3098S: Maintained
Markus Armbruster54d31232019-08-12 07:23:59 +02003099F: include/qemu/main-loop.h
3100F: include/sysemu/runstate.h
Alejandro Jimeneze6dba042020-12-11 11:52:43 -05003101F: include/sysemu/runstate-action.h
Paolo Bonzini3ecb29a2017-05-03 13:59:09 +02003102F: util/main-loop.c
Thomas Huth89933512023-10-20 08:21:42 +02003103F: util/qemu-timer*.c
Philippe Mathieu-Daudé8d7f2e72023-10-04 11:06:28 +02003104F: system/vl.c
3105F: system/main.c
3106F: system/cpus.c
3107F: system/cpu-throttle.c
3108F: system/cpu-timers.c
3109F: system/runstate*
Markus Armbruster0e201d32017-08-24 21:13:57 +02003110F: qapi/run-state.json
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05003111
Stefan Hajnoczi1b7e01d2020-09-09 10:08:51 +01003112Read, Copy, Update (RCU)
3113M: Paolo Bonzini <pbonzini@redhat.com>
3114S: Maintained
Philippe Mathieu-Daudéfc3b9df2023-01-19 11:26:20 +01003115F: docs/devel/lockcnt.txt
3116F: docs/devel/rcu.txt
Stefan Hajnoczi1b7e01d2020-09-09 10:08:51 +01003117F: include/qemu/rcu*.h
Thomas Huthda668aa2021-03-10 07:33:14 +01003118F: tests/unit/rcutorture.c
3119F: tests/unit/test-rcu-*.c
Stefan Hajnoczi1b7e01d2020-09-09 10:08:51 +01003120F: util/rcu.c
3121
Luiz Capitulino8899b4a2013-06-03 11:14:26 -04003122Human Monitor (HMP)
Dr. David Alan Gilbertb8b6d3c2023-03-30 10:55:24 +01003123M: Dr. David Alan Gilbert <dave@treblig.org>
Luiz Capitulinofbb06212014-02-18 09:08:14 -05003124S: Maintained
Kevin Wolf5bce3082019-06-13 17:33:59 +02003125F: monitor/monitor-internal.h
Kevin Wolfe84328f2019-06-13 17:33:57 +02003126F: monitor/misc.c
Kevin Wolf1d95db72019-06-13 17:34:02 +02003127F: monitor/monitor.c
Kevin Wolff1b3ccf2019-06-13 17:33:58 +02003128F: monitor/hmp*
3129F: hmp.h
Thomas Huthc13e9912016-09-22 21:32:38 +02003130F: hmp-commands*.hx
3131F: include/monitor/hmp-target.h
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02003132F: tests/qtest/test-hmp.c
Markus Armbruster637de4d2019-04-17 21:06:37 +02003133F: include/qemu/qemu-print.h
3134F: util/qemu-print.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05003135
Paolo Bonzinif536f112015-09-22 11:40:00 +02003136Network device backends
Stefan Hajnoczi442469e2015-01-20 15:40:38 +00003137M: Jason Wang <jasowang@redhat.com>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05003138S: Maintained
3139F: net/
Thomas Huthd24b2b12016-02-25 12:56:24 +01003140F: include/net/
Markus Armbrustere9bbc8b2019-06-04 13:52:19 +02003141F: qemu-bridge-helper.c
Stefan Hajnoczie18a8b32018-11-08 11:15:26 +00003142T: git https://github.com/jasowang/qemu.git net
Markus Armbruster3c0bd372017-08-24 21:13:59 +02003143F: qapi/net.json
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05003144
Vincenzo Maffioneaee09ba2013-11-06 18:34:55 +01003145Netmap network backend
3146M: Luigi Rizzo <rizzo@iet.unipi.it>
3147M: Giuseppe Lettieri <g.lettieri@iet.unipi.it>
3148M: Vincenzo Maffione <v.maffione@gmail.com>
3149W: http://info.iet.unipi.it/~luigi/netmap/
3150S: Maintained
3151F: net/netmap.c
3152
Ilya Maximetscb039ef2023-09-13 20:34:37 +02003153AF_XDP network backend
3154R: Ilya Maximets <i.maximets@ovn.org>
3155F: net/af-xdp.c
3156
Eduardo Habkost4fc264f2016-08-01 10:52:42 -03003157Host Memory Backends
David Hildenbrand4ade3ea2021-07-23 12:05:30 +02003158M: David Hildenbrand <david@redhat.com>
Eduardo Habkost4fc264f2016-08-01 10:52:42 -03003159M: Igor Mammedov <imammedo@redhat.com>
3160S: Maintained
3161F: backends/hostmem*.c
3162F: include/sysemu/hostmem.h
David Hildenbrand9cd93132023-09-06 14:05:01 +02003163F: docs/system/vm-templating.rst
Eduardo Habkostf953c102020-12-14 16:20:32 -05003164T: git https://gitlab.com/ehabkost/qemu.git machine-next
Eduardo Habkost4fc264f2016-08-01 10:52:42 -03003165
Gonglei60340112016-10-28 16:33:31 +08003166Cryptodev Backends
3167M: Gonglei <arei.gonglei@huawei.com>
zhenwei pi2133e072023-03-01 18:58:47 +08003168M: zhenwei pi <pizhenwei@bytedance.com>
Gonglei60340112016-10-28 16:33:31 +08003169S: Maintained
3170F: include/sysemu/cryptodev*.h
3171F: backends/cryptodev*.c
zhenwei pi14c9fd12023-03-01 18:58:36 +08003172F: qapi/cryptodev.json
Gonglei60340112016-10-28 16:33:31 +08003173
John Snowb8eaee92020-07-10 15:30:14 -04003174Python library
3175M: John Snow <jsnow@redhat.com>
3176M: Cleber Rosa <crosa@redhat.com>
John Snow89d38c72022-02-07 19:05:25 -05003177R: Beraldo Leal <bleal@redhat.com>
John Snowb8eaee92020-07-10 15:30:14 -04003178S: Maintained
3179F: python/
3180T: git https://gitlab.com/jsnow/qemu.git python
3181
Eduardo Habkostad904f62017-09-15 20:07:44 -03003182Python scripts
John Snow89d38c72022-02-07 19:05:25 -05003183M: John Snow <jsnow@redhat.com>
Eduardo Habkostad904f62017-09-15 20:07:44 -03003184M: Cleber Rosa <crosa@redhat.com>
John Snow4251dfb2020-10-30 11:34:16 -04003185S: Odd Fixes
Eduardo Habkostad904f62017-09-15 20:07:44 -03003186F: scripts/*.py
3187F: tests/*.py
3188
Vladimir Sementsov-Ogievskiyf4abfc62020-02-28 10:19:14 +03003189Benchmark util
Vladimir Sementsov-Ogievskiy9e4067b2022-05-26 14:54:32 +03003190M: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
Vladimir Sementsov-Ogievskiyf4abfc62020-02-28 10:19:14 +03003191S: Maintained
3192F: scripts/simplebench/
Vladimir Sementsov-Ogievskiy9e4067b2022-05-26 14:54:32 +03003193T: git https://gitlab.com/vsementsov/qemu.git simplebench
Vladimir Sementsov-Ogievskiyf4abfc62020-02-28 10:19:14 +03003194
Vladimir Sementsov-Ogievskiy8cad15b2021-04-28 18:17:36 +03003195Transactions helper
Vladimir Sementsov-Ogievskiy9e4067b2022-05-26 14:54:32 +03003196M: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
Vladimir Sementsov-Ogievskiy8cad15b2021-04-28 18:17:36 +03003197S: Maintained
3198F: include/qemu/transactions.h
3199F: util/transactions.c
Vladimir Sementsov-Ogievskiy9e4067b2022-05-26 14:54:32 +03003200T: git https://gitlab.com/vsementsov/qemu.git block
Vladimir Sementsov-Ogievskiy8cad15b2021-04-28 18:17:36 +03003201
Luiz Capitulino8899b4a2013-06-03 11:14:26 -04003202QAPI
Luiz Capitulino97406182015-05-05 10:39:15 -04003203M: Markus Armbruster <armbru@redhat.com>
Michael Roth2f5f9bc2020-10-27 01:02:53 -05003204M: Michael Roth <michael.roth@amd.com>
Luiz Capitulino97406182015-05-05 10:39:15 -04003205S: Supported
Luiz Capitulino8899b4a2013-06-03 11:14:26 -04003206F: qapi/
Markus Armbruster0311c5b2015-06-12 15:15:54 +02003207X: qapi/*.json
Markus Armbrusterac4abb92015-09-24 18:11:57 +02003208F: include/qapi/
3209X: include/qapi/qmp/
3210F: include/qapi/qmp/dispatch.h
Paolo Bonzinic0bd0b52014-10-22 00:31:28 +02003211F: tests/qapi-schema/
Thomas Huthda668aa2021-03-10 07:33:14 +01003212F: tests/unit/test-*-visitor.c
3213F: tests/unit/test-qapi-*.c
3214F: tests/unit/test-qmp-*.c
3215F: tests/unit/test-visitor-serialization.c
Markus Armbrusterbe25fcc2018-06-20 14:48:27 +02003216F: scripts/qapi-gen.py
3217F: scripts/qapi/*
Peter Maydell4078ee52020-09-25 17:23:02 +01003218F: docs/sphinx/qapidoc.py
Philippe Mathieu-Daudéc39cdbf2017-09-08 14:36:31 -03003219F: docs/devel/qapi*
Stefan Hajnocziebe2aad2018-11-08 11:15:28 +00003220T: git https://repo.or.cz/qemu/armbru.git qapi-next
Luiz Capitulino8899b4a2013-06-03 11:14:26 -04003221
Luiz Capitulino7810d292013-06-03 11:11:53 -04003222QAPI Schema
3223M: Eric Blake <eblake@redhat.com>
Luiz Capitulino7810d292013-06-03 11:11:53 -04003224M: Markus Armbruster <armbru@redhat.com>
3225S: Supported
Markus Armbruster0311c5b2015-06-12 15:15:54 +02003226F: qapi/*.json
Philippe Mathieu-Daudé632d3b22024-07-17 15:58:28 +02003227F: qga/qapi-schema.json
Stefan Hajnocziebe2aad2018-11-08 11:15:28 +00003228T: git https://repo.or.cz/qemu/armbru.git qapi-next
Luiz Capitulino7810d292013-06-03 11:11:53 -04003229
Luiz Capitulinof3582ba2014-10-22 08:54:59 -04003230QObject
Markus Armbrusterdaf5dc72016-09-28 19:33:42 +02003231M: Markus Armbruster <armbru@redhat.com>
3232S: Supported
Luiz Capitulinof3582ba2014-10-22 08:54:59 -04003233F: qobject/
Markus Armbruster7735d2b2015-09-24 18:11:56 +02003234F: include/qapi/qmp/
3235X: include/qapi/qmp/dispatch.h
Eric Blakea2f34532017-04-27 16:58:14 -05003236F: scripts/coccinelle/qobject.cocci
Thomas Huthda668aa2021-03-10 07:33:14 +01003237F: tests/unit/check-qdict.c
3238F: tests/unit/check-qjson.c
3239F: tests/unit/check-qlist.c
3240F: tests/unit/check-qlit.c
3241F: tests/unit/check-qnull.c
3242F: tests/unit/check-qnum.c
3243F: tests/unit/check-qobject.c
3244F: tests/unit/check-qstring.c
Philippe Mathieu-Daudéfe07b622018-12-18 12:37:17 +01003245F: tests/data/qobject/qdict.txt
Stefan Hajnocziebe2aad2018-11-08 11:15:28 +00003246T: git https://repo.or.cz/qemu/armbru.git qapi-next
Luiz Capitulinof3582ba2014-10-22 08:54:59 -04003247
Michael Rothf05d9992014-10-22 07:05:36 -05003248QEMU Guest Agent
Michael Roth2f5f9bc2020-10-27 01:02:53 -05003249M: Michael Roth <michael.roth@amd.com>
Konstantin Kostiuke8cbe582022-07-18 11:52:28 +03003250M: Konstantin Kostiuk <kkostiuk@redhat.com>
Michael Rothf05d9992014-10-22 07:05:36 -05003251S: Maintained
3252F: qga/
Thomas Huth51145a02023-11-07 11:18:11 +01003253F: contrib/systemd/qemu-guest-agent.service
Peter Maydell27a296f2019-09-05 14:10:40 +01003254F: docs/interop/qemu-ga.rst
Peter Maydelldb161152020-09-25 17:23:03 +01003255F: docs/interop/qemu-ga-ref.rst
Philippe Mathieu-Daudéab7f9f72017-09-08 14:36:22 -03003256F: scripts/qemu-guest-agent/
Thomas Huth51145a02023-11-07 11:18:11 +01003257F: tests/*/test-qga*
Stefan Hajnoczie18a8b32018-11-08 11:15:26 +00003258T: git https://github.com/mdroth/qemu.git qga
Michael Rothf05d9992014-10-22 07:05:36 -05003259
Kostiantyn Kostiukcced3a72022-01-05 09:09:42 +00003260QEMU Guest Agent Win32
3261M: Konstantin Kostiuk <kkostiuk@redhat.com>
3262S: Maintained
3263F: qga/*win32*
3264F: qga/vss-win32/
3265F: qga/installer/
3266T: git https://github.com/kostyanf14/qemu.git qga-win32
3267
Andreas Färber4688c942014-04-24 15:00:14 +02003268QOM
Paolo Bonzini1085d862019-06-19 22:10:34 +02003269M: Paolo Bonzini <pbonzini@redhat.com>
3270R: Daniel P. Berrange <berrange@redhat.com>
Eduardo Habkost24c4cd12021-11-30 15:47:22 -05003271R: Eduardo Habkost <eduardo@habkost.net>
Andreas Färber4688c942014-04-24 15:00:14 +02003272S: Supported
Thomas Huth4db546d2022-12-12 18:48:41 +01003273F: docs/devel/qom.rst
Markus Armbruster8f920052019-06-24 16:48:19 +02003274F: docs/qdev-device-use.txt
3275F: hw/core/qdev*
Markus Armbrusterb77b5b32020-06-10 07:32:47 +02003276F: hw/core/bus.c
3277F: hw/core/sysbus.c
Markus Armbruster8f920052019-06-24 16:48:19 +02003278F: include/hw/qdev*
3279F: include/monitor/qdev.h
Andreas Färber4688c942014-04-24 15:00:14 +02003280F: include/qom/
Markus Armbrusterc577ff62019-06-19 22:10:37 +02003281F: qapi/qom.json
3282F: qapi/qdev.json
Paolo Bonzini22fb6eb2020-10-07 12:23:56 -04003283F: scripts/coccinelle/qom-parent-type.cocci
Philippe Mathieu-Daudée3e2c0c2023-06-01 11:34:51 +02003284F: scripts/qom-cast-macro-clean-cocci-gen.py
Philippe Mathieu-Daudé8d7f2e72023-10-04 11:06:28 +02003285F: system/qdev-monitor.c
Philippe Mathieu-Daudé9b45a022021-01-22 21:44:38 +01003286F: stubs/qdev.c
Andreas Färber4688c942014-04-24 15:00:14 +02003287F: qom/
Thomas Huthda668aa2021-03-10 07:33:14 +01003288F: tests/unit/check-qom-interface.c
3289F: tests/unit/check-qom-proplist.c
3290F: tests/unit/test-qdev-global-props.c
Andreas Färber4688c942014-04-24 15:00:14 +02003291
Eduardo Habkost94dfc0f2020-08-31 17:07:28 -04003292QOM boilerplate conversion script
Eduardo Habkost24c4cd12021-11-30 15:47:22 -05003293M: Eduardo Habkost <eduardo@habkost.net>
Eduardo Habkost94dfc0f2020-08-31 17:07:28 -04003294S: Maintained
3295F: scripts/codeconverter/
3296
Luiz Capitulino8899b4a2013-06-03 11:14:26 -04003297QMP
Luiz Capitulino97406182015-05-05 10:39:15 -04003298M: Markus Armbruster <armbru@redhat.com>
3299S: Supported
Kevin Wolf5bce3082019-06-13 17:33:59 +02003300F: monitor/monitor-internal.h
Kevin Wolff1b3ccf2019-06-13 17:33:58 +02003301F: monitor/qmp*
Kevin Wolfe84328f2019-06-13 17:33:57 +02003302F: monitor/misc.c
Kevin Wolf1d95db72019-06-13 17:34:02 +02003303F: monitor/monitor.c
Markus Armbruster92a3c6a2020-11-02 09:15:49 +01003304F: qapi/control.json
Markus Armbrusterabb3d372019-08-12 07:23:33 +02003305F: qapi/error.json
Markus Armbruster92a3c6a2020-11-02 09:15:49 +01003306F: qapi/introspect.json
Philippe Mathieu-Daudéc39cdbf2017-09-08 14:36:31 -03003307F: docs/devel/*qmp-*
Philippe Mathieu-Daudé12b2f0d2018-11-25 21:49:54 +01003308F: docs/interop/*qmp-*
Luiz Capitulino97406182015-05-05 10:39:15 -04003309F: scripts/qmp/
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02003310F: tests/qtest/qmp-test.c
3311F: tests/qtest/qmp-cmd-test.c
Stefan Hajnocziebe2aad2018-11-08 11:15:28 +00003312T: git https://repo.or.cz/qemu/armbru.git qapi-next
Luiz Capitulino8899b4a2013-06-03 11:14:26 -04003313
Paolo Bonzini98a43bf2018-08-14 17:40:41 +02003314qtest
Paolo Bonzini98a43bf2018-08-14 17:40:41 +02003315M: Thomas Huth <thuth@redhat.com>
3316M: Laurent Vivier <lvivier@redhat.com>
Paolo Bonzini2185fd62018-10-19 14:25:42 +02003317R: Paolo Bonzini <pbonzini@redhat.com>
Paolo Bonzini98a43bf2018-08-14 17:40:41 +02003318S: Maintained
Philippe Mathieu-Daudé8d7f2e72023-10-04 11:06:28 +02003319F: system/qtest.c
Thomas Huthabf8c472023-10-12 13:14:01 +02003320F: include/sysemu/qtest.h
Claudio Fontana1583a382020-07-07 10:21:10 +02003321F: accel/qtest/
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02003322F: tests/qtest/
Emanuele Giuseppe Esposito222455e2021-03-08 08:32:40 +01003323F: docs/devel/qgraph.rst
Thomas Huth4db546d2022-12-12 18:48:41 +01003324F: docs/devel/qtest.rst
Thomas Huth520ddc12020-10-01 06:27:17 +02003325X: tests/qtest/bios-tables-test*
Thomas Huth3f6be802024-06-19 07:54:47 +02003326X: tests/qtest/migration-*
Paolo Bonzini98a43bf2018-08-14 17:40:41 +02003327
Alexander Bulekov5f6fd092020-02-19 23:11:08 -05003328Device Fuzzing
3329M: Alexander Bulekov <alxndr@bu.edu>
3330R: Paolo Bonzini <pbonzini@redhat.com>
3331R: Bandan Das <bsd@redhat.com>
3332R: Stefan Hajnoczi <stefanha@redhat.com>
Thomas Huth6184e5f2020-07-21 07:36:09 +02003333R: Thomas Huth <thuth@redhat.com>
Darren Kenny85221b02021-08-24 14:04:01 +00003334R: Darren Kenny <darren.kenny@oracle.com>
Qiuhao Li5d32fc32021-08-24 14:26:39 +08003335R: Qiuhao Li <Qiuhao.Li@outlook.com>
Alexander Bulekov5f6fd092020-02-19 23:11:08 -05003336S: Maintained
3337F: tests/qtest/fuzz/
Philippe Mathieu-Daudéd3d39fc2021-01-26 12:28:49 +01003338F: tests/qtest/fuzz-*test.c
Alex Bennée4ab20b52023-06-30 19:03:54 +01003339F: tests/docker/test-fuzz
Alexander Bulekov211635b2020-06-12 01:51:45 -04003340F: scripts/oss-fuzz/
Alexander Bulekov230376d2021-03-15 10:05:10 -04003341F: hw/mem/sparse-mem.c
Alexander Bulekovf3a02082020-11-06 13:05:59 -05003342F: docs/devel/fuzzing.rst
Alexander Bulekov5f6fd092020-02-19 23:11:08 -05003343
Alistair Franciscc0100f2016-07-28 09:55:39 -07003344Register API
Alistair Francisc22e5802018-03-01 11:05:58 +00003345M: Alistair Francis <alistair@alistair23.me>
Alistair Franciscc0100f2016-07-28 09:55:39 -07003346S: Maintained
3347F: hw/core/register.c
3348F: include/hw/register.h
Philippe Mathieu-Daudé06a7b242017-12-13 02:17:33 -03003349F: include/hw/registerfields.h
Alistair Franciscc0100f2016-07-28 09:55:39 -07003350
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05003351SLIRP
Samuel Thibaulteda509f2015-08-06 13:10:14 +02003352M: Samuel Thibault <samuel.thibault@ens-lyon.org>
Jan Kiszkabafc72a2011-07-27 14:21:32 +02003353S: Maintained
Thomas Huth663fb1e2015-12-15 09:48:15 +01003354F: net/slirp.c
Thomas Huthd24b2b12016-02-25 12:56:24 +01003355F: include/net/slirp.h
Samuel Thibault02cffe22018-05-31 21:45:10 +02003356T: git https://people.debian.org/~sthibault/qemu.git slirp
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05003357
Markus Armbrusteraa09b3d2023-01-24 13:19:36 +01003358Stats
3359S: Orphan
3360F: include/sysemu/stats.h
3361F: stats/
Markus Armbruster0afbba62024-02-05 09:47:47 +01003362F: qapi/stats.json
Markus Armbrusteraa09b3d2023-01-24 13:19:36 +01003363
Edgar E. Iglesias6d0af392020-05-06 10:25:13 +02003364Streams
3365M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
3366S: Maintained
3367F: hw/core/stream.c
3368F: include/hw/stream.h
3369
Paolo Bonzinib1ed7282016-08-24 16:04:56 +02003370Stubs
3371M: Paolo Bonzini <pbonzini@redhat.com>
3372S: Maintained
3373F: stubs/
3374
Stefan Hajnoczi598a3f32011-09-03 16:24:47 +01003375Tracing
Stefan Hajnoczi1cd0f8c2012-10-07 18:08:49 +02003376M: Stefan Hajnoczi <stefanha@redhat.com>
Mads Ynddal84197262023-09-26 12:34:35 +02003377R: Mads Ynddal <mads@ynddal.dk>
Stefan Hajnoczi598a3f32011-09-03 16:24:47 +01003378S: Maintained
3379F: trace/
Thomas Huth0e076292018-05-09 06:38:20 +02003380F: trace-events
Peter Maydell3a8273b2020-02-28 15:36:18 +00003381F: docs/qemu-option-trace.rst.inc
Markus Armbruster92a3c6a2020-11-02 09:15:49 +01003382F: qapi/trace.json
Lluís Vilanovaf70fd8f2012-04-03 20:48:17 +02003383F: scripts/tracetool.py
3384F: scripts/tracetool/
Daniel P. Berrangé62dd1042019-01-23 12:00:16 +00003385F: scripts/qemu-trace-stap*
Wainer dos Santos Moschetta33b2b382021-02-04 10:54:25 -03003386F: docs/tools/qemu-trace-stap.rst
Stefano Garzarellad0fb9652021-05-17 17:16:58 +02003387F: docs/devel/tracing.rst
Stefan Hajnoczie18a8b32018-11-08 11:15:26 +00003388T: git https://github.com/stefanha/qemu.git tracing
Stefan Hajnoczi598a3f32011-09-03 16:24:47 +01003389
Mads Ynddal84197262023-09-26 12:34:35 +02003390Simpletrace
3391M: Mads Ynddal <mads@ynddal.dk>
3392S: Maintained
3393F: scripts/simpletrace.py
3394
Markus Armbruster3859b6c2017-08-24 21:14:03 +02003395TPM
Stefan Berger1f636692018-10-30 17:34:09 -04003396M: Stefan Berger <stefanb@linux.ibm.com>
Stefan Berger6b4f2502017-09-07 16:16:24 -04003397S: Maintained
Philippe Mathieu-Daudé8d7f2e72023-10-04 11:06:28 +02003398F: system/tpm*
Markus Armbruster3859b6c2017-08-24 21:14:03 +02003399F: hw/tpm/*
3400F: include/hw/acpi/tpm.h
3401F: include/sysemu/tpm*
3402F: qapi/tpm.json
Philippe Mathieu-Daudé8ae92e22020-06-12 10:54:34 +02003403F: backends/tpm/
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02003404F: tests/qtest/*tpm*
Thomas Huth4db546d2022-12-12 18:48:41 +01003405F: docs/specs/tpm.rst
Stefan Hajnoczie18a8b32018-11-08 11:15:26 +00003406T: git https://github.com/stefanberger/qemu-tpm.git tpm-next
Markus Armbruster3859b6c2017-08-24 21:14:03 +02003407
Huai-Cheng Kuobc419a12024-07-03 19:20:26 +10003408SPDM
3409M: Alistair Francis <alistair.francis@wdc.com>
3410S: Maintained
3411F: backends/spdm-socket.c
3412F: include/sysemu/spdm-socket.h
3413
Blue Swirl14f40fd2011-11-26 09:51:23 +00003414Checkpatch
Blue Swirl14f40fd2011-11-26 09:51:23 +00003415S: Odd Fixes
3416F: scripts/checkpatch.pl
3417
Juan Quintelac0787c82014-10-15 10:34:50 +02003418Migration
Peter Xu2bace552023-10-03 10:38:47 -04003419M: Peter Xu <peterx@redhat.com>
3420M: Fabiano Rosas <farosas@suse.de>
Juan Quintelac0787c82014-10-15 10:34:50 +02003421S: Maintained
Marc-André Lureau107b5962019-08-28 16:00:19 +04003422F: hw/core/vmstate-if.c
3423F: include/hw/vmstate-if.h
Juan Quintelac0787c82014-10-15 10:34:50 +02003424F: include/migration/
Markus Armbrusterb8628882023-01-19 10:15:44 +01003425F: include/qemu/userfaultfd.h
Dr. David Alan Gilbert44a1f942014-12-12 11:13:42 +00003426F: migration/
Amit Shahc5515642014-11-18 18:01:25 +05303427F: scripts/vmstate-static-checker.py
3428F: tests/vmstate-static-checker-data/
Thomas Huth3f6be802024-06-19 07:54:47 +02003429F: tests/qtest/migration-*
Avihai Horon8e0b21e2024-04-07 11:11:25 +03003430F: docs/devel/migration/
Markus Armbruster48685a82017-08-24 21:14:01 +02003431F: qapi/migration.json
Hyman Huang(黄勇)fac87d42021-03-19 16:07:57 +08003432F: tests/migration/
Markus Armbrusterb8628882023-01-19 10:15:44 +01003433F: util/userfaultfd.c
Peter Xu8ebcb4b2023-09-25 09:34:41 -04003434X: migration/rdma*
3435
3436RDMA Migration
Peter Xu8ebcb4b2023-09-25 09:34:41 -04003437R: Li Zhijian <lizhijian@fujitsu.com>
3438R: Peter Xu <peterx@redhat.com>
Peter Xu8ebcb4b2023-09-25 09:34:41 -04003439S: Odd Fixes
3440F: migration/rdma*
Juan Quintelac0787c82014-10-15 10:34:50 +02003441
Hyman Huang(黄勇)2b3edd92023-07-27 02:10:09 +08003442Migration dirty limit and dirty page rate
3443M: Hyman Huang <yong.huang@smartx.com>
3444S: Maintained
Philippe Mathieu-Daudé8d7f2e72023-10-04 11:06:28 +02003445F: system/dirtylimit.c
Hyman Huang(黄勇)2b3edd92023-07-27 02:10:09 +08003446F: include/sysemu/dirtylimit.h
3447F: migration/dirtyrate.c
3448F: migration/dirtyrate.h
3449F: include/sysemu/dirtyrate.h
Avihai Horon8e0b21e2024-04-07 11:11:25 +03003450F: docs/devel/migration/dirty-limit.rst
Hyman Huang(黄勇)2b3edd92023-07-27 02:10:09 +08003451
Hyman Huangd87b2582024-01-30 13:37:25 +08003452Detached LUKS header
3453M: Hyman Huang <yong.huang@smartx.com>
3454S: Maintained
3455F: tests/qemu-iotests/tests/luks-detached-header
Hyman Huang9263c412024-02-20 00:04:42 +08003456F: docs/devel/luks-detached-header.rst
Hyman Huangd87b2582024-01-30 13:37:25 +08003457
Marc-André Lureaua5669072019-09-12 16:03:32 +04003458D-Bus
3459M: Marc-André Lureau <marcandre.lureau@redhat.com>
3460S: Maintained
Marc-André Lureau5010cec2019-12-16 11:48:53 +04003461F: backends/dbus-vmstate.c
Marc-André Lureau89f4df92021-10-10 00:30:30 +04003462F: ui/dbus*
3463F: audio/dbus*
Marc-André Lureaua5021d62019-09-27 12:16:54 +04003464F: util/dbus.c
Marc-André Lureau89f4df92021-10-10 00:30:30 +04003465F: include/ui/dbus*
Marc-André Lureaua5021d62019-09-27 12:16:54 +04003466F: include/qemu/dbus.h
Marc-André Lureau89f4df92021-10-10 00:30:30 +04003467F: docs/interop/dbus*
3468F: docs/sphinx/dbus*
3469F: docs/sphinx/fakedbusdoc.py
3470F: tests/qtest/dbus*
Marc-André Lureau9b286e72023-06-06 15:56:41 +04003471F: scripts/xml-preprocess*
Marc-André Lureaua5669072019-09-12 16:03:32 +04003472
Eduardo Otubo92bfedb2013-09-09 14:04:15 -03003473Seccomp
Daniel P. Berrangée3160de2022-02-03 10:49:28 +00003474M: Daniel P. Berrange <berrange@redhat.com>
3475S: Odd Fixes
Philippe Mathieu-Daudé8d7f2e72023-10-04 11:06:28 +02003476F: system/qemu-seccomp.c
Eduardo Otubo92bfedb2013-09-09 14:04:15 -03003477F: include/sysemu/seccomp.h
Daniel P. Berrangéd2ea8da2021-07-29 13:15:43 +01003478F: tests/unit/test-seccomp.c
Eduardo Otubo92bfedb2013-09-09 14:04:15 -03003479
Daniel P. Berrangeddbb0d02015-07-01 18:10:29 +01003480Cryptography
3481M: Daniel P. Berrange <berrange@redhat.com>
3482S: Maintained
3483F: crypto/
3484F: include/crypto/
Richard Henderson6b0a96c2023-06-01 21:57:10 -07003485F: host/include/*/host/crypto/
Markus Armbruster92a3c6a2020-11-02 09:15:49 +01003486F: qapi/crypto.json
Thomas Huthda668aa2021-03-10 07:33:14 +01003487F: tests/unit/test-crypto-*
Thomas Huth3b472e72021-03-12 10:22:38 +01003488F: tests/bench/benchmark-crypto-*
Thomas Huthda668aa2021-03-10 07:33:14 +01003489F: tests/unit/crypto-tls-*
Philippe Mathieu-Daudé0e9bb8a2024-05-02 11:56:41 +02003490F: tests/unit/pkix_asn1_tab.c.inc
Daniel P. Berrange899833c2017-03-16 11:18:46 +00003491F: qemu.sasl
Daniel P. Berrangeddbb0d02015-07-01 18:10:29 +01003492
Daniel P. Berrange10817bf2015-09-01 14:48:02 +01003493Coroutines
3494M: Stefan Hajnoczi <stefanha@redhat.com>
3495M: Kevin Wolf <kwolf@redhat.com>
Stefan Hajnoczi00a25292019-03-01 16:35:18 +00003496S: Maintained
Daniel P. Berrange10817bf2015-09-01 14:48:02 +01003497F: util/*coroutine*
3498F: include/qemu/coroutine*
Thomas Huthda668aa2021-03-10 07:33:14 +01003499F: tests/unit/test-coroutine.c
Daniel P. Berrange10817bf2015-09-01 14:48:02 +01003500
Daniel P. Berrange88c5f202015-03-03 17:13:42 +00003501Buffers
3502M: Daniel P. Berrange <berrange@redhat.com>
John Snow4251dfb2020-10-30 11:34:16 -04003503S: Odd Fixes
Daniel P. Berrange88c5f202015-03-03 17:13:42 +00003504F: util/buffer.c
3505F: include/qemu/buffer.h
3506
Daniel P. Berrange666a3af2015-02-27 16:19:33 +00003507I/O Channels
3508M: Daniel P. Berrange <berrange@redhat.com>
3509S: Maintained
3510F: io/
3511F: include/io/
Thomas Huthda668aa2021-03-10 07:33:14 +01003512F: tests/unit/test-io-*
Daniel P. Berrange666a3af2015-02-27 16:19:33 +00003513
Daniel P. Berrange5b76dd12015-10-21 13:16:21 +01003514User authorization
3515M: Daniel P. Berrange <berrange@redhat.com>
3516S: Maintained
3517F: authz/
Daniel P. Berrangec8c99882015-10-21 14:54:59 +01003518F: qapi/authz.json
Daniel P. Berrange5b76dd12015-10-21 13:16:21 +01003519F: include/authz/
Thomas Huthda668aa2021-03-10 07:33:14 +01003520F: tests/unit/test-authz-*
Daniel P. Berrange5b76dd12015-10-21 13:16:21 +01003521
Gerd Hoffmann5614a282016-01-18 16:03:23 +01003522Sockets
3523M: Daniel P. Berrange <berrange@redhat.com>
Gerd Hoffmann5614a282016-01-18 16:03:23 +01003524S: Maintained
3525F: include/qemu/sockets.h
3526F: util/qemu-sockets.c
Markus Armbrustera2ff5a42017-08-24 21:13:56 +02003527F: qapi/sockets.json
Gerd Hoffmann5614a282016-01-18 16:03:23 +01003528
Daniel P. Berrangé90e33df2018-06-08 17:24:57 +01003529File monitor
3530M: Daniel P. Berrange <berrange@redhat.com>
John Snow4251dfb2020-10-30 11:34:16 -04003531S: Odd Fixes
Daniel P. Berrangé90e33df2018-06-08 17:24:57 +01003532F: util/filemonitor*.c
3533F: include/qemu/filemonitor.h
Thomas Huthda668aa2021-03-10 07:33:14 +01003534F: tests/unit/test-util-filemonitor.c
Daniel P. Berrangé90e33df2018-06-08 17:24:57 +01003535
Alberto Garciad310d852016-02-18 12:27:10 +02003536Throttling infrastructure
3537M: Alberto Garcia <berto@igalia.com>
3538S: Supported
3539F: block/throttle-groups.c
3540F: include/block/throttle-groups.h
Philippe Mathieu-Daudé89603932017-09-08 14:36:27 -03003541F: include/qemu/throttle*.h
Alberto Garciad310d852016-02-18 12:27:10 +02003542F: util/throttle.c
Philippe Mathieu-Daudé89603932017-09-08 14:36:27 -03003543F: docs/throttle.txt
Thomas Huthda668aa2021-03-10 07:33:14 +01003544F: tests/unit/test-throttle.c
Alberto Garciad310d852016-02-18 12:27:10 +02003545L: qemu-block@nongnu.org
3546
Fam Zheng080d7aa2016-09-21 12:27:25 +08003547UUID
Fam Zhengfe5ca462018-11-21 23:30:36 +08003548M: Fam Zheng <fam@euphon.net>
Fam Zheng080d7aa2016-09-21 12:27:25 +08003549S: Supported
3550F: util/uuid.c
3551F: include/qemu/uuid.h
Thomas Huthda668aa2021-03-10 07:33:14 +01003552F: tests/unit/test-uuid.c
Fam Zheng080d7aa2016-09-21 12:27:25 +08003553
Lukas Straub50186052020-12-28 16:08:41 +01003554Yank feature
3555M: Lukas Straub <lukasstraub2@web.de>
3556S: Odd fixes
3557F: util/yank.c
Lukas Straub1a92d6d2021-03-23 18:52:42 +01003558F: migration/yank_functions*
Lukas Straubd3a0bb72021-03-30 20:13:35 +02003559F: tests/unit/test-yank.c
Lukas Straub50186052020-12-28 16:08:41 +01003560F: include/qemu/yank.h
3561F: qapi/yank.json
3562
zhanghailianga4cc3182016-10-27 14:43:09 +08003563COLO Framework
Hailiang Zhang2ac7d742021-12-14 15:54:24 +08003564M: Hailiang Zhang <zhanghailiang@xfusion.com>
zhanghailianga4cc3182016-10-27 14:43:09 +08003565S: Maintained
3566F: migration/colo*
3567F: include/migration/colo.h
3568F: include/migration/failover.h
3569F: docs/COLO-FT.txt
3570
Zhang Chen88f82ed2016-09-27 10:22:35 +08003571COLO Proxy
Zhang Chenc6bf50f2019-03-15 14:12:58 +08003572M: Zhang Chen <chen.zhang@intel.com>
Li Zhijian2ece6e62021-12-31 13:09:01 +08003573M: Li Zhijian <lizhijian@fujitsu.com>
Zhang Chen88f82ed2016-09-27 10:22:35 +08003574S: Supported
3575F: docs/colo-proxy.txt
3576F: net/colo*
3577F: net/filter-rewriter.c
3578F: net/filter-mirror.c
Zhang Chen487cf3f2021-12-21 16:04:00 +08003579F: tests/qtest/test-filter*
Zhang Chen88f82ed2016-09-27 10:22:35 +08003580
Pavel Dovgalyuk62258202017-05-03 14:33:04 +03003581Record/replay
3582M: Pavel Dovgalyuk <pavel.dovgaluk@ispras.ru>
3583R: Paolo Bonzini <pbonzini@redhat.com>
Stefan Hajnoczi70b7fba2017-11-21 12:04:35 +00003584W: https://wiki.qemu.org/Features/record-replay
Pavel Dovgalyuk62258202017-05-03 14:33:04 +03003585S: Supported
3586F: replay/*
3587F: block/blkreplay.c
3588F: net/filter-replay.c
Philippe Mathieu-Daudé5b5968c2022-12-19 18:09:43 +01003589F: include/exec/replay-core.h
Pavel Dovgalyuk62258202017-05-03 14:33:04 +03003590F: include/sysemu/replay.h
Thomas Huth4db546d2022-12-12 18:48:41 +01003591F: docs/devel/replay.rst
3592F: docs/system/replay.rst
Pavel Dovgalyuk62258202017-05-03 14:33:04 +03003593F: stubs/replay.c
Willian Rampazzobbbd9b62021-11-05 12:53:54 -03003594F: tests/avocado/replay_kernel.py
3595F: tests/avocado/replay_linux.py
3596F: tests/avocado/reverse_debugging.py
Pavel Dovgalyuk43d7e1d2020-10-03 20:13:14 +03003597F: qapi/replay.json
Pavel Dovgalyuk62258202017-05-03 14:33:04 +03003598
Peter Xueecf5ee2018-05-18 15:25:16 +08003599IOVA Tree
3600M: Peter Xu <peterx@redhat.com>
3601S: Maintained
3602F: include/qemu/iova-tree.h
3603F: util/iova-tree.c
3604
Viktor Prutyanov5ee547b2018-09-18 12:54:22 +03003605elf2dmp
3606M: Viktor Prutyanov <viktor.prutyanov@phystech.edu>
Akihiko Odakia2de23c2024-03-07 19:20:58 +09003607R: Akihiko Odaki <akihiko.odaki@daynix.com>
Viktor Prutyanov5ee547b2018-09-18 12:54:22 +03003608S: Maintained
3609F: contrib/elf2dmp/
3610
Philippe Mathieu-Daudé39131a42023-02-20 12:02:35 +01003611Overall sensors
3612M: Philippe Mathieu-Daudé <philmd@linaro.org>
3613S: Odd Fixes
3614F: hw/sensor
3615F: include/hw/sensor
3616
Corey Minyard93198b62018-11-13 18:31:27 -06003617I2C and SMBus
3618M: Corey Minyard <cminyard@mvista.com>
3619S: Maintained
3620F: hw/i2c/core.c
3621F: hw/i2c/smbus_slave.c
3622F: hw/i2c/smbus_master.c
3623F: hw/i2c/smbus_eeprom.c
3624F: include/hw/i2c/i2c.h
3625F: include/hw/i2c/smbus_master.h
3626F: include/hw/i2c/smbus_slave.h
3627F: include/hw/i2c/smbus_eeprom.h
3628
Titus Rwantarebf0e0c72022-03-07 12:06:01 -08003629PMBus
3630M: Titus Rwantare <titusr@google.com>
3631S: Maintained
3632F: hw/i2c/pmbus_device.c
3633F: hw/sensor/adm1272.c
Titus Rwantareffcdae62022-03-07 12:06:03 -08003634F: hw/sensor/isl_pmbus_vr.c
Titus Rwantarebf0e0c72022-03-07 12:06:01 -08003635F: hw/sensor/max34451.c
3636F: include/hw/i2c/pmbus_device.h
Titus Rwantareffcdae62022-03-07 12:06:03 -08003637F: include/hw/sensor/isl_pmbus_vr.h
Titus Rwantarebf0e0c72022-03-07 12:06:01 -08003638F: tests/qtest/adm1272-test.c
3639F: tests/qtest/max34451-test.c
Titus Rwantareffcdae62022-03-07 12:06:03 -08003640F: tests/qtest/isl_pmbus_vr-test.c
Titus Rwantarebf0e0c72022-03-07 12:06:01 -08003641
Ninad Palsule649b8ed2024-01-26 04:49:56 -06003642FSI
3643M: Ninad Palsule <ninad@linux.ibm.com>
3644R: Cédric Le Goater <clg@kaod.org>
3645S: Maintained
3646F: hw/fsi/*
3647F: include/hw/fsi/*
3648F: docs/specs/fsi.rst
3649F: tests/qtest/aspeed_fsi-test.c
3650
Philippe Mathieu-Daudéd0d89522020-07-03 20:34:50 +02003651Firmware schema specifications
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02003652M: Philippe Mathieu-Daudé <philmd@linaro.org>
Philippe Mathieu-Daudéd0d89522020-07-03 20:34:50 +02003653R: Daniel P. Berrange <berrange@redhat.com>
3654R: Kashyap Chamarthy <kchamart@redhat.com>
3655S: Maintained
3656F: docs/interop/firmware.json
3657
Laszlo Ersek6739df32019-03-13 13:40:07 +01003658EDK2 Firmware
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02003659M: Philippe Mathieu-Daudé <philmd@linaro.org>
Gerd Hoffmann9b437cd2022-03-08 13:36:00 +01003660M: Gerd Hoffmann <kraxel@redhat.com>
Laszlo Ersek6739df32019-03-13 13:40:07 +01003661S: Supported
Philippe Mathieu-Daudéb5b31862021-05-21 15:34:07 +02003662F: hw/i386/*ovmf*
Laszlo Ersek6739df32019-03-13 13:40:07 +01003663F: pc-bios/descriptors/??-edk2-*.json
3664F: pc-bios/edk2-*
3665F: roms/Makefile.edk2
3666F: roms/edk2
3667F: roms/edk2-*
3668F: tests/data/uefi-boot-images/
3669F: tests/uefi-test-tools/
3670
Peter Xu8bc43f32020-07-01 08:44:18 -04003671VT-d Emulation
3672M: Michael S. Tsirkin <mst@redhat.com>
Peter Xu8bc43f32020-07-01 08:44:18 -04003673R: Jason Wang <jasowang@redhat.com>
Yi Liue3f15732024-07-07 20:21:12 -07003674R: Yi Liu <yi.l.liu@intel.com>
Peter Xu8bc43f32020-07-01 08:44:18 -04003675S: Supported
3676F: hw/i386/intel_iommu.c
3677F: hw/i386/intel_iommu_internal.h
3678F: include/hw/i386/intel_iommu.h
3679
Philippe Mathieu-Daudé2f5a2b32023-03-13 16:30:26 +01003680AMD-Vi Emulation
3681S: Orphan
3682F: hw/i386/amd_iommu.?
3683
Bin Menge92fb012020-06-26 06:13:40 -07003684OpenSBI Firmware
3685M: Bin Meng <bmeng.cn@gmail.com>
3686S: Supported
3687F: pc-bios/opensbi-*
3688F: .gitlab-ci.d/opensbi.yml
3689F: .gitlab-ci.d/opensbi/
3690
Luc Michel59c7a182021-02-11 09:53:18 +01003691Clock framework
3692M: Luc Michel <luc@lmichel.fr>
Damien Hedde1d7e6722023-02-13 10:53:06 +00003693R: Damien Hedde <damien.hedde@dahe.fr>
Luc Michel59c7a182021-02-11 09:53:18 +01003694S: Maintained
3695F: include/hw/clock.h
3696F: include/hw/qdev-clock.h
3697F: hw/core/clock.c
3698F: hw/core/clock-vmstate.c
3699F: hw/core/qdev-clock.c
3700F: docs/devel/clocks.rst
3701
Peter Maydell4c046ce2024-02-20 16:06:18 +00003702Reset framework
3703M: Peter Maydell <peter.maydell@linaro.org>
3704S: Maintained
3705F: include/hw/resettable.h
3706F: include/hw/core/resetcontainer.h
3707F: include/sysemu/reset.h
3708F: hw/core/reset.c
3709F: hw/core/resettable.c
3710F: hw/core/resetcontainer.c
3711
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05003712Usermode Emulation
3713------------------
Markus Armbruster6347e1f2019-06-06 19:24:07 +02003714Overall usermode emulation
Paolo Bonzini486bbe52014-10-22 00:18:01 +02003715M: Riku Voipio <riku.voipio@iki.fi>
3716S: Maintained
Philippe Mathieu-Daudé58410662017-09-11 18:33:25 -03003717F: accel/tcg/user-exec*.c
Richard Hendersonbbf15aa2021-11-17 16:14:00 +01003718F: include/user/
3719F: common-user/
Paolo Bonzini486bbe52014-10-22 00:18:01 +02003720
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05003721BSD user
Warner Losh65a9d382021-03-08 15:40:23 -07003722M: Warner Losh <imp@bsdimp.com>
3723R: Kyle Evans <kevans@freebsd.org>
3724S: Maintained
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05003725F: bsd-user/
Alex Bennée812b31d2021-07-07 14:17:43 +01003726F: configs/targets/*-bsd-user.mak
Warner Loshadbae402022-01-09 11:50:24 -07003727F: tests/vm/*bsd
Warner Losh65a9d382021-03-08 15:40:23 -07003728T: git https://github.com/qemu-bsd-user/qemu-bsd-user bsd-user-rebase-3.1
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05003729
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05003730Linux user
Riku Voipio8f902c52020-07-02 14:16:36 +03003731M: Laurent Vivier <laurent@vivier.eu>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05003732S: Maintained
3733F: linux-user/
Alex Bennée812b31d2021-07-07 14:17:43 +01003734F: configs/targets/*linux-user.mak
Thomas Huthe5dd9872018-01-02 17:25:26 +01003735F: scripts/qemu-binfmt-conf.sh
Laurent Viviere3a6c822020-03-10 11:34:00 +01003736F: scripts/update-syscalltbl.sh
Laurent Vivier57333332020-03-10 11:34:03 +01003737F: scripts/update-mips-syscall-args.sh
Laurent Vivier382ae672020-03-16 09:56:17 +01003738F: scripts/gensyscalls.sh
Aurelien Jarno42f5a7e2011-01-14 20:39:19 +01003739
3740Tiny Code Generator (TCG)
3741-------------------------
Markus Armbruster6347e1f2019-06-06 19:24:07 +02003742Common TCG code
Richard Henderson336f7442020-11-12 20:35:43 -08003743M: Richard Henderson <richard.henderson@linaro.org>
Aurelien Jarno42f5a7e2011-01-14 20:39:19 +01003744S: Maintained
3745F: tcg/
Philippe Mathieu-Daudéd3582cf2020-01-01 12:23:02 +01003746F: include/tcg/
Aurelien Jarno42f5a7e2011-01-14 20:39:19 +01003747
Alex Bennée22b58672019-10-17 14:25:23 +01003748TCG Plugins
3749M: Alex Bennée <alex.bennee@linaro.org>
Alexandre Iooss3d7caf12021-07-09 15:29:59 +01003750R: Alexandre Iooss <erdnaxe@crans.org>
Mahmoud Mandoura6b95a92021-07-09 15:30:05 +01003751R: Mahmoud Mandour <ma.mandourr@gmail.com>
Pierrick Bouvier1a8081d2024-01-18 07:23:58 +04003752R: Pierrick Bouvier <pierrick.bouvier@linaro.org>
Alex Bennée22b58672019-10-17 14:25:23 +01003753S: Maintained
Alex Bennée8ea6abf2019-11-12 16:28:53 +00003754F: docs/devel/tcg-plugins.rst
Alex Bennée22b58672019-10-17 14:25:23 +01003755F: plugins/
Alex Bennée1b4c1362024-07-29 15:44:09 +01003756F: tests/tcg/plugins/
Willian Rampazzobbbd9b62021-11-05 12:53:54 -03003757F: tests/avocado/tcg_plugins.py
Alex Bennéec17a3862020-09-09 12:27:41 +01003758F: contrib/plugins/
Alex Bennée22b58672019-10-17 14:25:23 +01003759
Markus Armbruster6347e1f2019-06-06 19:24:07 +02003760AArch64 TCG target
Richard Henderson3e5a01e2020-01-06 16:30:37 +10003761M: Richard Henderson <richard.henderson@linaro.org>
Claudio Fontanab25a4642013-06-12 16:20:24 +01003762S: Maintained
Peter Maydellb4f2bd12015-11-03 13:49:42 +00003763L: qemu-arm@nongnu.org
Claudio Fontanab25a4642013-06-12 16:20:24 +01003764F: tcg/aarch64/
3765
Markus Armbruster6347e1f2019-06-06 19:24:07 +02003766ARM TCG target
Peter Maydell7c6ef612021-07-22 19:09:51 +01003767M: Richard Henderson <richard.henderson@linaro.org>
Aurelien Jarno42f5a7e2011-01-14 20:39:19 +01003768S: Maintained
Peter Maydellb4f2bd12015-11-03 13:49:42 +00003769L: qemu-arm@nongnu.org
Aurelien Jarno42f5a7e2011-01-14 20:39:19 +01003770F: tcg/arm/
3771
Markus Armbruster6347e1f2019-06-06 19:24:07 +02003772i386 TCG target
Richard Henderson336f7442020-11-12 20:35:43 -08003773M: Richard Henderson <richard.henderson@linaro.org>
Aurelien Jarno42f5a7e2011-01-14 20:39:19 +01003774S: Maintained
3775F: tcg/i386/
3776
WANG Xueruiafa33252021-12-21 13:40:36 +08003777LoongArch64 TCG target
3778M: WANG Xuerui <git@xen0n.name>
3779S: Maintained
3780F: tcg/loongarch64/
3781
Markus Armbruster6347e1f2019-06-06 19:24:07 +02003782MIPS TCG target
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02003783M: Philippe Mathieu-Daudé <philmd@linaro.org>
Aleksandar Markovic099d5102020-03-13 02:00:50 +01003784R: Aurelien Jarno <aurelien@aurel32.net>
Huacai Chendab1e1e2020-12-05 17:22:01 +08003785R: Huacai Chen <chenhuacai@kernel.org>
Aleksandar Markovic15d983d2020-07-01 20:25:58 +02003786R: Jiaxun Yang <jiaxun.yang@flygoat.com>
Aleksandar Rikalo45c577f2024-02-09 07:21:47 +01003787R: Aleksandar Rikalo <arikalo@gmail.com>
Philippe Mathieu-Daudécf960312020-10-09 17:05:13 +02003788S: Odd Fixes
Aurelien Jarno42f5a7e2011-01-14 20:39:19 +01003789F: tcg/mips/
3790
Markus Armbruster6347e1f2019-06-06 19:24:07 +02003791PPC TCG target
Richard Henderson336f7442020-11-12 20:35:43 -08003792M: Richard Henderson <richard.henderson@linaro.org>
Pranith Kumar15610d42016-10-18 10:21:00 -07003793S: Odd Fixes
Aurelien Jarno42f5a7e2011-01-14 20:39:19 +01003794F: tcg/ppc/
Aurelien Jarno42f5a7e2011-01-14 20:39:19 +01003795
Markus Armbruster6347e1f2019-06-06 19:24:07 +02003796RISC-V TCG target
Palmer Dabbeltc1677bc2019-10-29 09:39:03 -07003797M: Palmer Dabbelt <palmer@dabbelt.com>
Alistair Francisfb1f70f2018-12-19 19:17:07 +00003798M: Alistair Francis <Alistair.Francis@wdc.com>
3799L: qemu-riscv@nongnu.org
3800S: Maintained
3801F: tcg/riscv/
Thomas Huth5d0ce902023-09-29 14:37:27 +02003802F: disas/riscv.[ch]
Alistair Francisfb1f70f2018-12-19 19:17:07 +00003803
Markus Armbruster6347e1f2019-06-06 19:24:07 +02003804S390 TCG target
Richard Henderson336f7442020-11-12 20:35:43 -08003805M: Richard Henderson <richard.henderson@linaro.org>
Aurelien Jarno42f5a7e2011-01-14 20:39:19 +01003806S: Maintained
3807F: tcg/s390/
Cornelia Huck146bd282017-10-05 17:05:23 +02003808L: qemu-s390x@nongnu.org
Aurelien Jarno42f5a7e2011-01-14 20:39:19 +01003809
Markus Armbruster6347e1f2019-06-06 19:24:07 +02003810SPARC TCG target
Markus Armbruster297e8002016-06-20 16:19:25 +02003811S: Odd Fixes
Richard Henderson6d0b52e2022-10-17 08:00:57 +03003812F: tcg/sparc64/
Paolo Bonzinic17652e2015-09-22 11:36:16 +02003813F: disas/sparc.c
Stefan Weilbc75c9e2011-11-24 23:20:43 +01003814
Markus Armbruster6347e1f2019-06-06 19:24:07 +02003815TCI TCG target
Stefan Weilbc75c9e2011-11-24 23:20:43 +01003816M: Stefan Weil <sw@weilnetz.de>
3817S: Maintained
Andreas Färber8ef9cd52012-04-13 17:22:03 +02003818F: tcg/tci/
Philippe Mathieu-Daudé752a2ae2017-06-29 12:03:07 -03003819F: tcg/tci.c
Paolo Bonzinic17652e2015-09-22 11:36:16 +02003820F: disas/tci.c
Andreas Färberaa09c952012-04-13 17:52:27 +02003821
Stefan Hajnoczif05b3282013-11-13 10:33:10 +01003822Block drivers
3823-------------
3824VMDK
Fam Zhengfe5ca462018-11-21 23:30:36 +08003825M: Fam Zheng <fam@euphon.net>
Kevin Wolfc95e4c02015-04-30 15:15:13 +02003826L: qemu-block@nongnu.org
Stefan Hajnoczif05b3282013-11-13 10:33:10 +01003827S: Supported
3828F: block/vmdk.c
3829
3830RBD
Ilya Dryomov07255702021-05-19 13:25:13 +02003831M: Ilya Dryomov <idryomov@gmail.com>
Peter Lievencbd58e72023-01-05 10:50:39 +01003832R: Peter Lieven <pl@dlhnet.de>
Jeff Cody280458a2015-03-06 12:16:06 -05003833L: qemu-block@nongnu.org
Stefan Hajnoczif05b3282013-11-13 10:33:10 +01003834S: Supported
3835F: block/rbd.c
3836
Stefan Hajnoczif05b3282013-11-13 10:33:10 +01003837VHDX
Jeff Cody5f5246b2018-09-26 14:05:33 -04003838M: Jeff Cody <codyprime@gmail.com>
Jeff Cody280458a2015-03-06 12:16:06 -05003839L: qemu-block@nongnu.org
Stefan Hajnoczif05b3282013-11-13 10:33:10 +01003840S: Supported
3841F: block/vhdx*
3842
3843VDI
3844M: Stefan Weil <sw@weilnetz.de>
Kevin Wolfc95e4c02015-04-30 15:15:13 +02003845L: qemu-block@nongnu.org
Stefan Hajnoczif05b3282013-11-13 10:33:10 +01003846S: Maintained
3847F: block/vdi.c
3848
Stefan Hajnoczifd66dbd2022-10-13 14:58:57 -04003849blkio
3850M: Stefan Hajnoczi <stefanha@redhat.com>
3851L: qemu-block@nongnu.org
3852S: Maintained
3853F: block/blkio.c
3854
Stefan Hajnoczif05b3282013-11-13 10:33:10 +01003855iSCSI
3856M: Ronnie Sahlberg <ronniesahlberg@gmail.com>
3857M: Paolo Bonzini <pbonzini@redhat.com>
Peter Lievencbd58e72023-01-05 10:50:39 +01003858M: Peter Lieven <pl@dlhnet.de>
Kevin Wolfc95e4c02015-04-30 15:15:13 +02003859L: qemu-block@nongnu.org
Paolo Bonzini2185fd62018-10-19 14:25:42 +02003860S: Odd Fixes
Stefan Hajnoczif05b3282013-11-13 10:33:10 +01003861F: block/iscsi.c
Peter Lieven2deb63c2017-01-24 13:49:21 +01003862F: block/iscsi-opts.c
Stefan Hajnoczif05b3282013-11-13 10:33:10 +01003863
Eric Blake99c62e72017-07-07 13:21:51 -05003864Network Block Device (NBD)
3865M: Eric Blake <eblake@redhat.com>
Vladimir Sementsov-Ogievskiy9e4067b2022-05-26 14:54:32 +03003866M: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
Eric Blake99c62e72017-07-07 13:21:51 -05003867L: qemu-block@nongnu.org
3868S: Maintained
3869F: block/nbd*
3870F: nbd/
3871F: include/block/nbd*
3872F: qemu-nbd.*
3873F: blockdev-nbd.c
Peter Maydell8dac93a2024-08-09 17:37:54 +01003874F: docs/interop/nbd.rst
Wainer dos Santos Moschetta33b2b382021-02-04 10:54:25 -03003875F: docs/tools/qemu-nbd.rst
Eric Blake58a6fdc2022-05-11 19:49:24 -05003876F: tests/qemu-iotests/tests/*nbd*
Stefan Hajnocziebe2aad2018-11-08 11:15:28 +00003877T: git https://repo.or.cz/qemu/ericb.git nbd
Vladimir Sementsov-Ogievskiy9e4067b2022-05-26 14:54:32 +03003878T: git https://gitlab.com/vsementsov/qemu.git block
Eric Blake99c62e72017-07-07 13:21:51 -05003879
Peter Lieven6542aa92014-02-03 10:26:13 +01003880NFS
Peter Lievencbd58e72023-01-05 10:50:39 +01003881M: Peter Lieven <pl@dlhnet.de>
Jeff Cody280458a2015-03-06 12:16:06 -05003882L: qemu-block@nongnu.org
Peter Lieven6542aa92014-02-03 10:26:13 +01003883S: Maintained
3884F: block/nfs.c
3885
Stefan Hajnoczif05b3282013-11-13 10:33:10 +01003886SSH
3887M: Richard W.M. Jones <rjones@redhat.com>
Jeff Cody280458a2015-03-06 12:16:06 -05003888L: qemu-block@nongnu.org
Stefan Hajnoczif05b3282013-11-13 10:33:10 +01003889S: Supported
3890F: block/ssh.c
Chrysostomos Nanakosc9a12e72014-08-04 17:35:32 +03003891
Jeff Cody280458a2015-03-06 12:16:06 -05003892CURL
Jeff Cody280458a2015-03-06 12:16:06 -05003893L: qemu-block@nongnu.org
Thomas Huth5c6090f2019-05-06 08:18:54 +02003894S: Odd Fixes
Jeff Cody280458a2015-03-06 12:16:06 -05003895F: block/curl.c
Jeff Cody280458a2015-03-06 12:16:06 -05003896
3897GLUSTER
Jeff Cody280458a2015-03-06 12:16:06 -05003898L: qemu-block@nongnu.org
Thomas Huth5c6090f2019-05-06 08:18:54 +02003899L: integration@gluster.org
3900S: Odd Fixes
Jeff Cody280458a2015-03-06 12:16:06 -05003901F: block/gluster.c
Gongleib5e94762014-10-22 11:07:57 +08003902
Fam Zheng199667a2015-04-01 09:45:40 +08003903Null Block Driver
Fam Zhengfe5ca462018-11-21 23:30:36 +08003904M: Fam Zheng <fam@euphon.net>
Fam Zheng199667a2015-04-01 09:45:40 +08003905L: qemu-block@nongnu.org
3906S: Supported
3907F: block/null.c
3908
Fam Zhengbdd6a902018-01-16 14:08:55 +08003909NVMe Block Driver
Stefan Hajnoczi1a949782020-09-07 12:16:32 +01003910M: Stefan Hajnoczi <stefanha@redhat.com>
3911R: Fam Zheng <fam@euphon.net>
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02003912R: Philippe Mathieu-Daudé <philmd@linaro.org>
Fam Zhengbdd6a902018-01-16 14:08:55 +08003913L: qemu-block@nongnu.org
3914S: Supported
3915F: block/nvme*
Philippe Mathieu-Daudédc0b4d92020-07-01 16:06:34 +02003916F: include/block/nvme.h
Stefan Hajnoczi1a949782020-09-07 12:16:32 +01003917T: git https://github.com/stefanha/qemu.git block
Fam Zhengbdd6a902018-01-16 14:08:55 +08003918
Gongleib5e94762014-10-22 11:07:57 +08003919Bootdevice
3920M: Gonglei <arei.gonglei@huawei.com>
3921S: Maintained
Philippe Mathieu-Daudé8d7f2e72023-10-04 11:06:28 +02003922F: system/bootdevice.c
Alberto Garciaecdda9e2015-03-16 18:22:05 +02003923
3924Quorum
3925M: Alberto Garcia <berto@igalia.com>
3926S: Supported
3927F: block/quorum.c
3928L: qemu-block@nongnu.org
Stefan Hajnoczie7c6e632015-04-29 15:13:26 +01003929
Aapo Vienamobfcc2242018-07-03 17:48:48 +03003930blklogwrites
3931M: Ari Sundholm <ari@tuxera.com>
3932L: qemu-block@nongnu.org
3933S: Supported
3934F: block/blklogwrites.c
3935
Stefan Hajnoczie7c6e632015-04-29 15:13:26 +01003936blkverify
3937M: Stefan Hajnoczi <stefanha@redhat.com>
3938L: qemu-block@nongnu.org
3939S: Supported
3940F: block/blkverify.c
3941
3942bochs
3943M: Stefan Hajnoczi <stefanha@redhat.com>
3944L: qemu-block@nongnu.org
3945S: Supported
3946F: block/bochs.c
3947
3948cloop
3949M: Stefan Hajnoczi <stefanha@redhat.com>
3950L: qemu-block@nongnu.org
3951S: Supported
3952F: block/cloop.c
3953
3954dmg
3955M: Stefan Hajnoczi <stefanha@redhat.com>
3956L: qemu-block@nongnu.org
3957S: Supported
3958F: block/dmg.c
3959
3960parallels
3961M: Stefan Hajnoczi <stefanha@redhat.com>
Denis V. Lunevf3073712015-08-21 20:44:16 +03003962M: Denis V. Lunev <den@openvz.org>
Stefan Hajnoczie7c6e632015-04-29 15:13:26 +01003963L: qemu-block@nongnu.org
3964S: Supported
3965F: block/parallels.c
Vladimir Sementsov-Ogievskiya960c4b2021-03-04 12:51:51 +03003966F: block/parallels-ext.c
Peter Maydell1bc0fc02024-08-09 17:37:55 +01003967F: docs/interop/parallels.rst
Peter Maydell7d9fc7e2024-08-09 17:37:55 +01003968F: docs/interop/prl-xml.rst
Denis V. Lunevbb20ec62022-08-23 10:27:00 +02003969T: git https://src.openvz.org/scm/~den/qemu.git parallels
Stefan Hajnoczie7c6e632015-04-29 15:13:26 +01003970
3971qed
3972M: Stefan Hajnoczi <stefanha@redhat.com>
3973L: qemu-block@nongnu.org
3974S: Supported
3975F: block/qed.c
3976
3977raw
3978M: Kevin Wolf <kwolf@redhat.com>
3979L: qemu-block@nongnu.org
3980S: Supported
3981F: block/linux-aio.c
Markus Armbrusterf586d5f2016-09-05 14:28:52 +02003982F: include/block/raw-aio.h
Eric Blake2e6fc7e2016-12-02 13:48:53 -06003983F: block/raw-format.c
Eric Blakec1bb86c2016-12-02 13:48:54 -06003984F: block/file-posix.c
3985F: block/file-win32.c
Stefan Hajnoczie7c6e632015-04-29 15:13:26 +01003986F: block/win32-aio.c
3987
Aarushi Mehta6663a0a2020-01-20 14:18:47 +00003988Linux io_uring
3989M: Aarushi Mehta <mehta.aaru20@gmail.com>
3990M: Julia Suvorova <jusual@redhat.com>
3991M: Stefan Hajnoczi <stefanha@redhat.com>
Stefano Garzarella0ef28012021-07-28 15:15:15 +02003992R: Stefano Garzarella <sgarzare@redhat.com>
Aarushi Mehta6663a0a2020-01-20 14:18:47 +00003993L: qemu-block@nongnu.org
3994S: Maintained
3995F: block/io_uring.c
Aarushi Mehta06a47ef2020-01-20 14:18:48 +00003996F: stubs/io_uring.c
Aarushi Mehta6663a0a2020-01-20 14:18:47 +00003997
Stefan Hajnoczie7c6e632015-04-29 15:13:26 +01003998qcow2
3999M: Kevin Wolf <kwolf@redhat.com>
Hanna Reitzb0c47982021-08-10 16:04:11 +02004000M: Hanna Reitz <hreitz@redhat.com>
Stefan Hajnoczie7c6e632015-04-29 15:13:26 +01004001L: qemu-block@nongnu.org
4002S: Supported
4003F: block/qcow2*
Philippe Mathieu-Daudéb24f9882017-09-08 14:36:23 -03004004F: docs/interop/qcow2.txt
Stefan Hajnoczie7c6e632015-04-29 15:13:26 +01004005
4006qcow
4007M: Kevin Wolf <kwolf@redhat.com>
4008L: qemu-block@nongnu.org
4009S: Supported
4010F: block/qcow.c
4011
4012blkdebug
4013M: Kevin Wolf <kwolf@redhat.com>
Hanna Reitzb0c47982021-08-10 16:04:11 +02004014M: Hanna Reitz <hreitz@redhat.com>
Stefan Hajnoczie7c6e632015-04-29 15:13:26 +01004015L: qemu-block@nongnu.org
4016S: Supported
4017F: block/blkdebug.c
4018
4019vpc
4020M: Kevin Wolf <kwolf@redhat.com>
4021L: qemu-block@nongnu.org
4022S: Supported
4023F: block/vpc.c
4024
4025vvfat
4026M: Kevin Wolf <kwolf@redhat.com>
4027L: qemu-block@nongnu.org
Prasad J Pandit4b7c5bc2020-07-11 00:34:51 +05304028S: Odd Fixes
Stefan Hajnoczie7c6e632015-04-29 15:13:26 +01004029F: block/vvfat.c
Stefan Hajnocziabfe4e92015-04-29 15:13:28 +01004030
4031Image format fuzzer
4032M: Stefan Hajnoczi <stefanha@redhat.com>
4033L: qemu-block@nongnu.org
4034S: Supported
4035F: tests/image-fuzzer/
Daniel P. Berrange717171b2015-09-24 14:41:38 +01004036
Coiby Xu8675a372020-09-18 16:09:12 +08004037Vhost-user block device backend server
4038M: Coiby Xu <Coiby.Xu@gmail.com>
4039S: Maintained
4040F: block/export/vhost-user-blk-server.c
Stefan Hajnoczi80a06cc2020-09-24 16:15:48 +01004041F: block/export/vhost-user-blk-server.h
Xie Yongji5c368022022-05-23 16:46:06 +08004042F: block/export/virtio-blk-handler.c
4043F: block/export/virtio-blk-handler.h
Stefan Hajnoczi80a06cc2020-09-24 16:15:48 +01004044F: include/qemu/vhost-user-server.h
Coiby Xu8675a372020-09-18 16:09:12 +08004045F: tests/qtest/libqos/vhost-user-blk.c
Coiby Xu80695202021-03-22 09:23:25 +00004046F: tests/qtest/libqos/vhost-user-blk.h
4047F: tests/qtest/vhost-user-blk-test.c
Stefan Hajnoczi80a06cc2020-09-24 16:15:48 +01004048F: util/vhost-user-server.c
Coiby Xu8675a372020-09-18 16:09:12 +08004049
Max Reitz0c9b70d2020-10-27 20:05:42 +01004050FUSE block device exports
Hanna Reitzb0c47982021-08-10 16:04:11 +02004051M: Hanna Reitz <hreitz@redhat.com>
Max Reitz0c9b70d2020-10-27 20:05:42 +01004052L: qemu-block@nongnu.org
4053S: Supported
4054F: block/export/fuse.c
4055
Xie Yongji2a2359b2022-05-23 16:46:09 +08004056VDUSE library and block device exports
Xie Yongjia6caeee2022-05-23 16:46:08 +08004057M: Xie Yongji <xieyongji@bytedance.com>
4058S: Maintained
4059F: subprojects/libvduse/
Xie Yongji2a2359b2022-05-23 16:46:09 +08004060F: block/export/vduse-blk.c
4061F: block/export/vduse-blk.h
Xie Yongjia6caeee2022-05-23 16:46:08 +08004062
Changlong Xie049105a2016-07-27 15:01:53 +08004063Replication
Changlong Xie205f8612017-04-18 11:08:13 +08004064M: Wen Congyang <wencongyang2@huawei.com>
Zhang Chen3ccc0a02017-04-21 15:12:47 +08004065M: Xie Changlong <xiechanglong.d@gmail.com>
Changlong Xie049105a2016-07-27 15:01:53 +08004066S: Supported
4067F: replication*
4068F: block/replication.c
Thomas Huthda668aa2021-03-10 07:33:14 +01004069F: tests/unit/test-replication.c
Changlong Xie049105a2016-07-27 15:01:53 +08004070F: docs/block-replication.txt
4071
Alex Bennéeb052fec2019-05-13 15:32:56 +01004072Semihosting
4073M: Alex Bennée <alex.bennee@linaro.org>
Alex Bennéeb052fec2019-05-13 15:32:56 +01004074S: Maintained
Philippe Mathieu-Daudé8df9f0c2021-03-05 13:54:50 +00004075F: semihosting/
Philippe Mathieu-Daudé6b5fe132021-03-05 13:54:49 +00004076F: include/semihosting/
Alex Bennée3539d842021-03-23 16:52:51 +00004077F: tests/tcg/multiarch/arm-compat-semi/
Alex Bennéeb904a902022-02-25 17:20:21 +00004078F: tests/tcg/aarch64/system/semiheap.c
Alex Bennéeb052fec2019-05-13 15:32:56 +01004079
John G Johnson8684f1b2021-01-29 11:46:02 -05004080Multi-process QEMU
4081M: Elena Ufimtseva <elena.ufimtseva@oracle.com>
4082M: Jagannathan Raman <jag.raman@oracle.com>
John G Johnson8684f1b2021-01-29 11:46:02 -05004083S: Maintained
4084F: docs/devel/multi-process.rst
Elena Ufimtseva639090d2021-01-29 11:46:03 -05004085F: docs/system/multi-process.rst
Jagannathan Raman6fbd84d2021-01-29 11:46:06 -05004086F: hw/pci-host/remote.c
4087F: include/hw/pci-host/remote.h
Jagannathan Raman3f0e7e52021-01-29 11:46:07 -05004088F: hw/remote/machine.c
4089F: include/hw/remote/machine.h
Elena Ufimtsevaad22c302021-01-29 11:46:10 -05004090F: hw/remote/mpqemu-link.c
4091F: include/hw/remote/mpqemu-link.h
Jagannathan Raman48b06f52021-01-29 11:46:11 -05004092F: hw/remote/message.c
Jagannathan Ramanc7d80c72021-01-29 11:46:12 -05004093F: hw/remote/remote-obj.c
Jagannathan Ramaned5d0012021-01-29 11:46:13 -05004094F: include/hw/remote/memory.h
4095F: hw/remote/memory.c
Elena Ufimtseva9f811202021-01-29 11:46:14 -05004096F: hw/remote/proxy.c
4097F: include/hw/remote/proxy.h
Jagannathan Ramanc746b742021-01-29 11:46:18 -05004098F: hw/remote/proxy-memory-listener.c
4099F: include/hw/remote/proxy-memory-listener.h
Jagannathan Ramanbd36adb2021-01-29 11:46:19 -05004100F: hw/remote/iohub.c
4101F: include/hw/remote/iohub.h
Jagannathan Raman55116962022-06-13 16:26:24 -04004102F: subprojects/libvfio-user
Jagannathan Raman8f9a9252022-06-13 16:26:25 -04004103F: hw/remote/vfio-user-obj.c
Jagannathan Raman08cf3dc2022-06-13 16:26:33 -04004104F: include/hw/remote/vfio-user-obj.h
Jagannathan Raman253007d2022-06-13 16:26:30 -04004105F: hw/remote/iommu.c
4106F: include/hw/remote/iommu.h
John G Johnson8684f1b2021-01-29 11:46:02 -05004107
Andrew Melnychenko90322e62021-05-14 14:48:35 +03004108EBPF:
4109M: Jason Wang <jasowang@redhat.com>
4110R: Andrew Melnychenko <andrew@daynix.com>
4111R: Yuri Benditovich <yuri.benditovich@daynix.com>
4112S: Maintained
Thomas Huth2635f962023-10-17 17:17:40 +02004113F: docs/devel/ebpf_rss.rst
Andrew Melnychenko90322e62021-05-14 14:48:35 +03004114F: ebpf/*
4115F: tools/ebpf/*
4116
Alex Bennéeb9e02c02016-01-31 17:32:39 +00004117Build and test automation
4118-------------------------
Thomas Huth9872ba02021-03-09 12:23:56 +01004119Build and test automation, general continuous integration
Alex Bennéeb9e02c02016-01-31 17:32:39 +00004120M: Alex Bennée <alex.bennee@linaro.org>
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02004121M: Philippe Mathieu-Daudé <philmd@linaro.org>
Thomas Huth9872ba02021-03-09 12:23:56 +01004122M: Thomas Huth <thuth@redhat.com>
4123R: Wainer dos Santos Moschetta <wainersm@redhat.com>
Willian Rampazzo40525be2021-11-29 14:09:30 +00004124R: Beraldo Leal <bleal@redhat.com>
Alex Bennéee70dc7f2017-02-20 10:51:39 +00004125S: Maintained
Yonggang Luoe7c2d742022-03-23 16:07:55 +08004126F: .github/workflows/lockdown.yml
Thomas Huth9872ba02021-03-09 12:23:56 +01004127F: .gitlab-ci.yml
4128F: .gitlab-ci.d/
Alex Bennéeb9e02c02016-01-31 17:32:39 +00004129F: .travis.yml
Thomas Huth145af272023-09-29 15:16:36 +02004130F: docs/devel/ci*
Philippe Mathieu-Daudé04250c62021-02-11 12:27:36 +00004131F: scripts/ci/
Alex Bennéee70dc7f2017-02-20 10:51:39 +00004132F: tests/docker/
Fam Zheng18023822017-09-05 10:11:59 +08004133F: tests/vm/
Philippe Mathieu-Daudé3260f4e2022-02-04 20:43:14 +00004134F: tests/lcitool/
Alex Bennée267fe572023-02-28 19:06:39 +00004135F: tests/avocado/tuxrun_baselines.py
Philippe Mathieu-Daudé54dbfd82019-01-24 02:00:22 +01004136F: scripts/archive-source.sh
Thomas Huth4db546d2022-12-12 18:48:41 +01004137F: docs/devel/testing.rst
Thomas Huth9872ba02021-03-09 12:23:56 +01004138W: https://gitlab.com/qemu-project/qemu/pipelines
Alex Bennéee70dc7f2017-02-20 10:51:39 +00004139W: https://travis-ci.org/qemu/qemu
Daniel P. Berrange717171b2015-09-24 14:41:38 +01004140
Ed Maste7162fbb2019-01-22 17:25:58 +00004141FreeBSD Hosted Continuous Integration
4142M: Ed Maste <emaste@freebsd.org>
4143M: Li-Wen Hsu <lwhsu@freebsd.org>
Ed Maste7162fbb2019-01-22 17:25:58 +00004144S: Maintained
Thomas Huth5be6fd02022-02-17 15:11:38 +01004145F: .gitlab-ci.d/cirrus/freebsd*
4146F: tests/vm/freebsd
Ed Maste7162fbb2019-01-22 17:25:58 +00004147W: https://cirrus-ci.com/github/qemu/qemu
4148
Yonggang Luodaee8de2021-01-07 02:19:17 -08004149Windows Hosted Continuous Integration
4150M: Yonggang Luo <luoyonggang@gmail.com>
4151S: Maintained
Philippe Mathieu-Daudéda80f112023-03-22 14:57:21 +01004152F: .gitlab-ci.d/windows.yml
Yonggang Luodaee8de2021-01-07 02:19:17 -08004153
Alex Bennée7e970172018-04-06 13:32:18 +01004154Guest Test Compilation Support
4155M: Alex Bennée <alex.bennee@linaro.org>
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02004156R: Philippe Mathieu-Daudé <philmd@linaro.org>
Stefan Hajnoczi00a25292019-03-01 16:35:18 +00004157S: Maintained
Alex Bennée162f9162022-10-27 19:36:23 +01004158F: tests/tcg/Makefile.target
Alex Bennée7e970172018-04-06 13:32:18 +01004159
Willian Rampazzobbbd9b62021-11-05 12:53:54 -03004160Integration Testing with the Avocado framework
Philippe Mathieu-Daudé6634f1c2020-01-29 17:45:05 +01004161W: https://trello.com/b/6Qi1pxVn/avocado-qemu
4162R: Cleber Rosa <crosa@redhat.com>
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02004163R: Philippe Mathieu-Daudé <philmd@linaro.org>
Philippe Mathieu-Daudé6634f1c2020-01-29 17:45:05 +01004164R: Wainer dos Santos Moschetta <wainersm@redhat.com>
Willian Rampazzo40525be2021-11-29 14:09:30 +00004165R: Beraldo Leal <bleal@redhat.com>
Philippe Mathieu-Daudé6634f1c2020-01-29 17:45:05 +01004166S: Odd Fixes
Willian Rampazzobbbd9b62021-11-05 12:53:54 -03004167F: tests/avocado/
Philippe Mathieu-Daudé6634f1c2020-01-29 17:45:05 +01004168
Philippe Mathieu-Daudé1e970152021-11-29 14:09:31 +00004169GitLab custom runner (Works On Arm Sponsored)
4170M: Alex Bennée <alex.bennee@linaro.org>
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02004171M: Philippe Mathieu-Daudé <philmd@linaro.org>
Philippe Mathieu-Daudé1e970152021-11-29 14:09:31 +00004172S: Maintained
Alex Bennée66dca262022-09-14 16:59:40 +01004173F: .gitlab-ci.d/custom-runners/ubuntu-22.04-aarch64.yml
4174F: .gitlab-ci.d/custom-runners/ubuntu-22.04-aarch32.yml
Philippe Mathieu-Daudé1e970152021-11-29 14:09:31 +00004175
Daniel P. Berrange717171b2015-09-24 14:41:38 +01004176Documentation
4177-------------
4178Build system architecture
4179M: Daniel P. Berrange <berrange@redhat.com>
4180S: Odd Fixes
Stefano Garzarella551bdfa2021-05-17 17:17:00 +02004181F: docs/devel/build-system.rst
Fam Zheng8a49e972016-06-01 12:25:28 +08004182
Alex Bennée92329a72019-01-14 15:25:13 +00004183GIT Data Mining Config
4184M: Alex Bennée <alex.bennee@linaro.org>
4185S: Odd Fixes
4186F: gitdm.config
4187F: contrib/gitdm/*
4188
Markus Armbrusterb02c9bc2018-07-16 09:32:26 +02004189Incompatible changes
Daniel P. Berrangéf5c5e7d2023-10-27 10:56:43 +01004190R: devel@lists.libvirt.org
Mao Zhongyia476b212021-07-23 14:58:28 +08004191F: docs/about/deprecated.rst
Markus Armbrusterb02c9bc2018-07-16 09:32:26 +02004192
Daniel P. Berrangeaef45d52017-09-29 11:11:56 +01004193Build System
4194------------
Alex Bennée48fad832022-10-27 19:36:21 +01004195Meson
4196M: Paolo Bonzini <pbonzini@redhat.com>
4197R: Marc-André Lureau <marcandre.lureau@redhat.com>
4198R: Daniel P. Berrange <berrange@redhat.com>
4199R: Thomas Huth <thuth@redhat.com>
4200R: Philippe Mathieu-Daudé <philmd@linaro.org>
4201S: Maintained
4202F: meson.build
4203F: meson_options.txt
4204F: scripts/meson-buildoptions.*
4205F: scripts/check_sparse.py
4206F: scripts/symlink-install-tree.py
4207
4208Top Level Makefile and configure
4209M: Paolo Bonzini <pbonzini@redhat.com>
4210R: Alex Bennée <alex.bennee@linaro.org>
4211R: Thomas Huth <thuth@redhat.com>
4212S: Maintained
4213F: Makefile
4214F: configure
4215F: scripts/mtest2make.py
4216F: tests/Makefile.include
4217
Paolo Bonzini2f38ff792023-05-03 19:29:17 +02004218Kconfig
4219M: Paolo Bonzini <pbonzini@redhat.com>
4220S: Maintained
4221F: scripts/minikconf.py
4222F: docs/devel/kconfig.rst
4223F: Kconfig*
4224F: */Kconfig*
4225F: hw/*/Kconfig*
4226F: target/*/Kconfig*
4227
Daniel P. Berrangeaef45d52017-09-29 11:11:56 +01004228GIT submodules
4229M: Daniel P. Berrange <berrange@redhat.com>
4230S: Odd Fixes
4231F: scripts/git-submodule.sh
Peter Maydellc10e01b2019-03-07 14:26:47 +00004232
Aleksandar Markovicef45a392019-12-10 13:55:15 +01004233UI translations
John Snow4251dfb2020-10-30 11:34:16 -04004234S: Orphan
Aleksandar Markovicef45a392019-12-10 13:55:15 +01004235F: po/*.po
4236
Peter Maydellc10e01b2019-03-07 14:26:47 +00004237Sphinx documentation configuration and build machinery
4238M: Peter Maydell <peter.maydell@linaro.org>
4239S: Maintained
4240F: docs/conf.py
4241F: docs/*/conf.py
Peter Maydell4078ee52020-09-25 17:23:02 +01004242F: docs/sphinx/
Peter Maydell13f934e2021-07-05 10:55:46 +01004243F: docs/_templates/
Peter Maydelld95f2602023-12-12 16:23:13 +00004244F: docs/devel/docs.rst
Aleksandar Markovic53fb8bf2020-06-27 20:13:17 +02004245
4246Miscellaneous
4247-------------
4248Performance Tools and Tests
4249M: Ahmed Karaman <ahmedkhaledkaraman@gmail.com>
4250S: Maintained
4251F: scripts/performance/
Alex Bennée899c3fc2023-04-03 14:49:10 +01004252
4253Code Coverage Tools
4254M: Alex Bennée <alex.bennee@linaro.org>
4255S: Odd Fixes
4256F: scripts/coverage/
Maksim Davydovb9285052024-03-19 00:35:50 +03004257
4258Machine development tool
4259M: Maksim Davydov <davydov-max@yandex-team.ru>
4260S: Supported
4261F: scripts/compare-machine-types.py