blob: 42e59143b77338595845e8919433b55535bef984 [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
143
Markus Armbruster84995ea2019-06-06 19:24:08 +0200144Guest CPU cores (TCG)
145---------------------
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200146Overall TCG CPUs
Richard Henderson336f7442020-11-12 20:35:43 -0800147M: Richard Henderson <richard.henderson@linaro.org>
Paolo Bonzini2185fd62018-10-19 14:25:42 +0200148R: Paolo Bonzini <pbonzini@redhat.com>
Paolo Bonzini2b1641d2015-11-13 18:49:54 +0100149S: Maintained
Philippe Mathieu-Daudé8d7f2e72023-10-04 11:06:28 +0200150F: system/cpus.c
151F: system/watchpoint.c
Philippe Mathieu-Daudéfe0007f2023-09-14 20:57:12 +0200152F: cpu-common.c
153F: cpu-target.c
Philippe Mathieu-Daudé8c7907a2023-09-14 20:57:13 +0200154F: page-vary-target.c
Richard Henderson44b99a62021-03-22 12:24:26 +0100155F: page-vary-common.c
Philippe Mathieu-Daudéc6a88dd2017-06-29 12:03:04 -0300156F: accel/tcg/
Thomas Huth9681ad32018-11-22 13:57:18 +0100157F: accel/stubs/tcg-stub.c
Richard Henderson084cfca2020-12-14 08:02:33 -0600158F: util/cacheinfo.c
159F: util/cacheflush.c
Philippe Mathieu-Daudé55fd1892018-11-10 22:13:12 +0100160F: scripts/decodetree.py
Richard Henderson3fdbf5d2019-02-23 13:00:10 -0800161F: docs/devel/decodetree.rst
Thomas Huth4db546d2022-12-12 18:48:41 +0100162F: docs/devel/tcg*
Paolo Bonzini2b1641d2015-11-13 18:49:54 +0100163F: include/exec/cpu*.h
164F: include/exec/exec-all.h
Alex Bennée548c9602023-03-02 18:57:43 -0800165F: include/exec/tb-flush.h
Alex Bennée4692a862023-03-02 18:58:00 -0800166F: include/exec/target_long.h
Paolo Bonzini486bbe52014-10-22 00:18:01 +0200167F: include/exec/helper*.h
Richard Hendersone4eff8e2023-03-31 19:07:00 -0700168F: include/exec/helper*.h.inc
Richard Hendersond53106c2023-03-31 10:37:04 -0700169F: include/exec/helper-info.c.inc
Thomas Huth460423d2016-09-09 23:15:04 +0200170F: include/sysemu/cpus.h
Markus Armbruster14a48c12019-05-23 16:35:05 +0200171F: include/sysemu/tcg.h
Claudio Fontana78271682021-02-04 17:39:23 +0100172F: include/hw/core/tcg-cpu-ops.h
Richard Henderson6bc12fd2023-05-17 21:12:08 -0700173F: host/include/*/host/cpuinfo.h
174F: util/cpuinfo-*.c
Richard Henderson427fbf32023-03-27 18:02:33 -0700175F: include/tcg/
Thomas Huth80a59bc2023-10-13 08:57:39 +0200176F: tests/decode/
Paolo Bonzini486bbe52014-10-22 00:18:01 +0200177
Peter Maydell1badb582016-02-19 16:25:01 +0000178FPU emulation
179M: Aurelien Jarno <aurelien@aurel32.net>
180M: Peter Maydell <peter.maydell@linaro.org>
Alex Bennée0636e4d2018-12-05 12:48:12 +0000181M: Alex Bennée <alex.bennee@linaro.org>
182S: Maintained
Peter Maydell1badb582016-02-19 16:25:01 +0000183F: fpu/
184F: include/fpu/
Alex Bennée0636e4d2018-12-05 12:48:12 +0000185F: tests/fp/
Peter Maydell1badb582016-02-19 16:25:01 +0000186
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200187Alpha TCG CPUs
Richard Henderson336f7442020-11-12 20:35:43 -0800188M: Richard Henderson <richard.henderson@linaro.org>
Richard Henderson8d6df262011-05-20 12:23:18 -0700189S: Maintained
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200190F: target/alpha/
Paolo Bonzinic0bd0b52014-10-22 00:31:28 +0200191F: tests/tcg/alpha/
Paolo Bonzinic17652e2015-09-22 11:36:16 +0200192F: disas/alpha.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500193
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200194ARM TCG CPUs
Peter Maydell1ce9ce62011-09-20 16:18:46 +0100195M: Peter Maydell <peter.maydell@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000196L: qemu-arm@nongnu.org
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500197S: Maintained
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200198F: target/arm/
Fabiano Rosasf0984d42023-02-17 17:11:29 -0300199F: target/arm/tcg/
Alex Bennéec3487222018-04-05 15:45:32 +0100200F: tests/tcg/arm/
Alex Bennée29e04362018-05-09 10:31:30 +0100201F: tests/tcg/aarch64/
Philippe Mathieu-Daudéc32c3d62021-05-26 19:04:21 +0200202F: tests/qtest/arm-cpu-features.c
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100203F: hw/arm/
204F: hw/cpu/a*mpcore.c
Thomas Huthf7e242d2016-09-23 14:14:18 +0200205F: include/hw/cpu/a*mpcore.h
Peter Maydellc11a8e82020-03-09 21:58:15 +0000206F: docs/system/target-arm.rst
Philippe Mathieu-Daudé6e84a912020-11-20 16:45:40 +0100207F: docs/system/arm/cpu-features.rst
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500208
Eric Auger49154ea2018-11-22 19:01:43 +0100209ARM SMMU
210M: Eric Auger <eric.auger@redhat.com>
211L: qemu-arm@nongnu.org
212S: Maintained
213F: hw/arm/smmu*
214F: include/hw/arm/smmu*
Willian Rampazzobbbd9b62021-11-05 12:53:54 -0300215F: tests/avocado/smmu.py
Eric Auger49154ea2018-11-22 19:01:43 +0100216
Michael Rolnikc8c0d262020-01-24 01:51:07 +0100217AVR TCG CPUs
218M: Michael Rolnik <mrolnik@gmail.com>
Michael Rolnikc8c0d262020-01-24 01:51:07 +0100219S: Maintained
Thomas Huth0abd3862020-08-12 17:53:04 +0200220F: docs/system/target-avr.rst
Michael Rolnik12b35402020-01-26 18:52:23 +0100221F: gdb-xml/avr-cpu.xml
Michael Rolnikc8c0d262020-01-24 01:51:07 +0100222F: target/avr/
Willian Rampazzobbbd9b62021-11-05 12:53:54 -0300223F: tests/avocado/machine_avr6.py
Michael Rolnikc8c0d262020-01-24 01:51:07 +0100224
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200225CRIS TCG CPUs
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500226M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
227S: Maintained
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200228F: target/cris/
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100229F: hw/cris/
Thomas Huthc9b90092016-09-23 18:08:46 +0200230F: include/hw/cris/
Paolo Bonzinic0bd0b52014-10-22 00:31:28 +0200231F: tests/tcg/cris/
Paolo Bonzinic17652e2015-09-22 11:36:16 +0200232F: disas/cris.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500233
Taylor Simpson5f508bc2021-02-07 23:45:51 -0600234Hexagon TCG CPUs
Taylor Simpson7d196e22023-05-24 09:11:26 -0700235M: Brian Cain <bcain@quicinc.com>
Taylor Simpson5f508bc2021-02-07 23:45:51 -0600236S: Supported
237F: target/hexagon/
Alessandro Di Federico647357d2022-09-23 19:38:21 +0200238X: target/hexagon/idef-parser/
239X: target/hexagon/gen_idef_parser_funcs.py
Taylor Simpson5f508bc2021-02-07 23:45:51 -0600240F: linux-user/hexagon/
241F: tests/tcg/hexagon/
242F: disas/hexagon.c
Alex Bennée812b31d2021-07-07 14:17:43 +0100243F: configs/targets/hexagon-linux-user/default.mak
Alessandro Di Federicoafbdf0a2021-05-12 11:20:26 +0100244F: docker/dockerfiles/debian-hexagon-cross.docker
Matheus Tavares Bernardinoab930e82023-05-04 12:37:33 -0300245F: gdb-xml/hexagon*.xml
Taylor Simpson5f508bc2021-02-07 23:45:51 -0600246
Alessandro Di Federico647357d2022-09-23 19:38:21 +0200247Hexagon idef-parser
248M: Alessandro Di Federico <ale@rev.ng>
249M: Anton Johansson <anjo@rev.ng>
250S: Supported
251F: target/hexagon/idef-parser/
252F: target/hexagon/gen_idef_parser_funcs.py
253
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200254HPPA (PA-RISC) TCG CPUs
Richard Henderson336f7442020-11-12 20:35:43 -0800255M: Richard Henderson <richard.henderson@linaro.org>
Richard Henderson61766fe2016-12-15 11:26:14 -0800256S: Maintained
257F: target/hppa/
258F: disas/hppa.c
Thomas Huth71c1d342023-10-18 08:24:01 +0200259F: tests/tcg/hppa/
Richard Henderson61766fe2016-12-15 11:26:14 -0800260
Song Gao64baad62022-06-06 20:42:51 +0800261LoongArch TCG CPUs
262M: Song Gao <gaosong@loongson.cn>
Song Gao64baad62022-06-06 20:42:51 +0800263S: Maintained
264F: target/loongarch/
Xiaojuan Yangc4293332022-06-06 20:43:32 +0800265F: tests/tcg/loongarch64/
Song Gao7318c622023-05-13 09:27:44 +0800266F: tests/avocado/machine_loongarch.py
Song Gao64baad62022-06-06 20:42:51 +0800267
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200268M68K TCG CPUs
Laurent Vivier595a9262016-05-06 12:30:29 +0200269M: Laurent Vivier <laurent@vivier.eu>
270S: Maintained
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200271F: target/m68k/
Thomas Huthe9a56112016-11-02 09:39:33 +0100272F: disas/m68k.c
Thomas Huth71c1d342023-10-18 08:24:01 +0200273F: tests/tcg/m68k/
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500274
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200275MicroBlaze TCG CPUs
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500276M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
277S: Maintained
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200278F: target/microblaze/
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100279F: hw/microblaze/
Paolo Bonzinic17652e2015-09-22 11:36:16 +0200280F: disas/microblaze.c
Richard Hendersonb58a4e62021-10-26 11:22:12 +0100281F: tests/docker/dockerfiles/debian-microblaze-cross.d/build-toolchain.sh
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500282
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200283MIPS TCG CPUs
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +0200284M: Philippe Mathieu-Daudé <philmd@linaro.org>
Aleksandar Markovic099d5102020-03-13 02:00:50 +0100285R: Aurelien Jarno <aurelien@aurel32.net>
Aleksandar Markovic15d983d2020-07-01 20:25:58 +0200286R: Jiaxun Yang <jiaxun.yang@flygoat.com>
Aleksandar Markovic97d89742020-05-18 22:09:16 +0200287R: Aleksandar Rikalo <aleksandar.rikalo@syrmia.com>
Philippe Mathieu-Daudécf960312020-10-09 17:05:13 +0200288S: Odd Fixes
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200289F: target/mips/
Philippe Mathieu-Daudé30dd5ff2022-10-30 23:38:49 +0100290F: disas/*mips.c
Kashyap Chamarthy1bf84a12020-02-28 15:36:01 +0000291F: docs/system/cpu-models-mips.rst.inc
Paolo Bonzinic0bd0b52014-10-22 00:31:28 +0200292F: tests/tcg/mips/
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500293
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200294NiosII TCG CPUs
Thomas Huth9ba1caf2023-03-13 19:33:52 +0100295R: Chris Wulff <crwulff@gmail.com>
296R: Marek Vasut <marex@denx.de>
297S: Orphan
Marek Vasute6717112017-01-18 23:01:46 +0100298F: target/nios2/
299F: hw/nios2/
Thomas Huth1805c2b2023-10-13 08:54:08 +0200300F: hw/intc/nios2_vic.c
Marek Vasute6717112017-01-18 23:01:46 +0100301F: disas/nios2.c
Thomas Huth1805c2b2023-10-13 08:54:08 +0200302F: include/hw/intc/nios2_vic.h
Alex Bennée812b31d2021-07-07 14:17:43 +0100303F: configs/devices/nios2-softmmu/default.mak
Richard Henderson2eb44612021-10-26 11:22:11 +0100304F: tests/docker/dockerfiles/debian-nios2-cross.d/build-toolchain.sh
Thomas Huth51d11ac2023-01-24 18:01:10 +0000305F: tests/tcg/nios2/
Marek Vasute6717112017-01-18 23:01:46 +0100306
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200307OpenRISC TCG CPUs
Stafford Horne1d7cf182017-03-15 22:37:41 +0900308M: Stafford Horne <shorne@gmail.com>
309S: Odd Fixes
Thomas Huth4db546d2022-12-12 18:48:41 +0100310F: docs/system/openrisc/cpu-features.rst
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200311F: target/openrisc/
Jia Liu945dad62013-07-02 20:55:17 +0800312F: hw/openrisc/
Thomas Huthe257b8c2023-10-17 17:42:42 +0200313F: include/hw/openrisc/
Paolo Bonzinic0bd0b52014-10-22 00:31:28 +0200314F: tests/tcg/openrisc/
Jia Liu945dad62013-07-02 20:55:17 +0800315
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200316PowerPC TCG CPUs
Daniel Henrique Barboza0cbc34d2023-09-15 08:05:07 -0300317M: Nicholas Piggin <npiggin@gmail.com>
David Gibson14fe3222021-11-05 14:28:51 +1100318M: Daniel Henrique Barboza <danielhb413@gmail.com>
Cédric Le Goaterb0877572022-09-29 20:09:46 +0200319R: Cédric Le Goater <clg@kaod.org>
Andreas Färbera6c98682012-01-13 13:33:57 +0000320L: qemu-ppc@nongnu.org
Daniel Henrique Barboza2e93a902022-11-17 12:32:18 -0300321S: Odd Fixes
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200322F: target/ppc/
David Gibson7ddb1202021-09-27 14:17:45 +1000323F: hw/ppc/ppc.c
324F: hw/ppc/ppc_booke.c
325F: include/hw/ppc/ppc.h
Cédric Le Goater9c46b512023-10-02 17:51:42 +0200326F: hw/ppc/meson.build
327F: hw/ppc/trace*
328F: configs/devices/ppc*
329F: docs/system/ppc/embedded.rst
330F: docs/system/target-ppc.rst
Thomas Huth71c1d342023-10-18 08:24:01 +0200331F: tests/tcg/ppc*/*
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500332
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200333RISC-V TCG CPUs
Palmer Dabbeltc1677bc2019-10-29 09:39:03 -0700334M: Palmer Dabbelt <palmer@dabbelt.com>
Alistair Francisab2c9122021-04-06 18:48:25 -0400335M: Alistair Francis <alistair.francis@wdc.com>
336M: Bin Meng <bin.meng@windriver.com>
Weiwei Lic0ce1f22023-10-30 16:16:07 +0800337R: Weiwei Li <liwei1518@gmail.com>
Alistair Francisa3ae8d42023-02-09 10:33:08 +1000338R: Daniel Henrique Barboza <dbarboza@ventanamicro.com>
339R: Liu Zhiwei <zhiwei_liu@linux.alibaba.com>
Palmer Dabbelta094b352018-10-30 09:19:05 -0700340L: qemu-riscv@nongnu.org
Palmer Dabbelt7b91ae72018-11-21 12:57:36 -0800341S: Supported
Thomas Huth5d0ce902023-09-29 14:37:27 +0200342F: configs/targets/riscv*
343F: docs/system/target-riscv.rst
Michael Clark4dc62b12018-03-03 01:31:09 +1300344F: target/riscv/
345F: hw/riscv/
Thomas Huth5d0ce902023-09-29 14:37:27 +0200346F: hw/intc/riscv*
Michael Clark4dc62b12018-03-03 01:31:09 +1300347F: include/hw/riscv/
Alistair Francisf936eac2018-12-19 19:16:31 +0000348F: linux-user/host/riscv32/
Alistair Francis511f3132018-12-19 19:16:41 +0000349F: linux-user/host/riscv64/
Thomas Huth71c1d342023-10-18 08:24:01 +0200350F: tests/tcg/riscv64/
Michael Clark4dc62b12018-03-03 01:31:09 +1300351
Christoph Müllner179d9e22023-01-31 21:20:13 +0100352RISC-V XThead* extensions
353M: Christoph Muellner <christoph.muellner@vrull.eu>
354M: LIU Zhiwei <zhiwei_liu@linux.alibaba.com>
355L: qemu-riscv@nongnu.org
356S: Supported
357F: target/riscv/insn_trans/trans_xthead.c.inc
358F: target/riscv/xthead*.decode
Thomas Huth5d0ce902023-09-29 14:37:27 +0200359F: disas/riscv-xthead*
Christoph Müllner179d9e22023-01-31 21:20:13 +0100360
Philipp Tomsich34888f02022-02-02 01:52:49 +0100361RISC-V XVentanaCondOps extension
362M: Philipp Tomsich <philipp.tomsich@vrull.eu>
363L: qemu-riscv@nongnu.org
Philipp Tomsich4f249312023-03-07 19:07:08 +0100364S: Maintained
Philipp Tomsich34888f02022-02-02 01:52:49 +0100365F: target/riscv/XVentanaCondOps.decode
366F: target/riscv/insn_trans/trans_xventanacondops.c.inc
Thomas Huth5d0ce902023-09-29 14:37:27 +0200367F: disas/riscv-xventana*
Philipp Tomsich34888f02022-02-02 01:52:49 +0100368
Yoshinori Satoa4f34ec2019-01-21 05:20:54 -0800369RENESAS RX CPUs
Philippe Mathieu-Daudéb2744da2021-03-12 16:55:12 +0100370R: Yoshinori Sato <ysato@users.sourceforge.jp>
371S: Orphan
Yoshinori Satoa4f34ec2019-01-21 05:20:54 -0800372F: target/rx/
373
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200374S390 TCG CPUs
Richard Henderson336f7442020-11-12 20:35:43 -0800375M: Richard Henderson <richard.henderson@linaro.org>
Cornelia Huckced01bb2018-01-15 16:18:20 +0100376M: David Hildenbrand <david@redhat.com>
Christian Borntraeger9d711f12022-10-19 14:56:40 +0200377R: Ilya Leoshkevich <iii@linux.ibm.com>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500378S: Maintained
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200379F: target/s390x/
Cho, Yu-Chenc9274b62021-07-07 18:53:17 +0800380F: target/s390x/tcg
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100381F: hw/s390x/
Pavel Zbitskiy276ba122018-08-20 22:50:58 -0400382F: tests/tcg/s390x/
Cornelia Huck146bd282017-10-05 17:05:23 +0200383L: qemu-s390x@nongnu.org
bellardb6f97c12008-05-09 09:39:00 +0000384
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200385SH4 TCG CPUs
Philippe Mathieu-Daudé2d53d0c2021-03-12 16:55:13 +0100386R: Yoshinori Sato <ysato@users.sourceforge.jp>
387S: Orphan
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200388F: target/sh4/
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100389F: hw/sh4/
Paolo Bonzinic17652e2015-09-22 11:36:16 +0200390F: disas/sh4.c
Thomas Huth8a90f902016-09-09 23:18:21 +0200391F: include/hw/sh4/
Thomas Huth71c1d342023-10-18 08:24:01 +0200392F: tests/tcg/sh4/
bellardb6f97c12008-05-09 09:39:00 +0000393
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200394SPARC TCG CPUs
Mark Cave-Aylandf2416d32015-03-02 22:23:27 +0000395M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Mark Cave-Ayland2c742bf2016-06-20 21:55:16 +0100396M: Artyom Tarasenko <atar4qemu@gmail.com>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500397S: Maintained
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200398F: target/sparc/
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100399F: hw/sparc/
400F: hw/sparc64/
Philippe Mathieu-Daudé84dbe972018-11-25 21:49:37 +0100401F: include/hw/sparc/sparc64.h
Paolo Bonzinic17652e2015-09-22 11:36:16 +0200402F: disas/sparc.c
Thomas Huth71c1d342023-10-18 08:24:01 +0200403F: tests/tcg/sparc64/
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500404
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200405X86 TCG CPUs
Paolo Bonzinid46d72f2014-10-21 15:16:06 +0200406M: Paolo Bonzini <pbonzini@redhat.com>
Richard Henderson336f7442020-11-12 20:35:43 -0800407M: Richard Henderson <richard.henderson@linaro.org>
Eduardo Habkost24c4cd12021-11-30 15:47:22 -0500408M: Eduardo Habkost <eduardo@habkost.net>
Eduardo Habkostb203a4b2015-04-08 08:36:24 -0300409S: Maintained
Claudio Fontanaf5cc5a52021-03-22 14:27:40 +0100410F: target/i386/tcg/
Alex Bennée41324312018-04-05 15:35:11 +0100411F: tests/tcg/i386/
Alex Bennée3a082ec2018-04-17 11:14:37 +0100412F: tests/tcg/x86_64/
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100413F: hw/i386/
Thomas Huth4db546d2022-12-12 18:48:41 +0100414F: docs/system/i386/cpu.rst
Daniel P. Berrangé38dec0e2021-06-07 14:58:40 +0100415F: docs/system/cpu-models-x86*
Eduardo Habkostf953c102020-12-14 16:20:32 -0500416T: git https://gitlab.com/ehabkost/qemu.git x86-next
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500417
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200418Xtensa TCG CPUs
Max Filippov16e7caa2011-09-06 03:55:56 +0400419M: Max Filippov <jcmvbkbc@gmail.com>
Max Filippovb8105d22018-02-27 21:15:34 -0800420W: http://wiki.osll.ru/doku.php?id=etc:users:jcmvbkbc:qemu-target-xtensa
Max Filippov16e7caa2011-09-06 03:55:56 +0400421S: Maintained
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200422F: target/xtensa/
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100423F: hw/xtensa/
Paolo Bonzinic0bd0b52014-10-22 00:31:28 +0200424F: tests/tcg/xtensa/
Max Filippov51139fb2021-10-01 22:01:52 -0700425F: tests/tcg/xtensaeb/
Max Filippov5a6539e2017-10-31 16:17:43 -0700426F: disas/xtensa.c
Max Filippov895e4892018-11-22 15:06:21 -0800427F: include/hw/xtensa/xtensa-isa.h
Alex Bennée812b31d2021-07-07 14:17:43 +0100428F: configs/devices/xtensa*/default.mak
Max Filippov16e7caa2011-09-06 03:55:56 +0400429
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200430TriCore TCG CPUs
Bastian Koppelmann48e06fe2014-09-01 12:59:46 +0100431M: Bastian Koppelmann <kbastian@mail.uni-paderborn.de>
432S: Maintained
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200433F: target/tricore/
Bastian Koppelmann48e06fe2014-09-01 12:59:46 +0100434F: hw/tricore/
Thomas Huthd46d14e2016-09-09 23:17:09 +0200435F: include/hw/tricore/
Bastian Koppelmannbe78e792021-05-12 11:20:34 +0100436F: tests/tcg/tricore/
Bastian Koppelmann48e06fe2014-09-01 12:59:46 +0100437
Alex Bennéedd28beb2018-04-05 15:03:22 +0100438Multiarch Linux User Tests
439M: Alex Bennée <alex.bennee@linaro.org>
Stefan Hajnoczi00a25292019-03-01 16:35:18 +0000440S: Maintained
Alex Bennéedd28beb2018-04-05 15:03:22 +0100441F: tests/tcg/multiarch/
442
Markus Armbruster84995ea2019-06-06 19:24:08 +0200443Guest CPU Cores (KVM)
444---------------------
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200445Overall KVM CPUs
Michael S. Tsirkinc6d559d2013-06-04 16:06:37 +0300446M: Paolo Bonzini <pbonzini@redhat.com>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500447L: kvm@vger.kernel.org
448S: Supported
Philippe Mathieu-Daudéa6bb42f2020-06-18 14:33:33 +0200449F: */*/kvm*
Philippe Mathieu-Daudé1962cb22017-06-29 12:03:05 -0300450F: accel/kvm/
Thomas Huth9681ad32018-11-22 13:57:18 +0100451F: accel/stubs/kvm-stub.c
452F: include/hw/kvm/
Thomas Hutha95e9a42016-02-25 13:33:25 +0100453F: include/sysemu/kvm*.h
Thomas Huth9681ad32018-11-22 13:57:18 +0100454F: scripts/kvm/kvm_flightrecorder
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500455
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200456ARM KVM CPUs
Peter Maydelled4659d2013-03-05 00:34:43 +0000457M: Peter Maydell <peter.maydell@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000458L: qemu-arm@nongnu.org
Peter Maydelled4659d2013-03-05 00:34:43 +0000459S: Maintained
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200460F: target/arm/kvm.c
Peter Maydelled4659d2013-03-05 00:34:43 +0000461
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200462MIPS KVM CPUs
Huacai Chendab1e1e2020-12-05 17:22:01 +0800463M: Huacai Chen <chenhuacai@kernel.org>
Aleksandar Markovic134f7f72020-02-24 12:50:58 +0100464S: Odd Fixes
Philippe Mathieu-Daudé85d8da32021-04-13 10:31:44 +0200465F: target/mips/kvm*
466F: target/mips/sysemu/
James Hogana31896c2014-06-17 23:10:37 +0100467
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200468PPC KVM CPUs
Daniel Henrique Barboza0cbc34d2023-09-15 08:05:07 -0300469M: Nicholas Piggin <npiggin@gmail.com>
470R: Daniel Henrique Barboza <danielhb413@gmail.com>
Cédric Le Goaterb0877572022-09-29 20:09:46 +0200471R: Cédric Le Goater <clg@kaod.org>
Daniel Henrique Barboza2e93a902022-11-17 12:32:18 -0300472S: Odd Fixes
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200473F: target/ppc/kvm.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500474
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200475S390 KVM CPUs
Christian Borntraeger7c8e2642018-12-04 14:38:02 +0100476M: Halil Pasic <pasic@linux.ibm.com>
Christian Borntraeger2c092952021-11-26 11:24:49 +0100477M: Christian Borntraeger <borntraeger@linux.ibm.com>
Cornelia Huck0922e8c2019-02-13 11:31:59 +0100478S: Supported
Cho, Yu-Chen67043602021-07-07 18:53:23 +0800479F: target/s390x/kvm/
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200480F: target/s390x/machine.c
David Hildenbrand74b4c742017-09-28 22:36:54 +0200481F: target/s390x/sigp.c
Cornelia Huckc5bfb202015-11-04 15:59:55 +0100482F: gdb-xml/s390*.xml
Stefan Hajnoczie18a8b32018-11-08 11:15:26 +0000483T: git https://github.com/borntraeger/qemu.git s390-next
Cornelia Huck146bd282017-10-05 17:05:23 +0200484L: qemu-s390x@nongnu.org
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500485
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200486X86 KVM CPUs
Paolo Bonzinid46d72f2014-10-21 15:16:06 +0200487M: Paolo Bonzini <pbonzini@redhat.com>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500488M: Marcelo Tosatti <mtosatti@redhat.com>
489L: kvm@vger.kernel.org
490S: Supported
Cornelia Huck96a46de2022-02-09 09:08:56 +0100491F: docs/system/i386/amd-memory-encryption.rst
Philippe Mathieu-Daudéa8211862021-10-07 19:56:09 +0200492F: docs/system/i386/sgx.rst
Claudio Fontanaa9dc68d2020-12-12 16:55:08 +0100493F: target/i386/kvm/
Philippe Mathieu-Daudé8c9e7f82021-10-07 18:17:16 +0200494F: target/i386/sev*
Thomas Huth9681ad32018-11-22 13:57:18 +0100495F: scripts/kvm/vmxcap
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500496
David Woodhouse438bec42023-03-07 09:59:59 +0000497Xen emulation on X86 KVM CPUs
498M: David Woodhouse <dwmw2@infradead.org>
499M: Paul Durrant <paul@xen.org>
500S: Supported
501F: include/sysemu/kvm_xen.h
502F: target/i386/kvm/xen*
503F: hw/i386/kvm/xen*
David Woodhousecc9d10b2023-10-19 15:30:23 +0100504F: tests/avocado/kvm_xen_guest.py
David Woodhouse438bec42023-03-07 09:59:59 +0000505
Philippe Mathieu-Daudé79ac3912020-06-18 14:33:34 +0200506Guest CPU Cores (other accelerators)
507------------------------------------
508Overall
Richard Henderson336f7442020-11-12 20:35:43 -0800509M: Richard Henderson <richard.henderson@linaro.org>
Philippe Mathieu-Daudé79ac3912020-06-18 14:33:34 +0200510R: Paolo Bonzini <pbonzini@redhat.com>
511S: Maintained
Claudio Fontana940e43a2021-02-04 17:39:24 +0100512F: include/qemu/accel.h
Markus Armbruster75e55192023-01-19 10:15:45 +0100513F: include/sysemu/accel-*.h
Claudio Fontanafb6916d2021-02-04 17:39:26 +0100514F: include/hw/core/accel-cpu.h
Claudio Fontanab86f59c2021-02-04 17:39:25 +0100515F: accel/accel-*.c
Philippe Mathieu-Daudé79ac3912020-06-18 14:33:34 +0200516F: accel/Makefile.objs
517F: accel/stubs/Makefile.objs
518
Alexander Grafa1477da2021-09-16 17:53:58 +0200519Apple Silicon HVF CPUs
520M: Alexander Graf <agraf@csgraf.de>
521S: Maintained
522F: target/arm/hvf/
523
Roman Bolshakov674fc212020-03-16 20:18:27 +0300524X86 HVF CPUs
Roman Bolshakovde6b5282020-06-25 01:58:51 +0300525M: Cameron Esfahani <dirty@apple.com>
Philippe Mathieu-Daudé3b4a0252023-06-21 13:32:23 +0200526M: Roman Bolshakov <rbolshakov@ddn.com>
Roman Bolshakovde6b5282020-06-25 01:58:51 +0300527W: https://wiki.qemu.org/Features/HVF
Roman Bolshakov674fc212020-03-16 20:18:27 +0300528S: Maintained
Roman Bolshakov674fc212020-03-16 20:18:27 +0300529F: target/i386/hvf/
Alexander Grafd57bc3c2021-06-03 14:09:30 +0100530
531HVF
532M: Cameron Esfahani <dirty@apple.com>
Philippe Mathieu-Daudé3b4a0252023-06-21 13:32:23 +0200533M: Roman Bolshakov <rbolshakov@ddn.com>
Alexander Grafd57bc3c2021-06-03 14:09:30 +0100534W: https://wiki.qemu.org/Features/HVF
535S: Maintained
536F: accel/hvf/
Roman Bolshakov674fc212020-03-16 20:18:27 +0300537F: include/sysemu/hvf.h
Alexander Grafd57bc3c2021-06-03 14:09:30 +0100538F: include/sysemu/hvf_int.h
Roman Bolshakov674fc212020-03-16 20:18:27 +0300539
Sunil Muthuswamyc220cde2020-02-18 20:38:32 +0000540WHPX CPUs
541M: Sunil Muthuswamy <sunilmut@microsoft.com>
542S: Supported
Claudio Fontana1fc33bb2020-12-12 16:55:09 +0100543F: target/i386/whpx/
Sunil Muthuswamyc220cde2020-02-18 20:38:32 +0000544F: include/sysemu/whpx.h
545
Markus Armbruster84995ea2019-06-06 19:24:08 +0200546Guest CPU Cores (Xen)
547---------------------
Markus Armbruster6347e1f2019-06-06 19:24:07 +0200548X86 Xen CPUs
Stefano Stabellini3623c572016-03-29 11:02:49 +0100549M: Stefano Stabellini <sstabellini@kernel.org>
550M: Anthony Perard <anthony.perard@citrix.com>
Paul Durrant784e9722019-09-13 13:24:18 +0100551M: Paul Durrant <paul@xen.org>
Anthony PERARD6d062202016-11-25 15:30:40 +0000552L: xen-devel@lists.xenproject.org
Stefano Stabellini8a6b0cd2011-07-29 16:05:13 +0100553S: Supported
Stefano Stabellini8a6b0cd2011-07-29 16:05:13 +0100554F: */xen*
Philippe Mathieu-Daudéda278d52020-05-08 12:02:22 +0200555F: accel/xen/*
Greg Kurzb8278912019-05-29 12:24:44 +0200556F: hw/9pfs/xen-9p*
Paolo Bonzinic92451c2015-09-22 11:36:48 +0200557F: hw/char/xen_console.c
558F: hw/display/xenfb.c
559F: hw/net/xen_nic.c
Anthony PERARD758af9c2020-04-06 17:50:43 +0100560F: hw/usb/xen-usb.c
Paul Durrant1a72d9a2019-01-08 14:48:48 +0000561F: hw/block/xen*
Paul Durrant4ea7d1a2019-01-08 14:48:53 +0000562F: hw/block/dataplane/xen*
Paolo Bonzinic92451c2015-09-22 11:36:48 +0200563F: hw/xen/
564F: hw/xenpv/
Stefano Stabellini9027ac52015-12-21 14:58:28 +0000565F: hw/i386/xen/
Philippe Mathieu-Daudé14018972019-12-09 10:50:01 +0100566F: hw/pci-host/xen_igd_pt.c
Paul Durrantfcab2b42019-01-08 14:48:55 +0000567F: include/hw/block/dataplane/xen*
Paolo Bonzinic92451c2015-09-22 11:36:48 +0200568F: include/hw/xen/
Philippe Mathieu-Daudéda278d52020-05-08 12:02:22 +0200569F: include/sysemu/xen.h
Stefano Stabellini9027ac52015-12-21 14:58:28 +0000570F: include/sysemu/xen-mapcache.h
Philippe Mathieu-Daudé71f364b2020-09-08 17:55:28 +0200571F: stubs/xen-hw-stub.c
Stefano Stabellini8a6b0cd2011-07-29 16:05:13 +0100572
Reinoud Zandijk39becfc2021-04-02 22:25:35 +0200573Guest CPU Cores (NVMM)
574----------------------
575NetBSD Virtual Machine Monitor (NVMM) CPU support
Reinoud Zandijk39becfc2021-04-02 22:25:35 +0200576M: Reinoud Zandijk <reinoud@netbsd.org>
577S: Maintained
578F: include/sysemu/nvmm.h
579F: target/i386/nvmm/
580
Markus Armbruster84995ea2019-06-06 19:24:08 +0200581Hosts
582-----
Stefan Weil1bdd6872012-01-27 18:53:49 +0100583LINUX
Philippe Mathieu-Daudéf5fecb42018-12-18 12:56:11 +0100584M: Michael S. Tsirkin <mst@redhat.com>
585M: Cornelia Huck <cohuck@redhat.com>
586M: Paolo Bonzini <pbonzini@redhat.com>
Stefan Weil1bdd6872012-01-27 18:53:49 +0100587S: Maintained
Stefan Weil1bdd6872012-01-27 18:53:49 +0100588F: linux-headers/
Cornelia Hucke05ea752023-09-29 16:30:12 +0200589F: include/standard-headers/
Philippe Mathieu-Daudéf5fecb42018-12-18 12:56:11 +0100590F: scripts/update-linux-headers.sh
Stefan Weil1bdd6872012-01-27 18:53:49 +0100591
592POSIX
Philippe Mathieu-Daudéf3f02042018-12-18 12:56:12 +0100593M: Paolo Bonzini <pbonzini@redhat.com>
Stefan Weil1bdd6872012-01-27 18:53:49 +0100594S: Maintained
Philippe Mathieu-Daudéf3f02042018-12-18 12:56:12 +0100595F: os-posix.c
596F: include/sysemu/os-posix.h
597F: util/*posix*.c
598F: include/qemu/*posix*.h
Stefan Weil1bdd6872012-01-27 18:53:49 +0100599
Kamil Rytarowski3c2bdbc2017-05-13 04:21:43 +0200600NETBSD
Reinoud Zandijk39becfc2021-04-02 22:25:35 +0200601M: Reinoud Zandijk <reinoud@netbsd.org>
602M: Ryo ONODERA <ryoon@netbsd.org>
Kamil Rytarowski3c2bdbc2017-05-13 04:21:43 +0200603S: Maintained
Thomas Huth1b612702017-07-27 12:09:34 +0200604K: ^Subject:.*(?i)NetBSD
Kamil Rytarowski3c2bdbc2017-05-13 04:21:43 +0200605
Brad Smith0a773d52018-02-16 11:46:20 -0500606OPENBSD
Brad Smith0a773d52018-02-16 11:46:20 -0500607M: Brad Smith <brad@comstyle.com>
608S: Maintained
609K: ^Subject:.*(?i)OpenBSD
610
Stefan Weil1bdd6872012-01-27 18:53:49 +0100611W32, W64
Stefan Weil1bdd6872012-01-27 18:53:49 +0100612M: Stefan Weil <sw@weilnetz.de>
613S: Maintained
614F: *win32*
Thomas Huth03972662016-09-29 09:43:31 +0200615F: */*win32*
616F: include/*/*win32*
617X: qga/*win32*
Stefan Weil885bdc92015-09-25 22:25:32 +0200618F: qemu.nsi
Alex Bennée48fad832022-10-27 19:36:21 +0100619F: scripts/nsis.py
Stefan Weil1bdd6872012-01-27 18:53:49 +0100620
Philippe Mathieu-Daudéc82b7ef2022-03-14 18:28:35 +0100621Darwin (macOS, iOS)
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +0200622M: Philippe Mathieu-Daudé <philmd@linaro.org>
Philippe Mathieu-Daudéc82b7ef2022-03-14 18:28:35 +0100623S: Odd Fixes
624F: .gitlab-ci.d/cirrus/macos-*
625F: */*.m
Alex Bennée48fad832022-10-27 19:36:21 +0100626F: scripts/entitlement.sh
Philippe Mathieu-Daudéc82b7ef2022-03-14 18:28:35 +0100627
Philippe Mathieu-Daudéb250d042018-03-08 23:39:42 +0100628Alpha Machines
Markus Armbruster84995ea2019-06-06 19:24:08 +0200629--------------
Richard Henderson336f7442020-11-12 20:35:43 -0800630M: Richard Henderson <richard.henderson@linaro.org>
Philippe Mathieu-Daudéb250d042018-03-08 23:39:42 +0100631S: Maintained
632F: hw/alpha/
Philippe Mathieu-Daudé7bea0dd2018-03-08 23:39:43 +0100633F: hw/isa/smc37c669-superio.c
Richard Henderson8d8a8ab2019-05-01 11:43:06 -0700634F: tests/tcg/alpha/system/
Philippe Mathieu-Daudéb250d042018-03-08 23:39:42 +0100635
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500636ARM Machines
637------------
liguang84291fe2013-12-17 19:42:38 +0000638Allwinner-a10
Beniamino Galvani85b4d5d2015-09-24 01:29:37 +0100639M: Beniamino Galvani <b.galvani@gmail.com>
Peter Maydella00d7f22018-11-19 15:29:08 +0000640M: Peter Maydell <peter.maydell@linaro.org>
Strahinja Jankovic632dfea2022-12-26 23:03:00 +0100641R: Strahinja Jankovic <strahinja.p.jankovic@gmail.com>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000642L: qemu-arm@nongnu.org
Peter Maydella00d7f22018-11-19 15:29:08 +0000643S: Odd Fixes
Beniamino Galvani85b4d5d2015-09-24 01:29:37 +0100644F: hw/*/allwinner*
Philippe Mathieu-Daudé9d19a8f2024-02-26 14:07:23 +0000645F: hw/ide/ahci-allwinner.c
Beniamino Galvani85b4d5d2015-09-24 01:29:37 +0100646F: include/hw/*/allwinner*
liguang84291fe2013-12-17 19:42:38 +0000647F: hw/arm/cubieboard.c
Peter Maydelld4a7c362021-07-13 15:22:24 +0100648F: docs/system/arm/cubieboard.rst
Strahinja Jankovic632dfea2022-12-26 23:03:00 +0100649F: hw/misc/axp209.c
liguang84291fe2013-12-17 19:42:38 +0000650
Niek Linnenbank740dafc2020-03-11 23:18:37 +0100651Allwinner-h3
652M: Niek Linnenbank <nieklinnenbank@gmail.com>
653L: qemu-arm@nongnu.org
654S: Maintained
655F: hw/*/allwinner-h3*
656F: include/hw/*/allwinner-h3*
Niek Linnenbankb0c96662020-03-11 23:18:38 +0100657F: hw/arm/orangepi.c
Philippe Mathieu-Daudéc67d7322020-11-20 16:45:43 +0100658F: docs/system/arm/orangepi.rst
Niek Linnenbank740dafc2020-03-11 23:18:37 +0100659
Peter Maydelle5a6a6e2017-07-17 13:36:09 +0100660ARM PrimeCell and CMSDK devices
Paolo Bonzini06271002015-09-22 11:45:00 +0200661M: Peter Maydell <peter.maydell@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000662L: qemu-arm@nongnu.org
Paolo Bonzini06271002015-09-22 11:45:00 +0200663S: Maintained
664F: hw/char/pl011.c
Philippe Mathieu-Daudéc6427ff2017-09-08 14:31:32 -0300665F: include/hw/char/pl011.h
Paolo Bonzini06271002015-09-22 11:45:00 +0200666F: hw/display/pl110*
667F: hw/dma/pl080.c
Peter Maydellaa74e352018-08-20 11:24:33 +0100668F: include/hw/dma/pl080.h
Paolo Bonzini06271002015-09-22 11:45:00 +0200669F: hw/dma/pl330.c
670F: hw/gpio/pl061.c
671F: hw/input/pl050.c
Thomas Huth4940da22023-10-20 08:09:33 +0200672F: include/hw/input/pl050.h
Paolo Bonzini06271002015-09-22 11:45:00 +0200673F: hw/intc/pl190.c
674F: hw/sd/pl181.c
Peter Maydell1d528662018-08-24 13:17:44 +0100675F: hw/ssi/pl022.c
676F: include/hw/ssi/pl022.h
Philippe Mathieu-Daudé877c1812019-10-04 01:03:52 +0200677F: hw/rtc/pl031.c
678F: include/hw/rtc/pl031.h
Paolo Bonzini06271002015-09-22 11:45:00 +0200679F: include/hw/arm/primecell.h
Peter Maydelle5a6a6e2017-07-17 13:36:09 +0100680F: hw/timer/cmsdk-apb-timer.c
681F: include/hw/timer/cmsdk-apb-timer.h
Peter Maydell30858da2021-01-28 11:41:23 +0000682F: tests/qtest/cmsdk-apb-timer-test.c
Peter Maydell4f4c6202018-08-24 13:17:41 +0100683F: hw/timer/cmsdk-apb-dualtimer.c
684F: include/hw/timer/cmsdk-apb-dualtimer.h
Peter Maydell9bc064b2021-01-28 11:41:25 +0000685F: tests/qtest/cmsdk-apb-dualtimer-test.c
Peter Maydelle5a6a6e2017-07-17 13:36:09 +0100686F: hw/char/cmsdk-apb-uart.c
687F: include/hw/char/cmsdk-apb-uart.h
Peter Maydell050c2ea2018-08-20 11:24:33 +0100688F: hw/watchdog/cmsdk-apb-watchdog.c
689F: include/hw/watchdog/cmsdk-apb-watchdog.h
Peter Maydell9cf5eb22021-01-28 11:41:24 +0000690F: tests/qtest/cmsdk-apb-watchdog-test.c
Peter Maydell0d4a7552018-05-31 14:50:51 +0100691F: hw/misc/tz-ppc.c
692F: include/hw/misc/tz-ppc.h
Peter Maydell344f4b12018-06-22 13:28:39 +0100693F: hw/misc/tz-mpc.c
694F: include/hw/misc/tz-mpc.h
Peter Maydell211e7012018-08-24 13:17:43 +0100695F: hw/misc/tz-msc.c
696F: include/hw/misc/tz-msc.h
Paolo Bonzini06271002015-09-22 11:45:00 +0200697
698ARM cores
699M: Peter Maydell <peter.maydell@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000700L: qemu-arm@nongnu.org
Paolo Bonzini06271002015-09-22 11:45:00 +0200701S: Maintained
702F: hw/intc/arm*
Thomas Huth662c3eb2023-10-27 08:07:09 +0200703F: hw/intc/gic*_internal.h
Paolo Bonzini06271002015-09-22 11:45:00 +0200704F: hw/misc/a9scu.c
705F: hw/misc/arm11scu.c
Thomas Huthb7f30112019-01-07 15:23:47 +0000706F: hw/misc/arm_l2x0.c
Peter Maydell2f9db772021-08-12 10:33:32 +0100707F: hw/misc/armv7m_ras.c
Paolo Bonzini06271002015-09-22 11:45:00 +0200708F: hw/timer/a9gtimer*
Philippe Mathieu-Daudéc6427ff2017-09-08 14:31:32 -0300709F: hw/timer/arm*
710F: include/hw/arm/arm*.h
Paolo Bonzini06271002015-09-22 11:45:00 +0200711F: include/hw/intc/arm*
712F: include/hw/misc/a9scu.h
713F: include/hw/misc/arm11scu.h
714F: include/hw/timer/a9gtimer.h
715F: include/hw/timer/arm_mptimer.h
Philippe Mathieu-Daudéc6427ff2017-09-08 14:31:32 -0300716F: include/hw/timer/armv7m_systick.h
Peter Maydell2f9db772021-08-12 10:33:32 +0100717F: include/hw/misc/armv7m_ras.h
Thomas Huth1e8a1fa2019-09-09 12:04:01 +0200718F: tests/qtest/test-arm-mptimer.c
Paolo Bonzini06271002015-09-22 11:45:00 +0200719
Evgeny Voevodinfc63dcf2012-02-16 09:56:06 +0000720Exynos
Igor Mitsyankof44c5c62013-07-31 10:27:35 +0400721M: Igor Mitsyanko <i.mitsyanko@gmail.com>
Peter Maydella00d7f22018-11-19 15:29:08 +0000722M: Peter Maydell <peter.maydell@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000723L: qemu-arm@nongnu.org
Peter Maydella00d7f22018-11-19 15:29:08 +0000724S: Odd Fixes
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100725F: hw/*/exynos*
Peter Maydell78cb12a2022-04-04 16:46:48 +0100726F: include/hw/*/exynos*
Evgeny Voevodinfc63dcf2012-02-16 09:56:06 +0000727
Mark Langsdorf766fd092012-02-16 09:56:10 +0000728Calxeda Highbank
Rob Herring9ef137c2014-05-27 17:09:49 +0100729M: Rob Herring <robh@kernel.org>
Peter Maydella00d7f22018-11-19 15:29:08 +0000730M: Peter Maydell <peter.maydell@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000731L: qemu-arm@nongnu.org
Peter Maydella00d7f22018-11-19 15:29:08 +0000732S: Odd Fixes
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100733F: hw/arm/highbank.c
734F: hw/net/xgmac.c
Peter Maydellc90df7c2021-07-13 15:22:26 +0100735F: docs/system/arm/highbank.rst
Mark Langsdorf766fd092012-02-16 09:56:10 +0000736
Antony Pavlov9082f122013-12-17 19:42:37 +0000737Canon DIGIC
738M: Antony Pavlov <antonynpavlov@gmail.com>
Peter Maydella00d7f22018-11-19 15:29:08 +0000739M: Peter Maydell <peter.maydell@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000740L: qemu-arm@nongnu.org
Peter Maydella00d7f22018-11-19 15:29:08 +0000741S: Odd Fixes
Antony Pavlov9082f122013-12-17 19:42:37 +0000742F: include/hw/arm/digic.h
743F: hw/*/digic*
Philippe Mathieu-Daudé7ad5f2d2018-11-25 21:49:50 +0100744F: include/hw/*/digic*
Willian Rampazzobbbd9b62021-11-05 12:53:54 -0300745F: tests/avocado/machine_arm_canona1100.py
Peter Maydell2d21dd12020-07-13 18:57:43 +0100746F: docs/system/arm/digic.rst
Antony Pavlov9082f122013-12-17 19:42:37 +0000747
Anup Patel9c8fdce2019-11-06 11:56:50 +0000748Goldfish RTC
749M: Anup Patel <anup.patel@wdc.com>
750M: Alistair Francis <Alistair.Francis@wdc.com>
751L: qemu-riscv@nongnu.org
752S: Maintained
753F: hw/rtc/goldfish_rtc.c
754F: include/hw/rtc/goldfish_rtc.h
755
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500756Gumstix
Peter Maydella00d7f22018-11-19 15:29:08 +0000757M: Peter Maydell <peter.maydell@linaro.org>
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +0200758R: Philippe Mathieu-Daudé <philmd@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000759L: qemu-arm@nongnu.org
Philippe Mathieu-Daudé1f7161d2018-06-26 17:50:39 +0100760S: Odd Fixes
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100761F: hw/arm/gumstix.c
Peter Maydellbb309002020-07-13 18:57:45 +0100762F: docs/system/arm/gumstix.rst
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500763
Thomas Huth123a0692018-11-26 13:39:23 +0000764i.MX25 PDK
765M: Peter Maydell <peter.maydell@linaro.org>
766R: Jean-Christophe Dubois <jcd@tribudubois.net>
767L: qemu-arm@nongnu.org
768S: Odd Fixes
769F: hw/arm/fsl-imx25.c
770F: hw/arm/imx25_pdk.c
771F: hw/misc/imx25_ccm.c
Guenter Roeck37f959592020-05-17 09:21:28 -0700772F: hw/watchdog/wdt_imx2.c
Thomas Huth123a0692018-11-26 13:39:23 +0000773F: include/hw/arm/fsl-imx25.h
774F: include/hw/misc/imx25_ccm.h
Guenter Roeck37f959592020-05-17 09:21:28 -0700775F: include/hw/watchdog/wdt_imx2.h
Peter Maydellb1b3e3e2021-07-22 18:52:29 +0100776F: docs/system/arm/imx25-pdk.rst
Thomas Huth123a0692018-11-26 13:39:23 +0000777
Thomas Huth95a5db32018-11-19 15:29:08 +0000778i.MX31 (kzm)
Peter Maydella00d7f22018-11-19 15:29:08 +0000779M: Peter Maydell <peter.maydell@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000780L: qemu-arm@nongnu.org
Thomas Huth95a5db32018-11-19 15:29:08 +0000781S: Odd Fixes
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100782F: hw/arm/kzm.c
Thomas Huth95a5db32018-11-19 15:29:08 +0000783F: hw/*/imx_*
784F: hw/*/*imx31*
785F: include/hw/*/imx_*
786F: include/hw/*/*imx31*
Peter Maydellfa6c9392021-07-22 18:52:28 +0100787F: docs/system/arm/kzm.rst
Peter Chubb03255592012-07-04 10:43:34 +0000788
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500789Integrator CP
Peter Maydell1ce9ce62011-09-20 16:18:46 +0100790M: Peter Maydell <peter.maydell@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000791L: qemu-arm@nongnu.org
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500792S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100793F: hw/arm/integratorcp.c
Thomas Huthf7e242d2016-09-23 14:14:18 +0200794F: hw/misc/arm_integrator_debug.c
Thomas Huthb7f30112019-01-07 15:23:47 +0000795F: include/hw/misc/arm_integrator_debug.h
Willian Rampazzobbbd9b62021-11-05 12:53:54 -0300796F: tests/avocado/machine_arm_integratorcp.py
Peter Maydellc11a8e82020-03-09 21:58:15 +0000797F: docs/system/arm/integratorcp.rst
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500798
Thomas Huth95a5db32018-11-19 15:29:08 +0000799MCIMX6UL EVK / i.MX6ul
800M: Peter Maydell <peter.maydell@linaro.org>
801R: Jean-Christophe Dubois <jcd@tribudubois.net>
802L: qemu-arm@nongnu.org
803S: Odd Fixes
804F: hw/arm/mcimx6ul-evk.c
805F: hw/arm/fsl-imx6ul.c
806F: hw/misc/imx6ul_ccm.c
807F: include/hw/arm/fsl-imx6ul.h
808F: include/hw/misc/imx6ul_ccm.h
809
810MCIMX7D SABRE / i.MX7
811M: Peter Maydell <peter.maydell@linaro.org>
812R: Andrey Smirnov <andrew.smirnov@gmail.com>
813L: qemu-arm@nongnu.org
814S: Odd Fixes
815F: hw/arm/mcimx7d-sabre.c
816F: hw/arm/fsl-imx7.c
Thomas Huthb7f30112019-01-07 15:23:47 +0000817F: hw/misc/imx7_*.c
Thomas Huth95a5db32018-11-19 15:29:08 +0000818F: include/hw/arm/fsl-imx7.h
Thomas Huthb7f30112019-01-07 15:23:47 +0000819F: include/hw/misc/imx7_*.h
Thomas Huth95a5db32018-11-19 15:29:08 +0000820F: hw/pci-host/designware.c
821F: include/hw/pci-host/designware.h
822
Peter Maydell273a70a2024-02-06 13:29:26 +0000823MPS2 / MPS3
Peter Maydelle5a6a6e2017-07-17 13:36:09 +0100824M: Peter Maydell <peter.maydell@linaro.org>
825L: qemu-arm@nongnu.org
826S: Maintained
827F: hw/arm/mps2.c
Peter Maydell0d4a7552018-05-31 14:50:51 +0100828F: hw/arm/mps2-tz.c
Peter Maydell273a70a2024-02-06 13:29:26 +0000829F: hw/arm/mps3r.c
Peter Maydell0d4a7552018-05-31 14:50:51 +0100830F: hw/misc/mps2-*.c
831F: include/hw/misc/mps2-*.h
Peter Maydell6eee5d22019-02-01 14:55:42 +0000832F: hw/arm/armsse.c
833F: include/hw/arm/armsse.h
Philippe Mathieu-Daudéc56c5762018-11-25 21:49:51 +0100834F: hw/misc/iotkit-secctl.c
835F: include/hw/misc/iotkit-secctl.h
Peter Maydell75750e42018-08-24 13:17:42 +0100836F: hw/misc/iotkit-sysctl.c
837F: include/hw/misc/iotkit-sysctl.h
Peter Maydellc667a252018-08-24 13:17:43 +0100838F: hw/misc/iotkit-sysinfo.c
839F: include/hw/misc/iotkit-sysinfo.h
Peter Maydell4239b312021-02-19 14:45:53 +0000840F: hw/misc/armsse-cpu-pwrctrl.c
841F: include/hw/misc/armsse-cpu-pwrctrl.h
Peter Maydell5aeb3682019-02-01 14:55:43 +0000842F: hw/misc/armsse-cpuid.c
843F: include/hw/misc/armsse-cpuid.h
Peter Maydellcdf63442019-02-28 10:55:15 +0000844F: hw/misc/armsse-mhu.c
845F: include/hw/misc/armsse-mhu.h
Peter Maydell0d10df32021-02-19 14:45:44 +0000846F: hw/timer/sse-counter.c
847F: include/hw/timer/sse-counter.h
Peter Maydell0b8ceee2021-02-19 14:45:45 +0000848F: hw/timer/sse-timer.c
849F: include/hw/timer/sse-timer.h
Peter Maydell1eca58a2021-02-19 14:46:17 +0000850F: tests/qtest/sse-timer-test.c
Peter Maydellba7912a2020-05-07 16:18:18 +0100851F: docs/system/arm/mps2.rst
Peter Maydelle5a6a6e2017-07-17 13:36:09 +0100852
Peter Maydell8f69a4c2019-02-21 18:17:47 +0000853Musca
854M: Peter Maydell <peter.maydell@linaro.org>
855L: qemu-arm@nongnu.org
856S: Maintained
857F: hw/arm/musca.c
Peter Maydell9f8f6402020-05-07 16:18:19 +0100858F: docs/system/arm/musca.rst
Peter Maydell8f69a4c2019-02-21 18:17:47 +0000859
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500860Musicpal
861M: Jan Kiszka <jan.kiszka@web.de>
Peter Maydella00d7f22018-11-19 15:29:08 +0000862M: Peter Maydell <peter.maydell@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000863L: qemu-arm@nongnu.org
Peter Maydella00d7f22018-11-19 15:29:08 +0000864S: Odd Fixes
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100865F: hw/arm/musicpal.c
Philippe Mathieu-Daudé6d81f482022-01-07 19:44:29 +0100866F: hw/net/mv88w8618_eth.c
867F: include/hw/net/mv88w8618_eth.h
Peter Maydellc11a8e82020-03-09 21:58:15 +0000868F: docs/system/arm/musicpal.rst
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500869
Havard Skinnemoene5a7ba82020-09-10 22:20:48 -0700870Nuvoton NPCM7xx
Havard Skinnemoene5a7ba82020-09-10 22:20:48 -0700871M: Tyrone Ting <kfting@nuvoton.com>
Hao Wu73c793d2023-02-08 15:54:31 -0800872M: Hao Wu <wuhaotsh@google.com>
Havard Skinnemoene5a7ba82020-09-10 22:20:48 -0700873L: qemu-arm@nongnu.org
874S: Supported
Hao Wu69fbfb82023-02-08 15:54:32 -0800875F: hw/*/npcm*
Titus Rwantare6f351a72023-10-23 23:46:44 +0000876F: hw/sensor/adm1266.c
Hao Wu69fbfb82023-02-08 15:54:32 -0800877F: include/hw/*/npcm*
878F: tests/qtest/npcm*
Titus Rwantare5861f5a2023-10-23 23:46:45 +0000879F: tests/qtest/adm1266-test.c
Havard Skinnemoend1cb5ed2020-09-10 22:20:53 -0700880F: pc-bios/npcm7xx_bootrom.bin
881F: roms/vbootrom
Philippe Mathieu-Daudé71703112020-11-20 16:45:42 +0100882F: docs/system/arm/nuvoton.rst
Havard Skinnemoene5a7ba82020-09-10 22:20:48 -0700883
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500884nSeries
Peter Maydella00d7f22018-11-19 15:29:08 +0000885M: Peter Maydell <peter.maydell@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000886L: qemu-arm@nongnu.org
Peter Maydella00d7f22018-11-19 15:29:08 +0000887S: Odd Fixes
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100888F: hw/arm/nseries.c
Philippe Mathieu-Daudé8a08cc72019-04-12 18:54:09 +0200889F: hw/display/blizzard.c
Thomas Huthb7f30112019-01-07 15:23:47 +0000890F: hw/input/lm832x.c
891F: hw/input/tsc2005.c
892F: hw/misc/cbus.c
Philippe Mathieu-Daudé6a648a52019-10-04 01:03:57 +0200893F: hw/rtc/twl92230.c
Philippe Mathieu-Daudé8a08cc72019-04-12 18:54:09 +0200894F: include/hw/display/blizzard.h
Philippe Mathieu-Daudé410bbee2021-06-17 13:53:20 +0200895F: include/hw/input/lm832x.h
Philippe Mathieu-Daudéa331dd02019-04-12 18:54:12 +0200896F: include/hw/input/tsc2xxx.h
Philippe Mathieu-Daudée8fa3952019-04-12 18:54:10 +0200897F: include/hw/misc/cbus.h
Willian Rampazzobbbd9b62021-11-05 12:53:54 -0300898F: tests/avocado/machine_arm_n8x0.py
Peter Maydellc11a8e82020-03-09 21:58:15 +0000899F: docs/system/arm/nseries.rst
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500900
901Palm
Peter Maydella00d7f22018-11-19 15:29:08 +0000902M: Peter Maydell <peter.maydell@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000903L: qemu-arm@nongnu.org
Peter Maydella00d7f22018-11-19 15:29:08 +0000904S: Odd Fixes
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100905F: hw/arm/palm.c
Thomas Huthb7f30112019-01-07 15:23:47 +0000906F: hw/input/tsc210x.c
Philippe Mathieu-Daudéa331dd02019-04-12 18:54:12 +0200907F: include/hw/input/tsc2xxx.h
Peter Maydellc11a8e82020-03-09 21:58:15 +0000908F: docs/system/arm/palm.rst
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500909
Thomas Huth95a5db32018-11-19 15:29:08 +0000910Raspberry Pi
911M: Peter Maydell <peter.maydell@linaro.org>
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +0200912R: Philippe Mathieu-Daudé <philmd@linaro.org>
Thomas Huth95a5db32018-11-19 15:29:08 +0000913L: qemu-arm@nongnu.org
914S: Odd Fixes
Thomas Huth123a0692018-11-26 13:39:23 +0000915F: hw/arm/raspi.c
Thomas Huth95a5db32018-11-19 15:29:08 +0000916F: hw/arm/raspi_platform.h
917F: hw/*/bcm283*
Thomas Huth29ecf2d2023-10-12 09:34:58 +0200918F: include/hw/arm/rasp*
Thomas Huth95a5db32018-11-19 15:29:08 +0000919F: include/hw/*/bcm283*
Philippe Mathieu-Daudéd9f2ac32020-11-20 18:39:51 +0100920F: docs/system/arm/raspi.rst
Thomas Huth95a5db32018-11-19 15:29:08 +0000921
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500922Real View
Peter Maydell1ce9ce62011-09-20 16:18:46 +0100923M: Peter Maydell <peter.maydell@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000924L: qemu-arm@nongnu.org
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500925S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100926F: hw/arm/realview*
Thomas Huthf7e242d2016-09-23 14:14:18 +0200927F: hw/cpu/realview_mpcore.c
Paolo Bonzini5ea53042015-09-22 11:49:41 +0200928F: hw/intc/realview_gic.c
929F: include/hw/intc/realview_gic.h
Peter Maydellc11a8e82020-03-09 21:58:15 +0000930F: docs/system/arm/realview.rst
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500931
Paolo Bonzini9b31bff2015-09-22 11:42:50 +0200932PXA2XX
Peter Maydella00d7f22018-11-19 15:29:08 +0000933M: Peter Maydell <peter.maydell@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000934L: qemu-arm@nongnu.org
Peter Maydella00d7f22018-11-19 15:29:08 +0000935S: Odd Fixes
Paolo Bonzini9b31bff2015-09-22 11:42:50 +0200936F: hw/arm/mainstone.c
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100937F: hw/arm/spitz.c
Paolo Bonzini9b31bff2015-09-22 11:42:50 +0200938F: hw/arm/tosa.c
939F: hw/arm/z2.c
940F: hw/*/pxa2xx*
Thomas Huth123a0692018-11-26 13:39:23 +0000941F: hw/display/tc6393xb.c
942F: hw/gpio/max7310.c
943F: hw/gpio/zaurus.c
Thomas Huth261c1282023-10-20 08:09:34 +0200944F: hw/input/ads7846.c
Thomas Huthf7e242d2016-09-23 14:14:18 +0200945F: hw/misc/mst_fpga.c
Corey Minyard58f3e3f2021-05-18 15:54:52 -0500946F: hw/adc/max111x.c
947F: include/hw/adc/max111x.h
Thomas Huthed0db862016-02-25 12:22:04 +0100948F: include/hw/arm/pxa.h
Thomas Huth123a0692018-11-26 13:39:23 +0000949F: include/hw/arm/sharpsl.h
Philippe Mathieu-Daudéee2ccc52019-04-12 18:54:08 +0200950F: include/hw/display/tc6393xb.h
Peter Maydellc11a8e82020-03-09 21:58:15 +0000951F: docs/system/arm/xscale.rst
Peter Maydellc9543db2021-07-22 18:52:27 +0100952F: docs/system/arm/mainstone.rst
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500953
Thomas Huth95a5db32018-11-19 15:29:08 +0000954SABRELITE / i.MX6
955M: Peter Maydell <peter.maydell@linaro.org>
956R: Jean-Christophe Dubois <jcd@tribudubois.net>
957L: qemu-arm@nongnu.org
958S: Odd Fixes
Thomas Huth4db546d2022-12-12 18:48:41 +0100959F: docs/system/arm/sabrelite.rst
Thomas Huth95a5db32018-11-19 15:29:08 +0000960F: hw/arm/sabrelite.c
961F: hw/arm/fsl-imx6.c
Thomas Huthb7f30112019-01-07 15:23:47 +0000962F: hw/misc/imx6_*.c
Thomas Huth95a5db32018-11-19 15:29:08 +0000963F: hw/ssi/imx_spi.c
Guenter Roeck0701a5e2020-03-12 18:45:47 -0700964F: hw/usb/imx-usb-phy.c
965F: include/hw/usb/imx-usb-phy.h
Thomas Huth95a5db32018-11-19 15:29:08 +0000966F: include/hw/arm/fsl-imx6.h
Thomas Huthb7f30112019-01-07 15:23:47 +0000967F: include/hw/misc/imx6_*.h
Thomas Huth95a5db32018-11-19 15:29:08 +0000968F: include/hw/ssi/imx_spi.h
969
Hongbo Zhang64580902019-07-01 17:26:18 +0100970SBSA-REF
Radoslaw Biernacki428a3772020-05-12 19:07:04 +0200971M: Radoslaw Biernacki <rad@semihalf.com>
Hongbo Zhang64580902019-07-01 17:26:18 +0100972M: Peter Maydell <peter.maydell@linaro.org>
Leif Lindholm14d5add2022-05-05 12:37:40 +0100973R: Leif Lindholm <quic_llindhol@quicinc.com>
Marcin Juszkiewicz96e6d252023-05-15 16:37:53 +0200974R: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org>
Hongbo Zhang64580902019-07-01 17:26:18 +0100975L: qemu-arm@nongnu.org
976S: Maintained
977F: hw/arm/sbsa-ref.c
Thomas Huthd02ce622023-09-29 16:19:18 +0200978F: hw/misc/sbsa_ec.c
979F: hw/watchdog/sbsa_gwdt.c
980F: include/hw/watchdog/sbsa_gwdt.h
Philippe Mathieu-Daudé9eeeb802020-11-20 16:45:44 +0100981F: docs/system/arm/sbsa.rst
Philippe Mathieu-Daudéa0d201b2023-04-24 10:22:34 +0100982F: tests/avocado/machine_aarch64_sbsaref.py
Hongbo Zhang64580902019-07-01 17:26:18 +0100983
Thomas Huth671f11b2018-11-13 10:47:58 +0000984Sharp SL-5500 (Collie) PDA
985M: Peter Maydell <peter.maydell@linaro.org>
986L: qemu-arm@nongnu.org
987S: Odd Fixes
988F: hw/arm/collie.c
989F: hw/arm/strongarm*
Peter Maydellb76b60f2020-07-13 18:57:44 +0100990F: docs/system/arm/collie.rst
Thomas Huth671f11b2018-11-13 10:47:58 +0000991
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500992Stellaris
Peter Maydell1ce9ce62011-09-20 16:18:46 +0100993M: Peter Maydell <peter.maydell@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000994L: qemu-arm@nongnu.org
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500995S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100996F: hw/*/stellaris*
Thomas Huth7c7e1f62023-10-20 08:09:36 +0200997F: hw/display/ssd03*
Philippe Mathieu-Daudé98fa3322019-04-12 18:54:11 +0200998F: include/hw/input/gamepad.h
Thomas Huth7c7e1f62023-10-20 08:09:36 +0200999F: include/hw/timer/stellaris-gptm.h
Peter Maydellc11a8e82020-03-09 21:58:15 +00001000F: docs/system/arm/stellaris.rst
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001001
Alexandre Iooss2ac24102021-06-17 18:56:45 +02001002STM32VLDISCOVERY
1003M: Alexandre Iooss <erdnaxe@crans.org>
1004L: qemu-arm@nongnu.org
1005S: Maintained
1006F: hw/arm/stm32vldiscovery.c
Alexandre Iooss1af060e2021-06-17 18:56:46 +02001007F: docs/system/arm/stm32.rst
Alexandre Iooss2ac24102021-06-17 18:56:45 +02001008
Thomas Huth95a5db32018-11-19 15:29:08 +00001009Versatile Express
1010M: Peter Maydell <peter.maydell@linaro.org>
1011L: qemu-arm@nongnu.org
1012S: Maintained
1013F: hw/arm/vexpress.c
Thomas Huth42c31682023-10-20 08:09:35 +02001014F: hw/display/sii9022.c
Peter Maydell5a1d4242020-05-07 16:18:17 +01001015F: docs/system/arm/vexpress.rst
Thomas Huth95a5db32018-11-19 15:29:08 +00001016
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001017Versatile PB
Peter Maydell1ce9ce62011-09-20 16:18:46 +01001018M: Peter Maydell <peter.maydell@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +00001019L: qemu-arm@nongnu.org
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001020S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01001021F: hw/*/versatile*
Philippe Mathieu-Daudé500a64d2023-01-10 09:25:08 +01001022F: hw/i2c/arm_sbcon_i2c.c
Philippe Mathieu-Daudéf61c3fb2020-06-17 09:25:29 +02001023F: include/hw/i2c/arm_sbcon_i2c.h
Philippe Mathieu-Daudéc6427ff2017-09-08 14:31:32 -03001024F: hw/misc/arm_sysctl.c
Peter Maydellc11a8e82020-03-09 21:58:15 +00001025F: docs/system/arm/versatile.rst
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001026
Thomas Huth95a5db32018-11-19 15:29:08 +00001027Virt
1028M: Peter Maydell <peter.maydell@linaro.org>
1029L: qemu-arm@nongnu.org
1030S: Maintained
1031F: hw/arm/virt*
1032F: include/hw/arm/virt.h
Peter Maydell6a0b7502020-07-13 18:57:46 +01001033F: docs/system/arm/virt.rst
Alex Bennée11593542022-04-19 10:09:56 +01001034F: tests/avocado/machine_aarch64_virt.py
Thomas Huth95a5db32018-11-19 15:29:08 +00001035
Peter A. G. Crosthwaitee3260502012-03-05 14:39:13 +10001036Xilinx Zynq
Alistair Franciscc0100f2016-07-28 09:55:39 -07001037M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
Alistair Francisc22e5802018-03-01 11:05:58 +00001038M: Alistair Francis <alistair@alistair23.me>
Peter Maydella00d7f22018-11-19 15:29:08 +00001039M: Peter Maydell <peter.maydell@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +00001040L: qemu-arm@nongnu.org
Peter A. G. Crosthwaitee3260502012-03-05 14:39:13 +10001041S: Maintained
Alistair Franciscc0100f2016-07-28 09:55:39 -07001042F: hw/*/xilinx_*
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01001043F: hw/*/cadence_*
Corey Minyard246f5302021-05-18 15:51:24 -05001044F: hw/misc/zynq_slcr.c
1045F: hw/adc/zynq-xadc.c
1046F: include/hw/misc/zynq_slcr.h
1047F: include/hw/adc/zynq-xadc.h
Alistair Franciscc0100f2016-07-28 09:55:39 -07001048X: hw/ssi/xilinx_*
Peter A. G. Crosthwaitee3260502012-03-05 14:39:13 +10001049
Edgar E. Iglesiasff9e1572020-08-03 18:47:49 +02001050Xilinx ZynqMP and Versal
Alistair Francisc22e5802018-03-01 11:05:58 +00001051M: Alistair Francis <alistair@alistair23.me>
Alistair Franciscc0100f2016-07-28 09:55:39 -07001052M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
Peter Maydella00d7f22018-11-19 15:29:08 +00001053M: Peter Maydell <peter.maydell@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +00001054L: qemu-arm@nongnu.org
Alistair Francis137805f2015-08-25 15:45:07 +01001055S: Maintained
Alistair Franciscc0100f2016-07-28 09:55:39 -07001056F: hw/*/xlnx*.c
Markus Armbrusterf586d5f2016-09-05 14:28:52 +02001057F: include/hw/*/xlnx*.h
Philippe Mathieu-Daudé24d6d8b2018-11-25 21:49:39 +01001058F: include/hw/ssi/xilinx_spips.h
1059F: hw/display/dpcd.c
1060F: include/hw/display/dpcd.h
Edgar E. Iglesiasff9e1572020-08-03 18:47:49 +02001061F: docs/system/arm/xlnx-versal-virt.rst
Alistair Francis137805f2015-08-25 15:45:07 +01001062
Francisco Iglesias72e58842022-01-21 16:11:41 +00001063Xilinx Versal OSPI
1064M: Francisco Iglesias <francisco.iglesias@xilinx.com>
1065S: Maintained
1066F: hw/ssi/xlnx-versal-ospi.c
1067F: include/hw/ssi/xlnx-versal-ospi.h
1068
Francisco Iglesias5a8559e2023-08-31 17:56:54 +01001069Xilinx Versal CFI
1070M: Francisco Iglesias <francisco.iglesias@amd.com>
1071S: Maintained
1072F: hw/misc/xlnx-cfi-if.c
1073F: include/hw/misc/xlnx-cfi-if.h
Francisco Iglesias86d916c2023-08-31 17:56:55 +01001074F: hw/misc/xlnx-versal-cfu.c
1075F: include/hw/misc/xlnx-versal-cfu.h
Francisco Iglesiasc6766f52023-08-31 17:56:58 +01001076F: hw/misc/xlnx-versal-cframe-reg.c
1077F: include/hw/misc/xlnx-versal-cframe-reg.h
Francisco Iglesias5a8559e2023-08-31 17:56:54 +01001078
Alexandre Iooss0f76deb2021-06-17 18:56:44 +02001079STM32F100
1080M: Alexandre Iooss <erdnaxe@crans.org>
1081L: qemu-arm@nongnu.org
1082S: Maintained
1083F: hw/arm/stm32f100_soc.c
1084
Alistair Francisa1f81932016-10-04 13:28:07 +01001085STM32F205
1086M: Alistair Francis <alistair@alistair23.me>
Peter Maydella00d7f22018-11-19 15:29:08 +00001087M: Peter Maydell <peter.maydell@linaro.org>
Philippe Mathieu-Daudé8ef350b2020-01-20 19:59:27 +01001088L: qemu-arm@nongnu.org
Alistair Francisa1f81932016-10-04 13:28:07 +01001089S: Maintained
1090F: hw/arm/stm32f205_soc.c
1091F: hw/misc/stm32f2xx_syscfg.c
1092F: hw/char/stm32f2xx_usart.c
1093F: hw/timer/stm32f2xx_timer.c
1094F: hw/adc/*
1095F: hw/ssi/stm32f2xx_spi.c
Philippe Mathieu-Daudé0e0d3452017-09-08 14:36:19 -03001096F: include/hw/*/stm32*.h
Alistair Francisa1f81932016-10-04 13:28:07 +01001097
Alistair Francis529fc5f2020-01-17 14:09:29 +00001098STM32F405
1099M: Alistair Francis <alistair@alistair23.me>
1100M: Peter Maydell <peter.maydell@linaro.org>
Philippe Mathieu-Daudé8ef350b2020-01-20 19:59:27 +01001101L: qemu-arm@nongnu.org
Alistair Francis529fc5f2020-01-17 14:09:29 +00001102S: Maintained
1103F: hw/arm/stm32f405_soc.c
1104F: hw/misc/stm32f4xx_syscfg.c
1105F: hw/misc/stm32f4xx_exti.c
1106
Alistair Francisa1f81932016-10-04 13:28:07 +01001107Netduino 2
1108M: Alistair Francis <alistair@alistair23.me>
Peter Maydella00d7f22018-11-19 15:29:08 +00001109M: Peter Maydell <peter.maydell@linaro.org>
Philippe Mathieu-Daudé8ef350b2020-01-20 19:59:27 +01001110L: qemu-arm@nongnu.org
Alistair Francisa1f81932016-10-04 13:28:07 +01001111S: Maintained
1112F: hw/arm/netduino2.c
1113
Alistair Francis60d6c422020-01-17 14:09:29 +00001114Netduino Plus 2
1115M: Alistair Francis <alistair@alistair23.me>
1116M: Peter Maydell <peter.maydell@linaro.org>
Philippe Mathieu-Daudé8ef350b2020-01-20 19:59:27 +01001117L: qemu-arm@nongnu.org
Alistair Francis60d6c422020-01-17 14:09:29 +00001118S: Maintained
1119F: hw/arm/netduinoplus2.c
1120
Felipe Balbiee5bffa2022-12-30 16:57:33 +02001121Olimex STM32 H405
1122M: Felipe Balbi <balbi@kernel.org>
1123L: qemu-arm@nongnu.org
1124S: Maintained
1125F: hw/arm/olimex-stm32-h405.c
1126
Inès Varhol04a7c7b2024-01-08 14:58:28 +01001127STM32L4x5 SoC Family
1128M: Arnaud Minier <arnaud.minier@telecom-paris.fr>
1129M: Inès Varhol <ines.varhol@telecom-paris.fr>
1130L: qemu-arm@nongnu.org
1131S: Maintained
1132F: hw/arm/stm32l4x5_soc.c
Arnaud Minierd6b55a02024-03-03 15:06:36 +01001133F: hw/misc/stm32l4x5_exti.c
1134F: hw/misc/stm32l4x5_syscfg.c
1135F: hw/misc/stm32l4x5_rcc.c
Inès Varhol1cdcfb62024-03-05 22:03:10 +01001136F: hw/gpio/stm32l4x5_gpio.c
Arnaud Minierd6b55a02024-03-03 15:06:36 +01001137F: include/hw/*/stm32l4x5_*.h
Inès Varhol04a7c7b2024-01-08 14:58:28 +01001138
Inès Varhol41581f12024-01-08 14:58:29 +01001139B-L475E-IOT01A IoT Node
1140M: Arnaud Minier <arnaud.minier@telecom-paris.fr>
1141M: Inès Varhol <ines.varhol@telecom-paris.fr>
1142L: qemu-arm@nongnu.org
1143S: Maintained
1144F: hw/arm/b-l475e-iot01a.c
1145
Subbaraya Sundeep670bc4c2017-11-13 13:55:25 +00001146SmartFusion2
1147M: Subbaraya Sundeep <sundeep.lkml@gmail.com>
Peter Maydella00d7f22018-11-19 15:29:08 +00001148M: Peter Maydell <peter.maydell@linaro.org>
Philippe Mathieu-Daudé8ef350b2020-01-20 19:59:27 +01001149L: qemu-arm@nongnu.org
Subbaraya Sundeep670bc4c2017-11-13 13:55:25 +00001150S: Maintained
1151F: hw/arm/msf2-soc.c
1152F: hw/misc/msf2-sysreg.c
1153F: hw/timer/mss-timer.c
1154F: hw/ssi/mss-spi.c
1155F: include/hw/arm/msf2-soc.h
1156F: include/hw/misc/msf2-sysreg.h
1157F: include/hw/timer/mss-timer.h
1158F: include/hw/ssi/mss-spi.h
Subbaraya Sundeep1c664372020-04-16 20:24:49 +05301159F: hw/net/msf2-emac.c
1160F: include/hw/net/msf2-emac.h
Subbaraya Sundeep670bc4c2017-11-13 13:55:25 +00001161
1162Emcraft M2S-FG484
1163M: Subbaraya Sundeep <sundeep.lkml@gmail.com>
Peter Maydella00d7f22018-11-19 15:29:08 +00001164M: Peter Maydell <peter.maydell@linaro.org>
Philippe Mathieu-Daudé8ef350b2020-01-20 19:59:27 +01001165L: qemu-arm@nongnu.org
Subbaraya Sundeep670bc4c2017-11-13 13:55:25 +00001166S: Maintained
1167F: hw/arm/msf2-som.c
Peter Maydell3f65df32021-07-13 15:22:25 +01001168F: docs/system/arm/emcraft-sf2.rst
Subbaraya Sundeep670bc4c2017-11-13 13:55:25 +00001169
Joel Stanleyf87db1b2018-06-26 17:50:39 +01001170ASPEED BMCs
1171M: Cédric Le Goater <clg@kaod.org>
Peter Maydella00d7f22018-11-19 15:29:08 +00001172M: Peter Maydell <peter.maydell@linaro.org>
Andrew Jefferycbe27c32023-09-25 15:52:12 +09301173R: Andrew Jeffery <andrew@codeconstruct.com.au>
Joel Stanleyf87db1b2018-06-26 17:50:39 +01001174R: Joel Stanley <joel@jms.id.au>
1175L: qemu-arm@nongnu.org
1176S: Maintained
1177F: hw/*/*aspeed*
1178F: include/hw/*/*aspeed*
1179F: hw/net/ftgmac100.c
1180F: include/hw/net/ftgmac100.h
Philippe Mathieu-Daudéde8ee7d2020-11-20 16:45:41 +01001181F: docs/system/arm/aspeed.rst
Thomas Huthe354d992023-04-24 10:22:41 +01001182F: tests/*/*aspeed*
Peter Delevoryasc2f58c22022-07-14 16:24:38 +02001183F: hw/arm/fby35.c
Joel Stanleyf87db1b2018-06-26 17:50:39 +01001184
Joel Stanleyc0066d12018-09-25 14:02:30 +01001185NRF51
1186M: Joel Stanley <joel@jms.id.au>
Peter Maydella00d7f22018-11-19 15:29:08 +00001187M: Peter Maydell <peter.maydell@linaro.org>
Joel Stanleyc0066d12018-09-25 14:02:30 +01001188L: qemu-arm@nongnu.org
1189S: Maintained
Stefan Hajnoczic8de3f52019-01-29 11:46:04 +00001190F: hw/*/nrf51*.c
1191F: hw/*/microbit*.c
1192F: include/hw/*/nrf51*.h
1193F: include/hw/*/microbit*.h
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02001194F: tests/qtest/microbit-test.c
Alexandre Iooss90a76c62021-06-21 09:56:25 +02001195F: docs/system/arm/nrf.rst
Joel Stanleyc0066d12018-09-25 14:02:30 +01001196
Michael Rolnik42f3ff02020-01-24 01:51:21 +01001197AVR Machines
1198-------------
1199
1200AVR MCUs
1201M: Michael Rolnik <mrolnik@gmail.com>
Michael Rolnik42f3ff02020-01-24 01:51:21 +01001202S: Maintained
Alex Bennée812b31d2021-07-07 14:17:43 +01001203F: configs/devices/avr-softmmu/default.mak
Philippe Mathieu-Daudé7dd8f6f2020-01-24 01:51:25 +01001204F: hw/avr/
Michael Rolnik429ca9d2020-01-24 01:51:17 +01001205F: include/hw/char/avr_usart.h
1206F: hw/char/avr_usart.c
Michael Rolnik8ff47bc2020-01-24 01:51:18 +01001207F: include/hw/timer/avr_timer16.h
1208F: hw/timer/avr_timer16.c
Michael Rolnikdc288de2020-01-24 01:51:19 +01001209F: include/hw/misc/avr_power.h
1210F: hw/misc/avr_power.c
Michael Rolnik42f3ff02020-01-24 01:51:21 +01001211
Philippe Mathieu-Daudé50486d62020-01-24 01:51:27 +01001212Arduino
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02001213M: Philippe Mathieu-Daudé <philmd@linaro.org>
Philippe Mathieu-Daudé50486d62020-01-24 01:51:27 +01001214S: Maintained
1215F: hw/avr/arduino.c
1216
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001217CRIS Machines
1218-------------
1219Axis Dev88
1220M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
1221S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01001222F: hw/cris/axis_dev88.c
Peter Maydell6e481d52013-06-24 11:49:32 +01001223F: hw/*/etraxfs_*.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001224
Philippe Mathieu-Daudée1883962018-12-18 12:56:10 +01001225HP-PARISC Machines
1226------------------
Helge Dellerae759c92023-10-14 19:48:27 +02001227HP B160L, HP C3700
Richard Henderson336f7442020-11-12 20:35:43 -08001228M: Richard Henderson <richard.henderson@linaro.org>
Philippe Mathieu-Daudée1883962018-12-18 12:56:10 +01001229R: Helge Deller <deller@gmx.de>
1230S: Odd Fixes
Alex Bennée812b31d2021-07-07 14:17:43 +01001231F: configs/devices/hppa-softmmu/default.mak
Thomas Huthe416fd72023-11-07 11:30:44 +01001232F: hw/display/artist.c
Philippe Mathieu-Daudée1883962018-12-18 12:56:10 +01001233F: hw/hppa/
Thomas Huth8db07602023-10-17 17:19:33 +02001234F: hw/input/lasips2.c
Philippe Mathieu-Daudé11f976a2021-10-04 10:38:35 +02001235F: hw/net/*i82596*
Mark Cave-Ayland45f569a2022-05-04 10:25:52 +01001236F: hw/misc/lasi.c
Helge Dellerae759c92023-10-14 19:48:27 +02001237F: hw/pci-host/astro.c
Mark Cave-Ayland0db93502022-05-04 10:25:32 +01001238F: hw/pci-host/dino.c
Thomas Huth8db07602023-10-17 17:19:33 +02001239F: include/hw/input/lasips2.h
Mark Cave-Ayland45f569a2022-05-04 10:25:52 +01001240F: include/hw/misc/lasi.h
Philippe Mathieu-Daudé11f976a2021-10-04 10:38:35 +02001241F: include/hw/net/lasi_82596.h
Helge Dellerae759c92023-10-14 19:48:27 +02001242F: include/hw/pci-host/astro.h
Mark Cave-Ayland0db93502022-05-04 10:25:32 +01001243F: include/hw/pci-host/dino.h
Philippe Mathieu-Daudée1883962018-12-18 12:56:10 +01001244F: pc-bios/hppa-firmware.img
Helge Dellerae759c92023-10-14 19:48:27 +02001245F: roms/seabios-hppa/
Philippe Mathieu-Daudée1883962018-12-18 12:56:10 +01001246
Xiaojuan Yangd88b51d2022-06-06 20:43:08 +08001247LoongArch Machines
1248------------------
1249Virt
Xiaojuan Yangd88b51d2022-06-06 20:43:08 +08001250M: Song Gao <gaosong@loongson.cn>
1251S: Maintained
Xiaojuan Yang587858e2022-07-29 15:30:17 +08001252F: docs/system/loongarch/virt.rst
Xiaojuan Yanga8a506c2022-06-06 20:43:20 +08001253F: configs/targets/loongarch64-softmmu.mak
1254F: configs/devices/loongarch64-softmmu/default.mak
1255F: hw/loongarch/
1256F: include/hw/loongarch/virt.h
Xiaojuan Yangf6783e32022-06-06 20:43:21 +08001257F: include/hw/intc/loongarch_*.h
1258F: hw/intc/loongarch_*.c
Xiaojuan Yang0f4fcf12022-06-06 20:43:22 +08001259F: include/hw/pci-host/ls7a.h
Xiaojuan Yangc117f682022-06-06 20:43:28 +08001260F: hw/rtc/ls7a_rtc.c
Xiaojuan Yangca61e752022-06-06 20:43:31 +08001261F: gdb-xml/loongarch*.xml
Xiaojuan Yangd88b51d2022-06-06 20:43:08 +08001262
Aurelien Jarnoafcacd52011-01-14 20:39:19 +01001263M68K Machines
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001264-------------
1265an5206
Thomas Huth5baf2742017-02-12 23:38:17 +01001266M: Thomas Huth <huth@tuxfamily.org>
1267S: Odd Fixes
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01001268F: hw/m68k/an5206.c
Thomas Huthe9a56112016-11-02 09:39:33 +01001269F: hw/m68k/mcf5206.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001270
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001271mcf5208
Thomas Huth5baf2742017-02-12 23:38:17 +01001272M: Thomas Huth <huth@tuxfamily.org>
1273S: Odd Fixes
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01001274F: hw/m68k/mcf5208.c
Thomas Huthe9a56112016-11-02 09:39:33 +01001275F: hw/m68k/mcf_intc.c
1276F: hw/char/mcf_uart.c
1277F: hw/net/mcf_fec.c
Thomas Huth5baf2742017-02-12 23:38:17 +01001278F: include/hw/m68k/mcf*.h
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001279
Thomas Huth1810b812018-06-30 08:33:57 +00001280NeXTcube
1281M: Thomas Huth <huth@tuxfamily.org>
1282S: Odd Fixes
1283F: hw/m68k/next-*.c
1284F: hw/display/next-fb.c
1285F: include/hw/m68k/next-cube.h
1286
Laurent Vivier6dca62a2019-10-26 18:45:40 +02001287q800
1288M: Laurent Vivier <laurent@vivier.eu>
1289S: Maintained
Laurent Vivier04e7ca82019-10-26 18:45:45 +02001290F: hw/m68k/q800.c
Mark Cave-Ayland8e093282023-06-21 09:53:36 +01001291F: hw/m68k/q800-glue.c
Laurent Vivier6dca62a2019-10-26 18:45:40 +02001292F: hw/misc/mac_via.c
Laurent Vivierfa2ba3b2019-10-26 18:45:42 +02001293F: hw/nubus/*
Laurent Vivier8ac919a2019-10-26 18:45:43 +02001294F: hw/display/macfb.c
Laurent Vivierc701ec62019-10-26 18:45:44 +02001295F: hw/block/swim.c
Mark Cave-Aylande2fd6952023-10-04 09:37:48 +01001296F: hw/misc/djmemc.c
Mark Cave-Aylandbdc2c772023-10-04 09:37:51 +01001297F: hw/misc/iosb.c
Mark Cave-Aylandac13a6b2023-10-04 09:37:53 +01001298F: hw/audio/asc.c
Laurent Vivier04e7ca82019-10-26 18:45:45 +02001299F: hw/m68k/bootinfo.h
Laurent Vivier382d71a2020-12-20 12:26:09 +01001300F: include/standard-headers/asm-m68k/bootinfo.h
1301F: include/standard-headers/asm-m68k/bootinfo-mac.h
Laurent Vivier6dca62a2019-10-26 18:45:40 +02001302F: include/hw/misc/mac_via.h
Laurent Vivierfa2ba3b2019-10-26 18:45:42 +02001303F: include/hw/nubus/*
Laurent Vivier8ac919a2019-10-26 18:45:43 +02001304F: include/hw/display/macfb.h
Laurent Vivierc701ec62019-10-26 18:45:44 +02001305F: include/hw/block/swim.h
Mark Cave-Aylanda8019222023-06-21 09:53:32 +01001306F: include/hw/m68k/q800.h
Mark Cave-Ayland8e093282023-06-21 09:53:36 +01001307F: include/hw/m68k/q800-glue.h
Mark Cave-Aylande2fd6952023-10-04 09:37:48 +01001308F: include/hw/misc/djmemc.h
Mark Cave-Aylandbdc2c772023-10-04 09:37:51 +01001309F: include/hw/misc/iosb.h
Mark Cave-Aylandac13a6b2023-10-04 09:37:53 +01001310F: include/hw/audio/asc.h
Laurent Vivier6dca62a2019-10-26 18:45:40 +02001311
Laurent Viviere1cecdc2021-03-12 22:41:45 +01001312virt
1313M: Laurent Vivier <laurent@vivier.eu>
1314S: Maintained
1315F: hw/m68k/virt.c
1316F: hw/char/goldfish_tty.c
1317F: hw/intc/goldfish_pic.c
1318F: hw/intc/m68k_irqc.c
1319F: hw/misc/virt_ctrl.c
1320F: include/hw/char/goldfish_tty.h
1321F: include/hw/intc/goldfish_pic.h
1322F: include/hw/intc/m68k_irqc.h
1323F: include/hw/misc/virt_ctrl.h
Peter Maydell6e0c8492023-09-27 16:12:03 +01001324F: docs/specs/virt-ctlr.rst
Laurent Viviere1cecdc2021-03-12 22:41:45 +01001325
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001326MicroBlaze Machines
1327-------------------
1328petalogix_s3adsp1800
1329M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
1330S: Maintained
Peter Maydell6e481d52013-06-24 11:49:32 +01001331F: hw/microblaze/petalogix_s3adsp1800_mmu.c
Philippe Mathieu-Daudéa734c7b2018-11-25 21:49:41 +01001332F: include/hw/char/xilinx_uartlite.h
Willian Rampazzobbbd9b62021-11-05 12:53:54 -03001333F: tests/avocado/machine_microblaze.py
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001334
Peter A. G. Crosthwaited36e8ce2012-06-26 14:29:40 +10001335petalogix_ml605
Alistair Francis4b46ba62015-08-25 15:45:06 +01001336M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
Peter A. G. Crosthwaited36e8ce2012-06-26 14:29:40 +10001337S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01001338F: hw/microblaze/petalogix_ml605_mmu.c
Peter A. G. Crosthwaited36e8ce2012-06-26 14:29:40 +10001339
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001340MIPS Machines
1341-------------
Philippe Mathieu-Daudéf44d1d42021-10-04 10:26:38 +02001342Overall MIPS Machines
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02001343M: Philippe Mathieu-Daudé <philmd@linaro.org>
Philippe Mathieu-Daudéf44d1d42021-10-04 10:26:38 +02001344S: Odd Fixes
1345F: configs/devices/mips*/*
1346F: hw/mips/
1347F: include/hw/mips/
1348
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001349Jazz
1350M: Hervé Poussineau <hpoussin@reactos.org>
Aleksandar Markovic97d89742020-05-18 22:09:16 +02001351R: Aleksandar Rikalo <aleksandar.rikalo@syrmia.com>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001352S: Maintained
Aleksandar Markovic52987222020-05-18 22:09:20 +02001353F: hw/mips/jazz.c
Thomas Huth740ee842023-09-29 16:09:35 +02001354F: hw/display/g364fb.c
Philippe Mathieu-Daudé0886a782018-11-25 21:49:40 +01001355F: hw/display/jazz_led.c
1356F: hw/dma/rc4030.c
Thomas Huth740ee842023-09-29 16:09:35 +02001357F: hw/nvram/ds1225y.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001358
1359Malta
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02001360M: Philippe Mathieu-Daudé <philmd@linaro.org>
Aleksandar Markovic485cd982019-12-10 13:55:17 +01001361R: Aurelien Jarno <aurelien@aurel32.net>
Aleksandar Markovicca263c02020-10-07 22:37:21 +02001362S: Odd Fixes
Bernhard Beschow16971892023-10-07 14:38:27 +02001363F: hw/isa/piix.c
Paolo Bonzinifbd75802024-02-13 16:50:01 +01001364F: hw/isa/fdc37m81x-superio.c
Aleksandar Markovic60041372019-12-10 13:55:18 +01001365F: hw/acpi/piix4.c
Aleksandar Markovic52987222020-05-18 22:09:20 +02001366F: hw/mips/malta.c
Philippe Mathieu-Daudéa7db7592023-01-13 09:20:12 +01001367F: hw/pci-host/gt64120.c
Aleksandar Markovic60041372019-12-10 13:55:18 +01001368F: include/hw/southbridge/piix.h
Willian Rampazzobbbd9b62021-11-05 12:53:54 -03001369F: tests/avocado/linux_ssh_mips_malta.py
1370F: tests/avocado/machine_mips_malta.py
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001371
1372Mipssim
Aleksandar Markovic97d89742020-05-18 22:09:16 +02001373R: Aleksandar Rikalo <aleksandar.rikalo@syrmia.com>
John Snow4251dfb2020-10-30 11:34:16 -04001374S: Orphan
Aleksandar Markovic52987222020-05-18 22:09:20 +02001375F: hw/mips/mipssim.c
Yongbok Kim659f42d2017-03-10 15:32:32 +00001376F: hw/net/mipsnet.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001377
Philippe Mathieu-Daudéc3a09ff2020-04-26 12:16:37 +02001378Fuloong 2E
Huacai Chendab1e1e2020-12-05 17:22:01 +08001379M: Huacai Chen <chenhuacai@kernel.org>
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02001380M: Philippe Mathieu-Daudé <philmd@linaro.org>
Huacai Chen97eeef82020-04-08 17:16:20 +08001381R: Jiaxun Yang <jiaxun.yang@flygoat.com>
Yongbok Kim659f42d2017-03-10 15:32:32 +00001382S: Odd Fixes
Philippe Mathieu-Daudéc3a09ff2020-04-26 12:16:37 +02001383F: hw/mips/fuloong2e.c
Thomas Huth5021bfa2018-11-22 14:02:40 +01001384F: hw/pci-host/bonito.c
Philippe Mathieu-Daudéaad07962023-01-05 13:48:08 +01001385F: include/hw/pci-host/bonito.h
Willian Rampazzobbbd9b62021-11-05 12:53:54 -03001386F: tests/avocado/machine_mips_fuloong2e.py
Yongbok Kim659f42d2017-03-10 15:32:32 +00001387
Aleksandar Markovic53fb8bf2020-06-27 20:13:17 +02001388Loongson-3 virtual platforms
Huacai Chendab1e1e2020-12-05 17:22:01 +08001389M: Huacai Chen <chenhuacai@kernel.org>
Huacai Chen2c5b1a72020-06-24 18:45:31 +08001390R: Jiaxun Yang <jiaxun.yang@flygoat.com>
1391S: Maintained
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
Thomas Huthb5b47422023-10-17 17:33:45 +02001396F: include/hw/intc/loongson_liointc.h
Willian Rampazzobbbd9b62021-11-05 12:53:54 -03001397F: tests/avocado/machine_mips_loongson3v.py
Huacai Chen2c5b1a72020-06-24 18:45:31 +08001398
Yongbok Kim659f42d2017-03-10 15:32:32 +00001399Boston
Philippe Mathieu-Daudé4ba98e92020-10-09 18:15:59 +02001400M: Paul Burton <paulburton@kernel.org>
Aleksandar Markovic97d89742020-05-18 22:09:16 +02001401R: Aleksandar Rikalo <aleksandar.rikalo@syrmia.com>
Philippe Mathieu-Daudé4ba98e92020-10-09 18:15:59 +02001402S: Odd Fixes
Yongbok Kim659f42d2017-03-10 15:32:32 +00001403F: hw/core/loader-fit.c
1404F: hw/mips/boston.c
1405F: hw/pci-host/xilinx-pcie.c
Thomas Huth5021bfa2018-11-22 14:02:40 +01001406F: include/hw/pci-host/xilinx-pcie.h
Yongbok Kim659f42d2017-03-10 15:32:32 +00001407
Jia Liu945dad62013-07-02 20:55:17 +08001408OpenRISC Machines
1409-----------------
1410or1k-sim
1411M: Jia Liu <proljc@gmail.com>
1412S: Maintained
Thomas Huth4db546d2022-12-12 18:48:41 +01001413F: docs/system/openrisc/or1k-sim.rst
Thomas Hutha4a2f7f2023-10-20 08:24:48 +02001414F: hw/intc/ompic.c
Jia Liu945dad62013-07-02 20:55:17 +08001415F: hw/openrisc/openrisc_sim.c
1416
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001417PowerPC Machines
1418----------------
Cédric Le Goater1335caf2022-08-09 17:38:41 +02001419405 (ref405ep)
Andreas Färbera6c98682012-01-13 13:33:57 +00001420L: qemu-ppc@nongnu.org
David Gibson0f514ee2021-09-21 13:02:17 +10001421S: Orphan
Cédric Le Goater6d714462023-10-02 17:51:37 +02001422F: hw/ppc/ppc405*
1423F: tests/avocado/ppc_405.py
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001424
Andreas Färberaaade8d2012-08-22 05:48:47 +00001425Bamboo
Andreas Färberaaade8d2012-08-22 05:48:47 +00001426L: qemu-ppc@nongnu.org
David Gibson0f514ee2021-09-21 13:02:17 +10001427S: Orphan
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01001428F: hw/ppc/ppc440_bamboo.c
Philippe Mathieu-Daudé55abb292023-10-11 06:31:50 +02001429F: hw/pci-host/ppc4xx_pci.c
Willian Rampazzobbbd9b62021-11-05 12:53:54 -03001430F: tests/avocado/ppc_bamboo.py
Andreas Färberaaade8d2012-08-22 05:48:47 +00001431
Andreas Färber98cded32012-08-22 05:48:45 +00001432e500
Andreas Färber98cded32012-08-22 05:48:45 +00001433L: qemu-ppc@nongnu.org
David Gibson0f514ee2021-09-21 13:02:17 +10001434S: Orphan
Thomas Huthce6fc612019-01-30 17:22:25 +01001435F: hw/ppc/e500*
Cédric Le Goaterab8e1af2023-10-02 17:51:39 +02001436F: hw/ppc/ppce500_spin.c
Thomas Huth2c6aba12019-01-02 16:57:56 +01001437F: hw/gpio/mpc8xxx.c
Andrew Randrianasulu7abb4792019-03-06 13:28:12 +03001438F: hw/i2c/mpc_i2c.c
Thomas Huthce6fc612019-01-30 17:22:25 +01001439F: hw/net/fsl_etsec/
1440F: hw/pci-host/ppce500.c
Thomas Huthb5d55022016-09-05 22:03:36 +02001441F: include/hw/ppc/ppc_e500.h
1442F: include/hw/pci-host/ppce500.h
1443F: pc-bios/u-boot.e500
Thomas Huthb96a7482023-10-19 17:58:22 +02001444F: hw/intc/openpic_kvm.c
David Gibsonff8cdbb2021-09-21 13:34:35 +10001445F: include/hw/ppc/openpic_kvm.h
Cédric Le Goaterab8e1af2023-10-02 17:51:39 +02001446F: docs/system/ppc/ppce500.rst
Andreas Färber98cded32012-08-22 05:48:45 +00001447
1448mpc8544ds
Andreas Färber98cded32012-08-22 05:48:45 +00001449L: qemu-ppc@nongnu.org
David Gibson0f514ee2021-09-21 13:02:17 +10001450S: Orphan
Andreas Färber98cded32012-08-22 05:48:45 +00001451F: hw/ppc/mpc8544ds.c
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01001452F: hw/ppc/mpc8544_guts.c
Willian Rampazzobbbd9b62021-11-05 12:53:54 -03001453F: tests/avocado/ppc_mpc8544ds.py
Andreas Färber98cded32012-08-22 05:48:45 +00001454
Thomas Huth2c6aba12019-01-02 16:57:56 +01001455New World (mac99)
Mark Cave-Ayland40e3dd02019-01-28 21:21:56 +00001456M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Andreas Färbera6c98682012-01-13 13:33:57 +00001457L: qemu-ppc@nongnu.org
Alexander Grafbba8e232018-10-30 10:35:31 +01001458S: Odd Fixes
Thomas Huthc5288762022-01-12 11:28:26 +01001459F: docs/system/ppc/powermac.rst
Andreas Färberbaec1912013-01-23 23:03:54 +00001460F: hw/ppc/mac_newworld.c
Peter Maydell6e481d52013-06-24 11:49:32 +01001461F: hw/pci-host/uninorth.c
1462F: hw/pci-bridge/dec.[hc]
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01001463F: hw/misc/macio/
Philippe Mathieu-Daudé6ba16472018-06-06 11:59:20 -03001464F: hw/misc/mos6522.c
Thomas Huthb5d55022016-09-05 22:03:36 +02001465F: hw/nvram/mac_nvram.c
Cédric Le Goater61985582023-10-02 17:51:41 +02001466F: hw/ppc/fw_cfg.c
Thomas Huth2c6aba12019-01-02 16:57:56 +01001467F: hw/input/adb*
Philippe Mathieu-Daudéeba45922018-06-06 11:59:19 -03001468F: include/hw/misc/macio/
Philippe Mathieu-Daudé6ba16472018-06-06 11:59:20 -03001469F: include/hw/misc/mos6522.h
BALATON Zoltan443f07b2022-10-28 13:56:27 +02001470F: include/hw/nvram/mac_nvram.h
Philippe Mathieu-Daudéeba45922018-06-06 11:59:19 -03001471F: include/hw/ppc/mac_dbdma.h
Thomas Huth5021bfa2018-11-22 14:02:40 +01001472F: include/hw/pci-host/uninorth.h
Thomas Huth2c6aba12019-01-02 16:57:56 +01001473F: include/hw/input/adb*
Mark Cave-Ayland52804c62019-01-02 10:22:43 +00001474F: pc-bios/qemu_vga.ndrv
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001475
Thomas Huth2c6aba12019-01-02 16:57:56 +01001476Old World (g3beige)
Mark Cave-Ayland40e3dd02019-01-28 21:21:56 +00001477M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Andreas Färbera6c98682012-01-13 13:33:57 +00001478L: qemu-ppc@nongnu.org
Alexander Grafbba8e232018-10-30 10:35:31 +01001479S: Odd Fixes
Thomas Huthc5288762022-01-12 11:28:26 +01001480F: docs/system/ppc/powermac.rst
Andreas Färberbaec1912013-01-23 23:03:54 +00001481F: hw/ppc/mac_oldworld.c
Peter Maydell6e481d52013-06-24 11:49:32 +01001482F: hw/pci-host/grackle.c
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01001483F: hw/misc/macio/
Thomas Huth835c42d2016-09-29 09:40:33 +02001484F: hw/intc/heathrow_pic.c
Thomas Huth2c6aba12019-01-02 16:57:56 +01001485F: hw/input/adb*
Philippe Mathieu-Daudé97e16db2018-11-25 21:49:43 +01001486F: include/hw/intc/heathrow_pic.h
Thomas Huth2c6aba12019-01-02 16:57:56 +01001487F: include/hw/input/adb*
BALATON Zoltan87e5a4f2022-10-28 13:56:25 +02001488F: include/hw/pci-host/grackle.h
Mark Cave-Ayland52804c62019-01-02 10:22:43 +00001489F: pc-bios/qemu_vga.ndrv
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001490
Andreas Färberec38d392011-11-01 00:03:07 +01001491PReP
Hervé Poussineau8178e892017-01-12 09:47:29 +01001492M: Hervé Poussineau <hpoussin@reactos.org>
Andreas Färbera6c98682012-01-13 13:33:57 +00001493L: qemu-ppc@nongnu.org
Hervé Poussineau8178e892017-01-12 09:47:29 +01001494S: Maintained
Thomas Huthc5288762022-01-12 11:28:26 +01001495F: docs/system/ppc/prep.rst
Andreas Färber75610152013-01-26 20:41:58 +01001496F: hw/ppc/prep.c
Hervé Poussineau8178e892017-01-12 09:47:29 +01001497F: hw/ppc/prep_systemio.c
1498F: hw/ppc/rs6000_mc.c
Philippe Mathieu-Daudé46fd3202021-04-16 18:18:58 +02001499F: hw/pci-host/raven.c
Philippe Mathieu-Daudé0a9464b2017-10-17 13:43:48 -03001500F: hw/isa/i82378.c
Philippe Mathieu-Daudéa48c6b52018-03-08 23:39:25 +01001501F: hw/isa/pc87312.c
Philippe Mathieu-Daudé1cd6dcc2017-10-17 13:43:46 -03001502F: hw/dma/i82374.c
Philippe Mathieu-Daudé819ce6b2019-10-04 01:03:54 +02001503F: hw/rtc/m48t59-isa.c
Philippe Mathieu-Daudéa48c6b52018-03-08 23:39:25 +01001504F: include/hw/isa/pc87312.h
Philippe Mathieu-Daudé819ce6b2019-10-04 01:03:54 +02001505F: include/hw/rtc/m48t59.h
Willian Rampazzobbbd9b62021-11-05 12:53:54 -03001506F: tests/avocado/ppc_prep_40p.py
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001507
Thomas Huthc5288762022-01-12 11:28:26 +01001508sPAPR (pseries)
Daniel Henrique Barboza0cbc34d2023-09-15 08:05:07 -03001509M: Nicholas Piggin <npiggin@gmail.com>
1510R: Daniel Henrique Barboza <danielhb413@gmail.com>
Cédric Le Goaterb0877572022-09-29 20:09:46 +02001511R: Cédric Le Goater <clg@kaod.org>
David Gibson14fe3222021-11-05 14:28:51 +11001512R: David Gibson <david@gibson.dropbear.id.au>
Harsh Prateek Borafcdae012023-05-03 15:06:19 +05301513R: Harsh Prateek Bora <harshpb@linux.ibm.com>
Andreas Färber8a269ca2012-08-22 05:48:44 +00001514L: qemu-ppc@nongnu.org
Daniel Henrique Barboza2e93a902022-11-17 12:32:18 -03001515S: Odd Fixes
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01001516F: hw/*/spapr*
David Gibsonf9de2da2013-06-15 11:51:52 +10001517F: include/hw/*/spapr*
1518F: hw/*/xics*
1519F: include/hw/*/xics*
Cédric Le Goaterd79d9982023-10-02 17:51:40 +02001520F: include/hw/ppc/fdt.h
1521F: hw/ppc/fdt.c
1522F: include/hw/ppc/pef.h
1523F: hw/ppc/pef.c
Thomas Huthb5d55022016-09-05 22:03:36 +02001524F: pc-bios/slof.bin
Thomas Huthc5288762022-01-12 11:28:26 +01001525F: docs/system/ppc/pseries.rst
1526F: docs/specs/ppc-spapr-*
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02001527F: tests/qtest/spapr*
Thomas Huth1cf43232019-09-10 16:41:20 +02001528F: tests/qtest/libqos/*spapr*
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02001529F: tests/qtest/rtas*
Thomas Huth1cf43232019-09-10 16:41:20 +02001530F: tests/qtest/libqos/rtas*
Willian Rampazzobbbd9b62021-11-05 12:53:54 -03001531F: tests/avocado/ppc_pseries.py
Nicholas Pigginc9cb4962023-10-09 13:25:50 +10001532F: tests/avocado/ppc_hv_tests.py
Andreas Färber8a269ca2012-08-22 05:48:44 +00001533
Cédric Le Goater1af82d42019-03-13 17:24:23 +01001534PowerNV (Non-Virtualized)
1535M: Cédric Le Goater <clg@kaod.org>
Daniel Henrique Barboza0cbc34d2023-09-15 08:05:07 -03001536M: Nicholas Piggin <npiggin@gmail.com>
Cédric Le Goater602b88e2023-06-20 07:59:03 +02001537R: Frédéric Barrat <fbarrat@linux.ibm.com>
Cédric Le Goater1af82d42019-03-13 17:24:23 +01001538L: qemu-ppc@nongnu.org
Cédric Le Goaterb0877572022-09-29 20:09:46 +02001539S: Odd Fixes
Thomas Huthc5288762022-01-12 11:28:26 +01001540F: docs/system/ppc/powernv.rst
Cédric Le Goater1af82d42019-03-13 17:24:23 +01001541F: hw/ppc/pnv*
1542F: hw/intc/pnv*
1543F: hw/intc/xics_pnv.c
Markus Armbruster157ed952020-06-09 14:23:27 +02001544F: hw/pci-host/pnv*
Cédric Le Goater1af82d42019-03-13 17:24:23 +01001545F: include/hw/ppc/pnv*
Markus Armbruster157ed952020-06-09 14:23:27 +02001546F: include/hw/pci-host/pnv*
Cédric Le Goater1af82d42019-03-13 17:24:23 +01001547F: pc-bios/skiboot.lid
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02001548F: tests/qtest/pnv*
Cédric Le Goater1af82d42019-03-13 17:24:23 +01001549
Glenn Milesde0c7d52024-02-05 17:40:16 +10001550pca955x
1551M: Glenn Miles <milesg@linux.vnet.ibm.com>
1552L: qemu-ppc@nongnu.org
1553L: qemu-arm@nongnu.org
1554S: Odd Fixes
1555F: hw/misc/pca955*.c
1556F: include/hw/misc/pca955*.h
1557
Andreas Färber794d00b2012-08-22 05:48:48 +00001558virtex_ml507
1559M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
1560L: qemu-ppc@nongnu.org
1561S: Odd Fixes
Peter Maydell6e481d52013-06-24 11:49:32 +01001562F: hw/ppc/virtex_ml507.c
Willian Rampazzobbbd9b62021-11-05 12:53:54 -03001563F: tests/avocado/ppc_virtex_ml507.py
Andreas Färber794d00b2012-08-22 05:48:48 +00001564
BALATON Zoltana9dd6602017-12-16 23:42:39 +01001565sam460ex
1566M: BALATON Zoltan <balaton@eik.bme.hu>
1567L: qemu-ppc@nongnu.org
1568S: Maintained
BALATON Zoltan33c6a8b2019-01-02 03:06:38 +01001569F: hw/ppc/sam460ex.c
Philippe Mathieu-Daudéb3e12162023-10-11 16:07:20 +02001570F: hw/ppc/ppc440_uc.c
Philippe Mathieu-Daudé22dc8a42023-10-11 06:38:18 +02001571F: hw/pci-host/ppc440_pcix.c
BALATON Zoltan33c6a8b2019-01-02 03:06:38 +01001572F: hw/display/sm501*
BALATON Zoltana9dd6602017-12-16 23:42:39 +01001573F: hw/ide/sii3112.c
Philippe Mathieu-Daudéde04c312019-10-04 01:03:55 +02001574F: hw/rtc/m41t80.c
BALATON Zoltan33c6a8b2019-01-02 03:06:38 +01001575F: pc-bios/canyonlands.dt[sb]
1576F: pc-bios/u-boot-sam460ex-20100605.bin
1577F: roms/u-boot-sam460ex
BALATON Zoltana9dd6602017-12-16 23:42:39 +01001578
BALATON Zoltanba7e5ac2021-03-25 14:50:39 +01001579pegasos2
1580M: BALATON Zoltan <balaton@eik.bme.hu>
BALATON Zoltanba7e5ac2021-03-25 14:50:39 +01001581L: qemu-ppc@nongnu.org
1582S: Maintained
1583F: hw/ppc/pegasos2.c
1584F: hw/pci-host/mv64361.c
1585F: hw/pci-host/mv643xx.h
1586F: include/hw/pci-host/mv64361.h
1587
BALATON Zoltand9656f82023-11-07 19:40:17 +01001588amigaone
1589M: BALATON Zoltan <balaton@eik.bme.hu>
1590L: qemu-ppc@nongnu.org
1591S: Maintained
1592F: hw/ppc/amigaone.c
1593F: hw/pci-host/articia.c
1594F: include/hw/pci-host/articia.h
1595
Alexey Kardashevskiyfc8c7452021-06-25 15:51:55 +10001596Virtual Open Firmware (VOF)
1597M: Alexey Kardashevskiy <aik@ozlabs.ru>
Alexey Kardashevskiy21bde1e2021-07-08 16:56:25 +10001598R: David Gibson <david@gibson.dropbear.id.au>
Alexey Kardashevskiyfc8c7452021-06-25 15:51:55 +10001599L: qemu-ppc@nongnu.org
Daniel Henrique Barboza0cbc34d2023-09-15 08:05:07 -03001600S: Odd Fixes
Alexey Kardashevskiyfc8c7452021-06-25 15:51:55 +10001601F: hw/ppc/spapr_vof*
1602F: hw/ppc/vof*
1603F: include/hw/ppc/vof*
1604F: pc-bios/vof/*
1605F: pc-bios/vof*
1606
Alistair Francisfe0fe472020-04-23 11:30:50 -07001607RISC-V Machines
1608---------------
1609OpenTitan
1610M: Alistair Francis <Alistair.Francis@wdc.com>
1611L: qemu-riscv@nongnu.org
1612S: Supported
1613F: hw/riscv/opentitan.c
Alistair Francisdf41cbd2021-06-18 17:27:54 +10001614F: hw/*/ibex_*.c
Alistair Francisfe0fe472020-04-23 11:30:50 -07001615F: include/hw/riscv/opentitan.h
Alistair Francisdf41cbd2021-06-18 17:27:54 +10001616F: include/hw/*/ibex_*.h
Alistair Francisfe0fe472020-04-23 11:30:50 -07001617
Bin Meng56f6e312020-09-01 09:38:59 +08001618Microchip PolarFire SoC Icicle Kit
1619M: Bin Meng <bin.meng@windriver.com>
1620L: qemu-riscv@nongnu.org
1621S: Supported
Thomas Huth5d0ce902023-09-29 14:37:27 +02001622F: docs/system/riscv/microchip-icicle-kit.rst
Bin Meng56f6e312020-09-01 09:38:59 +08001623F: hw/riscv/microchip_pfsoc.c
Bin Menga8fb0a52020-09-01 09:39:00 +08001624F: hw/char/mchp_pfsoc_mmuart.c
Bin Meng3400b152020-10-28 13:30:02 +08001625F: hw/misc/mchp_pfsoc_dmc.c
Bin Menga937b302020-10-28 13:30:04 +08001626F: hw/misc/mchp_pfsoc_ioscb.c
Bin Meng0f250652020-10-28 13:30:06 +08001627F: hw/misc/mchp_pfsoc_sysreg.c
Bin Meng56f6e312020-09-01 09:38:59 +08001628F: include/hw/riscv/microchip_pfsoc.h
Bin Menga8fb0a52020-09-01 09:39:00 +08001629F: include/hw/char/mchp_pfsoc_mmuart.h
Bin Meng3400b152020-10-28 13:30:02 +08001630F: include/hw/misc/mchp_pfsoc_dmc.h
Bin Menga937b302020-10-28 13:30:04 +08001631F: include/hw/misc/mchp_pfsoc_ioscb.h
Bin Meng0f250652020-10-28 13:30:06 +08001632F: include/hw/misc/mchp_pfsoc_sysreg.h
Bin Meng56f6e312020-09-01 09:38:59 +08001633
Vijai Kumar K7a261ba2021-04-01 23:44:55 +05301634Shakti C class SoC
1635M: Vijai Kumar K <vijai@behindbytes.com>
1636L: qemu-riscv@nongnu.org
1637S: Supported
Thomas Huth5d0ce902023-09-29 14:37:27 +02001638F: docs/system/riscv/shakti-c.rst
Vijai Kumar K7a261ba2021-04-01 23:44:55 +05301639F: hw/riscv/shakti_c.c
Vijai Kumar K07f334d2021-04-01 23:44:56 +05301640F: hw/char/shakti_uart.c
Vijai Kumar K7a261ba2021-04-01 23:44:55 +05301641F: include/hw/riscv/shakti_c.h
Vijai Kumar K07f334d2021-04-01 23:44:56 +05301642F: include/hw/char/shakti_uart.h
Vijai Kumar K7a261ba2021-04-01 23:44:55 +05301643
Alistair Francis4fcad932021-02-08 18:11:27 -08001644SiFive Machines
1645M: Alistair Francis <Alistair.Francis@wdc.com>
1646M: Bin Meng <bin.meng@windriver.com>
1647M: Palmer Dabbelt <palmer@dabbelt.com>
1648L: qemu-riscv@nongnu.org
1649S: Supported
Thomas Huth5d0ce902023-09-29 14:37:27 +02001650F: docs/system/riscv/sifive_u.rst
Alistair Francis4fcad932021-02-08 18:11:27 -08001651F: hw/*/*sifive*.c
1652F: include/hw/*/*sifive*.h
1653
Yoshinori Satobda19d72019-01-21 22:16:00 +09001654RX Machines
1655-----------
1656rx-gdbsim
Philippe Mathieu-Daudéb2744da2021-03-12 16:55:12 +01001657R: Yoshinori Sato <ysato@users.sourceforge.jp>
1658S: Orphan
Yoshinori Sato4adbfa42020-01-23 22:25:25 +09001659F: docs/system/target-rx.rst
Yoshinori Satobda19d72019-01-21 22:16:00 +09001660F: hw/rx/rx-gdbsim.c
Willian Rampazzobbbd9b62021-11-05 12:53:54 -03001661F: tests/avocado/machine_rx_gdbsim.py
Yoshinori Satobda19d72019-01-21 22:16:00 +09001662
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001663SH4 Machines
1664------------
1665R2D
Philippe Mathieu-Daudé2d53d0c2021-03-12 16:55:13 +01001666R: Yoshinori Sato <ysato@users.sourceforge.jp>
Aleksandar Markovica9fb4462020-06-11 11:53:16 +02001667R: Magnus Damm <magnus.damm@gmail.com>
Philippe Mathieu-Daudéf1660612020-10-31 16:23:40 +01001668S: Odd Fixes
Philippe Mathieu-Daudé7ae5c8b2021-02-21 19:52:29 +01001669F: hw/char/sh_serial.c
Peter Maydell6e481d52013-06-24 11:49:32 +01001670F: hw/sh4/r2d.c
Thomas Huth81527b92016-09-30 11:32:02 +02001671F: hw/intc/sh_intc.c
Philippe Mathieu-Daudéc64bd102021-02-21 19:56:35 +01001672F: hw/pci-host/sh_pci.c
Philippe Mathieu-Daudé25e79522021-02-21 19:53:35 +01001673F: hw/timer/sh_timer.c
Philippe Mathieu-Daudé65b8dc22020-06-10 23:41:52 +02001674F: include/hw/sh4/sh_intc.h
Thomas Huth670185c2023-10-26 10:00:11 +02001675F: include/hw/timer/tmu012.h
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001676
1677Shix
Philippe Mathieu-Daudé2d53d0c2021-03-12 16:55:13 +01001678R: Yoshinori Sato <ysato@users.sourceforge.jp>
Aleksandar Markovica9fb4462020-06-11 11:53:16 +02001679R: Magnus Damm <magnus.damm@gmail.com>
Thomas Huth81527b92016-09-30 11:32:02 +02001680S: Odd Fixes
Philippe Mathieu-Daudé475e70b2021-02-21 19:55:22 +01001681F: hw/block/tc58128.c
Philippe Mathieu-Daudé7ae5c8b2021-02-21 19:52:29 +01001682F: hw/char/sh_serial.c
Peter Maydell6e481d52013-06-24 11:49:32 +01001683F: hw/sh4/shix.c
Philippe Mathieu-Daudé65b8dc22020-06-10 23:41:52 +02001684F: hw/intc/sh_intc.c
Philippe Mathieu-Daudé25e79522021-02-21 19:53:35 +01001685F: hw/timer/sh_timer.c
Philippe Mathieu-Daudé65b8dc22020-06-10 23:41:52 +02001686F: include/hw/sh4/sh_intc.h
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001687
1688SPARC Machines
1689--------------
1690Sun4m
Mark Cave-Aylandf2416d32015-03-02 22:23:27 +00001691M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001692S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01001693F: hw/sparc/sun4m.c
Markus Armbrusterc468e362018-08-10 13:55:53 +02001694F: hw/sparc/sun4m_iommu.c
Thomas Huthaec2b882019-02-15 13:39:24 +01001695F: hw/display/cg3.c
1696F: hw/display/tcx.c
Thomas Huthc10a1c72016-09-19 21:58:34 +02001697F: hw/dma/sparc32_dma.c
Thomas Huth7098b792016-09-23 14:27:25 +02001698F: hw/misc/eccmemctl.c
Thomas Huthaec2b882019-02-15 13:39:24 +01001699F: hw/*/slavio_*.c
1700F: include/hw/nvram/sun_nvram.h
Thomas Huthc10a1c72016-09-19 21:58:34 +02001701F: include/hw/sparc/sparc32_dma.h
Philippe Mathieu-Daudéd0476152018-11-25 21:49:44 +01001702F: include/hw/sparc/sun4m_iommu.h
Thomas Huthaec2b882019-02-15 13:39:24 +01001703F: pc-bios/openbios-sparc32
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001704
1705Sun4u
Mark Cave-Aylandf2416d32015-03-02 22:23:27 +00001706M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001707S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01001708F: hw/sparc64/sun4u.c
Philippe Mathieu-Daudé8ef856b2018-12-18 12:56:05 +01001709F: hw/sparc64/sun4u_iommu.c
1710F: include/hw/sparc/sun4u_iommu.h
Thomas Huth5021bfa2018-11-22 14:02:40 +01001711F: hw/pci-host/sabre.c
1712F: include/hw/pci-host/sabre.h
Philippe Mathieu-Daudé8ef856b2018-12-18 12:56:05 +01001713F: hw/pci-bridge/simba.c
1714F: include/hw/pci-bridge/simba.h
1715F: pc-bios/openbios-sparc64
Willian Rampazzobbbd9b62021-11-05 12:53:54 -03001716F: tests/avocado/machine_sparc64_sun4u.py
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001717
Artyom Tarasenkoa2664ca2016-09-29 14:46:45 +02001718Sun4v
1719M: Artyom Tarasenko <atar4qemu@gmail.com>
1720S: Maintained
Fam Zheng626e4a42017-10-13 16:53:54 +08001721F: hw/sparc64/niagara.c
Philippe Mathieu-Daudé2811ac32019-10-04 01:03:56 +02001722F: hw/rtc/sun4v-rtc.c
1723F: include/hw/rtc/sun4v-rtc.h
Artyom Tarasenkoa2664ca2016-09-29 14:46:45 +02001724
Fabien Chouteauce6c7602012-05-22 10:14:28 +02001725Leon3
Clément Chigot9e2a7ca2024-01-31 09:50:47 +01001726M: Clément Chigot <chigot@adacore.com>
Frederic Konrad034e0502022-04-01 15:35:49 +01001727M: Frederic Konrad <konrad.frederic@yahoo.fr>
Fabien Chouteauce6c7602012-05-22 10:14:28 +02001728S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01001729F: hw/sparc/leon3.c
1730F: hw/*/grlib*
KONRAD Frederic162abf12019-05-15 14:31:32 +02001731F: include/hw/*/grlib*
Willian Rampazzobbbd9b62021-11-05 12:53:54 -03001732F: tests/avocado/machine_sparc_leon3.py
Fabien Chouteauce6c7602012-05-22 10:14:28 +02001733
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001734S390 Machines
1735-------------
Cornelia Huckdd4ad642013-03-05 02:22:01 +00001736S390 Virtio-ccw
Christian Borntraeger7c8e2642018-12-04 14:38:02 +01001737M: Halil Pasic <pasic@linux.ibm.com>
Christian Borntraeger2c092952021-11-26 11:24:49 +01001738M: Christian Borntraeger <borntraeger@linux.ibm.com>
Eric Farman6a6d3df2022-01-12 17:40:44 +01001739M: Eric Farman <farman@linux.ibm.com>
Cornelia Huckdd4ad642013-03-05 02:22:01 +00001740S: Supported
Cornelia Huckc5bfb202015-11-04 15:59:55 +01001741F: hw/s390x/
Cornelia Huck4277af12014-10-20 19:00:03 +02001742F: include/hw/s390x/
Alex Bennée812b31d2021-07-07 14:17:43 +01001743F: configs/devices/s390x-softmmu/default.mak
Willian Rampazzobbbd9b62021-11-05 12:53:54 -03001744F: tests/avocado/machine_s390_ccw_virtio.py
Stefan Hajnoczie18a8b32018-11-08 11:15:26 +00001745T: git https://github.com/borntraeger/qemu.git s390-next
Cornelia Huck146bd282017-10-05 17:05:23 +02001746L: qemu-s390x@nongnu.org
Cornelia Huckdd4ad642013-03-05 02:22:01 +00001747
Christian Borntraeger8e4eb422018-10-29 16:42:25 +01001748S390-ccw boot
Christian Borntraeger2c092952021-11-26 11:24:49 +01001749M: Christian Borntraeger <borntraeger@linux.ibm.com>
Cornelia Huck304584b2018-01-15 16:14:45 +01001750M: Thomas Huth <thuth@redhat.com>
1751S: Supported
Christian Borntraeger8e4eb422018-10-29 16:42:25 +01001752F: hw/s390x/ipl.*
Cornelia Huck304584b2018-01-15 16:14:45 +01001753F: pc-bios/s390-ccw/
1754F: pc-bios/s390-ccw.img
Cornelia Huckcc3d15a2020-01-28 13:24:14 +01001755F: docs/devel/s390-dasd-ipl.rst
Stefan Hajnoczie18a8b32018-11-08 11:15:26 +00001756T: git https://github.com/borntraeger/qemu.git s390-next
Cornelia Huck304584b2018-01-15 16:14:45 +01001757L: qemu-s390x@nongnu.org
1758
Christian Borntraegerd5bfb422018-10-29 16:42:24 +01001759S390 PCI
Matthew Rosatoecd66632019-09-27 09:21:01 -04001760M: Matthew Rosato <mjrosato@linux.ibm.com>
Matthew Rosato074c84b2021-03-25 09:55:09 -04001761M: Eric Farman <farman@linux.ibm.com>
Christian Borntraegerd5bfb422018-10-29 16:42:24 +01001762S: Supported
1763F: hw/s390x/s390-pci*
Matthew Rosato408b55d2020-10-26 11:34:31 -04001764F: include/hw/s390x/s390-pci*
Christian Borntraegerd5bfb422018-10-29 16:42:24 +01001765L: qemu-s390x@nongnu.org
1766
Cornelia Huck56e34832021-12-22 11:55:48 +01001767S390 channel subsystem
1768M: Halil Pasic <pasic@linux.ibm.com>
1769M: Christian Borntraeger <borntraeger@linux.ibm.com>
Eric Farman6a6d3df2022-01-12 17:40:44 +01001770M: Eric Farman <farman@linux.ibm.com>
Cornelia Huck56e34832021-12-22 11:55:48 +01001771S: Supported
1772F: hw/s390x/ccw-device.[ch]
1773F: hw/s390x/css.c
1774F: hw/s390x/css-bridge.c
1775F: include/hw/s390x/css.h
1776F: include/hw/s390x/css-bridge.h
1777F: include/hw/s390x/ioinst.h
1778F: target/s390x/ioinst.c
1779L: qemu-s390x@nongnu.org
1780
1781S390 CPU models
1782M: David Hildenbrand <david@redhat.com>
1783S: Maintained
1784F: target/s390x/cpu_features*.[ch]
1785F: target/s390x/cpu_models.[ch]
1786L: qemu-s390x@nongnu.org
1787
1788S390 SCLP-backed devices
1789M: Halil Pasic <pasic@linux.ibm.com>
1790M: Christian Borntraeger <borntraeger@linux.ibm.com>
1791S: Supported
1792F: include/hw/s390x/event-facility.h
1793F: include/hw/s390x/sclp.h
1794F: hw/char/sclp*.[hc]
1795F: hw/s390x/event-facility.c
1796F: hw/s390x/sclp*.c
1797L: qemu-s390x@nongnu.org
1798
Pierre Morelc809bbc2023-10-16 20:39:07 +02001799S390 CPU topology
1800M: Nina Schoetterl-Glausch <nsg@linux.ibm.com>
1801S: Supported
1802F: include/hw/s390x/cpu-topology.h
1803F: hw/s390x/cpu-topology.c
Pierre Morelf4f54b52023-10-16 20:39:08 +02001804F: target/s390x/kvm/stsi-topology.c
Pierre Morel0d177cd2023-10-16 20:39:18 +02001805F: docs/devel/s390-cpu-topology.rst
1806F: docs/system/s390x/cpu-topology.rst
Pierre Morele5bc49d2023-10-16 20:39:19 +02001807F: tests/avocado/s390_topology.py
Pierre Morelc809bbc2023-10-16 20:39:07 +02001808
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001809X86 Machines
1810------------
1811PC
Michael S. Tsirkin046a6482013-11-06 17:16:42 +02001812M: Michael S. Tsirkin <mst@redhat.com>
Marcel Apfelbaumfe355cb2018-04-26 11:45:23 +03001813M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001814S: Supported
Michael S. Tsirkin046a6482013-11-06 17:16:42 +02001815F: include/hw/i386/
1816F: hw/i386/
Philippe Mathieu-Daudé0f25d862019-02-02 21:03:07 +01001817F: hw/pci-host/i440fx.c
Michael S. Tsirkin046a6482013-11-06 17:16:42 +02001818F: hw/pci-host/q35.c
1819F: hw/pci-host/pam.c
Philippe Mathieu-Daudé0fd61a22019-02-02 20:57:47 +01001820F: include/hw/pci-host/i440fx.h
Michael S. Tsirkin046a6482013-11-06 17:16:42 +02001821F: include/hw/pci-host/q35.h
1822F: include/hw/pci-host/pam.h
Bernhard Beschow16971892023-10-07 14:38:27 +02001823F: hw/isa/piix.c
Michael S. Tsirkin046a6482013-11-06 17:16:42 +02001824F: hw/isa/lpc_ich9.c
1825F: hw/i2c/smbus_ich9.c
1826F: hw/acpi/piix4.c
Philippe Mathieu-Daudéfbae27e2022-12-12 11:51:15 +01001827F: hw/acpi/ich9*.c
1828F: include/hw/acpi/ich9*.h
Bernhard Beschow1a6981b2023-02-13 18:30:33 +01001829F: include/hw/southbridge/ich9.h
Philippe Mathieu-Daudéfff123b2018-01-06 16:37:26 +01001830F: include/hw/southbridge/piix.h
Philippe Mathieu-Daudé6f5a3292018-12-18 12:56:06 +01001831F: hw/isa/apm.c
1832F: include/hw/isa/apm.h
Zhao Liuaf4c26e2023-10-24 17:03:05 +08001833F: tests/unit/test-x86-topo.c
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02001834F: tests/qtest/test-x86-cpuid-compat.c
Paolo Bonzini9cc3b732015-09-22 11:56:47 +02001835
1836PC Chipset
1837M: Michael S. Tsirkin <mst@redhat.com>
1838M: Paolo Bonzini <pbonzini@redhat.com>
Philippe Mathieu-Daudé1732be82017-10-17 13:43:50 -03001839S: Supported
Paolo Bonzini9cc3b732015-09-22 11:56:47 +02001840F: hw/char/debugcon.c
Philippe Mathieu-Daudébb3d5ea2018-03-08 23:39:22 +01001841F: hw/char/parallel*
Paolo Bonzini9cc3b732015-09-22 11:56:47 +02001842F: hw/char/serial*
1843F: hw/dma/i8257*
1844F: hw/i2c/pm_smbus.c
Philippe Mathieu-Daudé1732be82017-10-17 13:43:50 -03001845F: hw/input/pckbd.c
Paolo Bonzini9cc3b732015-09-22 11:56:47 +02001846F: hw/intc/apic*
1847F: hw/intc/ioapic*
1848F: hw/intc/i8259*
Philippe Mathieu-Daudé1854eb22018-03-08 23:39:29 +01001849F: hw/isa/isa-superio.c
Paolo Bonzini9cc3b732015-09-22 11:56:47 +02001850F: hw/misc/debugexit.c
1851F: hw/misc/pc-testdev.c
1852F: hw/timer/hpet*
1853F: hw/timer/i8254*
Philippe Mathieu-Daudébcdb9062019-10-04 01:03:53 +02001854F: hw/rtc/mc146818rtc*
Philippe Mathieu-Daudéedc46af2017-10-17 13:43:49 -03001855F: hw/watchdog/wdt_ib700.c
Philippe Mathieu-Daudé4bcbc772018-11-25 21:49:47 +01001856F: hw/watchdog/wdt_i6300esb.c
Philippe Mathieu-Daudé866e2b32017-10-17 13:44:21 -03001857F: include/hw/display/vga.h
Bernhard Beschow9cc44d92023-06-12 10:12:38 +02001858F: include/hw/char/parallel*.h
Philippe Mathieu-Daudé55f613a2018-03-08 23:39:23 +01001859F: include/hw/dma/i8257.h
Thomas Hutha2feb342016-09-05 23:31:15 +02001860F: include/hw/i2c/pm_smbus.h
Philippe Mathieu-Daudé47973a22018-03-08 23:39:24 +01001861F: include/hw/input/i8042.h
Bernhard Beschow7f546402023-02-13 18:30:31 +01001862F: include/hw/intc/ioapic*
Thomas Huth63458972023-10-17 17:26:25 +02001863F: include/hw/intc/i8259.h
Philippe Mathieu-Daudé4bcbc772018-11-25 21:49:47 +01001864F: include/hw/isa/i8259_internal.h
Philippe Mathieu-Daudé1854eb22018-03-08 23:39:29 +01001865F: include/hw/isa/superio.h
Thomas Hutha2feb342016-09-05 23:31:15 +02001866F: include/hw/timer/hpet.h
1867F: include/hw/timer/i8254*
Philippe Mathieu-Daudébcdb9062019-10-04 01:03:53 +02001868F: include/hw/rtc/mc146818rtc*
Michael S. Tsirkin046a6482013-11-06 17:16:42 +02001869
Sergio Lopez5cb48f02019-10-08 12:42:28 +02001870microvm
1871M: Sergio Lopez <slp@redhat.com>
1872M: Paolo Bonzini <pbonzini@redhat.com>
1873S: Maintained
Alex Bennée0b09d442021-10-12 16:14:47 +01001874F: docs/system/i386/microvm.rst
Sergio Lopez5cb48f02019-10-08 12:42:28 +02001875F: hw/i386/microvm.c
1876F: include/hw/i386/microvm.h
1877F: pc-bios/bios-microvm.bin
1878
Michael S. Tsirkin5da4fb0012016-03-11 16:06:56 +02001879Machine core
Eduardo Habkost24c4cd12021-11-30 15:47:22 -05001880M: Eduardo Habkost <eduardo@habkost.net>
Marcel Apfelbaumfe355cb2018-04-26 11:45:23 +03001881M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02001882R: Philippe Mathieu-Daudé <philmd@linaro.org>
Yanan Wangda7595c2021-12-28 17:22:14 +08001883R: Yanan Wang <wangyanan55@huawei.com>
Michael S. Tsirkin5da4fb0012016-03-11 16:06:56 +02001884S: Supported
Zhao Liu85178692024-01-15 17:48:42 +08001885F: hw/core/cpu-common.c
1886F: hw/core/cpu-sysemu.c
Markus Armbruster52924de2019-06-19 22:10:43 +02001887F: hw/core/machine-qmp-cmds.c
Michael S. Tsirkin5da4fb0012016-03-11 16:06:56 +02001888F: hw/core/machine.c
Yanan Wang86ce2d22021-10-26 11:46:58 +08001889F: hw/core/machine-smp.c
Thomas Huthc1629c52017-01-23 06:54:55 +01001890F: hw/core/null-machine.c
Markus Armbrusterac057872019-06-19 22:10:42 +02001891F: hw/core/numa.c
Luc Michel335d52f2019-01-07 15:23:45 +00001892F: hw/cpu/cluster.c
Markus Armbruster8ac25c82019-06-19 22:10:41 +02001893F: qapi/machine.json
Pierre Morel5de1aff2023-10-16 20:39:06 +02001894F: qapi/machine-common.json
Markus Armbruster7f7b4e72019-06-19 22:10:45 +02001895F: qapi/machine-target.json
Michael S. Tsirkin5da4fb0012016-03-11 16:06:56 +02001896F: include/hw/boards.h
Markus Armbruster2e5b09f2019-07-09 17:20:52 +02001897F: include/hw/core/cpu.h
Luc Michel335d52f2019-01-07 15:23:45 +00001898F: include/hw/cpu/cluster.h
Markus Armbruster2dd02582019-06-19 22:10:40 +02001899F: include/sysemu/numa.h
Yanan Wang9e8e3932021-10-26 11:46:59 +08001900F: tests/unit/test-smp-parse.c
Eduardo Habkostf953c102020-12-14 16:20:32 -05001901T: git https://gitlab.com/ehabkost/qemu.git machine-next
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001902
Max Filippov16e7caa2011-09-06 03:55:56 +04001903Xtensa Machines
1904---------------
Max Filippov375847a2011-10-28 02:11:05 +04001905sim
Max Filippov16e7caa2011-09-06 03:55:56 +04001906M: Max Filippov <jcmvbkbc@gmail.com>
1907S: Maintained
Max Filippov437a8c12014-10-22 07:25:42 +04001908F: hw/xtensa/sim.c
Max Filippov375847a2011-10-28 02:11:05 +04001909
Max Filippovd9e85532018-09-10 16:33:24 -07001910virt
1911M: Max Filippov <jcmvbkbc@gmail.com>
1912S: Maintained
1913F: hw/xtensa/virt.c
1914
Max Filippov437a8c12014-10-22 07:25:42 +04001915XTFPGA (LX60, LX200, ML605, KC705)
Max Filippov375847a2011-10-28 02:11:05 +04001916M: Max Filippov <jcmvbkbc@gmail.com>
1917S: Maintained
Max Filippov437a8c12014-10-22 07:25:42 +04001918F: hw/xtensa/xtfpga.c
1919F: hw/net/opencores_eth.c
Thomas Huth2b531602023-11-07 11:21:04 +01001920F: include/hw/xtensa/mx_pic.h
Max Filippov16e7caa2011-09-06 03:55:56 +04001921
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001922Devices
1923-------
Philippe Mathieu-Daudéa8f4aee2021-08-16 21:10:12 +02001924Overall Audio frontends
1925M: Gerd Hoffmann <kraxel@redhat.com>
1926S: Odd Fixes
1927F: hw/audio/
1928F: include/hw/audio/
1929F: tests/qtest/ac97-test.c
1930F: tests/qtest/es1370-test.c
1931F: tests/qtest/intel-hda-test.c
1932F: tests/qtest/fuzz-sb16-test.c
1933
Vikram Garhwald36d7112020-11-18 11:48:46 -08001934Xilinx CAN
Vikram Garhwal32bd99d2022-11-14 15:10:57 +00001935M: Vikram Garhwal <vikram.garhwal@amd.com>
1936M: Francisco Iglesias <francisco.iglesias@amd.com>
Vikram Garhwald36d7112020-11-18 11:48:46 -08001937S: Maintained
1938F: hw/net/can/xlnx-*
1939F: include/hw/net/xlnx-*
Vikram Garhwal1d2a6022023-06-06 10:19:31 +01001940F: tests/qtest/xlnx-can*-test*
Vikram Garhwald36d7112020-11-18 11:48:46 -08001941
Jiri Slabyb30934c2015-01-21 17:48:33 +01001942EDU
1943M: Jiri Slaby <jslaby@suse.cz>
1944S: Maintained
1945F: hw/misc/edu.c
Peter Maydell4df3f192023-09-27 16:11:59 +01001946F: docs/specs/edu.rst
Jiri Slabyb30934c2015-01-21 17:48:33 +01001947
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001948IDE
John Snowc0953482015-03-04 23:37:55 -05001949M: John Snow <jsnow@redhat.com>
1950L: qemu-block@nongnu.org
John Snow1b0477a2023-02-06 13:25:44 -05001951S: Odd Fixes
Thomas Huthc9f7acd2016-09-23 18:09:56 +02001952F: include/hw/ide/
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001953F: hw/ide/
John Snowc0953482015-03-04 23:37:55 -05001954F: hw/block/block.c
1955F: hw/block/cdrom.c
1956F: hw/block/hd-geometry.c
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02001957F: tests/qtest/ide-test.c
1958F: tests/qtest/ahci-test.c
1959F: tests/qtest/cdrom-test.c
Thomas Huth1cf43232019-09-10 16:41:20 +02001960F: tests/qtest/libqos/ahci*
John Snow77582e22020-10-01 12:24:01 -04001961T: git https://gitlab.com/jsnow/qemu.git ide
John Snowc0953482015-03-04 23:37:55 -05001962
Corey Minyardcaf316b2017-12-07 14:55:31 -06001963IPMI
1964M: Corey Minyard <minyard@acm.org>
1965S: Maintained
1966F: include/hw/ipmi/*
1967F: hw/ipmi/*
1968F: hw/smbios/smbios_type_38.c
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02001969F: tests/qtest/ipmi*
Stefan Hajnoczie18a8b32018-11-08 11:15:26 +00001970T: git https://github.com/cminyard/qemu.git master-ipmi-rebase
Corey Minyardcaf316b2017-12-07 14:55:31 -06001971
John Snowc0953482015-03-04 23:37:55 -05001972Floppy
1973M: John Snow <jsnow@redhat.com>
1974L: qemu-block@nongnu.org
John Snow1b0477a2023-02-06 13:25:44 -05001975S: Odd Fixes
John Snowc0953482015-03-04 23:37:55 -05001976F: hw/block/fdc.c
Philippe Mathieu-Daudé5a5d2f32021-06-14 21:32:17 +02001977F: hw/block/fdc-internal.h
Philippe Mathieu-Daudé72ea60e2021-06-14 21:32:18 +02001978F: hw/block/fdc-isa.c
Philippe Mathieu-Daudé14307592021-06-14 21:32:19 +02001979F: hw/block/fdc-sysbus.c
John Snowc0953482015-03-04 23:37:55 -05001980F: include/hw/block/fdc.h
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02001981F: tests/qtest/fdc-test.c
John Snow77582e22020-10-01 12:24:01 -04001982T: git https://gitlab.com/jsnow/qemu.git ide
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001983
Maciej S. Szmigieroee344762021-11-20 19:41:58 +01001984Hyper-V VMBus
1985M: Maciej S. Szmigiero <maciej.szmigiero@oracle.com>
1986S: Odd Fixes
1987F: hw/hyperv/vmbus.c
1988F: include/hw/hyperv/vmbus*.h
1989
Peter Maydellf5f487b2011-09-17 17:26:15 +01001990OMAP
1991M: Peter Maydell <peter.maydell@linaro.org>
Philippe Mathieu-Daudé8ef350b2020-01-20 19:59:27 +01001992L: qemu-arm@nongnu.org
Peter Maydellf5f487b2011-09-17 17:26:15 +01001993S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01001994F: hw/*/omap*
Thomas Huthed0db862016-02-25 12:22:04 +01001995F: include/hw/arm/omap.h
Philippe Mathieu-Daudé66278f82020-11-20 16:45:45 +01001996F: docs/system/arm/sx1.rst
Peter Maydellf5f487b2011-09-17 17:26:15 +01001997
Paolo Bonzini28d54e52015-09-22 11:37:27 +02001998IPack
1999M: Alberto Garcia <berto@igalia.com>
2000S: Odd Fixes
2001F: hw/char/ipoctal232.c
2002F: hw/ipack/
2003
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002004PCI
2005M: Michael S. Tsirkin <mst@redhat.com>
Marcel Apfelbaumfe355cb2018-04-26 11:45:23 +03002006M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002007S: Supported
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01002008F: include/hw/pci/*
Paolo Bonzinif178bc62015-09-22 11:56:48 +02002009F: hw/misc/pci-testdev.c
Michael S. Tsirkinca818cf2012-12-12 15:11:55 +02002010F: hw/pci/*
Paolo Bonzinif178bc62015-09-22 11:56:48 +02002011F: hw/pci-bridge/*
Philippe Mathieu-Daudé61c7f982020-09-13 21:53:48 +02002012F: qapi/pci.json
Philippe Mathieu-Daudé68179922017-09-08 14:36:25 -03002013F: docs/pci*
2014F: docs/specs/*pci*
Michael S. Tsirkin0e0b3592015-06-23 08:09:34 +02002015
Huai-Cheng Kuo5fb52f62022-10-14 16:10:41 +01002016PCIE DOE
2017M: Huai-Cheng Kuo <hchkuo@avery-design.com.tw>
2018M: Chris Browy <cbrowy@avery-design.com>
2019S: Supported
2020F: include/hw/pci/pcie_doe.h
2021F: hw/pci/pcie_doe.c
2022
Michael S. Tsirkind31e5ae2015-08-12 12:17:36 +03002023ACPI/SMBIOS
Michael S. Tsirkin0e0b3592015-06-23 08:09:34 +02002024M: Michael S. Tsirkin <mst@redhat.com>
2025M: Igor Mammedov <imammedo@redhat.com>
Ani Sinha104593c2023-03-29 09:38:34 +05302026R: Ani Sinha <anisinha@redhat.com>
Michael S. Tsirkin0e0b3592015-06-23 08:09:34 +02002027S: Supported
2028F: include/hw/acpi/*
Philippe Mathieu-Daudéa2eb5c02018-12-11 17:34:06 +01002029F: include/hw/firmware/smbios.h
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01002030F: hw/acpi/*
Michael S. Tsirkind31e5ae2015-08-12 12:17:36 +03002031F: hw/smbios/*
Michael S. Tsirkin0e0b3592015-06-23 08:09:34 +02002032F: hw/i386/acpi-build.[hc]
Michael S. Tsirkin0e0b3592015-06-23 08:09:34 +02002033F: hw/arm/virt-acpi-build.c
Philippe Mathieu-Daudé27c91882020-09-13 21:53:47 +02002034F: qapi/acpi.json
Thomas Huthb963ea12020-06-07 07:20:22 +02002035F: tests/qtest/bios-tables-test*
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02002036F: tests/qtest/acpi-utils.[hc]
Philippe Mathieu-Daudéfaae23b2018-11-25 21:49:36 +01002037F: tests/data/acpi/
Peter Maydellfcc6f732021-07-27 18:04:14 +01002038F: docs/specs/acpi_cpu_hotplug.rst
2039F: docs/specs/acpi_mem_hotplug.rst
David Hildenbrand2fcd0052022-06-17 14:31:51 +02002040F: docs/specs/acpi_nvdimm.rst
Peter Maydellfcc6f732021-07-27 18:04:14 +01002041F: docs/specs/acpi_pci_hotplug.rst
2042F: docs/specs/acpi_hw_reduced_hotplug.rst
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002043
Sunil V L47fc3402023-03-02 14:42:12 +05302044ARM ACPI Subsystem
2045M: Shannon Zhao <shannon.zhaosl@gmail.com>
2046L: qemu-arm@nongnu.org
2047S: Maintained
2048F: hw/arm/virt-acpi-build.c
2049
2050RISC-V ACPI Subsystem
2051M: Sunil V L <sunilvl@ventanamicro.com>
2052L: qemu-riscv@nongnu.org
2053S: Maintained
2054F: hw/riscv/virt-acpi-build.c
2055
Ani Sinhad1355362021-12-13 10:29:24 +05302056ACPI/VIOT
2057M: Jean-Philippe Brucker <jean-philippe@linaro.org>
Ani Sinhad1355362021-12-13 10:29:24 +05302058S: Supported
2059F: hw/acpi/viot.c
2060F: hw/acpi/viot.h
2061
Ani Sinha76f831d2022-10-21 15:21:08 +05302062ACPI/AVOCADO/BIOSBITS
Ani Sinha607a0792023-03-20 17:12:33 +05302063M: Ani Sinha <anisinha@redhat.com>
Ani Sinha242a58c2022-11-11 20:41:38 +05302064M: Michael S. Tsirkin <mst@redhat.com>
Ani Sinha76f831d2022-10-21 15:21:08 +05302065S: Supported
2066F: tests/avocado/acpi-bits/*
2067F: tests/avocado/acpi-bits.py
2068F: docs/devel/acpi-bits.rst
2069
Dongjiu Gengf7e462f2020-05-12 11:06:09 +08002070ACPI/HEST/GHES
Dongjiu Gengd6eed462021-03-11 19:29:04 +08002071R: Dongjiu Geng <gengdongjiu1@gmail.com>
Dongjiu Gengf7e462f2020-05-12 11:06:09 +08002072L: qemu-arm@nongnu.org
2073S: Maintained
2074F: hw/acpi/ghes.c
2075F: include/hw/acpi/ghes.h
2076F: docs/specs/acpi_hest_ghes.rst
2077
Andreas Färberaaade8d2012-08-22 05:48:47 +00002078ppc4xx
Andreas Färberaaade8d2012-08-22 05:48:47 +00002079L: qemu-ppc@nongnu.org
David Gibson0f514ee2021-09-21 13:02:17 +10002080S: Orphan
Cédric Le Goatere20dbe52023-10-02 17:51:38 +02002081F: hw/ppc/ppc4xx*.c
2082F: hw/ppc/ppc440_uc.c
2083F: hw/ppc/ppc440.h
Philippe Mathieu-Daudéaa3a41f2017-10-17 13:43:45 -03002084F: hw/i2c/ppc4xx_i2c.c
Philippe Mathieu-Daudé4d641f32023-10-11 06:56:51 +02002085F: include/hw/pci-host/ppc4xx.h
Thomas Huthb5d55022016-09-05 22:03:36 +02002086F: include/hw/ppc/ppc4xx.h
Philippe Mathieu-Daudéaa3a41f2017-10-17 13:43:45 -03002087F: include/hw/i2c/ppc4xx_i2c.h
Peter Maydell34d08312020-12-12 00:15:31 +00002088F: hw/intc/ppc-uic.c
2089F: include/hw/intc/ppc-uic.h
Andreas Färberaaade8d2012-08-22 05:48:47 +00002090
Paolo Bonzini61af0ee2015-09-22 11:40:00 +02002091Character devices
Paolo Bonzini2185fd62018-10-19 14:25:42 +02002092M: Marc-André Lureau <marcandre.lureau@redhat.com>
2093R: Paolo Bonzini <pbonzini@redhat.com>
Paolo Bonzini61af0ee2015-09-22 11:40:00 +02002094S: Odd Fixes
2095F: hw/char/
Thomas Huth63fc0722023-09-29 14:44:39 +02002096F: include/hw/char/
Paolo Bonzini61af0ee2015-09-22 11:40:00 +02002097
Paolo Bonzinif536f112015-09-22 11:40:00 +02002098Network devices
2099M: Jason Wang <jasowang@redhat.com>
2100S: Odd Fixes
2101F: hw/net/
Philippe Mathieu-Daudé6061b5c2017-10-17 13:43:52 -03002102F: include/hw/net/
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02002103F: tests/qtest/virtio-net-test.c
Jens Freimann9711cd02019-10-29 12:49:04 +01002104F: docs/virtio-net-failover.rst
Stefan Hajnoczie18a8b32018-11-08 11:15:26 +00002105T: git https://github.com/jasowang/qemu.git net
Paolo Bonzinif536f112015-09-22 11:40:00 +02002106
Philippe Mathieu-Daudée0c9d0c2019-05-06 00:47:37 +02002107Parallel NOR Flash devices
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02002108M: Philippe Mathieu-Daudé <philmd@linaro.org>
Philippe Mathieu-Daudée0c9d0c2019-05-06 00:47:37 +02002109T: git https://gitlab.com/philmd/qemu.git pflash-next
2110S: Maintained
2111F: hw/block/pflash_cfi*.c
2112F: include/hw/block/flash.h
2113
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002114SCSI
Paolo Bonzinide7724f2012-02-22 15:59:52 +01002115M: Paolo Bonzini <pbonzini@redhat.com>
Fam Zhengfe5ca462018-11-21 23:30:36 +08002116R: Fam Zheng <fam@euphon.net>
Paolo Bonzinide7724f2012-02-22 15:59:52 +01002117S: Supported
Thomas Huth74460f32016-09-05 22:11:41 +02002118F: include/hw/scsi/*
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01002119F: hw/scsi/*
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02002120F: tests/qtest/virtio-scsi-test.c
Philippe Mathieu-Daudéb43957d2021-01-26 12:16:38 +01002121F: tests/qtest/fuzz-virtio-scsi-test.c
Mark Cave-Aylandce94fa72021-04-07 20:58:01 +01002122F: tests/qtest/am53c974-test.c
Philippe Mathieu-Daudéaa629762021-11-23 12:17:32 +01002123F: tests/qtest/fuzz-lsi53c895a-test.c
Stefan Hajnoczie18a8b32018-11-08 11:15:26 +00002124T: git https://github.com/bonzini/qemu.git scsi-next
Paolo Bonzinide7724f2012-02-22 15:59:52 +01002125
Peter A. G. Crosthwaitefcb56292012-08-06 11:38:19 +10002126SSI
Alistair Francisc22e5802018-03-01 11:05:58 +00002127M: Alistair Francis <alistair@alistair23.me>
Peter A. G. Crosthwaitefcb56292012-08-06 11:38:19 +10002128S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01002129F: hw/ssi/*
Cédric Le Goater2389bcc2022-10-24 11:20:15 +02002130F: hw/block/m25p80*
Philippe Mathieu-Daudé982d0092017-09-08 14:36:26 -03002131F: include/hw/ssi/ssi.h
Alistair Francis4b46ba62015-08-25 15:45:06 +01002132X: hw/ssi/xilinx_*
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02002133F: tests/qtest/m25p80-test.c
Alistair Francis4b46ba62015-08-25 15:45:06 +01002134
2135Xilinx SPI
Alistair Francisc22e5802018-03-01 11:05:58 +00002136M: Alistair Francis <alistair@alistair23.me>
Alistair Francis4b46ba62015-08-25 15:45:06 +01002137S: Maintained
2138F: hw/ssi/xilinx_*
Peter A. G. Crosthwaitefcb56292012-08-06 11:38:19 +10002139
Philippe Mathieu-Daudé076a0fc2018-03-09 17:09:45 +00002140SD (Secure Card)
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02002141M: Philippe Mathieu-Daudé <philmd@linaro.org>
Philippe Mathieu-Daudé3e0a7692021-02-16 14:26:11 +01002142M: Bin Meng <bin.meng@windriver.com>
Philippe Mathieu-Daudéba412472020-06-05 06:56:38 +02002143L: qemu-block@nongnu.org
Philippe Mathieu-Daudé076a0fc2018-03-09 17:09:45 +00002144S: Odd Fixes
2145F: include/hw/sd/sd*
2146F: hw/sd/core.c
2147F: hw/sd/sd*
Philippe Mathieu-Daudé1232ed12019-10-12 08:54:24 +02002148F: hw/sd/ssi-sd.c
Philippe Mathieu-Daudé59b63d72021-06-29 10:09:28 +02002149F: tests/qtest/fuzz-sdcard-test.c
2150F: tests/qtest/sdhci-test.c
Philippe Mathieu-Daudé076a0fc2018-03-09 17:09:45 +00002151
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002152USB
Gerd Hoffmann5d0d62f2010-12-17 11:11:25 +01002153M: Gerd Hoffmann <kraxel@redhat.com>
Gerd Hoffmanncd02c962021-08-10 10:34:48 +02002154S: Odd Fixes
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01002155F: hw/usb/*
Philippe Mathieu-Daudé9c3c8342021-04-25 00:41:10 +02002156F: stubs/usb-dev-stub.c
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02002157F: tests/qtest/usb-*-test.c
Peter Maydell2a49e4e2021-07-28 15:14:54 +01002158F: docs/system/devices/usb.rst
Thomas Huthbeded0f2016-02-25 10:36:05 +01002159F: include/hw/usb.h
2160F: include/hw/usb/
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002161
Paolo Bonzinie26082f2014-10-22 14:53:32 +02002162USB (serial adapter)
Gerd Hoffmanncd02c962021-08-10 10:34:48 +02002163R: Gerd Hoffmann <kraxel@redhat.com>
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
Tarun Gupta2a578132021-04-18 17:52:51 +05302175F: docs/devel/vfio-migration.rst
Alex Williamson92e1fb52012-09-26 11:19:39 -06002176
Dong Jia Shi5eb74552017-05-17 02:48:13 +02002177vfio-ccw
Christian Borntraeger79139382018-10-29 16:42:22 +01002178M: Eric Farman <farman@linux.ibm.com>
Matthew Rosato074c84b2021-03-25 09:55:09 -04002179M: Matthew Rosato <mjrosato@linux.ibm.com>
Dong Jia Shi5eb74552017-05-17 02:48:13 +02002180S: Supported
2181F: hw/vfio/ccw.c
2182F: hw/s390x/s390-ccw.c
2183F: include/hw/s390x/s390-ccw.h
Jason J. Herne44445d82019-04-04 10:34:20 -04002184F: include/hw/s390x/vfio-ccw.h
Cornelia Huck146bd282017-10-05 17:05:23 +02002185L: qemu-s390x@nongnu.org
Dong Jia Shi5eb74552017-05-17 02:48:13 +02002186
Tony Krowiaka51b3152018-10-10 13:03:06 -04002187vfio-ap
Tony Krowiaka51b3152018-10-10 13:03:06 -04002188M: Tony Krowiak <akrowiak@linux.ibm.com>
2189M: Halil Pasic <pasic@linux.ibm.com>
Matthew Rosato074c84b2021-03-25 09:55:09 -04002190M: Jason Herne <jjherne@linux.ibm.com>
Tony Krowiaka51b3152018-10-10 13:03:06 -04002191S: Supported
2192F: hw/s390x/ap-device.c
2193F: hw/s390x/ap-bridge.c
2194F: include/hw/s390x/ap-device.h
2195F: include/hw/s390x/ap-bridge.h
Tony Krowiak2fe29422018-10-10 13:03:07 -04002196F: hw/vfio/ap.c
Cornelia Huckf58f0842020-03-18 11:39:40 +01002197F: docs/system/s390x/vfio-ap.rst
Tony Krowiaka51b3152018-10-10 13:03:06 -04002198L: qemu-s390x@nongnu.org
2199
Eric Auger6e6d8ac2023-11-21 16:44:00 +08002200iommufd
2201M: Yi Liu <yi.l.liu@intel.com>
2202M: Eric Auger <eric.auger@redhat.com>
2203M: Zhenzhong Duan <zhenzhong.duan@intel.com>
2204S: Supported
2205F: backends/iommufd.c
2206F: include/sysemu/iommufd.h
Yi Liud6b5c4c2023-11-21 16:44:01 +08002207F: include/qemu/chardev_open.h
2208F: util/chardev_open.c
Zhenzhong Duan98dad2b2023-11-21 16:44:26 +08002209F: docs/devel/vfio-iommufd.rst
Eric Auger6e6d8ac2023-11-21 16:44:00 +08002210
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002211vhost
2212M: Michael S. Tsirkin <mst@redhat.com>
2213S: Supported
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01002214F: hw/*/*vhost*
Marc-André Lureau482580a2019-03-08 15:04:44 +01002215F: docs/interop/vhost-user.json
Marc-André Lureaued1be662019-03-15 19:07:35 +01002216F: docs/interop/vhost-user.rst
Philippe Mathieu-Daudé72c1e862018-11-25 21:49:49 +01002217F: contrib/vhost-user-*/
Marc-André Lureauf24bb722019-05-03 15:00:31 +02002218F: backends/vhost-user.c
2219F: include/sysemu/vhost-user-backend.h
Stefan Weil viaec09f222022-11-26 16:25:06 +01002220F: subprojects/libvhost-user/
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002221
Eugenio Pérez2b6fc0b2023-03-31 17:04:10 +02002222vhost-shadow-virtqueue
2223R: Eugenio Pérez <eperezma@redhat.com>
2224F: hw/virtio/vhost-shadow-virtqueue.*
2225
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002226virtio
Michael S. Tsirkina75143e2014-01-26 12:39:55 +02002227M: Michael S. Tsirkin <mst@redhat.com>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002228S: Supported
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01002229F: hw/*/virtio*
Thomas Huth72fa6052016-09-23 18:11:21 +02002230F: hw/virtio/Makefile.objs
2231F: hw/virtio/trace-events
Markus Armbruster3b311252022-10-20 14:04:58 +02002232F: qapi/virtio.json
Michael S. Tsirkin6a084ea2015-06-15 16:20:21 +02002233F: net/vhost-user.c
Thomas Huth494f7b52016-02-25 11:13:03 +01002234F: include/hw/virtio/
Thomas Huth4db546d2022-12-12 18:48:41 +01002235F: docs/devel/virtio*
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002236
David Hildenbrand6d7b25a2020-03-12 14:37:25 +01002237virtio-balloon
2238M: Michael S. Tsirkin <mst@redhat.com>
2239M: David Hildenbrand <david@redhat.com>
2240S: Maintained
Thomas Huth14dc58e2022-01-05 12:52:45 +01002241F: docs/interop/virtio-balloon-stats.rst
David Hildenbrand6d7b25a2020-03-12 14:37:25 +01002242F: hw/virtio/virtio-balloon*.c
2243F: include/hw/virtio/virtio-balloon.h
Philippe Mathieu-Daudé8d7f2e72023-10-04 11:06:28 +02002244F: system/balloon.c
David Hildenbrand6d7b25a2020-03-12 14:37:25 +01002245F: include/sysemu/balloon.h
2246
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002247virtio-9p
Greg Kurz8c1cd712016-06-17 16:35:05 +02002248M: Greg Kurz <groug@kaod.org>
Christian Schoenebeck233982a2020-05-14 08:06:43 +02002249M: Christian Schoenebeck <qemu_oss@crudebyte.com>
Christian Schoenebeck3548fa02023-07-03 16:34:17 +02002250S: Maintained
Christian Schoenebeck6f569082021-05-06 15:12:23 +02002251W: https://wiki.qemu.org/Documentation/9p
Andreas Färberaebeca22012-04-13 17:19:12 +02002252F: hw/9pfs/
Greg Kurzb8278912019-05-29 12:24:44 +02002253X: hw/9pfs/xen-9p*
Christian Schoenebeck71d72ec2023-06-26 13:49:06 +02002254X: hw/9pfs/9p-proxy*
Andreas Färberaebeca22012-04-13 17:19:12 +02002255F: fsdev/
Christian Schoenebeck71d72ec2023-06-26 13:49:06 +02002256X: fsdev/virtfs-proxy-helper.c
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02002257F: tests/qtest/virtio-9p-test.c
Christian Schoenebeck818e42f2022-11-28 18:12:04 +01002258F: tests/qtest/libqos/virtio-9p*
Greg Kurz1a001952021-01-15 14:42:24 +01002259T: git https://gitlab.com/gkurz/qemu.git 9p-next
Christian Schoenebeck90225f92021-01-30 15:39:14 +01002260T: git https://github.com/cschoenebeck/qemu.git 9p.next
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002261
Christian Schoenebeck71d72ec2023-06-26 13:49:06 +02002262virtio-9p-proxy
2263F: hw/9pfs/9p-proxy*
2264F: fsdev/virtfs-proxy-helper.c
2265F: docs/tools/virtfs-proxy-helper.rst
2266S: Obsolete
2267
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002268virtio-blk
Stefan Hajnoczi54d01a02012-11-09 14:29:03 +01002269M: Stefan Hajnoczi <stefanha@redhat.com>
Stefan Hajnoczib457a5f2015-04-29 15:13:25 +01002270L: qemu-block@nongnu.org
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002271S: Supported
Daniil Tatianind9cf55a2022-09-06 10:31:08 +03002272F: hw/block/virtio-blk-common.c
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01002273F: hw/block/virtio-blk.c
Stefan Hajnoczib457a5f2015-04-29 15:13:25 +01002274F: hw/block/dataplane/*
Daniil Tatianind9cf55a2022-09-06 10:31:08 +03002275F: include/hw/virtio/virtio-blk-common.h
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02002276F: tests/qtest/virtio-blk-test.c
Stefan Hajnoczie18a8b32018-11-08 11:15:26 +00002277T: git https://github.com/stefanha/qemu.git block
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002278
Cornelia Huckdd4ad642013-03-05 02:22:01 +00002279virtio-ccw
Cornelia Huckc1976ae2017-07-04 11:22:15 +02002280M: Cornelia Huck <cohuck@redhat.com>
Christian Borntraeger68b91e82018-10-29 16:42:23 +01002281M: Halil Pasic <pasic@linux.ibm.com>
Eric Farman6a6d3df2022-01-12 17:40:44 +01002282M: Eric Farman <farman@linux.ibm.com>
Cornelia Huckdd4ad642013-03-05 02:22:01 +00002283S: Supported
Thomas Huth901f5f12018-07-25 14:20:16 +02002284F: hw/s390x/virtio-ccw*.[hc]
Eric Farman117d7942022-05-25 16:58:14 +02002285F: hw/s390x/vhost-*-ccw.c
Cornelia Huck99eaf132020-12-14 14:26:28 +01002286T: git https://gitlab.com/cohuck/qemu.git s390-next
Stefan Hajnoczie18a8b32018-11-08 11:15:26 +00002287T: git https://github.com/borntraeger/qemu.git s390-next
Cornelia Huck146bd282017-10-05 17:05:23 +02002288L: qemu-s390x@nongnu.org
Cornelia Huckdd4ad642013-03-05 02:22:01 +00002289
Albert Estevefaefdba2023-10-02 08:57:04 +02002290virtio-dmabuf
2291M: Albert Esteve <aesteve@redhat.com>
2292S: Supported
2293F: hw/display/virtio-dmabuf.c
2294F: include/hw/virtio/virtio-dmabuf.h
2295F: tests/unit/test-virtio-dmabuf.c
2296
Dr. David Alan Gilbertbad7d2c32019-10-21 11:41:36 +01002297virtiofs
Dr. David Alan Gilbertbad7d2c32019-10-21 11:41:36 +01002298M: Stefan Hajnoczi <stefanha@redhat.com>
2299S: Supported
Dr. David Alan Gilbertbad7d2c32019-10-21 11:41:36 +01002300F: hw/virtio/vhost-user-fs*
2301F: include/hw/virtio/vhost-user-fs.h
Stefan Hajnoczic96c1162023-11-11 08:49:20 +08002302L: virtio-fs@lists.linux.dev
Dr. David Alan Gilbertbad7d2c32019-10-21 11:41:36 +01002303
Gerd Hoffmanna5d4d7b2015-06-19 10:25:34 +02002304virtio-input
2305M: Gerd Hoffmann <kraxel@redhat.com>
Gerd Hoffmann1e2edb92021-08-10 10:34:49 +02002306S: Odd Fixes
Leo Yan887d5772024-01-04 21:09:43 +00002307F: docs/system/devices/vhost-user-input.rst
Gerd Hoffmanna5d4d7b2015-06-19 10:25:34 +02002308F: hw/input/virtio-input*.c
Leo Yan87c7fb72024-01-04 21:09:44 +00002309F: hw/virtio/vhost-user-input.c
Gerd Hoffmanna5d4d7b2015-06-19 10:25:34 +02002310F: include/hw/virtio/virtio-input.h
Marc-André Lureau06914c92019-05-14 12:41:26 +02002311F: contrib/vhost-user-input/*
Gerd Hoffmanna5d4d7b2015-06-19 10:25:34 +02002312
Eric Augerc1dee912020-02-14 14:27:45 +01002313virtio-iommu
2314M: Eric Auger <eric.auger@redhat.com>
2315S: Maintained
2316F: hw/virtio/virtio-iommu*.c
2317F: include/hw/virtio/virtio-iommu.h
2318
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002319virtio-serial
Laurent Vivier2501db72019-09-10 16:03:50 +02002320M: Laurent Vivier <lvivier@redhat.com>
2321R: Amit Shah <amit@kernel.org>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002322S: Supported
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01002323F: hw/char/virtio-serial-bus.c
2324F: hw/char/virtio-console.c
Amit Shah68a5e382014-11-18 18:01:27 +05302325F: include/hw/virtio/virtio-serial.h
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02002326F: tests/qtest/virtio-serial-test.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002327
Amit Shah1f51a5c2014-11-18 18:01:26 +05302328virtio-rng
Laurent Vivier2501db72019-09-10 16:03:50 +02002329M: Laurent Vivier <lvivier@redhat.com>
2330R: Amit Shah <amit@kernel.org>
Amit Shah1f51a5c2014-11-18 18:01:26 +05302331S: Supported
2332F: hw/virtio/virtio-rng.c
2333F: include/hw/virtio/virtio-rng.h
Thomas Huth750cf862016-02-25 13:44:20 +01002334F: include/sysemu/rng*.h
Amit Shah1f51a5c2014-11-18 18:01:26 +05302335F: backends/rng*.c
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02002336F: tests/qtest/virtio-rng-test.c
Amit Shah1f51a5c2014-11-18 18:01:26 +05302337
Alex Bennée62759892024-01-04 21:09:35 +00002338vhost-user-stubs
2339M: Alex Bennée <alex.bennee@linaro.org>
2340S: Maintained
2341F: hw/virtio/vhost-user-base.c
2342F: hw/virtio/vhost-user-device*
2343
Mathieu Poiriere3e01462021-06-14 14:28:42 -06002344vhost-user-rng
2345M: Mathieu Poirier <mathieu.poirier@linaro.org>
2346S: Supported
Thomas Huth4db546d2022-12-12 18:48:41 +01002347F: docs/system/devices/vhost-user-rng.rst
Mathieu Poiriere3e01462021-06-14 14:28:42 -06002348F: hw/virtio/vhost-user-rng.c
2349F: hw/virtio/vhost-user-rng-pci.c
2350F: include/hw/virtio/vhost-user-rng.h
2351F: tools/vhost-user-rng/*
2352
Viresh Kumar27ba7b02022-08-02 10:50:00 +01002353vhost-user-gpio
2354M: Alex Bennée <alex.bennee@linaro.org>
2355R: Viresh Kumar <viresh.kumar@linaro.org>
2356S: Maintained
Viresh Kumar25c60a42022-08-02 10:50:01 +01002357F: hw/virtio/vhost-user-gpio*
Viresh Kumar27ba7b02022-08-02 10:50:00 +01002358F: include/hw/virtio/vhost-user-gpio.h
Alex Bennée8fcfc822022-08-02 10:50:10 +01002359F: tests/qtest/libqos/virtio-gpio.*
Viresh Kumar27ba7b02022-08-02 10:50:00 +01002360
Manos Pitsidianakis4ae0fc12024-01-04 21:09:40 +00002361vhost-user-snd
2362M: Alex Bennée <alex.bennee@linaro.org>
2363R: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
2364S: Maintained
2365F: hw/virtio/vhost-user-snd*
2366F: include/hw/virtio/vhost-user-snd.h
2367
Milan Zamazala5dab092023-06-28 12:05:22 +02002368vhost-user-scmi
2369R: mzamazal@redhat.com
2370S: Supported
2371F: hw/virtio/vhost-user-scmi*
2372F: include/hw/virtio/vhost-user-scmi.h
Milan Zamazalb6f53ae2023-06-28 12:05:24 +02002373F: tests/qtest/libqos/virtio-scmi.*
Milan Zamazala5dab092023-06-28 12:05:22 +02002374
Gonglei60340112016-10-28 16:33:31 +08002375virtio-crypto
2376M: Gonglei <arei.gonglei@huawei.com>
2377S: Supported
2378F: hw/virtio/virtio-crypto.c
2379F: hw/virtio/virtio-crypto-pci.c
2380F: include/hw/virtio/virtio-crypto.h
2381
David Hildenbrand18129c12023-07-11 17:34:39 +02002382virtio based memory device
2383M: David Hildenbrand <david@redhat.com>
2384S: Supported
2385F: hw/virtio/virtio-md-pci.c
2386F: include/hw/virtio/virtio-md-pci.h
David Hildenbranddbdf8412023-07-11 17:34:40 +02002387F: stubs/virtio-md-pci.c
David Hildenbrand18129c12023-07-11 17:34:39 +02002388
David Hildenbrand751c7bd2020-06-26 09:22:39 +02002389virtio-mem
2390M: David Hildenbrand <david@redhat.com>
2391S: Supported
2392W: https://virtio-mem.gitlab.io/
2393F: hw/virtio/virtio-mem.c
2394F: hw/virtio/virtio-mem-pci.h
2395F: hw/virtio/virtio-mem-pci.c
2396F: include/hw/virtio/virtio-mem.h
2397
Manos Pitsidianakis2880e672023-10-23 15:03:18 +03002398virtio-snd
2399M: Gerd Hoffmann <kraxel@redhat.com>
2400R: Manos Pitsidianakis <manos.pitsidianakis@linaro.org>
2401S: Supported
2402F: hw/audio/virtio-snd.c
Manos Pitsidianakis24269082023-10-23 15:03:19 +03002403F: hw/audio/virtio-snd-pci.c
Manos Pitsidianakis2880e672023-10-23 15:03:18 +03002404F: include/hw/audio/virtio-snd.h
Manos Pitsidianakisf54fea12023-10-23 15:03:28 +03002405F: docs/system/devices/virtio-snd.rst
Manos Pitsidianakis2880e672023-10-23 15:03:18 +03002406
Keith Buschf3c507a2013-06-04 09:17:10 -06002407nvme
Philippe Mathieu-Daudé8261cc12020-04-21 14:22:36 +02002408M: Keith Busch <kbusch@kernel.org>
Keith Busche8cc43d2020-07-06 11:29:22 -07002409M: Klaus Jensen <its@irrelevant.dk>
Klaus Jensen00d7dff2024-02-08 13:54:20 +01002410R: Jesper Devantier <foss@defmacro.it>
Kevin Wolfc95e4c02015-04-30 15:15:13 +02002411L: qemu-block@nongnu.org
Keith Buschf3c507a2013-06-04 09:17:10 -06002412S: Supported
Klaus Jensen88eea452021-04-14 22:14:30 +02002413F: hw/nvme/*
Philippe Mathieu-Daudédc0b4d92020-07-01 16:06:34 +02002414F: include/block/nvme.h
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02002415F: tests/qtest/nvme-test.c
Thomas Huth4db546d2022-12-12 18:48:41 +01002416F: docs/system/devices/nvme.rst
Keith Busche8cc43d2020-07-06 11:29:22 -07002417T: git git://git.infradead.org/qemu-nvme.git nvme-next
Keith Buschf3c507a2013-06-04 09:17:10 -06002418
Jeuk Kimbc4e68d2023-09-06 16:43:48 +09002419ufs
2420M: Jeuk Kim <jeuk20.kim@samsung.com>
2421S: Supported
2422F: hw/ufs/*
2423F: include/block/ufs.h
Jeuk Kim631c8722023-09-06 16:43:51 +09002424F: tests/qtest/ufs-test.c
Jeuk Kimbc4e68d2023-09-06 16:43:48 +09002425
Hannes Reinecked383c622014-04-16 16:44:19 +02002426megasas
Philippe Mathieu-Daudé3fdfb8b2017-09-10 14:15:57 -03002427M: Hannes Reinecke <hare@suse.com>
Kevin Wolfc95e4c02015-04-30 15:15:13 +02002428L: qemu-block@nongnu.org
Hannes Reinecked383c622014-04-16 16:44:19 +02002429S: Supported
2430F: hw/scsi/megasas.c
2431F: hw/scsi/mfi.h
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02002432F: tests/qtest/megasas-test.c
Philippe Mathieu-Daudéc887d332021-01-26 12:16:37 +01002433F: tests/qtest/fuzz-megasas-test.c
Hannes Reinecked383c622014-04-16 16:44:19 +02002434
Dmitry Fleytman605d52e2016-06-01 11:23:39 +03002435Network packet abstractions
Philippe Mathieu-Daudébf4835a2018-01-08 15:34:06 -03002436M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
Akihiko Odakic8110e72023-05-23 11:43:38 +09002437R: Akihiko Odaki <akihiko.odaki@daynix.com>
Dmitry Fleytman605d52e2016-06-01 11:23:39 +03002438S: Maintained
2439F: include/net/eth.h
2440F: net/eth.c
2441F: hw/net/net_rx_pkt*
2442F: hw/net/net_tx_pkt*
2443
Dmitry Fleytman622fb502014-08-27 08:58:43 +03002444Vmware
Philippe Mathieu-Daudébf4835a2018-01-08 15:34:06 -03002445M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
Dmitry Fleytman622fb502014-08-27 08:58:43 +03002446S: Maintained
Thomas Huth6c493722023-11-07 11:27:38 +01002447F: docs/specs/vmw_pvscsi-spec.txt
2448F: hw/display/vmware_vga.c
Dmitry Fleytman622fb502014-08-27 08:58:43 +03002449F: hw/net/vmxnet*
2450F: hw/scsi/vmw_pvscsi*
Thomas Huth6c493722023-11-07 11:27:38 +01002451F: pc-bios/efi-vmxnet3.rom
2452F: pc-bios/vgabios-vmware.bin
2453F: roms/config.vga-vmware
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02002454F: tests/qtest/vmxnet3-test.c
Peter Maydell8472cc52023-09-27 16:11:58 +01002455F: docs/specs/vwm_pvscsi-spec.rst
Dmitry Fleytman622fb502014-08-27 08:58:43 +03002456
Scott Feldmande24d3f2015-03-13 21:09:32 -07002457Rocker
Scott Feldmande24d3f2015-03-13 21:09:32 -07002458M: Jiri Pirko <jiri@resnulli.us>
2459S: Maintained
2460F: hw/net/rocker/
Markus Armbruster92a3c6a2020-11-02 09:15:49 +01002461F: qapi/rocker.json
Thomas Huthde850942016-09-27 16:33:46 +02002462F: tests/rocker/
2463F: docs/specs/rocker.txt
Scott Feldmande24d3f2015-03-13 21:09:32 -07002464
Dmitry Fleytman093454e2016-06-01 11:23:44 +03002465e1000x
Philippe Mathieu-Daudébf4835a2018-01-08 15:34:06 -03002466M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
Akihiko Odaki8c061aa2023-02-23 19:20:12 +09002467R: Akihiko Odaki <akihiko.odaki@daynix.com>
Dmitry Fleytman093454e2016-06-01 11:23:44 +03002468S: Maintained
2469F: hw/net/e1000x*
2470
Dmitry Fleytman6f3fbe42016-06-01 11:23:45 +03002471e1000e
Philippe Mathieu-Daudébf4835a2018-01-08 15:34:06 -03002472M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
Akihiko Odaki8c061aa2023-02-23 19:20:12 +09002473R: Akihiko Odaki <akihiko.odaki@daynix.com>
Dmitry Fleytman6f3fbe42016-06-01 11:23:45 +03002474S: Maintained
2475F: hw/net/e1000e*
Philippe Mathieu-Daudé7d6a4f12021-03-10 19:31:22 +01002476F: tests/qtest/fuzz-e1000e-test.c
Akihiko Odaki0c2c2d42023-02-23 19:20:13 +09002477F: tests/qtest/e1000e-test.c
2478F: tests/qtest/libqos/e1000e.*
Dmitry Fleytman6f3fbe42016-06-01 11:23:45 +03002479
Akihiko Odaki3a977de2023-03-09 11:54:57 +08002480igb
2481M: Akihiko Odaki <akihiko.odaki@daynix.com>
Sriram Yagnaramane860ef12023-03-24 16:34:54 +01002482R: Sriram Yagnaraman <sriram.yagnaraman@est.tech>
Akihiko Odaki3a977de2023-03-09 11:54:57 +08002483S: Maintained
Akihiko Odaki136e9db2023-02-23 19:50:57 +09002484F: docs/system/devices/igb.rst
Akihiko Odaki3a977de2023-03-09 11:54:57 +08002485F: hw/net/igb*
Akihiko Odaki8e6c7182023-05-23 11:43:01 +09002486F: tests/avocado/netdev-ethtool.py
Akihiko Odaki45cb69b2023-03-10 14:11:25 +08002487F: tests/qtest/igb-test.c
2488F: tests/qtest/libqos/igb.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002489
Stefan Weilebc23272017-11-16 20:49:02 +01002490eepro100
2491M: Stefan Weil <sw@weilnetz.de>
2492S: Maintained
2493F: hw/net/eepro100.c
2494
Sven Schnelle34ea0232019-10-23 10:42:44 +02002495tulip
2496M: Sven Schnelle <svens@stackframe.org>
2497S: Maintained
2498F: hw/net/tulip.c
2499F: hw/net/tulip.h
2500
Patrick Venture065177e2021-04-12 12:45:22 -07002501pca954x
2502M: Patrick Venture <venture@google.com>
2503S: Maintained
2504F: hw/i2c/i2c_mux_pca954x.c
2505F: include/hw/i2c/i2c_mux_pca954x.h
2506
Dmitriy Sharikhin4cbb1512024-03-11 09:58:31 +00002507pcf8574
2508M: Dmitrii Sharikhin <d.sharikhin@yadro.com>
2509S: Maintained
2510F: hw/gpio/pcf8574.c
2511F: include/gpio/pcf8574.h
2512
Alistair Francise481a1f2016-10-04 13:28:09 +01002513Generic Loader
Alistair Francisc22e5802018-03-01 11:05:58 +00002514M: Alistair Francis <alistair@alistair23.me>
Alistair Francise481a1f2016-10-04 13:28:09 +01002515S: Maintained
2516F: hw/core/generic-loader.c
Alistair Francisefe15922022-05-09 11:13:39 +02002517F: hw/core/uboot_image.h
Alistair Francise481a1f2016-10-04 13:28:09 +01002518F: include/hw/core/generic-loader.h
Alex Bennée70f20112021-03-03 17:36:40 +00002519F: docs/system/generic-loader.rst
Alistair Francise481a1f2016-10-04 13:28:09 +01002520
Alex Bennéea33ff6d2021-03-03 17:36:39 +00002521Guest Loader
2522M: Alex Bennée <alex.bennee@linaro.org>
2523S: Maintained
2524F: hw/core/guest-loader.c
Alex Bennée01460372021-03-03 17:36:41 +00002525F: docs/system/guest-loader.rst
Willian Rampazzobbbd9b62021-11-05 12:53:54 -03002526F: tests/avocado/boot_xen.py
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002527
Su Hang645d3cb2018-08-16 14:05:28 +01002528Intel Hexadecimal Object File Loader
2529M: Su Hang <suhang16@mails.ucas.ac.cn>
2530S: Maintained
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02002531F: tests/qtest/hexloader-test.c
Peter Maydell4b2ff652018-11-02 11:52:37 +00002532F: tests/data/hex-loader/test.hex
Su Hang645d3cb2018-08-16 14:05:28 +01002533
Thomas Huth87a90232016-11-08 12:46:22 +01002534CHRP NVRAM
2535M: Thomas Huth <thuth@redhat.com>
2536S: Maintained
2537F: hw/nvram/chrp_nvram.c
2538F: include/hw/nvram/chrp_nvram.h
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02002539F: tests/qtest/prom-env-test.c
Thomas Huth87a90232016-11-08 12:46:22 +01002540
Ben Warren42697d82017-02-16 15:15:40 -08002541VM Generation ID
John Snow2b429892020-10-30 11:34:15 -04002542S: Orphan
Ani Sinha48006e02022-01-31 17:50:01 +05302543R: Ani Sinha <ani@anisinha.ca>
Ben Warren42697d82017-02-16 15:15:40 -08002544F: hw/acpi/vmgenid.c
2545F: include/hw/acpi/vmgenid.h
Peter Maydell912fb362023-09-27 16:12:05 +01002546F: docs/specs/vmgenid.rst
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02002547F: tests/qtest/vmgenid-test.c
Ben Warren42697d82017-02-16 15:15:40 -08002548
Philippe Mathieu-Daudéc1b29822020-03-21 17:49:01 +01002549LED
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02002550M: Philippe Mathieu-Daudé <philmd@linaro.org>
Philippe Mathieu-Daudéc1b29822020-03-21 17:49:01 +01002551S: Maintained
2552F: include/hw/misc/led.h
2553F: hw/misc/led.c
2554
Philippe Mathieu-Daudé747969d2017-06-29 12:03:08 -03002555Unimplemented device
2556M: Peter Maydell <peter.maydell@linaro.org>
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02002557R: Philippe Mathieu-Daudé <philmd@linaro.org>
Ani Sinha48006e02022-01-31 17:50:01 +05302558R: Ani Sinha <ani@anisinha.ca>
Philippe Mathieu-Daudé747969d2017-06-29 12:03:08 -03002559S: Maintained
2560F: include/hw/misc/unimp.h
2561F: hw/misc/unimp.c
2562
Philippe Mathieu-Daudé60075232019-06-24 17:17:32 +02002563Empty slot
2564M: Artyom Tarasenko <atar4qemu@gmail.com>
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02002565R: Philippe Mathieu-Daudé <philmd@linaro.org>
Ani Sinha48006e02022-01-31 17:50:01 +05302566R: Ani Sinha <ani@anisinha.ca>
Philippe Mathieu-Daudé60075232019-06-24 17:17:32 +02002567S: Maintained
2568F: include/hw/misc/empty_slot.h
2569F: hw/misc/empty_slot.c
2570
Gerd Hoffmanndbb2e472018-05-22 18:50:58 +02002571Standard VGA
2572M: Gerd Hoffmann <kraxel@redhat.com>
2573S: Maintained
2574F: hw/display/vga*
2575F: hw/display/bochs-display.c
2576F: include/hw/display/vga.h
2577F: include/hw/display/bochs-vbe.h
Peter Maydell68ed96b2023-09-27 16:12:02 +01002578F: docs/specs/standard-vga.rst
Gerd Hoffmanndbb2e472018-05-22 18:50:58 +02002579
Gerd Hoffmann58d632c2018-06-13 14:29:48 +02002580ramfb
2581M: Gerd Hoffmann <kraxel@redhat.com>
2582S: Maintained
2583F: hw/display/ramfb*.c
2584F: include/hw/display/ramfb.h
2585
Gerd Hoffmanndbb2e472018-05-22 18:50:58 +02002586virtio-gpu
2587M: Gerd Hoffmann <kraxel@redhat.com>
Gerd Hoffmanna4de5e82021-08-10 10:34:50 +02002588S: Odd Fixes
Gerd Hoffmanndbb2e472018-05-22 18:50:58 +02002589F: hw/display/virtio-gpu*
Marc-André Lureauc68082c2019-05-24 15:09:45 +02002590F: hw/display/virtio-vga.*
Gerd Hoffmanndbb2e472018-05-22 18:50:58 +02002591F: include/hw/virtio/virtio-gpu.h
Thomas Huth853c0142023-10-27 08:08:08 +02002592F: docs/system/devices/virtio-gpu.rst
Gerd Hoffmanndbb2e472018-05-22 18:50:58 +02002593
Raphael Norwitzb372d792020-03-26 04:57:27 -04002594vhost-user-blk
Raphael Norwitz1dd69542024-02-03 21:37:58 -05002595M: Raphael Norwitz <raphael@enfabrica.net>
Raphael Norwitzb372d792020-03-26 04:57:27 -04002596S: Maintained
2597F: contrib/vhost-user-blk/
2598F: contrib/vhost-user-scsi/
2599F: hw/block/vhost-user-blk.c
Daniil Tatianin8edd5672022-09-06 10:31:11 +03002600F: hw/block/virtio-blk-common.c
Raphael Norwitzb372d792020-03-26 04:57:27 -04002601F: hw/scsi/vhost-user-scsi.c
2602F: hw/virtio/vhost-user-blk-pci.c
2603F: hw/virtio/vhost-user-scsi-pci.c
2604F: include/hw/virtio/vhost-user-blk.h
2605F: include/hw/virtio/vhost-user-scsi.h
Daniil Tatianin8edd5672022-09-06 10:31:11 +03002606F: include/hw/virtio/virtio-blk-common.h
Raphael Norwitzb372d792020-03-26 04:57:27 -04002607
Marc-André Lureaubd2e44f2019-05-24 15:09:38 +02002608vhost-user-gpu
2609M: Marc-André Lureau <marcandre.lureau@redhat.com>
Gerd Hoffmanna4de5e82021-08-10 10:34:50 +02002610R: Gerd Hoffmann <kraxel@redhat.com>
Marc-André Lureaubd2e44f2019-05-24 15:09:38 +02002611S: Maintained
2612F: docs/interop/vhost-user-gpu.rst
Marc-André Lureaud52c4542019-05-24 15:09:42 +02002613F: contrib/vhost-user-gpu
2614F: hw/display/vhost-user-*
Marc-André Lureaubd2e44f2019-05-24 15:09:38 +02002615
Gerd Hoffmanndbb2e472018-05-22 18:50:58 +02002616Cirrus VGA
2617M: Gerd Hoffmann <kraxel@redhat.com>
2618S: Odd Fixes
2619W: https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
2620F: hw/display/cirrus*
2621
Gerd Hoffmann72d277a2018-09-25 09:56:42 +02002622EDID Generator
2623M: Gerd Hoffmann <kraxel@redhat.com>
2624S: Maintained
2625F: hw/display/edid*
2626F: include/hw/display/edid.h
2627F: qemu-edid.c
2628
Philippe Mathieu-Daudé10386382019-02-02 21:17:45 +01002629PIIX4 South Bridge (i82371AB)
2630M: Hervé Poussineau <hpoussin@reactos.org>
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02002631M: Philippe Mathieu-Daudé <philmd@linaro.org>
Philippe Mathieu-Daudé10386382019-02-02 21:17:45 +01002632S: Maintained
Bernhard Beschow16971892023-10-07 14:38:27 +02002633F: hw/isa/piix.c
Philippe Mathieu-Daudéfff123b2018-01-06 16:37:26 +01002634F: include/hw/southbridge/piix.h
Philippe Mathieu-Daudé10386382019-02-02 21:17:45 +01002635
BALATON Zoltan28900f92023-10-15 16:15:17 +02002636VIA South Bridges (VT82C686B, VT8231)
2637M: BALATON Zoltan <balaton@eik.bme.hu>
2638M: Philippe Mathieu-Daudé <philmd@linaro.org>
2639R: Jiaxun Yang <jiaxun.yang@flygoat.com>
2640S: Maintained
2641F: hw/isa/vt82c686.c
2642F: hw/usb/vt82c686-uhci-pci.c
2643F: include/hw/isa/vt82c686.h
2644
Philippe Mathieu-Daudé15ffb432018-11-22 03:11:39 +01002645Firmware configuration (fw_cfg)
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02002646M: Philippe Mathieu-Daudé <philmd@linaro.org>
Philippe Mathieu-Daudé15ffb432018-11-22 03:11:39 +01002647R: Gerd Hoffmann <kraxel@redhat.com>
2648S: Supported
2649F: docs/specs/fw_cfg.txt
Philippe Mathieu-Daudé8d0bceb2020-10-06 13:19:09 +02002650F: hw/nvram/fw_cfg*.c
Philippe Mathieu-Daudéb15c0f72019-04-22 15:49:41 +02002651F: stubs/fw_cfg.c
Philippe Mathieu-Daudé15ffb432018-11-22 03:11:39 +01002652F: include/hw/nvram/fw_cfg.h
2653F: include/standard-headers/linux/qemu_fw_cfg.h
Thomas Huth1cf43232019-09-10 16:41:20 +02002654F: tests/qtest/libqos/fw_cfg.c
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02002655F: tests/qtest/fw_cfg-test.c
Philippe Mathieu-Daudé15ffb432018-11-22 03:11:39 +01002656T: git https://github.com/philmd/qemu.git fw_cfg-next
2657
Thomas Huth2313abf2019-01-30 16:45:40 +01002658XIVE
Thomas Huth2313abf2019-01-30 16:45:40 +01002659M: Cédric Le Goater <clg@kaod.org>
Cédric Le Goater4901a342023-06-20 07:59:05 +02002660R: Frédéric Barrat <fbarrat@linux.ibm.com>
Thomas Huth2313abf2019-01-30 16:45:40 +01002661L: qemu-ppc@nongnu.org
Cédric Le Goaterb0877572022-09-29 20:09:46 +02002662S: Odd Fixes
Thomas Huth2313abf2019-01-30 16:45:40 +01002663F: hw/*/*xive*
2664F: include/hw/*/*xive*
Cédric Le Goater24563a52019-05-21 10:24:11 +02002665F: docs/*/*xive*
Thomas Huth2313abf2019-01-30 16:45:40 +01002666
Philippe Mathieu-Daudé7bd0d132020-06-10 23:32:38 +02002667Renesas peripherals
Philippe Mathieu-Daudé2d53d0c2021-03-12 16:55:13 +01002668R: Yoshinori Sato <ysato@users.sourceforge.jp>
Philippe Mathieu-Daudé7bd0d132020-06-10 23:32:38 +02002669R: Magnus Damm <magnus.damm@gmail.com>
Philippe Mathieu-Daudéf1660612020-10-31 16:23:40 +01002670S: Odd Fixes
Yoshinori Sato645194c2019-01-21 22:15:59 +09002671F: hw/char/renesas_sci.c
Philippe Mathieu-Daudé7bd0d132020-06-10 23:32:38 +02002672F: hw/char/sh_serial.c
Yoshinori Satoc7f37ba2019-03-20 23:16:05 +09002673F: hw/timer/renesas_*.c
Philippe Mathieu-Daudé7bd0d132020-06-10 23:32:38 +02002674F: hw/timer/sh_timer.c
Yoshinori Sato645194c2019-01-21 22:15:59 +09002675F: include/hw/char/renesas_sci.h
Philippe Mathieu-Daudé7bd0d132020-06-10 23:32:38 +02002676F: include/hw/sh4/sh.h
Yoshinori Satoc7f37ba2019-03-20 23:16:05 +09002677F: include/hw/timer/renesas_*.h
Philippe Mathieu-Daudé7bd0d132020-06-10 23:32:38 +02002678
Yoshinori Satoe78597c2019-01-21 22:15:57 +09002679Renesas RX peripherals
Philippe Mathieu-Daudéb2744da2021-03-12 16:55:12 +01002680R: Yoshinori Sato <ysato@users.sourceforge.jp>
2681S: Orphan
Yoshinori Satoe78597c2019-01-21 22:15:57 +09002682F: hw/intc/rx_icu.c
Yoshinori Sato0c80f502019-01-21 22:16:00 +09002683F: hw/rx/
Yoshinori Satoe78597c2019-01-21 22:15:57 +09002684F: include/hw/intc/rx_icu.h
Yoshinori Sato0c80f502019-01-21 22:16:00 +09002685F: include/hw/rx/
Yoshinori Satoe78597c2019-01-21 22:15:57 +09002686
Pavel Pisade4d4ad2020-09-14 10:13:41 +02002687CAN bus subsystem and hardware
2688M: Pavel Pisa <pisa@cmp.felk.cvut.cz>
2689M: Vikram Garhwal <fnu.vikram@xilinx.com>
2690S: Maintained
2691W: https://canbus.pages.fel.cvut.cz/
2692F: net/can/*
2693F: hw/net/can/*
2694F: include/net/can_*.h
Thomas Huth8995f1f2023-10-27 08:09:31 +02002695F: docs/system/devices/can.rst
Pavel Pisade4d4ad2020-09-14 10:13:41 +02002696
David Gibsonff8cdbb2021-09-21 13:34:35 +10002697OpenPIC interrupt controller
2698M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
2699S: Odd Fixes
2700F: hw/intc/openpic.c
2701F: include/hw/ppc/openpic.h
2702
Philippe Mathieu-Daudé6cee5472021-10-04 10:26:23 +02002703MIPS CPS
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02002704M: Philippe Mathieu-Daudé <philmd@linaro.org>
Philippe Mathieu-Daudé6cee5472021-10-04 10:26:23 +02002705S: Odd Fixes
2706F: hw/misc/mips_*
2707F: include/hw/misc/mips_*
2708
2709MIPS GIC
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02002710M: Philippe Mathieu-Daudé <philmd@linaro.org>
Philippe Mathieu-Daudé6cee5472021-10-04 10:26:23 +02002711S: Odd Fixes
2712F: hw/intc/mips_gic.c
2713F: hw/timer/mips_gictimer.c
2714F: include/hw/intc/mips_gic.h
2715F: include/hw/timer/mips_gictimer.h
2716
Cornelia Huck56e34832021-12-22 11:55:48 +01002717S390 3270 device
2718M: Halil Pasic <pasic@linux.ibm.com>
2719M: Christian Borntraeger <borntraeger@linux.ibm.com>
2720S: Odd fixes
2721F: include/hw/s390x/3270-ccw.h
2722F: hw/char/terminal3270.c
2723F: hw/s390x/3270-ccw.c
2724L: qemu-s390x@nongnu.org
2725
2726S390 diag 288 watchdog
2727M: Halil Pasic <pasic@linux.ibm.com>
2728M: Christian Borntraeger <borntraeger@linux.ibm.com>
2729S: Supported
2730F: hw/watchdog/wdt_diag288.c
2731F: include/hw/watchdog/wdt_diag288.h
2732L: qemu-s390x@nongnu.org
2733
2734S390 storage key device
2735M: Halil Pasic <pasic@linux.ibm.com>
2736M: Christian Borntraeger <borntraeger@linux.ibm.com>
2737S: Supported
2738F: hw/s390x/storage-keys.h
Eric Farman5cf9a812023-10-20 16:15:09 +02002739F: hw/s390x/s390-skeys*.c
Cornelia Huck56e34832021-12-22 11:55:48 +01002740L: qemu-s390x@nongnu.org
2741
2742S390 storage attribute device
2743M: Halil Pasic <pasic@linux.ibm.com>
2744M: Christian Borntraeger <borntraeger@linux.ibm.com>
2745S: Supported
2746F: hw/s390x/storage-attributes.h
Eric Farman5cf9a812023-10-20 16:15:09 +02002747F: hw/s390x/s390-stattrib*.c
Cornelia Huck56e34832021-12-22 11:55:48 +01002748L: qemu-s390x@nongnu.org
2749
2750S390 floating interrupt controller
2751M: Halil Pasic <pasic@linux.ibm.com>
2752M: Christian Borntraeger <borntraeger@linux.ibm.com>
2753M: David Hildenbrand <david@redhat.com>
2754S: Supported
2755F: hw/intc/s390_flic*.c
2756F: include/hw/s390x/s390_flic.h
2757L: qemu-s390x@nongnu.org
2758
Hongren (Zenithal) Zheng5028d662022-05-19 20:40:55 +08002759CanoKey
2760M: Hongren (Zenithal) Zheng <i@zenithal.me>
2761S: Maintained
2762R: Canokeys.org <contact@canokeys.org>
2763F: hw/usb/canokey.c
2764F: hw/usb/canokey.h
2765F: docs/system/devices/canokey.rst
2766
Maciej S. Szmigiero00313b52023-10-21 23:14:53 +02002767Hyper-V Dynamic Memory Protocol
2768M: Maciej S. Szmigiero <maciej.szmigiero@oracle.com>
2769S: Supported
2770F: hw/hyperv/hv-balloon*.c
2771F: hw/hyperv/hv-balloon*.h
2772F: include/hw/hyperv/dynmem-proto.h
2773F: include/hw/hyperv/hv-balloon.h
2774
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002775Subsystems
2776----------
Philippe Mathieu-Daudéa8f4aee2021-08-16 21:10:12 +02002777Overall Audio backends
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002778M: Gerd Hoffmann <kraxel@redhat.com>
Marc-André Lureaucc991392023-02-07 12:56:10 +04002779M: Marc-André Lureau <marcandre.lureau@redhat.com>
Gerd Hoffmann6bc915f2021-08-10 10:34:46 +02002780S: Odd Fixes
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002781F: audio/
Philippe Mathieu-Daudé0ebe43e2021-08-16 21:10:14 +02002782X: audio/alsaaudio.c
2783X: audio/coreaudio.c
2784X: audio/dsound*
2785X: audio/jackaudio.c
2786X: audio/ossaudio.c
2787X: audio/paaudio.c
2788X: audio/sdlaudio.c
Alexandre Ratchov663df1c2022-09-07 15:23:42 +02002789X: audio/sndioaudio.c
Philippe Mathieu-Daudé4566d142021-08-16 21:10:13 +02002790X: audio/spiceaudio.c
Markus Armbruster92a3c6a2020-11-02 09:15:49 +01002791F: qapi/audio.json
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002792
Philippe Mathieu-Daudé0ebe43e2021-08-16 21:10:14 +02002793ALSA Audio backend
2794M: Gerd Hoffmann <kraxel@redhat.com>
Christian Schoenebeck584ab342021-09-04 15:13:46 +02002795R: Christian Schoenebeck <qemu_oss@crudebyte.com>
Philippe Mathieu-Daudé0ebe43e2021-08-16 21:10:14 +02002796S: Odd Fixes
2797F: audio/alsaaudio.c
2798
2799Core Audio framework backend
2800M: Gerd Hoffmann <kraxel@redhat.com>
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02002801M: Philippe Mathieu-Daudé <philmd@linaro.org>
Christian Schoenebeck584ab342021-09-04 15:13:46 +02002802R: Christian Schoenebeck <qemu_oss@crudebyte.com>
Akihiko Odaki4f978632023-05-12 15:43:37 +01002803R: Akihiko Odaki <akihiko.odaki@daynix.com>
Philippe Mathieu-Daudé0ebe43e2021-08-16 21:10:14 +02002804S: Odd Fixes
2805F: audio/coreaudio.c
2806
2807DSound Audio backend
2808M: Gerd Hoffmann <kraxel@redhat.com>
2809S: Odd Fixes
2810F: audio/dsound*
2811
2812JACK Audio Connection Kit backend
2813M: Gerd Hoffmann <kraxel@redhat.com>
Christian Schoenebeck584ab342021-09-04 15:13:46 +02002814R: Christian Schoenebeck <qemu_oss@crudebyte.com>
Philippe Mathieu-Daudé0ebe43e2021-08-16 21:10:14 +02002815S: Odd Fixes
2816F: audio/jackaudio.c
2817
2818Open Sound System (OSS) Audio backend
2819M: Gerd Hoffmann <kraxel@redhat.com>
2820S: Odd Fixes
2821F: audio/ossaudio.c
2822
2823PulseAudio backend
2824M: Gerd Hoffmann <kraxel@redhat.com>
2825S: Odd Fixes
2826F: audio/paaudio.c
2827
2828SDL Audio backend
2829M: Gerd Hoffmann <kraxel@redhat.com>
Thomas Huth2863bd52021-10-30 08:21:06 +02002830R: Thomas Huth <huth@tuxfamily.org>
Philippe Mathieu-Daudé0ebe43e2021-08-16 21:10:14 +02002831S: Odd Fixes
2832F: audio/sdlaudio.c
2833
Alexandre Ratchov663df1c2022-09-07 15:23:42 +02002834Sndio Audio backend
2835M: Gerd Hoffmann <kraxel@redhat.com>
2836R: Alexandre Ratchov <alex@caoua.org>
2837S: Odd Fixes
2838F: audio/sndioaudio.c
2839
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002840Block layer core
2841M: Kevin Wolf <kwolf@redhat.com>
Hanna Reitzb0c47982021-08-10 16:04:11 +02002842M: Hanna Reitz <hreitz@redhat.com>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002843L: qemu-block@nongnu.org
2844S: Supported
2845F: block*
2846F: block/
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01002847F: hw/block/
Markus Armbrusterb885cdd2022-10-20 14:05:41 +02002848F: qapi/block*.json
2849F: qapi/transaction.json
Kevin Wolf4c346e02015-05-20 12:03:17 +02002850F: include/block/
Stefan Hajnoczi7f9241d2022-10-13 14:59:04 -04002851F: include/sysemu/block-*.h
Kevin Wolf46078762014-04-24 11:53:39 +02002852F: qemu-img*
Wainer dos Santos Moschetta33b2b382021-02-04 10:54:25 -03002853F: docs/tools/qemu-img.rst
Kevin Wolf46078762014-04-24 11:53:39 +02002854F: qemu-io*
Kevin Wolf29242092014-10-21 17:43:17 +02002855F: tests/qemu-iotests/
Max Reitz8dd30c82017-04-28 18:55:17 +02002856F: util/qemu-progress.c
Markus Armbruster0bcc8e52018-06-14 21:14:29 +02002857F: qobject/block-qdict.c
Thomas Huthda668aa2021-03-10 07:33:14 +01002858F: tests/unit/check-block-qdict.c
Stefan Hajnocziebe2aad2018-11-08 11:15:28 +00002859T: git https://repo.or.cz/qemu/kevin.git block
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002860
Stefan Hajnoczic607c7f2020-12-09 10:38:02 +00002861Storage daemon
2862M: Kevin Wolf <kwolf@redhat.com>
2863L: qemu-block@nongnu.org
2864S: Supported
2865F: storage-daemon/
2866F: docs/interop/qemu-storage-daemon-qmp-ref.rst
2867F: docs/tools/qemu-storage-daemon.rst
2868T: git https://repo.or.cz/qemu/kevin.git block
2869
Stefan Hajnoczid55053b2015-04-29 15:13:27 +01002870Block I/O path
2871M: Stefan Hajnoczi <stefanha@redhat.com>
Fam Zhengfe5ca462018-11-21 23:30:36 +08002872M: Fam Zheng <fam@euphon.net>
Stefan Hajnoczid55053b2015-04-29 15:13:27 +01002873L: qemu-block@nongnu.org
2874S: Supported
Paolo Bonzini36c697b2017-05-03 12:30:23 +02002875F: util/async.c
2876F: util/aio-*.c
Stefan Hajnoczi1f050a42020-03-05 17:08:02 +00002877F: util/aio-*.h
Stefan Hajnoczi433fcea2023-09-13 16:00:43 -04002878F: util/defer-call.c
Stefan Hajnoczi1f050a42020-03-05 17:08:02 +00002879F: util/fdmon-*.c
Stefan Hajnoczid55053b2015-04-29 15:13:27 +01002880F: block/io.c
2881F: migration/block*
Fam Zhenge1029ae2016-07-18 15:19:47 +08002882F: include/block/aio.h
Stefan Hajnoczif5a53fa2018-03-12 13:22:04 +00002883F: include/block/aio-wait.h
Stefan Hajnoczi433fcea2023-09-13 16:00:43 -04002884F: include/qemu/defer-call.h
Philippe Mathieu-Daudé0a4f9ad2017-09-08 14:36:28 -03002885F: scripts/qemugdb/aio.py
Thomas Huthda668aa2021-03-10 07:33:14 +01002886F: tests/unit/test-fdmon-epoll.c
Stefan Hajnoczie18a8b32018-11-08 11:15:26 +00002887T: git https://github.com/stefanha/qemu.git block
Stefan Hajnoczid55053b2015-04-29 15:13:27 +01002888
Paolo Bonzinie5b57282017-08-22 07:08:27 +02002889Block SCSI subsystem
2890M: Paolo Bonzini <pbonzini@redhat.com>
Fam Zhengfe5ca462018-11-21 23:30:36 +08002891R: Fam Zheng <fam@euphon.net>
Paolo Bonzinie5b57282017-08-22 07:08:27 +02002892L: qemu-block@nongnu.org
2893S: Supported
2894F: include/scsi/*
2895F: scsi/*
2896
Jeff Cody280458a2015-03-06 12:16:06 -05002897Block Jobs
Jeff Cody03283d62018-09-26 14:05:32 -04002898M: John Snow <jsnow@redhat.com>
Vladimir Sementsov-Ogievskiy9e4067b2022-05-26 14:54:32 +03002899M: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
Jeff Cody280458a2015-03-06 12:16:06 -05002900L: qemu-block@nongnu.org
2901S: Supported
2902F: blockjob.c
2903F: include/block/blockjob.h
Kevin Wolf33e9e9b2018-04-12 17:29:59 +02002904F: job.c
Kevin Wolf1a90bc82018-05-03 19:01:14 +02002905F: job-qmp.c
Markus Armbrusterc468e362018-08-10 13:55:53 +02002906F: include/qemu/job.h
Jeff Cody280458a2015-03-06 12:16:06 -05002907F: block/backup.c
2908F: block/commit.c
Jeff Cody77346022016-03-09 21:54:00 -05002909F: block/stream.c
Jeff Cody280458a2015-03-06 12:16:06 -05002910F: block/mirror.c
Kevin Wolfbf425082018-05-16 16:03:10 +02002911F: qapi/job.json
Vladimir Sementsov-Ogievskiyd7beddc2021-01-28 17:41:44 +03002912F: block/block-copy.c
Vladimir Sementsov-Ogievskiyd088e6a2022-03-03 20:43:39 +01002913F: include/block/block-copy.h
2914F: block/reqlist.c
2915F: include/block/reqlist.h
Vladimir Sementsov-Ogievskiyd003e0a2021-08-24 11:38:27 +03002916F: block/copy-before-write.h
2917F: block/copy-before-write.c
Vladimir Sementsov-Ogievskiy1c14eaa2022-03-03 20:43:44 +01002918F: block/snapshot-access.c
Vladimir Sementsov-Ogievskiyd7beddc2021-01-28 17:41:44 +03002919F: include/block/aio_task.h
2920F: block/aio_task.c
2921F: util/qemu-co-shared-resource.c
2922F: include/qemu/co-shared-resource.h
John Snow77582e22020-10-01 12:24:01 -04002923T: git https://gitlab.com/jsnow/qemu.git jobs
Vladimir Sementsov-Ogievskiy9e4067b2022-05-26 14:54:32 +03002924T: git https://gitlab.com/vsementsov/qemu.git block
Jeff Cody280458a2015-03-06 12:16:06 -05002925
Jonathan Cameron502730e2022-04-29 15:40:28 +01002926Compute Express Link
Jonathan Cameron502730e2022-04-29 15:40:28 +01002927M: Jonathan Cameron <jonathan.cameron@huawei.com>
Jonathan Cameron3456fed2023-02-28 11:39:26 +00002928R: Fan Ni <fan.ni@samsung.com>
Jonathan Cameron502730e2022-04-29 15:40:28 +01002929S: Supported
2930F: hw/cxl/
David Hildenbrand2fcd0052022-06-17 14:31:51 +02002931F: hw/mem/cxl_type3.c
Jonathan Cameron502730e2022-04-29 15:40:28 +01002932F: include/hw/cxl/
Markus Armbruster66ba1572024-02-05 09:47:46 +01002933F: qapi/cxl.json
Jonathan Cameron502730e2022-04-29 15:40:28 +01002934
John Snow538193b2016-08-04 14:18:51 -04002935Dirty Bitmaps
Eric Blakeedb05902020-05-14 13:00:03 -05002936M: Eric Blake <eblake@redhat.com>
Vladimir Sementsov-Ogievskiy9e4067b2022-05-26 14:54:32 +03002937M: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
Eric Blakeedb05902020-05-14 13:00:03 -05002938R: John Snow <jsnow@redhat.com>
John Snow538193b2016-08-04 14:18:51 -04002939L: qemu-block@nongnu.org
2940S: Supported
John Snow538193b2016-08-04 14:18:51 -04002941F: include/qemu/hbitmap.h
2942F: include/block/dirty-bitmap.h
Eric Blakebb4e58c2020-05-18 13:53:07 -05002943F: block/monitor/bitmap-qmp-cmds.c
Vladimir Sementsov-Ogievskiy00637c62019-12-19 13:16:03 +03002944F: block/dirty-bitmap.c
2945F: block/qcow2-bitmap.c
Vladimir Sementsov-Ogievskiy052db8e2019-10-26 19:56:55 +03002946F: migration/block-dirty-bitmap.c
Vladimir Sementsov-Ogievskiy00637c62019-12-19 13:16:03 +03002947F: util/hbitmap.c
Thomas Huthda668aa2021-03-10 07:33:14 +01002948F: tests/unit/test-hbitmap.c
Philippe Mathieu-Daudé5746c1c2017-09-08 14:36:32 -03002949F: docs/interop/bitmaps.rst
Eric Blakeedb05902020-05-14 13:00:03 -05002950T: git https://repo.or.cz/qemu/ericb.git bitmaps
Vladimir Sementsov-Ogievskiy9e4067b2022-05-26 14:54:32 +03002951T: git https://gitlab.com/vsementsov/qemu.git block
John Snow538193b2016-08-04 14:18:51 -04002952
Paolo Bonzini61af0ee2015-09-22 11:40:00 +02002953Character device backends
Marc-André Lureau55fc84a2017-01-30 17:37:31 +04002954M: Marc-André Lureau <marcandre.lureau@redhat.com>
Paolo Bonzini2185fd62018-10-19 14:25:42 +02002955R: Paolo Bonzini <pbonzini@redhat.com>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002956S: Maintained
Marc-André Lureau178fe0a2016-12-10 00:29:03 +03002957F: chardev/
Marc-André Lureau8228e352017-01-26 17:19:46 +04002958F: include/chardev/
Markus Armbrusterdbeee392017-08-24 21:13:58 +02002959F: qapi/char.json
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002960
Paolo Bonzinie26082f2014-10-22 14:53:32 +02002961Character Devices (Braille)
2962M: Samuel Thibault <samuel.thibault@ens-lyon.org>
2963S: Maintained
Marc-André Lureau6b10e572017-05-29 12:39:42 +04002964F: chardev/baum.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05002965
Markus Armbrustere94630d2017-03-20 13:55:48 +01002966Command line option argument parsing
2967M: Markus Armbruster <armbru@redhat.com>
2968S: Supported
2969F: include/qemu/option.h
Thomas Huthda668aa2021-03-10 07:33:14 +01002970F: tests/unit/test-keyval.c
2971F: tests/unit/test-qemu-opts.c
Markus Armbrustere94630d2017-03-20 13:55:48 +01002972F: util/keyval.c
2973F: util/qemu-option.c
2974
Markus Armbruster8c413e72015-01-28 11:29:57 +01002975Coverity model
2976M: Markus Armbruster <armbru@redhat.com>
2977S: Supported
2978F: scripts/coverity-model.c
2979
Peter Maydell9c263d02020-03-19 19:33:22 +00002980Coverity Scan integration
2981M: Peter Maydell <peter.maydell@linaro.org>
2982S: Maintained
2983F: scripts/coverity-scan/
2984
Peter A. G. Crosthwaited24b5692012-06-26 14:29:42 +10002985Device Tree
Alistair Francisc3c962c2019-03-26 13:53:32 -07002986M: Alistair Francis <alistair.francis@wdc.com>
2987R: David Gibson <david@gibson.dropbear.id.au>
Peter A. G. Crosthwaited24b5692012-06-26 14:29:42 +10002988S: Maintained
Philippe Mathieu-Daudé8d7f2e72023-10-04 11:06:28 +02002989F: system/device_tree.c
Thomas Huth82407512015-12-17 15:25:12 +01002990F: include/sysemu/device_tree.h
Peter A. G. Crosthwaited24b5692012-06-26 14:29:42 +10002991
Marc-André Lureau3505a222017-09-11 18:59:29 +02002992Dump
2993S: Supported
2994M: Marc-André Lureau <marcandre.lureau@redhat.com>
Markus Armbruster6d3da322019-06-19 22:10:49 +02002995F: dump/
Marc-André Lureau3505a222017-09-11 18:59:29 +02002996F: hw/misc/vmcoreinfo.c
2997F: include/hw/misc/vmcoreinfo.h
Markus Armbruster6d3da322019-06-19 22:10:49 +02002998F: include/qemu/win_dump_defs
Marc-André Lureau3505a222017-09-11 18:59:29 +02002999F: include/sysemu/dump-arch.h
3000F: include/sysemu/dump.h
Markus Armbrusterd06b7472019-06-19 22:10:47 +02003001F: qapi/dump.json
Marc-André Lureau3505a222017-09-11 18:59:29 +02003002F: scripts/dump-guest-memory.py
3003F: stubs/dump.c
Peter Maydell096d3ce2023-09-27 16:12:04 +01003004F: docs/specs/vmcoreinfo.rst
Marc-André Lureau3505a222017-09-11 18:59:29 +02003005
Markus Armbruster4f966762015-09-12 13:29:56 +02003006Error reporting
3007M: Markus Armbruster <armbru@redhat.com>
3008S: Supported
3009F: include/qapi/error.h
3010F: include/qemu/error-report.h
Markus Armbrusterabb3d372019-08-12 07:23:33 +02003011F: qapi/error.json
Markus Armbruster4f966762015-09-12 13:29:56 +02003012F: util/error.c
3013F: util/qemu-error.c
Vladimir Sementsov-Ogievskiyd1d3a992020-03-24 18:36:25 +03003014F: scripts/coccinelle/err-bad-newline.cocci
3015F: scripts/coccinelle/error-use-after-free.cocci
3016F: scripts/coccinelle/error_propagate_null.cocci
3017F: scripts/coccinelle/remove_local_err.cocci
3018F: scripts/coccinelle/use-error_fatal.cocci
Vladimir Sementsov-Ogievskiy8220f3a2020-07-07 18:50:31 +02003019F: scripts/coccinelle/errp-guard.cocci
Markus Armbruster4f966762015-09-12 13:29:56 +02003020
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05003021GDB stub
Alex Bennéec7b3e862019-06-06 09:27:53 +01003022M: Alex Bennée <alex.bennee@linaro.org>
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02003023R: Philippe Mathieu-Daudé <philmd@linaro.org>
Alex Bennéec7b3e862019-06-06 09:27:53 +01003024S: Maintained
Thomas Huth4db546d2022-12-12 18:48:41 +01003025F: docs/system/gdb.rst
Alex Bennée842b42d2022-09-29 12:42:22 +01003026F: gdbstub/*
Peter Maydell0dec1012021-02-11 12:27:44 +00003027F: include/exec/gdbstub.h
Alex Bennéed96bf492023-03-02 18:57:47 -08003028F: include/gdbstub/*
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05003029F: gdb-xml/
Alex Bennée21750c32023-11-06 18:50:56 +00003030F: tests/tcg/multiarch/gdbstub/*
Akihiko Odaki956af7d2023-10-09 17:40:51 +01003031F: scripts/feature_to_c.py
Alex Bennéebcbc36a2023-03-02 18:57:59 -08003032F: scripts/probe-gdb-support.py
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05003033
Paolo Bonzini01a9c032014-04-29 16:05:53 +02003034Memory API
3035M: Paolo Bonzini <pbonzini@redhat.com>
David Hildenbrand07b315b2021-07-23 12:05:31 +02003036M: Peter Xu <peterx@redhat.com>
3037M: David Hildenbrand <david@redhat.com>
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02003038R: Philippe Mathieu-Daudé <philmd@linaro.org>
Paolo Bonzini01a9c032014-04-29 16:05:53 +02003039S: Supported
3040F: include/exec/ioport.h
Tony Nguyen14776ab2019-08-24 04:10:58 +10003041F: include/exec/memop.h
Paolo Bonzini01a9c032014-04-29 16:05:53 +02003042F: include/exec/memory.h
Paolo Bonzini2b1641d2015-11-13 18:49:54 +01003043F: include/exec/ram_addr.h
Juan Quintela41aa4e92020-01-22 15:58:57 +01003044F: include/exec/ramblock.h
David Hildenbrand9f04dd72021-07-23 12:05:32 +02003045F: include/sysemu/memory_mapping.h
Philippe Mathieu-Daudé8d7f2e72023-10-04 11:06:28 +02003046F: system/dma-helpers.c
3047F: system/ioport.c
3048F: system/memory.c
3049F: system/memory_mapping.c
3050F: system/physmem.c
Paolo Bonzini01a9c032014-04-29 16:05:53 +02003051F: include/exec/memory-internal.h
Philippe Mathieu-Daudé044e2af2020-02-24 14:45:07 +01003052F: scripts/coccinelle/memory-region-housekeeping.cocci
Paolo Bonzini01a9c032014-04-29 16:05:53 +02003053
David Hildenbrand2fcd0052022-06-17 14:31:51 +02003054Memory devices
3055M: David Hildenbrand <david@redhat.com>
3056M: Igor Mammedov <imammedo@redhat.com>
3057R: Xiao Guangrong <xiaoguangrong.eric@gmail.com>
3058S: Supported
3059F: hw/mem/memory-device.c
3060F: hw/mem/nvdimm.c
3061F: hw/mem/pc-dimm.c
3062F: include/hw/mem/memory-device.h
3063F: include/hw/mem/nvdimm.h
3064F: include/hw/mem/pc-dimm.h
David Hildenbrand759bac62023-09-26 20:57:27 +02003065F: stubs/memory_device.c
David Hildenbrand2fcd0052022-06-17 14:31:51 +02003066F: docs/nvdimm.txt
3067
Gerd Hoffmann7ee3bf02010-12-13 21:30:37 +01003068SPICE
3069M: Gerd Hoffmann <kraxel@redhat.com>
Gerd Hoffmann227b1632021-08-10 10:34:47 +02003070S: Odd Fixes
Peter Maydell6e481d52013-06-24 11:49:32 +01003071F: include/ui/qemu-spice.h
Thomas Huth438528a2016-02-25 10:36:06 +01003072F: include/ui/spice-display.h
Gerd Hoffmann7ee3bf02010-12-13 21:30:37 +01003073F: ui/spice-*.c
3074F: audio/spiceaudio.c
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01003075F: hw/display/qxl*
Markus Armbruster608cfed2017-08-24 21:14:00 +02003076F: qapi/ui.json
Philippe Mathieu-Daudé9bd4cb32018-11-25 21:49:52 +01003077F: docs/spice-port-fqdn.txt
Gerd Hoffmann7ee3bf02010-12-13 21:30:37 +01003078
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05003079Graphics
Gerd Hoffmann25eccc32014-04-07 10:42:03 +02003080M: Gerd Hoffmann <kraxel@redhat.com>
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
Stefan Hajnocziebe2aad2018-11-08 11:15:28 +00003227T: git https://repo.or.cz/qemu/armbru.git qapi-next
Luiz Capitulino7810d292013-06-03 11:11:53 -04003228
Luiz Capitulinof3582ba2014-10-22 08:54:59 -04003229QObject
Markus Armbrusterdaf5dc72016-09-28 19:33:42 +02003230M: Markus Armbruster <armbru@redhat.com>
3231S: Supported
Luiz Capitulinof3582ba2014-10-22 08:54:59 -04003232F: qobject/
Markus Armbruster7735d2b2015-09-24 18:11:56 +02003233F: include/qapi/qmp/
3234X: include/qapi/qmp/dispatch.h
Eric Blakea2f34532017-04-27 16:58:14 -05003235F: scripts/coccinelle/qobject.cocci
Thomas Huthda668aa2021-03-10 07:33:14 +01003236F: tests/unit/check-qdict.c
3237F: tests/unit/check-qjson.c
3238F: tests/unit/check-qlist.c
3239F: tests/unit/check-qlit.c
3240F: tests/unit/check-qnull.c
3241F: tests/unit/check-qnum.c
3242F: tests/unit/check-qobject.c
3243F: tests/unit/check-qstring.c
Philippe Mathieu-Daudéfe07b622018-12-18 12:37:17 +01003244F: tests/data/qobject/qdict.txt
Stefan Hajnocziebe2aad2018-11-08 11:15:28 +00003245T: git https://repo.or.cz/qemu/armbru.git qapi-next
Luiz Capitulinof3582ba2014-10-22 08:54:59 -04003246
Michael Rothf05d9992014-10-22 07:05:36 -05003247QEMU Guest Agent
Michael Roth2f5f9bc2020-10-27 01:02:53 -05003248M: Michael Roth <michael.roth@amd.com>
Konstantin Kostiuke8cbe582022-07-18 11:52:28 +03003249M: Konstantin Kostiuk <kkostiuk@redhat.com>
Michael Rothf05d9992014-10-22 07:05:36 -05003250S: Maintained
3251F: qga/
Thomas Huth51145a02023-11-07 11:18:11 +01003252F: contrib/systemd/qemu-guest-agent.service
Peter Maydell27a296f2019-09-05 14:10:40 +01003253F: docs/interop/qemu-ga.rst
Peter Maydelldb161152020-09-25 17:23:03 +01003254F: docs/interop/qemu-ga-ref.rst
Philippe Mathieu-Daudéab7f9f72017-09-08 14:36:22 -03003255F: scripts/qemu-guest-agent/
Thomas Huth51145a02023-11-07 11:18:11 +01003256F: tests/*/test-qga*
Stefan Hajnoczie18a8b32018-11-08 11:15:26 +00003257T: git https://github.com/mdroth/qemu.git qga
Michael Rothf05d9992014-10-22 07:05:36 -05003258
Kostiantyn Kostiukcced3a72022-01-05 09:09:42 +00003259QEMU Guest Agent Win32
3260M: Konstantin Kostiuk <kkostiuk@redhat.com>
3261S: Maintained
3262F: qga/*win32*
3263F: qga/vss-win32/
3264F: qga/installer/
3265T: git https://github.com/kostyanf14/qemu.git qga-win32
3266
Andreas Färber4688c942014-04-24 15:00:14 +02003267QOM
Paolo Bonzini1085d862019-06-19 22:10:34 +02003268M: Paolo Bonzini <pbonzini@redhat.com>
3269R: Daniel P. Berrange <berrange@redhat.com>
Eduardo Habkost24c4cd12021-11-30 15:47:22 -05003270R: Eduardo Habkost <eduardo@habkost.net>
Andreas Färber4688c942014-04-24 15:00:14 +02003271S: Supported
Thomas Huth4db546d2022-12-12 18:48:41 +01003272F: docs/devel/qom.rst
Markus Armbruster8f920052019-06-24 16:48:19 +02003273F: docs/qdev-device-use.txt
3274F: hw/core/qdev*
Markus Armbrusterb77b5b32020-06-10 07:32:47 +02003275F: hw/core/bus.c
3276F: hw/core/sysbus.c
Markus Armbruster8f920052019-06-24 16:48:19 +02003277F: include/hw/qdev*
3278F: include/monitor/qdev.h
Andreas Färber4688c942014-04-24 15:00:14 +02003279F: include/qom/
Markus Armbrusterc577ff62019-06-19 22:10:37 +02003280F: qapi/qom.json
3281F: qapi/qdev.json
Paolo Bonzini22fb6eb2020-10-07 12:23:56 -04003282F: scripts/coccinelle/qom-parent-type.cocci
Philippe Mathieu-Daudée3e2c0c2023-06-01 11:34:51 +02003283F: scripts/qom-cast-macro-clean-cocci-gen.py
Philippe Mathieu-Daudé8d7f2e72023-10-04 11:06:28 +02003284F: system/qdev-monitor.c
Philippe Mathieu-Daudé9b45a022021-01-22 21:44:38 +01003285F: stubs/qdev.c
Andreas Färber4688c942014-04-24 15:00:14 +02003286F: qom/
Thomas Huthda668aa2021-03-10 07:33:14 +01003287F: tests/unit/check-qom-interface.c
3288F: tests/unit/check-qom-proplist.c
3289F: tests/unit/test-qdev-global-props.c
Andreas Färber4688c942014-04-24 15:00:14 +02003290
Eduardo Habkost94dfc0f2020-08-31 17:07:28 -04003291QOM boilerplate conversion script
Eduardo Habkost24c4cd12021-11-30 15:47:22 -05003292M: Eduardo Habkost <eduardo@habkost.net>
Eduardo Habkost94dfc0f2020-08-31 17:07:28 -04003293S: Maintained
3294F: scripts/codeconverter/
3295
Luiz Capitulino8899b4a2013-06-03 11:14:26 -04003296QMP
Luiz Capitulino97406182015-05-05 10:39:15 -04003297M: Markus Armbruster <armbru@redhat.com>
3298S: Supported
Kevin Wolf5bce3082019-06-13 17:33:59 +02003299F: monitor/monitor-internal.h
Kevin Wolff1b3ccf2019-06-13 17:33:58 +02003300F: monitor/qmp*
Kevin Wolfe84328f2019-06-13 17:33:57 +02003301F: monitor/misc.c
Kevin Wolf1d95db72019-06-13 17:34:02 +02003302F: monitor/monitor.c
Markus Armbruster92a3c6a2020-11-02 09:15:49 +01003303F: qapi/control.json
Markus Armbrusterabb3d372019-08-12 07:23:33 +02003304F: qapi/error.json
Markus Armbruster92a3c6a2020-11-02 09:15:49 +01003305F: qapi/introspect.json
Philippe Mathieu-Daudéc39cdbf2017-09-08 14:36:31 -03003306F: docs/devel/*qmp-*
Philippe Mathieu-Daudé12b2f0d2018-11-25 21:49:54 +01003307F: docs/interop/*qmp-*
Luiz Capitulino97406182015-05-05 10:39:15 -04003308F: scripts/qmp/
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02003309F: tests/qtest/qmp-test.c
3310F: tests/qtest/qmp-cmd-test.c
Stefan Hajnocziebe2aad2018-11-08 11:15:28 +00003311T: git https://repo.or.cz/qemu/armbru.git qapi-next
Luiz Capitulino8899b4a2013-06-03 11:14:26 -04003312
Paolo Bonzini98a43bf2018-08-14 17:40:41 +02003313qtest
Paolo Bonzini98a43bf2018-08-14 17:40:41 +02003314M: Thomas Huth <thuth@redhat.com>
3315M: Laurent Vivier <lvivier@redhat.com>
Paolo Bonzini2185fd62018-10-19 14:25:42 +02003316R: Paolo Bonzini <pbonzini@redhat.com>
Paolo Bonzini98a43bf2018-08-14 17:40:41 +02003317S: Maintained
Philippe Mathieu-Daudé8d7f2e72023-10-04 11:06:28 +02003318F: system/qtest.c
Thomas Huthabf8c472023-10-12 13:14:01 +02003319F: include/sysemu/qtest.h
Claudio Fontana1583a382020-07-07 10:21:10 +02003320F: accel/qtest/
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02003321F: tests/qtest/
Emanuele Giuseppe Esposito222455e2021-03-08 08:32:40 +01003322F: docs/devel/qgraph.rst
Thomas Huth4db546d2022-12-12 18:48:41 +01003323F: docs/devel/qtest.rst
Thomas Huth520ddc12020-10-01 06:27:17 +02003324X: tests/qtest/bios-tables-test*
Paolo Bonzini98a43bf2018-08-14 17:40:41 +02003325
Alexander Bulekov5f6fd092020-02-19 23:11:08 -05003326Device Fuzzing
3327M: Alexander Bulekov <alxndr@bu.edu>
3328R: Paolo Bonzini <pbonzini@redhat.com>
3329R: Bandan Das <bsd@redhat.com>
3330R: Stefan Hajnoczi <stefanha@redhat.com>
Thomas Huth6184e5f2020-07-21 07:36:09 +02003331R: Thomas Huth <thuth@redhat.com>
Darren Kenny85221b02021-08-24 14:04:01 +00003332R: Darren Kenny <darren.kenny@oracle.com>
Qiuhao Li5d32fc32021-08-24 14:26:39 +08003333R: Qiuhao Li <Qiuhao.Li@outlook.com>
Alexander Bulekov5f6fd092020-02-19 23:11:08 -05003334S: Maintained
3335F: tests/qtest/fuzz/
Philippe Mathieu-Daudéd3d39fc2021-01-26 12:28:49 +01003336F: tests/qtest/fuzz-*test.c
Alex Bennée4ab20b52023-06-30 19:03:54 +01003337F: tests/docker/test-fuzz
Alexander Bulekov211635b2020-06-12 01:51:45 -04003338F: scripts/oss-fuzz/
Alexander Bulekov230376d2021-03-15 10:05:10 -04003339F: hw/mem/sparse-mem.c
Alexander Bulekovf3a02082020-11-06 13:05:59 -05003340F: docs/devel/fuzzing.rst
Alexander Bulekov5f6fd092020-02-19 23:11:08 -05003341
Alistair Franciscc0100f2016-07-28 09:55:39 -07003342Register API
Alistair Francisc22e5802018-03-01 11:05:58 +00003343M: Alistair Francis <alistair@alistair23.me>
Alistair Franciscc0100f2016-07-28 09:55:39 -07003344S: Maintained
3345F: hw/core/register.c
3346F: include/hw/register.h
Philippe Mathieu-Daudé06a7b242017-12-13 02:17:33 -03003347F: include/hw/registerfields.h
Alistair Franciscc0100f2016-07-28 09:55:39 -07003348
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05003349SLIRP
Samuel Thibaulteda509f2015-08-06 13:10:14 +02003350M: Samuel Thibault <samuel.thibault@ens-lyon.org>
Jan Kiszkabafc72a2011-07-27 14:21:32 +02003351S: Maintained
Thomas Huth663fb1e2015-12-15 09:48:15 +01003352F: net/slirp.c
Thomas Huthd24b2b12016-02-25 12:56:24 +01003353F: include/net/slirp.h
Samuel Thibault02cffe22018-05-31 21:45:10 +02003354T: git https://people.debian.org/~sthibault/qemu.git slirp
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05003355
Markus Armbrusteraa09b3d2023-01-24 13:19:36 +01003356Stats
3357S: Orphan
3358F: include/sysemu/stats.h
3359F: stats/
Markus Armbruster0afbba62024-02-05 09:47:47 +01003360F: qapi/stats.json
Markus Armbrusteraa09b3d2023-01-24 13:19:36 +01003361
Edgar E. Iglesias6d0af392020-05-06 10:25:13 +02003362Streams
3363M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
3364S: Maintained
3365F: hw/core/stream.c
3366F: include/hw/stream.h
3367
Paolo Bonzinib1ed7282016-08-24 16:04:56 +02003368Stubs
3369M: Paolo Bonzini <pbonzini@redhat.com>
3370S: Maintained
3371F: stubs/
3372
Stefan Hajnoczi598a3f32011-09-03 16:24:47 +01003373Tracing
Stefan Hajnoczi1cd0f8c2012-10-07 18:08:49 +02003374M: Stefan Hajnoczi <stefanha@redhat.com>
Mads Ynddal84197262023-09-26 12:34:35 +02003375R: Mads Ynddal <mads@ynddal.dk>
Stefan Hajnoczi598a3f32011-09-03 16:24:47 +01003376S: Maintained
3377F: trace/
Thomas Huth0e076292018-05-09 06:38:20 +02003378F: trace-events
Peter Maydell3a8273b2020-02-28 15:36:18 +00003379F: docs/qemu-option-trace.rst.inc
Markus Armbruster92a3c6a2020-11-02 09:15:49 +01003380F: qapi/trace.json
Lluís Vilanovaf70fd8f2012-04-03 20:48:17 +02003381F: scripts/tracetool.py
3382F: scripts/tracetool/
Daniel P. Berrangé62dd1042019-01-23 12:00:16 +00003383F: scripts/qemu-trace-stap*
Wainer dos Santos Moschetta33b2b382021-02-04 10:54:25 -03003384F: docs/tools/qemu-trace-stap.rst
Stefano Garzarellad0fb9652021-05-17 17:16:58 +02003385F: docs/devel/tracing.rst
Stefan Hajnoczie18a8b32018-11-08 11:15:26 +00003386T: git https://github.com/stefanha/qemu.git tracing
Stefan Hajnoczi598a3f32011-09-03 16:24:47 +01003387
Mads Ynddal84197262023-09-26 12:34:35 +02003388Simpletrace
3389M: Mads Ynddal <mads@ynddal.dk>
3390S: Maintained
3391F: scripts/simpletrace.py
3392
Markus Armbruster3859b6c2017-08-24 21:14:03 +02003393TPM
Stefan Berger1f636692018-10-30 17:34:09 -04003394M: Stefan Berger <stefanb@linux.ibm.com>
Stefan Berger6b4f2502017-09-07 16:16:24 -04003395S: Maintained
Philippe Mathieu-Daudé8d7f2e72023-10-04 11:06:28 +02003396F: system/tpm*
Markus Armbruster3859b6c2017-08-24 21:14:03 +02003397F: hw/tpm/*
3398F: include/hw/acpi/tpm.h
3399F: include/sysemu/tpm*
3400F: qapi/tpm.json
Philippe Mathieu-Daudé8ae92e22020-06-12 10:54:34 +02003401F: backends/tpm/
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02003402F: tests/qtest/*tpm*
Thomas Huth4db546d2022-12-12 18:48:41 +01003403F: docs/specs/tpm.rst
Stefan Hajnoczie18a8b32018-11-08 11:15:26 +00003404T: git https://github.com/stefanberger/qemu-tpm.git tpm-next
Markus Armbruster3859b6c2017-08-24 21:14:03 +02003405
Blue Swirl14f40fd2011-11-26 09:51:23 +00003406Checkpatch
Blue Swirl14f40fd2011-11-26 09:51:23 +00003407S: Odd Fixes
3408F: scripts/checkpatch.pl
3409
Juan Quintelac0787c82014-10-15 10:34:50 +02003410Migration
Peter Xu2bace552023-10-03 10:38:47 -04003411M: Peter Xu <peterx@redhat.com>
3412M: Fabiano Rosas <farosas@suse.de>
Juan Quintelac0787c82014-10-15 10:34:50 +02003413S: Maintained
Marc-André Lureau107b5962019-08-28 16:00:19 +04003414F: hw/core/vmstate-if.c
3415F: include/hw/vmstate-if.h
Juan Quintelac0787c82014-10-15 10:34:50 +02003416F: include/migration/
Markus Armbrusterb8628882023-01-19 10:15:44 +01003417F: include/qemu/userfaultfd.h
Dr. David Alan Gilbert44a1f942014-12-12 11:13:42 +00003418F: migration/
Amit Shahc5515642014-11-18 18:01:25 +05303419F: scripts/vmstate-static-checker.py
3420F: tests/vmstate-static-checker-data/
Thomas Huth1e8a1fa2019-09-09 12:04:01 +02003421F: tests/qtest/migration-test.c
Markus Armbrusterc468e362018-08-10 13:55:53 +02003422F: docs/devel/migration.rst
Markus Armbruster48685a82017-08-24 21:14:01 +02003423F: qapi/migration.json
Hyman Huang(黄勇)fac87d42021-03-19 16:07:57 +08003424F: tests/migration/
Markus Armbrusterb8628882023-01-19 10:15:44 +01003425F: util/userfaultfd.c
Peter Xu8ebcb4b2023-09-25 09:34:41 -04003426X: migration/rdma*
3427
3428RDMA Migration
Peter Xu8ebcb4b2023-09-25 09:34:41 -04003429R: Li Zhijian <lizhijian@fujitsu.com>
3430R: Peter Xu <peterx@redhat.com>
Peter Xu8ebcb4b2023-09-25 09:34:41 -04003431S: Odd Fixes
3432F: migration/rdma*
Juan Quintelac0787c82014-10-15 10:34:50 +02003433
Hyman Huang(黄勇)2b3edd92023-07-27 02:10:09 +08003434Migration dirty limit and dirty page rate
3435M: Hyman Huang <yong.huang@smartx.com>
3436S: Maintained
Philippe Mathieu-Daudé8d7f2e72023-10-04 11:06:28 +02003437F: system/dirtylimit.c
Hyman Huang(黄勇)2b3edd92023-07-27 02:10:09 +08003438F: include/sysemu/dirtylimit.h
3439F: migration/dirtyrate.c
3440F: migration/dirtyrate.h
3441F: include/sysemu/dirtyrate.h
3442
Hyman Huangd87b2582024-01-30 13:37:25 +08003443Detached LUKS header
3444M: Hyman Huang <yong.huang@smartx.com>
3445S: Maintained
3446F: tests/qemu-iotests/tests/luks-detached-header
3447
Marc-André Lureaua5669072019-09-12 16:03:32 +04003448D-Bus
3449M: Marc-André Lureau <marcandre.lureau@redhat.com>
3450S: Maintained
Marc-André Lureau5010cec2019-12-16 11:48:53 +04003451F: backends/dbus-vmstate.c
Marc-André Lureau89f4df92021-10-10 00:30:30 +04003452F: ui/dbus*
3453F: audio/dbus*
Marc-André Lureaua5021d62019-09-27 12:16:54 +04003454F: util/dbus.c
Marc-André Lureau89f4df92021-10-10 00:30:30 +04003455F: include/ui/dbus*
Marc-André Lureaua5021d62019-09-27 12:16:54 +04003456F: include/qemu/dbus.h
Marc-André Lureau89f4df92021-10-10 00:30:30 +04003457F: docs/interop/dbus*
3458F: docs/sphinx/dbus*
3459F: docs/sphinx/fakedbusdoc.py
3460F: tests/qtest/dbus*
Marc-André Lureau9b286e72023-06-06 15:56:41 +04003461F: scripts/xml-preprocess*
Marc-André Lureaua5669072019-09-12 16:03:32 +04003462
Eduardo Otubo92bfedb2013-09-09 14:04:15 -03003463Seccomp
Daniel P. Berrangée3160de2022-02-03 10:49:28 +00003464M: Daniel P. Berrange <berrange@redhat.com>
3465S: Odd Fixes
Philippe Mathieu-Daudé8d7f2e72023-10-04 11:06:28 +02003466F: system/qemu-seccomp.c
Eduardo Otubo92bfedb2013-09-09 14:04:15 -03003467F: include/sysemu/seccomp.h
Daniel P. Berrangéd2ea8da2021-07-29 13:15:43 +01003468F: tests/unit/test-seccomp.c
Eduardo Otubo92bfedb2013-09-09 14:04:15 -03003469
Daniel P. Berrangeddbb0d02015-07-01 18:10:29 +01003470Cryptography
3471M: Daniel P. Berrange <berrange@redhat.com>
3472S: Maintained
3473F: crypto/
3474F: include/crypto/
Richard Henderson6b0a96c2023-06-01 21:57:10 -07003475F: host/include/*/host/crypto/
Markus Armbruster92a3c6a2020-11-02 09:15:49 +01003476F: qapi/crypto.json
Thomas Huthda668aa2021-03-10 07:33:14 +01003477F: tests/unit/test-crypto-*
Thomas Huth3b472e72021-03-12 10:22:38 +01003478F: tests/bench/benchmark-crypto-*
Thomas Huthda668aa2021-03-10 07:33:14 +01003479F: tests/unit/crypto-tls-*
3480F: tests/unit/pkix_asn1_tab.c
Daniel P. Berrange899833c2017-03-16 11:18:46 +00003481F: qemu.sasl
Daniel P. Berrangeddbb0d02015-07-01 18:10:29 +01003482
Daniel P. Berrange10817bf2015-09-01 14:48:02 +01003483Coroutines
3484M: Stefan Hajnoczi <stefanha@redhat.com>
3485M: Kevin Wolf <kwolf@redhat.com>
Stefan Hajnoczi00a25292019-03-01 16:35:18 +00003486S: Maintained
Daniel P. Berrange10817bf2015-09-01 14:48:02 +01003487F: util/*coroutine*
3488F: include/qemu/coroutine*
Thomas Huthda668aa2021-03-10 07:33:14 +01003489F: tests/unit/test-coroutine.c
Daniel P. Berrange10817bf2015-09-01 14:48:02 +01003490
Daniel P. Berrange88c5f202015-03-03 17:13:42 +00003491Buffers
3492M: Daniel P. Berrange <berrange@redhat.com>
John Snow4251dfb2020-10-30 11:34:16 -04003493S: Odd Fixes
Daniel P. Berrange88c5f202015-03-03 17:13:42 +00003494F: util/buffer.c
3495F: include/qemu/buffer.h
3496
Daniel P. Berrange666a3af2015-02-27 16:19:33 +00003497I/O Channels
3498M: Daniel P. Berrange <berrange@redhat.com>
3499S: Maintained
3500F: io/
3501F: include/io/
Thomas Huthda668aa2021-03-10 07:33:14 +01003502F: tests/unit/test-io-*
Daniel P. Berrange666a3af2015-02-27 16:19:33 +00003503
Daniel P. Berrange5b76dd12015-10-21 13:16:21 +01003504User authorization
3505M: Daniel P. Berrange <berrange@redhat.com>
3506S: Maintained
3507F: authz/
Daniel P. Berrangec8c99882015-10-21 14:54:59 +01003508F: qapi/authz.json
Daniel P. Berrange5b76dd12015-10-21 13:16:21 +01003509F: include/authz/
Thomas Huthda668aa2021-03-10 07:33:14 +01003510F: tests/unit/test-authz-*
Daniel P. Berrange5b76dd12015-10-21 13:16:21 +01003511
Gerd Hoffmann5614a282016-01-18 16:03:23 +01003512Sockets
3513M: Daniel P. Berrange <berrange@redhat.com>
Gerd Hoffmann5614a282016-01-18 16:03:23 +01003514S: Maintained
3515F: include/qemu/sockets.h
3516F: util/qemu-sockets.c
Markus Armbrustera2ff5a42017-08-24 21:13:56 +02003517F: qapi/sockets.json
Gerd Hoffmann5614a282016-01-18 16:03:23 +01003518
Daniel P. Berrangé90e33df2018-06-08 17:24:57 +01003519File monitor
3520M: Daniel P. Berrange <berrange@redhat.com>
John Snow4251dfb2020-10-30 11:34:16 -04003521S: Odd Fixes
Daniel P. Berrangé90e33df2018-06-08 17:24:57 +01003522F: util/filemonitor*.c
3523F: include/qemu/filemonitor.h
Thomas Huthda668aa2021-03-10 07:33:14 +01003524F: tests/unit/test-util-filemonitor.c
Daniel P. Berrangé90e33df2018-06-08 17:24:57 +01003525
Alberto Garciad310d852016-02-18 12:27:10 +02003526Throttling infrastructure
3527M: Alberto Garcia <berto@igalia.com>
3528S: Supported
3529F: block/throttle-groups.c
3530F: include/block/throttle-groups.h
Philippe Mathieu-Daudé89603932017-09-08 14:36:27 -03003531F: include/qemu/throttle*.h
Alberto Garciad310d852016-02-18 12:27:10 +02003532F: util/throttle.c
Philippe Mathieu-Daudé89603932017-09-08 14:36:27 -03003533F: docs/throttle.txt
Thomas Huthda668aa2021-03-10 07:33:14 +01003534F: tests/unit/test-throttle.c
Alberto Garciad310d852016-02-18 12:27:10 +02003535L: qemu-block@nongnu.org
3536
Fam Zheng080d7aa2016-09-21 12:27:25 +08003537UUID
Fam Zhengfe5ca462018-11-21 23:30:36 +08003538M: Fam Zheng <fam@euphon.net>
Fam Zheng080d7aa2016-09-21 12:27:25 +08003539S: Supported
3540F: util/uuid.c
3541F: include/qemu/uuid.h
Thomas Huthda668aa2021-03-10 07:33:14 +01003542F: tests/unit/test-uuid.c
Fam Zheng080d7aa2016-09-21 12:27:25 +08003543
Lukas Straub50186052020-12-28 16:08:41 +01003544Yank feature
3545M: Lukas Straub <lukasstraub2@web.de>
3546S: Odd fixes
3547F: util/yank.c
Lukas Straub1a92d6d2021-03-23 18:52:42 +01003548F: migration/yank_functions*
Lukas Straubd3a0bb72021-03-30 20:13:35 +02003549F: tests/unit/test-yank.c
Lukas Straub50186052020-12-28 16:08:41 +01003550F: include/qemu/yank.h
3551F: qapi/yank.json
3552
zhanghailianga4cc3182016-10-27 14:43:09 +08003553COLO Framework
Hailiang Zhang2ac7d742021-12-14 15:54:24 +08003554M: Hailiang Zhang <zhanghailiang@xfusion.com>
zhanghailianga4cc3182016-10-27 14:43:09 +08003555S: Maintained
3556F: migration/colo*
3557F: include/migration/colo.h
3558F: include/migration/failover.h
3559F: docs/COLO-FT.txt
3560
Zhang Chen88f82ed2016-09-27 10:22:35 +08003561COLO Proxy
Zhang Chenc6bf50f2019-03-15 14:12:58 +08003562M: Zhang Chen <chen.zhang@intel.com>
Li Zhijian2ece6e62021-12-31 13:09:01 +08003563M: Li Zhijian <lizhijian@fujitsu.com>
Zhang Chen88f82ed2016-09-27 10:22:35 +08003564S: Supported
3565F: docs/colo-proxy.txt
3566F: net/colo*
3567F: net/filter-rewriter.c
3568F: net/filter-mirror.c
Zhang Chen487cf3f2021-12-21 16:04:00 +08003569F: tests/qtest/test-filter*
Zhang Chen88f82ed2016-09-27 10:22:35 +08003570
Pavel Dovgalyuk62258202017-05-03 14:33:04 +03003571Record/replay
3572M: Pavel Dovgalyuk <pavel.dovgaluk@ispras.ru>
3573R: Paolo Bonzini <pbonzini@redhat.com>
Stefan Hajnoczi70b7fba2017-11-21 12:04:35 +00003574W: https://wiki.qemu.org/Features/record-replay
Pavel Dovgalyuk62258202017-05-03 14:33:04 +03003575S: Supported
3576F: replay/*
3577F: block/blkreplay.c
3578F: net/filter-replay.c
Philippe Mathieu-Daudé5b5968c2022-12-19 18:09:43 +01003579F: include/exec/replay-core.h
Pavel Dovgalyuk62258202017-05-03 14:33:04 +03003580F: include/sysemu/replay.h
Thomas Huth4db546d2022-12-12 18:48:41 +01003581F: docs/devel/replay.rst
3582F: docs/system/replay.rst
Pavel Dovgalyuk62258202017-05-03 14:33:04 +03003583F: stubs/replay.c
Willian Rampazzobbbd9b62021-11-05 12:53:54 -03003584F: tests/avocado/replay_kernel.py
3585F: tests/avocado/replay_linux.py
3586F: tests/avocado/reverse_debugging.py
Pavel Dovgalyuk43d7e1d2020-10-03 20:13:14 +03003587F: qapi/replay.json
Pavel Dovgalyuk62258202017-05-03 14:33:04 +03003588
Peter Xueecf5ee2018-05-18 15:25:16 +08003589IOVA Tree
3590M: Peter Xu <peterx@redhat.com>
3591S: Maintained
3592F: include/qemu/iova-tree.h
3593F: util/iova-tree.c
3594
Viktor Prutyanov5ee547b2018-09-18 12:54:22 +03003595elf2dmp
3596M: Viktor Prutyanov <viktor.prutyanov@phystech.edu>
Akihiko Odakia2de23c2024-03-07 19:20:58 +09003597R: Akihiko Odaki <akihiko.odaki@daynix.com>
Viktor Prutyanov5ee547b2018-09-18 12:54:22 +03003598S: Maintained
3599F: contrib/elf2dmp/
3600
Philippe Mathieu-Daudé39131a42023-02-20 12:02:35 +01003601Overall sensors
3602M: Philippe Mathieu-Daudé <philmd@linaro.org>
3603S: Odd Fixes
3604F: hw/sensor
3605F: include/hw/sensor
3606
Corey Minyard93198b62018-11-13 18:31:27 -06003607I2C and SMBus
3608M: Corey Minyard <cminyard@mvista.com>
3609S: Maintained
3610F: hw/i2c/core.c
3611F: hw/i2c/smbus_slave.c
3612F: hw/i2c/smbus_master.c
3613F: hw/i2c/smbus_eeprom.c
3614F: include/hw/i2c/i2c.h
3615F: include/hw/i2c/smbus_master.h
3616F: include/hw/i2c/smbus_slave.h
3617F: include/hw/i2c/smbus_eeprom.h
3618
Titus Rwantarebf0e0c72022-03-07 12:06:01 -08003619PMBus
3620M: Titus Rwantare <titusr@google.com>
3621S: Maintained
3622F: hw/i2c/pmbus_device.c
3623F: hw/sensor/adm1272.c
Titus Rwantareffcdae62022-03-07 12:06:03 -08003624F: hw/sensor/isl_pmbus_vr.c
Titus Rwantarebf0e0c72022-03-07 12:06:01 -08003625F: hw/sensor/max34451.c
3626F: include/hw/i2c/pmbus_device.h
Titus Rwantareffcdae62022-03-07 12:06:03 -08003627F: include/hw/sensor/isl_pmbus_vr.h
Titus Rwantarebf0e0c72022-03-07 12:06:01 -08003628F: tests/qtest/adm1272-test.c
3629F: tests/qtest/max34451-test.c
Titus Rwantareffcdae62022-03-07 12:06:03 -08003630F: tests/qtest/isl_pmbus_vr-test.c
Titus Rwantarebf0e0c72022-03-07 12:06:01 -08003631
Ninad Palsule649b8ed2024-01-26 04:49:56 -06003632FSI
3633M: Ninad Palsule <ninad@linux.ibm.com>
3634R: Cédric Le Goater <clg@kaod.org>
3635S: Maintained
3636F: hw/fsi/*
3637F: include/hw/fsi/*
3638F: docs/specs/fsi.rst
3639F: tests/qtest/aspeed_fsi-test.c
3640
Philippe Mathieu-Daudéd0d89522020-07-03 20:34:50 +02003641Firmware schema specifications
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02003642M: Philippe Mathieu-Daudé <philmd@linaro.org>
Philippe Mathieu-Daudéd0d89522020-07-03 20:34:50 +02003643R: Daniel P. Berrange <berrange@redhat.com>
3644R: Kashyap Chamarthy <kchamart@redhat.com>
3645S: Maintained
3646F: docs/interop/firmware.json
3647
Laszlo Ersek6739df32019-03-13 13:40:07 +01003648EDK2 Firmware
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02003649M: Philippe Mathieu-Daudé <philmd@linaro.org>
Gerd Hoffmann9b437cd2022-03-08 13:36:00 +01003650M: Gerd Hoffmann <kraxel@redhat.com>
Laszlo Ersek6739df32019-03-13 13:40:07 +01003651S: Supported
Philippe Mathieu-Daudéb5b31862021-05-21 15:34:07 +02003652F: hw/i386/*ovmf*
Laszlo Ersek6739df32019-03-13 13:40:07 +01003653F: pc-bios/descriptors/??-edk2-*.json
3654F: pc-bios/edk2-*
3655F: roms/Makefile.edk2
3656F: roms/edk2
3657F: roms/edk2-*
3658F: tests/data/uefi-boot-images/
3659F: tests/uefi-test-tools/
3660
Peter Xu8bc43f32020-07-01 08:44:18 -04003661VT-d Emulation
3662M: Michael S. Tsirkin <mst@redhat.com>
Peter Xu8bc43f32020-07-01 08:44:18 -04003663R: Jason Wang <jasowang@redhat.com>
3664S: Supported
3665F: hw/i386/intel_iommu.c
3666F: hw/i386/intel_iommu_internal.h
3667F: include/hw/i386/intel_iommu.h
3668
Philippe Mathieu-Daudé2f5a2b32023-03-13 16:30:26 +01003669AMD-Vi Emulation
3670S: Orphan
3671F: hw/i386/amd_iommu.?
3672
Bin Menge92fb012020-06-26 06:13:40 -07003673OpenSBI Firmware
3674M: Bin Meng <bmeng.cn@gmail.com>
3675S: Supported
3676F: pc-bios/opensbi-*
3677F: .gitlab-ci.d/opensbi.yml
3678F: .gitlab-ci.d/opensbi/
3679
Luc Michel59c7a182021-02-11 09:53:18 +01003680Clock framework
3681M: Luc Michel <luc@lmichel.fr>
Damien Hedde1d7e6722023-02-13 10:53:06 +00003682R: Damien Hedde <damien.hedde@dahe.fr>
Luc Michel59c7a182021-02-11 09:53:18 +01003683S: Maintained
3684F: include/hw/clock.h
3685F: include/hw/qdev-clock.h
3686F: hw/core/clock.c
3687F: hw/core/clock-vmstate.c
3688F: hw/core/qdev-clock.c
3689F: docs/devel/clocks.rst
3690
Peter Maydell4c046ce2024-02-20 16:06:18 +00003691Reset framework
3692M: Peter Maydell <peter.maydell@linaro.org>
3693S: Maintained
3694F: include/hw/resettable.h
3695F: include/hw/core/resetcontainer.h
3696F: include/sysemu/reset.h
3697F: hw/core/reset.c
3698F: hw/core/resettable.c
3699F: hw/core/resetcontainer.c
3700
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05003701Usermode Emulation
3702------------------
Markus Armbruster6347e1f2019-06-06 19:24:07 +02003703Overall usermode emulation
Paolo Bonzini486bbe52014-10-22 00:18:01 +02003704M: Riku Voipio <riku.voipio@iki.fi>
3705S: Maintained
Philippe Mathieu-Daudé58410662017-09-11 18:33:25 -03003706F: accel/tcg/user-exec*.c
Richard Hendersonbbf15aa2021-11-17 16:14:00 +01003707F: include/user/
3708F: common-user/
Paolo Bonzini486bbe52014-10-22 00:18:01 +02003709
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05003710BSD user
Warner Losh65a9d382021-03-08 15:40:23 -07003711M: Warner Losh <imp@bsdimp.com>
3712R: Kyle Evans <kevans@freebsd.org>
3713S: Maintained
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05003714F: bsd-user/
Alex Bennée812b31d2021-07-07 14:17:43 +01003715F: configs/targets/*-bsd-user.mak
Warner Loshadbae402022-01-09 11:50:24 -07003716F: tests/vm/*bsd
Warner Losh65a9d382021-03-08 15:40:23 -07003717T: git https://github.com/qemu-bsd-user/qemu-bsd-user bsd-user-rebase-3.1
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05003718
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05003719Linux user
Riku Voipio8f902c52020-07-02 14:16:36 +03003720M: Laurent Vivier <laurent@vivier.eu>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05003721S: Maintained
3722F: linux-user/
Alex Bennée812b31d2021-07-07 14:17:43 +01003723F: configs/targets/*linux-user.mak
Thomas Huthe5dd9872018-01-02 17:25:26 +01003724F: scripts/qemu-binfmt-conf.sh
Laurent Viviere3a6c822020-03-10 11:34:00 +01003725F: scripts/update-syscalltbl.sh
Laurent Vivier57333332020-03-10 11:34:03 +01003726F: scripts/update-mips-syscall-args.sh
Laurent Vivier382ae672020-03-16 09:56:17 +01003727F: scripts/gensyscalls.sh
Aurelien Jarno42f5a7e2011-01-14 20:39:19 +01003728
3729Tiny Code Generator (TCG)
3730-------------------------
Markus Armbruster6347e1f2019-06-06 19:24:07 +02003731Common TCG code
Richard Henderson336f7442020-11-12 20:35:43 -08003732M: Richard Henderson <richard.henderson@linaro.org>
Aurelien Jarno42f5a7e2011-01-14 20:39:19 +01003733S: Maintained
3734F: tcg/
Philippe Mathieu-Daudéd3582cf2020-01-01 12:23:02 +01003735F: include/tcg/
Aurelien Jarno42f5a7e2011-01-14 20:39:19 +01003736
Alex Bennée22b58672019-10-17 14:25:23 +01003737TCG Plugins
3738M: Alex Bennée <alex.bennee@linaro.org>
Alexandre Iooss3d7caf12021-07-09 15:29:59 +01003739R: Alexandre Iooss <erdnaxe@crans.org>
Mahmoud Mandoura6b95a92021-07-09 15:30:05 +01003740R: Mahmoud Mandour <ma.mandourr@gmail.com>
Pierrick Bouvier1a8081d2024-01-18 07:23:58 +04003741R: Pierrick Bouvier <pierrick.bouvier@linaro.org>
Alex Bennée22b58672019-10-17 14:25:23 +01003742S: Maintained
Alex Bennée8ea6abf2019-11-12 16:28:53 +00003743F: docs/devel/tcg-plugins.rst
Alex Bennée22b58672019-10-17 14:25:23 +01003744F: plugins/
Alex Bennéec17a3862020-09-09 12:27:41 +01003745F: tests/plugin/
Willian Rampazzobbbd9b62021-11-05 12:53:54 -03003746F: tests/avocado/tcg_plugins.py
Alex Bennéec17a3862020-09-09 12:27:41 +01003747F: contrib/plugins/
Alex Bennée22b58672019-10-17 14:25:23 +01003748
Markus Armbruster6347e1f2019-06-06 19:24:07 +02003749AArch64 TCG target
Richard Henderson3e5a01e2020-01-06 16:30:37 +10003750M: Richard Henderson <richard.henderson@linaro.org>
Claudio Fontanab25a4642013-06-12 16:20:24 +01003751S: Maintained
Peter Maydellb4f2bd12015-11-03 13:49:42 +00003752L: qemu-arm@nongnu.org
Claudio Fontanab25a4642013-06-12 16:20:24 +01003753F: tcg/aarch64/
3754
Markus Armbruster6347e1f2019-06-06 19:24:07 +02003755ARM TCG target
Peter Maydell7c6ef612021-07-22 19:09:51 +01003756M: Richard Henderson <richard.henderson@linaro.org>
Aurelien Jarno42f5a7e2011-01-14 20:39:19 +01003757S: Maintained
Peter Maydellb4f2bd12015-11-03 13:49:42 +00003758L: qemu-arm@nongnu.org
Aurelien Jarno42f5a7e2011-01-14 20:39:19 +01003759F: tcg/arm/
3760
Markus Armbruster6347e1f2019-06-06 19:24:07 +02003761i386 TCG target
Richard Henderson336f7442020-11-12 20:35:43 -08003762M: Richard Henderson <richard.henderson@linaro.org>
Aurelien Jarno42f5a7e2011-01-14 20:39:19 +01003763S: Maintained
3764F: tcg/i386/
3765
WANG Xueruiafa33252021-12-21 13:40:36 +08003766LoongArch64 TCG target
3767M: WANG Xuerui <git@xen0n.name>
3768S: Maintained
3769F: tcg/loongarch64/
3770
Markus Armbruster6347e1f2019-06-06 19:24:07 +02003771MIPS TCG target
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02003772M: Philippe Mathieu-Daudé <philmd@linaro.org>
Aleksandar Markovic099d5102020-03-13 02:00:50 +01003773R: Aurelien Jarno <aurelien@aurel32.net>
Huacai Chendab1e1e2020-12-05 17:22:01 +08003774R: Huacai Chen <chenhuacai@kernel.org>
Aleksandar Markovic15d983d2020-07-01 20:25:58 +02003775R: Jiaxun Yang <jiaxun.yang@flygoat.com>
Aleksandar Markovic97d89742020-05-18 22:09:16 +02003776R: Aleksandar Rikalo <aleksandar.rikalo@syrmia.com>
Philippe Mathieu-Daudécf960312020-10-09 17:05:13 +02003777S: Odd Fixes
Aurelien Jarno42f5a7e2011-01-14 20:39:19 +01003778F: tcg/mips/
3779
Markus Armbruster6347e1f2019-06-06 19:24:07 +02003780PPC TCG target
Richard Henderson336f7442020-11-12 20:35:43 -08003781M: Richard Henderson <richard.henderson@linaro.org>
Pranith Kumar15610d42016-10-18 10:21:00 -07003782S: Odd Fixes
Aurelien Jarno42f5a7e2011-01-14 20:39:19 +01003783F: tcg/ppc/
Aurelien Jarno42f5a7e2011-01-14 20:39:19 +01003784
Markus Armbruster6347e1f2019-06-06 19:24:07 +02003785RISC-V TCG target
Palmer Dabbeltc1677bc2019-10-29 09:39:03 -07003786M: Palmer Dabbelt <palmer@dabbelt.com>
Alistair Francisfb1f70f2018-12-19 19:17:07 +00003787M: Alistair Francis <Alistair.Francis@wdc.com>
3788L: qemu-riscv@nongnu.org
3789S: Maintained
3790F: tcg/riscv/
Thomas Huth5d0ce902023-09-29 14:37:27 +02003791F: disas/riscv.[ch]
Alistair Francisfb1f70f2018-12-19 19:17:07 +00003792
Markus Armbruster6347e1f2019-06-06 19:24:07 +02003793S390 TCG target
Richard Henderson336f7442020-11-12 20:35:43 -08003794M: Richard Henderson <richard.henderson@linaro.org>
Aurelien Jarno42f5a7e2011-01-14 20:39:19 +01003795S: Maintained
3796F: tcg/s390/
Cornelia Huck146bd282017-10-05 17:05:23 +02003797L: qemu-s390x@nongnu.org
Aurelien Jarno42f5a7e2011-01-14 20:39:19 +01003798
Markus Armbruster6347e1f2019-06-06 19:24:07 +02003799SPARC TCG target
Markus Armbruster297e8002016-06-20 16:19:25 +02003800S: Odd Fixes
Richard Henderson6d0b52e2022-10-17 08:00:57 +03003801F: tcg/sparc64/
Paolo Bonzinic17652e2015-09-22 11:36:16 +02003802F: disas/sparc.c
Stefan Weilbc75c9e2011-11-24 23:20:43 +01003803
Markus Armbruster6347e1f2019-06-06 19:24:07 +02003804TCI TCG target
Stefan Weilbc75c9e2011-11-24 23:20:43 +01003805M: Stefan Weil <sw@weilnetz.de>
3806S: Maintained
Andreas Färber8ef9cd52012-04-13 17:22:03 +02003807F: tcg/tci/
Philippe Mathieu-Daudé752a2ae2017-06-29 12:03:07 -03003808F: tcg/tci.c
Paolo Bonzinic17652e2015-09-22 11:36:16 +02003809F: disas/tci.c
Andreas Färberaa09c952012-04-13 17:52:27 +02003810
Stefan Hajnoczif05b3282013-11-13 10:33:10 +01003811Block drivers
3812-------------
3813VMDK
Fam Zhengfe5ca462018-11-21 23:30:36 +08003814M: Fam Zheng <fam@euphon.net>
Kevin Wolfc95e4c02015-04-30 15:15:13 +02003815L: qemu-block@nongnu.org
Stefan Hajnoczif05b3282013-11-13 10:33:10 +01003816S: Supported
3817F: block/vmdk.c
3818
3819RBD
Ilya Dryomov07255702021-05-19 13:25:13 +02003820M: Ilya Dryomov <idryomov@gmail.com>
Peter Lieven6d2f38e2021-07-07 20:04:49 +02003821R: Peter Lieven <pl@kamp.de>
Jeff Cody280458a2015-03-06 12:16:06 -05003822L: qemu-block@nongnu.org
Stefan Hajnoczif05b3282013-11-13 10:33:10 +01003823S: Supported
3824F: block/rbd.c
3825
Stefan Hajnoczif05b3282013-11-13 10:33:10 +01003826VHDX
Jeff Cody5f5246b2018-09-26 14:05:33 -04003827M: Jeff Cody <codyprime@gmail.com>
Jeff Cody280458a2015-03-06 12:16:06 -05003828L: qemu-block@nongnu.org
Stefan Hajnoczif05b3282013-11-13 10:33:10 +01003829S: Supported
3830F: block/vhdx*
3831
3832VDI
3833M: Stefan Weil <sw@weilnetz.de>
Kevin Wolfc95e4c02015-04-30 15:15:13 +02003834L: qemu-block@nongnu.org
Stefan Hajnoczif05b3282013-11-13 10:33:10 +01003835S: Maintained
3836F: block/vdi.c
3837
Stefan Hajnoczifd66dbd2022-10-13 14:58:57 -04003838blkio
3839M: Stefan Hajnoczi <stefanha@redhat.com>
3840L: qemu-block@nongnu.org
3841S: Maintained
3842F: block/blkio.c
3843
Stefan Hajnoczif05b3282013-11-13 10:33:10 +01003844iSCSI
3845M: Ronnie Sahlberg <ronniesahlberg@gmail.com>
3846M: Paolo Bonzini <pbonzini@redhat.com>
3847M: Peter Lieven <pl@kamp.de>
Kevin Wolfc95e4c02015-04-30 15:15:13 +02003848L: qemu-block@nongnu.org
Paolo Bonzini2185fd62018-10-19 14:25:42 +02003849S: Odd Fixes
Stefan Hajnoczif05b3282013-11-13 10:33:10 +01003850F: block/iscsi.c
Peter Lieven2deb63c2017-01-24 13:49:21 +01003851F: block/iscsi-opts.c
Stefan Hajnoczif05b3282013-11-13 10:33:10 +01003852
Eric Blake99c62e72017-07-07 13:21:51 -05003853Network Block Device (NBD)
3854M: Eric Blake <eblake@redhat.com>
Vladimir Sementsov-Ogievskiy9e4067b2022-05-26 14:54:32 +03003855M: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
Eric Blake99c62e72017-07-07 13:21:51 -05003856L: qemu-block@nongnu.org
3857S: Maintained
3858F: block/nbd*
3859F: nbd/
3860F: include/block/nbd*
3861F: qemu-nbd.*
3862F: blockdev-nbd.c
Vladimir Sementsov-Ogievskiy3229a832018-06-09 18:17:58 +03003863F: docs/interop/nbd.txt
Wainer dos Santos Moschetta33b2b382021-02-04 10:54:25 -03003864F: docs/tools/qemu-nbd.rst
Eric Blake58a6fdc2022-05-11 19:49:24 -05003865F: tests/qemu-iotests/tests/*nbd*
Stefan Hajnocziebe2aad2018-11-08 11:15:28 +00003866T: git https://repo.or.cz/qemu/ericb.git nbd
Vladimir Sementsov-Ogievskiy9e4067b2022-05-26 14:54:32 +03003867T: git https://gitlab.com/vsementsov/qemu.git block
Eric Blake99c62e72017-07-07 13:21:51 -05003868
Peter Lieven6542aa92014-02-03 10:26:13 +01003869NFS
3870M: Peter Lieven <pl@kamp.de>
Jeff Cody280458a2015-03-06 12:16:06 -05003871L: qemu-block@nongnu.org
Peter Lieven6542aa92014-02-03 10:26:13 +01003872S: Maintained
3873F: block/nfs.c
3874
Stefan Hajnoczif05b3282013-11-13 10:33:10 +01003875SSH
3876M: Richard W.M. Jones <rjones@redhat.com>
Jeff Cody280458a2015-03-06 12:16:06 -05003877L: qemu-block@nongnu.org
Stefan Hajnoczif05b3282013-11-13 10:33:10 +01003878S: Supported
3879F: block/ssh.c
Chrysostomos Nanakosc9a12e72014-08-04 17:35:32 +03003880
Jeff Cody280458a2015-03-06 12:16:06 -05003881CURL
Jeff Cody280458a2015-03-06 12:16:06 -05003882L: qemu-block@nongnu.org
Thomas Huth5c6090f2019-05-06 08:18:54 +02003883S: Odd Fixes
Jeff Cody280458a2015-03-06 12:16:06 -05003884F: block/curl.c
Jeff Cody280458a2015-03-06 12:16:06 -05003885
3886GLUSTER
Jeff Cody280458a2015-03-06 12:16:06 -05003887L: qemu-block@nongnu.org
Thomas Huth5c6090f2019-05-06 08:18:54 +02003888L: integration@gluster.org
3889S: Odd Fixes
Jeff Cody280458a2015-03-06 12:16:06 -05003890F: block/gluster.c
Gongleib5e94762014-10-22 11:07:57 +08003891
Fam Zheng199667a2015-04-01 09:45:40 +08003892Null Block Driver
Fam Zhengfe5ca462018-11-21 23:30:36 +08003893M: Fam Zheng <fam@euphon.net>
Fam Zheng199667a2015-04-01 09:45:40 +08003894L: qemu-block@nongnu.org
3895S: Supported
3896F: block/null.c
3897
Fam Zhengbdd6a902018-01-16 14:08:55 +08003898NVMe Block Driver
Stefan Hajnoczi1a949782020-09-07 12:16:32 +01003899M: Stefan Hajnoczi <stefanha@redhat.com>
3900R: Fam Zheng <fam@euphon.net>
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02003901R: Philippe Mathieu-Daudé <philmd@linaro.org>
Fam Zhengbdd6a902018-01-16 14:08:55 +08003902L: qemu-block@nongnu.org
3903S: Supported
3904F: block/nvme*
Philippe Mathieu-Daudédc0b4d92020-07-01 16:06:34 +02003905F: include/block/nvme.h
Stefan Hajnoczi1a949782020-09-07 12:16:32 +01003906T: git https://github.com/stefanha/qemu.git block
Fam Zhengbdd6a902018-01-16 14:08:55 +08003907
Gongleib5e94762014-10-22 11:07:57 +08003908Bootdevice
3909M: Gonglei <arei.gonglei@huawei.com>
3910S: Maintained
Philippe Mathieu-Daudé8d7f2e72023-10-04 11:06:28 +02003911F: system/bootdevice.c
Alberto Garciaecdda9e2015-03-16 18:22:05 +02003912
3913Quorum
3914M: Alberto Garcia <berto@igalia.com>
3915S: Supported
3916F: block/quorum.c
3917L: qemu-block@nongnu.org
Stefan Hajnoczie7c6e632015-04-29 15:13:26 +01003918
Aapo Vienamobfcc2242018-07-03 17:48:48 +03003919blklogwrites
3920M: Ari Sundholm <ari@tuxera.com>
3921L: qemu-block@nongnu.org
3922S: Supported
3923F: block/blklogwrites.c
3924
Stefan Hajnoczie7c6e632015-04-29 15:13:26 +01003925blkverify
3926M: Stefan Hajnoczi <stefanha@redhat.com>
3927L: qemu-block@nongnu.org
3928S: Supported
3929F: block/blkverify.c
3930
3931bochs
3932M: Stefan Hajnoczi <stefanha@redhat.com>
3933L: qemu-block@nongnu.org
3934S: Supported
3935F: block/bochs.c
3936
3937cloop
3938M: Stefan Hajnoczi <stefanha@redhat.com>
3939L: qemu-block@nongnu.org
3940S: Supported
3941F: block/cloop.c
3942
3943dmg
3944M: Stefan Hajnoczi <stefanha@redhat.com>
3945L: qemu-block@nongnu.org
3946S: Supported
3947F: block/dmg.c
3948
3949parallels
3950M: Stefan Hajnoczi <stefanha@redhat.com>
Denis V. Lunevf3073712015-08-21 20:44:16 +03003951M: Denis V. Lunev <den@openvz.org>
Stefan Hajnoczie7c6e632015-04-29 15:13:26 +01003952L: qemu-block@nongnu.org
3953S: Supported
3954F: block/parallels.c
Vladimir Sementsov-Ogievskiya960c4b2021-03-04 12:51:51 +03003955F: block/parallels-ext.c
Philippe Mathieu-Daudé5746c1c2017-09-08 14:36:32 -03003956F: docs/interop/parallels.txt
Denis V. Lunevbb20ec62022-08-23 10:27:00 +02003957T: git https://src.openvz.org/scm/~den/qemu.git parallels
Stefan Hajnoczie7c6e632015-04-29 15:13:26 +01003958
3959qed
3960M: Stefan Hajnoczi <stefanha@redhat.com>
3961L: qemu-block@nongnu.org
3962S: Supported
3963F: block/qed.c
3964
3965raw
3966M: Kevin Wolf <kwolf@redhat.com>
3967L: qemu-block@nongnu.org
3968S: Supported
3969F: block/linux-aio.c
Markus Armbrusterf586d5f2016-09-05 14:28:52 +02003970F: include/block/raw-aio.h
Eric Blake2e6fc7e2016-12-02 13:48:53 -06003971F: block/raw-format.c
Eric Blakec1bb86c2016-12-02 13:48:54 -06003972F: block/file-posix.c
3973F: block/file-win32.c
Stefan Hajnoczie7c6e632015-04-29 15:13:26 +01003974F: block/win32-aio.c
3975
Aarushi Mehta6663a0a2020-01-20 14:18:47 +00003976Linux io_uring
3977M: Aarushi Mehta <mehta.aaru20@gmail.com>
3978M: Julia Suvorova <jusual@redhat.com>
3979M: Stefan Hajnoczi <stefanha@redhat.com>
Stefano Garzarella0ef28012021-07-28 15:15:15 +02003980R: Stefano Garzarella <sgarzare@redhat.com>
Aarushi Mehta6663a0a2020-01-20 14:18:47 +00003981L: qemu-block@nongnu.org
3982S: Maintained
3983F: block/io_uring.c
Aarushi Mehta06a47ef2020-01-20 14:18:48 +00003984F: stubs/io_uring.c
Aarushi Mehta6663a0a2020-01-20 14:18:47 +00003985
Stefan Hajnoczie7c6e632015-04-29 15:13:26 +01003986qcow2
3987M: Kevin Wolf <kwolf@redhat.com>
Hanna Reitzb0c47982021-08-10 16:04:11 +02003988M: Hanna Reitz <hreitz@redhat.com>
Stefan Hajnoczie7c6e632015-04-29 15:13:26 +01003989L: qemu-block@nongnu.org
3990S: Supported
3991F: block/qcow2*
Philippe Mathieu-Daudéb24f9882017-09-08 14:36:23 -03003992F: docs/interop/qcow2.txt
Stefan Hajnoczie7c6e632015-04-29 15:13:26 +01003993
3994qcow
3995M: Kevin Wolf <kwolf@redhat.com>
3996L: qemu-block@nongnu.org
3997S: Supported
3998F: block/qcow.c
3999
4000blkdebug
4001M: Kevin Wolf <kwolf@redhat.com>
Hanna Reitzb0c47982021-08-10 16:04:11 +02004002M: Hanna Reitz <hreitz@redhat.com>
Stefan Hajnoczie7c6e632015-04-29 15:13:26 +01004003L: qemu-block@nongnu.org
4004S: Supported
4005F: block/blkdebug.c
4006
4007vpc
4008M: Kevin Wolf <kwolf@redhat.com>
4009L: qemu-block@nongnu.org
4010S: Supported
4011F: block/vpc.c
4012
4013vvfat
4014M: Kevin Wolf <kwolf@redhat.com>
4015L: qemu-block@nongnu.org
Prasad J Pandit4b7c5bc2020-07-11 00:34:51 +05304016S: Odd Fixes
Stefan Hajnoczie7c6e632015-04-29 15:13:26 +01004017F: block/vvfat.c
Stefan Hajnocziabfe4e92015-04-29 15:13:28 +01004018
4019Image format fuzzer
4020M: Stefan Hajnoczi <stefanha@redhat.com>
4021L: qemu-block@nongnu.org
4022S: Supported
4023F: tests/image-fuzzer/
Daniel P. Berrange717171b2015-09-24 14:41:38 +01004024
Coiby Xu8675a372020-09-18 16:09:12 +08004025Vhost-user block device backend server
4026M: Coiby Xu <Coiby.Xu@gmail.com>
4027S: Maintained
4028F: block/export/vhost-user-blk-server.c
Stefan Hajnoczi80a06cc2020-09-24 16:15:48 +01004029F: block/export/vhost-user-blk-server.h
Xie Yongji5c368022022-05-23 16:46:06 +08004030F: block/export/virtio-blk-handler.c
4031F: block/export/virtio-blk-handler.h
Stefan Hajnoczi80a06cc2020-09-24 16:15:48 +01004032F: include/qemu/vhost-user-server.h
Coiby Xu8675a372020-09-18 16:09:12 +08004033F: tests/qtest/libqos/vhost-user-blk.c
Coiby Xu80695202021-03-22 09:23:25 +00004034F: tests/qtest/libqos/vhost-user-blk.h
4035F: tests/qtest/vhost-user-blk-test.c
Stefan Hajnoczi80a06cc2020-09-24 16:15:48 +01004036F: util/vhost-user-server.c
Coiby Xu8675a372020-09-18 16:09:12 +08004037
Max Reitz0c9b70d2020-10-27 20:05:42 +01004038FUSE block device exports
Hanna Reitzb0c47982021-08-10 16:04:11 +02004039M: Hanna Reitz <hreitz@redhat.com>
Max Reitz0c9b70d2020-10-27 20:05:42 +01004040L: qemu-block@nongnu.org
4041S: Supported
4042F: block/export/fuse.c
4043
Xie Yongji2a2359b2022-05-23 16:46:09 +08004044VDUSE library and block device exports
Xie Yongjia6caeee2022-05-23 16:46:08 +08004045M: Xie Yongji <xieyongji@bytedance.com>
4046S: Maintained
4047F: subprojects/libvduse/
Xie Yongji2a2359b2022-05-23 16:46:09 +08004048F: block/export/vduse-blk.c
4049F: block/export/vduse-blk.h
Xie Yongjia6caeee2022-05-23 16:46:08 +08004050
Changlong Xie049105a2016-07-27 15:01:53 +08004051Replication
Changlong Xie205f8612017-04-18 11:08:13 +08004052M: Wen Congyang <wencongyang2@huawei.com>
Zhang Chen3ccc0a02017-04-21 15:12:47 +08004053M: Xie Changlong <xiechanglong.d@gmail.com>
Changlong Xie049105a2016-07-27 15:01:53 +08004054S: Supported
4055F: replication*
4056F: block/replication.c
Thomas Huthda668aa2021-03-10 07:33:14 +01004057F: tests/unit/test-replication.c
Changlong Xie049105a2016-07-27 15:01:53 +08004058F: docs/block-replication.txt
4059
Marcel Apfelbauma3defab2017-12-14 17:32:23 +02004060PVRDMA
Yuval Shaiabfffeac2019-11-26 12:26:37 +02004061M: Yuval Shaia <yuval.shaia.ml@gmail.com>
Marcel Apfelbaumfe355cb2018-04-26 11:45:23 +03004062M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
Thomas Huthe9a54262023-09-27 15:30:19 +02004063S: Odd Fixes
Marcel Apfelbauma3defab2017-12-14 17:32:23 +02004064F: hw/rdma/*
4065F: hw/rdma/vmw/*
4066F: docs/pvrdma.txt
Yuval Shaiaa5d2f6f2018-12-21 16:40:15 +02004067F: contrib/rdmacm-mux/*
Yuval Shaia4a5c9902018-12-21 16:40:24 +02004068F: qapi/rdma.json
Marcel Apfelbauma3defab2017-12-14 17:32:23 +02004069
Alex Bennéeb052fec2019-05-13 15:32:56 +01004070Semihosting
4071M: Alex Bennée <alex.bennee@linaro.org>
Alex Bennéeb052fec2019-05-13 15:32:56 +01004072S: Maintained
Philippe Mathieu-Daudé8df9f0c2021-03-05 13:54:50 +00004073F: semihosting/
Philippe Mathieu-Daudé6b5fe132021-03-05 13:54:49 +00004074F: include/semihosting/
Alex Bennée3539d842021-03-23 16:52:51 +00004075F: tests/tcg/multiarch/arm-compat-semi/
Alex Bennéeb904a902022-02-25 17:20:21 +00004076F: tests/tcg/aarch64/system/semiheap.c
Alex Bennéeb052fec2019-05-13 15:32:56 +01004077
John G Johnson8684f1b2021-01-29 11:46:02 -05004078Multi-process QEMU
4079M: Elena Ufimtseva <elena.ufimtseva@oracle.com>
4080M: Jagannathan Raman <jag.raman@oracle.com>
John G Johnson8684f1b2021-01-29 11:46:02 -05004081S: Maintained
4082F: docs/devel/multi-process.rst
Elena Ufimtseva639090d2021-01-29 11:46:03 -05004083F: docs/system/multi-process.rst
Jagannathan Raman6fbd84d2021-01-29 11:46:06 -05004084F: hw/pci-host/remote.c
4085F: include/hw/pci-host/remote.h
Jagannathan Raman3f0e7e52021-01-29 11:46:07 -05004086F: hw/remote/machine.c
4087F: include/hw/remote/machine.h
Elena Ufimtsevaad22c302021-01-29 11:46:10 -05004088F: hw/remote/mpqemu-link.c
4089F: include/hw/remote/mpqemu-link.h
Jagannathan Raman48b06f52021-01-29 11:46:11 -05004090F: hw/remote/message.c
Jagannathan Ramanc7d80c72021-01-29 11:46:12 -05004091F: hw/remote/remote-obj.c
Jagannathan Ramaned5d0012021-01-29 11:46:13 -05004092F: include/hw/remote/memory.h
4093F: hw/remote/memory.c
Elena Ufimtseva9f811202021-01-29 11:46:14 -05004094F: hw/remote/proxy.c
4095F: include/hw/remote/proxy.h
Jagannathan Ramanc746b742021-01-29 11:46:18 -05004096F: hw/remote/proxy-memory-listener.c
4097F: include/hw/remote/proxy-memory-listener.h
Jagannathan Ramanbd36adb2021-01-29 11:46:19 -05004098F: hw/remote/iohub.c
4099F: include/hw/remote/iohub.h
Jagannathan Raman55116962022-06-13 16:26:24 -04004100F: subprojects/libvfio-user
Jagannathan Raman8f9a9252022-06-13 16:26:25 -04004101F: hw/remote/vfio-user-obj.c
Jagannathan Raman08cf3dc2022-06-13 16:26:33 -04004102F: include/hw/remote/vfio-user-obj.h
Jagannathan Raman253007d2022-06-13 16:26:30 -04004103F: hw/remote/iommu.c
4104F: include/hw/remote/iommu.h
John G Johnson8684f1b2021-01-29 11:46:02 -05004105
Andrew Melnychenko90322e62021-05-14 14:48:35 +03004106EBPF:
4107M: Jason Wang <jasowang@redhat.com>
4108R: Andrew Melnychenko <andrew@daynix.com>
4109R: Yuri Benditovich <yuri.benditovich@daynix.com>
4110S: Maintained
Thomas Huth2635f962023-10-17 17:17:40 +02004111F: docs/devel/ebpf_rss.rst
Andrew Melnychenko90322e62021-05-14 14:48:35 +03004112F: ebpf/*
4113F: tools/ebpf/*
4114
Alex Bennéeb9e02c02016-01-31 17:32:39 +00004115Build and test automation
4116-------------------------
Thomas Huth9872ba02021-03-09 12:23:56 +01004117Build and test automation, general continuous integration
Alex Bennéeb9e02c02016-01-31 17:32:39 +00004118M: Alex Bennée <alex.bennee@linaro.org>
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02004119M: Philippe Mathieu-Daudé <philmd@linaro.org>
Thomas Huth9872ba02021-03-09 12:23:56 +01004120M: Thomas Huth <thuth@redhat.com>
4121R: Wainer dos Santos Moschetta <wainersm@redhat.com>
Willian Rampazzo40525be2021-11-29 14:09:30 +00004122R: Beraldo Leal <bleal@redhat.com>
Alex Bennéee70dc7f2017-02-20 10:51:39 +00004123S: Maintained
Yonggang Luoe7c2d742022-03-23 16:07:55 +08004124F: .github/workflows/lockdown.yml
Thomas Huth9872ba02021-03-09 12:23:56 +01004125F: .gitlab-ci.yml
4126F: .gitlab-ci.d/
Alex Bennéeb9e02c02016-01-31 17:32:39 +00004127F: .travis.yml
Thomas Huth145af272023-09-29 15:16:36 +02004128F: docs/devel/ci*
Philippe Mathieu-Daudé04250c62021-02-11 12:27:36 +00004129F: scripts/ci/
Alex Bennéee70dc7f2017-02-20 10:51:39 +00004130F: tests/docker/
Fam Zheng18023822017-09-05 10:11:59 +08004131F: tests/vm/
Philippe Mathieu-Daudé3260f4e2022-02-04 20:43:14 +00004132F: tests/lcitool/
Alex Bennée267fe572023-02-28 19:06:39 +00004133F: tests/avocado/tuxrun_baselines.py
Philippe Mathieu-Daudé54dbfd82019-01-24 02:00:22 +01004134F: scripts/archive-source.sh
Thomas Huth4db546d2022-12-12 18:48:41 +01004135F: docs/devel/testing.rst
Thomas Huth9872ba02021-03-09 12:23:56 +01004136W: https://gitlab.com/qemu-project/qemu/pipelines
Alex Bennéee70dc7f2017-02-20 10:51:39 +00004137W: https://travis-ci.org/qemu/qemu
Daniel P. Berrange717171b2015-09-24 14:41:38 +01004138
Ed Maste7162fbb2019-01-22 17:25:58 +00004139FreeBSD Hosted Continuous Integration
4140M: Ed Maste <emaste@freebsd.org>
4141M: Li-Wen Hsu <lwhsu@freebsd.org>
Ed Maste7162fbb2019-01-22 17:25:58 +00004142S: Maintained
Thomas Huth5be6fd02022-02-17 15:11:38 +01004143F: .gitlab-ci.d/cirrus/freebsd*
4144F: tests/vm/freebsd
Ed Maste7162fbb2019-01-22 17:25:58 +00004145W: https://cirrus-ci.com/github/qemu/qemu
4146
Yonggang Luodaee8de2021-01-07 02:19:17 -08004147Windows Hosted Continuous Integration
4148M: Yonggang Luo <luoyonggang@gmail.com>
4149S: Maintained
Philippe Mathieu-Daudéda80f112023-03-22 14:57:21 +01004150F: .gitlab-ci.d/windows.yml
Yonggang Luodaee8de2021-01-07 02:19:17 -08004151
Alex Bennée7e970172018-04-06 13:32:18 +01004152Guest Test Compilation Support
4153M: Alex Bennée <alex.bennee@linaro.org>
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02004154R: Philippe Mathieu-Daudé <philmd@linaro.org>
Stefan Hajnoczi00a25292019-03-01 16:35:18 +00004155S: Maintained
Alex Bennée162f9162022-10-27 19:36:23 +01004156F: tests/tcg/Makefile.target
Alex Bennée7e970172018-04-06 13:32:18 +01004157
Willian Rampazzobbbd9b62021-11-05 12:53:54 -03004158Integration Testing with the Avocado framework
Philippe Mathieu-Daudé6634f1c2020-01-29 17:45:05 +01004159W: https://trello.com/b/6Qi1pxVn/avocado-qemu
4160R: Cleber Rosa <crosa@redhat.com>
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02004161R: Philippe Mathieu-Daudé <philmd@linaro.org>
Philippe Mathieu-Daudé6634f1c2020-01-29 17:45:05 +01004162R: Wainer dos Santos Moschetta <wainersm@redhat.com>
Willian Rampazzo40525be2021-11-29 14:09:30 +00004163R: Beraldo Leal <bleal@redhat.com>
Philippe Mathieu-Daudé6634f1c2020-01-29 17:45:05 +01004164S: Odd Fixes
Willian Rampazzobbbd9b62021-11-05 12:53:54 -03004165F: tests/avocado/
Philippe Mathieu-Daudé6634f1c2020-01-29 17:45:05 +01004166
Philippe Mathieu-Daudé1e970152021-11-29 14:09:31 +00004167GitLab custom runner (Works On Arm Sponsored)
4168M: Alex Bennée <alex.bennee@linaro.org>
Philippe Mathieu-Daudé8823ef12022-10-17 20:20:05 +02004169M: Philippe Mathieu-Daudé <philmd@linaro.org>
Philippe Mathieu-Daudé1e970152021-11-29 14:09:31 +00004170S: Maintained
Alex Bennée66dca262022-09-14 16:59:40 +01004171F: .gitlab-ci.d/custom-runners/ubuntu-22.04-aarch64.yml
4172F: .gitlab-ci.d/custom-runners/ubuntu-22.04-aarch32.yml
Philippe Mathieu-Daudé1e970152021-11-29 14:09:31 +00004173
Daniel P. Berrange717171b2015-09-24 14:41:38 +01004174Documentation
4175-------------
4176Build system architecture
4177M: Daniel P. Berrange <berrange@redhat.com>
4178S: Odd Fixes
Stefano Garzarella551bdfa2021-05-17 17:17:00 +02004179F: docs/devel/build-system.rst
Fam Zheng8a49e972016-06-01 12:25:28 +08004180
Alex Bennée92329a72019-01-14 15:25:13 +00004181GIT Data Mining Config
4182M: Alex Bennée <alex.bennee@linaro.org>
4183S: Odd Fixes
4184F: gitdm.config
4185F: contrib/gitdm/*
4186
Markus Armbrusterb02c9bc2018-07-16 09:32:26 +02004187Incompatible changes
Daniel P. Berrangéf5c5e7d2023-10-27 10:56:43 +01004188R: devel@lists.libvirt.org
Mao Zhongyia476b212021-07-23 14:58:28 +08004189F: docs/about/deprecated.rst
Markus Armbrusterb02c9bc2018-07-16 09:32:26 +02004190
Daniel P. Berrangeaef45d52017-09-29 11:11:56 +01004191Build System
4192------------
Alex Bennée48fad832022-10-27 19:36:21 +01004193Meson
4194M: Paolo Bonzini <pbonzini@redhat.com>
4195R: Marc-André Lureau <marcandre.lureau@redhat.com>
4196R: Daniel P. Berrange <berrange@redhat.com>
4197R: Thomas Huth <thuth@redhat.com>
4198R: Philippe Mathieu-Daudé <philmd@linaro.org>
4199S: Maintained
4200F: meson.build
4201F: meson_options.txt
4202F: scripts/meson-buildoptions.*
4203F: scripts/check_sparse.py
4204F: scripts/symlink-install-tree.py
4205
4206Top Level Makefile and configure
4207M: Paolo Bonzini <pbonzini@redhat.com>
4208R: Alex Bennée <alex.bennee@linaro.org>
4209R: Thomas Huth <thuth@redhat.com>
4210S: Maintained
4211F: Makefile
4212F: configure
4213F: scripts/mtest2make.py
4214F: tests/Makefile.include
4215
Paolo Bonzini2f38ff792023-05-03 19:29:17 +02004216Kconfig
4217M: Paolo Bonzini <pbonzini@redhat.com>
4218S: Maintained
4219F: scripts/minikconf.py
4220F: docs/devel/kconfig.rst
4221F: Kconfig*
4222F: */Kconfig*
4223F: hw/*/Kconfig*
4224F: target/*/Kconfig*
4225
Daniel P. Berrangeaef45d52017-09-29 11:11:56 +01004226GIT submodules
4227M: Daniel P. Berrange <berrange@redhat.com>
4228S: Odd Fixes
4229F: scripts/git-submodule.sh
Peter Maydellc10e01b2019-03-07 14:26:47 +00004230
Aleksandar Markovicef45a392019-12-10 13:55:15 +01004231UI translations
John Snow4251dfb2020-10-30 11:34:16 -04004232S: Orphan
Aleksandar Markovicef45a392019-12-10 13:55:15 +01004233F: po/*.po
4234
Peter Maydellc10e01b2019-03-07 14:26:47 +00004235Sphinx documentation configuration and build machinery
4236M: Peter Maydell <peter.maydell@linaro.org>
4237S: Maintained
4238F: docs/conf.py
4239F: docs/*/conf.py
Peter Maydell4078ee52020-09-25 17:23:02 +01004240F: docs/sphinx/
Peter Maydell13f934e2021-07-05 10:55:46 +01004241F: docs/_templates/
Peter Maydelld95f2602023-12-12 16:23:13 +00004242F: docs/devel/docs.rst
Aleksandar Markovic53fb8bf2020-06-27 20:13:17 +02004243
4244Miscellaneous
4245-------------
4246Performance Tools and Tests
4247M: Ahmed Karaman <ahmedkhaledkaraman@gmail.com>
4248S: Maintained
4249F: scripts/performance/
Alex Bennée899c3fc2023-04-03 14:49:10 +01004250
4251Code Coverage Tools
4252M: Alex Bennée <alex.bennee@linaro.org>
4253S: Odd Fixes
4254F: scripts/coverage/