xref: /openbmc/qemu/MAINTAINERS (revision 87a9023a)
1b6f97c14SbellardQEMU Maintainers
2b6f97c14Sbellard================
3b6f97c14Sbellard
4fd5d5c56SAnthony LiguoriThe intention of this file is not to establish who owns what portions of the
5fd5d5c56SAnthony Liguoricode base, but to provide a set of names that developers can consult when they
6fd5d5c56SAnthony Liguorihave a question about a particular subset and also to provide a set of names
7fd5d5c56SAnthony Liguorito be CC'd when submitting a patch to obtain appropriate review.
83cd9acb4Sbellard
9fd5d5c56SAnthony LiguoriIn general, if you have a question about inclusion of a patch, you should
10fd5d5c56SAnthony Liguoriconsult qemu-devel and not any specific individual privately.
11b6f97c14Sbellard
12fd5d5c56SAnthony LiguoriDescriptions of section entries:
13b6f97c14Sbellard
14fd5d5c56SAnthony Liguori	M: Mail patches to: FullName <address@domain>
15fd5d5c56SAnthony Liguori	L: Mailing list that is relevant to this area
16fd5d5c56SAnthony Liguori	W: Web-page with status/info
17fd5d5c56SAnthony Liguori	Q: Patchwork web based patch tracking system site
18fd5d5c56SAnthony Liguori	T: SCM tree type and location.  Type is one of: git, hg, quilt, stgit.
19fd5d5c56SAnthony Liguori	S: Status, one of the following:
20fd5d5c56SAnthony Liguori	   Supported:	Someone is actually paid to look after this.
21fd5d5c56SAnthony Liguori	   Maintained:	Someone actually looks after it.
22fd5d5c56SAnthony Liguori	   Odd Fixes:	It has a maintainer but they don't have time to do
23c91bbffbSPeter Maydell			much other than throw the odd patch in. See below.
24fd5d5c56SAnthony Liguori	   Orphan:	No current maintainer [but maybe you could take the
25fd5d5c56SAnthony Liguori			role as you write your new code].
26fd5d5c56SAnthony Liguori	   Obsolete:	Old code. Something tagged obsolete generally means
27fd5d5c56SAnthony Liguori			it has been replaced by a better system and you
28fd5d5c56SAnthony Liguori			should be using that.
29fd5d5c56SAnthony Liguori	F: Files and directories with wildcard patterns.
30fd5d5c56SAnthony Liguori	   A trailing slash includes all files and subdirectory files.
31fd5d5c56SAnthony Liguori	   F:	drivers/net/	all files in and below drivers/net
32fd5d5c56SAnthony Liguori	   F:	drivers/net/*	all files in drivers/net, but not below
33fd5d5c56SAnthony Liguori	   F:	*/net/*		all files in "any top level directory"/net
34fd5d5c56SAnthony Liguori	   One pattern per line.  Multiple F: lines acceptable.
35fd5d5c56SAnthony Liguori	X: Files and directories that are NOT maintained, same rules as F:
36fd5d5c56SAnthony Liguori	   Files exclusions are tested before file matches.
37fd5d5c56SAnthony Liguori	   Can be useful for excluding a specific subdirectory, for instance:
38fd5d5c56SAnthony Liguori	   F:	net/
39fd5d5c56SAnthony Liguori	   X:	net/ipv6/
40fd5d5c56SAnthony Liguori	   matches all files in and below net excluding net/ipv6/
41fd5d5c56SAnthony Liguori	K: Keyword perl extended regex pattern to match content in a
42fd5d5c56SAnthony Liguori	   patch or file.  For instance:
43fd5d5c56SAnthony Liguori	   K: of_get_profile
44fd5d5c56SAnthony Liguori	      matches patches or files that contain "of_get_profile"
45fd5d5c56SAnthony Liguori	   K: \b(printk|pr_(info|err))\b
46fd5d5c56SAnthony Liguori	      matches patches or files that contain one or more of the words
47fd5d5c56SAnthony Liguori	      printk, pr_info or pr_err
48fd5d5c56SAnthony Liguori	   One regex pattern per line.  Multiple K: lines acceptable.
49b6f97c14Sbellard
50b6f97c14Sbellard
51fd5d5c56SAnthony LiguoriGeneral Project Administration
52fd5d5c56SAnthony Liguori------------------------------
53ff0d4876SPeter MaydellM: Peter Maydell <peter.maydell@linaro.org>
54fd5d5c56SAnthony Liguori
55c9a19d5bSStephen WarrenAll patches CC here
56c9a19d5bSStephen WarrenL: qemu-devel@nongnu.org
57c9a19d5bSStephen WarrenF: *
58c9a19d5bSStephen WarrenF: */
59c9a19d5bSStephen Warren
6062622c11SMichael S. TsirkinResponsible Disclosure, Reporting Security Issues
6162622c11SMichael S. Tsirkin------------------------------
6262622c11SMichael S. TsirkinW: http://wiki.qemu.org/SecurityProcess
6362622c11SMichael S. TsirkinM: Michael S. Tsirkin <mst@redhat.com>
6462622c11SMichael S. TsirkinL: secalert@redhat.com
6562622c11SMichael S. Tsirkin
66936c2230SLaurent VivierTrivial patches
67936c2230SLaurent Vivier---------------
68936c2230SLaurent VivierTrivial patches
69936c2230SLaurent VivierM: Michael Tokarev <mjt@tls.msk.ru>
70936c2230SLaurent VivierM: Laurent Vivier <laurent@vivier.eu>
71936c2230SLaurent VivierS: Maintained
72936c2230SLaurent VivierL: qemu-trivial@nongnu.org
73936c2230SLaurent VivierK: ^Subject:.*(?i)trivial
74936c2230SLaurent VivierT: git git://git.corpit.ru/qemu.git trivial-patches
75936c2230SLaurent VivierT: git git://github.com/vivier/qemu.git trivial-patches
76936c2230SLaurent Vivier
77fd5d5c56SAnthony LiguoriGuest CPU cores (TCG):
78fd5d5c56SAnthony Liguori----------------------
79486bbe5fSPaolo BonziniOverall
805dd4a88cSPaolo BonziniL: qemu-devel@nongnu.org
812b1641d0SPaolo BonziniM: Paolo Bonzini <pbonzini@redhat.com>
822b1641d0SPaolo BonziniM: Peter Crosthwaite <crosthwaite.peter@gmail.com>
832b1641d0SPaolo BonziniM: Richard Henderson <rth@twiddle.net>
842b1641d0SPaolo BonziniS: Maintained
85486bbe5fSPaolo BonziniF: cpu-exec.c
862b1641d0SPaolo BonziniF: cpu-exec-common.c
872b1641d0SPaolo BonziniF: cpus.c
88486bbe5fSPaolo BonziniF: cputlb.c
892b1641d0SPaolo BonziniF: exec.c
90486bbe5fSPaolo BonziniF: softmmu_template.h
912b1641d0SPaolo BonziniF: translate-all.*
922b1641d0SPaolo BonziniF: translate-common.c
932b1641d0SPaolo BonziniF: include/exec/cpu*.h
942b1641d0SPaolo BonziniF: include/exec/exec-all.h
95486bbe5fSPaolo BonziniF: include/exec/helper*.h
962b1641d0SPaolo BonziniF: include/exec/tb-hash.h
97460423d3SThomas HuthF: include/sysemu/cpus.h
98486bbe5fSPaolo Bonzini
991badb586SPeter MaydellFPU emulation
1001badb586SPeter MaydellM: Aurelien Jarno <aurelien@aurel32.net>
1011badb586SPeter MaydellM: Peter Maydell <peter.maydell@linaro.org>
1021badb586SPeter MaydellS: Odd Fixes
1031badb586SPeter MaydellF: fpu/
1041badb586SPeter MaydellF: include/fpu/
1051badb586SPeter Maydell
106b6f97c14SbellardAlpha
1078d6df264SRichard HendersonM: Richard Henderson <rth@twiddle.net>
1088d6df264SRichard HendersonS: Maintained
109fd5d5c56SAnthony LiguoriF: target-alpha/
1108d8b636dSPaolo BonziniF: hw/alpha/
111c0bd0b50SPaolo BonziniF: tests/tcg/alpha/
112c17652eeSPaolo BonziniF: disas/alpha.c
113fd5d5c56SAnthony Liguori
114fd5d5c56SAnthony LiguoriARM
1151ce9ce6aSPeter MaydellM: Peter Maydell <peter.maydell@linaro.org>
116b4f2bd1cSPeter MaydellL: qemu-arm@nongnu.org
117fd5d5c56SAnthony LiguoriS: Maintained
118fd5d5c56SAnthony LiguoriF: target-arm/
1198d8b636dSPaolo BonziniF: hw/arm/
1208d8b636dSPaolo BonziniF: hw/cpu/a*mpcore.c
121f7e242d6SThomas HuthF: include/hw/cpu/a*mpcore.h
122c17652eeSPaolo BonziniF: disas/arm.c
123c17652eeSPaolo BonziniF: disas/arm-a64.cc
124c17652eeSPaolo BonziniF: disas/libvixl/
125fd5d5c56SAnthony Liguori
126fd5d5c56SAnthony LiguoriCRIS
127fd5d5c56SAnthony LiguoriM: Edgar E. Iglesias <edgar.iglesias@gmail.com>
128fd5d5c56SAnthony LiguoriS: Maintained
129fd5d5c56SAnthony LiguoriF: target-cris/
1308d8b636dSPaolo BonziniF: hw/cris/
131c9b90090SThomas HuthF: include/hw/cris/
132c0bd0b50SPaolo BonziniF: tests/tcg/cris/
133c17652eeSPaolo BonziniF: disas/cris.c
134fd5d5c56SAnthony Liguori
13507bf23a7SMichael WalleLM32
13607bf23a7SMichael WalleM: Michael Walle <michael@walle.cc>
13707bf23a7SMichael WalleS: Maintained
13807bf23a7SMichael WalleF: target-lm32/
1394eab7a0aSMichael WalleF: disas/lm32.c
1408d8b636dSPaolo BonziniF: hw/lm32/
1414eab7a0aSMichael WalleF: hw/*/lm32_*
1424eab7a0aSMichael WalleF: hw/*/milkymist-*
1434eab7a0aSMichael WalleF: include/hw/char/lm32_juart.h
1444eab7a0aSMichael WalleF: include/hw/lm32/
145c0bd0b50SPaolo BonziniF: tests/tcg/lm32/
14607bf23a7SMichael Walle
147fd5d5c56SAnthony LiguoriM68K
148595a926dSLaurent VivierM: Laurent Vivier <laurent@vivier.eu>
149595a926dSLaurent VivierS: Maintained
150fd5d5c56SAnthony LiguoriF: target-m68k/
151e9a56114SThomas HuthF: disas/m68k.c
152fd5d5c56SAnthony Liguori
153abc07545SEdgar E. IglesiasMicroBlaze
154fd5d5c56SAnthony LiguoriM: Edgar E. Iglesias <edgar.iglesias@gmail.com>
155fd5d5c56SAnthony LiguoriS: Maintained
156fd5d5c56SAnthony LiguoriF: target-microblaze/
1578d8b636dSPaolo BonziniF: hw/microblaze/
158c17652eeSPaolo BonziniF: disas/microblaze.c
159fd5d5c56SAnthony Liguori
160fd5d5c56SAnthony LiguoriMIPS
161ddb13561SAurelien JarnoM: Aurelien Jarno <aurelien@aurel32.net>
16278851fa5SLeon AlraeM: Yongbok Kim <yongbok.kim@imgtec.com>
1636f640917SLeon AlraeS: Maintained
164fd5d5c56SAnthony LiguoriF: target-mips/
1658d8b636dSPaolo BonziniF: hw/mips/
1665995db88SThomas HuthF: hw/misc/mips_*
1675995db88SThomas HuthF: hw/intc/mips_gic.c
1685995db88SThomas HuthF: hw/timer/mips_gictimer.c
1695995db88SThomas HuthF: include/hw/mips/
1705995db88SThomas HuthF: include/hw/misc/mips_*
1715995db88SThomas HuthF: include/hw/intc/mips_gic.h
1725995db88SThomas HuthF: include/hw/timer/mips_gictimer.h
173c0bd0b50SPaolo BonziniF: tests/tcg/mips/
174c17652eeSPaolo BonziniF: disas/mips.c
175fd5d5c56SAnthony Liguori
176d15a9c23SAnthony GreenMoxie
177d15a9c23SAnthony GreenM: Anthony Green <green@moxielogic.com>
178d15a9c23SAnthony GreenS: Maintained
179d15a9c23SAnthony GreenF: target-moxie/
180c17652eeSPaolo BonziniF: disas/moxie.c
181a3ccdfb5SThomas HuthF: hw/moxie/
182a3ccdfb5SThomas HuthF: default-configs/moxie-softmmu.mak
183d15a9c23SAnthony Green
184945dad6dSJia LiuOpenRISC
185945dad6dSJia LiuM: Jia Liu <proljc@gmail.com>
186945dad6dSJia LiuS: Maintained
187945dad6dSJia LiuF: target-openrisc/
188945dad6dSJia LiuF: hw/openrisc/
189c0bd0b50SPaolo BonziniF: tests/tcg/openrisc/
190945dad6dSJia Liu
191fd5d5c56SAnthony LiguoriPowerPC
192b4daafbdSDavid GibsonM: David Gibson <david@gibson.dropbear.id.au>
193fd5d5c56SAnthony LiguoriM: Alexander Graf <agraf@suse.de>
194a6c98685SAndreas FärberL: qemu-ppc@nongnu.org
195fd5d5c56SAnthony LiguoriS: Maintained
196fd5d5c56SAnthony LiguoriF: target-ppc/
1978d8b636dSPaolo BonziniF: hw/ppc/
198b5d55020SThomas HuthF: include/hw/ppc/
199c17652eeSPaolo BonziniF: disas/ppc.c
200fd5d5c56SAnthony Liguori
201749717a0SAlexander GrafS390
2022b35e93fSRichard HendersonM: Richard Henderson <rth@twiddle.net>
203fd5d5c56SAnthony LiguoriM: Alexander Graf <agraf@suse.de>
204fd5d5c56SAnthony LiguoriS: Maintained
205fd5d5c56SAnthony LiguoriF: target-s390x/
2068d8b636dSPaolo BonziniF: hw/s390x/
207c17652eeSPaolo BonziniF: disas/s390.c
208b6f97c14Sbellard
209fd5d5c56SAnthony LiguoriSH4
210ddb13561SAurelien JarnoM: Aurelien Jarno <aurelien@aurel32.net>
2112c9b7d1aSAndreas FärberS: Odd Fixes
212fd5d5c56SAnthony LiguoriF: target-sh4/
2138d8b636dSPaolo BonziniF: hw/sh4/
214c17652eeSPaolo BonziniF: disas/sh4.c
2158a90f900SThomas HuthF: include/hw/sh4/
216fd5d5c56SAnthony Liguori
217fd5d5c56SAnthony LiguoriSPARC
218f2416d3aSMark Cave-AylandM: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
2192c742bf7SMark Cave-AylandM: Artyom Tarasenko <atar4qemu@gmail.com>
220fd5d5c56SAnthony LiguoriS: Maintained
221fd5d5c56SAnthony LiguoriF: target-sparc/
2228d8b636dSPaolo BonziniF: hw/sparc/
2238d8b636dSPaolo BonziniF: hw/sparc64/
224c17652eeSPaolo BonziniF: disas/sparc.c
225fd5d5c56SAnthony Liguori
226a6ea7b4cSAndreas FärberUniCore32
227a6ea7b4cSAndreas FärberM: Guan Xuetao <gxt@mprc.pku.edu.cn>
228a6ea7b4cSAndreas FärberS: Maintained
229a6ea7b4cSAndreas FärberF: target-unicore32/
2308d8b636dSPaolo BonziniF: hw/unicore32/
23147b98d59SThomas HuthF: include/hw/unicore32/
232a6ea7b4cSAndreas Färber
233fd5d5c56SAnthony LiguoriX86
234d46d72fdSPaolo BonziniM: Paolo Bonzini <pbonzini@redhat.com>
235d46d72fdSPaolo BonziniM: Richard Henderson <rth@twiddle.net>
236e1a04339SEduardo HabkostM: Eduardo Habkost <ehabkost@redhat.com>
237b203a4baSEduardo HabkostS: Maintained
238fd5d5c56SAnthony LiguoriF: target-i386/
2398d8b636dSPaolo BonziniF: hw/i386/
240c17652eeSPaolo BonziniF: disas/i386.c
241fd5d5c56SAnthony Liguori
24216e7caaeSMax FilippovXtensa
24316e7caaeSMax FilippovM: Max Filippov <jcmvbkbc@gmail.com>
244375847a6SMax FilippovW: http://wiki.osll.spb.ru/doku.php?id=etc:users:jcmvbkbc:qemu-target-xtensa
24516e7caaeSMax FilippovS: Maintained
24616e7caaeSMax FilippovF: target-xtensa/
2478d8b636dSPaolo BonziniF: hw/xtensa/
248c0bd0b50SPaolo BonziniF: tests/tcg/xtensa/
24916e7caaeSMax Filippov
25048e06fe0SBastian KoppelmannTriCore
25148e06fe0SBastian KoppelmannM: Bastian Koppelmann <kbastian@mail.uni-paderborn.de>
25248e06fe0SBastian KoppelmannS: Maintained
25348e06fe0SBastian KoppelmannF: target-tricore/
25448e06fe0SBastian KoppelmannF: hw/tricore/
255d46d14e6SThomas HuthF: include/hw/tricore/
25648e06fe0SBastian Koppelmann
257fd5d5c56SAnthony LiguoriGuest CPU Cores (KVM):
258fd5d5c56SAnthony Liguori----------------------
259fd5d5c56SAnthony Liguori
260fd5d5c56SAnthony LiguoriOverall
261c6d559d9SMichael S. TsirkinM: Paolo Bonzini <pbonzini@redhat.com>
262fd5d5c56SAnthony LiguoriL: kvm@vger.kernel.org
263fd5d5c56SAnthony LiguoriS: Supported
264fd5d5c56SAnthony LiguoriF: kvm-*
265fd5d5c56SAnthony LiguoriF: */kvm.*
266a95e9a48SThomas HuthF: include/sysemu/kvm*.h
267fd5d5c56SAnthony Liguori
268ed4659d1SPeter MaydellARM
269ed4659d1SPeter MaydellM: Peter Maydell <peter.maydell@linaro.org>
270b4f2bd1cSPeter MaydellL: qemu-arm@nongnu.org
271ed4659d1SPeter MaydellS: Maintained
272ed4659d1SPeter MaydellF: target-arm/kvm.c
273ed4659d1SPeter Maydell
274a31896c4SJames HoganMIPS
275a31896c4SJames HoganM: James Hogan <james.hogan@imgtec.com>
276a31896c4SJames HoganS: Maintained
277a31896c4SJames HoganF: target-mips/kvm.c
278a31896c4SJames Hogan
279fd5d5c56SAnthony LiguoriPPC
280fd5d5c56SAnthony LiguoriM: Alexander Graf <agraf@suse.de>
281fd5d5c56SAnthony LiguoriS: Maintained
282fd5d5c56SAnthony LiguoriF: target-ppc/kvm.c
283fd5d5c56SAnthony Liguori
284fd5d5c56SAnthony LiguoriS390
285b304bf00SChristian BorntraegerM: Christian Borntraeger <borntraeger@de.ibm.com>
286b304bf00SChristian BorntraegerM: Cornelia Huck <cornelia.huck@de.ibm.com>
287fd5d5c56SAnthony LiguoriM: Alexander Graf <agraf@suse.de>
288fd5d5c56SAnthony LiguoriS: Maintained
289fd5d5c56SAnthony LiguoriF: target-s390x/kvm.c
290c5bfb202SCornelia HuckF: target-s390x/ioinst.[ch]
291c5bfb202SCornelia HuckF: target-s390x/machine.c
2924277af19SCornelia HuckF: hw/intc/s390_flic.c
2934277af19SCornelia HuckF: hw/intc/s390_flic_kvm.c
2944277af19SCornelia HuckF: include/hw/s390x/s390_flic.h
295c5bfb202SCornelia HuckF: gdb-xml/s390*.xml
2963e9ed24bSCornelia HuckT: git git://github.com/cohuck/qemu.git s390-next
2973e9ed24bSCornelia HuckT: git git://github.com/borntraeger/qemu.git s390-next
298fd5d5c56SAnthony Liguori
299fd5d5c56SAnthony LiguoriX86
300d46d72fdSPaolo BonziniM: Paolo Bonzini <pbonzini@redhat.com>
301fd5d5c56SAnthony LiguoriM: Marcelo Tosatti <mtosatti@redhat.com>
302fd5d5c56SAnthony LiguoriL: kvm@vger.kernel.org
303fd5d5c56SAnthony LiguoriS: Supported
304fd5d5c56SAnthony LiguoriF: target-i386/kvm.c
305fd5d5c56SAnthony Liguori
3068a6b0cd7SStefano StabelliniGuest CPU Cores (Xen):
3078a6b0cd7SStefano Stabellini----------------------
3088a6b0cd7SStefano Stabellini
3098a6b0cd7SStefano StabelliniX86
3103623c57eSStefano StabelliniM: Stefano Stabellini <sstabellini@kernel.org>
3113623c57eSStefano StabelliniM: Anthony Perard <anthony.perard@citrix.com>
3128a6b0cd7SStefano StabelliniL: xen-devel@lists.xensource.com
3138a6b0cd7SStefano StabelliniS: Supported
3148a6b0cd7SStefano StabelliniF: xen-*
3158a6b0cd7SStefano StabelliniF: */xen*
316c92451c2SPaolo BonziniF: hw/char/xen_console.c
317c92451c2SPaolo BonziniF: hw/display/xenfb.c
318c92451c2SPaolo BonziniF: hw/net/xen_nic.c
3199027ac50SStefano StabelliniF: hw/block/xen_*
320c92451c2SPaolo BonziniF: hw/xen/
321c92451c2SPaolo BonziniF: hw/xenpv/
3229027ac50SStefano StabelliniF: hw/i386/xen/
323c92451c2SPaolo BonziniF: include/hw/xen/
3249027ac50SStefano StabelliniF: include/sysemu/xen-mapcache.h
3258a6b0cd7SStefano Stabellini
3261bdd6874SStefan WeilHosts:
3271bdd6874SStefan Weil------
3281bdd6874SStefan Weil
3291bdd6874SStefan WeilLINUX
3301bdd6874SStefan WeilL: qemu-devel@nongnu.org
3311bdd6874SStefan WeilS: Maintained
3321bdd6874SStefan WeilF: linux-*
3331bdd6874SStefan WeilF: linux-headers/
3341bdd6874SStefan Weil
3351bdd6874SStefan WeilPOSIX
3361bdd6874SStefan WeilL: qemu-devel@nongnu.org
3371bdd6874SStefan WeilS: Maintained
3381bdd6874SStefan WeilF: *posix*
3391bdd6874SStefan Weil
3401bdd6874SStefan WeilW32, W64
3411bdd6874SStefan WeilL: qemu-devel@nongnu.org
3421bdd6874SStefan WeilM: Stefan Weil <sw@weilnetz.de>
3431bdd6874SStefan WeilS: Maintained
3441bdd6874SStefan WeilF: *win32*
34503972660SThomas HuthF: */*win32*
34603972660SThomas HuthF: include/*/*win32*
34703972660SThomas HuthX: qga/*win32*
348885bdc95SStefan WeilF: qemu.nsi
3491bdd6874SStefan Weil
350fd5d5c56SAnthony LiguoriARM Machines
351fd5d5c56SAnthony Liguori------------
35284291fe7SliguangAllwinner-a10
35385b4d5daSBeniamino GalvaniM: Beniamino Galvani <b.galvani@gmail.com>
354b4f2bd1cSPeter MaydellL: qemu-arm@nongnu.org
35584291fe7SliguangS: Maintained
35685b4d5daSBeniamino GalvaniF: hw/*/allwinner*
35785b4d5daSBeniamino GalvaniF: include/hw/*/allwinner*
35884291fe7SliguangF: hw/arm/cubieboard.c
35984291fe7Sliguang
36006271000SPaolo BonziniARM PrimeCell
36106271000SPaolo BonziniM: Peter Maydell <peter.maydell@linaro.org>
362b4f2bd1cSPeter MaydellL: qemu-arm@nongnu.org
36306271000SPaolo BonziniS: Maintained
36406271000SPaolo BonziniF: hw/char/pl011.c
36506271000SPaolo BonziniF: hw/display/pl110*
36606271000SPaolo BonziniF: hw/dma/pl080.c
36706271000SPaolo BonziniF: hw/dma/pl330.c
36806271000SPaolo BonziniF: hw/gpio/pl061.c
36906271000SPaolo BonziniF: hw/input/pl050.c
37006271000SPaolo BonziniF: hw/intc/pl190.c
37106271000SPaolo BonziniF: hw/sd/pl181.c
37206271000SPaolo BonziniF: hw/timer/pl031.c
37306271000SPaolo BonziniF: include/hw/arm/primecell.h
37406271000SPaolo Bonzini
37506271000SPaolo BonziniARM cores
37606271000SPaolo BonziniM: Peter Maydell <peter.maydell@linaro.org>
377b4f2bd1cSPeter MaydellL: qemu-arm@nongnu.org
37806271000SPaolo BonziniS: Maintained
37906271000SPaolo BonziniF: hw/intc/arm*
38006271000SPaolo BonziniF: hw/intc/gic_internal.h
38106271000SPaolo BonziniF: hw/misc/a9scu.c
38206271000SPaolo BonziniF: hw/misc/arm11scu.c
38306271000SPaolo BonziniF: hw/timer/a9gtimer*
38406271000SPaolo BonziniF: hw/timer/arm_*
38506271000SPaolo BonziniF: include/hw/arm/arm.h
38606271000SPaolo BonziniF: include/hw/intc/arm*
38706271000SPaolo BonziniF: include/hw/misc/a9scu.h
38806271000SPaolo BonziniF: include/hw/misc/arm11scu.h
38906271000SPaolo BonziniF: include/hw/timer/a9gtimer.h
39006271000SPaolo BonziniF: include/hw/timer/arm_mptimer.h
39106271000SPaolo Bonzini
392fc63dcffSEvgeny VoevodinExynos
393f44c5c67SIgor MitsyankoM: Igor Mitsyanko <i.mitsyanko@gmail.com>
394b4f2bd1cSPeter MaydellL: qemu-arm@nongnu.org
395fc63dcffSEvgeny VoevodinS: Maintained
3968d8b636dSPaolo BonziniF: hw/*/exynos*
397ed0db866SThomas HuthF: include/hw/arm/exynos4210.h
398fc63dcffSEvgeny Voevodin
399766fd09fSMark LangsdorfCalxeda Highbank
4009ef137caSRob HerringM: Rob Herring <robh@kernel.org>
401b4f2bd1cSPeter MaydellL: qemu-arm@nongnu.org
4029ef137caSRob HerringS: Maintained
4038d8b636dSPaolo BonziniF: hw/arm/highbank.c
4048d8b636dSPaolo BonziniF: hw/net/xgmac.c
405766fd09fSMark Langsdorf
4069082f121SAntony PavlovCanon DIGIC
4079082f121SAntony PavlovM: Antony Pavlov <antonynpavlov@gmail.com>
408b4f2bd1cSPeter MaydellL: qemu-arm@nongnu.org
4099082f121SAntony PavlovS: Maintained
4109082f121SAntony PavlovF: include/hw/arm/digic.h
4119082f121SAntony PavlovF: hw/*/digic*
4129082f121SAntony Pavlov
413fd5d5c56SAnthony LiguoriGumstix
4145dd4a88cSPaolo BonziniL: qemu-devel@nongnu.org
415b4f2bd1cSPeter MaydellL: qemu-arm@nongnu.org
416fd5d5c56SAnthony LiguoriS: Orphan
4178d8b636dSPaolo BonziniF: hw/arm/gumstix.c
418fd5d5c56SAnthony Liguori
4190325559dSPeter Chubbi.MX31
4200325559dSPeter ChubbM: Peter Chubb <peter.chubb@nicta.com.au>
421b4f2bd1cSPeter MaydellL: qemu-arm@nongnu.org
4220325559dSPeter ChubbS: Odd fixes
4238d8b636dSPaolo BonziniF: hw/*/imx*
424f7e242d6SThomas HuthF: include/hw/*/imx*
4258d8b636dSPaolo BonziniF: hw/arm/kzm.c
426ed0db866SThomas HuthF: include/hw/arm/fsl-imx31.h
4270325559dSPeter Chubb
428fd5d5c56SAnthony LiguoriIntegrator CP
4291ce9ce6aSPeter MaydellM: Peter Maydell <peter.maydell@linaro.org>
430b4f2bd1cSPeter MaydellL: qemu-arm@nongnu.org
431fd5d5c56SAnthony LiguoriS: Maintained
4328d8b636dSPaolo BonziniF: hw/arm/integratorcp.c
433f7e242d6SThomas HuthF: hw/misc/arm_integrator_debug.c
434fd5d5c56SAnthony Liguori
435fd5d5c56SAnthony LiguoriMusicpal
436fd5d5c56SAnthony LiguoriM: Jan Kiszka <jan.kiszka@web.de>
437b4f2bd1cSPeter MaydellL: qemu-arm@nongnu.org
438fd5d5c56SAnthony LiguoriS: Maintained
4398d8b636dSPaolo BonziniF: hw/arm/musicpal.c
440fd5d5c56SAnthony Liguori
441fd5d5c56SAnthony LiguorinSeries
442fd5d5c56SAnthony LiguoriM: Andrzej Zaborowski <balrogg@gmail.com>
443b4f2bd1cSPeter MaydellL: qemu-arm@nongnu.org
444fd5d5c56SAnthony LiguoriS: Maintained
4458d8b636dSPaolo BonziniF: hw/arm/nseries.c
446fd5d5c56SAnthony Liguori
447fd5d5c56SAnthony LiguoriPalm
448fd5d5c56SAnthony LiguoriM: Andrzej Zaborowski <balrogg@gmail.com>
449b4f2bd1cSPeter MaydellL: qemu-arm@nongnu.org
450fd5d5c56SAnthony LiguoriS: Maintained
4518d8b636dSPaolo BonziniF: hw/arm/palm.c
452fd5d5c56SAnthony Liguori
453fd5d5c56SAnthony LiguoriReal View
4541ce9ce6aSPeter MaydellM: Peter Maydell <peter.maydell@linaro.org>
455b4f2bd1cSPeter MaydellL: qemu-arm@nongnu.org
456fd5d5c56SAnthony LiguoriS: Maintained
4578d8b636dSPaolo BonziniF: hw/arm/realview*
458f7e242d6SThomas HuthF: hw/cpu/realview_mpcore.c
4595ea53049SPaolo BonziniF: hw/intc/realview_gic.c
4605ea53049SPaolo BonziniF: include/hw/intc/realview_gic.h
461fd5d5c56SAnthony Liguori
4629b31bff0SPaolo BonziniPXA2XX
463fd5d5c56SAnthony LiguoriM: Andrzej Zaborowski <balrogg@gmail.com>
464b4f2bd1cSPeter MaydellL: qemu-arm@nongnu.org
465fd5d5c56SAnthony LiguoriS: Maintained
4669b31bff0SPaolo BonziniF: hw/arm/mainstone.c
4678d8b636dSPaolo BonziniF: hw/arm/spitz.c
4689b31bff0SPaolo BonziniF: hw/arm/tosa.c
4699b31bff0SPaolo BonziniF: hw/arm/z2.c
4709b31bff0SPaolo BonziniF: hw/*/pxa2xx*
471f7e242d6SThomas HuthF: hw/misc/mst_fpga.c
472ed0db866SThomas HuthF: include/hw/arm/pxa.h
473fd5d5c56SAnthony Liguori
474fd5d5c56SAnthony LiguoriStellaris
4751ce9ce6aSPeter MaydellM: Peter Maydell <peter.maydell@linaro.org>
476b4f2bd1cSPeter MaydellL: qemu-arm@nongnu.org
477fd5d5c56SAnthony LiguoriS: Maintained
4788d8b636dSPaolo BonziniF: hw/*/stellaris*
479fd5d5c56SAnthony Liguori
480fd5d5c56SAnthony LiguoriVersatile PB
4811ce9ce6aSPeter MaydellM: Peter Maydell <peter.maydell@linaro.org>
482b4f2bd1cSPeter MaydellL: qemu-arm@nongnu.org
483fd5d5c56SAnthony LiguoriS: Maintained
4848d8b636dSPaolo BonziniF: hw/*/versatile*
485fd5d5c56SAnthony Liguori
486e3260506SPeter A. G. CrosthwaiteXilinx Zynq
487cc0100f4SAlistair FrancisM: Edgar E. Iglesias <edgar.iglesias@gmail.com>
4884b46ba61SAlistair FrancisM: Alistair Francis <alistair.francis@xilinx.com>
489b4f2bd1cSPeter MaydellL: qemu-arm@nongnu.org
490e3260506SPeter A. G. CrosthwaiteS: Maintained
491cc0100f4SAlistair FrancisF: hw/*/xilinx_*
4928d8b636dSPaolo BonziniF: hw/*/cadence_*
493f7e242d6SThomas HuthF: hw/misc/zynq*
494f7e242d6SThomas HuthF: include/hw/misc/zynq*
495cc0100f4SAlistair FrancisX: hw/ssi/xilinx_*
496e3260506SPeter A. G. Crosthwaite
497137805f5SAlistair FrancisXilinx ZynqMP
498137805f5SAlistair FrancisM: Alistair Francis <alistair.francis@xilinx.com>
499cc0100f4SAlistair FrancisM: Edgar E. Iglesias <edgar.iglesias@gmail.com>
500b4f2bd1cSPeter MaydellL: qemu-arm@nongnu.org
501137805f5SAlistair FrancisS: Maintained
502cc0100f4SAlistair FrancisF: hw/*/xlnx*.c
503f586d5fcSMarkus ArmbrusterF: include/hw/*/xlnx*.h
504137805f5SAlistair Francis
5058f4d260eSShannon ZhaoARM ACPI Subsystem
5068f4d260eSShannon ZhaoM: Shannon Zhao <zhaoshenglong@huawei.com>
5078f4d260eSShannon ZhaoM: Shannon Zhao <shannon.zhao@linaro.org>
508b4f2bd1cSPeter MaydellL: qemu-arm@nongnu.org
5098f4d260eSShannon ZhaoS: Maintained
5108f4d260eSShannon ZhaoF: hw/arm/virt-acpi-build.c
5118f4d260eSShannon ZhaoF: include/hw/arm/virt-acpi-build.h
5128f4d260eSShannon Zhao
513a1f8193bSAlistair FrancisSTM32F205
514a1f8193bSAlistair FrancisM: Alistair Francis <alistair@alistair23.me>
515a1f8193bSAlistair FrancisS: Maintained
516a1f8193bSAlistair FrancisF: hw/arm/stm32f205_soc.c
517a1f8193bSAlistair FrancisF: hw/misc/stm32f2xx_syscfg.c
518a1f8193bSAlistair FrancisF: hw/char/stm32f2xx_usart.c
519a1f8193bSAlistair FrancisF: hw/timer/stm32f2xx_timer.c
520a1f8193bSAlistair FrancisF: hw/adc/*
521a1f8193bSAlistair FrancisF: hw/ssi/stm32f2xx_spi.c
522a1f8193bSAlistair Francis
523a1f8193bSAlistair FrancisNetduino 2
524a1f8193bSAlistair FrancisM: Alistair Francis <alistair@alistair23.me>
525a1f8193bSAlistair FrancisS: Maintained
526a1f8193bSAlistair FrancisF: hw/arm/netduino2.c
527a1f8193bSAlistair Francis
528fd5d5c56SAnthony LiguoriCRIS Machines
529fd5d5c56SAnthony Liguori-------------
530fd5d5c56SAnthony LiguoriAxis Dev88
531fd5d5c56SAnthony LiguoriM: Edgar E. Iglesias <edgar.iglesias@gmail.com>
532fd5d5c56SAnthony LiguoriS: Maintained
5338d8b636dSPaolo BonziniF: hw/cris/axis_dev88.c
5346e481d57SPeter MaydellF: hw/*/etraxfs_*.c
535fd5d5c56SAnthony Liguori
53607bf23a7SMichael WalleLM32 Machines
53707bf23a7SMichael Walle-------------
53807bf23a7SMichael WalleEVR32 and uclinux BSP
53907bf23a7SMichael WalleM: Michael Walle <michael@walle.cc>
54007bf23a7SMichael WalleS: Maintained
5418d8b636dSPaolo BonziniF: hw/lm32/lm32_boards.c
54207bf23a7SMichael Walle
543d118aa6bSMichael Wallemilkymist
544d118aa6bSMichael WalleM: Michael Walle <michael@walle.cc>
545d118aa6bSMichael WalleS: Maintained
5468d8b636dSPaolo BonziniF: hw/lm32/milkymist.c
547d118aa6bSMichael Walle
548afcacd53SAurelien JarnoM68K Machines
549fd5d5c56SAnthony Liguori-------------
550fd5d5c56SAnthony Liguorian5206
5510e19885eSAnthony LiguoriS: Orphan
5528d8b636dSPaolo BonziniF: hw/m68k/an5206.c
553e9a56114SThomas HuthF: hw/m68k/mcf5206.c
554fd5d5c56SAnthony Liguori
555fd5d5c56SAnthony Liguoridummy_m68k
5560e19885eSAnthony LiguoriS: Orphan
5578d8b636dSPaolo BonziniF: hw/m68k/dummy_m68k.c
558fd5d5c56SAnthony Liguori
559fd5d5c56SAnthony Liguorimcf5208
5600e19885eSAnthony LiguoriS: Orphan
5618d8b636dSPaolo BonziniF: hw/m68k/mcf5208.c
562e9a56114SThomas HuthF: hw/m68k/mcf_intc.c
563e9a56114SThomas HuthF: hw/char/mcf_uart.c
564e9a56114SThomas HuthF: hw/net/mcf_fec.c
565fd5d5c56SAnthony Liguori
566fd5d5c56SAnthony LiguoriMicroBlaze Machines
567b6f97c14Sbellard-------------------
568fd5d5c56SAnthony Liguoripetalogix_s3adsp1800
569fd5d5c56SAnthony LiguoriM: Edgar E. Iglesias <edgar.iglesias@gmail.com>
570fd5d5c56SAnthony LiguoriS: Maintained
5716e481d57SPeter MaydellF: hw/microblaze/petalogix_s3adsp1800_mmu.c
572b6f97c14Sbellard
573d36e8ce7SPeter A. G. Crosthwaitepetalogix_ml605
5744b46ba61SAlistair FrancisM: Edgar E. Iglesias <edgar.iglesias@gmail.com>
575d36e8ce7SPeter A. G. CrosthwaiteS: Maintained
5768d8b636dSPaolo BonziniF: hw/microblaze/petalogix_ml605_mmu.c
577d36e8ce7SPeter A. G. Crosthwaite
578fd5d5c56SAnthony LiguoriMIPS Machines
579fd5d5c56SAnthony Liguori-------------
580fd5d5c56SAnthony LiguoriJazz
581fd5d5c56SAnthony LiguoriM: Hervé Poussineau <hpoussin@reactos.org>
582fd5d5c56SAnthony LiguoriS: Maintained
5838d8b636dSPaolo BonziniF: hw/mips/mips_jazz.c
584fd5d5c56SAnthony Liguori
585fd5d5c56SAnthony LiguoriMalta
586fd5d5c56SAnthony LiguoriM: Aurelien Jarno <aurelien@aurel32.net>
587fd5d5c56SAnthony LiguoriS: Maintained
5888d8b636dSPaolo BonziniF: hw/mips/mips_malta.c
589fd5d5c56SAnthony Liguori
590fd5d5c56SAnthony LiguoriMipssim
5915dd4a88cSPaolo BonziniL: qemu-devel@nongnu.org
592fd5d5c56SAnthony LiguoriS: Orphan
5938d8b636dSPaolo BonziniF: hw/mips/mips_mipssim.c
594fd5d5c56SAnthony Liguori
595fd5d5c56SAnthony LiguoriR4000
596fd5d5c56SAnthony LiguoriM: Aurelien Jarno <aurelien@aurel32.net>
597fd5d5c56SAnthony LiguoriS: Maintained
5988d8b636dSPaolo BonziniF: hw/mips/mips_r4k.c
599fd5d5c56SAnthony Liguori
600945dad6dSJia LiuOpenRISC Machines
601945dad6dSJia Liu-----------------
602945dad6dSJia Liuor1k-sim
603945dad6dSJia LiuM: Jia Liu <proljc@gmail.com>
604945dad6dSJia LiuS: Maintained
605945dad6dSJia LiuF: hw/openrisc/openrisc_sim.c
606945dad6dSJia Liu
607fd5d5c56SAnthony LiguoriPowerPC Machines
608fd5d5c56SAnthony Liguori----------------
609fd5d5c56SAnthony Liguori405
610fd5d5c56SAnthony LiguoriM: Alexander Graf <agraf@suse.de>
611a6c98685SAndreas FärberL: qemu-ppc@nongnu.org
6129b9fe135SAndreas FärberS: Odd Fixes
6138d8b636dSPaolo BonziniF: hw/ppc/ppc405_boards.c
614fd5d5c56SAnthony Liguori
615aaade8d7SAndreas FärberBamboo
616aaade8d7SAndreas FärberM: Alexander Graf <agraf@suse.de>
617aaade8d7SAndreas FärberL: qemu-ppc@nongnu.org
618aaade8d7SAndreas FärberS: Odd Fixes
6198d8b636dSPaolo BonziniF: hw/ppc/ppc440_bamboo.c
620aaade8d7SAndreas Färber
62198cded3aSAndreas Färbere500
62298cded3aSAndreas FärberM: Alexander Graf <agraf@suse.de>
62398cded3aSAndreas FärberM: Scott Wood <scottwood@freescale.com>
62498cded3aSAndreas FärberL: qemu-ppc@nongnu.org
62598cded3aSAndreas FärberS: Supported
62698cded3aSAndreas FärberF: hw/ppc/e500.[hc]
62798cded3aSAndreas FärberF: hw/ppc/e500plat.c
628b5d55020SThomas HuthF: include/hw/ppc/ppc_e500.h
629b5d55020SThomas HuthF: include/hw/pci-host/ppce500.h
630b5d55020SThomas HuthF: pc-bios/u-boot.e500
63198cded3aSAndreas Färber
63298cded3aSAndreas Färbermpc8544ds
63398cded3aSAndreas FärberM: Alexander Graf <agraf@suse.de>
63498cded3aSAndreas FärberM: Scott Wood <scottwood@freescale.com>
63598cded3aSAndreas FärberL: qemu-ppc@nongnu.org
63698cded3aSAndreas FärberS: Supported
63798cded3aSAndreas FärberF: hw/ppc/mpc8544ds.c
6388d8b636dSPaolo BonziniF: hw/ppc/mpc8544_guts.c
63998cded3aSAndreas Färber
640fd5d5c56SAnthony LiguoriNew World
641fd5d5c56SAnthony LiguoriM: Alexander Graf <agraf@suse.de>
642a6c98685SAndreas FärberL: qemu-ppc@nongnu.org
643fd5d5c56SAnthony LiguoriS: Maintained
644baec1910SAndreas FärberF: hw/ppc/mac_newworld.c
6456e481d57SPeter MaydellF: hw/pci-host/uninorth.c
6466e481d57SPeter MaydellF: hw/pci-bridge/dec.[hc]
6478d8b636dSPaolo BonziniF: hw/misc/macio/
648b5d55020SThomas HuthF: include/hw/ppc/mac_dbdma.h
649b5d55020SThomas HuthF: hw/nvram/mac_nvram.c
650fd5d5c56SAnthony Liguori
651fd5d5c56SAnthony LiguoriOld World
652fd5d5c56SAnthony LiguoriM: Alexander Graf <agraf@suse.de>
653a6c98685SAndreas FärberL: qemu-ppc@nongnu.org
654fd5d5c56SAnthony LiguoriS: Maintained
655baec1910SAndreas FärberF: hw/ppc/mac_oldworld.c
6566e481d57SPeter MaydellF: hw/pci-host/grackle.c
6578d8b636dSPaolo BonziniF: hw/misc/macio/
658835c42d3SThomas HuthF: hw/intc/heathrow_pic.c
659fd5d5c56SAnthony Liguori
660ec38d398SAndreas FärberPReP
6619f38774dSAndreas FärberL: qemu-devel@nongnu.org
662a6c98685SAndreas FärberL: qemu-ppc@nongnu.org
663ec38d398SAndreas FärberS: Odd Fixes
66475610155SAndreas FärberF: hw/ppc/prep.c
6656e481d57SPeter MaydellF: hw/pci-host/prep.[hc]
6668d8b636dSPaolo BonziniF: hw/isa/pc87312.[hc]
667835c42d3SThomas HuthF: pc-bios/ppc_rom.bin
668fd5d5c56SAnthony Liguori
669300b115cSAndreas FärbersPAPR
670085eb217SDavid GibsonM: David Gibson <david@gibson.dropbear.id.au>
6718a269ca4SAndreas FärberM: Alexander Graf <agraf@suse.de>
6728a269ca4SAndreas FärberL: qemu-ppc@nongnu.org
6738a269ca4SAndreas FärberS: Supported
6748d8b636dSPaolo BonziniF: hw/*/spapr*
675f9de2da7SDavid GibsonF: include/hw/*/spapr*
676f9de2da7SDavid GibsonF: hw/*/xics*
677f9de2da7SDavid GibsonF: include/hw/*/xics*
678f9de2da7SDavid GibsonF: pc-bios/spapr-rtas/*
679b5d55020SThomas HuthF: pc-bios/spapr-rtas.bin
680b5d55020SThomas HuthF: pc-bios/slof.bin
681bcad45deSCédric Le GoaterF: pc-bios/skiboot.lid
682b5d55020SThomas HuthF: docs/specs/ppc-spapr-hcalls.txt
683b5d55020SThomas HuthF: docs/specs/ppc-spapr-hotplug.txt
684a70ab357SGreg KurzF: tests/spapr*
685a70ab357SGreg KurzF: tests/libqos/*spapr*
686a70ab357SGreg KurzF: tests/rtas*
687a70ab357SGreg KurzF: tests/libqos/rtas*
6888a269ca4SAndreas Färber
689794d00bfSAndreas Färbervirtex_ml507
690794d00bfSAndreas FärberM: Edgar E. Iglesias <edgar.iglesias@gmail.com>
691794d00bfSAndreas FärberL: qemu-ppc@nongnu.org
692794d00bfSAndreas FärberS: Odd Fixes
6936e481d57SPeter MaydellF: hw/ppc/virtex_ml507.c
694794d00bfSAndreas Färber
695fd5d5c56SAnthony LiguoriSH4 Machines
696fd5d5c56SAnthony Liguori------------
697fd5d5c56SAnthony LiguoriR2D
698fd5d5c56SAnthony LiguoriM: Magnus Damm <magnus.damm@gmail.com>
699fd5d5c56SAnthony LiguoriS: Maintained
7006e481d57SPeter MaydellF: hw/sh4/r2d.c
70181527b94SThomas HuthF: hw/intc/sh_intc.c
70281527b94SThomas HuthF: hw/timer/sh_timer.c
703fd5d5c56SAnthony Liguori
704fd5d5c56SAnthony LiguoriShix
705fd5d5c56SAnthony LiguoriM: Magnus Damm <magnus.damm@gmail.com>
70681527b94SThomas HuthS: Odd Fixes
7076e481d57SPeter MaydellF: hw/sh4/shix.c
708fd5d5c56SAnthony Liguori
709fd5d5c56SAnthony LiguoriSPARC Machines
710fd5d5c56SAnthony Liguori--------------
711fd5d5c56SAnthony LiguoriSun4m
712f2416d3aSMark Cave-AylandM: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
713fd5d5c56SAnthony LiguoriS: Maintained
7148d8b636dSPaolo BonziniF: hw/sparc/sun4m.c
715c10a1c78SThomas HuthF: hw/dma/sparc32_dma.c
716c10a1c78SThomas HuthF: hw/dma/sun4m_iommu.c
7177098b79eSThomas HuthF: hw/misc/eccmemctl.c
7187098b79eSThomas HuthF: hw/misc/slavio_misc.c
719c10a1c78SThomas HuthF: include/hw/sparc/sparc32_dma.h
720c10a1c78SThomas HuthF: include/hw/sparc/sun4m.h
721c10a1c78SThomas HuthF: pc-bios/openbios-sparc32
722fd5d5c56SAnthony Liguori
723fd5d5c56SAnthony LiguoriSun4u
724f2416d3aSMark Cave-AylandM: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
725fd5d5c56SAnthony LiguoriS: Maintained
7268d8b636dSPaolo BonziniF: hw/sparc64/sun4u.c
727c10a1c78SThomas HuthF: pc-bios/openbios-sparc64
728fd5d5c56SAnthony Liguori
729ce6c760cSFabien ChouteauLeon3
730ce6c760cSFabien ChouteauM: Fabien Chouteau <chouteau@adacore.com>
731ce6c760cSFabien ChouteauS: Maintained
7328d8b636dSPaolo BonziniF: hw/sparc/leon3.c
7338d8b636dSPaolo BonziniF: hw/*/grlib*
734c10a1c78SThomas HuthF: include/hw/sparc/grlib.h
735ce6c760cSFabien Chouteau
736fd5d5c56SAnthony LiguoriS390 Machines
737fd5d5c56SAnthony Liguori-------------
738dd4ad64aSCornelia HuckS390 Virtio-ccw
739dd4ad64aSCornelia HuckM: Cornelia Huck <cornelia.huck@de.ibm.com>
740b304bf00SChristian BorntraegerM: Christian Borntraeger <borntraeger@de.ibm.com>
741dd4ad64aSCornelia HuckM: Alexander Graf <agraf@suse.de>
742dd4ad64aSCornelia HuckS: Supported
7430c6aa7eeSPaolo BonziniF: hw/char/sclp*.[hc]
744c5bfb202SCornelia HuckF: hw/s390x/
7454277af19SCornelia HuckF: include/hw/s390x/
7464277af19SCornelia HuckF: pc-bios/s390-ccw/
747c5bfb202SCornelia HuckF: hw/watchdog/wdt_diag288.c
7481e4738b2SSascha SilbeF: include/hw/watchdog/wdt_diag288.h
7491e4738b2SSascha SilbeF: pc-bios/s390-ccw.img
7501e4738b2SSascha SilbeF: default-configs/s390x-softmmu.mak
7513e9ed24bSCornelia HuckT: git git://github.com/cohuck/qemu.git s390-next
7523e9ed24bSCornelia HuckT: git git://github.com/borntraeger/qemu.git s390-next
753dd4ad64aSCornelia Huck
754ab9528caSGuan XuetaoUniCore32 Machines
755ab9528caSGuan Xuetao-------------
756ab9528caSGuan XuetaoPKUnity-3 SoC initramfs-with-busybox
757ab9528caSGuan XuetaoM: Guan Xuetao <gxt@mprc.pku.edu.cn>
758ab9528caSGuan XuetaoS: Maintained
7598d8b636dSPaolo BonziniF: hw/*/puv3*
760ab9528caSGuan XuetaoF: hw/unicore32/
761ab9528caSGuan Xuetao
762fd5d5c56SAnthony LiguoriX86 Machines
763fd5d5c56SAnthony Liguori------------
764fd5d5c56SAnthony LiguoriPC
765046a6486SMichael S. TsirkinM: Michael S. Tsirkin <mst@redhat.com>
766fd5d5c56SAnthony LiguoriS: Supported
767046a6486SMichael S. TsirkinF: include/hw/i386/
768046a6486SMichael S. TsirkinF: hw/i386/
769046a6486SMichael S. TsirkinF: hw/pci-host/piix.c
770046a6486SMichael S. TsirkinF: hw/pci-host/q35.c
771046a6486SMichael S. TsirkinF: hw/pci-host/pam.c
772046a6486SMichael S. TsirkinF: include/hw/pci-host/q35.h
773046a6486SMichael S. TsirkinF: include/hw/pci-host/pam.h
774046a6486SMichael S. TsirkinF: hw/isa/piix4.c
775046a6486SMichael S. TsirkinF: hw/isa/lpc_ich9.c
776046a6486SMichael S. TsirkinF: hw/i2c/smbus_ich9.c
777046a6486SMichael S. TsirkinF: hw/acpi/piix4.c
778046a6486SMichael S. TsirkinF: hw/acpi/ich9.c
779046a6486SMichael S. TsirkinF: include/hw/acpi/ich9.h
780f586d5fcSMarkus ArmbrusterF: include/hw/acpi/piix4.h
7819cc3b73cSPaolo BonziniF: hw/misc/sga.c
7829cc3b73cSPaolo Bonzini
7839cc3b73cSPaolo BonziniPC Chipset
7849cc3b73cSPaolo BonziniM: Michael S. Tsirkin <mst@redhat.com>
7859cc3b73cSPaolo BonziniM: Paolo Bonzini <pbonzini@redhat.com>
7869cc3b73cSPaolo BonziniS: Support
7879cc3b73cSPaolo BonziniF: hw/char/debugcon.c
7889cc3b73cSPaolo BonziniF: hw/char/parallel.c
7899cc3b73cSPaolo BonziniF: hw/char/serial*
7909cc3b73cSPaolo BonziniF: hw/dma/i8257*
7919cc3b73cSPaolo BonziniF: hw/i2c/pm_smbus.c
7929cc3b73cSPaolo BonziniF: hw/intc/apic*
7939cc3b73cSPaolo BonziniF: hw/intc/ioapic*
7949cc3b73cSPaolo BonziniF: hw/intc/i8259*
7959cc3b73cSPaolo BonziniF: hw/misc/debugexit.c
7969cc3b73cSPaolo BonziniF: hw/misc/pc-testdev.c
7979cc3b73cSPaolo BonziniF: hw/timer/hpet*
7989cc3b73cSPaolo BonziniF: hw/timer/i8254*
7999cc3b73cSPaolo BonziniF: hw/timer/mc146818rtc*
800a2feb348SThomas HuthF: include/hw/i2c/pm_smbus.h
801a2feb348SThomas HuthF: include/hw/timer/hpet.h
802a2feb348SThomas HuthF: include/hw/timer/i8254*
803a2feb348SThomas HuthF: include/hw/timer/mc146818rtc*
804046a6486SMichael S. Tsirkin
8055da4fb00SMichael S. TsirkinMachine core
8065da4fb00SMichael S. TsirkinM: Eduardo Habkost <ehabkost@redhat.com>
8075da4fb00SMichael S. TsirkinM: Marcel Apfelbaum <marcel@redhat.com>
8085da4fb00SMichael S. TsirkinS: Supported
8095da4fb00SMichael S. TsirkinF: hw/core/machine.c
8105da4fb00SMichael S. TsirkinF: include/hw/boards.h
811fd5d5c56SAnthony Liguori
81216e7caaeSMax FilippovXtensa Machines
81316e7caaeSMax Filippov---------------
814375847a6SMax Filippovsim
81516e7caaeSMax FilippovM: Max Filippov <jcmvbkbc@gmail.com>
81616e7caaeSMax FilippovS: Maintained
817437a8c11SMax FilippovF: hw/xtensa/sim.c
818375847a6SMax Filippov
819437a8c11SMax FilippovXTFPGA (LX60, LX200, ML605, KC705)
820375847a6SMax FilippovM: Max Filippov <jcmvbkbc@gmail.com>
821375847a6SMax FilippovS: Maintained
822437a8c11SMax FilippovF: hw/xtensa/xtfpga.c
823437a8c11SMax FilippovF: hw/net/opencores_eth.c
82416e7caaeSMax Filippov
825fd5d5c56SAnthony LiguoriDevices
826fd5d5c56SAnthony Liguori-------
827b30934cbSJiri SlabyEDU
828b30934cbSJiri SlabyM: Jiri Slaby <jslaby@suse.cz>
829b30934cbSJiri SlabyS: Maintained
830b30934cbSJiri SlabyF: hw/misc/edu.c
831b30934cbSJiri Slaby
832fd5d5c56SAnthony LiguoriIDE
833c095348bSJohn SnowM: John Snow <jsnow@redhat.com>
834c095348bSJohn SnowL: qemu-block@nongnu.org
835c095348bSJohn SnowS: Supported
8368d8b636dSPaolo BonziniF: include/hw/ide.h
837c9f7acd5SThomas HuthF: include/hw/ide/
838fd5d5c56SAnthony LiguoriF: hw/ide/
839c095348bSJohn SnowF: hw/block/block.c
840c095348bSJohn SnowF: hw/block/cdrom.c
841c095348bSJohn SnowF: hw/block/hd-geometry.c
842c095348bSJohn SnowF: tests/ide-test.c
843c095348bSJohn SnowF: tests/ahci-test.c
844aee50319SJohn SnowF: tests/libqos/ahci*
845c095348bSJohn SnowT: git git://github.com/jnsnow/qemu.git ide
846c095348bSJohn Snow
847c095348bSJohn SnowFloppy
848c095348bSJohn SnowM: John Snow <jsnow@redhat.com>
849c095348bSJohn SnowL: qemu-block@nongnu.org
850c095348bSJohn SnowS: Supported
851c095348bSJohn SnowF: hw/block/fdc.c
852c095348bSJohn SnowF: include/hw/block/fdc.h
853aee50319SJohn SnowF: tests/fdc-test.c
854c095348bSJohn SnowT: git git://github.com/jnsnow/qemu.git ide
855fd5d5c56SAnthony Liguori
856f5f487b2SPeter MaydellOMAP
857f5f487b2SPeter MaydellM: Peter Maydell <peter.maydell@linaro.org>
858f5f487b2SPeter MaydellS: Maintained
8598d8b636dSPaolo BonziniF: hw/*/omap*
860ed0db866SThomas HuthF: include/hw/arm/omap.h
861f5f487b2SPeter Maydell
86228d54e58SPaolo BonziniIPack
86328d54e58SPaolo BonziniM: Alberto Garcia <berto@igalia.com>
86428d54e58SPaolo BonziniS: Odd Fixes
86528d54e58SPaolo BonziniF: hw/char/ipoctal232.c
86628d54e58SPaolo BonziniF: hw/ipack/
86728d54e58SPaolo Bonzini
868fd5d5c56SAnthony LiguoriPCI
869fd5d5c56SAnthony LiguoriM: Michael S. Tsirkin <mst@redhat.com>
870874a2358SMichael S. TsirkinM: Marcel Apfelbaum <marcel@redhat.com>
871fd5d5c56SAnthony LiguoriS: Supported
8728d8b636dSPaolo BonziniF: include/hw/pci/*
873f178bc6bSPaolo BonziniF: hw/misc/pci-testdev.c
874ca818cfbSMichael S. TsirkinF: hw/pci/*
875f178bc6bSPaolo BonziniF: hw/pci-bridge/*
8760e0b3592SMichael S. Tsirkin
877d31e5ae7SMichael S. TsirkinACPI/SMBIOS
8780e0b3592SMichael S. TsirkinM: Michael S. Tsirkin <mst@redhat.com>
8790e0b3592SMichael S. TsirkinM: Igor Mammedov <imammedo@redhat.com>
8800e0b3592SMichael S. TsirkinS: Supported
8810e0b3592SMichael S. TsirkinF: include/hw/acpi/*
882d31e5ae7SMichael S. TsirkinF: include/hw/smbios/*
8830e0b3592SMichael S. TsirkinF: hw/mem/*
8848d8b636dSPaolo BonziniF: hw/acpi/*
885d31e5ae7SMichael S. TsirkinF: hw/smbios/*
8860e0b3592SMichael S. TsirkinF: hw/i386/acpi-build.[hc]
8870e0b3592SMichael S. TsirkinF: hw/arm/virt-acpi-build.c
8880e0b3592SMichael S. TsirkinF: include/hw/arm/virt-acpi-build.h
889fd5d5c56SAnthony Liguori
890aaade8d7SAndreas Färberppc4xx
891aaade8d7SAndreas FärberM: Alexander Graf <agraf@suse.de>
892aaade8d7SAndreas FärberL: qemu-ppc@nongnu.org
893aaade8d7SAndreas FärberS: Odd Fixes
8948d8b636dSPaolo BonziniF: hw/ppc/ppc4*.c
895b5d55020SThomas HuthF: include/hw/ppc/ppc4xx.h
896aaade8d7SAndreas Färber
89798cded3aSAndreas Färberppce500
89898cded3aSAndreas FärberM: Alexander Graf <agraf@suse.de>
89998cded3aSAndreas FärberM: Scott Wood <scottwood@freescale.com>
90098cded3aSAndreas FärberL: qemu-ppc@nongnu.org
90198cded3aSAndreas FärberS: Supported
9026e481d57SPeter MaydellF: hw/ppc/e500*
903566dd236SPaolo BonziniF: hw/pci-host/ppce500.c
904566dd236SPaolo BonziniF: hw/net/fsl_etsec/
90598cded3aSAndreas Färber
90661af0ee6SPaolo BonziniCharacter devices
90761af0ee6SPaolo BonziniM: Paolo Bonzini <pbonzini@redhat.com>
90861af0ee6SPaolo BonziniS: Odd Fixes
90961af0ee6SPaolo BonziniF: hw/char/
91061af0ee6SPaolo Bonzini
911f536f112SPaolo BonziniNetwork devices
912f536f112SPaolo BonziniM: Jason Wang <jasowang@redhat.com>
913f536f112SPaolo BonziniS: Odd Fixes
914f536f112SPaolo BonziniF: hw/net/
9156bd7776cSGreg KurzF: tests/virtio-net-test.c
916f536f112SPaolo BonziniT: git git://github.com/jasowang/qemu.git net
917f536f112SPaolo Bonzini
918fd5d5c56SAnthony LiguoriSCSI
919de7724f7SPaolo BonziniM: Paolo Bonzini <pbonzini@redhat.com>
920de7724f7SPaolo BonziniS: Supported
92174460f34SThomas HuthF: include/hw/scsi/*
9228d8b636dSPaolo BonziniF: hw/scsi/*
9236bd7776cSGreg KurzF: tests/virtio-scsi-test.c
9241ab09a40SAndreas FärberT: git git://github.com/bonzini/qemu.git scsi-next
925de7724f7SPaolo Bonzini
926de7724f7SPaolo BonziniLSI53C895A
9270e19885eSAnthony LiguoriS: Orphan
9288d8b636dSPaolo BonziniF: hw/scsi/lsi53c895a.c
929fd5d5c56SAnthony Liguori
930fcb5629dSPeter A. G. CrosthwaiteSSI
9314b46ba61SAlistair FrancisM: Peter Crosthwaite <crosthwaite.peter@gmail.com>
932fcb5629dSPeter A. G. CrosthwaiteS: Maintained
9338d8b636dSPaolo BonziniF: hw/ssi/*
9348d8b636dSPaolo BonziniF: hw/block/m25p80.c
9354b46ba61SAlistair FrancisX: hw/ssi/xilinx_*
9364b46ba61SAlistair Francis
9374b46ba61SAlistair FrancisXilinx SPI
9384b46ba61SAlistair FrancisM: Alistair Francis <alistair.francis@xilinx.com>
9394b46ba61SAlistair FrancisM: Peter Crosthwaite <crosthwaite.peter@gmail.com>
9404b46ba61SAlistair FrancisS: Maintained
9414b46ba61SAlistair FrancisF: hw/ssi/xilinx_*
942fcb5629dSPeter A. G. Crosthwaite
943fd5d5c56SAnthony LiguoriUSB
9445d0d62feSGerd HoffmannM: Gerd Hoffmann <kraxel@redhat.com>
9455d0d62feSGerd HoffmannS: Maintained
9468d8b636dSPaolo BonziniF: hw/usb/*
94728edfce0SGongleiF: tests/usb-*-test.c
948beded0ffSThomas HuthF: docs/usb2.txt
949beded0ffSThomas HuthF: docs/usb-storage.txt
950beded0ffSThomas HuthF: include/hw/usb.h
951beded0ffSThomas HuthF: include/hw/usb/
952fd5d5c56SAnthony Liguori
953e26082fdSPaolo BonziniUSB (serial adapter)
954e26082fdSPaolo BonziniM: Gerd Hoffmann <kraxel@redhat.com>
955e26082fdSPaolo BonziniM: Samuel Thibault <samuel.thibault@ens-lyon.org>
956e26082fdSPaolo BonziniS: Maintained
957e26082fdSPaolo BonziniF: hw/usb/dev-serial.c
958e26082fdSPaolo Bonzini
95992e1fb5eSAlex WilliamsonVFIO
96092e1fb5eSAlex WilliamsonM: Alex Williamson <alex.williamson@redhat.com>
96192e1fb5eSAlex WilliamsonS: Supported
962cf7087dbSKim PhillipsF: hw/vfio/*
96399b88c6dSThomas HuthF: include/hw/vfio/
96492e1fb5eSAlex Williamson
965fd5d5c56SAnthony Liguorivhost
966fd5d5c56SAnthony LiguoriM: Michael S. Tsirkin <mst@redhat.com>
967fd5d5c56SAnthony LiguoriS: Supported
9688d8b636dSPaolo BonziniF: hw/*/*vhost*
969fd5d5c56SAnthony Liguori
970fd5d5c56SAnthony Liguorivirtio
971a75143edSMichael S. TsirkinM: Michael S. Tsirkin <mst@redhat.com>
972fd5d5c56SAnthony LiguoriS: Supported
9738d8b636dSPaolo BonziniF: hw/*/virtio*
97472fa605dSThomas HuthF: hw/virtio/Makefile.objs
97572fa605dSThomas HuthF: hw/virtio/trace-events
9766a084ea3SMichael S. TsirkinF: net/vhost-user.c
977494f7b57SThomas HuthF: include/hw/virtio/
9786bd7776cSGreg KurzF: tests/virtio-balloon-test.c
979fd5d5c56SAnthony Liguori
980fd5d5c56SAnthony Liguorivirtio-9p
98123704102SAneesh Kumar K.VM: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
9828c1cd719SGreg KurzM: Greg Kurz <groug@kaod.org>
983fd5d5c56SAnthony LiguoriS: Supported
984aebeca25SAndreas FärberF: hw/9pfs/
985aebeca25SAndreas FärberF: fsdev/
9862d888c09SAndreas FärberF: tests/virtio-9p-test.c
9873f3309cbSAndreas FärberT: git git://github.com/kvaneesh/QEMU.git
9888c1cd719SGreg KurzT: git git://github.com/gkurz/qemu.git 9p-next
989fd5d5c56SAnthony Liguori
990fd5d5c56SAnthony Liguorivirtio-blk
99154d01a00SStefan HajnocziM: Stefan Hajnoczi <stefanha@redhat.com>
992b457a5f5SStefan HajnocziL: qemu-block@nongnu.org
993fd5d5c56SAnthony LiguoriS: Supported
9948d8b636dSPaolo BonziniF: hw/block/virtio-blk.c
995b457a5f5SStefan HajnocziF: hw/block/dataplane/*
9966bd7776cSGreg KurzF: tests/virtio-blk-test.c
997b457a5f5SStefan HajnocziT: git git://github.com/stefanha/qemu.git block
998fd5d5c56SAnthony Liguori
999dd4ad64aSCornelia Huckvirtio-ccw
1000dd4ad64aSCornelia HuckM: Cornelia Huck <cornelia.huck@de.ibm.com>
1001b304bf00SChristian BorntraegerM: Christian Borntraeger <borntraeger@de.ibm.com>
1002dd4ad64aSCornelia HuckS: Supported
1003dd4ad64aSCornelia HuckF: hw/s390x/virtio-ccw.[hc]
10043e9ed24bSCornelia HuckT: git git://github.com/cohuck/qemu.git s390-next
10053e9ed24bSCornelia HuckT: git git://github.com/borntraeger/qemu.git s390-next
1006dd4ad64aSCornelia Huck
1007a5d4d7b5SGerd Hoffmannvirtio-input
1008a5d4d7b5SGerd HoffmannM: Gerd Hoffmann <kraxel@redhat.com>
1009a5d4d7b5SGerd HoffmannS: Maintained
1010a5d4d7b5SGerd HoffmannF: hw/input/virtio-input*.c
1011a5d4d7b5SGerd HoffmannF: include/hw/virtio/virtio-input.h
1012a5d4d7b5SGerd Hoffmann
1013fd5d5c56SAnthony Liguorivirtio-serial
1014fd5d5c56SAnthony LiguoriM: Amit Shah <amit.shah@redhat.com>
1015fd5d5c56SAnthony LiguoriS: Supported
10168d8b636dSPaolo BonziniF: hw/char/virtio-serial-bus.c
10178d8b636dSPaolo BonziniF: hw/char/virtio-console.c
101868a5e38aSAmit ShahF: include/hw/virtio/virtio-serial.h
10196bd7776cSGreg KurzF: tests/virtio-console-test.c
10206bd7776cSGreg KurzF: tests/virtio-serial-test.c
1021fd5d5c56SAnthony Liguori
10221f51a5cbSAmit Shahvirtio-rng
10231f51a5cbSAmit ShahM: Amit Shah <amit.shah@redhat.com>
10241f51a5cbSAmit ShahS: Supported
10251f51a5cbSAmit ShahF: hw/virtio/virtio-rng.c
10261f51a5cbSAmit ShahF: include/hw/virtio/virtio-rng.h
1027750cf869SThomas HuthF: include/sysemu/rng*.h
10281f51a5cbSAmit ShahF: backends/rng*.c
10296bd7776cSGreg KurzF: tests/virtio-rng-test.c
10301f51a5cbSAmit Shah
10316034011cSGongleivirtio-crypto
10326034011cSGongleiM: Gonglei <arei.gonglei@huawei.com>
10336034011cSGongleiS: Supported
10346034011cSGongleiF: hw/virtio/virtio-crypto.c
10356034011cSGongleiF: hw/virtio/virtio-crypto-pci.c
10366034011cSGongleiF: include/hw/virtio/virtio-crypto.h
10376034011cSGonglei
1038f3c507adSKeith Buschnvme
1039f3c507adSKeith BuschM: Keith Busch <keith.busch@intel.com>
1040c95e4c0eSKevin WolfL: qemu-block@nongnu.org
1041f3c507adSKeith BuschS: Supported
1042f3c507adSKeith BuschF: hw/block/nvme*
1043fc967791SAndreas FärberF: tests/nvme-test.c
1044f3c507adSKeith Busch
1045d383c625SHannes Reineckemegasas
1046d383c625SHannes ReineckeM: Hannes Reinecke <hare@suse.de>
1047c95e4c0eSKevin WolfL: qemu-block@nongnu.org
1048d383c625SHannes ReineckeS: Supported
1049d383c625SHannes ReineckeF: hw/scsi/megasas.c
1050d383c625SHannes ReineckeF: hw/scsi/mfi.h
1051d383c625SHannes Reinecke
1052605d52e6SDmitry FleytmanNetwork packet abstractions
1053605d52e6SDmitry FleytmanM: Dmitry Fleytman <dmitry@daynix.com>
1054605d52e6SDmitry FleytmanS: Maintained
1055605d52e6SDmitry FleytmanF: include/net/eth.h
1056605d52e6SDmitry FleytmanF: net/eth.c
1057605d52e6SDmitry FleytmanF: hw/net/net_rx_pkt*
1058605d52e6SDmitry FleytmanF: hw/net/net_tx_pkt*
1059605d52e6SDmitry Fleytman
1060622fb504SDmitry FleytmanVmware
1061622fb504SDmitry FleytmanM: Dmitry Fleytman <dmitry@daynix.com>
1062622fb504SDmitry FleytmanS: Maintained
1063622fb504SDmitry FleytmanF: hw/net/vmxnet*
1064622fb504SDmitry FleytmanF: hw/scsi/vmw_pvscsi*
1065622fb504SDmitry Fleytman
1066de24d3f1SScott FeldmanRocker
1067de24d3f1SScott FeldmanM: Jiri Pirko <jiri@resnulli.us>
1068de24d3f1SScott FeldmanS: Maintained
1069de24d3f1SScott FeldmanF: hw/net/rocker/
1070de850948SThomas HuthF: tests/rocker/
1071de850948SThomas HuthF: docs/specs/rocker.txt
1072de24d3f1SScott Feldman
107370d1fb9cSXiao GuangrongNVDIMM
107470d1fb9cSXiao GuangrongM: Xiao Guangrong <guangrong.xiao@linux.intel.com>
107570d1fb9cSXiao GuangrongS: Maintained
107670d1fb9cSXiao GuangrongF: hw/acpi/nvdimm.c
107770d1fb9cSXiao GuangrongF: hw/mem/nvdimm.c
107870d1fb9cSXiao GuangrongF: include/hw/mem/nvdimm.h
107970d1fb9cSXiao Guangrong
1080093454e2SDmitry Fleytmane1000x
1081093454e2SDmitry FleytmanM: Dmitry Fleytman <dmitry@daynix.com>
1082093454e2SDmitry FleytmanS: Maintained
1083093454e2SDmitry FleytmanF: hw/net/e1000x*
1084093454e2SDmitry Fleytman
10856f3fbe4eSDmitry Fleytmane1000e
10866f3fbe4eSDmitry FleytmanM: Dmitry Fleytman <dmitry@daynix.com>
10876f3fbe4eSDmitry FleytmanS: Maintained
10886f3fbe4eSDmitry FleytmanF: hw/net/e1000e*
10896f3fbe4eSDmitry Fleytman
1090e481a1f6SAlistair FrancisGeneric Loader
1091e481a1f6SAlistair FrancisM: Alistair Francis <alistair.francis@xilinx.com>
1092e481a1f6SAlistair FrancisS: Maintained
1093e481a1f6SAlistair FrancisF: hw/core/generic-loader.c
1094e481a1f6SAlistair FrancisF: include/hw/core/generic-loader.h
1095e481a1f6SAlistair Francis
1096*87a9023aSThomas HuthCHRP NVRAM
1097*87a9023aSThomas HuthM: Thomas Huth <thuth@redhat.com>
1098*87a9023aSThomas HuthS: Maintained
1099*87a9023aSThomas HuthF: hw/nvram/chrp_nvram.c
1100*87a9023aSThomas HuthF: include/hw/nvram/chrp_nvram.h
1101*87a9023aSThomas HuthF: tests/prom-env-test.c
1102*87a9023aSThomas Huth
1103fd5d5c56SAnthony LiguoriSubsystems
1104fd5d5c56SAnthony Liguori----------
1105fd5d5c56SAnthony LiguoriAudio
11069f575846SGerd HoffmannM: Gerd Hoffmann <kraxel@redhat.com>
1107fd5d5c56SAnthony LiguoriS: Maintained
1108fd5d5c56SAnthony LiguoriF: audio/
11098d8b636dSPaolo BonziniF: hw/audio/
1110a2b245aeSThomas HuthF: include/hw/audio/
1111d7b50c0cSAndreas FärberF: tests/ac97-test.c
11128fa74c94SAndreas FärberF: tests/es1370-test.c
1113fbaf445aSAndreas FärberF: tests/intel-hda-test.c
1114fd5d5c56SAnthony Liguori
111517f1e8f5SStefan HajnocziBlock layer core
1116fd5d5c56SAnthony LiguoriM: Kevin Wolf <kwolf@redhat.com>
1117c4189d85SMax ReitzM: Max Reitz <mreitz@redhat.com>
1118c95e4c0eSKevin WolfL: qemu-block@nongnu.org
1119fd5d5c56SAnthony LiguoriS: Supported
1120fd5d5c56SAnthony LiguoriF: block*
1121fd5d5c56SAnthony LiguoriF: block/
11228d8b636dSPaolo BonziniF: hw/block/
11234c346e0bSKevin WolfF: include/block/
112446078760SKevin WolfF: qemu-img*
112546078760SKevin WolfF: qemu-io*
112629242091SKevin WolfF: tests/qemu-iotests/
1127d48adddaSStefan HajnocziT: git git://repo.or.cz/qemu/kevin.git block
1128fd5d5c56SAnthony Liguori
1129d55053b1SStefan HajnocziBlock I/O path
1130d55053b1SStefan HajnocziM: Stefan Hajnoczi <stefanha@redhat.com>
11319ca3003dSFam ZhengM: Fam Zheng <famz@redhat.com>
1132d55053b1SStefan HajnocziL: qemu-block@nongnu.org
1133d55053b1SStefan HajnocziS: Supported
1134d55053b1SStefan HajnocziF: async.c
1135d55053b1SStefan HajnocziF: aio-*.c
1136d55053b1SStefan HajnocziF: block/io.c
1137d55053b1SStefan HajnocziF: migration/block*
1138e1029ae2SFam ZhengF: include/block/aio.h
1139d55053b1SStefan HajnocziT: git git://github.com/stefanha/qemu.git block
1140d55053b1SStefan Hajnoczi
1141280458a3SJeff CodyBlock Jobs
1142280458a3SJeff CodyM: Jeff Cody <jcody@redhat.com>
1143280458a3SJeff CodyL: qemu-block@nongnu.org
1144280458a3SJeff CodyS: Supported
1145280458a3SJeff CodyF: blockjob.c
1146280458a3SJeff CodyF: include/block/blockjob.h
1147280458a3SJeff CodyF: block/backup.c
1148280458a3SJeff CodyF: block/commit.c
114977346025SJeff CodyF: block/stream.c
1150280458a3SJeff CodyF: block/mirror.c
1151280458a3SJeff CodyT: git git://github.com/codyprime/qemu-kvm-jtc.git block
1152280458a3SJeff Cody
11534120201dSMarkus ArmbrusterBlock QAPI, monitor, command line
11544120201dSMarkus ArmbrusterM: Markus Armbruster <armbru@redhat.com>
11554120201dSMarkus ArmbrusterS: Supported
11564120201dSMarkus ArmbrusterF: blockdev.c
11574120201dSMarkus ArmbrusterF: block/qapi.c
11584120201dSMarkus ArmbrusterF: qapi/block*.json
11594120201dSMarkus ArmbrusterT: git git://repo.or.cz/qemu/armbru.git block-next
11604120201dSMarkus Armbruster
116161af0ee6SPaolo BonziniCharacter device backends
1162da26f37aSPaolo BonziniM: Paolo Bonzini <pbonzini@redhat.com>
1163fd5d5c56SAnthony LiguoriS: Maintained
1164fd5d5c56SAnthony LiguoriF: qemu-char.c
1165da26f37aSPaolo BonziniF: backends/msmouse.c
1166da26f37aSPaolo BonziniF: backends/testdev.c
1167fd5d5c56SAnthony Liguori
1168e26082fdSPaolo BonziniCharacter Devices (Braille)
1169e26082fdSPaolo BonziniM: Samuel Thibault <samuel.thibault@ens-lyon.org>
1170e26082fdSPaolo BonziniS: Maintained
1171e26082fdSPaolo BonziniF: backends/baum.c
1172fd5d5c56SAnthony Liguori
11738c413e79SMarkus ArmbrusterCoverity model
11748c413e79SMarkus ArmbrusterM: Markus Armbruster <armbru@redhat.com>
11758c413e79SMarkus ArmbrusterS: Supported
11768c413e79SMarkus ArmbrusterF: scripts/coverity-model.c
11778c413e79SMarkus Armbruster
1178f2ca0524SAndreas FärberCPU
117912b0e69cSAndreas FärberL: qemu-devel@nongnu.org
1180f2ca0524SAndreas FärberS: Supported
1181f2ca0524SAndreas FärberF: qom/cpu.c
11826e481d57SPeter MaydellF: include/qom/cpu.h
1183f2ca0524SAndreas Färber
1184d24b569aSPeter A. G. CrosthwaiteDevice Tree
11854b46ba61SAlistair FrancisM: Peter Crosthwaite <crosthwaite.peter@gmail.com>
1186d24b569aSPeter A. G. CrosthwaiteM: Alexander Graf <agraf@suse.de>
1187d24b569aSPeter A. G. CrosthwaiteS: Maintained
118882407515SThomas HuthF: device_tree.c
118982407515SThomas HuthF: include/sysemu/device_tree.h
1190d24b569aSPeter A. G. Crosthwaite
11914f966768SMarkus ArmbrusterError reporting
11924f966768SMarkus ArmbrusterM: Markus Armbruster <armbru@redhat.com>
11934f966768SMarkus ArmbrusterS: Supported
11944f966768SMarkus ArmbrusterF: include/qapi/error.h
11954f966768SMarkus ArmbrusterF: include/qemu/error-report.h
11964f966768SMarkus ArmbrusterF: util/error.c
11974f966768SMarkus ArmbrusterF: util/qemu-error.c
11984f966768SMarkus Armbruster
1199fd5d5c56SAnthony LiguoriGDB stub
12005dd4a88cSPaolo BonziniL: qemu-devel@nongnu.org
1201fd5d5c56SAnthony LiguoriS: Odd Fixes
1202fd5d5c56SAnthony LiguoriF: gdbstub*
1203fd5d5c56SAnthony LiguoriF: gdb-xml/
1204fd5d5c56SAnthony Liguori
120501a9c03cSPaolo BonziniMemory API
120601a9c03cSPaolo BonziniM: Paolo Bonzini <pbonzini@redhat.com>
120701a9c03cSPaolo BonziniS: Supported
120801a9c03cSPaolo BonziniF: include/exec/ioport.h
120901a9c03cSPaolo BonziniF: ioport.c
121001a9c03cSPaolo BonziniF: include/exec/memory.h
12112b1641d0SPaolo BonziniF: include/exec/ram_addr.h
121201a9c03cSPaolo BonziniF: memory.c
121301a9c03cSPaolo BonziniF: include/exec/memory-internal.h
121401a9c03cSPaolo BonziniF: exec.c
121501a9c03cSPaolo Bonzini
12167ee3bf03SGerd HoffmannSPICE
12177ee3bf03SGerd HoffmannM: Gerd Hoffmann <kraxel@redhat.com>
12187ee3bf03SGerd HoffmannS: Supported
12196e481d57SPeter MaydellF: include/ui/qemu-spice.h
1220438528a3SThomas HuthF: include/ui/spice-display.h
12217ee3bf03SGerd HoffmannF: ui/spice-*.c
12227ee3bf03SGerd HoffmannF: audio/spiceaudio.c
12238d8b636dSPaolo BonziniF: hw/display/qxl*
12247ee3bf03SGerd Hoffmann
1225fd5d5c56SAnthony LiguoriGraphics
122625eccc37SGerd HoffmannM: Gerd Hoffmann <kraxel@redhat.com>
122725eccc37SGerd HoffmannS: Odd Fixes
1228fd5d5c56SAnthony LiguoriF: ui/
1229e220656cSThomas HuthF: include/ui/
1230fd5d5c56SAnthony Liguori
1231351f1bf6SAndreas FärberCocoa graphics
123230ef3c74SPeter MaydellM: Peter Maydell <peter.maydell@linaro.org>
1233351f1bf6SAndreas FärberS: Odd Fixes
1234351f1bf6SAndreas FärberF: ui/cocoa.m
1235351f1bf6SAndreas Färber
1236fd5d5c56SAnthony LiguoriMain loop
1237da26f37aSPaolo BonziniM: Paolo Bonzini <pbonzini@redhat.com>
1238da26f37aSPaolo BonziniS: Maintained
1239da26f37aSPaolo BonziniF: cpus.c
1240da26f37aSPaolo BonziniF: main-loop.c
1241da26f37aSPaolo BonziniF: qemu-timer.c
1242fd5d5c56SAnthony LiguoriF: vl.c
1243fd5d5c56SAnthony Liguori
12448899b4aeSLuiz CapitulinoHuman Monitor (HMP)
1245c833fb4aSMarkus ArmbrusterM: Dr. David Alan Gilbert <dgilbert@redhat.com>
1246fbb0621aSLuiz CapitulinoS: Maintained
1247fd5d5c56SAnthony LiguoriF: monitor.c
1248c13e9912SThomas HuthF: hmp.[ch]
1249c13e9912SThomas HuthF: hmp-commands*.hx
1250c13e9912SThomas HuthF: include/monitor/hmp-target.h
1251fd5d5c56SAnthony Liguori
1252f536f112SPaolo BonziniNetwork device backends
1253442469e6SStefan HajnocziM: Jason Wang <jasowang@redhat.com>
1254fd5d5c56SAnthony LiguoriS: Maintained
1255fd5d5c56SAnthony LiguoriF: net/
1256d24b2b1cSThomas HuthF: include/net/
12575fc51cc3SJason WangT: git git://github.com/jasowang/qemu.git net
1258fd5d5c56SAnthony Liguori
1259aee09bafSVincenzo MaffioneNetmap network backend
1260aee09bafSVincenzo MaffioneM: Luigi Rizzo <rizzo@iet.unipi.it>
1261aee09bafSVincenzo MaffioneM: Giuseppe Lettieri <g.lettieri@iet.unipi.it>
1262aee09bafSVincenzo MaffioneM: Vincenzo Maffione <v.maffione@gmail.com>
1263aee09bafSVincenzo MaffioneW: http://info.iet.unipi.it/~luigi/netmap/
1264aee09bafSVincenzo MaffioneS: Maintained
1265aee09bafSVincenzo MaffioneF: net/netmap.c
1266aee09bafSVincenzo Maffione
126744f76b28SPaolo BonziniNetwork Block Device (NBD)
126844f76b28SPaolo BonziniM: Paolo Bonzini <pbonzini@redhat.com>
126944f76b28SPaolo BonziniS: Odd Fixes
1270798bfe00SFam ZhengF: block/nbd*
1271798bfe00SFam ZhengF: nbd/
1272798bfe00SFam ZhengF: include/block/nbd*
127344f76b28SPaolo BonziniF: qemu-nbd.c
12741ab09a40SAndreas FärberT: git git://github.com/bonzini/qemu.git nbd-next
127544f76b28SPaolo Bonzini
12762f54eb98SEduardo HabkostNUMA
12772f54eb98SEduardo HabkostM: Eduardo Habkost <ehabkost@redhat.com>
12782f54eb98SEduardo HabkostS: Maintained
12792f54eb98SEduardo HabkostF: numa.c
12802f54eb98SEduardo HabkostF: include/sysemu/numa.h
12812f54eb98SEduardo HabkostT: git git://github.com/ehabkost/qemu.git numa
12822f54eb98SEduardo Habkost
12834fc264f4SEduardo HabkostHost Memory Backends
12844fc264f4SEduardo HabkostM: Eduardo Habkost <ehabkost@redhat.com>
12854fc264f4SEduardo HabkostM: Igor Mammedov <imammedo@redhat.com>
12864fc264f4SEduardo HabkostS: Maintained
12874fc264f4SEduardo HabkostF: backends/hostmem*.c
12884fc264f4SEduardo HabkostF: include/sysemu/hostmem.h
12894fc264f4SEduardo Habkost
12906034011cSGongleiCryptodev Backends
12916034011cSGongleiM: Gonglei <arei.gonglei@huawei.com>
12926034011cSGongleiS: Maintained
12936034011cSGongleiF: include/sysemu/cryptodev*.h
12946034011cSGongleiF: backends/cryptodev*.c
12956034011cSGonglei
12968899b4aeSLuiz CapitulinoQAPI
12979740618cSLuiz CapitulinoM: Markus Armbruster <armbru@redhat.com>
12988899b4aeSLuiz CapitulinoM: Michael Roth <mdroth@linux.vnet.ibm.com>
12999740618cSLuiz CapitulinoS: Supported
13008899b4aeSLuiz CapitulinoF: qapi/
13010311c5bdSMarkus ArmbrusterX: qapi/*.json
1302ac4abb9aSMarkus ArmbrusterF: include/qapi/
1303ac4abb9aSMarkus ArmbrusterX: include/qapi/qmp/
1304ac4abb9aSMarkus ArmbrusterF: include/qapi/qmp/dispatch.h
1305c0bd0b50SPaolo BonziniF: tests/qapi-schema/
1306ac4abb9aSMarkus ArmbrusterF: tests/test-*-visitor.c
1307ac4abb9aSMarkus ArmbrusterF: tests/test-qmp-*.c
13080311c5bdSMarkus ArmbrusterF: scripts/qapi*
13090311c5bdSMarkus ArmbrusterF: docs/qapi*
13109740618cSLuiz CapitulinoT: git git://repo.or.cz/qemu/armbru.git qapi-next
13118899b4aeSLuiz Capitulino
13127810d291SLuiz CapitulinoQAPI Schema
13137810d291SLuiz CapitulinoM: Eric Blake <eblake@redhat.com>
13147810d291SLuiz CapitulinoM: Markus Armbruster <armbru@redhat.com>
13157810d291SLuiz CapitulinoS: Supported
13167810d291SLuiz CapitulinoF: qapi-schema.json
13170311c5bdSMarkus ArmbrusterF: qapi/*.json
13189740618cSLuiz CapitulinoT: git git://repo.or.cz/qemu/armbru.git qapi-next
13197810d291SLuiz Capitulino
1320f3582ba4SLuiz CapitulinoQObject
1321daf5dc78SMarkus ArmbrusterM: Markus Armbruster <armbru@redhat.com>
1322daf5dc78SMarkus ArmbrusterS: Supported
1323f3582ba4SLuiz CapitulinoF: qobject/
13247735d2b5SMarkus ArmbrusterF: include/qapi/qmp/
13257735d2b5SMarkus ArmbrusterX: include/qapi/qmp/dispatch.h
13267735d2b5SMarkus ArmbrusterF: tests/check-qdict.c
13277735d2b5SMarkus ArmbrusterF: tests/check-qfloat.c
13287735d2b5SMarkus ArmbrusterF: tests/check-qint.c
13297735d2b5SMarkus ArmbrusterF: tests/check-qjson.c
13307735d2b5SMarkus ArmbrusterF: tests/check-qlist.c
13317735d2b5SMarkus ArmbrusterF: tests/check-qstring.c
1332daf5dc78SMarkus ArmbrusterT: git git://repo.or.cz/qemu/armbru.git qapi-next
1333f3582ba4SLuiz Capitulino
1334f05d9999SMichael RothQEMU Guest Agent
1335f05d9999SMichael RothM: Michael Roth <mdroth@linux.vnet.ibm.com>
1336f05d9999SMichael RothS: Maintained
1337f05d9999SMichael RothF: qga/
1338f05d9999SMichael RothT: git git://github.com/mdroth/qemu.git qga
1339f05d9999SMichael Roth
13404688c94cSAndreas FärberQOM
13414688c94cSAndreas FärberM: Andreas Färber <afaerber@suse.de>
13424688c94cSAndreas FärberS: Supported
13434688c94cSAndreas FärberT: git git://github.com/afaerber/qemu-cpu.git qom-next
13444688c94cSAndreas FärberF: include/qom/
13454688c94cSAndreas FärberX: include/qom/cpu.h
13464688c94cSAndreas FärberF: qom/
13474688c94cSAndreas FärberX: qom/cpu.c
13489f4aa7ceSAndreas FärberF: tests/check-qom-interface.c
13499f4aa7ceSAndreas FärberF: tests/check-qom-proplist.c
13504688c94cSAndreas FärberF: tests/qom-test.c
13514688c94cSAndreas Färber
13528899b4aeSLuiz CapitulinoQMP
13539740618cSLuiz CapitulinoM: Markus Armbruster <armbru@redhat.com>
13549740618cSLuiz CapitulinoS: Supported
13558899b4aeSLuiz CapitulinoF: qmp.c
13568899b4aeSLuiz CapitulinoF: monitor.c
13579b89b6a2SMarkus ArmbrusterF: docs/*qmp-*
13589740618cSLuiz CapitulinoF: scripts/qmp/
13599740618cSLuiz CapitulinoT: git git://repo.or.cz/qemu/armbru.git qapi-next
13608899b4aeSLuiz Capitulino
1361cc0100f4SAlistair FrancisRegister API
1362cc0100f4SAlistair FrancisM: Alistair Francis <alistair.francis@xilinx.com>
1363cc0100f4SAlistair FrancisS: Maintained
1364cc0100f4SAlistair FrancisF: hw/core/register.c
1365cc0100f4SAlistair FrancisF: include/hw/register.h
1366cc0100f4SAlistair Francis
1367fd5d5c56SAnthony LiguoriSLIRP
1368eda509faSSamuel ThibaultM: Samuel Thibault <samuel.thibault@ens-lyon.org>
1369bafc72abSJan KiszkaM: Jan Kiszka <jan.kiszka@siemens.com>
1370bafc72abSJan KiszkaS: Maintained
1371fd5d5c56SAnthony LiguoriF: slirp/
1372663fb1e1SThomas HuthF: net/slirp.c
1373d24b2b1cSThomas HuthF: include/net/slirp.h
13741ab09a40SAndreas FärberT: git git://git.kiszka.org/qemu.git queues/slirp
1375fd5d5c56SAnthony Liguori
1376b1ed728aSPaolo BonziniStubs
1377b1ed728aSPaolo BonziniM: Paolo Bonzini <pbonzini@redhat.com>
1378b1ed728aSPaolo BonziniS: Maintained
1379b1ed728aSPaolo BonziniF: stubs/
1380b1ed728aSPaolo Bonzini
1381598a3f35SStefan HajnocziTracing
13821cd0f8ceSStefan HajnocziM: Stefan Hajnoczi <stefanha@redhat.com>
1383598a3f35SStefan HajnocziS: Maintained
1384598a3f35SStefan HajnocziF: trace/
1385f70fd8fdSLluís VilanovaF: scripts/tracetool.py
1386f70fd8fdSLluís VilanovaF: scripts/tracetool/
1387f922ea46SAndreas FärberF: docs/tracing.txt
13881ab09a40SAndreas FärberT: git git://github.com/stefanha/qemu.git tracing
1389598a3f35SStefan Hajnoczi
139014f40fdcSBlue SwirlCheckpatch
139114f40fdcSBlue SwirlS: Odd Fixes
139214f40fdcSBlue SwirlF: scripts/checkpatch.pl
139314f40fdcSBlue Swirl
1394c0787c8dSJuan QuintelaMigration
1395c0787c8dSJuan QuintelaM: Juan Quintela <quintela@redhat.com>
13967f4675c3SAmit ShahM: Amit Shah <amit.shah@redhat.com>
1397c0787c8dSJuan QuintelaS: Maintained
1398c0787c8dSJuan QuintelaF: include/migration/
139944a1f946SDr. David Alan GilbertF: migration/
1400c5515640SAmit ShahF: scripts/vmstate-static-checker.py
1401c5515640SAmit ShahF: tests/vmstate-static-checker-data/
1402a609ad8bSThomas HuthF: docs/migration.txt
1403c0787c8dSJuan Quintela
140492bfedb0SEduardo OtuboSeccomp
14059d9de254SEduardo OtuboM: Eduardo Otubo <eduardo.otubo@profitbricks.com>
140692bfedb0SEduardo OtuboS: Supported
140792bfedb0SEduardo OtuboF: qemu-seccomp.c
140892bfedb0SEduardo OtuboF: include/sysemu/seccomp.h
140992bfedb0SEduardo Otubo
1410ddbb0d09SDaniel P. BerrangeCryptography
1411ddbb0d09SDaniel P. BerrangeM: Daniel P. Berrange <berrange@redhat.com>
1412ddbb0d09SDaniel P. BerrangeS: Maintained
1413ddbb0d09SDaniel P. BerrangeF: crypto/
1414ddbb0d09SDaniel P. BerrangeF: include/crypto/
1415ddbb0d09SDaniel P. BerrangeF: tests/test-crypto-*
1416ddbb0d09SDaniel P. Berrange
141710817bf0SDaniel P. BerrangeCoroutines
141810817bf0SDaniel P. BerrangeM: Stefan Hajnoczi <stefanha@redhat.com>
141910817bf0SDaniel P. BerrangeM: Kevin Wolf <kwolf@redhat.com>
142010817bf0SDaniel P. BerrangeF: util/*coroutine*
142110817bf0SDaniel P. BerrangeF: include/qemu/coroutine*
142210817bf0SDaniel P. BerrangeF: tests/test-coroutine.c
142310817bf0SDaniel P. Berrange
142488c5f205SDaniel P. BerrangeBuffers
142588c5f205SDaniel P. BerrangeM: Daniel P. Berrange <berrange@redhat.com>
142688c5f205SDaniel P. BerrangeS: Odd fixes
142788c5f205SDaniel P. BerrangeF: util/buffer.c
142888c5f205SDaniel P. BerrangeF: include/qemu/buffer.h
142988c5f205SDaniel P. Berrange
1430666a3af9SDaniel P. BerrangeI/O Channels
1431666a3af9SDaniel P. BerrangeM: Daniel P. Berrange <berrange@redhat.com>
1432666a3af9SDaniel P. BerrangeS: Maintained
1433666a3af9SDaniel P. BerrangeF: io/
1434666a3af9SDaniel P. BerrangeF: include/io/
1435666a3af9SDaniel P. BerrangeF: tests/test-io-*
1436666a3af9SDaniel P. Berrange
14375614a283SGerd HoffmannSockets
14385614a283SGerd HoffmannM: Daniel P. Berrange <berrange@redhat.com>
14395614a283SGerd HoffmannM: Gerd Hoffmann <kraxel@redhat.com>
14405614a283SGerd HoffmannM: Paolo Bonzini <pbonzini@redhat.com>
14415614a283SGerd HoffmannS: Maintained
14425614a283SGerd HoffmannF: include/qemu/sockets.h
14435614a283SGerd HoffmannF: util/qemu-sockets.c
14445614a283SGerd Hoffmann
1445d310d85bSAlberto GarciaThrottling infrastructure
1446d310d85bSAlberto GarciaM: Alberto Garcia <berto@igalia.com>
1447d310d85bSAlberto GarciaS: Supported
1448d310d85bSAlberto GarciaF: block/throttle-groups.c
1449d310d85bSAlberto GarciaF: include/block/throttle-groups.h
1450d310d85bSAlberto GarciaF: include/qemu/throttle.h
1451d310d85bSAlberto GarciaF: util/throttle.c
1452d310d85bSAlberto GarciaL: qemu-block@nongnu.org
1453d310d85bSAlberto Garcia
1454080d7aacSFam ZhengUUID
1455080d7aacSFam ZhengM: Fam Zheng <famz@redhat.com>
1456080d7aacSFam ZhengS: Supported
1457080d7aacSFam ZhengF: util/uuid.c
1458080d7aacSFam ZhengF: include/qemu/uuid.h
1459080d7aacSFam ZhengF: tests/test-uuid.c
1460080d7aacSFam Zheng
1461a4cc318eSzhanghailiangCOLO Framework
1462a4cc318eSzhanghailiangM: zhanghailiang <zhang.zhanghailiang@huawei.com>
1463a4cc318eSzhanghailiangS: Maintained
1464a4cc318eSzhanghailiangF: migration/colo*
1465a4cc318eSzhanghailiangF: include/migration/colo.h
1466a4cc318eSzhanghailiangF: include/migration/failover.h
1467a4cc318eSzhanghailiangF: docs/COLO-FT.txt
1468a4cc318eSzhanghailiang
146988f82ed1SZhang ChenCOLO Proxy
147088f82ed1SZhang ChenM: Zhang Chen <zhangchen.fnst@cn.fujitsu.com>
147188f82ed1SZhang ChenM: Li Zhijian <lizhijian@cn.fujitsu.com>
147288f82ed1SZhang ChenS: Supported
147388f82ed1SZhang ChenF: docs/colo-proxy.txt
147488f82ed1SZhang ChenF: net/colo*
147588f82ed1SZhang ChenF: net/filter-rewriter.c
147688f82ed1SZhang ChenF: net/filter-mirror.c
147788f82ed1SZhang Chen
1478fd5d5c56SAnthony LiguoriUsermode Emulation
1479fd5d5c56SAnthony Liguori------------------
1480486bbe5fSPaolo BonziniOverall
1481486bbe5fSPaolo BonziniM: Riku Voipio <riku.voipio@iki.fi>
1482486bbe5fSPaolo BonziniS: Maintained
1483486bbe5fSPaolo BonziniF: thunk.c
1484486bbe5fSPaolo BonziniF: user-exec.c
1485486bbe5fSPaolo Bonzini
1486fd5d5c56SAnthony LiguoriBSD user
1487297e8005SMarkus ArmbrusterS: Orphan
1488fd5d5c56SAnthony LiguoriF: bsd-user/
1489ccf0a57bSThomas HuthF: default-configs/*-bsd-user.mak
1490fd5d5c56SAnthony Liguori
1491fd5d5c56SAnthony LiguoriLinux user
1492fd5d5c56SAnthony LiguoriM: Riku Voipio <riku.voipio@iki.fi>
1493fd5d5c56SAnthony LiguoriS: Maintained
1494fd5d5c56SAnthony LiguoriF: linux-user/
1495ccf0a57bSThomas HuthF: default-configs/*-linux-user.mak
149642f5a7e9SAurelien Jarno
149742f5a7e9SAurelien JarnoTiny Code Generator (TCG)
149842f5a7e9SAurelien Jarno-------------------------
149942f5a7e9SAurelien JarnoCommon code
1500cc7772bdSRichard HendersonM: Richard Henderson <rth@twiddle.net>
150142f5a7e9SAurelien JarnoS: Maintained
150242f5a7e9SAurelien JarnoF: tcg/
150342f5a7e9SAurelien Jarno
1504b25a464cSClaudio FontanaAArch64 target
1505b25a464cSClaudio FontanaM: Claudio Fontana <claudio.fontana@huawei.com>
1506b25a464cSClaudio FontanaM: Claudio Fontana <claudio.fontana@gmail.com>
1507b25a464cSClaudio FontanaS: Maintained
1508b4f2bd1cSPeter MaydellL: qemu-arm@nongnu.org
1509b25a464cSClaudio FontanaF: tcg/aarch64/
1510c17652eeSPaolo BonziniF: disas/arm-a64.cc
1511c17652eeSPaolo BonziniF: disas/libvixl/
1512b25a464cSClaudio Fontana
151342f5a7e9SAurelien JarnoARM target
151442f5a7e9SAurelien JarnoM: Andrzej Zaborowski <balrogg@gmail.com>
151542f5a7e9SAurelien JarnoS: Maintained
1516b4f2bd1cSPeter MaydellL: qemu-arm@nongnu.org
151742f5a7e9SAurelien JarnoF: tcg/arm/
1518c17652eeSPaolo BonziniF: disas/arm.c
151942f5a7e9SAurelien Jarno
152042f5a7e9SAurelien Jarnoi386 target
15215dd4a88cSPaolo BonziniL: qemu-devel@nongnu.org
152242f5a7e9SAurelien JarnoS: Maintained
152342f5a7e9SAurelien JarnoF: tcg/i386/
1524c17652eeSPaolo BonziniF: disas/i386.c
152542f5a7e9SAurelien Jarno
152642f5a7e9SAurelien JarnoIA64 target
152742f5a7e9SAurelien JarnoM: Aurelien Jarno <aurelien@aurel32.net>
152842f5a7e9SAurelien JarnoS: Maintained
152942f5a7e9SAurelien JarnoF: tcg/ia64/
1530c17652eeSPaolo BonziniF: disas/ia64.c
153142f5a7e9SAurelien Jarno
153242f5a7e9SAurelien JarnoMIPS target
1533d6eec7a2SPeter MaydellM: Aurelien Jarno <aurelien@aurel32.net>
153442f5a7e9SAurelien JarnoS: Maintained
153542f5a7e9SAurelien JarnoF: tcg/mips/
1536c17652eeSPaolo BonziniF: disas/mips.c
153742f5a7e9SAurelien Jarno
153842f5a7e9SAurelien JarnoPPC
153915610d42SPranith KumarM: Richard Henderson <rth@twiddle.net>
154015610d42SPranith KumarS: Odd Fixes
154142f5a7e9SAurelien JarnoF: tcg/ppc/
1542c17652eeSPaolo BonziniF: disas/ppc.c
154342f5a7e9SAurelien Jarno
154442f5a7e9SAurelien JarnoS390 target
154542f5a7e9SAurelien JarnoM: Alexander Graf <agraf@suse.de>
154642f5a7e9SAurelien JarnoM: Richard Henderson <rth@twiddle.net>
154742f5a7e9SAurelien JarnoS: Maintained
154842f5a7e9SAurelien JarnoF: tcg/s390/
1549c17652eeSPaolo BonziniF: disas/s390.c
155042f5a7e9SAurelien Jarno
155142f5a7e9SAurelien JarnoSPARC target
1552297e8005SMarkus ArmbrusterS: Odd Fixes
155342f5a7e9SAurelien JarnoF: tcg/sparc/
1554c17652eeSPaolo BonziniF: disas/sparc.c
1555bc75c9e5SStefan Weil
1556bc75c9e5SStefan WeilTCI target
1557bc75c9e5SStefan WeilM: Stefan Weil <sw@weilnetz.de>
1558bc75c9e5SStefan WeilS: Maintained
15598ef9cd55SAndreas FärberF: tcg/tci/
15602b7be8c8SStefan WeilF: tci.c
1561c17652eeSPaolo BonziniF: disas/tci.c
1562aa09c951SAndreas Färber
1563aa09c951SAndreas FärberStable branches
1564aa09c951SAndreas Färber---------------
1565aa09c951SAndreas FärberStable 1.0
1566aa09c951SAndreas FärberL: qemu-stable@nongnu.org
156785938981SStefan HajnocziT: git git://git.qemu-project.org/qemu-stable-1.0.git
1568aa09c951SAndreas FärberS: Orphan
1569aa09c951SAndreas Färber
1570aa09c951SAndreas FärberStable 0.15
1571aa09c951SAndreas FärberL: qemu-stable@nongnu.org
157285938981SStefan HajnocziT: git git://git.qemu-project.org/qemu-stable-0.15.git
1573211b76d1SAndreas FärberS: Orphan
1574aa09c951SAndreas Färber
1575aa09c951SAndreas FärberStable 0.14
1576aa09c951SAndreas FärberL: qemu-stable@nongnu.org
157785938981SStefan HajnocziT: git git://git.qemu-project.org/qemu-stable-0.14.git
1578aa09c951SAndreas FärberS: Orphan
1579aa09c951SAndreas Färber
1580aa09c951SAndreas FärberStable 0.10
1581aa09c951SAndreas FärberL: qemu-stable@nongnu.org
158285938981SStefan HajnocziT: git git://git.qemu-project.org/qemu-stable-0.10.git
1583aa09c951SAndreas FärberS: Orphan
1584f05b328cSStefan Hajnoczi
1585f05b328cSStefan HajnocziBlock drivers
1586f05b328cSStefan Hajnoczi-------------
1587f05b328cSStefan HajnocziVMDK
1588f05b328cSStefan HajnocziM: Fam Zheng <famz@redhat.com>
1589c95e4c0eSKevin WolfL: qemu-block@nongnu.org
1590f05b328cSStefan HajnocziS: Supported
1591f05b328cSStefan HajnocziF: block/vmdk.c
1592f05b328cSStefan Hajnoczi
1593f05b328cSStefan HajnocziRBD
15945a8ac6d9SJosh DurginM: Josh Durgin <jdurgin@redhat.com>
1595280458a3SJeff CodyM: Jeff Cody <jcody@redhat.com>
1596280458a3SJeff CodyL: qemu-block@nongnu.org
1597f05b328cSStefan HajnocziS: Supported
1598f05b328cSStefan HajnocziF: block/rbd.c
1599280458a3SJeff CodyT: git git://github.com/codyprime/qemu-kvm-jtc.git block
1600f05b328cSStefan Hajnoczi
1601f05b328cSStefan HajnocziSheepdog
160253b33231SMORITA KazutakaM: Hitoshi Mitake <mitake.hitoshi@lab.ntt.co.jp>
1603f05b328cSStefan HajnocziM: Liu Yuan <namei.unix@gmail.com>
1604280458a3SJeff CodyM: Jeff Cody <jcody@redhat.com>
1605280458a3SJeff CodyL: qemu-block@nongnu.org
1606dce32b6cSLiu YuanL: sheepdog@lists.wpkg.org
1607f05b328cSStefan HajnocziS: Supported
1608f05b328cSStefan HajnocziF: block/sheepdog.c
1609280458a3SJeff CodyT: git git://github.com/codyprime/qemu-kvm-jtc.git block
1610f05b328cSStefan Hajnoczi
1611f05b328cSStefan HajnocziVHDX
1612f05b328cSStefan HajnocziM: Jeff Cody <jcody@redhat.com>
1613280458a3SJeff CodyL: qemu-block@nongnu.org
1614f05b328cSStefan HajnocziS: Supported
1615f05b328cSStefan HajnocziF: block/vhdx*
1616280458a3SJeff CodyT: git git://github.com/codyprime/qemu-kvm-jtc.git block
1617f05b328cSStefan Hajnoczi
1618f05b328cSStefan HajnocziVDI
1619f05b328cSStefan HajnocziM: Stefan Weil <sw@weilnetz.de>
1620c95e4c0eSKevin WolfL: qemu-block@nongnu.org
1621f05b328cSStefan HajnocziS: Maintained
1622f05b328cSStefan HajnocziF: block/vdi.c
1623f05b328cSStefan Hajnoczi
1624f05b328cSStefan HajnocziiSCSI
1625f05b328cSStefan HajnocziM: Ronnie Sahlberg <ronniesahlberg@gmail.com>
1626f05b328cSStefan HajnocziM: Paolo Bonzini <pbonzini@redhat.com>
1627f05b328cSStefan HajnocziM: Peter Lieven <pl@kamp.de>
1628c95e4c0eSKevin WolfL: qemu-block@nongnu.org
1629f05b328cSStefan HajnocziS: Supported
1630f05b328cSStefan HajnocziF: block/iscsi.c
1631f05b328cSStefan Hajnoczi
16326542aa9cSPeter LievenNFS
1633280458a3SJeff CodyM: Jeff Cody <jcody@redhat.com>
16346542aa9cSPeter LievenM: Peter Lieven <pl@kamp.de>
1635280458a3SJeff CodyL: qemu-block@nongnu.org
16366542aa9cSPeter LievenS: Maintained
16376542aa9cSPeter LievenF: block/nfs.c
1638280458a3SJeff CodyT: git git://github.com/codyprime/qemu-kvm-jtc.git block
16396542aa9cSPeter Lieven
1640f05b328cSStefan HajnocziSSH
1641f05b328cSStefan HajnocziM: Richard W.M. Jones <rjones@redhat.com>
1642280458a3SJeff CodyM: Jeff Cody <jcody@redhat.com>
1643280458a3SJeff CodyL: qemu-block@nongnu.org
1644f05b328cSStefan HajnocziS: Supported
1645f05b328cSStefan HajnocziF: block/ssh.c
1646280458a3SJeff CodyT: git git://github.com/codyprime/qemu-kvm-jtc.git block
1647c9a12e75SChrysostomos Nanakos
1648c9a12e75SChrysostomos NanakosARCHIPELAGO
1649c9a12e75SChrysostomos NanakosM: Chrysostomos Nanakos <chris@include.gr>
1650280458a3SJeff CodyM: Jeff Cody <jcody@redhat.com>
1651280458a3SJeff CodyL: qemu-block@nongnu.org
1652c9a12e75SChrysostomos NanakosS: Maintained
1653c9a12e75SChrysostomos NanakosF: block/archipelago.c
1654280458a3SJeff CodyT: git git://github.com/codyprime/qemu-kvm-jtc.git block
1655280458a3SJeff Cody
1656280458a3SJeff CodyCURL
1657280458a3SJeff CodyM: Jeff Cody <jcody@redhat.com>
1658280458a3SJeff CodyL: qemu-block@nongnu.org
1659280458a3SJeff CodyS: Supported
1660280458a3SJeff CodyF: block/curl.c
1661280458a3SJeff CodyT: git git://github.com/codyprime/qemu-kvm-jtc.git block
1662280458a3SJeff Cody
1663280458a3SJeff CodyGLUSTER
1664280458a3SJeff CodyM: Jeff Cody <jcody@redhat.com>
1665280458a3SJeff CodyL: qemu-block@nongnu.org
1666280458a3SJeff CodyS: Supported
1667280458a3SJeff CodyF: block/gluster.c
1668280458a3SJeff CodyT: git git://github.com/codyprime/qemu-kvm-jtc.git block
1669b5e9476cSGonglei
1670199667a8SFam ZhengNull Block Driver
1671199667a8SFam ZhengM: Fam Zheng <famz@redhat.com>
1672199667a8SFam ZhengL: qemu-block@nongnu.org
1673199667a8SFam ZhengS: Supported
1674199667a8SFam ZhengF: block/null.c
1675199667a8SFam Zheng
1676b5e9476cSGongleiBootdevice
1677b5e9476cSGongleiM: Gonglei <arei.gonglei@huawei.com>
1678b5e9476cSGongleiS: Maintained
1679b5e9476cSGongleiF: bootdevice.c
1680ecdda9e0SAlberto Garcia
1681ecdda9e0SAlberto GarciaQuorum
1682ecdda9e0SAlberto GarciaM: Alberto Garcia <berto@igalia.com>
1683ecdda9e0SAlberto GarciaS: Supported
1684ecdda9e0SAlberto GarciaF: block/quorum.c
1685ecdda9e0SAlberto GarciaL: qemu-block@nongnu.org
1686e7c6e631SStefan Hajnoczi
1687e7c6e631SStefan Hajnocziblkverify
1688e7c6e631SStefan HajnocziM: Stefan Hajnoczi <stefanha@redhat.com>
1689e7c6e631SStefan HajnocziL: qemu-block@nongnu.org
1690e7c6e631SStefan HajnocziS: Supported
1691e7c6e631SStefan HajnocziF: block/blkverify.c
1692e7c6e631SStefan Hajnoczi
1693e7c6e631SStefan Hajnoczibochs
1694e7c6e631SStefan HajnocziM: Stefan Hajnoczi <stefanha@redhat.com>
1695e7c6e631SStefan HajnocziL: qemu-block@nongnu.org
1696e7c6e631SStefan HajnocziS: Supported
1697e7c6e631SStefan HajnocziF: block/bochs.c
1698e7c6e631SStefan Hajnoczi
1699e7c6e631SStefan Hajnoczicloop
1700e7c6e631SStefan HajnocziM: Stefan Hajnoczi <stefanha@redhat.com>
1701e7c6e631SStefan HajnocziL: qemu-block@nongnu.org
1702e7c6e631SStefan HajnocziS: Supported
1703e7c6e631SStefan HajnocziF: block/cloop.c
1704e7c6e631SStefan Hajnoczi
1705e7c6e631SStefan Hajnoczidmg
1706e7c6e631SStefan HajnocziM: Stefan Hajnoczi <stefanha@redhat.com>
1707e7c6e631SStefan HajnocziL: qemu-block@nongnu.org
1708e7c6e631SStefan HajnocziS: Supported
1709e7c6e631SStefan HajnocziF: block/dmg.c
1710e7c6e631SStefan Hajnoczi
1711e7c6e631SStefan Hajnocziparallels
1712e7c6e631SStefan HajnocziM: Stefan Hajnoczi <stefanha@redhat.com>
1713f3073712SDenis V. LunevM: Denis V. Lunev <den@openvz.org>
1714e7c6e631SStefan HajnocziL: qemu-block@nongnu.org
1715e7c6e631SStefan HajnocziS: Supported
1716e7c6e631SStefan HajnocziF: block/parallels.c
1717b4a9e25bSVladimir Sementsov-OgievskiyF: docs/specs/parallels.txt
1718e7c6e631SStefan Hajnoczi
1719e7c6e631SStefan Hajnocziqed
1720e7c6e631SStefan HajnocziM: Stefan Hajnoczi <stefanha@redhat.com>
1721e7c6e631SStefan HajnocziL: qemu-block@nongnu.org
1722e7c6e631SStefan HajnocziS: Supported
1723e7c6e631SStefan HajnocziF: block/qed.c
1724e7c6e631SStefan Hajnoczi
1725e7c6e631SStefan Hajnocziraw
1726e7c6e631SStefan HajnocziM: Kevin Wolf <kwolf@redhat.com>
1727e7c6e631SStefan HajnocziL: qemu-block@nongnu.org
1728e7c6e631SStefan HajnocziS: Supported
1729e7c6e631SStefan HajnocziF: block/linux-aio.c
1730f586d5fcSMarkus ArmbrusterF: include/block/raw-aio.h
1731e7c6e631SStefan HajnocziF: block/raw-posix.c
1732e7c6e631SStefan HajnocziF: block/raw-win32.c
1733e7c6e631SStefan HajnocziF: block/raw_bsd.c
1734e7c6e631SStefan HajnocziF: block/win32-aio.c
1735e7c6e631SStefan Hajnoczi
1736e7c6e631SStefan Hajnocziqcow2
1737e7c6e631SStefan HajnocziM: Kevin Wolf <kwolf@redhat.com>
1738c4189d85SMax ReitzM: Max Reitz <mreitz@redhat.com>
1739e7c6e631SStefan HajnocziL: qemu-block@nongnu.org
1740e7c6e631SStefan HajnocziS: Supported
1741e7c6e631SStefan HajnocziF: block/qcow2*
1742e7c6e631SStefan Hajnoczi
1743e7c6e631SStefan Hajnocziqcow
1744e7c6e631SStefan HajnocziM: Kevin Wolf <kwolf@redhat.com>
1745e7c6e631SStefan HajnocziL: qemu-block@nongnu.org
1746e7c6e631SStefan HajnocziS: Supported
1747e7c6e631SStefan HajnocziF: block/qcow.c
1748e7c6e631SStefan Hajnoczi
1749e7c6e631SStefan Hajnocziblkdebug
1750e7c6e631SStefan HajnocziM: Kevin Wolf <kwolf@redhat.com>
1751c4189d85SMax ReitzM: Max Reitz <mreitz@redhat.com>
1752e7c6e631SStefan HajnocziL: qemu-block@nongnu.org
1753e7c6e631SStefan HajnocziS: Supported
1754e7c6e631SStefan HajnocziF: block/blkdebug.c
1755e7c6e631SStefan Hajnoczi
1756e7c6e631SStefan Hajnoczivpc
1757e7c6e631SStefan HajnocziM: Kevin Wolf <kwolf@redhat.com>
1758e7c6e631SStefan HajnocziL: qemu-block@nongnu.org
1759e7c6e631SStefan HajnocziS: Supported
1760e7c6e631SStefan HajnocziF: block/vpc.c
1761e7c6e631SStefan Hajnoczi
1762e7c6e631SStefan Hajnoczivvfat
1763e7c6e631SStefan HajnocziM: Kevin Wolf <kwolf@redhat.com>
1764e7c6e631SStefan HajnocziL: qemu-block@nongnu.org
1765e7c6e631SStefan HajnocziS: Supported
1766e7c6e631SStefan HajnocziF: block/vvfat.c
1767abfe4e94SStefan Hajnoczi
1768abfe4e94SStefan HajnocziImage format fuzzer
1769abfe4e94SStefan HajnocziM: Stefan Hajnoczi <stefanha@redhat.com>
1770abfe4e94SStefan HajnocziL: qemu-block@nongnu.org
1771abfe4e94SStefan HajnocziS: Supported
1772abfe4e94SStefan HajnocziF: tests/image-fuzzer/
1773717171bdSDaniel P. Berrange
1774049105a3SChanglong XieReplication
1775049105a3SChanglong XieM: Wen Congyang <wency@cn.fujitsu.com>
1776049105a3SChanglong XieM: Changlong Xie <xiecl.fnst@cn.fujitsu.com>
1777049105a3SChanglong XieS: Supported
1778049105a3SChanglong XieF: replication*
1779049105a3SChanglong XieF: block/replication.c
1780049105a3SChanglong XieF: tests/test-replication.c
1781049105a3SChanglong XieF: docs/block-replication.txt
1782049105a3SChanglong Xie
1783b9e02c06SAlex BennéeBuild and test automation
1784b9e02c06SAlex Bennée-------------------------
1785b9e02c06SAlex BennéeM: Alex Bennée <alex.bennee@linaro.org>
1786b9e02c06SAlex BennéeL: qemu-devel@nongnu.org
1787b9e02c06SAlex BennéeS: Supported
1788b9e02c06SAlex BennéeF: .travis.yml
1789717171bdSDaniel P. Berrange
1790717171bdSDaniel P. BerrangeDocumentation
1791717171bdSDaniel P. Berrange-------------
1792717171bdSDaniel P. BerrangeBuild system architecture
1793717171bdSDaniel P. BerrangeM: Daniel P. Berrange <berrange@redhat.com>
1794717171bdSDaniel P. BerrangeS: Odd Fixes
1795717171bdSDaniel P. BerrangeF: docs/build-system.txt
17968a49e97fSFam Zheng
17978a49e97fSFam ZhengDocker testing
17988a49e97fSFam Zheng--------------
17998a49e97fSFam ZhengDocker based testing framework and cases
18008a49e97fSFam ZhengM: Fam Zheng <famz@redhat.com>
18018a49e97fSFam ZhengS: Maintained
18028a49e97fSFam ZhengF: tests/docker/
1803