]>
Commit | Line | Data |
---|---|---|
b6f97c14 FB |
1 | QEMU Maintainers |
2 | ================ | |
3 | ||
fd5d5c56 AL |
4 | The intention of this file is not to establish who owns what portions of the |
5 | code base, but to provide a set of names that developers can consult when they | |
6 | have a question about a particular subset and also to provide a set of names | |
7 | to be CC'd when submitting a patch to obtain appropriate review. | |
3cd9acb4 | 8 | |
fd5d5c56 AL |
9 | In general, if you have a question about inclusion of a patch, you should |
10 | consult qemu-devel and not any specific individual privately. | |
b6f97c14 | 11 | |
fd5d5c56 AL |
12 | Descriptions of section entries: |
13 | ||
14 | 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 | |
c91bbffb | 23 | much other than throw the odd patch in. See below. |
fd5d5c56 AL |
24 | 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. | |
49 | ||
50 | ||
51 | General Project Administration | |
52 | ------------------------------ | |
ff0d4876 | 53 | M: Peter Maydell <[email protected]> |
fd5d5c56 | 54 | |
c9a19d5b SW |
55 | All patches CC here |
56 | L: [email protected] | |
57 | F: * | |
58 | F: */ | |
59 | ||
62622c11 MT |
60 | Responsible Disclosure, Reporting Security Issues |
61 | ------------------------------ | |
62 | W: http://wiki.qemu.org/SecurityProcess | |
63 | M: Michael S. Tsirkin <[email protected]> | |
62622c11 MT |
64 | L: [email protected] |
65 | ||
936c2230 LV |
66 | Trivial patches |
67 | --------------- | |
68 | Trivial patches | |
69 | M: Michael Tokarev <[email protected]> | |
70 | M: Laurent Vivier <[email protected]> | |
71 | S: Maintained | |
72 | L: [email protected] | |
73 | K: ^Subject:.*(?i)trivial | |
74 | T: git git://git.corpit.ru/qemu.git trivial-patches | |
75 | T: git git://github.com/vivier/qemu.git trivial-patches | |
76 | ||
fd5d5c56 AL |
77 | Guest CPU cores (TCG): |
78 | ---------------------- | |
486bbe5f | 79 | Overall |
5dd4a88c | 80 | L: [email protected] |
2b1641d0 PB |
81 | M: Paolo Bonzini <[email protected]> |
82 | M: Peter Crosthwaite <[email protected]> | |
83 | M: Richard Henderson <[email protected]> | |
84 | S: Maintained | |
486bbe5f | 85 | F: cpu-exec.c |
2b1641d0 PB |
86 | F: cpu-exec-common.c |
87 | F: cpus.c | |
486bbe5f | 88 | F: cputlb.c |
2b1641d0 | 89 | F: exec.c |
486bbe5f | 90 | F: softmmu_template.h |
2b1641d0 PB |
91 | F: translate-all.* |
92 | F: translate-common.c | |
93 | F: include/exec/cpu*.h | |
94 | F: include/exec/exec-all.h | |
486bbe5f | 95 | F: include/exec/helper*.h |
2b1641d0 | 96 | F: include/exec/tb-hash.h |
460423d3 | 97 | F: include/sysemu/cpus.h |
486bbe5f | 98 | |
1badb586 PM |
99 | FPU emulation |
100 | M: Aurelien Jarno <[email protected]> | |
101 | M: Peter Maydell <[email protected]> | |
102 | S: Odd Fixes | |
103 | F: fpu/ | |
104 | F: include/fpu/ | |
105 | ||
fd5d5c56 | 106 | Alpha |
8d6df264 RH |
107 | M: Richard Henderson <[email protected]> |
108 | S: Maintained | |
fcf5ef2a | 109 | F: target/alpha/ |
8d8b636d | 110 | F: hw/alpha/ |
c0bd0b50 | 111 | F: tests/tcg/alpha/ |
c17652ee | 112 | F: disas/alpha.c |
b6f97c14 | 113 | |
b6f97c14 | 114 | ARM |
1ce9ce6a | 115 | M: Peter Maydell <[email protected]> |
b4f2bd1c | 116 | L: [email protected] |
fd5d5c56 | 117 | S: Maintained |
fcf5ef2a | 118 | F: target/arm/ |
8d8b636d PB |
119 | F: hw/arm/ |
120 | F: hw/cpu/a*mpcore.c | |
f7e242d6 | 121 | F: include/hw/cpu/a*mpcore.h |
c17652ee PB |
122 | F: disas/arm.c |
123 | F: disas/arm-a64.cc | |
124 | F: disas/libvixl/ | |
fd5d5c56 AL |
125 | |
126 | CRIS | |
127 | M: Edgar E. Iglesias <[email protected]> | |
128 | S: Maintained | |
fcf5ef2a | 129 | F: target/cris/ |
8d8b636d | 130 | F: hw/cris/ |
c9b90090 | 131 | F: include/hw/cris/ |
c0bd0b50 | 132 | F: tests/tcg/cris/ |
c17652ee | 133 | F: disas/cris.c |
fd5d5c56 | 134 | |
07bf23a7 MW |
135 | LM32 |
136 | M: Michael Walle <[email protected]> | |
137 | S: Maintained | |
fcf5ef2a | 138 | F: target/lm32/ |
4eab7a0a | 139 | F: disas/lm32.c |
8d8b636d | 140 | F: hw/lm32/ |
4eab7a0a MW |
141 | F: hw/*/lm32_* |
142 | F: hw/*/milkymist-* | |
143 | F: include/hw/char/lm32_juart.h | |
144 | F: include/hw/lm32/ | |
c0bd0b50 | 145 | F: tests/tcg/lm32/ |
07bf23a7 | 146 | |
fd5d5c56 | 147 | M68K |
595a926d LV |
148 | M: Laurent Vivier <[email protected]> |
149 | S: Maintained | |
fcf5ef2a | 150 | F: target/m68k/ |
e9a56114 | 151 | F: disas/m68k.c |
fd5d5c56 AL |
152 | |
153 | MicroBlaze | |
154 | M: Edgar E. Iglesias <[email protected]> | |
155 | S: Maintained | |
fcf5ef2a | 156 | F: target/microblaze/ |
8d8b636d | 157 | F: hw/microblaze/ |
c17652ee | 158 | F: disas/microblaze.c |
fd5d5c56 | 159 | |
b6f97c14 | 160 | MIPS |
ddb13561 | 161 | M: Aurelien Jarno <[email protected]> |
78851fa5 | 162 | M: Yongbok Kim <[email protected]> |
6f640917 | 163 | S: Maintained |
fcf5ef2a | 164 | F: target/mips/ |
8d8b636d | 165 | F: hw/mips/ |
5995db88 TH |
166 | F: hw/misc/mips_* |
167 | F: hw/intc/mips_gic.c | |
168 | F: hw/timer/mips_gictimer.c | |
169 | F: include/hw/mips/ | |
170 | F: include/hw/misc/mips_* | |
171 | F: include/hw/intc/mips_gic.h | |
172 | F: include/hw/timer/mips_gictimer.h | |
c0bd0b50 | 173 | F: tests/tcg/mips/ |
c17652ee | 174 | F: disas/mips.c |
fd5d5c56 | 175 | |
d15a9c23 AG |
176 | Moxie |
177 | M: Anthony Green <[email protected]> | |
178 | S: Maintained | |
fcf5ef2a | 179 | F: target/moxie/ |
c17652ee | 180 | F: disas/moxie.c |
a3ccdfb5 TH |
181 | F: hw/moxie/ |
182 | F: default-configs/moxie-softmmu.mak | |
d15a9c23 | 183 | |
945dad6d JL |
184 | OpenRISC |
185 | M: Jia Liu <[email protected]> | |
186 | S: Maintained | |
fcf5ef2a | 187 | F: target/openrisc/ |
945dad6d | 188 | F: hw/openrisc/ |
c0bd0b50 | 189 | F: tests/tcg/openrisc/ |
945dad6d | 190 | |
b6f97c14 | 191 | PowerPC |
b4daafbd | 192 | M: David Gibson <[email protected]> |
fd5d5c56 | 193 | M: Alexander Graf <[email protected]> |
a6c98685 | 194 | L: [email protected] |
fd5d5c56 | 195 | S: Maintained |
fcf5ef2a | 196 | F: target/ppc/ |
8d8b636d | 197 | F: hw/ppc/ |
b5d55020 | 198 | F: include/hw/ppc/ |
c17652ee | 199 | F: disas/ppc.c |
fd5d5c56 AL |
200 | |
201 | S390 | |
2b35e93f | 202 | M: Richard Henderson <[email protected]> |
fd5d5c56 AL |
203 | M: Alexander Graf <[email protected]> |
204 | S: Maintained | |
fcf5ef2a | 205 | F: target/s390x/ |
8d8b636d | 206 | F: hw/s390x/ |
c17652ee | 207 | F: disas/s390.c |
fd5d5c56 | 208 | |
b6f97c14 | 209 | SH4 |
ddb13561 | 210 | M: Aurelien Jarno <[email protected]> |
2c9b7d1a | 211 | S: Odd Fixes |
fcf5ef2a | 212 | F: target/sh4/ |
8d8b636d | 213 | F: hw/sh4/ |
c17652ee | 214 | F: disas/sh4.c |
8a90f900 | 215 | F: include/hw/sh4/ |
fd5d5c56 AL |
216 | |
217 | SPARC | |
f2416d3a | 218 | M: Mark Cave-Ayland <[email protected]> |
2c742bf7 | 219 | M: Artyom Tarasenko <[email protected]> |
fd5d5c56 | 220 | S: Maintained |
fcf5ef2a | 221 | F: target/sparc/ |
8d8b636d PB |
222 | F: hw/sparc/ |
223 | F: hw/sparc64/ | |
c17652ee | 224 | F: disas/sparc.c |
fd5d5c56 | 225 | |
a6ea7b4c AF |
226 | UniCore32 |
227 | M: Guan Xuetao <[email protected]> | |
228 | S: Maintained | |
fcf5ef2a | 229 | F: target/unicore32/ |
8d8b636d | 230 | F: hw/unicore32/ |
47b98d59 | 231 | F: include/hw/unicore32/ |
a6ea7b4c | 232 | |
fd5d5c56 | 233 | X86 |
d46d72fd PB |
234 | M: Paolo Bonzini <[email protected]> |
235 | M: Richard Henderson <[email protected]> | |
e1a04339 | 236 | M: Eduardo Habkost <[email protected]> |
b203a4ba | 237 | S: Maintained |
fcf5ef2a | 238 | F: target/i386/ |
8d8b636d | 239 | F: hw/i386/ |
c17652ee | 240 | F: disas/i386.c |
fd5d5c56 | 241 | |
16e7caae MF |
242 | Xtensa |
243 | M: Max Filippov <[email protected]> | |
375847a6 | 244 | W: http://wiki.osll.spb.ru/doku.php?id=etc:users:jcmvbkbc:qemu-target-xtensa |
16e7caae | 245 | S: Maintained |
fcf5ef2a | 246 | F: target/xtensa/ |
8d8b636d | 247 | F: hw/xtensa/ |
c0bd0b50 | 248 | F: tests/tcg/xtensa/ |
16e7caae | 249 | |
48e06fe0 BK |
250 | TriCore |
251 | M: Bastian Koppelmann <[email protected]> | |
252 | S: Maintained | |
fcf5ef2a | 253 | F: target/tricore/ |
48e06fe0 | 254 | F: hw/tricore/ |
d46d14e6 | 255 | F: include/hw/tricore/ |
48e06fe0 | 256 | |
fd5d5c56 AL |
257 | Guest CPU Cores (KVM): |
258 | ---------------------- | |
259 | ||
260 | Overall | |
c6d559d9 | 261 | M: Paolo Bonzini <[email protected]> |
fd5d5c56 AL |
262 | L: [email protected] |
263 | S: Supported | |
264 | F: kvm-* | |
265 | F: */kvm.* | |
a95e9a48 | 266 | F: include/sysemu/kvm*.h |
fd5d5c56 | 267 | |
ed4659d1 PM |
268 | ARM |
269 | M: Peter Maydell <[email protected]> | |
b4f2bd1c | 270 | L: [email protected] |
ed4659d1 | 271 | S: Maintained |
fcf5ef2a | 272 | F: target/arm/kvm.c |
ed4659d1 | 273 | |
a31896c4 JH |
274 | MIPS |
275 | M: James Hogan <[email protected]> | |
276 | S: Maintained | |
fcf5ef2a | 277 | F: target/mips/kvm.c |
a31896c4 | 278 | |
fd5d5c56 AL |
279 | PPC |
280 | M: Alexander Graf <[email protected]> | |
281 | S: Maintained | |
fcf5ef2a | 282 | F: target/ppc/kvm.c |
fd5d5c56 | 283 | |
749717a0 | 284 | S390 |
b304bf00 CB |
285 | M: Christian Borntraeger <[email protected]> |
286 | M: Cornelia Huck <[email protected]> | |
fd5d5c56 AL |
287 | M: Alexander Graf <[email protected]> |
288 | S: Maintained | |
fcf5ef2a TH |
289 | F: target/s390x/kvm.c |
290 | F: target/s390x/ioinst.[ch] | |
291 | F: target/s390x/machine.c | |
4277af19 CH |
292 | F: hw/intc/s390_flic.c |
293 | F: hw/intc/s390_flic_kvm.c | |
294 | F: include/hw/s390x/s390_flic.h | |
c5bfb202 | 295 | F: gdb-xml/s390*.xml |
3e9ed24b CH |
296 | T: git git://github.com/cohuck/qemu.git s390-next |
297 | T: git git://github.com/borntraeger/qemu.git s390-next | |
fd5d5c56 AL |
298 | |
299 | X86 | |
d46d72fd | 300 | M: Paolo Bonzini <[email protected]> |
fd5d5c56 AL |
301 | M: Marcelo Tosatti <[email protected]> |
302 | L: [email protected] | |
303 | S: Supported | |
fcf5ef2a | 304 | F: target/i386/kvm.c |
fd5d5c56 | 305 | |
8a6b0cd7 SS |
306 | Guest CPU Cores (Xen): |
307 | ---------------------- | |
308 | ||
309 | X86 | |
3623c57e SS |
310 | M: Stefano Stabellini <[email protected]> |
311 | M: Anthony Perard <[email protected]> | |
8a6b0cd7 SS |
312 | L: [email protected] |
313 | S: Supported | |
314 | F: xen-* | |
315 | F: */xen* | |
c92451c2 PB |
316 | F: hw/char/xen_console.c |
317 | F: hw/display/xenfb.c | |
318 | F: hw/net/xen_nic.c | |
9027ac50 | 319 | F: hw/block/xen_* |
c92451c2 PB |
320 | F: hw/xen/ |
321 | F: hw/xenpv/ | |
9027ac50 | 322 | F: hw/i386/xen/ |
c92451c2 | 323 | F: include/hw/xen/ |
9027ac50 | 324 | F: include/sysemu/xen-mapcache.h |
8a6b0cd7 | 325 | |
1bdd6874 SW |
326 | Hosts: |
327 | ------ | |
328 | ||
329 | LINUX | |
330 | L: [email protected] | |
331 | S: Maintained | |
332 | F: linux-* | |
333 | F: linux-headers/ | |
334 | ||
335 | POSIX | |
336 | L: [email protected] | |
337 | S: Maintained | |
338 | F: *posix* | |
339 | ||
340 | W32, W64 | |
341 | L: [email protected] | |
342 | M: Stefan Weil <[email protected]> | |
343 | S: Maintained | |
344 | F: *win32* | |
03972660 TH |
345 | F: */*win32* |
346 | F: include/*/*win32* | |
347 | X: qga/*win32* | |
885bdc95 | 348 | F: qemu.nsi |
1bdd6874 | 349 | |
fd5d5c56 AL |
350 | ARM Machines |
351 | ------------ | |
84291fe7 | 352 | Allwinner-a10 |
85b4d5da | 353 | M: Beniamino Galvani <[email protected]> |
b4f2bd1c | 354 | L: [email protected] |
84291fe7 | 355 | S: Maintained |
85b4d5da BG |
356 | F: hw/*/allwinner* |
357 | F: include/hw/*/allwinner* | |
84291fe7 LG |
358 | F: hw/arm/cubieboard.c |
359 | ||
06271000 PB |
360 | ARM PrimeCell |
361 | M: Peter Maydell <[email protected]> | |
b4f2bd1c | 362 | L: [email protected] |
06271000 PB |
363 | S: Maintained |
364 | F: hw/char/pl011.c | |
365 | F: hw/display/pl110* | |
366 | F: hw/dma/pl080.c | |
367 | F: hw/dma/pl330.c | |
368 | F: hw/gpio/pl061.c | |
369 | F: hw/input/pl050.c | |
370 | F: hw/intc/pl190.c | |
371 | F: hw/sd/pl181.c | |
372 | F: hw/timer/pl031.c | |
373 | F: include/hw/arm/primecell.h | |
374 | ||
375 | ARM cores | |
376 | M: Peter Maydell <[email protected]> | |
b4f2bd1c | 377 | L: [email protected] |
06271000 PB |
378 | S: Maintained |
379 | F: hw/intc/arm* | |
380 | F: hw/intc/gic_internal.h | |
381 | F: hw/misc/a9scu.c | |
382 | F: hw/misc/arm11scu.c | |
383 | F: hw/timer/a9gtimer* | |
384 | F: hw/timer/arm_* | |
385 | F: include/hw/arm/arm.h | |
386 | F: include/hw/intc/arm* | |
387 | F: include/hw/misc/a9scu.h | |
388 | F: include/hw/misc/arm11scu.h | |
389 | F: include/hw/timer/a9gtimer.h | |
390 | F: include/hw/timer/arm_mptimer.h | |
391 | ||
fc63dcff | 392 | Exynos |
f44c5c67 | 393 | M: Igor Mitsyanko <[email protected]> |
b4f2bd1c | 394 | L: [email protected] |
fc63dcff | 395 | S: Maintained |
8d8b636d | 396 | F: hw/*/exynos* |
ed0db866 | 397 | F: include/hw/arm/exynos4210.h |
fc63dcff | 398 | |
766fd09f | 399 | Calxeda Highbank |
9ef137ca | 400 | M: Rob Herring <[email protected]> |
b4f2bd1c | 401 | L: [email protected] |
9ef137ca | 402 | S: Maintained |
8d8b636d PB |
403 | F: hw/arm/highbank.c |
404 | F: hw/net/xgmac.c | |
766fd09f | 405 | |
9082f121 AP |
406 | Canon DIGIC |
407 | M: Antony Pavlov <[email protected]> | |
b4f2bd1c | 408 | L: [email protected] |
9082f121 AP |
409 | S: Maintained |
410 | F: include/hw/arm/digic.h | |
411 | F: hw/*/digic* | |
412 | ||
fd5d5c56 | 413 | Gumstix |
5dd4a88c | 414 | L: [email protected] |
b4f2bd1c | 415 | L: [email protected] |
fd5d5c56 | 416 | S: Orphan |
8d8b636d | 417 | F: hw/arm/gumstix.c |
fd5d5c56 | 418 | |
0325559d PC |
419 | i.MX31 |
420 | M: Peter Chubb <[email protected]> | |
b4f2bd1c | 421 | L: [email protected] |
0325559d | 422 | S: Odd fixes |
8d8b636d | 423 | F: hw/*/imx* |
f7e242d6 | 424 | F: include/hw/*/imx* |
8d8b636d | 425 | F: hw/arm/kzm.c |
ed0db866 | 426 | F: include/hw/arm/fsl-imx31.h |
0325559d | 427 | |
fd5d5c56 | 428 | Integrator CP |
1ce9ce6a | 429 | M: Peter Maydell <[email protected]> |
b4f2bd1c | 430 | L: [email protected] |
fd5d5c56 | 431 | S: Maintained |
8d8b636d | 432 | F: hw/arm/integratorcp.c |
f7e242d6 | 433 | F: hw/misc/arm_integrator_debug.c |
fd5d5c56 | 434 | |
fd5d5c56 AL |
435 | Musicpal |
436 | M: Jan Kiszka <[email protected]> | |
b4f2bd1c | 437 | L: [email protected] |
fd5d5c56 | 438 | S: Maintained |
8d8b636d | 439 | F: hw/arm/musicpal.c |
fd5d5c56 AL |
440 | |
441 | nSeries | |
442 | M: Andrzej Zaborowski <[email protected]> | |
b4f2bd1c | 443 | L: [email protected] |
fd5d5c56 | 444 | S: Maintained |
8d8b636d | 445 | F: hw/arm/nseries.c |
fd5d5c56 AL |
446 | |
447 | Palm | |
448 | M: Andrzej Zaborowski <[email protected]> | |
b4f2bd1c | 449 | L: [email protected] |
fd5d5c56 | 450 | S: Maintained |
8d8b636d | 451 | F: hw/arm/palm.c |
fd5d5c56 AL |
452 | |
453 | Real View | |
1ce9ce6a | 454 | M: Peter Maydell <[email protected]> |
b4f2bd1c | 455 | L: [email protected] |
fd5d5c56 | 456 | S: Maintained |
8d8b636d | 457 | F: hw/arm/realview* |
f7e242d6 | 458 | F: hw/cpu/realview_mpcore.c |
5ea53049 PB |
459 | F: hw/intc/realview_gic.c |
460 | F: include/hw/intc/realview_gic.h | |
fd5d5c56 | 461 | |
9b31bff0 | 462 | PXA2XX |
fd5d5c56 | 463 | M: Andrzej Zaborowski <[email protected]> |
b4f2bd1c | 464 | L: [email protected] |
fd5d5c56 | 465 | S: Maintained |
9b31bff0 | 466 | F: hw/arm/mainstone.c |
8d8b636d | 467 | F: hw/arm/spitz.c |
9b31bff0 PB |
468 | F: hw/arm/tosa.c |
469 | F: hw/arm/z2.c | |
470 | F: hw/*/pxa2xx* | |
f7e242d6 | 471 | F: hw/misc/mst_fpga.c |
ed0db866 | 472 | F: include/hw/arm/pxa.h |
fd5d5c56 AL |
473 | |
474 | Stellaris | |
1ce9ce6a | 475 | M: Peter Maydell <[email protected]> |
b4f2bd1c | 476 | L: [email protected] |
fd5d5c56 | 477 | S: Maintained |
8d8b636d | 478 | F: hw/*/stellaris* |
fd5d5c56 AL |
479 | |
480 | Versatile PB | |
1ce9ce6a | 481 | M: Peter Maydell <[email protected]> |
b4f2bd1c | 482 | L: [email protected] |
fd5d5c56 | 483 | S: Maintained |
8d8b636d | 484 | F: hw/*/versatile* |
fd5d5c56 | 485 | |
e3260506 | 486 | Xilinx Zynq |
cc0100f4 | 487 | M: Edgar E. Iglesias <[email protected]> |
4b46ba61 | 488 | M: Alistair Francis <[email protected]> |
b4f2bd1c | 489 | L: [email protected] |
e3260506 | 490 | S: Maintained |
cc0100f4 | 491 | F: hw/*/xilinx_* |
8d8b636d | 492 | F: hw/*/cadence_* |
f7e242d6 TH |
493 | F: hw/misc/zynq* |
494 | F: include/hw/misc/zynq* | |
cc0100f4 | 495 | X: hw/ssi/xilinx_* |
e3260506 | 496 | |
137805f5 AF |
497 | Xilinx ZynqMP |
498 | M: Alistair Francis <[email protected]> | |
cc0100f4 | 499 | M: Edgar E. Iglesias <[email protected]> |
b4f2bd1c | 500 | L: [email protected] |
137805f5 | 501 | S: Maintained |
cc0100f4 | 502 | F: hw/*/xlnx*.c |
f586d5fc | 503 | F: include/hw/*/xlnx*.h |
137805f5 | 504 | |
8f4d260e SZ |
505 | ARM ACPI Subsystem |
506 | M: Shannon Zhao <[email protected]> | |
507 | M: Shannon Zhao <[email protected]> | |
b4f2bd1c | 508 | L: [email protected] |
8f4d260e SZ |
509 | S: Maintained |
510 | F: hw/arm/virt-acpi-build.c | |
8f4d260e | 511 | |
a1f8193b AF |
512 | STM32F205 |
513 | M: Alistair Francis <[email protected]> | |
514 | S: Maintained | |
515 | F: hw/arm/stm32f205_soc.c | |
516 | F: hw/misc/stm32f2xx_syscfg.c | |
517 | F: hw/char/stm32f2xx_usart.c | |
518 | F: hw/timer/stm32f2xx_timer.c | |
519 | F: hw/adc/* | |
520 | F: hw/ssi/stm32f2xx_spi.c | |
521 | ||
522 | Netduino 2 | |
523 | M: Alistair Francis <[email protected]> | |
524 | S: Maintained | |
525 | F: hw/arm/netduino2.c | |
526 | ||
fd5d5c56 AL |
527 | CRIS Machines |
528 | ------------- | |
529 | Axis Dev88 | |
530 | M: Edgar E. Iglesias <[email protected]> | |
531 | S: Maintained | |
8d8b636d | 532 | F: hw/cris/axis_dev88.c |
6e481d57 | 533 | F: hw/*/etraxfs_*.c |
fd5d5c56 | 534 | |
07bf23a7 MW |
535 | LM32 Machines |
536 | ------------- | |
537 | EVR32 and uclinux BSP | |
538 | M: Michael Walle <[email protected]> | |
539 | S: Maintained | |
8d8b636d | 540 | F: hw/lm32/lm32_boards.c |
07bf23a7 | 541 | |
d118aa6b MW |
542 | milkymist |
543 | M: Michael Walle <[email protected]> | |
544 | S: Maintained | |
8d8b636d | 545 | F: hw/lm32/milkymist.c |
d118aa6b | 546 | |
afcacd53 | 547 | M68K Machines |
fd5d5c56 AL |
548 | ------------- |
549 | an5206 | |
0e19885e | 550 | S: Orphan |
8d8b636d | 551 | F: hw/m68k/an5206.c |
e9a56114 | 552 | F: hw/m68k/mcf5206.c |
fd5d5c56 AL |
553 | |
554 | dummy_m68k | |
0e19885e | 555 | S: Orphan |
8d8b636d | 556 | F: hw/m68k/dummy_m68k.c |
fd5d5c56 AL |
557 | |
558 | mcf5208 | |
0e19885e | 559 | S: Orphan |
8d8b636d | 560 | F: hw/m68k/mcf5208.c |
e9a56114 TH |
561 | F: hw/m68k/mcf_intc.c |
562 | F: hw/char/mcf_uart.c | |
563 | F: hw/net/mcf_fec.c | |
fd5d5c56 AL |
564 | |
565 | MicroBlaze Machines | |
566 | ------------------- | |
567 | petalogix_s3adsp1800 | |
568 | M: Edgar E. Iglesias <[email protected]> | |
569 | S: Maintained | |
6e481d57 | 570 | F: hw/microblaze/petalogix_s3adsp1800_mmu.c |
fd5d5c56 | 571 | |
d36e8ce7 | 572 | petalogix_ml605 |
4b46ba61 | 573 | M: Edgar E. Iglesias <[email protected]> |
d36e8ce7 | 574 | S: Maintained |
8d8b636d | 575 | F: hw/microblaze/petalogix_ml605_mmu.c |
d36e8ce7 | 576 | |
fd5d5c56 AL |
577 | MIPS Machines |
578 | ------------- | |
579 | Jazz | |
580 | M: Hervé Poussineau <[email protected]> | |
581 | S: Maintained | |
8d8b636d | 582 | F: hw/mips/mips_jazz.c |
fd5d5c56 AL |
583 | |
584 | Malta | |
585 | M: Aurelien Jarno <[email protected]> | |
586 | S: Maintained | |
8d8b636d | 587 | F: hw/mips/mips_malta.c |
fd5d5c56 AL |
588 | |
589 | Mipssim | |
5dd4a88c | 590 | L: [email protected] |
fd5d5c56 | 591 | S: Orphan |
8d8b636d | 592 | F: hw/mips/mips_mipssim.c |
fd5d5c56 AL |
593 | |
594 | R4000 | |
595 | M: Aurelien Jarno <[email protected]> | |
596 | S: Maintained | |
8d8b636d | 597 | F: hw/mips/mips_r4k.c |
fd5d5c56 | 598 | |
945dad6d JL |
599 | OpenRISC Machines |
600 | ----------------- | |
601 | or1k-sim | |
602 | M: Jia Liu <[email protected]> | |
603 | S: Maintained | |
604 | F: hw/openrisc/openrisc_sim.c | |
605 | ||
fd5d5c56 AL |
606 | PowerPC Machines |
607 | ---------------- | |
608 | 405 | |
609 | M: Alexander Graf <[email protected]> | |
a6c98685 | 610 | L: [email protected] |
9b9fe135 | 611 | S: Odd Fixes |
8d8b636d | 612 | F: hw/ppc/ppc405_boards.c |
fd5d5c56 | 613 | |
aaade8d7 AF |
614 | Bamboo |
615 | M: Alexander Graf <[email protected]> | |
616 | L: [email protected] | |
617 | S: Odd Fixes | |
8d8b636d | 618 | F: hw/ppc/ppc440_bamboo.c |
aaade8d7 | 619 | |
98cded3a AF |
620 | e500 |
621 | M: Alexander Graf <[email protected]> | |
622 | M: Scott Wood <[email protected]> | |
623 | L: [email protected] | |
624 | S: Supported | |
625 | F: hw/ppc/e500.[hc] | |
626 | F: hw/ppc/e500plat.c | |
b5d55020 TH |
627 | F: include/hw/ppc/ppc_e500.h |
628 | F: include/hw/pci-host/ppce500.h | |
629 | F: pc-bios/u-boot.e500 | |
98cded3a AF |
630 | |
631 | mpc8544ds | |
632 | M: Alexander Graf <[email protected]> | |
633 | M: Scott Wood <[email protected]> | |
634 | L: [email protected] | |
635 | S: Supported | |
636 | F: hw/ppc/mpc8544ds.c | |
8d8b636d | 637 | F: hw/ppc/mpc8544_guts.c |
98cded3a | 638 | |
fd5d5c56 AL |
639 | New World |
640 | M: Alexander Graf <[email protected]> | |
a6c98685 | 641 | L: [email protected] |
fd5d5c56 | 642 | S: Maintained |
baec1910 | 643 | F: hw/ppc/mac_newworld.c |
6e481d57 PM |
644 | F: hw/pci-host/uninorth.c |
645 | F: hw/pci-bridge/dec.[hc] | |
8d8b636d | 646 | F: hw/misc/macio/ |
b5d55020 TH |
647 | F: include/hw/ppc/mac_dbdma.h |
648 | F: hw/nvram/mac_nvram.c | |
fd5d5c56 AL |
649 | |
650 | Old World | |
651 | M: Alexander Graf <[email protected]> | |
a6c98685 | 652 | L: [email protected] |
fd5d5c56 | 653 | S: Maintained |
baec1910 | 654 | F: hw/ppc/mac_oldworld.c |
6e481d57 | 655 | F: hw/pci-host/grackle.c |
8d8b636d | 656 | F: hw/misc/macio/ |
835c42d3 | 657 | F: hw/intc/heathrow_pic.c |
fd5d5c56 | 658 | |
ec38d398 | 659 | PReP |
9f38774d | 660 | L: [email protected] |
a6c98685 | 661 | L: [email protected] |
ec38d398 | 662 | S: Odd Fixes |
75610155 | 663 | F: hw/ppc/prep.c |
6e481d57 | 664 | F: hw/pci-host/prep.[hc] |
8d8b636d | 665 | F: hw/isa/pc87312.[hc] |
835c42d3 | 666 | F: pc-bios/ppc_rom.bin |
fd5d5c56 | 667 | |
300b115c | 668 | sPAPR |
085eb217 | 669 | M: David Gibson <[email protected]> |
8a269ca4 AF |
670 | M: Alexander Graf <[email protected]> |
671 | L: [email protected] | |
672 | S: Supported | |
8d8b636d | 673 | F: hw/*/spapr* |
f9de2da7 DG |
674 | F: include/hw/*/spapr* |
675 | F: hw/*/xics* | |
676 | F: include/hw/*/xics* | |
677 | F: pc-bios/spapr-rtas/* | |
b5d55020 TH |
678 | F: pc-bios/spapr-rtas.bin |
679 | F: pc-bios/slof.bin | |
bcad45de | 680 | F: pc-bios/skiboot.lid |
b5d55020 TH |
681 | F: docs/specs/ppc-spapr-hcalls.txt |
682 | F: docs/specs/ppc-spapr-hotplug.txt | |
a70ab357 GK |
683 | F: tests/spapr* |
684 | F: tests/libqos/*spapr* | |
685 | F: tests/rtas* | |
686 | F: tests/libqos/rtas* | |
8a269ca4 | 687 | |
794d00bf AF |
688 | virtex_ml507 |
689 | M: Edgar E. Iglesias <[email protected]> | |
690 | L: [email protected] | |
691 | S: Odd Fixes | |
6e481d57 | 692 | F: hw/ppc/virtex_ml507.c |
794d00bf | 693 | |
fd5d5c56 AL |
694 | SH4 Machines |
695 | ------------ | |
696 | R2D | |
697 | M: Magnus Damm <[email protected]> | |
698 | S: Maintained | |
6e481d57 | 699 | F: hw/sh4/r2d.c |
81527b94 TH |
700 | F: hw/intc/sh_intc.c |
701 | F: hw/timer/sh_timer.c | |
fd5d5c56 AL |
702 | |
703 | Shix | |
704 | M: Magnus Damm <[email protected]> | |
81527b94 | 705 | S: Odd Fixes |
6e481d57 | 706 | F: hw/sh4/shix.c |
fd5d5c56 AL |
707 | |
708 | SPARC Machines | |
709 | -------------- | |
710 | Sun4m | |
f2416d3a | 711 | M: Mark Cave-Ayland <[email protected]> |
fd5d5c56 | 712 | S: Maintained |
8d8b636d | 713 | F: hw/sparc/sun4m.c |
c10a1c78 TH |
714 | F: hw/dma/sparc32_dma.c |
715 | F: hw/dma/sun4m_iommu.c | |
7098b79e TH |
716 | F: hw/misc/eccmemctl.c |
717 | F: hw/misc/slavio_misc.c | |
c10a1c78 TH |
718 | F: include/hw/sparc/sparc32_dma.h |
719 | F: include/hw/sparc/sun4m.h | |
720 | F: pc-bios/openbios-sparc32 | |
fd5d5c56 AL |
721 | |
722 | Sun4u | |
f2416d3a | 723 | M: Mark Cave-Ayland <[email protected]> |
fd5d5c56 | 724 | S: Maintained |
8d8b636d | 725 | F: hw/sparc64/sun4u.c |
c10a1c78 | 726 | F: pc-bios/openbios-sparc64 |
fd5d5c56 | 727 | |
ce6c760c FC |
728 | Leon3 |
729 | M: Fabien Chouteau <[email protected]> | |
730 | S: Maintained | |
8d8b636d PB |
731 | F: hw/sparc/leon3.c |
732 | F: hw/*/grlib* | |
c10a1c78 | 733 | F: include/hw/sparc/grlib.h |
ce6c760c | 734 | |
fd5d5c56 AL |
735 | S390 Machines |
736 | ------------- | |
dd4ad64a CH |
737 | S390 Virtio-ccw |
738 | M: Cornelia Huck <[email protected]> | |
b304bf00 | 739 | M: Christian Borntraeger <[email protected]> |
dd4ad64a CH |
740 | M: Alexander Graf <[email protected]> |
741 | S: Supported | |
0c6aa7ee | 742 | F: hw/char/sclp*.[hc] |
c5bfb202 | 743 | F: hw/s390x/ |
4277af19 CH |
744 | F: include/hw/s390x/ |
745 | F: pc-bios/s390-ccw/ | |
c5bfb202 | 746 | F: hw/watchdog/wdt_diag288.c |
1e4738b2 SS |
747 | F: include/hw/watchdog/wdt_diag288.h |
748 | F: pc-bios/s390-ccw.img | |
749 | F: default-configs/s390x-softmmu.mak | |
3e9ed24b CH |
750 | T: git git://github.com/cohuck/qemu.git s390-next |
751 | T: git git://github.com/borntraeger/qemu.git s390-next | |
dd4ad64a | 752 | |
ab9528ca GX |
753 | UniCore32 Machines |
754 | ------------- | |
755 | PKUnity-3 SoC initramfs-with-busybox | |
756 | M: Guan Xuetao <[email protected]> | |
757 | S: Maintained | |
8d8b636d | 758 | F: hw/*/puv3* |
ab9528ca GX |
759 | F: hw/unicore32/ |
760 | ||
fd5d5c56 AL |
761 | X86 Machines |
762 | ------------ | |
763 | PC | |
046a6486 | 764 | M: Michael S. Tsirkin <[email protected]> |
fd5d5c56 | 765 | S: Supported |
046a6486 MT |
766 | F: include/hw/i386/ |
767 | F: hw/i386/ | |
768 | F: hw/pci-host/piix.c | |
769 | F: hw/pci-host/q35.c | |
770 | F: hw/pci-host/pam.c | |
771 | F: include/hw/pci-host/q35.h | |
772 | F: include/hw/pci-host/pam.h | |
773 | F: hw/isa/piix4.c | |
774 | F: hw/isa/lpc_ich9.c | |
775 | F: hw/i2c/smbus_ich9.c | |
776 | F: hw/acpi/piix4.c | |
777 | F: hw/acpi/ich9.c | |
778 | F: include/hw/acpi/ich9.h | |
f586d5fc | 779 | F: include/hw/acpi/piix4.h |
9cc3b73c PB |
780 | F: hw/misc/sga.c |
781 | ||
782 | PC Chipset | |
783 | M: Michael S. Tsirkin <[email protected]> | |
784 | M: Paolo Bonzini <[email protected]> | |
785 | S: Support | |
786 | F: hw/char/debugcon.c | |
787 | F: hw/char/parallel.c | |
788 | F: hw/char/serial* | |
789 | F: hw/dma/i8257* | |
790 | F: hw/i2c/pm_smbus.c | |
791 | F: hw/intc/apic* | |
792 | F: hw/intc/ioapic* | |
793 | F: hw/intc/i8259* | |
794 | F: hw/misc/debugexit.c | |
795 | F: hw/misc/pc-testdev.c | |
796 | F: hw/timer/hpet* | |
797 | F: hw/timer/i8254* | |
798 | F: hw/timer/mc146818rtc* | |
a2feb348 TH |
799 | F: include/hw/i2c/pm_smbus.h |
800 | F: include/hw/timer/hpet.h | |
801 | F: include/hw/timer/i8254* | |
802 | F: include/hw/timer/mc146818rtc* | |
046a6486 | 803 | |
5da4fb00 MT |
804 | Machine core |
805 | M: Eduardo Habkost <[email protected]> | |
806 | M: Marcel Apfelbaum <[email protected]> | |
807 | S: Supported | |
808 | F: hw/core/machine.c | |
809 | F: include/hw/boards.h | |
fd5d5c56 | 810 | |
16e7caae MF |
811 | Xtensa Machines |
812 | --------------- | |
375847a6 | 813 | sim |
16e7caae MF |
814 | M: Max Filippov <[email protected]> |
815 | S: Maintained | |
437a8c11 | 816 | F: hw/xtensa/sim.c |
375847a6 | 817 | |
437a8c11 | 818 | XTFPGA (LX60, LX200, ML605, KC705) |
375847a6 MF |
819 | M: Max Filippov <[email protected]> |
820 | S: Maintained | |
437a8c11 MF |
821 | F: hw/xtensa/xtfpga.c |
822 | F: hw/net/opencores_eth.c | |
16e7caae | 823 | |
fd5d5c56 AL |
824 | Devices |
825 | ------- | |
b30934cb JS |
826 | EDU |
827 | M: Jiri Slaby <[email protected]> | |
828 | S: Maintained | |
829 | F: hw/misc/edu.c | |
830 | ||
fd5d5c56 | 831 | IDE |
c095348b JS |
832 | M: John Snow <[email protected]> |
833 | L: [email protected] | |
834 | S: Supported | |
8d8b636d | 835 | F: include/hw/ide.h |
c9f7acd5 | 836 | F: include/hw/ide/ |
fd5d5c56 | 837 | F: hw/ide/ |
c095348b JS |
838 | F: hw/block/block.c |
839 | F: hw/block/cdrom.c | |
840 | F: hw/block/hd-geometry.c | |
841 | F: tests/ide-test.c | |
842 | F: tests/ahci-test.c | |
aee50319 | 843 | F: tests/libqos/ahci* |
c095348b JS |
844 | T: git git://github.com/jnsnow/qemu.git ide |
845 | ||
846 | Floppy | |
847 | M: John Snow <[email protected]> | |
848 | L: [email protected] | |
849 | S: Supported | |
850 | F: hw/block/fdc.c | |
851 | F: include/hw/block/fdc.h | |
aee50319 | 852 | F: tests/fdc-test.c |
c095348b | 853 | T: git git://github.com/jnsnow/qemu.git ide |
fd5d5c56 | 854 | |
f5f487b2 PM |
855 | OMAP |
856 | M: Peter Maydell <[email protected]> | |
857 | S: Maintained | |
8d8b636d | 858 | F: hw/*/omap* |
ed0db866 | 859 | F: include/hw/arm/omap.h |
f5f487b2 | 860 | |
28d54e58 PB |
861 | IPack |
862 | M: Alberto Garcia <[email protected]> | |
863 | S: Odd Fixes | |
864 | F: hw/char/ipoctal232.c | |
865 | F: hw/ipack/ | |
866 | ||
fd5d5c56 AL |
867 | PCI |
868 | M: Michael S. Tsirkin <[email protected]> | |
874a2358 | 869 | M: Marcel Apfelbaum <[email protected]> |
fd5d5c56 | 870 | S: Supported |
8d8b636d | 871 | F: include/hw/pci/* |
f178bc6b | 872 | F: hw/misc/pci-testdev.c |
ca818cfb | 873 | F: hw/pci/* |
f178bc6b | 874 | F: hw/pci-bridge/* |
0e0b3592 | 875 | |
d31e5ae7 | 876 | ACPI/SMBIOS |
0e0b3592 MT |
877 | M: Michael S. Tsirkin <[email protected]> |
878 | M: Igor Mammedov <[email protected]> | |
879 | S: Supported | |
880 | F: include/hw/acpi/* | |
d31e5ae7 | 881 | F: include/hw/smbios/* |
0e0b3592 | 882 | F: hw/mem/* |
8d8b636d | 883 | F: hw/acpi/* |
d31e5ae7 | 884 | F: hw/smbios/* |
0e0b3592 | 885 | F: hw/i386/acpi-build.[hc] |
0e0b3592 | 886 | F: hw/arm/virt-acpi-build.c |
fd5d5c56 | 887 | |
aaade8d7 AF |
888 | ppc4xx |
889 | M: Alexander Graf <[email protected]> | |
890 | L: [email protected] | |
891 | S: Odd Fixes | |
8d8b636d | 892 | F: hw/ppc/ppc4*.c |
b5d55020 | 893 | F: include/hw/ppc/ppc4xx.h |
aaade8d7 | 894 | |
98cded3a AF |
895 | ppce500 |
896 | M: Alexander Graf <[email protected]> | |
897 | M: Scott Wood <[email protected]> | |
898 | L: [email protected] | |
899 | S: Supported | |
6e481d57 | 900 | F: hw/ppc/e500* |
566dd236 PB |
901 | F: hw/pci-host/ppce500.c |
902 | F: hw/net/fsl_etsec/ | |
98cded3a | 903 | |
61af0ee6 PB |
904 | Character devices |
905 | M: Paolo Bonzini <[email protected]> | |
906 | S: Odd Fixes | |
907 | F: hw/char/ | |
908 | ||
f536f112 PB |
909 | Network devices |
910 | M: Jason Wang <[email protected]> | |
911 | S: Odd Fixes | |
912 | F: hw/net/ | |
6bd7776c | 913 | F: tests/virtio-net-test.c |
f536f112 PB |
914 | T: git git://github.com/jasowang/qemu.git net |
915 | ||
fd5d5c56 | 916 | SCSI |
de7724f7 PB |
917 | M: Paolo Bonzini <[email protected]> |
918 | S: Supported | |
74460f34 | 919 | F: include/hw/scsi/* |
8d8b636d | 920 | F: hw/scsi/* |
6bd7776c | 921 | F: tests/virtio-scsi-test.c |
1ab09a40 | 922 | T: git git://github.com/bonzini/qemu.git scsi-next |
de7724f7 PB |
923 | |
924 | LSI53C895A | |
0e19885e | 925 | S: Orphan |
8d8b636d | 926 | F: hw/scsi/lsi53c895a.c |
fd5d5c56 | 927 | |
fcb5629d | 928 | SSI |
4b46ba61 | 929 | M: Peter Crosthwaite <[email protected]> |
fcb5629d | 930 | S: Maintained |
8d8b636d PB |
931 | F: hw/ssi/* |
932 | F: hw/block/m25p80.c | |
4b46ba61 AF |
933 | X: hw/ssi/xilinx_* |
934 | ||
935 | Xilinx SPI | |
936 | M: Alistair Francis <[email protected]> | |
937 | M: Peter Crosthwaite <[email protected]> | |
938 | S: Maintained | |
939 | F: hw/ssi/xilinx_* | |
fcb5629d | 940 | |
fd5d5c56 | 941 | USB |
5d0d62fe GH |
942 | M: Gerd Hoffmann <[email protected]> |
943 | S: Maintained | |
8d8b636d | 944 | F: hw/usb/* |
28edfce0 | 945 | F: tests/usb-*-test.c |
beded0ff TH |
946 | F: docs/usb2.txt |
947 | F: docs/usb-storage.txt | |
948 | F: include/hw/usb.h | |
949 | F: include/hw/usb/ | |
fd5d5c56 | 950 | |
e26082fd PB |
951 | USB (serial adapter) |
952 | M: Gerd Hoffmann <[email protected]> | |
953 | M: Samuel Thibault <[email protected]> | |
954 | S: Maintained | |
955 | F: hw/usb/dev-serial.c | |
956 | ||
92e1fb5e AW |
957 | VFIO |
958 | M: Alex Williamson <[email protected]> | |
959 | S: Supported | |
cf7087db | 960 | F: hw/vfio/* |
99b88c6d | 961 | F: include/hw/vfio/ |
92e1fb5e | 962 | |
fd5d5c56 AL |
963 | vhost |
964 | M: Michael S. Tsirkin <[email protected]> | |
965 | S: Supported | |
8d8b636d | 966 | F: hw/*/*vhost* |
fd5d5c56 AL |
967 | |
968 | virtio | |
a75143ed | 969 | M: Michael S. Tsirkin <[email protected]> |
fd5d5c56 | 970 | S: Supported |
8d8b636d | 971 | F: hw/*/virtio* |
72fa605d TH |
972 | F: hw/virtio/Makefile.objs |
973 | F: hw/virtio/trace-events | |
6a084ea3 | 974 | F: net/vhost-user.c |
494f7b57 | 975 | F: include/hw/virtio/ |
6bd7776c | 976 | F: tests/virtio-balloon-test.c |
fd5d5c56 AL |
977 | |
978 | virtio-9p | |
23704102 | 979 | M: Aneesh Kumar K.V <[email protected]> |
8c1cd719 | 980 | M: Greg Kurz <[email protected]> |
fd5d5c56 | 981 | S: Supported |
aebeca25 AF |
982 | F: hw/9pfs/ |
983 | F: fsdev/ | |
2d888c09 | 984 | F: tests/virtio-9p-test.c |
3f3309cb | 985 | T: git git://github.com/kvaneesh/QEMU.git |
8c1cd719 | 986 | T: git git://github.com/gkurz/qemu.git 9p-next |
fd5d5c56 AL |
987 | |
988 | virtio-blk | |
54d01a00 | 989 | M: Stefan Hajnoczi <[email protected]> |
b457a5f5 | 990 | L: [email protected] |
fd5d5c56 | 991 | S: Supported |
8d8b636d | 992 | F: hw/block/virtio-blk.c |
b457a5f5 | 993 | F: hw/block/dataplane/* |
6bd7776c | 994 | F: tests/virtio-blk-test.c |
b457a5f5 | 995 | T: git git://github.com/stefanha/qemu.git block |
fd5d5c56 | 996 | |
dd4ad64a CH |
997 | virtio-ccw |
998 | M: Cornelia Huck <[email protected]> | |
b304bf00 | 999 | M: Christian Borntraeger <[email protected]> |
dd4ad64a CH |
1000 | S: Supported |
1001 | F: hw/s390x/virtio-ccw.[hc] | |
3e9ed24b CH |
1002 | T: git git://github.com/cohuck/qemu.git s390-next |
1003 | T: git git://github.com/borntraeger/qemu.git s390-next | |
dd4ad64a | 1004 | |
a5d4d7b5 GH |
1005 | virtio-input |
1006 | M: Gerd Hoffmann <[email protected]> | |
1007 | S: Maintained | |
1008 | F: hw/input/virtio-input*.c | |
1009 | F: include/hw/virtio/virtio-input.h | |
1010 | ||
fd5d5c56 AL |
1011 | virtio-serial |
1012 | M: Amit Shah <[email protected]> | |
1013 | S: Supported | |
8d8b636d PB |
1014 | F: hw/char/virtio-serial-bus.c |
1015 | F: hw/char/virtio-console.c | |
68a5e38a | 1016 | F: include/hw/virtio/virtio-serial.h |
6bd7776c GK |
1017 | F: tests/virtio-console-test.c |
1018 | F: tests/virtio-serial-test.c | |
fd5d5c56 | 1019 | |
1f51a5cb AS |
1020 | virtio-rng |
1021 | M: Amit Shah <[email protected]> | |
1022 | S: Supported | |
1023 | F: hw/virtio/virtio-rng.c | |
1024 | F: include/hw/virtio/virtio-rng.h | |
750cf869 | 1025 | F: include/sysemu/rng*.h |
1f51a5cb | 1026 | F: backends/rng*.c |
6bd7776c | 1027 | F: tests/virtio-rng-test.c |
1f51a5cb | 1028 | |
6034011c GA |
1029 | virtio-crypto |
1030 | M: Gonglei <[email protected]> | |
1031 | S: Supported | |
1032 | F: hw/virtio/virtio-crypto.c | |
1033 | F: hw/virtio/virtio-crypto-pci.c | |
1034 | F: include/hw/virtio/virtio-crypto.h | |
1035 | ||
f3c507ad KB |
1036 | nvme |
1037 | M: Keith Busch <[email protected]> | |
c95e4c0e | 1038 | L: [email protected] |
f3c507ad KB |
1039 | S: Supported |
1040 | F: hw/block/nvme* | |
fc967791 | 1041 | F: tests/nvme-test.c |
f3c507ad | 1042 | |
d383c625 HR |
1043 | megasas |
1044 | M: Hannes Reinecke <[email protected]> | |
c95e4c0e | 1045 | L: [email protected] |
d383c625 HR |
1046 | S: Supported |
1047 | F: hw/scsi/megasas.c | |
1048 | F: hw/scsi/mfi.h | |
1049 | ||
605d52e6 DF |
1050 | Network packet abstractions |
1051 | M: Dmitry Fleytman <[email protected]> | |
1052 | S: Maintained | |
1053 | F: include/net/eth.h | |
1054 | F: net/eth.c | |
1055 | F: hw/net/net_rx_pkt* | |
1056 | F: hw/net/net_tx_pkt* | |
1057 | ||
622fb504 DF |
1058 | Vmware |
1059 | M: Dmitry Fleytman <[email protected]> | |
1060 | S: Maintained | |
1061 | F: hw/net/vmxnet* | |
1062 | F: hw/scsi/vmw_pvscsi* | |
1063 | ||
de24d3f1 | 1064 | Rocker |
de24d3f1 SF |
1065 | M: Jiri Pirko <[email protected]> |
1066 | S: Maintained | |
1067 | F: hw/net/rocker/ | |
de850948 TH |
1068 | F: tests/rocker/ |
1069 | F: docs/specs/rocker.txt | |
de24d3f1 | 1070 | |
70d1fb9c XG |
1071 | NVDIMM |
1072 | M: Xiao Guangrong <[email protected]> | |
1073 | S: Maintained | |
1074 | F: hw/acpi/nvdimm.c | |
1075 | F: hw/mem/nvdimm.c | |
1076 | F: include/hw/mem/nvdimm.h | |
1077 | ||
093454e2 DF |
1078 | e1000x |
1079 | M: Dmitry Fleytman <[email protected]> | |
1080 | S: Maintained | |
1081 | F: hw/net/e1000x* | |
1082 | ||
6f3fbe4e DF |
1083 | e1000e |
1084 | M: Dmitry Fleytman <[email protected]> | |
1085 | S: Maintained | |
1086 | F: hw/net/e1000e* | |
1087 | ||
e481a1f6 AF |
1088 | Generic Loader |
1089 | M: Alistair Francis <[email protected]> | |
1090 | S: Maintained | |
1091 | F: hw/core/generic-loader.c | |
1092 | F: include/hw/core/generic-loader.h | |
1093 | ||
87a9023a TH |
1094 | CHRP NVRAM |
1095 | M: Thomas Huth <[email protected]> | |
1096 | S: Maintained | |
1097 | F: hw/nvram/chrp_nvram.c | |
1098 | F: include/hw/nvram/chrp_nvram.h | |
1099 | F: tests/prom-env-test.c | |
1100 | ||
fd5d5c56 AL |
1101 | Subsystems |
1102 | ---------- | |
1103 | Audio | |
9f575846 | 1104 | M: Gerd Hoffmann <[email protected]> |
fd5d5c56 AL |
1105 | S: Maintained |
1106 | F: audio/ | |
8d8b636d | 1107 | F: hw/audio/ |
a2b245ae | 1108 | F: include/hw/audio/ |
d7b50c0c | 1109 | F: tests/ac97-test.c |
8fa74c94 | 1110 | F: tests/es1370-test.c |
fbaf445a | 1111 | F: tests/intel-hda-test.c |
fd5d5c56 | 1112 | |
17f1e8f5 | 1113 | Block layer core |
fd5d5c56 | 1114 | M: Kevin Wolf <[email protected]> |
c4189d85 | 1115 | M: Max Reitz <[email protected]> |
c95e4c0e | 1116 | L: [email protected] |
fd5d5c56 AL |
1117 | S: Supported |
1118 | F: block* | |
1119 | F: block/ | |
8d8b636d | 1120 | F: hw/block/ |
4c346e0b | 1121 | F: include/block/ |
46078760 KW |
1122 | F: qemu-img* |
1123 | F: qemu-io* | |
29242091 | 1124 | F: tests/qemu-iotests/ |
d48addda | 1125 | T: git git://repo.or.cz/qemu/kevin.git block |
fd5d5c56 | 1126 | |
d55053b1 SH |
1127 | Block I/O path |
1128 | M: Stefan Hajnoczi <[email protected]> | |
9ca3003d | 1129 | M: Fam Zheng <[email protected]> |
d55053b1 SH |
1130 | L: [email protected] |
1131 | S: Supported | |
1132 | F: async.c | |
1133 | F: aio-*.c | |
1134 | F: block/io.c | |
1135 | F: migration/block* | |
e1029ae2 | 1136 | F: include/block/aio.h |
d55053b1 SH |
1137 | T: git git://github.com/stefanha/qemu.git block |
1138 | ||
280458a3 JC |
1139 | Block Jobs |
1140 | M: Jeff Cody <[email protected]> | |
1141 | L: [email protected] | |
1142 | S: Supported | |
1143 | F: blockjob.c | |
1144 | F: include/block/blockjob.h | |
1145 | F: block/backup.c | |
1146 | F: block/commit.c | |
77346025 | 1147 | F: block/stream.c |
280458a3 JC |
1148 | F: block/mirror.c |
1149 | T: git git://github.com/codyprime/qemu-kvm-jtc.git block | |
1150 | ||
4120201d MA |
1151 | Block QAPI, monitor, command line |
1152 | M: Markus Armbruster <[email protected]> | |
1153 | S: Supported | |
1154 | F: blockdev.c | |
1155 | F: block/qapi.c | |
1156 | F: qapi/block*.json | |
1157 | T: git git://repo.or.cz/qemu/armbru.git block-next | |
1158 | ||
538193bc JS |
1159 | Dirty Bitmaps |
1160 | M: Fam Zheng <[email protected]> | |
1161 | M: John Snow <[email protected]> | |
1162 | L: [email protected] | |
1163 | S: Supported | |
1164 | F: util/hbitmap.c | |
1165 | F: block/dirty-bitmap.c | |
1166 | F: include/qemu/hbitmap.h | |
1167 | F: include/block/dirty-bitmap.h | |
1168 | F: tests/test-hbitmap.c | |
1169 | F: docs/bitmaps.md | |
1170 | T: git git://github.com/famz/qemu.git bitmaps | |
1171 | T: git git://github.com/jnsnow/qemu.git bitmaps | |
1172 | ||
61af0ee6 | 1173 | Character device backends |
da26f37a | 1174 | M: Paolo Bonzini <[email protected]> |
fd5d5c56 AL |
1175 | S: Maintained |
1176 | F: qemu-char.c | |
da26f37a PB |
1177 | F: backends/msmouse.c |
1178 | F: backends/testdev.c | |
fd5d5c56 | 1179 | |
e26082fd PB |
1180 | Character Devices (Braille) |
1181 | M: Samuel Thibault <[email protected]> | |
1182 | S: Maintained | |
1183 | F: backends/baum.c | |
fd5d5c56 | 1184 | |
8c413e79 MA |
1185 | Coverity model |
1186 | M: Markus Armbruster <[email protected]> | |
1187 | S: Supported | |
1188 | F: scripts/coverity-model.c | |
1189 | ||
f2ca0524 | 1190 | CPU |
12b0e69c | 1191 | L: [email protected] |
f2ca0524 AF |
1192 | S: Supported |
1193 | F: qom/cpu.c | |
6e481d57 | 1194 | F: include/qom/cpu.h |
f2ca0524 | 1195 | |
d24b569a | 1196 | Device Tree |
4b46ba61 | 1197 | M: Peter Crosthwaite <[email protected]> |
d24b569a PC |
1198 | M: Alexander Graf <[email protected]> |
1199 | S: Maintained | |
82407515 TH |
1200 | F: device_tree.c |
1201 | F: include/sysemu/device_tree.h | |
d24b569a | 1202 | |
4f966768 MA |
1203 | Error reporting |
1204 | M: Markus Armbruster <[email protected]> | |
1205 | S: Supported | |
1206 | F: include/qapi/error.h | |
1207 | F: include/qemu/error-report.h | |
1208 | F: util/error.c | |
1209 | F: util/qemu-error.c | |
1210 | ||
fd5d5c56 | 1211 | GDB stub |
5dd4a88c | 1212 | L: [email protected] |
fd5d5c56 AL |
1213 | S: Odd Fixes |
1214 | F: gdbstub* | |
1215 | F: gdb-xml/ | |
1216 | ||
01a9c03c PB |
1217 | Memory API |
1218 | M: Paolo Bonzini <[email protected]> | |
1219 | S: Supported | |
1220 | F: include/exec/ioport.h | |
1221 | F: ioport.c | |
1222 | F: include/exec/memory.h | |
2b1641d0 | 1223 | F: include/exec/ram_addr.h |
01a9c03c PB |
1224 | F: memory.c |
1225 | F: include/exec/memory-internal.h | |
1226 | F: exec.c | |
1227 | ||
7ee3bf03 GH |
1228 | SPICE |
1229 | M: Gerd Hoffmann <[email protected]> | |
1230 | S: Supported | |
6e481d57 | 1231 | F: include/ui/qemu-spice.h |
438528a3 | 1232 | F: include/ui/spice-display.h |
7ee3bf03 GH |
1233 | F: ui/spice-*.c |
1234 | F: audio/spiceaudio.c | |
8d8b636d | 1235 | F: hw/display/qxl* |
7ee3bf03 | 1236 | |
fd5d5c56 | 1237 | Graphics |
25eccc37 GH |
1238 | M: Gerd Hoffmann <[email protected]> |
1239 | S: Odd Fixes | |
fd5d5c56 | 1240 | F: ui/ |
e220656c | 1241 | F: include/ui/ |
fd5d5c56 | 1242 | |
351f1bf6 | 1243 | Cocoa graphics |
30ef3c74 | 1244 | M: Peter Maydell <[email protected]> |
351f1bf6 AF |
1245 | S: Odd Fixes |
1246 | F: ui/cocoa.m | |
1247 | ||
fd5d5c56 | 1248 | Main loop |
da26f37a PB |
1249 | M: Paolo Bonzini <[email protected]> |
1250 | S: Maintained | |
1251 | F: cpus.c | |
1252 | F: main-loop.c | |
1253 | F: qemu-timer.c | |
fd5d5c56 AL |
1254 | F: vl.c |
1255 | ||
8899b4ae | 1256 | Human Monitor (HMP) |
c833fb4a | 1257 | M: Dr. David Alan Gilbert <[email protected]> |
fbb0621a | 1258 | S: Maintained |
fd5d5c56 | 1259 | F: monitor.c |
c13e9912 TH |
1260 | F: hmp.[ch] |
1261 | F: hmp-commands*.hx | |
1262 | F: include/monitor/hmp-target.h | |
fd5d5c56 | 1263 | |
f536f112 | 1264 | Network device backends |
442469e6 | 1265 | M: Jason Wang <[email protected]> |
fd5d5c56 AL |
1266 | S: Maintained |
1267 | F: net/ | |
d24b2b1c | 1268 | F: include/net/ |
5fc51cc3 | 1269 | T: git git://github.com/jasowang/qemu.git net |
fd5d5c56 | 1270 | |
aee09baf VM |
1271 | Netmap network backend |
1272 | M: Luigi Rizzo <[email protected]> | |
1273 | M: Giuseppe Lettieri <[email protected]> | |
1274 | M: Vincenzo Maffione <[email protected]> | |
1275 | W: http://info.iet.unipi.it/~luigi/netmap/ | |
1276 | S: Maintained | |
1277 | F: net/netmap.c | |
1278 | ||
44f76b28 PB |
1279 | Network Block Device (NBD) |
1280 | M: Paolo Bonzini <[email protected]> | |
1281 | S: Odd Fixes | |
798bfe00 FZ |
1282 | F: block/nbd* |
1283 | F: nbd/ | |
1284 | F: include/block/nbd* | |
44f76b28 | 1285 | F: qemu-nbd.c |
1ab09a40 | 1286 | T: git git://github.com/bonzini/qemu.git nbd-next |
44f76b28 | 1287 | |
2f54eb98 EH |
1288 | NUMA |
1289 | M: Eduardo Habkost <[email protected]> | |
1290 | S: Maintained | |
1291 | F: numa.c | |
1292 | F: include/sysemu/numa.h | |
2f54eb98 EH |
1293 | T: git git://github.com/ehabkost/qemu.git numa |
1294 | ||
4fc264f4 EH |
1295 | Host Memory Backends |
1296 | M: Eduardo Habkost <[email protected]> | |
1297 | M: Igor Mammedov <[email protected]> | |
1298 | S: Maintained | |
1299 | F: backends/hostmem*.c | |
1300 | F: include/sysemu/hostmem.h | |
1301 | ||
6034011c GA |
1302 | Cryptodev Backends |
1303 | M: Gonglei <[email protected]> | |
1304 | S: Maintained | |
1305 | F: include/sysemu/cryptodev*.h | |
1306 | F: backends/cryptodev*.c | |
1307 | ||
8899b4ae | 1308 | QAPI |
9740618c | 1309 | M: Markus Armbruster <[email protected]> |
8899b4ae | 1310 | M: Michael Roth <[email protected]> |
9740618c | 1311 | S: Supported |
8899b4ae | 1312 | F: qapi/ |
0311c5bd | 1313 | X: qapi/*.json |
ac4abb9a MA |
1314 | F: include/qapi/ |
1315 | X: include/qapi/qmp/ | |
1316 | F: include/qapi/qmp/dispatch.h | |
c0bd0b50 | 1317 | F: tests/qapi-schema/ |
ac4abb9a MA |
1318 | F: tests/test-*-visitor.c |
1319 | F: tests/test-qmp-*.c | |
0311c5bd MA |
1320 | F: scripts/qapi* |
1321 | F: docs/qapi* | |
9740618c | 1322 | T: git git://repo.or.cz/qemu/armbru.git qapi-next |
8899b4ae | 1323 | |
7810d291 LC |
1324 | QAPI Schema |
1325 | M: Eric Blake <[email protected]> | |
7810d291 LC |
1326 | M: Markus Armbruster <[email protected]> |
1327 | S: Supported | |
1328 | F: qapi-schema.json | |
0311c5bd | 1329 | F: qapi/*.json |
9740618c | 1330 | T: git git://repo.or.cz/qemu/armbru.git qapi-next |
7810d291 | 1331 | |
f3582ba4 | 1332 | QObject |
daf5dc78 MA |
1333 | M: Markus Armbruster <[email protected]> |
1334 | S: Supported | |
f3582ba4 | 1335 | F: qobject/ |
7735d2b5 MA |
1336 | F: include/qapi/qmp/ |
1337 | X: include/qapi/qmp/dispatch.h | |
1338 | F: tests/check-qdict.c | |
1339 | F: tests/check-qfloat.c | |
1340 | F: tests/check-qint.c | |
1341 | F: tests/check-qjson.c | |
1342 | F: tests/check-qlist.c | |
1343 | F: tests/check-qstring.c | |
daf5dc78 | 1344 | T: git git://repo.or.cz/qemu/armbru.git qapi-next |
f3582ba4 | 1345 | |
f05d9999 MR |
1346 | QEMU Guest Agent |
1347 | M: Michael Roth <[email protected]> | |
1348 | S: Maintained | |
1349 | F: qga/ | |
1350 | T: git git://github.com/mdroth/qemu.git qga | |
1351 | ||
4688c94c | 1352 | QOM |
4688c94c AF |
1353 | M: Andreas Färber <[email protected]> |
1354 | S: Supported | |
1355 | T: git git://github.com/afaerber/qemu-cpu.git qom-next | |
1356 | F: include/qom/ | |
1357 | X: include/qom/cpu.h | |
1358 | F: qom/ | |
1359 | X: qom/cpu.c | |
9f4aa7ce AF |
1360 | F: tests/check-qom-interface.c |
1361 | F: tests/check-qom-proplist.c | |
4688c94c AF |
1362 | F: tests/qom-test.c |
1363 | ||
8899b4ae | 1364 | QMP |
9740618c LC |
1365 | M: Markus Armbruster <[email protected]> |
1366 | S: Supported | |
8899b4ae LC |
1367 | F: qmp.c |
1368 | F: monitor.c | |
9b89b6a2 | 1369 | F: docs/*qmp-* |
9740618c LC |
1370 | F: scripts/qmp/ |
1371 | T: git git://repo.or.cz/qemu/armbru.git qapi-next | |
8899b4ae | 1372 | |
cc0100f4 AF |
1373 | Register API |
1374 | M: Alistair Francis <[email protected]> | |
1375 | S: Maintained | |
1376 | F: hw/core/register.c | |
1377 | F: include/hw/register.h | |
1378 | ||
fd5d5c56 | 1379 | SLIRP |
eda509fa | 1380 | M: Samuel Thibault <[email protected]> |
bafc72ab JK |
1381 | M: Jan Kiszka <[email protected]> |
1382 | S: Maintained | |
fd5d5c56 | 1383 | F: slirp/ |
663fb1e1 | 1384 | F: net/slirp.c |
d24b2b1c | 1385 | F: include/net/slirp.h |
1ab09a40 | 1386 | T: git git://git.kiszka.org/qemu.git queues/slirp |
fd5d5c56 | 1387 | |
b1ed728a PB |
1388 | Stubs |
1389 | M: Paolo Bonzini <[email protected]> | |
1390 | S: Maintained | |
1391 | F: stubs/ | |
1392 | ||
598a3f35 | 1393 | Tracing |
1cd0f8ce | 1394 | M: Stefan Hajnoczi <[email protected]> |
598a3f35 SH |
1395 | S: Maintained |
1396 | F: trace/ | |
f70fd8fd LV |
1397 | F: scripts/tracetool.py |
1398 | F: scripts/tracetool/ | |
f922ea46 | 1399 | F: docs/tracing.txt |
1ab09a40 | 1400 | T: git git://github.com/stefanha/qemu.git tracing |
598a3f35 | 1401 | |
14f40fdc | 1402 | Checkpatch |
14f40fdc BS |
1403 | S: Odd Fixes |
1404 | F: scripts/checkpatch.pl | |
1405 | ||
c0787c8d JQ |
1406 | Migration |
1407 | M: Juan Quintela <[email protected]> | |
7f4675c3 | 1408 | M: Amit Shah <[email protected]> |
c0787c8d JQ |
1409 | S: Maintained |
1410 | F: include/migration/ | |
44a1f946 | 1411 | F: migration/ |
c5515640 AS |
1412 | F: scripts/vmstate-static-checker.py |
1413 | F: tests/vmstate-static-checker-data/ | |
a609ad8b | 1414 | F: docs/migration.txt |
c0787c8d | 1415 | |
92bfedb0 | 1416 | Seccomp |
9d9de254 | 1417 | M: Eduardo Otubo <[email protected]> |
92bfedb0 EO |
1418 | S: Supported |
1419 | F: qemu-seccomp.c | |
1420 | F: include/sysemu/seccomp.h | |
1421 | ||
ddbb0d09 DB |
1422 | Cryptography |
1423 | M: Daniel P. Berrange <[email protected]> | |
1424 | S: Maintained | |
1425 | F: crypto/ | |
1426 | F: include/crypto/ | |
1427 | F: tests/test-crypto-* | |
1428 | ||
10817bf0 DB |
1429 | Coroutines |
1430 | M: Stefan Hajnoczi <[email protected]> | |
1431 | M: Kevin Wolf <[email protected]> | |
1432 | F: util/*coroutine* | |
1433 | F: include/qemu/coroutine* | |
1434 | F: tests/test-coroutine.c | |
1435 | ||
88c5f205 DB |
1436 | Buffers |
1437 | M: Daniel P. Berrange <[email protected]> | |
1438 | S: Odd fixes | |
1439 | F: util/buffer.c | |
1440 | F: include/qemu/buffer.h | |
1441 | ||
666a3af9 DB |
1442 | I/O Channels |
1443 | M: Daniel P. Berrange <[email protected]> | |
1444 | S: Maintained | |
1445 | F: io/ | |
1446 | F: include/io/ | |
1447 | F: tests/test-io-* | |
1448 | ||
5614a283 GH |
1449 | Sockets |
1450 | M: Daniel P. Berrange <[email protected]> | |
1451 | M: Gerd Hoffmann <[email protected]> | |
1452 | M: Paolo Bonzini <[email protected]> | |
1453 | S: Maintained | |
1454 | F: include/qemu/sockets.h | |
1455 | F: util/qemu-sockets.c | |
1456 | ||
d310d85b AG |
1457 | Throttling infrastructure |
1458 | M: Alberto Garcia <[email protected]> | |
1459 | S: Supported | |
1460 | F: block/throttle-groups.c | |
1461 | F: include/block/throttle-groups.h | |
1462 | F: include/qemu/throttle.h | |
1463 | F: util/throttle.c | |
1464 | L: [email protected] | |
1465 | ||
080d7aac FZ |
1466 | UUID |
1467 | M: Fam Zheng <[email protected]> | |
1468 | S: Supported | |
1469 | F: util/uuid.c | |
1470 | F: include/qemu/uuid.h | |
1471 | F: tests/test-uuid.c | |
1472 | ||
a4cc318e HZ |
1473 | COLO Framework |
1474 | M: zhanghailiang <[email protected]> | |
1475 | S: Maintained | |
1476 | F: migration/colo* | |
1477 | F: include/migration/colo.h | |
1478 | F: include/migration/failover.h | |
1479 | F: docs/COLO-FT.txt | |
1480 | ||
88f82ed1 ZC |
1481 | COLO Proxy |
1482 | M: Zhang Chen <[email protected]> | |
1483 | M: Li Zhijian <[email protected]> | |
1484 | S: Supported | |
1485 | F: docs/colo-proxy.txt | |
1486 | F: net/colo* | |
1487 | F: net/filter-rewriter.c | |
1488 | F: net/filter-mirror.c | |
1489 | ||
fd5d5c56 AL |
1490 | Usermode Emulation |
1491 | ------------------ | |
486bbe5f PB |
1492 | Overall |
1493 | M: Riku Voipio <[email protected]> | |
1494 | S: Maintained | |
1495 | F: thunk.c | |
1496 | F: user-exec.c | |
1497 | ||
fd5d5c56 | 1498 | BSD user |
297e8005 | 1499 | S: Orphan |
fd5d5c56 | 1500 | F: bsd-user/ |
ccf0a57b | 1501 | F: default-configs/*-bsd-user.mak |
fd5d5c56 | 1502 | |
fd5d5c56 AL |
1503 | Linux user |
1504 | M: Riku Voipio <[email protected]> | |
1505 | S: Maintained | |
1506 | F: linux-user/ | |
ccf0a57b | 1507 | F: default-configs/*-linux-user.mak |
42f5a7e9 AJ |
1508 | |
1509 | Tiny Code Generator (TCG) | |
1510 | ------------------------- | |
1511 | Common code | |
cc7772bd | 1512 | M: Richard Henderson <[email protected]> |
42f5a7e9 AJ |
1513 | S: Maintained |
1514 | F: tcg/ | |
1515 | ||
b25a464c CF |
1516 | AArch64 target |
1517 | M: Claudio Fontana <[email protected]> | |
1518 | M: Claudio Fontana <[email protected]> | |
1519 | S: Maintained | |
b4f2bd1c | 1520 | L: [email protected] |
b25a464c | 1521 | F: tcg/aarch64/ |
c17652ee PB |
1522 | F: disas/arm-a64.cc |
1523 | F: disas/libvixl/ | |
b25a464c | 1524 | |
42f5a7e9 AJ |
1525 | ARM target |
1526 | M: Andrzej Zaborowski <[email protected]> | |
1527 | S: Maintained | |
b4f2bd1c | 1528 | L: [email protected] |
42f5a7e9 | 1529 | F: tcg/arm/ |
c17652ee | 1530 | F: disas/arm.c |
42f5a7e9 | 1531 | |
42f5a7e9 | 1532 | i386 target |
5dd4a88c | 1533 | L: [email protected] |
42f5a7e9 AJ |
1534 | S: Maintained |
1535 | F: tcg/i386/ | |
c17652ee | 1536 | F: disas/i386.c |
42f5a7e9 AJ |
1537 | |
1538 | IA64 target | |
1539 | M: Aurelien Jarno <[email protected]> | |
1540 | S: Maintained | |
1541 | F: tcg/ia64/ | |
c17652ee | 1542 | F: disas/ia64.c |
42f5a7e9 AJ |
1543 | |
1544 | MIPS target | |
d6eec7a2 | 1545 | M: Aurelien Jarno <[email protected]> |
42f5a7e9 AJ |
1546 | S: Maintained |
1547 | F: tcg/mips/ | |
c17652ee | 1548 | F: disas/mips.c |
42f5a7e9 AJ |
1549 | |
1550 | PPC | |
15610d42 PK |
1551 | M: Richard Henderson <[email protected]> |
1552 | S: Odd Fixes | |
42f5a7e9 | 1553 | F: tcg/ppc/ |
c17652ee | 1554 | F: disas/ppc.c |
42f5a7e9 AJ |
1555 | |
1556 | S390 target | |
1557 | M: Alexander Graf <[email protected]> | |
1558 | M: Richard Henderson <[email protected]> | |
1559 | S: Maintained | |
1560 | F: tcg/s390/ | |
c17652ee | 1561 | F: disas/s390.c |
42f5a7e9 AJ |
1562 | |
1563 | SPARC target | |
297e8005 | 1564 | S: Odd Fixes |
42f5a7e9 | 1565 | F: tcg/sparc/ |
c17652ee | 1566 | F: disas/sparc.c |
bc75c9e5 SW |
1567 | |
1568 | TCI target | |
1569 | M: Stefan Weil <[email protected]> | |
1570 | S: Maintained | |
8ef9cd55 | 1571 | F: tcg/tci/ |
2b7be8c8 | 1572 | F: tci.c |
c17652ee | 1573 | F: disas/tci.c |
aa09c951 | 1574 | |
f05b328c SH |
1575 | Block drivers |
1576 | ------------- | |
1577 | VMDK | |
1578 | M: Fam Zheng <[email protected]> | |
c95e4c0e | 1579 | L: [email protected] |
f05b328c SH |
1580 | S: Supported |
1581 | F: block/vmdk.c | |
1582 | ||
1583 | RBD | |
5a8ac6d9 | 1584 | M: Josh Durgin <[email protected]> |
280458a3 JC |
1585 | M: Jeff Cody <[email protected]> |
1586 | L: [email protected] | |
f05b328c SH |
1587 | S: Supported |
1588 | F: block/rbd.c | |
280458a3 | 1589 | T: git git://github.com/codyprime/qemu-kvm-jtc.git block |
f05b328c SH |
1590 | |
1591 | Sheepdog | |
53b33231 | 1592 | M: Hitoshi Mitake <[email protected]> |
f05b328c | 1593 | M: Liu Yuan <[email protected]> |
280458a3 JC |
1594 | M: Jeff Cody <[email protected]> |
1595 | L: [email protected] | |
dce32b6c | 1596 | L: [email protected] |
f05b328c SH |
1597 | S: Supported |
1598 | F: block/sheepdog.c | |
280458a3 | 1599 | T: git git://github.com/codyprime/qemu-kvm-jtc.git block |
f05b328c SH |
1600 | |
1601 | VHDX | |
1602 | M: Jeff Cody <[email protected]> | |
280458a3 | 1603 | L: [email protected] |
f05b328c SH |
1604 | S: Supported |
1605 | F: block/vhdx* | |
280458a3 | 1606 | T: git git://github.com/codyprime/qemu-kvm-jtc.git block |
f05b328c SH |
1607 | |
1608 | VDI | |
1609 | M: Stefan Weil <[email protected]> | |
c95e4c0e | 1610 | L: [email protected] |
f05b328c SH |
1611 | S: Maintained |
1612 | F: block/vdi.c | |
1613 | ||
1614 | iSCSI | |
1615 | M: Ronnie Sahlberg <[email protected]> | |
1616 | M: Paolo Bonzini <[email protected]> | |
1617 | M: Peter Lieven <[email protected]> | |
c95e4c0e | 1618 | L: [email protected] |
f05b328c SH |
1619 | S: Supported |
1620 | F: block/iscsi.c | |
1621 | ||
6542aa9c | 1622 | NFS |
280458a3 | 1623 | M: Jeff Cody <[email protected]> |
6542aa9c | 1624 | M: Peter Lieven <[email protected]> |
280458a3 | 1625 | L: [email protected] |
6542aa9c PL |
1626 | S: Maintained |
1627 | F: block/nfs.c | |
280458a3 | 1628 | T: git git://github.com/codyprime/qemu-kvm-jtc.git block |
6542aa9c | 1629 | |
f05b328c SH |
1630 | SSH |
1631 | M: Richard W.M. Jones <[email protected]> | |
280458a3 JC |
1632 | M: Jeff Cody <[email protected]> |
1633 | L: [email protected] | |
f05b328c SH |
1634 | S: Supported |
1635 | F: block/ssh.c | |
280458a3 | 1636 | T: git git://github.com/codyprime/qemu-kvm-jtc.git block |
c9a12e75 CN |
1637 | |
1638 | ARCHIPELAGO | |
c9a12e75 | 1639 | M: Chrysostomos Nanakos <[email protected]> |
280458a3 JC |
1640 | M: Jeff Cody <[email protected]> |
1641 | L: [email protected] | |
c9a12e75 CN |
1642 | S: Maintained |
1643 | F: block/archipelago.c | |
280458a3 JC |
1644 | T: git git://github.com/codyprime/qemu-kvm-jtc.git block |
1645 | ||
1646 | CURL | |
1647 | M: Jeff Cody <[email protected]> | |
1648 | L: [email protected] | |
1649 | S: Supported | |
1650 | F: block/curl.c | |
1651 | T: git git://github.com/codyprime/qemu-kvm-jtc.git block | |
1652 | ||
1653 | GLUSTER | |
1654 | M: Jeff Cody <[email protected]> | |
1655 | L: [email protected] | |
1656 | S: Supported | |
1657 | F: block/gluster.c | |
1658 | T: git git://github.com/codyprime/qemu-kvm-jtc.git block | |
b5e9476c | 1659 | |
199667a8 FZ |
1660 | Null Block Driver |
1661 | M: Fam Zheng <[email protected]> | |
1662 | L: [email protected] | |
1663 | S: Supported | |
1664 | F: block/null.c | |
1665 | ||
b5e9476c GA |
1666 | Bootdevice |
1667 | M: Gonglei <[email protected]> | |
1668 | S: Maintained | |
1669 | F: bootdevice.c | |
ecdda9e0 AG |
1670 | |
1671 | Quorum | |
1672 | M: Alberto Garcia <[email protected]> | |
1673 | S: Supported | |
1674 | F: block/quorum.c | |
1675 | L: [email protected] | |
e7c6e631 SH |
1676 | |
1677 | blkverify | |
1678 | M: Stefan Hajnoczi <[email protected]> | |
1679 | L: [email protected] | |
1680 | S: Supported | |
1681 | F: block/blkverify.c | |
1682 | ||
1683 | bochs | |
1684 | M: Stefan Hajnoczi <[email protected]> | |
1685 | L: [email protected] | |
1686 | S: Supported | |
1687 | F: block/bochs.c | |
1688 | ||
1689 | cloop | |
1690 | M: Stefan Hajnoczi <[email protected]> | |
1691 | L: [email protected] | |
1692 | S: Supported | |
1693 | F: block/cloop.c | |
1694 | ||
1695 | dmg | |
1696 | M: Stefan Hajnoczi <[email protected]> | |
1697 | L: [email protected] | |
1698 | S: Supported | |
1699 | F: block/dmg.c | |
1700 | ||
1701 | parallels | |
1702 | M: Stefan Hajnoczi <[email protected]> | |
f3073712 | 1703 | M: Denis V. Lunev <[email protected]> |
e7c6e631 SH |
1704 | L: [email protected] |
1705 | S: Supported | |
1706 | F: block/parallels.c | |
b4a9e25b | 1707 | F: docs/specs/parallels.txt |
e7c6e631 SH |
1708 | |
1709 | qed | |
1710 | M: Stefan Hajnoczi <[email protected]> | |
1711 | L: [email protected] | |
1712 | S: Supported | |
1713 | F: block/qed.c | |
1714 | ||
1715 | raw | |
1716 | M: Kevin Wolf <[email protected]> | |
1717 | L: [email protected] | |
1718 | S: Supported | |
1719 | F: block/linux-aio.c | |
f586d5fc | 1720 | F: include/block/raw-aio.h |
2e6fc7eb | 1721 | F: block/raw-format.c |
c1bb86cd EB |
1722 | F: block/file-posix.c |
1723 | F: block/file-win32.c | |
e7c6e631 SH |
1724 | F: block/win32-aio.c |
1725 | ||
1726 | qcow2 | |
1727 | M: Kevin Wolf <[email protected]> | |
c4189d85 | 1728 | M: Max Reitz <[email protected]> |
e7c6e631 SH |
1729 | L: [email protected] |
1730 | S: Supported | |
1731 | F: block/qcow2* | |
1732 | ||
1733 | qcow | |
1734 | M: Kevin Wolf <[email protected]> | |
1735 | L: [email protected] | |
1736 | S: Supported | |
1737 | F: block/qcow.c | |
1738 | ||
1739 | blkdebug | |
1740 | M: Kevin Wolf <[email protected]> | |
c4189d85 | 1741 | M: Max Reitz <[email protected]> |
e7c6e631 SH |
1742 | L: [email protected] |
1743 | S: Supported | |
1744 | F: block/blkdebug.c | |
1745 | ||
1746 | vpc | |
1747 | M: Kevin Wolf <[email protected]> | |
1748 | L: [email protected] | |
1749 | S: Supported | |
1750 | F: block/vpc.c | |
1751 | ||
1752 | vvfat | |
1753 | M: Kevin Wolf <[email protected]> | |
1754 | L: [email protected] | |
1755 | S: Supported | |
1756 | F: block/vvfat.c | |
abfe4e94 SH |
1757 | |
1758 | Image format fuzzer | |
1759 | M: Stefan Hajnoczi <[email protected]> | |
1760 | L: [email protected] | |
1761 | S: Supported | |
1762 | F: tests/image-fuzzer/ | |
717171bd | 1763 | |
049105a3 CX |
1764 | Replication |
1765 | M: Wen Congyang <[email protected]> | |
1766 | M: Changlong Xie <[email protected]> | |
1767 | S: Supported | |
1768 | F: replication* | |
1769 | F: block/replication.c | |
1770 | F: tests/test-replication.c | |
1771 | F: docs/block-replication.txt | |
1772 | ||
b9e02c06 AB |
1773 | Build and test automation |
1774 | ------------------------- | |
1775 | M: Alex Bennée <[email protected]> | |
1776 | L: [email protected] | |
1777 | S: Supported | |
1778 | F: .travis.yml | |
717171bd DB |
1779 | |
1780 | Documentation | |
1781 | ------------- | |
1782 | Build system architecture | |
1783 | M: Daniel P. Berrange <[email protected]> | |
1784 | S: Odd Fixes | |
1785 | F: docs/build-system.txt | |
8a49e97f FZ |
1786 | |
1787 | Docker testing | |
1788 | -------------- | |
1789 | Docker based testing framework and cases | |
1790 | M: Fam Zheng <[email protected]> | |
1791 | S: Maintained | |
1792 | F: tests/docker/ |