blob: ddd80886b2bfc0b4a2fa9e7bea8a0cd13ba240b8 [file] [log] [blame]
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -07001
2
Nico Huberc9826d72018-11-05 13:42:35 +01003 List of upstream coreboot maintainers
4 and how to submit coreboot changes
5
6This represents the list of maintainers that work on the upstream coreboot
7code base (on coreboot.org). Maintainers are assigned to topics and when
8applicable to subtrees of the source tree. You'll find some subtrees that
9don't have a maintainer. If you are looking for reviewers for such a sub-
10tree, it's often a good choice to look at the git history to see who worked
11on it last.
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -070012
13Please try to follow the guidelines below. This will make things
14easier on the maintainers. Not all of these guidelines matter for every
15trivial patch so apply some common sense.
16
171. Always _test_ your changes, however small, on at least 1 or
18 2 people, preferably many more.
19
202. Try to release a few ALPHA test versions to gerrit. Announce
21 them onto the coreboot mailing list and IRC channel and await
22 results. This is especially important on coreboot core changes,
23 but also for device drivers, because often that's the only way
24 you will find things like the fact revision 3 chipset needs
25 a magic fix you didn't know about, or some clown changed the
26 chips on a board and not its name. (Don't laugh!)
27
283. Make sure your changes compile correctly in multiple
29 configurations. In particular check that changes work for all
30 boards in the tree (use abuild!)
31
324. When you are happy with a change make it generally available for
33 testing in gerrit and await feedback.
34
355. Make your patch available through coreboot's gerrit code review
36 system, and add the relevant maintainer from this list as a code
37 reviewer. Be prepared to get your changes sent back with seemingly
38 silly requests about formatting and variable names. These aren't
39 as silly as they seem. One job the maintainers do is to keep
40 things looking the same. Sometimes this means that the clever
41 hack in your mainboard or chipset to get around a problem actually
42 needs to become a generalized coreboot feature ready for next time.
43
44 PLEASE check your patch with the automated style checker
45 (util/lint/checkpatch.pl) to catch trival style violations.
Paul Menzel59e21132017-06-05 12:46:00 +020046 See https://www.coreboot.org/Coding_Style for guidance here.
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -070047
48 PLEASE add the maintainers that are generated by
49 util/scripts/get_maintainer.pl as reviewers. The results returned
50 by the script will be best if you have git installed and are
51 making your changes in a branch derived from coreboot.org's latest
52 git tree.
53
54 PLEASE try to include any credit lines you want added with the
55 patch. It avoids people being missed off by mistake and makes
56 it easier to know who wants adding and who doesn't.
57
58 PLEASE document known bugs. If it doesn't work for everything
59 or does something very odd once a month document it.
60
61 PLEASE remember that submissions must be made under the terms
62 of the OSDL certificate of contribution and should include a
63 Signed-off-by: line. The current version of this "Developer's
64 Certificate of Origin" (DCO) is listed at
Paul Menzel59e21132017-06-05 12:46:00 +020065 https://www.coreboot.org/Development_Guidelines#Sign-off_Procedure.
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -070066
676. Make sure you have the right to send any changes you make. If you
68 do changes at work you may find your employer owns the patch
69 not you.
70
717. Happy hacking.
72
73Descriptions of section entries:
74
Stefan Reinauera4ffe8a2015-10-21 13:09:42 -070075 M: Maintainer: FullName <address@domain>
Nico Huberc9826d72018-11-05 13:42:35 +010076 Must be registered to Gerrit (https://review.coreboot.org/).
77 Should have experience with upstream coreboot development.
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -070078 R: Designated reviewer: FullName <address@domain>
79 These reviewers should be CCed on patches.
80 L: Mailing list that is relevant to this area
81 W: Web-page with status/info
82 Q: Patchwork web based patch tracking system site
83 T: SCM tree type and location.
84 Type is one of: git, hg, quilt, stgit, topgit
85 S: Status, one of the following:
Nico Huberc9826d72018-11-05 13:42:35 +010086 Supported: Someone is continuously paid to look after this and
87 a reaction to review requests can be expected
88 within a few days, a month at most.
89 Maintained: Someone actually looks after it and a reaction to
90 review requests can usually be expected within a
91 few weeks.
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -070092 Odd Fixes: It has a maintainer but they don't have time to do
93 much other than throw the odd patch in. See below..
94 Orphan: No current maintainer [but maybe you could take the
95 role as you write your new code].
96 Obsolete: Old code. Something tagged obsolete generally means
97 it has been replaced by a better system and you
98 should be using that.
99 F: Files and directories with wildcard patterns.
100 A trailing slash includes all files and subdirectory files.
101 F: drivers/net/ all files in and below drivers/net
102 F: drivers/net/* all files in drivers/net, but not below
103 F: */net/* all files in "any top level directory"/net
104 One pattern per line. Multiple F: lines acceptable.
105 N: Files and directories with regex patterns.
106 N: [^a-z]tegra all files whose path contains the word tegra
107 One pattern per line. Multiple N: lines acceptable.
108 scripts/get_maintainer.pl has different behavior for files that
109 match F: pattern and matches of N: patterns. By default,
110 get_maintainer will not look at git log history when an F: pattern
111 match occurs. When an N: match occurs, git log history is used
112 to also notify the people that have git commit signatures.
113 X: Files and directories that are NOT maintained, same rules as F:
114 Files exclusions are tested before file matches.
115 Can be useful for excluding a specific subdirectory, for instance:
116 F: net/
117 X: net/ipv6/
118 matches all files in and below net excluding net/ipv6/
119 K: Keyword perl extended regex pattern to match content in a
120 patch or file. For instance:
121 K: of_get_profile
122 matches patches or files that contain "of_get_profile"
123 K: \b(printk|pr_(info|err))\b
124 matches patches or files that contain one or more of the words
125 printk, pr_info or pr_err
126 One regex pattern per line. Multiple K: lines acceptable.
127
128Note: For the hard of thinking, this list is meant to remain in alphabetical
129order. If you could add yourselves to it in alphabetical order that would be
130so much easier [Ed]
131
132Maintainers List (try to look for most precise areas first)
133
134 -----------------------------------
135
Angel Pons8d6f5872020-06-07 00:25:42 +0200136################################################################################
137# Mainboards
138################################################################################
Mike Banonc732d682019-12-31 14:29:39 +0300139
Felix Held9a1583b2020-12-06 20:15:31 +0100140AMD family 17h and 19h reference boards
141M: Marshall Dawson <marshalldawson3rd@gmail.com>
142M: Felix Held <felix-coreboot@felixheld.de>
143M: Jason Glenesk <jason.glenesk@gmail.com>
144S: Maintained
Felix Heldd575c8d2022-01-25 04:41:06 +0100145F: src/mainboard/amd/chausie/
Felix Held9a1583b2020-12-06 20:15:31 +0100146F: src/mainboard/amd/majolica/
147F: src/mainboard/amd/mandolin/
148
Evgeny Zinoviev09bf63e2019-05-31 16:03:27 +0300149APPLE MAINBOARDS
150M: Evgeny Zinoviev <me@ch1p.io>
151S: Maintained
152F: src/mainboard/apple/
153
Patrick Georgi8fb453e2018-11-21 22:12:45 +0100154
Angel Pons8d6f5872020-06-07 00:25:42 +0200155
156ASROCK B85M PRO4 MAINBOARD
Angel Pons8a508272020-06-06 22:45:16 +0200157M: Angel Pons <th3fanbus@gmail.com>
158S: Maintained
Angel Pons8d6f5872020-06-07 00:25:42 +0200159F: src/mainboard/asrock/b85m_pro4/
Andrey Petrov842dfe82016-05-24 22:01:56 -0700160
Angel Pons33849042018-12-01 23:28:03 +0100161ASROCK G41C-GS MAINBOARD & VARIANTS
162M: Angel Pons <th3fanbus@gmail.com>
163S: Maintained
164F: src/mainboard/asrock/g41c-gs/
165
Tristan Corrickd88cf5f2018-12-06 19:26:47 +1300166ASROCK H81M-HDS MAINBOARD
167M: Tristan Corrick <tristan@corrick.kiwi>
168S: Maintained
169F: src/mainboard/asrock/h81m-hds/
170
Angel Pons8d6f5872020-06-07 00:25:42 +0200171
Angel Ponsf2aaddc2020-06-06 22:38:38 +0200172
Mike Banon2a830852021-10-27 20:11:45 +0300173ASUS A88XM-E MAINBOARD
174M: Mike Banon <mikebdp2@gmail.com>
175S: Maintained
176F: src/mainboard/asus/a88xm-e/
177
Mike Banonc732d682019-12-31 14:29:39 +0300178ASUS AM1I-A MAINBOARD
179M: Mike Banon <mikebdp2@gmail.com>
180S: Maintained
181F: src/mainboard/asus/am1i-a/
182
Angel Ponse94cda52021-05-17 12:31:29 +0200183ASUS H61 SERIES MAINBOARDS
184M: Angel Pons <th3fanbus@gmail.com>
Angel Ponsed1e25d2021-05-17 13:22:57 +0200185M: Tristan Corrick <tristan@corrick.kiwi>
Angel Ponse94cda52021-05-17 12:31:29 +0200186S: Maintained
187F: src/mainboard/asus/h61-series/
188
Tristan Corrickd88cf5f2018-12-06 19:26:47 +1300189ASUS MAXIMUS IV GENE-Z MAINBOARD
190M: Tristan Corrick <tristan@corrick.kiwi>
191S: Maintained
192F: src/mainboard/asus/maximus_iv_gene-z/
193
Angel Pons33849042018-12-01 23:28:03 +0100194ASUS P5QC PRO MAINBOARD & VARIANTS
195M: Angel Pons <th3fanbus@gmail.com>
Stefan Ott98d63852021-04-22 01:28:56 +0200196R: Stefan Ott <coreboot@desire.ch>
Angel Pons33849042018-12-01 23:28:03 +0100197S: Maintained
198F: src/mainboard/asus/p5qc/
199
Angel Ponsf2aaddc2020-06-06 22:38:38 +0200200ASUS P5QPL-AM MAINBOARD & VARIANTS
201M: Angel Pons <th3fanbus@gmail.com>
202S: Maintained
203F: src/mainboard/asus/p5qpl-am/
204
Angel Pons81c2e022021-05-17 17:45:54 +0200205ASUS P8Z77 SERIES MAINBOARDS
Angel Ponsf2aaddc2020-06-06 22:38:38 +0200206M: Angel Pons <th3fanbus@gmail.com>
Angel Pons6f925062021-05-17 17:57:19 +0200207M: Vlado Cibic <vladocb@protonmail.com>
Angel Ponsf2aaddc2020-06-06 22:38:38 +0200208S: Maintained
Angel Pons81c2e022021-05-17 17:45:54 +0200209F: src/mainboard/asus/p8z77-series/
Angel Ponsf2aaddc2020-06-06 22:38:38 +0200210
Michał Żygowskib9f9f6c2018-12-21 12:23:27 +0100211
Michael Niewöhner489a11e2019-10-17 14:57:52 +0200212
Felix Singer63975f02020-10-12 21:47:43 +0000213CLEVO MAINBOARDS
214M: Felix Singer <felixsinger@posteo.net>
Michael Niewöhnere4478632020-07-19 22:56:35 +0200215M: Michael Niewöhner <foss@mniewoehner.de>
Felix Singer63975f02020-10-12 21:47:43 +0000216S: Supported
Michael Niewöhner5fd29312020-11-13 01:13:46 +0100217F: src/mainboard/clevo/
Felix Singer63975f02020-10-12 21:47:43 +0000218
219
220
Frans Hendriks1583fcd2019-06-05 10:18:23 +0200221FACEBOOK FBG1701 MAINBOARD
222M: Frans Hendriks <fhendriks@eltan.com>
Frans Hendriks7e7ea2b2021-12-02 10:15:20 +0100223M: Erik van den Bogaert <ebogaert@eltan.com>
Frans Hendriks1583fcd2019-06-05 10:18:23 +0200224S: Maintained
225F: src/mainboard/facebook/fbg1701/
226
Wim Vervoorn4ba70a72019-12-05 13:48:11 +0100227FACEBOOK MONOLITH MAINBOARD
228M: Frans Hendriks <fhendriks@eltan.com>
Frans Hendriks7e7ea2b2021-12-02 10:15:20 +0100229M: Erik van den Bogaert <ebogaert@eltan.com>
Wim Vervoorn4ba70a72019-12-05 13:48:11 +0100230S: Maintained
231F: src/mainboard/facebook/monolith/
232
Angel Pons8d6f5872020-06-07 00:25:42 +0200233
234
Angel Pons8602e662021-04-21 23:29:03 +0200235GIGABYTE GA-D510UD MAINBOARD
236M: Angel Pons <th3fanbus@gmail.com>
237S: Maintained
238F: src/mainboard/gigabyte/ga-d510ud/
239
Angel Pons8d6f5872020-06-07 00:25:42 +0200240GIGABYTE GA-G41M-ES2L MAINBOARD
241M: Damien Zammit <damien@zamaudio.com>
242S: Odd Fixes
Felix Singer3c02ed92020-11-30 06:56:08 +0100243F: src/mainboard/gigabyte/ga-g41m-es2l/
Angel Pons8d6f5872020-06-07 00:25:42 +0200244
245GIGABYTE GA-H61M SERIES MAINBOARDS
246M: Angel Pons <th3fanbus@gmail.com>
247S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100248F: src/mainboard/gigabyte/ga-h61m-series/
Angel Pons8d6f5872020-06-07 00:25:42 +0200249
250
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600251GOOGLE BRYA MAINBOARDS
252M: Tim Wawrzynczak <twawrzynczak@chromium.org>
253S: Maintained
254F: src/mainboard/google/brya/
255
256GOOGLE HATCH MAINBOARDS
257M: Tim Wawrzynczak <twawrzynczak@chromium.org>
258S: Maintained
259F: src/mainboard/google/hatch/
Angel Pons8d6f5872020-06-07 00:25:42 +0200260
261GOOGLE PANTHER MAINBOARD
262M: Stefan Reinauer <stefan.reinauer@coreboot.org>
263S: Supported
264F: src/mainboard/google/panther/
265
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600266GOOGLE VOLTEER MAINBOARDS
267M: Tim Wawrzynczak <twawrzynczak@chromium.org>
Nick Vaccaro5f124552021-04-28 14:28:39 -0700268M: Nick Vaccaro <nvaccaro@chromium.org>
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600269S: Maintained
270F: src/mainboard/google/volteer/
271
Angel Pons8d6f5872020-06-07 00:25:42 +0200272GOOGLE MAINBOARDS (Intel-based, legacy/inactive)
273M: Matt DeVillier <MrChromebox@gmail.com>
274S: Maintained
275F: src/mainboard/google/auron/
276F: src/mainboard/google/beltino/
277F: src/mainboard/google/butterfly/
278F: src/mainboard/google/cyan/
279F: src/mainboard/google/glados/
280F: src/mainboard/google/jecht/
281F: src/mainboard/google/link/
282F: src/mainboard/google/parrot/
283F: src/mainboard/google/slippy/
284F: src/mainboard/google/stout/
285
286
287
Angel Pons8602e662021-04-21 23:29:03 +0200288HP 280 G2 MAINBOARD
289M: Angel Pons <th3fanbus@gmail.com>
290S: Maintained
291F: src/mainboard/hp/280_g2/
292
293
294
Angel Pons8d6f5872020-06-07 00:25:42 +0200295INTEL D510MO MAINBOARD
296M: Damien Zammit <damien@zamaudio.com>
297S: Odd Fixes
Felix Singer3c02ed92020-11-30 06:56:08 +0100298F: src/mainboard/intel/d510mo/
Angel Pons8d6f5872020-06-07 00:25:42 +0200299
300INTEL STRAGO MAINBOARD
301M: Hannah Williams <hannah.williams@intel.com>
302S: Supported
303F: /src/mainboard/intel/strago/
304
305
306
Felix Singer32608cf2020-11-22 00:38:16 +0000307KONTRON BSL6 MAINBOARD
308M: Felix Singer <felixsinger@posteo.net>
309M: Nico Huber <nico.h@gmx.de>
310S: Supported
311F: src/mainboard/kontron/bsl6/
312
Felix Singer5a41b0d2020-11-23 20:20:38 +0000313KONTRON MAL10 MAINBOARD
314M: Maxim Polyakov <max.senia.poliak@gmail.com>
315M: Nico Huber <nico.h@gmx.de>
316M: Felix Singer <felixsinger@posteo.net>
317S: Supported
318F: src/mainboard/kontron/mal10/
319
Felix Singer32608cf2020-11-22 00:38:16 +0000320
321
Angel Pons8d6f5872020-06-07 00:25:42 +0200322LENOVO MAINBOARDS
323M: Alexander Couzens <lynxis@fe80.eu>
324M: Patrick Rudolph <siro@das-labor.org>
325S: Maintained
326F: src/mainboard/lenovo/
327
328LENOVO G505S MAINBOARD
329M: Mike Banon <mikebdp2@gmail.com>
330S: Maintained
331F: src/mainboard/lenovo/g505s/
332
Stefan Ott98d63852021-04-22 01:28:56 +0200333LENOVO X200 MAINBOARD
334R: Stefan Ott <coreboot@desire.ch>
335S: Maintained
336F: src/mainboard/lenovo/x200/
337
338LENOVO X201 MAINBOARD
339R: Stefan Ott <coreboot@desire.ch>
340S: Maintained
341F: src/mainboard/lenovo/x201/
Angel Pons8d6f5872020-06-07 00:25:42 +0200342
343
344LIBRETREND LT1000 MAINBOARD
345M: Piotr Król <piotr.krol@3mdeb.com>
346M: Michał Żygowski <michal.zygowski@3mdeb.com>
347S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100348F: src/mainboard/libretrend/lt1000/
Angel Pons8d6f5872020-06-07 00:25:42 +0200349
350
Angel Pons8602e662021-04-21 23:29:03 +0200351
352MSI H81M-P33 MAINBOARD
353M: Angel Pons <th3fanbus@gmail.com>
354S: Maintained
355F: src/mainboard/msi/h81m-p33/
356
357
358
Jonathan Zhangdd4f6432020-06-30 11:39:09 -0700359OCP DELTALAKE MAINBOARD
Jonathan Zhang4a4806f2021-09-16 09:06:47 -0700360M: Arthur Heymans <arthur@aheymans.xyz>
361M: Christian Walter <christian.walter@9elements.com>
Jonathan Zhangdd4f6432020-06-30 11:39:09 -0700362M: Johnny Lin <Johnny_Lin@wiwynn.com>
Jonathan Zhang4a4806f2021-09-16 09:06:47 -0700363M: Jonathan Zhang <jonzhang@fb.com>
364M: Tim Chu <Tim.Chu@quantatw.com>
Jonathan Zhangdd4f6432020-06-30 11:39:09 -0700365S: Supported
Felix Singer3c02ed92020-11-30 06:56:08 +0100366F: src/mainboard/ocp/deltalake/
Angel Pons8d6f5872020-06-07 00:25:42 +0200367
Jonathan Zhanged849ed2020-05-01 11:23:46 -0700368OCP TIOGAPASS MAINBOARD
369M: Jonathan Zhang <jonzhang@fb.com>
370M: Reddy Chagam <anjaneya.chagam@intel.com>
371M: Johnny Lin <Johnny_Lin@wiwynn.com>
372M: Morgan Jang <Morgan_Jang@wiwynn.com>
373M: Ryback Hung <<Ryback.Hung@quantatw.com>
374M: Bryant Ou <Bryant.Ou@quantatw.com>
375S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100376F: src/mainboard/ocp/tiogapass/
Jonathan Zhanged849ed2020-05-01 11:23:46 -0700377
Angel Pons8d6f5872020-06-07 00:25:42 +0200378
379
380OPENCELLULAR MAINBOARDS
381M: Christian Walter <christian.walter@9elements.com>
382M: Patrick Rudolph <patrick.rudolph@9elements.com>
383S: Supported
384F: src/mainboard/opencellular/elgon/
385
386
387
388PC ENGINES ALL MAINBOARDS
389M: Piotr Król <piotr.krol@3mdeb.com>
390M: Michał Żygowski <michal.zygowski@3mdeb.com>
391S: Supported
392F: src/mainboard/pcengines/
393
394
395
Frans Hendriksa78146c2019-07-19 10:30:20 +0200396PORTWELL PQ-M107 MAINBOARD
397M: Frans Hendriks <fhendriks@eltan.com>
Frans Hendriks7e7ea2b2021-12-02 10:15:20 +0100398M: Erik van den Bogaert <ebogaert@eltan.com>
Frans Hendriksa78146c2019-07-19 10:30:20 +0200399S: Maintained
400F: src/mainboard/portwell/m107/
401
Martin Roth2a3434752016-03-05 18:31:29 -0700402
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700403
Angel Pons8d6f5872020-06-07 00:25:42 +0200404PROTECTLI ALL MAINBOARDS
405M: Piotr Król <piotr.krol@3mdeb.com>
406M: Michał Żygowski <michal.zygowski@3mdeb.com>
407S: Maintained
408F: src/mainboard/protectli/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700409
Angel Pons8d6f5872020-06-07 00:25:42 +0200410
411
Christian Walter02b39372020-06-17 20:17:59 +0200412PRODRIVE HERMES MAINBOARD
413M: Christian Walter <christian.walter@9elements.com>
414M: Patrick Rudolph <patrick.rudolph@9elements.com>
415S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100416F: src/mainboard/prodrive/hermes/
Christian Walter02b39372020-06-17 20:17:59 +0200417
418
419
Angel Pons8d6f5872020-06-07 00:25:42 +0200420PURISM MAINBOARDS
421M: Matt DeVillier <matt.devillier@puri.sm>
Julius Werner848f5db2017-09-11 13:12:48 -0700422S: Supported
Felix Singer3c02ed92020-11-30 06:56:08 +0100423F: src/mainboard/purism/
Angel Pons8d6f5872020-06-07 00:25:42 +0200424
425
426
427SAMSUNG CHROMEOS MAINBOARDS
428M: Matt DeVillier <MrChromebox@gmail.com>
429S: Maintained
430F: src/mainboard/samsung/lumpy/
431F: src/mainboard/samsung/stumpy/
432
433
434
Felix Singer32608cf2020-11-22 00:38:16 +0000435SIEMENS CHILI MAINBAORD
436M: Felix Singer <felixsinger@posteo.net>
437M: Nico Huber <nico.h@gmx.de>
438S: Supported
439F: src/mainboard/siemens/chili/
440
Angel Pons8d6f5872020-06-07 00:25:42 +0200441SIEMENS MC_xxxx MAINBOARDS
442M: Werner Zeh <werner.zeh@siemens.com>
443S: Maintained
444F: src/mainboard/siemens/mc_apl1/
445
446
447
Sean Rhodes17441a32021-07-05 16:03:15 +0100448STAR LABS MAINBOARDS
449M: Sean Rhodes <sean@starlabs.systems>
450S: Maintained
451F: src/mainboard/starlabs/
452
453
454
Jeremy Soller625af2b2020-07-21 08:23:39 -0600455SYSTEM76 MAINBOARDS
456M: Jeremy Soller <jeremy@system76.com>
Tim Crawford5310d522021-04-21 15:30:29 -0600457M: Tim Crawford <tcrawford@system76.com>
Jeremy Soller625af2b2020-07-21 08:23:39 -0600458S: Maintained
459F: src/mainboard/system76/
460
461
462
Angel Pons8d6f5872020-06-07 00:25:42 +0200463SUPERMICRO X10SLM+-F MAINBOARD
464M: Tristan Corrick <tristan@corrick.kiwi>
465S: Maintained
466F: src/mainboard/supermicro/x10slm-f/
467
468SUPERMICRO X11-LGA1151-SERIES
469M: Michael Niewöhner <foss@mniewoehner.de>
470S: Maintained
Michael Niewöhner5fd29312020-11-13 01:13:46 +0100471F: src/mainboard/supermicro/x11-lga1151-series/
Angel Pons8d6f5872020-06-07 00:25:42 +0200472
473################################################################################
474# Architectures
475################################################################################
Julius Werner848f5db2017-09-11 13:12:48 -0700476
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700477ARM ARCHITECTURE
Julius Wernerc34e41f2017-06-09 14:26:03 -0700478M: Julius Werner <jwerner@chromium.org>
479S: Supported
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700480F: src/arch/arm/
Julius Wernerc34e41f2017-06-09 14:26:03 -0700481F: src/arch/arm64/
Julius Wernerc34e41f2017-06-09 14:26:03 -0700482F: src/soc/nvidia/
483F: src/soc/rockchip/
484F: util/nvidia/
485F: util/rockchip/
486
Angel Pons8d6f5872020-06-07 00:25:42 +0200487PPC64 ARCHITECTURE
488M: Ronald Minnich <rminnich@gmail.com>
489M: Timothy Pearson <tpearson@raptorengineeringinc.com>
490S: Maintained
491F: src/arch/ppc64/
492F: src/cpu/qemu-power8/
493F: src/mainboard/emulation/qemu-power8/
494
495RISC-V ARCHITECTURE
496M: Ronald Minnich <rminnich@gmail.com>
497R: Philipp Hug <philipp@hug.cx>
498S: Maintained
499F: src/arch/riscv/
500F: src/soc/sifive/
501F: src/soc/ucb/
502F: src/mainboard/emulation/*-riscv/
503F: src/mainboard/sifive/
504F: util/riscv/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700505
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700506X86 ARCHITECTURE
507F: src/arch/x86/
508F: src/cpu/x86/
509F: src/drivers/pc80/
510F: src/include/pc80/
511F: src/include/cpu/x86/
512
Angel Pons8d6f5872020-06-07 00:25:42 +0200513################################################################################
514# Embedded Controllers
515################################################################################
516
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600517CHROME EC
518M: Tim Wawrzynczak <twawrzynczak@chromium.org>
519S: Maintained
520F: src/ec/google/chromeec/
521
Angel Pons8d6f5872020-06-07 00:25:42 +0200522LENOVO EC
523M: Alexander Couzens <lynxis@fe80.eu>
524S: Maintained
525F: src/ec/lenovo/
526
Sean Rhodes17441a32021-07-05 16:03:15 +0100527STARLABS EC
528M: Sean Rhodes <sean@starlabs.systems>
529S: Maintained
530F: src/ec/starlabs/
531
Jeremy Soller625af2b2020-07-21 08:23:39 -0600532SYSTEM76 EC
533M: Jeremy Soller <jeremy@system76.com>
Tim Crawford5310d522021-04-21 15:30:29 -0600534M: Tim Crawford <tcrawford@system76.com>
Jeremy Soller625af2b2020-07-21 08:23:39 -0600535S: Maintained
536F: src/ec/system76/
537
Angel Pons8d6f5872020-06-07 00:25:42 +0200538################################################################################
539# Northbridges
540################################################################################
541
542INTEL HASWELL NORTHBRIDGE
543M: Angel Pons <th3fanbus@gmail.com>
544S: Maintained
545F: src/northbridge/intel/haswell/
546
547INTEL PINEVIEW CHIPSET
548M: Damien Zammit <damien@zamaudio.com>
549M: Angel Pons <th3fanbus@gmail.com>
550S: Odd Fixes
551F: src/northbridge/intel/pineview/
552
553INTEL SANDYBRIDGE NORTHBRIDGE
554M: Angel Pons <th3fanbus@gmail.com>
555S: Maintained
556F: src/northbridge/intel/sandybridge/
557
558INTEL X4X CHIPSET
559M: Damien Zammit <damien@zamaudio.com>
560M: Angel Pons <th3fanbus@gmail.com>
561S: Odd Fixes
562F: src/northbridge/intel/x4x/
563
564################################################################################
565# Platforms
566################################################################################
567
568AMD SUPPORT
569F: src/vendorcode/amd/
570F: src/cpu/amd/
571F: src/northbridge/amd/
572F: src/southbridge/amd/
573F: src/include/cpu/amd/
574
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700575INTEL SUPPORT
Martin Roth954338d2017-03-05 11:20:18 -0700576M: Patrick Rudolph <siro@das-labor.org>
577S: Maintained
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700578F: src/vendorcode/intel/
579F: src/cpu/intel/
580F: src/northbridge/intel/
581F: src/southbridge/intel/
582F: src/soc/intel/
583F: src/drivers/intel/
584F: src/include/cpu/intel/
585
Angel Pons8d6f5872020-06-07 00:25:42 +0200586INTEL FSP DENVERTON-NS SOC & HARCUVAR CRB
Mariusz Szafranski778c4f8c2020-11-19 13:05:32 +0100587M: Suresh Bellampalli <suresh.bellampalli@intel.com>
Angel Pons8d6f5872020-06-07 00:25:42 +0200588M: Vanessa Eusebio <vanessa.f.eusebio@intel.com>
Mariusz Szafranski778c4f8c2020-11-19 13:05:32 +0100589M: Michal Motyl <michalx.motyl@intel.com>
590M: Mariusz Szafranski <mariuszx.szafranski@intel.com>
591S: Maintained
Angel Pons8d6f5872020-06-07 00:25:42 +0200592F: src/mainboard/intel/harcuvar/
593F: src/soc/intel/denverton_ns/
Angel Pons8d6f5872020-06-07 00:25:42 +0200594
595INTEL FSP 1.1
596M: Lee Leahy <leroy.p.leahy@intel.com>
597M: Huang Jin <huang.jin@intel.com>
598M: York Yang <york.yang@intel.com>
599S: Supported
600F: src/drivers/intel/fsp1_1/
601
602INTEL FSP 2.0
603M: Andrey Petrov <andrey.petrov@gmail.com>
604S: Maintained
605F: src/drivers/intel/fsp2_0/
606
607################################################################################
608# Systems on a Chip
609################################################################################
610
Felix Heldfef413e2020-12-02 15:57:24 +0100611AMD Cezanne
612M: Marshall Dawson <marshalldawson3rd@gmail.com>
613M: Felix Held <felix-coreboot@felixheld.de>
614M: Jason Glenesk <jason.glenesk@gmail.com>
Raul E Rangelc81509c2021-01-25 10:24:14 -0700615M: Raul E Rangel <rrangel@chromium.org>
Felix Heldfef413e2020-12-02 15:57:24 +0100616S: Maintained
617F: src/soc/amd/cezanne/
Felix Heldfe84dbb2021-08-06 16:25:35 +0200618F: src/vendorcode/amd/fsp/cezanne/
Felix Heldfef413e2020-12-02 15:57:24 +0100619
620AMD common SoC code
621M: Marshall Dawson <marshalldawson3rd@gmail.com>
622M: Felix Held <felix-coreboot@felixheld.de>
623M: Jason Glenesk <jason.glenesk@gmail.com>
Raul E Rangelc81509c2021-01-25 10:24:14 -0700624M: Raul E Rangel <rrangel@chromium.org>
Felix Heldfef413e2020-12-02 15:57:24 +0100625S: Maintained
626F: src/soc/amd/common/
627
Felix Held93231b42020-11-13 15:56:28 +0100628AMD Picasso
629M: Marshall Dawson <marshalldawson3rd@gmail.com>
630M: Felix Held <felix-coreboot@felixheld.de>
631M: Jason Glenesk <jason.glenesk@gmail.com>
Raul E Rangelc81509c2021-01-25 10:24:14 -0700632M: Raul E Rangel <rrangel@chromium.org>
Felix Held93231b42020-11-13 15:56:28 +0100633S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100634F: src/soc/amd/picasso/
635F: src/vendorcode/amd/fsp/picasso/
Felix Held93231b42020-11-13 15:56:28 +0100636
Felix Held2e88d062022-01-25 04:39:39 +0100637AMD Sabrina
638M: Marshall Dawson <marshalldawson3rd@gmail.com>
639M: Felix Held <felix-coreboot@felixheld.de>
640M: Jason Glenesk <jason.glenesk@gmail.com>
641M: Raul E Rangel <rrangel@chromium.org>
642S: Maintained
643F: src/soc/amd/sabrina/
644F: src/vendorcode/amd/fsp/sabrina/
645
Felix Held4080e082021-08-06 16:30:02 +0200646AMD Stoneyridge
647M: Marshall Dawson <marshalldawson3rd@gmail.com>
648M: Felix Held <felix-coreboot@felixheld.de>
649S: Odd Fixes
650F: src/soc/amd/stoneyridge/
651
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600652INTEL ALDERLAKE SOC
653M: Tim Wawrzynczak <twawrzynczak@chromium.org>
654S: Maintained
655F: src/soc/intel/alderlake/
656
Angel Pons8d6f5872020-06-07 00:25:42 +0200657INTEL APOLLOLAKE_SOC
658M: Andrey Petrov <andrey.petrov@gmail.com>
659S: Maintained
660F: src/soc/intel/apollolake/
661
662INTEL BRASWELL SOC
663M: Piotr Król <piotr.krol@3mdeb.com>
664M: Michał Żygowski <michal.zygowski@3mdeb.com>
665M: Frans Hendriks <fhendriks@eltan.com>
666S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100667F: /src/soc/intel/braswell/
668F: /src/vendorcode/intel/fsp/fsp1_1/braswell/
Angel Pons8d6f5872020-06-07 00:25:42 +0200669
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600670INTEL TIGERLAKE SOC
671M: Tim Wawrzynczak <twawrzynczak@chromium.org>
672S: Maintained
673F: src/soc/intel/tigerlake/
674
Jonathan Zhange9b0b082020-06-30 13:28:52 -0700675INTEL Xeon Sacalable Processor Family
676M: Jonathan Zhang <jonzhang@fb.com>
677M: Reddy Chagam <anjaneya.chagam@intel.com>
678M: Johnny Lin <Johnny_Lin@wiwynn.com>
Jonathan Zhang4a4806f2021-09-16 09:06:47 -0700679M: Tim Chu <Tim.Chu@quantatw.com>
680M: Arthur Heymans <arthur@aheymans.xyz>
681M: Christian Walter <christian.walter@9elements.com>
Jonathan Zhange9b0b082020-06-30 13:28:52 -0700682S: Supported
Felix Singerd70d1d12020-11-30 06:56:08 +0100683F: src/soc/intel/xeon_sp/
Felix Singer3c02ed92020-11-30 06:56:08 +0100684F: src/vendorcode/intel/fsp/fsp2_0/skylake_sp/
685F: src/vendorcode/intel/fsp/fsp2_0/copperlake_sp/
Jonathan Zhange9b0b082020-06-30 13:28:52 -0700686
Julius Wernerb1263802020-08-24 14:24:21 -0700687MEDIATEK SOCS
688M: Hung-Te Lin <hungte@chromium.org>
689S: Supported
Felix Singer3c02ed92020-11-30 06:56:08 +0100690F: src/soc/mediatek/
Julius Wernerb1263802020-08-24 14:24:21 -0700691
Xi Chen022b1b92021-02-05 11:45:12 +0800692MEDIATEK MT8192
693M: Xi Chen <xixi.chen@mediatek.com>
694S: Maintained
695F: src/soc/mediatek/mt8192/
696F: src/vendorcode/mediatek/mt8192/
697
Angel Pons8d6f5872020-06-07 00:25:42 +0200698ORPHANED ARM SOCS
699S: Orphaned
700F: src/cpu/armltd/
Sam Lewisad7b2e22020-08-03 20:18:29 +1000701F: src/soc/ti/
Angel Pons8d6f5872020-06-07 00:25:42 +0200702F: src/soc/qualcomm/
703F: src/soc/samsung/
704F: util/exynos/
705F: util/ipqheader/
706
707################################################################################
708# Payloads
709################################################################################
710
711NVRAM
712F: util/nvramtool/
713F: payloads/nvramcui/
714
715LIBPAYLOAD
716F: payloads/libpayload/
717
718COREINFO PAYLOAD
719F: payloads/coreinfo/
720
721EXTERNAL PAYLOADS INTEGRATION
722M: Stefan Reinauer <stefan.reinauer@coreboot.org>
723M: Martin Roth <gaumless@gmail.com>
Felix Singer3c02ed92020-11-30 06:56:08 +0100724F: payloads/external/
Angel Pons8d6f5872020-06-07 00:25:42 +0200725
726LINUXBOOT PAYLOAD INTEGRATION
727M: Christian Walter <christian.walter@9elements.com>
728M: Marcello Sylvester Bauer <info@marcellobauer.com>
729S: Supported
Felix Singer3c02ed92020-11-30 06:56:08 +0100730F: payloads/external/LinuxBoot/
Angel Pons8d6f5872020-06-07 00:25:42 +0200731
732################################################################################
733# Utilities
734################################################################################
735
736ABUILD
Angel Pons8d6f5872020-06-07 00:25:42 +0200737M: Martin Roth <gaumless@gmail.com>
738S: Supported
739F: util/abuild/
740
741BOARD STATUS
742F: util/board_status/
743
744BUILD SYSTEM
Angel Pons8d6f5872020-06-07 00:25:42 +0200745M: Martin Roth <gaumless@gmail.com>
746S: Supported
747F: Makefile
748F: *.inc
749F: src/include/kconfig.h
750F: util/kconfig/
751F: util/sconfig/
752F: util/xcompile/
753F: util/genbuild_h/
754
755TOOLCHAIN
756F: util/crossgcc/
757
758DOCKER
759M: Martin Roth <gaumless@gmail.com>
760S: Supported
761F: util/docker/
762
763GIT
764F: .git*
765F: /util/gitconfig
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700766
Stefan Reinauer2e38cc52015-05-06 11:15:38 -0700767LINT SCRIPTS
Martin Roth057ce5f2016-03-17 12:03:00 -0600768M: Martin Roth <gaumless@gmail.com>
Stefan Reinauer2e38cc52015-05-06 11:15:38 -0700769S: Supported
770F: util/lint/
771
Angel Pons8d6f5872020-06-07 00:25:42 +0200772IFDTOOL
773M: Stefan Reinauer <stefan.reinauer@coreboot.org>
774F: util/ifdtool/
775
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700776INTELTOOL
777M: Stefan Reinauer <stefan.reinauer@coreboot.org>
778F: util/inteltool/
779
Philipp Deppenwiese4cd9a112016-03-23 00:02:40 +0100780INTELMETOOL
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100781M: Christian Walter <christian.walter@9elements.com>
Philipp Deppenwiese4cd9a112016-03-23 00:02:40 +0100782F: util/intelmetool/
783
Maxim Polyakov8f6c8962021-08-07 13:07:44 +0300784INTELP2M
785M: Maxim Polyakov <max.senia.poliak@gmail.com>
786S: Maintained
787F: util/intelp2m/
788
Nicola Corna4f4fc182017-02-23 16:53:45 +0100789ME_CLEANER
790M: Nicola Corna <nicola@corna.info>
791W: https://github.com/corna/me_cleaner
792S: Maintained
793F: util/me_cleaner/
794
Felix Singerf9948a42021-02-01 13:46:50 +0100795LIVEISO
796M: Felix Singer <felixsinger@posteo.net>
797S: Supported
798F: util/liveiso/
799
Angel Pons8d6f5872020-06-07 00:25:42 +0200800################################################################################
801# Miscellaneous
802################################################################################
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700803
Angel Pons8d6f5872020-06-07 00:25:42 +0200804ASPEED AST2050 DRIVER & COMMON CODE
805M: Timothy Pearson <tpearson@raptorengineeringinc.com>
Patrick Georgi65ff63f2015-05-21 18:54:10 +0200806S: Supported
Angel Pons8d6f5872020-06-07 00:25:42 +0200807F: src/drivers/aspeed/common/
808F: src/drivers/aspeed/ast2050/
Patrick Georgi65ff63f2015-05-21 18:54:10 +0200809
Angel Pons8d6f5872020-06-07 00:25:42 +0200810ACPI
Lijian Zhao5bd9b7f2020-12-29 09:12:36 +0800811M: Lance Zhao <lance.zhao@gmail.com>
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600812M: Tim Wawrzynczak <twawrzynczak@chromium.org>
Lijian Zhao5bd9b7f2020-12-29 09:12:36 +0800813S: Supported
Angel Pons8d6f5872020-06-07 00:25:42 +0200814F: src/acpi/
815F: src/arch/x86/acpi/
816F: util/acpi/
817
818LZ4 COMPRESSION
819M: Julius Werner <jwerner@chromium.org>
820S: Supported
821F: src/commonlib/lz4*
822F: payloads/libpayload/liblz4/
823F: util/cbfstool/lz4/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700824
825BINARY OBJECTS
826F: 3rdparty/blobs/
827
828VERIFIED BOOT
Julius Werner763db462021-07-30 16:30:14 -0700829M: Julius Werner <jwerner@chromium.org>
830M: Yu-Ping Wu <yupingso@google.com>
831S: Supported
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700832F: 3rdparty/vboot/
Julius Werner763db462021-07-30 16:30:14 -0700833F: src/security/vboot/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700834F: src/include/tpm.h
835F: src/include/tpm_lite/
836
837RESOURCE ALLOCATOR
838F: src/device/*
839F: src/include/device/
840F: src/include/cpu/cpu.h
841
842OPTION ROM EXECUTION & X86EMU
843F: src/device/oprom/
844
845CBFS
Julius Werner0655f782019-12-11 16:19:48 -0800846M: Julius Werner <jwerner@chromium.org>
847F: src/include/cbfs*
848F: src/commonlib/bsd/include/commonlib/bsd/cbfs*
849F: src/commonlib/bsd/cbfs*
850F: src/lib/cbfs.c
851
852CBFSTOOL
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700853F: util/cbfstool/
854
855CBMEM
856F: src/include/cbmem.h
857F: src/include/cbmem_id.h
858F: util/cbmem/
859
860CONSOLE
861F: src/console/
862F: src/include/console/
863F: src/drivers/uart/
864
Philipp Deppenwiese6507e6f2016-06-22 19:01:47 +0200865TPM SUPPORT
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100866M: Christian Walter <christian.walter@9elements.com>
Philipp Deppenwiese8f6af1c2018-11-23 19:13:54 +0100867S: Supported
Philipp Deppenwiese6507e6f2016-06-22 19:01:47 +0200868F: src/drivers/*/tpm/
Felix Singer3c02ed92020-11-30 06:56:08 +0100869F: src/security/tpm/
Philipp Deppenwiese6507e6f2016-06-22 19:01:47 +0200870
Martin Rothe801fcb2017-05-27 10:54:02 -0600871SUPERIOS & SUPERIOTOOL
872M: Felix Held <felix-coreboot@felixheld.de>
873S: Maintained
874F: src/superio/
875F: util/superiotool/
876
Patrick Georgidcc0cc22021-09-23 11:49:41 +0200877SPD UTILITIES
878M: Reka Norman <rekanorman@chromium.org>
879S: Maintained
880F: util/spd_tools/
881F: util/spdtool/
882
Julius Wernerc34e41f2017-06-09 14:26:03 -0700883MEMLAYOUT
884M: Julius Werner <jwerner@chromium.org>
885S: Supported
886F: */memlayout.h
887F: *.ld
888
Frans Hendriksf20bf922019-06-13 14:14:56 +0200889ELTAN VENDORCODE
890M: Frans Hendriks <fhendriks@eltan.com>
Frans Hendriks7e7ea2b2021-12-02 10:15:20 +0100891M: Erik van den Bogaert <ebogaert@eltan.com>
Frans Hendriksf20bf922019-06-13 14:14:56 +0200892S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100893F: src/vendorcode/eltan/
Frans Hendriksf20bf922019-06-13 14:14:56 +0200894
Tim Crawford56dd9f0382021-04-21 15:40:23 -0600895TAS5825M DRIVER
896M: Jeremy Soller <jeremy@system76.com>
897M: Tim Crawford <tcrawford@system76.com>
898S: Maintained
899F: src/drivers/i2c/tas5825m/
900
Patrick Georgi517097f2021-03-02 18:08:14 +0100901TESTS
902M: Jakub Czapiga <jacz@semihalf.com>
903S: Maintained
904F: tests/
Jakub Czapiga6df286e2021-12-15 15:46:35 +0000905F: payloads/libpayload/tests/
Patrick Georgi517097f2021-03-02 18:08:14 +0100906
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700907MISSING: TIMERS / DELAYS
908
909MISSING: TIMESTAMPS
910
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700911MISSING: FMAP
912
913MISSING: GPIO
914
915MISSING: SMP
916
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700917MISSING: DMP / QEMU-X86
918
919MISSING: ELOG
920
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700921MISSING: SPI
922
Angel Pons0b500992020-04-15 16:47:36 +0200923# *** Infrastructure Owners ***
Martin Roth19fdedb2017-06-25 15:44:16 -0600924# This is intended to let people know who they should contact for issues with various infrastructure pieces.
925# Hardware
926# Owners: Stefan, Patrick
Sumeet Pawnikar1638a852017-09-12 22:17:55 +0530927# Backups:
Martin Roth19fdedb2017-06-25 15:44:16 -0600928
929# Web Server
930# Owners: Stefan, Patrick
931# Backups:
932
933# Website
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100934# Owners: Martin
Martin Roth19fdedb2017-06-25 15:44:16 -0600935# Backups: Patrick, Stefan
936
937# Documentation Website
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100938# Owners: Patrick
Martin Roth19fdedb2017-06-25 15:44:16 -0600939# Backups:
940
Patrick Georgi1d348942019-07-17 20:40:50 +0200941CODE OF CONDUCT
942M: Stefan Reinauer <stefan.reinauer@coreboot.org>
Patrick Georgi1d348942019-07-17 20:40:50 +0200943M: Ronald Minnich <rminnich@coreboot.org>
944M: Martin Roth <martin@coreboot.org>
945S: Maintained
946F: Documentation/community/code_of_conduct.md
947
Martin Roth19fdedb2017-06-25 15:44:16 -0600948# Wiki
949# Owners: Stefan, Patrick
950# Backups:
951
952# Gerrit
953# Owners: Stefan, Patrick
954# Backups: Martin
955
956# Jenkins
957# Owners: Patrick, Martin
958# Backups:
959
960# Bug Tracker
961# Owners: Lynxis,
962# Backups: Martin,
963
964# Mailing List
965# Owners: Stefan, Patrick
966# Backups: Martin,
967
968# Software Freedom Conservancy
969# Main contact: Martin
970# “Official” contact: Stefan