xref: /openbmc/qemu/MAINTAINERS (revision fcf5ef2a)
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
109*fcf5ef2aSThomas HuthF: 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
118*fcf5ef2aSThomas HuthF: 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
129*fcf5ef2aSThomas HuthF: 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
138*fcf5ef2aSThomas HuthF: 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
150*fcf5ef2aSThomas HuthF: target/m68k/
151e9a56114SThomas HuthF: disas/m68k.c
152fd5d5c56SAnthony Liguori
153abc07545SEdgar E. IglesiasMicroBlaze
154fd5d5c56SAnthony LiguoriM: Edgar E. Iglesias <edgar.iglesias@gmail.com>
155fd5d5c56SAnthony LiguoriS: Maintained
156*fcf5ef2aSThomas HuthF: 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
164*fcf5ef2aSThomas HuthF: 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
179*fcf5ef2aSThomas HuthF: 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
187*fcf5ef2aSThomas HuthF: 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
196*fcf5ef2aSThomas HuthF: 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
205*fcf5ef2aSThomas HuthF: 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
212*fcf5ef2aSThomas HuthF: 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
221*fcf5ef2aSThomas HuthF: 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
229*fcf5ef2aSThomas HuthF: 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
238*fcf5ef2aSThomas HuthF: 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
246*fcf5ef2aSThomas HuthF: 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
253*fcf5ef2aSThomas HuthF: 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
272*fcf5ef2aSThomas HuthF: target/arm/kvm.c
273ed4659d1SPeter Maydell
274a31896c4SJames HoganMIPS
275a31896c4SJames HoganM: James Hogan <james.hogan@imgtec.com>
276a31896c4SJames HoganS: Maintained
277*fcf5ef2aSThomas HuthF: target/mips/kvm.c
278a31896c4SJames Hogan
279fd5d5c56SAnthony LiguoriPPC
280fd5d5c56SAnthony LiguoriM: Alexander Graf <agraf@suse.de>
281fd5d5c56SAnthony LiguoriS: Maintained
282*fcf5ef2aSThomas HuthF: 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
289*fcf5ef2aSThomas HuthF: target/s390x/kvm.c
290*fcf5ef2aSThomas HuthF: target/s390x/ioinst.[ch]
291*fcf5ef2aSThomas HuthF: 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
304*fcf5ef2aSThomas HuthF: 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
109687a9023aSThomas HuthCHRP NVRAM
109787a9023aSThomas HuthM: Thomas Huth <thuth@redhat.com>
109887a9023aSThomas HuthS: Maintained
109987a9023aSThomas HuthF: hw/nvram/chrp_nvram.c
110087a9023aSThomas HuthF: include/hw/nvram/chrp_nvram.h
110187a9023aSThomas HuthF: tests/prom-env-test.c
110287a9023aSThomas 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
1161538193bcSJohn SnowDirty Bitmaps
1162538193bcSJohn SnowM: Fam Zheng <famz@redhat.com>
1163538193bcSJohn SnowM: John Snow <jsnow@redhat.com>
1164538193bcSJohn SnowL: qemu-block@nongnu.org
1165538193bcSJohn SnowS: Supported
1166538193bcSJohn SnowF: util/hbitmap.c
1167538193bcSJohn SnowF: block/dirty-bitmap.c
1168538193bcSJohn SnowF: include/qemu/hbitmap.h
1169538193bcSJohn SnowF: include/block/dirty-bitmap.h
1170538193bcSJohn SnowF: tests/test-hbitmap.c
1171538193bcSJohn SnowF: docs/bitmaps.md
1172538193bcSJohn SnowT: git git://github.com/famz/qemu.git bitmaps
1173538193bcSJohn SnowT: git git://github.com/jnsnow/qemu.git bitmaps
1174538193bcSJohn Snow
117561af0ee6SPaolo BonziniCharacter device backends
1176da26f37aSPaolo BonziniM: Paolo Bonzini <pbonzini@redhat.com>
1177fd5d5c56SAnthony LiguoriS: Maintained
1178fd5d5c56SAnthony LiguoriF: qemu-char.c
1179da26f37aSPaolo BonziniF: backends/msmouse.c
1180da26f37aSPaolo BonziniF: backends/testdev.c
1181fd5d5c56SAnthony Liguori
1182e26082fdSPaolo BonziniCharacter Devices (Braille)
1183e26082fdSPaolo BonziniM: Samuel Thibault <samuel.thibault@ens-lyon.org>
1184e26082fdSPaolo BonziniS: Maintained
1185e26082fdSPaolo BonziniF: backends/baum.c
1186fd5d5c56SAnthony Liguori
11878c413e79SMarkus ArmbrusterCoverity model
11888c413e79SMarkus ArmbrusterM: Markus Armbruster <armbru@redhat.com>
11898c413e79SMarkus ArmbrusterS: Supported
11908c413e79SMarkus ArmbrusterF: scripts/coverity-model.c
11918c413e79SMarkus Armbruster
1192f2ca0524SAndreas FärberCPU
119312b0e69cSAndreas FärberL: qemu-devel@nongnu.org
1194f2ca0524SAndreas FärberS: Supported
1195f2ca0524SAndreas FärberF: qom/cpu.c
11966e481d57SPeter MaydellF: include/qom/cpu.h
1197f2ca0524SAndreas Färber
1198d24b569aSPeter A. G. CrosthwaiteDevice Tree
11994b46ba61SAlistair FrancisM: Peter Crosthwaite <crosthwaite.peter@gmail.com>
1200d24b569aSPeter A. G. CrosthwaiteM: Alexander Graf <agraf@suse.de>
1201d24b569aSPeter A. G. CrosthwaiteS: Maintained
120282407515SThomas HuthF: device_tree.c
120382407515SThomas HuthF: include/sysemu/device_tree.h
1204d24b569aSPeter A. G. Crosthwaite
12054f966768SMarkus ArmbrusterError reporting
12064f966768SMarkus ArmbrusterM: Markus Armbruster <armbru@redhat.com>
12074f966768SMarkus ArmbrusterS: Supported
12084f966768SMarkus ArmbrusterF: include/qapi/error.h
12094f966768SMarkus ArmbrusterF: include/qemu/error-report.h
12104f966768SMarkus ArmbrusterF: util/error.c
12114f966768SMarkus ArmbrusterF: util/qemu-error.c
12124f966768SMarkus Armbruster
1213fd5d5c56SAnthony LiguoriGDB stub
12145dd4a88cSPaolo BonziniL: qemu-devel@nongnu.org
1215fd5d5c56SAnthony LiguoriS: Odd Fixes
1216fd5d5c56SAnthony LiguoriF: gdbstub*
1217fd5d5c56SAnthony LiguoriF: gdb-xml/
1218fd5d5c56SAnthony Liguori
121901a9c03cSPaolo BonziniMemory API
122001a9c03cSPaolo BonziniM: Paolo Bonzini <pbonzini@redhat.com>
122101a9c03cSPaolo BonziniS: Supported
122201a9c03cSPaolo BonziniF: include/exec/ioport.h
122301a9c03cSPaolo BonziniF: ioport.c
122401a9c03cSPaolo BonziniF: include/exec/memory.h
12252b1641d0SPaolo BonziniF: include/exec/ram_addr.h
122601a9c03cSPaolo BonziniF: memory.c
122701a9c03cSPaolo BonziniF: include/exec/memory-internal.h
122801a9c03cSPaolo BonziniF: exec.c
122901a9c03cSPaolo Bonzini
12307ee3bf03SGerd HoffmannSPICE
12317ee3bf03SGerd HoffmannM: Gerd Hoffmann <kraxel@redhat.com>
12327ee3bf03SGerd HoffmannS: Supported
12336e481d57SPeter MaydellF: include/ui/qemu-spice.h
1234438528a3SThomas HuthF: include/ui/spice-display.h
12357ee3bf03SGerd HoffmannF: ui/spice-*.c
12367ee3bf03SGerd HoffmannF: audio/spiceaudio.c
12378d8b636dSPaolo BonziniF: hw/display/qxl*
12387ee3bf03SGerd Hoffmann
1239fd5d5c56SAnthony LiguoriGraphics
124025eccc37SGerd HoffmannM: Gerd Hoffmann <kraxel@redhat.com>
124125eccc37SGerd HoffmannS: Odd Fixes
1242fd5d5c56SAnthony LiguoriF: ui/
1243e220656cSThomas HuthF: include/ui/
1244fd5d5c56SAnthony Liguori
1245351f1bf6SAndreas FärberCocoa graphics
124630ef3c74SPeter MaydellM: Peter Maydell <peter.maydell@linaro.org>
1247351f1bf6SAndreas FärberS: Odd Fixes
1248351f1bf6SAndreas FärberF: ui/cocoa.m
1249351f1bf6SAndreas Färber
1250fd5d5c56SAnthony LiguoriMain loop
1251da26f37aSPaolo BonziniM: Paolo Bonzini <pbonzini@redhat.com>
1252da26f37aSPaolo BonziniS: Maintained
1253da26f37aSPaolo BonziniF: cpus.c
1254da26f37aSPaolo BonziniF: main-loop.c
1255da26f37aSPaolo BonziniF: qemu-timer.c
1256fd5d5c56SAnthony LiguoriF: vl.c
1257fd5d5c56SAnthony Liguori
12588899b4aeSLuiz CapitulinoHuman Monitor (HMP)
1259c833fb4aSMarkus ArmbrusterM: Dr. David Alan Gilbert <dgilbert@redhat.com>
1260fbb0621aSLuiz CapitulinoS: Maintained
1261fd5d5c56SAnthony LiguoriF: monitor.c
1262c13e9912SThomas HuthF: hmp.[ch]
1263c13e9912SThomas HuthF: hmp-commands*.hx
1264c13e9912SThomas HuthF: include/monitor/hmp-target.h
1265fd5d5c56SAnthony Liguori
1266f536f112SPaolo BonziniNetwork device backends
1267442469e6SStefan HajnocziM: Jason Wang <jasowang@redhat.com>
1268fd5d5c56SAnthony LiguoriS: Maintained
1269fd5d5c56SAnthony LiguoriF: net/
1270d24b2b1cSThomas HuthF: include/net/
12715fc51cc3SJason WangT: git git://github.com/jasowang/qemu.git net
1272fd5d5c56SAnthony Liguori
1273aee09bafSVincenzo MaffioneNetmap network backend
1274aee09bafSVincenzo MaffioneM: Luigi Rizzo <rizzo@iet.unipi.it>
1275aee09bafSVincenzo MaffioneM: Giuseppe Lettieri <g.lettieri@iet.unipi.it>
1276aee09bafSVincenzo MaffioneM: Vincenzo Maffione <v.maffione@gmail.com>
1277aee09bafSVincenzo MaffioneW: http://info.iet.unipi.it/~luigi/netmap/
1278aee09bafSVincenzo MaffioneS: Maintained
1279aee09bafSVincenzo MaffioneF: net/netmap.c
1280aee09bafSVincenzo Maffione
128144f76b28SPaolo BonziniNetwork Block Device (NBD)
128244f76b28SPaolo BonziniM: Paolo Bonzini <pbonzini@redhat.com>
128344f76b28SPaolo BonziniS: Odd Fixes
1284798bfe00SFam ZhengF: block/nbd*
1285798bfe00SFam ZhengF: nbd/
1286798bfe00SFam ZhengF: include/block/nbd*
128744f76b28SPaolo BonziniF: qemu-nbd.c
12881ab09a40SAndreas FärberT: git git://github.com/bonzini/qemu.git nbd-next
128944f76b28SPaolo Bonzini
12902f54eb98SEduardo HabkostNUMA
12912f54eb98SEduardo HabkostM: Eduardo Habkost <ehabkost@redhat.com>
12922f54eb98SEduardo HabkostS: Maintained
12932f54eb98SEduardo HabkostF: numa.c
12942f54eb98SEduardo HabkostF: include/sysemu/numa.h
12952f54eb98SEduardo HabkostT: git git://github.com/ehabkost/qemu.git numa
12962f54eb98SEduardo Habkost
12974fc264f4SEduardo HabkostHost Memory Backends
12984fc264f4SEduardo HabkostM: Eduardo Habkost <ehabkost@redhat.com>
12994fc264f4SEduardo HabkostM: Igor Mammedov <imammedo@redhat.com>
13004fc264f4SEduardo HabkostS: Maintained
13014fc264f4SEduardo HabkostF: backends/hostmem*.c
13024fc264f4SEduardo HabkostF: include/sysemu/hostmem.h
13034fc264f4SEduardo Habkost
13046034011cSGongleiCryptodev Backends
13056034011cSGongleiM: Gonglei <arei.gonglei@huawei.com>
13066034011cSGongleiS: Maintained
13076034011cSGongleiF: include/sysemu/cryptodev*.h
13086034011cSGongleiF: backends/cryptodev*.c
13096034011cSGonglei
13108899b4aeSLuiz CapitulinoQAPI
13119740618cSLuiz CapitulinoM: Markus Armbruster <armbru@redhat.com>
13128899b4aeSLuiz CapitulinoM: Michael Roth <mdroth@linux.vnet.ibm.com>
13139740618cSLuiz CapitulinoS: Supported
13148899b4aeSLuiz CapitulinoF: qapi/
13150311c5bdSMarkus ArmbrusterX: qapi/*.json
1316ac4abb9aSMarkus ArmbrusterF: include/qapi/
1317ac4abb9aSMarkus ArmbrusterX: include/qapi/qmp/
1318ac4abb9aSMarkus ArmbrusterF: include/qapi/qmp/dispatch.h
1319c0bd0b50SPaolo BonziniF: tests/qapi-schema/
1320ac4abb9aSMarkus ArmbrusterF: tests/test-*-visitor.c
1321ac4abb9aSMarkus ArmbrusterF: tests/test-qmp-*.c
13220311c5bdSMarkus ArmbrusterF: scripts/qapi*
13230311c5bdSMarkus ArmbrusterF: docs/qapi*
13249740618cSLuiz CapitulinoT: git git://repo.or.cz/qemu/armbru.git qapi-next
13258899b4aeSLuiz Capitulino
13267810d291SLuiz CapitulinoQAPI Schema
13277810d291SLuiz CapitulinoM: Eric Blake <eblake@redhat.com>
13287810d291SLuiz CapitulinoM: Markus Armbruster <armbru@redhat.com>
13297810d291SLuiz CapitulinoS: Supported
13307810d291SLuiz CapitulinoF: qapi-schema.json
13310311c5bdSMarkus ArmbrusterF: qapi/*.json
13329740618cSLuiz CapitulinoT: git git://repo.or.cz/qemu/armbru.git qapi-next
13337810d291SLuiz Capitulino
1334f3582ba4SLuiz CapitulinoQObject
1335daf5dc78SMarkus ArmbrusterM: Markus Armbruster <armbru@redhat.com>
1336daf5dc78SMarkus ArmbrusterS: Supported
1337f3582ba4SLuiz CapitulinoF: qobject/
13387735d2b5SMarkus ArmbrusterF: include/qapi/qmp/
13397735d2b5SMarkus ArmbrusterX: include/qapi/qmp/dispatch.h
13407735d2b5SMarkus ArmbrusterF: tests/check-qdict.c
13417735d2b5SMarkus ArmbrusterF: tests/check-qfloat.c
13427735d2b5SMarkus ArmbrusterF: tests/check-qint.c
13437735d2b5SMarkus ArmbrusterF: tests/check-qjson.c
13447735d2b5SMarkus ArmbrusterF: tests/check-qlist.c
13457735d2b5SMarkus ArmbrusterF: tests/check-qstring.c
1346daf5dc78SMarkus ArmbrusterT: git git://repo.or.cz/qemu/armbru.git qapi-next
1347f3582ba4SLuiz Capitulino
1348f05d9999SMichael RothQEMU Guest Agent
1349f05d9999SMichael RothM: Michael Roth <mdroth@linux.vnet.ibm.com>
1350f05d9999SMichael RothS: Maintained
1351f05d9999SMichael RothF: qga/
1352f05d9999SMichael RothT: git git://github.com/mdroth/qemu.git qga
1353f05d9999SMichael Roth
13544688c94cSAndreas FärberQOM
13554688c94cSAndreas FärberM: Andreas Färber <afaerber@suse.de>
13564688c94cSAndreas FärberS: Supported
13574688c94cSAndreas FärberT: git git://github.com/afaerber/qemu-cpu.git qom-next
13584688c94cSAndreas FärberF: include/qom/
13594688c94cSAndreas FärberX: include/qom/cpu.h
13604688c94cSAndreas FärberF: qom/
13614688c94cSAndreas FärberX: qom/cpu.c
13629f4aa7ceSAndreas FärberF: tests/check-qom-interface.c
13639f4aa7ceSAndreas FärberF: tests/check-qom-proplist.c
13644688c94cSAndreas FärberF: tests/qom-test.c
13654688c94cSAndreas Färber
13668899b4aeSLuiz CapitulinoQMP
13679740618cSLuiz CapitulinoM: Markus Armbruster <armbru@redhat.com>
13689740618cSLuiz CapitulinoS: Supported
13698899b4aeSLuiz CapitulinoF: qmp.c
13708899b4aeSLuiz CapitulinoF: monitor.c
13719b89b6a2SMarkus ArmbrusterF: docs/*qmp-*
13729740618cSLuiz CapitulinoF: scripts/qmp/
13739740618cSLuiz CapitulinoT: git git://repo.or.cz/qemu/armbru.git qapi-next
13748899b4aeSLuiz Capitulino
1375cc0100f4SAlistair FrancisRegister API
1376cc0100f4SAlistair FrancisM: Alistair Francis <alistair.francis@xilinx.com>
1377cc0100f4SAlistair FrancisS: Maintained
1378cc0100f4SAlistair FrancisF: hw/core/register.c
1379cc0100f4SAlistair FrancisF: include/hw/register.h
1380cc0100f4SAlistair Francis
1381fd5d5c56SAnthony LiguoriSLIRP
1382eda509faSSamuel ThibaultM: Samuel Thibault <samuel.thibault@ens-lyon.org>
1383bafc72abSJan KiszkaM: Jan Kiszka <jan.kiszka@siemens.com>
1384bafc72abSJan KiszkaS: Maintained
1385fd5d5c56SAnthony LiguoriF: slirp/
1386663fb1e1SThomas HuthF: net/slirp.c
1387d24b2b1cSThomas HuthF: include/net/slirp.h
13881ab09a40SAndreas FärberT: git git://git.kiszka.org/qemu.git queues/slirp
1389fd5d5c56SAnthony Liguori
1390b1ed728aSPaolo BonziniStubs
1391b1ed728aSPaolo BonziniM: Paolo Bonzini <pbonzini@redhat.com>
1392b1ed728aSPaolo BonziniS: Maintained
1393b1ed728aSPaolo BonziniF: stubs/
1394b1ed728aSPaolo Bonzini
1395598a3f35SStefan HajnocziTracing
13961cd0f8ceSStefan HajnocziM: Stefan Hajnoczi <stefanha@redhat.com>
1397598a3f35SStefan HajnocziS: Maintained
1398598a3f35SStefan HajnocziF: trace/
1399f70fd8fdSLluís VilanovaF: scripts/tracetool.py
1400f70fd8fdSLluís VilanovaF: scripts/tracetool/
1401f922ea46SAndreas FärberF: docs/tracing.txt
14021ab09a40SAndreas FärberT: git git://github.com/stefanha/qemu.git tracing
1403598a3f35SStefan Hajnoczi
140414f40fdcSBlue SwirlCheckpatch
140514f40fdcSBlue SwirlS: Odd Fixes
140614f40fdcSBlue SwirlF: scripts/checkpatch.pl
140714f40fdcSBlue Swirl
1408c0787c8dSJuan QuintelaMigration
1409c0787c8dSJuan QuintelaM: Juan Quintela <quintela@redhat.com>
14107f4675c3SAmit ShahM: Amit Shah <amit.shah@redhat.com>
1411c0787c8dSJuan QuintelaS: Maintained
1412c0787c8dSJuan QuintelaF: include/migration/
141344a1f946SDr. David Alan GilbertF: migration/
1414c5515640SAmit ShahF: scripts/vmstate-static-checker.py
1415c5515640SAmit ShahF: tests/vmstate-static-checker-data/
1416a609ad8bSThomas HuthF: docs/migration.txt
1417c0787c8dSJuan Quintela
141892bfedb0SEduardo OtuboSeccomp
14199d9de254SEduardo OtuboM: Eduardo Otubo <eduardo.otubo@profitbricks.com>
142092bfedb0SEduardo OtuboS: Supported
142192bfedb0SEduardo OtuboF: qemu-seccomp.c
142292bfedb0SEduardo OtuboF: include/sysemu/seccomp.h
142392bfedb0SEduardo Otubo
1424ddbb0d09SDaniel P. BerrangeCryptography
1425ddbb0d09SDaniel P. BerrangeM: Daniel P. Berrange <berrange@redhat.com>
1426ddbb0d09SDaniel P. BerrangeS: Maintained
1427ddbb0d09SDaniel P. BerrangeF: crypto/
1428ddbb0d09SDaniel P. BerrangeF: include/crypto/
1429ddbb0d09SDaniel P. BerrangeF: tests/test-crypto-*
1430ddbb0d09SDaniel P. Berrange
143110817bf0SDaniel P. BerrangeCoroutines
143210817bf0SDaniel P. BerrangeM: Stefan Hajnoczi <stefanha@redhat.com>
143310817bf0SDaniel P. BerrangeM: Kevin Wolf <kwolf@redhat.com>
143410817bf0SDaniel P. BerrangeF: util/*coroutine*
143510817bf0SDaniel P. BerrangeF: include/qemu/coroutine*
143610817bf0SDaniel P. BerrangeF: tests/test-coroutine.c
143710817bf0SDaniel P. Berrange
143888c5f205SDaniel P. BerrangeBuffers
143988c5f205SDaniel P. BerrangeM: Daniel P. Berrange <berrange@redhat.com>
144088c5f205SDaniel P. BerrangeS: Odd fixes
144188c5f205SDaniel P. BerrangeF: util/buffer.c
144288c5f205SDaniel P. BerrangeF: include/qemu/buffer.h
144388c5f205SDaniel P. Berrange
1444666a3af9SDaniel P. BerrangeI/O Channels
1445666a3af9SDaniel P. BerrangeM: Daniel P. Berrange <berrange@redhat.com>
1446666a3af9SDaniel P. BerrangeS: Maintained
1447666a3af9SDaniel P. BerrangeF: io/
1448666a3af9SDaniel P. BerrangeF: include/io/
1449666a3af9SDaniel P. BerrangeF: tests/test-io-*
1450666a3af9SDaniel P. Berrange
14515614a283SGerd HoffmannSockets
14525614a283SGerd HoffmannM: Daniel P. Berrange <berrange@redhat.com>
14535614a283SGerd HoffmannM: Gerd Hoffmann <kraxel@redhat.com>
14545614a283SGerd HoffmannM: Paolo Bonzini <pbonzini@redhat.com>
14555614a283SGerd HoffmannS: Maintained
14565614a283SGerd HoffmannF: include/qemu/sockets.h
14575614a283SGerd HoffmannF: util/qemu-sockets.c
14585614a283SGerd Hoffmann
1459d310d85bSAlberto GarciaThrottling infrastructure
1460d310d85bSAlberto GarciaM: Alberto Garcia <berto@igalia.com>
1461d310d85bSAlberto GarciaS: Supported
1462d310d85bSAlberto GarciaF: block/throttle-groups.c
1463d310d85bSAlberto GarciaF: include/block/throttle-groups.h
1464d310d85bSAlberto GarciaF: include/qemu/throttle.h
1465d310d85bSAlberto GarciaF: util/throttle.c
1466d310d85bSAlberto GarciaL: qemu-block@nongnu.org
1467d310d85bSAlberto Garcia
1468080d7aacSFam ZhengUUID
1469080d7aacSFam ZhengM: Fam Zheng <famz@redhat.com>
1470080d7aacSFam ZhengS: Supported
1471080d7aacSFam ZhengF: util/uuid.c
1472080d7aacSFam ZhengF: include/qemu/uuid.h
1473080d7aacSFam ZhengF: tests/test-uuid.c
1474080d7aacSFam Zheng
1475a4cc318eSzhanghailiangCOLO Framework
1476a4cc318eSzhanghailiangM: zhanghailiang <zhang.zhanghailiang@huawei.com>
1477a4cc318eSzhanghailiangS: Maintained
1478a4cc318eSzhanghailiangF: migration/colo*
1479a4cc318eSzhanghailiangF: include/migration/colo.h
1480a4cc318eSzhanghailiangF: include/migration/failover.h
1481a4cc318eSzhanghailiangF: docs/COLO-FT.txt
1482a4cc318eSzhanghailiang
148388f82ed1SZhang ChenCOLO Proxy
148488f82ed1SZhang ChenM: Zhang Chen <zhangchen.fnst@cn.fujitsu.com>
148588f82ed1SZhang ChenM: Li Zhijian <lizhijian@cn.fujitsu.com>
148688f82ed1SZhang ChenS: Supported
148788f82ed1SZhang ChenF: docs/colo-proxy.txt
148888f82ed1SZhang ChenF: net/colo*
148988f82ed1SZhang ChenF: net/filter-rewriter.c
149088f82ed1SZhang ChenF: net/filter-mirror.c
149188f82ed1SZhang Chen
1492fd5d5c56SAnthony LiguoriUsermode Emulation
1493fd5d5c56SAnthony Liguori------------------
1494486bbe5fSPaolo BonziniOverall
1495486bbe5fSPaolo BonziniM: Riku Voipio <riku.voipio@iki.fi>
1496486bbe5fSPaolo BonziniS: Maintained
1497486bbe5fSPaolo BonziniF: thunk.c
1498486bbe5fSPaolo BonziniF: user-exec.c
1499486bbe5fSPaolo Bonzini
1500fd5d5c56SAnthony LiguoriBSD user
1501297e8005SMarkus ArmbrusterS: Orphan
1502fd5d5c56SAnthony LiguoriF: bsd-user/
1503ccf0a57bSThomas HuthF: default-configs/*-bsd-user.mak
1504fd5d5c56SAnthony Liguori
1505fd5d5c56SAnthony LiguoriLinux user
1506fd5d5c56SAnthony LiguoriM: Riku Voipio <riku.voipio@iki.fi>
1507fd5d5c56SAnthony LiguoriS: Maintained
1508fd5d5c56SAnthony LiguoriF: linux-user/
1509ccf0a57bSThomas HuthF: default-configs/*-linux-user.mak
151042f5a7e9SAurelien Jarno
151142f5a7e9SAurelien JarnoTiny Code Generator (TCG)
151242f5a7e9SAurelien Jarno-------------------------
151342f5a7e9SAurelien JarnoCommon code
1514cc7772bdSRichard HendersonM: Richard Henderson <rth@twiddle.net>
151542f5a7e9SAurelien JarnoS: Maintained
151642f5a7e9SAurelien JarnoF: tcg/
151742f5a7e9SAurelien Jarno
1518b25a464cSClaudio FontanaAArch64 target
1519b25a464cSClaudio FontanaM: Claudio Fontana <claudio.fontana@huawei.com>
1520b25a464cSClaudio FontanaM: Claudio Fontana <claudio.fontana@gmail.com>
1521b25a464cSClaudio FontanaS: Maintained
1522b4f2bd1cSPeter MaydellL: qemu-arm@nongnu.org
1523b25a464cSClaudio FontanaF: tcg/aarch64/
1524c17652eeSPaolo BonziniF: disas/arm-a64.cc
1525c17652eeSPaolo BonziniF: disas/libvixl/
1526b25a464cSClaudio Fontana
152742f5a7e9SAurelien JarnoARM target
152842f5a7e9SAurelien JarnoM: Andrzej Zaborowski <balrogg@gmail.com>
152942f5a7e9SAurelien JarnoS: Maintained
1530b4f2bd1cSPeter MaydellL: qemu-arm@nongnu.org
153142f5a7e9SAurelien JarnoF: tcg/arm/
1532c17652eeSPaolo BonziniF: disas/arm.c
153342f5a7e9SAurelien Jarno
153442f5a7e9SAurelien Jarnoi386 target
15355dd4a88cSPaolo BonziniL: qemu-devel@nongnu.org
153642f5a7e9SAurelien JarnoS: Maintained
153742f5a7e9SAurelien JarnoF: tcg/i386/
1538c17652eeSPaolo BonziniF: disas/i386.c
153942f5a7e9SAurelien Jarno
154042f5a7e9SAurelien JarnoIA64 target
154142f5a7e9SAurelien JarnoM: Aurelien Jarno <aurelien@aurel32.net>
154242f5a7e9SAurelien JarnoS: Maintained
154342f5a7e9SAurelien JarnoF: tcg/ia64/
1544c17652eeSPaolo BonziniF: disas/ia64.c
154542f5a7e9SAurelien Jarno
154642f5a7e9SAurelien JarnoMIPS target
1547d6eec7a2SPeter MaydellM: Aurelien Jarno <aurelien@aurel32.net>
154842f5a7e9SAurelien JarnoS: Maintained
154942f5a7e9SAurelien JarnoF: tcg/mips/
1550c17652eeSPaolo BonziniF: disas/mips.c
155142f5a7e9SAurelien Jarno
155242f5a7e9SAurelien JarnoPPC
155315610d42SPranith KumarM: Richard Henderson <rth@twiddle.net>
155415610d42SPranith KumarS: Odd Fixes
155542f5a7e9SAurelien JarnoF: tcg/ppc/
1556c17652eeSPaolo BonziniF: disas/ppc.c
155742f5a7e9SAurelien Jarno
155842f5a7e9SAurelien JarnoS390 target
155942f5a7e9SAurelien JarnoM: Alexander Graf <agraf@suse.de>
156042f5a7e9SAurelien JarnoM: Richard Henderson <rth@twiddle.net>
156142f5a7e9SAurelien JarnoS: Maintained
156242f5a7e9SAurelien JarnoF: tcg/s390/
1563c17652eeSPaolo BonziniF: disas/s390.c
156442f5a7e9SAurelien Jarno
156542f5a7e9SAurelien JarnoSPARC target
1566297e8005SMarkus ArmbrusterS: Odd Fixes
156742f5a7e9SAurelien JarnoF: tcg/sparc/
1568c17652eeSPaolo BonziniF: disas/sparc.c
1569bc75c9e5SStefan Weil
1570bc75c9e5SStefan WeilTCI target
1571bc75c9e5SStefan WeilM: Stefan Weil <sw@weilnetz.de>
1572bc75c9e5SStefan WeilS: Maintained
15738ef9cd55SAndreas FärberF: tcg/tci/
15742b7be8c8SStefan WeilF: tci.c
1575c17652eeSPaolo BonziniF: disas/tci.c
1576aa09c951SAndreas Färber
1577f05b328cSStefan HajnocziBlock drivers
1578f05b328cSStefan Hajnoczi-------------
1579f05b328cSStefan HajnocziVMDK
1580f05b328cSStefan HajnocziM: Fam Zheng <famz@redhat.com>
1581c95e4c0eSKevin WolfL: qemu-block@nongnu.org
1582f05b328cSStefan HajnocziS: Supported
1583f05b328cSStefan HajnocziF: block/vmdk.c
1584f05b328cSStefan Hajnoczi
1585f05b328cSStefan HajnocziRBD
15865a8ac6d9SJosh DurginM: Josh Durgin <jdurgin@redhat.com>
1587280458a3SJeff CodyM: Jeff Cody <jcody@redhat.com>
1588280458a3SJeff CodyL: qemu-block@nongnu.org
1589f05b328cSStefan HajnocziS: Supported
1590f05b328cSStefan HajnocziF: block/rbd.c
1591280458a3SJeff CodyT: git git://github.com/codyprime/qemu-kvm-jtc.git block
1592f05b328cSStefan Hajnoczi
1593f05b328cSStefan HajnocziSheepdog
159453b33231SMORITA KazutakaM: Hitoshi Mitake <mitake.hitoshi@lab.ntt.co.jp>
1595f05b328cSStefan HajnocziM: Liu Yuan <namei.unix@gmail.com>
1596280458a3SJeff CodyM: Jeff Cody <jcody@redhat.com>
1597280458a3SJeff CodyL: qemu-block@nongnu.org
1598dce32b6cSLiu YuanL: sheepdog@lists.wpkg.org
1599f05b328cSStefan HajnocziS: Supported
1600f05b328cSStefan HajnocziF: block/sheepdog.c
1601280458a3SJeff CodyT: git git://github.com/codyprime/qemu-kvm-jtc.git block
1602f05b328cSStefan Hajnoczi
1603f05b328cSStefan HajnocziVHDX
1604f05b328cSStefan HajnocziM: Jeff Cody <jcody@redhat.com>
1605280458a3SJeff CodyL: qemu-block@nongnu.org
1606f05b328cSStefan HajnocziS: Supported
1607f05b328cSStefan HajnocziF: block/vhdx*
1608280458a3SJeff CodyT: git git://github.com/codyprime/qemu-kvm-jtc.git block
1609f05b328cSStefan Hajnoczi
1610f05b328cSStefan HajnocziVDI
1611f05b328cSStefan HajnocziM: Stefan Weil <sw@weilnetz.de>
1612c95e4c0eSKevin WolfL: qemu-block@nongnu.org
1613f05b328cSStefan HajnocziS: Maintained
1614f05b328cSStefan HajnocziF: block/vdi.c
1615f05b328cSStefan Hajnoczi
1616f05b328cSStefan HajnocziiSCSI
1617f05b328cSStefan HajnocziM: Ronnie Sahlberg <ronniesahlberg@gmail.com>
1618f05b328cSStefan HajnocziM: Paolo Bonzini <pbonzini@redhat.com>
1619f05b328cSStefan HajnocziM: Peter Lieven <pl@kamp.de>
1620c95e4c0eSKevin WolfL: qemu-block@nongnu.org
1621f05b328cSStefan HajnocziS: Supported
1622f05b328cSStefan HajnocziF: block/iscsi.c
1623f05b328cSStefan Hajnoczi
16246542aa9cSPeter LievenNFS
1625280458a3SJeff CodyM: Jeff Cody <jcody@redhat.com>
16266542aa9cSPeter LievenM: Peter Lieven <pl@kamp.de>
1627280458a3SJeff CodyL: qemu-block@nongnu.org
16286542aa9cSPeter LievenS: Maintained
16296542aa9cSPeter LievenF: block/nfs.c
1630280458a3SJeff CodyT: git git://github.com/codyprime/qemu-kvm-jtc.git block
16316542aa9cSPeter Lieven
1632f05b328cSStefan HajnocziSSH
1633f05b328cSStefan HajnocziM: Richard W.M. Jones <rjones@redhat.com>
1634280458a3SJeff CodyM: Jeff Cody <jcody@redhat.com>
1635280458a3SJeff CodyL: qemu-block@nongnu.org
1636f05b328cSStefan HajnocziS: Supported
1637f05b328cSStefan HajnocziF: block/ssh.c
1638280458a3SJeff CodyT: git git://github.com/codyprime/qemu-kvm-jtc.git block
1639c9a12e75SChrysostomos Nanakos
1640c9a12e75SChrysostomos NanakosARCHIPELAGO
1641c9a12e75SChrysostomos NanakosM: Chrysostomos Nanakos <chris@include.gr>
1642280458a3SJeff CodyM: Jeff Cody <jcody@redhat.com>
1643280458a3SJeff CodyL: qemu-block@nongnu.org
1644c9a12e75SChrysostomos NanakosS: Maintained
1645c9a12e75SChrysostomos NanakosF: block/archipelago.c
1646280458a3SJeff CodyT: git git://github.com/codyprime/qemu-kvm-jtc.git block
1647280458a3SJeff Cody
1648280458a3SJeff CodyCURL
1649280458a3SJeff CodyM: Jeff Cody <jcody@redhat.com>
1650280458a3SJeff CodyL: qemu-block@nongnu.org
1651280458a3SJeff CodyS: Supported
1652280458a3SJeff CodyF: block/curl.c
1653280458a3SJeff CodyT: git git://github.com/codyprime/qemu-kvm-jtc.git block
1654280458a3SJeff Cody
1655280458a3SJeff CodyGLUSTER
1656280458a3SJeff CodyM: Jeff Cody <jcody@redhat.com>
1657280458a3SJeff CodyL: qemu-block@nongnu.org
1658280458a3SJeff CodyS: Supported
1659280458a3SJeff CodyF: block/gluster.c
1660280458a3SJeff CodyT: git git://github.com/codyprime/qemu-kvm-jtc.git block
1661b5e9476cSGonglei
1662199667a8SFam ZhengNull Block Driver
1663199667a8SFam ZhengM: Fam Zheng <famz@redhat.com>
1664199667a8SFam ZhengL: qemu-block@nongnu.org
1665199667a8SFam ZhengS: Supported
1666199667a8SFam ZhengF: block/null.c
1667199667a8SFam Zheng
1668b5e9476cSGongleiBootdevice
1669b5e9476cSGongleiM: Gonglei <arei.gonglei@huawei.com>
1670b5e9476cSGongleiS: Maintained
1671b5e9476cSGongleiF: bootdevice.c
1672ecdda9e0SAlberto Garcia
1673ecdda9e0SAlberto GarciaQuorum
1674ecdda9e0SAlberto GarciaM: Alberto Garcia <berto@igalia.com>
1675ecdda9e0SAlberto GarciaS: Supported
1676ecdda9e0SAlberto GarciaF: block/quorum.c
1677ecdda9e0SAlberto GarciaL: qemu-block@nongnu.org
1678e7c6e631SStefan Hajnoczi
1679e7c6e631SStefan Hajnocziblkverify
1680e7c6e631SStefan HajnocziM: Stefan Hajnoczi <stefanha@redhat.com>
1681e7c6e631SStefan HajnocziL: qemu-block@nongnu.org
1682e7c6e631SStefan HajnocziS: Supported
1683e7c6e631SStefan HajnocziF: block/blkverify.c
1684e7c6e631SStefan Hajnoczi
1685e7c6e631SStefan Hajnoczibochs
1686e7c6e631SStefan HajnocziM: Stefan Hajnoczi <stefanha@redhat.com>
1687e7c6e631SStefan HajnocziL: qemu-block@nongnu.org
1688e7c6e631SStefan HajnocziS: Supported
1689e7c6e631SStefan HajnocziF: block/bochs.c
1690e7c6e631SStefan Hajnoczi
1691e7c6e631SStefan Hajnoczicloop
1692e7c6e631SStefan HajnocziM: Stefan Hajnoczi <stefanha@redhat.com>
1693e7c6e631SStefan HajnocziL: qemu-block@nongnu.org
1694e7c6e631SStefan HajnocziS: Supported
1695e7c6e631SStefan HajnocziF: block/cloop.c
1696e7c6e631SStefan Hajnoczi
1697e7c6e631SStefan Hajnoczidmg
1698e7c6e631SStefan HajnocziM: Stefan Hajnoczi <stefanha@redhat.com>
1699e7c6e631SStefan HajnocziL: qemu-block@nongnu.org
1700e7c6e631SStefan HajnocziS: Supported
1701e7c6e631SStefan HajnocziF: block/dmg.c
1702e7c6e631SStefan Hajnoczi
1703e7c6e631SStefan Hajnocziparallels
1704e7c6e631SStefan HajnocziM: Stefan Hajnoczi <stefanha@redhat.com>
1705f3073712SDenis V. LunevM: Denis V. Lunev <den@openvz.org>
1706e7c6e631SStefan HajnocziL: qemu-block@nongnu.org
1707e7c6e631SStefan HajnocziS: Supported
1708e7c6e631SStefan HajnocziF: block/parallels.c
1709b4a9e25bSVladimir Sementsov-OgievskiyF: docs/specs/parallels.txt
1710e7c6e631SStefan Hajnoczi
1711e7c6e631SStefan Hajnocziqed
1712e7c6e631SStefan HajnocziM: Stefan Hajnoczi <stefanha@redhat.com>
1713e7c6e631SStefan HajnocziL: qemu-block@nongnu.org
1714e7c6e631SStefan HajnocziS: Supported
1715e7c6e631SStefan HajnocziF: block/qed.c
1716e7c6e631SStefan Hajnoczi
1717e7c6e631SStefan Hajnocziraw
1718e7c6e631SStefan HajnocziM: Kevin Wolf <kwolf@redhat.com>
1719e7c6e631SStefan HajnocziL: qemu-block@nongnu.org
1720e7c6e631SStefan HajnocziS: Supported
1721e7c6e631SStefan HajnocziF: block/linux-aio.c
1722f586d5fcSMarkus ArmbrusterF: include/block/raw-aio.h
1723e7c6e631SStefan HajnocziF: block/raw-posix.c
1724e7c6e631SStefan HajnocziF: block/raw-win32.c
1725e7c6e631SStefan HajnocziF: block/raw_bsd.c
1726e7c6e631SStefan HajnocziF: block/win32-aio.c
1727e7c6e631SStefan Hajnoczi
1728e7c6e631SStefan Hajnocziqcow2
1729e7c6e631SStefan HajnocziM: Kevin Wolf <kwolf@redhat.com>
1730c4189d85SMax ReitzM: Max Reitz <mreitz@redhat.com>
1731e7c6e631SStefan HajnocziL: qemu-block@nongnu.org
1732e7c6e631SStefan HajnocziS: Supported
1733e7c6e631SStefan HajnocziF: block/qcow2*
1734e7c6e631SStefan Hajnoczi
1735e7c6e631SStefan Hajnocziqcow
1736e7c6e631SStefan HajnocziM: Kevin Wolf <kwolf@redhat.com>
1737e7c6e631SStefan HajnocziL: qemu-block@nongnu.org
1738e7c6e631SStefan HajnocziS: Supported
1739e7c6e631SStefan HajnocziF: block/qcow.c
1740e7c6e631SStefan Hajnoczi
1741e7c6e631SStefan Hajnocziblkdebug
1742e7c6e631SStefan HajnocziM: Kevin Wolf <kwolf@redhat.com>
1743c4189d85SMax ReitzM: Max Reitz <mreitz@redhat.com>
1744e7c6e631SStefan HajnocziL: qemu-block@nongnu.org
1745e7c6e631SStefan HajnocziS: Supported
1746e7c6e631SStefan HajnocziF: block/blkdebug.c
1747e7c6e631SStefan Hajnoczi
1748e7c6e631SStefan Hajnoczivpc
1749e7c6e631SStefan HajnocziM: Kevin Wolf <kwolf@redhat.com>
1750e7c6e631SStefan HajnocziL: qemu-block@nongnu.org
1751e7c6e631SStefan HajnocziS: Supported
1752e7c6e631SStefan HajnocziF: block/vpc.c
1753e7c6e631SStefan Hajnoczi
1754e7c6e631SStefan Hajnoczivvfat
1755e7c6e631SStefan HajnocziM: Kevin Wolf <kwolf@redhat.com>
1756e7c6e631SStefan HajnocziL: qemu-block@nongnu.org
1757e7c6e631SStefan HajnocziS: Supported
1758e7c6e631SStefan HajnocziF: block/vvfat.c
1759abfe4e94SStefan Hajnoczi
1760abfe4e94SStefan HajnocziImage format fuzzer
1761abfe4e94SStefan HajnocziM: Stefan Hajnoczi <stefanha@redhat.com>
1762abfe4e94SStefan HajnocziL: qemu-block@nongnu.org
1763abfe4e94SStefan HajnocziS: Supported
1764abfe4e94SStefan HajnocziF: tests/image-fuzzer/
1765717171bdSDaniel P. Berrange
1766049105a3SChanglong XieReplication
1767049105a3SChanglong XieM: Wen Congyang <wency@cn.fujitsu.com>
1768049105a3SChanglong XieM: Changlong Xie <xiecl.fnst@cn.fujitsu.com>
1769049105a3SChanglong XieS: Supported
1770049105a3SChanglong XieF: replication*
1771049105a3SChanglong XieF: block/replication.c
1772049105a3SChanglong XieF: tests/test-replication.c
1773049105a3SChanglong XieF: docs/block-replication.txt
1774049105a3SChanglong Xie
1775b9e02c06SAlex BennéeBuild and test automation
1776b9e02c06SAlex Bennée-------------------------
1777b9e02c06SAlex BennéeM: Alex Bennée <alex.bennee@linaro.org>
1778b9e02c06SAlex BennéeL: qemu-devel@nongnu.org
1779b9e02c06SAlex BennéeS: Supported
1780b9e02c06SAlex BennéeF: .travis.yml
1781717171bdSDaniel P. Berrange
1782717171bdSDaniel P. BerrangeDocumentation
1783717171bdSDaniel P. Berrange-------------
1784717171bdSDaniel P. BerrangeBuild system architecture
1785717171bdSDaniel P. BerrangeM: Daniel P. Berrange <berrange@redhat.com>
1786717171bdSDaniel P. BerrangeS: Odd Fixes
1787717171bdSDaniel P. BerrangeF: docs/build-system.txt
17888a49e97fSFam Zheng
17898a49e97fSFam ZhengDocker testing
17908a49e97fSFam Zheng--------------
17918a49e97fSFam ZhengDocker based testing framework and cases
17928a49e97fSFam ZhengM: Fam Zheng <famz@redhat.com>
17938a49e97fSFam ZhengS: Maintained
17948a49e97fSFam ZhengF: tests/docker/
1795