blob: 97291afaf0804d73d83bd73a4ab6f3d6dd8611dd [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/
Felix Heldd575c8d2022-01-25 04:41:06 +0100147F: src/mainboard/amd/chausie/
Felix Held9a1583b2020-12-06 20:15:31 +0100148F: src/mainboard/amd/majolica/
149F: src/mainboard/amd/mandolin/
150
Martin Roth7703b192022-08-10 12:14:10 -0600151AMD reference boards outside of family 17h and 19h
152L: amd_coreboot_org_changes@googlegroups.com
153F: src/mainboard/amd/gardenia/
154F: src/mainboard/amd/inagua/
155F: src/mainboard/amd/olivehill/
156F: src/mainboard/amd/padmelon/
157F: src/mainboard/amd/parmer/
158F: src/mainboard/amd/persimmon/
159F: src/mainboard/amd/south_station/
160F: src/mainboard/amd/thatcher/
161F: src/mainboard/amd/union_station/
162
163
164
Evgeny Zinoviev09bf63e2019-05-31 16:03:27 +0300165APPLE MAINBOARDS
166M: Evgeny Zinoviev <me@ch1p.io>
167S: Maintained
168F: src/mainboard/apple/
169
Patrick Georgi8fb453e2018-11-21 22:12:45 +0100170
Angel Pons8d6f5872020-06-07 00:25:42 +0200171
172ASROCK B85M PRO4 MAINBOARD
Angel Pons8a508272020-06-06 22:45:16 +0200173M: Angel Pons <th3fanbus@gmail.com>
174S: Maintained
Angel Pons8d6f5872020-06-07 00:25:42 +0200175F: src/mainboard/asrock/b85m_pro4/
Andrey Petrov842dfe82016-05-24 22:01:56 -0700176
Angel Pons33849042018-12-01 23:28:03 +0100177ASROCK G41C-GS MAINBOARD & VARIANTS
178M: Angel Pons <th3fanbus@gmail.com>
179S: Maintained
180F: src/mainboard/asrock/g41c-gs/
181
Tristan Corrickd88cf5f2018-12-06 19:26:47 +1300182ASROCK H81M-HDS MAINBOARD
183M: Tristan Corrick <tristan@corrick.kiwi>
184S: Maintained
185F: src/mainboard/asrock/h81m-hds/
186
Angel Pons8d6f5872020-06-07 00:25:42 +0200187
Angel Ponsf2aaddc2020-06-06 22:38:38 +0200188
Mike Banon2a830852021-10-27 20:11:45 +0300189ASUS A88XM-E MAINBOARD
190M: Mike Banon <mikebdp2@gmail.com>
191S: Maintained
192F: src/mainboard/asus/a88xm-e/
193
Mike Banonc732d682019-12-31 14:29:39 +0300194ASUS AM1I-A MAINBOARD
195M: Mike Banon <mikebdp2@gmail.com>
196S: Maintained
197F: src/mainboard/asus/am1i-a/
198
Angel Ponse94cda52021-05-17 12:31:29 +0200199ASUS H61 SERIES MAINBOARDS
200M: Angel Pons <th3fanbus@gmail.com>
Angel Ponsed1e25d2021-05-17 13:22:57 +0200201M: Tristan Corrick <tristan@corrick.kiwi>
Angel Ponse94cda52021-05-17 12:31:29 +0200202S: Maintained
203F: src/mainboard/asus/h61-series/
204
Tristan Corrickd88cf5f2018-12-06 19:26:47 +1300205ASUS MAXIMUS IV GENE-Z MAINBOARD
206M: Tristan Corrick <tristan@corrick.kiwi>
207S: Maintained
208F: src/mainboard/asus/maximus_iv_gene-z/
209
Angel Pons33849042018-12-01 23:28:03 +0100210ASUS P5QC PRO MAINBOARD & VARIANTS
211M: Angel Pons <th3fanbus@gmail.com>
Stefan Ott98d63852021-04-22 01:28:56 +0200212R: Stefan Ott <coreboot@desire.ch>
Angel Pons33849042018-12-01 23:28:03 +0100213S: Maintained
214F: src/mainboard/asus/p5qc/
215
Angel Ponsf2aaddc2020-06-06 22:38:38 +0200216ASUS P5QPL-AM MAINBOARD & VARIANTS
217M: Angel Pons <th3fanbus@gmail.com>
218S: Maintained
219F: src/mainboard/asus/p5qpl-am/
220
Angel Pons81c2e022021-05-17 17:45:54 +0200221ASUS P8Z77 SERIES MAINBOARDS
Angel Ponsf2aaddc2020-06-06 22:38:38 +0200222M: Angel Pons <th3fanbus@gmail.com>
Angel Pons6f925062021-05-17 17:57:19 +0200223M: Vlado Cibic <vladocb@protonmail.com>
Angel Ponsf2aaddc2020-06-06 22:38:38 +0200224S: Maintained
Angel Pons81c2e022021-05-17 17:45:54 +0200225F: src/mainboard/asus/p8z77-series/
Angel Ponsf2aaddc2020-06-06 22:38:38 +0200226
Michał Żygowskib9f9f6c2018-12-21 12:23:27 +0100227
Michael Niewöhner489a11e2019-10-17 14:57:52 +0200228
Felix Singer63975f02020-10-12 21:47:43 +0000229CLEVO MAINBOARDS
230M: Felix Singer <felixsinger@posteo.net>
Michael Niewöhnere4478632020-07-19 22:56:35 +0200231M: Michael Niewöhner <foss@mniewoehner.de>
Felix Singer63975f02020-10-12 21:47:43 +0000232S: Supported
Michael Niewöhner5fd29312020-11-13 01:13:46 +0100233F: src/mainboard/clevo/
Felix Singer63975f02020-10-12 21:47:43 +0000234
235
236
Frans Hendriks1583fcd2019-06-05 10:18:23 +0200237FACEBOOK FBG1701 MAINBOARD
238M: Frans Hendriks <fhendriks@eltan.com>
Frans Hendriks7e7ea2b2021-12-02 10:15:20 +0100239M: Erik van den Bogaert <ebogaert@eltan.com>
Frans Hendriks1583fcd2019-06-05 10:18:23 +0200240S: Maintained
241F: src/mainboard/facebook/fbg1701/
242
Wim Vervoorn4ba70a72019-12-05 13:48:11 +0100243FACEBOOK MONOLITH MAINBOARD
244M: Frans Hendriks <fhendriks@eltan.com>
Frans Hendriks7e7ea2b2021-12-02 10:15:20 +0100245M: Erik van den Bogaert <ebogaert@eltan.com>
Wim Vervoorn4ba70a72019-12-05 13:48:11 +0100246S: Maintained
247F: src/mainboard/facebook/monolith/
248
Angel Pons8d6f5872020-06-07 00:25:42 +0200249
250
Angel Pons8602e662021-04-21 23:29:03 +0200251GIGABYTE GA-D510UD MAINBOARD
252M: Angel Pons <th3fanbus@gmail.com>
253S: Maintained
254F: src/mainboard/gigabyte/ga-d510ud/
255
Angel Pons8d6f5872020-06-07 00:25:42 +0200256GIGABYTE GA-G41M-ES2L MAINBOARD
257M: Damien Zammit <damien@zamaudio.com>
258S: Odd Fixes
Felix Singer3c02ed92020-11-30 06:56:08 +0100259F: src/mainboard/gigabyte/ga-g41m-es2l/
Angel Pons8d6f5872020-06-07 00:25:42 +0200260
261GIGABYTE GA-H61M SERIES MAINBOARDS
262M: Angel Pons <th3fanbus@gmail.com>
263S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100264F: src/mainboard/gigabyte/ga-h61m-series/
Angel Pons8d6f5872020-06-07 00:25:42 +0200265
Kapil Porwal423bc1a2022-08-08 13:05:23 +0000266GOOGLE REX MAINBOARDS
267M: Subrata Banik <subratabanik@google.com>
268M: Tarun Tuli <taruntuli@google.com>
269M: Kapil Porwal <kapilporwal@google.com>
270S: Maintained
271F: src/mainboard/google/rex/
Angel Pons8d6f5872020-06-07 00:25:42 +0200272
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600273GOOGLE BRYA MAINBOARDS
274M: Tim Wawrzynczak <twawrzynczak@chromium.org>
275S: Maintained
276F: src/mainboard/google/brya/
277
278GOOGLE HATCH MAINBOARDS
279M: Tim Wawrzynczak <twawrzynczak@chromium.org>
280S: Maintained
281F: src/mainboard/google/hatch/
Angel Pons8d6f5872020-06-07 00:25:42 +0200282
283GOOGLE PANTHER MAINBOARD
284M: Stefan Reinauer <stefan.reinauer@coreboot.org>
285S: Supported
286F: src/mainboard/google/panther/
287
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600288GOOGLE VOLTEER MAINBOARDS
289M: Tim Wawrzynczak <twawrzynczak@chromium.org>
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
568M: Tim Wawrzynczak <twawrzynczak@chromium.org>
569S: Maintained
570F: src/ec/google/chromeec/
571
Angel Pons8d6f5872020-06-07 00:25:42 +0200572LENOVO EC
573M: Alexander Couzens <lynxis@fe80.eu>
574S: Maintained
575F: src/ec/lenovo/
576
Sean Rhodes17441a32021-07-05 16:03:15 +0100577STARLABS EC
578M: Sean Rhodes <sean@starlabs.systems>
579S: Maintained
580F: src/ec/starlabs/
581
Jeremy Soller625af2b2020-07-21 08:23:39 -0600582SYSTEM76 EC
583M: Jeremy Soller <jeremy@system76.com>
Tim Crawford5310d522021-04-21 15:30:29 -0600584M: Tim Crawford <tcrawford@system76.com>
Jeremy Soller625af2b2020-07-21 08:23:39 -0600585S: Maintained
586F: src/ec/system76/
587
Angel Pons8d6f5872020-06-07 00:25:42 +0200588################################################################################
589# Northbridges
590################################################################################
591
592INTEL HASWELL NORTHBRIDGE
593M: Angel Pons <th3fanbus@gmail.com>
594S: Maintained
595F: src/northbridge/intel/haswell/
596
597INTEL PINEVIEW CHIPSET
598M: Damien Zammit <damien@zamaudio.com>
599M: Angel Pons <th3fanbus@gmail.com>
600S: Odd Fixes
601F: src/northbridge/intel/pineview/
602
603INTEL SANDYBRIDGE NORTHBRIDGE
604M: Angel Pons <th3fanbus@gmail.com>
605S: Maintained
606F: src/northbridge/intel/sandybridge/
607
608INTEL X4X CHIPSET
609M: Damien Zammit <damien@zamaudio.com>
610M: Angel Pons <th3fanbus@gmail.com>
611S: Odd Fixes
612F: src/northbridge/intel/x4x/
613
614################################################################################
615# Platforms
616################################################################################
617
618AMD SUPPORT
Martin Roth7703b192022-08-10 12:14:10 -0600619L: amd_coreboot_org_changes@googlegroups.com
Angel Pons8d6f5872020-06-07 00:25:42 +0200620F: src/vendorcode/amd/
621F: src/cpu/amd/
622F: src/northbridge/amd/
623F: src/southbridge/amd/
624F: src/include/cpu/amd/
625
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700626INTEL SUPPORT
Martin Roth954338d2017-03-05 11:20:18 -0700627S: Maintained
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700628F: src/vendorcode/intel/
629F: src/cpu/intel/
630F: src/northbridge/intel/
631F: src/southbridge/intel/
632F: src/soc/intel/
633F: src/drivers/intel/
634F: src/include/cpu/intel/
635
Angel Pons8d6f5872020-06-07 00:25:42 +0200636INTEL FSP 1.1
637M: Lee Leahy <leroy.p.leahy@intel.com>
638M: Huang Jin <huang.jin@intel.com>
639M: York Yang <york.yang@intel.com>
640S: Supported
641F: src/drivers/intel/fsp1_1/
642
643INTEL FSP 2.0
644M: Andrey Petrov <andrey.petrov@gmail.com>
645S: Maintained
646F: src/drivers/intel/fsp2_0/
647
648################################################################################
649# Systems on a Chip
650################################################################################
651
Felix Heldfef413e2020-12-02 15:57:24 +0100652AMD Cezanne
Felix Heldfef413e2020-12-02 15:57:24 +0100653M: Felix Held <felix-coreboot@felixheld.de>
654M: Jason Glenesk <jason.glenesk@gmail.com>
Raul E Rangelc81509c2021-01-25 10:24:14 -0700655M: Raul E Rangel <rrangel@chromium.org>
Fred Reitberger636a6de2022-02-17 13:27:35 -0500656M: Fred Reitberger <reitbergerfred@gmail.com>
Matt DeVillier (AMD)0303d692022-07-20 17:08:41 -0500657M: Matt DeVillier <matt.devillier@amd.corp-partner.google.com>
Martin Roth7703b192022-08-10 12:14:10 -0600658L: amd_coreboot_org_changes@googlegroups.com
Felix Heldfef413e2020-12-02 15:57:24 +0100659S: Maintained
660F: src/soc/amd/cezanne/
Felix Heldfe84dbb2021-08-06 16:25:35 +0200661F: src/vendorcode/amd/fsp/cezanne/
Felix Heldfef413e2020-12-02 15:57:24 +0100662
663AMD common SoC code
Felix Heldfef413e2020-12-02 15:57:24 +0100664M: Felix Held <felix-coreboot@felixheld.de>
665M: Jason Glenesk <jason.glenesk@gmail.com>
Raul E Rangelc81509c2021-01-25 10:24:14 -0700666M: Raul E Rangel <rrangel@chromium.org>
Fred Reitberger636a6de2022-02-17 13:27:35 -0500667M: Fred Reitberger <reitbergerfred@gmail.com>
Matt DeVillier (AMD)0303d692022-07-20 17:08:41 -0500668M: Matt DeVillier <matt.devillier@amd.corp-partner.google.com>
Martin Roth7703b192022-08-10 12:14:10 -0600669L: amd_coreboot_org_changes@googlegroups.com
Felix Heldfef413e2020-12-02 15:57:24 +0100670S: Maintained
671F: src/soc/amd/common/
672
Felix Held93231b42020-11-13 15:56:28 +0100673AMD Picasso
Felix Held93231b42020-11-13 15:56:28 +0100674M: Felix Held <felix-coreboot@felixheld.de>
675M: Jason Glenesk <jason.glenesk@gmail.com>
Fred Reitberger636a6de2022-02-17 13:27:35 -0500676M: Fred Reitberger <reitbergerfred@gmail.com>
Matt DeVillier (AMD)0303d692022-07-20 17:08:41 -0500677M: Matt DeVillier <matt.devillier@amd.corp-partner.google.com>
Martin Roth7703b192022-08-10 12:14:10 -0600678L: amd_coreboot_org_changes@googlegroups.com
Felix Held93231b42020-11-13 15:56:28 +0100679S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100680F: src/soc/amd/picasso/
681F: src/vendorcode/amd/fsp/picasso/
Felix Held93231b42020-11-13 15:56:28 +0100682
Jon Murphy4f732422022-08-05 15:43:44 -0600683AMD Mendocino
Felix Held2e88d062022-01-25 04:39:39 +0100684M: Felix Held <felix-coreboot@felixheld.de>
685M: Jason Glenesk <jason.glenesk@gmail.com>
686M: Raul E Rangel <rrangel@chromium.org>
Fred Reitberger636a6de2022-02-17 13:27:35 -0500687M: Fred Reitberger <reitbergerfred@gmail.com>
Matt DeVillier (AMD)0303d692022-07-20 17:08:41 -0500688M: Matt DeVillier <matt.devillier@amd.corp-partner.google.com>
Martin Roth7703b192022-08-10 12:14:10 -0600689L: amd_coreboot_org_changes@googlegroups.com
690S: Supported
Jon Murphy4f732422022-08-05 15:43:44 -0600691F: src/soc/amd/mendocino/
692F: src/vendorcode/amd/fsp/mendocino/
Felix Held2e88d062022-01-25 04:39:39 +0100693
Felix Held4080e082021-08-06 16:30:02 +0200694AMD Stoneyridge
Felix Held4080e082021-08-06 16:30:02 +0200695M: Felix Held <felix-coreboot@felixheld.de>
Matt DeVillier (AMD)0303d692022-07-20 17:08:41 -0500696M: Matt DeVillier <matt.devillier@amd.corp-partner.google.com>
Martin Roth7703b192022-08-10 12:14:10 -0600697L: amd_coreboot_org_changes@googlegroups.com
Felix Held4080e082021-08-06 16:30:02 +0200698S: Odd Fixes
699F: src/soc/amd/stoneyridge/
700
Kapil Porwal423bc1a2022-08-08 13:05:23 +0000701INTEL METEORLAKE SOC
702M: Subrata Banik <subratabanik@google.com>
703M: Tarun Tuli <taruntuli@google.com>
704M: Kapil Porwal <kapilporwal@google.com>
705S: Maintained
706F: src/soc/intel/meteorlake/
707
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600708INTEL ALDERLAKE SOC
709M: Tim Wawrzynczak <twawrzynczak@chromium.org>
710S: Maintained
711F: src/soc/intel/alderlake/
712
Angel Pons8d6f5872020-06-07 00:25:42 +0200713INTEL APOLLOLAKE_SOC
714M: Andrey Petrov <andrey.petrov@gmail.com>
715S: Maintained
716F: src/soc/intel/apollolake/
717
718INTEL BRASWELL SOC
719M: Piotr Król <piotr.krol@3mdeb.com>
720M: Michał Żygowski <michal.zygowski@3mdeb.com>
721M: Frans Hendriks <fhendriks@eltan.com>
722S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100723F: /src/soc/intel/braswell/
724F: /src/vendorcode/intel/fsp/fsp1_1/braswell/
Angel Pons8d6f5872020-06-07 00:25:42 +0200725
Mariusz Szafranski37afe1c2022-01-19 15:25:29 +0000726INTEL DENVERTON-NS SOC
727M: Jeff Daly <jeffd@silicom-usa.com>
728M: Vanessa Eusebio <vanessa.f.eusebio@intel.com>
729M: Suresh Bellampalli <suresh.bellampalli@intel.com>
730M: Mariusz Szafranski <mariuszx.szafranski@intel.com>
731S: Maintained
732F: src/soc/intel/denverton_ns/
733
Lean Sheng Tan37a407f2022-06-03 10:12:28 +0200734INTEL ELKHARTLAKE SOC
735M: Lean Sheng Tan <sheng.tan@9elements.com>
736M: Werner Zeh <werner.zeh@siemens.com>
737S: Maintained
738F: src/soc/intel/elkhartlake/
739
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600740INTEL TIGERLAKE SOC
741M: Tim Wawrzynczak <twawrzynczak@chromium.org>
742S: Maintained
743F: src/soc/intel/tigerlake/
744
Jonathan Zhange9b0b082020-06-30 13:28:52 -0700745INTEL Xeon Sacalable Processor Family
746M: Jonathan Zhang <jonzhang@fb.com>
747M: Reddy Chagam <anjaneya.chagam@intel.com>
748M: Johnny Lin <Johnny_Lin@wiwynn.com>
Jonathan Zhang4a4806f2021-09-16 09:06:47 -0700749M: Tim Chu <Tim.Chu@quantatw.com>
750M: Arthur Heymans <arthur@aheymans.xyz>
751M: Christian Walter <christian.walter@9elements.com>
Jonathan Zhange9b0b082020-06-30 13:28:52 -0700752S: Supported
Felix Singerd70d1d12020-11-30 06:56:08 +0100753F: src/soc/intel/xeon_sp/
Felix Singer3c02ed92020-11-30 06:56:08 +0100754F: src/vendorcode/intel/fsp/fsp2_0/skylake_sp/
755F: src/vendorcode/intel/fsp/fsp2_0/copperlake_sp/
Jonathan Zhange9b0b082020-06-30 13:28:52 -0700756
Julius Wernerb1263802020-08-24 14:24:21 -0700757MEDIATEK SOCS
758M: Hung-Te Lin <hungte@chromium.org>
759S: Supported
Felix Singer3c02ed92020-11-30 06:56:08 +0100760F: src/soc/mediatek/
Julius Wernerb1263802020-08-24 14:24:21 -0700761
Xi Chen022b1b92021-02-05 11:45:12 +0800762MEDIATEK MT8192
763M: Xi Chen <xixi.chen@mediatek.com>
764S: Maintained
765F: src/soc/mediatek/mt8192/
766F: src/vendorcode/mediatek/mt8192/
767
Angel Pons8d6f5872020-06-07 00:25:42 +0200768ORPHANED ARM SOCS
769S: Orphaned
770F: src/cpu/armltd/
Sam Lewisad7b2e22020-08-03 20:18:29 +1000771F: src/soc/ti/
Angel Pons8d6f5872020-06-07 00:25:42 +0200772F: src/soc/qualcomm/
773F: src/soc/samsung/
774F: util/exynos/
775F: util/ipqheader/
776
777################################################################################
778# Payloads
779################################################################################
780
781NVRAM
782F: util/nvramtool/
783F: payloads/nvramcui/
784
785LIBPAYLOAD
786F: payloads/libpayload/
787
788COREINFO PAYLOAD
789F: payloads/coreinfo/
790
791EXTERNAL PAYLOADS INTEGRATION
792M: Stefan Reinauer <stefan.reinauer@coreboot.org>
793M: Martin Roth <gaumless@gmail.com>
Felix Singer3c02ed92020-11-30 06:56:08 +0100794F: payloads/external/
Angel Pons8d6f5872020-06-07 00:25:42 +0200795
796LINUXBOOT PAYLOAD INTEGRATION
797M: Christian Walter <christian.walter@9elements.com>
798M: Marcello Sylvester Bauer <info@marcellobauer.com>
799S: Supported
Felix Singer3c02ed92020-11-30 06:56:08 +0100800F: payloads/external/LinuxBoot/
Angel Pons8d6f5872020-06-07 00:25:42 +0200801
802################################################################################
803# Utilities
804################################################################################
805
806ABUILD
Angel Pons8d6f5872020-06-07 00:25:42 +0200807M: Martin Roth <gaumless@gmail.com>
808S: Supported
809F: util/abuild/
810
811BOARD STATUS
812F: util/board_status/
813
814BUILD SYSTEM
Angel Pons8d6f5872020-06-07 00:25:42 +0200815M: Martin Roth <gaumless@gmail.com>
816S: Supported
817F: Makefile
818F: *.inc
819F: src/include/kconfig.h
820F: util/kconfig/
821F: util/sconfig/
822F: util/xcompile/
823F: util/genbuild_h/
824
825TOOLCHAIN
826F: util/crossgcc/
827
828DOCKER
829M: Martin Roth <gaumless@gmail.com>
830S: Supported
831F: util/docker/
832
833GIT
834F: .git*
835F: /util/gitconfig
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700836
Stefan Reinauer2e38cc52015-05-06 11:15:38 -0700837LINT SCRIPTS
Martin Roth057ce5f2016-03-17 12:03:00 -0600838M: Martin Roth <gaumless@gmail.com>
Stefan Reinauer2e38cc52015-05-06 11:15:38 -0700839S: Supported
840F: util/lint/
841
Angel Pons8d6f5872020-06-07 00:25:42 +0200842IFDTOOL
843M: Stefan Reinauer <stefan.reinauer@coreboot.org>
844F: util/ifdtool/
845
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700846INTELTOOL
847M: Stefan Reinauer <stefan.reinauer@coreboot.org>
848F: util/inteltool/
849
Philipp Deppenwiese4cd9a112016-03-23 00:02:40 +0100850INTELMETOOL
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100851M: Christian Walter <christian.walter@9elements.com>
Philipp Deppenwiese4cd9a112016-03-23 00:02:40 +0100852F: util/intelmetool/
853
Maxim Polyakov8f6c8962021-08-07 13:07:44 +0300854INTELP2M
855M: Maxim Polyakov <max.senia.poliak@gmail.com>
856S: Maintained
857F: util/intelp2m/
858
Nicola Corna4f4fc182017-02-23 16:53:45 +0100859ME_CLEANER
860M: Nicola Corna <nicola@corna.info>
861W: https://github.com/corna/me_cleaner
862S: Maintained
863F: util/me_cleaner/
864
Felix Singerf9948a42021-02-01 13:46:50 +0100865LIVEISO
866M: Felix Singer <felixsinger@posteo.net>
867S: Supported
868F: util/liveiso/
869
Angel Pons8d6f5872020-06-07 00:25:42 +0200870################################################################################
871# Miscellaneous
872################################################################################
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700873
Angel Pons8d6f5872020-06-07 00:25:42 +0200874ASPEED AST2050 DRIVER & COMMON CODE
875M: Timothy Pearson <tpearson@raptorengineeringinc.com>
Patrick Georgi65ff63f2015-05-21 18:54:10 +0200876S: Supported
Angel Pons8d6f5872020-06-07 00:25:42 +0200877F: src/drivers/aspeed/common/
878F: src/drivers/aspeed/ast2050/
Patrick Georgi65ff63f2015-05-21 18:54:10 +0200879
Angel Pons8d6f5872020-06-07 00:25:42 +0200880ACPI
Lijian Zhao5bd9b7f2020-12-29 09:12:36 +0800881M: Lance Zhao <lance.zhao@gmail.com>
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600882M: Tim Wawrzynczak <twawrzynczak@chromium.org>
Lijian Zhao5bd9b7f2020-12-29 09:12:36 +0800883S: Supported
Angel Pons8d6f5872020-06-07 00:25:42 +0200884F: src/acpi/
885F: src/arch/x86/acpi/
886F: util/acpi/
887
888LZ4 COMPRESSION
889M: Julius Werner <jwerner@chromium.org>
890S: Supported
891F: src/commonlib/lz4*
892F: payloads/libpayload/liblz4/
893F: util/cbfstool/lz4/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700894
895BINARY OBJECTS
896F: 3rdparty/blobs/
897
898VERIFIED BOOT
Julius Werner763db462021-07-30 16:30:14 -0700899M: Julius Werner <jwerner@chromium.org>
900M: Yu-Ping Wu <yupingso@google.com>
901S: Supported
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700902F: 3rdparty/vboot/
Julius Werner763db462021-07-30 16:30:14 -0700903F: src/security/vboot/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700904F: src/include/tpm.h
905F: src/include/tpm_lite/
906
907RESOURCE ALLOCATOR
908F: src/device/*
909F: src/include/device/
910F: src/include/cpu/cpu.h
911
912OPTION ROM EXECUTION & X86EMU
913F: src/device/oprom/
914
915CBFS
Julius Werner0655f782019-12-11 16:19:48 -0800916M: Julius Werner <jwerner@chromium.org>
917F: src/include/cbfs*
918F: src/commonlib/bsd/include/commonlib/bsd/cbfs*
919F: src/commonlib/bsd/cbfs*
920F: src/lib/cbfs.c
921
922CBFSTOOL
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700923F: util/cbfstool/
924
925CBMEM
926F: src/include/cbmem.h
927F: src/include/cbmem_id.h
928F: util/cbmem/
929
930CONSOLE
931F: src/console/
932F: src/include/console/
933F: src/drivers/uart/
934
Philipp Deppenwiese6507e6f2016-06-22 19:01:47 +0200935TPM SUPPORT
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100936M: Christian Walter <christian.walter@9elements.com>
Philipp Deppenwiese8f6af1c2018-11-23 19:13:54 +0100937S: Supported
Philipp Deppenwiese6507e6f2016-06-22 19:01:47 +0200938F: src/drivers/*/tpm/
Felix Singer3c02ed92020-11-30 06:56:08 +0100939F: src/security/tpm/
Philipp Deppenwiese6507e6f2016-06-22 19:01:47 +0200940
Martin Rothe801fcb2017-05-27 10:54:02 -0600941SUPERIOS & SUPERIOTOOL
942M: Felix Held <felix-coreboot@felixheld.de>
Felix Held6e296b32022-04-06 21:49:24 +0200943S: Odd Fixes
Martin Rothe801fcb2017-05-27 10:54:02 -0600944F: src/superio/
945F: util/superiotool/
946
Patrick Georgidcc0cc22021-09-23 11:49:41 +0200947SPD UTILITIES
948M: Reka Norman <rekanorman@chromium.org>
949S: Maintained
950F: util/spd_tools/
951F: util/spdtool/
952
Julius Wernerc34e41f2017-06-09 14:26:03 -0700953MEMLAYOUT
954M: Julius Werner <jwerner@chromium.org>
955S: Supported
956F: */memlayout.h
957F: *.ld
958
Frans Hendriksf20bf922019-06-13 14:14:56 +0200959ELTAN VENDORCODE
960M: Frans Hendriks <fhendriks@eltan.com>
Frans Hendriks7e7ea2b2021-12-02 10:15:20 +0100961M: Erik van den Bogaert <ebogaert@eltan.com>
Frans Hendriksf20bf922019-06-13 14:14:56 +0200962S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100963F: src/vendorcode/eltan/
Frans Hendriksf20bf922019-06-13 14:14:56 +0200964
Tim Crawford56dd9f0382021-04-21 15:40:23 -0600965TAS5825M DRIVER
966M: Jeremy Soller <jeremy@system76.com>
967M: Tim Crawford <tcrawford@system76.com>
968S: Maintained
969F: src/drivers/i2c/tas5825m/
970
Patrick Georgi517097f2021-03-02 18:08:14 +0100971TESTS
972M: Jakub Czapiga <jacz@semihalf.com>
973S: Maintained
974F: tests/
Jakub Czapiga6df286e2021-12-15 15:46:35 +0000975F: payloads/libpayload/tests/
Patrick Georgi517097f2021-03-02 18:08:14 +0100976
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700977MISSING: TIMERS / DELAYS
978
979MISSING: TIMESTAMPS
980
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700981MISSING: FMAP
982
983MISSING: GPIO
984
985MISSING: SMP
986
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700987MISSING: DMP / QEMU-X86
988
989MISSING: ELOG
990
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700991MISSING: SPI
992
Angel Pons0b500992020-04-15 16:47:36 +0200993# *** Infrastructure Owners ***
Martin Roth19fdedb2017-06-25 15:44:16 -0600994# This is intended to let people know who they should contact for issues with various infrastructure pieces.
995# Hardware
996# Owners: Stefan, Patrick
Sumeet Pawnikar1638a852017-09-12 22:17:55 +0530997# Backups:
Martin Roth19fdedb2017-06-25 15:44:16 -0600998
999# Web Server
1000# Owners: Stefan, Patrick
1001# Backups:
1002
1003# Website
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +01001004# Owners: Martin
Martin Roth19fdedb2017-06-25 15:44:16 -06001005# Backups: Patrick, Stefan
1006
1007# Documentation Website
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +01001008# Owners: Patrick
Martin Roth19fdedb2017-06-25 15:44:16 -06001009# Backups:
1010
Patrick Georgi1d348942019-07-17 20:40:50 +02001011CODE OF CONDUCT
1012M: Stefan Reinauer <stefan.reinauer@coreboot.org>
Patrick Georgi1d348942019-07-17 20:40:50 +02001013M: Ronald Minnich <rminnich@coreboot.org>
1014M: Martin Roth <martin@coreboot.org>
1015S: Maintained
1016F: Documentation/community/code_of_conduct.md
1017
Martin Roth19fdedb2017-06-25 15:44:16 -06001018# Wiki
1019# Owners: Stefan, Patrick
1020# Backups:
1021
1022# Gerrit
1023# Owners: Stefan, Patrick
1024# Backups: Martin
1025
1026# Jenkins
1027# Owners: Patrick, Martin
1028# Backups:
1029
1030# Bug Tracker
1031# Owners: Lynxis,
1032# Backups: Martin,
1033
1034# Mailing List
1035# Owners: Stefan, Patrick
1036# Backups: Martin,
1037
1038# Software Freedom Conservancy
1039# Main contact: Martin
1040# “Official” contact: Stefan