MAINTAINERS 92 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011
  1. QEMU Maintainers
  2. ================
  3. The intention of this file is not to establish who owns what portions of the
  4. code base, but to provide a set of names that developers can consult when they
  5. have a question about a particular subset and also to provide a set of names
  6. to be CC'd when submitting a patch to obtain appropriate review.
  7. In general, if you have a question about inclusion of a patch, you should
  8. consult qemu-devel and not any specific individual privately.
  9. Descriptions of section entries:
  10. M: Mail patches to: FullName <address@domain>
  11. Maintainers are looking after a certain area and must be CCed on
  12. patches. They are considered the main contact point.
  13. R: Designated reviewer: FullName <address@domain>
  14. These reviewers should be CCed on patches.
  15. Reviewers are familiar with the subject matter and provide feedback
  16. even though they are not maintainers.
  17. L: Mailing list that is relevant to this area
  18. These lists should be CCed on patches.
  19. W: Web-page with status/info
  20. Q: Patchwork web based patch tracking system site
  21. T: SCM tree type and location. Type is one of: git, hg, quilt, stgit.
  22. S: Status, one of the following (keep in sync with docs/devel/maintainers.rst):
  23. Supported: Someone is actually paid to look after this.
  24. Maintained: Someone actually looks after it.
  25. Odd Fixes: It has a maintainer but they don't have time to do
  26. much other than throw the odd patch in. See below.
  27. Orphan: No current maintainer [but maybe you could take the
  28. role as you write your new code].
  29. Obsolete: Old code. Something tagged obsolete generally means
  30. it has been replaced by a better system and you
  31. should be using that.
  32. F: Files and directories with wildcard patterns.
  33. A trailing slash includes all files and subdirectory files.
  34. F: drivers/net/ all files in and below drivers/net
  35. F: drivers/net/* all files in drivers/net, but not below
  36. F: */net/* all files in "any top level directory"/net
  37. One pattern per line. Multiple F: lines acceptable.
  38. X: Files and directories that are NOT maintained, same rules as F:
  39. Files exclusions are tested before file matches.
  40. Can be useful for excluding a specific subdirectory, for instance:
  41. F: net/
  42. X: net/ipv6/
  43. matches all files in and below net excluding net/ipv6/
  44. K: Keyword perl extended regex pattern to match content in a
  45. patch or file. For instance:
  46. K: of_get_profile
  47. matches patches or files that contain "of_get_profile"
  48. K: \b(printk|pr_(info|err))\b
  49. matches patches or files that contain one or more of the words
  50. printk, pr_info or pr_err
  51. One regex pattern per line. Multiple K: lines acceptable.
  52. General Project Administration
  53. ------------------------------
  54. M: Peter Maydell <peter.maydell@linaro.org>
  55. All patches CC here
  56. L: qemu-devel@nongnu.org
  57. F: *
  58. F: */
  59. Project policy and developer guides
  60. R: Alex Bennée <alex.bennee@linaro.org>
  61. R: Daniel P. Berrangé <berrange@redhat.com>
  62. R: Thomas Huth <thuth@redhat.com>
  63. R: Markus Armbruster <armbru@redhat.com>
  64. R: Philippe Mathieu-Daudé <philmd@linaro.org>
  65. R: Juan Quintela <quintela@redhat.com>
  66. W: https://www.qemu.org/docs/master/devel/index.html
  67. S: Odd Fixes
  68. F: docs/devel/style.rst
  69. F: docs/devel/code-of-conduct.rst
  70. F: docs/devel/conflict-resolution.rst
  71. F: docs/devel/submitting-a-patch.rst
  72. F: docs/devel/submitting-a-pull-request.rst
  73. Responsible Disclosure, Reporting Security Issues
  74. -------------------------------------------------
  75. W: https://wiki.qemu.org/SecurityProcess
  76. M: Michael S. Tsirkin <mst@redhat.com>
  77. L: secalert@redhat.com
  78. Trivial patches
  79. ---------------
  80. Trivial patches
  81. M: Michael Tokarev <mjt@tls.msk.ru>
  82. M: Laurent Vivier <laurent@vivier.eu>
  83. S: Maintained
  84. L: qemu-trivial@nongnu.org
  85. K: ^Subject:.*(?i)trivial
  86. F: docs/devel/trivial-patches.rst
  87. T: git git://git.corpit.ru/qemu.git trivial-patches
  88. T: git https://github.com/vivier/qemu.git trivial-patches
  89. Architecture support
  90. --------------------
  91. S390 general architecture support
  92. M: Thomas Huth <thuth@redhat.com>
  93. S: Supported
  94. F: configs/devices/s390x-softmmu/default.mak
  95. F: gdb-xml/s390*.xml
  96. F: hw/char/sclp*.[hc]
  97. F: hw/char/terminal3270.c
  98. F: hw/intc/s390_flic.c
  99. F: hw/intc/s390_flic_kvm.c
  100. F: hw/s390x/
  101. F: hw/vfio/ap.c
  102. F: hw/vfio/ccw.c
  103. F: hw/watchdog/wdt_diag288.c
  104. F: include/hw/s390x/
  105. F: include/hw/watchdog/wdt_diag288.h
  106. F: pc-bios/s390-ccw/
  107. F: pc-bios/s390-ccw.img
  108. F: target/s390x/
  109. F: docs/system/target-s390x.rst
  110. F: docs/system/s390x/
  111. F: tests/migration/s390x/
  112. K: ^Subject:.*(?i)s390x?
  113. L: qemu-s390x@nongnu.org
  114. MIPS general architecture support
  115. M: Philippe Mathieu-Daudé <philmd@linaro.org>
  116. R: Jiaxun Yang <jiaxun.yang@flygoat.com>
  117. S: Odd Fixes
  118. K: ^Subject:.*(?i)mips
  119. F: docs/system/target-mips.rst
  120. F: configs/targets/mips*
  121. Guest CPU cores (TCG)
  122. ---------------------
  123. Overall TCG CPUs
  124. M: Richard Henderson <richard.henderson@linaro.org>
  125. R: Paolo Bonzini <pbonzini@redhat.com>
  126. S: Maintained
  127. F: softmmu/cpus.c
  128. F: softmmu/watchpoint.c
  129. F: cpus-common.c
  130. F: page-vary.c
  131. F: page-vary-common.c
  132. F: accel/tcg/
  133. F: accel/stubs/tcg-stub.c
  134. F: util/cacheinfo.c
  135. F: util/cacheflush.c
  136. F: scripts/decodetree.py
  137. F: docs/devel/decodetree.rst
  138. F: docs/devel/tcg*
  139. F: include/exec/cpu*.h
  140. F: include/exec/exec-all.h
  141. F: include/exec/tb-flush.h
  142. F: include/exec/target_long.h
  143. F: include/exec/helper*.h
  144. F: include/exec/helper*.h.inc
  145. F: include/exec/helper-info.c.inc
  146. F: include/sysemu/cpus.h
  147. F: include/sysemu/tcg.h
  148. F: include/hw/core/tcg-cpu-ops.h
  149. F: host/include/*/host/cpuinfo.h
  150. F: util/cpuinfo-*.c
  151. F: include/tcg/
  152. FPU emulation
  153. M: Aurelien Jarno <aurelien@aurel32.net>
  154. M: Peter Maydell <peter.maydell@linaro.org>
  155. M: Alex Bennée <alex.bennee@linaro.org>
  156. S: Maintained
  157. F: fpu/
  158. F: include/fpu/
  159. F: tests/fp/
  160. Alpha TCG CPUs
  161. M: Richard Henderson <richard.henderson@linaro.org>
  162. S: Maintained
  163. F: target/alpha/
  164. F: tests/tcg/alpha/
  165. F: disas/alpha.c
  166. ARM TCG CPUs
  167. M: Peter Maydell <peter.maydell@linaro.org>
  168. L: qemu-arm@nongnu.org
  169. S: Maintained
  170. F: target/arm/
  171. F: target/arm/tcg/
  172. F: tests/tcg/arm/
  173. F: tests/tcg/aarch64/
  174. F: tests/qtest/arm-cpu-features.c
  175. F: hw/arm/
  176. F: hw/cpu/a*mpcore.c
  177. F: include/hw/cpu/a*mpcore.h
  178. F: docs/system/target-arm.rst
  179. F: docs/system/arm/cpu-features.rst
  180. ARM SMMU
  181. M: Eric Auger <eric.auger@redhat.com>
  182. L: qemu-arm@nongnu.org
  183. S: Maintained
  184. F: hw/arm/smmu*
  185. F: include/hw/arm/smmu*
  186. F: tests/avocado/smmu.py
  187. AVR TCG CPUs
  188. M: Michael Rolnik <mrolnik@gmail.com>
  189. S: Maintained
  190. F: docs/system/target-avr.rst
  191. F: gdb-xml/avr-cpu.xml
  192. F: target/avr/
  193. F: tests/avocado/machine_avr6.py
  194. CRIS TCG CPUs
  195. M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
  196. S: Maintained
  197. F: target/cris/
  198. F: hw/cris/
  199. F: include/hw/cris/
  200. F: tests/tcg/cris/
  201. F: disas/cris.c
  202. Hexagon TCG CPUs
  203. M: Brian Cain <bcain@quicinc.com>
  204. S: Supported
  205. F: target/hexagon/
  206. X: target/hexagon/idef-parser/
  207. X: target/hexagon/gen_idef_parser_funcs.py
  208. F: linux-user/hexagon/
  209. F: tests/tcg/hexagon/
  210. F: disas/hexagon.c
  211. F: configs/targets/hexagon-linux-user/default.mak
  212. F: docker/dockerfiles/debian-hexagon-cross.docker
  213. F: gdb-xml/hexagon*.xml
  214. Hexagon idef-parser
  215. M: Alessandro Di Federico <ale@rev.ng>
  216. M: Anton Johansson <anjo@rev.ng>
  217. S: Supported
  218. F: target/hexagon/idef-parser/
  219. F: target/hexagon/gen_idef_parser_funcs.py
  220. HPPA (PA-RISC) TCG CPUs
  221. M: Richard Henderson <richard.henderson@linaro.org>
  222. S: Maintained
  223. F: target/hppa/
  224. F: disas/hppa.c
  225. LoongArch TCG CPUs
  226. M: Song Gao <gaosong@loongson.cn>
  227. M: Xiaojuan Yang <yangxiaojuan@loongson.cn>
  228. S: Maintained
  229. F: target/loongarch/
  230. F: tests/tcg/loongarch64/
  231. F: tests/avocado/machine_loongarch.py
  232. M68K TCG CPUs
  233. M: Laurent Vivier <laurent@vivier.eu>
  234. S: Maintained
  235. F: target/m68k/
  236. F: disas/m68k.c
  237. MicroBlaze TCG CPUs
  238. M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
  239. S: Maintained
  240. F: target/microblaze/
  241. F: hw/microblaze/
  242. F: disas/microblaze.c
  243. F: tests/docker/dockerfiles/debian-microblaze-cross.d/build-toolchain.sh
  244. MIPS TCG CPUs
  245. M: Philippe Mathieu-Daudé <philmd@linaro.org>
  246. R: Aurelien Jarno <aurelien@aurel32.net>
  247. R: Jiaxun Yang <jiaxun.yang@flygoat.com>
  248. R: Aleksandar Rikalo <aleksandar.rikalo@syrmia.com>
  249. S: Odd Fixes
  250. F: target/mips/
  251. F: disas/*mips.c
  252. F: docs/system/cpu-models-mips.rst.inc
  253. F: tests/tcg/mips/
  254. NiosII TCG CPUs
  255. R: Chris Wulff <crwulff@gmail.com>
  256. R: Marek Vasut <marex@denx.de>
  257. S: Orphan
  258. F: target/nios2/
  259. F: hw/nios2/
  260. F: disas/nios2.c
  261. F: configs/devices/nios2-softmmu/default.mak
  262. F: tests/docker/dockerfiles/debian-nios2-cross.d/build-toolchain.sh
  263. F: tests/tcg/nios2/
  264. OpenRISC TCG CPUs
  265. M: Stafford Horne <shorne@gmail.com>
  266. S: Odd Fixes
  267. F: docs/system/openrisc/cpu-features.rst
  268. F: target/openrisc/
  269. F: hw/openrisc/
  270. F: tests/tcg/openrisc/
  271. PowerPC TCG CPUs
  272. M: Daniel Henrique Barboza <danielhb413@gmail.com>
  273. R: Cédric Le Goater <clg@kaod.org>
  274. R: David Gibson <david@gibson.dropbear.id.au>
  275. R: Greg Kurz <groug@kaod.org>
  276. R: Nicholas Piggin <npiggin@gmail.com>
  277. L: qemu-ppc@nongnu.org
  278. S: Odd Fixes
  279. F: target/ppc/
  280. F: hw/ppc/ppc.c
  281. F: hw/ppc/ppc_booke.c
  282. F: include/hw/ppc/ppc.h
  283. RISC-V TCG CPUs
  284. M: Palmer Dabbelt <palmer@dabbelt.com>
  285. M: Alistair Francis <alistair.francis@wdc.com>
  286. M: Bin Meng <bin.meng@windriver.com>
  287. R: Weiwei Li <liweiwei@iscas.ac.cn>
  288. R: Daniel Henrique Barboza <dbarboza@ventanamicro.com>
  289. R: Liu Zhiwei <zhiwei_liu@linux.alibaba.com>
  290. L: qemu-riscv@nongnu.org
  291. S: Supported
  292. F: target/riscv/
  293. F: hw/riscv/
  294. F: include/hw/riscv/
  295. F: linux-user/host/riscv32/
  296. F: linux-user/host/riscv64/
  297. RISC-V XThead* extensions
  298. M: Christoph Muellner <christoph.muellner@vrull.eu>
  299. M: LIU Zhiwei <zhiwei_liu@linux.alibaba.com>
  300. L: qemu-riscv@nongnu.org
  301. S: Supported
  302. F: target/riscv/insn_trans/trans_xthead.c.inc
  303. F: target/riscv/xthead*.decode
  304. RISC-V XVentanaCondOps extension
  305. M: Philipp Tomsich <philipp.tomsich@vrull.eu>
  306. L: qemu-riscv@nongnu.org
  307. S: Maintained
  308. F: target/riscv/XVentanaCondOps.decode
  309. F: target/riscv/insn_trans/trans_xventanacondops.c.inc
  310. RENESAS RX CPUs
  311. R: Yoshinori Sato <ysato@users.sourceforge.jp>
  312. S: Orphan
  313. F: target/rx/
  314. S390 TCG CPUs
  315. M: Richard Henderson <richard.henderson@linaro.org>
  316. M: David Hildenbrand <david@redhat.com>
  317. R: Ilya Leoshkevich <iii@linux.ibm.com>
  318. S: Maintained
  319. F: target/s390x/
  320. F: target/s390x/tcg
  321. F: hw/s390x/
  322. F: tests/tcg/s390x/
  323. L: qemu-s390x@nongnu.org
  324. SH4 TCG CPUs
  325. R: Yoshinori Sato <ysato@users.sourceforge.jp>
  326. S: Orphan
  327. F: target/sh4/
  328. F: hw/sh4/
  329. F: disas/sh4.c
  330. F: include/hw/sh4/
  331. SPARC TCG CPUs
  332. M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
  333. M: Artyom Tarasenko <atar4qemu@gmail.com>
  334. S: Maintained
  335. F: target/sparc/
  336. F: hw/sparc/
  337. F: hw/sparc64/
  338. F: include/hw/sparc/sparc64.h
  339. F: disas/sparc.c
  340. X86 TCG CPUs
  341. M: Paolo Bonzini <pbonzini@redhat.com>
  342. M: Richard Henderson <richard.henderson@linaro.org>
  343. M: Eduardo Habkost <eduardo@habkost.net>
  344. S: Maintained
  345. F: target/i386/tcg/
  346. F: tests/tcg/i386/
  347. F: tests/tcg/x86_64/
  348. F: hw/i386/
  349. F: docs/system/i386/cpu.rst
  350. F: docs/system/cpu-models-x86*
  351. T: git https://gitlab.com/ehabkost/qemu.git x86-next
  352. Xtensa TCG CPUs
  353. M: Max Filippov <jcmvbkbc@gmail.com>
  354. W: http://wiki.osll.ru/doku.php?id=etc:users:jcmvbkbc:qemu-target-xtensa
  355. S: Maintained
  356. F: target/xtensa/
  357. F: hw/xtensa/
  358. F: tests/tcg/xtensa/
  359. F: tests/tcg/xtensaeb/
  360. F: disas/xtensa.c
  361. F: include/hw/xtensa/xtensa-isa.h
  362. F: configs/devices/xtensa*/default.mak
  363. TriCore TCG CPUs
  364. M: Bastian Koppelmann <kbastian@mail.uni-paderborn.de>
  365. S: Maintained
  366. F: target/tricore/
  367. F: hw/tricore/
  368. F: include/hw/tricore/
  369. F: tests/tcg/tricore/
  370. Multiarch Linux User Tests
  371. M: Alex Bennée <alex.bennee@linaro.org>
  372. S: Maintained
  373. F: tests/tcg/multiarch/
  374. Guest CPU Cores (KVM)
  375. ---------------------
  376. Overall KVM CPUs
  377. M: Paolo Bonzini <pbonzini@redhat.com>
  378. L: kvm@vger.kernel.org
  379. S: Supported
  380. F: */*/kvm*
  381. F: accel/kvm/
  382. F: accel/stubs/kvm-stub.c
  383. F: include/hw/kvm/
  384. F: include/sysemu/kvm*.h
  385. F: scripts/kvm/kvm_flightrecorder
  386. ARM KVM CPUs
  387. M: Peter Maydell <peter.maydell@linaro.org>
  388. L: qemu-arm@nongnu.org
  389. S: Maintained
  390. F: target/arm/kvm.c
  391. MIPS KVM CPUs
  392. M: Huacai Chen <chenhuacai@kernel.org>
  393. S: Odd Fixes
  394. F: target/mips/kvm*
  395. F: target/mips/sysemu/
  396. PPC KVM CPUs
  397. M: Daniel Henrique Barboza <danielhb413@gmail.com>
  398. R: Cédric Le Goater <clg@kaod.org>
  399. R: David Gibson <david@gibson.dropbear.id.au>
  400. R: Greg Kurz <groug@kaod.org>
  401. S: Odd Fixes
  402. F: target/ppc/kvm.c
  403. S390 KVM CPUs
  404. M: Halil Pasic <pasic@linux.ibm.com>
  405. M: Christian Borntraeger <borntraeger@linux.ibm.com>
  406. S: Supported
  407. F: target/s390x/kvm/
  408. F: target/s390x/machine.c
  409. F: target/s390x/sigp.c
  410. F: gdb-xml/s390*.xml
  411. T: git https://github.com/borntraeger/qemu.git s390-next
  412. L: qemu-s390x@nongnu.org
  413. X86 KVM CPUs
  414. M: Paolo Bonzini <pbonzini@redhat.com>
  415. M: Marcelo Tosatti <mtosatti@redhat.com>
  416. L: kvm@vger.kernel.org
  417. S: Supported
  418. F: docs/system/i386/amd-memory-encryption.rst
  419. F: docs/system/i386/sgx.rst
  420. F: target/i386/kvm/
  421. F: target/i386/sev*
  422. F: scripts/kvm/vmxcap
  423. Xen emulation on X86 KVM CPUs
  424. M: David Woodhouse <dwmw2@infradead.org>
  425. M: Paul Durrant <paul@xen.org>
  426. S: Supported
  427. F: include/sysemu/kvm_xen.h
  428. F: target/i386/kvm/xen*
  429. F: hw/i386/kvm/xen*
  430. F: tests/avocado/xen_guest.py
  431. Guest CPU Cores (other accelerators)
  432. ------------------------------------
  433. Overall
  434. M: Richard Henderson <richard.henderson@linaro.org>
  435. R: Paolo Bonzini <pbonzini@redhat.com>
  436. S: Maintained
  437. F: include/qemu/accel.h
  438. F: include/sysemu/accel-*.h
  439. F: include/hw/core/accel-cpu.h
  440. F: accel/accel-*.c
  441. F: accel/Makefile.objs
  442. F: accel/stubs/Makefile.objs
  443. Apple Silicon HVF CPUs
  444. M: Alexander Graf <agraf@csgraf.de>
  445. S: Maintained
  446. F: target/arm/hvf/
  447. X86 HVF CPUs
  448. M: Cameron Esfahani <dirty@apple.com>
  449. M: Roman Bolshakov <rbolshakov@ddn.com>
  450. W: https://wiki.qemu.org/Features/HVF
  451. S: Maintained
  452. F: target/i386/hvf/
  453. HVF
  454. M: Cameron Esfahani <dirty@apple.com>
  455. M: Roman Bolshakov <rbolshakov@ddn.com>
  456. W: https://wiki.qemu.org/Features/HVF
  457. S: Maintained
  458. F: accel/hvf/
  459. F: include/sysemu/hvf.h
  460. F: include/sysemu/hvf_int.h
  461. WHPX CPUs
  462. M: Sunil Muthuswamy <sunilmut@microsoft.com>
  463. S: Supported
  464. F: target/i386/whpx/
  465. F: include/sysemu/whpx.h
  466. Guest CPU Cores (Xen)
  467. ---------------------
  468. X86 Xen CPUs
  469. M: Stefano Stabellini <sstabellini@kernel.org>
  470. M: Anthony Perard <anthony.perard@citrix.com>
  471. M: Paul Durrant <paul@xen.org>
  472. L: xen-devel@lists.xenproject.org
  473. S: Supported
  474. F: */xen*
  475. F: accel/xen/*
  476. F: hw/9pfs/xen-9p*
  477. F: hw/char/xen_console.c
  478. F: hw/display/xenfb.c
  479. F: hw/net/xen_nic.c
  480. F: hw/usb/xen-usb.c
  481. F: hw/block/xen*
  482. F: hw/block/dataplane/xen*
  483. F: hw/xen/
  484. F: hw/xenpv/
  485. F: hw/i386/xen/
  486. F: hw/pci-host/xen_igd_pt.c
  487. F: include/hw/block/dataplane/xen*
  488. F: include/hw/xen/
  489. F: include/sysemu/xen.h
  490. F: include/sysemu/xen-mapcache.h
  491. F: stubs/xen-hw-stub.c
  492. Guest CPU Cores (NVMM)
  493. ----------------------
  494. NetBSD Virtual Machine Monitor (NVMM) CPU support
  495. M: Reinoud Zandijk <reinoud@netbsd.org>
  496. S: Maintained
  497. F: include/sysemu/nvmm.h
  498. F: target/i386/nvmm/
  499. Hosts
  500. -----
  501. LINUX
  502. M: Michael S. Tsirkin <mst@redhat.com>
  503. M: Cornelia Huck <cohuck@redhat.com>
  504. M: Paolo Bonzini <pbonzini@redhat.com>
  505. S: Maintained
  506. F: linux-headers/
  507. F: scripts/update-linux-headers.sh
  508. POSIX
  509. M: Paolo Bonzini <pbonzini@redhat.com>
  510. S: Maintained
  511. F: os-posix.c
  512. F: include/sysemu/os-posix.h
  513. F: util/*posix*.c
  514. F: include/qemu/*posix*.h
  515. NETBSD
  516. M: Reinoud Zandijk <reinoud@netbsd.org>
  517. M: Ryo ONODERA <ryoon@netbsd.org>
  518. S: Maintained
  519. K: ^Subject:.*(?i)NetBSD
  520. OPENBSD
  521. M: Brad Smith <brad@comstyle.com>
  522. S: Maintained
  523. K: ^Subject:.*(?i)OpenBSD
  524. W32, W64
  525. M: Stefan Weil <sw@weilnetz.de>
  526. S: Maintained
  527. F: *win32*
  528. F: */*win32*
  529. F: include/*/*win32*
  530. X: qga/*win32*
  531. F: qemu.nsi
  532. F: scripts/nsis.py
  533. Darwin (macOS, iOS)
  534. M: Philippe Mathieu-Daudé <philmd@linaro.org>
  535. S: Odd Fixes
  536. F: .gitlab-ci.d/cirrus/macos-*
  537. F: */*.m
  538. F: scripts/entitlement.sh
  539. Alpha Machines
  540. --------------
  541. M: Richard Henderson <richard.henderson@linaro.org>
  542. S: Maintained
  543. F: hw/alpha/
  544. F: hw/isa/smc37c669-superio.c
  545. F: tests/tcg/alpha/system/
  546. ARM Machines
  547. ------------
  548. Allwinner-a10
  549. M: Beniamino Galvani <b.galvani@gmail.com>
  550. M: Peter Maydell <peter.maydell@linaro.org>
  551. R: Strahinja Jankovic <strahinja.p.jankovic@gmail.com>
  552. L: qemu-arm@nongnu.org
  553. S: Odd Fixes
  554. F: hw/*/allwinner*
  555. F: include/hw/*/allwinner*
  556. F: hw/arm/cubieboard.c
  557. F: docs/system/arm/cubieboard.rst
  558. F: hw/misc/axp209.c
  559. Allwinner-h3
  560. M: Niek Linnenbank <nieklinnenbank@gmail.com>
  561. L: qemu-arm@nongnu.org
  562. S: Maintained
  563. F: hw/*/allwinner-h3*
  564. F: include/hw/*/allwinner-h3*
  565. F: hw/arm/orangepi.c
  566. F: docs/system/arm/orangepi.rst
  567. ARM PrimeCell and CMSDK devices
  568. M: Peter Maydell <peter.maydell@linaro.org>
  569. L: qemu-arm@nongnu.org
  570. S: Maintained
  571. F: hw/char/pl011.c
  572. F: include/hw/char/pl011.h
  573. F: hw/display/pl110*
  574. F: hw/dma/pl080.c
  575. F: include/hw/dma/pl080.h
  576. F: hw/dma/pl330.c
  577. F: hw/gpio/pl061.c
  578. F: hw/input/pl050.c
  579. F: hw/intc/pl190.c
  580. F: hw/sd/pl181.c
  581. F: hw/ssi/pl022.c
  582. F: include/hw/ssi/pl022.h
  583. F: hw/rtc/pl031.c
  584. F: include/hw/rtc/pl031.h
  585. F: include/hw/arm/primecell.h
  586. F: hw/timer/cmsdk-apb-timer.c
  587. F: include/hw/timer/cmsdk-apb-timer.h
  588. F: tests/qtest/cmsdk-apb-timer-test.c
  589. F: hw/timer/cmsdk-apb-dualtimer.c
  590. F: include/hw/timer/cmsdk-apb-dualtimer.h
  591. F: tests/qtest/cmsdk-apb-dualtimer-test.c
  592. F: hw/char/cmsdk-apb-uart.c
  593. F: include/hw/char/cmsdk-apb-uart.h
  594. F: hw/watchdog/cmsdk-apb-watchdog.c
  595. F: include/hw/watchdog/cmsdk-apb-watchdog.h
  596. F: tests/qtest/cmsdk-apb-watchdog-test.c
  597. F: hw/misc/tz-ppc.c
  598. F: include/hw/misc/tz-ppc.h
  599. F: hw/misc/tz-mpc.c
  600. F: include/hw/misc/tz-mpc.h
  601. F: hw/misc/tz-msc.c
  602. F: include/hw/misc/tz-msc.h
  603. ARM cores
  604. M: Peter Maydell <peter.maydell@linaro.org>
  605. L: qemu-arm@nongnu.org
  606. S: Maintained
  607. F: hw/intc/arm*
  608. F: hw/intc/gic_internal.h
  609. F: hw/misc/a9scu.c
  610. F: hw/misc/arm11scu.c
  611. F: hw/misc/arm_l2x0.c
  612. F: hw/misc/armv7m_ras.c
  613. F: hw/timer/a9gtimer*
  614. F: hw/timer/arm*
  615. F: include/hw/arm/arm*.h
  616. F: include/hw/intc/arm*
  617. F: include/hw/misc/a9scu.h
  618. F: include/hw/misc/arm11scu.h
  619. F: include/hw/timer/a9gtimer.h
  620. F: include/hw/timer/arm_mptimer.h
  621. F: include/hw/timer/armv7m_systick.h
  622. F: include/hw/misc/armv7m_ras.h
  623. F: tests/qtest/test-arm-mptimer.c
  624. Exynos
  625. M: Igor Mitsyanko <i.mitsyanko@gmail.com>
  626. M: Peter Maydell <peter.maydell@linaro.org>
  627. L: qemu-arm@nongnu.org
  628. S: Odd Fixes
  629. F: hw/*/exynos*
  630. F: include/hw/*/exynos*
  631. Calxeda Highbank
  632. M: Rob Herring <robh@kernel.org>
  633. M: Peter Maydell <peter.maydell@linaro.org>
  634. L: qemu-arm@nongnu.org
  635. S: Odd Fixes
  636. F: hw/arm/highbank.c
  637. F: hw/net/xgmac.c
  638. F: docs/system/arm/highbank.rst
  639. Canon DIGIC
  640. M: Antony Pavlov <antonynpavlov@gmail.com>
  641. M: Peter Maydell <peter.maydell@linaro.org>
  642. L: qemu-arm@nongnu.org
  643. S: Odd Fixes
  644. F: include/hw/arm/digic.h
  645. F: hw/*/digic*
  646. F: include/hw/*/digic*
  647. F: tests/avocado/machine_arm_canona1100.py
  648. F: docs/system/arm/digic.rst
  649. Goldfish RTC
  650. M: Anup Patel <anup.patel@wdc.com>
  651. M: Alistair Francis <Alistair.Francis@wdc.com>
  652. L: qemu-riscv@nongnu.org
  653. S: Maintained
  654. F: hw/rtc/goldfish_rtc.c
  655. F: include/hw/rtc/goldfish_rtc.h
  656. Gumstix
  657. M: Peter Maydell <peter.maydell@linaro.org>
  658. R: Philippe Mathieu-Daudé <philmd@linaro.org>
  659. L: qemu-arm@nongnu.org
  660. S: Odd Fixes
  661. F: hw/arm/gumstix.c
  662. F: docs/system/arm/gumstix.rst
  663. i.MX25 PDK
  664. M: Peter Maydell <peter.maydell@linaro.org>
  665. R: Jean-Christophe Dubois <jcd@tribudubois.net>
  666. L: qemu-arm@nongnu.org
  667. S: Odd Fixes
  668. F: hw/arm/fsl-imx25.c
  669. F: hw/arm/imx25_pdk.c
  670. F: hw/misc/imx25_ccm.c
  671. F: hw/watchdog/wdt_imx2.c
  672. F: include/hw/arm/fsl-imx25.h
  673. F: include/hw/misc/imx25_ccm.h
  674. F: include/hw/watchdog/wdt_imx2.h
  675. F: docs/system/arm/imx25-pdk.rst
  676. i.MX31 (kzm)
  677. M: Peter Maydell <peter.maydell@linaro.org>
  678. L: qemu-arm@nongnu.org
  679. S: Odd Fixes
  680. F: hw/arm/kzm.c
  681. F: hw/*/imx_*
  682. F: hw/*/*imx31*
  683. F: include/hw/*/imx_*
  684. F: include/hw/*/*imx31*
  685. F: docs/system/arm/kzm.rst
  686. Integrator CP
  687. M: Peter Maydell <peter.maydell@linaro.org>
  688. L: qemu-arm@nongnu.org
  689. S: Maintained
  690. F: hw/arm/integratorcp.c
  691. F: hw/misc/arm_integrator_debug.c
  692. F: include/hw/misc/arm_integrator_debug.h
  693. F: tests/avocado/machine_arm_integratorcp.py
  694. F: docs/system/arm/integratorcp.rst
  695. MCIMX6UL EVK / i.MX6ul
  696. M: Peter Maydell <peter.maydell@linaro.org>
  697. R: Jean-Christophe Dubois <jcd@tribudubois.net>
  698. L: qemu-arm@nongnu.org
  699. S: Odd Fixes
  700. F: hw/arm/mcimx6ul-evk.c
  701. F: hw/arm/fsl-imx6ul.c
  702. F: hw/misc/imx6ul_ccm.c
  703. F: include/hw/arm/fsl-imx6ul.h
  704. F: include/hw/misc/imx6ul_ccm.h
  705. MCIMX7D SABRE / i.MX7
  706. M: Peter Maydell <peter.maydell@linaro.org>
  707. R: Andrey Smirnov <andrew.smirnov@gmail.com>
  708. L: qemu-arm@nongnu.org
  709. S: Odd Fixes
  710. F: hw/arm/mcimx7d-sabre.c
  711. F: hw/arm/fsl-imx7.c
  712. F: hw/misc/imx7_*.c
  713. F: include/hw/arm/fsl-imx7.h
  714. F: include/hw/misc/imx7_*.h
  715. F: hw/pci-host/designware.c
  716. F: include/hw/pci-host/designware.h
  717. MPS2
  718. M: Peter Maydell <peter.maydell@linaro.org>
  719. L: qemu-arm@nongnu.org
  720. S: Maintained
  721. F: hw/arm/mps2.c
  722. F: hw/arm/mps2-tz.c
  723. F: hw/misc/mps2-*.c
  724. F: include/hw/misc/mps2-*.h
  725. F: hw/arm/armsse.c
  726. F: include/hw/arm/armsse.h
  727. F: hw/misc/iotkit-secctl.c
  728. F: include/hw/misc/iotkit-secctl.h
  729. F: hw/misc/iotkit-sysctl.c
  730. F: include/hw/misc/iotkit-sysctl.h
  731. F: hw/misc/iotkit-sysinfo.c
  732. F: include/hw/misc/iotkit-sysinfo.h
  733. F: hw/misc/armsse-cpu-pwrctrl.c
  734. F: include/hw/misc/armsse-cpu-pwrctrl.h
  735. F: hw/misc/armsse-cpuid.c
  736. F: include/hw/misc/armsse-cpuid.h
  737. F: hw/misc/armsse-mhu.c
  738. F: include/hw/misc/armsse-mhu.h
  739. F: hw/timer/sse-counter.c
  740. F: include/hw/timer/sse-counter.h
  741. F: hw/timer/sse-timer.c
  742. F: include/hw/timer/sse-timer.h
  743. F: tests/qtest/sse-timer-test.c
  744. F: docs/system/arm/mps2.rst
  745. Musca
  746. M: Peter Maydell <peter.maydell@linaro.org>
  747. L: qemu-arm@nongnu.org
  748. S: Maintained
  749. F: hw/arm/musca.c
  750. F: docs/system/arm/musca.rst
  751. Musicpal
  752. M: Jan Kiszka <jan.kiszka@web.de>
  753. M: Peter Maydell <peter.maydell@linaro.org>
  754. L: qemu-arm@nongnu.org
  755. S: Odd Fixes
  756. F: hw/arm/musicpal.c
  757. F: hw/net/mv88w8618_eth.c
  758. F: include/hw/net/mv88w8618_eth.h
  759. F: docs/system/arm/musicpal.rst
  760. Nuvoton NPCM7xx
  761. M: Tyrone Ting <kfting@nuvoton.com>
  762. M: Hao Wu <wuhaotsh@google.com>
  763. L: qemu-arm@nongnu.org
  764. S: Supported
  765. F: hw/*/npcm*
  766. F: include/hw/*/npcm*
  767. F: tests/qtest/npcm*
  768. F: pc-bios/npcm7xx_bootrom.bin
  769. F: roms/vbootrom
  770. F: docs/system/arm/nuvoton.rst
  771. nSeries
  772. M: Peter Maydell <peter.maydell@linaro.org>
  773. L: qemu-arm@nongnu.org
  774. S: Odd Fixes
  775. F: hw/arm/nseries.c
  776. F: hw/display/blizzard.c
  777. F: hw/input/lm832x.c
  778. F: hw/input/tsc2005.c
  779. F: hw/misc/cbus.c
  780. F: hw/rtc/twl92230.c
  781. F: include/hw/display/blizzard.h
  782. F: include/hw/input/lm832x.h
  783. F: include/hw/input/tsc2xxx.h
  784. F: include/hw/misc/cbus.h
  785. F: tests/avocado/machine_arm_n8x0.py
  786. F: docs/system/arm/nseries.rst
  787. Palm
  788. M: Peter Maydell <peter.maydell@linaro.org>
  789. L: qemu-arm@nongnu.org
  790. S: Odd Fixes
  791. F: hw/arm/palm.c
  792. F: hw/input/tsc210x.c
  793. F: include/hw/input/tsc2xxx.h
  794. F: docs/system/arm/palm.rst
  795. Raspberry Pi
  796. M: Peter Maydell <peter.maydell@linaro.org>
  797. R: Philippe Mathieu-Daudé <philmd@linaro.org>
  798. L: qemu-arm@nongnu.org
  799. S: Odd Fixes
  800. F: hw/arm/raspi.c
  801. F: hw/arm/raspi_platform.h
  802. F: hw/*/bcm283*
  803. F: include/hw/arm/raspi*
  804. F: include/hw/*/bcm283*
  805. F: docs/system/arm/raspi.rst
  806. Real View
  807. M: Peter Maydell <peter.maydell@linaro.org>
  808. L: qemu-arm@nongnu.org
  809. S: Maintained
  810. F: hw/arm/realview*
  811. F: hw/cpu/realview_mpcore.c
  812. F: hw/intc/realview_gic.c
  813. F: include/hw/intc/realview_gic.h
  814. F: docs/system/arm/realview.rst
  815. PXA2XX
  816. M: Peter Maydell <peter.maydell@linaro.org>
  817. L: qemu-arm@nongnu.org
  818. S: Odd Fixes
  819. F: hw/arm/mainstone.c
  820. F: hw/arm/spitz.c
  821. F: hw/arm/tosa.c
  822. F: hw/arm/z2.c
  823. F: hw/*/pxa2xx*
  824. F: hw/display/tc6393xb.c
  825. F: hw/gpio/max7310.c
  826. F: hw/gpio/zaurus.c
  827. F: hw/misc/mst_fpga.c
  828. F: hw/adc/max111x.c
  829. F: include/hw/adc/max111x.h
  830. F: include/hw/arm/pxa.h
  831. F: include/hw/arm/sharpsl.h
  832. F: include/hw/display/tc6393xb.h
  833. F: docs/system/arm/xscale.rst
  834. F: docs/system/arm/mainstone.rst
  835. SABRELITE / i.MX6
  836. M: Peter Maydell <peter.maydell@linaro.org>
  837. R: Jean-Christophe Dubois <jcd@tribudubois.net>
  838. L: qemu-arm@nongnu.org
  839. S: Odd Fixes
  840. F: docs/system/arm/sabrelite.rst
  841. F: hw/arm/sabrelite.c
  842. F: hw/arm/fsl-imx6.c
  843. F: hw/misc/imx6_*.c
  844. F: hw/ssi/imx_spi.c
  845. F: hw/usb/imx-usb-phy.c
  846. F: include/hw/usb/imx-usb-phy.h
  847. F: include/hw/arm/fsl-imx6.h
  848. F: include/hw/misc/imx6_*.h
  849. F: include/hw/ssi/imx_spi.h
  850. SBSA-REF
  851. M: Radoslaw Biernacki <rad@semihalf.com>
  852. M: Peter Maydell <peter.maydell@linaro.org>
  853. R: Leif Lindholm <quic_llindhol@quicinc.com>
  854. R: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org>
  855. L: qemu-arm@nongnu.org
  856. S: Maintained
  857. F: hw/arm/sbsa-ref.c
  858. F: docs/system/arm/sbsa.rst
  859. F: tests/avocado/machine_aarch64_sbsaref.py
  860. Sharp SL-5500 (Collie) PDA
  861. M: Peter Maydell <peter.maydell@linaro.org>
  862. L: qemu-arm@nongnu.org
  863. S: Odd Fixes
  864. F: hw/arm/collie.c
  865. F: hw/arm/strongarm*
  866. F: docs/system/arm/collie.rst
  867. Stellaris
  868. M: Peter Maydell <peter.maydell@linaro.org>
  869. L: qemu-arm@nongnu.org
  870. S: Maintained
  871. F: hw/*/stellaris*
  872. F: include/hw/input/gamepad.h
  873. F: docs/system/arm/stellaris.rst
  874. STM32VLDISCOVERY
  875. M: Alexandre Iooss <erdnaxe@crans.org>
  876. L: qemu-arm@nongnu.org
  877. S: Maintained
  878. F: hw/arm/stm32vldiscovery.c
  879. F: docs/system/arm/stm32.rst
  880. Versatile Express
  881. M: Peter Maydell <peter.maydell@linaro.org>
  882. L: qemu-arm@nongnu.org
  883. S: Maintained
  884. F: hw/arm/vexpress.c
  885. F: docs/system/arm/vexpress.rst
  886. Versatile PB
  887. M: Peter Maydell <peter.maydell@linaro.org>
  888. L: qemu-arm@nongnu.org
  889. S: Maintained
  890. F: hw/*/versatile*
  891. F: hw/i2c/arm_sbcon_i2c.c
  892. F: include/hw/i2c/arm_sbcon_i2c.h
  893. F: hw/misc/arm_sysctl.c
  894. F: docs/system/arm/versatile.rst
  895. Virt
  896. M: Peter Maydell <peter.maydell@linaro.org>
  897. L: qemu-arm@nongnu.org
  898. S: Maintained
  899. F: hw/arm/virt*
  900. F: include/hw/arm/virt.h
  901. F: docs/system/arm/virt.rst
  902. F: tests/avocado/machine_aarch64_virt.py
  903. Xilinx Zynq
  904. M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
  905. M: Alistair Francis <alistair@alistair23.me>
  906. M: Peter Maydell <peter.maydell@linaro.org>
  907. L: qemu-arm@nongnu.org
  908. S: Maintained
  909. F: hw/*/xilinx_*
  910. F: hw/*/cadence_*
  911. F: hw/misc/zynq_slcr.c
  912. F: hw/adc/zynq-xadc.c
  913. F: include/hw/misc/zynq_slcr.h
  914. F: include/hw/adc/zynq-xadc.h
  915. X: hw/ssi/xilinx_*
  916. Xilinx ZynqMP and Versal
  917. M: Alistair Francis <alistair@alistair23.me>
  918. M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
  919. M: Peter Maydell <peter.maydell@linaro.org>
  920. L: qemu-arm@nongnu.org
  921. S: Maintained
  922. F: hw/*/xlnx*.c
  923. F: include/hw/*/xlnx*.h
  924. F: include/hw/ssi/xilinx_spips.h
  925. F: hw/display/dpcd.c
  926. F: include/hw/display/dpcd.h
  927. F: docs/system/arm/xlnx-versal-virt.rst
  928. Xilinx Versal OSPI
  929. M: Francisco Iglesias <francisco.iglesias@xilinx.com>
  930. S: Maintained
  931. F: hw/ssi/xlnx-versal-ospi.c
  932. F: include/hw/ssi/xlnx-versal-ospi.h
  933. Xilinx Versal CFI
  934. M: Francisco Iglesias <francisco.iglesias@amd.com>
  935. S: Maintained
  936. F: hw/misc/xlnx-cfi-if.c
  937. F: include/hw/misc/xlnx-cfi-if.h
  938. F: hw/misc/xlnx-versal-cfu.c
  939. F: include/hw/misc/xlnx-versal-cfu.h
  940. F: hw/misc/xlnx-versal-cframe-reg.c
  941. F: include/hw/misc/xlnx-versal-cframe-reg.h
  942. STM32F100
  943. M: Alexandre Iooss <erdnaxe@crans.org>
  944. L: qemu-arm@nongnu.org
  945. S: Maintained
  946. F: hw/arm/stm32f100_soc.c
  947. STM32F205
  948. M: Alistair Francis <alistair@alistair23.me>
  949. M: Peter Maydell <peter.maydell@linaro.org>
  950. L: qemu-arm@nongnu.org
  951. S: Maintained
  952. F: hw/arm/stm32f205_soc.c
  953. F: hw/misc/stm32f2xx_syscfg.c
  954. F: hw/char/stm32f2xx_usart.c
  955. F: hw/timer/stm32f2xx_timer.c
  956. F: hw/adc/*
  957. F: hw/ssi/stm32f2xx_spi.c
  958. F: include/hw/*/stm32*.h
  959. STM32F405
  960. M: Alistair Francis <alistair@alistair23.me>
  961. M: Peter Maydell <peter.maydell@linaro.org>
  962. L: qemu-arm@nongnu.org
  963. S: Maintained
  964. F: hw/arm/stm32f405_soc.c
  965. F: hw/misc/stm32f4xx_syscfg.c
  966. F: hw/misc/stm32f4xx_exti.c
  967. Netduino 2
  968. M: Alistair Francis <alistair@alistair23.me>
  969. M: Peter Maydell <peter.maydell@linaro.org>
  970. L: qemu-arm@nongnu.org
  971. S: Maintained
  972. F: hw/arm/netduino2.c
  973. Netduino Plus 2
  974. M: Alistair Francis <alistair@alistair23.me>
  975. M: Peter Maydell <peter.maydell@linaro.org>
  976. L: qemu-arm@nongnu.org
  977. S: Maintained
  978. F: hw/arm/netduinoplus2.c
  979. Olimex STM32 H405
  980. M: Felipe Balbi <balbi@kernel.org>
  981. L: qemu-arm@nongnu.org
  982. S: Maintained
  983. F: hw/arm/olimex-stm32-h405.c
  984. SmartFusion2
  985. M: Subbaraya Sundeep <sundeep.lkml@gmail.com>
  986. M: Peter Maydell <peter.maydell@linaro.org>
  987. L: qemu-arm@nongnu.org
  988. S: Maintained
  989. F: hw/arm/msf2-soc.c
  990. F: hw/misc/msf2-sysreg.c
  991. F: hw/timer/mss-timer.c
  992. F: hw/ssi/mss-spi.c
  993. F: include/hw/arm/msf2-soc.h
  994. F: include/hw/misc/msf2-sysreg.h
  995. F: include/hw/timer/mss-timer.h
  996. F: include/hw/ssi/mss-spi.h
  997. F: hw/net/msf2-emac.c
  998. F: include/hw/net/msf2-emac.h
  999. Emcraft M2S-FG484
  1000. M: Subbaraya Sundeep <sundeep.lkml@gmail.com>
  1001. M: Peter Maydell <peter.maydell@linaro.org>
  1002. L: qemu-arm@nongnu.org
  1003. S: Maintained
  1004. F: hw/arm/msf2-som.c
  1005. F: docs/system/arm/emcraft-sf2.rst
  1006. ASPEED BMCs
  1007. M: Cédric Le Goater <clg@kaod.org>
  1008. M: Peter Maydell <peter.maydell@linaro.org>
  1009. R: Andrew Jeffery <andrew@aj.id.au>
  1010. R: Joel Stanley <joel@jms.id.au>
  1011. L: qemu-arm@nongnu.org
  1012. S: Maintained
  1013. F: hw/*/*aspeed*
  1014. F: hw/misc/pca9552.c
  1015. F: include/hw/*/*aspeed*
  1016. F: include/hw/misc/pca9552*.h
  1017. F: hw/net/ftgmac100.c
  1018. F: include/hw/net/ftgmac100.h
  1019. F: docs/system/arm/aspeed.rst
  1020. F: tests/*/*aspeed*
  1021. F: hw/arm/fby35.c
  1022. NRF51
  1023. M: Joel Stanley <joel@jms.id.au>
  1024. M: Peter Maydell <peter.maydell@linaro.org>
  1025. L: qemu-arm@nongnu.org
  1026. S: Maintained
  1027. F: hw/*/nrf51*.c
  1028. F: hw/*/microbit*.c
  1029. F: include/hw/*/nrf51*.h
  1030. F: include/hw/*/microbit*.h
  1031. F: tests/qtest/microbit-test.c
  1032. F: docs/system/arm/nrf.rst
  1033. AVR Machines
  1034. -------------
  1035. AVR MCUs
  1036. M: Michael Rolnik <mrolnik@gmail.com>
  1037. S: Maintained
  1038. F: configs/devices/avr-softmmu/default.mak
  1039. F: hw/avr/
  1040. F: include/hw/char/avr_usart.h
  1041. F: hw/char/avr_usart.c
  1042. F: include/hw/timer/avr_timer16.h
  1043. F: hw/timer/avr_timer16.c
  1044. F: include/hw/misc/avr_power.h
  1045. F: hw/misc/avr_power.c
  1046. Arduino
  1047. M: Philippe Mathieu-Daudé <philmd@linaro.org>
  1048. S: Maintained
  1049. F: hw/avr/arduino.c
  1050. CRIS Machines
  1051. -------------
  1052. Axis Dev88
  1053. M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
  1054. S: Maintained
  1055. F: hw/cris/axis_dev88.c
  1056. F: hw/*/etraxfs_*.c
  1057. HP-PARISC Machines
  1058. ------------------
  1059. HP B160L
  1060. M: Richard Henderson <richard.henderson@linaro.org>
  1061. R: Helge Deller <deller@gmx.de>
  1062. S: Odd Fixes
  1063. F: configs/devices/hppa-softmmu/default.mak
  1064. F: hw/hppa/
  1065. F: hw/net/*i82596*
  1066. F: hw/misc/lasi.c
  1067. F: hw/pci-host/dino.c
  1068. F: include/hw/misc/lasi.h
  1069. F: include/hw/net/lasi_82596.h
  1070. F: include/hw/pci-host/dino.h
  1071. F: pc-bios/hppa-firmware.img
  1072. LoongArch Machines
  1073. ------------------
  1074. Virt
  1075. M: Xiaojuan Yang <yangxiaojuan@loongson.cn>
  1076. M: Song Gao <gaosong@loongson.cn>
  1077. S: Maintained
  1078. F: docs/system/loongarch/virt.rst
  1079. F: configs/targets/loongarch64-softmmu.mak
  1080. F: configs/devices/loongarch64-softmmu/default.mak
  1081. F: hw/loongarch/
  1082. F: include/hw/loongarch/virt.h
  1083. F: include/hw/intc/loongarch_*.h
  1084. F: hw/intc/loongarch_*.c
  1085. F: include/hw/pci-host/ls7a.h
  1086. F: hw/rtc/ls7a_rtc.c
  1087. F: gdb-xml/loongarch*.xml
  1088. M68K Machines
  1089. -------------
  1090. an5206
  1091. M: Thomas Huth <huth@tuxfamily.org>
  1092. S: Odd Fixes
  1093. F: hw/m68k/an5206.c
  1094. F: hw/m68k/mcf5206.c
  1095. mcf5208
  1096. M: Thomas Huth <huth@tuxfamily.org>
  1097. S: Odd Fixes
  1098. F: hw/m68k/mcf5208.c
  1099. F: hw/m68k/mcf_intc.c
  1100. F: hw/char/mcf_uart.c
  1101. F: hw/net/mcf_fec.c
  1102. F: include/hw/m68k/mcf*.h
  1103. NeXTcube
  1104. M: Thomas Huth <huth@tuxfamily.org>
  1105. S: Odd Fixes
  1106. F: hw/m68k/next-*.c
  1107. F: hw/display/next-fb.c
  1108. F: include/hw/m68k/next-cube.h
  1109. q800
  1110. M: Laurent Vivier <laurent@vivier.eu>
  1111. S: Maintained
  1112. F: hw/m68k/q800.c
  1113. F: hw/m68k/q800-glue.c
  1114. F: hw/misc/mac_via.c
  1115. F: hw/nubus/*
  1116. F: hw/display/macfb.c
  1117. F: hw/block/swim.c
  1118. F: hw/m68k/bootinfo.h
  1119. F: include/standard-headers/asm-m68k/bootinfo.h
  1120. F: include/standard-headers/asm-m68k/bootinfo-mac.h
  1121. F: include/hw/misc/mac_via.h
  1122. F: include/hw/nubus/*
  1123. F: include/hw/display/macfb.h
  1124. F: include/hw/block/swim.h
  1125. F: include/hw/m68k/q800.h
  1126. F: include/hw/m68k/q800-glue.h
  1127. virt
  1128. M: Laurent Vivier <laurent@vivier.eu>
  1129. S: Maintained
  1130. F: hw/m68k/virt.c
  1131. F: hw/char/goldfish_tty.c
  1132. F: hw/intc/goldfish_pic.c
  1133. F: hw/intc/m68k_irqc.c
  1134. F: hw/misc/virt_ctrl.c
  1135. F: include/hw/char/goldfish_tty.h
  1136. F: include/hw/intc/goldfish_pic.h
  1137. F: include/hw/intc/m68k_irqc.h
  1138. F: include/hw/misc/virt_ctrl.h
  1139. MicroBlaze Machines
  1140. -------------------
  1141. petalogix_s3adsp1800
  1142. M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
  1143. S: Maintained
  1144. F: hw/microblaze/petalogix_s3adsp1800_mmu.c
  1145. F: include/hw/char/xilinx_uartlite.h
  1146. F: tests/avocado/machine_microblaze.py
  1147. petalogix_ml605
  1148. M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
  1149. S: Maintained
  1150. F: hw/microblaze/petalogix_ml605_mmu.c
  1151. MIPS Machines
  1152. -------------
  1153. Overall MIPS Machines
  1154. M: Philippe Mathieu-Daudé <philmd@linaro.org>
  1155. S: Odd Fixes
  1156. F: configs/devices/mips*/*
  1157. F: hw/mips/
  1158. F: include/hw/mips/
  1159. Jazz
  1160. M: Hervé Poussineau <hpoussin@reactos.org>
  1161. R: Aleksandar Rikalo <aleksandar.rikalo@syrmia.com>
  1162. S: Maintained
  1163. F: hw/mips/jazz.c
  1164. F: hw/display/jazz_led.c
  1165. F: hw/dma/rc4030.c
  1166. Malta
  1167. M: Philippe Mathieu-Daudé <philmd@linaro.org>
  1168. R: Aurelien Jarno <aurelien@aurel32.net>
  1169. S: Odd Fixes
  1170. F: hw/isa/piix4.c
  1171. F: hw/acpi/piix4.c
  1172. F: hw/mips/malta.c
  1173. F: hw/pci-host/gt64120.c
  1174. F: include/hw/southbridge/piix.h
  1175. F: tests/avocado/linux_ssh_mips_malta.py
  1176. F: tests/avocado/machine_mips_malta.py
  1177. Mipssim
  1178. R: Aleksandar Rikalo <aleksandar.rikalo@syrmia.com>
  1179. S: Orphan
  1180. F: hw/mips/mipssim.c
  1181. F: hw/net/mipsnet.c
  1182. Fuloong 2E
  1183. M: Huacai Chen <chenhuacai@kernel.org>
  1184. M: Philippe Mathieu-Daudé <philmd@linaro.org>
  1185. R: Jiaxun Yang <jiaxun.yang@flygoat.com>
  1186. S: Odd Fixes
  1187. F: hw/mips/fuloong2e.c
  1188. F: hw/isa/vt82c686.c
  1189. F: hw/pci-host/bonito.c
  1190. F: hw/usb/vt82c686-uhci-pci.c
  1191. F: include/hw/isa/vt82c686.h
  1192. F: include/hw/pci-host/bonito.h
  1193. F: tests/avocado/machine_mips_fuloong2e.py
  1194. Loongson-3 virtual platforms
  1195. M: Huacai Chen <chenhuacai@kernel.org>
  1196. R: Jiaxun Yang <jiaxun.yang@flygoat.com>
  1197. S: Maintained
  1198. F: hw/intc/loongson_liointc.c
  1199. F: hw/mips/loongson3_bootp.c
  1200. F: hw/mips/loongson3_bootp.h
  1201. F: hw/mips/loongson3_virt.c
  1202. F: tests/avocado/machine_mips_loongson3v.py
  1203. Boston
  1204. M: Paul Burton <paulburton@kernel.org>
  1205. R: Aleksandar Rikalo <aleksandar.rikalo@syrmia.com>
  1206. S: Odd Fixes
  1207. F: hw/core/loader-fit.c
  1208. F: hw/mips/boston.c
  1209. F: hw/pci-host/xilinx-pcie.c
  1210. F: include/hw/pci-host/xilinx-pcie.h
  1211. OpenRISC Machines
  1212. -----------------
  1213. or1k-sim
  1214. M: Jia Liu <proljc@gmail.com>
  1215. S: Maintained
  1216. F: docs/system/openrisc/or1k-sim.rst
  1217. F: hw/openrisc/openrisc_sim.c
  1218. PowerPC Machines
  1219. ----------------
  1220. 405 (ref405ep)
  1221. L: qemu-ppc@nongnu.org
  1222. S: Orphan
  1223. F: hw/ppc/ppc405_boards.c
  1224. Bamboo
  1225. L: qemu-ppc@nongnu.org
  1226. S: Orphan
  1227. F: hw/ppc/ppc440_bamboo.c
  1228. F: tests/avocado/ppc_bamboo.py
  1229. e500
  1230. L: qemu-ppc@nongnu.org
  1231. S: Orphan
  1232. F: hw/ppc/e500*
  1233. F: hw/gpio/mpc8xxx.c
  1234. F: hw/i2c/mpc_i2c.c
  1235. F: hw/net/fsl_etsec/
  1236. F: hw/pci-host/ppce500.c
  1237. F: include/hw/ppc/ppc_e500.h
  1238. F: include/hw/pci-host/ppce500.h
  1239. F: pc-bios/u-boot.e500
  1240. F: hw/intc/openpic_kvm.h
  1241. F: include/hw/ppc/openpic_kvm.h
  1242. mpc8544ds
  1243. L: qemu-ppc@nongnu.org
  1244. S: Orphan
  1245. F: hw/ppc/mpc8544ds.c
  1246. F: hw/ppc/mpc8544_guts.c
  1247. F: tests/avocado/ppc_mpc8544ds.py
  1248. New World (mac99)
  1249. M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
  1250. L: qemu-ppc@nongnu.org
  1251. S: Odd Fixes
  1252. F: docs/system/ppc/powermac.rst
  1253. F: hw/ppc/mac_newworld.c
  1254. F: hw/pci-host/uninorth.c
  1255. F: hw/pci-bridge/dec.[hc]
  1256. F: hw/misc/macio/
  1257. F: hw/misc/mos6522.c
  1258. F: hw/nvram/mac_nvram.c
  1259. F: hw/input/adb*
  1260. F: include/hw/misc/macio/
  1261. F: include/hw/misc/mos6522.h
  1262. F: include/hw/nvram/mac_nvram.h
  1263. F: include/hw/ppc/mac_dbdma.h
  1264. F: include/hw/pci-host/uninorth.h
  1265. F: include/hw/input/adb*
  1266. F: pc-bios/qemu_vga.ndrv
  1267. Old World (g3beige)
  1268. M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
  1269. L: qemu-ppc@nongnu.org
  1270. S: Odd Fixes
  1271. F: docs/system/ppc/powermac.rst
  1272. F: hw/ppc/mac_oldworld.c
  1273. F: hw/pci-host/grackle.c
  1274. F: hw/misc/macio/
  1275. F: hw/intc/heathrow_pic.c
  1276. F: hw/input/adb*
  1277. F: include/hw/intc/heathrow_pic.h
  1278. F: include/hw/input/adb*
  1279. F: include/hw/pci-host/grackle.h
  1280. F: pc-bios/qemu_vga.ndrv
  1281. PReP
  1282. M: Hervé Poussineau <hpoussin@reactos.org>
  1283. L: qemu-ppc@nongnu.org
  1284. S: Maintained
  1285. F: docs/system/ppc/prep.rst
  1286. F: hw/ppc/prep.c
  1287. F: hw/ppc/prep_systemio.c
  1288. F: hw/ppc/rs6000_mc.c
  1289. F: hw/pci-host/raven.c
  1290. F: hw/isa/i82378.c
  1291. F: hw/isa/pc87312.c
  1292. F: hw/dma/i82374.c
  1293. F: hw/rtc/m48t59-isa.c
  1294. F: include/hw/isa/pc87312.h
  1295. F: include/hw/rtc/m48t59.h
  1296. F: tests/avocado/ppc_prep_40p.py
  1297. sPAPR (pseries)
  1298. M: Daniel Henrique Barboza <danielhb413@gmail.com>
  1299. R: Cédric Le Goater <clg@kaod.org>
  1300. R: David Gibson <david@gibson.dropbear.id.au>
  1301. R: Greg Kurz <groug@kaod.org>
  1302. R: Harsh Prateek Bora <harshpb@linux.ibm.com>
  1303. L: qemu-ppc@nongnu.org
  1304. S: Odd Fixes
  1305. F: hw/*/spapr*
  1306. F: include/hw/*/spapr*
  1307. F: hw/*/xics*
  1308. F: include/hw/*/xics*
  1309. F: pc-bios/slof.bin
  1310. F: docs/system/ppc/pseries.rst
  1311. F: docs/specs/ppc-spapr-*
  1312. F: tests/qtest/spapr*
  1313. F: tests/qtest/libqos/*spapr*
  1314. F: tests/qtest/rtas*
  1315. F: tests/qtest/libqos/rtas*
  1316. F: tests/avocado/ppc_pseries.py
  1317. PowerNV (Non-Virtualized)
  1318. M: Cédric Le Goater <clg@kaod.org>
  1319. R: Frédéric Barrat <fbarrat@linux.ibm.com>
  1320. R: Nicholas Piggin <npiggin@gmail.com>
  1321. L: qemu-ppc@nongnu.org
  1322. S: Odd Fixes
  1323. F: docs/system/ppc/powernv.rst
  1324. F: hw/ppc/pnv*
  1325. F: hw/intc/pnv*
  1326. F: hw/intc/xics_pnv.c
  1327. F: hw/pci-host/pnv*
  1328. F: include/hw/ppc/pnv*
  1329. F: include/hw/pci-host/pnv*
  1330. F: pc-bios/skiboot.lid
  1331. F: tests/qtest/pnv*
  1332. virtex_ml507
  1333. M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
  1334. L: qemu-ppc@nongnu.org
  1335. S: Odd Fixes
  1336. F: hw/ppc/virtex_ml507.c
  1337. F: tests/avocado/ppc_virtex_ml507.py
  1338. sam460ex
  1339. M: BALATON Zoltan <balaton@eik.bme.hu>
  1340. L: qemu-ppc@nongnu.org
  1341. S: Maintained
  1342. F: hw/ppc/sam460ex.c
  1343. F: hw/ppc/ppc440_pcix.c
  1344. F: hw/display/sm501*
  1345. F: hw/ide/sii3112.c
  1346. F: hw/rtc/m41t80.c
  1347. F: pc-bios/canyonlands.dt[sb]
  1348. F: pc-bios/u-boot-sam460ex-20100605.bin
  1349. F: roms/u-boot-sam460ex
  1350. pegasos2
  1351. M: BALATON Zoltan <balaton@eik.bme.hu>
  1352. L: qemu-ppc@nongnu.org
  1353. S: Maintained
  1354. F: hw/ppc/pegasos2.c
  1355. F: hw/pci-host/mv64361.c
  1356. F: hw/pci-host/mv643xx.h
  1357. F: include/hw/pci-host/mv64361.h
  1358. Virtual Open Firmware (VOF)
  1359. M: Alexey Kardashevskiy <aik@ozlabs.ru>
  1360. R: Cédric Le Goater <clg@kaod.org>
  1361. R: Daniel Henrique Barboza <danielhb413@gmail.com>
  1362. R: David Gibson <david@gibson.dropbear.id.au>
  1363. R: Greg Kurz <groug@kaod.org>
  1364. L: qemu-ppc@nongnu.org
  1365. S: Maintained
  1366. F: hw/ppc/spapr_vof*
  1367. F: hw/ppc/vof*
  1368. F: include/hw/ppc/vof*
  1369. F: pc-bios/vof/*
  1370. F: pc-bios/vof*
  1371. RISC-V Machines
  1372. ---------------
  1373. OpenTitan
  1374. M: Alistair Francis <Alistair.Francis@wdc.com>
  1375. L: qemu-riscv@nongnu.org
  1376. S: Supported
  1377. F: hw/riscv/opentitan.c
  1378. F: hw/*/ibex_*.c
  1379. F: include/hw/riscv/opentitan.h
  1380. F: include/hw/*/ibex_*.h
  1381. Microchip PolarFire SoC Icicle Kit
  1382. M: Bin Meng <bin.meng@windriver.com>
  1383. L: qemu-riscv@nongnu.org
  1384. S: Supported
  1385. F: hw/riscv/microchip_pfsoc.c
  1386. F: hw/char/mchp_pfsoc_mmuart.c
  1387. F: hw/misc/mchp_pfsoc_dmc.c
  1388. F: hw/misc/mchp_pfsoc_ioscb.c
  1389. F: hw/misc/mchp_pfsoc_sysreg.c
  1390. F: include/hw/riscv/microchip_pfsoc.h
  1391. F: include/hw/char/mchp_pfsoc_mmuart.h
  1392. F: include/hw/misc/mchp_pfsoc_dmc.h
  1393. F: include/hw/misc/mchp_pfsoc_ioscb.h
  1394. F: include/hw/misc/mchp_pfsoc_sysreg.h
  1395. Shakti C class SoC
  1396. M: Vijai Kumar K <vijai@behindbytes.com>
  1397. L: qemu-riscv@nongnu.org
  1398. S: Supported
  1399. F: hw/riscv/shakti_c.c
  1400. F: hw/char/shakti_uart.c
  1401. F: include/hw/riscv/shakti_c.h
  1402. F: include/hw/char/shakti_uart.h
  1403. SiFive Machines
  1404. M: Alistair Francis <Alistair.Francis@wdc.com>
  1405. M: Bin Meng <bin.meng@windriver.com>
  1406. M: Palmer Dabbelt <palmer@dabbelt.com>
  1407. L: qemu-riscv@nongnu.org
  1408. S: Supported
  1409. F: hw/*/*sifive*.c
  1410. F: include/hw/*/*sifive*.h
  1411. RX Machines
  1412. -----------
  1413. rx-gdbsim
  1414. R: Yoshinori Sato <ysato@users.sourceforge.jp>
  1415. S: Orphan
  1416. F: docs/system/target-rx.rst
  1417. F: hw/rx/rx-gdbsim.c
  1418. F: tests/avocado/machine_rx_gdbsim.py
  1419. SH4 Machines
  1420. ------------
  1421. R2D
  1422. R: Yoshinori Sato <ysato@users.sourceforge.jp>
  1423. R: Magnus Damm <magnus.damm@gmail.com>
  1424. S: Odd Fixes
  1425. F: hw/char/sh_serial.c
  1426. F: hw/sh4/r2d.c
  1427. F: hw/intc/sh_intc.c
  1428. F: hw/pci-host/sh_pci.c
  1429. F: hw/timer/sh_timer.c
  1430. F: include/hw/sh4/sh_intc.h
  1431. Shix
  1432. R: Yoshinori Sato <ysato@users.sourceforge.jp>
  1433. R: Magnus Damm <magnus.damm@gmail.com>
  1434. S: Odd Fixes
  1435. F: hw/block/tc58128.c
  1436. F: hw/char/sh_serial.c
  1437. F: hw/sh4/shix.c
  1438. F: hw/intc/sh_intc.c
  1439. F: hw/timer/sh_timer.c
  1440. F: include/hw/sh4/sh_intc.h
  1441. SPARC Machines
  1442. --------------
  1443. Sun4m
  1444. M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
  1445. S: Maintained
  1446. F: hw/sparc/sun4m.c
  1447. F: hw/sparc/sun4m_iommu.c
  1448. F: hw/display/cg3.c
  1449. F: hw/display/tcx.c
  1450. F: hw/dma/sparc32_dma.c
  1451. F: hw/misc/eccmemctl.c
  1452. F: hw/*/slavio_*.c
  1453. F: include/hw/nvram/sun_nvram.h
  1454. F: include/hw/sparc/sparc32_dma.h
  1455. F: include/hw/sparc/sun4m_iommu.h
  1456. F: pc-bios/openbios-sparc32
  1457. Sun4u
  1458. M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
  1459. S: Maintained
  1460. F: hw/sparc64/sun4u.c
  1461. F: hw/sparc64/sun4u_iommu.c
  1462. F: include/hw/sparc/sun4u_iommu.h
  1463. F: hw/pci-host/sabre.c
  1464. F: include/hw/pci-host/sabre.h
  1465. F: hw/pci-bridge/simba.c
  1466. F: include/hw/pci-bridge/simba.h
  1467. F: pc-bios/openbios-sparc64
  1468. F: tests/avocado/machine_sparc64_sun4u.py
  1469. Sun4v
  1470. M: Artyom Tarasenko <atar4qemu@gmail.com>
  1471. S: Maintained
  1472. F: hw/sparc64/niagara.c
  1473. F: hw/rtc/sun4v-rtc.c
  1474. F: include/hw/rtc/sun4v-rtc.h
  1475. Leon3
  1476. M: Fabien Chouteau <chouteau@adacore.com>
  1477. M: Frederic Konrad <konrad.frederic@yahoo.fr>
  1478. S: Maintained
  1479. F: hw/sparc/leon3.c
  1480. F: hw/*/grlib*
  1481. F: include/hw/*/grlib*
  1482. F: tests/avocado/machine_sparc_leon3.py
  1483. S390 Machines
  1484. -------------
  1485. S390 Virtio-ccw
  1486. M: Halil Pasic <pasic@linux.ibm.com>
  1487. M: Christian Borntraeger <borntraeger@linux.ibm.com>
  1488. M: Eric Farman <farman@linux.ibm.com>
  1489. S: Supported
  1490. F: hw/s390x/
  1491. F: include/hw/s390x/
  1492. F: configs/devices/s390x-softmmu/default.mak
  1493. F: tests/avocado/machine_s390_ccw_virtio.py
  1494. T: git https://github.com/borntraeger/qemu.git s390-next
  1495. L: qemu-s390x@nongnu.org
  1496. S390-ccw boot
  1497. M: Christian Borntraeger <borntraeger@linux.ibm.com>
  1498. M: Thomas Huth <thuth@redhat.com>
  1499. S: Supported
  1500. F: hw/s390x/ipl.*
  1501. F: pc-bios/s390-ccw/
  1502. F: pc-bios/s390-ccw.img
  1503. F: docs/devel/s390-dasd-ipl.rst
  1504. T: git https://github.com/borntraeger/qemu.git s390-next
  1505. L: qemu-s390x@nongnu.org
  1506. S390 PCI
  1507. M: Matthew Rosato <mjrosato@linux.ibm.com>
  1508. M: Eric Farman <farman@linux.ibm.com>
  1509. S: Supported
  1510. F: hw/s390x/s390-pci*
  1511. F: include/hw/s390x/s390-pci*
  1512. L: qemu-s390x@nongnu.org
  1513. S390 channel subsystem
  1514. M: Halil Pasic <pasic@linux.ibm.com>
  1515. M: Christian Borntraeger <borntraeger@linux.ibm.com>
  1516. M: Eric Farman <farman@linux.ibm.com>
  1517. S: Supported
  1518. F: hw/s390x/ccw-device.[ch]
  1519. F: hw/s390x/css.c
  1520. F: hw/s390x/css-bridge.c
  1521. F: include/hw/s390x/css.h
  1522. F: include/hw/s390x/css-bridge.h
  1523. F: include/hw/s390x/ioinst.h
  1524. F: target/s390x/ioinst.c
  1525. L: qemu-s390x@nongnu.org
  1526. S390 CPU models
  1527. M: David Hildenbrand <david@redhat.com>
  1528. S: Maintained
  1529. F: target/s390x/cpu_features*.[ch]
  1530. F: target/s390x/cpu_models.[ch]
  1531. L: qemu-s390x@nongnu.org
  1532. S390 SCLP-backed devices
  1533. M: Halil Pasic <pasic@linux.ibm.com>
  1534. M: Christian Borntraeger <borntraeger@linux.ibm.com>
  1535. S: Supported
  1536. F: include/hw/s390x/event-facility.h
  1537. F: include/hw/s390x/sclp.h
  1538. F: hw/char/sclp*.[hc]
  1539. F: hw/s390x/event-facility.c
  1540. F: hw/s390x/sclp*.c
  1541. L: qemu-s390x@nongnu.org
  1542. X86 Machines
  1543. ------------
  1544. PC
  1545. M: Michael S. Tsirkin <mst@redhat.com>
  1546. M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
  1547. S: Supported
  1548. F: include/hw/i386/
  1549. F: hw/i386/
  1550. F: hw/pci-host/i440fx.c
  1551. F: hw/pci-host/q35.c
  1552. F: hw/pci-host/pam.c
  1553. F: include/hw/pci-host/i440fx.h
  1554. F: include/hw/pci-host/q35.h
  1555. F: include/hw/pci-host/pam.h
  1556. F: hw/isa/piix3.c
  1557. F: hw/isa/lpc_ich9.c
  1558. F: hw/i2c/smbus_ich9.c
  1559. F: hw/acpi/piix4.c
  1560. F: hw/acpi/ich9*.c
  1561. F: include/hw/acpi/ich9*.h
  1562. F: include/hw/southbridge/ich9.h
  1563. F: include/hw/southbridge/piix.h
  1564. F: hw/isa/apm.c
  1565. F: include/hw/isa/apm.h
  1566. F: tests/unit/test-x86-cpuid.c
  1567. F: tests/qtest/test-x86-cpuid-compat.c
  1568. PC Chipset
  1569. M: Michael S. Tsirkin <mst@redhat.com>
  1570. M: Paolo Bonzini <pbonzini@redhat.com>
  1571. S: Supported
  1572. F: hw/char/debugcon.c
  1573. F: hw/char/parallel*
  1574. F: hw/char/serial*
  1575. F: hw/dma/i8257*
  1576. F: hw/i2c/pm_smbus.c
  1577. F: hw/input/pckbd.c
  1578. F: hw/intc/apic*
  1579. F: hw/intc/ioapic*
  1580. F: hw/intc/i8259*
  1581. F: hw/isa/isa-superio.c
  1582. F: hw/misc/debugexit.c
  1583. F: hw/misc/pc-testdev.c
  1584. F: hw/timer/hpet*
  1585. F: hw/timer/i8254*
  1586. F: hw/rtc/mc146818rtc*
  1587. F: hw/watchdog/wdt_ib700.c
  1588. F: hw/watchdog/wdt_i6300esb.c
  1589. F: include/hw/display/vga.h
  1590. F: include/hw/char/parallel*.h
  1591. F: include/hw/dma/i8257.h
  1592. F: include/hw/i2c/pm_smbus.h
  1593. F: include/hw/input/i8042.h
  1594. F: include/hw/intc/ioapic*
  1595. F: include/hw/isa/i8259_internal.h
  1596. F: include/hw/isa/superio.h
  1597. F: include/hw/timer/hpet.h
  1598. F: include/hw/timer/i8254*
  1599. F: include/hw/rtc/mc146818rtc*
  1600. microvm
  1601. M: Sergio Lopez <slp@redhat.com>
  1602. M: Paolo Bonzini <pbonzini@redhat.com>
  1603. S: Maintained
  1604. F: docs/system/i386/microvm.rst
  1605. F: hw/i386/microvm.c
  1606. F: include/hw/i386/microvm.h
  1607. F: pc-bios/bios-microvm.bin
  1608. Machine core
  1609. M: Eduardo Habkost <eduardo@habkost.net>
  1610. M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
  1611. R: Philippe Mathieu-Daudé <philmd@linaro.org>
  1612. R: Yanan Wang <wangyanan55@huawei.com>
  1613. S: Supported
  1614. F: cpu.c
  1615. F: hw/core/cpu.c
  1616. F: hw/core/machine-qmp-cmds.c
  1617. F: hw/core/machine.c
  1618. F: hw/core/machine-smp.c
  1619. F: hw/core/null-machine.c
  1620. F: hw/core/numa.c
  1621. F: hw/cpu/cluster.c
  1622. F: qapi/machine.json
  1623. F: qapi/machine-target.json
  1624. F: include/hw/boards.h
  1625. F: include/hw/core/cpu.h
  1626. F: include/hw/cpu/cluster.h
  1627. F: include/sysemu/numa.h
  1628. F: tests/unit/test-smp-parse.c
  1629. T: git https://gitlab.com/ehabkost/qemu.git machine-next
  1630. Xtensa Machines
  1631. ---------------
  1632. sim
  1633. M: Max Filippov <jcmvbkbc@gmail.com>
  1634. S: Maintained
  1635. F: hw/xtensa/sim.c
  1636. virt
  1637. M: Max Filippov <jcmvbkbc@gmail.com>
  1638. S: Maintained
  1639. F: hw/xtensa/virt.c
  1640. XTFPGA (LX60, LX200, ML605, KC705)
  1641. M: Max Filippov <jcmvbkbc@gmail.com>
  1642. S: Maintained
  1643. F: hw/xtensa/xtfpga.c
  1644. F: hw/net/opencores_eth.c
  1645. Devices
  1646. -------
  1647. Overall Audio frontends
  1648. M: Gerd Hoffmann <kraxel@redhat.com>
  1649. S: Odd Fixes
  1650. F: hw/audio/
  1651. F: include/hw/audio/
  1652. F: tests/qtest/ac97-test.c
  1653. F: tests/qtest/es1370-test.c
  1654. F: tests/qtest/intel-hda-test.c
  1655. F: tests/qtest/fuzz-sb16-test.c
  1656. Xilinx CAN
  1657. M: Vikram Garhwal <vikram.garhwal@amd.com>
  1658. M: Francisco Iglesias <francisco.iglesias@amd.com>
  1659. S: Maintained
  1660. F: hw/net/can/xlnx-*
  1661. F: include/hw/net/xlnx-*
  1662. F: tests/qtest/xlnx-can*-test*
  1663. EDU
  1664. M: Jiri Slaby <jslaby@suse.cz>
  1665. S: Maintained
  1666. F: hw/misc/edu.c
  1667. IDE
  1668. M: John Snow <jsnow@redhat.com>
  1669. L: qemu-block@nongnu.org
  1670. S: Odd Fixes
  1671. F: include/hw/ide.h
  1672. F: include/hw/ide/
  1673. F: hw/ide/
  1674. F: hw/block/block.c
  1675. F: hw/block/cdrom.c
  1676. F: hw/block/hd-geometry.c
  1677. F: tests/qtest/ide-test.c
  1678. F: tests/qtest/ahci-test.c
  1679. F: tests/qtest/cdrom-test.c
  1680. F: tests/qtest/libqos/ahci*
  1681. T: git https://gitlab.com/jsnow/qemu.git ide
  1682. IPMI
  1683. M: Corey Minyard <minyard@acm.org>
  1684. S: Maintained
  1685. F: include/hw/ipmi/*
  1686. F: hw/ipmi/*
  1687. F: hw/smbios/smbios_type_38.c
  1688. F: tests/qtest/ipmi*
  1689. T: git https://github.com/cminyard/qemu.git master-ipmi-rebase
  1690. Floppy
  1691. M: John Snow <jsnow@redhat.com>
  1692. L: qemu-block@nongnu.org
  1693. S: Odd Fixes
  1694. F: hw/block/fdc.c
  1695. F: hw/block/fdc-internal.h
  1696. F: hw/block/fdc-isa.c
  1697. F: hw/block/fdc-sysbus.c
  1698. F: include/hw/block/fdc.h
  1699. F: tests/qtest/fdc-test.c
  1700. T: git https://gitlab.com/jsnow/qemu.git ide
  1701. Hyper-V VMBus
  1702. M: Maciej S. Szmigiero <maciej.szmigiero@oracle.com>
  1703. S: Odd Fixes
  1704. F: hw/hyperv/vmbus.c
  1705. F: include/hw/hyperv/vmbus*.h
  1706. OMAP
  1707. M: Peter Maydell <peter.maydell@linaro.org>
  1708. L: qemu-arm@nongnu.org
  1709. S: Maintained
  1710. F: hw/*/omap*
  1711. F: include/hw/arm/omap.h
  1712. F: docs/system/arm/sx1.rst
  1713. IPack
  1714. M: Alberto Garcia <berto@igalia.com>
  1715. S: Odd Fixes
  1716. F: hw/char/ipoctal232.c
  1717. F: hw/ipack/
  1718. PCI
  1719. M: Michael S. Tsirkin <mst@redhat.com>
  1720. M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
  1721. S: Supported
  1722. F: include/hw/pci/*
  1723. F: hw/misc/pci-testdev.c
  1724. F: hw/pci/*
  1725. F: hw/pci-bridge/*
  1726. F: qapi/pci.json
  1727. F: docs/pci*
  1728. F: docs/specs/*pci*
  1729. PCIE DOE
  1730. M: Huai-Cheng Kuo <hchkuo@avery-design.com.tw>
  1731. M: Chris Browy <cbrowy@avery-design.com>
  1732. S: Supported
  1733. F: include/hw/pci/pcie_doe.h
  1734. F: hw/pci/pcie_doe.c
  1735. ACPI/SMBIOS
  1736. M: Michael S. Tsirkin <mst@redhat.com>
  1737. M: Igor Mammedov <imammedo@redhat.com>
  1738. R: Ani Sinha <anisinha@redhat.com>
  1739. S: Supported
  1740. F: include/hw/acpi/*
  1741. F: include/hw/firmware/smbios.h
  1742. F: hw/acpi/*
  1743. F: hw/smbios/*
  1744. F: hw/i386/acpi-build.[hc]
  1745. F: hw/arm/virt-acpi-build.c
  1746. F: qapi/acpi.json
  1747. F: tests/qtest/bios-tables-test*
  1748. F: tests/qtest/acpi-utils.[hc]
  1749. F: tests/data/acpi/
  1750. F: docs/specs/acpi_cpu_hotplug.rst
  1751. F: docs/specs/acpi_mem_hotplug.rst
  1752. F: docs/specs/acpi_nvdimm.rst
  1753. F: docs/specs/acpi_pci_hotplug.rst
  1754. F: docs/specs/acpi_hw_reduced_hotplug.rst
  1755. ARM ACPI Subsystem
  1756. M: Shannon Zhao <shannon.zhaosl@gmail.com>
  1757. L: qemu-arm@nongnu.org
  1758. S: Maintained
  1759. F: hw/arm/virt-acpi-build.c
  1760. RISC-V ACPI Subsystem
  1761. M: Sunil V L <sunilvl@ventanamicro.com>
  1762. L: qemu-riscv@nongnu.org
  1763. S: Maintained
  1764. F: hw/riscv/virt-acpi-build.c
  1765. ACPI/VIOT
  1766. M: Jean-Philippe Brucker <jean-philippe@linaro.org>
  1767. S: Supported
  1768. F: hw/acpi/viot.c
  1769. F: hw/acpi/viot.h
  1770. ACPI/AVOCADO/BIOSBITS
  1771. M: Ani Sinha <anisinha@redhat.com>
  1772. M: Michael S. Tsirkin <mst@redhat.com>
  1773. S: Supported
  1774. F: tests/avocado/acpi-bits/*
  1775. F: tests/avocado/acpi-bits.py
  1776. F: docs/devel/acpi-bits.rst
  1777. ACPI/HEST/GHES
  1778. R: Dongjiu Geng <gengdongjiu1@gmail.com>
  1779. L: qemu-arm@nongnu.org
  1780. S: Maintained
  1781. F: hw/acpi/ghes.c
  1782. F: include/hw/acpi/ghes.h
  1783. F: docs/specs/acpi_hest_ghes.rst
  1784. ppc4xx
  1785. L: qemu-ppc@nongnu.org
  1786. S: Orphan
  1787. F: hw/ppc/ppc4*.c
  1788. F: hw/i2c/ppc4xx_i2c.c
  1789. F: include/hw/ppc/ppc4xx.h
  1790. F: include/hw/i2c/ppc4xx_i2c.h
  1791. F: hw/intc/ppc-uic.c
  1792. F: include/hw/intc/ppc-uic.h
  1793. Character devices
  1794. M: Marc-André Lureau <marcandre.lureau@redhat.com>
  1795. R: Paolo Bonzini <pbonzini@redhat.com>
  1796. S: Odd Fixes
  1797. F: hw/char/
  1798. Network devices
  1799. M: Jason Wang <jasowang@redhat.com>
  1800. S: Odd Fixes
  1801. F: hw/net/
  1802. F: include/hw/net/
  1803. F: tests/qtest/virtio-net-test.c
  1804. F: docs/virtio-net-failover.rst
  1805. T: git https://github.com/jasowang/qemu.git net
  1806. Parallel NOR Flash devices
  1807. M: Philippe Mathieu-Daudé <philmd@linaro.org>
  1808. T: git https://gitlab.com/philmd/qemu.git pflash-next
  1809. S: Maintained
  1810. F: hw/block/pflash_cfi*.c
  1811. F: include/hw/block/flash.h
  1812. SCSI
  1813. M: Paolo Bonzini <pbonzini@redhat.com>
  1814. R: Fam Zheng <fam@euphon.net>
  1815. S: Supported
  1816. F: include/hw/scsi/*
  1817. F: hw/scsi/*
  1818. F: tests/qtest/virtio-scsi-test.c
  1819. F: tests/qtest/fuzz-virtio-scsi-test.c
  1820. F: tests/qtest/am53c974-test.c
  1821. F: tests/qtest/fuzz-lsi53c895a-test.c
  1822. T: git https://github.com/bonzini/qemu.git scsi-next
  1823. SSI
  1824. M: Alistair Francis <alistair@alistair23.me>
  1825. S: Maintained
  1826. F: hw/ssi/*
  1827. F: hw/block/m25p80*
  1828. F: include/hw/ssi/ssi.h
  1829. X: hw/ssi/xilinx_*
  1830. F: tests/qtest/m25p80-test.c
  1831. Xilinx SPI
  1832. M: Alistair Francis <alistair@alistair23.me>
  1833. S: Maintained
  1834. F: hw/ssi/xilinx_*
  1835. SD (Secure Card)
  1836. M: Philippe Mathieu-Daudé <philmd@linaro.org>
  1837. M: Bin Meng <bin.meng@windriver.com>
  1838. L: qemu-block@nongnu.org
  1839. S: Odd Fixes
  1840. F: include/hw/sd/sd*
  1841. F: hw/sd/core.c
  1842. F: hw/sd/sd*
  1843. F: hw/sd/ssi-sd.c
  1844. F: tests/qtest/fuzz-sdcard-test.c
  1845. F: tests/qtest/sdhci-test.c
  1846. USB
  1847. M: Gerd Hoffmann <kraxel@redhat.com>
  1848. S: Odd Fixes
  1849. F: hw/usb/*
  1850. F: stubs/usb-dev-stub.c
  1851. F: tests/qtest/usb-*-test.c
  1852. F: docs/system/devices/usb.rst
  1853. F: include/hw/usb.h
  1854. F: include/hw/usb/
  1855. USB (serial adapter)
  1856. R: Gerd Hoffmann <kraxel@redhat.com>
  1857. M: Samuel Thibault <samuel.thibault@ens-lyon.org>
  1858. S: Maintained
  1859. F: hw/usb/dev-serial.c
  1860. VFIO
  1861. M: Alex Williamson <alex.williamson@redhat.com>
  1862. M: Cédric Le Goater <clg@redhat.com>
  1863. S: Supported
  1864. F: hw/vfio/*
  1865. F: include/hw/vfio/
  1866. F: docs/igd-assign.txt
  1867. F: docs/devel/vfio-migration.rst
  1868. vfio-ccw
  1869. M: Eric Farman <farman@linux.ibm.com>
  1870. M: Matthew Rosato <mjrosato@linux.ibm.com>
  1871. S: Supported
  1872. F: hw/vfio/ccw.c
  1873. F: hw/s390x/s390-ccw.c
  1874. F: include/hw/s390x/s390-ccw.h
  1875. F: include/hw/s390x/vfio-ccw.h
  1876. L: qemu-s390x@nongnu.org
  1877. vfio-ap
  1878. M: Tony Krowiak <akrowiak@linux.ibm.com>
  1879. M: Halil Pasic <pasic@linux.ibm.com>
  1880. M: Jason Herne <jjherne@linux.ibm.com>
  1881. S: Supported
  1882. F: hw/s390x/ap-device.c
  1883. F: hw/s390x/ap-bridge.c
  1884. F: include/hw/s390x/ap-device.h
  1885. F: include/hw/s390x/ap-bridge.h
  1886. F: hw/vfio/ap.c
  1887. F: docs/system/s390x/vfio-ap.rst
  1888. L: qemu-s390x@nongnu.org
  1889. vhost
  1890. M: Michael S. Tsirkin <mst@redhat.com>
  1891. S: Supported
  1892. F: hw/*/*vhost*
  1893. F: docs/interop/vhost-user.json
  1894. F: docs/interop/vhost-user.rst
  1895. F: contrib/vhost-user-*/
  1896. F: backends/vhost-user.c
  1897. F: include/sysemu/vhost-user-backend.h
  1898. F: subprojects/libvhost-user/
  1899. vhost-shadow-virtqueue
  1900. R: Eugenio Pérez <eperezma@redhat.com>
  1901. F: hw/virtio/vhost-shadow-virtqueue.*
  1902. virtio
  1903. M: Michael S. Tsirkin <mst@redhat.com>
  1904. S: Supported
  1905. F: hw/*/virtio*
  1906. F: hw/virtio/Makefile.objs
  1907. F: hw/virtio/trace-events
  1908. F: qapi/virtio.json
  1909. F: net/vhost-user.c
  1910. F: include/hw/virtio/
  1911. F: docs/devel/virtio*
  1912. virtio-balloon
  1913. M: Michael S. Tsirkin <mst@redhat.com>
  1914. M: David Hildenbrand <david@redhat.com>
  1915. S: Maintained
  1916. F: docs/interop/virtio-balloon-stats.rst
  1917. F: hw/virtio/virtio-balloon*.c
  1918. F: include/hw/virtio/virtio-balloon.h
  1919. F: softmmu/balloon.c
  1920. F: include/sysemu/balloon.h
  1921. virtio-9p
  1922. M: Greg Kurz <groug@kaod.org>
  1923. M: Christian Schoenebeck <qemu_oss@crudebyte.com>
  1924. S: Maintained
  1925. W: https://wiki.qemu.org/Documentation/9p
  1926. F: hw/9pfs/
  1927. X: hw/9pfs/xen-9p*
  1928. X: hw/9pfs/9p-proxy*
  1929. F: fsdev/
  1930. X: fsdev/virtfs-proxy-helper.c
  1931. F: tests/qtest/virtio-9p-test.c
  1932. F: tests/qtest/libqos/virtio-9p*
  1933. T: git https://gitlab.com/gkurz/qemu.git 9p-next
  1934. T: git https://github.com/cschoenebeck/qemu.git 9p.next
  1935. virtio-9p-proxy
  1936. F: hw/9pfs/9p-proxy*
  1937. F: fsdev/virtfs-proxy-helper.c
  1938. F: docs/tools/virtfs-proxy-helper.rst
  1939. S: Obsolete
  1940. virtio-blk
  1941. M: Stefan Hajnoczi <stefanha@redhat.com>
  1942. L: qemu-block@nongnu.org
  1943. S: Supported
  1944. F: hw/block/virtio-blk-common.c
  1945. F: hw/block/virtio-blk.c
  1946. F: hw/block/dataplane/*
  1947. F: include/hw/virtio/virtio-blk-common.h
  1948. F: tests/qtest/virtio-blk-test.c
  1949. T: git https://github.com/stefanha/qemu.git block
  1950. virtio-ccw
  1951. M: Cornelia Huck <cohuck@redhat.com>
  1952. M: Halil Pasic <pasic@linux.ibm.com>
  1953. M: Eric Farman <farman@linux.ibm.com>
  1954. S: Supported
  1955. F: hw/s390x/virtio-ccw*.[hc]
  1956. F: hw/s390x/vhost-*-ccw.c
  1957. T: git https://gitlab.com/cohuck/qemu.git s390-next
  1958. T: git https://github.com/borntraeger/qemu.git s390-next
  1959. L: qemu-s390x@nongnu.org
  1960. virtiofs
  1961. M: Stefan Hajnoczi <stefanha@redhat.com>
  1962. S: Supported
  1963. F: hw/virtio/vhost-user-fs*
  1964. F: include/hw/virtio/vhost-user-fs.h
  1965. L: virtio-fs@redhat.com
  1966. virtio-input
  1967. M: Gerd Hoffmann <kraxel@redhat.com>
  1968. S: Odd Fixes
  1969. F: hw/input/vhost-user-input.c
  1970. F: hw/input/virtio-input*.c
  1971. F: include/hw/virtio/virtio-input.h
  1972. F: contrib/vhost-user-input/*
  1973. virtio-iommu
  1974. M: Eric Auger <eric.auger@redhat.com>
  1975. S: Maintained
  1976. F: hw/virtio/virtio-iommu*.c
  1977. F: include/hw/virtio/virtio-iommu.h
  1978. virtio-serial
  1979. M: Laurent Vivier <lvivier@redhat.com>
  1980. R: Amit Shah <amit@kernel.org>
  1981. S: Supported
  1982. F: hw/char/virtio-serial-bus.c
  1983. F: hw/char/virtio-console.c
  1984. F: include/hw/virtio/virtio-serial.h
  1985. F: tests/qtest/virtio-serial-test.c
  1986. virtio-rng
  1987. M: Laurent Vivier <lvivier@redhat.com>
  1988. R: Amit Shah <amit@kernel.org>
  1989. S: Supported
  1990. F: hw/virtio/virtio-rng.c
  1991. F: include/hw/virtio/virtio-rng.h
  1992. F: include/sysemu/rng*.h
  1993. F: backends/rng*.c
  1994. F: tests/qtest/virtio-rng-test.c
  1995. vhost-user-rng
  1996. M: Mathieu Poirier <mathieu.poirier@linaro.org>
  1997. S: Supported
  1998. F: docs/system/devices/vhost-user-rng.rst
  1999. F: hw/virtio/vhost-user-rng.c
  2000. F: hw/virtio/vhost-user-rng-pci.c
  2001. F: include/hw/virtio/vhost-user-rng.h
  2002. F: tools/vhost-user-rng/*
  2003. vhost-user-gpio
  2004. M: Alex Bennée <alex.bennee@linaro.org>
  2005. R: Viresh Kumar <viresh.kumar@linaro.org>
  2006. S: Maintained
  2007. F: hw/virtio/vhost-user-gpio*
  2008. F: include/hw/virtio/vhost-user-gpio.h
  2009. F: tests/qtest/libqos/virtio-gpio.*
  2010. vhost-user-scmi
  2011. R: mzamazal@redhat.com
  2012. S: Supported
  2013. F: hw/virtio/vhost-user-scmi*
  2014. F: include/hw/virtio/vhost-user-scmi.h
  2015. F: tests/qtest/libqos/virtio-scmi.*
  2016. virtio-crypto
  2017. M: Gonglei <arei.gonglei@huawei.com>
  2018. S: Supported
  2019. F: hw/virtio/virtio-crypto.c
  2020. F: hw/virtio/virtio-crypto-pci.c
  2021. F: include/hw/virtio/virtio-crypto.h
  2022. virtio based memory device
  2023. M: David Hildenbrand <david@redhat.com>
  2024. S: Supported
  2025. F: hw/virtio/virtio-md-pci.c
  2026. F: include/hw/virtio/virtio-md-pci.h
  2027. F: stubs/virtio-md-pci.c
  2028. virtio-mem
  2029. M: David Hildenbrand <david@redhat.com>
  2030. S: Supported
  2031. W: https://virtio-mem.gitlab.io/
  2032. F: hw/virtio/virtio-mem.c
  2033. F: hw/virtio/virtio-mem-pci.h
  2034. F: hw/virtio/virtio-mem-pci.c
  2035. F: include/hw/virtio/virtio-mem.h
  2036. nvme
  2037. M: Keith Busch <kbusch@kernel.org>
  2038. M: Klaus Jensen <its@irrelevant.dk>
  2039. L: qemu-block@nongnu.org
  2040. S: Supported
  2041. F: hw/nvme/*
  2042. F: include/block/nvme.h
  2043. F: tests/qtest/nvme-test.c
  2044. F: docs/system/devices/nvme.rst
  2045. T: git git://git.infradead.org/qemu-nvme.git nvme-next
  2046. ufs
  2047. M: Jeuk Kim <jeuk20.kim@samsung.com>
  2048. S: Supported
  2049. F: hw/ufs/*
  2050. F: include/block/ufs.h
  2051. F: tests/qtest/ufs-test.c
  2052. megasas
  2053. M: Hannes Reinecke <hare@suse.com>
  2054. L: qemu-block@nongnu.org
  2055. S: Supported
  2056. F: hw/scsi/megasas.c
  2057. F: hw/scsi/mfi.h
  2058. F: tests/qtest/megasas-test.c
  2059. F: tests/qtest/fuzz-megasas-test.c
  2060. Network packet abstractions
  2061. M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
  2062. R: Akihiko Odaki <akihiko.odaki@daynix.com>
  2063. S: Maintained
  2064. F: include/net/eth.h
  2065. F: net/eth.c
  2066. F: hw/net/net_rx_pkt*
  2067. F: hw/net/net_tx_pkt*
  2068. Vmware
  2069. M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
  2070. S: Maintained
  2071. F: hw/net/vmxnet*
  2072. F: hw/scsi/vmw_pvscsi*
  2073. F: tests/qtest/vmxnet3-test.c
  2074. Rocker
  2075. M: Jiri Pirko <jiri@resnulli.us>
  2076. S: Maintained
  2077. F: hw/net/rocker/
  2078. F: qapi/rocker.json
  2079. F: tests/rocker/
  2080. F: docs/specs/rocker.txt
  2081. e1000x
  2082. M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
  2083. R: Akihiko Odaki <akihiko.odaki@daynix.com>
  2084. S: Maintained
  2085. F: hw/net/e1000x*
  2086. e1000e
  2087. M: Dmitry Fleytman <dmitry.fleytman@gmail.com>
  2088. R: Akihiko Odaki <akihiko.odaki@daynix.com>
  2089. S: Maintained
  2090. F: hw/net/e1000e*
  2091. F: tests/qtest/fuzz-e1000e-test.c
  2092. F: tests/qtest/e1000e-test.c
  2093. F: tests/qtest/libqos/e1000e.*
  2094. igb
  2095. M: Akihiko Odaki <akihiko.odaki@daynix.com>
  2096. R: Sriram Yagnaraman <sriram.yagnaraman@est.tech>
  2097. S: Maintained
  2098. F: docs/system/devices/igb.rst
  2099. F: hw/net/igb*
  2100. F: tests/avocado/netdev-ethtool.py
  2101. F: tests/qtest/igb-test.c
  2102. F: tests/qtest/libqos/igb.c
  2103. eepro100
  2104. M: Stefan Weil <sw@weilnetz.de>
  2105. S: Maintained
  2106. F: hw/net/eepro100.c
  2107. tulip
  2108. M: Sven Schnelle <svens@stackframe.org>
  2109. S: Maintained
  2110. F: hw/net/tulip.c
  2111. F: hw/net/tulip.h
  2112. pca954x
  2113. M: Patrick Venture <venture@google.com>
  2114. S: Maintained
  2115. F: hw/i2c/i2c_mux_pca954x.c
  2116. F: include/hw/i2c/i2c_mux_pca954x.h
  2117. Generic Loader
  2118. M: Alistair Francis <alistair@alistair23.me>
  2119. S: Maintained
  2120. F: hw/core/generic-loader.c
  2121. F: hw/core/uboot_image.h
  2122. F: include/hw/core/generic-loader.h
  2123. F: docs/system/generic-loader.rst
  2124. Guest Loader
  2125. M: Alex Bennée <alex.bennee@linaro.org>
  2126. S: Maintained
  2127. F: hw/core/guest-loader.c
  2128. F: docs/system/guest-loader.rst
  2129. F: tests/avocado/boot_xen.py
  2130. Intel Hexadecimal Object File Loader
  2131. M: Su Hang <suhang16@mails.ucas.ac.cn>
  2132. S: Maintained
  2133. F: tests/qtest/hexloader-test.c
  2134. F: tests/data/hex-loader/test.hex
  2135. CHRP NVRAM
  2136. M: Thomas Huth <thuth@redhat.com>
  2137. S: Maintained
  2138. F: hw/nvram/chrp_nvram.c
  2139. F: include/hw/nvram/chrp_nvram.h
  2140. F: tests/qtest/prom-env-test.c
  2141. VM Generation ID
  2142. S: Orphan
  2143. R: Ani Sinha <ani@anisinha.ca>
  2144. F: hw/acpi/vmgenid.c
  2145. F: include/hw/acpi/vmgenid.h
  2146. F: docs/specs/vmgenid.txt
  2147. F: tests/qtest/vmgenid-test.c
  2148. LED
  2149. M: Philippe Mathieu-Daudé <philmd@linaro.org>
  2150. S: Maintained
  2151. F: include/hw/misc/led.h
  2152. F: hw/misc/led.c
  2153. Unimplemented device
  2154. M: Peter Maydell <peter.maydell@linaro.org>
  2155. R: Philippe Mathieu-Daudé <philmd@linaro.org>
  2156. R: Ani Sinha <ani@anisinha.ca>
  2157. S: Maintained
  2158. F: include/hw/misc/unimp.h
  2159. F: hw/misc/unimp.c
  2160. Empty slot
  2161. M: Artyom Tarasenko <atar4qemu@gmail.com>
  2162. R: Philippe Mathieu-Daudé <philmd@linaro.org>
  2163. R: Ani Sinha <ani@anisinha.ca>
  2164. S: Maintained
  2165. F: include/hw/misc/empty_slot.h
  2166. F: hw/misc/empty_slot.c
  2167. Standard VGA
  2168. M: Gerd Hoffmann <kraxel@redhat.com>
  2169. S: Maintained
  2170. F: hw/display/vga*
  2171. F: hw/display/bochs-display.c
  2172. F: include/hw/display/vga.h
  2173. F: include/hw/display/bochs-vbe.h
  2174. ramfb
  2175. M: Gerd Hoffmann <kraxel@redhat.com>
  2176. S: Maintained
  2177. F: hw/display/ramfb*.c
  2178. F: include/hw/display/ramfb.h
  2179. virtio-gpu
  2180. M: Gerd Hoffmann <kraxel@redhat.com>
  2181. S: Odd Fixes
  2182. F: hw/display/virtio-gpu*
  2183. F: hw/display/virtio-vga.*
  2184. F: include/hw/virtio/virtio-gpu.h
  2185. vhost-user-blk
  2186. M: Raphael Norwitz <raphael.norwitz@nutanix.com>
  2187. S: Maintained
  2188. F: contrib/vhost-user-blk/
  2189. F: contrib/vhost-user-scsi/
  2190. F: hw/block/vhost-user-blk.c
  2191. F: hw/block/virtio-blk-common.c
  2192. F: hw/scsi/vhost-user-scsi.c
  2193. F: hw/virtio/vhost-user-blk-pci.c
  2194. F: hw/virtio/vhost-user-scsi-pci.c
  2195. F: include/hw/virtio/vhost-user-blk.h
  2196. F: include/hw/virtio/vhost-user-scsi.h
  2197. F: include/hw/virtio/virtio-blk-common.h
  2198. vhost-user-gpu
  2199. M: Marc-André Lureau <marcandre.lureau@redhat.com>
  2200. R: Gerd Hoffmann <kraxel@redhat.com>
  2201. S: Maintained
  2202. F: docs/interop/vhost-user-gpu.rst
  2203. F: contrib/vhost-user-gpu
  2204. F: hw/display/vhost-user-*
  2205. Cirrus VGA
  2206. M: Gerd Hoffmann <kraxel@redhat.com>
  2207. S: Odd Fixes
  2208. W: https://www.kraxel.org/blog/2014/10/qemu-using-cirrus-considered-harmful/
  2209. F: hw/display/cirrus*
  2210. EDID Generator
  2211. M: Gerd Hoffmann <kraxel@redhat.com>
  2212. S: Maintained
  2213. F: hw/display/edid*
  2214. F: include/hw/display/edid.h
  2215. F: qemu-edid.c
  2216. PIIX4 South Bridge (i82371AB)
  2217. M: Hervé Poussineau <hpoussin@reactos.org>
  2218. M: Philippe Mathieu-Daudé <philmd@linaro.org>
  2219. S: Maintained
  2220. F: hw/isa/piix4.c
  2221. F: include/hw/southbridge/piix.h
  2222. Firmware configuration (fw_cfg)
  2223. M: Philippe Mathieu-Daudé <philmd@linaro.org>
  2224. R: Gerd Hoffmann <kraxel@redhat.com>
  2225. S: Supported
  2226. F: docs/specs/fw_cfg.txt
  2227. F: hw/nvram/fw_cfg*.c
  2228. F: stubs/fw_cfg.c
  2229. F: include/hw/nvram/fw_cfg.h
  2230. F: include/standard-headers/linux/qemu_fw_cfg.h
  2231. F: tests/qtest/libqos/fw_cfg.c
  2232. F: tests/qtest/fw_cfg-test.c
  2233. T: git https://github.com/philmd/qemu.git fw_cfg-next
  2234. XIVE
  2235. M: Cédric Le Goater <clg@kaod.org>
  2236. R: Frédéric Barrat <fbarrat@linux.ibm.com>
  2237. L: qemu-ppc@nongnu.org
  2238. S: Odd Fixes
  2239. F: hw/*/*xive*
  2240. F: include/hw/*/*xive*
  2241. F: docs/*/*xive*
  2242. Renesas peripherals
  2243. R: Yoshinori Sato <ysato@users.sourceforge.jp>
  2244. R: Magnus Damm <magnus.damm@gmail.com>
  2245. S: Odd Fixes
  2246. F: hw/char/renesas_sci.c
  2247. F: hw/char/sh_serial.c
  2248. F: hw/timer/renesas_*.c
  2249. F: hw/timer/sh_timer.c
  2250. F: include/hw/char/renesas_sci.h
  2251. F: include/hw/sh4/sh.h
  2252. F: include/hw/timer/renesas_*.h
  2253. Renesas RX peripherals
  2254. R: Yoshinori Sato <ysato@users.sourceforge.jp>
  2255. S: Orphan
  2256. F: hw/intc/rx_icu.c
  2257. F: hw/rx/
  2258. F: include/hw/intc/rx_icu.h
  2259. F: include/hw/rx/
  2260. CAN bus subsystem and hardware
  2261. M: Pavel Pisa <pisa@cmp.felk.cvut.cz>
  2262. M: Vikram Garhwal <fnu.vikram@xilinx.com>
  2263. S: Maintained
  2264. W: https://canbus.pages.fel.cvut.cz/
  2265. F: net/can/*
  2266. F: hw/net/can/*
  2267. F: include/net/can_*.h
  2268. OpenPIC interrupt controller
  2269. M: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
  2270. S: Odd Fixes
  2271. F: hw/intc/openpic.c
  2272. F: include/hw/ppc/openpic.h
  2273. MIPS CPS
  2274. M: Philippe Mathieu-Daudé <philmd@linaro.org>
  2275. S: Odd Fixes
  2276. F: hw/misc/mips_*
  2277. F: include/hw/misc/mips_*
  2278. MIPS GIC
  2279. M: Philippe Mathieu-Daudé <philmd@linaro.org>
  2280. S: Odd Fixes
  2281. F: hw/intc/mips_gic.c
  2282. F: hw/timer/mips_gictimer.c
  2283. F: include/hw/intc/mips_gic.h
  2284. F: include/hw/timer/mips_gictimer.h
  2285. S390 3270 device
  2286. M: Halil Pasic <pasic@linux.ibm.com>
  2287. M: Christian Borntraeger <borntraeger@linux.ibm.com>
  2288. S: Odd fixes
  2289. F: include/hw/s390x/3270-ccw.h
  2290. F: hw/char/terminal3270.c
  2291. F: hw/s390x/3270-ccw.c
  2292. L: qemu-s390x@nongnu.org
  2293. S390 diag 288 watchdog
  2294. M: Halil Pasic <pasic@linux.ibm.com>
  2295. M: Christian Borntraeger <borntraeger@linux.ibm.com>
  2296. S: Supported
  2297. F: hw/watchdog/wdt_diag288.c
  2298. F: include/hw/watchdog/wdt_diag288.h
  2299. L: qemu-s390x@nongnu.org
  2300. S390 storage key device
  2301. M: Halil Pasic <pasic@linux.ibm.com>
  2302. M: Christian Borntraeger <borntraeger@linux.ibm.com>
  2303. S: Supported
  2304. F: hw/s390x/storage-keys.h
  2305. F: hw/390x/s390-skeys*.c
  2306. L: qemu-s390x@nongnu.org
  2307. S390 storage attribute device
  2308. M: Halil Pasic <pasic@linux.ibm.com>
  2309. M: Christian Borntraeger <borntraeger@linux.ibm.com>
  2310. S: Supported
  2311. F: hw/s390x/storage-attributes.h
  2312. F: hw/s390/s390-stattrib*.c
  2313. L: qemu-s390x@nongnu.org
  2314. S390 floating interrupt controller
  2315. M: Halil Pasic <pasic@linux.ibm.com>
  2316. M: Christian Borntraeger <borntraeger@linux.ibm.com>
  2317. M: David Hildenbrand <david@redhat.com>
  2318. S: Supported
  2319. F: hw/intc/s390_flic*.c
  2320. F: include/hw/s390x/s390_flic.h
  2321. L: qemu-s390x@nongnu.org
  2322. CanoKey
  2323. M: Hongren (Zenithal) Zheng <i@zenithal.me>
  2324. S: Maintained
  2325. R: Canokeys.org <contact@canokeys.org>
  2326. F: hw/usb/canokey.c
  2327. F: hw/usb/canokey.h
  2328. F: docs/system/devices/canokey.rst
  2329. Subsystems
  2330. ----------
  2331. Overall Audio backends
  2332. M: Gerd Hoffmann <kraxel@redhat.com>
  2333. M: Marc-André Lureau <marcandre.lureau@redhat.com>
  2334. S: Odd Fixes
  2335. F: audio/
  2336. X: audio/alsaaudio.c
  2337. X: audio/coreaudio.c
  2338. X: audio/dsound*
  2339. X: audio/jackaudio.c
  2340. X: audio/ossaudio.c
  2341. X: audio/paaudio.c
  2342. X: audio/sdlaudio.c
  2343. X: audio/sndioaudio.c
  2344. X: audio/spiceaudio.c
  2345. F: qapi/audio.json
  2346. ALSA Audio backend
  2347. M: Gerd Hoffmann <kraxel@redhat.com>
  2348. R: Christian Schoenebeck <qemu_oss@crudebyte.com>
  2349. S: Odd Fixes
  2350. F: audio/alsaaudio.c
  2351. Core Audio framework backend
  2352. M: Gerd Hoffmann <kraxel@redhat.com>
  2353. M: Philippe Mathieu-Daudé <philmd@linaro.org>
  2354. R: Christian Schoenebeck <qemu_oss@crudebyte.com>
  2355. R: Akihiko Odaki <akihiko.odaki@daynix.com>
  2356. S: Odd Fixes
  2357. F: audio/coreaudio.c
  2358. DSound Audio backend
  2359. M: Gerd Hoffmann <kraxel@redhat.com>
  2360. S: Odd Fixes
  2361. F: audio/dsound*
  2362. JACK Audio Connection Kit backend
  2363. M: Gerd Hoffmann <kraxel@redhat.com>
  2364. R: Christian Schoenebeck <qemu_oss@crudebyte.com>
  2365. S: Odd Fixes
  2366. F: audio/jackaudio.c
  2367. Open Sound System (OSS) Audio backend
  2368. M: Gerd Hoffmann <kraxel@redhat.com>
  2369. S: Odd Fixes
  2370. F: audio/ossaudio.c
  2371. PulseAudio backend
  2372. M: Gerd Hoffmann <kraxel@redhat.com>
  2373. S: Odd Fixes
  2374. F: audio/paaudio.c
  2375. SDL Audio backend
  2376. M: Gerd Hoffmann <kraxel@redhat.com>
  2377. R: Thomas Huth <huth@tuxfamily.org>
  2378. S: Odd Fixes
  2379. F: audio/sdlaudio.c
  2380. Sndio Audio backend
  2381. M: Gerd Hoffmann <kraxel@redhat.com>
  2382. R: Alexandre Ratchov <alex@caoua.org>
  2383. S: Odd Fixes
  2384. F: audio/sndioaudio.c
  2385. Block layer core
  2386. M: Kevin Wolf <kwolf@redhat.com>
  2387. M: Hanna Reitz <hreitz@redhat.com>
  2388. L: qemu-block@nongnu.org
  2389. S: Supported
  2390. F: block*
  2391. F: block/
  2392. F: hw/block/
  2393. F: qapi/block*.json
  2394. F: qapi/transaction.json
  2395. F: include/block/
  2396. F: include/sysemu/block-*.h
  2397. F: qemu-img*
  2398. F: docs/tools/qemu-img.rst
  2399. F: qemu-io*
  2400. F: tests/qemu-iotests/
  2401. F: util/qemu-progress.c
  2402. F: qobject/block-qdict.c
  2403. F: tests/unit/check-block-qdict.c
  2404. T: git https://repo.or.cz/qemu/kevin.git block
  2405. Storage daemon
  2406. M: Kevin Wolf <kwolf@redhat.com>
  2407. L: qemu-block@nongnu.org
  2408. S: Supported
  2409. F: storage-daemon/
  2410. F: docs/interop/qemu-storage-daemon-qmp-ref.rst
  2411. F: docs/tools/qemu-storage-daemon.rst
  2412. T: git https://repo.or.cz/qemu/kevin.git block
  2413. Block I/O path
  2414. M: Stefan Hajnoczi <stefanha@redhat.com>
  2415. M: Fam Zheng <fam@euphon.net>
  2416. L: qemu-block@nongnu.org
  2417. S: Supported
  2418. F: util/async.c
  2419. F: util/aio-*.c
  2420. F: util/aio-*.h
  2421. F: util/fdmon-*.c
  2422. F: block/io.c
  2423. F: block/plug.c
  2424. F: migration/block*
  2425. F: include/block/aio.h
  2426. F: include/block/aio-wait.h
  2427. F: scripts/qemugdb/aio.py
  2428. F: tests/unit/test-fdmon-epoll.c
  2429. T: git https://github.com/stefanha/qemu.git block
  2430. Block SCSI subsystem
  2431. M: Paolo Bonzini <pbonzini@redhat.com>
  2432. R: Fam Zheng <fam@euphon.net>
  2433. L: qemu-block@nongnu.org
  2434. S: Supported
  2435. F: include/scsi/*
  2436. F: scsi/*
  2437. Block Jobs
  2438. M: John Snow <jsnow@redhat.com>
  2439. M: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
  2440. L: qemu-block@nongnu.org
  2441. S: Supported
  2442. F: blockjob.c
  2443. F: include/block/blockjob.h
  2444. F: job.c
  2445. F: job-qmp.c
  2446. F: include/qemu/job.h
  2447. F: block/backup.c
  2448. F: block/commit.c
  2449. F: block/stream.c
  2450. F: block/mirror.c
  2451. F: qapi/job.json
  2452. F: block/block-copy.c
  2453. F: include/block/block-copy.h
  2454. F: block/reqlist.c
  2455. F: include/block/reqlist.h
  2456. F: block/copy-before-write.h
  2457. F: block/copy-before-write.c
  2458. F: block/snapshot-access.c
  2459. F: include/block/aio_task.h
  2460. F: block/aio_task.c
  2461. F: util/qemu-co-shared-resource.c
  2462. F: include/qemu/co-shared-resource.h
  2463. T: git https://gitlab.com/jsnow/qemu.git jobs
  2464. T: git https://gitlab.com/vsementsov/qemu.git block
  2465. Compute Express Link
  2466. M: Jonathan Cameron <jonathan.cameron@huawei.com>
  2467. R: Fan Ni <fan.ni@samsung.com>
  2468. S: Supported
  2469. F: hw/cxl/
  2470. F: hw/mem/cxl_type3.c
  2471. F: include/hw/cxl/
  2472. Dirty Bitmaps
  2473. M: Eric Blake <eblake@redhat.com>
  2474. M: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
  2475. R: John Snow <jsnow@redhat.com>
  2476. L: qemu-block@nongnu.org
  2477. S: Supported
  2478. F: include/qemu/hbitmap.h
  2479. F: include/block/dirty-bitmap.h
  2480. F: block/monitor/bitmap-qmp-cmds.c
  2481. F: block/dirty-bitmap.c
  2482. F: block/qcow2-bitmap.c
  2483. F: migration/block-dirty-bitmap.c
  2484. F: util/hbitmap.c
  2485. F: tests/unit/test-hbitmap.c
  2486. F: docs/interop/bitmaps.rst
  2487. T: git https://repo.or.cz/qemu/ericb.git bitmaps
  2488. T: git https://gitlab.com/vsementsov/qemu.git block
  2489. Character device backends
  2490. M: Marc-André Lureau <marcandre.lureau@redhat.com>
  2491. R: Paolo Bonzini <pbonzini@redhat.com>
  2492. S: Maintained
  2493. F: chardev/
  2494. F: include/chardev/
  2495. F: qapi/char.json
  2496. Character Devices (Braille)
  2497. M: Samuel Thibault <samuel.thibault@ens-lyon.org>
  2498. S: Maintained
  2499. F: chardev/baum.c
  2500. Command line option argument parsing
  2501. M: Markus Armbruster <armbru@redhat.com>
  2502. S: Supported
  2503. F: include/qemu/option.h
  2504. F: tests/unit/test-keyval.c
  2505. F: tests/unit/test-qemu-opts.c
  2506. F: util/keyval.c
  2507. F: util/qemu-option.c
  2508. Coverity model
  2509. M: Markus Armbruster <armbru@redhat.com>
  2510. S: Supported
  2511. F: scripts/coverity-model.c
  2512. Coverity Scan integration
  2513. M: Peter Maydell <peter.maydell@linaro.org>
  2514. S: Maintained
  2515. F: scripts/coverity-scan/
  2516. Device Tree
  2517. M: Alistair Francis <alistair.francis@wdc.com>
  2518. R: David Gibson <david@gibson.dropbear.id.au>
  2519. S: Maintained
  2520. F: softmmu/device_tree.c
  2521. F: include/sysemu/device_tree.h
  2522. Dump
  2523. S: Supported
  2524. M: Marc-André Lureau <marcandre.lureau@redhat.com>
  2525. F: dump/
  2526. F: hw/misc/vmcoreinfo.c
  2527. F: include/hw/misc/vmcoreinfo.h
  2528. F: include/qemu/win_dump_defs
  2529. F: include/sysemu/dump-arch.h
  2530. F: include/sysemu/dump.h
  2531. F: qapi/dump.json
  2532. F: scripts/dump-guest-memory.py
  2533. F: stubs/dump.c
  2534. Error reporting
  2535. M: Markus Armbruster <armbru@redhat.com>
  2536. S: Supported
  2537. F: include/qapi/error.h
  2538. F: include/qemu/error-report.h
  2539. F: qapi/error.json
  2540. F: util/error.c
  2541. F: util/qemu-error.c
  2542. F: scripts/coccinelle/err-bad-newline.cocci
  2543. F: scripts/coccinelle/error-use-after-free.cocci
  2544. F: scripts/coccinelle/error_propagate_null.cocci
  2545. F: scripts/coccinelle/remove_local_err.cocci
  2546. F: scripts/coccinelle/use-error_fatal.cocci
  2547. F: scripts/coccinelle/errp-guard.cocci
  2548. GDB stub
  2549. M: Alex Bennée <alex.bennee@linaro.org>
  2550. R: Philippe Mathieu-Daudé <philmd@linaro.org>
  2551. S: Maintained
  2552. F: docs/system/gdb.rst
  2553. F: gdbstub/*
  2554. F: include/exec/gdbstub.h
  2555. F: include/gdbstub/*
  2556. F: gdb-xml/
  2557. F: tests/tcg/multiarch/gdbstub/
  2558. F: scripts/feature_to_c.sh
  2559. F: scripts/probe-gdb-support.py
  2560. Memory API
  2561. M: Paolo Bonzini <pbonzini@redhat.com>
  2562. M: Peter Xu <peterx@redhat.com>
  2563. M: David Hildenbrand <david@redhat.com>
  2564. R: Philippe Mathieu-Daudé <philmd@linaro.org>
  2565. S: Supported
  2566. F: include/exec/ioport.h
  2567. F: include/exec/memop.h
  2568. F: include/exec/memory.h
  2569. F: include/exec/ram_addr.h
  2570. F: include/exec/ramblock.h
  2571. F: include/sysemu/memory_mapping.h
  2572. F: softmmu/dma-helpers.c
  2573. F: softmmu/ioport.c
  2574. F: softmmu/memory.c
  2575. F: softmmu/memory_mapping.c
  2576. F: softmmu/physmem.c
  2577. F: include/exec/memory-internal.h
  2578. F: scripts/coccinelle/memory-region-housekeeping.cocci
  2579. Memory devices
  2580. M: David Hildenbrand <david@redhat.com>
  2581. M: Igor Mammedov <imammedo@redhat.com>
  2582. R: Xiao Guangrong <xiaoguangrong.eric@gmail.com>
  2583. S: Supported
  2584. F: hw/mem/memory-device.c
  2585. F: hw/mem/nvdimm.c
  2586. F: hw/mem/pc-dimm.c
  2587. F: include/hw/mem/memory-device.h
  2588. F: include/hw/mem/nvdimm.h
  2589. F: include/hw/mem/pc-dimm.h
  2590. F: docs/nvdimm.txt
  2591. SPICE
  2592. M: Gerd Hoffmann <kraxel@redhat.com>
  2593. S: Odd Fixes
  2594. F: include/ui/qemu-spice.h
  2595. F: include/ui/spice-display.h
  2596. F: ui/spice-*.c
  2597. F: audio/spiceaudio.c
  2598. F: hw/display/qxl*
  2599. F: qapi/ui.json
  2600. F: docs/spice-port-fqdn.txt
  2601. Graphics
  2602. M: Gerd Hoffmann <kraxel@redhat.com>
  2603. M: Marc-André Lureau <marcandre.lureau@redhat.com>
  2604. S: Odd Fixes
  2605. F: ui/
  2606. F: include/ui/
  2607. F: qapi/ui.json
  2608. F: util/drm.c
  2609. F: docs/devel/ui.rst
  2610. Cocoa graphics
  2611. M: Peter Maydell <peter.maydell@linaro.org>
  2612. M: Philippe Mathieu-Daudé <philmd@linaro.org>
  2613. R: Akihiko Odaki <akihiko.odaki@daynix.com>
  2614. S: Odd Fixes
  2615. F: ui/cocoa.m
  2616. Main loop
  2617. M: Paolo Bonzini <pbonzini@redhat.com>
  2618. S: Maintained
  2619. F: include/qemu/main-loop.h
  2620. F: include/sysemu/runstate.h
  2621. F: include/sysemu/runstate-action.h
  2622. F: util/main-loop.c
  2623. F: util/qemu-timer.c
  2624. F: softmmu/vl.c
  2625. F: softmmu/main.c
  2626. F: softmmu/cpus.c
  2627. F: softmmu/cpu-throttle.c
  2628. F: softmmu/cpu-timers.c
  2629. F: softmmu/icount.c
  2630. F: softmmu/runstate*
  2631. F: qapi/run-state.json
  2632. Read, Copy, Update (RCU)
  2633. M: Paolo Bonzini <pbonzini@redhat.com>
  2634. S: Maintained
  2635. F: docs/devel/lockcnt.txt
  2636. F: docs/devel/rcu.txt
  2637. F: include/qemu/rcu*.h
  2638. F: tests/unit/rcutorture.c
  2639. F: tests/unit/test-rcu-*.c
  2640. F: util/rcu.c
  2641. Human Monitor (HMP)
  2642. M: Dr. David Alan Gilbert <dave@treblig.org>
  2643. S: Maintained
  2644. F: monitor/monitor-internal.h
  2645. F: monitor/misc.c
  2646. F: monitor/monitor.c
  2647. F: monitor/hmp*
  2648. F: hmp.h
  2649. F: hmp-commands*.hx
  2650. F: include/monitor/hmp-target.h
  2651. F: tests/qtest/test-hmp.c
  2652. F: include/qemu/qemu-print.h
  2653. F: util/qemu-print.c
  2654. Network device backends
  2655. M: Jason Wang <jasowang@redhat.com>
  2656. S: Maintained
  2657. F: net/
  2658. F: include/net/
  2659. F: qemu-bridge-helper.c
  2660. T: git https://github.com/jasowang/qemu.git net
  2661. F: qapi/net.json
  2662. Netmap network backend
  2663. M: Luigi Rizzo <rizzo@iet.unipi.it>
  2664. M: Giuseppe Lettieri <g.lettieri@iet.unipi.it>
  2665. M: Vincenzo Maffione <v.maffione@gmail.com>
  2666. W: http://info.iet.unipi.it/~luigi/netmap/
  2667. S: Maintained
  2668. F: net/netmap.c
  2669. AF_XDP network backend
  2670. R: Ilya Maximets <i.maximets@ovn.org>
  2671. F: net/af-xdp.c
  2672. Host Memory Backends
  2673. M: David Hildenbrand <david@redhat.com>
  2674. M: Igor Mammedov <imammedo@redhat.com>
  2675. S: Maintained
  2676. F: backends/hostmem*.c
  2677. F: include/sysemu/hostmem.h
  2678. T: git https://gitlab.com/ehabkost/qemu.git machine-next
  2679. Cryptodev Backends
  2680. M: Gonglei <arei.gonglei@huawei.com>
  2681. M: zhenwei pi <pizhenwei@bytedance.com>
  2682. S: Maintained
  2683. F: include/sysemu/cryptodev*.h
  2684. F: backends/cryptodev*.c
  2685. F: qapi/cryptodev.json
  2686. Python library
  2687. M: John Snow <jsnow@redhat.com>
  2688. M: Cleber Rosa <crosa@redhat.com>
  2689. R: Beraldo Leal <bleal@redhat.com>
  2690. S: Maintained
  2691. F: python/
  2692. T: git https://gitlab.com/jsnow/qemu.git python
  2693. Python scripts
  2694. M: John Snow <jsnow@redhat.com>
  2695. M: Cleber Rosa <crosa@redhat.com>
  2696. S: Odd Fixes
  2697. F: scripts/*.py
  2698. F: tests/*.py
  2699. Benchmark util
  2700. M: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
  2701. S: Maintained
  2702. F: scripts/simplebench/
  2703. T: git https://gitlab.com/vsementsov/qemu.git simplebench
  2704. Transactions helper
  2705. M: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
  2706. S: Maintained
  2707. F: include/qemu/transactions.h
  2708. F: util/transactions.c
  2709. T: git https://gitlab.com/vsementsov/qemu.git block
  2710. QAPI
  2711. M: Markus Armbruster <armbru@redhat.com>
  2712. M: Michael Roth <michael.roth@amd.com>
  2713. S: Supported
  2714. F: qapi/
  2715. X: qapi/*.json
  2716. F: include/qapi/
  2717. X: include/qapi/qmp/
  2718. F: include/qapi/qmp/dispatch.h
  2719. F: tests/qapi-schema/
  2720. F: tests/unit/test-*-visitor.c
  2721. F: tests/unit/test-qapi-*.c
  2722. F: tests/unit/test-qmp-*.c
  2723. F: tests/unit/test-visitor-serialization.c
  2724. F: scripts/qapi-gen.py
  2725. F: scripts/qapi/*
  2726. F: docs/sphinx/qapidoc.py
  2727. F: docs/devel/qapi*
  2728. T: git https://repo.or.cz/qemu/armbru.git qapi-next
  2729. QAPI Schema
  2730. M: Eric Blake <eblake@redhat.com>
  2731. M: Markus Armbruster <armbru@redhat.com>
  2732. S: Supported
  2733. F: qapi/*.json
  2734. T: git https://repo.or.cz/qemu/armbru.git qapi-next
  2735. QObject
  2736. M: Markus Armbruster <armbru@redhat.com>
  2737. S: Supported
  2738. F: qobject/
  2739. F: include/qapi/qmp/
  2740. X: include/qapi/qmp/dispatch.h
  2741. F: scripts/coccinelle/qobject.cocci
  2742. F: tests/unit/check-qdict.c
  2743. F: tests/unit/check-qjson.c
  2744. F: tests/unit/check-qlist.c
  2745. F: tests/unit/check-qlit.c
  2746. F: tests/unit/check-qnull.c
  2747. F: tests/unit/check-qnum.c
  2748. F: tests/unit/check-qobject.c
  2749. F: tests/unit/check-qstring.c
  2750. F: tests/data/qobject/qdict.txt
  2751. T: git https://repo.or.cz/qemu/armbru.git qapi-next
  2752. QEMU Guest Agent
  2753. M: Michael Roth <michael.roth@amd.com>
  2754. M: Konstantin Kostiuk <kkostiuk@redhat.com>
  2755. S: Maintained
  2756. F: qga/
  2757. F: docs/interop/qemu-ga.rst
  2758. F: docs/interop/qemu-ga-ref.rst
  2759. F: scripts/qemu-guest-agent/
  2760. F: tests/unit/test-qga.c
  2761. T: git https://github.com/mdroth/qemu.git qga
  2762. QEMU Guest Agent Win32
  2763. M: Konstantin Kostiuk <kkostiuk@redhat.com>
  2764. S: Maintained
  2765. F: qga/*win32*
  2766. F: qga/vss-win32/
  2767. F: qga/installer/
  2768. T: git https://github.com/kostyanf14/qemu.git qga-win32
  2769. QOM
  2770. M: Paolo Bonzini <pbonzini@redhat.com>
  2771. R: Daniel P. Berrange <berrange@redhat.com>
  2772. R: Eduardo Habkost <eduardo@habkost.net>
  2773. S: Supported
  2774. F: docs/devel/qom.rst
  2775. F: docs/qdev-device-use.txt
  2776. F: hw/core/qdev*
  2777. F: hw/core/bus.c
  2778. F: hw/core/sysbus.c
  2779. F: include/hw/qdev*
  2780. F: include/monitor/qdev.h
  2781. F: include/qom/
  2782. F: qapi/qom.json
  2783. F: qapi/qdev.json
  2784. F: scripts/coccinelle/qom-parent-type.cocci
  2785. F: scripts/qom-cast-macro-clean-cocci-gen.py
  2786. F: softmmu/qdev-monitor.c
  2787. F: stubs/qdev.c
  2788. F: qom/
  2789. F: tests/unit/check-qom-interface.c
  2790. F: tests/unit/check-qom-proplist.c
  2791. F: tests/unit/test-qdev-global-props.c
  2792. QOM boilerplate conversion script
  2793. M: Eduardo Habkost <eduardo@habkost.net>
  2794. S: Maintained
  2795. F: scripts/codeconverter/
  2796. QMP
  2797. M: Markus Armbruster <armbru@redhat.com>
  2798. S: Supported
  2799. F: monitor/monitor-internal.h
  2800. F: monitor/qmp*
  2801. F: monitor/misc.c
  2802. F: monitor/monitor.c
  2803. F: qapi/control.json
  2804. F: qapi/error.json
  2805. F: qapi/introspect.json
  2806. F: docs/devel/*qmp-*
  2807. F: docs/interop/*qmp-*
  2808. F: scripts/qmp/
  2809. F: tests/qtest/qmp-test.c
  2810. F: tests/qtest/qmp-cmd-test.c
  2811. T: git https://repo.or.cz/qemu/armbru.git qapi-next
  2812. qtest
  2813. M: Thomas Huth <thuth@redhat.com>
  2814. M: Laurent Vivier <lvivier@redhat.com>
  2815. R: Paolo Bonzini <pbonzini@redhat.com>
  2816. S: Maintained
  2817. F: softmmu/qtest.c
  2818. F: accel/qtest/
  2819. F: tests/qtest/
  2820. F: docs/devel/qgraph.rst
  2821. F: docs/devel/qtest.rst
  2822. X: tests/qtest/bios-tables-test*
  2823. Device Fuzzing
  2824. M: Alexander Bulekov <alxndr@bu.edu>
  2825. R: Paolo Bonzini <pbonzini@redhat.com>
  2826. R: Bandan Das <bsd@redhat.com>
  2827. R: Stefan Hajnoczi <stefanha@redhat.com>
  2828. R: Thomas Huth <thuth@redhat.com>
  2829. R: Darren Kenny <darren.kenny@oracle.com>
  2830. R: Qiuhao Li <Qiuhao.Li@outlook.com>
  2831. S: Maintained
  2832. F: tests/qtest/fuzz/
  2833. F: tests/qtest/fuzz-*test.c
  2834. F: tests/docker/test-fuzz
  2835. F: scripts/oss-fuzz/
  2836. F: hw/mem/sparse-mem.c
  2837. F: docs/devel/fuzzing.rst
  2838. Register API
  2839. M: Alistair Francis <alistair@alistair23.me>
  2840. S: Maintained
  2841. F: hw/core/register.c
  2842. F: include/hw/register.h
  2843. F: include/hw/registerfields.h
  2844. SLIRP
  2845. M: Samuel Thibault <samuel.thibault@ens-lyon.org>
  2846. S: Maintained
  2847. F: net/slirp.c
  2848. F: include/net/slirp.h
  2849. T: git https://people.debian.org/~sthibault/qemu.git slirp
  2850. Stats
  2851. S: Orphan
  2852. F: include/sysemu/stats.h
  2853. F: stats/
  2854. Streams
  2855. M: Edgar E. Iglesias <edgar.iglesias@gmail.com>
  2856. S: Maintained
  2857. F: hw/core/stream.c
  2858. F: include/hw/stream.h
  2859. Stubs
  2860. M: Paolo Bonzini <pbonzini@redhat.com>
  2861. S: Maintained
  2862. F: stubs/
  2863. Tracing
  2864. M: Stefan Hajnoczi <stefanha@redhat.com>
  2865. S: Maintained
  2866. F: trace/
  2867. F: trace-events
  2868. F: docs/qemu-option-trace.rst.inc
  2869. F: qapi/trace.json
  2870. F: scripts/tracetool.py
  2871. F: scripts/tracetool/
  2872. F: scripts/qemu-trace-stap*
  2873. F: docs/tools/qemu-trace-stap.rst
  2874. F: docs/devel/tracing.rst
  2875. T: git https://github.com/stefanha/qemu.git tracing
  2876. TPM
  2877. M: Stefan Berger <stefanb@linux.ibm.com>
  2878. S: Maintained
  2879. F: softmmu/tpm*
  2880. F: hw/tpm/*
  2881. F: include/hw/acpi/tpm.h
  2882. F: include/sysemu/tpm*
  2883. F: qapi/tpm.json
  2884. F: backends/tpm/
  2885. F: tests/qtest/*tpm*
  2886. F: docs/specs/tpm.rst
  2887. T: git https://github.com/stefanberger/qemu-tpm.git tpm-next
  2888. Checkpatch
  2889. S: Odd Fixes
  2890. F: scripts/checkpatch.pl
  2891. Migration
  2892. M: Juan Quintela <quintela@redhat.com>
  2893. R: Peter Xu <peterx@redhat.com>
  2894. R: Leonardo Bras <leobras@redhat.com>
  2895. S: Maintained
  2896. F: hw/core/vmstate-if.c
  2897. F: include/hw/vmstate-if.h
  2898. F: include/migration/
  2899. F: include/qemu/userfaultfd.h
  2900. F: migration/
  2901. F: scripts/vmstate-static-checker.py
  2902. F: tests/vmstate-static-checker-data/
  2903. F: tests/qtest/migration-test.c
  2904. F: docs/devel/migration.rst
  2905. F: qapi/migration.json
  2906. F: tests/migration/
  2907. F: util/userfaultfd.c
  2908. Migration dirty limit and dirty page rate
  2909. M: Hyman Huang <yong.huang@smartx.com>
  2910. S: Maintained
  2911. F: softmmu/dirtylimit.c
  2912. F: include/sysemu/dirtylimit.h
  2913. F: migration/dirtyrate.c
  2914. F: migration/dirtyrate.h
  2915. F: include/sysemu/dirtyrate.h
  2916. D-Bus
  2917. M: Marc-André Lureau <marcandre.lureau@redhat.com>
  2918. S: Maintained
  2919. F: backends/dbus-vmstate.c
  2920. F: ui/dbus*
  2921. F: audio/dbus*
  2922. F: util/dbus.c
  2923. F: include/ui/dbus*
  2924. F: include/qemu/dbus.h
  2925. F: docs/interop/dbus*
  2926. F: docs/sphinx/dbus*
  2927. F: docs/sphinx/fakedbusdoc.py
  2928. F: tests/qtest/dbus*
  2929. F: scripts/xml-preprocess*
  2930. Seccomp
  2931. M: Daniel P. Berrange <berrange@redhat.com>
  2932. S: Odd Fixes
  2933. F: softmmu/qemu-seccomp.c
  2934. F: include/sysemu/seccomp.h
  2935. F: tests/unit/test-seccomp.c
  2936. Cryptography
  2937. M: Daniel P. Berrange <berrange@redhat.com>
  2938. S: Maintained
  2939. F: crypto/
  2940. F: include/crypto/
  2941. F: host/include/*/host/crypto/
  2942. F: qapi/crypto.json
  2943. F: tests/unit/test-crypto-*
  2944. F: tests/bench/benchmark-crypto-*
  2945. F: tests/unit/crypto-tls-*
  2946. F: tests/unit/pkix_asn1_tab.c
  2947. F: qemu.sasl
  2948. Coroutines
  2949. M: Stefan Hajnoczi <stefanha@redhat.com>
  2950. M: Kevin Wolf <kwolf@redhat.com>
  2951. S: Maintained
  2952. F: util/*coroutine*
  2953. F: include/qemu/coroutine*
  2954. F: tests/unit/test-coroutine.c
  2955. Buffers
  2956. M: Daniel P. Berrange <berrange@redhat.com>
  2957. S: Odd Fixes
  2958. F: util/buffer.c
  2959. F: include/qemu/buffer.h
  2960. I/O Channels
  2961. M: Daniel P. Berrange <berrange@redhat.com>
  2962. S: Maintained
  2963. F: io/
  2964. F: include/io/
  2965. F: tests/unit/test-io-*
  2966. User authorization
  2967. M: Daniel P. Berrange <berrange@redhat.com>
  2968. S: Maintained
  2969. F: authz/
  2970. F: qapi/authz.json
  2971. F: include/authz/
  2972. F: tests/unit/test-authz-*
  2973. Sockets
  2974. M: Daniel P. Berrange <berrange@redhat.com>
  2975. S: Maintained
  2976. F: include/qemu/sockets.h
  2977. F: util/qemu-sockets.c
  2978. F: qapi/sockets.json
  2979. File monitor
  2980. M: Daniel P. Berrange <berrange@redhat.com>
  2981. S: Odd Fixes
  2982. F: util/filemonitor*.c
  2983. F: include/qemu/filemonitor.h
  2984. F: tests/unit/test-util-filemonitor.c
  2985. Throttling infrastructure
  2986. M: Alberto Garcia <berto@igalia.com>
  2987. S: Supported
  2988. F: block/throttle-groups.c
  2989. F: include/block/throttle-groups.h
  2990. F: include/qemu/throttle*.h
  2991. F: util/throttle.c
  2992. F: docs/throttle.txt
  2993. F: tests/unit/test-throttle.c
  2994. L: qemu-block@nongnu.org
  2995. UUID
  2996. M: Fam Zheng <fam@euphon.net>
  2997. S: Supported
  2998. F: util/uuid.c
  2999. F: include/qemu/uuid.h
  3000. F: tests/unit/test-uuid.c
  3001. Yank feature
  3002. M: Lukas Straub <lukasstraub2@web.de>
  3003. S: Odd fixes
  3004. F: util/yank.c
  3005. F: migration/yank_functions*
  3006. F: tests/unit/test-yank.c
  3007. F: include/qemu/yank.h
  3008. F: qapi/yank.json
  3009. COLO Framework
  3010. M: Hailiang Zhang <zhanghailiang@xfusion.com>
  3011. S: Maintained
  3012. F: migration/colo*
  3013. F: include/migration/colo.h
  3014. F: include/migration/failover.h
  3015. F: docs/COLO-FT.txt
  3016. COLO Proxy
  3017. M: Zhang Chen <chen.zhang@intel.com>
  3018. M: Li Zhijian <lizhijian@fujitsu.com>
  3019. S: Supported
  3020. F: docs/colo-proxy.txt
  3021. F: net/colo*
  3022. F: net/filter-rewriter.c
  3023. F: net/filter-mirror.c
  3024. F: tests/qtest/test-filter*
  3025. Record/replay
  3026. M: Pavel Dovgalyuk <pavel.dovgaluk@ispras.ru>
  3027. R: Paolo Bonzini <pbonzini@redhat.com>
  3028. W: https://wiki.qemu.org/Features/record-replay
  3029. S: Supported
  3030. F: replay/*
  3031. F: block/blkreplay.c
  3032. F: net/filter-replay.c
  3033. F: include/exec/replay-core.h
  3034. F: include/sysemu/replay.h
  3035. F: docs/devel/replay.rst
  3036. F: docs/system/replay.rst
  3037. F: stubs/replay.c
  3038. F: tests/avocado/replay_kernel.py
  3039. F: tests/avocado/replay_linux.py
  3040. F: tests/avocado/reverse_debugging.py
  3041. F: qapi/replay.json
  3042. IOVA Tree
  3043. M: Peter Xu <peterx@redhat.com>
  3044. S: Maintained
  3045. F: include/qemu/iova-tree.h
  3046. F: util/iova-tree.c
  3047. elf2dmp
  3048. M: Viktor Prutyanov <viktor.prutyanov@phystech.edu>
  3049. S: Maintained
  3050. F: contrib/elf2dmp/
  3051. I2C and SMBus
  3052. M: Corey Minyard <cminyard@mvista.com>
  3053. S: Maintained
  3054. F: hw/i2c/core.c
  3055. F: hw/i2c/smbus_slave.c
  3056. F: hw/i2c/smbus_master.c
  3057. F: hw/i2c/smbus_eeprom.c
  3058. F: include/hw/i2c/i2c.h
  3059. F: include/hw/i2c/smbus_master.h
  3060. F: include/hw/i2c/smbus_slave.h
  3061. F: include/hw/i2c/smbus_eeprom.h
  3062. PMBus
  3063. M: Titus Rwantare <titusr@google.com>
  3064. S: Maintained
  3065. F: hw/i2c/pmbus_device.c
  3066. F: hw/sensor/adm1272.c
  3067. F: hw/sensor/isl_pmbus_vr.c
  3068. F: hw/sensor/max34451.c
  3069. F: include/hw/i2c/pmbus_device.h
  3070. F: include/hw/sensor/isl_pmbus_vr.h
  3071. F: tests/qtest/adm1272-test.c
  3072. F: tests/qtest/max34451-test.c
  3073. F: tests/qtest/isl_pmbus_vr-test.c
  3074. Firmware schema specifications
  3075. M: Philippe Mathieu-Daudé <philmd@linaro.org>
  3076. R: Daniel P. Berrange <berrange@redhat.com>
  3077. R: Kashyap Chamarthy <kchamart@redhat.com>
  3078. S: Maintained
  3079. F: docs/interop/firmware.json
  3080. EDK2 Firmware
  3081. M: Philippe Mathieu-Daudé <philmd@linaro.org>
  3082. M: Gerd Hoffmann <kraxel@redhat.com>
  3083. S: Supported
  3084. F: hw/i386/*ovmf*
  3085. F: pc-bios/descriptors/??-edk2-*.json
  3086. F: pc-bios/edk2-*
  3087. F: roms/Makefile.edk2
  3088. F: roms/edk2
  3089. F: roms/edk2-*
  3090. F: tests/data/uefi-boot-images/
  3091. F: tests/uefi-test-tools/
  3092. VT-d Emulation
  3093. M: Michael S. Tsirkin <mst@redhat.com>
  3094. M: Peter Xu <peterx@redhat.com>
  3095. R: Jason Wang <jasowang@redhat.com>
  3096. S: Supported
  3097. F: hw/i386/intel_iommu.c
  3098. F: hw/i386/intel_iommu_internal.h
  3099. F: include/hw/i386/intel_iommu.h
  3100. AMD-Vi Emulation
  3101. S: Orphan
  3102. F: hw/i386/amd_iommu.?
  3103. OpenSBI Firmware
  3104. M: Bin Meng <bmeng.cn@gmail.com>
  3105. S: Supported
  3106. F: pc-bios/opensbi-*
  3107. F: .gitlab-ci.d/opensbi.yml
  3108. F: .gitlab-ci.d/opensbi/
  3109. Clock framework
  3110. M: Luc Michel <luc@lmichel.fr>
  3111. R: Damien Hedde <damien.hedde@dahe.fr>
  3112. S: Maintained
  3113. F: include/hw/clock.h
  3114. F: include/hw/qdev-clock.h
  3115. F: hw/core/clock.c
  3116. F: hw/core/clock-vmstate.c
  3117. F: hw/core/qdev-clock.c
  3118. F: docs/devel/clocks.rst
  3119. Usermode Emulation
  3120. ------------------
  3121. Overall usermode emulation
  3122. M: Riku Voipio <riku.voipio@iki.fi>
  3123. S: Maintained
  3124. F: accel/tcg/user-exec*.c
  3125. F: include/user/
  3126. F: common-user/
  3127. BSD user
  3128. M: Warner Losh <imp@bsdimp.com>
  3129. R: Kyle Evans <kevans@freebsd.org>
  3130. S: Maintained
  3131. F: bsd-user/
  3132. F: configs/targets/*-bsd-user.mak
  3133. F: tests/vm/*bsd
  3134. T: git https://github.com/qemu-bsd-user/qemu-bsd-user bsd-user-rebase-3.1
  3135. Linux user
  3136. M: Laurent Vivier <laurent@vivier.eu>
  3137. S: Maintained
  3138. F: linux-user/
  3139. F: configs/targets/*linux-user.mak
  3140. F: scripts/qemu-binfmt-conf.sh
  3141. F: scripts/update-syscalltbl.sh
  3142. F: scripts/update-mips-syscall-args.sh
  3143. F: scripts/gensyscalls.sh
  3144. Tiny Code Generator (TCG)
  3145. -------------------------
  3146. Common TCG code
  3147. M: Richard Henderson <richard.henderson@linaro.org>
  3148. S: Maintained
  3149. F: tcg/
  3150. F: include/tcg/
  3151. TCG Plugins
  3152. M: Alex Bennée <alex.bennee@linaro.org>
  3153. R: Alexandre Iooss <erdnaxe@crans.org>
  3154. R: Mahmoud Mandour <ma.mandourr@gmail.com>
  3155. S: Maintained
  3156. F: docs/devel/tcg-plugins.rst
  3157. F: plugins/
  3158. F: tests/plugin/
  3159. F: tests/avocado/tcg_plugins.py
  3160. F: contrib/plugins/
  3161. AArch64 TCG target
  3162. M: Richard Henderson <richard.henderson@linaro.org>
  3163. S: Maintained
  3164. L: qemu-arm@nongnu.org
  3165. F: tcg/aarch64/
  3166. ARM TCG target
  3167. M: Richard Henderson <richard.henderson@linaro.org>
  3168. S: Maintained
  3169. L: qemu-arm@nongnu.org
  3170. F: tcg/arm/
  3171. i386 TCG target
  3172. M: Richard Henderson <richard.henderson@linaro.org>
  3173. S: Maintained
  3174. F: tcg/i386/
  3175. LoongArch64 TCG target
  3176. M: WANG Xuerui <git@xen0n.name>
  3177. S: Maintained
  3178. F: tcg/loongarch64/
  3179. MIPS TCG target
  3180. M: Philippe Mathieu-Daudé <philmd@linaro.org>
  3181. R: Aurelien Jarno <aurelien@aurel32.net>
  3182. R: Huacai Chen <chenhuacai@kernel.org>
  3183. R: Jiaxun Yang <jiaxun.yang@flygoat.com>
  3184. R: Aleksandar Rikalo <aleksandar.rikalo@syrmia.com>
  3185. S: Odd Fixes
  3186. F: tcg/mips/
  3187. PPC TCG target
  3188. M: Richard Henderson <richard.henderson@linaro.org>
  3189. S: Odd Fixes
  3190. F: tcg/ppc/
  3191. RISC-V TCG target
  3192. M: Palmer Dabbelt <palmer@dabbelt.com>
  3193. M: Alistair Francis <Alistair.Francis@wdc.com>
  3194. L: qemu-riscv@nongnu.org
  3195. S: Maintained
  3196. F: tcg/riscv/
  3197. F: disas/riscv.c
  3198. S390 TCG target
  3199. M: Richard Henderson <richard.henderson@linaro.org>
  3200. S: Maintained
  3201. F: tcg/s390/
  3202. L: qemu-s390x@nongnu.org
  3203. SPARC TCG target
  3204. S: Odd Fixes
  3205. F: tcg/sparc64/
  3206. F: disas/sparc.c
  3207. TCI TCG target
  3208. M: Stefan Weil <sw@weilnetz.de>
  3209. S: Maintained
  3210. F: tcg/tci/
  3211. F: tcg/tci.c
  3212. F: disas/tci.c
  3213. Block drivers
  3214. -------------
  3215. VMDK
  3216. M: Fam Zheng <fam@euphon.net>
  3217. L: qemu-block@nongnu.org
  3218. S: Supported
  3219. F: block/vmdk.c
  3220. RBD
  3221. M: Ilya Dryomov <idryomov@gmail.com>
  3222. R: Peter Lieven <pl@kamp.de>
  3223. L: qemu-block@nongnu.org
  3224. S: Supported
  3225. F: block/rbd.c
  3226. VHDX
  3227. M: Jeff Cody <codyprime@gmail.com>
  3228. L: qemu-block@nongnu.org
  3229. S: Supported
  3230. F: block/vhdx*
  3231. VDI
  3232. M: Stefan Weil <sw@weilnetz.de>
  3233. L: qemu-block@nongnu.org
  3234. S: Maintained
  3235. F: block/vdi.c
  3236. blkio
  3237. M: Stefan Hajnoczi <stefanha@redhat.com>
  3238. L: qemu-block@nongnu.org
  3239. S: Maintained
  3240. F: block/blkio.c
  3241. iSCSI
  3242. M: Ronnie Sahlberg <ronniesahlberg@gmail.com>
  3243. M: Paolo Bonzini <pbonzini@redhat.com>
  3244. M: Peter Lieven <pl@kamp.de>
  3245. L: qemu-block@nongnu.org
  3246. S: Odd Fixes
  3247. F: block/iscsi.c
  3248. F: block/iscsi-opts.c
  3249. Network Block Device (NBD)
  3250. M: Eric Blake <eblake@redhat.com>
  3251. M: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru>
  3252. L: qemu-block@nongnu.org
  3253. S: Maintained
  3254. F: block/nbd*
  3255. F: nbd/
  3256. F: include/block/nbd*
  3257. F: qemu-nbd.*
  3258. F: blockdev-nbd.c
  3259. F: docs/interop/nbd.txt
  3260. F: docs/tools/qemu-nbd.rst
  3261. F: tests/qemu-iotests/tests/*nbd*
  3262. T: git https://repo.or.cz/qemu/ericb.git nbd
  3263. T: git https://gitlab.com/vsementsov/qemu.git block
  3264. NFS
  3265. M: Peter Lieven <pl@kamp.de>
  3266. L: qemu-block@nongnu.org
  3267. S: Maintained
  3268. F: block/nfs.c
  3269. SSH
  3270. M: Richard W.M. Jones <rjones@redhat.com>
  3271. L: qemu-block@nongnu.org
  3272. S: Supported
  3273. F: block/ssh.c
  3274. CURL
  3275. L: qemu-block@nongnu.org
  3276. S: Odd Fixes
  3277. F: block/curl.c
  3278. GLUSTER
  3279. L: qemu-block@nongnu.org
  3280. L: integration@gluster.org
  3281. S: Odd Fixes
  3282. F: block/gluster.c
  3283. Null Block Driver
  3284. M: Fam Zheng <fam@euphon.net>
  3285. L: qemu-block@nongnu.org
  3286. S: Supported
  3287. F: block/null.c
  3288. NVMe Block Driver
  3289. M: Stefan Hajnoczi <stefanha@redhat.com>
  3290. R: Fam Zheng <fam@euphon.net>
  3291. R: Philippe Mathieu-Daudé <philmd@linaro.org>
  3292. L: qemu-block@nongnu.org
  3293. S: Supported
  3294. F: block/nvme*
  3295. F: include/block/nvme.h
  3296. T: git https://github.com/stefanha/qemu.git block
  3297. Bootdevice
  3298. M: Gonglei <arei.gonglei@huawei.com>
  3299. S: Maintained
  3300. F: softmmu/bootdevice.c
  3301. Quorum
  3302. M: Alberto Garcia <berto@igalia.com>
  3303. S: Supported
  3304. F: block/quorum.c
  3305. L: qemu-block@nongnu.org
  3306. blklogwrites
  3307. M: Ari Sundholm <ari@tuxera.com>
  3308. L: qemu-block@nongnu.org
  3309. S: Supported
  3310. F: block/blklogwrites.c
  3311. blkverify
  3312. M: Stefan Hajnoczi <stefanha@redhat.com>
  3313. L: qemu-block@nongnu.org
  3314. S: Supported
  3315. F: block/blkverify.c
  3316. bochs
  3317. M: Stefan Hajnoczi <stefanha@redhat.com>
  3318. L: qemu-block@nongnu.org
  3319. S: Supported
  3320. F: block/bochs.c
  3321. cloop
  3322. M: Stefan Hajnoczi <stefanha@redhat.com>
  3323. L: qemu-block@nongnu.org
  3324. S: Supported
  3325. F: block/cloop.c
  3326. dmg
  3327. M: Stefan Hajnoczi <stefanha@redhat.com>
  3328. L: qemu-block@nongnu.org
  3329. S: Supported
  3330. F: block/dmg.c
  3331. parallels
  3332. M: Stefan Hajnoczi <stefanha@redhat.com>
  3333. M: Denis V. Lunev <den@openvz.org>
  3334. L: qemu-block@nongnu.org
  3335. S: Supported
  3336. F: block/parallels.c
  3337. F: block/parallels-ext.c
  3338. F: docs/interop/parallels.txt
  3339. T: git https://src.openvz.org/scm/~den/qemu.git parallels
  3340. qed
  3341. M: Stefan Hajnoczi <stefanha@redhat.com>
  3342. L: qemu-block@nongnu.org
  3343. S: Supported
  3344. F: block/qed.c
  3345. raw
  3346. M: Kevin Wolf <kwolf@redhat.com>
  3347. L: qemu-block@nongnu.org
  3348. S: Supported
  3349. F: block/linux-aio.c
  3350. F: include/block/raw-aio.h
  3351. F: block/raw-format.c
  3352. F: block/file-posix.c
  3353. F: block/file-win32.c
  3354. F: block/win32-aio.c
  3355. Linux io_uring
  3356. M: Aarushi Mehta <mehta.aaru20@gmail.com>
  3357. M: Julia Suvorova <jusual@redhat.com>
  3358. M: Stefan Hajnoczi <stefanha@redhat.com>
  3359. R: Stefano Garzarella <sgarzare@redhat.com>
  3360. L: qemu-block@nongnu.org
  3361. S: Maintained
  3362. F: block/io_uring.c
  3363. F: stubs/io_uring.c
  3364. qcow2
  3365. M: Kevin Wolf <kwolf@redhat.com>
  3366. M: Hanna Reitz <hreitz@redhat.com>
  3367. L: qemu-block@nongnu.org
  3368. S: Supported
  3369. F: block/qcow2*
  3370. F: docs/interop/qcow2.txt
  3371. qcow
  3372. M: Kevin Wolf <kwolf@redhat.com>
  3373. L: qemu-block@nongnu.org
  3374. S: Supported
  3375. F: block/qcow.c
  3376. blkdebug
  3377. M: Kevin Wolf <kwolf@redhat.com>
  3378. M: Hanna Reitz <hreitz@redhat.com>
  3379. L: qemu-block@nongnu.org
  3380. S: Supported
  3381. F: block/blkdebug.c
  3382. vpc
  3383. M: Kevin Wolf <kwolf@redhat.com>
  3384. L: qemu-block@nongnu.org
  3385. S: Supported
  3386. F: block/vpc.c
  3387. vvfat
  3388. M: Kevin Wolf <kwolf@redhat.com>
  3389. L: qemu-block@nongnu.org
  3390. S: Odd Fixes
  3391. F: block/vvfat.c
  3392. Image format fuzzer
  3393. M: Stefan Hajnoczi <stefanha@redhat.com>
  3394. L: qemu-block@nongnu.org
  3395. S: Supported
  3396. F: tests/image-fuzzer/
  3397. Vhost-user block device backend server
  3398. M: Coiby Xu <Coiby.Xu@gmail.com>
  3399. S: Maintained
  3400. F: block/export/vhost-user-blk-server.c
  3401. F: block/export/vhost-user-blk-server.h
  3402. F: block/export/virtio-blk-handler.c
  3403. F: block/export/virtio-blk-handler.h
  3404. F: include/qemu/vhost-user-server.h
  3405. F: tests/qtest/libqos/vhost-user-blk.c
  3406. F: tests/qtest/libqos/vhost-user-blk.h
  3407. F: tests/qtest/vhost-user-blk-test.c
  3408. F: util/vhost-user-server.c
  3409. FUSE block device exports
  3410. M: Hanna Reitz <hreitz@redhat.com>
  3411. L: qemu-block@nongnu.org
  3412. S: Supported
  3413. F: block/export/fuse.c
  3414. VDUSE library and block device exports
  3415. M: Xie Yongji <xieyongji@bytedance.com>
  3416. S: Maintained
  3417. F: subprojects/libvduse/
  3418. F: block/export/vduse-blk.c
  3419. F: block/export/vduse-blk.h
  3420. Replication
  3421. M: Wen Congyang <wencongyang2@huawei.com>
  3422. M: Xie Changlong <xiechanglong.d@gmail.com>
  3423. S: Supported
  3424. F: replication*
  3425. F: block/replication.c
  3426. F: tests/unit/test-replication.c
  3427. F: docs/block-replication.txt
  3428. PVRDMA
  3429. M: Yuval Shaia <yuval.shaia.ml@gmail.com>
  3430. M: Marcel Apfelbaum <marcel.apfelbaum@gmail.com>
  3431. S: Maintained
  3432. F: hw/rdma/*
  3433. F: hw/rdma/vmw/*
  3434. F: docs/pvrdma.txt
  3435. F: contrib/rdmacm-mux/*
  3436. F: qapi/rdma.json
  3437. Semihosting
  3438. M: Alex Bennée <alex.bennee@linaro.org>
  3439. S: Maintained
  3440. F: semihosting/
  3441. F: include/semihosting/
  3442. F: tests/tcg/multiarch/arm-compat-semi/
  3443. F: tests/tcg/aarch64/system/semiheap.c
  3444. Multi-process QEMU
  3445. M: Elena Ufimtseva <elena.ufimtseva@oracle.com>
  3446. M: Jagannathan Raman <jag.raman@oracle.com>
  3447. S: Maintained
  3448. F: docs/devel/multi-process.rst
  3449. F: docs/system/multi-process.rst
  3450. F: hw/pci-host/remote.c
  3451. F: include/hw/pci-host/remote.h
  3452. F: hw/remote/machine.c
  3453. F: include/hw/remote/machine.h
  3454. F: hw/remote/mpqemu-link.c
  3455. F: include/hw/remote/mpqemu-link.h
  3456. F: hw/remote/message.c
  3457. F: hw/remote/remote-obj.c
  3458. F: include/hw/remote/memory.h
  3459. F: hw/remote/memory.c
  3460. F: hw/remote/proxy.c
  3461. F: include/hw/remote/proxy.h
  3462. F: hw/remote/proxy-memory-listener.c
  3463. F: include/hw/remote/proxy-memory-listener.h
  3464. F: hw/remote/iohub.c
  3465. F: include/hw/remote/iohub.h
  3466. F: subprojects/libvfio-user
  3467. F: hw/remote/vfio-user-obj.c
  3468. F: include/hw/remote/vfio-user-obj.h
  3469. F: hw/remote/iommu.c
  3470. F: include/hw/remote/iommu.h
  3471. EBPF:
  3472. M: Jason Wang <jasowang@redhat.com>
  3473. R: Andrew Melnychenko <andrew@daynix.com>
  3474. R: Yuri Benditovich <yuri.benditovich@daynix.com>
  3475. S: Maintained
  3476. F: ebpf/*
  3477. F: tools/ebpf/*
  3478. Build and test automation
  3479. -------------------------
  3480. Build and test automation, general continuous integration
  3481. M: Alex Bennée <alex.bennee@linaro.org>
  3482. M: Philippe Mathieu-Daudé <philmd@linaro.org>
  3483. M: Thomas Huth <thuth@redhat.com>
  3484. R: Wainer dos Santos Moschetta <wainersm@redhat.com>
  3485. R: Beraldo Leal <bleal@redhat.com>
  3486. S: Maintained
  3487. F: .github/workflows/lockdown.yml
  3488. F: .gitlab-ci.yml
  3489. F: .gitlab-ci.d/
  3490. F: .travis.yml
  3491. F: scripts/ci/
  3492. F: tests/docker/
  3493. F: tests/vm/
  3494. F: tests/lcitool/
  3495. F: tests/avocado/tuxrun_baselines.py
  3496. F: scripts/archive-source.sh
  3497. F: docs/devel/testing.rst
  3498. W: https://gitlab.com/qemu-project/qemu/pipelines
  3499. W: https://travis-ci.org/qemu/qemu
  3500. FreeBSD Hosted Continuous Integration
  3501. M: Ed Maste <emaste@freebsd.org>
  3502. M: Li-Wen Hsu <lwhsu@freebsd.org>
  3503. S: Maintained
  3504. F: .gitlab-ci.d/cirrus/freebsd*
  3505. F: tests/vm/freebsd
  3506. W: https://cirrus-ci.com/github/qemu/qemu
  3507. Windows Hosted Continuous Integration
  3508. M: Yonggang Luo <luoyonggang@gmail.com>
  3509. S: Maintained
  3510. F: .gitlab-ci.d/windows.yml
  3511. Guest Test Compilation Support
  3512. M: Alex Bennée <alex.bennee@linaro.org>
  3513. R: Philippe Mathieu-Daudé <philmd@linaro.org>
  3514. S: Maintained
  3515. F: tests/tcg/Makefile.target
  3516. Integration Testing with the Avocado framework
  3517. W: https://trello.com/b/6Qi1pxVn/avocado-qemu
  3518. R: Cleber Rosa <crosa@redhat.com>
  3519. R: Philippe Mathieu-Daudé <philmd@linaro.org>
  3520. R: Wainer dos Santos Moschetta <wainersm@redhat.com>
  3521. R: Beraldo Leal <bleal@redhat.com>
  3522. S: Odd Fixes
  3523. F: tests/avocado/
  3524. GitLab custom runner (Works On Arm Sponsored)
  3525. M: Alex Bennée <alex.bennee@linaro.org>
  3526. M: Philippe Mathieu-Daudé <philmd@linaro.org>
  3527. S: Maintained
  3528. F: .gitlab-ci.d/custom-runners/ubuntu-22.04-aarch64.yml
  3529. F: .gitlab-ci.d/custom-runners/ubuntu-22.04-aarch32.yml
  3530. Documentation
  3531. -------------
  3532. Build system architecture
  3533. M: Daniel P. Berrange <berrange@redhat.com>
  3534. S: Odd Fixes
  3535. F: docs/devel/build-system.rst
  3536. GIT Data Mining Config
  3537. M: Alex Bennée <alex.bennee@linaro.org>
  3538. S: Odd Fixes
  3539. F: gitdm.config
  3540. F: contrib/gitdm/*
  3541. Incompatible changes
  3542. R: libvir-list@redhat.com
  3543. F: docs/about/deprecated.rst
  3544. Build System
  3545. ------------
  3546. Meson
  3547. M: Paolo Bonzini <pbonzini@redhat.com>
  3548. R: Marc-André Lureau <marcandre.lureau@redhat.com>
  3549. R: Daniel P. Berrange <berrange@redhat.com>
  3550. R: Thomas Huth <thuth@redhat.com>
  3551. R: Philippe Mathieu-Daudé <philmd@linaro.org>
  3552. S: Maintained
  3553. F: meson.build
  3554. F: meson_options.txt
  3555. F: scripts/meson-buildoptions.*
  3556. F: scripts/check_sparse.py
  3557. F: scripts/symlink-install-tree.py
  3558. Top Level Makefile and configure
  3559. M: Paolo Bonzini <pbonzini@redhat.com>
  3560. R: Alex Bennée <alex.bennee@linaro.org>
  3561. R: Thomas Huth <thuth@redhat.com>
  3562. S: Maintained
  3563. F: Makefile
  3564. F: configure
  3565. F: scripts/mtest2make.py
  3566. F: tests/Makefile.include
  3567. Kconfig
  3568. M: Paolo Bonzini <pbonzini@redhat.com>
  3569. S: Maintained
  3570. F: scripts/minikconf.py
  3571. F: docs/devel/kconfig.rst
  3572. F: Kconfig*
  3573. F: */Kconfig*
  3574. F: hw/*/Kconfig*
  3575. F: target/*/Kconfig*
  3576. GIT submodules
  3577. M: Daniel P. Berrange <berrange@redhat.com>
  3578. S: Odd Fixes
  3579. F: scripts/git-submodule.sh
  3580. UI translations
  3581. S: Orphan
  3582. F: po/*.po
  3583. Sphinx documentation configuration and build machinery
  3584. M: Peter Maydell <peter.maydell@linaro.org>
  3585. S: Maintained
  3586. F: docs/conf.py
  3587. F: docs/*/conf.py
  3588. F: docs/sphinx/
  3589. F: docs/_templates/
  3590. Miscellaneous
  3591. -------------
  3592. Performance Tools and Tests
  3593. M: Ahmed Karaman <ahmedkhaledkaraman@gmail.com>
  3594. S: Maintained
  3595. F: scripts/performance/
  3596. Code Coverage Tools
  3597. M: Alex Bennée <alex.bennee@linaro.org>
  3598. S: Odd Fixes
  3599. F: scripts/coverage/