blob: ef7c191dbbe575db5a168902db59867ab53b7b6d [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>
Paul E. McKenneyfdf6fab2014-06-02 09:06:37 -070015 R: Designated reviewer: FullName <address@domain>
16 These reviewers should be CCed on patches.
Anthony Liguorifd5d5c52010-09-09 14:51:31 -050017 L: Mailing list that is relevant to this area
18 W: Web-page with status/info
19 Q: Patchwork web based patch tracking system site
20 T: SCM tree type and location. Type is one of: git, hg, quilt, stgit.
21 S: Status, one of the following:
22 Supported: Someone is actually paid to look after this.
23 Maintained: Someone actually looks after it.
24 Odd Fixes: It has a maintainer but they don't have time to do
Peter Maydellc91bbff2011-11-09 19:45:38 +000025 much other than throw the odd patch in. See below.
Anthony Liguorifd5d5c52010-09-09 14:51:31 -050026 Orphan: No current maintainer [but maybe you could take the
27 role as you write your new code].
28 Obsolete: Old code. Something tagged obsolete generally means
29 it has been replaced by a better system and you
30 should be using that.
31 F: Files and directories with wildcard patterns.
32 A trailing slash includes all files and subdirectory files.
33 F: drivers/net/ all files in and below drivers/net
34 F: drivers/net/* all files in drivers/net, but not below
35 F: */net/* all files in "any top level directory"/net
36 One pattern per line. Multiple F: lines acceptable.
37 X: Files and directories that are NOT maintained, same rules as F:
38 Files exclusions are tested before file matches.
39 Can be useful for excluding a specific subdirectory, for instance:
40 F: net/
41 X: net/ipv6/
42 matches all files in and below net excluding net/ipv6/
43 K: Keyword perl extended regex pattern to match content in a
44 patch or file. For instance:
45 K: of_get_profile
46 matches patches or files that contain "of_get_profile"
47 K: \b(printk|pr_(info|err))\b
48 matches patches or files that contain one or more of the words
49 printk, pr_info or pr_err
50 One regex pattern per line. Multiple K: lines acceptable.
bellardb6f97c12008-05-09 09:39:00 +000051
bellardb6f97c12008-05-09 09:39:00 +000052
Anthony Liguorifd5d5c52010-09-09 14:51:31 -050053General Project Administration
54------------------------------
Peter Maydellff0d4872014-10-15 21:30:52 +010055M: Peter Maydell <peter.maydell@linaro.org>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -050056
Stephen Warrenc9a19d52016-02-08 20:04:25 -070057All patches CC here
58L: qemu-devel@nongnu.org
59F: *
60F: */
61
Michael S. Tsirkin62622c12014-04-17 16:45:46 +030062Responsible Disclosure, Reporting Security Issues
63------------------------------
64W: http://wiki.qemu.org/SecurityProcess
65M: Michael S. Tsirkin <mst@redhat.com>
Michael S. Tsirkin62622c12014-04-17 16:45:46 +030066L: secalert@redhat.com
67
Laurent Vivier936c2232016-10-08 12:00:07 +020068Trivial patches
69---------------
70Trivial patches
71M: Michael Tokarev <mjt@tls.msk.ru>
72M: Laurent Vivier <laurent@vivier.eu>
73S: Maintained
74L: qemu-trivial@nongnu.org
75K: ^Subject:.*(?i)trivial
76T: git git://git.corpit.ru/qemu.git trivial-patches
77T: git git://github.com/vivier/qemu.git trivial-patches
78
Anthony Liguorifd5d5c52010-09-09 14:51:31 -050079Guest CPU cores (TCG):
80----------------------
Paolo Bonzini486bbe52014-10-22 00:18:01 +020081Overall
Paolo Bonzini5dd4a882014-10-22 10:53:22 +020082L: qemu-devel@nongnu.org
Paolo Bonzini2b1641d2015-11-13 18:49:54 +010083M: Paolo Bonzini <pbonzini@redhat.com>
84M: Peter Crosthwaite <crosthwaite.peter@gmail.com>
85M: Richard Henderson <rth@twiddle.net>
86S: Maintained
Paolo Bonzini2b1641d2015-11-13 18:49:54 +010087F: cpus.c
Paolo Bonzini2b1641d2015-11-13 18:49:54 +010088F: exec.c
Philippe Mathieu-Daudéc6a88dd2017-06-29 12:03:04 -030089F: accel/tcg/
Paolo Bonzini2b1641d2015-11-13 18:49:54 +010090F: include/exec/cpu*.h
91F: include/exec/exec-all.h
Paolo Bonzini486bbe52014-10-22 00:18:01 +020092F: include/exec/helper*.h
Paolo Bonzini2b1641d2015-11-13 18:49:54 +010093F: include/exec/tb-hash.h
Thomas Huth460423d2016-09-09 23:15:04 +020094F: include/sysemu/cpus.h
Paolo Bonzini486bbe52014-10-22 00:18:01 +020095
Peter Maydell1badb582016-02-19 16:25:01 +000096FPU emulation
97M: Aurelien Jarno <aurelien@aurel32.net>
98M: Peter Maydell <peter.maydell@linaro.org>
99S: Odd Fixes
100F: fpu/
101F: include/fpu/
102
bellardb6f97c12008-05-09 09:39:00 +0000103Alpha
Richard Henderson8d6df262011-05-20 12:23:18 -0700104M: Richard Henderson <rth@twiddle.net>
105S: Maintained
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200106F: target/alpha/
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100107F: hw/alpha/
Paolo Bonzinic0bd0b52014-10-22 00:31:28 +0200108F: tests/tcg/alpha/
Paolo Bonzinic17652e2015-09-22 11:36:16 +0200109F: disas/alpha.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500110
111ARM
Peter Maydell1ce9ce62011-09-20 16:18:46 +0100112M: Peter Maydell <peter.maydell@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000113L: qemu-arm@nongnu.org
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500114S: Maintained
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200115F: target/arm/
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100116F: hw/arm/
117F: hw/cpu/a*mpcore.c
Thomas Huthf7e242d2016-09-23 14:14:18 +0200118F: include/hw/cpu/a*mpcore.h
Paolo Bonzinic17652e2015-09-22 11:36:16 +0200119F: disas/arm.c
120F: disas/arm-a64.cc
121F: disas/libvixl/
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500122
123CRIS
124M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
125S: Maintained
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200126F: target/cris/
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100127F: hw/cris/
Thomas Huthc9b90092016-09-23 18:08:46 +0200128F: include/hw/cris/
Paolo Bonzinic0bd0b52014-10-22 00:31:28 +0200129F: tests/tcg/cris/
Paolo Bonzinic17652e2015-09-22 11:36:16 +0200130F: disas/cris.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500131
Richard Henderson61766fe2016-12-15 11:26:14 -0800132HPPA (PA-RISC)
133M: Richard Henderson <rth@twiddle.net>
134S: Maintained
135F: target/hppa/
136F: disas/hppa.c
137
Michael Walle07bf23a2011-02-17 23:45:18 +0100138LM32
139M: Michael Walle <michael@walle.cc>
140S: Maintained
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200141F: target/lm32/
Michael Walle4eab7a02014-11-02 18:11:11 +0100142F: disas/lm32.c
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100143F: hw/lm32/
Michael Walle4eab7a02014-11-02 18:11:11 +0100144F: hw/*/lm32_*
145F: hw/*/milkymist-*
146F: include/hw/char/lm32_juart.h
147F: include/hw/lm32/
Paolo Bonzinic0bd0b52014-10-22 00:31:28 +0200148F: tests/tcg/lm32/
Michael Walle07bf23a2011-02-17 23:45:18 +0100149
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500150M68K
Laurent Vivier595a9262016-05-06 12:30:29 +0200151M: Laurent Vivier <laurent@vivier.eu>
152S: Maintained
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200153F: target/m68k/
Thomas Huthe9a56112016-11-02 09:39:33 +0100154F: disas/m68k.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500155
Edgar E. Iglesiasabc07542009-05-28 14:00:49 +0200156MicroBlaze
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500157M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
158S: Maintained
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200159F: target/microblaze/
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100160F: hw/microblaze/
Paolo Bonzinic17652e2015-09-22 11:36:16 +0200161F: disas/microblaze.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500162
163MIPS
Aurelien Jarnoddb13562011-01-14 20:39:19 +0100164M: Aurelien Jarno <aurelien@aurel32.net>
Leon Alrae78851fa2016-09-22 14:34:14 +0100165M: Yongbok Kim <yongbok.kim@imgtec.com>
Leon Alrae6f640912014-10-16 12:38:07 +0100166S: Maintained
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200167F: target/mips/
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100168F: hw/mips/
Thomas Huth5995db82016-09-30 09:26:51 +0200169F: hw/misc/mips_*
170F: hw/intc/mips_gic.c
171F: hw/timer/mips_gictimer.c
172F: include/hw/mips/
173F: include/hw/misc/mips_*
174F: include/hw/intc/mips_gic.h
175F: include/hw/timer/mips_gictimer.h
Paolo Bonzinic0bd0b52014-10-22 00:31:28 +0200176F: tests/tcg/mips/
Paolo Bonzinic17652e2015-09-22 11:36:16 +0200177F: disas/mips.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500178
Anthony Greend15a9c22013-03-18 15:49:25 -0400179Moxie
180M: Anthony Green <green@moxielogic.com>
181S: Maintained
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200182F: target/moxie/
Paolo Bonzinic17652e2015-09-22 11:36:16 +0200183F: disas/moxie.c
Thomas Hutha3ccdfb2016-09-22 21:16:33 +0200184F: hw/moxie/
185F: default-configs/moxie-softmmu.mak
Anthony Greend15a9c22013-03-18 15:49:25 -0400186
Marek Vasute6717112017-01-18 23:01:46 +0100187NiosII
188M: Chris Wulff <crwulff@gmail.com>
189M: Marek Vasut <marex@denx.de>
190S: Maintained
191F: target/nios2/
192F: hw/nios2/
193F: disas/nios2.c
194
Jia Liu945dad62013-07-02 20:55:17 +0800195OpenRISC
Stafford Horne1d7cf182017-03-15 22:37:41 +0900196M: Stafford Horne <shorne@gmail.com>
197S: Odd Fixes
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200198F: target/openrisc/
Jia Liu945dad62013-07-02 20:55:17 +0800199F: hw/openrisc/
Paolo Bonzinic0bd0b52014-10-22 00:31:28 +0200200F: tests/tcg/openrisc/
Jia Liu945dad62013-07-02 20:55:17 +0800201
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500202PowerPC
David Gibsonb4daafb2016-05-26 16:14:57 +1000203M: David Gibson <david@gibson.dropbear.id.au>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500204M: Alexander Graf <agraf@suse.de>
Andreas Färbera6c98682012-01-13 13:33:57 +0000205L: qemu-ppc@nongnu.org
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500206S: Maintained
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200207F: target/ppc/
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100208F: hw/ppc/
Thomas Huthb5d55022016-09-05 22:03:36 +0200209F: include/hw/ppc/
Paolo Bonzinic17652e2015-09-22 11:36:16 +0200210F: disas/ppc.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500211
Alexander Graf749717a2009-12-05 12:44:31 +0100212S390
Richard Henderson2b35e932012-12-05 09:23:25 -0600213M: Richard Henderson <rth@twiddle.net>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500214M: Alexander Graf <agraf@suse.de>
215S: Maintained
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200216F: target/s390x/
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100217F: hw/s390x/
Paolo Bonzinic17652e2015-09-22 11:36:16 +0200218F: disas/s390.c
bellardb6f97c12008-05-09 09:39:00 +0000219
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500220SH4
Aurelien Jarnoddb13562011-01-14 20:39:19 +0100221M: Aurelien Jarno <aurelien@aurel32.net>
Andreas Färber2c9b7d12012-04-13 18:33:43 +0200222S: Odd Fixes
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200223F: target/sh4/
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100224F: hw/sh4/
Paolo Bonzinic17652e2015-09-22 11:36:16 +0200225F: disas/sh4.c
Thomas Huth8a90f902016-09-09 23:18:21 +0200226F: include/hw/sh4/
bellardb6f97c12008-05-09 09:39:00 +0000227
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500228SPARC
Mark Cave-Aylandf2416d32015-03-02 22:23:27 +0000229M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Mark Cave-Ayland2c742bf2016-06-20 21:55:16 +0100230M: Artyom Tarasenko <atar4qemu@gmail.com>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500231S: Maintained
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200232F: target/sparc/
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100233F: hw/sparc/
234F: hw/sparc64/
Paolo Bonzinic17652e2015-09-22 11:36:16 +0200235F: disas/sparc.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500236
Andreas Färbera6ea7b42012-03-14 00:45:43 +0100237UniCore32
238M: Guan Xuetao <gxt@mprc.pku.edu.cn>
239S: Maintained
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200240F: target/unicore32/
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100241F: hw/unicore32/
Thomas Huth47b98d52016-09-09 23:16:03 +0200242F: include/hw/unicore32/
Andreas Färbera6ea7b42012-03-14 00:45:43 +0100243
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500244X86
Paolo Bonzinid46d72f2014-10-21 15:16:06 +0200245M: Paolo Bonzini <pbonzini@redhat.com>
246M: Richard Henderson <rth@twiddle.net>
Eduardo Habkoste1a04332015-04-08 08:34:56 -0300247M: Eduardo Habkost <ehabkost@redhat.com>
Eduardo Habkostb203a4b2015-04-08 08:36:24 -0300248S: Maintained
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200249F: target/i386/
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100250F: hw/i386/
Paolo Bonzinic17652e2015-09-22 11:36:16 +0200251F: disas/i386.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500252
Max Filippov16e7caa2011-09-06 03:55:56 +0400253Xtensa
254M: Max Filippov <jcmvbkbc@gmail.com>
Max Filippov375847a2011-10-28 02:11:05 +0400255W: http://wiki.osll.spb.ru/doku.php?id=etc:users:jcmvbkbc:qemu-target-xtensa
Max Filippov16e7caa2011-09-06 03:55:56 +0400256S: Maintained
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200257F: target/xtensa/
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100258F: hw/xtensa/
Paolo Bonzinic0bd0b52014-10-22 00:31:28 +0200259F: tests/tcg/xtensa/
Max Filippov16e7caa2011-09-06 03:55:56 +0400260
Bastian Koppelmann48e06fe2014-09-01 12:59:46 +0100261TriCore
262M: Bastian Koppelmann <kbastian@mail.uni-paderborn.de>
263S: Maintained
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200264F: target/tricore/
Bastian Koppelmann48e06fe2014-09-01 12:59:46 +0100265F: hw/tricore/
Thomas Huthd46d14e2016-09-09 23:17:09 +0200266F: include/hw/tricore/
Bastian Koppelmann48e06fe2014-09-01 12:59:46 +0100267
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500268Guest CPU Cores (KVM):
269----------------------
270
271Overall
Michael S. Tsirkinc6d559d2013-06-04 16:06:37 +0300272M: Paolo Bonzini <pbonzini@redhat.com>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500273L: kvm@vger.kernel.org
274S: Supported
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500275F: */kvm.*
Philippe Mathieu-Daudé1962cb22017-06-29 12:03:05 -0300276F: accel/kvm/
Thomas Hutha95e9a42016-02-25 13:33:25 +0100277F: include/sysemu/kvm*.h
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500278
Peter Maydelled4659d2013-03-05 00:34:43 +0000279ARM
280M: Peter Maydell <peter.maydell@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000281L: qemu-arm@nongnu.org
Peter Maydelled4659d2013-03-05 00:34:43 +0000282S: Maintained
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200283F: target/arm/kvm.c
Peter Maydelled4659d2013-03-05 00:34:43 +0000284
James Hogana31896c2014-06-17 23:10:37 +0100285MIPS
286M: James Hogan <james.hogan@imgtec.com>
287S: Maintained
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200288F: target/mips/kvm.c
James Hogana31896c2014-06-17 23:10:37 +0100289
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500290PPC
291M: Alexander Graf <agraf@suse.de>
292S: Maintained
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200293F: target/ppc/kvm.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500294
295S390
Christian Borntraegerb304bf02014-03-06 09:49:25 +0100296M: Christian Borntraeger <borntraeger@de.ibm.com>
Cornelia Huckc1976ae2017-07-04 11:22:15 +0200297M: Cornelia Huck <cohuck@redhat.com>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500298M: Alexander Graf <agraf@suse.de>
299S: Maintained
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200300F: target/s390x/kvm.c
301F: target/s390x/ioinst.[ch]
302F: target/s390x/machine.c
Cornelia Huck4277af12014-10-20 19:00:03 +0200303F: hw/intc/s390_flic.c
304F: hw/intc/s390_flic_kvm.c
305F: include/hw/s390x/s390_flic.h
Cornelia Huckc5bfb202015-11-04 15:59:55 +0100306F: gdb-xml/s390*.xml
Cornelia Huck3e9ed242015-11-04 16:08:20 +0100307T: git git://github.com/cohuck/qemu.git s390-next
308T: git git://github.com/borntraeger/qemu.git s390-next
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500309
310X86
Paolo Bonzinid46d72f2014-10-21 15:16:06 +0200311M: Paolo Bonzini <pbonzini@redhat.com>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500312M: Marcelo Tosatti <mtosatti@redhat.com>
313L: kvm@vger.kernel.org
314S: Supported
Thomas Huthfcf5ef22016-10-11 08:56:52 +0200315F: target/i386/kvm.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500316
Stefano Stabellini8a6b0cd2011-07-29 16:05:13 +0100317Guest CPU Cores (Xen):
318----------------------
319
320X86
Stefano Stabellini3623c572016-03-29 11:02:49 +0100321M: Stefano Stabellini <sstabellini@kernel.org>
322M: Anthony Perard <anthony.perard@citrix.com>
Anthony PERARD6d062202016-11-25 15:30:40 +0000323L: xen-devel@lists.xenproject.org
Stefano Stabellini8a6b0cd2011-07-29 16:05:13 +0100324S: Supported
Stefano Stabellini8a6b0cd2011-07-29 16:05:13 +0100325F: */xen*
Stefano Stabellinid6a3f642017-03-22 10:18:09 -0700326F: hw/9pfs/xen-9p-backend.c
Paolo Bonzinic92451c2015-09-22 11:36:48 +0200327F: hw/char/xen_console.c
328F: hw/display/xenfb.c
329F: hw/net/xen_nic.c
Stefano Stabellini9027ac52015-12-21 14:58:28 +0000330F: hw/block/xen_*
Paolo Bonzinic92451c2015-09-22 11:36:48 +0200331F: hw/xen/
332F: hw/xenpv/
Stefano Stabellini9027ac52015-12-21 14:58:28 +0000333F: hw/i386/xen/
Paolo Bonzinic92451c2015-09-22 11:36:48 +0200334F: include/hw/xen/
Stefano Stabellini9027ac52015-12-21 14:58:28 +0000335F: include/sysemu/xen-mapcache.h
Stefano Stabellini8a6b0cd2011-07-29 16:05:13 +0100336
Stefan Weil1bdd6872012-01-27 18:53:49 +0100337Hosts:
338------
339
340LINUX
341L: qemu-devel@nongnu.org
342S: Maintained
343F: linux-*
344F: linux-headers/
345
346POSIX
347L: qemu-devel@nongnu.org
348S: Maintained
349F: *posix*
350
Kamil Rytarowski3c2bdbc2017-05-13 04:21:43 +0200351NETBSD
352L: qemu-devel@nongnu.org
353M: Kamil Rytarowski <kamil@netbsd.org>
354S: Maintained
Thomas Huth1b612702017-07-27 12:09:34 +0200355K: ^Subject:.*(?i)NetBSD
Kamil Rytarowski3c2bdbc2017-05-13 04:21:43 +0200356
Stefan Weil1bdd6872012-01-27 18:53:49 +0100357W32, W64
358L: qemu-devel@nongnu.org
359M: Stefan Weil <sw@weilnetz.de>
360S: Maintained
361F: *win32*
Thomas Huth03972662016-09-29 09:43:31 +0200362F: */*win32*
363F: include/*/*win32*
364X: qga/*win32*
Stefan Weil885bdc92015-09-25 22:25:32 +0200365F: qemu.nsi
Stefan Weil1bdd6872012-01-27 18:53:49 +0100366
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500367ARM Machines
368------------
liguang84291fe2013-12-17 19:42:38 +0000369Allwinner-a10
Beniamino Galvani85b4d5d2015-09-24 01:29:37 +0100370M: Beniamino Galvani <b.galvani@gmail.com>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000371L: qemu-arm@nongnu.org
liguang84291fe2013-12-17 19:42:38 +0000372S: Maintained
Beniamino Galvani85b4d5d2015-09-24 01:29:37 +0100373F: hw/*/allwinner*
374F: include/hw/*/allwinner*
liguang84291fe2013-12-17 19:42:38 +0000375F: hw/arm/cubieboard.c
376
Peter Maydelle5a6a6e2017-07-17 13:36:09 +0100377ARM PrimeCell and CMSDK devices
Paolo Bonzini06271002015-09-22 11:45:00 +0200378M: Peter Maydell <peter.maydell@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000379L: qemu-arm@nongnu.org
Paolo Bonzini06271002015-09-22 11:45:00 +0200380S: Maintained
381F: hw/char/pl011.c
382F: hw/display/pl110*
383F: hw/dma/pl080.c
384F: hw/dma/pl330.c
385F: hw/gpio/pl061.c
386F: hw/input/pl050.c
387F: hw/intc/pl190.c
388F: hw/sd/pl181.c
389F: hw/timer/pl031.c
390F: include/hw/arm/primecell.h
Peter Maydelle5a6a6e2017-07-17 13:36:09 +0100391F: hw/timer/cmsdk-apb-timer.c
392F: include/hw/timer/cmsdk-apb-timer.h
393F: hw/char/cmsdk-apb-uart.c
394F: include/hw/char/cmsdk-apb-uart.h
Paolo Bonzini06271002015-09-22 11:45:00 +0200395
396ARM cores
397M: Peter Maydell <peter.maydell@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000398L: qemu-arm@nongnu.org
Paolo Bonzini06271002015-09-22 11:45:00 +0200399S: Maintained
400F: hw/intc/arm*
401F: hw/intc/gic_internal.h
402F: hw/misc/a9scu.c
403F: hw/misc/arm11scu.c
404F: hw/timer/a9gtimer*
405F: hw/timer/arm_*
406F: include/hw/arm/arm.h
407F: include/hw/intc/arm*
408F: include/hw/misc/a9scu.h
409F: include/hw/misc/arm11scu.h
410F: include/hw/timer/a9gtimer.h
411F: include/hw/timer/arm_mptimer.h
412
Evgeny Voevodinfc63dcf2012-02-16 09:56:06 +0000413Exynos
Igor Mitsyankof44c5c62013-07-31 10:27:35 +0400414M: Igor Mitsyanko <i.mitsyanko@gmail.com>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000415L: qemu-arm@nongnu.org
Evgeny Voevodinfc63dcf2012-02-16 09:56:06 +0000416S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100417F: hw/*/exynos*
Thomas Huthed0db862016-02-25 12:22:04 +0100418F: include/hw/arm/exynos4210.h
Evgeny Voevodinfc63dcf2012-02-16 09:56:06 +0000419
Mark Langsdorf766fd092012-02-16 09:56:10 +0000420Calxeda Highbank
Rob Herring9ef137c2014-05-27 17:09:49 +0100421M: Rob Herring <robh@kernel.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000422L: qemu-arm@nongnu.org
Rob Herring9ef137c2014-05-27 17:09:49 +0100423S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100424F: hw/arm/highbank.c
425F: hw/net/xgmac.c
Mark Langsdorf766fd092012-02-16 09:56:10 +0000426
Antony Pavlov9082f122013-12-17 19:42:37 +0000427Canon DIGIC
428M: Antony Pavlov <antonynpavlov@gmail.com>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000429L: qemu-arm@nongnu.org
Antony Pavlov9082f122013-12-17 19:42:37 +0000430S: Maintained
431F: include/hw/arm/digic.h
432F: hw/*/digic*
433
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500434Gumstix
Paolo Bonzini5dd4a882014-10-22 10:53:22 +0200435L: qemu-devel@nongnu.org
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000436L: qemu-arm@nongnu.org
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500437S: Orphan
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100438F: hw/arm/gumstix.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500439
Peter Chubb03255592012-07-04 10:43:34 +0000440i.MX31
441M: Peter Chubb <peter.chubb@nicta.com.au>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000442L: qemu-arm@nongnu.org
Peter Chubb03255592012-07-04 10:43:34 +0000443S: Odd fixes
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100444F: hw/*/imx*
Thomas Huthf7e242d2016-09-23 14:14:18 +0200445F: include/hw/*/imx*
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100446F: hw/arm/kzm.c
Thomas Huthed0db862016-02-25 12:22:04 +0100447F: include/hw/arm/fsl-imx31.h
Peter Chubb03255592012-07-04 10:43:34 +0000448
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500449Integrator CP
Peter Maydell1ce9ce62011-09-20 16:18:46 +0100450M: Peter Maydell <peter.maydell@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000451L: qemu-arm@nongnu.org
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500452S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100453F: hw/arm/integratorcp.c
Thomas Huthf7e242d2016-09-23 14:14:18 +0200454F: hw/misc/arm_integrator_debug.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500455
Peter Maydelle5a6a6e2017-07-17 13:36:09 +0100456MPS2
457M: Peter Maydell <peter.maydell@linaro.org>
458L: qemu-arm@nongnu.org
459S: Maintained
460F: hw/arm/mps2.c
461F: hw/misc/mps2-scc.c
462F: include/hw/misc/mps2-scc.h
463
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500464Musicpal
465M: Jan Kiszka <jan.kiszka@web.de>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000466L: qemu-arm@nongnu.org
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500467S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100468F: hw/arm/musicpal.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500469
470nSeries
471M: Andrzej Zaborowski <balrogg@gmail.com>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000472L: qemu-arm@nongnu.org
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500473S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100474F: hw/arm/nseries.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500475
476Palm
477M: Andrzej Zaborowski <balrogg@gmail.com>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000478L: qemu-arm@nongnu.org
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500479S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100480F: hw/arm/palm.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500481
482Real View
Peter Maydell1ce9ce62011-09-20 16:18:46 +0100483M: Peter Maydell <peter.maydell@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000484L: qemu-arm@nongnu.org
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500485S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100486F: hw/arm/realview*
Thomas Huthf7e242d2016-09-23 14:14:18 +0200487F: hw/cpu/realview_mpcore.c
Paolo Bonzini5ea53042015-09-22 11:49:41 +0200488F: hw/intc/realview_gic.c
489F: include/hw/intc/realview_gic.h
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500490
Paolo Bonzini9b31bff2015-09-22 11:42:50 +0200491PXA2XX
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500492M: Andrzej Zaborowski <balrogg@gmail.com>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000493L: qemu-arm@nongnu.org
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500494S: Maintained
Paolo Bonzini9b31bff2015-09-22 11:42:50 +0200495F: hw/arm/mainstone.c
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100496F: hw/arm/spitz.c
Paolo Bonzini9b31bff2015-09-22 11:42:50 +0200497F: hw/arm/tosa.c
498F: hw/arm/z2.c
499F: hw/*/pxa2xx*
Thomas Huthf7e242d2016-09-23 14:14:18 +0200500F: hw/misc/mst_fpga.c
Thomas Huthed0db862016-02-25 12:22:04 +0100501F: include/hw/arm/pxa.h
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500502
503Stellaris
Peter Maydell1ce9ce62011-09-20 16:18:46 +0100504M: Peter Maydell <peter.maydell@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000505L: qemu-arm@nongnu.org
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500506S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100507F: hw/*/stellaris*
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500508
509Versatile PB
Peter Maydell1ce9ce62011-09-20 16:18:46 +0100510M: Peter Maydell <peter.maydell@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000511L: qemu-arm@nongnu.org
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500512S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100513F: hw/*/versatile*
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500514
Peter A. G. Crosthwaitee3260502012-03-05 14:39:13 +1000515Xilinx Zynq
Alistair Franciscc0100f2016-07-28 09:55:39 -0700516M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
Alistair Francis4b46ba62015-08-25 15:45:06 +0100517M: Alistair Francis <alistair.francis@xilinx.com>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000518L: qemu-arm@nongnu.org
Peter A. G. Crosthwaitee3260502012-03-05 14:39:13 +1000519S: Maintained
Alistair Franciscc0100f2016-07-28 09:55:39 -0700520F: hw/*/xilinx_*
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100521F: hw/*/cadence_*
Thomas Huthf7e242d2016-09-23 14:14:18 +0200522F: hw/misc/zynq*
523F: include/hw/misc/zynq*
Alistair Franciscc0100f2016-07-28 09:55:39 -0700524X: hw/ssi/xilinx_*
Peter A. G. Crosthwaitee3260502012-03-05 14:39:13 +1000525
Alistair Francis137805f2015-08-25 15:45:07 +0100526Xilinx ZynqMP
527M: Alistair Francis <alistair.francis@xilinx.com>
Alistair Franciscc0100f2016-07-28 09:55:39 -0700528M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000529L: qemu-arm@nongnu.org
Alistair Francis137805f2015-08-25 15:45:07 +0100530S: Maintained
Alistair Franciscc0100f2016-07-28 09:55:39 -0700531F: hw/*/xlnx*.c
Markus Armbrusterf586d5f2016-09-05 14:28:52 +0200532F: include/hw/*/xlnx*.h
Alistair Francis137805f2015-08-25 15:45:07 +0100533
Shannon Zhao8f4d2602015-06-15 18:06:08 +0100534ARM ACPI Subsystem
535M: Shannon Zhao <zhaoshenglong@huawei.com>
536M: Shannon Zhao <shannon.zhao@linaro.org>
Peter Maydellb4f2bd12015-11-03 13:49:42 +0000537L: qemu-arm@nongnu.org
Shannon Zhao8f4d2602015-06-15 18:06:08 +0100538S: Maintained
539F: hw/arm/virt-acpi-build.c
Shannon Zhao8f4d2602015-06-15 18:06:08 +0100540
Alistair Francisa1f81932016-10-04 13:28:07 +0100541STM32F205
542M: Alistair Francis <alistair@alistair23.me>
543S: Maintained
544F: hw/arm/stm32f205_soc.c
545F: hw/misc/stm32f2xx_syscfg.c
546F: hw/char/stm32f2xx_usart.c
547F: hw/timer/stm32f2xx_timer.c
548F: hw/adc/*
549F: hw/ssi/stm32f2xx_spi.c
550
551Netduino 2
552M: Alistair Francis <alistair@alistair23.me>
553S: Maintained
554F: hw/arm/netduino2.c
555
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500556CRIS Machines
557-------------
558Axis Dev88
559M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
560S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100561F: hw/cris/axis_dev88.c
Peter Maydell6e481d52013-06-24 11:49:32 +0100562F: hw/*/etraxfs_*.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500563
Michael Walle07bf23a2011-02-17 23:45:18 +0100564LM32 Machines
565-------------
566EVR32 and uclinux BSP
567M: Michael Walle <michael@walle.cc>
568S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100569F: hw/lm32/lm32_boards.c
Michael Walle07bf23a2011-02-17 23:45:18 +0100570
Michael Walled118aa62011-03-07 23:32:45 +0100571milkymist
572M: Michael Walle <michael@walle.cc>
573S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100574F: hw/lm32/milkymist.c
Michael Walled118aa62011-03-07 23:32:45 +0100575
Aurelien Jarnoafcacd52011-01-14 20:39:19 +0100576M68K Machines
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500577-------------
578an5206
Thomas Huth5baf2742017-02-12 23:38:17 +0100579M: Thomas Huth <huth@tuxfamily.org>
580S: Odd Fixes
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100581F: hw/m68k/an5206.c
Thomas Huthe9a56112016-11-02 09:39:33 +0100582F: hw/m68k/mcf5206.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500583
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500584mcf5208
Thomas Huth5baf2742017-02-12 23:38:17 +0100585M: Thomas Huth <huth@tuxfamily.org>
586S: Odd Fixes
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100587F: hw/m68k/mcf5208.c
Thomas Huthe9a56112016-11-02 09:39:33 +0100588F: hw/m68k/mcf_intc.c
589F: hw/char/mcf_uart.c
590F: hw/net/mcf_fec.c
Thomas Huth5baf2742017-02-12 23:38:17 +0100591F: include/hw/m68k/mcf*.h
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500592
593MicroBlaze Machines
594-------------------
595petalogix_s3adsp1800
596M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
597S: Maintained
Peter Maydell6e481d52013-06-24 11:49:32 +0100598F: hw/microblaze/petalogix_s3adsp1800_mmu.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500599
Peter A. G. Crosthwaited36e8ce2012-06-26 14:29:40 +1000600petalogix_ml605
Alistair Francis4b46ba62015-08-25 15:45:06 +0100601M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
Peter A. G. Crosthwaited36e8ce2012-06-26 14:29:40 +1000602S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100603F: hw/microblaze/petalogix_ml605_mmu.c
Peter A. G. Crosthwaited36e8ce2012-06-26 14:29:40 +1000604
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500605MIPS Machines
606-------------
607Jazz
608M: Hervé Poussineau <hpoussin@reactos.org>
609S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100610F: hw/mips/mips_jazz.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500611
612Malta
613M: Aurelien Jarno <aurelien@aurel32.net>
614S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100615F: hw/mips/mips_malta.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500616
617Mipssim
Yongbok Kim659f42d2017-03-10 15:32:32 +0000618M: Yongbok Kim <yongbok.kim@imgtec.com>
619S: Odd Fixes
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100620F: hw/mips/mips_mipssim.c
Yongbok Kim659f42d2017-03-10 15:32:32 +0000621F: hw/net/mipsnet.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500622
623R4000
624M: Aurelien Jarno <aurelien@aurel32.net>
625S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100626F: hw/mips/mips_r4k.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500627
Yongbok Kim659f42d2017-03-10 15:32:32 +0000628Fulong 2E
629M: Yongbok Kim <yongbok.kim@imgtec.com>
630S: Odd Fixes
631F: hw/mips/mips_fulong2e.c
632
633Boston
634M: Paul Burton <paul.burton@imgtec.com>
635S: Maintained
636F: hw/core/loader-fit.c
637F: hw/mips/boston.c
638F: hw/pci-host/xilinx-pcie.c
639
Jia Liu945dad62013-07-02 20:55:17 +0800640OpenRISC Machines
641-----------------
642or1k-sim
643M: Jia Liu <proljc@gmail.com>
644S: Maintained
645F: hw/openrisc/openrisc_sim.c
646
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500647PowerPC Machines
648----------------
649405
650M: Alexander Graf <agraf@suse.de>
Andreas Färbera6c98682012-01-13 13:33:57 +0000651L: qemu-ppc@nongnu.org
Andreas Färber9b9fe132012-08-22 05:48:46 +0000652S: Odd Fixes
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100653F: hw/ppc/ppc405_boards.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500654
Andreas Färberaaade8d2012-08-22 05:48:47 +0000655Bamboo
656M: Alexander Graf <agraf@suse.de>
657L: qemu-ppc@nongnu.org
658S: Odd Fixes
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100659F: hw/ppc/ppc440_bamboo.c
Andreas Färberaaade8d2012-08-22 05:48:47 +0000660
Andreas Färber98cded32012-08-22 05:48:45 +0000661e500
662M: Alexander Graf <agraf@suse.de>
Andreas Färber98cded32012-08-22 05:48:45 +0000663L: qemu-ppc@nongnu.org
664S: Supported
665F: hw/ppc/e500.[hc]
666F: hw/ppc/e500plat.c
Thomas Huthb5d55022016-09-05 22:03:36 +0200667F: include/hw/ppc/ppc_e500.h
668F: include/hw/pci-host/ppce500.h
669F: pc-bios/u-boot.e500
Andreas Färber98cded32012-08-22 05:48:45 +0000670
671mpc8544ds
672M: Alexander Graf <agraf@suse.de>
Andreas Färber98cded32012-08-22 05:48:45 +0000673L: qemu-ppc@nongnu.org
674S: Supported
675F: hw/ppc/mpc8544ds.c
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100676F: hw/ppc/mpc8544_guts.c
Andreas Färber98cded32012-08-22 05:48:45 +0000677
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500678New World
679M: Alexander Graf <agraf@suse.de>
Andreas Färbera6c98682012-01-13 13:33:57 +0000680L: qemu-ppc@nongnu.org
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500681S: Maintained
Andreas Färberbaec1912013-01-23 23:03:54 +0000682F: hw/ppc/mac_newworld.c
Peter Maydell6e481d52013-06-24 11:49:32 +0100683F: hw/pci-host/uninorth.c
684F: hw/pci-bridge/dec.[hc]
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100685F: hw/misc/macio/
Thomas Huthb5d55022016-09-05 22:03:36 +0200686F: include/hw/ppc/mac_dbdma.h
687F: hw/nvram/mac_nvram.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500688
689Old World
690M: Alexander Graf <agraf@suse.de>
Andreas Färbera6c98682012-01-13 13:33:57 +0000691L: qemu-ppc@nongnu.org
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500692S: Maintained
Andreas Färberbaec1912013-01-23 23:03:54 +0000693F: hw/ppc/mac_oldworld.c
Peter Maydell6e481d52013-06-24 11:49:32 +0100694F: hw/pci-host/grackle.c
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100695F: hw/misc/macio/
Thomas Huth835c42d2016-09-29 09:40:33 +0200696F: hw/intc/heathrow_pic.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500697
Andreas Färberec38d392011-11-01 00:03:07 +0100698PReP
Hervé Poussineau8178e892017-01-12 09:47:29 +0100699M: Hervé Poussineau <hpoussin@reactos.org>
Andreas Färber9f387742016-05-25 17:18:14 +0200700L: qemu-devel@nongnu.org
Andreas Färbera6c98682012-01-13 13:33:57 +0000701L: qemu-ppc@nongnu.org
Hervé Poussineau8178e892017-01-12 09:47:29 +0100702S: Maintained
Andreas Färber75610152013-01-26 20:41:58 +0100703F: hw/ppc/prep.c
Hervé Poussineau8178e892017-01-12 09:47:29 +0100704F: hw/ppc/prep_systemio.c
705F: hw/ppc/rs6000_mc.c
Peter Maydell6e481d52013-06-24 11:49:32 +0100706F: hw/pci-host/prep.[hc]
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100707F: hw/isa/pc87312.[hc]
Thomas Huth835c42d2016-09-29 09:40:33 +0200708F: pc-bios/ppc_rom.bin
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500709
Andreas Färber300b1152016-01-18 18:19:35 +0100710sPAPR
David Gibson085eb212015-05-08 10:11:00 +1000711M: David Gibson <david@gibson.dropbear.id.au>
Andreas Färber8a269ca2012-08-22 05:48:44 +0000712M: Alexander Graf <agraf@suse.de>
713L: qemu-ppc@nongnu.org
714S: Supported
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100715F: hw/*/spapr*
David Gibsonf9de2da2013-06-15 11:51:52 +1000716F: include/hw/*/spapr*
717F: hw/*/xics*
718F: include/hw/*/xics*
719F: pc-bios/spapr-rtas/*
Thomas Huthb5d55022016-09-05 22:03:36 +0200720F: pc-bios/spapr-rtas.bin
721F: pc-bios/slof.bin
Cédric Le Goaterbcad45d2016-10-22 11:46:34 +0200722F: pc-bios/skiboot.lid
Thomas Huthb5d55022016-09-05 22:03:36 +0200723F: docs/specs/ppc-spapr-hcalls.txt
724F: docs/specs/ppc-spapr-hotplug.txt
Greg Kurza70ab352016-09-14 13:23:57 +0200725F: tests/spapr*
726F: tests/libqos/*spapr*
727F: tests/rtas*
728F: tests/libqos/rtas*
Andreas Färber8a269ca2012-08-22 05:48:44 +0000729
Andreas Färber794d00b2012-08-22 05:48:48 +0000730virtex_ml507
731M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
732L: qemu-ppc@nongnu.org
733S: Odd Fixes
Peter Maydell6e481d52013-06-24 11:49:32 +0100734F: hw/ppc/virtex_ml507.c
Andreas Färber794d00b2012-08-22 05:48:48 +0000735
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500736SH4 Machines
737------------
738R2D
739M: Magnus Damm <magnus.damm@gmail.com>
740S: Maintained
Peter Maydell6e481d52013-06-24 11:49:32 +0100741F: hw/sh4/r2d.c
Thomas Huth81527b92016-09-30 11:32:02 +0200742F: hw/intc/sh_intc.c
743F: hw/timer/sh_timer.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500744
745Shix
746M: Magnus Damm <magnus.damm@gmail.com>
Thomas Huth81527b92016-09-30 11:32:02 +0200747S: Odd Fixes
Peter Maydell6e481d52013-06-24 11:49:32 +0100748F: hw/sh4/shix.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500749
750SPARC Machines
751--------------
752Sun4m
Mark Cave-Aylandf2416d32015-03-02 22:23:27 +0000753M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500754S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100755F: hw/sparc/sun4m.c
Thomas Huthc10a1c72016-09-19 21:58:34 +0200756F: hw/dma/sparc32_dma.c
757F: hw/dma/sun4m_iommu.c
Thomas Huth7098b792016-09-23 14:27:25 +0200758F: hw/misc/eccmemctl.c
759F: hw/misc/slavio_misc.c
Thomas Huthc10a1c72016-09-19 21:58:34 +0200760F: include/hw/sparc/sparc32_dma.h
761F: include/hw/sparc/sun4m.h
762F: pc-bios/openbios-sparc32
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500763
764Sun4u
Mark Cave-Aylandf2416d32015-03-02 22:23:27 +0000765M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500766S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100767F: hw/sparc64/sun4u.c
Thomas Huthc10a1c72016-09-19 21:58:34 +0200768F: pc-bios/openbios-sparc64
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500769
Artyom Tarasenkoa2664ca2016-09-29 14:46:45 +0200770Sun4v
771M: Artyom Tarasenko <atar4qemu@gmail.com>
772S: Maintained
773F: hw/sparc64/sun4v.c
774F: hw/timer/sun4v-rtc.c
775F: include/hw/timer/sun4v-rtc.h
776
Fabien Chouteauce6c7602012-05-22 10:14:28 +0200777Leon3
778M: Fabien Chouteau <chouteau@adacore.com>
779S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100780F: hw/sparc/leon3.c
781F: hw/*/grlib*
Thomas Huthc10a1c72016-09-19 21:58:34 +0200782F: include/hw/sparc/grlib.h
Fabien Chouteauce6c7602012-05-22 10:14:28 +0200783
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500784S390 Machines
785-------------
Cornelia Huckdd4ad642013-03-05 02:22:01 +0000786S390 Virtio-ccw
Cornelia Huckc1976ae2017-07-04 11:22:15 +0200787M: Cornelia Huck <cohuck@redhat.com>
Christian Borntraegerb304bf02014-03-06 09:49:25 +0100788M: Christian Borntraeger <borntraeger@de.ibm.com>
Cornelia Huckdd4ad642013-03-05 02:22:01 +0000789M: Alexander Graf <agraf@suse.de>
790S: Supported
Paolo Bonzini0c6aa7e2015-09-22 11:37:07 +0200791F: hw/char/sclp*.[hc]
Cornelia Huckc5bfb202015-11-04 15:59:55 +0100792F: hw/s390x/
Cornelia Huck4277af12014-10-20 19:00:03 +0200793F: include/hw/s390x/
794F: pc-bios/s390-ccw/
Cornelia Huckc5bfb202015-11-04 15:59:55 +0100795F: hw/watchdog/wdt_diag288.c
Sascha Silbe1e4738b2016-08-30 14:02:16 +0200796F: include/hw/watchdog/wdt_diag288.h
797F: pc-bios/s390-ccw.img
798F: default-configs/s390x-softmmu.mak
Cornelia Huck3e9ed242015-11-04 16:08:20 +0100799T: git git://github.com/cohuck/qemu.git s390-next
800T: git git://github.com/borntraeger/qemu.git s390-next
Cornelia Huckdd4ad642013-03-05 02:22:01 +0000801
Guan Xuetaoab9528c2012-08-10 14:42:34 +0800802UniCore32 Machines
803-------------
804PKUnity-3 SoC initramfs-with-busybox
805M: Guan Xuetao <gxt@mprc.pku.edu.cn>
806S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100807F: hw/*/puv3*
Guan Xuetaoab9528c2012-08-10 14:42:34 +0800808F: hw/unicore32/
809
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500810X86 Machines
811------------
812PC
Michael S. Tsirkin046a6482013-11-06 17:16:42 +0200813M: Michael S. Tsirkin <mst@redhat.com>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500814S: Supported
Michael S. Tsirkin046a6482013-11-06 17:16:42 +0200815F: include/hw/i386/
816F: hw/i386/
817F: hw/pci-host/piix.c
818F: hw/pci-host/q35.c
819F: hw/pci-host/pam.c
820F: include/hw/pci-host/q35.h
821F: include/hw/pci-host/pam.h
822F: hw/isa/piix4.c
823F: hw/isa/lpc_ich9.c
824F: hw/i2c/smbus_ich9.c
825F: hw/acpi/piix4.c
826F: hw/acpi/ich9.c
827F: include/hw/acpi/ich9.h
Markus Armbrusterf586d5f2016-09-05 14:28:52 +0200828F: include/hw/acpi/piix4.h
Paolo Bonzini9cc3b732015-09-22 11:56:47 +0200829F: hw/misc/sga.c
830
831PC Chipset
832M: Michael S. Tsirkin <mst@redhat.com>
833M: Paolo Bonzini <pbonzini@redhat.com>
834S: Support
835F: hw/char/debugcon.c
836F: hw/char/parallel.c
837F: hw/char/serial*
838F: hw/dma/i8257*
839F: hw/i2c/pm_smbus.c
840F: hw/intc/apic*
841F: hw/intc/ioapic*
842F: hw/intc/i8259*
843F: hw/misc/debugexit.c
844F: hw/misc/pc-testdev.c
845F: hw/timer/hpet*
846F: hw/timer/i8254*
847F: hw/timer/mc146818rtc*
Thomas Hutha2feb342016-09-05 23:31:15 +0200848F: include/hw/i2c/pm_smbus.h
849F: include/hw/timer/hpet.h
850F: include/hw/timer/i8254*
851F: include/hw/timer/mc146818rtc*
Michael S. Tsirkin046a6482013-11-06 17:16:42 +0200852
Michael S. Tsirkin5da4fb0012016-03-11 16:06:56 +0200853Machine core
854M: Eduardo Habkost <ehabkost@redhat.com>
855M: Marcel Apfelbaum <marcel@redhat.com>
856S: Supported
857F: hw/core/machine.c
Thomas Huthc1629c52017-01-23 06:54:55 +0100858F: hw/core/null-machine.c
Michael S. Tsirkin5da4fb0012016-03-11 16:06:56 +0200859F: include/hw/boards.h
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500860
Max Filippov16e7caa2011-09-06 03:55:56 +0400861Xtensa Machines
862---------------
Max Filippov375847a2011-10-28 02:11:05 +0400863sim
Max Filippov16e7caa2011-09-06 03:55:56 +0400864M: Max Filippov <jcmvbkbc@gmail.com>
865S: Maintained
Max Filippov437a8c12014-10-22 07:25:42 +0400866F: hw/xtensa/sim.c
Max Filippov375847a2011-10-28 02:11:05 +0400867
Max Filippov437a8c12014-10-22 07:25:42 +0400868XTFPGA (LX60, LX200, ML605, KC705)
Max Filippov375847a2011-10-28 02:11:05 +0400869M: Max Filippov <jcmvbkbc@gmail.com>
870S: Maintained
Max Filippov437a8c12014-10-22 07:25:42 +0400871F: hw/xtensa/xtfpga.c
872F: hw/net/opencores_eth.c
Max Filippov16e7caa2011-09-06 03:55:56 +0400873
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500874Devices
875-------
Jiri Slabyb30934c2015-01-21 17:48:33 +0100876EDU
877M: Jiri Slaby <jslaby@suse.cz>
878S: Maintained
879F: hw/misc/edu.c
880
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500881IDE
John Snowc0953482015-03-04 23:37:55 -0500882M: John Snow <jsnow@redhat.com>
883L: qemu-block@nongnu.org
884S: Supported
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100885F: include/hw/ide.h
Thomas Huthc9f7acd2016-09-23 18:09:56 +0200886F: include/hw/ide/
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500887F: hw/ide/
John Snowc0953482015-03-04 23:37:55 -0500888F: hw/block/block.c
889F: hw/block/cdrom.c
890F: hw/block/hd-geometry.c
891F: tests/ide-test.c
892F: tests/ahci-test.c
John Snowaee50312015-10-05 12:00:56 -0400893F: tests/libqos/ahci*
John Snowc0953482015-03-04 23:37:55 -0500894T: git git://github.com/jnsnow/qemu.git ide
895
896Floppy
897M: John Snow <jsnow@redhat.com>
898L: qemu-block@nongnu.org
899S: Supported
900F: hw/block/fdc.c
901F: include/hw/block/fdc.h
John Snowaee50312015-10-05 12:00:56 -0400902F: tests/fdc-test.c
John Snowc0953482015-03-04 23:37:55 -0500903T: git git://github.com/jnsnow/qemu.git ide
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500904
Peter Maydellf5f487b2011-09-17 17:26:15 +0100905OMAP
906M: Peter Maydell <peter.maydell@linaro.org>
907S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100908F: hw/*/omap*
Thomas Huthed0db862016-02-25 12:22:04 +0100909F: include/hw/arm/omap.h
Peter Maydellf5f487b2011-09-17 17:26:15 +0100910
Paolo Bonzini28d54e52015-09-22 11:37:27 +0200911IPack
912M: Alberto Garcia <berto@igalia.com>
913S: Odd Fixes
914F: hw/char/ipoctal232.c
915F: hw/ipack/
916
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500917PCI
918M: Michael S. Tsirkin <mst@redhat.com>
Michael S. Tsirkin874a2352016-06-13 23:06:32 +0300919M: Marcel Apfelbaum <marcel@redhat.com>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500920S: Supported
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100921F: include/hw/pci/*
Paolo Bonzinif178bc62015-09-22 11:56:48 +0200922F: hw/misc/pci-testdev.c
Michael S. Tsirkinca818cf2012-12-12 15:11:55 +0200923F: hw/pci/*
Paolo Bonzinif178bc62015-09-22 11:56:48 +0200924F: hw/pci-bridge/*
Michael S. Tsirkin0e0b3592015-06-23 08:09:34 +0200925
Michael S. Tsirkind31e5ae2015-08-12 12:17:36 +0300926ACPI/SMBIOS
Michael S. Tsirkin0e0b3592015-06-23 08:09:34 +0200927M: Michael S. Tsirkin <mst@redhat.com>
928M: Igor Mammedov <imammedo@redhat.com>
929S: Supported
930F: include/hw/acpi/*
Michael S. Tsirkind31e5ae2015-08-12 12:17:36 +0300931F: include/hw/smbios/*
Michael S. Tsirkin0e0b3592015-06-23 08:09:34 +0200932F: hw/mem/*
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100933F: hw/acpi/*
Michael S. Tsirkind31e5ae2015-08-12 12:17:36 +0300934F: hw/smbios/*
Michael S. Tsirkin0e0b3592015-06-23 08:09:34 +0200935F: hw/i386/acpi-build.[hc]
Michael S. Tsirkin0e0b3592015-06-23 08:09:34 +0200936F: hw/arm/virt-acpi-build.c
Ben Warren3248f1b2017-02-16 15:15:38 -0800937F: tests/bios-tables-test.c
938F: tests/acpi-utils.[hc]
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500939
Andreas Färberaaade8d2012-08-22 05:48:47 +0000940ppc4xx
941M: Alexander Graf <agraf@suse.de>
942L: qemu-ppc@nongnu.org
943S: Odd Fixes
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100944F: hw/ppc/ppc4*.c
Thomas Huthb5d55022016-09-05 22:03:36 +0200945F: include/hw/ppc/ppc4xx.h
Andreas Färberaaade8d2012-08-22 05:48:47 +0000946
Andreas Färber98cded32012-08-22 05:48:45 +0000947ppce500
948M: Alexander Graf <agraf@suse.de>
Andreas Färber98cded32012-08-22 05:48:45 +0000949L: qemu-ppc@nongnu.org
950S: Supported
Peter Maydell6e481d52013-06-24 11:49:32 +0100951F: hw/ppc/e500*
Paolo Bonzini566dd232015-09-22 11:38:02 +0200952F: hw/pci-host/ppce500.c
953F: hw/net/fsl_etsec/
Andreas Färber98cded32012-08-22 05:48:45 +0000954
Paolo Bonzini61af0ee2015-09-22 11:40:00 +0200955Character devices
956M: Paolo Bonzini <pbonzini@redhat.com>
957S: Odd Fixes
958F: hw/char/
959
Paolo Bonzinif536f112015-09-22 11:40:00 +0200960Network devices
961M: Jason Wang <jasowang@redhat.com>
962S: Odd Fixes
963F: hw/net/
Greg Kurz6bd77762016-09-09 10:31:20 +0200964F: tests/virtio-net-test.c
Paolo Bonzinif536f112015-09-22 11:40:00 +0200965T: git git://github.com/jasowang/qemu.git net
966
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500967SCSI
Paolo Bonzinide7724f2012-02-22 15:59:52 +0100968M: Paolo Bonzini <pbonzini@redhat.com>
969S: Supported
Thomas Huth74460f32016-09-05 22:11:41 +0200970F: include/hw/scsi/*
Fam Zheng28751352017-08-21 22:10:05 +0800971F: include/scsi/*
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100972F: hw/scsi/*
Fam Zheng28751352017-08-21 22:10:05 +0800973F: util/scsi*
Greg Kurz6bd77762016-09-09 10:31:20 +0200974F: tests/virtio-scsi-test.c
Andreas Färber1ab09a42012-04-13 18:03:42 +0200975T: git git://github.com/bonzini/qemu.git scsi-next
Paolo Bonzinide7724f2012-02-22 15:59:52 +0100976
977LSI53C895A
Anthony Liguori0e198852013-10-02 12:09:12 -0500978S: Orphan
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100979F: hw/scsi/lsi53c895a.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500980
Peter A. G. Crosthwaitefcb56292012-08-06 11:38:19 +1000981SSI
Alistair Francis4b46ba62015-08-25 15:45:06 +0100982M: Peter Crosthwaite <crosthwaite.peter@gmail.com>
Peter A. G. Crosthwaitefcb56292012-08-06 11:38:19 +1000983S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100984F: hw/ssi/*
985F: hw/block/m25p80.c
Alistair Francis4b46ba62015-08-25 15:45:06 +0100986X: hw/ssi/xilinx_*
987
988Xilinx SPI
989M: Alistair Francis <alistair.francis@xilinx.com>
990M: Peter Crosthwaite <crosthwaite.peter@gmail.com>
991S: Maintained
992F: hw/ssi/xilinx_*
Peter A. G. Crosthwaitefcb56292012-08-06 11:38:19 +1000993
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500994USB
Gerd Hoffmann5d0d62f2010-12-17 11:11:25 +0100995M: Gerd Hoffmann <kraxel@redhat.com>
996S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100997F: hw/usb/*
Gonglei28edfce2014-06-23 19:53:51 +0800998F: tests/usb-*-test.c
Thomas Huthbeded0f2016-02-25 10:36:05 +0100999F: docs/usb2.txt
1000F: docs/usb-storage.txt
1001F: include/hw/usb.h
1002F: include/hw/usb/
Philippe Mathieu-Daudé104ebc52017-09-08 14:36:24 -03001003F: default-configs/usb.mak
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001004
Paolo Bonzinie26082f2014-10-22 14:53:32 +02001005USB (serial adapter)
1006M: Gerd Hoffmann <kraxel@redhat.com>
1007M: Samuel Thibault <samuel.thibault@ens-lyon.org>
1008S: Maintained
1009F: hw/usb/dev-serial.c
1010
Alex Williamson92e1fb52012-09-26 11:19:39 -06001011VFIO
1012M: Alex Williamson <alex.williamson@redhat.com>
1013S: Supported
Kim Phillipscf7087d2014-12-19 15:24:06 -07001014F: hw/vfio/*
Thomas Huth99b88c62016-03-10 09:39:09 -07001015F: include/hw/vfio/
Alex Williamson92e1fb52012-09-26 11:19:39 -06001016
Dong Jia Shi5eb74552017-05-17 02:48:13 +02001017vfio-ccw
Cornelia Huckc1976ae2017-07-04 11:22:15 +02001018M: Cornelia Huck <cohuck@redhat.com>
Dong Jia Shi5eb74552017-05-17 02:48:13 +02001019S: Supported
1020F: hw/vfio/ccw.c
1021F: hw/s390x/s390-ccw.c
1022F: include/hw/s390x/s390-ccw.h
1023T: git git://github.com/cohuck/qemu.git s390-next
1024
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001025vhost
1026M: Michael S. Tsirkin <mst@redhat.com>
1027S: Supported
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01001028F: hw/*/*vhost*
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001029
1030virtio
Michael S. Tsirkina75143e2014-01-26 12:39:55 +02001031M: Michael S. Tsirkin <mst@redhat.com>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001032S: Supported
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01001033F: hw/*/virtio*
Thomas Huth72fa6052016-09-23 18:11:21 +02001034F: hw/virtio/Makefile.objs
1035F: hw/virtio/trace-events
Michael S. Tsirkin6a084ea2015-06-15 16:20:21 +02001036F: net/vhost-user.c
Thomas Huth494f7b52016-02-25 11:13:03 +01001037F: include/hw/virtio/
Greg Kurz6bd77762016-09-09 10:31:20 +02001038F: tests/virtio-balloon-test.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001039
1040virtio-9p
Aneesh Kumar K.V23704102012-01-19 22:57:11 +05301041M: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
Greg Kurz8c1cd712016-06-17 16:35:05 +02001042M: Greg Kurz <groug@kaod.org>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001043S: Supported
Andreas Färberaebeca22012-04-13 17:19:12 +02001044F: hw/9pfs/
1045F: fsdev/
Andreas Färber2d888c02014-02-21 17:15:21 +01001046F: tests/virtio-9p-test.c
Andreas Färber3f3309c2012-04-13 18:23:55 +02001047T: git git://github.com/kvaneesh/QEMU.git
Greg Kurz8c1cd712016-06-17 16:35:05 +02001048T: git git://github.com/gkurz/qemu.git 9p-next
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001049
1050virtio-blk
Stefan Hajnoczi54d01a02012-11-09 14:29:03 +01001051M: Stefan Hajnoczi <stefanha@redhat.com>
Stefan Hajnoczib457a5f2015-04-29 15:13:25 +01001052L: qemu-block@nongnu.org
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001053S: Supported
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01001054F: hw/block/virtio-blk.c
Stefan Hajnoczib457a5f2015-04-29 15:13:25 +01001055F: hw/block/dataplane/*
Greg Kurz6bd77762016-09-09 10:31:20 +02001056F: tests/virtio-blk-test.c
Stefan Hajnoczib457a5f2015-04-29 15:13:25 +01001057T: git git://github.com/stefanha/qemu.git block
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001058
Cornelia Huckdd4ad642013-03-05 02:22:01 +00001059virtio-ccw
Cornelia Huckc1976ae2017-07-04 11:22:15 +02001060M: Cornelia Huck <cohuck@redhat.com>
Christian Borntraegerb304bf02014-03-06 09:49:25 +01001061M: Christian Borntraeger <borntraeger@de.ibm.com>
Cornelia Huckdd4ad642013-03-05 02:22:01 +00001062S: Supported
1063F: hw/s390x/virtio-ccw.[hc]
Cornelia Huck3e9ed242015-11-04 16:08:20 +01001064T: git git://github.com/cohuck/qemu.git s390-next
1065T: git git://github.com/borntraeger/qemu.git s390-next
Cornelia Huckdd4ad642013-03-05 02:22:01 +00001066
Gerd Hoffmanna5d4d7b2015-06-19 10:25:34 +02001067virtio-input
1068M: Gerd Hoffmann <kraxel@redhat.com>
1069S: Maintained
1070F: hw/input/virtio-input*.c
1071F: include/hw/virtio/virtio-input.h
1072
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001073virtio-serial
Amit Shahcee887d2017-02-03 16:43:53 +05301074M: Amit Shah <amit@kernel.org>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001075S: Supported
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01001076F: hw/char/virtio-serial-bus.c
1077F: hw/char/virtio-console.c
Amit Shah68a5e382014-11-18 18:01:27 +05301078F: include/hw/virtio/virtio-serial.h
Greg Kurz6bd77762016-09-09 10:31:20 +02001079F: tests/virtio-console-test.c
1080F: tests/virtio-serial-test.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001081
Amit Shah1f51a5c2014-11-18 18:01:26 +05301082virtio-rng
Amit Shahcee887d2017-02-03 16:43:53 +05301083M: Amit Shah <amit@kernel.org>
Amit Shah1f51a5c2014-11-18 18:01:26 +05301084S: Supported
1085F: hw/virtio/virtio-rng.c
1086F: include/hw/virtio/virtio-rng.h
Thomas Huth750cf862016-02-25 13:44:20 +01001087F: include/sysemu/rng*.h
Amit Shah1f51a5c2014-11-18 18:01:26 +05301088F: backends/rng*.c
Greg Kurz6bd77762016-09-09 10:31:20 +02001089F: tests/virtio-rng-test.c
Amit Shah1f51a5c2014-11-18 18:01:26 +05301090
Gonglei60340112016-10-28 16:33:31 +08001091virtio-crypto
1092M: Gonglei <arei.gonglei@huawei.com>
1093S: Supported
1094F: hw/virtio/virtio-crypto.c
1095F: hw/virtio/virtio-crypto-pci.c
1096F: include/hw/virtio/virtio-crypto.h
1097
Keith Buschf3c507a2013-06-04 09:17:10 -06001098nvme
1099M: Keith Busch <keith.busch@intel.com>
Kevin Wolfc95e4c02015-04-30 15:15:13 +02001100L: qemu-block@nongnu.org
Keith Buschf3c507a2013-06-04 09:17:10 -06001101S: Supported
1102F: hw/block/nvme*
Andreas Färberfc967792014-02-21 22:19:43 +01001103F: tests/nvme-test.c
Keith Buschf3c507a2013-06-04 09:17:10 -06001104
Hannes Reinecked383c622014-04-16 16:44:19 +02001105megasas
Philippe Mathieu-Daudé3fdfb8b2017-09-10 14:15:57 -03001106M: Hannes Reinecke <hare@suse.com>
Kevin Wolfc95e4c02015-04-30 15:15:13 +02001107L: qemu-block@nongnu.org
Hannes Reinecked383c622014-04-16 16:44:19 +02001108S: Supported
1109F: hw/scsi/megasas.c
1110F: hw/scsi/mfi.h
Philippe Mathieu-Daudé3fdfb8b2017-09-10 14:15:57 -03001111F: tests/megasas-test.c
Hannes Reinecked383c622014-04-16 16:44:19 +02001112
Dmitry Fleytman605d52e2016-06-01 11:23:39 +03001113Network packet abstractions
1114M: Dmitry Fleytman <dmitry@daynix.com>
1115S: Maintained
1116F: include/net/eth.h
1117F: net/eth.c
1118F: hw/net/net_rx_pkt*
1119F: hw/net/net_tx_pkt*
1120
Dmitry Fleytman622fb502014-08-27 08:58:43 +03001121Vmware
1122M: Dmitry Fleytman <dmitry@daynix.com>
1123S: Maintained
1124F: hw/net/vmxnet*
1125F: hw/scsi/vmw_pvscsi*
1126
Scott Feldmande24d3f2015-03-13 21:09:32 -07001127Rocker
Scott Feldmande24d3f2015-03-13 21:09:32 -07001128M: Jiri Pirko <jiri@resnulli.us>
1129S: Maintained
1130F: hw/net/rocker/
Thomas Huthde850942016-09-27 16:33:46 +02001131F: tests/rocker/
1132F: docs/specs/rocker.txt
Scott Feldmande24d3f2015-03-13 21:09:32 -07001133
Xiao Guangrong70d1fb92015-12-02 15:21:00 +08001134NVDIMM
Xiao Guangrong7a5bd532017-03-21 13:33:57 +08001135M: Xiao Guangrong <xiaoguangrong.eric@gmail.com>
Xiao Guangrong70d1fb92015-12-02 15:21:00 +08001136S: Maintained
1137F: hw/acpi/nvdimm.c
1138F: hw/mem/nvdimm.c
1139F: include/hw/mem/nvdimm.h
1140
Dmitry Fleytman093454e2016-06-01 11:23:44 +03001141e1000x
1142M: Dmitry Fleytman <dmitry@daynix.com>
1143S: Maintained
1144F: hw/net/e1000x*
1145
Dmitry Fleytman6f3fbe42016-06-01 11:23:45 +03001146e1000e
1147M: Dmitry Fleytman <dmitry@daynix.com>
1148S: Maintained
1149F: hw/net/e1000e*
1150
Alistair Francise481a1f2016-10-04 13:28:09 +01001151Generic Loader
1152M: Alistair Francis <alistair.francis@xilinx.com>
1153S: Maintained
1154F: hw/core/generic-loader.c
1155F: include/hw/core/generic-loader.h
1156
Thomas Huth87a90232016-11-08 12:46:22 +01001157CHRP NVRAM
1158M: Thomas Huth <thuth@redhat.com>
1159S: Maintained
1160F: hw/nvram/chrp_nvram.c
1161F: include/hw/nvram/chrp_nvram.h
1162F: tests/prom-env-test.c
1163
Ben Warren42697d82017-02-16 15:15:40 -08001164VM Generation ID
1165M: Ben Warren <ben@skyportsystems.com>
1166S: Maintained
1167F: hw/acpi/vmgenid.c
1168F: include/hw/acpi/vmgenid.h
1169F: docs/specs/vmgenid.txt
1170F: tests/vmgenid-test.c
1171F: stubs/vmgenid.c
1172
Philippe Mathieu-Daudé747969d2017-06-29 12:03:08 -03001173Unimplemented device
1174M: Peter Maydell <peter.maydell@linaro.org>
1175R: Philippe Mathieu-Daudé <f4bug@amsat.org>
1176S: Maintained
1177F: include/hw/misc/unimp.h
1178F: hw/misc/unimp.c
1179
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001180Subsystems
1181----------
1182Audio
Gerd Hoffmann9f575842013-09-24 10:26:24 +02001183M: Gerd Hoffmann <kraxel@redhat.com>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001184S: Maintained
1185F: audio/
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01001186F: hw/audio/
Thomas Hutha2b245a2016-09-23 15:19:10 +02001187F: include/hw/audio/
Andreas Färberd7b50c02014-03-30 19:00:05 +02001188F: tests/ac97-test.c
Andreas Färber8fa74c92014-03-30 19:05:20 +02001189F: tests/es1370-test.c
Andreas Färberfbaf4452014-03-30 19:22:48 +02001190F: tests/intel-hda-test.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001191
Stefan Hajnoczi17f1e8f2015-04-29 15:13:29 +01001192Block layer core
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001193M: Kevin Wolf <kwolf@redhat.com>
Max Reitzc4189d82016-04-08 19:29:01 +02001194M: Max Reitz <mreitz@redhat.com>
Kevin Wolfc95e4c02015-04-30 15:15:13 +02001195L: qemu-block@nongnu.org
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001196S: Supported
1197F: block*
1198F: block/
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01001199F: hw/block/
Kevin Wolf4c346e02015-05-20 12:03:17 +02001200F: include/block/
Kevin Wolf46078762014-04-24 11:53:39 +02001201F: qemu-img*
1202F: qemu-io*
Kevin Wolf29242092014-10-21 17:43:17 +02001203F: tests/qemu-iotests/
Max Reitz8dd30c82017-04-28 18:55:17 +02001204F: util/qemu-progress.c
Stefan Hajnoczid48addd2013-11-06 16:06:25 +01001205T: git git://repo.or.cz/qemu/kevin.git block
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001206
Stefan Hajnoczid55053b2015-04-29 15:13:27 +01001207Block I/O path
1208M: Stefan Hajnoczi <stefanha@redhat.com>
Fam Zheng9ca30032016-04-05 17:38:25 +08001209M: Fam Zheng <famz@redhat.com>
Stefan Hajnoczid55053b2015-04-29 15:13:27 +01001210L: qemu-block@nongnu.org
1211S: Supported
Paolo Bonzini36c697b2017-05-03 12:30:23 +02001212F: util/async.c
1213F: util/aio-*.c
Stefan Hajnoczid55053b2015-04-29 15:13:27 +01001214F: block/io.c
1215F: migration/block*
Fam Zhenge1029ae2016-07-18 15:19:47 +08001216F: include/block/aio.h
Stefan Hajnoczid55053b2015-04-29 15:13:27 +01001217T: git git://github.com/stefanha/qemu.git block
1218
Paolo Bonzinie5b57282017-08-22 07:08:27 +02001219Block SCSI subsystem
1220M: Paolo Bonzini <pbonzini@redhat.com>
1221L: qemu-block@nongnu.org
1222S: Supported
1223F: include/scsi/*
1224F: scsi/*
1225
Jeff Cody280458a2015-03-06 12:16:06 -05001226Block Jobs
1227M: Jeff Cody <jcody@redhat.com>
1228L: qemu-block@nongnu.org
1229S: Supported
1230F: blockjob.c
1231F: include/block/blockjob.h
1232F: block/backup.c
1233F: block/commit.c
Jeff Cody77346022016-03-09 21:54:00 -05001234F: block/stream.c
Jeff Cody280458a2015-03-06 12:16:06 -05001235F: block/mirror.c
1236T: git git://github.com/codyprime/qemu-kvm-jtc.git block
1237
Markus Armbruster41202012015-05-20 13:23:46 +02001238Block QAPI, monitor, command line
1239M: Markus Armbruster <armbru@redhat.com>
1240S: Supported
1241F: blockdev.c
1242F: block/qapi.c
1243F: qapi/block*.json
Markus Armbrusterfa988e32017-08-24 21:14:02 +02001244F: qapi/transaction.json
Markus Armbruster41202012015-05-20 13:23:46 +02001245T: git git://repo.or.cz/qemu/armbru.git block-next
1246
John Snow538193b2016-08-04 14:18:51 -04001247Dirty Bitmaps
1248M: Fam Zheng <famz@redhat.com>
1249M: John Snow <jsnow@redhat.com>
1250L: qemu-block@nongnu.org
1251S: Supported
1252F: util/hbitmap.c
1253F: block/dirty-bitmap.c
1254F: include/qemu/hbitmap.h
1255F: include/block/dirty-bitmap.h
1256F: tests/test-hbitmap.c
1257F: docs/bitmaps.md
1258T: git git://github.com/famz/qemu.git bitmaps
1259T: git git://github.com/jnsnow/qemu.git bitmaps
1260
Paolo Bonzini61af0ee2015-09-22 11:40:00 +02001261Character device backends
Paolo Bonzinida26f372014-10-21 15:12:57 +02001262M: Paolo Bonzini <pbonzini@redhat.com>
Marc-André Lureau55fc84a2017-01-30 17:37:31 +04001263M: Marc-André Lureau <marcandre.lureau@redhat.com>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001264S: Maintained
Marc-André Lureau178fe0a2016-12-10 00:29:03 +03001265F: chardev/
Marc-André Lureau8228e352017-01-26 17:19:46 +04001266F: include/chardev/
Markus Armbrusterdbeee392017-08-24 21:13:58 +02001267F: qapi/char.json
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001268
Paolo Bonzinie26082f2014-10-22 14:53:32 +02001269Character Devices (Braille)
1270M: Samuel Thibault <samuel.thibault@ens-lyon.org>
1271S: Maintained
Marc-André Lureau6b10e572017-05-29 12:39:42 +04001272F: chardev/baum.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001273
Markus Armbrustere94630d2017-03-20 13:55:48 +01001274Command line option argument parsing
1275M: Markus Armbruster <armbru@redhat.com>
1276S: Supported
1277F: include/qemu/option.h
1278F: tests/test-keyval.c
1279F: tests/test-qemu-opts.c
1280F: util/keyval.c
1281F: util/qemu-option.c
1282
Markus Armbruster8c413e72015-01-28 11:29:57 +01001283Coverity model
1284M: Markus Armbruster <armbru@redhat.com>
1285S: Supported
1286F: scripts/coverity-model.c
1287
Andreas Färberf2ca0522012-09-17 19:10:32 +02001288CPU
Andreas Färber12b0e692016-05-25 17:21:59 +02001289L: qemu-devel@nongnu.org
Andreas Färberf2ca0522012-09-17 19:10:32 +02001290S: Supported
1291F: qom/cpu.c
Peter Maydell6e481d52013-06-24 11:49:32 +01001292F: include/qom/cpu.h
Andreas Färberf2ca0522012-09-17 19:10:32 +02001293
Peter A. G. Crosthwaited24b5692012-06-26 14:29:42 +10001294Device Tree
Alistair Francis4b46ba62015-08-25 15:45:06 +01001295M: Peter Crosthwaite <crosthwaite.peter@gmail.com>
Peter A. G. Crosthwaited24b5692012-06-26 14:29:42 +10001296M: Alexander Graf <agraf@suse.de>
1297S: Maintained
Thomas Huth82407512015-12-17 15:25:12 +01001298F: device_tree.c
1299F: include/sysemu/device_tree.h
Peter A. G. Crosthwaited24b5692012-06-26 14:29:42 +10001300
Markus Armbruster4f966762015-09-12 13:29:56 +02001301Error reporting
1302M: Markus Armbruster <armbru@redhat.com>
1303S: Supported
1304F: include/qapi/error.h
1305F: include/qemu/error-report.h
1306F: util/error.c
1307F: util/qemu-error.c
1308
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001309GDB stub
Paolo Bonzini5dd4a882014-10-22 10:53:22 +02001310L: qemu-devel@nongnu.org
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001311S: Odd Fixes
1312F: gdbstub*
1313F: gdb-xml/
1314
Paolo Bonzini01a9c032014-04-29 16:05:53 +02001315Memory API
1316M: Paolo Bonzini <pbonzini@redhat.com>
1317S: Supported
1318F: include/exec/ioport.h
1319F: ioport.c
1320F: include/exec/memory.h
Paolo Bonzini2b1641d2015-11-13 18:49:54 +01001321F: include/exec/ram_addr.h
Paolo Bonzini01a9c032014-04-29 16:05:53 +02001322F: memory.c
1323F: include/exec/memory-internal.h
1324F: exec.c
1325
Gerd Hoffmann7ee3bf02010-12-13 21:30:37 +01001326SPICE
1327M: Gerd Hoffmann <kraxel@redhat.com>
1328S: Supported
Peter Maydell6e481d52013-06-24 11:49:32 +01001329F: include/ui/qemu-spice.h
Thomas Huth438528a2016-02-25 10:36:06 +01001330F: include/ui/spice-display.h
Gerd Hoffmann7ee3bf02010-12-13 21:30:37 +01001331F: ui/spice-*.c
1332F: audio/spiceaudio.c
Paolo Bonzini8d8b6362013-02-04 15:19:30 +01001333F: hw/display/qxl*
Markus Armbruster608cfed2017-08-24 21:14:00 +02001334F: qapi/ui.json
Gerd Hoffmann7ee3bf02010-12-13 21:30:37 +01001335
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001336Graphics
Gerd Hoffmann25eccc32014-04-07 10:42:03 +02001337M: Gerd Hoffmann <kraxel@redhat.com>
1338S: Odd Fixes
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001339F: ui/
Thomas Huthe2206562016-02-25 10:36:07 +01001340F: include/ui/
Markus Armbruster608cfed2017-08-24 21:14:00 +02001341F: qapi/ui.json
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001342
Andreas Färber351f1bf2011-10-30 18:08:01 +01001343Cocoa graphics
Peter Maydell30ef3c72013-12-16 15:17:55 +00001344M: Peter Maydell <peter.maydell@linaro.org>
Andreas Färber351f1bf2011-10-30 18:08:01 +01001345S: Odd Fixes
1346F: ui/cocoa.m
1347
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001348Main loop
Paolo Bonzinida26f372014-10-21 15:12:57 +02001349M: Paolo Bonzini <pbonzini@redhat.com>
1350S: Maintained
1351F: cpus.c
Paolo Bonzini3ecb29a2017-05-03 13:59:09 +02001352F: util/main-loop.c
1353F: util/qemu-timer.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001354F: vl.c
Markus Armbruster0e201d32017-08-24 21:13:57 +02001355F: qapi/run-state.json
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001356
Luiz Capitulino8899b4a2013-06-03 11:14:26 -04001357Human Monitor (HMP)
Markus Armbrusterc833fb42016-09-28 19:33:41 +02001358M: Dr. David Alan Gilbert <dgilbert@redhat.com>
Luiz Capitulinofbb06212014-02-18 09:08:14 -05001359S: Maintained
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001360F: monitor.c
Thomas Huthc13e9912016-09-22 21:32:38 +02001361F: hmp.[ch]
1362F: hmp-commands*.hx
1363F: include/monitor/hmp-target.h
Thomas Huthbbcee372017-07-27 11:51:37 +02001364F: tests/test-hmp.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001365
Paolo Bonzinif536f112015-09-22 11:40:00 +02001366Network device backends
Stefan Hajnoczi442469e2015-01-20 15:40:38 +00001367M: Jason Wang <jasowang@redhat.com>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001368S: Maintained
1369F: net/
Thomas Huthd24b2b12016-02-25 12:56:24 +01001370F: include/net/
Jason Wang5fc51cc2015-09-16 11:05:30 +08001371T: git git://github.com/jasowang/qemu.git net
Markus Armbruster3c0bd372017-08-24 21:13:59 +02001372F: qapi/net.json
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001373
Vincenzo Maffioneaee09ba2013-11-06 18:34:55 +01001374Netmap network backend
1375M: Luigi Rizzo <rizzo@iet.unipi.it>
1376M: Giuseppe Lettieri <g.lettieri@iet.unipi.it>
1377M: Vincenzo Maffione <v.maffione@gmail.com>
1378W: http://info.iet.unipi.it/~luigi/netmap/
1379S: Maintained
1380F: net/netmap.c
1381
Eduardo Habkost2f54eb92015-04-08 08:34:33 -03001382NUMA
1383M: Eduardo Habkost <ehabkost@redhat.com>
1384S: Maintained
1385F: numa.c
1386F: include/sysemu/numa.h
Eduardo Habkost2f54eb92015-04-08 08:34:33 -03001387T: git git://github.com/ehabkost/qemu.git numa
1388
Eduardo Habkost4fc264f2016-08-01 10:52:42 -03001389Host Memory Backends
1390M: Eduardo Habkost <ehabkost@redhat.com>
1391M: Igor Mammedov <imammedo@redhat.com>
1392S: Maintained
1393F: backends/hostmem*.c
1394F: include/sysemu/hostmem.h
1395
Gonglei60340112016-10-28 16:33:31 +08001396Cryptodev Backends
1397M: Gonglei <arei.gonglei@huawei.com>
1398S: Maintained
1399F: include/sysemu/cryptodev*.h
1400F: backends/cryptodev*.c
1401
Luiz Capitulino8899b4a2013-06-03 11:14:26 -04001402QAPI
Luiz Capitulino97406182015-05-05 10:39:15 -04001403M: Markus Armbruster <armbru@redhat.com>
Luiz Capitulino8899b4a2013-06-03 11:14:26 -04001404M: Michael Roth <mdroth@linux.vnet.ibm.com>
Luiz Capitulino97406182015-05-05 10:39:15 -04001405S: Supported
Luiz Capitulino8899b4a2013-06-03 11:14:26 -04001406F: qapi/
Markus Armbruster0311c5b2015-06-12 15:15:54 +02001407X: qapi/*.json
Markus Armbrusterac4abb92015-09-24 18:11:57 +02001408F: include/qapi/
1409X: include/qapi/qmp/
1410F: include/qapi/qmp/dispatch.h
Paolo Bonzinic0bd0b52014-10-22 00:31:28 +02001411F: tests/qapi-schema/
Markus Armbrusterac4abb92015-09-24 18:11:57 +02001412F: tests/test-*-visitor.c
Markus Armbrustere94630d2017-03-20 13:55:48 +01001413F: tests/test-qapi-*.c
Markus Armbrusterac4abb92015-09-24 18:11:57 +02001414F: tests/test-qmp-*.c
Markus Armbrustere94630d2017-03-20 13:55:48 +01001415F: tests/test-visitor-serialization.c
Markus Armbruster0311c5b2015-06-12 15:15:54 +02001416F: scripts/qapi*
1417F: docs/qapi*
Luiz Capitulino97406182015-05-05 10:39:15 -04001418T: git git://repo.or.cz/qemu/armbru.git qapi-next
Luiz Capitulino8899b4a2013-06-03 11:14:26 -04001419
Luiz Capitulino7810d292013-06-03 11:11:53 -04001420QAPI Schema
1421M: Eric Blake <eblake@redhat.com>
Luiz Capitulino7810d292013-06-03 11:11:53 -04001422M: Markus Armbruster <armbru@redhat.com>
1423S: Supported
1424F: qapi-schema.json
Markus Armbruster0311c5b2015-06-12 15:15:54 +02001425F: qapi/*.json
Luiz Capitulino97406182015-05-05 10:39:15 -04001426T: git git://repo.or.cz/qemu/armbru.git qapi-next
Luiz Capitulino7810d292013-06-03 11:11:53 -04001427
Luiz Capitulinof3582ba2014-10-22 08:54:59 -04001428QObject
Markus Armbrusterdaf5dc72016-09-28 19:33:42 +02001429M: Markus Armbruster <armbru@redhat.com>
1430S: Supported
Luiz Capitulinof3582ba2014-10-22 08:54:59 -04001431F: qobject/
Markus Armbruster7735d2b2015-09-24 18:11:56 +02001432F: include/qapi/qmp/
1433X: include/qapi/qmp/dispatch.h
Eric Blakea2f34532017-04-27 16:58:14 -05001434F: scripts/coccinelle/qobject.cocci
Markus Armbruster7735d2b2015-09-24 18:11:56 +02001435F: tests/check-qdict.c
Marc-André Lureau01b2ffc2017-06-07 20:35:58 +04001436F: tests/check-qnum.c
Markus Armbruster7735d2b2015-09-24 18:11:56 +02001437F: tests/check-qjson.c
1438F: tests/check-qlist.c
1439F: tests/check-qstring.c
Markus Armbrusterdaf5dc72016-09-28 19:33:42 +02001440T: git git://repo.or.cz/qemu/armbru.git qapi-next
Luiz Capitulinof3582ba2014-10-22 08:54:59 -04001441
Michael Rothf05d9992014-10-22 07:05:36 -05001442QEMU Guest Agent
1443M: Michael Roth <mdroth@linux.vnet.ibm.com>
1444S: Maintained
1445F: qga/
1446T: git git://github.com/mdroth/qemu.git qga
1447
Andreas Färber4688c942014-04-24 15:00:14 +02001448QOM
Andreas Färber4688c942014-04-24 15:00:14 +02001449M: Andreas Färber <afaerber@suse.de>
1450S: Supported
1451T: git git://github.com/afaerber/qemu-cpu.git qom-next
1452F: include/qom/
1453X: include/qom/cpu.h
1454F: qom/
1455X: qom/cpu.c
Andreas Färber9f4aa7c2015-11-18 19:03:29 +01001456F: tests/check-qom-interface.c
1457F: tests/check-qom-proplist.c
Andreas Färber4688c942014-04-24 15:00:14 +02001458F: tests/qom-test.c
1459
Luiz Capitulino8899b4a2013-06-03 11:14:26 -04001460QMP
Luiz Capitulino97406182015-05-05 10:39:15 -04001461M: Markus Armbruster <armbru@redhat.com>
1462S: Supported
Luiz Capitulino8899b4a2013-06-03 11:14:26 -04001463F: qmp.c
1464F: monitor.c
Markus Armbruster9b89b6a2015-09-24 18:11:55 +02001465F: docs/*qmp-*
Luiz Capitulino97406182015-05-05 10:39:15 -04001466F: scripts/qmp/
Markus Armbrusterf66e7ac2017-03-03 13:32:23 +01001467F: tests/qmp-test.c
Luiz Capitulino97406182015-05-05 10:39:15 -04001468T: git git://repo.or.cz/qemu/armbru.git qapi-next
Luiz Capitulino8899b4a2013-06-03 11:14:26 -04001469
Alistair Franciscc0100f2016-07-28 09:55:39 -07001470Register API
1471M: Alistair Francis <alistair.francis@xilinx.com>
1472S: Maintained
1473F: hw/core/register.c
1474F: include/hw/register.h
1475
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001476SLIRP
Samuel Thibaulteda509f2015-08-06 13:10:14 +02001477M: Samuel Thibault <samuel.thibault@ens-lyon.org>
Jan Kiszkabafc72a2011-07-27 14:21:32 +02001478M: Jan Kiszka <jan.kiszka@siemens.com>
1479S: Maintained
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001480F: slirp/
Thomas Huth663fb1e2015-12-15 09:48:15 +01001481F: net/slirp.c
Thomas Huthd24b2b12016-02-25 12:56:24 +01001482F: include/net/slirp.h
Andreas Färber1ab09a42012-04-13 18:03:42 +02001483T: git git://git.kiszka.org/qemu.git queues/slirp
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001484
Paolo Bonzinib1ed7282016-08-24 16:04:56 +02001485Stubs
1486M: Paolo Bonzini <pbonzini@redhat.com>
1487S: Maintained
1488F: stubs/
1489
Stefan Hajnoczi598a3f32011-09-03 16:24:47 +01001490Tracing
Stefan Hajnoczi1cd0f8c2012-10-07 18:08:49 +02001491M: Stefan Hajnoczi <stefanha@redhat.com>
Stefan Hajnoczi598a3f32011-09-03 16:24:47 +01001492S: Maintained
1493F: trace/
Lluís Vilanovaf70fd8f2012-04-03 20:48:17 +02001494F: scripts/tracetool.py
1495F: scripts/tracetool/
Andreas Färberf922ea42012-03-10 13:37:34 +01001496F: docs/tracing.txt
Andreas Färber1ab09a42012-04-13 18:03:42 +02001497T: git git://github.com/stefanha/qemu.git tracing
Stefan Hajnoczi598a3f32011-09-03 16:24:47 +01001498
Markus Armbruster3859b6c2017-08-24 21:14:03 +02001499TPM
1500S: Orphan
1501F: tpm.c
1502F: hw/tpm/*
1503F: include/hw/acpi/tpm.h
1504F: include/sysemu/tpm*
1505F: qapi/tpm.json
1506
Blue Swirl14f40fd2011-11-26 09:51:23 +00001507Checkpatch
Blue Swirl14f40fd2011-11-26 09:51:23 +00001508S: Odd Fixes
1509F: scripts/checkpatch.pl
1510
Juan Quintelac0787c82014-10-15 10:34:50 +02001511Migration
1512M: Juan Quintela <quintela@redhat.com>
Dr. David Alan Gilbertd7fc72c2017-01-24 10:04:37 +00001513M: Dr. David Alan Gilbert <dgilbert@redhat.com>
Juan Quintelac0787c82014-10-15 10:34:50 +02001514S: Maintained
1515F: include/migration/
Dr. David Alan Gilbert44a1f942014-12-12 11:13:42 +00001516F: migration/
Amit Shahc5515642014-11-18 18:01:25 +05301517F: scripts/vmstate-static-checker.py
1518F: tests/vmstate-static-checker-data/
Thomas Hutha609ad82016-02-25 10:47:49 +01001519F: docs/migration.txt
Markus Armbruster48685a82017-08-24 21:14:01 +02001520F: qapi/migration.json
Juan Quintelac0787c82014-10-15 10:34:50 +02001521
Eduardo Otubo92bfedb2013-09-09 14:04:15 -03001522Seccomp
otubo064983c2017-06-22 09:58:00 +02001523M: Eduardo Otubo <otubo@redhat.com>
Eduardo Otubo92bfedb2013-09-09 14:04:15 -03001524S: Supported
1525F: qemu-seccomp.c
1526F: include/sysemu/seccomp.h
1527
Daniel P. Berrangeddbb0d02015-07-01 18:10:29 +01001528Cryptography
1529M: Daniel P. Berrange <berrange@redhat.com>
1530S: Maintained
1531F: crypto/
1532F: include/crypto/
1533F: tests/test-crypto-*
Daniel P. Berrange899833c2017-03-16 11:18:46 +00001534F: qemu.sasl
Daniel P. Berrangeddbb0d02015-07-01 18:10:29 +01001535
Daniel P. Berrange10817bf2015-09-01 14:48:02 +01001536Coroutines
1537M: Stefan Hajnoczi <stefanha@redhat.com>
1538M: Kevin Wolf <kwolf@redhat.com>
1539F: util/*coroutine*
1540F: include/qemu/coroutine*
1541F: tests/test-coroutine.c
1542
Daniel P. Berrange88c5f202015-03-03 17:13:42 +00001543Buffers
1544M: Daniel P. Berrange <berrange@redhat.com>
1545S: Odd fixes
1546F: util/buffer.c
1547F: include/qemu/buffer.h
1548
Daniel P. Berrange666a3af2015-02-27 16:19:33 +00001549I/O Channels
1550M: Daniel P. Berrange <berrange@redhat.com>
1551S: Maintained
1552F: io/
1553F: include/io/
1554F: tests/test-io-*
1555
Gerd Hoffmann5614a282016-01-18 16:03:23 +01001556Sockets
1557M: Daniel P. Berrange <berrange@redhat.com>
1558M: Gerd Hoffmann <kraxel@redhat.com>
1559M: Paolo Bonzini <pbonzini@redhat.com>
1560S: Maintained
1561F: include/qemu/sockets.h
1562F: util/qemu-sockets.c
Markus Armbrustera2ff5a42017-08-24 21:13:56 +02001563F: qapi/sockets.json
Gerd Hoffmann5614a282016-01-18 16:03:23 +01001564
Alberto Garciad310d852016-02-18 12:27:10 +02001565Throttling infrastructure
1566M: Alberto Garcia <berto@igalia.com>
1567S: Supported
1568F: block/throttle-groups.c
1569F: include/block/throttle-groups.h
1570F: include/qemu/throttle.h
1571F: util/throttle.c
1572L: qemu-block@nongnu.org
1573
Fam Zheng080d7aa2016-09-21 12:27:25 +08001574UUID
1575M: Fam Zheng <famz@redhat.com>
1576S: Supported
1577F: util/uuid.c
1578F: include/qemu/uuid.h
1579F: tests/test-uuid.c
1580
zhanghailianga4cc3182016-10-27 14:43:09 +08001581COLO Framework
1582M: zhanghailiang <zhang.zhanghailiang@huawei.com>
1583S: Maintained
1584F: migration/colo*
1585F: include/migration/colo.h
1586F: include/migration/failover.h
1587F: docs/COLO-FT.txt
1588
Zhang Chen88f82ed2016-09-27 10:22:35 +08001589COLO Proxy
Zhang Chenb38576c2017-08-23 16:51:57 +08001590M: Zhang Chen <zhangckid@gmail.com>
Zhang Chen88f82ed2016-09-27 10:22:35 +08001591M: Li Zhijian <lizhijian@cn.fujitsu.com>
1592S: Supported
1593F: docs/colo-proxy.txt
1594F: net/colo*
1595F: net/filter-rewriter.c
1596F: net/filter-mirror.c
1597
Pavel Dovgalyuk62258202017-05-03 14:33:04 +03001598Record/replay
1599M: Pavel Dovgalyuk <pavel.dovgaluk@ispras.ru>
1600R: Paolo Bonzini <pbonzini@redhat.com>
1601W: http://wiki.qemu.org/Features/record-replay
1602S: Supported
1603F: replay/*
1604F: block/blkreplay.c
1605F: net/filter-replay.c
1606F: include/sysemu/replay.h
1607F: docs/replay.txt
1608F: stubs/replay.c
1609
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001610Usermode Emulation
1611------------------
Paolo Bonzini486bbe52014-10-22 00:18:01 +02001612Overall
1613M: Riku Voipio <riku.voipio@iki.fi>
1614S: Maintained
1615F: thunk.c
Philippe Mathieu-Daudé58410662017-09-11 18:33:25 -03001616F: accel/tcg/user-exec*.c
Paolo Bonzini486bbe52014-10-22 00:18:01 +02001617
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001618BSD user
Markus Armbruster297e8002016-06-20 16:19:25 +02001619S: Orphan
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001620F: bsd-user/
Thomas Huthccf0a572016-09-30 09:07:15 +02001621F: default-configs/*-bsd-user.mak
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001622
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001623Linux user
1624M: Riku Voipio <riku.voipio@iki.fi>
Laurent Vivierecc1f5a2017-05-10 17:39:50 +02001625R: Laurent Vivier <laurent@vivier.eu>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05001626S: Maintained
1627F: linux-user/
Thomas Huthccf0a572016-09-30 09:07:15 +02001628F: default-configs/*-linux-user.mak
Aurelien Jarno42f5a7e2011-01-14 20:39:19 +01001629
1630Tiny Code Generator (TCG)
1631-------------------------
1632Common code
Richard Hendersoncc7772b2013-07-03 11:09:03 -07001633M: Richard Henderson <rth@twiddle.net>
Aurelien Jarno42f5a7e2011-01-14 20:39:19 +01001634S: Maintained
1635F: tcg/
1636
Claudio Fontanab25a4642013-06-12 16:20:24 +01001637AArch64 target
1638M: Claudio Fontana <claudio.fontana@huawei.com>
1639M: Claudio Fontana <claudio.fontana@gmail.com>
1640S: Maintained
Peter Maydellb4f2bd12015-11-03 13:49:42 +00001641L: qemu-arm@nongnu.org
Claudio Fontanab25a4642013-06-12 16:20:24 +01001642F: tcg/aarch64/
Paolo Bonzinic17652e2015-09-22 11:36:16 +02001643F: disas/arm-a64.cc
1644F: disas/libvixl/
Claudio Fontanab25a4642013-06-12 16:20:24 +01001645
Aurelien Jarno42f5a7e2011-01-14 20:39:19 +01001646ARM target
1647M: Andrzej Zaborowski <balrogg@gmail.com>
1648S: Maintained
Peter Maydellb4f2bd12015-11-03 13:49:42 +00001649L: qemu-arm@nongnu.org
Aurelien Jarno42f5a7e2011-01-14 20:39:19 +01001650F: tcg/arm/
Paolo Bonzinic17652e2015-09-22 11:36:16 +02001651F: disas/arm.c
Aurelien Jarno42f5a7e2011-01-14 20:39:19 +01001652
Aurelien Jarno42f5a7e2011-01-14 20:39:19 +01001653i386 target
Paolo Bonzini5dd4a882014-10-22 10:53:22 +02001654L: qemu-devel@nongnu.org
Aurelien Jarno42f5a7e2011-01-14 20:39:19 +01001655S: Maintained
1656F: tcg/i386/
Paolo Bonzinic17652e2015-09-22 11:36:16 +02001657F: disas/i386.c
Aurelien Jarno42f5a7e2011-01-14 20:39:19 +01001658
Aurelien Jarno42f5a7e2011-01-14 20:39:19 +01001659MIPS target
Peter Maydelld6eec7a2011-06-22 15:45:01 +01001660M: Aurelien Jarno <aurelien@aurel32.net>
Aurelien Jarno42f5a7e2011-01-14 20:39:19 +01001661S: Maintained
1662F: tcg/mips/
Paolo Bonzinic17652e2015-09-22 11:36:16 +02001663F: disas/mips.c
Aurelien Jarno42f5a7e2011-01-14 20:39:19 +01001664
1665PPC
Pranith Kumar15610d42016-10-18 10:21:00 -07001666M: Richard Henderson <rth@twiddle.net>
1667S: Odd Fixes
Aurelien Jarno42f5a7e2011-01-14 20:39:19 +01001668F: tcg/ppc/
Paolo Bonzinic17652e2015-09-22 11:36:16 +02001669F: disas/ppc.c
Aurelien Jarno42f5a7e2011-01-14 20:39:19 +01001670
1671S390 target
1672M: Alexander Graf <agraf@suse.de>
1673M: Richard Henderson <rth@twiddle.net>
1674S: Maintained
1675F: tcg/s390/
Paolo Bonzinic17652e2015-09-22 11:36:16 +02001676F: disas/s390.c
Aurelien Jarno42f5a7e2011-01-14 20:39:19 +01001677
1678SPARC target
Markus Armbruster297e8002016-06-20 16:19:25 +02001679S: Odd Fixes
Aurelien Jarno42f5a7e2011-01-14 20:39:19 +01001680F: tcg/sparc/
Paolo Bonzinic17652e2015-09-22 11:36:16 +02001681F: disas/sparc.c
Stefan Weilbc75c9e2011-11-24 23:20:43 +01001682
1683TCI target
1684M: Stefan Weil <sw@weilnetz.de>
1685S: Maintained
Andreas Färber8ef9cd52012-04-13 17:22:03 +02001686F: tcg/tci/
Philippe Mathieu-Daudé752a2ae2017-06-29 12:03:07 -03001687F: tcg/tci.c
Paolo Bonzinic17652e2015-09-22 11:36:16 +02001688F: disas/tci.c
Andreas Färberaa09c952012-04-13 17:52:27 +02001689
Stefan Hajnoczif05b3282013-11-13 10:33:10 +01001690Block drivers
1691-------------
1692VMDK
1693M: Fam Zheng <famz@redhat.com>
Kevin Wolfc95e4c02015-04-30 15:15:13 +02001694L: qemu-block@nongnu.org
Stefan Hajnoczif05b3282013-11-13 10:33:10 +01001695S: Supported
1696F: block/vmdk.c
1697
1698RBD
Josh Durgin5a8ac6d2015-06-10 20:28:44 -07001699M: Josh Durgin <jdurgin@redhat.com>
Jeff Cody280458a2015-03-06 12:16:06 -05001700M: Jeff Cody <jcody@redhat.com>
1701L: qemu-block@nongnu.org
Stefan Hajnoczif05b3282013-11-13 10:33:10 +01001702S: Supported
1703F: block/rbd.c
Jeff Cody280458a2015-03-06 12:16:06 -05001704T: git git://github.com/codyprime/qemu-kvm-jtc.git block
Stefan Hajnoczif05b3282013-11-13 10:33:10 +01001705
1706Sheepdog
MORITA Kazutaka53b33232014-09-03 22:13:17 +09001707M: Hitoshi Mitake <mitake.hitoshi@lab.ntt.co.jp>
Stefan Hajnoczif05b3282013-11-13 10:33:10 +01001708M: Liu Yuan <namei.unix@gmail.com>
Jeff Cody280458a2015-03-06 12:16:06 -05001709M: Jeff Cody <jcody@redhat.com>
1710L: qemu-block@nongnu.org
Liu Yuandce32b62013-11-20 15:51:59 +08001711L: sheepdog@lists.wpkg.org
Stefan Hajnoczif05b3282013-11-13 10:33:10 +01001712S: Supported
1713F: block/sheepdog.c
Jeff Cody280458a2015-03-06 12:16:06 -05001714T: git git://github.com/codyprime/qemu-kvm-jtc.git block
Stefan Hajnoczif05b3282013-11-13 10:33:10 +01001715
1716VHDX
1717M: Jeff Cody <jcody@redhat.com>
Jeff Cody280458a2015-03-06 12:16:06 -05001718L: qemu-block@nongnu.org
Stefan Hajnoczif05b3282013-11-13 10:33:10 +01001719S: Supported
1720F: block/vhdx*
Jeff Cody280458a2015-03-06 12:16:06 -05001721T: git git://github.com/codyprime/qemu-kvm-jtc.git block
Stefan Hajnoczif05b3282013-11-13 10:33:10 +01001722
1723VDI
1724M: Stefan Weil <sw@weilnetz.de>
Kevin Wolfc95e4c02015-04-30 15:15:13 +02001725L: qemu-block@nongnu.org
Stefan Hajnoczif05b3282013-11-13 10:33:10 +01001726S: Maintained
1727F: block/vdi.c
1728
1729iSCSI
1730M: Ronnie Sahlberg <ronniesahlberg@gmail.com>
1731M: Paolo Bonzini <pbonzini@redhat.com>
1732M: Peter Lieven <pl@kamp.de>
Kevin Wolfc95e4c02015-04-30 15:15:13 +02001733L: qemu-block@nongnu.org
Stefan Hajnoczif05b3282013-11-13 10:33:10 +01001734S: Supported
1735F: block/iscsi.c
Peter Lieven2deb63c2017-01-24 13:49:21 +01001736F: block/iscsi-opts.c
Stefan Hajnoczif05b3282013-11-13 10:33:10 +01001737
Eric Blake99c62e72017-07-07 13:21:51 -05001738Network Block Device (NBD)
1739M: Eric Blake <eblake@redhat.com>
1740M: Paolo Bonzini <pbonzini@redhat.com>
1741L: qemu-block@nongnu.org
1742S: Maintained
1743F: block/nbd*
1744F: nbd/
1745F: include/block/nbd*
1746F: qemu-nbd.*
1747F: blockdev-nbd.c
1748T: git git://repo.or.cz/qemu/ericb.git nbd
1749
Peter Lieven6542aa92014-02-03 10:26:13 +01001750NFS
Jeff Cody280458a2015-03-06 12:16:06 -05001751M: Jeff Cody <jcody@redhat.com>
Peter Lieven6542aa92014-02-03 10:26:13 +01001752M: Peter Lieven <pl@kamp.de>
Jeff Cody280458a2015-03-06 12:16:06 -05001753L: qemu-block@nongnu.org
Peter Lieven6542aa92014-02-03 10:26:13 +01001754S: Maintained
1755F: block/nfs.c
Jeff Cody280458a2015-03-06 12:16:06 -05001756T: git git://github.com/codyprime/qemu-kvm-jtc.git block
Peter Lieven6542aa92014-02-03 10:26:13 +01001757
Stefan Hajnoczif05b3282013-11-13 10:33:10 +01001758SSH
1759M: Richard W.M. Jones <rjones@redhat.com>
Jeff Cody280458a2015-03-06 12:16:06 -05001760M: Jeff Cody <jcody@redhat.com>
1761L: qemu-block@nongnu.org
Stefan Hajnoczif05b3282013-11-13 10:33:10 +01001762S: Supported
1763F: block/ssh.c
Jeff Cody280458a2015-03-06 12:16:06 -05001764T: git git://github.com/codyprime/qemu-kvm-jtc.git block
Chrysostomos Nanakosc9a12e72014-08-04 17:35:32 +03001765
Jeff Cody280458a2015-03-06 12:16:06 -05001766CURL
1767M: Jeff Cody <jcody@redhat.com>
1768L: qemu-block@nongnu.org
1769S: Supported
1770F: block/curl.c
1771T: git git://github.com/codyprime/qemu-kvm-jtc.git block
1772
1773GLUSTER
1774M: Jeff Cody <jcody@redhat.com>
1775L: qemu-block@nongnu.org
1776S: Supported
1777F: block/gluster.c
1778T: git git://github.com/codyprime/qemu-kvm-jtc.git block
Gongleib5e94762014-10-22 11:07:57 +08001779
Fam Zheng199667a2015-04-01 09:45:40 +08001780Null Block Driver
1781M: Fam Zheng <famz@redhat.com>
1782L: qemu-block@nongnu.org
1783S: Supported
1784F: block/null.c
1785
Gongleib5e94762014-10-22 11:07:57 +08001786Bootdevice
1787M: Gonglei <arei.gonglei@huawei.com>
1788S: Maintained
1789F: bootdevice.c
Alberto Garciaecdda9e2015-03-16 18:22:05 +02001790
1791Quorum
1792M: Alberto Garcia <berto@igalia.com>
1793S: Supported
1794F: block/quorum.c
1795L: qemu-block@nongnu.org
Stefan Hajnoczie7c6e632015-04-29 15:13:26 +01001796
1797blkverify
1798M: Stefan Hajnoczi <stefanha@redhat.com>
1799L: qemu-block@nongnu.org
1800S: Supported
1801F: block/blkverify.c
1802
1803bochs
1804M: Stefan Hajnoczi <stefanha@redhat.com>
1805L: qemu-block@nongnu.org
1806S: Supported
1807F: block/bochs.c
1808
1809cloop
1810M: Stefan Hajnoczi <stefanha@redhat.com>
1811L: qemu-block@nongnu.org
1812S: Supported
1813F: block/cloop.c
1814
1815dmg
1816M: Stefan Hajnoczi <stefanha@redhat.com>
1817L: qemu-block@nongnu.org
1818S: Supported
1819F: block/dmg.c
1820
1821parallels
1822M: Stefan Hajnoczi <stefanha@redhat.com>
Denis V. Lunevf3073712015-08-21 20:44:16 +03001823M: Denis V. Lunev <den@openvz.org>
Stefan Hajnoczie7c6e632015-04-29 15:13:26 +01001824L: qemu-block@nongnu.org
1825S: Supported
1826F: block/parallels.c
Vladimir Sementsov-Ogievskiyb4a9e252015-11-27 15:20:06 +03001827F: docs/specs/parallels.txt
Stefan Hajnoczie7c6e632015-04-29 15:13:26 +01001828
1829qed
1830M: Stefan Hajnoczi <stefanha@redhat.com>
1831L: qemu-block@nongnu.org
1832S: Supported
1833F: block/qed.c
1834
1835raw
1836M: Kevin Wolf <kwolf@redhat.com>
1837L: qemu-block@nongnu.org
1838S: Supported
1839F: block/linux-aio.c
Markus Armbrusterf586d5f2016-09-05 14:28:52 +02001840F: include/block/raw-aio.h
Eric Blake2e6fc7e2016-12-02 13:48:53 -06001841F: block/raw-format.c
Eric Blakec1bb86c2016-12-02 13:48:54 -06001842F: block/file-posix.c
1843F: block/file-win32.c
Stefan Hajnoczie7c6e632015-04-29 15:13:26 +01001844F: block/win32-aio.c
1845
1846qcow2
1847M: Kevin Wolf <kwolf@redhat.com>
Max Reitzc4189d82016-04-08 19:29:01 +02001848M: Max Reitz <mreitz@redhat.com>
Stefan Hajnoczie7c6e632015-04-29 15:13:26 +01001849L: qemu-block@nongnu.org
1850S: Supported
1851F: block/qcow2*
1852
1853qcow
1854M: Kevin Wolf <kwolf@redhat.com>
1855L: qemu-block@nongnu.org
1856S: Supported
1857F: block/qcow.c
1858
1859blkdebug
1860M: Kevin Wolf <kwolf@redhat.com>
Max Reitzc4189d82016-04-08 19:29:01 +02001861M: Max Reitz <mreitz@redhat.com>
Stefan Hajnoczie7c6e632015-04-29 15:13:26 +01001862L: qemu-block@nongnu.org
1863S: Supported
1864F: block/blkdebug.c
1865
1866vpc
1867M: Kevin Wolf <kwolf@redhat.com>
1868L: qemu-block@nongnu.org
1869S: Supported
1870F: block/vpc.c
1871
1872vvfat
1873M: Kevin Wolf <kwolf@redhat.com>
1874L: qemu-block@nongnu.org
1875S: Supported
1876F: block/vvfat.c
Stefan Hajnocziabfe4e92015-04-29 15:13:28 +01001877
1878Image format fuzzer
1879M: Stefan Hajnoczi <stefanha@redhat.com>
1880L: qemu-block@nongnu.org
1881S: Supported
1882F: tests/image-fuzzer/
Daniel P. Berrange717171b2015-09-24 14:41:38 +01001883
Changlong Xie049105a2016-07-27 15:01:53 +08001884Replication
Changlong Xie205f8612017-04-18 11:08:13 +08001885M: Wen Congyang <wencongyang2@huawei.com>
Zhang Chen3ccc0a02017-04-21 15:12:47 +08001886M: Xie Changlong <xiechanglong.d@gmail.com>
Changlong Xie049105a2016-07-27 15:01:53 +08001887S: Supported
1888F: replication*
1889F: block/replication.c
1890F: tests/test-replication.c
1891F: docs/block-replication.txt
1892
Alex Bennéeb9e02c02016-01-31 17:32:39 +00001893Build and test automation
1894-------------------------
1895M: Alex Bennée <alex.bennee@linaro.org>
Alex Bennéee70dc7f2017-02-20 10:51:39 +00001896M: Fam Zheng <famz@redhat.com>
Philippe Mathieu-Daudé32b9ca92017-06-02 15:56:30 -03001897R: Philippe Mathieu-Daudé <f4bug@amsat.org>
Alex Bennéeb9e02c02016-01-31 17:32:39 +00001898L: qemu-devel@nongnu.org
Alex Bennéee70dc7f2017-02-20 10:51:39 +00001899S: Maintained
Alex Bennéeb9e02c02016-01-31 17:32:39 +00001900F: .travis.yml
Alex Bennéed92d8862017-02-20 10:51:38 +00001901F: .shippable.yml
Alex Bennéee70dc7f2017-02-20 10:51:39 +00001902F: tests/docker/
1903W: https://travis-ci.org/qemu/qemu
Philippe Mathieu-Daudé2a747002017-06-02 15:56:29 -03001904W: https://app.shippable.com/github/qemu/qemu
Alex Bennéee70dc7f2017-02-20 10:51:39 +00001905W: http://patchew.org/QEMU/
Daniel P. Berrange717171b2015-09-24 14:41:38 +01001906
1907Documentation
1908-------------
1909Build system architecture
1910M: Daniel P. Berrange <berrange@redhat.com>
1911S: Odd Fixes
1912F: docs/build-system.txt
Fam Zheng8a49e972016-06-01 12:25:28 +08001913