]>
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> | |
9436e082 CH |
15 | Maintainers are looking after a certain area and must be CCed on |
16 | patches. They are considered the main contact point. | |
fdf6fab4 PM |
17 | R: Designated reviewer: FullName <address@domain> |
18 | These reviewers should be CCed on patches. | |
9436e082 CH |
19 | Reviewers are familiar with the subject matter and provide feedback |
20 | even though they are not maintainers. | |
fd5d5c56 | 21 | L: Mailing list that is relevant to this area |
9436e082 | 22 | These lists should be CCed on patches. |
fd5d5c56 AL |
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 | |
c91bbffb | 30 | much other than throw the odd patch in. See below. |
fd5d5c56 AL |
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 | ------------------------------ | |
ff0d4876 | 60 | M: Peter Maydell <peter.maydell@linaro.org> |
fd5d5c56 | 61 | |
c9a19d5b SW |
62 | All patches CC here |
63 | L: qemu-devel@nongnu.org | |
64 | F: * | |
65 | F: */ | |
66 | ||
62622c11 | 67 | Responsible Disclosure, Reporting Security Issues |
84995ea2 | 68 | ------------------------------------------------- |
70b7fba9 | 69 | W: https://wiki.qemu.org/SecurityProcess |
62622c11 | 70 | M: Michael S. Tsirkin <mst@redhat.com> |
62622c11 MT |
71 | L: secalert@redhat.com |
72 | ||
936c2230 LV |
73 | Trivial patches |
74 | --------------- | |
75 | Trivial patches | |
76 | M: Michael Tokarev <mjt@tls.msk.ru> | |
77 | M: Laurent Vivier <laurent@vivier.eu> | |
78 | S: Maintained | |
79 | L: qemu-trivial@nongnu.org | |
80 | K: ^Subject:.*(?i)trivial | |
81 | T: git git://git.corpit.ru/qemu.git trivial-patches | |
e18a8b34 | 82 | T: git https://github.com/vivier/qemu.git trivial-patches |
936c2230 | 83 | |
daf14ce3 CH |
84 | Architecture support |
85 | -------------------- | |
6347e1f1 | 86 | S390 general architecture support |
daf14ce3 | 87 | M: Cornelia Huck <cohuck@redhat.com> |
cdb509a4 | 88 | M: Thomas Huth <thuth@redhat.com> |
daf14ce3 CH |
89 | S: Supported |
90 | F: default-configs/s390x-softmmu.mak | |
91 | F: gdb-xml/s390*.xml | |
92 | F: hw/char/sclp*.[hc] | |
93 | F: hw/char/terminal3270.c | |
94 | F: hw/intc/s390_flic.c | |
95 | F: hw/intc/s390_flic_kvm.c | |
96 | F: hw/s390x/ | |
2fe2942c | 97 | F: hw/vfio/ap.c |
daf14ce3 CH |
98 | F: hw/vfio/ccw.c |
99 | F: hw/watchdog/wdt_diag288.c | |
100 | F: include/hw/s390x/ | |
101 | F: include/hw/watchdog/wdt_diag288.h | |
102 | F: pc-bios/s390-ccw/ | |
103 | F: pc-bios/s390-ccw.img | |
104 | F: target/s390x/ | |
f58f084e CH |
105 | F: docs/system/target-s390x.rst |
106 | F: docs/system/s390x/ | |
a1c993c3 | 107 | F: tests/migration/s390x/ |
daf14ce3 | 108 | K: ^Subject:.*(?i)s390x? |
e18a8b34 | 109 | T: git https://github.com/cohuck/qemu.git s390-next |
daf14ce3 CH |
110 | L: qemu-s390x@nongnu.org |
111 | ||
84995ea2 MA |
112 | Guest CPU cores (TCG) |
113 | --------------------- | |
6347e1f1 | 114 | Overall TCG CPUs |
2b1641d0 | 115 | M: Richard Henderson <rth@twiddle.net> |
2185fd67 | 116 | R: Paolo Bonzini <pbonzini@redhat.com> |
2b1641d0 | 117 | S: Maintained |
c7f419f5 | 118 | F: softmmu/cpus.c |
adf1cfbd | 119 | F: cpus-common.c |
2b1641d0 | 120 | F: exec.c |
c6a88dda | 121 | F: accel/tcg/ |
9681ad3e | 122 | F: accel/stubs/tcg-stub.c |
55fd1892 | 123 | F: scripts/decodetree.py |
3fdbf5d6 | 124 | F: docs/devel/decodetree.rst |
2b1641d0 PB |
125 | F: include/exec/cpu*.h |
126 | F: include/exec/exec-all.h | |
486bbe5f | 127 | F: include/exec/helper*.h |
2b1641d0 | 128 | F: include/exec/tb-hash.h |
460423d3 | 129 | F: include/sysemu/cpus.h |
14a48c1d | 130 | F: include/sysemu/tcg.h |
486bbe5f | 131 | |
1badb586 PM |
132 | FPU emulation |
133 | M: Aurelien Jarno <aurelien@aurel32.net> | |
134 | M: Peter Maydell <peter.maydell@linaro.org> | |
0636e4d8 AB |
135 | M: Alex Bennée <alex.bennee@linaro.org> |
136 | S: Maintained | |
1badb586 PM |
137 | F: fpu/ |
138 | F: include/fpu/ | |
0636e4d8 | 139 | F: tests/fp/ |
1badb586 | 140 | |
6347e1f1 | 141 | Alpha TCG CPUs |
8d6df264 RH |
142 | M: Richard Henderson <rth@twiddle.net> |
143 | S: Maintained | |
fcf5ef2a | 144 | F: target/alpha/ |
c0bd0b50 | 145 | F: tests/tcg/alpha/ |
c17652ee | 146 | F: disas/alpha.c |
b6f97c14 | 147 | |
6347e1f1 | 148 | ARM TCG CPUs |
1ce9ce6a | 149 | M: Peter Maydell <peter.maydell@linaro.org> |
b4f2bd1c | 150 | L: qemu-arm@nongnu.org |
fd5d5c56 | 151 | S: Maintained |
fcf5ef2a | 152 | F: target/arm/ |
c348722c | 153 | F: tests/tcg/arm/ |
29e0436e | 154 | F: tests/tcg/aarch64/ |
8d8b636d PB |
155 | F: hw/arm/ |
156 | F: hw/cpu/a*mpcore.c | |
f7e242d6 | 157 | F: include/hw/cpu/a*mpcore.h |
c17652ee PB |
158 | F: disas/arm.c |
159 | F: disas/arm-a64.cc | |
160 | F: disas/libvixl/ | |
c11a8e89 | 161 | F: docs/system/target-arm.rst |
fd5d5c56 | 162 | |
49154ea0 EA |
163 | ARM SMMU |
164 | M: Eric Auger <eric.auger@redhat.com> | |
165 | L: qemu-arm@nongnu.org | |
166 | S: Maintained | |
167 | F: hw/arm/smmu* | |
168 | F: include/hw/arm/smmu* | |
169 | ||
c8c0d267 MR |
170 | AVR TCG CPUs |
171 | M: Michael Rolnik <mrolnik@gmail.com> | |
172 | R: Sarah Harris <S.E.Harris@kent.ac.uk> | |
173 | S: Maintained | |
0abd386d | 174 | F: docs/system/target-avr.rst |
12b35405 | 175 | F: gdb-xml/avr-cpu.xml |
c8c0d267 | 176 | F: target/avr/ |
f5d31d65 | 177 | F: tests/acceptance/machine_avr6.py |
c8c0d267 | 178 | |
6347e1f1 | 179 | CRIS TCG CPUs |
fd5d5c56 AL |
180 | M: Edgar E. Iglesias <edgar.iglesias@gmail.com> |
181 | S: Maintained | |
fcf5ef2a | 182 | F: target/cris/ |
8d8b636d | 183 | F: hw/cris/ |
c9b90090 | 184 | F: include/hw/cris/ |
c0bd0b50 | 185 | F: tests/tcg/cris/ |
c17652ee | 186 | F: disas/cris.c |
fd5d5c56 | 187 | |
6347e1f1 | 188 | HPPA (PA-RISC) TCG CPUs |
61766fe9 RH |
189 | M: Richard Henderson <rth@twiddle.net> |
190 | S: Maintained | |
191 | F: target/hppa/ | |
61461802 | 192 | F: hw/hppa/ |
61766fe9 | 193 | F: disas/hppa.c |
376b8519 HD |
194 | F: hw/net/*i82596* |
195 | F: include/hw/net/lasi_82596.h | |
61766fe9 | 196 | |
6347e1f1 | 197 | LM32 TCG CPUs |
4b4d96c7 PMD |
198 | R: Michael Walle <michael@walle.cc> |
199 | S: Orphan | |
fcf5ef2a | 200 | F: target/lm32/ |
4eab7a0a | 201 | F: disas/lm32.c |
8d8b636d | 202 | F: hw/lm32/ |
4eab7a0a MW |
203 | F: hw/*/lm32_* |
204 | F: hw/*/milkymist-* | |
70cc0c1f | 205 | F: include/hw/display/milkymist_tmu2.h |
4eab7a0a MW |
206 | F: include/hw/char/lm32_juart.h |
207 | F: include/hw/lm32/ | |
c0bd0b50 | 208 | F: tests/tcg/lm32/ |
07bf23a7 | 209 | |
6347e1f1 | 210 | M68K TCG CPUs |
595a926d LV |
211 | M: Laurent Vivier <laurent@vivier.eu> |
212 | S: Maintained | |
fcf5ef2a | 213 | F: target/m68k/ |
e9a56114 | 214 | F: disas/m68k.c |
fd5d5c56 | 215 | |
6347e1f1 | 216 | MicroBlaze TCG CPUs |
fd5d5c56 AL |
217 | M: Edgar E. Iglesias <edgar.iglesias@gmail.com> |
218 | S: Maintained | |
fcf5ef2a | 219 | F: target/microblaze/ |
8d8b636d | 220 | F: hw/microblaze/ |
c17652ee | 221 | F: disas/microblaze.c |
fd5d5c56 | 222 | |
6347e1f1 | 223 | MIPS TCG CPUs |
0eac70b0 | 224 | M: Aleksandar Markovic <aleksandar.qemu.devel@gmail.com> |
099d510b | 225 | R: Aurelien Jarno <aurelien@aurel32.net> |
15d983de | 226 | R: Jiaxun Yang <jiaxun.yang@flygoat.com> |
97d89746 | 227 | R: Aleksandar Rikalo <aleksandar.rikalo@syrmia.com> |
6f640917 | 228 | S: Maintained |
fcf5ef2a | 229 | F: target/mips/ |
10a9794d | 230 | F: default-configs/*mips* |
d02d5fff | 231 | F: disas/*mips* |
1bf84a1e | 232 | F: docs/system/cpu-models-mips.rst.inc |
0f865314 | 233 | F: hw/intc/mips_gic.c |
8d8b636d | 234 | F: hw/mips/ |
5995db88 | 235 | F: hw/misc/mips_* |
5995db88 | 236 | F: hw/timer/mips_gictimer.c |
0f865314 | 237 | F: include/hw/intc/mips_gic.h |
5995db88 TH |
238 | F: include/hw/mips/ |
239 | F: include/hw/misc/mips_* | |
5995db88 | 240 | F: include/hw/timer/mips_gictimer.h |
5d480ddd | 241 | F: tests/acceptance/linux_ssh_mips_malta.py |
c0ac595b | 242 | F: tests/acceptance/machine_mips_malta.py |
c0bd0b50 | 243 | F: tests/tcg/mips/ |
09684557 | 244 | K: ^Subject:.*(?i)mips |
fd5d5c56 | 245 | |
6347e1f1 | 246 | Moxie TCG CPUs |
d15a9c23 AG |
247 | M: Anthony Green <green@moxielogic.com> |
248 | S: Maintained | |
fcf5ef2a | 249 | F: target/moxie/ |
c17652ee | 250 | F: disas/moxie.c |
a3ccdfb5 TH |
251 | F: hw/moxie/ |
252 | F: default-configs/moxie-softmmu.mak | |
d15a9c23 | 253 | |
6347e1f1 | 254 | NiosII TCG CPUs |
e671711c MV |
255 | M: Chris Wulff <crwulff@gmail.com> |
256 | M: Marek Vasut <marex@denx.de> | |
257 | S: Maintained | |
258 | F: target/nios2/ | |
259 | F: hw/nios2/ | |
15e10756 | 260 | F: hw/intc/nios2_iic.c |
e671711c | 261 | F: disas/nios2.c |
15e10756 | 262 | F: default-configs/nios2-softmmu.mak |
e671711c | 263 | |
6347e1f1 | 264 | OpenRISC TCG CPUs |
1d7cf18d SH |
265 | M: Stafford Horne <shorne@gmail.com> |
266 | S: Odd Fixes | |
fcf5ef2a | 267 | F: target/openrisc/ |
945dad6d | 268 | F: hw/openrisc/ |
c0bd0b50 | 269 | F: tests/tcg/openrisc/ |
945dad6d | 270 | |
6347e1f1 | 271 | PowerPC TCG CPUs |
b4daafbd | 272 | M: David Gibson <david@gibson.dropbear.id.au> |
a6c98685 | 273 | L: qemu-ppc@nongnu.org |
fd5d5c56 | 274 | S: Maintained |
fcf5ef2a | 275 | F: target/ppc/ |
8d8b636d | 276 | F: hw/ppc/ |
b5d55020 | 277 | F: include/hw/ppc/ |
c17652ee | 278 | F: disas/ppc.c |
fd5d5c56 | 279 | |
6347e1f1 | 280 | RISC-V TCG CPUs |
c1677bcc | 281 | M: Palmer Dabbelt <palmer@dabbelt.com> |
a17a61f3 | 282 | M: Alistair Francis <Alistair.Francis@wdc.com> |
4dc62b15 MC |
283 | M: Sagar Karandikar <sagark@eecs.berkeley.edu> |
284 | M: Bastian Koppelmann <kbastian@mail.uni-paderborn.de> | |
a094b354 | 285 | L: qemu-riscv@nongnu.org |
7b91ae7d | 286 | S: Supported |
4dc62b15 MC |
287 | F: target/riscv/ |
288 | F: hw/riscv/ | |
289 | F: include/hw/riscv/ | |
f936eac8 | 290 | F: linux-user/host/riscv32/ |
511f3138 | 291 | F: linux-user/host/riscv64/ |
4dc62b15 | 292 | |
a4f34ecc YS |
293 | RENESAS RX CPUs |
294 | M: Yoshinori Sato <ysato@users.sourceforge.jp> | |
295 | S: Maintained | |
296 | F: target/rx/ | |
297 | ||
6347e1f1 | 298 | S390 TCG CPUs |
2b35e93f | 299 | M: Richard Henderson <rth@twiddle.net> |
ced01bb7 | 300 | M: David Hildenbrand <david@redhat.com> |
fd5d5c56 | 301 | S: Maintained |
fcf5ef2a | 302 | F: target/s390x/ |
8d8b636d | 303 | F: hw/s390x/ |
c17652ee | 304 | F: disas/s390.c |
276ba120 | 305 | F: tests/tcg/s390x/ |
146bd283 | 306 | L: qemu-s390x@nongnu.org |
fd5d5c56 | 307 | |
6347e1f1 | 308 | SH4 TCG CPUs |
a9fb4468 | 309 | M: Yoshinori Sato <ysato@users.sourceforge.jp> |
2c9b7d1a | 310 | S: Odd Fixes |
fcf5ef2a | 311 | F: target/sh4/ |
8d8b636d | 312 | F: hw/sh4/ |
c17652ee | 313 | F: disas/sh4.c |
8a90f900 | 314 | F: include/hw/sh4/ |
fd5d5c56 | 315 | |
6347e1f1 | 316 | SPARC TCG CPUs |
f2416d3a | 317 | M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> |
2c742bf7 | 318 | M: Artyom Tarasenko <atar4qemu@gmail.com> |
fd5d5c56 | 319 | S: Maintained |
fcf5ef2a | 320 | F: target/sparc/ |
8d8b636d PB |
321 | F: hw/sparc/ |
322 | F: hw/sparc64/ | |
84dbe974 | 323 | F: include/hw/sparc/sparc64.h |
c17652ee | 324 | F: disas/sparc.c |
fd5d5c56 | 325 | |
6347e1f1 | 326 | UniCore32 TCG CPUs |
a6ea7b4c AF |
327 | M: Guan Xuetao <gxt@mprc.pku.edu.cn> |
328 | S: Maintained | |
fcf5ef2a | 329 | F: target/unicore32/ |
8d8b636d | 330 | F: hw/unicore32/ |
47b98d59 | 331 | F: include/hw/unicore32/ |
a6ea7b4c | 332 | |
6347e1f1 | 333 | X86 TCG CPUs |
d46d72fd PB |
334 | M: Paolo Bonzini <pbonzini@redhat.com> |
335 | M: Richard Henderson <rth@twiddle.net> | |
e1a04339 | 336 | M: Eduardo Habkost <ehabkost@redhat.com> |
b203a4ba | 337 | S: Maintained |
fcf5ef2a | 338 | F: target/i386/ |
4132431f | 339 | F: tests/tcg/i386/ |
3a082ec0 | 340 | F: tests/tcg/x86_64/ |
8d8b636d | 341 | F: hw/i386/ |
c17652ee | 342 | F: disas/i386.c |
1bf84a1e | 343 | F: docs/system/cpu-models-x86.rst.inc |
e18a8b34 | 344 | T: git https://github.com/ehabkost/qemu.git x86-next |
fd5d5c56 | 345 | |
6347e1f1 | 346 | Xtensa TCG CPUs |
16e7caae | 347 | M: Max Filippov <jcmvbkbc@gmail.com> |
b8105d21 | 348 | W: http://wiki.osll.ru/doku.php?id=etc:users:jcmvbkbc:qemu-target-xtensa |
16e7caae | 349 | S: Maintained |
fcf5ef2a | 350 | F: target/xtensa/ |
8d8b636d | 351 | F: hw/xtensa/ |
c0bd0b50 | 352 | F: tests/tcg/xtensa/ |
5a6539e6 | 353 | F: disas/xtensa.c |
895e4897 MF |
354 | F: include/hw/xtensa/xtensa-isa.h |
355 | F: default-configs/xtensa*.mak | |
16e7caae | 356 | |
6347e1f1 | 357 | TriCore TCG CPUs |
48e06fe0 BK |
358 | M: Bastian Koppelmann <kbastian@mail.uni-paderborn.de> |
359 | S: Maintained | |
fcf5ef2a | 360 | F: target/tricore/ |
48e06fe0 | 361 | F: hw/tricore/ |
d46d14e6 | 362 | F: include/hw/tricore/ |
48e06fe0 | 363 | |
dd28bebd AB |
364 | Multiarch Linux User Tests |
365 | M: Alex Bennée <alex.bennee@linaro.org> | |
00a25291 | 366 | S: Maintained |
dd28bebd AB |
367 | F: tests/tcg/multiarch/ |
368 | ||
84995ea2 MA |
369 | Guest CPU Cores (KVM) |
370 | --------------------- | |
6347e1f1 | 371 | Overall KVM CPUs |
c6d559d9 | 372 | M: Paolo Bonzini <pbonzini@redhat.com> |
fd5d5c56 AL |
373 | L: kvm@vger.kernel.org |
374 | S: Supported | |
a6bb42f2 | 375 | F: */*/kvm* |
1962cb20 | 376 | F: accel/kvm/ |
9681ad3e TH |
377 | F: accel/stubs/kvm-stub.c |
378 | F: include/hw/kvm/ | |
a95e9a48 | 379 | F: include/sysemu/kvm*.h |
9681ad3e | 380 | F: scripts/kvm/kvm_flightrecorder |
fd5d5c56 | 381 | |
6347e1f1 | 382 | ARM KVM CPUs |
ed4659d1 | 383 | M: Peter Maydell <peter.maydell@linaro.org> |
b4f2bd1c | 384 | L: qemu-arm@nongnu.org |
ed4659d1 | 385 | S: Maintained |
fcf5ef2a | 386 | F: target/arm/kvm.c |
ed4659d1 | 387 | |
6347e1f1 | 388 | MIPS KVM CPUs |
15d983de | 389 | M: Huacai Chen <chenhc@lemote.com> |
0eac70b0 | 390 | M: Aleksandar Markovic <aleksandar.qemu.devel@gmail.com> |
134f7f7d | 391 | S: Odd Fixes |
fcf5ef2a | 392 | F: target/mips/kvm.c |
a31896c4 | 393 | |
6347e1f1 | 394 | PPC KVM CPUs |
bba8e23a | 395 | M: David Gibson <david@gibson.dropbear.id.au> |
fd5d5c56 | 396 | S: Maintained |
fcf5ef2a | 397 | F: target/ppc/kvm.c |
fd5d5c56 | 398 | |
6347e1f1 | 399 | S390 KVM CPUs |
7c8e2647 | 400 | M: Halil Pasic <pasic@linux.ibm.com> |
c1976ae7 | 401 | M: Cornelia Huck <cohuck@redhat.com> |
7c8e2647 | 402 | M: Christian Borntraeger <borntraeger@de.ibm.com> |
0922e8c0 | 403 | S: Supported |
fcf5ef2a | 404 | F: target/s390x/kvm.c |
040078e0 DH |
405 | F: target/s390x/kvm_s390x.h |
406 | F: target/s390x/kvm-stub.c | |
fcf5ef2a TH |
407 | F: target/s390x/ioinst.[ch] |
408 | F: target/s390x/machine.c | |
74b4c74d | 409 | F: target/s390x/sigp.c |
8b3410de CH |
410 | F: target/s390x/cpu_features*.[ch] |
411 | F: target/s390x/cpu_models.[ch] | |
c3347ed0 JF |
412 | F: hw/s390x/pv.c |
413 | F: include/hw/s390x/pv.h | |
4277af19 CH |
414 | F: hw/intc/s390_flic.c |
415 | F: hw/intc/s390_flic_kvm.c | |
416 | F: include/hw/s390x/s390_flic.h | |
c5bfb202 | 417 | F: gdb-xml/s390*.xml |
e18a8b34 SH |
418 | T: git https://github.com/cohuck/qemu.git s390-next |
419 | T: git https://github.com/borntraeger/qemu.git s390-next | |
146bd283 | 420 | L: qemu-s390x@nongnu.org |
fd5d5c56 | 421 | |
6347e1f1 | 422 | X86 KVM CPUs |
d46d72fd | 423 | M: Paolo Bonzini <pbonzini@redhat.com> |
fd5d5c56 AL |
424 | M: Marcelo Tosatti <mtosatti@redhat.com> |
425 | L: kvm@vger.kernel.org | |
426 | S: Supported | |
fcf5ef2a | 427 | F: target/i386/kvm.c |
9681ad3e | 428 | F: scripts/kvm/vmxcap |
fd5d5c56 | 429 | |
79ac3915 PMD |
430 | Guest CPU Cores (other accelerators) |
431 | ------------------------------------ | |
432 | Overall | |
433 | M: Richard Henderson <rth@twiddle.net> | |
434 | R: Paolo Bonzini <pbonzini@redhat.com> | |
435 | S: Maintained | |
436 | F: include/sysemu/accel.h | |
437 | F: accel/accel.c | |
438 | F: accel/Makefile.objs | |
439 | F: accel/stubs/Makefile.objs | |
440 | ||
674fc21f | 441 | X86 HVF CPUs |
de6b528b | 442 | M: Cameron Esfahani <dirty@apple.com> |
674fc21f | 443 | M: Roman Bolshakov <r.bolshakov@yadro.com> |
de6b528b | 444 | W: https://wiki.qemu.org/Features/HVF |
674fc21f RB |
445 | S: Maintained |
446 | F: accel/stubs/hvf-stub.c | |
447 | F: target/i386/hvf/ | |
448 | F: include/sysemu/hvf.h | |
449 | ||
c220cdec SM |
450 | WHPX CPUs |
451 | M: Sunil Muthuswamy <sunilmut@microsoft.com> | |
452 | S: Supported | |
453 | F: target/i386/whpx-all.c | |
454 | F: target/i386/whp-dispatch.h | |
455 | F: accel/stubs/whpx-stub.c | |
456 | F: include/sysemu/whpx.h | |
457 | ||
84995ea2 MA |
458 | Guest CPU Cores (Xen) |
459 | --------------------- | |
6347e1f1 | 460 | X86 Xen CPUs |
3623c57e SS |
461 | M: Stefano Stabellini <sstabellini@kernel.org> |
462 | M: Anthony Perard <anthony.perard@citrix.com> | |
784e9727 | 463 | M: Paul Durrant <paul@xen.org> |
6d06220a | 464 | L: xen-devel@lists.xenproject.org |
8a6b0cd7 | 465 | S: Supported |
8a6b0cd7 | 466 | F: */xen* |
da278d58 | 467 | F: accel/xen/* |
b827891d | 468 | F: hw/9pfs/xen-9p* |
c92451c2 PB |
469 | F: hw/char/xen_console.c |
470 | F: hw/display/xenfb.c | |
471 | F: hw/net/xen_nic.c | |
758af9cf | 472 | F: hw/usb/xen-usb.c |
1a72d9ae | 473 | F: hw/block/xen* |
4ea7d1a7 | 474 | F: hw/block/dataplane/xen* |
c92451c2 PB |
475 | F: hw/xen/ |
476 | F: hw/xenpv/ | |
9027ac50 | 477 | F: hw/i386/xen/ |
1401897c | 478 | F: hw/pci-host/xen_igd_pt.c |
fcab2b46 | 479 | F: include/hw/block/dataplane/xen* |
c92451c2 | 480 | F: include/hw/xen/ |
da278d58 | 481 | F: include/sysemu/xen.h |
9027ac50 | 482 | F: include/sysemu/xen-mapcache.h |
8a6b0cd7 | 483 | |
6c94b952 CX |
484 | Guest CPU Cores (HAXM) |
485 | --------------------- | |
486 | X86 HAXM CPUs | |
487 | M: Wenchao Wang <wenchao.wang@intel.com> | |
488 | M: Colin Xu <colin.xu@intel.com> | |
489 | L: haxm-team@intel.com | |
490 | W: https://github.com/intel/haxm/issues | |
491 | S: Maintained | |
f7091f5f | 492 | F: accel/stubs/hax-stub.c |
6c94b952 CX |
493 | F: include/sysemu/hax.h |
494 | F: target/i386/hax-* | |
495 | ||
84995ea2 MA |
496 | Hosts |
497 | ----- | |
1bdd6874 | 498 | LINUX |
f5fecb49 PMD |
499 | M: Michael S. Tsirkin <mst@redhat.com> |
500 | M: Cornelia Huck <cohuck@redhat.com> | |
501 | M: Paolo Bonzini <pbonzini@redhat.com> | |
1bdd6874 | 502 | S: Maintained |
1bdd6874 | 503 | F: linux-headers/ |
f5fecb49 | 504 | F: scripts/update-linux-headers.sh |
1bdd6874 SW |
505 | |
506 | POSIX | |
f3f0204d | 507 | M: Paolo Bonzini <pbonzini@redhat.com> |
1bdd6874 | 508 | S: Maintained |
f3f0204d PMD |
509 | F: os-posix.c |
510 | F: include/sysemu/os-posix.h | |
511 | F: util/*posix*.c | |
512 | F: include/qemu/*posix*.h | |
1bdd6874 | 513 | |
3c2bdbc1 | 514 | NETBSD |
3c2bdbc1 KR |
515 | M: Kamil Rytarowski <kamil@netbsd.org> |
516 | S: Maintained | |
1b61270b | 517 | K: ^Subject:.*(?i)NetBSD |
3c2bdbc1 | 518 | |
0a773d55 | 519 | OPENBSD |
0a773d55 BS |
520 | M: Brad Smith <brad@comstyle.com> |
521 | S: Maintained | |
522 | K: ^Subject:.*(?i)OpenBSD | |
523 | ||
1bdd6874 | 524 | W32, W64 |
1bdd6874 SW |
525 | M: Stefan Weil <sw@weilnetz.de> |
526 | S: Maintained | |
527 | F: *win32* | |
03972660 TH |
528 | F: */*win32* |
529 | F: include/*/*win32* | |
530 | X: qga/*win32* | |
885bdc95 | 531 | F: qemu.nsi |
1bdd6874 | 532 | |
b250d04a | 533 | Alpha Machines |
84995ea2 | 534 | -------------- |
b250d04a PMD |
535 | M: Richard Henderson <rth@twiddle.net> |
536 | S: Maintained | |
537 | F: hw/alpha/ | |
7bea0dd4 | 538 | F: hw/isa/smc37c669-superio.c |
8d8a8ab5 | 539 | F: tests/tcg/alpha/system/ |
b250d04a | 540 | |
fd5d5c56 AL |
541 | ARM Machines |
542 | ------------ | |
84291fe7 | 543 | Allwinner-a10 |
85b4d5da | 544 | M: Beniamino Galvani <b.galvani@gmail.com> |
a00d7f20 | 545 | M: Peter Maydell <peter.maydell@linaro.org> |
b4f2bd1c | 546 | L: qemu-arm@nongnu.org |
a00d7f20 | 547 | S: Odd Fixes |
85b4d5da BG |
548 | F: hw/*/allwinner* |
549 | F: include/hw/*/allwinner* | |
84291fe7 LG |
550 | F: hw/arm/cubieboard.c |
551 | ||
740dafc0 NL |
552 | Allwinner-h3 |
553 | M: Niek Linnenbank <nieklinnenbank@gmail.com> | |
554 | L: qemu-arm@nongnu.org | |
555 | S: Maintained | |
556 | F: hw/*/allwinner-h3* | |
557 | F: include/hw/*/allwinner-h3* | |
b0c96666 | 558 | F: hw/arm/orangepi.c |
0553ef42 | 559 | F: docs/system/orangepi.rst |
740dafc0 | 560 | |
e5a6a6e6 | 561 | ARM PrimeCell and CMSDK devices |
06271000 | 562 | M: Peter Maydell <peter.maydell@linaro.org> |
b4f2bd1c | 563 | L: qemu-arm@nongnu.org |
06271000 PB |
564 | S: Maintained |
565 | F: hw/char/pl011.c | |
c6427ff7 | 566 | F: include/hw/char/pl011.h |
06271000 PB |
567 | F: hw/display/pl110* |
568 | F: hw/dma/pl080.c | |
aa74e355 | 569 | F: include/hw/dma/pl080.h |
06271000 PB |
570 | F: hw/dma/pl330.c |
571 | F: hw/gpio/pl061.c | |
572 | F: hw/input/pl050.c | |
573 | F: hw/intc/pl190.c | |
574 | F: hw/sd/pl181.c | |
1d52866f PM |
575 | F: hw/ssi/pl022.c |
576 | F: include/hw/ssi/pl022.h | |
877c181c PMD |
577 | F: hw/rtc/pl031.c |
578 | F: include/hw/rtc/pl031.h | |
06271000 | 579 | F: include/hw/arm/primecell.h |
e5a6a6e6 PM |
580 | F: hw/timer/cmsdk-apb-timer.c |
581 | F: include/hw/timer/cmsdk-apb-timer.h | |
4f4c6206 PM |
582 | F: hw/timer/cmsdk-apb-dualtimer.c |
583 | F: include/hw/timer/cmsdk-apb-dualtimer.h | |
e5a6a6e6 PM |
584 | F: hw/char/cmsdk-apb-uart.c |
585 | F: include/hw/char/cmsdk-apb-uart.h | |
050c2ea0 PM |
586 | F: hw/watchdog/cmsdk-apb-watchdog.c |
587 | F: include/hw/watchdog/cmsdk-apb-watchdog.h | |
0d4a7551 PM |
588 | F: hw/misc/tz-ppc.c |
589 | F: include/hw/misc/tz-ppc.h | |
344f4b15 PM |
590 | F: hw/misc/tz-mpc.c |
591 | F: include/hw/misc/tz-mpc.h | |
211e701d PM |
592 | F: hw/misc/tz-msc.c |
593 | F: include/hw/misc/tz-msc.h | |
06271000 PB |
594 | |
595 | ARM cores | |
596 | M: Peter Maydell <peter.maydell@linaro.org> | |
b4f2bd1c | 597 | L: qemu-arm@nongnu.org |
06271000 PB |
598 | S: Maintained |
599 | F: hw/intc/arm* | |
600 | F: hw/intc/gic_internal.h | |
601 | F: hw/misc/a9scu.c | |
602 | F: hw/misc/arm11scu.c | |
b7f30114 | 603 | F: hw/misc/arm_l2x0.c |
06271000 | 604 | F: hw/timer/a9gtimer* |
c6427ff7 PMD |
605 | F: hw/timer/arm* |
606 | F: include/hw/arm/arm*.h | |
06271000 PB |
607 | F: include/hw/intc/arm* |
608 | F: include/hw/misc/a9scu.h | |
609 | F: include/hw/misc/arm11scu.h | |
610 | F: include/hw/timer/a9gtimer.h | |
611 | F: include/hw/timer/arm_mptimer.h | |
c6427ff7 | 612 | F: include/hw/timer/armv7m_systick.h |
1e8a1fae | 613 | F: tests/qtest/test-arm-mptimer.c |
06271000 | 614 | |
fc63dcff | 615 | Exynos |
f44c5c67 | 616 | M: Igor Mitsyanko <i.mitsyanko@gmail.com> |
a00d7f20 | 617 | M: Peter Maydell <peter.maydell@linaro.org> |
b4f2bd1c | 618 | L: qemu-arm@nongnu.org |
a00d7f20 | 619 | S: Odd Fixes |
8d8b636d | 620 | F: hw/*/exynos* |
ed0db866 | 621 | F: include/hw/arm/exynos4210.h |
fc63dcff | 622 | |
766fd09f | 623 | Calxeda Highbank |
9ef137ca | 624 | M: Rob Herring <robh@kernel.org> |
a00d7f20 | 625 | M: Peter Maydell <peter.maydell@linaro.org> |
b4f2bd1c | 626 | L: qemu-arm@nongnu.org |
a00d7f20 | 627 | S: Odd Fixes |
8d8b636d PB |
628 | F: hw/arm/highbank.c |
629 | F: hw/net/xgmac.c | |
766fd09f | 630 | |
9082f121 AP |
631 | Canon DIGIC |
632 | M: Antony Pavlov <antonynpavlov@gmail.com> | |
a00d7f20 | 633 | M: Peter Maydell <peter.maydell@linaro.org> |
b4f2bd1c | 634 | L: qemu-arm@nongnu.org |
a00d7f20 | 635 | S: Odd Fixes |
9082f121 AP |
636 | F: include/hw/arm/digic.h |
637 | F: hw/*/digic* | |
7ad5f2d1 | 638 | F: include/hw/*/digic* |
56c2c592 | 639 | F: tests/acceptance/machine_arm_canona1100.py |
2d21dd17 | 640 | F: docs/system/arm/digic.rst |
9082f121 | 641 | |
9c8fdcec AP |
642 | Goldfish RTC |
643 | M: Anup Patel <anup.patel@wdc.com> | |
644 | M: Alistair Francis <Alistair.Francis@wdc.com> | |
645 | L: qemu-riscv@nongnu.org | |
646 | S: Maintained | |
647 | F: hw/rtc/goldfish_rtc.c | |
648 | F: include/hw/rtc/goldfish_rtc.h | |
649 | ||
fd5d5c56 | 650 | Gumstix |
a00d7f20 PM |
651 | M: Peter Maydell <peter.maydell@linaro.org> |
652 | R: Philippe Mathieu-Daudé <f4bug@amsat.org> | |
b4f2bd1c | 653 | L: qemu-arm@nongnu.org |
1f7161d2 | 654 | S: Odd Fixes |
8d8b636d | 655 | F: hw/arm/gumstix.c |
bb309000 | 656 | F: docs/system/arm/gumstix.rst |
fd5d5c56 | 657 | |
123a069a TH |
658 | i.MX25 PDK |
659 | M: Peter Maydell <peter.maydell@linaro.org> | |
660 | R: Jean-Christophe Dubois <jcd@tribudubois.net> | |
661 | L: qemu-arm@nongnu.org | |
662 | S: Odd Fixes | |
663 | F: hw/arm/fsl-imx25.c | |
664 | F: hw/arm/imx25_pdk.c | |
665 | F: hw/misc/imx25_ccm.c | |
37f95959 | 666 | F: hw/watchdog/wdt_imx2.c |
123a069a TH |
667 | F: include/hw/arm/fsl-imx25.h |
668 | F: include/hw/misc/imx25_ccm.h | |
37f95959 | 669 | F: include/hw/watchdog/wdt_imx2.h |
123a069a | 670 | |
95a5db3a | 671 | i.MX31 (kzm) |
0325559d | 672 | M: Peter Chubb <peter.chubb@nicta.com.au> |
a00d7f20 | 673 | M: Peter Maydell <peter.maydell@linaro.org> |
b4f2bd1c | 674 | L: qemu-arm@nongnu.org |
95a5db3a | 675 | S: Odd Fixes |
8d8b636d | 676 | F: hw/arm/kzm.c |
95a5db3a TH |
677 | F: hw/*/imx_* |
678 | F: hw/*/*imx31* | |
679 | F: include/hw/*/imx_* | |
680 | F: include/hw/*/*imx31* | |
0325559d | 681 | |
fd5d5c56 | 682 | Integrator CP |
1ce9ce6a | 683 | M: Peter Maydell <peter.maydell@linaro.org> |
b4f2bd1c | 684 | L: qemu-arm@nongnu.org |
fd5d5c56 | 685 | S: Maintained |
8d8b636d | 686 | F: hw/arm/integratorcp.c |
f7e242d6 | 687 | F: hw/misc/arm_integrator_debug.c |
b7f30114 | 688 | F: include/hw/misc/arm_integrator_debug.h |
5e0ac7e0 | 689 | F: tests/acceptance/machine_arm_integratorcp.py |
c11a8e89 | 690 | F: docs/system/arm/integratorcp.rst |
fd5d5c56 | 691 | |
95a5db3a TH |
692 | MCIMX6UL EVK / i.MX6ul |
693 | M: Peter Maydell <peter.maydell@linaro.org> | |
694 | R: Jean-Christophe Dubois <jcd@tribudubois.net> | |
695 | L: qemu-arm@nongnu.org | |
696 | S: Odd Fixes | |
697 | F: hw/arm/mcimx6ul-evk.c | |
698 | F: hw/arm/fsl-imx6ul.c | |
699 | F: hw/misc/imx6ul_ccm.c | |
700 | F: include/hw/arm/fsl-imx6ul.h | |
701 | F: include/hw/misc/imx6ul_ccm.h | |
702 | ||
703 | MCIMX7D SABRE / i.MX7 | |
704 | M: Peter Maydell <peter.maydell@linaro.org> | |
705 | R: Andrey Smirnov <andrew.smirnov@gmail.com> | |
706 | L: qemu-arm@nongnu.org | |
707 | S: Odd Fixes | |
708 | F: hw/arm/mcimx7d-sabre.c | |
709 | F: hw/arm/fsl-imx7.c | |
b7f30114 | 710 | F: hw/misc/imx7_*.c |
95a5db3a | 711 | F: include/hw/arm/fsl-imx7.h |
b7f30114 | 712 | F: include/hw/misc/imx7_*.h |
95a5db3a TH |
713 | F: hw/pci-host/designware.c |
714 | F: include/hw/pci-host/designware.h | |
715 | ||
e5a6a6e6 PM |
716 | MPS2 |
717 | M: Peter Maydell <peter.maydell@linaro.org> | |
718 | L: qemu-arm@nongnu.org | |
719 | S: Maintained | |
720 | F: hw/arm/mps2.c | |
0d4a7551 PM |
721 | F: hw/arm/mps2-tz.c |
722 | F: hw/misc/mps2-*.c | |
723 | F: include/hw/misc/mps2-*.h | |
6eee5d24 PM |
724 | F: hw/arm/armsse.c |
725 | F: include/hw/arm/armsse.h | |
c56c5760 PMD |
726 | F: hw/misc/iotkit-secctl.c |
727 | F: include/hw/misc/iotkit-secctl.h | |
75750e4d PM |
728 | F: hw/misc/iotkit-sysctl.c |
729 | F: include/hw/misc/iotkit-sysctl.h | |
c667a25b PM |
730 | F: hw/misc/iotkit-sysinfo.c |
731 | F: include/hw/misc/iotkit-sysinfo.h | |
5aeb3689 PM |
732 | F: hw/misc/armsse-cpuid.c |
733 | F: include/hw/misc/armsse-cpuid.h | |
cdf63440 PM |
734 | F: hw/misc/armsse-mhu.c |
735 | F: include/hw/misc/armsse-mhu.h | |
ba7912a5 | 736 | F: docs/system/arm/mps2.rst |
e5a6a6e6 | 737 | |
8f69a4c1 PM |
738 | Musca |
739 | M: Peter Maydell <peter.maydell@linaro.org> | |
740 | L: qemu-arm@nongnu.org | |
741 | S: Maintained | |
742 | F: hw/arm/musca.c | |
9f8f640e | 743 | F: docs/system/arm/musca.rst |
8f69a4c1 | 744 | |
fd5d5c56 AL |
745 | Musicpal |
746 | M: Jan Kiszka <jan.kiszka@web.de> | |
a00d7f20 | 747 | M: Peter Maydell <peter.maydell@linaro.org> |
b4f2bd1c | 748 | L: qemu-arm@nongnu.org |
a00d7f20 | 749 | S: Odd Fixes |
8d8b636d | 750 | F: hw/arm/musicpal.c |
c11a8e89 | 751 | F: docs/system/arm/musicpal.rst |
fd5d5c56 | 752 | |
e5a7ba87 HS |
753 | Nuvoton NPCM7xx |
754 | M: Havard Skinnemoen <hskinnemoen@google.com> | |
755 | M: Tyrone Ting <kfting@nuvoton.com> | |
756 | L: qemu-arm@nongnu.org | |
757 | S: Supported | |
758 | F: hw/*/npcm7xx* | |
759 | F: include/hw/*/npcm7xx* | |
d1cb5eda HS |
760 | F: pc-bios/npcm7xx_bootrom.bin |
761 | F: roms/vbootrom | |
e5a7ba87 | 762 | |
fd5d5c56 AL |
763 | nSeries |
764 | M: Andrzej Zaborowski <balrogg@gmail.com> | |
a00d7f20 | 765 | M: Peter Maydell <peter.maydell@linaro.org> |
b4f2bd1c | 766 | L: qemu-arm@nongnu.org |
a00d7f20 | 767 | S: Odd Fixes |
8d8b636d | 768 | F: hw/arm/nseries.c |
8a08cc71 | 769 | F: hw/display/blizzard.c |
b7f30114 TH |
770 | F: hw/input/lm832x.c |
771 | F: hw/input/tsc2005.c | |
772 | F: hw/misc/cbus.c | |
6a648a5f | 773 | F: hw/rtc/twl92230.c |
8a08cc71 | 774 | F: include/hw/display/blizzard.h |
a331dd02 | 775 | F: include/hw/input/tsc2xxx.h |
e8fa3958 | 776 | F: include/hw/misc/cbus.h |
050a82f0 | 777 | F: tests/acceptance/machine_arm_n8x0.py |
c11a8e89 | 778 | F: docs/system/arm/nseries.rst |
fd5d5c56 AL |
779 | |
780 | Palm | |
781 | M: Andrzej Zaborowski <balrogg@gmail.com> | |
a00d7f20 | 782 | M: Peter Maydell <peter.maydell@linaro.org> |
b4f2bd1c | 783 | L: qemu-arm@nongnu.org |
a00d7f20 | 784 | S: Odd Fixes |
8d8b636d | 785 | F: hw/arm/palm.c |
b7f30114 | 786 | F: hw/input/tsc210x.c |
a331dd02 | 787 | F: include/hw/input/tsc2xxx.h |
c11a8e89 | 788 | F: docs/system/arm/palm.rst |
fd5d5c56 | 789 | |
95a5db3a TH |
790 | Raspberry Pi |
791 | M: Peter Maydell <peter.maydell@linaro.org> | |
792 | R: Andrew Baumann <Andrew.Baumann@microsoft.com> | |
793 | R: Philippe Mathieu-Daudé <f4bug@amsat.org> | |
794 | L: qemu-arm@nongnu.org | |
795 | S: Odd Fixes | |
123a069a | 796 | F: hw/arm/raspi.c |
95a5db3a TH |
797 | F: hw/arm/raspi_platform.h |
798 | F: hw/*/bcm283* | |
799 | F: include/hw/arm/raspi* | |
800 | F: include/hw/*/bcm283* | |
801 | ||
fd5d5c56 | 802 | Real View |
1ce9ce6a | 803 | M: Peter Maydell <peter.maydell@linaro.org> |
b4f2bd1c | 804 | L: qemu-arm@nongnu.org |
fd5d5c56 | 805 | S: Maintained |
8d8b636d | 806 | F: hw/arm/realview* |
f7e242d6 | 807 | F: hw/cpu/realview_mpcore.c |
5ea53049 PB |
808 | F: hw/intc/realview_gic.c |
809 | F: include/hw/intc/realview_gic.h | |
c11a8e89 | 810 | F: docs/system/arm/realview.rst |
fd5d5c56 | 811 | |
9b31bff0 | 812 | PXA2XX |
fd5d5c56 | 813 | M: Andrzej Zaborowski <balrogg@gmail.com> |
a00d7f20 | 814 | M: Peter Maydell <peter.maydell@linaro.org> |
b4f2bd1c | 815 | L: qemu-arm@nongnu.org |
a00d7f20 | 816 | S: Odd Fixes |
9b31bff0 | 817 | F: hw/arm/mainstone.c |
8d8b636d | 818 | F: hw/arm/spitz.c |
9b31bff0 PB |
819 | F: hw/arm/tosa.c |
820 | F: hw/arm/z2.c | |
821 | F: hw/*/pxa2xx* | |
123a069a TH |
822 | F: hw/display/tc6393xb.c |
823 | F: hw/gpio/max7310.c | |
824 | F: hw/gpio/zaurus.c | |
f7e242d6 | 825 | F: hw/misc/mst_fpga.c |
b7f30114 | 826 | F: hw/misc/max111x.c |
30296812 | 827 | F: include/hw/misc/max111x.h |
ed0db866 | 828 | F: include/hw/arm/pxa.h |
123a069a | 829 | F: include/hw/arm/sharpsl.h |
ee2ccc57 | 830 | F: include/hw/display/tc6393xb.h |
c11a8e89 | 831 | F: docs/system/arm/xscale.rst |
fd5d5c56 | 832 | |
95a5db3a TH |
833 | SABRELITE / i.MX6 |
834 | M: Peter Maydell <peter.maydell@linaro.org> | |
835 | R: Jean-Christophe Dubois <jcd@tribudubois.net> | |
836 | L: qemu-arm@nongnu.org | |
837 | S: Odd Fixes | |
838 | F: hw/arm/sabrelite.c | |
839 | F: hw/arm/fsl-imx6.c | |
b7f30114 | 840 | F: hw/misc/imx6_*.c |
95a5db3a | 841 | F: hw/ssi/imx_spi.c |
0701a5ef GR |
842 | F: hw/usb/imx-usb-phy.c |
843 | F: include/hw/usb/imx-usb-phy.h | |
95a5db3a | 844 | F: include/hw/arm/fsl-imx6.h |
b7f30114 | 845 | F: include/hw/misc/imx6_*.h |
95a5db3a TH |
846 | F: include/hw/ssi/imx_spi.h |
847 | ||
64580903 | 848 | SBSA-REF |
428a3777 | 849 | M: Radoslaw Biernacki <rad@semihalf.com> |
64580903 | 850 | M: Peter Maydell <peter.maydell@linaro.org> |
aff55693 | 851 | R: Leif Lindholm <leif@nuviainc.com> |
64580903 HZ |
852 | L: qemu-arm@nongnu.org |
853 | S: Maintained | |
854 | F: hw/arm/sbsa-ref.c | |
855 | ||
671f11b2 TH |
856 | Sharp SL-5500 (Collie) PDA |
857 | M: Peter Maydell <peter.maydell@linaro.org> | |
858 | L: qemu-arm@nongnu.org | |
859 | S: Odd Fixes | |
860 | F: hw/arm/collie.c | |
861 | F: hw/arm/strongarm* | |
b76b60f5 | 862 | F: docs/system/arm/collie.rst |
671f11b2 | 863 | |
fd5d5c56 | 864 | Stellaris |
1ce9ce6a | 865 | M: Peter Maydell <peter.maydell@linaro.org> |
b4f2bd1c | 866 | L: qemu-arm@nongnu.org |
fd5d5c56 | 867 | S: Maintained |
8d8b636d | 868 | F: hw/*/stellaris* |
98fa3327 | 869 | F: include/hw/input/gamepad.h |
c11a8e89 | 870 | F: docs/system/arm/stellaris.rst |
fd5d5c56 | 871 | |
95a5db3a TH |
872 | Versatile Express |
873 | M: Peter Maydell <peter.maydell@linaro.org> | |
874 | L: qemu-arm@nongnu.org | |
875 | S: Maintained | |
876 | F: hw/arm/vexpress.c | |
5a1d4244 | 877 | F: docs/system/arm/vexpress.rst |
95a5db3a | 878 | |
fd5d5c56 | 879 | Versatile PB |
1ce9ce6a | 880 | M: Peter Maydell <peter.maydell@linaro.org> |
b4f2bd1c | 881 | L: qemu-arm@nongnu.org |
fd5d5c56 | 882 | S: Maintained |
8d8b636d | 883 | F: hw/*/versatile* |
f61c3fb5 | 884 | F: include/hw/i2c/arm_sbcon_i2c.h |
c6427ff7 | 885 | F: hw/misc/arm_sysctl.c |
c11a8e89 | 886 | F: docs/system/arm/versatile.rst |
fd5d5c56 | 887 | |
95a5db3a TH |
888 | Virt |
889 | M: Peter Maydell <peter.maydell@linaro.org> | |
890 | L: qemu-arm@nongnu.org | |
891 | S: Maintained | |
892 | F: hw/arm/virt* | |
893 | F: include/hw/arm/virt.h | |
6a0b7505 | 894 | F: docs/system/arm/virt.rst |
95a5db3a | 895 | |
e3260506 | 896 | Xilinx Zynq |
cc0100f4 | 897 | M: Edgar E. Iglesias <edgar.iglesias@gmail.com> |
c22e580c | 898 | M: Alistair Francis <alistair@alistair23.me> |
a00d7f20 | 899 | M: Peter Maydell <peter.maydell@linaro.org> |
b4f2bd1c | 900 | L: qemu-arm@nongnu.org |
e3260506 | 901 | S: Maintained |
cc0100f4 | 902 | F: hw/*/xilinx_* |
8d8b636d | 903 | F: hw/*/cadence_* |
f7e242d6 TH |
904 | F: hw/misc/zynq* |
905 | F: include/hw/misc/zynq* | |
cc0100f4 | 906 | X: hw/ssi/xilinx_* |
e3260506 | 907 | |
ff9e157b | 908 | Xilinx ZynqMP and Versal |
c22e580c | 909 | M: Alistair Francis <alistair@alistair23.me> |
cc0100f4 | 910 | M: Edgar E. Iglesias <edgar.iglesias@gmail.com> |
a00d7f20 | 911 | M: Peter Maydell <peter.maydell@linaro.org> |
b4f2bd1c | 912 | L: qemu-arm@nongnu.org |
137805f5 | 913 | S: Maintained |
cc0100f4 | 914 | F: hw/*/xlnx*.c |
f586d5fc | 915 | F: include/hw/*/xlnx*.h |
24d6d8bf PMD |
916 | F: include/hw/ssi/xilinx_spips.h |
917 | F: hw/display/dpcd.c | |
918 | F: include/hw/display/dpcd.h | |
ff9e157b | 919 | F: docs/system/arm/xlnx-versal-virt.rst |
137805f5 | 920 | |
8f4d260e | 921 | ARM ACPI Subsystem |
e59f13d7 | 922 | M: Shannon Zhao <shannon.zhaosl@gmail.com> |
b4f2bd1c | 923 | L: qemu-arm@nongnu.org |
8f4d260e SZ |
924 | S: Maintained |
925 | F: hw/arm/virt-acpi-build.c | |
8f4d260e | 926 | |
a1f8193b AF |
927 | STM32F205 |
928 | M: Alistair Francis <alistair@alistair23.me> | |
a00d7f20 | 929 | M: Peter Maydell <peter.maydell@linaro.org> |
8ef350b3 | 930 | L: qemu-arm@nongnu.org |
a1f8193b AF |
931 | S: Maintained |
932 | F: hw/arm/stm32f205_soc.c | |
933 | F: hw/misc/stm32f2xx_syscfg.c | |
934 | F: hw/char/stm32f2xx_usart.c | |
935 | F: hw/timer/stm32f2xx_timer.c | |
936 | F: hw/adc/* | |
937 | F: hw/ssi/stm32f2xx_spi.c | |
0e0d345b | 938 | F: include/hw/*/stm32*.h |
a1f8193b | 939 | |
529fc5fd AF |
940 | STM32F405 |
941 | M: Alistair Francis <alistair@alistair23.me> | |
942 | M: Peter Maydell <peter.maydell@linaro.org> | |
8ef350b3 | 943 | L: qemu-arm@nongnu.org |
529fc5fd AF |
944 | S: Maintained |
945 | F: hw/arm/stm32f405_soc.c | |
946 | F: hw/misc/stm32f4xx_syscfg.c | |
947 | F: hw/misc/stm32f4xx_exti.c | |
948 | ||
a1f8193b AF |
949 | Netduino 2 |
950 | M: Alistair Francis <alistair@alistair23.me> | |
a00d7f20 | 951 | M: Peter Maydell <peter.maydell@linaro.org> |
8ef350b3 | 952 | L: qemu-arm@nongnu.org |
a1f8193b AF |
953 | S: Maintained |
954 | F: hw/arm/netduino2.c | |
955 | ||
60d6c427 AF |
956 | Netduino Plus 2 |
957 | M: Alistair Francis <alistair@alistair23.me> | |
958 | M: Peter Maydell <peter.maydell@linaro.org> | |
8ef350b3 | 959 | L: qemu-arm@nongnu.org |
60d6c427 AF |
960 | S: Maintained |
961 | F: hw/arm/netduinoplus2.c | |
962 | ||
670bc4cb SS |
963 | SmartFusion2 |
964 | M: Subbaraya Sundeep <sundeep.lkml@gmail.com> | |
a00d7f20 | 965 | M: Peter Maydell <peter.maydell@linaro.org> |
8ef350b3 | 966 | L: qemu-arm@nongnu.org |
670bc4cb SS |
967 | S: Maintained |
968 | F: hw/arm/msf2-soc.c | |
969 | F: hw/misc/msf2-sysreg.c | |
970 | F: hw/timer/mss-timer.c | |
971 | F: hw/ssi/mss-spi.c | |
972 | F: include/hw/arm/msf2-soc.h | |
973 | F: include/hw/misc/msf2-sysreg.h | |
974 | F: include/hw/timer/mss-timer.h | |
975 | F: include/hw/ssi/mss-spi.h | |
1c664378 SS |
976 | F: hw/net/msf2-emac.c |
977 | F: include/hw/net/msf2-emac.h | |
670bc4cb SS |
978 | |
979 | Emcraft M2S-FG484 | |
980 | M: Subbaraya Sundeep <sundeep.lkml@gmail.com> | |
a00d7f20 | 981 | M: Peter Maydell <peter.maydell@linaro.org> |
8ef350b3 | 982 | L: qemu-arm@nongnu.org |
670bc4cb SS |
983 | S: Maintained |
984 | F: hw/arm/msf2-som.c | |
985 | ||
f87db1ba JS |
986 | ASPEED BMCs |
987 | M: Cédric Le Goater <clg@kaod.org> | |
a00d7f20 | 988 | M: Peter Maydell <peter.maydell@linaro.org> |
f87db1ba JS |
989 | R: Andrew Jeffery <andrew@aj.id.au> |
990 | R: Joel Stanley <joel@jms.id.au> | |
991 | L: qemu-arm@nongnu.org | |
992 | S: Maintained | |
993 | F: hw/*/*aspeed* | |
b7f30114 | 994 | F: hw/misc/pca9552.c |
f87db1ba | 995 | F: include/hw/*/*aspeed* |
b7f30114 | 996 | F: include/hw/misc/pca9552*.h |
f87db1ba JS |
997 | F: hw/net/ftgmac100.c |
998 | F: include/hw/net/ftgmac100.h | |
999 | ||
c0066d1a JS |
1000 | NRF51 |
1001 | M: Joel Stanley <joel@jms.id.au> | |
a00d7f20 | 1002 | M: Peter Maydell <peter.maydell@linaro.org> |
c0066d1a JS |
1003 | L: qemu-arm@nongnu.org |
1004 | S: Maintained | |
c8de3f5f SH |
1005 | F: hw/*/nrf51*.c |
1006 | F: hw/*/microbit*.c | |
1007 | F: include/hw/*/nrf51*.h | |
1008 | F: include/hw/*/microbit*.h | |
1e8a1fae | 1009 | F: tests/qtest/microbit-test.c |
c0066d1a | 1010 | |
42f3ff00 MR |
1011 | AVR Machines |
1012 | ------------- | |
1013 | ||
1014 | AVR MCUs | |
1015 | M: Michael Rolnik <mrolnik@gmail.com> | |
1016 | R: Sarah Harris <S.E.Harris@kent.ac.uk> | |
1017 | S: Maintained | |
1018 | F: default-configs/avr-softmmu.mak | |
7dd8f6fd | 1019 | F: hw/avr/ |
429ca9d6 MR |
1020 | F: include/hw/char/avr_usart.h |
1021 | F: hw/char/avr_usart.c | |
8ff47bc1 MR |
1022 | F: include/hw/timer/avr_timer16.h |
1023 | F: hw/timer/avr_timer16.c | |
dc288de0 MR |
1024 | F: include/hw/misc/avr_power.h |
1025 | F: hw/misc/avr_power.c | |
42f3ff00 | 1026 | |
50486d63 PMD |
1027 | Arduino |
1028 | M: Philippe Mathieu-Daudé <f4bug@amsat.org> | |
1029 | R: Sarah Harris <S.E.Harris@kent.ac.uk> | |
1030 | S: Maintained | |
1031 | F: hw/avr/arduino.c | |
1032 | ||
fd5d5c56 AL |
1033 | CRIS Machines |
1034 | ------------- | |
1035 | Axis Dev88 | |
1036 | M: Edgar E. Iglesias <edgar.iglesias@gmail.com> | |
1037 | S: Maintained | |
8d8b636d | 1038 | F: hw/cris/axis_dev88.c |
6e481d57 | 1039 | F: hw/*/etraxfs_*.c |
fd5d5c56 | 1040 | |
e188396c PMD |
1041 | HP-PARISC Machines |
1042 | ------------------ | |
18092598 | 1043 | HP B160L |
e188396c PMD |
1044 | M: Richard Henderson <rth@twiddle.net> |
1045 | R: Helge Deller <deller@gmx.de> | |
1046 | S: Odd Fixes | |
a2a82ad6 | 1047 | F: default-configs/hppa-softmmu.mak |
e188396c PMD |
1048 | F: hw/hppa/ |
1049 | F: pc-bios/hppa-firmware.img | |
1050 | ||
07bf23a7 MW |
1051 | LM32 Machines |
1052 | ------------- | |
1053 | EVR32 and uclinux BSP | |
4b4d96c7 PMD |
1054 | R: Michael Walle <michael@walle.cc> |
1055 | S: Orphan | |
8d8b636d | 1056 | F: hw/lm32/lm32_boards.c |
07bf23a7 | 1057 | |
d118aa6b | 1058 | milkymist |
4b4d96c7 PMD |
1059 | R: Michael Walle <michael@walle.cc> |
1060 | S: Orphan | |
8d8b636d | 1061 | F: hw/lm32/milkymist.c |
d118aa6b | 1062 | |
afcacd53 | 1063 | M68K Machines |
fd5d5c56 AL |
1064 | ------------- |
1065 | an5206 | |
5baf2741 TH |
1066 | M: Thomas Huth <huth@tuxfamily.org> |
1067 | S: Odd Fixes | |
8d8b636d | 1068 | F: hw/m68k/an5206.c |
e9a56114 | 1069 | F: hw/m68k/mcf5206.c |
fd5d5c56 | 1070 | |
fd5d5c56 | 1071 | mcf5208 |
5baf2741 TH |
1072 | M: Thomas Huth <huth@tuxfamily.org> |
1073 | S: Odd Fixes | |
8d8b636d | 1074 | F: hw/m68k/mcf5208.c |
e9a56114 TH |
1075 | F: hw/m68k/mcf_intc.c |
1076 | F: hw/char/mcf_uart.c | |
1077 | F: hw/net/mcf_fec.c | |
5baf2741 | 1078 | F: include/hw/m68k/mcf*.h |
fd5d5c56 | 1079 | |
1810b815 TH |
1080 | NeXTcube |
1081 | M: Thomas Huth <huth@tuxfamily.org> | |
1082 | S: Odd Fixes | |
1083 | F: hw/m68k/next-*.c | |
1084 | F: hw/display/next-fb.c | |
1085 | F: include/hw/m68k/next-cube.h | |
1086 | ||
6dca62a0 LV |
1087 | q800 |
1088 | M: Laurent Vivier <laurent@vivier.eu> | |
1089 | S: Maintained | |
04e7ca8d | 1090 | F: hw/m68k/q800.c |
6dca62a0 | 1091 | F: hw/misc/mac_via.c |
fa2ba3b8 | 1092 | F: hw/nubus/* |
8ac919a0 | 1093 | F: hw/display/macfb.c |
c701ec62 | 1094 | F: hw/block/swim.c |
04e7ca8d | 1095 | F: hw/m68k/bootinfo.h |
6dca62a0 | 1096 | F: include/hw/misc/mac_via.h |
fa2ba3b8 | 1097 | F: include/hw/nubus/* |
8ac919a0 | 1098 | F: include/hw/display/macfb.h |
c701ec62 | 1099 | F: include/hw/block/swim.h |
6dca62a0 | 1100 | |
fd5d5c56 AL |
1101 | MicroBlaze Machines |
1102 | ------------------- | |
1103 | petalogix_s3adsp1800 | |
1104 | M: Edgar E. Iglesias <edgar.iglesias@gmail.com> | |
1105 | S: Maintained | |
6e481d57 | 1106 | F: hw/microblaze/petalogix_s3adsp1800_mmu.c |
a734c7b5 | 1107 | F: include/hw/char/xilinx_uartlite.h |
fd5d5c56 | 1108 | |
d36e8ce7 | 1109 | petalogix_ml605 |
4b46ba61 | 1110 | M: Edgar E. Iglesias <edgar.iglesias@gmail.com> |
d36e8ce7 | 1111 | S: Maintained |
8d8b636d | 1112 | F: hw/microblaze/petalogix_ml605_mmu.c |
d36e8ce7 | 1113 | |
fd5d5c56 AL |
1114 | MIPS Machines |
1115 | ------------- | |
1116 | Jazz | |
1117 | M: Hervé Poussineau <hpoussin@reactos.org> | |
97d89746 | 1118 | R: Aleksandar Rikalo <aleksandar.rikalo@syrmia.com> |
fd5d5c56 | 1119 | S: Maintained |
5298722e | 1120 | F: hw/mips/jazz.c |
0886a785 PMD |
1121 | F: hw/display/jazz_led.c |
1122 | F: hw/dma/rc4030.c | |
fd5d5c56 AL |
1123 | |
1124 | Malta | |
0eac70b0 | 1125 | M: Aleksandar Markovic <aleksandar.qemu.devel@gmail.com> |
485cd982 AM |
1126 | M: Philippe Mathieu-Daudé <f4bug@amsat.org> |
1127 | R: Aurelien Jarno <aurelien@aurel32.net> | |
fd5d5c56 | 1128 | S: Maintained |
60041378 AM |
1129 | F: hw/isa/piix4.c |
1130 | F: hw/acpi/piix4.c | |
5298722e | 1131 | F: hw/mips/malta.c |
93081f51 | 1132 | F: hw/mips/gt64xxx_pci.c |
60041378 | 1133 | F: include/hw/southbridge/piix.h |
c47c336e | 1134 | F: tests/acceptance/linux_ssh_mips_malta.py |
0484d9d4 | 1135 | F: tests/acceptance/machine_mips_malta.py |
fd5d5c56 AL |
1136 | |
1137 | Mipssim | |
0eac70b0 | 1138 | M: Aleksandar Markovic <aleksandar.qemu.devel@gmail.com> |
97d89746 | 1139 | R: Aleksandar Rikalo <aleksandar.rikalo@syrmia.com> |
659f42d8 | 1140 | S: Odd Fixes |
5298722e | 1141 | F: hw/mips/mipssim.c |
659f42d8 | 1142 | F: hw/net/mipsnet.c |
fd5d5c56 AL |
1143 | |
1144 | R4000 | |
0eac70b0 | 1145 | M: Aleksandar Markovic <aleksandar.qemu.devel@gmail.com> |
099d510b | 1146 | R: Aurelien Jarno <aurelien@aurel32.net> |
97d89746 | 1147 | R: Aleksandar Rikalo <aleksandar.rikalo@syrmia.com> |
d32dc614 | 1148 | S: Obsolete |
5298722e | 1149 | F: hw/mips/r4k.c |
fd5d5c56 | 1150 | |
c3a09ff6 | 1151 | Fuloong 2E |
97eeef8a | 1152 | M: Huacai Chen <chenhc@lemote.com> |
86eb0697 | 1153 | M: Philippe Mathieu-Daudé <f4bug@amsat.org> |
0eac70b0 | 1154 | M: Aleksandar Markovic <aleksandar.qemu.devel@gmail.com> |
97eeef8a | 1155 | R: Jiaxun Yang <jiaxun.yang@flygoat.com> |
659f42d8 | 1156 | S: Odd Fixes |
c3a09ff6 | 1157 | F: hw/mips/fuloong2e.c |
0170a3fc | 1158 | F: hw/isa/vt82c686.c |
5021bfa5 | 1159 | F: hw/pci-host/bonito.c |
0170a3fc | 1160 | F: include/hw/isa/vt82c686.h |
659f42d8 | 1161 | |
53fb8bfb | 1162 | Loongson-3 virtual platforms |
2c5b1a7d HC |
1163 | M: Huacai Chen <chenhc@lemote.com> |
1164 | R: Jiaxun Yang <jiaxun.yang@flygoat.com> | |
1165 | S: Maintained | |
2c5b1a7d HC |
1166 | F: hw/intc/loongson_liointc.c |
1167 | ||
659f42d8 | 1168 | Boston |
4872fee2 | 1169 | M: Paul Burton <pburton@wavecomp.com> |
97d89746 | 1170 | R: Aleksandar Rikalo <aleksandar.rikalo@syrmia.com> |
659f42d8 YK |
1171 | S: Maintained |
1172 | F: hw/core/loader-fit.c | |
1173 | F: hw/mips/boston.c | |
1174 | F: hw/pci-host/xilinx-pcie.c | |
5021bfa5 | 1175 | F: include/hw/pci-host/xilinx-pcie.h |
659f42d8 | 1176 | |
945dad6d JL |
1177 | OpenRISC Machines |
1178 | ----------------- | |
1179 | or1k-sim | |
1180 | M: Jia Liu <proljc@gmail.com> | |
1181 | S: Maintained | |
1182 | F: hw/openrisc/openrisc_sim.c | |
1183 | ||
fd5d5c56 AL |
1184 | PowerPC Machines |
1185 | ---------------- | |
1186 | 405 | |
bba8e23a | 1187 | M: David Gibson <david@gibson.dropbear.id.au> |
a6c98685 | 1188 | L: qemu-ppc@nongnu.org |
9b9fe135 | 1189 | S: Odd Fixes |
8d8b636d | 1190 | F: hw/ppc/ppc405_boards.c |
fd5d5c56 | 1191 | |
aaade8d7 | 1192 | Bamboo |
bba8e23a | 1193 | M: David Gibson <david@gibson.dropbear.id.au> |
aaade8d7 AF |
1194 | L: qemu-ppc@nongnu.org |
1195 | S: Odd Fixes | |
8d8b636d | 1196 | F: hw/ppc/ppc440_bamboo.c |
aaade8d7 | 1197 | |
98cded3a | 1198 | e500 |
bba8e23a | 1199 | M: David Gibson <david@gibson.dropbear.id.au> |
98cded3a | 1200 | L: qemu-ppc@nongnu.org |
bba8e23a | 1201 | S: Odd Fixes |
ce6fc617 | 1202 | F: hw/ppc/e500* |
2c6aba14 | 1203 | F: hw/gpio/mpc8xxx.c |
7abb479c | 1204 | F: hw/i2c/mpc_i2c.c |
ce6fc617 TH |
1205 | F: hw/net/fsl_etsec/ |
1206 | F: hw/pci-host/ppce500.c | |
b5d55020 TH |
1207 | F: include/hw/ppc/ppc_e500.h |
1208 | F: include/hw/pci-host/ppce500.h | |
1209 | F: pc-bios/u-boot.e500 | |
98cded3a AF |
1210 | |
1211 | mpc8544ds | |
bba8e23a | 1212 | M: David Gibson <david@gibson.dropbear.id.au> |
98cded3a | 1213 | L: qemu-ppc@nongnu.org |
bba8e23a | 1214 | S: Odd Fixes |
98cded3a | 1215 | F: hw/ppc/mpc8544ds.c |
8d8b636d | 1216 | F: hw/ppc/mpc8544_guts.c |
98cded3a | 1217 | |
2c6aba14 | 1218 | New World (mac99) |
40e3dd06 MCA |
1219 | M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> |
1220 | R: David Gibson <david@gibson.dropbear.id.au> | |
a6c98685 | 1221 | L: qemu-ppc@nongnu.org |
bba8e23a | 1222 | S: Odd Fixes |
baec1910 | 1223 | F: hw/ppc/mac_newworld.c |
6e481d57 PM |
1224 | F: hw/pci-host/uninorth.c |
1225 | F: hw/pci-bridge/dec.[hc] | |
8d8b636d | 1226 | F: hw/misc/macio/ |
6ba16476 | 1227 | F: hw/misc/mos6522.c |
b5d55020 | 1228 | F: hw/nvram/mac_nvram.c |
2c6aba14 | 1229 | F: hw/input/adb* |
eba45926 | 1230 | F: include/hw/misc/macio/ |
6ba16476 | 1231 | F: include/hw/misc/mos6522.h |
eba45926 | 1232 | F: include/hw/ppc/mac_dbdma.h |
5021bfa5 | 1233 | F: include/hw/pci-host/uninorth.h |
2c6aba14 | 1234 | F: include/hw/input/adb* |
52804c60 | 1235 | F: pc-bios/qemu_vga.ndrv |
fd5d5c56 | 1236 | |
2c6aba14 | 1237 | Old World (g3beige) |
40e3dd06 MCA |
1238 | M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> |
1239 | R: David Gibson <david@gibson.dropbear.id.au> | |
a6c98685 | 1240 | L: qemu-ppc@nongnu.org |
bba8e23a | 1241 | S: Odd Fixes |
baec1910 | 1242 | F: hw/ppc/mac_oldworld.c |
6e481d57 | 1243 | F: hw/pci-host/grackle.c |
8d8b636d | 1244 | F: hw/misc/macio/ |
835c42d3 | 1245 | F: hw/intc/heathrow_pic.c |
2c6aba14 | 1246 | F: hw/input/adb* |
97e16dba | 1247 | F: include/hw/intc/heathrow_pic.h |
2c6aba14 | 1248 | F: include/hw/input/adb* |
52804c60 | 1249 | F: pc-bios/qemu_vga.ndrv |
fd5d5c56 | 1250 | |
ec38d398 | 1251 | PReP |
8178e89c | 1252 | M: Hervé Poussineau <hpoussin@reactos.org> |
a6c98685 | 1253 | L: qemu-ppc@nongnu.org |
8178e89c | 1254 | S: Maintained |
75610155 | 1255 | F: hw/ppc/prep.c |
8178e89c HP |
1256 | F: hw/ppc/prep_systemio.c |
1257 | F: hw/ppc/rs6000_mc.c | |
6e481d57 | 1258 | F: hw/pci-host/prep.[hc] |
0a9464b5 | 1259 | F: hw/isa/i82378.c |
a48c6b51 | 1260 | F: hw/isa/pc87312.c |
1cd6dccb | 1261 | F: hw/dma/i82374.c |
819ce6b2 | 1262 | F: hw/rtc/m48t59-isa.c |
a48c6b51 | 1263 | F: include/hw/isa/pc87312.h |
819ce6b2 | 1264 | F: include/hw/rtc/m48t59.h |
71b290e7 | 1265 | F: tests/acceptance/ppc_prep_40p.py |
fd5d5c56 | 1266 | |
300b115c | 1267 | sPAPR |
085eb217 | 1268 | M: David Gibson <david@gibson.dropbear.id.au> |
8a269ca4 AF |
1269 | L: qemu-ppc@nongnu.org |
1270 | S: Supported | |
8d8b636d | 1271 | F: hw/*/spapr* |
f9de2da7 DG |
1272 | F: include/hw/*/spapr* |
1273 | F: hw/*/xics* | |
1274 | F: include/hw/*/xics* | |
b5d55020 TH |
1275 | F: pc-bios/slof.bin |
1276 | F: docs/specs/ppc-spapr-hcalls.txt | |
1277 | F: docs/specs/ppc-spapr-hotplug.txt | |
1e8a1fae | 1278 | F: tests/qtest/spapr* |
1cf4323e | 1279 | F: tests/qtest/libqos/*spapr* |
1e8a1fae | 1280 | F: tests/qtest/rtas* |
1cf4323e | 1281 | F: tests/qtest/libqos/rtas* |
8a269ca4 | 1282 | |
1af82d4f CLG |
1283 | PowerNV (Non-Virtualized) |
1284 | M: Cédric Le Goater <clg@kaod.org> | |
1285 | M: David Gibson <david@gibson.dropbear.id.au> | |
1286 | L: qemu-ppc@nongnu.org | |
1287 | S: Maintained | |
1288 | F: hw/ppc/pnv* | |
1289 | F: hw/intc/pnv* | |
1290 | F: hw/intc/xics_pnv.c | |
157ed954 | 1291 | F: hw/pci-host/pnv* |
1af82d4f | 1292 | F: include/hw/ppc/pnv* |
157ed954 | 1293 | F: include/hw/pci-host/pnv* |
1af82d4f | 1294 | F: pc-bios/skiboot.lid |
1e8a1fae | 1295 | F: tests/qtest/pnv* |
1af82d4f | 1296 | |
794d00bf AF |
1297 | virtex_ml507 |
1298 | M: Edgar E. Iglesias <edgar.iglesias@gmail.com> | |
1299 | L: qemu-ppc@nongnu.org | |
1300 | S: Odd Fixes | |
6e481d57 | 1301 | F: hw/ppc/virtex_ml507.c |
794d00bf | 1302 | |
a9dd6604 BZ |
1303 | sam460ex |
1304 | M: BALATON Zoltan <balaton@eik.bme.hu> | |
1305 | L: qemu-ppc@nongnu.org | |
1306 | S: Maintained | |
33c6a8b5 BZ |
1307 | F: hw/ppc/sam460ex.c |
1308 | F: hw/ppc/ppc440_pcix.c | |
1309 | F: hw/display/sm501* | |
a9dd6604 | 1310 | F: hw/ide/sii3112.c |
de04c31d | 1311 | F: hw/rtc/m41t80.c |
33c6a8b5 BZ |
1312 | F: pc-bios/canyonlands.dt[sb] |
1313 | F: pc-bios/u-boot-sam460ex-20100605.bin | |
1314 | F: roms/u-boot-sam460ex | |
a9dd6604 | 1315 | |
fe0fe473 AF |
1316 | RISC-V Machines |
1317 | --------------- | |
1318 | OpenTitan | |
1319 | M: Alistair Francis <Alistair.Francis@wdc.com> | |
1320 | L: qemu-riscv@nongnu.org | |
1321 | S: Supported | |
1322 | F: hw/riscv/opentitan.c | |
a7d2d98c | 1323 | F: hw/char/ibex_uart.c |
879f60f0 | 1324 | F: hw/intc/ibex_plic.c |
fe0fe473 | 1325 | F: include/hw/riscv/opentitan.h |
a7d2d98c | 1326 | F: include/hw/char/ibex_uart.h |
879f60f0 | 1327 | F: include/hw/intc/ibex_plic.h |
fe0fe473 | 1328 | |
56f6e31e BM |
1329 | Microchip PolarFire SoC Icicle Kit |
1330 | M: Bin Meng <bin.meng@windriver.com> | |
1331 | L: qemu-riscv@nongnu.org | |
1332 | S: Supported | |
1333 | F: hw/riscv/microchip_pfsoc.c | |
a8fb0a50 | 1334 | F: hw/char/mchp_pfsoc_mmuart.c |
56f6e31e | 1335 | F: include/hw/riscv/microchip_pfsoc.h |
a8fb0a50 | 1336 | F: include/hw/char/mchp_pfsoc_mmuart.h |
56f6e31e | 1337 | |
bda19d7b YS |
1338 | RX Machines |
1339 | ----------- | |
1340 | rx-gdbsim | |
1341 | M: Yoshinori Sato <ysato@users.sourceforge.jp> | |
1342 | S: Maintained | |
4adbfa45 | 1343 | F: docs/system/target-rx.rst |
bda19d7b | 1344 | F: hw/rx/rx-gdbsim.c |
cf665623 | 1345 | F: tests/acceptance/machine_rx_gdbsim.py |
bda19d7b | 1346 | |
fd5d5c56 AL |
1347 | SH4 Machines |
1348 | ------------ | |
1349 | R2D | |
a9fb4468 AM |
1350 | M: Yoshinori Sato <ysato@users.sourceforge.jp> |
1351 | R: Magnus Damm <magnus.damm@gmail.com> | |
fd5d5c56 | 1352 | S: Maintained |
6e481d57 | 1353 | F: hw/sh4/r2d.c |
81527b94 | 1354 | F: hw/intc/sh_intc.c |
65b8dc29 | 1355 | F: include/hw/sh4/sh_intc.h |
fd5d5c56 AL |
1356 | |
1357 | Shix | |
a9fb4468 AM |
1358 | M: Yoshinori Sato <ysato@users.sourceforge.jp> |
1359 | R: Magnus Damm <magnus.damm@gmail.com> | |
81527b94 | 1360 | S: Odd Fixes |
6e481d57 | 1361 | F: hw/sh4/shix.c |
65b8dc29 PMD |
1362 | F: hw/intc/sh_intc.c |
1363 | F: include/hw/sh4/sh_intc.h | |
fd5d5c56 AL |
1364 | |
1365 | SPARC Machines | |
1366 | -------------- | |
1367 | Sun4m | |
f2416d3a | 1368 | M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> |
fd5d5c56 | 1369 | S: Maintained |
8d8b636d | 1370 | F: hw/sparc/sun4m.c |
c468e368 | 1371 | F: hw/sparc/sun4m_iommu.c |
aec2b887 TH |
1372 | F: hw/display/cg3.c |
1373 | F: hw/display/tcx.c | |
c10a1c78 | 1374 | F: hw/dma/sparc32_dma.c |
7098b79e | 1375 | F: hw/misc/eccmemctl.c |
aec2b887 TH |
1376 | F: hw/*/slavio_*.c |
1377 | F: include/hw/nvram/sun_nvram.h | |
c10a1c78 | 1378 | F: include/hw/sparc/sparc32_dma.h |
d0476159 | 1379 | F: include/hw/sparc/sun4m_iommu.h |
aec2b887 | 1380 | F: pc-bios/openbios-sparc32 |
fd5d5c56 AL |
1381 | |
1382 | Sun4u | |
f2416d3a | 1383 | M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk> |
fd5d5c56 | 1384 | S: Maintained |
8d8b636d | 1385 | F: hw/sparc64/sun4u.c |
8ef856b7 PMD |
1386 | F: hw/sparc64/sun4u_iommu.c |
1387 | F: include/hw/sparc/sun4u_iommu.h | |
5021bfa5 TH |
1388 | F: hw/pci-host/sabre.c |
1389 | F: include/hw/pci-host/sabre.h | |
8ef856b7 PMD |
1390 | F: hw/pci-bridge/simba.c |
1391 | F: include/hw/pci-bridge/simba.h | |
1392 | F: pc-bios/openbios-sparc64 | |
8c432921 | 1393 | F: tests/acceptance/machine_sparc64_sun4u.py |
fd5d5c56 | 1394 | |
a2664ca0 AT |
1395 | Sun4v |
1396 | M: Artyom Tarasenko <atar4qemu@gmail.com> | |
1397 | S: Maintained | |
626e4a4b | 1398 | F: hw/sparc64/niagara.c |
2811ac30 PMD |
1399 | F: hw/rtc/sun4v-rtc.c |
1400 | F: include/hw/rtc/sun4v-rtc.h | |
a2664ca0 | 1401 | |
ce6c760c FC |
1402 | Leon3 |
1403 | M: Fabien Chouteau <chouteau@adacore.com> | |
918b8ade | 1404 | M: KONRAD Frederic <frederic.konrad@adacore.com> |
ce6c760c | 1405 | S: Maintained |
8d8b636d PB |
1406 | F: hw/sparc/leon3.c |
1407 | F: hw/*/grlib* | |
162abf1a | 1408 | F: include/hw/*/grlib* |
b11785ca | 1409 | F: tests/acceptance/machine_sparc_leon3.py |
ce6c760c | 1410 | |
fd5d5c56 AL |
1411 | S390 Machines |
1412 | ------------- | |
dd4ad64a | 1413 | S390 Virtio-ccw |
c1976ae7 | 1414 | M: Cornelia Huck <cohuck@redhat.com> |
7c8e2647 | 1415 | M: Halil Pasic <pasic@linux.ibm.com> |
b304bf00 | 1416 | M: Christian Borntraeger <borntraeger@de.ibm.com> |
dd4ad64a | 1417 | S: Supported |
0c6aa7ee | 1418 | F: hw/char/sclp*.[hc] |
9d1c4449 | 1419 | F: hw/char/terminal3270.c |
c5bfb202 | 1420 | F: hw/s390x/ |
4277af19 | 1421 | F: include/hw/s390x/ |
c5bfb202 | 1422 | F: hw/watchdog/wdt_diag288.c |
1e4738b2 | 1423 | F: include/hw/watchdog/wdt_diag288.h |
1e4738b2 | 1424 | F: default-configs/s390x-softmmu.mak |
e18a8b34 SH |
1425 | T: git https://github.com/cohuck/qemu.git s390-next |
1426 | T: git https://github.com/borntraeger/qemu.git s390-next | |
146bd283 | 1427 | L: qemu-s390x@nongnu.org |
dd4ad64a | 1428 | |
8e4eb427 | 1429 | S390-ccw boot |
304584bf CH |
1430 | M: Christian Borntraeger <borntraeger@de.ibm.com> |
1431 | M: Thomas Huth <thuth@redhat.com> | |
1432 | S: Supported | |
8e4eb427 | 1433 | F: hw/s390x/ipl.* |
304584bf CH |
1434 | F: pc-bios/s390-ccw/ |
1435 | F: pc-bios/s390-ccw.img | |
cc3d15a5 | 1436 | F: docs/devel/s390-dasd-ipl.rst |
e18a8b34 | 1437 | T: git https://github.com/borntraeger/qemu.git s390-next |
304584bf CH |
1438 | L: qemu-s390x@nongnu.org |
1439 | ||
d5bfb425 | 1440 | S390 PCI |
ecd6663d | 1441 | M: Matthew Rosato <mjrosato@linux.ibm.com> |
d5bfb425 CB |
1442 | S: Supported |
1443 | F: hw/s390x/s390-pci* | |
1444 | L: qemu-s390x@nongnu.org | |
1445 | ||
ab9528ca | 1446 | UniCore32 Machines |
84995ea2 | 1447 | ------------------ |
ab9528ca GX |
1448 | PKUnity-3 SoC initramfs-with-busybox |
1449 | M: Guan Xuetao <gxt@mprc.pku.edu.cn> | |
1450 | S: Maintained | |
8d8b636d | 1451 | F: hw/*/puv3* |
ab9528ca GX |
1452 | F: hw/unicore32/ |
1453 | ||
fd5d5c56 AL |
1454 | X86 Machines |
1455 | ------------ | |
1456 | PC | |
046a6486 | 1457 | M: Michael S. Tsirkin <mst@redhat.com> |
fe355cbd | 1458 | M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com> |
fd5d5c56 | 1459 | S: Supported |
046a6486 MT |
1460 | F: include/hw/i386/ |
1461 | F: hw/i386/ | |
0f25d865 | 1462 | F: hw/pci-host/i440fx.c |
046a6486 MT |
1463 | F: hw/pci-host/q35.c |
1464 | F: hw/pci-host/pam.c | |
0fd61a2d | 1465 | F: include/hw/pci-host/i440fx.h |
046a6486 MT |
1466 | F: include/hw/pci-host/q35.h |
1467 | F: include/hw/pci-host/pam.h | |
14a026dd | 1468 | F: hw/isa/piix3.c |
046a6486 MT |
1469 | F: hw/isa/lpc_ich9.c |
1470 | F: hw/i2c/smbus_ich9.c | |
1471 | F: hw/acpi/piix4.c | |
1472 | F: hw/acpi/ich9.c | |
1473 | F: include/hw/acpi/ich9.h | |
fff123b8 | 1474 | F: include/hw/southbridge/piix.h |
9cc3b73c | 1475 | F: hw/misc/sga.c |
6f5a3294 PMD |
1476 | F: hw/isa/apm.c |
1477 | F: include/hw/isa/apm.h | |
1478 | F: tests/test-x86-cpuid.c | |
1e8a1fae | 1479 | F: tests/qtest/test-x86-cpuid-compat.c |
9cc3b73c PB |
1480 | |
1481 | PC Chipset | |
1482 | M: Michael S. Tsirkin <mst@redhat.com> | |
1483 | M: Paolo Bonzini <pbonzini@redhat.com> | |
1732be86 | 1484 | S: Supported |
9cc3b73c | 1485 | F: hw/char/debugcon.c |
bb3d5ea8 | 1486 | F: hw/char/parallel* |
9cc3b73c PB |
1487 | F: hw/char/serial* |
1488 | F: hw/dma/i8257* | |
1489 | F: hw/i2c/pm_smbus.c | |
1732be86 | 1490 | F: hw/input/pckbd.c |
9cc3b73c PB |
1491 | F: hw/intc/apic* |
1492 | F: hw/intc/ioapic* | |
1493 | F: hw/intc/i8259* | |
1854eb28 | 1494 | F: hw/isa/isa-superio.c |
9cc3b73c PB |
1495 | F: hw/misc/debugexit.c |
1496 | F: hw/misc/pc-testdev.c | |
1497 | F: hw/timer/hpet* | |
1498 | F: hw/timer/i8254* | |
bcdb9064 | 1499 | F: hw/rtc/mc146818rtc* |
edc46aff | 1500 | F: hw/watchdog/wdt_ib700.c |
4bcbc773 | 1501 | F: hw/watchdog/wdt_i6300esb.c |
866e2b37 | 1502 | F: include/hw/display/vga.h |
bb3d5ea8 | 1503 | F: include/hw/char/parallel.h |
55f613ac | 1504 | F: include/hw/dma/i8257.h |
a2feb348 | 1505 | F: include/hw/i2c/pm_smbus.h |
47973a2d | 1506 | F: include/hw/input/i8042.h |
4bcbc773 | 1507 | F: include/hw/isa/i8259_internal.h |
1854eb28 | 1508 | F: include/hw/isa/superio.h |
a2feb348 TH |
1509 | F: include/hw/timer/hpet.h |
1510 | F: include/hw/timer/i8254* | |
bcdb9064 | 1511 | F: include/hw/rtc/mc146818rtc* |
046a6486 | 1512 | |
5cb48f05 SL |
1513 | microvm |
1514 | M: Sergio Lopez <slp@redhat.com> | |
1515 | M: Paolo Bonzini <pbonzini@redhat.com> | |
1516 | S: Maintained | |
1517 | F: docs/microvm.rst | |
1518 | F: hw/i386/microvm.c | |
1519 | F: include/hw/i386/microvm.h | |
1520 | F: pc-bios/bios-microvm.bin | |
1521 | ||
5da4fb00 MT |
1522 | Machine core |
1523 | M: Eduardo Habkost <ehabkost@redhat.com> | |
fe355cbd | 1524 | M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com> |
5da4fb00 | 1525 | S: Supported |
2e5b09fd | 1526 | F: hw/core/cpu.c |
52924dea | 1527 | F: hw/core/machine-qmp-cmds.c |
5da4fb00 | 1528 | F: hw/core/machine.c |
c1629c5c | 1529 | F: hw/core/null-machine.c |
ac057879 | 1530 | F: hw/core/numa.c |
335d52f4 | 1531 | F: hw/cpu/cluster.c |
8ac25c84 | 1532 | F: qapi/machine.json |
7f7b4e7a | 1533 | F: qapi/machine-target.json |
5da4fb00 | 1534 | F: include/hw/boards.h |
2e5b09fd | 1535 | F: include/hw/core/cpu.h |
335d52f4 | 1536 | F: include/hw/cpu/cluster.h |
2dd02587 | 1537 | F: include/sysemu/numa.h |
e18a8b34 | 1538 | T: git https://github.com/ehabkost/qemu.git machine-next |
fd5d5c56 | 1539 | |
16e7caae MF |
1540 | Xtensa Machines |
1541 | --------------- | |
375847a6 | 1542 | sim |
16e7caae MF |
1543 | M: Max Filippov <jcmvbkbc@gmail.com> |
1544 | S: Maintained | |
437a8c11 | 1545 | F: hw/xtensa/sim.c |
375847a6 | 1546 | |
d9e8553b MF |
1547 | virt |
1548 | M: Max Filippov <jcmvbkbc@gmail.com> | |
1549 | S: Maintained | |
1550 | F: hw/xtensa/virt.c | |
1551 | ||
437a8c11 | 1552 | XTFPGA (LX60, LX200, ML605, KC705) |
375847a6 MF |
1553 | M: Max Filippov <jcmvbkbc@gmail.com> |
1554 | S: Maintained | |
437a8c11 MF |
1555 | F: hw/xtensa/xtfpga.c |
1556 | F: hw/net/opencores_eth.c | |
16e7caae | 1557 | |
fd5d5c56 AL |
1558 | Devices |
1559 | ------- | |
b30934cb JS |
1560 | EDU |
1561 | M: Jiri Slaby <jslaby@suse.cz> | |
1562 | S: Maintained | |
1563 | F: hw/misc/edu.c | |
1564 | ||
fd5d5c56 | 1565 | IDE |
c095348b JS |
1566 | M: John Snow <jsnow@redhat.com> |
1567 | L: qemu-block@nongnu.org | |
1568 | S: Supported | |
8d8b636d | 1569 | F: include/hw/ide.h |
c9f7acd5 | 1570 | F: include/hw/ide/ |
fd5d5c56 | 1571 | F: hw/ide/ |
c095348b JS |
1572 | F: hw/block/block.c |
1573 | F: hw/block/cdrom.c | |
1574 | F: hw/block/hd-geometry.c | |
1e8a1fae TH |
1575 | F: tests/qtest/ide-test.c |
1576 | F: tests/qtest/ahci-test.c | |
1577 | F: tests/qtest/cdrom-test.c | |
1cf4323e | 1578 | F: tests/qtest/libqos/ahci* |
e18a8b34 | 1579 | T: git https://github.com/jnsnow/qemu.git ide |
c095348b | 1580 | |
caf316ba CM |
1581 | IPMI |
1582 | M: Corey Minyard <minyard@acm.org> | |
1583 | S: Maintained | |
1584 | F: include/hw/ipmi/* | |
1585 | F: hw/ipmi/* | |
1586 | F: hw/smbios/smbios_type_38.c | |
1e8a1fae | 1587 | F: tests/qtest/ipmi* |
e18a8b34 | 1588 | T: git https://github.com/cminyard/qemu.git master-ipmi-rebase |
caf316ba | 1589 | |
c095348b JS |
1590 | Floppy |
1591 | M: John Snow <jsnow@redhat.com> | |
1592 | L: qemu-block@nongnu.org | |
1593 | S: Supported | |
1594 | F: hw/block/fdc.c | |
1595 | F: include/hw/block/fdc.h | |
1e8a1fae | 1596 | F: tests/qtest/fdc-test.c |
e18a8b34 | 1597 | T: git https://github.com/jnsnow/qemu.git ide |
fd5d5c56 | 1598 | |
f5f487b2 PM |
1599 | OMAP |
1600 | M: Peter Maydell <peter.maydell@linaro.org> | |
8ef350b3 | 1601 | L: qemu-arm@nongnu.org |
f5f487b2 | 1602 | S: Maintained |
8d8b636d | 1603 | F: hw/*/omap* |
ed0db866 | 1604 | F: include/hw/arm/omap.h |
f5f487b2 | 1605 | |
28d54e58 PB |
1606 | IPack |
1607 | M: Alberto Garcia <berto@igalia.com> | |
1608 | S: Odd Fixes | |
1609 | F: hw/char/ipoctal232.c | |
1610 | F: hw/ipack/ | |
1611 | ||
fd5d5c56 AL |
1612 | PCI |
1613 | M: Michael S. Tsirkin <mst@redhat.com> | |
fe355cbd | 1614 | M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com> |
fd5d5c56 | 1615 | S: Supported |
8d8b636d | 1616 | F: include/hw/pci/* |
f178bc6b | 1617 | F: hw/misc/pci-testdev.c |
ca818cfb | 1618 | F: hw/pci/* |
f178bc6b | 1619 | F: hw/pci-bridge/* |
68179923 PMD |
1620 | F: docs/pci* |
1621 | F: docs/specs/*pci* | |
534fd814 | 1622 | F: default-configs/pci.mak |
0e0b3592 | 1623 | |
d31e5ae7 | 1624 | ACPI/SMBIOS |
0e0b3592 MT |
1625 | M: Michael S. Tsirkin <mst@redhat.com> |
1626 | M: Igor Mammedov <imammedo@redhat.com> | |
1627 | S: Supported | |
1628 | F: include/hw/acpi/* | |
a2eb5c0c | 1629 | F: include/hw/firmware/smbios.h |
0e0b3592 | 1630 | F: hw/mem/* |
8d8b636d | 1631 | F: hw/acpi/* |
d31e5ae7 | 1632 | F: hw/smbios/* |
0e0b3592 | 1633 | F: hw/i386/acpi-build.[hc] |
0e0b3592 | 1634 | F: hw/arm/virt-acpi-build.c |
b963ea19 | 1635 | F: tests/qtest/bios-tables-test* |
1e8a1fae | 1636 | F: tests/qtest/acpi-utils.[hc] |
faae23b9 | 1637 | F: tests/data/acpi/ |
fd5d5c56 | 1638 | |
f7e462f8 DG |
1639 | ACPI/HEST/GHES |
1640 | R: Dongjiu Geng <gengdongjiu@huawei.com> | |
1641 | R: Xiang Zheng <zhengxiang9@huawei.com> | |
1642 | L: qemu-arm@nongnu.org | |
1643 | S: Maintained | |
1644 | F: hw/acpi/ghes.c | |
1645 | F: include/hw/acpi/ghes.h | |
1646 | F: docs/specs/acpi_hest_ghes.rst | |
1647 | ||
aaade8d7 | 1648 | ppc4xx |
bba8e23a | 1649 | M: David Gibson <david@gibson.dropbear.id.au> |
aaade8d7 AF |
1650 | L: qemu-ppc@nongnu.org |
1651 | S: Odd Fixes | |
8d8b636d | 1652 | F: hw/ppc/ppc4*.c |
aa3a41f9 | 1653 | F: hw/i2c/ppc4xx_i2c.c |
b5d55020 | 1654 | F: include/hw/ppc/ppc4xx.h |
aa3a41f9 | 1655 | F: include/hw/i2c/ppc4xx_i2c.h |
aaade8d7 | 1656 | |
61af0ee6 | 1657 | Character devices |
2185fd67 PB |
1658 | M: Marc-André Lureau <marcandre.lureau@redhat.com> |
1659 | R: Paolo Bonzini <pbonzini@redhat.com> | |
61af0ee6 PB |
1660 | S: Odd Fixes |
1661 | F: hw/char/ | |
1662 | ||
f536f112 PB |
1663 | Network devices |
1664 | M: Jason Wang <jasowang@redhat.com> | |
1665 | S: Odd Fixes | |
1666 | F: hw/net/ | |
6061b5c6 | 1667 | F: include/hw/net/ |
1e8a1fae | 1668 | F: tests/qtest/virtio-net-test.c |
9711cd0d | 1669 | F: docs/virtio-net-failover.rst |
e18a8b34 | 1670 | T: git https://github.com/jasowang/qemu.git net |
f536f112 | 1671 | |
e0c9d0c1 PMD |
1672 | Parallel NOR Flash devices |
1673 | M: Philippe Mathieu-Daudé <philmd@redhat.com> | |
1674 | T: git https://gitlab.com/philmd/qemu.git pflash-next | |
1675 | S: Maintained | |
1676 | F: hw/block/pflash_cfi*.c | |
1677 | F: include/hw/block/flash.h | |
1678 | ||
fd5d5c56 | 1679 | SCSI |
de7724f7 | 1680 | M: Paolo Bonzini <pbonzini@redhat.com> |
fe5ca46d | 1681 | R: Fam Zheng <fam@euphon.net> |
de7724f7 | 1682 | S: Supported |
74460f34 | 1683 | F: include/hw/scsi/* |
8d8b636d | 1684 | F: hw/scsi/* |
1e8a1fae | 1685 | F: tests/qtest/virtio-scsi-test.c |
e18a8b34 | 1686 | T: git https://github.com/bonzini/qemu.git scsi-next |
de7724f7 | 1687 | |
fcb5629d | 1688 | SSI |
c22e580c | 1689 | M: Alistair Francis <alistair@alistair23.me> |
fcb5629d | 1690 | S: Maintained |
8d8b636d PB |
1691 | F: hw/ssi/* |
1692 | F: hw/block/m25p80.c | |
982d009a | 1693 | F: include/hw/ssi/ssi.h |
4b46ba61 | 1694 | X: hw/ssi/xilinx_* |
1e8a1fae | 1695 | F: tests/qtest/m25p80-test.c |
4b46ba61 AF |
1696 | |
1697 | Xilinx SPI | |
c22e580c | 1698 | M: Alistair Francis <alistair@alistair23.me> |
4b46ba61 AF |
1699 | S: Maintained |
1700 | F: hw/ssi/xilinx_* | |
fcb5629d | 1701 | |
076a0fc3 PMD |
1702 | SD (Secure Card) |
1703 | M: Philippe Mathieu-Daudé <f4bug@amsat.org> | |
ba412478 | 1704 | L: qemu-block@nongnu.org |
076a0fc3 PMD |
1705 | S: Odd Fixes |
1706 | F: include/hw/sd/sd* | |
1707 | F: hw/sd/core.c | |
1708 | F: hw/sd/sd* | |
1232ed1f | 1709 | F: hw/sd/ssi-sd.c |
1e8a1fae | 1710 | F: tests/qtest/sd* |
076a0fc3 | 1711 | |
fd5d5c56 | 1712 | USB |
5d0d62fe GH |
1713 | M: Gerd Hoffmann <kraxel@redhat.com> |
1714 | S: Maintained | |
8d8b636d | 1715 | F: hw/usb/* |
1e8a1fae | 1716 | F: tests/qtest/usb-*-test.c |
beded0ff TH |
1717 | F: docs/usb2.txt |
1718 | F: docs/usb-storage.txt | |
1719 | F: include/hw/usb.h | |
1720 | F: include/hw/usb/ | |
104ebc5f | 1721 | F: default-configs/usb.mak |
fd5d5c56 | 1722 | |
e26082fd PB |
1723 | USB (serial adapter) |
1724 | M: Gerd Hoffmann <kraxel@redhat.com> | |
1725 | M: Samuel Thibault <samuel.thibault@ens-lyon.org> | |
1726 | S: Maintained | |
1727 | F: hw/usb/dev-serial.c | |
1728 | ||
92e1fb5e AW |
1729 | VFIO |
1730 | M: Alex Williamson <alex.williamson@redhat.com> | |
1731 | S: Supported | |
cf7087db | 1732 | F: hw/vfio/* |
99b88c6d | 1733 | F: include/hw/vfio/ |
92e1fb5e | 1734 | |
5eb74557 | 1735 | vfio-ccw |
c1976ae7 | 1736 | M: Cornelia Huck <cohuck@redhat.com> |
7913938a | 1737 | M: Eric Farman <farman@linux.ibm.com> |
5eb74557 DJS |
1738 | S: Supported |
1739 | F: hw/vfio/ccw.c | |
1740 | F: hw/s390x/s390-ccw.c | |
1741 | F: include/hw/s390x/s390-ccw.h | |
44445d86 | 1742 | F: include/hw/s390x/vfio-ccw.h |
e18a8b34 | 1743 | T: git https://github.com/cohuck/qemu.git s390-next |
146bd283 | 1744 | L: qemu-s390x@nongnu.org |
5eb74557 | 1745 | |
a51b3153 TK |
1746 | vfio-ap |
1747 | M: Christian Borntraeger <borntraeger@de.ibm.com> | |
1748 | M: Tony Krowiak <akrowiak@linux.ibm.com> | |
1749 | M: Halil Pasic <pasic@linux.ibm.com> | |
1750 | M: Pierre Morel <pmorel@linux.ibm.com> | |
1751 | S: Supported | |
1752 | F: hw/s390x/ap-device.c | |
1753 | F: hw/s390x/ap-bridge.c | |
1754 | F: include/hw/s390x/ap-device.h | |
1755 | F: include/hw/s390x/ap-bridge.h | |
2fe2942c | 1756 | F: hw/vfio/ap.c |
f58f084e | 1757 | F: docs/system/s390x/vfio-ap.rst |
a51b3153 TK |
1758 | L: qemu-s390x@nongnu.org |
1759 | ||
fd5d5c56 AL |
1760 | vhost |
1761 | M: Michael S. Tsirkin <mst@redhat.com> | |
1762 | S: Supported | |
8d8b636d | 1763 | F: hw/*/*vhost* |
482580a6 | 1764 | F: docs/interop/vhost-user.json |
ed1be66b | 1765 | F: docs/interop/vhost-user.rst |
72c1e865 | 1766 | F: contrib/vhost-user-*/ |
f24bb728 MAL |
1767 | F: backends/vhost-user.c |
1768 | F: include/sysemu/vhost-user-backend.h | |
fd5d5c56 AL |
1769 | |
1770 | virtio | |
a75143ed | 1771 | M: Michael S. Tsirkin <mst@redhat.com> |
fd5d5c56 | 1772 | S: Supported |
8d8b636d | 1773 | F: hw/*/virtio* |
72fa605d TH |
1774 | F: hw/virtio/Makefile.objs |
1775 | F: hw/virtio/trace-events | |
6a084ea3 | 1776 | F: net/vhost-user.c |
494f7b57 | 1777 | F: include/hw/virtio/ |
fd5d5c56 | 1778 | |
6d7b25ad DH |
1779 | virtio-balloon |
1780 | M: Michael S. Tsirkin <mst@redhat.com> | |
1781 | M: David Hildenbrand <david@redhat.com> | |
1782 | S: Maintained | |
1783 | F: hw/virtio/virtio-balloon*.c | |
1784 | F: include/hw/virtio/virtio-balloon.h | |
c7f419f5 | 1785 | F: softmmu/balloon.c |
6d7b25ad DH |
1786 | F: include/sysemu/balloon.h |
1787 | ||
fd5d5c56 | 1788 | virtio-9p |
8c1cd719 | 1789 | M: Greg Kurz <groug@kaod.org> |
233982af | 1790 | M: Christian Schoenebeck <qemu_oss@crudebyte.com> |
e410bbc5 | 1791 | S: Odd Fixes |
aebeca25 | 1792 | F: hw/9pfs/ |
b827891d | 1793 | X: hw/9pfs/xen-9p* |
aebeca25 | 1794 | F: fsdev/ |
78813586 | 1795 | F: docs/interop/virtfs-proxy-helper.rst |
1e8a1fae | 1796 | F: tests/qtest/virtio-9p-test.c |
e18a8b34 | 1797 | T: git https://github.com/gkurz/qemu.git 9p-next |
fd5d5c56 AL |
1798 | |
1799 | virtio-blk | |
54d01a00 | 1800 | M: Stefan Hajnoczi <stefanha@redhat.com> |
b457a5f5 | 1801 | L: qemu-block@nongnu.org |
fd5d5c56 | 1802 | S: Supported |
8d8b636d | 1803 | F: hw/block/virtio-blk.c |
b457a5f5 | 1804 | F: hw/block/dataplane/* |
1e8a1fae | 1805 | F: tests/qtest/virtio-blk-test.c |
e18a8b34 | 1806 | T: git https://github.com/stefanha/qemu.git block |
fd5d5c56 | 1807 | |
dd4ad64a | 1808 | virtio-ccw |
c1976ae7 | 1809 | M: Cornelia Huck <cohuck@redhat.com> |
68b91e85 | 1810 | M: Halil Pasic <pasic@linux.ibm.com> |
dd4ad64a | 1811 | S: Supported |
901f5f16 | 1812 | F: hw/s390x/virtio-ccw*.[hc] |
d8d4d62c | 1813 | F: hw/s390x/vhost-vsock-ccw.c |
e18a8b34 SH |
1814 | T: git https://github.com/cohuck/qemu.git s390-next |
1815 | T: git https://github.com/borntraeger/qemu.git s390-next | |
146bd283 | 1816 | L: qemu-s390x@nongnu.org |
dd4ad64a | 1817 | |
bad7d2c3 DDAG |
1818 | virtiofs |
1819 | M: Dr. David Alan Gilbert <dgilbert@redhat.com> | |
1820 | M: Stefan Hajnoczi <stefanha@redhat.com> | |
1821 | S: Supported | |
1822 | F: tools/virtiofsd/* | |
1823 | F: hw/virtio/vhost-user-fs* | |
1824 | F: include/hw/virtio/vhost-user-fs.h | |
6a7e2bbe | 1825 | F: docs/interop/virtiofsd.rst |
bad7d2c3 | 1826 | |
a5d4d7b5 GH |
1827 | virtio-input |
1828 | M: Gerd Hoffmann <kraxel@redhat.com> | |
1829 | S: Maintained | |
9c4d05b7 | 1830 | F: hw/input/vhost-user-input.c |
a5d4d7b5 GH |
1831 | F: hw/input/virtio-input*.c |
1832 | F: include/hw/virtio/virtio-input.h | |
06914c97 | 1833 | F: contrib/vhost-user-input/* |
a5d4d7b5 | 1834 | |
c1dee918 EA |
1835 | virtio-iommu |
1836 | M: Eric Auger <eric.auger@redhat.com> | |
1837 | S: Maintained | |
1838 | F: hw/virtio/virtio-iommu*.c | |
1839 | F: include/hw/virtio/virtio-iommu.h | |
1840 | ||
fd5d5c56 | 1841 | virtio-serial |
2501db70 LV |
1842 | M: Laurent Vivier <lvivier@redhat.com> |
1843 | R: Amit Shah <amit@kernel.org> | |
fd5d5c56 | 1844 | S: Supported |
8d8b636d PB |
1845 | F: hw/char/virtio-serial-bus.c |
1846 | F: hw/char/virtio-console.c | |
68a5e38a | 1847 | F: include/hw/virtio/virtio-serial.h |
1e8a1fae | 1848 | F: tests/qtest/virtio-serial-test.c |
fd5d5c56 | 1849 | |
1f51a5cb | 1850 | virtio-rng |
2501db70 LV |
1851 | M: Laurent Vivier <lvivier@redhat.com> |
1852 | R: Amit Shah <amit@kernel.org> | |
1f51a5cb AS |
1853 | S: Supported |
1854 | F: hw/virtio/virtio-rng.c | |
1855 | F: include/hw/virtio/virtio-rng.h | |
750cf869 | 1856 | F: include/sysemu/rng*.h |
1f51a5cb | 1857 | F: backends/rng*.c |
1e8a1fae | 1858 | F: tests/qtest/virtio-rng-test.c |
1f51a5cb | 1859 | |
6034011c GA |
1860 | virtio-crypto |
1861 | M: Gonglei <arei.gonglei@huawei.com> | |
1862 | S: Supported | |
1863 | F: hw/virtio/virtio-crypto.c | |
1864 | F: hw/virtio/virtio-crypto-pci.c | |
1865 | F: include/hw/virtio/virtio-crypto.h | |
1866 | ||
751c7bdd DH |
1867 | virtio-mem |
1868 | M: David Hildenbrand <david@redhat.com> | |
1869 | S: Supported | |
1870 | W: https://virtio-mem.gitlab.io/ | |
1871 | F: hw/virtio/virtio-mem.c | |
1872 | F: hw/virtio/virtio-mem-pci.h | |
1873 | F: hw/virtio/virtio-mem-pci.c | |
1874 | F: include/hw/virtio/virtio-mem.h | |
1875 | ||
f3c507ad | 1876 | nvme |
8261cc17 | 1877 | M: Keith Busch <kbusch@kernel.org> |
e8cc43d5 | 1878 | M: Klaus Jensen <its@irrelevant.dk> |
c95e4c0e | 1879 | L: qemu-block@nongnu.org |
f3c507ad KB |
1880 | S: Supported |
1881 | F: hw/block/nvme* | |
1e8a1fae | 1882 | F: tests/qtest/nvme-test.c |
e8cc43d5 | 1883 | T: git git://git.infradead.org/qemu-nvme.git nvme-next |
f3c507ad | 1884 | |
d383c625 | 1885 | megasas |
3fdfb8b6 | 1886 | M: Hannes Reinecke <hare@suse.com> |
c95e4c0e | 1887 | L: qemu-block@nongnu.org |
d383c625 HR |
1888 | S: Supported |
1889 | F: hw/scsi/megasas.c | |
1890 | F: hw/scsi/mfi.h | |
1e8a1fae | 1891 | F: tests/qtest/megasas-test.c |
d383c625 | 1892 | |
605d52e6 | 1893 | Network packet abstractions |
bf4835a4 | 1894 | M: Dmitry Fleytman <dmitry.fleytman@gmail.com> |
605d52e6 DF |
1895 | S: Maintained |
1896 | F: include/net/eth.h | |
1897 | F: net/eth.c | |
1898 | F: hw/net/net_rx_pkt* | |
1899 | F: hw/net/net_tx_pkt* | |
1900 | ||
622fb504 | 1901 | Vmware |
bf4835a4 | 1902 | M: Dmitry Fleytman <dmitry.fleytman@gmail.com> |
622fb504 DF |
1903 | S: Maintained |
1904 | F: hw/net/vmxnet* | |
1905 | F: hw/scsi/vmw_pvscsi* | |
1e8a1fae | 1906 | F: tests/qtest/vmxnet3-test.c |
622fb504 | 1907 | |
de24d3f1 | 1908 | Rocker |
de24d3f1 SF |
1909 | M: Jiri Pirko <jiri@resnulli.us> |
1910 | S: Maintained | |
1911 | F: hw/net/rocker/ | |
de850948 TH |
1912 | F: tests/rocker/ |
1913 | F: docs/specs/rocker.txt | |
de24d3f1 | 1914 | |
70d1fb9c | 1915 | NVDIMM |
7a5bd53d | 1916 | M: Xiao Guangrong <xiaoguangrong.eric@gmail.com> |
70d1fb9c XG |
1917 | S: Maintained |
1918 | F: hw/acpi/nvdimm.c | |
1919 | F: hw/mem/nvdimm.c | |
1920 | F: include/hw/mem/nvdimm.h | |
e2e254d3 | 1921 | F: docs/nvdimm.txt |
70d1fb9c | 1922 | |
093454e2 | 1923 | e1000x |
bf4835a4 | 1924 | M: Dmitry Fleytman <dmitry.fleytman@gmail.com> |
093454e2 DF |
1925 | S: Maintained |
1926 | F: hw/net/e1000x* | |
1927 | ||
6f3fbe4e | 1928 | e1000e |
bf4835a4 | 1929 | M: Dmitry Fleytman <dmitry.fleytman@gmail.com> |
6f3fbe4e DF |
1930 | S: Maintained |
1931 | F: hw/net/e1000e* | |
1932 | ||
ebc2327f SW |
1933 | eepro100 |
1934 | M: Stefan Weil <sw@weilnetz.de> | |
1935 | S: Maintained | |
1936 | F: hw/net/eepro100.c | |
1937 | ||
34ea023d SS |
1938 | tulip |
1939 | M: Sven Schnelle <svens@stackframe.org> | |
1940 | S: Maintained | |
1941 | F: hw/net/tulip.c | |
1942 | F: hw/net/tulip.h | |
1943 | ||
e481a1f6 | 1944 | Generic Loader |
c22e580c | 1945 | M: Alistair Francis <alistair@alistair23.me> |
e481a1f6 AF |
1946 | S: Maintained |
1947 | F: hw/core/generic-loader.c | |
1948 | F: include/hw/core/generic-loader.h | |
c5e2ac7e | 1949 | F: docs/generic-loader.txt |
e481a1f6 | 1950 | |
645d3cbe SH |
1951 | Intel Hexadecimal Object File Loader |
1952 | M: Su Hang <suhang16@mails.ucas.ac.cn> | |
1953 | S: Maintained | |
1e8a1fae | 1954 | F: tests/qtest/hexloader-test.c |
4b2ff65a | 1955 | F: tests/data/hex-loader/test.hex |
645d3cbe | 1956 | |
87a9023a TH |
1957 | CHRP NVRAM |
1958 | M: Thomas Huth <thuth@redhat.com> | |
1959 | S: Maintained | |
1960 | F: hw/nvram/chrp_nvram.c | |
1961 | F: include/hw/nvram/chrp_nvram.h | |
1e8a1fae | 1962 | F: tests/qtest/prom-env-test.c |
87a9023a | 1963 | |
42697d88 BW |
1964 | VM Generation ID |
1965 | M: Ben Warren <ben@skyportsystems.com> | |
1966 | S: Maintained | |
1967 | F: hw/acpi/vmgenid.c | |
1968 | F: include/hw/acpi/vmgenid.h | |
1969 | F: docs/specs/vmgenid.txt | |
1e8a1fae | 1970 | F: tests/qtest/vmgenid-test.c |
42697d88 BW |
1971 | F: stubs/vmgenid.c |
1972 | ||
747969db PMD |
1973 | Unimplemented device |
1974 | M: Peter Maydell <peter.maydell@linaro.org> | |
1975 | R: Philippe Mathieu-Daudé <f4bug@amsat.org> | |
1976 | S: Maintained | |
1977 | F: include/hw/misc/unimp.h | |
1978 | F: hw/misc/unimp.c | |
1979 | ||
6007523a PMD |
1980 | Empty slot |
1981 | M: Artyom Tarasenko <atar4qemu@gmail.com> | |
1982 | R: Philippe Mathieu-Daudé <f4bug@amsat.org> | |
1983 | S: Maintained | |
1984 | F: include/hw/misc/empty_slot.h | |
1985 | F: hw/misc/empty_slot.c | |
1986 | ||
dbb2e472 GH |
1987 | Standard VGA |
1988 | M: Gerd Hoffmann <kraxel@redhat.com> | |
1989 | S: Maintained | |
1990 | F: hw/display/vga* | |
1991 | F: hw/display/bochs-display.c | |
1992 | F: include/hw/display/vga.h | |
1993 | F: include/hw/display/bochs-vbe.h | |
1994 | ||
58d632c7 GH |
1995 | ramfb |
1996 | M: Gerd Hoffmann <kraxel@redhat.com> | |
1997 | S: Maintained | |
1998 | F: hw/display/ramfb*.c | |
1999 | F: include/hw/display/ramfb.h | |
2000 | ||
dbb2e472 GH |
2001 | virtio-gpu |
2002 | M: Gerd Hoffmann <kraxel@redhat.com> | |
2003 | S: Maintained | |
2004 | F: hw/display/virtio-gpu* | |
c68082c4 | 2005 | F: hw/display/virtio-vga.* |
dbb2e472 GH |
2006 | F: include/hw/virtio/virtio-gpu.h |
2007 | ||
b372d79b RN |
2008 | vhost-user-blk |
2009 | M: Raphael Norwitz <raphael.norwitz@nutanix.com> | |
2010 | S: Maintained | |
2011 | F: contrib/vhost-user-blk/ | |
2012 | F: contrib/vhost-user-scsi/ | |
2013 | F: hw/block/vhost-user-blk.c | |
2014 | F: hw/scsi/vhost-user-scsi.c | |
2015 | F: hw/virtio/vhost-user-blk-pci.c | |
2016 | F: hw/virtio/vhost-user-scsi-pci.c | |
2017 | F: include/hw/virtio/vhost-user-blk.h | |
2018 | F: include/hw/virtio/vhost-user-scsi.h | |
2019 | ||
bd2e44fe MAL |
2020 | vhost-user-gpu |
2021 | M: Marc-André Lureau <marcandre.lureau@redhat.com> | |
2022 | M: Gerd Hoffmann <kraxel@redhat.com> | |
2023 | S: Maintained | |
2024 | F: docs/interop/vhost-user-gpu.rst | |
d52c454a MAL |
2025 | F: contrib/vhost-user-gpu |
2026 | F: hw/display/vhost-user-* | |
bd2e44fe | 2027 | |
dbb2e472 GH |
2028 | Cirrus VGA |
2029 | M: Gerd Hoffmann <kraxel@redhat.com> | |
2030 | S: Odd Fixes | |
2031 | W: https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/ | |
2032 | F: hw/display/cirrus* | |
2033 | ||
72d277a7 GH |
2034 | EDID Generator |
2035 | M: Gerd Hoffmann <kraxel@redhat.com> | |
2036 | S: Maintained | |
2037 | F: hw/display/edid* | |
2038 | F: include/hw/display/edid.h | |
2039 | F: qemu-edid.c | |
2040 | ||
10386385 PMD |
2041 | PIIX4 South Bridge (i82371AB) |
2042 | M: Hervé Poussineau <hpoussin@reactos.org> | |
2043 | M: Philippe Mathieu-Daudé <f4bug@amsat.org> | |
2044 | S: Maintained | |
2045 | F: hw/isa/piix4.c | |
fff123b8 | 2046 | F: include/hw/southbridge/piix.h |
10386385 | 2047 | |
15ffb43c | 2048 | Firmware configuration (fw_cfg) |
6f75e3f5 | 2049 | M: Philippe Mathieu-Daudé <philmd@redhat.com> |
15ffb43c PMD |
2050 | R: Laszlo Ersek <lersek@redhat.com> |
2051 | R: Gerd Hoffmann <kraxel@redhat.com> | |
2052 | S: Supported | |
2053 | F: docs/specs/fw_cfg.txt | |
2054 | F: hw/nvram/fw_cfg.c | |
b15c0f7d | 2055 | F: stubs/fw_cfg.c |
15ffb43c PMD |
2056 | F: include/hw/nvram/fw_cfg.h |
2057 | F: include/standard-headers/linux/qemu_fw_cfg.h | |
1cf4323e | 2058 | F: tests/qtest/libqos/fw_cfg.c |
1e8a1fae | 2059 | F: tests/qtest/fw_cfg-test.c |
15ffb43c PMD |
2060 | T: git https://github.com/philmd/qemu.git fw_cfg-next |
2061 | ||
2313abf0 TH |
2062 | XIVE |
2063 | M: David Gibson <david@gibson.dropbear.id.au> | |
2064 | M: Cédric Le Goater <clg@kaod.org> | |
2065 | L: qemu-ppc@nongnu.org | |
2066 | S: Supported | |
2067 | F: hw/*/*xive* | |
2068 | F: include/hw/*/*xive* | |
24563a58 | 2069 | F: docs/*/*xive* |
2313abf0 | 2070 | |
7bd0d13f PMD |
2071 | Renesas peripherals |
2072 | M: Yoshinori Sato <ysato@users.sourceforge.jp> | |
2073 | R: Magnus Damm <magnus.damm@gmail.com> | |
2074 | S: Maintained | |
645194c7 | 2075 | F: hw/char/renesas_sci.c |
7bd0d13f | 2076 | F: hw/char/sh_serial.c |
c7f37baf | 2077 | F: hw/timer/renesas_*.c |
7bd0d13f | 2078 | F: hw/timer/sh_timer.c |
645194c7 | 2079 | F: include/hw/char/renesas_sci.h |
7bd0d13f | 2080 | F: include/hw/sh4/sh.h |
c7f37baf | 2081 | F: include/hw/timer/renesas_*.h |
7bd0d13f | 2082 | |
e78597cc YS |
2083 | Renesas RX peripherals |
2084 | M: Yoshinori Sato <ysato@users.sourceforge.jp> | |
2085 | S: Maintained | |
2086 | F: hw/intc/rx_icu.c | |
0c80f50f | 2087 | F: hw/rx/ |
e78597cc | 2088 | F: include/hw/intc/rx_icu.h |
0c80f50f | 2089 | F: include/hw/rx/ |
e78597cc | 2090 | |
fd5d5c56 AL |
2091 | Subsystems |
2092 | ---------- | |
2093 | Audio | |
9f575846 | 2094 | M: Gerd Hoffmann <kraxel@redhat.com> |
fd5d5c56 AL |
2095 | S: Maintained |
2096 | F: audio/ | |
8d8b636d | 2097 | F: hw/audio/ |
a2b245ae | 2098 | F: include/hw/audio/ |
1e8a1fae TH |
2099 | F: tests/qtest/ac97-test.c |
2100 | F: tests/qtest/es1370-test.c | |
2101 | F: tests/qtest/intel-hda-test.c | |
fd5d5c56 | 2102 | |
17f1e8f5 | 2103 | Block layer core |
fd5d5c56 | 2104 | M: Kevin Wolf <kwolf@redhat.com> |
c4189d85 | 2105 | M: Max Reitz <mreitz@redhat.com> |
c95e4c0e | 2106 | L: qemu-block@nongnu.org |
fd5d5c56 AL |
2107 | S: Supported |
2108 | F: block* | |
2109 | F: block/ | |
8d8b636d | 2110 | F: hw/block/ |
4c346e0b | 2111 | F: include/block/ |
46078760 | 2112 | F: qemu-img* |
e13c59fa | 2113 | F: docs/interop/qemu-img.rst |
46078760 | 2114 | F: qemu-io* |
29242091 | 2115 | F: tests/qemu-iotests/ |
8dd30c86 | 2116 | F: util/qemu-progress.c |
0bcc8e5b | 2117 | F: qobject/block-qdict.c |
c468e368 | 2118 | F: tests/check-block-qdict.c |
ebe2aad2 | 2119 | T: git https://repo.or.cz/qemu/kevin.git block |
fd5d5c56 | 2120 | |
d55053b1 SH |
2121 | Block I/O path |
2122 | M: Stefan Hajnoczi <stefanha@redhat.com> | |
fe5ca46d | 2123 | M: Fam Zheng <fam@euphon.net> |
d55053b1 SH |
2124 | L: qemu-block@nongnu.org |
2125 | S: Supported | |
36c697bd PB |
2126 | F: util/async.c |
2127 | F: util/aio-*.c | |
1f050a46 SH |
2128 | F: util/aio-*.h |
2129 | F: util/fdmon-*.c | |
d55053b1 SH |
2130 | F: block/io.c |
2131 | F: migration/block* | |
e1029ae2 | 2132 | F: include/block/aio.h |
f5a53faa | 2133 | F: include/block/aio-wait.h |
0a4f9ad1 | 2134 | F: scripts/qemugdb/aio.py |
e18a8b34 | 2135 | T: git https://github.com/stefanha/qemu.git block |
d55053b1 | 2136 | |
e5b5728c PB |
2137 | Block SCSI subsystem |
2138 | M: Paolo Bonzini <pbonzini@redhat.com> | |
fe5ca46d | 2139 | R: Fam Zheng <fam@euphon.net> |
e5b5728c PB |
2140 | L: qemu-block@nongnu.org |
2141 | S: Supported | |
2142 | F: include/scsi/* | |
2143 | F: scsi/* | |
2144 | ||
280458a3 | 2145 | Block Jobs |
03283d64 | 2146 | M: John Snow <jsnow@redhat.com> |
280458a3 JC |
2147 | L: qemu-block@nongnu.org |
2148 | S: Supported | |
2149 | F: blockjob.c | |
2150 | F: include/block/blockjob.h | |
33e9e9bd | 2151 | F: job.c |
1a90bc81 | 2152 | F: job-qmp.c |
c468e368 | 2153 | F: include/qemu/job.h |
280458a3 JC |
2154 | F: block/backup.c |
2155 | F: block/commit.c | |
77346025 | 2156 | F: block/stream.c |
280458a3 | 2157 | F: block/mirror.c |
bf42508f | 2158 | F: qapi/job.json |
03283d64 | 2159 | T: git https://github.com/jnsnow/qemu.git jobs |
280458a3 | 2160 | |
4120201d MA |
2161 | Block QAPI, monitor, command line |
2162 | M: Markus Armbruster <armbru@redhat.com> | |
2163 | S: Supported | |
2164 | F: blockdev.c | |
a2dde2f2 | 2165 | F: blockdev-hmp-cmds.c |
4120201d MA |
2166 | F: block/qapi.c |
2167 | F: qapi/block*.json | |
fa988e39 | 2168 | F: qapi/transaction.json |
ebe2aad2 | 2169 | T: git https://repo.or.cz/qemu/armbru.git block-next |
4120201d | 2170 | |
538193bc | 2171 | Dirty Bitmaps |
edb05904 EB |
2172 | M: Eric Blake <eblake@redhat.com> |
2173 | M: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> | |
2174 | R: John Snow <jsnow@redhat.com> | |
538193bc JS |
2175 | L: qemu-block@nongnu.org |
2176 | S: Supported | |
538193bc JS |
2177 | F: include/qemu/hbitmap.h |
2178 | F: include/block/dirty-bitmap.h | |
bb4e58c6 | 2179 | F: block/monitor/bitmap-qmp-cmds.c |
00637c6b VSO |
2180 | F: block/dirty-bitmap.c |
2181 | F: block/qcow2-bitmap.c | |
052db8e7 | 2182 | F: migration/block-dirty-bitmap.c |
00637c6b | 2183 | F: util/hbitmap.c |
538193bc | 2184 | F: tests/test-hbitmap.c |
5746c1cd | 2185 | F: docs/interop/bitmaps.rst |
edb05904 | 2186 | T: git https://repo.or.cz/qemu/ericb.git bitmaps |
538193bc | 2187 | |
61af0ee6 | 2188 | Character device backends |
55fc84a7 | 2189 | M: Marc-André Lureau <marcandre.lureau@redhat.com> |
2185fd67 | 2190 | R: Paolo Bonzini <pbonzini@redhat.com> |
fd5d5c56 | 2191 | S: Maintained |
178fe0ae | 2192 | F: chardev/ |
8228e353 | 2193 | F: include/chardev/ |
dbeee392 | 2194 | F: qapi/char.json |
fd5d5c56 | 2195 | |
e26082fd PB |
2196 | Character Devices (Braille) |
2197 | M: Samuel Thibault <samuel.thibault@ens-lyon.org> | |
2198 | S: Maintained | |
6b10e573 | 2199 | F: chardev/baum.c |
fd5d5c56 | 2200 | |
e94630d3 MA |
2201 | Command line option argument parsing |
2202 | M: Markus Armbruster <armbru@redhat.com> | |
2203 | S: Supported | |
2204 | F: include/qemu/option.h | |
2205 | F: tests/test-keyval.c | |
2206 | F: tests/test-qemu-opts.c | |
2207 | F: util/keyval.c | |
2208 | F: util/qemu-option.c | |
2209 | ||
8c413e79 MA |
2210 | Coverity model |
2211 | M: Markus Armbruster <armbru@redhat.com> | |
2212 | S: Supported | |
2213 | F: scripts/coverity-model.c | |
2214 | ||
9c263d07 PM |
2215 | Coverity Scan integration |
2216 | M: Peter Maydell <peter.maydell@linaro.org> | |
2217 | S: Maintained | |
2218 | F: scripts/coverity-scan/ | |
2219 | ||
d24b569a | 2220 | Device Tree |
c3c962c1 AF |
2221 | M: Alistair Francis <alistair.francis@wdc.com> |
2222 | R: David Gibson <david@gibson.dropbear.id.au> | |
d24b569a | 2223 | S: Maintained |
82407515 TH |
2224 | F: device_tree.c |
2225 | F: include/sysemu/device_tree.h | |
d24b569a | 2226 | |
3505a22b MAL |
2227 | Dump |
2228 | S: Supported | |
2229 | M: Marc-André Lureau <marcandre.lureau@redhat.com> | |
6d3da32c | 2230 | F: dump/ |
3505a22b MAL |
2231 | F: hw/misc/vmcoreinfo.c |
2232 | F: include/hw/misc/vmcoreinfo.h | |
6d3da32c | 2233 | F: include/qemu/win_dump_defs |
3505a22b MAL |
2234 | F: include/sysemu/dump-arch.h |
2235 | F: include/sysemu/dump.h | |
d06b747b | 2236 | F: qapi/dump.json |
3505a22b MAL |
2237 | F: scripts/dump-guest-memory.py |
2238 | F: stubs/dump.c | |
2239 | ||
4f966768 MA |
2240 | Error reporting |
2241 | M: Markus Armbruster <armbru@redhat.com> | |
2242 | S: Supported | |
2243 | F: include/qapi/error.h | |
2244 | F: include/qemu/error-report.h | |
abb3d37d | 2245 | F: qapi/error.json |
4f966768 MA |
2246 | F: util/error.c |
2247 | F: util/qemu-error.c | |
d1d3a997 VSO |
2248 | F: scripts/coccinelle/err-bad-newline.cocci |
2249 | F: scripts/coccinelle/error-use-after-free.cocci | |
2250 | F: scripts/coccinelle/error_propagate_null.cocci | |
2251 | F: scripts/coccinelle/remove_local_err.cocci | |
2252 | F: scripts/coccinelle/use-error_fatal.cocci | |
8220f3ac | 2253 | F: scripts/coccinelle/errp-guard.cocci |
4f966768 | 2254 | |
fd5d5c56 | 2255 | GDB stub |
c7b3e866 AB |
2256 | M: Alex Bennée <alex.bennee@linaro.org> |
2257 | R: Philippe Mathieu-Daudé <philmd@redhat.com> | |
2258 | S: Maintained | |
fd5d5c56 AL |
2259 | F: gdbstub* |
2260 | F: gdb-xml/ | |
2261 | ||
01a9c03c PB |
2262 | Memory API |
2263 | M: Paolo Bonzini <pbonzini@redhat.com> | |
2264 | S: Supported | |
2265 | F: include/exec/ioport.h | |
14776ab5 | 2266 | F: include/exec/memop.h |
01a9c03c | 2267 | F: include/exec/memory.h |
2b1641d0 | 2268 | F: include/exec/ram_addr.h |
41aa4e9f | 2269 | F: include/exec/ramblock.h |
c7f419f5 CF |
2270 | F: softmmu/ioport.c |
2271 | F: softmmu/memory.c | |
01a9c03c PB |
2272 | F: include/exec/memory-internal.h |
2273 | F: exec.c | |
044e2af9 | 2274 | F: scripts/coccinelle/memory-region-housekeeping.cocci |
01a9c03c | 2275 | |
7ee3bf03 GH |
2276 | SPICE |
2277 | M: Gerd Hoffmann <kraxel@redhat.com> | |
2278 | S: Supported | |
6e481d57 | 2279 | F: include/ui/qemu-spice.h |
438528a3 | 2280 | F: include/ui/spice-display.h |
7ee3bf03 GH |
2281 | F: ui/spice-*.c |
2282 | F: audio/spiceaudio.c | |
8d8b636d | 2283 | F: hw/display/qxl* |
608cfed6 | 2284 | F: qapi/ui.json |
9bd4cb35 | 2285 | F: docs/spice-port-fqdn.txt |
7ee3bf03 | 2286 | |
fd5d5c56 | 2287 | Graphics |
25eccc37 GH |
2288 | M: Gerd Hoffmann <kraxel@redhat.com> |
2289 | S: Odd Fixes | |
fd5d5c56 | 2290 | F: ui/ |
e220656c | 2291 | F: include/ui/ |
608cfed6 | 2292 | F: qapi/ui.json |
b1d38037 | 2293 | F: util/drm.c |
fd5d5c56 | 2294 | |
351f1bf6 | 2295 | Cocoa graphics |
30ef3c74 | 2296 | M: Peter Maydell <peter.maydell@linaro.org> |
351f1bf6 AF |
2297 | S: Odd Fixes |
2298 | F: ui/cocoa.m | |
2299 | ||
fd5d5c56 | 2300 | Main loop |
da26f37a PB |
2301 | M: Paolo Bonzini <pbonzini@redhat.com> |
2302 | S: Maintained | |
54d31236 MA |
2303 | F: include/qemu/main-loop.h |
2304 | F: include/sysemu/runstate.h | |
3ecb29a3 PB |
2305 | F: util/main-loop.c |
2306 | F: util/qemu-timer.c | |
bac068e0 | 2307 | F: softmmu/vl.c |
7b733862 | 2308 | F: softmmu/main.c |
c7f419f5 | 2309 | F: softmmu/cpus.c |
b0c3cf94 | 2310 | F: softmmu/cpu-throttle.c |
0e201d34 | 2311 | F: qapi/run-state.json |
fd5d5c56 | 2312 | |
8899b4ae | 2313 | Human Monitor (HMP) |
c833fb4a | 2314 | M: Dr. David Alan Gilbert <dgilbert@redhat.com> |
fbb0621a | 2315 | S: Maintained |
5bce308a | 2316 | F: monitor/monitor-internal.h |
e84328fa | 2317 | F: monitor/misc.c |
1d95db74 | 2318 | F: monitor/monitor.c |
f1b3ccfa KW |
2319 | F: monitor/hmp* |
2320 | F: hmp.h | |
c13e9912 TH |
2321 | F: hmp-commands*.hx |
2322 | F: include/monitor/hmp-target.h | |
1e8a1fae | 2323 | F: tests/qtest/test-hmp.c |
637de4db MA |
2324 | F: include/qemu/qemu-print.h |
2325 | F: util/qemu-print.c | |
fd5d5c56 | 2326 | |
f536f112 | 2327 | Network device backends |
442469e6 | 2328 | M: Jason Wang <jasowang@redhat.com> |
fd5d5c56 AL |
2329 | S: Maintained |
2330 | F: net/ | |
d24b2b1c | 2331 | F: include/net/ |
e9bbc8bd | 2332 | F: qemu-bridge-helper.c |
e18a8b34 | 2333 | T: git https://github.com/jasowang/qemu.git net |
3c0bd37d | 2334 | F: qapi/net.json |
fd5d5c56 | 2335 | |
aee09baf VM |
2336 | Netmap network backend |
2337 | M: Luigi Rizzo <rizzo@iet.unipi.it> | |
2338 | M: Giuseppe Lettieri <g.lettieri@iet.unipi.it> | |
2339 | M: Vincenzo Maffione <v.maffione@gmail.com> | |
2340 | W: http://info.iet.unipi.it/~luigi/netmap/ | |
2341 | S: Maintained | |
2342 | F: net/netmap.c | |
2343 | ||
4fc264f4 EH |
2344 | Host Memory Backends |
2345 | M: Eduardo Habkost <ehabkost@redhat.com> | |
2346 | M: Igor Mammedov <imammedo@redhat.com> | |
2347 | S: Maintained | |
2348 | F: backends/hostmem*.c | |
2349 | F: include/sysemu/hostmem.h | |
e18a8b34 | 2350 | T: git https://github.com/ehabkost/qemu.git machine-next |
4fc264f4 | 2351 | |
6034011c GA |
2352 | Cryptodev Backends |
2353 | M: Gonglei <arei.gonglei@huawei.com> | |
2354 | S: Maintained | |
2355 | F: include/sysemu/cryptodev*.h | |
2356 | F: backends/cryptodev*.c | |
2357 | ||
ad904f66 EH |
2358 | Python scripts |
2359 | M: Eduardo Habkost <ehabkost@redhat.com> | |
2360 | M: Cleber Rosa <crosa@redhat.com> | |
2361 | S: Odd fixes | |
1b6ee29f | 2362 | F: python/qemu/*py |
ad904f66 EH |
2363 | F: scripts/*.py |
2364 | F: tests/*.py | |
2365 | ||
f4abfc6c VSO |
2366 | Benchmark util |
2367 | M: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com> | |
2368 | S: Maintained | |
2369 | F: scripts/simplebench/ | |
2370 | ||
8899b4ae | 2371 | QAPI |
9740618c | 2372 | M: Markus Armbruster <armbru@redhat.com> |
8899b4ae | 2373 | M: Michael Roth <mdroth@linux.vnet.ibm.com> |
9740618c | 2374 | S: Supported |
8899b4ae | 2375 | F: qapi/ |
0311c5bd | 2376 | X: qapi/*.json |
ac4abb9a MA |
2377 | F: include/qapi/ |
2378 | X: include/qapi/qmp/ | |
2379 | F: include/qapi/qmp/dispatch.h | |
c0bd0b50 | 2380 | F: tests/qapi-schema/ |
ac4abb9a | 2381 | F: tests/test-*-visitor.c |
e94630d3 | 2382 | F: tests/test-qapi-*.c |
ac4abb9a | 2383 | F: tests/test-qmp-*.c |
e94630d3 | 2384 | F: tests/test-visitor-serialization.c |
be25fcc4 MA |
2385 | F: scripts/qapi-gen.py |
2386 | F: scripts/qapi/* | |
c39cdbf6 | 2387 | F: docs/devel/qapi* |
ebe2aad2 | 2388 | T: git https://repo.or.cz/qemu/armbru.git qapi-next |
8899b4ae | 2389 | |
7810d291 LC |
2390 | QAPI Schema |
2391 | M: Eric Blake <eblake@redhat.com> | |
7810d291 LC |
2392 | M: Markus Armbruster <armbru@redhat.com> |
2393 | S: Supported | |
0311c5bd | 2394 | F: qapi/*.json |
ebe2aad2 | 2395 | T: git https://repo.or.cz/qemu/armbru.git qapi-next |
7810d291 | 2396 | |
f3582ba4 | 2397 | QObject |
daf5dc78 MA |
2398 | M: Markus Armbruster <armbru@redhat.com> |
2399 | S: Supported | |
f3582ba4 | 2400 | F: qobject/ |
7735d2b5 MA |
2401 | F: include/qapi/qmp/ |
2402 | X: include/qapi/qmp/dispatch.h | |
a2f3453e | 2403 | F: scripts/coccinelle/qobject.cocci |
7735d2b5 | 2404 | F: tests/check-qdict.c |
7735d2b5 MA |
2405 | F: tests/check-qjson.c |
2406 | F: tests/check-qlist.c | |
cd81e02b PMD |
2407 | F: tests/check-qlit.c |
2408 | F: tests/check-qnull.c | |
2409 | F: tests/check-qnum.c | |
2410 | F: tests/check-qobject.c | |
7735d2b5 | 2411 | F: tests/check-qstring.c |
fe07b62c | 2412 | F: tests/data/qobject/qdict.txt |
ebe2aad2 | 2413 | T: git https://repo.or.cz/qemu/armbru.git qapi-next |
f3582ba4 | 2414 | |
f05d9999 MR |
2415 | QEMU Guest Agent |
2416 | M: Michael Roth <mdroth@linux.vnet.ibm.com> | |
2417 | S: Maintained | |
2418 | F: qga/ | |
27a296fc | 2419 | F: docs/interop/qemu-ga.rst |
ab7f9f7d PMD |
2420 | F: scripts/qemu-guest-agent/ |
2421 | F: tests/test-qga.c | |
2422 | F: docs/interop/qemu-ga-ref.texi | |
e18a8b34 | 2423 | T: git https://github.com/mdroth/qemu.git qga |
f05d9999 | 2424 | |
4688c94c | 2425 | QOM |
1085d86e PB |
2426 | M: Paolo Bonzini <pbonzini@redhat.com> |
2427 | R: Daniel P. Berrange <berrange@redhat.com> | |
2428 | R: Eduardo Habkost <ehabkost@redhat.com> | |
4688c94c | 2429 | S: Supported |
8f920054 MA |
2430 | F: docs/qdev-device-use.txt |
2431 | F: hw/core/qdev* | |
b77b5b3d MA |
2432 | F: hw/core/bus.c |
2433 | F: hw/core/sysbus.c | |
8f920054 MA |
2434 | F: include/hw/qdev* |
2435 | F: include/monitor/qdev.h | |
4688c94c | 2436 | F: include/qom/ |
c577ff62 MA |
2437 | F: qapi/qom.json |
2438 | F: qapi/qdev.json | |
8f920054 | 2439 | F: qdev-monitor.c |
4688c94c | 2440 | F: qom/ |
9f4aa7ce AF |
2441 | F: tests/check-qom-interface.c |
2442 | F: tests/check-qom-proplist.c | |
8f920054 | 2443 | F: tests/test-qdev-global-props.c |
4688c94c | 2444 | |
94dfc0f3 EH |
2445 | QOM boilerplate conversion script |
2446 | M: Eduardo Habkost <ehabkost@redhat.com> | |
2447 | S: Maintained | |
2448 | F: scripts/codeconverter/ | |
2449 | ||
8899b4ae | 2450 | QMP |
9740618c LC |
2451 | M: Markus Armbruster <armbru@redhat.com> |
2452 | S: Supported | |
5bce308a | 2453 | F: monitor/monitor-internal.h |
f1b3ccfa | 2454 | F: monitor/qmp* |
e84328fa | 2455 | F: monitor/misc.c |
1d95db74 | 2456 | F: monitor/monitor.c |
abb3d37d | 2457 | F: qapi/error.json |
c39cdbf6 | 2458 | F: docs/devel/*qmp-* |
12b2f0d9 | 2459 | F: docs/interop/*qmp-* |
9740618c | 2460 | F: scripts/qmp/ |
1e8a1fae TH |
2461 | F: tests/qtest/qmp-test.c |
2462 | F: tests/qtest/qmp-cmd-test.c | |
ebe2aad2 | 2463 | T: git https://repo.or.cz/qemu/armbru.git qapi-next |
8899b4ae | 2464 | |
98a43bf0 | 2465 | qtest |
98a43bf0 PB |
2466 | M: Thomas Huth <thuth@redhat.com> |
2467 | M: Laurent Vivier <lvivier@redhat.com> | |
2185fd67 | 2468 | R: Paolo Bonzini <pbonzini@redhat.com> |
98a43bf0 | 2469 | S: Maintained |
c7f419f5 | 2470 | F: softmmu/qtest.c |
3fe13fe1 | 2471 | F: accel/qtest.c |
1e8a1fae | 2472 | F: tests/qtest/ |
b963ea19 | 2473 | X: tests/qtest/bios-tables-test-allowed-diff.h |
98a43bf0 | 2474 | |
5f6fd09a AB |
2475 | Device Fuzzing |
2476 | M: Alexander Bulekov <alxndr@bu.edu> | |
2477 | R: Paolo Bonzini <pbonzini@redhat.com> | |
2478 | R: Bandan Das <bsd@redhat.com> | |
2479 | R: Stefan Hajnoczi <stefanha@redhat.com> | |
6184e5fb | 2480 | R: Thomas Huth <thuth@redhat.com> |
5f6fd09a AB |
2481 | S: Maintained |
2482 | F: tests/qtest/fuzz/ | |
211635b3 | 2483 | F: scripts/oss-fuzz/ |
6184e5fb | 2484 | F: docs/devel/fuzzing.txt |
5f6fd09a | 2485 | |
cc0100f4 | 2486 | Register API |
c22e580c | 2487 | M: Alistair Francis <alistair@alistair23.me> |
cc0100f4 AF |
2488 | S: Maintained |
2489 | F: hw/core/register.c | |
2490 | F: include/hw/register.h | |
06a7b243 | 2491 | F: include/hw/registerfields.h |
cc0100f4 | 2492 | |
fd5d5c56 | 2493 | SLIRP |
eda509fa | 2494 | M: Samuel Thibault <samuel.thibault@ens-lyon.org> |
bafc72ab | 2495 | S: Maintained |
fd5d5c56 | 2496 | F: slirp/ |
663fb1e1 | 2497 | F: net/slirp.c |
d24b2b1c | 2498 | F: include/net/slirp.h |
02cffe24 | 2499 | T: git https://people.debian.org/~sthibault/qemu.git slirp |
fd5d5c56 | 2500 | |
6d0af39f EI |
2501 | Streams |
2502 | M: Edgar E. Iglesias <edgar.iglesias@gmail.com> | |
2503 | S: Maintained | |
2504 | F: hw/core/stream.c | |
2505 | F: include/hw/stream.h | |
2506 | ||
b1ed728a PB |
2507 | Stubs |
2508 | M: Paolo Bonzini <pbonzini@redhat.com> | |
2509 | S: Maintained | |
2510 | F: stubs/ | |
2511 | ||
598a3f35 | 2512 | Tracing |
1cd0f8ce | 2513 | M: Stefan Hajnoczi <stefanha@redhat.com> |
598a3f35 SH |
2514 | S: Maintained |
2515 | F: trace/ | |
0e076292 | 2516 | F: trace-events |
3a8273b1 | 2517 | F: docs/qemu-option-trace.rst.inc |
f70fd8fd LV |
2518 | F: scripts/tracetool.py |
2519 | F: scripts/tracetool/ | |
62dd1048 | 2520 | F: scripts/qemu-trace-stap* |
605ffebb | 2521 | F: docs/interop/qemu-trace-stap.rst |
c39cdbf6 | 2522 | F: docs/devel/tracing.txt |
e18a8b34 | 2523 | T: git https://github.com/stefanha/qemu.git tracing |
598a3f35 | 2524 | |
3859b6cf | 2525 | TPM |
1f63669e | 2526 | M: Stefan Berger <stefanb@linux.ibm.com> |
6b4f250b | 2527 | S: Maintained |
3859b6cf | 2528 | F: tpm.c |
c39f95dc | 2529 | F: stubs/tpm.c |
3859b6cf MA |
2530 | F: hw/tpm/* |
2531 | F: include/hw/acpi/tpm.h | |
2532 | F: include/sysemu/tpm* | |
2533 | F: qapi/tpm.json | |
8ae92e24 | 2534 | F: backends/tpm/ |
1e8a1fae | 2535 | F: tests/qtest/*tpm* |
e18a8b34 | 2536 | T: git https://github.com/stefanberger/qemu-tpm.git tpm-next |
3859b6cf | 2537 | |
14f40fdc | 2538 | Checkpatch |
14f40fdc BS |
2539 | S: Odd Fixes |
2540 | F: scripts/checkpatch.pl | |
2541 | ||
c0787c8d JQ |
2542 | Migration |
2543 | M: Juan Quintela <quintela@redhat.com> | |
d7fc72ce | 2544 | M: Dr. David Alan Gilbert <dgilbert@redhat.com> |
c0787c8d | 2545 | S: Maintained |
107b5969 MAL |
2546 | F: hw/core/vmstate-if.c |
2547 | F: include/hw/vmstate-if.h | |
c0787c8d | 2548 | F: include/migration/ |
44a1f946 | 2549 | F: migration/ |
c5515640 AS |
2550 | F: scripts/vmstate-static-checker.py |
2551 | F: tests/vmstate-static-checker-data/ | |
1e8a1fae | 2552 | F: tests/qtest/migration-test.c |
c468e368 | 2553 | F: docs/devel/migration.rst |
48685a8e | 2554 | F: qapi/migration.json |
c0787c8d | 2555 | |
a566907f MAL |
2556 | D-Bus |
2557 | M: Marc-André Lureau <marcandre.lureau@redhat.com> | |
2558 | S: Maintained | |
5010cec2 | 2559 | F: backends/dbus-vmstate.c |
586ca6ba | 2560 | F: tests/dbus-vmstate* |
a5021d69 MAL |
2561 | F: util/dbus.c |
2562 | F: include/qemu/dbus.h | |
a566907f | 2563 | F: docs/interop/dbus.rst |
5010cec2 | 2564 | F: docs/interop/dbus-vmstate.rst |
a566907f | 2565 | |
92bfedb0 | 2566 | Seccomp |
064983cb | 2567 | M: Eduardo Otubo <otubo@redhat.com> |
92bfedb0 EO |
2568 | S: Supported |
2569 | F: qemu-seccomp.c | |
2570 | F: include/sysemu/seccomp.h | |
2571 | ||
ddbb0d09 DB |
2572 | Cryptography |
2573 | M: Daniel P. Berrange <berrange@redhat.com> | |
2574 | S: Maintained | |
2575 | F: crypto/ | |
2576 | F: include/crypto/ | |
2577 | F: tests/test-crypto-* | |
3947ecfc | 2578 | F: tests/benchmark-crypto-* |
4d21171b PMD |
2579 | F: tests/crypto-tls-* |
2580 | F: tests/pkix_asn1_tab.c | |
899833cd | 2581 | F: qemu.sasl |
ddbb0d09 | 2582 | |
10817bf0 DB |
2583 | Coroutines |
2584 | M: Stefan Hajnoczi <stefanha@redhat.com> | |
2585 | M: Kevin Wolf <kwolf@redhat.com> | |
00a25291 | 2586 | S: Maintained |
10817bf0 DB |
2587 | F: util/*coroutine* |
2588 | F: include/qemu/coroutine* | |
2589 | F: tests/test-coroutine.c | |
2590 | ||
88c5f205 DB |
2591 | Buffers |
2592 | M: Daniel P. Berrange <berrange@redhat.com> | |
2593 | S: Odd fixes | |
2594 | F: util/buffer.c | |
2595 | F: include/qemu/buffer.h | |
2596 | ||
666a3af9 DB |
2597 | I/O Channels |
2598 | M: Daniel P. Berrange <berrange@redhat.com> | |
2599 | S: Maintained | |
2600 | F: io/ | |
2601 | F: include/io/ | |
2602 | F: tests/test-io-* | |
2603 | ||
5b76dd13 DB |
2604 | User authorization |
2605 | M: Daniel P. Berrange <berrange@redhat.com> | |
2606 | S: Maintained | |
2607 | F: authz/ | |
c8c99887 | 2608 | F: qapi/authz.json |
5b76dd13 DB |
2609 | F: include/authz/ |
2610 | F: tests/test-authz-* | |
2611 | ||
5614a283 GH |
2612 | Sockets |
2613 | M: Daniel P. Berrange <berrange@redhat.com> | |
2614 | M: Gerd Hoffmann <kraxel@redhat.com> | |
5614a283 GH |
2615 | S: Maintained |
2616 | F: include/qemu/sockets.h | |
2617 | F: util/qemu-sockets.c | |
a2ff5a48 | 2618 | F: qapi/sockets.json |
5614a283 | 2619 | |
90e33dfe DB |
2620 | File monitor |
2621 | M: Daniel P. Berrange <berrange@redhat.com> | |
2622 | S: Odd fixes | |
2623 | F: util/filemonitor*.c | |
2624 | F: include/qemu/filemonitor.h | |
2625 | F: tests/test-util-filemonitor.c | |
2626 | ||
d310d85b AG |
2627 | Throttling infrastructure |
2628 | M: Alberto Garcia <berto@igalia.com> | |
2629 | S: Supported | |
2630 | F: block/throttle-groups.c | |
2631 | F: include/block/throttle-groups.h | |
89603938 | 2632 | F: include/qemu/throttle*.h |
d310d85b | 2633 | F: util/throttle.c |
89603938 PMD |
2634 | F: docs/throttle.txt |
2635 | F: tests/test-throttle.c | |
d310d85b AG |
2636 | L: qemu-block@nongnu.org |
2637 | ||
080d7aac | 2638 | UUID |
fe5ca46d | 2639 | M: Fam Zheng <fam@euphon.net> |
080d7aac FZ |
2640 | S: Supported |
2641 | F: util/uuid.c | |
2642 | F: include/qemu/uuid.h | |
2643 | F: tests/test-uuid.c | |
2644 | ||
a4cc318e HZ |
2645 | COLO Framework |
2646 | M: zhanghailiang <zhang.zhanghailiang@huawei.com> | |
2647 | S: Maintained | |
2648 | F: migration/colo* | |
2649 | F: include/migration/colo.h | |
2650 | F: include/migration/failover.h | |
2651 | F: docs/COLO-FT.txt | |
2652 | ||
88f82ed1 | 2653 | COLO Proxy |
c6bf50ff | 2654 | M: Zhang Chen <chen.zhang@intel.com> |
88f82ed1 ZC |
2655 | M: Li Zhijian <lizhijian@cn.fujitsu.com> |
2656 | S: Supported | |
2657 | F: docs/colo-proxy.txt | |
2658 | F: net/colo* | |
2659 | F: net/filter-rewriter.c | |
2660 | F: net/filter-mirror.c | |
2661 | ||
62258201 PD |
2662 | Record/replay |
2663 | M: Pavel Dovgalyuk <pavel.dovgaluk@ispras.ru> | |
2664 | R: Paolo Bonzini <pbonzini@redhat.com> | |
70b7fba9 | 2665 | W: https://wiki.qemu.org/Features/record-replay |
62258201 PD |
2666 | S: Supported |
2667 | F: replay/* | |
2668 | F: block/blkreplay.c | |
2669 | F: net/filter-replay.c | |
2670 | F: include/sysemu/replay.h | |
2671 | F: docs/replay.txt | |
2672 | F: stubs/replay.c | |
c7ebab0f | 2673 | F: tests/acceptance/replay_kernel.py |
62258201 | 2674 | |
eecf5eed PX |
2675 | IOVA Tree |
2676 | M: Peter Xu <peterx@redhat.com> | |
2677 | S: Maintained | |
2678 | F: include/qemu/iova-tree.h | |
2679 | F: util/iova-tree.c | |
2680 | ||
5ee547bb VP |
2681 | elf2dmp |
2682 | M: Viktor Prutyanov <viktor.prutyanov@phystech.edu> | |
2683 | S: Maintained | |
2684 | F: contrib/elf2dmp/ | |
2685 | ||
93198b6c CM |
2686 | I2C and SMBus |
2687 | M: Corey Minyard <cminyard@mvista.com> | |
2688 | S: Maintained | |
2689 | F: hw/i2c/core.c | |
2690 | F: hw/i2c/smbus_slave.c | |
2691 | F: hw/i2c/smbus_master.c | |
2692 | F: hw/i2c/smbus_eeprom.c | |
2693 | F: include/hw/i2c/i2c.h | |
2694 | F: include/hw/i2c/smbus_master.h | |
2695 | F: include/hw/i2c/smbus_slave.h | |
2696 | F: include/hw/i2c/smbus_eeprom.h | |
2697 | ||
d0d89526 PMD |
2698 | Firmware schema specifications |
2699 | M: Laszlo Ersek <lersek@redhat.com> | |
2700 | M: Philippe Mathieu-Daudé <philmd@redhat.com> | |
2701 | R: Daniel P. Berrange <berrange@redhat.com> | |
2702 | R: Kashyap Chamarthy <kchamart@redhat.com> | |
2703 | S: Maintained | |
2704 | F: docs/interop/firmware.json | |
2705 | ||
6739df3f LE |
2706 | EDK2 Firmware |
2707 | M: Laszlo Ersek <lersek@redhat.com> | |
2708 | M: Philippe Mathieu-Daudé <philmd@redhat.com> | |
2709 | S: Supported | |
2710 | F: pc-bios/descriptors/??-edk2-*.json | |
2711 | F: pc-bios/edk2-* | |
2712 | F: roms/Makefile.edk2 | |
2713 | F: roms/edk2 | |
2714 | F: roms/edk2-* | |
2715 | F: tests/data/uefi-boot-images/ | |
2716 | F: tests/uefi-test-tools/ | |
922febe2 | 2717 | F: .gitlab-ci.d/edk2.yml |
71920809 | 2718 | F: .gitlab-ci.d/edk2/ |
6739df3f | 2719 | |
8bc43f39 PX |
2720 | VT-d Emulation |
2721 | M: Michael S. Tsirkin <mst@redhat.com> | |
2722 | M: Peter Xu <peterx@redhat.com> | |
2723 | R: Jason Wang <jasowang@redhat.com> | |
2724 | S: Supported | |
2725 | F: hw/i386/intel_iommu.c | |
2726 | F: hw/i386/intel_iommu_internal.h | |
2727 | F: include/hw/i386/intel_iommu.h | |
2728 | ||
e92fb016 BM |
2729 | OpenSBI Firmware |
2730 | M: Bin Meng <bmeng.cn@gmail.com> | |
2731 | S: Supported | |
2732 | F: pc-bios/opensbi-* | |
2733 | F: .gitlab-ci.d/opensbi.yml | |
2734 | F: .gitlab-ci.d/opensbi/ | |
2735 | ||
fd5d5c56 AL |
2736 | Usermode Emulation |
2737 | ------------------ | |
6347e1f1 | 2738 | Overall usermode emulation |
486bbe5f PB |
2739 | M: Riku Voipio <riku.voipio@iki.fi> |
2740 | S: Maintained | |
2741 | F: thunk.c | |
58410666 | 2742 | F: accel/tcg/user-exec*.c |
486bbe5f | 2743 | |
fd5d5c56 | 2744 | BSD user |
297e8005 | 2745 | S: Orphan |
fd5d5c56 | 2746 | F: bsd-user/ |
ccf0a57b | 2747 | F: default-configs/*-bsd-user.mak |
fd5d5c56 | 2748 | |
fd5d5c56 | 2749 | Linux user |
8f902c54 | 2750 | M: Laurent Vivier <laurent@vivier.eu> |
fd5d5c56 AL |
2751 | S: Maintained |
2752 | F: linux-user/ | |
ccf0a57b | 2753 | F: default-configs/*-linux-user.mak |
e5dd9875 | 2754 | F: scripts/qemu-binfmt-conf.sh |
e3a6c825 | 2755 | F: scripts/update-syscalltbl.sh |
57333330 | 2756 | F: scripts/update-mips-syscall-args.sh |
382ae67a | 2757 | F: scripts/gensyscalls.sh |
42f5a7e9 AJ |
2758 | |
2759 | Tiny Code Generator (TCG) | |
2760 | ------------------------- | |
6347e1f1 | 2761 | Common TCG code |
cc7772bd | 2762 | M: Richard Henderson <rth@twiddle.net> |
42f5a7e9 AJ |
2763 | S: Maintained |
2764 | F: tcg/ | |
d3582cfd | 2765 | F: include/tcg/ |
42f5a7e9 | 2766 | |
22b5867b AB |
2767 | TCG Plugins |
2768 | M: Alex Bennée <alex.bennee@linaro.org> | |
2769 | S: Maintained | |
8ea6abf0 | 2770 | F: docs/devel/tcg-plugins.rst |
22b5867b | 2771 | F: plugins/ |
c17a386b AB |
2772 | F: tests/plugin/ |
2773 | F: contrib/plugins/ | |
22b5867b | 2774 | |
6347e1f1 | 2775 | AArch64 TCG target |
3e5a01ef | 2776 | M: Richard Henderson <richard.henderson@linaro.org> |
b25a464c | 2777 | S: Maintained |
b4f2bd1c | 2778 | L: qemu-arm@nongnu.org |
b25a464c | 2779 | F: tcg/aarch64/ |
c17652ee PB |
2780 | F: disas/arm-a64.cc |
2781 | F: disas/libvixl/ | |
b25a464c | 2782 | |
6347e1f1 | 2783 | ARM TCG target |
42f5a7e9 AJ |
2784 | M: Andrzej Zaborowski <balrogg@gmail.com> |
2785 | S: Maintained | |
b4f2bd1c | 2786 | L: qemu-arm@nongnu.org |
42f5a7e9 | 2787 | F: tcg/arm/ |
c17652ee | 2788 | F: disas/arm.c |
42f5a7e9 | 2789 | |
6347e1f1 | 2790 | i386 TCG target |
ecd1a5d0 | 2791 | M: Richard Henderson <rth@twiddle.net> |
42f5a7e9 AJ |
2792 | S: Maintained |
2793 | F: tcg/i386/ | |
c17652ee | 2794 | F: disas/i386.c |
42f5a7e9 | 2795 | |
6347e1f1 | 2796 | MIPS TCG target |
0eac70b0 | 2797 | M: Aleksandar Markovic <aleksandar.qemu.devel@gmail.com> |
099d510b | 2798 | R: Aurelien Jarno <aurelien@aurel32.net> |
15d983de AM |
2799 | R: Huacai Chen <chenhc@lemote.com> |
2800 | R: Jiaxun Yang <jiaxun.yang@flygoat.com> | |
97d89746 | 2801 | R: Aleksandar Rikalo <aleksandar.rikalo@syrmia.com> |
42f5a7e9 AJ |
2802 | S: Maintained |
2803 | F: tcg/mips/ | |
2804 | ||
6347e1f1 | 2805 | PPC TCG target |
15610d42 PK |
2806 | M: Richard Henderson <rth@twiddle.net> |
2807 | S: Odd Fixes | |
42f5a7e9 | 2808 | F: tcg/ppc/ |
c17652ee | 2809 | F: disas/ppc.c |
42f5a7e9 | 2810 | |
6347e1f1 | 2811 | RISC-V TCG target |
c1677bcc | 2812 | M: Palmer Dabbelt <palmer@dabbelt.com> |
fb1f70f3 AF |
2813 | M: Alistair Francis <Alistair.Francis@wdc.com> |
2814 | L: qemu-riscv@nongnu.org | |
2815 | S: Maintained | |
2816 | F: tcg/riscv/ | |
2817 | F: disas/riscv.c | |
2818 | ||
6347e1f1 | 2819 | S390 TCG target |
42f5a7e9 AJ |
2820 | M: Richard Henderson <rth@twiddle.net> |
2821 | S: Maintained | |
2822 | F: tcg/s390/ | |
c17652ee | 2823 | F: disas/s390.c |
146bd283 | 2824 | L: qemu-s390x@nongnu.org |
42f5a7e9 | 2825 | |
6347e1f1 | 2826 | SPARC TCG target |
297e8005 | 2827 | S: Odd Fixes |
42f5a7e9 | 2828 | F: tcg/sparc/ |
c17652ee | 2829 | F: disas/sparc.c |
bc75c9e5 | 2830 | |
6347e1f1 | 2831 | TCI TCG target |
bc75c9e5 SW |
2832 | M: Stefan Weil <sw@weilnetz.de> |
2833 | S: Maintained | |
8ef9cd55 | 2834 | F: tcg/tci/ |
752a2ae2 | 2835 | F: tcg/tci.c |
c17652ee | 2836 | F: disas/tci.c |
aa09c951 | 2837 | |
f05b328c SH |
2838 | Block drivers |
2839 | ------------- | |
2840 | VMDK | |
fe5ca46d | 2841 | M: Fam Zheng <fam@euphon.net> |
c95e4c0e | 2842 | L: qemu-block@nongnu.org |
f05b328c SH |
2843 | S: Supported |
2844 | F: block/vmdk.c | |
2845 | ||
2846 | RBD | |
2bbd9986 | 2847 | M: Jason Dillaman <dillaman@redhat.com> |
280458a3 | 2848 | L: qemu-block@nongnu.org |
f05b328c SH |
2849 | S: Supported |
2850 | F: block/rbd.c | |
2851 | ||
2852 | Sheepdog | |
f05b328c | 2853 | M: Liu Yuan <namei.unix@gmail.com> |
280458a3 | 2854 | L: qemu-block@nongnu.org |
5f5246b6 JC |
2855 | L: sheepdog@lists.wpkg.org |
2856 | S: Odd Fixes | |
f05b328c SH |
2857 | F: block/sheepdog.c |
2858 | ||
2859 | VHDX | |
5f5246b6 | 2860 | M: Jeff Cody <codyprime@gmail.com> |
280458a3 | 2861 | L: qemu-block@nongnu.org |
f05b328c SH |
2862 | S: Supported |
2863 | F: block/vhdx* | |
2864 | ||
2865 | VDI | |
2866 | M: Stefan Weil <sw@weilnetz.de> | |
c95e4c0e | 2867 | L: qemu-block@nongnu.org |
f05b328c SH |
2868 | S: Maintained |
2869 | F: block/vdi.c | |
2870 | ||
2871 | iSCSI | |
2872 | M: Ronnie Sahlberg <ronniesahlberg@gmail.com> | |
2873 | M: Paolo Bonzini <pbonzini@redhat.com> | |
2874 | M: Peter Lieven <pl@kamp.de> | |
c95e4c0e | 2875 | L: qemu-block@nongnu.org |
2185fd67 | 2876 | S: Odd Fixes |
f05b328c | 2877 | F: block/iscsi.c |
2deb63c2 | 2878 | F: block/iscsi-opts.c |
f05b328c | 2879 | |
99c62e70 EB |
2880 | Network Block Device (NBD) |
2881 | M: Eric Blake <eblake@redhat.com> | |
99c62e70 EB |
2882 | L: qemu-block@nongnu.org |
2883 | S: Maintained | |
2884 | F: block/nbd* | |
2885 | F: nbd/ | |
2886 | F: include/block/nbd* | |
2887 | F: qemu-nbd.* | |
2888 | F: blockdev-nbd.c | |
3229a835 | 2889 | F: docs/interop/nbd.txt |
87c0868f | 2890 | F: docs/interop/qemu-nbd.rst |
ebe2aad2 | 2891 | T: git https://repo.or.cz/qemu/ericb.git nbd |
99c62e70 | 2892 | |
6542aa9c PL |
2893 | NFS |
2894 | M: Peter Lieven <pl@kamp.de> | |
280458a3 | 2895 | L: qemu-block@nongnu.org |
6542aa9c PL |
2896 | S: Maintained |
2897 | F: block/nfs.c | |
2898 | ||
f05b328c SH |
2899 | SSH |
2900 | M: Richard W.M. Jones <rjones@redhat.com> | |
280458a3 | 2901 | L: qemu-block@nongnu.org |
f05b328c SH |
2902 | S: Supported |
2903 | F: block/ssh.c | |
c9a12e75 | 2904 | |
280458a3 | 2905 | CURL |
280458a3 | 2906 | L: qemu-block@nongnu.org |
5c6090fa | 2907 | S: Odd Fixes |
280458a3 | 2908 | F: block/curl.c |
280458a3 JC |
2909 | |
2910 | GLUSTER | |
280458a3 | 2911 | L: qemu-block@nongnu.org |
5c6090fa TH |
2912 | L: integration@gluster.org |
2913 | S: Odd Fixes | |
280458a3 | 2914 | F: block/gluster.c |
b5e9476c | 2915 | |
199667a8 | 2916 | Null Block Driver |
fe5ca46d | 2917 | M: Fam Zheng <fam@euphon.net> |
199667a8 FZ |
2918 | L: qemu-block@nongnu.org |
2919 | S: Supported | |
2920 | F: block/null.c | |
2921 | ||
bdd6a90a | 2922 | NVMe Block Driver |
fe5ca46d | 2923 | M: Fam Zheng <fam@euphon.net> |
bdd6a90a FZ |
2924 | L: qemu-block@nongnu.org |
2925 | S: Supported | |
2926 | F: block/nvme* | |
2927 | ||
b5e9476c GA |
2928 | Bootdevice |
2929 | M: Gonglei <arei.gonglei@huawei.com> | |
2930 | S: Maintained | |
2931 | F: bootdevice.c | |
ecdda9e0 AG |
2932 | |
2933 | Quorum | |
2934 | M: Alberto Garcia <berto@igalia.com> | |
2935 | S: Supported | |
2936 | F: block/quorum.c | |
2937 | L: qemu-block@nongnu.org | |
e7c6e631 | 2938 | |
bfcc224e AV |
2939 | blklogwrites |
2940 | M: Ari Sundholm <ari@tuxera.com> | |
2941 | L: qemu-block@nongnu.org | |
2942 | S: Supported | |
2943 | F: block/blklogwrites.c | |
2944 | ||
e7c6e631 SH |
2945 | blkverify |
2946 | M: Stefan Hajnoczi <stefanha@redhat.com> | |
2947 | L: qemu-block@nongnu.org | |
2948 | S: Supported | |
2949 | F: block/blkverify.c | |
2950 | ||
2951 | bochs | |
2952 | M: Stefan Hajnoczi <stefanha@redhat.com> | |
2953 | L: qemu-block@nongnu.org | |
2954 | S: Supported | |
2955 | F: block/bochs.c | |
2956 | ||
2957 | cloop | |
2958 | M: Stefan Hajnoczi <stefanha@redhat.com> | |
2959 | L: qemu-block@nongnu.org | |
2960 | S: Supported | |
2961 | F: block/cloop.c | |
2962 | ||
2963 | dmg | |
2964 | M: Stefan Hajnoczi <stefanha@redhat.com> | |
2965 | L: qemu-block@nongnu.org | |
2966 | S: Supported | |
2967 | F: block/dmg.c | |
2968 | ||
2969 | parallels | |
2970 | M: Stefan Hajnoczi <stefanha@redhat.com> | |
f3073712 | 2971 | M: Denis V. Lunev <den@openvz.org> |
e7c6e631 SH |
2972 | L: qemu-block@nongnu.org |
2973 | S: Supported | |
2974 | F: block/parallels.c | |
5746c1cd | 2975 | F: docs/interop/parallels.txt |
e7c6e631 SH |
2976 | |
2977 | qed | |
2978 | M: Stefan Hajnoczi <stefanha@redhat.com> | |
2979 | L: qemu-block@nongnu.org | |
2980 | S: Supported | |
2981 | F: block/qed.c | |
2982 | ||
2983 | raw | |
2984 | M: Kevin Wolf <kwolf@redhat.com> | |
2985 | L: qemu-block@nongnu.org | |
2986 | S: Supported | |
2987 | F: block/linux-aio.c | |
f586d5fc | 2988 | F: include/block/raw-aio.h |
2e6fc7eb | 2989 | F: block/raw-format.c |
c1bb86cd EB |
2990 | F: block/file-posix.c |
2991 | F: block/file-win32.c | |
e7c6e631 SH |
2992 | F: block/win32-aio.c |
2993 | ||
6663a0a3 AM |
2994 | Linux io_uring |
2995 | M: Aarushi Mehta <mehta.aaru20@gmail.com> | |
2996 | M: Julia Suvorova <jusual@redhat.com> | |
2997 | M: Stefan Hajnoczi <stefanha@redhat.com> | |
2998 | L: qemu-block@nongnu.org | |
2999 | S: Maintained | |
3000 | F: block/io_uring.c | |
06a47ef5 | 3001 | F: stubs/io_uring.c |
6663a0a3 | 3002 | |
e7c6e631 SH |
3003 | qcow2 |
3004 | M: Kevin Wolf <kwolf@redhat.com> | |
c4189d85 | 3005 | M: Max Reitz <mreitz@redhat.com> |
e7c6e631 SH |
3006 | L: qemu-block@nongnu.org |
3007 | S: Supported | |
3008 | F: block/qcow2* | |
b24f9882 | 3009 | F: docs/interop/qcow2.txt |
e7c6e631 SH |
3010 | |
3011 | qcow | |
3012 | M: Kevin Wolf <kwolf@redhat.com> | |
3013 | L: qemu-block@nongnu.org | |
3014 | S: Supported | |
3015 | F: block/qcow.c | |
3016 | ||
3017 | blkdebug | |
3018 | M: Kevin Wolf <kwolf@redhat.com> | |
c4189d85 | 3019 | M: Max Reitz <mreitz@redhat.com> |
e7c6e631 SH |
3020 | L: qemu-block@nongnu.org |
3021 | S: Supported | |
3022 | F: block/blkdebug.c | |
3023 | ||
3024 | vpc | |
3025 | M: Kevin Wolf <kwolf@redhat.com> | |
3026 | L: qemu-block@nongnu.org | |
3027 | S: Supported | |
3028 | F: block/vpc.c | |
3029 | ||
3030 | vvfat | |
3031 | M: Kevin Wolf <kwolf@redhat.com> | |
3032 | L: qemu-block@nongnu.org | |
4b7c5bc4 | 3033 | S: Odd Fixes |
e7c6e631 | 3034 | F: block/vvfat.c |
abfe4e94 SH |
3035 | |
3036 | Image format fuzzer | |
3037 | M: Stefan Hajnoczi <stefanha@redhat.com> | |
3038 | L: qemu-block@nongnu.org | |
3039 | S: Supported | |
3040 | F: tests/image-fuzzer/ | |
717171bd | 3041 | |
049105a3 | 3042 | Replication |
205f8618 | 3043 | M: Wen Congyang <wencongyang2@huawei.com> |
3ccc0a01 | 3044 | M: Xie Changlong <xiechanglong.d@gmail.com> |
049105a3 CX |
3045 | S: Supported |
3046 | F: replication* | |
3047 | F: block/replication.c | |
3048 | F: tests/test-replication.c | |
3049 | F: docs/block-replication.txt | |
3050 | ||
a3defabb | 3051 | PVRDMA |
bfffeac8 | 3052 | M: Yuval Shaia <yuval.shaia.ml@gmail.com> |
fe355cbd | 3053 | M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com> |
a3defabb MA |
3054 | S: Maintained |
3055 | F: hw/rdma/* | |
3056 | F: hw/rdma/vmw/* | |
3057 | F: docs/pvrdma.txt | |
a5d2f6f8 | 3058 | F: contrib/rdmacm-mux/* |
4a5c9903 | 3059 | F: qapi/rdma.json |
a3defabb | 3060 | |
b052fec8 AB |
3061 | Semihosting |
3062 | M: Alex Bennée <alex.bennee@linaro.org> | |
b052fec8 AB |
3063 | S: Maintained |
3064 | F: hw/semihosting/ | |
3065 | F: include/hw/semihosting/ | |
3066 | ||
b9e02c06 AB |
3067 | Build and test automation |
3068 | ------------------------- | |
0475a03e | 3069 | Build and test automation |
b9e02c06 | 3070 | M: Alex Bennée <alex.bennee@linaro.org> |
fe5ca46d | 3071 | M: Fam Zheng <fam@euphon.net> |
0d8ea8f1 | 3072 | R: Philippe Mathieu-Daudé <philmd@redhat.com> |
e70dc7f8 | 3073 | S: Maintained |
20a4f14f | 3074 | F: .github/lockdown.yml |
b9e02c06 | 3075 | F: .travis.yml |
0708e647 | 3076 | F: scripts/travis/ |
d92d886a | 3077 | F: .shippable.yml |
e70dc7f8 | 3078 | F: tests/docker/ |
18023821 | 3079 | F: tests/vm/ |
54dbfd85 | 3080 | F: scripts/archive-source.sh |
e70dc7f8 | 3081 | W: https://travis-ci.org/qemu/qemu |
2a747008 | 3082 | W: https://app.shippable.com/github/qemu/qemu |
e70dc7f8 | 3083 | W: http://patchew.org/QEMU/ |
717171bd | 3084 | |
7162fbb4 EM |
3085 | FreeBSD Hosted Continuous Integration |
3086 | M: Ed Maste <emaste@freebsd.org> | |
3087 | M: Li-Wen Hsu <lwhsu@freebsd.org> | |
7162fbb4 EM |
3088 | S: Maintained |
3089 | F: .cirrus.yml | |
3090 | W: https://cirrus-ci.com/github/qemu/qemu | |
3091 | ||
0a8b05c7 TH |
3092 | GitLab Continuous Integration |
3093 | M: Thomas Huth <thuth@redhat.com> | |
d1d3ba2b TH |
3094 | M: Philippe Mathieu-Daudé <philmd@redhat.com> |
3095 | M: Alex Bennée <alex.bennee@linaro.org> | |
3096 | R: Wainer dos Santos Moschetta <wainersm@redhat.com> | |
0a8b05c7 TH |
3097 | S: Maintained |
3098 | F: .gitlab-ci.yml | |
6bcb5fc0 | 3099 | F: .gitlab-ci.d/crossbuilds.yml |
0a8b05c7 | 3100 | |
7e97017e AB |
3101 | Guest Test Compilation Support |
3102 | M: Alex Bennée <alex.bennee@linaro.org> | |
3103 | R: Philippe Mathieu-Daudé <f4bug@amsat.org> | |
00a25291 | 3104 | S: Maintained |
7e97017e | 3105 | F: tests/tcg/Makefile |
c722a9e4 | 3106 | F: tests/tcg/Makefile.include |
7e97017e | 3107 | |
6634f1c4 PMD |
3108 | Acceptance (Integration) Testing with the Avocado framework |
3109 | W: https://trello.com/b/6Qi1pxVn/avocado-qemu | |
3110 | R: Cleber Rosa <crosa@redhat.com> | |
3111 | R: Philippe Mathieu-Daudé <philmd@redhat.com> | |
3112 | R: Wainer dos Santos Moschetta <wainersm@redhat.com> | |
3113 | S: Odd Fixes | |
3114 | F: tests/acceptance/ | |
3115 | ||
717171bd DB |
3116 | Documentation |
3117 | ------------- | |
3118 | Build system architecture | |
3119 | M: Daniel P. Berrange <berrange@redhat.com> | |
3120 | S: Odd Fixes | |
c39cdbf6 | 3121 | F: docs/devel/build-system.txt |
8a49e97f | 3122 | |
92329a7e AB |
3123 | GIT Data Mining Config |
3124 | M: Alex Bennée <alex.bennee@linaro.org> | |
3125 | S: Odd Fixes | |
3126 | F: gitdm.config | |
3127 | F: contrib/gitdm/* | |
3128 | ||
b02c9bc3 MA |
3129 | Incompatible changes |
3130 | R: libvir-list@redhat.com | |
abcd92db | 3131 | F: docs/system/deprecated.rst |
b02c9bc3 | 3132 | |
aef45d51 DB |
3133 | Build System |
3134 | ------------ | |
3135 | GIT submodules | |
3136 | M: Daniel P. Berrange <berrange@redhat.com> | |
3137 | S: Odd Fixes | |
3138 | F: scripts/git-submodule.sh | |
c10e01b9 | 3139 | |
ef45a392 | 3140 | UI translations |
0eac70b0 | 3141 | M: Aleksandar Markovic <aleksandar.qemu.devel@gmail.com> |
ef45a392 AM |
3142 | F: po/*.po |
3143 | ||
c10e01b9 PM |
3144 | Sphinx documentation configuration and build machinery |
3145 | M: Peter Maydell <peter.maydell@linaro.org> | |
3146 | S: Maintained | |
3147 | F: docs/conf.py | |
3148 | F: docs/*/conf.py | |
53fb8bfb AM |
3149 | |
3150 | Miscellaneous | |
3151 | ------------- | |
3152 | Performance Tools and Tests | |
3153 | M: Ahmed Karaman <ahmedkhaledkaraman@gmail.com> | |
3154 | S: Maintained | |
3155 | F: scripts/performance/ |