]>
Commit | Line | Data |
---|---|---|
1 | QEMU Maintainers | |
2 | ================ | |
3 | ||
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. | |
8 | ||
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. | |
11 | ||
12 | Descriptions of section entries: | |
13 | ||
14 | M: Mail patches to: FullName <address@domain> | |
15 | Maintainers are looking after a certain area and must be CCed on | |
16 | patches. They are considered the main contact point. | |
17 | R: Designated reviewer: FullName <address@domain> | |
18 | These reviewers should be CCed on patches. | |
19 | Reviewers are familiar with the subject matter and provide feedback | |
20 | even though they are not maintainers. | |
21 | L: Mailing list that is relevant to this area | |
22 | These lists should be CCed on patches. | |
23 | W: Web-page with status/info | |
24 | Q: Patchwork web based patch tracking system site | |
25 | T: SCM tree type and location. Type is one of: git, hg, quilt, stgit. | |
26 | S: Status, one of the following: | |
27 | Supported: Someone is actually paid to look after this. | |
28 | Maintained: Someone actually looks after it. | |
29 | Odd Fixes: It has a maintainer but they don't have time to do | |
30 | much other than throw the odd patch in. See below. | |
31 | Orphan: No current maintainer [but maybe you could take the | |
32 | role as you write your new code]. | |
33 | Obsolete: Old code. Something tagged obsolete generally means | |
34 | it has been replaced by a better system and you | |
35 | should be using that. | |
36 | F: Files and directories with wildcard patterns. | |
37 | A trailing slash includes all files and subdirectory files. | |
38 | F: drivers/net/ all files in and below drivers/net | |
39 | F: drivers/net/* all files in drivers/net, but not below | |
40 | F: */net/* all files in "any top level directory"/net | |
41 | One pattern per line. Multiple F: lines acceptable. | |
42 | X: Files and directories that are NOT maintained, same rules as F: | |
43 | Files exclusions are tested before file matches. | |
44 | Can be useful for excluding a specific subdirectory, for instance: | |
45 | F: net/ | |
46 | X: net/ipv6/ | |
47 | matches all files in and below net excluding net/ipv6/ | |
48 | K: Keyword perl extended regex pattern to match content in a | |
49 | patch or file. For instance: | |
50 | K: of_get_profile | |
51 | matches patches or files that contain "of_get_profile" | |
52 | K: \b(printk|pr_(info|err))\b | |
53 | matches patches or files that contain one or more of the words | |
54 | printk, pr_info or pr_err | |
55 | One regex pattern per line. Multiple K: lines acceptable. | |
56 | ||
57 | ||
58 | General Project Administration | |
59 | ------------------------------ | |
60 | M: Peter Maydell <[email protected]> | |
61 | ||
62 | All patches CC here | |
63 | L: [email protected] | |
64 | F: * | |
65 | F: */ | |
66 | ||
67 | Responsible Disclosure, Reporting Security Issues | |
68 | ------------------------------------------------- | |
69 | W: https://wiki.qemu.org/SecurityProcess | |
70 | M: Michael S. Tsirkin <[email protected]> | |
71 | L: [email protected] | |
72 | ||
73 | Trivial patches | |
74 | --------------- | |
75 | Trivial patches | |
76 | M: Michael Tokarev <[email protected]> | |
77 | M: Laurent Vivier <[email protected]> | |
78 | S: Maintained | |
79 | L: [email protected] | |
80 | K: ^Subject:.*(?i)trivial | |
81 | T: git git://git.corpit.ru/qemu.git trivial-patches | |
82 | T: git https://github.com/vivier/qemu.git trivial-patches | |
83 | ||
84 | Architecture support | |
85 | -------------------- | |
86 | S390 general architecture support | |
87 | M: Cornelia Huck <[email protected]> | |
88 | S: Supported | |
89 | F: default-configs/s390x-softmmu.mak | |
90 | F: gdb-xml/s390*.xml | |
91 | F: hw/char/sclp*.[hc] | |
92 | F: hw/char/terminal3270.c | |
93 | F: hw/intc/s390_flic.c | |
94 | F: hw/intc/s390_flic_kvm.c | |
95 | F: hw/s390x/ | |
96 | F: hw/vfio/ap.c | |
97 | F: hw/vfio/ccw.c | |
98 | F: hw/watchdog/wdt_diag288.c | |
99 | F: include/hw/s390x/ | |
100 | F: include/hw/watchdog/wdt_diag288.h | |
101 | F: pc-bios/s390-ccw/ | |
102 | F: pc-bios/s390-ccw.img | |
103 | F: target/s390x/ | |
104 | F: docs/system/target-s390x.rst | |
105 | F: docs/system/s390x/ | |
106 | F: tests/migration/s390x/ | |
107 | K: ^Subject:.*(?i)s390x? | |
108 | T: git https://github.com/cohuck/qemu.git s390-next | |
109 | L: [email protected] | |
110 | ||
111 | Guest CPU cores (TCG) | |
112 | --------------------- | |
113 | Overall TCG CPUs | |
114 | M: Richard Henderson <[email protected]> | |
115 | R: Paolo Bonzini <[email protected]> | |
116 | S: Maintained | |
117 | F: cpus.c | |
118 | F: exec.c | |
119 | F: accel/tcg/ | |
120 | F: accel/stubs/tcg-stub.c | |
121 | F: scripts/decodetree.py | |
122 | F: docs/devel/decodetree.rst | |
123 | F: include/exec/cpu*.h | |
124 | F: include/exec/exec-all.h | |
125 | F: include/exec/helper*.h | |
126 | F: include/exec/tb-hash.h | |
127 | F: include/sysemu/cpus.h | |
128 | F: include/sysemu/tcg.h | |
129 | ||
130 | FPU emulation | |
131 | M: Aurelien Jarno <[email protected]> | |
132 | M: Peter Maydell <[email protected]> | |
133 | M: Alex Bennée <[email protected]> | |
134 | S: Maintained | |
135 | F: fpu/ | |
136 | F: include/fpu/ | |
137 | F: tests/fp/ | |
138 | ||
139 | Alpha TCG CPUs | |
140 | M: Richard Henderson <[email protected]> | |
141 | S: Maintained | |
142 | F: target/alpha/ | |
143 | F: tests/tcg/alpha/ | |
144 | F: disas/alpha.c | |
145 | ||
146 | ARM TCG CPUs | |
147 | M: Peter Maydell <[email protected]> | |
148 | L: [email protected] | |
149 | S: Maintained | |
150 | F: target/arm/ | |
151 | F: tests/tcg/arm/ | |
152 | F: tests/tcg/aarch64/ | |
153 | F: hw/arm/ | |
154 | F: hw/cpu/a*mpcore.c | |
155 | F: include/hw/cpu/a*mpcore.h | |
156 | F: disas/arm.c | |
157 | F: disas/arm-a64.cc | |
158 | F: disas/libvixl/ | |
159 | F: docs/system/target-arm.rst | |
160 | ||
161 | ARM SMMU | |
162 | M: Eric Auger <[email protected]> | |
163 | L: [email protected] | |
164 | S: Maintained | |
165 | F: hw/arm/smmu* | |
166 | F: include/hw/arm/smmu* | |
167 | ||
168 | CRIS TCG CPUs | |
169 | M: Edgar E. Iglesias <[email protected]> | |
170 | S: Maintained | |
171 | F: target/cris/ | |
172 | F: hw/cris/ | |
173 | F: include/hw/cris/ | |
174 | F: tests/tcg/cris/ | |
175 | F: disas/cris.c | |
176 | ||
177 | HPPA (PA-RISC) TCG CPUs | |
178 | M: Richard Henderson <[email protected]> | |
179 | S: Maintained | |
180 | F: target/hppa/ | |
181 | F: hw/hppa/ | |
182 | F: disas/hppa.c | |
183 | F: hw/net/*i82596* | |
184 | F: include/hw/net/lasi_82596.h | |
185 | ||
186 | LM32 TCG CPUs | |
187 | M: Michael Walle <[email protected]> | |
188 | S: Maintained | |
189 | F: target/lm32/ | |
190 | F: disas/lm32.c | |
191 | F: hw/lm32/ | |
192 | F: hw/*/lm32_* | |
193 | F: hw/*/milkymist-* | |
194 | F: include/hw/display/milkymist_tmu2.h | |
195 | F: include/hw/char/lm32_juart.h | |
196 | F: include/hw/lm32/ | |
197 | F: tests/tcg/lm32/ | |
198 | ||
199 | M68K TCG CPUs | |
200 | M: Laurent Vivier <[email protected]> | |
201 | S: Maintained | |
202 | F: target/m68k/ | |
203 | F: disas/m68k.c | |
204 | ||
205 | MicroBlaze TCG CPUs | |
206 | M: Edgar E. Iglesias <[email protected]> | |
207 | S: Maintained | |
208 | F: target/microblaze/ | |
209 | F: hw/microblaze/ | |
210 | F: disas/microblaze.c | |
211 | ||
212 | MIPS TCG CPUs | |
213 | M: Aleksandar Markovic <[email protected]> | |
214 | R: Aurelien Jarno <[email protected]> | |
215 | R: Aleksandar Rikalo <[email protected]> | |
216 | S: Maintained | |
217 | F: target/mips/ | |
218 | F: default-configs/*mips* | |
219 | F: disas/*mips* | |
220 | F: docs/system/cpu-models-mips.rst.inc | |
221 | F: hw/intc/mips_gic.c | |
222 | F: hw/mips/ | |
223 | F: hw/misc/mips_* | |
224 | F: hw/timer/mips_gictimer.c | |
225 | F: include/hw/intc/mips_gic.h | |
226 | F: include/hw/mips/ | |
227 | F: include/hw/misc/mips_* | |
228 | F: include/hw/timer/mips_gictimer.h | |
229 | F: tests/acceptance/linux_ssh_mips_malta.py | |
230 | F: tests/acceptance/machine_mips_malta.py | |
231 | F: tests/tcg/mips/ | |
232 | K: ^Subject:.*(?i)mips | |
233 | ||
234 | Moxie TCG CPUs | |
235 | M: Anthony Green <[email protected]> | |
236 | S: Maintained | |
237 | F: target/moxie/ | |
238 | F: disas/moxie.c | |
239 | F: hw/moxie/ | |
240 | F: default-configs/moxie-softmmu.mak | |
241 | ||
242 | NiosII TCG CPUs | |
243 | M: Chris Wulff <[email protected]> | |
244 | M: Marek Vasut <[email protected]> | |
245 | S: Maintained | |
246 | F: target/nios2/ | |
247 | F: hw/nios2/ | |
248 | F: hw/intc/nios2_iic.c | |
249 | F: disas/nios2.c | |
250 | F: default-configs/nios2-softmmu.mak | |
251 | ||
252 | OpenRISC TCG CPUs | |
253 | M: Stafford Horne <[email protected]> | |
254 | S: Odd Fixes | |
255 | F: target/openrisc/ | |
256 | F: hw/openrisc/ | |
257 | F: tests/tcg/openrisc/ | |
258 | ||
259 | PowerPC TCG CPUs | |
260 | M: David Gibson <[email protected]> | |
261 | L: [email protected] | |
262 | S: Maintained | |
263 | F: target/ppc/ | |
264 | F: hw/ppc/ | |
265 | F: include/hw/ppc/ | |
266 | F: disas/ppc.c | |
267 | ||
268 | RISC-V TCG CPUs | |
269 | M: Palmer Dabbelt <[email protected]> | |
270 | M: Alistair Francis <[email protected]> | |
271 | M: Sagar Karandikar <[email protected]> | |
272 | M: Bastian Koppelmann <[email protected]> | |
273 | L: [email protected] | |
274 | S: Supported | |
275 | F: target/riscv/ | |
276 | F: hw/riscv/ | |
277 | F: include/hw/riscv/ | |
278 | F: linux-user/host/riscv32/ | |
279 | F: linux-user/host/riscv64/ | |
280 | ||
281 | RENESAS RX CPUs | |
282 | M: Yoshinori Sato <[email protected]> | |
283 | S: Maintained | |
284 | F: target/rx/ | |
285 | ||
286 | S390 TCG CPUs | |
287 | M: Richard Henderson <[email protected]> | |
288 | M: David Hildenbrand <[email protected]> | |
289 | S: Maintained | |
290 | F: target/s390x/ | |
291 | F: hw/s390x/ | |
292 | F: disas/s390.c | |
293 | F: tests/tcg/s390x/ | |
294 | L: [email protected] | |
295 | ||
296 | SH4 TCG CPUs | |
297 | M: Aurelien Jarno <[email protected]> | |
298 | S: Odd Fixes | |
299 | F: target/sh4/ | |
300 | F: hw/sh4/ | |
301 | F: disas/sh4.c | |
302 | F: include/hw/sh4/ | |
303 | ||
304 | SPARC TCG CPUs | |
305 | M: Mark Cave-Ayland <[email protected]> | |
306 | M: Artyom Tarasenko <[email protected]> | |
307 | S: Maintained | |
308 | F: target/sparc/ | |
309 | F: hw/sparc/ | |
310 | F: hw/sparc64/ | |
311 | F: include/hw/sparc/sparc64.h | |
312 | F: disas/sparc.c | |
313 | ||
314 | UniCore32 TCG CPUs | |
315 | M: Guan Xuetao <[email protected]> | |
316 | S: Maintained | |
317 | F: target/unicore32/ | |
318 | F: hw/unicore32/ | |
319 | F: include/hw/unicore32/ | |
320 | ||
321 | X86 TCG CPUs | |
322 | M: Paolo Bonzini <[email protected]> | |
323 | M: Richard Henderson <[email protected]> | |
324 | M: Eduardo Habkost <[email protected]> | |
325 | S: Maintained | |
326 | F: target/i386/ | |
327 | F: tests/tcg/i386/ | |
328 | F: tests/tcg/x86_64/ | |
329 | F: hw/i386/ | |
330 | F: disas/i386.c | |
331 | F: docs/system/cpu-models-x86.rst.inc | |
332 | T: git https://github.com/ehabkost/qemu.git x86-next | |
333 | ||
334 | Xtensa TCG CPUs | |
335 | M: Max Filippov <[email protected]> | |
336 | W: http://wiki.osll.ru/doku.php?id=etc:users:jcmvbkbc:qemu-target-xtensa | |
337 | S: Maintained | |
338 | F: target/xtensa/ | |
339 | F: hw/xtensa/ | |
340 | F: tests/tcg/xtensa/ | |
341 | F: disas/xtensa.c | |
342 | F: include/hw/xtensa/xtensa-isa.h | |
343 | F: default-configs/xtensa*.mak | |
344 | ||
345 | TriCore TCG CPUs | |
346 | M: Bastian Koppelmann <[email protected]> | |
347 | S: Maintained | |
348 | F: target/tricore/ | |
349 | F: hw/tricore/ | |
350 | F: include/hw/tricore/ | |
351 | ||
352 | Multiarch Linux User Tests | |
353 | M: Alex Bennée <[email protected]> | |
354 | S: Maintained | |
355 | F: tests/tcg/multiarch/ | |
356 | ||
357 | Guest CPU Cores (KVM) | |
358 | --------------------- | |
359 | Overall KVM CPUs | |
360 | M: Paolo Bonzini <[email protected]> | |
361 | L: [email protected] | |
362 | S: Supported | |
363 | F: */kvm.* | |
364 | F: accel/kvm/ | |
365 | F: accel/stubs/kvm-stub.c | |
366 | F: include/hw/kvm/ | |
367 | F: include/sysemu/kvm*.h | |
368 | F: scripts/kvm/kvm_flightrecorder | |
369 | ||
370 | ARM KVM CPUs | |
371 | M: Peter Maydell <[email protected]> | |
372 | L: [email protected] | |
373 | S: Maintained | |
374 | F: target/arm/kvm.c | |
375 | ||
376 | MIPS KVM CPUs | |
377 | M: Aleksandar Markovic <[email protected]> | |
378 | S: Odd Fixes | |
379 | F: target/mips/kvm.c | |
380 | ||
381 | PPC KVM CPUs | |
382 | M: David Gibson <[email protected]> | |
383 | S: Maintained | |
384 | F: target/ppc/kvm.c | |
385 | ||
386 | S390 KVM CPUs | |
387 | M: Halil Pasic <[email protected]> | |
388 | M: Cornelia Huck <[email protected]> | |
389 | M: Christian Borntraeger <[email protected]> | |
390 | S: Supported | |
391 | F: target/s390x/kvm.c | |
392 | F: target/s390x/kvm_s390x.h | |
393 | F: target/s390x/kvm-stub.c | |
394 | F: target/s390x/ioinst.[ch] | |
395 | F: target/s390x/machine.c | |
396 | F: target/s390x/sigp.c | |
397 | F: target/s390x/cpu_features*.[ch] | |
398 | F: target/s390x/cpu_models.[ch] | |
399 | F: hw/intc/s390_flic.c | |
400 | F: hw/intc/s390_flic_kvm.c | |
401 | F: include/hw/s390x/s390_flic.h | |
402 | F: gdb-xml/s390*.xml | |
403 | T: git https://github.com/cohuck/qemu.git s390-next | |
404 | T: git https://github.com/borntraeger/qemu.git s390-next | |
405 | L: [email protected] | |
406 | ||
407 | X86 KVM CPUs | |
408 | M: Paolo Bonzini <[email protected]> | |
409 | M: Marcelo Tosatti <[email protected]> | |
410 | L: [email protected] | |
411 | S: Supported | |
412 | F: target/i386/kvm.c | |
413 | F: scripts/kvm/vmxcap | |
414 | ||
415 | WHPX CPUs | |
416 | M: Sunil Muthuswamy <[email protected]> | |
417 | S: Supported | |
418 | F: target/i386/whpx-all.c | |
419 | F: target/i386/whp-dispatch.h | |
420 | F: accel/stubs/whpx-stub.c | |
421 | F: include/sysemu/whpx.h | |
422 | ||
423 | Guest CPU Cores (Xen) | |
424 | --------------------- | |
425 | X86 Xen CPUs | |
426 | M: Stefano Stabellini <[email protected]> | |
427 | M: Anthony Perard <[email protected]> | |
428 | M: Paul Durrant <[email protected]> | |
429 | L: [email protected] | |
430 | S: Supported | |
431 | F: */xen* | |
432 | F: hw/9pfs/xen-9p* | |
433 | F: hw/char/xen_console.c | |
434 | F: hw/display/xenfb.c | |
435 | F: hw/net/xen_nic.c | |
436 | F: hw/block/xen* | |
437 | F: hw/block/dataplane/xen* | |
438 | F: hw/xen/ | |
439 | F: hw/xenpv/ | |
440 | F: hw/i386/xen/ | |
441 | F: hw/pci-host/xen_igd_pt.c | |
442 | F: include/hw/block/dataplane/xen* | |
443 | F: include/hw/xen/ | |
444 | F: include/sysemu/xen-mapcache.h | |
445 | ||
446 | Guest CPU Cores (HAXM) | |
447 | --------------------- | |
448 | X86 HAXM CPUs | |
449 | M: Wenchao Wang <[email protected]> | |
450 | M: Colin Xu <[email protected]> | |
451 | L: [email protected] | |
452 | W: https://github.com/intel/haxm/issues | |
453 | S: Maintained | |
454 | F: include/sysemu/hax.h | |
455 | F: target/i386/hax-* | |
456 | ||
457 | Hosts | |
458 | ----- | |
459 | LINUX | |
460 | M: Michael S. Tsirkin <[email protected]> | |
461 | M: Cornelia Huck <[email protected]> | |
462 | M: Paolo Bonzini <[email protected]> | |
463 | S: Maintained | |
464 | F: linux-headers/ | |
465 | F: scripts/update-linux-headers.sh | |
466 | ||
467 | POSIX | |
468 | M: Paolo Bonzini <[email protected]> | |
469 | S: Maintained | |
470 | F: os-posix.c | |
471 | F: include/sysemu/os-posix.h | |
472 | F: util/*posix*.c | |
473 | F: include/qemu/*posix*.h | |
474 | ||
475 | NETBSD | |
476 | M: Kamil Rytarowski <[email protected]> | |
477 | S: Maintained | |
478 | K: ^Subject:.*(?i)NetBSD | |
479 | ||
480 | OPENBSD | |
481 | M: Brad Smith <[email protected]> | |
482 | S: Maintained | |
483 | K: ^Subject:.*(?i)OpenBSD | |
484 | ||
485 | W32, W64 | |
486 | M: Stefan Weil <[email protected]> | |
487 | S: Maintained | |
488 | F: *win32* | |
489 | F: */*win32* | |
490 | F: include/*/*win32* | |
491 | X: qga/*win32* | |
492 | F: qemu.nsi | |
493 | ||
494 | Alpha Machines | |
495 | -------------- | |
496 | M: Richard Henderson <[email protected]> | |
497 | S: Maintained | |
498 | F: hw/alpha/ | |
499 | F: hw/isa/smc37c669-superio.c | |
500 | F: tests/tcg/alpha/system/ | |
501 | ||
502 | ARM Machines | |
503 | ------------ | |
504 | Allwinner-a10 | |
505 | M: Beniamino Galvani <[email protected]> | |
506 | M: Peter Maydell <[email protected]> | |
507 | L: [email protected] | |
508 | S: Odd Fixes | |
509 | F: hw/*/allwinner* | |
510 | F: include/hw/*/allwinner* | |
511 | F: hw/arm/cubieboard.c | |
512 | ||
513 | Allwinner-h3 | |
514 | M: Niek Linnenbank <[email protected]> | |
515 | L: [email protected] | |
516 | S: Maintained | |
517 | F: hw/*/allwinner-h3* | |
518 | F: include/hw/*/allwinner-h3* | |
519 | F: hw/arm/orangepi.c | |
520 | F: docs/system/orangepi.rst | |
521 | ||
522 | ARM PrimeCell and CMSDK devices | |
523 | M: Peter Maydell <[email protected]> | |
524 | L: [email protected] | |
525 | S: Maintained | |
526 | F: hw/char/pl011.c | |
527 | F: include/hw/char/pl011.h | |
528 | F: hw/display/pl110* | |
529 | F: hw/dma/pl080.c | |
530 | F: include/hw/dma/pl080.h | |
531 | F: hw/dma/pl330.c | |
532 | F: hw/gpio/pl061.c | |
533 | F: hw/input/pl050.c | |
534 | F: hw/intc/pl190.c | |
535 | F: hw/sd/pl181.c | |
536 | F: hw/ssi/pl022.c | |
537 | F: include/hw/ssi/pl022.h | |
538 | F: hw/rtc/pl031.c | |
539 | F: include/hw/rtc/pl031.h | |
540 | F: include/hw/arm/primecell.h | |
541 | F: hw/timer/cmsdk-apb-timer.c | |
542 | F: include/hw/timer/cmsdk-apb-timer.h | |
543 | F: hw/timer/cmsdk-apb-dualtimer.c | |
544 | F: include/hw/timer/cmsdk-apb-dualtimer.h | |
545 | F: hw/char/cmsdk-apb-uart.c | |
546 | F: include/hw/char/cmsdk-apb-uart.h | |
547 | F: hw/watchdog/cmsdk-apb-watchdog.c | |
548 | F: include/hw/watchdog/cmsdk-apb-watchdog.h | |
549 | F: hw/misc/tz-ppc.c | |
550 | F: include/hw/misc/tz-ppc.h | |
551 | F: hw/misc/tz-mpc.c | |
552 | F: include/hw/misc/tz-mpc.h | |
553 | F: hw/misc/tz-msc.c | |
554 | F: include/hw/misc/tz-msc.h | |
555 | ||
556 | ARM cores | |
557 | M: Peter Maydell <[email protected]> | |
558 | L: [email protected] | |
559 | S: Maintained | |
560 | F: hw/intc/arm* | |
561 | F: hw/intc/gic_internal.h | |
562 | F: hw/misc/a9scu.c | |
563 | F: hw/misc/arm11scu.c | |
564 | F: hw/misc/arm_l2x0.c | |
565 | F: hw/timer/a9gtimer* | |
566 | F: hw/timer/arm* | |
567 | F: include/hw/arm/arm*.h | |
568 | F: include/hw/intc/arm* | |
569 | F: include/hw/misc/a9scu.h | |
570 | F: include/hw/misc/arm11scu.h | |
571 | F: include/hw/timer/a9gtimer.h | |
572 | F: include/hw/timer/arm_mptimer.h | |
573 | F: include/hw/timer/armv7m_systick.h | |
574 | F: tests/qtest/test-arm-mptimer.c | |
575 | ||
576 | Exynos | |
577 | M: Igor Mitsyanko <[email protected]> | |
578 | M: Peter Maydell <[email protected]> | |
579 | L: [email protected] | |
580 | S: Odd Fixes | |
581 | F: hw/*/exynos* | |
582 | F: include/hw/arm/exynos4210.h | |
583 | ||
584 | Calxeda Highbank | |
585 | M: Rob Herring <[email protected]> | |
586 | M: Peter Maydell <[email protected]> | |
587 | L: [email protected] | |
588 | S: Odd Fixes | |
589 | F: hw/arm/highbank.c | |
590 | F: hw/net/xgmac.c | |
591 | ||
592 | Canon DIGIC | |
593 | M: Antony Pavlov <[email protected]> | |
594 | M: Peter Maydell <[email protected]> | |
595 | L: [email protected] | |
596 | S: Odd Fixes | |
597 | F: include/hw/arm/digic.h | |
598 | F: hw/*/digic* | |
599 | F: include/hw/*/digic* | |
600 | ||
601 | Goldfish RTC | |
602 | M: Anup Patel <[email protected]> | |
603 | M: Alistair Francis <[email protected]> | |
604 | L: [email protected] | |
605 | S: Maintained | |
606 | F: hw/rtc/goldfish_rtc.c | |
607 | F: include/hw/rtc/goldfish_rtc.h | |
608 | ||
609 | Gumstix | |
610 | M: Peter Maydell <[email protected]> | |
611 | R: Philippe Mathieu-Daudé <[email protected]> | |
612 | L: [email protected] | |
613 | S: Odd Fixes | |
614 | F: hw/arm/gumstix.c | |
615 | ||
616 | i.MX25 PDK | |
617 | M: Peter Maydell <[email protected]> | |
618 | R: Jean-Christophe Dubois <[email protected]> | |
619 | L: [email protected] | |
620 | S: Odd Fixes | |
621 | F: hw/arm/fsl-imx25.c | |
622 | F: hw/arm/imx25_pdk.c | |
623 | F: hw/misc/imx25_ccm.c | |
624 | F: include/hw/arm/fsl-imx25.h | |
625 | F: include/hw/misc/imx25_ccm.h | |
626 | ||
627 | i.MX31 (kzm) | |
628 | M: Peter Chubb <[email protected]> | |
629 | M: Peter Maydell <[email protected]> | |
630 | L: [email protected] | |
631 | S: Odd Fixes | |
632 | F: hw/arm/kzm.c | |
633 | F: hw/*/imx_* | |
634 | F: hw/*/*imx31* | |
635 | F: include/hw/*/imx_* | |
636 | F: include/hw/*/*imx31* | |
637 | ||
638 | Integrator CP | |
639 | M: Peter Maydell <[email protected]> | |
640 | L: [email protected] | |
641 | S: Maintained | |
642 | F: hw/arm/integratorcp.c | |
643 | F: hw/misc/arm_integrator_debug.c | |
644 | F: include/hw/misc/arm_integrator_debug.h | |
645 | F: tests/acceptance/machine_arm_integratorcp.py | |
646 | F: docs/system/arm/integratorcp.rst | |
647 | ||
648 | MCIMX6UL EVK / i.MX6ul | |
649 | M: Peter Maydell <[email protected]> | |
650 | R: Jean-Christophe Dubois <[email protected]> | |
651 | L: [email protected] | |
652 | S: Odd Fixes | |
653 | F: hw/arm/mcimx6ul-evk.c | |
654 | F: hw/arm/fsl-imx6ul.c | |
655 | F: hw/misc/imx6ul_ccm.c | |
656 | F: include/hw/arm/fsl-imx6ul.h | |
657 | F: include/hw/misc/imx6ul_ccm.h | |
658 | ||
659 | MCIMX7D SABRE / i.MX7 | |
660 | M: Peter Maydell <[email protected]> | |
661 | R: Andrey Smirnov <[email protected]> | |
662 | L: [email protected] | |
663 | S: Odd Fixes | |
664 | F: hw/arm/mcimx7d-sabre.c | |
665 | F: hw/arm/fsl-imx7.c | |
666 | F: hw/misc/imx7_*.c | |
667 | F: include/hw/arm/fsl-imx7.h | |
668 | F: include/hw/misc/imx7_*.h | |
669 | F: hw/pci-host/designware.c | |
670 | F: include/hw/pci-host/designware.h | |
671 | ||
672 | MPS2 | |
673 | M: Peter Maydell <[email protected]> | |
674 | L: [email protected] | |
675 | S: Maintained | |
676 | F: hw/arm/mps2.c | |
677 | F: hw/arm/mps2-tz.c | |
678 | F: hw/misc/mps2-*.c | |
679 | F: include/hw/misc/mps2-*.h | |
680 | F: hw/arm/armsse.c | |
681 | F: include/hw/arm/armsse.h | |
682 | F: hw/misc/iotkit-secctl.c | |
683 | F: include/hw/misc/iotkit-secctl.h | |
684 | F: hw/misc/iotkit-sysctl.c | |
685 | F: include/hw/misc/iotkit-sysctl.h | |
686 | F: hw/misc/iotkit-sysinfo.c | |
687 | F: include/hw/misc/iotkit-sysinfo.h | |
688 | F: hw/misc/armsse-cpuid.c | |
689 | F: include/hw/misc/armsse-cpuid.h | |
690 | F: hw/misc/armsse-mhu.c | |
691 | F: include/hw/misc/armsse-mhu.h | |
692 | ||
693 | Musca | |
694 | M: Peter Maydell <[email protected]> | |
695 | L: [email protected] | |
696 | S: Maintained | |
697 | F: hw/arm/musca.c | |
698 | ||
699 | Musicpal | |
700 | M: Jan Kiszka <[email protected]> | |
701 | M: Peter Maydell <[email protected]> | |
702 | L: [email protected] | |
703 | S: Odd Fixes | |
704 | F: hw/arm/musicpal.c | |
705 | F: docs/system/arm/musicpal.rst | |
706 | ||
707 | nSeries | |
708 | M: Andrzej Zaborowski <[email protected]> | |
709 | M: Peter Maydell <[email protected]> | |
710 | L: [email protected] | |
711 | S: Odd Fixes | |
712 | F: hw/arm/nseries.c | |
713 | F: hw/display/blizzard.c | |
714 | F: hw/input/lm832x.c | |
715 | F: hw/input/tsc2005.c | |
716 | F: hw/misc/cbus.c | |
717 | F: hw/rtc/twl92230.c | |
718 | F: include/hw/display/blizzard.h | |
719 | F: include/hw/input/tsc2xxx.h | |
720 | F: include/hw/misc/cbus.h | |
721 | F: tests/acceptance/machine_arm_n8x0.py | |
722 | F: docs/system/arm/nseries.rst | |
723 | ||
724 | Palm | |
725 | M: Andrzej Zaborowski <[email protected]> | |
726 | M: Peter Maydell <[email protected]> | |
727 | L: [email protected] | |
728 | S: Odd Fixes | |
729 | F: hw/arm/palm.c | |
730 | F: hw/input/tsc210x.c | |
731 | F: include/hw/input/tsc2xxx.h | |
732 | F: docs/system/arm/palm.rst | |
733 | ||
734 | Raspberry Pi | |
735 | M: Peter Maydell <[email protected]> | |
736 | R: Andrew Baumann <[email protected]> | |
737 | R: Philippe Mathieu-Daudé <[email protected]> | |
738 | L: [email protected] | |
739 | S: Odd Fixes | |
740 | F: hw/arm/raspi.c | |
741 | F: hw/arm/raspi_platform.h | |
742 | F: hw/*/bcm283* | |
743 | F: include/hw/arm/raspi* | |
744 | F: include/hw/*/bcm283* | |
745 | ||
746 | Real View | |
747 | M: Peter Maydell <[email protected]> | |
748 | L: [email protected] | |
749 | S: Maintained | |
750 | F: hw/arm/realview* | |
751 | F: hw/cpu/realview_mpcore.c | |
752 | F: hw/intc/realview_gic.c | |
753 | F: include/hw/intc/realview_gic.h | |
754 | F: docs/system/arm/realview.rst | |
755 | ||
756 | PXA2XX | |
757 | M: Andrzej Zaborowski <[email protected]> | |
758 | M: Peter Maydell <[email protected]> | |
759 | L: [email protected] | |
760 | S: Odd Fixes | |
761 | F: hw/arm/mainstone.c | |
762 | F: hw/arm/spitz.c | |
763 | F: hw/arm/tosa.c | |
764 | F: hw/arm/z2.c | |
765 | F: hw/*/pxa2xx* | |
766 | F: hw/display/tc6393xb.c | |
767 | F: hw/gpio/max7310.c | |
768 | F: hw/gpio/zaurus.c | |
769 | F: hw/misc/mst_fpga.c | |
770 | F: hw/misc/max111x.c | |
771 | F: include/hw/arm/pxa.h | |
772 | F: include/hw/arm/sharpsl.h | |
773 | F: include/hw/display/tc6393xb.h | |
774 | F: docs/system/arm/xscale.rst | |
775 | ||
776 | SABRELITE / i.MX6 | |
777 | M: Peter Maydell <[email protected]> | |
778 | R: Jean-Christophe Dubois <[email protected]> | |
779 | L: [email protected] | |
780 | S: Odd Fixes | |
781 | F: hw/arm/sabrelite.c | |
782 | F: hw/arm/fsl-imx6.c | |
783 | F: hw/misc/imx6_*.c | |
784 | F: hw/ssi/imx_spi.c | |
785 | F: hw/usb/imx-usb-phy.c | |
786 | F: include/hw/usb/imx-usb-phy.h | |
787 | F: include/hw/arm/fsl-imx6.h | |
788 | F: include/hw/misc/imx6_*.h | |
789 | F: include/hw/ssi/imx_spi.h | |
790 | ||
791 | SBSA-REF | |
792 | M: Radoslaw Biernacki <[email protected]> | |
793 | M: Peter Maydell <[email protected]> | |
794 | R: Leif Lindholm <[email protected]> | |
795 | L: [email protected] | |
796 | S: Maintained | |
797 | F: hw/arm/sbsa-ref.c | |
798 | ||
799 | Sharp SL-5500 (Collie) PDA | |
800 | M: Peter Maydell <[email protected]> | |
801 | L: [email protected] | |
802 | S: Odd Fixes | |
803 | F: hw/arm/collie.c | |
804 | F: hw/arm/strongarm* | |
805 | ||
806 | Stellaris | |
807 | M: Peter Maydell <[email protected]> | |
808 | L: [email protected] | |
809 | S: Maintained | |
810 | F: hw/*/stellaris* | |
811 | F: include/hw/input/gamepad.h | |
812 | F: docs/system/arm/stellaris.rst | |
813 | ||
814 | Versatile Express | |
815 | M: Peter Maydell <[email protected]> | |
816 | L: [email protected] | |
817 | S: Maintained | |
818 | F: hw/arm/vexpress.c | |
819 | ||
820 | Versatile PB | |
821 | M: Peter Maydell <[email protected]> | |
822 | L: [email protected] | |
823 | S: Maintained | |
824 | F: hw/*/versatile* | |
825 | F: hw/misc/arm_sysctl.c | |
826 | F: docs/system/arm/versatile.rst | |
827 | ||
828 | Virt | |
829 | M: Peter Maydell <[email protected]> | |
830 | L: [email protected] | |
831 | S: Maintained | |
832 | F: hw/arm/virt* | |
833 | F: include/hw/arm/virt.h | |
834 | ||
835 | Xilinx Zynq | |
836 | M: Edgar E. Iglesias <[email protected]> | |
837 | M: Alistair Francis <[email protected]> | |
838 | M: Peter Maydell <[email protected]> | |
839 | L: [email protected] | |
840 | S: Maintained | |
841 | F: hw/*/xilinx_* | |
842 | F: hw/*/cadence_* | |
843 | F: hw/misc/zynq* | |
844 | F: include/hw/misc/zynq* | |
845 | X: hw/ssi/xilinx_* | |
846 | ||
847 | Xilinx ZynqMP | |
848 | M: Alistair Francis <[email protected]> | |
849 | M: Edgar E. Iglesias <[email protected]> | |
850 | M: Peter Maydell <[email protected]> | |
851 | L: [email protected] | |
852 | S: Maintained | |
853 | F: hw/*/xlnx*.c | |
854 | F: include/hw/*/xlnx*.h | |
855 | F: include/hw/ssi/xilinx_spips.h | |
856 | F: hw/display/dpcd.c | |
857 | F: include/hw/display/dpcd.h | |
858 | ||
859 | ARM ACPI Subsystem | |
860 | M: Shannon Zhao <[email protected]> | |
861 | L: [email protected] | |
862 | S: Maintained | |
863 | F: hw/arm/virt-acpi-build.c | |
864 | ||
865 | STM32F205 | |
866 | M: Alistair Francis <[email protected]> | |
867 | M: Peter Maydell <[email protected]> | |
868 | L: [email protected] | |
869 | S: Maintained | |
870 | F: hw/arm/stm32f205_soc.c | |
871 | F: hw/misc/stm32f2xx_syscfg.c | |
872 | F: hw/char/stm32f2xx_usart.c | |
873 | F: hw/timer/stm32f2xx_timer.c | |
874 | F: hw/adc/* | |
875 | F: hw/ssi/stm32f2xx_spi.c | |
876 | F: include/hw/*/stm32*.h | |
877 | ||
878 | STM32F405 | |
879 | M: Alistair Francis <[email protected]> | |
880 | M: Peter Maydell <[email protected]> | |
881 | L: [email protected] | |
882 | S: Maintained | |
883 | F: hw/arm/stm32f405_soc.c | |
884 | F: hw/misc/stm32f4xx_syscfg.c | |
885 | F: hw/misc/stm32f4xx_exti.c | |
886 | ||
887 | Netduino 2 | |
888 | M: Alistair Francis <[email protected]> | |
889 | M: Peter Maydell <[email protected]> | |
890 | L: [email protected] | |
891 | S: Maintained | |
892 | F: hw/arm/netduino2.c | |
893 | ||
894 | Netduino Plus 2 | |
895 | M: Alistair Francis <[email protected]> | |
896 | M: Peter Maydell <[email protected]> | |
897 | L: [email protected] | |
898 | S: Maintained | |
899 | F: hw/arm/netduinoplus2.c | |
900 | ||
901 | SmartFusion2 | |
902 | M: Subbaraya Sundeep <[email protected]> | |
903 | M: Peter Maydell <[email protected]> | |
904 | L: [email protected] | |
905 | S: Maintained | |
906 | F: hw/arm/msf2-soc.c | |
907 | F: hw/misc/msf2-sysreg.c | |
908 | F: hw/timer/mss-timer.c | |
909 | F: hw/ssi/mss-spi.c | |
910 | F: include/hw/arm/msf2-soc.h | |
911 | F: include/hw/misc/msf2-sysreg.h | |
912 | F: include/hw/timer/mss-timer.h | |
913 | F: include/hw/ssi/mss-spi.h | |
914 | ||
915 | Emcraft M2S-FG484 | |
916 | M: Subbaraya Sundeep <[email protected]> | |
917 | M: Peter Maydell <[email protected]> | |
918 | L: [email protected] | |
919 | S: Maintained | |
920 | F: hw/arm/msf2-som.c | |
921 | ||
922 | ASPEED BMCs | |
923 | M: Cédric Le Goater <[email protected]> | |
924 | M: Peter Maydell <[email protected]> | |
925 | R: Andrew Jeffery <[email protected]> | |
926 | R: Joel Stanley <[email protected]> | |
927 | L: [email protected] | |
928 | S: Maintained | |
929 | F: hw/*/*aspeed* | |
930 | F: hw/misc/pca9552.c | |
931 | F: include/hw/*/*aspeed* | |
932 | F: include/hw/misc/pca9552*.h | |
933 | F: hw/net/ftgmac100.c | |
934 | F: include/hw/net/ftgmac100.h | |
935 | ||
936 | NRF51 | |
937 | M: Joel Stanley <[email protected]> | |
938 | M: Peter Maydell <[email protected]> | |
939 | L: [email protected] | |
940 | S: Maintained | |
941 | F: hw/*/nrf51*.c | |
942 | F: hw/*/microbit*.c | |
943 | F: include/hw/*/nrf51*.h | |
944 | F: include/hw/*/microbit*.h | |
945 | F: tests/qtest/microbit-test.c | |
946 | ||
947 | CRIS Machines | |
948 | ------------- | |
949 | Axis Dev88 | |
950 | M: Edgar E. Iglesias <[email protected]> | |
951 | S: Maintained | |
952 | F: hw/cris/axis_dev88.c | |
953 | F: hw/*/etraxfs_*.c | |
954 | ||
955 | HP-PARISC Machines | |
956 | ------------------ | |
957 | HP B160L | |
958 | M: Richard Henderson <[email protected]> | |
959 | R: Helge Deller <[email protected]> | |
960 | S: Odd Fixes | |
961 | F: default-configs/hppa-softmmu.mak | |
962 | F: hw/hppa/ | |
963 | F: pc-bios/hppa-firmware.img | |
964 | ||
965 | LM32 Machines | |
966 | ------------- | |
967 | EVR32 and uclinux BSP | |
968 | M: Michael Walle <[email protected]> | |
969 | S: Maintained | |
970 | F: hw/lm32/lm32_boards.c | |
971 | ||
972 | milkymist | |
973 | M: Michael Walle <[email protected]> | |
974 | S: Maintained | |
975 | F: hw/lm32/milkymist.c | |
976 | ||
977 | M68K Machines | |
978 | ------------- | |
979 | an5206 | |
980 | M: Thomas Huth <[email protected]> | |
981 | S: Odd Fixes | |
982 | F: hw/m68k/an5206.c | |
983 | F: hw/m68k/mcf5206.c | |
984 | ||
985 | mcf5208 | |
986 | M: Thomas Huth <[email protected]> | |
987 | S: Odd Fixes | |
988 | F: hw/m68k/mcf5208.c | |
989 | F: hw/m68k/mcf_intc.c | |
990 | F: hw/char/mcf_uart.c | |
991 | F: hw/net/mcf_fec.c | |
992 | F: include/hw/m68k/mcf*.h | |
993 | ||
994 | NeXTcube | |
995 | M: Thomas Huth <[email protected]> | |
996 | S: Odd Fixes | |
997 | F: hw/m68k/next-*.c | |
998 | F: hw/display/next-fb.c | |
999 | F: include/hw/m68k/next-cube.h | |
1000 | ||
1001 | q800 | |
1002 | M: Laurent Vivier <[email protected]> | |
1003 | S: Maintained | |
1004 | F: hw/m68k/q800.c | |
1005 | F: hw/misc/mac_via.c | |
1006 | F: hw/nubus/* | |
1007 | F: hw/display/macfb.c | |
1008 | F: hw/block/swim.c | |
1009 | F: hw/m68k/bootinfo.h | |
1010 | F: include/hw/misc/mac_via.h | |
1011 | F: include/hw/nubus/* | |
1012 | F: include/hw/display/macfb.h | |
1013 | F: include/hw/block/swim.h | |
1014 | ||
1015 | MicroBlaze Machines | |
1016 | ------------------- | |
1017 | petalogix_s3adsp1800 | |
1018 | M: Edgar E. Iglesias <[email protected]> | |
1019 | S: Maintained | |
1020 | F: hw/microblaze/petalogix_s3adsp1800_mmu.c | |
1021 | F: include/hw/char/xilinx_uartlite.h | |
1022 | ||
1023 | petalogix_ml605 | |
1024 | M: Edgar E. Iglesias <[email protected]> | |
1025 | S: Maintained | |
1026 | F: hw/microblaze/petalogix_ml605_mmu.c | |
1027 | ||
1028 | MIPS Machines | |
1029 | ------------- | |
1030 | Jazz | |
1031 | M: Hervé Poussineau <[email protected]> | |
1032 | R: Aleksandar Rikalo <[email protected]> | |
1033 | S: Maintained | |
1034 | F: hw/mips/mips_jazz.c | |
1035 | F: hw/display/jazz_led.c | |
1036 | F: hw/dma/rc4030.c | |
1037 | ||
1038 | Malta | |
1039 | M: Aleksandar Markovic <[email protected]> | |
1040 | M: Philippe Mathieu-Daudé <[email protected]> | |
1041 | R: Aurelien Jarno <[email protected]> | |
1042 | S: Maintained | |
1043 | F: hw/isa/piix4.c | |
1044 | F: hw/acpi/piix4.c | |
1045 | F: hw/mips/mips_malta.c | |
1046 | F: hw/mips/gt64xxx_pci.c | |
1047 | F: include/hw/southbridge/piix.h | |
1048 | F: tests/acceptance/linux_ssh_mips_malta.py | |
1049 | F: tests/acceptance/machine_mips_malta.py | |
1050 | ||
1051 | Mipssim | |
1052 | M: Aleksandar Markovic <[email protected]> | |
1053 | R: Aleksandar Rikalo <[email protected]> | |
1054 | S: Odd Fixes | |
1055 | F: hw/mips/mips_mipssim.c | |
1056 | F: hw/net/mipsnet.c | |
1057 | ||
1058 | R4000 | |
1059 | M: Aleksandar Markovic <[email protected]> | |
1060 | R: Aurelien Jarno <[email protected]> | |
1061 | R: Aleksandar Rikalo <[email protected]> | |
1062 | S: Obsolete | |
1063 | F: hw/mips/mips_r4k.c | |
1064 | ||
1065 | Fulong 2E | |
1066 | M: Philippe Mathieu-Daudé <[email protected]> | |
1067 | M: Aleksandar Markovic <[email protected]> | |
1068 | S: Odd Fixes | |
1069 | F: hw/mips/mips_fulong2e.c | |
1070 | F: hw/isa/vt82c686.c | |
1071 | F: hw/pci-host/bonito.c | |
1072 | F: include/hw/isa/vt82c686.h | |
1073 | ||
1074 | Boston | |
1075 | M: Paul Burton <[email protected]> | |
1076 | R: Aleksandar Rikalo <[email protected]> | |
1077 | S: Maintained | |
1078 | F: hw/core/loader-fit.c | |
1079 | F: hw/mips/boston.c | |
1080 | F: hw/pci-host/xilinx-pcie.c | |
1081 | F: include/hw/pci-host/xilinx-pcie.h | |
1082 | ||
1083 | OpenRISC Machines | |
1084 | ----------------- | |
1085 | or1k-sim | |
1086 | M: Jia Liu <[email protected]> | |
1087 | S: Maintained | |
1088 | F: hw/openrisc/openrisc_sim.c | |
1089 | ||
1090 | PowerPC Machines | |
1091 | ---------------- | |
1092 | 405 | |
1093 | M: David Gibson <[email protected]> | |
1094 | L: [email protected] | |
1095 | S: Odd Fixes | |
1096 | F: hw/ppc/ppc405_boards.c | |
1097 | ||
1098 | Bamboo | |
1099 | M: David Gibson <[email protected]> | |
1100 | L: [email protected] | |
1101 | S: Odd Fixes | |
1102 | F: hw/ppc/ppc440_bamboo.c | |
1103 | ||
1104 | e500 | |
1105 | M: David Gibson <[email protected]> | |
1106 | L: [email protected] | |
1107 | S: Odd Fixes | |
1108 | F: hw/ppc/e500* | |
1109 | F: hw/gpio/mpc8xxx.c | |
1110 | F: hw/i2c/mpc_i2c.c | |
1111 | F: hw/net/fsl_etsec/ | |
1112 | F: hw/pci-host/ppce500.c | |
1113 | F: include/hw/ppc/ppc_e500.h | |
1114 | F: include/hw/pci-host/ppce500.h | |
1115 | F: pc-bios/u-boot.e500 | |
1116 | ||
1117 | mpc8544ds | |
1118 | M: David Gibson <[email protected]> | |
1119 | L: [email protected] | |
1120 | S: Odd Fixes | |
1121 | F: hw/ppc/mpc8544ds.c | |
1122 | F: hw/ppc/mpc8544_guts.c | |
1123 | ||
1124 | New World (mac99) | |
1125 | M: Mark Cave-Ayland <[email protected]> | |
1126 | R: David Gibson <[email protected]> | |
1127 | L: [email protected] | |
1128 | S: Odd Fixes | |
1129 | F: hw/ppc/mac_newworld.c | |
1130 | F: hw/pci-host/uninorth.c | |
1131 | F: hw/pci-bridge/dec.[hc] | |
1132 | F: hw/misc/macio/ | |
1133 | F: hw/misc/mos6522.c | |
1134 | F: hw/nvram/mac_nvram.c | |
1135 | F: hw/input/adb* | |
1136 | F: include/hw/misc/macio/ | |
1137 | F: include/hw/misc/mos6522.h | |
1138 | F: include/hw/ppc/mac_dbdma.h | |
1139 | F: include/hw/pci-host/uninorth.h | |
1140 | F: include/hw/input/adb* | |
1141 | F: pc-bios/qemu_vga.ndrv | |
1142 | ||
1143 | Old World (g3beige) | |
1144 | M: Mark Cave-Ayland <[email protected]> | |
1145 | R: David Gibson <[email protected]> | |
1146 | L: [email protected] | |
1147 | S: Odd Fixes | |
1148 | F: hw/ppc/mac_oldworld.c | |
1149 | F: hw/pci-host/grackle.c | |
1150 | F: hw/misc/macio/ | |
1151 | F: hw/intc/heathrow_pic.c | |
1152 | F: hw/input/adb* | |
1153 | F: include/hw/intc/heathrow_pic.h | |
1154 | F: include/hw/input/adb* | |
1155 | F: pc-bios/qemu_vga.ndrv | |
1156 | ||
1157 | PReP | |
1158 | M: Hervé Poussineau <[email protected]> | |
1159 | L: [email protected] | |
1160 | S: Maintained | |
1161 | F: hw/ppc/prep.c | |
1162 | F: hw/ppc/prep_systemio.c | |
1163 | F: hw/ppc/rs6000_mc.c | |
1164 | F: hw/pci-host/prep.[hc] | |
1165 | F: hw/isa/i82378.c | |
1166 | F: hw/isa/pc87312.c | |
1167 | F: hw/dma/i82374.c | |
1168 | F: hw/rtc/m48t59-isa.c | |
1169 | F: include/hw/isa/pc87312.h | |
1170 | F: include/hw/rtc/m48t59.h | |
1171 | F: tests/acceptance/ppc_prep_40p.py | |
1172 | ||
1173 | sPAPR | |
1174 | M: David Gibson <[email protected]> | |
1175 | L: [email protected] | |
1176 | S: Supported | |
1177 | F: hw/*/spapr* | |
1178 | F: include/hw/*/spapr* | |
1179 | F: hw/*/xics* | |
1180 | F: include/hw/*/xics* | |
1181 | F: pc-bios/slof.bin | |
1182 | F: docs/specs/ppc-spapr-hcalls.txt | |
1183 | F: docs/specs/ppc-spapr-hotplug.txt | |
1184 | F: tests/qtest/spapr* | |
1185 | F: tests/qtest/libqos/*spapr* | |
1186 | F: tests/qtest/rtas* | |
1187 | F: tests/qtest/libqos/rtas* | |
1188 | ||
1189 | PowerNV (Non-Virtualized) | |
1190 | M: Cédric Le Goater <[email protected]> | |
1191 | M: David Gibson <[email protected]> | |
1192 | L: [email protected] | |
1193 | S: Maintained | |
1194 | F: hw/ppc/pnv* | |
1195 | F: hw/intc/pnv* | |
1196 | F: hw/intc/xics_pnv.c | |
1197 | F: include/hw/ppc/pnv* | |
1198 | F: pc-bios/skiboot.lid | |
1199 | F: tests/qtest/pnv* | |
1200 | ||
1201 | virtex_ml507 | |
1202 | M: Edgar E. Iglesias <[email protected]> | |
1203 | L: [email protected] | |
1204 | S: Odd Fixes | |
1205 | F: hw/ppc/virtex_ml507.c | |
1206 | ||
1207 | sam460ex | |
1208 | M: BALATON Zoltan <[email protected]> | |
1209 | L: [email protected] | |
1210 | S: Maintained | |
1211 | F: hw/ppc/sam460ex.c | |
1212 | F: hw/ppc/ppc440_pcix.c | |
1213 | F: hw/display/sm501* | |
1214 | F: hw/ide/sii3112.c | |
1215 | F: hw/rtc/m41t80.c | |
1216 | F: pc-bios/canyonlands.dt[sb] | |
1217 | F: pc-bios/u-boot-sam460ex-20100605.bin | |
1218 | F: roms/u-boot-sam460ex | |
1219 | ||
1220 | SH4 Machines | |
1221 | ------------ | |
1222 | R2D | |
1223 | M: Magnus Damm <[email protected]> | |
1224 | S: Maintained | |
1225 | F: hw/sh4/r2d.c | |
1226 | F: hw/intc/sh_intc.c | |
1227 | F: hw/timer/sh_timer.c | |
1228 | ||
1229 | Shix | |
1230 | M: Magnus Damm <[email protected]> | |
1231 | S: Odd Fixes | |
1232 | F: hw/sh4/shix.c | |
1233 | ||
1234 | SPARC Machines | |
1235 | -------------- | |
1236 | Sun4m | |
1237 | M: Mark Cave-Ayland <[email protected]> | |
1238 | S: Maintained | |
1239 | F: hw/sparc/sun4m.c | |
1240 | F: hw/sparc/sun4m_iommu.c | |
1241 | F: hw/display/cg3.c | |
1242 | F: hw/display/tcx.c | |
1243 | F: hw/dma/sparc32_dma.c | |
1244 | F: hw/misc/eccmemctl.c | |
1245 | F: hw/*/slavio_*.c | |
1246 | F: include/hw/nvram/sun_nvram.h | |
1247 | F: include/hw/sparc/sparc32_dma.h | |
1248 | F: include/hw/sparc/sun4m_iommu.h | |
1249 | F: pc-bios/openbios-sparc32 | |
1250 | ||
1251 | Sun4u | |
1252 | M: Mark Cave-Ayland <[email protected]> | |
1253 | S: Maintained | |
1254 | F: hw/sparc64/sun4u.c | |
1255 | F: hw/sparc64/sun4u_iommu.c | |
1256 | F: include/hw/sparc/sun4u_iommu.h | |
1257 | F: hw/pci-host/sabre.c | |
1258 | F: include/hw/pci-host/sabre.h | |
1259 | F: hw/pci-bridge/simba.c | |
1260 | F: include/hw/pci-bridge/simba.h | |
1261 | F: pc-bios/openbios-sparc64 | |
1262 | ||
1263 | Sun4v | |
1264 | M: Artyom Tarasenko <[email protected]> | |
1265 | S: Maintained | |
1266 | F: hw/sparc64/niagara.c | |
1267 | F: hw/rtc/sun4v-rtc.c | |
1268 | F: include/hw/rtc/sun4v-rtc.h | |
1269 | ||
1270 | Leon3 | |
1271 | M: Fabien Chouteau <[email protected]> | |
1272 | M: KONRAD Frederic <[email protected]> | |
1273 | S: Maintained | |
1274 | F: hw/sparc/leon3.c | |
1275 | F: hw/*/grlib* | |
1276 | F: include/hw/*/grlib* | |
1277 | F: tests/acceptance/machine_sparc_leon3.py | |
1278 | ||
1279 | S390 Machines | |
1280 | ------------- | |
1281 | S390 Virtio-ccw | |
1282 | M: Cornelia Huck <[email protected]> | |
1283 | M: Halil Pasic <[email protected]> | |
1284 | M: Christian Borntraeger <[email protected]> | |
1285 | S: Supported | |
1286 | F: hw/char/sclp*.[hc] | |
1287 | F: hw/char/terminal3270.c | |
1288 | F: hw/s390x/ | |
1289 | F: include/hw/s390x/ | |
1290 | F: hw/watchdog/wdt_diag288.c | |
1291 | F: include/hw/watchdog/wdt_diag288.h | |
1292 | F: default-configs/s390x-softmmu.mak | |
1293 | T: git https://github.com/cohuck/qemu.git s390-next | |
1294 | T: git https://github.com/borntraeger/qemu.git s390-next | |
1295 | L: [email protected] | |
1296 | ||
1297 | S390-ccw boot | |
1298 | M: Christian Borntraeger <[email protected]> | |
1299 | M: Thomas Huth <[email protected]> | |
1300 | S: Supported | |
1301 | F: hw/s390x/ipl.* | |
1302 | F: pc-bios/s390-ccw/ | |
1303 | F: pc-bios/s390-ccw.img | |
1304 | F: docs/devel/s390-dasd-ipl.rst | |
1305 | T: git https://github.com/borntraeger/qemu.git s390-next | |
1306 | L: [email protected] | |
1307 | ||
1308 | S390 PCI | |
1309 | M: Matthew Rosato <[email protected]> | |
1310 | S: Supported | |
1311 | F: hw/s390x/s390-pci* | |
1312 | L: [email protected] | |
1313 | ||
1314 | UniCore32 Machines | |
1315 | ------------------ | |
1316 | PKUnity-3 SoC initramfs-with-busybox | |
1317 | M: Guan Xuetao <[email protected]> | |
1318 | S: Maintained | |
1319 | F: hw/*/puv3* | |
1320 | F: hw/unicore32/ | |
1321 | ||
1322 | X86 Machines | |
1323 | ------------ | |
1324 | PC | |
1325 | M: Michael S. Tsirkin <[email protected]> | |
1326 | M: Marcel Apfelbaum <[email protected]> | |
1327 | S: Supported | |
1328 | F: include/hw/i386/ | |
1329 | F: hw/i386/ | |
1330 | F: hw/pci-host/i440fx.c | |
1331 | F: hw/pci-host/q35.c | |
1332 | F: hw/pci-host/pam.c | |
1333 | F: include/hw/pci-host/i440fx.h | |
1334 | F: include/hw/pci-host/q35.h | |
1335 | F: include/hw/pci-host/pam.h | |
1336 | F: hw/isa/piix3.c | |
1337 | F: hw/isa/lpc_ich9.c | |
1338 | F: hw/i2c/smbus_ich9.c | |
1339 | F: hw/acpi/piix4.c | |
1340 | F: hw/acpi/ich9.c | |
1341 | F: include/hw/acpi/ich9.h | |
1342 | F: include/hw/southbridge/piix.h | |
1343 | F: hw/misc/sga.c | |
1344 | F: hw/isa/apm.c | |
1345 | F: include/hw/isa/apm.h | |
1346 | F: tests/test-x86-cpuid.c | |
1347 | F: tests/qtest/test-x86-cpuid-compat.c | |
1348 | ||
1349 | PC Chipset | |
1350 | M: Michael S. Tsirkin <[email protected]> | |
1351 | M: Paolo Bonzini <[email protected]> | |
1352 | S: Supported | |
1353 | F: hw/char/debugcon.c | |
1354 | F: hw/char/parallel* | |
1355 | F: hw/char/serial* | |
1356 | F: hw/dma/i8257* | |
1357 | F: hw/i2c/pm_smbus.c | |
1358 | F: hw/input/pckbd.c | |
1359 | F: hw/intc/apic* | |
1360 | F: hw/intc/ioapic* | |
1361 | F: hw/intc/i8259* | |
1362 | F: hw/isa/isa-superio.c | |
1363 | F: hw/misc/debugexit.c | |
1364 | F: hw/misc/pc-testdev.c | |
1365 | F: hw/timer/hpet* | |
1366 | F: hw/timer/i8254* | |
1367 | F: hw/rtc/mc146818rtc* | |
1368 | F: hw/watchdog/wdt_ib700.c | |
1369 | F: hw/watchdog/wdt_i6300esb.c | |
1370 | F: include/hw/display/vga.h | |
1371 | F: include/hw/char/parallel.h | |
1372 | F: include/hw/dma/i8257.h | |
1373 | F: include/hw/i2c/pm_smbus.h | |
1374 | F: include/hw/input/i8042.h | |
1375 | F: include/hw/isa/i8259_internal.h | |
1376 | F: include/hw/isa/superio.h | |
1377 | F: include/hw/timer/hpet.h | |
1378 | F: include/hw/timer/i8254* | |
1379 | F: include/hw/rtc/mc146818rtc* | |
1380 | ||
1381 | microvm | |
1382 | M: Sergio Lopez <[email protected]> | |
1383 | M: Paolo Bonzini <[email protected]> | |
1384 | S: Maintained | |
1385 | F: docs/microvm.rst | |
1386 | F: hw/i386/microvm.c | |
1387 | F: include/hw/i386/microvm.h | |
1388 | F: pc-bios/bios-microvm.bin | |
1389 | ||
1390 | Machine core | |
1391 | M: Eduardo Habkost <[email protected]> | |
1392 | M: Marcel Apfelbaum <[email protected]> | |
1393 | S: Supported | |
1394 | F: hw/core/cpu.c | |
1395 | F: hw/core/machine-qmp-cmds.c | |
1396 | F: hw/core/machine.c | |
1397 | F: hw/core/null-machine.c | |
1398 | F: hw/core/numa.c | |
1399 | F: hw/cpu/cluster.c | |
1400 | F: qapi/machine.json | |
1401 | F: qapi/machine-target.json | |
1402 | F: include/hw/boards.h | |
1403 | F: include/hw/core/cpu.h | |
1404 | F: include/hw/cpu/cluster.h | |
1405 | F: include/sysemu/numa.h | |
1406 | T: git https://github.com/ehabkost/qemu.git machine-next | |
1407 | ||
1408 | Xtensa Machines | |
1409 | --------------- | |
1410 | sim | |
1411 | M: Max Filippov <[email protected]> | |
1412 | S: Maintained | |
1413 | F: hw/xtensa/sim.c | |
1414 | ||
1415 | virt | |
1416 | M: Max Filippov <[email protected]> | |
1417 | S: Maintained | |
1418 | F: hw/xtensa/virt.c | |
1419 | ||
1420 | XTFPGA (LX60, LX200, ML605, KC705) | |
1421 | M: Max Filippov <[email protected]> | |
1422 | S: Maintained | |
1423 | F: hw/xtensa/xtfpga.c | |
1424 | F: hw/net/opencores_eth.c | |
1425 | ||
1426 | Devices | |
1427 | ------- | |
1428 | EDU | |
1429 | M: Jiri Slaby <[email protected]> | |
1430 | S: Maintained | |
1431 | F: hw/misc/edu.c | |
1432 | ||
1433 | IDE | |
1434 | M: John Snow <[email protected]> | |
1435 | L: [email protected] | |
1436 | S: Supported | |
1437 | F: include/hw/ide.h | |
1438 | F: include/hw/ide/ | |
1439 | F: hw/ide/ | |
1440 | F: hw/block/block.c | |
1441 | F: hw/block/cdrom.c | |
1442 | F: hw/block/hd-geometry.c | |
1443 | F: tests/qtest/ide-test.c | |
1444 | F: tests/qtest/ahci-test.c | |
1445 | F: tests/qtest/cdrom-test.c | |
1446 | F: tests/qtest/libqos/ahci* | |
1447 | T: git https://github.com/jnsnow/qemu.git ide | |
1448 | ||
1449 | IPMI | |
1450 | M: Corey Minyard <[email protected]> | |
1451 | S: Maintained | |
1452 | F: include/hw/ipmi/* | |
1453 | F: hw/ipmi/* | |
1454 | F: hw/smbios/smbios_type_38.c | |
1455 | F: tests/qtest/ipmi* | |
1456 | T: git https://github.com/cminyard/qemu.git master-ipmi-rebase | |
1457 | ||
1458 | Floppy | |
1459 | M: John Snow <[email protected]> | |
1460 | L: [email protected] | |
1461 | S: Supported | |
1462 | F: hw/block/fdc.c | |
1463 | F: include/hw/block/fdc.h | |
1464 | F: tests/qtest/fdc-test.c | |
1465 | T: git https://github.com/jnsnow/qemu.git ide | |
1466 | ||
1467 | OMAP | |
1468 | M: Peter Maydell <[email protected]> | |
1469 | L: [email protected] | |
1470 | S: Maintained | |
1471 | F: hw/*/omap* | |
1472 | F: include/hw/arm/omap.h | |
1473 | ||
1474 | IPack | |
1475 | M: Alberto Garcia <[email protected]> | |
1476 | S: Odd Fixes | |
1477 | F: hw/char/ipoctal232.c | |
1478 | F: hw/ipack/ | |
1479 | ||
1480 | PCI | |
1481 | M: Michael S. Tsirkin <[email protected]> | |
1482 | M: Marcel Apfelbaum <[email protected]> | |
1483 | S: Supported | |
1484 | F: include/hw/pci/* | |
1485 | F: hw/misc/pci-testdev.c | |
1486 | F: hw/pci/* | |
1487 | F: hw/pci-bridge/* | |
1488 | F: docs/pci* | |
1489 | F: docs/specs/*pci* | |
1490 | F: default-configs/pci.mak | |
1491 | ||
1492 | ACPI/SMBIOS | |
1493 | M: Michael S. Tsirkin <[email protected]> | |
1494 | M: Igor Mammedov <[email protected]> | |
1495 | S: Supported | |
1496 | F: include/hw/acpi/* | |
1497 | F: include/hw/firmware/smbios.h | |
1498 | F: hw/mem/* | |
1499 | F: hw/acpi/* | |
1500 | F: hw/smbios/* | |
1501 | F: hw/i386/acpi-build.[hc] | |
1502 | F: hw/arm/virt-acpi-build.c | |
1503 | F: tests/qtest/bios-tables-test.c | |
1504 | F: tests/qtest/acpi-utils.[hc] | |
1505 | F: tests/data/acpi/ | |
1506 | ||
1507 | ppc4xx | |
1508 | M: David Gibson <[email protected]> | |
1509 | L: [email protected] | |
1510 | S: Odd Fixes | |
1511 | F: hw/ppc/ppc4*.c | |
1512 | F: hw/i2c/ppc4xx_i2c.c | |
1513 | F: include/hw/ppc/ppc4xx.h | |
1514 | F: include/hw/i2c/ppc4xx_i2c.h | |
1515 | ||
1516 | Character devices | |
1517 | M: Marc-André Lureau <[email protected]> | |
1518 | R: Paolo Bonzini <[email protected]> | |
1519 | S: Odd Fixes | |
1520 | F: hw/char/ | |
1521 | ||
1522 | Network devices | |
1523 | M: Jason Wang <[email protected]> | |
1524 | S: Odd Fixes | |
1525 | F: hw/net/ | |
1526 | F: include/hw/net/ | |
1527 | F: tests/qtest/virtio-net-test.c | |
1528 | F: docs/virtio-net-failover.rst | |
1529 | T: git https://github.com/jasowang/qemu.git net | |
1530 | ||
1531 | Parallel NOR Flash devices | |
1532 | M: Philippe Mathieu-Daudé <[email protected]> | |
1533 | T: git https://gitlab.com/philmd/qemu.git pflash-next | |
1534 | S: Maintained | |
1535 | F: hw/block/pflash_cfi*.c | |
1536 | F: include/hw/block/flash.h | |
1537 | ||
1538 | SCSI | |
1539 | M: Paolo Bonzini <[email protected]> | |
1540 | R: Fam Zheng <[email protected]> | |
1541 | S: Supported | |
1542 | F: include/hw/scsi/* | |
1543 | F: hw/scsi/* | |
1544 | F: tests/qtest/virtio-scsi-test.c | |
1545 | T: git https://github.com/bonzini/qemu.git scsi-next | |
1546 | ||
1547 | SSI | |
1548 | M: Alistair Francis <[email protected]> | |
1549 | S: Maintained | |
1550 | F: hw/ssi/* | |
1551 | F: hw/block/m25p80.c | |
1552 | F: include/hw/ssi/ssi.h | |
1553 | X: hw/ssi/xilinx_* | |
1554 | F: tests/qtest/m25p80-test.c | |
1555 | ||
1556 | Xilinx SPI | |
1557 | M: Alistair Francis <[email protected]> | |
1558 | S: Maintained | |
1559 | F: hw/ssi/xilinx_* | |
1560 | ||
1561 | SD (Secure Card) | |
1562 | M: Philippe Mathieu-Daudé <[email protected]> | |
1563 | S: Odd Fixes | |
1564 | F: include/hw/sd/sd* | |
1565 | F: hw/sd/core.c | |
1566 | F: hw/sd/sd* | |
1567 | F: hw/sd/ssi-sd.c | |
1568 | F: tests/qtest/sd* | |
1569 | ||
1570 | USB | |
1571 | M: Gerd Hoffmann <[email protected]> | |
1572 | S: Maintained | |
1573 | F: hw/usb/* | |
1574 | F: tests/qtest/usb-*-test.c | |
1575 | F: docs/usb2.txt | |
1576 | F: docs/usb-storage.txt | |
1577 | F: include/hw/usb.h | |
1578 | F: include/hw/usb/ | |
1579 | F: default-configs/usb.mak | |
1580 | ||
1581 | USB (serial adapter) | |
1582 | M: Gerd Hoffmann <[email protected]> | |
1583 | M: Samuel Thibault <[email protected]> | |
1584 | S: Maintained | |
1585 | F: hw/usb/dev-serial.c | |
1586 | ||
1587 | VFIO | |
1588 | M: Alex Williamson <[email protected]> | |
1589 | S: Supported | |
1590 | F: hw/vfio/* | |
1591 | F: include/hw/vfio/ | |
1592 | ||
1593 | vfio-ccw | |
1594 | M: Cornelia Huck <[email protected]> | |
1595 | M: Eric Farman <[email protected]> | |
1596 | S: Supported | |
1597 | F: hw/vfio/ccw.c | |
1598 | F: hw/s390x/s390-ccw.c | |
1599 | F: include/hw/s390x/s390-ccw.h | |
1600 | F: include/hw/s390x/vfio-ccw.h | |
1601 | T: git https://github.com/cohuck/qemu.git s390-next | |
1602 | L: [email protected] | |
1603 | ||
1604 | vfio-ap | |
1605 | M: Christian Borntraeger <[email protected]> | |
1606 | M: Tony Krowiak <[email protected]> | |
1607 | M: Halil Pasic <[email protected]> | |
1608 | M: Pierre Morel <[email protected]> | |
1609 | S: Supported | |
1610 | F: hw/s390x/ap-device.c | |
1611 | F: hw/s390x/ap-bridge.c | |
1612 | F: include/hw/s390x/ap-device.h | |
1613 | F: include/hw/s390x/ap-bridge.h | |
1614 | F: hw/vfio/ap.c | |
1615 | F: docs/system/s390x/vfio-ap.rst | |
1616 | L: [email protected] | |
1617 | ||
1618 | vhost | |
1619 | M: Michael S. Tsirkin <[email protected]> | |
1620 | S: Supported | |
1621 | F: hw/*/*vhost* | |
1622 | F: docs/interop/vhost-user.json | |
1623 | F: docs/interop/vhost-user.rst | |
1624 | F: contrib/vhost-user-*/ | |
1625 | F: backends/vhost-user.c | |
1626 | F: include/sysemu/vhost-user-backend.h | |
1627 | ||
1628 | virtio | |
1629 | M: Michael S. Tsirkin <[email protected]> | |
1630 | S: Supported | |
1631 | F: hw/*/virtio* | |
1632 | F: hw/virtio/Makefile.objs | |
1633 | F: hw/virtio/trace-events | |
1634 | F: net/vhost-user.c | |
1635 | F: include/hw/virtio/ | |
1636 | ||
1637 | virtio-9p | |
1638 | M: Greg Kurz <[email protected]> | |
1639 | R: Christian Schoenebeck <[email protected]> | |
1640 | S: Odd Fixes | |
1641 | F: hw/9pfs/ | |
1642 | X: hw/9pfs/xen-9p* | |
1643 | F: fsdev/ | |
1644 | F: docs/interop/virtfs-proxy-helper.rst | |
1645 | F: tests/qtest/virtio-9p-test.c | |
1646 | T: git https://github.com/gkurz/qemu.git 9p-next | |
1647 | ||
1648 | virtio-blk | |
1649 | M: Stefan Hajnoczi <[email protected]> | |
1650 | L: [email protected] | |
1651 | S: Supported | |
1652 | F: hw/block/virtio-blk.c | |
1653 | F: hw/block/dataplane/* | |
1654 | F: tests/qtest/virtio-blk-test.c | |
1655 | T: git https://github.com/stefanha/qemu.git block | |
1656 | ||
1657 | virtio-ccw | |
1658 | M: Cornelia Huck <[email protected]> | |
1659 | M: Halil Pasic <[email protected]> | |
1660 | S: Supported | |
1661 | F: hw/s390x/virtio-ccw*.[hc] | |
1662 | F: hw/s390x/vhost-vsock-ccw.c | |
1663 | T: git https://github.com/cohuck/qemu.git s390-next | |
1664 | T: git https://github.com/borntraeger/qemu.git s390-next | |
1665 | L: [email protected] | |
1666 | ||
1667 | virtiofs | |
1668 | M: Dr. David Alan Gilbert <[email protected]> | |
1669 | M: Stefan Hajnoczi <[email protected]> | |
1670 | S: Supported | |
1671 | F: tools/virtiofsd/* | |
1672 | F: hw/virtio/vhost-user-fs* | |
1673 | F: include/hw/virtio/vhost-user-fs.h | |
1674 | F: docs/interop/virtiofsd.rst | |
1675 | ||
1676 | virtio-input | |
1677 | M: Gerd Hoffmann <[email protected]> | |
1678 | S: Maintained | |
1679 | F: hw/input/vhost-user-input.c | |
1680 | F: hw/input/virtio-input*.c | |
1681 | F: include/hw/virtio/virtio-input.h | |
1682 | F: contrib/vhost-user-input/* | |
1683 | ||
1684 | virtio-iommu | |
1685 | M: Eric Auger <[email protected]> | |
1686 | S: Maintained | |
1687 | F: hw/virtio/virtio-iommu*.c | |
1688 | F: include/hw/virtio/virtio-iommu.h | |
1689 | ||
1690 | virtio-serial | |
1691 | M: Laurent Vivier <[email protected]> | |
1692 | R: Amit Shah <[email protected]> | |
1693 | S: Supported | |
1694 | F: hw/char/virtio-serial-bus.c | |
1695 | F: hw/char/virtio-console.c | |
1696 | F: include/hw/virtio/virtio-serial.h | |
1697 | F: tests/qtest/virtio-serial-test.c | |
1698 | ||
1699 | virtio-rng | |
1700 | M: Laurent Vivier <[email protected]> | |
1701 | R: Amit Shah <[email protected]> | |
1702 | S: Supported | |
1703 | F: hw/virtio/virtio-rng.c | |
1704 | F: include/hw/virtio/virtio-rng.h | |
1705 | F: include/sysemu/rng*.h | |
1706 | F: backends/rng*.c | |
1707 | F: tests/qtest/virtio-rng-test.c | |
1708 | ||
1709 | virtio-crypto | |
1710 | M: Gonglei <[email protected]> | |
1711 | S: Supported | |
1712 | F: hw/virtio/virtio-crypto.c | |
1713 | F: hw/virtio/virtio-crypto-pci.c | |
1714 | F: include/hw/virtio/virtio-crypto.h | |
1715 | ||
1716 | nvme | |
1717 | M: Keith Busch <[email protected]> | |
1718 | L: [email protected] | |
1719 | S: Supported | |
1720 | F: hw/block/nvme* | |
1721 | F: tests/qtest/nvme-test.c | |
1722 | ||
1723 | megasas | |
1724 | M: Hannes Reinecke <[email protected]> | |
1725 | L: [email protected] | |
1726 | S: Supported | |
1727 | F: hw/scsi/megasas.c | |
1728 | F: hw/scsi/mfi.h | |
1729 | F: tests/qtest/megasas-test.c | |
1730 | ||
1731 | Network packet abstractions | |
1732 | M: Dmitry Fleytman <[email protected]> | |
1733 | S: Maintained | |
1734 | F: include/net/eth.h | |
1735 | F: net/eth.c | |
1736 | F: hw/net/net_rx_pkt* | |
1737 | F: hw/net/net_tx_pkt* | |
1738 | ||
1739 | Vmware | |
1740 | M: Dmitry Fleytman <[email protected]> | |
1741 | S: Maintained | |
1742 | F: hw/net/vmxnet* | |
1743 | F: hw/scsi/vmw_pvscsi* | |
1744 | F: tests/qtest/vmxnet3-test.c | |
1745 | ||
1746 | Rocker | |
1747 | M: Jiri Pirko <[email protected]> | |
1748 | S: Maintained | |
1749 | F: hw/net/rocker/ | |
1750 | F: tests/rocker/ | |
1751 | F: docs/specs/rocker.txt | |
1752 | ||
1753 | NVDIMM | |
1754 | M: Xiao Guangrong <[email protected]> | |
1755 | S: Maintained | |
1756 | F: hw/acpi/nvdimm.c | |
1757 | F: hw/mem/nvdimm.c | |
1758 | F: include/hw/mem/nvdimm.h | |
1759 | F: docs/nvdimm.txt | |
1760 | ||
1761 | e1000x | |
1762 | M: Dmitry Fleytman <[email protected]> | |
1763 | S: Maintained | |
1764 | F: hw/net/e1000x* | |
1765 | ||
1766 | e1000e | |
1767 | M: Dmitry Fleytman <[email protected]> | |
1768 | S: Maintained | |
1769 | F: hw/net/e1000e* | |
1770 | ||
1771 | eepro100 | |
1772 | M: Stefan Weil <[email protected]> | |
1773 | S: Maintained | |
1774 | F: hw/net/eepro100.c | |
1775 | ||
1776 | tulip | |
1777 | M: Sven Schnelle <[email protected]> | |
1778 | S: Maintained | |
1779 | F: hw/net/tulip.c | |
1780 | F: hw/net/tulip.h | |
1781 | ||
1782 | Generic Loader | |
1783 | M: Alistair Francis <[email protected]> | |
1784 | S: Maintained | |
1785 | F: hw/core/generic-loader.c | |
1786 | F: include/hw/core/generic-loader.h | |
1787 | F: docs/generic-loader.txt | |
1788 | ||
1789 | Intel Hexadecimal Object File Loader | |
1790 | M: Su Hang <[email protected]> | |
1791 | S: Maintained | |
1792 | F: tests/qtest/hexloader-test.c | |
1793 | F: tests/data/hex-loader/test.hex | |
1794 | ||
1795 | CHRP NVRAM | |
1796 | M: Thomas Huth <[email protected]> | |
1797 | S: Maintained | |
1798 | F: hw/nvram/chrp_nvram.c | |
1799 | F: include/hw/nvram/chrp_nvram.h | |
1800 | F: tests/qtest/prom-env-test.c | |
1801 | ||
1802 | VM Generation ID | |
1803 | M: Ben Warren <[email protected]> | |
1804 | S: Maintained | |
1805 | F: hw/acpi/vmgenid.c | |
1806 | F: include/hw/acpi/vmgenid.h | |
1807 | F: docs/specs/vmgenid.txt | |
1808 | F: tests/qtest/vmgenid-test.c | |
1809 | F: stubs/vmgenid.c | |
1810 | ||
1811 | Unimplemented device | |
1812 | M: Peter Maydell <[email protected]> | |
1813 | R: Philippe Mathieu-Daudé <[email protected]> | |
1814 | S: Maintained | |
1815 | F: include/hw/misc/unimp.h | |
1816 | F: hw/misc/unimp.c | |
1817 | ||
1818 | Standard VGA | |
1819 | M: Gerd Hoffmann <[email protected]> | |
1820 | S: Maintained | |
1821 | F: hw/display/vga* | |
1822 | F: hw/display/bochs-display.c | |
1823 | F: include/hw/display/vga.h | |
1824 | F: include/hw/display/bochs-vbe.h | |
1825 | ||
1826 | ramfb | |
1827 | M: Gerd Hoffmann <[email protected]> | |
1828 | S: Maintained | |
1829 | F: hw/display/ramfb*.c | |
1830 | F: include/hw/display/ramfb.h | |
1831 | ||
1832 | virtio-gpu | |
1833 | M: Gerd Hoffmann <[email protected]> | |
1834 | S: Maintained | |
1835 | F: hw/display/virtio-gpu* | |
1836 | F: hw/display/virtio-vga.* | |
1837 | F: include/hw/virtio/virtio-gpu.h | |
1838 | ||
1839 | vhost-user-gpu | |
1840 | M: Marc-André Lureau <[email protected]> | |
1841 | M: Gerd Hoffmann <[email protected]> | |
1842 | S: Maintained | |
1843 | F: docs/interop/vhost-user-gpu.rst | |
1844 | F: contrib/vhost-user-gpu | |
1845 | F: hw/display/vhost-user-* | |
1846 | ||
1847 | Cirrus VGA | |
1848 | M: Gerd Hoffmann <[email protected]> | |
1849 | S: Odd Fixes | |
1850 | W: https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/ | |
1851 | F: hw/display/cirrus* | |
1852 | ||
1853 | EDID Generator | |
1854 | M: Gerd Hoffmann <[email protected]> | |
1855 | S: Maintained | |
1856 | F: hw/display/edid* | |
1857 | F: include/hw/display/edid.h | |
1858 | F: qemu-edid.c | |
1859 | ||
1860 | PIIX4 South Bridge (i82371AB) | |
1861 | M: Hervé Poussineau <[email protected]> | |
1862 | M: Philippe Mathieu-Daudé <[email protected]> | |
1863 | S: Maintained | |
1864 | F: hw/isa/piix4.c | |
1865 | F: include/hw/southbridge/piix.h | |
1866 | ||
1867 | Firmware configuration (fw_cfg) | |
1868 | M: Philippe Mathieu-Daudé <[email protected]> | |
1869 | R: Laszlo Ersek <[email protected]> | |
1870 | R: Gerd Hoffmann <[email protected]> | |
1871 | S: Supported | |
1872 | F: docs/specs/fw_cfg.txt | |
1873 | F: hw/nvram/fw_cfg.c | |
1874 | F: stubs/fw_cfg.c | |
1875 | F: include/hw/nvram/fw_cfg.h | |
1876 | F: include/standard-headers/linux/qemu_fw_cfg.h | |
1877 | F: tests/qtest/libqos/fw_cfg.c | |
1878 | F: tests/qtest/fw_cfg-test.c | |
1879 | T: git https://github.com/philmd/qemu.git fw_cfg-next | |
1880 | ||
1881 | XIVE | |
1882 | M: David Gibson <[email protected]> | |
1883 | M: Cédric Le Goater <[email protected]> | |
1884 | L: [email protected] | |
1885 | S: Supported | |
1886 | F: hw/*/*xive* | |
1887 | F: include/hw/*/*xive* | |
1888 | F: docs/*/*xive* | |
1889 | ||
1890 | Subsystems | |
1891 | ---------- | |
1892 | Audio | |
1893 | M: Gerd Hoffmann <[email protected]> | |
1894 | S: Maintained | |
1895 | F: audio/ | |
1896 | F: hw/audio/ | |
1897 | F: include/hw/audio/ | |
1898 | F: tests/qtest/ac97-test.c | |
1899 | F: tests/qtest/es1370-test.c | |
1900 | F: tests/qtest/intel-hda-test.c | |
1901 | ||
1902 | Block layer core | |
1903 | M: Kevin Wolf <[email protected]> | |
1904 | M: Max Reitz <[email protected]> | |
1905 | L: [email protected] | |
1906 | S: Supported | |
1907 | F: block* | |
1908 | F: block/ | |
1909 | F: hw/block/ | |
1910 | F: include/block/ | |
1911 | F: qemu-img* | |
1912 | F: docs/interop/qemu-img.rst | |
1913 | F: qemu-io* | |
1914 | F: tests/qemu-iotests/ | |
1915 | F: util/qemu-progress.c | |
1916 | F: qobject/block-qdict.c | |
1917 | F: tests/check-block-qdict.c | |
1918 | T: git https://repo.or.cz/qemu/kevin.git block | |
1919 | ||
1920 | Block I/O path | |
1921 | M: Stefan Hajnoczi <[email protected]> | |
1922 | M: Fam Zheng <[email protected]> | |
1923 | L: [email protected] | |
1924 | S: Supported | |
1925 | F: util/async.c | |
1926 | F: util/aio-*.c | |
1927 | F: util/aio-*.h | |
1928 | F: util/fdmon-*.c | |
1929 | F: block/io.c | |
1930 | F: migration/block* | |
1931 | F: include/block/aio.h | |
1932 | F: include/block/aio-wait.h | |
1933 | F: scripts/qemugdb/aio.py | |
1934 | T: git https://github.com/stefanha/qemu.git block | |
1935 | ||
1936 | Block SCSI subsystem | |
1937 | M: Paolo Bonzini <[email protected]> | |
1938 | R: Fam Zheng <[email protected]> | |
1939 | L: [email protected] | |
1940 | S: Supported | |
1941 | F: include/scsi/* | |
1942 | F: scsi/* | |
1943 | ||
1944 | Block Jobs | |
1945 | M: John Snow <[email protected]> | |
1946 | L: [email protected] | |
1947 | S: Supported | |
1948 | F: blockjob.c | |
1949 | F: include/block/blockjob.h | |
1950 | F: job.c | |
1951 | F: job-qmp.c | |
1952 | F: include/qemu/job.h | |
1953 | F: block/backup.c | |
1954 | F: block/commit.c | |
1955 | F: block/stream.c | |
1956 | F: block/mirror.c | |
1957 | F: qapi/job.json | |
1958 | T: git https://github.com/jnsnow/qemu.git jobs | |
1959 | ||
1960 | Block QAPI, monitor, command line | |
1961 | M: Markus Armbruster <[email protected]> | |
1962 | S: Supported | |
1963 | F: blockdev.c | |
1964 | F: blockdev-hmp-cmds.c | |
1965 | F: block/qapi.c | |
1966 | F: qapi/block*.json | |
1967 | F: qapi/transaction.json | |
1968 | T: git https://repo.or.cz/qemu/armbru.git block-next | |
1969 | ||
1970 | Dirty Bitmaps | |
1971 | M: John Snow <[email protected]> | |
1972 | R: Vladimir Sementsov-Ogievskiy <[email protected]> | |
1973 | L: [email protected] | |
1974 | S: Supported | |
1975 | F: include/qemu/hbitmap.h | |
1976 | F: include/block/dirty-bitmap.h | |
1977 | F: block/dirty-bitmap.c | |
1978 | F: block/qcow2-bitmap.c | |
1979 | F: migration/block-dirty-bitmap.c | |
1980 | F: util/hbitmap.c | |
1981 | F: tests/test-hbitmap.c | |
1982 | F: docs/interop/bitmaps.rst | |
1983 | T: git https://github.com/jnsnow/qemu.git bitmaps | |
1984 | ||
1985 | Character device backends | |
1986 | M: Marc-André Lureau <[email protected]> | |
1987 | R: Paolo Bonzini <[email protected]> | |
1988 | S: Maintained | |
1989 | F: chardev/ | |
1990 | F: include/chardev/ | |
1991 | F: qapi/char.json | |
1992 | ||
1993 | Character Devices (Braille) | |
1994 | M: Samuel Thibault <[email protected]> | |
1995 | S: Maintained | |
1996 | F: chardev/baum.c | |
1997 | ||
1998 | Command line option argument parsing | |
1999 | M: Markus Armbruster <[email protected]> | |
2000 | S: Supported | |
2001 | F: include/qemu/option.h | |
2002 | F: tests/test-keyval.c | |
2003 | F: tests/test-qemu-opts.c | |
2004 | F: util/keyval.c | |
2005 | F: util/qemu-option.c | |
2006 | ||
2007 | Coverity model | |
2008 | M: Markus Armbruster <[email protected]> | |
2009 | S: Supported | |
2010 | F: scripts/coverity-model.c | |
2011 | ||
2012 | Device Tree | |
2013 | M: Alistair Francis <[email protected]> | |
2014 | R: David Gibson <[email protected]> | |
2015 | S: Maintained | |
2016 | F: device_tree.c | |
2017 | F: include/sysemu/device_tree.h | |
2018 | ||
2019 | Dump | |
2020 | S: Supported | |
2021 | M: Marc-André Lureau <[email protected]> | |
2022 | F: dump/ | |
2023 | F: hw/misc/vmcoreinfo.c | |
2024 | F: include/hw/misc/vmcoreinfo.h | |
2025 | F: include/qemu/win_dump_defs | |
2026 | F: include/sysemu/dump-arch.h | |
2027 | F: include/sysemu/dump.h | |
2028 | F: qapi/dump.json | |
2029 | F: scripts/dump-guest-memory.py | |
2030 | F: stubs/dump.c | |
2031 | ||
2032 | Error reporting | |
2033 | M: Markus Armbruster <[email protected]> | |
2034 | S: Supported | |
2035 | F: include/qapi/error.h | |
2036 | F: include/qemu/error-report.h | |
2037 | F: qapi/error.json | |
2038 | F: util/error.c | |
2039 | F: util/qemu-error.c | |
2040 | ||
2041 | GDB stub | |
2042 | M: Alex Bennée <[email protected]> | |
2043 | R: Philippe Mathieu-Daudé <[email protected]> | |
2044 | S: Maintained | |
2045 | F: gdbstub* | |
2046 | F: gdb-xml/ | |
2047 | ||
2048 | Memory API | |
2049 | M: Paolo Bonzini <[email protected]> | |
2050 | S: Supported | |
2051 | F: include/exec/ioport.h | |
2052 | F: ioport.c | |
2053 | F: include/exec/memop.h | |
2054 | F: include/exec/memory.h | |
2055 | F: include/exec/ram_addr.h | |
2056 | F: include/exec/ramblock.h | |
2057 | F: memory.c | |
2058 | F: include/exec/memory-internal.h | |
2059 | F: exec.c | |
2060 | F: scripts/coccinelle/memory-region-housekeeping.cocci | |
2061 | ||
2062 | SPICE | |
2063 | M: Gerd Hoffmann <[email protected]> | |
2064 | S: Supported | |
2065 | F: include/ui/qemu-spice.h | |
2066 | F: include/ui/spice-display.h | |
2067 | F: ui/spice-*.c | |
2068 | F: audio/spiceaudio.c | |
2069 | F: hw/display/qxl* | |
2070 | F: qapi/ui.json | |
2071 | F: docs/spice-port-fqdn.txt | |
2072 | ||
2073 | Graphics | |
2074 | M: Gerd Hoffmann <[email protected]> | |
2075 | S: Odd Fixes | |
2076 | F: ui/ | |
2077 | F: include/ui/ | |
2078 | F: qapi/ui.json | |
2079 | F: util/drm.c | |
2080 | ||
2081 | Cocoa graphics | |
2082 | M: Peter Maydell <[email protected]> | |
2083 | S: Odd Fixes | |
2084 | F: ui/cocoa.m | |
2085 | ||
2086 | Main loop | |
2087 | M: Paolo Bonzini <[email protected]> | |
2088 | S: Maintained | |
2089 | F: cpus.c | |
2090 | F: include/qemu/main-loop.h | |
2091 | F: include/sysemu/runstate.h | |
2092 | F: util/main-loop.c | |
2093 | F: util/qemu-timer.c | |
2094 | F: softmmu/vl.c | |
2095 | F: softmmu/main.c | |
2096 | F: qapi/run-state.json | |
2097 | ||
2098 | Human Monitor (HMP) | |
2099 | M: Dr. David Alan Gilbert <[email protected]> | |
2100 | S: Maintained | |
2101 | F: monitor/monitor-internal.h | |
2102 | F: monitor/misc.c | |
2103 | F: monitor/monitor.c | |
2104 | F: monitor/hmp* | |
2105 | F: hmp.h | |
2106 | F: hmp-commands*.hx | |
2107 | F: include/monitor/hmp-target.h | |
2108 | F: tests/qtest/test-hmp.c | |
2109 | F: include/qemu/qemu-print.h | |
2110 | F: util/qemu-print.c | |
2111 | ||
2112 | Network device backends | |
2113 | M: Jason Wang <[email protected]> | |
2114 | S: Maintained | |
2115 | F: net/ | |
2116 | F: include/net/ | |
2117 | F: qemu-bridge-helper.c | |
2118 | T: git https://github.com/jasowang/qemu.git net | |
2119 | F: qapi/net.json | |
2120 | ||
2121 | Netmap network backend | |
2122 | M: Luigi Rizzo <[email protected]> | |
2123 | M: Giuseppe Lettieri <[email protected]> | |
2124 | M: Vincenzo Maffione <[email protected]> | |
2125 | W: http://info.iet.unipi.it/~luigi/netmap/ | |
2126 | S: Maintained | |
2127 | F: net/netmap.c | |
2128 | ||
2129 | Host Memory Backends | |
2130 | M: Eduardo Habkost <[email protected]> | |
2131 | M: Igor Mammedov <[email protected]> | |
2132 | S: Maintained | |
2133 | F: backends/hostmem*.c | |
2134 | F: include/sysemu/hostmem.h | |
2135 | T: git https://github.com/ehabkost/qemu.git machine-next | |
2136 | ||
2137 | Cryptodev Backends | |
2138 | M: Gonglei <[email protected]> | |
2139 | S: Maintained | |
2140 | F: include/sysemu/cryptodev*.h | |
2141 | F: backends/cryptodev*.c | |
2142 | ||
2143 | Python scripts | |
2144 | M: Eduardo Habkost <[email protected]> | |
2145 | M: Cleber Rosa <[email protected]> | |
2146 | S: Odd fixes | |
2147 | F: python/qemu/*py | |
2148 | F: scripts/*.py | |
2149 | F: tests/*.py | |
2150 | ||
2151 | Benchmark util | |
2152 | M: Vladimir Sementsov-Ogievskiy <[email protected]> | |
2153 | S: Maintained | |
2154 | F: scripts/simplebench/ | |
2155 | ||
2156 | QAPI | |
2157 | M: Markus Armbruster <[email protected]> | |
2158 | M: Michael Roth <[email protected]> | |
2159 | S: Supported | |
2160 | F: qapi/ | |
2161 | X: qapi/*.json | |
2162 | F: include/qapi/ | |
2163 | X: include/qapi/qmp/ | |
2164 | F: include/qapi/qmp/dispatch.h | |
2165 | F: tests/qapi-schema/ | |
2166 | F: tests/test-*-visitor.c | |
2167 | F: tests/test-qapi-*.c | |
2168 | F: tests/test-qmp-*.c | |
2169 | F: tests/test-visitor-serialization.c | |
2170 | F: scripts/qapi-gen.py | |
2171 | F: scripts/qapi/* | |
2172 | F: docs/devel/qapi* | |
2173 | T: git https://repo.or.cz/qemu/armbru.git qapi-next | |
2174 | ||
2175 | QAPI Schema | |
2176 | M: Eric Blake <[email protected]> | |
2177 | M: Markus Armbruster <[email protected]> | |
2178 | S: Supported | |
2179 | F: qapi/*.json | |
2180 | T: git https://repo.or.cz/qemu/armbru.git qapi-next | |
2181 | ||
2182 | QObject | |
2183 | M: Markus Armbruster <[email protected]> | |
2184 | S: Supported | |
2185 | F: qobject/ | |
2186 | F: include/qapi/qmp/ | |
2187 | X: include/qapi/qmp/dispatch.h | |
2188 | F: scripts/coccinelle/qobject.cocci | |
2189 | F: tests/check-qdict.c | |
2190 | F: tests/check-qjson.c | |
2191 | F: tests/check-qlist.c | |
2192 | F: tests/check-qlit.c | |
2193 | F: tests/check-qnull.c | |
2194 | F: tests/check-qnum.c | |
2195 | F: tests/check-qobject.c | |
2196 | F: tests/check-qstring.c | |
2197 | F: tests/data/qobject/qdict.txt | |
2198 | T: git https://repo.or.cz/qemu/armbru.git qapi-next | |
2199 | ||
2200 | QEMU Guest Agent | |
2201 | M: Michael Roth <[email protected]> | |
2202 | S: Maintained | |
2203 | F: qga/ | |
2204 | F: docs/interop/qemu-ga.rst | |
2205 | F: scripts/qemu-guest-agent/ | |
2206 | F: tests/test-qga.c | |
2207 | F: docs/interop/qemu-ga-ref.texi | |
2208 | T: git https://github.com/mdroth/qemu.git qga | |
2209 | ||
2210 | QOM | |
2211 | M: Paolo Bonzini <[email protected]> | |
2212 | R: Daniel P. Berrange <[email protected]> | |
2213 | R: Eduardo Habkost <[email protected]> | |
2214 | S: Supported | |
2215 | F: docs/qdev-device-use.txt | |
2216 | F: hw/core/qdev* | |
2217 | F: include/hw/qdev* | |
2218 | F: include/monitor/qdev.h | |
2219 | F: include/qom/ | |
2220 | F: qapi/qom.json | |
2221 | F: qapi/qdev.json | |
2222 | F: qdev-monitor.c | |
2223 | F: qom/ | |
2224 | F: tests/check-qom-interface.c | |
2225 | F: tests/check-qom-proplist.c | |
2226 | F: tests/test-qdev-global-props.c | |
2227 | ||
2228 | QMP | |
2229 | M: Markus Armbruster <[email protected]> | |
2230 | S: Supported | |
2231 | F: monitor/monitor-internal.h | |
2232 | F: monitor/qmp* | |
2233 | F: monitor/misc.c | |
2234 | F: monitor/monitor.c | |
2235 | F: qapi/error.json | |
2236 | F: docs/devel/*qmp-* | |
2237 | F: docs/interop/*qmp-* | |
2238 | F: scripts/qmp/ | |
2239 | F: tests/qtest/qmp-test.c | |
2240 | F: tests/qtest/qmp-cmd-test.c | |
2241 | T: git https://repo.or.cz/qemu/armbru.git qapi-next | |
2242 | ||
2243 | qtest | |
2244 | M: Thomas Huth <[email protected]> | |
2245 | M: Laurent Vivier <[email protected]> | |
2246 | R: Paolo Bonzini <[email protected]> | |
2247 | S: Maintained | |
2248 | F: qtest.c | |
2249 | F: accel/qtest.c | |
2250 | F: tests/qtest/ | |
2251 | ||
2252 | Device Fuzzing | |
2253 | M: Alexander Bulekov <[email protected]> | |
2254 | R: Paolo Bonzini <[email protected]> | |
2255 | R: Bandan Das <[email protected]> | |
2256 | R: Stefan Hajnoczi <[email protected]> | |
2257 | S: Maintained | |
2258 | F: tests/qtest/fuzz/ | |
2259 | ||
2260 | Register API | |
2261 | M: Alistair Francis <[email protected]> | |
2262 | S: Maintained | |
2263 | F: hw/core/register.c | |
2264 | F: include/hw/register.h | |
2265 | F: include/hw/registerfields.h | |
2266 | ||
2267 | SLIRP | |
2268 | M: Samuel Thibault <[email protected]> | |
2269 | S: Maintained | |
2270 | F: slirp/ | |
2271 | F: net/slirp.c | |
2272 | F: include/net/slirp.h | |
2273 | T: git https://people.debian.org/~sthibault/qemu.git slirp | |
2274 | ||
2275 | Stubs | |
2276 | M: Paolo Bonzini <[email protected]> | |
2277 | S: Maintained | |
2278 | F: stubs/ | |
2279 | ||
2280 | Tracing | |
2281 | M: Stefan Hajnoczi <[email protected]> | |
2282 | S: Maintained | |
2283 | F: trace/ | |
2284 | F: trace-events | |
2285 | F: docs/qemu-option-trace.rst.inc | |
2286 | F: scripts/tracetool.py | |
2287 | F: scripts/tracetool/ | |
2288 | F: scripts/qemu-trace-stap* | |
2289 | F: docs/interop/qemu-trace-stap.rst | |
2290 | F: docs/devel/tracing.txt | |
2291 | T: git https://github.com/stefanha/qemu.git tracing | |
2292 | ||
2293 | TPM | |
2294 | M: Stefan Berger <[email protected]> | |
2295 | S: Maintained | |
2296 | F: tpm.c | |
2297 | F: stubs/tpm.c | |
2298 | F: hw/tpm/* | |
2299 | F: include/hw/acpi/tpm.h | |
2300 | F: include/sysemu/tpm* | |
2301 | F: qapi/tpm.json | |
2302 | F: backends/tpm.c | |
2303 | F: tests/qtest/*tpm* | |
2304 | T: git https://github.com/stefanberger/qemu-tpm.git tpm-next | |
2305 | ||
2306 | Checkpatch | |
2307 | S: Odd Fixes | |
2308 | F: scripts/checkpatch.pl | |
2309 | ||
2310 | Migration | |
2311 | M: Juan Quintela <[email protected]> | |
2312 | M: Dr. David Alan Gilbert <[email protected]> | |
2313 | S: Maintained | |
2314 | F: hw/core/vmstate-if.c | |
2315 | F: include/hw/vmstate-if.h | |
2316 | F: include/migration/ | |
2317 | F: migration/ | |
2318 | F: scripts/vmstate-static-checker.py | |
2319 | F: tests/vmstate-static-checker-data/ | |
2320 | F: tests/qtest/migration-test.c | |
2321 | F: docs/devel/migration.rst | |
2322 | F: qapi/migration.json | |
2323 | ||
2324 | D-Bus | |
2325 | M: Marc-André Lureau <[email protected]> | |
2326 | S: Maintained | |
2327 | F: backends/dbus-vmstate.c | |
2328 | F: tests/dbus-vmstate* | |
2329 | F: util/dbus.c | |
2330 | F: include/qemu/dbus.h | |
2331 | F: docs/interop/dbus.rst | |
2332 | F: docs/interop/dbus-vmstate.rst | |
2333 | ||
2334 | Seccomp | |
2335 | M: Eduardo Otubo <[email protected]> | |
2336 | S: Supported | |
2337 | F: qemu-seccomp.c | |
2338 | F: include/sysemu/seccomp.h | |
2339 | ||
2340 | Cryptography | |
2341 | M: Daniel P. Berrange <[email protected]> | |
2342 | S: Maintained | |
2343 | F: crypto/ | |
2344 | F: include/crypto/ | |
2345 | F: tests/test-crypto-* | |
2346 | F: tests/benchmark-crypto-* | |
2347 | F: tests/crypto-tls-* | |
2348 | F: tests/pkix_asn1_tab.c | |
2349 | F: qemu.sasl | |
2350 | ||
2351 | Coroutines | |
2352 | M: Stefan Hajnoczi <[email protected]> | |
2353 | M: Kevin Wolf <[email protected]> | |
2354 | S: Maintained | |
2355 | F: util/*coroutine* | |
2356 | F: include/qemu/coroutine* | |
2357 | F: tests/test-coroutine.c | |
2358 | ||
2359 | Buffers | |
2360 | M: Daniel P. Berrange <[email protected]> | |
2361 | S: Odd fixes | |
2362 | F: util/buffer.c | |
2363 | F: include/qemu/buffer.h | |
2364 | ||
2365 | I/O Channels | |
2366 | M: Daniel P. Berrange <[email protected]> | |
2367 | S: Maintained | |
2368 | F: io/ | |
2369 | F: include/io/ | |
2370 | F: tests/test-io-* | |
2371 | ||
2372 | User authorization | |
2373 | M: Daniel P. Berrange <[email protected]> | |
2374 | S: Maintained | |
2375 | F: authz/ | |
2376 | F: qapi/authz.json | |
2377 | F: include/authz/ | |
2378 | F: tests/test-authz-* | |
2379 | ||
2380 | Sockets | |
2381 | M: Daniel P. Berrange <[email protected]> | |
2382 | M: Gerd Hoffmann <[email protected]> | |
2383 | S: Maintained | |
2384 | F: include/qemu/sockets.h | |
2385 | F: util/qemu-sockets.c | |
2386 | F: qapi/sockets.json | |
2387 | ||
2388 | File monitor | |
2389 | M: Daniel P. Berrange <[email protected]> | |
2390 | S: Odd fixes | |
2391 | F: util/filemonitor*.c | |
2392 | F: include/qemu/filemonitor.h | |
2393 | F: tests/test-util-filemonitor.c | |
2394 | ||
2395 | Throttling infrastructure | |
2396 | M: Alberto Garcia <[email protected]> | |
2397 | S: Supported | |
2398 | F: block/throttle-groups.c | |
2399 | F: include/block/throttle-groups.h | |
2400 | F: include/qemu/throttle*.h | |
2401 | F: util/throttle.c | |
2402 | F: docs/throttle.txt | |
2403 | F: tests/test-throttle.c | |
2404 | L: [email protected] | |
2405 | ||
2406 | UUID | |
2407 | M: Fam Zheng <[email protected]> | |
2408 | S: Supported | |
2409 | F: util/uuid.c | |
2410 | F: include/qemu/uuid.h | |
2411 | F: tests/test-uuid.c | |
2412 | ||
2413 | COLO Framework | |
2414 | M: zhanghailiang <[email protected]> | |
2415 | S: Maintained | |
2416 | F: migration/colo* | |
2417 | F: include/migration/colo.h | |
2418 | F: include/migration/failover.h | |
2419 | F: docs/COLO-FT.txt | |
2420 | ||
2421 | COLO Proxy | |
2422 | M: Zhang Chen <[email protected]> | |
2423 | M: Li Zhijian <[email protected]> | |
2424 | S: Supported | |
2425 | F: docs/colo-proxy.txt | |
2426 | F: net/colo* | |
2427 | F: net/filter-rewriter.c | |
2428 | F: net/filter-mirror.c | |
2429 | ||
2430 | Record/replay | |
2431 | M: Pavel Dovgalyuk <[email protected]> | |
2432 | R: Paolo Bonzini <[email protected]> | |
2433 | W: https://wiki.qemu.org/Features/record-replay | |
2434 | S: Supported | |
2435 | F: replay/* | |
2436 | F: block/blkreplay.c | |
2437 | F: net/filter-replay.c | |
2438 | F: include/sysemu/replay.h | |
2439 | F: docs/replay.txt | |
2440 | F: stubs/replay.c | |
2441 | ||
2442 | IOVA Tree | |
2443 | M: Peter Xu <[email protected]> | |
2444 | S: Maintained | |
2445 | F: include/qemu/iova-tree.h | |
2446 | F: util/iova-tree.c | |
2447 | ||
2448 | elf2dmp | |
2449 | M: Viktor Prutyanov <[email protected]> | |
2450 | S: Maintained | |
2451 | F: contrib/elf2dmp/ | |
2452 | ||
2453 | I2C and SMBus | |
2454 | M: Corey Minyard <[email protected]> | |
2455 | S: Maintained | |
2456 | F: hw/i2c/core.c | |
2457 | F: hw/i2c/smbus_slave.c | |
2458 | F: hw/i2c/smbus_master.c | |
2459 | F: hw/i2c/smbus_eeprom.c | |
2460 | F: include/hw/i2c/i2c.h | |
2461 | F: include/hw/i2c/smbus_master.h | |
2462 | F: include/hw/i2c/smbus_slave.h | |
2463 | F: include/hw/i2c/smbus_eeprom.h | |
2464 | ||
2465 | EDK2 Firmware | |
2466 | M: Laszlo Ersek <[email protected]> | |
2467 | M: Philippe Mathieu-Daudé <[email protected]> | |
2468 | S: Supported | |
2469 | F: pc-bios/descriptors/??-edk2-*.json | |
2470 | F: pc-bios/edk2-* | |
2471 | F: roms/Makefile.edk2 | |
2472 | F: roms/edk2 | |
2473 | F: roms/edk2-* | |
2474 | F: tests/data/uefi-boot-images/ | |
2475 | F: tests/uefi-test-tools/ | |
2476 | F: .gitlab-ci-edk2.yml | |
2477 | F: .gitlab-ci.d/edk2/ | |
2478 | ||
2479 | Usermode Emulation | |
2480 | ------------------ | |
2481 | Overall usermode emulation | |
2482 | M: Riku Voipio <[email protected]> | |
2483 | S: Maintained | |
2484 | F: thunk.c | |
2485 | F: accel/tcg/user-exec*.c | |
2486 | ||
2487 | BSD user | |
2488 | S: Orphan | |
2489 | F: bsd-user/ | |
2490 | F: default-configs/*-bsd-user.mak | |
2491 | ||
2492 | Linux user | |
2493 | M: Riku Voipio <[email protected]> | |
2494 | R: Laurent Vivier <[email protected]> | |
2495 | S: Maintained | |
2496 | F: linux-user/ | |
2497 | F: default-configs/*-linux-user.mak | |
2498 | F: scripts/qemu-binfmt-conf.sh | |
2499 | F: scripts/update-syscalltbl.sh | |
2500 | F: scripts/update-mips-syscall-args.sh | |
2501 | F: scripts/gensyscalls.sh | |
2502 | ||
2503 | Tiny Code Generator (TCG) | |
2504 | ------------------------- | |
2505 | Common TCG code | |
2506 | M: Richard Henderson <[email protected]> | |
2507 | S: Maintained | |
2508 | F: tcg/ | |
2509 | F: include/tcg/ | |
2510 | ||
2511 | TCG Plugins | |
2512 | M: Alex Bennée <[email protected]> | |
2513 | S: Maintained | |
2514 | F: docs/devel/tcg-plugins.rst | |
2515 | F: plugins/ | |
2516 | F: tests/plugin | |
2517 | ||
2518 | AArch64 TCG target | |
2519 | M: Richard Henderson <[email protected]> | |
2520 | S: Maintained | |
2521 | L: [email protected] | |
2522 | F: tcg/aarch64/ | |
2523 | F: disas/arm-a64.cc | |
2524 | F: disas/libvixl/ | |
2525 | ||
2526 | ARM TCG target | |
2527 | M: Andrzej Zaborowski <[email protected]> | |
2528 | S: Maintained | |
2529 | L: [email protected] | |
2530 | F: tcg/arm/ | |
2531 | F: disas/arm.c | |
2532 | ||
2533 | i386 TCG target | |
2534 | M: Richard Henderson <[email protected]> | |
2535 | S: Maintained | |
2536 | F: tcg/i386/ | |
2537 | F: disas/i386.c | |
2538 | ||
2539 | MIPS TCG target | |
2540 | M: Aleksandar Markovic <[email protected]> | |
2541 | R: Aurelien Jarno <[email protected]> | |
2542 | R: Aleksandar Rikalo <[email protected]> | |
2543 | S: Maintained | |
2544 | F: tcg/mips/ | |
2545 | ||
2546 | PPC TCG target | |
2547 | M: Richard Henderson <[email protected]> | |
2548 | S: Odd Fixes | |
2549 | F: tcg/ppc/ | |
2550 | F: disas/ppc.c | |
2551 | ||
2552 | RISC-V TCG target | |
2553 | M: Palmer Dabbelt <[email protected]> | |
2554 | M: Alistair Francis <[email protected]> | |
2555 | L: [email protected] | |
2556 | S: Maintained | |
2557 | F: tcg/riscv/ | |
2558 | F: disas/riscv.c | |
2559 | ||
2560 | S390 TCG target | |
2561 | M: Richard Henderson <[email protected]> | |
2562 | S: Maintained | |
2563 | F: tcg/s390/ | |
2564 | F: disas/s390.c | |
2565 | L: [email protected] | |
2566 | ||
2567 | SPARC TCG target | |
2568 | S: Odd Fixes | |
2569 | F: tcg/sparc/ | |
2570 | F: disas/sparc.c | |
2571 | ||
2572 | TCI TCG target | |
2573 | M: Stefan Weil <[email protected]> | |
2574 | S: Maintained | |
2575 | F: tcg/tci/ | |
2576 | F: tcg/tci.c | |
2577 | F: disas/tci.c | |
2578 | ||
2579 | Block drivers | |
2580 | ------------- | |
2581 | VMDK | |
2582 | M: Fam Zheng <[email protected]> | |
2583 | L: [email protected] | |
2584 | S: Supported | |
2585 | F: block/vmdk.c | |
2586 | ||
2587 | RBD | |
2588 | M: Jason Dillaman <[email protected]> | |
2589 | L: [email protected] | |
2590 | S: Supported | |
2591 | F: block/rbd.c | |
2592 | ||
2593 | Sheepdog | |
2594 | M: Liu Yuan <[email protected]> | |
2595 | L: [email protected] | |
2596 | L: [email protected] | |
2597 | S: Odd Fixes | |
2598 | F: block/sheepdog.c | |
2599 | ||
2600 | VHDX | |
2601 | M: Jeff Cody <[email protected]> | |
2602 | L: [email protected] | |
2603 | S: Supported | |
2604 | F: block/vhdx* | |
2605 | ||
2606 | VDI | |
2607 | M: Stefan Weil <[email protected]> | |
2608 | L: [email protected] | |
2609 | S: Maintained | |
2610 | F: block/vdi.c | |
2611 | ||
2612 | iSCSI | |
2613 | M: Ronnie Sahlberg <[email protected]> | |
2614 | M: Paolo Bonzini <[email protected]> | |
2615 | M: Peter Lieven <[email protected]> | |
2616 | L: [email protected] | |
2617 | S: Odd Fixes | |
2618 | F: block/iscsi.c | |
2619 | F: block/iscsi-opts.c | |
2620 | ||
2621 | Network Block Device (NBD) | |
2622 | M: Eric Blake <[email protected]> | |
2623 | L: [email protected] | |
2624 | S: Maintained | |
2625 | F: block/nbd* | |
2626 | F: nbd/ | |
2627 | F: include/block/nbd* | |
2628 | F: qemu-nbd.* | |
2629 | F: blockdev-nbd.c | |
2630 | F: docs/interop/nbd.txt | |
2631 | F: docs/interop/qemu-nbd.rst | |
2632 | T: git https://repo.or.cz/qemu/ericb.git nbd | |
2633 | ||
2634 | NFS | |
2635 | M: Peter Lieven <[email protected]> | |
2636 | L: [email protected] | |
2637 | S: Maintained | |
2638 | F: block/nfs.c | |
2639 | ||
2640 | SSH | |
2641 | M: Richard W.M. Jones <[email protected]> | |
2642 | L: [email protected] | |
2643 | S: Supported | |
2644 | F: block/ssh.c | |
2645 | ||
2646 | CURL | |
2647 | L: [email protected] | |
2648 | S: Odd Fixes | |
2649 | F: block/curl.c | |
2650 | ||
2651 | GLUSTER | |
2652 | L: [email protected] | |
2653 | L: [email protected] | |
2654 | S: Odd Fixes | |
2655 | F: block/gluster.c | |
2656 | ||
2657 | Null Block Driver | |
2658 | M: Fam Zheng <[email protected]> | |
2659 | L: [email protected] | |
2660 | S: Supported | |
2661 | F: block/null.c | |
2662 | ||
2663 | NVMe Block Driver | |
2664 | M: Fam Zheng <[email protected]> | |
2665 | L: [email protected] | |
2666 | S: Supported | |
2667 | F: block/nvme* | |
2668 | ||
2669 | Bootdevice | |
2670 | M: Gonglei <[email protected]> | |
2671 | S: Maintained | |
2672 | F: bootdevice.c | |
2673 | ||
2674 | Quorum | |
2675 | M: Alberto Garcia <[email protected]> | |
2676 | S: Supported | |
2677 | F: block/quorum.c | |
2678 | L: [email protected] | |
2679 | ||
2680 | blklogwrites | |
2681 | M: Ari Sundholm <[email protected]> | |
2682 | L: [email protected] | |
2683 | S: Supported | |
2684 | F: block/blklogwrites.c | |
2685 | ||
2686 | blkverify | |
2687 | M: Stefan Hajnoczi <[email protected]> | |
2688 | L: [email protected] | |
2689 | S: Supported | |
2690 | F: block/blkverify.c | |
2691 | ||
2692 | bochs | |
2693 | M: Stefan Hajnoczi <[email protected]> | |
2694 | L: [email protected] | |
2695 | S: Supported | |
2696 | F: block/bochs.c | |
2697 | ||
2698 | cloop | |
2699 | M: Stefan Hajnoczi <[email protected]> | |
2700 | L: [email protected] | |
2701 | S: Supported | |
2702 | F: block/cloop.c | |
2703 | ||
2704 | dmg | |
2705 | M: Stefan Hajnoczi <[email protected]> | |
2706 | L: [email protected] | |
2707 | S: Supported | |
2708 | F: block/dmg.c | |
2709 | ||
2710 | parallels | |
2711 | M: Stefan Hajnoczi <[email protected]> | |
2712 | M: Denis V. Lunev <[email protected]> | |
2713 | L: [email protected] | |
2714 | S: Supported | |
2715 | F: block/parallels.c | |
2716 | F: docs/interop/parallels.txt | |
2717 | ||
2718 | qed | |
2719 | M: Stefan Hajnoczi <[email protected]> | |
2720 | L: [email protected] | |
2721 | S: Supported | |
2722 | F: block/qed.c | |
2723 | ||
2724 | raw | |
2725 | M: Kevin Wolf <[email protected]> | |
2726 | L: [email protected] | |
2727 | S: Supported | |
2728 | F: block/linux-aio.c | |
2729 | F: include/block/raw-aio.h | |
2730 | F: block/raw-format.c | |
2731 | F: block/file-posix.c | |
2732 | F: block/file-win32.c | |
2733 | F: block/win32-aio.c | |
2734 | ||
2735 | Linux io_uring | |
2736 | M: Aarushi Mehta <[email protected]> | |
2737 | M: Julia Suvorova <[email protected]> | |
2738 | M: Stefan Hajnoczi <[email protected]> | |
2739 | L: [email protected] | |
2740 | S: Maintained | |
2741 | F: block/io_uring.c | |
2742 | F: stubs/io_uring.c | |
2743 | ||
2744 | qcow2 | |
2745 | M: Kevin Wolf <[email protected]> | |
2746 | M: Max Reitz <[email protected]> | |
2747 | L: [email protected] | |
2748 | S: Supported | |
2749 | F: block/qcow2* | |
2750 | F: docs/interop/qcow2.txt | |
2751 | ||
2752 | qcow | |
2753 | M: Kevin Wolf <[email protected]> | |
2754 | L: [email protected] | |
2755 | S: Supported | |
2756 | F: block/qcow.c | |
2757 | ||
2758 | blkdebug | |
2759 | M: Kevin Wolf <[email protected]> | |
2760 | M: Max Reitz <[email protected]> | |
2761 | L: [email protected] | |
2762 | S: Supported | |
2763 | F: block/blkdebug.c | |
2764 | ||
2765 | vpc | |
2766 | M: Kevin Wolf <[email protected]> | |
2767 | L: [email protected] | |
2768 | S: Supported | |
2769 | F: block/vpc.c | |
2770 | ||
2771 | vvfat | |
2772 | M: Kevin Wolf <[email protected]> | |
2773 | L: [email protected] | |
2774 | S: Supported | |
2775 | F: block/vvfat.c | |
2776 | ||
2777 | Image format fuzzer | |
2778 | M: Stefan Hajnoczi <[email protected]> | |
2779 | L: [email protected] | |
2780 | S: Supported | |
2781 | F: tests/image-fuzzer/ | |
2782 | ||
2783 | Replication | |
2784 | M: Wen Congyang <[email protected]> | |
2785 | M: Xie Changlong <[email protected]> | |
2786 | S: Supported | |
2787 | F: replication* | |
2788 | F: block/replication.c | |
2789 | F: tests/test-replication.c | |
2790 | F: docs/block-replication.txt | |
2791 | ||
2792 | PVRDMA | |
2793 | M: Yuval Shaia <[email protected]> | |
2794 | M: Marcel Apfelbaum <[email protected]> | |
2795 | S: Maintained | |
2796 | F: hw/rdma/* | |
2797 | F: hw/rdma/vmw/* | |
2798 | F: docs/pvrdma.txt | |
2799 | F: contrib/rdmacm-mux/* | |
2800 | F: qapi/rdma.json | |
2801 | ||
2802 | Semihosting | |
2803 | M: Alex Bennée <[email protected]> | |
2804 | S: Maintained | |
2805 | F: hw/semihosting/ | |
2806 | F: include/hw/semihosting/ | |
2807 | ||
2808 | Build and test automation | |
2809 | ------------------------- | |
2810 | Build and test automation | |
2811 | M: Alex Bennée <[email protected]> | |
2812 | M: Fam Zheng <[email protected]> | |
2813 | R: Philippe Mathieu-Daudé <[email protected]> | |
2814 | S: Maintained | |
2815 | F: .travis.yml | |
2816 | F: scripts/travis/ | |
2817 | F: .shippable.yml | |
2818 | F: tests/docker/ | |
2819 | F: tests/vm/ | |
2820 | F: scripts/archive-source.sh | |
2821 | W: https://travis-ci.org/qemu/qemu | |
2822 | W: https://app.shippable.com/github/qemu/qemu | |
2823 | W: http://patchew.org/QEMU/ | |
2824 | ||
2825 | FreeBSD Hosted Continuous Integration | |
2826 | M: Ed Maste <[email protected]> | |
2827 | M: Li-Wen Hsu <[email protected]> | |
2828 | S: Maintained | |
2829 | F: .cirrus.yml | |
2830 | W: https://cirrus-ci.com/github/qemu/qemu | |
2831 | ||
2832 | GitLab Continuous Integration | |
2833 | M: Thomas Huth <[email protected]> | |
2834 | S: Maintained | |
2835 | F: .gitlab-ci.yml | |
2836 | ||
2837 | Guest Test Compilation Support | |
2838 | M: Alex Bennée <[email protected]> | |
2839 | R: Philippe Mathieu-Daudé <[email protected]> | |
2840 | S: Maintained | |
2841 | F: tests/tcg/Makefile | |
2842 | F: tests/tcg/Makefile.include | |
2843 | ||
2844 | Documentation | |
2845 | ------------- | |
2846 | Build system architecture | |
2847 | M: Daniel P. Berrange <[email protected]> | |
2848 | S: Odd Fixes | |
2849 | F: docs/devel/build-system.txt | |
2850 | ||
2851 | GIT Data Mining Config | |
2852 | M: Alex Bennée <[email protected]> | |
2853 | S: Odd Fixes | |
2854 | F: gitdm.config | |
2855 | F: contrib/gitdm/* | |
2856 | ||
2857 | Incompatible changes | |
2858 | R: [email protected] | |
2859 | F: docs/system/deprecated.rst | |
2860 | ||
2861 | Build System | |
2862 | ------------ | |
2863 | GIT submodules | |
2864 | M: Daniel P. Berrange <[email protected]> | |
2865 | S: Odd Fixes | |
2866 | F: scripts/git-submodule.sh | |
2867 | ||
2868 | UI translations | |
2869 | M: Aleksandar Markovic <[email protected]> | |
2870 | F: po/*.po | |
2871 | ||
2872 | Sphinx documentation configuration and build machinery | |
2873 | M: Peter Maydell <[email protected]> | |
2874 | S: Maintained | |
2875 | F: docs/conf.py | |
2876 | F: docs/*/conf.py |