blob: 131aea6384cc10d305c8cad8292ec8a0d0dc1731 [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
Felix Held9a1583b2020-12-06 20:15:31 +0100141M: Felix Held <felix-coreboot@felixheld.de>
142M: Jason Glenesk <jason.glenesk@gmail.com>
Fred Reitberger636a6de2022-02-17 13:27:35 -0500143M: Fred Reitberger <reitbergerfred@gmail.com>
Martin Roth7703b192022-08-10 12:14:10 -0600144L: amd_coreboot_org_changes@googlegroups.com
Felix Held9a1583b2020-12-06 20:15:31 +0100145S: Maintained
Martin Roth7703b192022-08-10 12:14:10 -0600146F: src/mainboard/amd/bilby/
Fred Reitbergerbc4b85f2022-10-14 08:51:12 -0400147F: src/mainboard/amd/birman/
Felix Heldd575c8d2022-01-25 04:41:06 +0100148F: src/mainboard/amd/chausie/
Felix Held9a1583b2020-12-06 20:15:31 +0100149F: src/mainboard/amd/majolica/
150F: src/mainboard/amd/mandolin/
151
Martin Roth7703b192022-08-10 12:14:10 -0600152AMD reference boards outside of family 17h and 19h
153L: amd_coreboot_org_changes@googlegroups.com
154F: src/mainboard/amd/gardenia/
155F: src/mainboard/amd/inagua/
156F: src/mainboard/amd/olivehill/
Felix Heldf0d62ce2022-10-14 17:48:22 +0200157F: src/mainboard/amd/pademelon/
Martin Roth7703b192022-08-10 12:14:10 -0600158F: src/mainboard/amd/parmer/
159F: src/mainboard/amd/persimmon/
160F: src/mainboard/amd/south_station/
161F: src/mainboard/amd/thatcher/
162F: src/mainboard/amd/union_station/
163
164
165
Evgeny Zinoviev09bf63e2019-05-31 16:03:27 +0300166APPLE MAINBOARDS
167M: Evgeny Zinoviev <me@ch1p.io>
168S: Maintained
169F: src/mainboard/apple/
170
Patrick Georgi8fb453e2018-11-21 22:12:45 +0100171
Angel Pons8d6f5872020-06-07 00:25:42 +0200172
173ASROCK B85M PRO4 MAINBOARD
Angel Pons8a508272020-06-06 22:45:16 +0200174M: Angel Pons <th3fanbus@gmail.com>
175S: Maintained
Angel Pons8d6f5872020-06-07 00:25:42 +0200176F: src/mainboard/asrock/b85m_pro4/
Andrey Petrov842dfe82016-05-24 22:01:56 -0700177
Angel Pons33849042018-12-01 23:28:03 +0100178ASROCK G41C-GS MAINBOARD & VARIANTS
179M: Angel Pons <th3fanbus@gmail.com>
180S: Maintained
181F: src/mainboard/asrock/g41c-gs/
182
Tristan Corrickd88cf5f2018-12-06 19:26:47 +1300183ASROCK H81M-HDS MAINBOARD
184M: Tristan Corrick <tristan@corrick.kiwi>
185S: Maintained
186F: src/mainboard/asrock/h81m-hds/
187
Angel Pons8d6f5872020-06-07 00:25:42 +0200188
Angel Ponsf2aaddc2020-06-06 22:38:38 +0200189
Mike Banon2a830852021-10-27 20:11:45 +0300190ASUS A88XM-E MAINBOARD
191M: Mike Banon <mikebdp2@gmail.com>
192S: Maintained
193F: src/mainboard/asus/a88xm-e/
194
Mike Banonc732d682019-12-31 14:29:39 +0300195ASUS AM1I-A MAINBOARD
196M: Mike Banon <mikebdp2@gmail.com>
197S: Maintained
198F: src/mainboard/asus/am1i-a/
199
Angel Ponse94cda52021-05-17 12:31:29 +0200200ASUS H61 SERIES MAINBOARDS
201M: Angel Pons <th3fanbus@gmail.com>
Angel Ponsed1e25d2021-05-17 13:22:57 +0200202M: Tristan Corrick <tristan@corrick.kiwi>
Angel Ponse94cda52021-05-17 12:31:29 +0200203S: Maintained
204F: src/mainboard/asus/h61-series/
205
Tristan Corrickd88cf5f2018-12-06 19:26:47 +1300206ASUS MAXIMUS IV GENE-Z MAINBOARD
207M: Tristan Corrick <tristan@corrick.kiwi>
208S: Maintained
209F: src/mainboard/asus/maximus_iv_gene-z/
210
Angel Pons33849042018-12-01 23:28:03 +0100211ASUS P5QC PRO MAINBOARD & VARIANTS
212M: Angel Pons <th3fanbus@gmail.com>
Stefan Ott98d63852021-04-22 01:28:56 +0200213R: Stefan Ott <coreboot@desire.ch>
Angel Pons33849042018-12-01 23:28:03 +0100214S: Maintained
215F: src/mainboard/asus/p5qc/
216
Angel Ponsf2aaddc2020-06-06 22:38:38 +0200217ASUS P5QPL-AM MAINBOARD & VARIANTS
218M: Angel Pons <th3fanbus@gmail.com>
219S: Maintained
220F: src/mainboard/asus/p5qpl-am/
221
Angel Pons81c2e022021-05-17 17:45:54 +0200222ASUS P8Z77 SERIES MAINBOARDS
Angel Ponsf2aaddc2020-06-06 22:38:38 +0200223M: Angel Pons <th3fanbus@gmail.com>
Angel Pons6f925062021-05-17 17:57:19 +0200224M: Vlado Cibic <vladocb@protonmail.com>
Angel Ponsf2aaddc2020-06-06 22:38:38 +0200225S: Maintained
Angel Pons81c2e022021-05-17 17:45:54 +0200226F: src/mainboard/asus/p8z77-series/
Angel Ponsf2aaddc2020-06-06 22:38:38 +0200227
Michał Żygowskib9f9f6c2018-12-21 12:23:27 +0100228
Michael Niewöhner489a11e2019-10-17 14:57:52 +0200229
Felix Singer63975f02020-10-12 21:47:43 +0000230CLEVO MAINBOARDS
231M: Felix Singer <felixsinger@posteo.net>
Michael Niewöhnere4478632020-07-19 22:56:35 +0200232M: Michael Niewöhner <foss@mniewoehner.de>
Felix Singer63975f02020-10-12 21:47:43 +0000233S: Supported
Michael Niewöhner5fd29312020-11-13 01:13:46 +0100234F: src/mainboard/clevo/
Felix Singer63975f02020-10-12 21:47:43 +0000235
236
237
Frans Hendriks1583fcd2019-06-05 10:18:23 +0200238FACEBOOK FBG1701 MAINBOARD
239M: Frans Hendriks <fhendriks@eltan.com>
Frans Hendriks7e7ea2b2021-12-02 10:15:20 +0100240M: Erik van den Bogaert <ebogaert@eltan.com>
Frans Hendriks1583fcd2019-06-05 10:18:23 +0200241S: Maintained
242F: src/mainboard/facebook/fbg1701/
243
Wim Vervoorn4ba70a72019-12-05 13:48:11 +0100244FACEBOOK MONOLITH MAINBOARD
245M: Frans Hendriks <fhendriks@eltan.com>
Frans Hendriks7e7ea2b2021-12-02 10:15:20 +0100246M: Erik van den Bogaert <ebogaert@eltan.com>
Wim Vervoorn4ba70a72019-12-05 13:48:11 +0100247S: Maintained
248F: src/mainboard/facebook/monolith/
249
Angel Pons8d6f5872020-06-07 00:25:42 +0200250
251
Angel Pons8602e662021-04-21 23:29:03 +0200252GIGABYTE GA-D510UD MAINBOARD
253M: Angel Pons <th3fanbus@gmail.com>
254S: Maintained
255F: src/mainboard/gigabyte/ga-d510ud/
256
Angel Pons8d6f5872020-06-07 00:25:42 +0200257GIGABYTE GA-G41M-ES2L MAINBOARD
258M: Damien Zammit <damien@zamaudio.com>
259S: Odd Fixes
Felix Singer3c02ed92020-11-30 06:56:08 +0100260F: src/mainboard/gigabyte/ga-g41m-es2l/
Angel Pons8d6f5872020-06-07 00:25:42 +0200261
262GIGABYTE GA-H61M SERIES MAINBOARDS
263M: Angel Pons <th3fanbus@gmail.com>
264S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100265F: src/mainboard/gigabyte/ga-h61m-series/
Angel Pons8d6f5872020-06-07 00:25:42 +0200266
Kapil Porwal423bc1a2022-08-08 13:05:23 +0000267GOOGLE REX MAINBOARDS
268M: Subrata Banik <subratabanik@google.com>
269M: Tarun Tuli <taruntuli@google.com>
270M: Kapil Porwal <kapilporwal@google.com>
271S: Maintained
272F: src/mainboard/google/rex/
Angel Pons8d6f5872020-06-07 00:25:42 +0200273
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600274GOOGLE BRYA MAINBOARDS
Tarun Tuli660d1ee2022-10-03 19:37:31 +0000275M: Tarun Tuli <taruntuli@google.com>
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600276S: Maintained
277F: src/mainboard/google/brya/
278
279GOOGLE HATCH MAINBOARDS
Tarun Tuli660d1ee2022-10-03 19:37:31 +0000280M: Tarun Tuli <taruntuli@google.com>
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600281S: Maintained
282F: src/mainboard/google/hatch/
Angel Pons8d6f5872020-06-07 00:25:42 +0200283
284GOOGLE PANTHER MAINBOARD
285M: Stefan Reinauer <stefan.reinauer@coreboot.org>
286S: Supported
287F: src/mainboard/google/panther/
288
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600289GOOGLE VOLTEER MAINBOARDS
Nick Vaccaro5f124552021-04-28 14:28:39 -0700290M: Nick Vaccaro <nvaccaro@chromium.org>
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600291S: Maintained
292F: src/mainboard/google/volteer/
293
Angel Pons8d6f5872020-06-07 00:25:42 +0200294GOOGLE MAINBOARDS (Intel-based, legacy/inactive)
295M: Matt DeVillier <MrChromebox@gmail.com>
296S: Maintained
297F: src/mainboard/google/auron/
298F: src/mainboard/google/beltino/
299F: src/mainboard/google/butterfly/
300F: src/mainboard/google/cyan/
301F: src/mainboard/google/glados/
302F: src/mainboard/google/jecht/
303F: src/mainboard/google/link/
304F: src/mainboard/google/parrot/
305F: src/mainboard/google/slippy/
306F: src/mainboard/google/stout/
307
Martin Roth7703b192022-08-10 12:14:10 -0600308GOOGLE AMD-BASED MAINBOARDS
309M: Martin Roth <martin.roth@amd.corp-partner.google.com>
310M: Jason Nien <jason.nien@amd.corp-partner.google.com>
311L: amd_coreboot_org_changes@googlegroups.com
312S: Supported
313F: src/mainboard/google/kahlee/
314F: src/mainboard/google/zork/
315F: src/mainboard/google/guybrush/
316F: src/mainboard/google/skyrim/
Angel Pons8d6f5872020-06-07 00:25:42 +0200317
318
Angel Pons8602e662021-04-21 23:29:03 +0200319HP 280 G2 MAINBOARD
320M: Angel Pons <th3fanbus@gmail.com>
321S: Maintained
322F: src/mainboard/hp/280_g2/
323
324
325
Angel Pons8d6f5872020-06-07 00:25:42 +0200326INTEL D510MO MAINBOARD
327M: Damien Zammit <damien@zamaudio.com>
328S: Odd Fixes
Felix Singer3c02ed92020-11-30 06:56:08 +0100329F: src/mainboard/intel/d510mo/
Angel Pons8d6f5872020-06-07 00:25:42 +0200330
Mariusz Szafranski37afe1c2022-01-19 15:25:29 +0000331INTEL HARCUVAR_CRB MAINBOARD
332M: Jeff Daly <jeffd@silicom-usa.com>
333M: Vanessa Eusebio <vanessa.f.eusebio@intel.com>
334M: Suresh Bellampalli <suresh.bellampalli@intel.com>
335M: Mariusz Szafranski <mariuszx.szafranski@intel.com>
336S: Maintained
337F: src/mainboard/intel/harcuvar/
338
Angel Pons8d6f5872020-06-07 00:25:42 +0200339INTEL STRAGO MAINBOARD
340M: Hannah Williams <hannah.williams@intel.com>
341S: Supported
342F: /src/mainboard/intel/strago/
343
344
345
Felix Singer32608cf2020-11-22 00:38:16 +0000346KONTRON BSL6 MAINBOARD
347M: Felix Singer <felixsinger@posteo.net>
348M: Nico Huber <nico.h@gmx.de>
349S: Supported
350F: src/mainboard/kontron/bsl6/
351
Felix Singer5a41b0d2020-11-23 20:20:38 +0000352KONTRON MAL10 MAINBOARD
353M: Maxim Polyakov <max.senia.poliak@gmail.com>
354M: Nico Huber <nico.h@gmx.de>
355M: Felix Singer <felixsinger@posteo.net>
356S: Supported
357F: src/mainboard/kontron/mal10/
358
Felix Singer32608cf2020-11-22 00:38:16 +0000359
360
Angel Pons8d6f5872020-06-07 00:25:42 +0200361LENOVO MAINBOARDS
362M: Alexander Couzens <lynxis@fe80.eu>
Angel Pons8d6f5872020-06-07 00:25:42 +0200363S: Maintained
364F: src/mainboard/lenovo/
365
366LENOVO G505S MAINBOARD
367M: Mike Banon <mikebdp2@gmail.com>
368S: Maintained
369F: src/mainboard/lenovo/g505s/
370
Stefan Ott98d63852021-04-22 01:28:56 +0200371LENOVO X200 MAINBOARD
372R: Stefan Ott <coreboot@desire.ch>
373S: Maintained
374F: src/mainboard/lenovo/x200/
375
376LENOVO X201 MAINBOARD
377R: Stefan Ott <coreboot@desire.ch>
378S: Maintained
379F: src/mainboard/lenovo/x201/
Angel Pons8d6f5872020-06-07 00:25:42 +0200380
381
382LIBRETREND LT1000 MAINBOARD
383M: Piotr Król <piotr.krol@3mdeb.com>
384M: Michał Żygowski <michal.zygowski@3mdeb.com>
385S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100386F: src/mainboard/libretrend/lt1000/
Angel Pons8d6f5872020-06-07 00:25:42 +0200387
388
Angel Pons8602e662021-04-21 23:29:03 +0200389
390MSI H81M-P33 MAINBOARD
391M: Angel Pons <th3fanbus@gmail.com>
392S: Maintained
393F: src/mainboard/msi/h81m-p33/
394
Michał Żygowski4a12f542022-07-25 10:10:50 +0200395MSI MS-7D25 MAINBOARDS
396M: Michał Żygowski <michal.zygowski@3mdeb.com>
397M: Michał Kopeć <michal.kopec@3mdeb.com>
398S: Maintained
399F: src/mainboard/msi/ms7d25/
Angel Pons8602e662021-04-21 23:29:03 +0200400
Jonathan Zhangdd4f6432020-06-30 11:39:09 -0700401OCP DELTALAKE MAINBOARD
Jonathan Zhang4a4806f2021-09-16 09:06:47 -0700402M: Arthur Heymans <arthur@aheymans.xyz>
403M: Christian Walter <christian.walter@9elements.com>
Jonathan Zhangdd4f6432020-06-30 11:39:09 -0700404M: Johnny Lin <Johnny_Lin@wiwynn.com>
Jonathan Zhang4a4806f2021-09-16 09:06:47 -0700405M: Jonathan Zhang <jonzhang@fb.com>
406M: Tim Chu <Tim.Chu@quantatw.com>
Jonathan Zhangdd4f6432020-06-30 11:39:09 -0700407S: Supported
Felix Singer3c02ed92020-11-30 06:56:08 +0100408F: src/mainboard/ocp/deltalake/
Angel Pons8d6f5872020-06-07 00:25:42 +0200409
Jonathan Zhanged849ed2020-05-01 11:23:46 -0700410OCP TIOGAPASS MAINBOARD
411M: Jonathan Zhang <jonzhang@fb.com>
412M: Reddy Chagam <anjaneya.chagam@intel.com>
413M: Johnny Lin <Johnny_Lin@wiwynn.com>
414M: Morgan Jang <Morgan_Jang@wiwynn.com>
415M: Ryback Hung <<Ryback.Hung@quantatw.com>
416M: Bryant Ou <Bryant.Ou@quantatw.com>
417S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100418F: src/mainboard/ocp/tiogapass/
Jonathan Zhanged849ed2020-05-01 11:23:46 -0700419
Angel Pons8d6f5872020-06-07 00:25:42 +0200420
421
422OPENCELLULAR MAINBOARDS
423M: Christian Walter <christian.walter@9elements.com>
424M: Patrick Rudolph <patrick.rudolph@9elements.com>
425S: Supported
426F: src/mainboard/opencellular/elgon/
427
428
429
430PC ENGINES ALL MAINBOARDS
431M: Piotr Król <piotr.krol@3mdeb.com>
432M: Michał Żygowski <michal.zygowski@3mdeb.com>
433S: Supported
434F: src/mainboard/pcengines/
435
436
437
Frans Hendriksa78146c2019-07-19 10:30:20 +0200438PORTWELL PQ-M107 MAINBOARD
439M: Frans Hendriks <fhendriks@eltan.com>
Frans Hendriks7e7ea2b2021-12-02 10:15:20 +0100440M: Erik van den Bogaert <ebogaert@eltan.com>
Frans Hendriksa78146c2019-07-19 10:30:20 +0200441S: Maintained
442F: src/mainboard/portwell/m107/
443
Martin Roth2a3434752016-03-05 18:31:29 -0700444
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700445
Angel Pons8d6f5872020-06-07 00:25:42 +0200446PROTECTLI ALL MAINBOARDS
447M: Piotr Król <piotr.krol@3mdeb.com>
448M: Michał Żygowski <michal.zygowski@3mdeb.com>
449S: Maintained
450F: src/mainboard/protectli/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700451
Angel Pons8d6f5872020-06-07 00:25:42 +0200452
453
Lean Sheng Tana29452a2022-06-03 10:06:04 +0200454PRODRIVE ATLAS MAINBOARD
455M: Angel Pons <th3fanbus@gmail.com>
456M: Christian Walter <christian.walter@9elements.com>
457M: Lean Sheng Tan <sheng.tan@9elements.com>
458S: Maintained
459F: src/mainboard/prodrive/atlas/
460
Christian Walter02b39372020-06-17 20:17:59 +0200461PRODRIVE HERMES MAINBOARD
462M: Christian Walter <christian.walter@9elements.com>
463M: Patrick Rudolph <patrick.rudolph@9elements.com>
464S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100465F: src/mainboard/prodrive/hermes/
Christian Walter02b39372020-06-17 20:17:59 +0200466
467
468
Angel Pons8d6f5872020-06-07 00:25:42 +0200469PURISM MAINBOARDS
Jonathon Hall5ec1c142022-08-02 16:45:00 -0400470M: Jonathon Hall <jonathon.hall@puri.sm>
Julius Werner848f5db2017-09-11 13:12:48 -0700471S: Supported
Felix Singer3c02ed92020-11-30 06:56:08 +0100472F: src/mainboard/purism/
Angel Pons8d6f5872020-06-07 00:25:42 +0200473
474
475
476SAMSUNG CHROMEOS MAINBOARDS
477M: Matt DeVillier <MrChromebox@gmail.com>
478S: Maintained
479F: src/mainboard/samsung/lumpy/
480F: src/mainboard/samsung/stumpy/
481
482
483
Felix Singer32608cf2020-11-22 00:38:16 +0000484SIEMENS CHILI MAINBAORD
485M: Felix Singer <felixsinger@posteo.net>
486M: Nico Huber <nico.h@gmx.de>
487S: Supported
488F: src/mainboard/siemens/chili/
489
Angel Pons8d6f5872020-06-07 00:25:42 +0200490SIEMENS MC_xxxx MAINBOARDS
491M: Werner Zeh <werner.zeh@siemens.com>
492S: Maintained
493F: src/mainboard/siemens/mc_apl1/
Werner Zeh9f15a6c2022-04-22 10:23:44 +0200494F: src/mainboard/siemens/mc_ehl/
Angel Pons8d6f5872020-06-07 00:25:42 +0200495
496
497
Sean Rhodes17441a32021-07-05 16:03:15 +0100498STAR LABS MAINBOARDS
499M: Sean Rhodes <sean@starlabs.systems>
500S: Maintained
501F: src/mainboard/starlabs/
502
503
504
Jeremy Soller625af2b2020-07-21 08:23:39 -0600505SYSTEM76 MAINBOARDS
506M: Jeremy Soller <jeremy@system76.com>
Tim Crawford5310d522021-04-21 15:30:29 -0600507M: Tim Crawford <tcrawford@system76.com>
Jeremy Soller625af2b2020-07-21 08:23:39 -0600508S: Maintained
509F: src/mainboard/system76/
510
511
512
Angel Pons8d6f5872020-06-07 00:25:42 +0200513SUPERMICRO X10SLM+-F MAINBOARD
514M: Tristan Corrick <tristan@corrick.kiwi>
515S: Maintained
516F: src/mainboard/supermicro/x10slm-f/
517
518SUPERMICRO X11-LGA1151-SERIES
519M: Michael Niewöhner <foss@mniewoehner.de>
520S: Maintained
Michael Niewöhner5fd29312020-11-13 01:13:46 +0100521F: src/mainboard/supermicro/x11-lga1151-series/
Angel Pons8d6f5872020-06-07 00:25:42 +0200522
523################################################################################
524# Architectures
525################################################################################
Julius Werner848f5db2017-09-11 13:12:48 -0700526
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700527ARM ARCHITECTURE
Julius Wernerc34e41f2017-06-09 14:26:03 -0700528M: Julius Werner <jwerner@chromium.org>
529S: Supported
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700530F: src/arch/arm/
Julius Wernerc34e41f2017-06-09 14:26:03 -0700531F: src/arch/arm64/
Julius Wernerc34e41f2017-06-09 14:26:03 -0700532F: src/soc/nvidia/
533F: src/soc/rockchip/
534F: util/nvidia/
535F: util/rockchip/
536
Angel Pons8d6f5872020-06-07 00:25:42 +0200537PPC64 ARCHITECTURE
538M: Ronald Minnich <rminnich@gmail.com>
539M: Timothy Pearson <tpearson@raptorengineeringinc.com>
540S: Maintained
541F: src/arch/ppc64/
542F: src/cpu/qemu-power8/
543F: src/mainboard/emulation/qemu-power8/
544
545RISC-V ARCHITECTURE
546M: Ronald Minnich <rminnich@gmail.com>
547R: Philipp Hug <philipp@hug.cx>
548S: Maintained
549F: src/arch/riscv/
550F: src/soc/sifive/
551F: src/soc/ucb/
552F: src/mainboard/emulation/*-riscv/
553F: src/mainboard/sifive/
554F: util/riscv/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700555
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700556X86 ARCHITECTURE
557F: src/arch/x86/
558F: src/cpu/x86/
559F: src/drivers/pc80/
560F: src/include/pc80/
561F: src/include/cpu/x86/
562
Angel Pons8d6f5872020-06-07 00:25:42 +0200563################################################################################
564# Embedded Controllers
565################################################################################
566
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600567CHROME EC
Tarun Tuli660d1ee2022-10-03 19:37:31 +0000568M: Boris Mittelberg <bmbm@google.com>
569M: Caveh Jalali <caveh@chromium.org>
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600570S: Maintained
571F: src/ec/google/chromeec/
572
Angel Pons8d6f5872020-06-07 00:25:42 +0200573LENOVO EC
574M: Alexander Couzens <lynxis@fe80.eu>
575S: Maintained
576F: src/ec/lenovo/
577
Sean Rhodes17441a32021-07-05 16:03:15 +0100578STARLABS EC
579M: Sean Rhodes <sean@starlabs.systems>
580S: Maintained
581F: src/ec/starlabs/
582
Jeremy Soller625af2b2020-07-21 08:23:39 -0600583SYSTEM76 EC
584M: Jeremy Soller <jeremy@system76.com>
Tim Crawford5310d522021-04-21 15:30:29 -0600585M: Tim Crawford <tcrawford@system76.com>
Jeremy Soller625af2b2020-07-21 08:23:39 -0600586S: Maintained
587F: src/ec/system76/
588
Angel Pons8d6f5872020-06-07 00:25:42 +0200589################################################################################
590# Northbridges
591################################################################################
592
593INTEL HASWELL NORTHBRIDGE
594M: Angel Pons <th3fanbus@gmail.com>
595S: Maintained
596F: src/northbridge/intel/haswell/
597
598INTEL PINEVIEW CHIPSET
599M: Damien Zammit <damien@zamaudio.com>
600M: Angel Pons <th3fanbus@gmail.com>
601S: Odd Fixes
602F: src/northbridge/intel/pineview/
603
604INTEL SANDYBRIDGE NORTHBRIDGE
605M: Angel Pons <th3fanbus@gmail.com>
606S: Maintained
607F: src/northbridge/intel/sandybridge/
608
609INTEL X4X CHIPSET
610M: Damien Zammit <damien@zamaudio.com>
611M: Angel Pons <th3fanbus@gmail.com>
612S: Odd Fixes
613F: src/northbridge/intel/x4x/
614
615################################################################################
616# Platforms
617################################################################################
618
619AMD SUPPORT
Martin Roth7703b192022-08-10 12:14:10 -0600620L: amd_coreboot_org_changes@googlegroups.com
Angel Pons8d6f5872020-06-07 00:25:42 +0200621F: src/vendorcode/amd/
622F: src/cpu/amd/
623F: src/northbridge/amd/
624F: src/southbridge/amd/
625F: src/include/cpu/amd/
626
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700627INTEL SUPPORT
Martin Roth954338d2017-03-05 11:20:18 -0700628S: Maintained
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700629F: src/vendorcode/intel/
630F: src/cpu/intel/
631F: src/northbridge/intel/
632F: src/southbridge/intel/
633F: src/soc/intel/
634F: src/drivers/intel/
635F: src/include/cpu/intel/
636
Angel Pons8d6f5872020-06-07 00:25:42 +0200637INTEL FSP 1.1
638M: Lee Leahy <leroy.p.leahy@intel.com>
639M: Huang Jin <huang.jin@intel.com>
640M: York Yang <york.yang@intel.com>
641S: Supported
642F: src/drivers/intel/fsp1_1/
643
644INTEL FSP 2.0
645M: Andrey Petrov <andrey.petrov@gmail.com>
646S: Maintained
647F: src/drivers/intel/fsp2_0/
648
649################################################################################
650# Systems on a Chip
651################################################################################
652
Felix Heldfef413e2020-12-02 15:57:24 +0100653AMD Cezanne
Felix Heldfef413e2020-12-02 15:57:24 +0100654M: Felix Held <felix-coreboot@felixheld.de>
655M: Jason Glenesk <jason.glenesk@gmail.com>
Raul E Rangelc81509c2021-01-25 10:24:14 -0700656M: Raul E Rangel <rrangel@chromium.org>
Fred Reitberger636a6de2022-02-17 13:27:35 -0500657M: Fred Reitberger <reitbergerfred@gmail.com>
Matt DeVillier (AMD)0303d692022-07-20 17:08:41 -0500658M: Matt DeVillier <matt.devillier@amd.corp-partner.google.com>
Martin Roth7703b192022-08-10 12:14:10 -0600659L: amd_coreboot_org_changes@googlegroups.com
Felix Heldfef413e2020-12-02 15:57:24 +0100660S: Maintained
661F: src/soc/amd/cezanne/
Felix Heldfe84dbb2021-08-06 16:25:35 +0200662F: src/vendorcode/amd/fsp/cezanne/
Felix Heldfef413e2020-12-02 15:57:24 +0100663
664AMD common SoC code
Felix Heldfef413e2020-12-02 15:57:24 +0100665M: Felix Held <felix-coreboot@felixheld.de>
666M: Jason Glenesk <jason.glenesk@gmail.com>
Raul E Rangelc81509c2021-01-25 10:24:14 -0700667M: Raul E Rangel <rrangel@chromium.org>
Fred Reitberger636a6de2022-02-17 13:27:35 -0500668M: Fred Reitberger <reitbergerfred@gmail.com>
Matt DeVillier (AMD)0303d692022-07-20 17:08:41 -0500669M: Matt DeVillier <matt.devillier@amd.corp-partner.google.com>
Martin Roth7703b192022-08-10 12:14:10 -0600670L: amd_coreboot_org_changes@googlegroups.com
Felix Heldfef413e2020-12-02 15:57:24 +0100671S: Maintained
672F: src/soc/amd/common/
673
Felix Held93231b42020-11-13 15:56:28 +0100674AMD Picasso
Felix Held93231b42020-11-13 15:56:28 +0100675M: Felix Held <felix-coreboot@felixheld.de>
676M: Jason Glenesk <jason.glenesk@gmail.com>
Fred Reitberger636a6de2022-02-17 13:27:35 -0500677M: Fred Reitberger <reitbergerfred@gmail.com>
Matt DeVillier (AMD)0303d692022-07-20 17:08:41 -0500678M: Matt DeVillier <matt.devillier@amd.corp-partner.google.com>
Martin Roth7703b192022-08-10 12:14:10 -0600679L: amd_coreboot_org_changes@googlegroups.com
Felix Held93231b42020-11-13 15:56:28 +0100680S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100681F: src/soc/amd/picasso/
682F: src/vendorcode/amd/fsp/picasso/
Felix Held93231b42020-11-13 15:56:28 +0100683
Jon Murphy4f732422022-08-05 15:43:44 -0600684AMD Mendocino
Felix Held2e88d062022-01-25 04:39:39 +0100685M: Felix Held <felix-coreboot@felixheld.de>
686M: Jason Glenesk <jason.glenesk@gmail.com>
687M: Raul E Rangel <rrangel@chromium.org>
Fred Reitberger636a6de2022-02-17 13:27:35 -0500688M: Fred Reitberger <reitbergerfred@gmail.com>
Matt DeVillier (AMD)0303d692022-07-20 17:08:41 -0500689M: Matt DeVillier <matt.devillier@amd.corp-partner.google.com>
Martin Roth7703b192022-08-10 12:14:10 -0600690L: amd_coreboot_org_changes@googlegroups.com
691S: Supported
Jon Murphy4f732422022-08-05 15:43:44 -0600692F: src/soc/amd/mendocino/
693F: src/vendorcode/amd/fsp/mendocino/
Felix Held2e88d062022-01-25 04:39:39 +0100694
Fred Reitbergerbc4b85f2022-10-14 08:51:12 -0400695AMD Morgana
696M: Felix Held <felix-coreboot@felixheld.de>
697M: Jason Glenesk <jason.glenesk@gmail.com>
698M: Fred Reitberger <reitbergerfred@gmail.com>
699M: Matt DeVillier <matt.devillier@amd.corp-partner.google.com>
700L: amd_coreboot_org_changes@googlegroups.com
701S: Supported
702F: src/soc/amd/morgana/
703F: src/vendorcode/amd/fsp/morgana/
704
Felix Held4080e082021-08-06 16:30:02 +0200705AMD Stoneyridge
Felix Held4080e082021-08-06 16:30:02 +0200706M: Felix Held <felix-coreboot@felixheld.de>
Matt DeVillier (AMD)0303d692022-07-20 17:08:41 -0500707M: Matt DeVillier <matt.devillier@amd.corp-partner.google.com>
Martin Roth7703b192022-08-10 12:14:10 -0600708L: amd_coreboot_org_changes@googlegroups.com
Felix Held4080e082021-08-06 16:30:02 +0200709S: Odd Fixes
710F: src/soc/amd/stoneyridge/
711
Kapil Porwal423bc1a2022-08-08 13:05:23 +0000712INTEL METEORLAKE SOC
713M: Subrata Banik <subratabanik@google.com>
714M: Tarun Tuli <taruntuli@google.com>
715M: Kapil Porwal <kapilporwal@google.com>
716S: Maintained
717F: src/soc/intel/meteorlake/
718
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600719INTEL ALDERLAKE SOC
Tarun Tuli660d1ee2022-10-03 19:37:31 +0000720M: Subrata Banik <subratabanik@google.com>
721M: Tarun Tuli <taruntuli@google.com>
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600722S: Maintained
723F: src/soc/intel/alderlake/
724
Angel Pons8d6f5872020-06-07 00:25:42 +0200725INTEL APOLLOLAKE_SOC
Sean Rhodes88058a22022-10-20 10:48:34 +0100726M: Sean Rhodes <sean@starlabs.systems>
727S: Odd Fixes
Angel Pons8d6f5872020-06-07 00:25:42 +0200728F: src/soc/intel/apollolake/
729
730INTEL BRASWELL SOC
731M: Piotr Król <piotr.krol@3mdeb.com>
732M: Michał Żygowski <michal.zygowski@3mdeb.com>
733M: Frans Hendriks <fhendriks@eltan.com>
734S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100735F: /src/soc/intel/braswell/
736F: /src/vendorcode/intel/fsp/fsp1_1/braswell/
Angel Pons8d6f5872020-06-07 00:25:42 +0200737
Mariusz Szafranski37afe1c2022-01-19 15:25:29 +0000738INTEL DENVERTON-NS SOC
739M: Jeff Daly <jeffd@silicom-usa.com>
740M: Vanessa Eusebio <vanessa.f.eusebio@intel.com>
741M: Suresh Bellampalli <suresh.bellampalli@intel.com>
742M: Mariusz Szafranski <mariuszx.szafranski@intel.com>
743S: Maintained
744F: src/soc/intel/denverton_ns/
745
Lean Sheng Tan37a407f2022-06-03 10:12:28 +0200746INTEL ELKHARTLAKE SOC
747M: Lean Sheng Tan <sheng.tan@9elements.com>
748M: Werner Zeh <werner.zeh@siemens.com>
749S: Maintained
750F: src/soc/intel/elkhartlake/
751
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600752INTEL TIGERLAKE SOC
Tarun Tuli660d1ee2022-10-03 19:37:31 +0000753M: Subrata Banik <subratabanik@google.com>
754M: Tarun Tuli <taruntuli@google.com>
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600755S: Maintained
756F: src/soc/intel/tigerlake/
757
Jonathan Zhange9b0b082020-06-30 13:28:52 -0700758INTEL Xeon Sacalable Processor Family
759M: Jonathan Zhang <jonzhang@fb.com>
760M: Reddy Chagam <anjaneya.chagam@intel.com>
761M: Johnny Lin <Johnny_Lin@wiwynn.com>
Jonathan Zhang4a4806f2021-09-16 09:06:47 -0700762M: Tim Chu <Tim.Chu@quantatw.com>
763M: Arthur Heymans <arthur@aheymans.xyz>
764M: Christian Walter <christian.walter@9elements.com>
Jonathan Zhange9b0b082020-06-30 13:28:52 -0700765S: Supported
Felix Singerd70d1d12020-11-30 06:56:08 +0100766F: src/soc/intel/xeon_sp/
Felix Singer3c02ed92020-11-30 06:56:08 +0100767F: src/vendorcode/intel/fsp/fsp2_0/skylake_sp/
768F: src/vendorcode/intel/fsp/fsp2_0/copperlake_sp/
Jonathan Zhange9b0b082020-06-30 13:28:52 -0700769
Julius Wernerb1263802020-08-24 14:24:21 -0700770MEDIATEK SOCS
771M: Hung-Te Lin <hungte@chromium.org>
772S: Supported
Felix Singer3c02ed92020-11-30 06:56:08 +0100773F: src/soc/mediatek/
Julius Wernerb1263802020-08-24 14:24:21 -0700774
Xi Chen022b1b92021-02-05 11:45:12 +0800775MEDIATEK MT8192
776M: Xi Chen <xixi.chen@mediatek.com>
777S: Maintained
778F: src/soc/mediatek/mt8192/
779F: src/vendorcode/mediatek/mt8192/
780
Angel Pons8d6f5872020-06-07 00:25:42 +0200781ORPHANED ARM SOCS
782S: Orphaned
783F: src/cpu/armltd/
Sam Lewisad7b2e22020-08-03 20:18:29 +1000784F: src/soc/ti/
Angel Pons8d6f5872020-06-07 00:25:42 +0200785F: src/soc/qualcomm/
786F: src/soc/samsung/
787F: util/exynos/
788F: util/ipqheader/
789
790################################################################################
791# Payloads
792################################################################################
793
794NVRAM
795F: util/nvramtool/
796F: payloads/nvramcui/
797
798LIBPAYLOAD
799F: payloads/libpayload/
800
801COREINFO PAYLOAD
802F: payloads/coreinfo/
803
804EXTERNAL PAYLOADS INTEGRATION
805M: Stefan Reinauer <stefan.reinauer@coreboot.org>
806M: Martin Roth <gaumless@gmail.com>
Felix Singer3c02ed92020-11-30 06:56:08 +0100807F: payloads/external/
Angel Pons8d6f5872020-06-07 00:25:42 +0200808
809LINUXBOOT PAYLOAD INTEGRATION
810M: Christian Walter <christian.walter@9elements.com>
811M: Marcello Sylvester Bauer <info@marcellobauer.com>
812S: Supported
Felix Singer3c02ed92020-11-30 06:56:08 +0100813F: payloads/external/LinuxBoot/
Angel Pons8d6f5872020-06-07 00:25:42 +0200814
815################################################################################
816# Utilities
817################################################################################
818
819ABUILD
Angel Pons8d6f5872020-06-07 00:25:42 +0200820M: Martin Roth <gaumless@gmail.com>
821S: Supported
822F: util/abuild/
823
824BOARD STATUS
825F: util/board_status/
826
827BUILD SYSTEM
Angel Pons8d6f5872020-06-07 00:25:42 +0200828M: Martin Roth <gaumless@gmail.com>
829S: Supported
830F: Makefile
831F: *.inc
832F: src/include/kconfig.h
833F: util/kconfig/
834F: util/sconfig/
835F: util/xcompile/
836F: util/genbuild_h/
837
838TOOLCHAIN
839F: util/crossgcc/
840
841DOCKER
842M: Martin Roth <gaumless@gmail.com>
843S: Supported
844F: util/docker/
845
846GIT
847F: .git*
848F: /util/gitconfig
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700849
Stefan Reinauer2e38cc52015-05-06 11:15:38 -0700850LINT SCRIPTS
Martin Roth057ce5f2016-03-17 12:03:00 -0600851M: Martin Roth <gaumless@gmail.com>
Stefan Reinauer2e38cc52015-05-06 11:15:38 -0700852S: Supported
853F: util/lint/
854
Angel Pons8d6f5872020-06-07 00:25:42 +0200855IFDTOOL
856M: Stefan Reinauer <stefan.reinauer@coreboot.org>
857F: util/ifdtool/
858
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700859INTELTOOL
860M: Stefan Reinauer <stefan.reinauer@coreboot.org>
861F: util/inteltool/
862
Philipp Deppenwiese4cd9a112016-03-23 00:02:40 +0100863INTELMETOOL
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100864M: Christian Walter <christian.walter@9elements.com>
Philipp Deppenwiese4cd9a112016-03-23 00:02:40 +0100865F: util/intelmetool/
866
Maxim Polyakov8f6c8962021-08-07 13:07:44 +0300867INTELP2M
868M: Maxim Polyakov <max.senia.poliak@gmail.com>
869S: Maintained
870F: util/intelp2m/
871
Nicola Corna4f4fc182017-02-23 16:53:45 +0100872ME_CLEANER
873M: Nicola Corna <nicola@corna.info>
874W: https://github.com/corna/me_cleaner
875S: Maintained
876F: util/me_cleaner/
877
Felix Singerf9948a42021-02-01 13:46:50 +0100878LIVEISO
879M: Felix Singer <felixsinger@posteo.net>
880S: Supported
881F: util/liveiso/
882
Angel Pons8d6f5872020-06-07 00:25:42 +0200883################################################################################
884# Miscellaneous
885################################################################################
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700886
Angel Pons8d6f5872020-06-07 00:25:42 +0200887ASPEED AST2050 DRIVER & COMMON CODE
888M: Timothy Pearson <tpearson@raptorengineeringinc.com>
Patrick Georgi65ff63f2015-05-21 18:54:10 +0200889S: Supported
Angel Pons8d6f5872020-06-07 00:25:42 +0200890F: src/drivers/aspeed/common/
891F: src/drivers/aspeed/ast2050/
Patrick Georgi65ff63f2015-05-21 18:54:10 +0200892
Angel Pons8d6f5872020-06-07 00:25:42 +0200893ACPI
Lijian Zhao5bd9b7f2020-12-29 09:12:36 +0800894M: Lance Zhao <lance.zhao@gmail.com>
Tim Wawrzynczak7c3e48c2022-09-28 15:41:10 -0600895M: Tim Wawrzynczak <inforichland@gmail.com>
Lijian Zhao5bd9b7f2020-12-29 09:12:36 +0800896S: Supported
Angel Pons8d6f5872020-06-07 00:25:42 +0200897F: src/acpi/
898F: src/arch/x86/acpi/
899F: util/acpi/
900
901LZ4 COMPRESSION
902M: Julius Werner <jwerner@chromium.org>
903S: Supported
904F: src/commonlib/lz4*
905F: payloads/libpayload/liblz4/
906F: util/cbfstool/lz4/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700907
908BINARY OBJECTS
909F: 3rdparty/blobs/
910
911VERIFIED BOOT
Julius Werner763db462021-07-30 16:30:14 -0700912M: Julius Werner <jwerner@chromium.org>
913M: Yu-Ping Wu <yupingso@google.com>
914S: Supported
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700915F: 3rdparty/vboot/
Julius Werner763db462021-07-30 16:30:14 -0700916F: src/security/vboot/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700917F: src/include/tpm.h
918F: src/include/tpm_lite/
919
920RESOURCE ALLOCATOR
921F: src/device/*
922F: src/include/device/
923F: src/include/cpu/cpu.h
924
925OPTION ROM EXECUTION & X86EMU
926F: src/device/oprom/
927
928CBFS
Julius Werner0655f782019-12-11 16:19:48 -0800929M: Julius Werner <jwerner@chromium.org>
930F: src/include/cbfs*
931F: src/commonlib/bsd/include/commonlib/bsd/cbfs*
932F: src/commonlib/bsd/cbfs*
933F: src/lib/cbfs.c
934
935CBFSTOOL
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700936F: util/cbfstool/
937
938CBMEM
939F: src/include/cbmem.h
940F: src/include/cbmem_id.h
941F: util/cbmem/
942
943CONSOLE
944F: src/console/
945F: src/include/console/
946F: src/drivers/uart/
947
Philipp Deppenwiese6507e6f2016-06-22 19:01:47 +0200948TPM SUPPORT
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100949M: Christian Walter <christian.walter@9elements.com>
Philipp Deppenwiese8f6af1c2018-11-23 19:13:54 +0100950S: Supported
Philipp Deppenwiese6507e6f2016-06-22 19:01:47 +0200951F: src/drivers/*/tpm/
Felix Singer3c02ed92020-11-30 06:56:08 +0100952F: src/security/tpm/
Philipp Deppenwiese6507e6f2016-06-22 19:01:47 +0200953
Martin Rothe801fcb2017-05-27 10:54:02 -0600954SUPERIOS & SUPERIOTOOL
955M: Felix Held <felix-coreboot@felixheld.de>
Felix Held6e296b32022-04-06 21:49:24 +0200956S: Odd Fixes
Martin Rothe801fcb2017-05-27 10:54:02 -0600957F: src/superio/
958F: util/superiotool/
959
Patrick Georgidcc0cc22021-09-23 11:49:41 +0200960SPD UTILITIES
961M: Reka Norman <rekanorman@chromium.org>
962S: Maintained
963F: util/spd_tools/
964F: util/spdtool/
965
Julius Wernerc34e41f2017-06-09 14:26:03 -0700966MEMLAYOUT
967M: Julius Werner <jwerner@chromium.org>
968S: Supported
969F: */memlayout.h
970F: *.ld
971
Frans Hendriksf20bf922019-06-13 14:14:56 +0200972ELTAN VENDORCODE
973M: Frans Hendriks <fhendriks@eltan.com>
Frans Hendriks7e7ea2b2021-12-02 10:15:20 +0100974M: Erik van den Bogaert <ebogaert@eltan.com>
Frans Hendriksf20bf922019-06-13 14:14:56 +0200975S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100976F: src/vendorcode/eltan/
Frans Hendriksf20bf922019-06-13 14:14:56 +0200977
Tim Crawford56dd9f0382021-04-21 15:40:23 -0600978TAS5825M DRIVER
979M: Jeremy Soller <jeremy@system76.com>
980M: Tim Crawford <tcrawford@system76.com>
981S: Maintained
982F: src/drivers/i2c/tas5825m/
983
Patrick Georgi517097f2021-03-02 18:08:14 +0100984TESTS
985M: Jakub Czapiga <jacz@semihalf.com>
986S: Maintained
987F: tests/
Jakub Czapiga6df286e2021-12-15 15:46:35 +0000988F: payloads/libpayload/tests/
Patrick Georgi517097f2021-03-02 18:08:14 +0100989
Martin Rotha2efadd12022-10-16 14:46:07 -0600990COREBOOT RELEASES
991M: Felix Singer <felixsinger@posteo.net>
992M: Jason Glenesk <jason.glenesk@gmail.com>
993M: Angel Pons <th3fanbus@gmail.com>
994M: Martin Roth <gaumless@gmail.com>
Martin Rothfed17f92022-10-22 16:46:51 -0600995M: Matt DeVillier <MrChromebox@gmail.com>
Martin Rotha2efadd12022-10-16 14:46:07 -0600996S: Maintained
997F: Documentation/releases/
998F: util/release/
999
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -07001000MISSING: TIMERS / DELAYS
1001
1002MISSING: TIMESTAMPS
1003
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -07001004MISSING: FMAP
1005
1006MISSING: GPIO
1007
1008MISSING: SMP
1009
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -07001010MISSING: DMP / QEMU-X86
1011
1012MISSING: ELOG
1013
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -07001014MISSING: SPI
1015
Angel Pons0b500992020-04-15 16:47:36 +02001016# *** Infrastructure Owners ***
Martin Roth19fdedb2017-06-25 15:44:16 -06001017# This is intended to let people know who they should contact for issues with various infrastructure pieces.
1018# Hardware
1019# Owners: Stefan, Patrick
Sumeet Pawnikar1638a852017-09-12 22:17:55 +05301020# Backups:
Martin Roth19fdedb2017-06-25 15:44:16 -06001021
1022# Web Server
1023# Owners: Stefan, Patrick
1024# Backups:
1025
1026# Website
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +01001027# Owners: Martin
Martin Roth19fdedb2017-06-25 15:44:16 -06001028# Backups: Patrick, Stefan
1029
1030# Documentation Website
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +01001031# Owners: Patrick
Martin Roth19fdedb2017-06-25 15:44:16 -06001032# Backups:
1033
Patrick Georgi1d348942019-07-17 20:40:50 +02001034CODE OF CONDUCT
1035M: Stefan Reinauer <stefan.reinauer@coreboot.org>
Patrick Georgi1d348942019-07-17 20:40:50 +02001036M: Ronald Minnich <rminnich@coreboot.org>
1037M: Martin Roth <martin@coreboot.org>
1038S: Maintained
1039F: Documentation/community/code_of_conduct.md
1040
Martin Roth19fdedb2017-06-25 15:44:16 -06001041# Wiki
1042# Owners: Stefan, Patrick
1043# Backups:
1044
1045# Gerrit
1046# Owners: Stefan, Patrick
1047# Backups: Martin
1048
1049# Jenkins
1050# Owners: Patrick, Martin
1051# Backups:
1052
1053# Bug Tracker
1054# Owners: Lynxis,
1055# Backups: Martin,
1056
1057# Mailing List
1058# Owners: Stefan, Patrick
1059# Backups: Martin,
1060
1061# Software Freedom Conservancy
1062# Main contact: Martin
1063# “Official” contact: Stefan