blob: ad9c8602ea0b7dd50d2a0548ae9b79101c18ebce [file] [log] [blame]
bellardb6f97c12008-05-09 09:39:00 +00001QEMU Maintainers
2================
3
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05004The intention of this file is not to establish who owns what portions of the
5code base, but to provide a set of names that developers can consult when they
6have a question about a particular subset and also to provide a set of names
7to be CC'd when submitting a patch to obtain appropriate review.
bellard3cd9acb2008-06-04 14:57:43 +00008
Anthony Liguorifd5d5c52010-09-09 14:51:31 -05009In general, if you have a question about inclusion of a patch, you should
10consult qemu-devel and not any specific individual privately.
bellardb6f97c12008-05-09 09:39:00 +000011
Anthony Liguorifd5d5c52010-09-09 14:51:31 -050012Descriptions of section entries:
bellardb6f97c12008-05-09 09:39:00 +000013
Anthony Liguorifd5d5c52010-09-09 14:51:31 -050014 M: Mail patches to: FullName <address@domain>
15 L: Mailing list that is relevant to this area
16 W: Web-page with status/info
17 Q: Patchwork web based patch tracking system site
18 T: SCM tree type and location. Type is one of: git, hg, quilt, stgit.
19 S: Status, one of the following:
20 Supported: Someone is actually paid to look after this.
21 Maintained: Someone actually looks after it.
22 Odd Fixes: It has a maintainer but they don't have time to do
Peter Maydellc91bbff2011-11-09 19:45:38 +000023 much other than throw the odd patch in. See below.
Anthony Liguorifd5d5c52010-09-09 14:51:31 -050024 Orphan: No current maintainer [but maybe you could take the
25 role as you write your new code].
26 Obsolete: Old code. Something tagged obsolete generally means
27 it has been replaced by a better system and you
28 should be using that.
29 F: Files and directories with wildcard patterns.
30 A trailing slash includes all files and subdirectory files.
31 F: drivers/net/ all files in and below drivers/net
32 F: drivers/net/* all files in drivers/net, but not below
33 F: */net/* all files in "any top level directory"/net
34 One pattern per line. Multiple F: lines acceptable.
35 X: Files and directories that are NOT maintained, same rules as F:
36 Files exclusions are tested before file matches.
37 Can be useful for excluding a specific subdirectory, for instance:
38 F: net/
39 X: net/ipv6/
40 matches all files in and below net excluding net/ipv6/
41 K: Keyword perl extended regex pattern to match content in a
42 patch or file. For instance:
43 K: of_get_profile
44 matches patches or files that contain "of_get_profile"
45 K: \b(printk|pr_(info|err))\b
46 matches patches or files that contain one or more of the words
47 printk, pr_info or pr_err
48 One regex pattern per line. Multiple K: lines acceptable.
bellardb6f97c12008-05-09 09:39:00 +000049
bellardb6f97c12008-05-09 09:39:00 +000050
Anthony Liguorifd5d5c52010-09-09 14:51:31 -050051General Project Administration
52------------------------------
53M: Anthony Liguori <aliguori@us.ibm.com>
54M: Paul Brook <paul@codesourcery.com>
55
56Guest CPU cores (TCG):
57----------------------
bellardb6f97c12008-05-09 09:39:00 +000058Alpha
Richard Henderson8d6df262011-05-20 12:23:18 -070059M: Richard Henderson <rth@twiddle.net>
60S: Maintained
Anthony Liguorifd5d5c52010-09-09 14:51:31 -050061F: target-alpha/
Paolo Bonzini8d8b6362013-02-04 15:19:30 +010062F: hw/alpha/
Anthony Liguorifd5d5c52010-09-09 14:51:31 -050063
64ARM
65M: Paul Brook <paul@codesourcery.com>
Peter Maydell1ce9ce62011-09-20 16:18:46 +010066M: Peter Maydell <peter.maydell@linaro.org>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -050067S: Maintained
68F: target-arm/
Paolo Bonzini8d8b6362013-02-04 15:19:30 +010069F: hw/arm/
70F: hw/cpu/a*mpcore.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -050071
72CRIS
73M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
74S: Maintained
75F: target-cris/
Paolo Bonzini8d8b6362013-02-04 15:19:30 +010076F: hw/cris/
Anthony Liguorifd5d5c52010-09-09 14:51:31 -050077
Michael Walle07bf23a2011-02-17 23:45:18 +010078LM32
79M: Michael Walle <michael@walle.cc>
80S: Maintained
81F: target-lm32/
Paolo Bonzini8d8b6362013-02-04 15:19:30 +010082F: hw/lm32/
Michael Walle07bf23a2011-02-17 23:45:18 +010083
Anthony Liguorifd5d5c52010-09-09 14:51:31 -050084M68K
85M: Paul Brook <paul@codesourcery.com>
Andreas Färber84c9d9d2012-04-13 18:30:29 +020086S: Odd Fixes
Anthony Liguorifd5d5c52010-09-09 14:51:31 -050087F: target-m68k/
Paolo Bonzini8d8b6362013-02-04 15:19:30 +010088F: hw/m68k/
Anthony Liguorifd5d5c52010-09-09 14:51:31 -050089
Edgar E. Iglesiasabc07542009-05-28 14:00:49 +020090MicroBlaze
Anthony Liguorifd5d5c52010-09-09 14:51:31 -050091M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
92S: Maintained
93F: target-microblaze/
Paolo Bonzini8d8b6362013-02-04 15:19:30 +010094F: hw/microblaze/
Anthony Liguorifd5d5c52010-09-09 14:51:31 -050095
96MIPS
Aurelien Jarnoddb13562011-01-14 20:39:19 +010097M: Aurelien Jarno <aurelien@aurel32.net>
Andreas Färber2c9b7d12012-04-13 18:33:43 +020098S: Odd Fixes
Anthony Liguorifd5d5c52010-09-09 14:51:31 -050099F: target-mips/
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100100F: hw/mips/
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500101
Anthony Greend15a9c22013-03-18 15:49:25 -0400102Moxie
103M: Anthony Green <green@moxielogic.com>
104S: Maintained
105F: target-moxie/
106
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500107PowerPC
108M: Alexander Graf <agraf@suse.de>
Andreas Färbera6c98682012-01-13 13:33:57 +0000109L: qemu-ppc@nongnu.org
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500110S: Maintained
111F: target-ppc/
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100112F: hw/ppc/
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500113
Alexander Graf749717a2009-12-05 12:44:31 +0100114S390
Richard Henderson2b35e932012-12-05 09:23:25 -0600115M: Richard Henderson <rth@twiddle.net>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500116M: Alexander Graf <agraf@suse.de>
117S: Maintained
118F: target-s390x/
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100119F: hw/s390x/
bellardb6f97c12008-05-09 09:39:00 +0000120
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500121SH4
Aurelien Jarnoddb13562011-01-14 20:39:19 +0100122M: Aurelien Jarno <aurelien@aurel32.net>
Andreas Färber2c9b7d12012-04-13 18:33:43 +0200123S: Odd Fixes
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500124F: target-sh4/
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100125F: hw/sh4/
bellardb6f97c12008-05-09 09:39:00 +0000126
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500127SPARC
128M: Blue Swirl <blauwirbel@gmail.com>
129S: Maintained
130F: target-sparc/
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100131F: hw/sparc/
132F: hw/sparc64/
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500133
Andreas Färbera6ea7b42012-03-14 00:45:43 +0100134UniCore32
135M: Guan Xuetao <gxt@mprc.pku.edu.cn>
136S: Maintained
137F: target-unicore32/
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100138F: hw/unicore32/
Andreas Färbera6ea7b42012-03-14 00:45:43 +0100139
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500140X86
141M: qemu-devel@nongnu.org
142S: Odd Fixes
143F: target-i386/
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100144F: hw/i386/
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500145
Max Filippov16e7caa2011-09-06 03:55:56 +0400146Xtensa
147M: Max Filippov <jcmvbkbc@gmail.com>
Max Filippov375847a2011-10-28 02:11:05 +0400148W: http://wiki.osll.spb.ru/doku.php?id=etc:users:jcmvbkbc:qemu-target-xtensa
Max Filippov16e7caa2011-09-06 03:55:56 +0400149S: Maintained
150F: target-xtensa/
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100151F: hw/xtensa/
Max Filippov16e7caa2011-09-06 03:55:56 +0400152
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500153Guest CPU Cores (KVM):
154----------------------
155
156Overall
Gleb Natapova2685bc2012-12-19 17:46:15 +0200157M: Gleb Natapov <gleb@redhat.com>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500158M: Marcelo Tosatti <mtosatti@redhat.com>
159L: kvm@vger.kernel.org
160S: Supported
161F: kvm-*
162F: */kvm.*
163
Peter Maydelled4659d2013-03-05 00:34:43 +0000164ARM
165M: Peter Maydell <peter.maydell@linaro.org>
166S: Maintained
167F: target-arm/kvm.c
168
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500169PPC
170M: Alexander Graf <agraf@suse.de>
171S: Maintained
172F: target-ppc/kvm.c
173
174S390
175M: Alexander Graf <agraf@suse.de>
176S: Maintained
177F: target-s390x/kvm.c
178
179X86
Gleb Natapova2685bc2012-12-19 17:46:15 +0200180M: Gleb Natapov <gleb@redhat.com>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500181M: Marcelo Tosatti <mtosatti@redhat.com>
182L: kvm@vger.kernel.org
183S: Supported
184F: target-i386/kvm.c
185
Stefano Stabellini8a6b0cd2011-07-29 16:05:13 +0100186Guest CPU Cores (Xen):
187----------------------
188
189X86
190M: Stefano Stabellini <stefano.stabellini@eu.citrix.com>
191L: xen-devel@lists.xensource.com
192S: Supported
193F: xen-*
194F: */xen*
195
Stefan Weil1bdd6872012-01-27 18:53:49 +0100196Hosts:
197------
198
199LINUX
200L: qemu-devel@nongnu.org
201S: Maintained
202F: linux-*
203F: linux-headers/
204
205POSIX
206L: qemu-devel@nongnu.org
207S: Maintained
208F: *posix*
209
210W32, W64
211L: qemu-devel@nongnu.org
212M: Stefan Weil <sw@weilnetz.de>
213S: Maintained
214F: *win32*
215
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500216ARM Machines
217------------
Evgeny Voevodinfc63dcf2012-02-16 09:56:06 +0000218Exynos
219M: Evgeny Voevodin <e.voevodin@samsung.com>
220M: Maksim Kozlov <m.kozlov@samsung.com>
221M: Igor Mitsyanko <i.mitsyanko@samsung.com>
222M: Dmitry Solodkiy <d.solodkiy@samsung.com>
223S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100224F: hw/*/exynos*
Evgeny Voevodinfc63dcf2012-02-16 09:56:06 +0000225
Mark Langsdorf766fd092012-02-16 09:56:10 +0000226Calxeda Highbank
227M: Mark Langsdorf <mark.langsdorf@calxeda.com>
228S: Supported
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100229F: hw/arm/highbank.c
230F: hw/net/xgmac.c
Mark Langsdorf766fd092012-02-16 09:56:10 +0000231
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500232Gumstix
233M: qemu-devel@nongnu.org
234S: Orphan
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100235F: hw/arm/gumstix.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500236
Peter Chubb03255592012-07-04 10:43:34 +0000237i.MX31
238M: Peter Chubb <peter.chubb@nicta.com.au>
239S: Odd fixes
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100240F: hw/*/imx*
241F: hw/arm/kzm.c
Peter Chubb03255592012-07-04 10:43:34 +0000242
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500243Integrator CP
244M: Paul Brook <paul@codesourcery.com>
Peter Maydell1ce9ce62011-09-20 16:18:46 +0100245M: Peter Maydell <peter.maydell@linaro.org>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500246S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100247F: hw/arm/integratorcp.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500248
249Mainstone
250M: qemu-devel@nongnu.org
251S: Orphan
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100252F: hw/arm/mainstone.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500253
254Musicpal
255M: Jan Kiszka <jan.kiszka@web.de>
256S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100257F: hw/arm/musicpal.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500258
259nSeries
260M: Andrzej Zaborowski <balrogg@gmail.com>
261S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100262F: hw/arm/nseries.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500263
264Palm
265M: Andrzej Zaborowski <balrogg@gmail.com>
266S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100267F: hw/arm/palm.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500268
269Real View
270M: Paul Brook <paul@codesourcery.com>
Peter Maydell1ce9ce62011-09-20 16:18:46 +0100271M: Peter Maydell <peter.maydell@linaro.org>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500272S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100273F: hw/arm/realview*
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500274
275Spitz
276M: Andrzej Zaborowski <balrogg@gmail.com>
277S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100278F: hw/arm/spitz.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500279
280Stellaris
281M: Paul Brook <paul@codesourcery.com>
Peter Maydell1ce9ce62011-09-20 16:18:46 +0100282M: Peter Maydell <peter.maydell@linaro.org>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500283S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100284F: hw/*/stellaris*
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500285
286Versatile PB
287M: Paul Brook <paul@codesourcery.com>
Peter Maydell1ce9ce62011-09-20 16:18:46 +0100288M: Peter Maydell <peter.maydell@linaro.org>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500289S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100290F: hw/*/versatile*
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500291
Peter A. G. Crosthwaitee3260502012-03-05 14:39:13 +1000292Xilinx Zynq
293M: Peter Crosthwaite <peter.crosthwaite@petalogix.com>
294S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100295F: hw/arm/xilinx_zynq.c
296F: hw/misc/zynq_slcr.c
297F: hw/*/cadence_*
298F: hw/ssi/xilinx_spips.c
Peter A. G. Crosthwaitee3260502012-03-05 14:39:13 +1000299
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500300CRIS Machines
301-------------
302Axis Dev88
303M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
304S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100305F: hw/cris/axis_dev88.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500306
307etraxfs
308M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
309S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100310F: hw/cris/etraxfs.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500311
Michael Walle07bf23a2011-02-17 23:45:18 +0100312LM32 Machines
313-------------
314EVR32 and uclinux BSP
315M: Michael Walle <michael@walle.cc>
316S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100317F: hw/lm32/lm32_boards.c
Michael Walle07bf23a2011-02-17 23:45:18 +0100318
Michael Walled118aa62011-03-07 23:32:45 +0100319milkymist
320M: Michael Walle <michael@walle.cc>
321S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100322F: hw/lm32/milkymist.c
Michael Walled118aa62011-03-07 23:32:45 +0100323
Aurelien Jarnoafcacd52011-01-14 20:39:19 +0100324M68K Machines
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500325-------------
326an5206
327M: Paul Brook <paul@codesourcery.com>
328S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100329F: hw/m68k/an5206.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500330
331dummy_m68k
332M: Paul Brook <paul@codesourcery.com>
333S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100334F: hw/m68k/dummy_m68k.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500335
336mcf5208
337M: Paul Brook <paul@codesourcery.com>
338S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100339F: hw/m68k/mcf5208.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500340
341MicroBlaze Machines
342-------------------
343petalogix_s3adsp1800
344M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
345S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100346F: hw/microblaze/petalogix_s3adsp1800.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500347
Peter A. G. Crosthwaited36e8ce2012-06-26 14:29:40 +1000348petalogix_ml605
349M: Peter Crosthwaite <peter.crosthwaite@petalogix.com>
350S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100351F: hw/microblaze/petalogix_ml605_mmu.c
Peter A. G. Crosthwaited36e8ce2012-06-26 14:29:40 +1000352
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500353MIPS Machines
354-------------
355Jazz
356M: Hervé Poussineau <hpoussin@reactos.org>
357S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100358F: hw/mips/mips_jazz.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500359
360Malta
361M: Aurelien Jarno <aurelien@aurel32.net>
362S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100363F: hw/mips/mips_malta.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500364
365Mipssim
366M: qemu-devel@nongnu.org
367S: Orphan
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100368F: hw/mips/mips_mipssim.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500369
370R4000
371M: Aurelien Jarno <aurelien@aurel32.net>
372S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100373F: hw/mips/mips_r4k.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500374
375PowerPC Machines
376----------------
377405
378M: Alexander Graf <agraf@suse.de>
Andreas Färbera6c98682012-01-13 13:33:57 +0000379L: qemu-ppc@nongnu.org
Andreas Färber9b9fe132012-08-22 05:48:46 +0000380S: Odd Fixes
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100381F: hw/ppc/ppc405_boards.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500382
Andreas Färberaaade8d2012-08-22 05:48:47 +0000383Bamboo
384M: Alexander Graf <agraf@suse.de>
385L: qemu-ppc@nongnu.org
386S: Odd Fixes
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100387F: hw/ppc/ppc440_bamboo.c
Andreas Färberaaade8d2012-08-22 05:48:47 +0000388
Andreas Färber98cded32012-08-22 05:48:45 +0000389e500
390M: Alexander Graf <agraf@suse.de>
391M: Scott Wood <scottwood@freescale.com>
392L: qemu-ppc@nongnu.org
393S: Supported
394F: hw/ppc/e500.[hc]
395F: hw/ppc/e500plat.c
396
397mpc8544ds
398M: Alexander Graf <agraf@suse.de>
399M: Scott Wood <scottwood@freescale.com>
400L: qemu-ppc@nongnu.org
401S: Supported
402F: hw/ppc/mpc8544ds.c
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100403F: hw/ppc/mpc8544_guts.c
Andreas Färber98cded32012-08-22 05:48:45 +0000404
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500405New World
406M: Alexander Graf <agraf@suse.de>
Andreas Färbera6c98682012-01-13 13:33:57 +0000407L: qemu-ppc@nongnu.org
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500408S: Maintained
Andreas Färberbaec1912013-01-23 23:03:54 +0000409F: hw/ppc/mac_newworld.c
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100410F: hw/pci/devices/host-uninorth.c
411F: hw/pci/devices/host-dec.[hc]
412F: hw/misc/macio/
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500413
414Old World
415M: Alexander Graf <agraf@suse.de>
Andreas Färbera6c98682012-01-13 13:33:57 +0000416L: qemu-ppc@nongnu.org
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500417S: Maintained
Andreas Färberbaec1912013-01-23 23:03:54 +0000418F: hw/ppc/mac_oldworld.c
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100419F: hw/pci/devices/host-grackle.c
420F: hw/misc/macio/
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500421
Andreas Färberec38d392011-11-01 00:03:07 +0100422PReP
423M: Andreas Färber <andreas.faerber@web.de>
Andreas Färbera6c98682012-01-13 13:33:57 +0000424L: qemu-ppc@nongnu.org
Andreas Färberec38d392011-11-01 00:03:07 +0100425S: Odd Fixes
Andreas Färber75610152013-01-26 20:41:58 +0100426F: hw/ppc/prep.c
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100427F: hw/pci/devices/host-prep.[hc]
428F: hw/isa/pc87312.[hc]
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500429
Andreas Färber8a269ca2012-08-22 05:48:44 +0000430sPAPR
Andreas Färber8a269ca2012-08-22 05:48:44 +0000431M: Alexander Graf <agraf@suse.de>
432L: qemu-ppc@nongnu.org
433S: Supported
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100434F: hw/*/spapr*
David Gibsonf9de2da2013-06-15 11:51:52 +1000435F: include/hw/*/spapr*
436F: hw/*/xics*
437F: include/hw/*/xics*
438F: pc-bios/spapr-rtas/*
Andreas Färber8a269ca2012-08-22 05:48:44 +0000439
Andreas Färber794d00b2012-08-22 05:48:48 +0000440virtex_ml507
441M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
442L: qemu-ppc@nongnu.org
443S: Odd Fixes
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100444F: hw/pci/virtex_ml507.c
Andreas Färber794d00b2012-08-22 05:48:48 +0000445
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500446SH4 Machines
447------------
448R2D
449M: Magnus Damm <magnus.damm@gmail.com>
450S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100451F: hw/sh/r2d.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500452
453Shix
454M: Magnus Damm <magnus.damm@gmail.com>
Aurelien Jarnoafcacd52011-01-14 20:39:19 +0100455S: Orphan
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100456F: hw/sh/shix.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500457
458SPARC Machines
459--------------
460Sun4m
461M: Blue Swirl <blauwirbel@gmail.com>
462S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100463F: hw/sparc/sun4m.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500464
465Sun4u
466M: Blue Swirl <blauwirbel@gmail.com>
467S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100468F: hw/sparc64/sun4u.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500469
Fabien Chouteauce6c7602012-05-22 10:14:28 +0200470Leon3
471M: Fabien Chouteau <chouteau@adacore.com>
472S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100473F: hw/sparc/leon3.c
474F: hw/*/grlib*
Fabien Chouteauce6c7602012-05-22 10:14:28 +0200475
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500476S390 Machines
477-------------
478S390 Virtio
479M: Alexander Graf <agraf@suse.de>
480S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100481F: hw/s390/s390-*.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500482
Cornelia Huckdd4ad642013-03-05 02:22:01 +0000483S390 Virtio-ccw
484M: Cornelia Huck <cornelia.huck@de.ibm.com>
485M: Alexander Graf <agraf@suse.de>
486S: Supported
487F: hw/s390x/s390-virtio-ccw.c
488F: hw/s390x/css.[hc]
489T: git git://github.com/cohuck/qemu virtio-ccw-upstr
490
Guan Xuetaoab9528c2012-08-10 14:42:34 +0800491UniCore32 Machines
492-------------
493PKUnity-3 SoC initramfs-with-busybox
494M: Guan Xuetao <gxt@mprc.pku.edu.cn>
495S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100496F: hw/*/puv3*
Guan Xuetaoab9528c2012-08-10 14:42:34 +0800497F: hw/unicore32/
498
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500499X86 Machines
500------------
501PC
502M: Anthony Liguori <aliguori@us.ibm.com>
503S: Supported
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100504F: hw/i386/pc.[ch]
505F: hw/i386/pc_piix.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500506
Max Filippov16e7caa2011-09-06 03:55:56 +0400507Xtensa Machines
508---------------
Max Filippov375847a2011-10-28 02:11:05 +0400509sim
Max Filippov16e7caa2011-09-06 03:55:56 +0400510M: Max Filippov <jcmvbkbc@gmail.com>
511S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100512F: hw/xtensa/xtensa_sim.c
Max Filippov375847a2011-10-28 02:11:05 +0400513
514Avnet LX60
515M: Max Filippov <jcmvbkbc@gmail.com>
516S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100517F: hw/xtensa/xtensa_lx60.c
Max Filippov16e7caa2011-09-06 03:55:56 +0400518
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500519Devices
520-------
521IDE
522M: Kevin Wolf <kwolf@redhat.com>
523S: Odd Fixes
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100524F: include/hw/ide.h
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500525F: hw/ide/
526
Peter Maydellf5f487b2011-09-17 17:26:15 +0100527OMAP
528M: Peter Maydell <peter.maydell@linaro.org>
529S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100530F: hw/*/omap*
Peter Maydellf5f487b2011-09-17 17:26:15 +0100531
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500532PCI
533M: Michael S. Tsirkin <mst@redhat.com>
534S: Supported
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100535F: include/hw/pci/*
Michael S. Tsirkinca818cf2012-12-12 15:11:55 +0200536F: hw/pci/*
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100537F: hw/acpi/*
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500538
Andreas Färberaaade8d2012-08-22 05:48:47 +0000539ppc4xx
540M: Alexander Graf <agraf@suse.de>
541L: qemu-ppc@nongnu.org
542S: Odd Fixes
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100543F: hw/ppc/ppc4*.c
Andreas Färberaaade8d2012-08-22 05:48:47 +0000544
Andreas Färber98cded32012-08-22 05:48:45 +0000545ppce500
546M: Alexander Graf <agraf@suse.de>
547M: Scott Wood <scottwood@freescale.com>
548L: qemu-ppc@nongnu.org
549S: Supported
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100550F: hw/ppc/e500_*
Andreas Färber98cded32012-08-22 05:48:45 +0000551
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500552SCSI
Paolo Bonzinide7724f2012-02-22 15:59:52 +0100553M: Paolo Bonzini <pbonzini@redhat.com>
554S: Supported
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100555F: include/hw/scsi*
556F: hw/scsi/*
Andreas Färber1ab09a42012-04-13 18:03:42 +0200557T: git git://github.com/bonzini/qemu.git scsi-next
Paolo Bonzinide7724f2012-02-22 15:59:52 +0100558
559LSI53C895A
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500560M: Paul Brook <paul@codesourcery.com>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500561S: Odd Fixes
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100562F: hw/scsi/lsi53c895a.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500563
Peter A. G. Crosthwaitefcb56292012-08-06 11:38:19 +1000564SSI
565M: Peter Crosthwaite <peter.crosthwaite@petalogix.com>
566S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100567F: hw/ssi/*
568F: hw/block/m25p80.c
Peter A. G. Crosthwaitefcb56292012-08-06 11:38:19 +1000569
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500570USB
Gerd Hoffmann5d0d62f2010-12-17 11:11:25 +0100571M: Gerd Hoffmann <kraxel@redhat.com>
572S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100573F: hw/usb/*
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500574
Alex Williamson92e1fb52012-09-26 11:19:39 -0600575VFIO
576M: Alex Williamson <alex.williamson@redhat.com>
577S: Supported
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100578F: hw/pci/vfio.c
Alex Williamson92e1fb52012-09-26 11:19:39 -0600579
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500580vhost
581M: Michael S. Tsirkin <mst@redhat.com>
582S: Supported
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100583F: hw/*/*vhost*
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500584
585virtio
586M: Anthony Liguori <aliguori@us.ibm.com>
587S: Supported
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100588F: hw/*/virtio*
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500589
590virtio-9p
Aneesh Kumar K.V23704102012-01-19 22:57:11 +0530591M: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500592S: Supported
Andreas Färberaebeca22012-04-13 17:19:12 +0200593F: hw/9pfs/
594F: fsdev/
Andreas Färber3f3309c2012-04-13 18:23:55 +0200595T: git git://github.com/kvaneesh/QEMU.git
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500596
597virtio-blk
598M: Kevin Wolf <kwolf@redhat.com>
Stefan Hajnoczi54d01a02012-11-09 14:29:03 +0100599M: Stefan Hajnoczi <stefanha@redhat.com>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500600S: Supported
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100601F: hw/block/virtio-blk.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500602
Cornelia Huckdd4ad642013-03-05 02:22:01 +0000603virtio-ccw
604M: Cornelia Huck <cornelia.huck@de.ibm.com>
605S: Supported
606F: hw/s390x/virtio-ccw.[hc]
607T: git git://github.com/cohuck/qemu virtio-ccw-upstr
608
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500609virtio-serial
610M: Amit Shah <amit.shah@redhat.com>
611S: Supported
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100612F: hw/char/virtio-serial-bus.c
613F: hw/char/virtio-console.c
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500614
Keith Buschf3c507a2013-06-04 09:17:10 -0600615nvme
616M: Keith Busch <keith.busch@intel.com>
617S: Supported
618F: hw/block/nvme*
619
Peter A. G. Crosthwaiteab61d242012-06-26 14:29:41 +1000620Xilinx EDK
621M: Peter Crosthwaite <peter.crosthwaite@petalogix.com>
622M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
623S: Maintained
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100624F: hw/*/xilinx_*
625F: include/hw/xilinx.h
Peter A. G. Crosthwaiteab61d242012-06-26 14:29:41 +1000626
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500627Subsystems
628----------
629Audio
630M: Vassili Karpov (malc) <av1474@comtv.ru>
631S: Maintained
632F: audio/
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100633F: hw/audio/
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500634
635Block
636M: Kevin Wolf <kwolf@redhat.com>
Stefan Hajnoczi54d01a02012-11-09 14:29:03 +0100637M: Stefan Hajnoczi <stefanha@redhat.com>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500638S: Supported
639F: block*
640F: block/
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100641F: hw/block/
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500642
643Character Devices
644M: Anthony Liguori <aliguori@us.ibm.com>
645S: Maintained
646F: qemu-char.c
647
Andreas Färberf2ca0522012-09-17 19:10:32 +0200648CPU
649M: Andreas Färber <afaerber@suse.de>
650S: Supported
651F: qom/cpu.c
652F: include/qemu/cpu.h
Andreas Färber62e0c092012-12-09 20:15:31 +0100653F: target-i386/cpu.c
Andreas Färberf2ca0522012-09-17 19:10:32 +0200654
Igor Mammedovf0513d22013-04-29 17:02:50 +0200655ICC Bus
656M: Igor Mammedov <imammedo@redhat.com>
657S: Supported
658F: include/hw/cpu/icc_bus.h
659F: hw/cpu/icc_bus.c
660
Peter A. G. Crosthwaited24b5692012-06-26 14:29:42 +1000661Device Tree
662M: Peter Crosthwaite <peter.crosthwaite@petalogix.com>
663M: Alexander Graf <agraf@suse.de>
664S: Maintained
665F: device-tree.[ch]
666
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500667GDB stub
668M: qemu-devel@nongnu.org
669S: Odd Fixes
670F: gdbstub*
671F: gdb-xml/
672
Gerd Hoffmann7ee3bf02010-12-13 21:30:37 +0100673SPICE
674M: Gerd Hoffmann <kraxel@redhat.com>
675S: Supported
676F: ui/qemu-spice.h
677F: ui/spice-*.c
678F: audio/spiceaudio.c
Paolo Bonzini8d8b6362013-02-04 15:19:30 +0100679F: hw/display/qxl*
Gerd Hoffmann7ee3bf02010-12-13 21:30:37 +0100680
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500681Graphics
682M: Anthony Liguori <aliguori@us.ibm.com>
683S: Maintained
684F: ui/
685
Andreas Färber351f1bf2011-10-30 18:08:01 +0100686Cocoa graphics
687M: Andreas Färber <andreas.faerber@web.de>
688S: Odd Fixes
689F: ui/cocoa.m
690
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500691Main loop
692M: Anthony Liguori <aliguori@us.ibm.com>
693S: Supported
694F: vl.c
695
Luiz Capitulino8899b4a2013-06-03 11:14:26 -0400696Human Monitor (HMP)
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500697M: Luiz Capitulino <lcapitulino@redhat.com>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500698S: Supported
699F: monitor.c
Luiz Capitulino8899b4a2013-06-03 11:14:26 -0400700F: hmp.c
701F: hmp-commands.hx
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500702
703Network device layer
704M: Anthony Liguori <aliguori@us.ibm.com>
Stefan Hajnoczi1cd0f8c2012-10-07 18:08:49 +0200705M: Stefan Hajnoczi <stefanha@redhat.com>
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500706S: Maintained
707F: net/
Stefan Hajnoczi837c36e2012-07-20 14:29:24 +0100708T: git git://github.com/stefanha/qemu.git net
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500709
Paolo Bonzini44f76b22011-12-22 11:39:19 +0100710Network Block Device (NBD)
711M: Paolo Bonzini <pbonzini@redhat.com>
712S: Odd Fixes
713F: block/nbd.c
714F: nbd.*
715F: qemu-nbd.c
Andreas Färber1ab09a42012-04-13 18:03:42 +0200716T: git git://github.com/bonzini/qemu.git nbd-next
Paolo Bonzini44f76b22011-12-22 11:39:19 +0100717
Luiz Capitulino8899b4a2013-06-03 11:14:26 -0400718QAPI
719M: Luiz Capitulino <lcapitulino@redhat.com>
720M: Michael Roth <mdroth@linux.vnet.ibm.com>
721S: Supported
722F: qapi/
723
Luiz Capitulino7810d292013-06-03 11:11:53 -0400724QAPI Schema
725M: Eric Blake <eblake@redhat.com>
726M: Luiz Capitulino <lcapitulino@redhat.com>
727M: Markus Armbruster <armbru@redhat.com>
728S: Supported
729F: qapi-schema.json
730
Luiz Capitulino8899b4a2013-06-03 11:14:26 -0400731QMP
732M: Luiz Capitulino <lcapitulino@redhat.com>
733S: Supported
734F: qmp.c
735F: monitor.c
736F: qmp-commands.hx
737F: QMP/
738
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500739SLIRP
Jan Kiszkabafc72a2011-07-27 14:21:32 +0200740M: Jan Kiszka <jan.kiszka@siemens.com>
741S: Maintained
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500742F: slirp/
Andreas Färber1ab09a42012-04-13 18:03:42 +0200743T: git git://git.kiszka.org/qemu.git queues/slirp
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500744
Stefan Hajnoczi598a3f32011-09-03 16:24:47 +0100745Tracing
Stefan Hajnoczi1cd0f8c2012-10-07 18:08:49 +0200746M: Stefan Hajnoczi <stefanha@redhat.com>
Stefan Hajnoczi598a3f32011-09-03 16:24:47 +0100747S: Maintained
748F: trace/
Lluís Vilanovaf70fd8f2012-04-03 20:48:17 +0200749F: scripts/tracetool.py
750F: scripts/tracetool/
Andreas Färberf922ea42012-03-10 13:37:34 +0100751F: docs/tracing.txt
Andreas Färber1ab09a42012-04-13 18:03:42 +0200752T: git git://github.com/stefanha/qemu.git tracing
Stefan Hajnoczi598a3f32011-09-03 16:24:47 +0100753
Blue Swirl14f40fd2011-11-26 09:51:23 +0000754Checkpatch
755M: Blue Swirl <blauwirbel@gmail.com>
756S: Odd Fixes
757F: scripts/checkpatch.pl
758
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500759Usermode Emulation
760------------------
761BSD user
762M: Blue Swirl <blauwirbel@gmail.com>
763S: Maintained
764F: bsd-user/
765
Anthony Liguorifd5d5c52010-09-09 14:51:31 -0500766Linux user
767M: Riku Voipio <riku.voipio@iki.fi>
768S: Maintained
769F: linux-user/
Aurelien Jarno42f5a7e2011-01-14 20:39:19 +0100770
771Tiny Code Generator (TCG)
772-------------------------
773Common code
774M: qemu-devel@nongnu.org
775S: Maintained
776F: tcg/
777
Claudio Fontanab25a4642013-06-12 16:20:24 +0100778AArch64 target
779M: Claudio Fontana <claudio.fontana@huawei.com>
780M: Claudio Fontana <claudio.fontana@gmail.com>
781S: Maintained
782F: tcg/aarch64/
783
Aurelien Jarno42f5a7e2011-01-14 20:39:19 +0100784ARM target
785M: Andrzej Zaborowski <balrogg@gmail.com>
786S: Maintained
787F: tcg/arm/
788
789HPPA target
790M: Richard Henderson <rth@twiddle.net>
791S: Maintained
792F: tcg/hppa/
793
794i386 target
795M: qemu-devel@nongnu.org
796S: Maintained
797F: tcg/i386/
798
799IA64 target
800M: Aurelien Jarno <aurelien@aurel32.net>
801S: Maintained
802F: tcg/ia64/
803
804MIPS target
Peter Maydelld6eec7a2011-06-22 15:45:01 +0100805M: Aurelien Jarno <aurelien@aurel32.net>
Aurelien Jarno42f5a7e2011-01-14 20:39:19 +0100806S: Maintained
807F: tcg/mips/
808
809PPC
810M: Vassili Karpov (malc) <av1474@comtv.ru>
811S: Maintained
812F: tcg/ppc/
813
814PPC64 target
815M: Vassili Karpov (malc) <av1474@comtv.ru>
816S: Maintained
817F: tcg/ppc64/
818
819S390 target
820M: Alexander Graf <agraf@suse.de>
821M: Richard Henderson <rth@twiddle.net>
822S: Maintained
823F: tcg/s390/
824
825SPARC target
826M: Blue Swirl <blauwirbel@gmail.com>
827S: Maintained
828F: tcg/sparc/
Stefan Weilbc75c9e2011-11-24 23:20:43 +0100829
830TCI target
831M: Stefan Weil <sw@weilnetz.de>
832S: Maintained
Andreas Färber8ef9cd52012-04-13 17:22:03 +0200833F: tcg/tci/
Andreas Färberaa09c952012-04-13 17:52:27 +0200834
835Stable branches
836---------------
837Stable 1.0
838L: qemu-stable@nongnu.org
839T: git git://git.qemu.org/qemu-stable-1.0.git
840S: Orphan
841
842Stable 0.15
843L: qemu-stable@nongnu.org
844T: git git://git.qemu.org/qemu-stable-0.15.git
845S: Orphan
846
847Stable 0.14
848L: qemu-stable@nongnu.org
849T: git git://git.qemu.org/qemu-stable-0.14.git
850S: Orphan
851
852Stable 0.10
853L: qemu-stable@nongnu.org
854T: git git://git.qemu.org/qemu-stable-0.10.git
855S: Orphan