blob: d753c3f779561b6ad7e4b4b4415839f5e3f41dbc [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
Tarun Tuli660d1ee2022-10-03 19:37:31 +0000274M: Tarun Tuli <taruntuli@google.com>
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600275S: Maintained
276F: src/mainboard/google/brya/
277
278GOOGLE HATCH MAINBOARDS
Tarun Tuli660d1ee2022-10-03 19:37:31 +0000279M: Tarun Tuli <taruntuli@google.com>
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600280S: 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
Nick Vaccaro5f124552021-04-28 14:28:39 -0700289M: Nick Vaccaro <nvaccaro@chromium.org>
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600290S: Maintained
291F: src/mainboard/google/volteer/
292
Angel Pons8d6f5872020-06-07 00:25:42 +0200293GOOGLE MAINBOARDS (Intel-based, legacy/inactive)
294M: Matt DeVillier <MrChromebox@gmail.com>
295S: Maintained
296F: src/mainboard/google/auron/
297F: src/mainboard/google/beltino/
298F: src/mainboard/google/butterfly/
299F: src/mainboard/google/cyan/
300F: src/mainboard/google/glados/
301F: src/mainboard/google/jecht/
302F: src/mainboard/google/link/
303F: src/mainboard/google/parrot/
304F: src/mainboard/google/slippy/
305F: src/mainboard/google/stout/
306
Martin Roth7703b192022-08-10 12:14:10 -0600307GOOGLE AMD-BASED MAINBOARDS
308M: Martin Roth <martin.roth@amd.corp-partner.google.com>
309M: Jason Nien <jason.nien@amd.corp-partner.google.com>
310L: amd_coreboot_org_changes@googlegroups.com
311S: Supported
312F: src/mainboard/google/kahlee/
313F: src/mainboard/google/zork/
314F: src/mainboard/google/guybrush/
315F: src/mainboard/google/skyrim/
Angel Pons8d6f5872020-06-07 00:25:42 +0200316
317
Angel Pons8602e662021-04-21 23:29:03 +0200318HP 280 G2 MAINBOARD
319M: Angel Pons <th3fanbus@gmail.com>
320S: Maintained
321F: src/mainboard/hp/280_g2/
322
323
324
Angel Pons8d6f5872020-06-07 00:25:42 +0200325INTEL D510MO MAINBOARD
326M: Damien Zammit <damien@zamaudio.com>
327S: Odd Fixes
Felix Singer3c02ed92020-11-30 06:56:08 +0100328F: src/mainboard/intel/d510mo/
Angel Pons8d6f5872020-06-07 00:25:42 +0200329
Mariusz Szafranski37afe1c2022-01-19 15:25:29 +0000330INTEL HARCUVAR_CRB MAINBOARD
331M: Jeff Daly <jeffd@silicom-usa.com>
332M: Vanessa Eusebio <vanessa.f.eusebio@intel.com>
333M: Suresh Bellampalli <suresh.bellampalli@intel.com>
334M: Mariusz Szafranski <mariuszx.szafranski@intel.com>
335S: Maintained
336F: src/mainboard/intel/harcuvar/
337
Angel Pons8d6f5872020-06-07 00:25:42 +0200338INTEL STRAGO MAINBOARD
339M: Hannah Williams <hannah.williams@intel.com>
340S: Supported
341F: /src/mainboard/intel/strago/
342
343
344
Felix Singer32608cf2020-11-22 00:38:16 +0000345KONTRON BSL6 MAINBOARD
346M: Felix Singer <felixsinger@posteo.net>
347M: Nico Huber <nico.h@gmx.de>
348S: Supported
349F: src/mainboard/kontron/bsl6/
350
Felix Singer5a41b0d2020-11-23 20:20:38 +0000351KONTRON MAL10 MAINBOARD
352M: Maxim Polyakov <max.senia.poliak@gmail.com>
353M: Nico Huber <nico.h@gmx.de>
354M: Felix Singer <felixsinger@posteo.net>
355S: Supported
356F: src/mainboard/kontron/mal10/
357
Felix Singer32608cf2020-11-22 00:38:16 +0000358
359
Angel Pons8d6f5872020-06-07 00:25:42 +0200360LENOVO MAINBOARDS
361M: Alexander Couzens <lynxis@fe80.eu>
Angel Pons8d6f5872020-06-07 00:25:42 +0200362S: Maintained
363F: src/mainboard/lenovo/
364
365LENOVO G505S MAINBOARD
366M: Mike Banon <mikebdp2@gmail.com>
367S: Maintained
368F: src/mainboard/lenovo/g505s/
369
Stefan Ott98d63852021-04-22 01:28:56 +0200370LENOVO X200 MAINBOARD
371R: Stefan Ott <coreboot@desire.ch>
372S: Maintained
373F: src/mainboard/lenovo/x200/
374
375LENOVO X201 MAINBOARD
376R: Stefan Ott <coreboot@desire.ch>
377S: Maintained
378F: src/mainboard/lenovo/x201/
Angel Pons8d6f5872020-06-07 00:25:42 +0200379
380
381LIBRETREND LT1000 MAINBOARD
382M: Piotr Król <piotr.krol@3mdeb.com>
383M: Michał Żygowski <michal.zygowski@3mdeb.com>
384S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100385F: src/mainboard/libretrend/lt1000/
Angel Pons8d6f5872020-06-07 00:25:42 +0200386
387
Angel Pons8602e662021-04-21 23:29:03 +0200388
389MSI H81M-P33 MAINBOARD
390M: Angel Pons <th3fanbus@gmail.com>
391S: Maintained
392F: src/mainboard/msi/h81m-p33/
393
Michał Żygowski4a12f542022-07-25 10:10:50 +0200394MSI MS-7D25 MAINBOARDS
395M: Michał Żygowski <michal.zygowski@3mdeb.com>
396M: Michał Kopeć <michal.kopec@3mdeb.com>
397S: Maintained
398F: src/mainboard/msi/ms7d25/
Angel Pons8602e662021-04-21 23:29:03 +0200399
Jonathan Zhangdd4f6432020-06-30 11:39:09 -0700400OCP DELTALAKE MAINBOARD
Jonathan Zhang4a4806f2021-09-16 09:06:47 -0700401M: Arthur Heymans <arthur@aheymans.xyz>
402M: Christian Walter <christian.walter@9elements.com>
Jonathan Zhangdd4f6432020-06-30 11:39:09 -0700403M: Johnny Lin <Johnny_Lin@wiwynn.com>
Jonathan Zhang4a4806f2021-09-16 09:06:47 -0700404M: Jonathan Zhang <jonzhang@fb.com>
405M: Tim Chu <Tim.Chu@quantatw.com>
Jonathan Zhangdd4f6432020-06-30 11:39:09 -0700406S: Supported
Felix Singer3c02ed92020-11-30 06:56:08 +0100407F: src/mainboard/ocp/deltalake/
Angel Pons8d6f5872020-06-07 00:25:42 +0200408
Jonathan Zhanged849ed2020-05-01 11:23:46 -0700409OCP TIOGAPASS MAINBOARD
410M: Jonathan Zhang <jonzhang@fb.com>
411M: Reddy Chagam <anjaneya.chagam@intel.com>
412M: Johnny Lin <Johnny_Lin@wiwynn.com>
413M: Morgan Jang <Morgan_Jang@wiwynn.com>
414M: Ryback Hung <<Ryback.Hung@quantatw.com>
415M: Bryant Ou <Bryant.Ou@quantatw.com>
416S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100417F: src/mainboard/ocp/tiogapass/
Jonathan Zhanged849ed2020-05-01 11:23:46 -0700418
Angel Pons8d6f5872020-06-07 00:25:42 +0200419
420
421OPENCELLULAR MAINBOARDS
422M: Christian Walter <christian.walter@9elements.com>
423M: Patrick Rudolph <patrick.rudolph@9elements.com>
424S: Supported
425F: src/mainboard/opencellular/elgon/
426
427
428
429PC ENGINES ALL MAINBOARDS
430M: Piotr Król <piotr.krol@3mdeb.com>
431M: Michał Żygowski <michal.zygowski@3mdeb.com>
432S: Supported
433F: src/mainboard/pcengines/
434
435
436
Frans Hendriksa78146c2019-07-19 10:30:20 +0200437PORTWELL PQ-M107 MAINBOARD
438M: Frans Hendriks <fhendriks@eltan.com>
Frans Hendriks7e7ea2b2021-12-02 10:15:20 +0100439M: Erik van den Bogaert <ebogaert@eltan.com>
Frans Hendriksa78146c2019-07-19 10:30:20 +0200440S: Maintained
441F: src/mainboard/portwell/m107/
442
Martin Roth2a3434752016-03-05 18:31:29 -0700443
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700444
Angel Pons8d6f5872020-06-07 00:25:42 +0200445PROTECTLI ALL MAINBOARDS
446M: Piotr Król <piotr.krol@3mdeb.com>
447M: Michał Żygowski <michal.zygowski@3mdeb.com>
448S: Maintained
449F: src/mainboard/protectli/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700450
Angel Pons8d6f5872020-06-07 00:25:42 +0200451
452
Lean Sheng Tana29452a2022-06-03 10:06:04 +0200453PRODRIVE ATLAS MAINBOARD
454M: Angel Pons <th3fanbus@gmail.com>
455M: Christian Walter <christian.walter@9elements.com>
456M: Lean Sheng Tan <sheng.tan@9elements.com>
457S: Maintained
458F: src/mainboard/prodrive/atlas/
459
Christian Walter02b39372020-06-17 20:17:59 +0200460PRODRIVE HERMES MAINBOARD
461M: Christian Walter <christian.walter@9elements.com>
462M: Patrick Rudolph <patrick.rudolph@9elements.com>
463S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100464F: src/mainboard/prodrive/hermes/
Christian Walter02b39372020-06-17 20:17:59 +0200465
466
467
Angel Pons8d6f5872020-06-07 00:25:42 +0200468PURISM MAINBOARDS
Jonathon Hall5ec1c142022-08-02 16:45:00 -0400469M: Jonathon Hall <jonathon.hall@puri.sm>
Julius Werner848f5db2017-09-11 13:12:48 -0700470S: Supported
Felix Singer3c02ed92020-11-30 06:56:08 +0100471F: src/mainboard/purism/
Angel Pons8d6f5872020-06-07 00:25:42 +0200472
473
474
475SAMSUNG CHROMEOS MAINBOARDS
476M: Matt DeVillier <MrChromebox@gmail.com>
477S: Maintained
478F: src/mainboard/samsung/lumpy/
479F: src/mainboard/samsung/stumpy/
480
481
482
Felix Singer32608cf2020-11-22 00:38:16 +0000483SIEMENS CHILI MAINBAORD
484M: Felix Singer <felixsinger@posteo.net>
485M: Nico Huber <nico.h@gmx.de>
486S: Supported
487F: src/mainboard/siemens/chili/
488
Angel Pons8d6f5872020-06-07 00:25:42 +0200489SIEMENS MC_xxxx MAINBOARDS
490M: Werner Zeh <werner.zeh@siemens.com>
491S: Maintained
492F: src/mainboard/siemens/mc_apl1/
Werner Zeh9f15a6c2022-04-22 10:23:44 +0200493F: src/mainboard/siemens/mc_ehl/
Angel Pons8d6f5872020-06-07 00:25:42 +0200494
495
496
Sean Rhodes17441a32021-07-05 16:03:15 +0100497STAR LABS MAINBOARDS
498M: Sean Rhodes <sean@starlabs.systems>
499S: Maintained
500F: src/mainboard/starlabs/
501
502
503
Jeremy Soller625af2b2020-07-21 08:23:39 -0600504SYSTEM76 MAINBOARDS
505M: Jeremy Soller <jeremy@system76.com>
Tim Crawford5310d522021-04-21 15:30:29 -0600506M: Tim Crawford <tcrawford@system76.com>
Jeremy Soller625af2b2020-07-21 08:23:39 -0600507S: Maintained
508F: src/mainboard/system76/
509
510
511
Angel Pons8d6f5872020-06-07 00:25:42 +0200512SUPERMICRO X10SLM+-F MAINBOARD
513M: Tristan Corrick <tristan@corrick.kiwi>
514S: Maintained
515F: src/mainboard/supermicro/x10slm-f/
516
517SUPERMICRO X11-LGA1151-SERIES
518M: Michael Niewöhner <foss@mniewoehner.de>
519S: Maintained
Michael Niewöhner5fd29312020-11-13 01:13:46 +0100520F: src/mainboard/supermicro/x11-lga1151-series/
Angel Pons8d6f5872020-06-07 00:25:42 +0200521
522################################################################################
523# Architectures
524################################################################################
Julius Werner848f5db2017-09-11 13:12:48 -0700525
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700526ARM ARCHITECTURE
Julius Wernerc34e41f2017-06-09 14:26:03 -0700527M: Julius Werner <jwerner@chromium.org>
528S: Supported
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700529F: src/arch/arm/
Julius Wernerc34e41f2017-06-09 14:26:03 -0700530F: src/arch/arm64/
Julius Wernerc34e41f2017-06-09 14:26:03 -0700531F: src/soc/nvidia/
532F: src/soc/rockchip/
533F: util/nvidia/
534F: util/rockchip/
535
Angel Pons8d6f5872020-06-07 00:25:42 +0200536PPC64 ARCHITECTURE
537M: Ronald Minnich <rminnich@gmail.com>
538M: Timothy Pearson <tpearson@raptorengineeringinc.com>
539S: Maintained
540F: src/arch/ppc64/
541F: src/cpu/qemu-power8/
542F: src/mainboard/emulation/qemu-power8/
543
544RISC-V ARCHITECTURE
545M: Ronald Minnich <rminnich@gmail.com>
546R: Philipp Hug <philipp@hug.cx>
547S: Maintained
548F: src/arch/riscv/
549F: src/soc/sifive/
550F: src/soc/ucb/
551F: src/mainboard/emulation/*-riscv/
552F: src/mainboard/sifive/
553F: util/riscv/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700554
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700555X86 ARCHITECTURE
556F: src/arch/x86/
557F: src/cpu/x86/
558F: src/drivers/pc80/
559F: src/include/pc80/
560F: src/include/cpu/x86/
561
Angel Pons8d6f5872020-06-07 00:25:42 +0200562################################################################################
563# Embedded Controllers
564################################################################################
565
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600566CHROME EC
Tarun Tuli660d1ee2022-10-03 19:37:31 +0000567M: Boris Mittelberg <bmbm@google.com>
568M: Caveh Jalali <caveh@chromium.org>
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600569S: 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
Tarun Tuli660d1ee2022-10-03 19:37:31 +0000709M: Subrata Banik <subratabanik@google.com>
710M: Tarun Tuli <taruntuli@google.com>
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600711S: Maintained
712F: src/soc/intel/alderlake/
713
Angel Pons8d6f5872020-06-07 00:25:42 +0200714INTEL APOLLOLAKE_SOC
715M: Andrey Petrov <andrey.petrov@gmail.com>
716S: Maintained
717F: src/soc/intel/apollolake/
718
719INTEL BRASWELL SOC
720M: Piotr Król <piotr.krol@3mdeb.com>
721M: Michał Żygowski <michal.zygowski@3mdeb.com>
722M: Frans Hendriks <fhendriks@eltan.com>
723S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100724F: /src/soc/intel/braswell/
725F: /src/vendorcode/intel/fsp/fsp1_1/braswell/
Angel Pons8d6f5872020-06-07 00:25:42 +0200726
Mariusz Szafranski37afe1c2022-01-19 15:25:29 +0000727INTEL DENVERTON-NS SOC
728M: Jeff Daly <jeffd@silicom-usa.com>
729M: Vanessa Eusebio <vanessa.f.eusebio@intel.com>
730M: Suresh Bellampalli <suresh.bellampalli@intel.com>
731M: Mariusz Szafranski <mariuszx.szafranski@intel.com>
732S: Maintained
733F: src/soc/intel/denverton_ns/
734
Lean Sheng Tan37a407f2022-06-03 10:12:28 +0200735INTEL ELKHARTLAKE SOC
736M: Lean Sheng Tan <sheng.tan@9elements.com>
737M: Werner Zeh <werner.zeh@siemens.com>
738S: Maintained
739F: src/soc/intel/elkhartlake/
740
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600741INTEL TIGERLAKE SOC
Tarun Tuli660d1ee2022-10-03 19:37:31 +0000742M: Subrata Banik <subratabanik@google.com>
743M: Tarun Tuli <taruntuli@google.com>
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600744S: Maintained
745F: src/soc/intel/tigerlake/
746
Jonathan Zhange9b0b082020-06-30 13:28:52 -0700747INTEL Xeon Sacalable Processor Family
748M: Jonathan Zhang <jonzhang@fb.com>
749M: Reddy Chagam <anjaneya.chagam@intel.com>
750M: Johnny Lin <Johnny_Lin@wiwynn.com>
Jonathan Zhang4a4806f2021-09-16 09:06:47 -0700751M: Tim Chu <Tim.Chu@quantatw.com>
752M: Arthur Heymans <arthur@aheymans.xyz>
753M: Christian Walter <christian.walter@9elements.com>
Jonathan Zhange9b0b082020-06-30 13:28:52 -0700754S: Supported
Felix Singerd70d1d12020-11-30 06:56:08 +0100755F: src/soc/intel/xeon_sp/
Felix Singer3c02ed92020-11-30 06:56:08 +0100756F: src/vendorcode/intel/fsp/fsp2_0/skylake_sp/
757F: src/vendorcode/intel/fsp/fsp2_0/copperlake_sp/
Jonathan Zhange9b0b082020-06-30 13:28:52 -0700758
Julius Wernerb1263802020-08-24 14:24:21 -0700759MEDIATEK SOCS
760M: Hung-Te Lin <hungte@chromium.org>
761S: Supported
Felix Singer3c02ed92020-11-30 06:56:08 +0100762F: src/soc/mediatek/
Julius Wernerb1263802020-08-24 14:24:21 -0700763
Xi Chen022b1b92021-02-05 11:45:12 +0800764MEDIATEK MT8192
765M: Xi Chen <xixi.chen@mediatek.com>
766S: Maintained
767F: src/soc/mediatek/mt8192/
768F: src/vendorcode/mediatek/mt8192/
769
Angel Pons8d6f5872020-06-07 00:25:42 +0200770ORPHANED ARM SOCS
771S: Orphaned
772F: src/cpu/armltd/
Sam Lewisad7b2e22020-08-03 20:18:29 +1000773F: src/soc/ti/
Angel Pons8d6f5872020-06-07 00:25:42 +0200774F: src/soc/qualcomm/
775F: src/soc/samsung/
776F: util/exynos/
777F: util/ipqheader/
778
779################################################################################
780# Payloads
781################################################################################
782
783NVRAM
784F: util/nvramtool/
785F: payloads/nvramcui/
786
787LIBPAYLOAD
788F: payloads/libpayload/
789
790COREINFO PAYLOAD
791F: payloads/coreinfo/
792
793EXTERNAL PAYLOADS INTEGRATION
794M: Stefan Reinauer <stefan.reinauer@coreboot.org>
795M: Martin Roth <gaumless@gmail.com>
Felix Singer3c02ed92020-11-30 06:56:08 +0100796F: payloads/external/
Angel Pons8d6f5872020-06-07 00:25:42 +0200797
798LINUXBOOT PAYLOAD INTEGRATION
799M: Christian Walter <christian.walter@9elements.com>
800M: Marcello Sylvester Bauer <info@marcellobauer.com>
801S: Supported
Felix Singer3c02ed92020-11-30 06:56:08 +0100802F: payloads/external/LinuxBoot/
Angel Pons8d6f5872020-06-07 00:25:42 +0200803
804################################################################################
805# Utilities
806################################################################################
807
808ABUILD
Angel Pons8d6f5872020-06-07 00:25:42 +0200809M: Martin Roth <gaumless@gmail.com>
810S: Supported
811F: util/abuild/
812
813BOARD STATUS
814F: util/board_status/
815
816BUILD SYSTEM
Angel Pons8d6f5872020-06-07 00:25:42 +0200817M: Martin Roth <gaumless@gmail.com>
818S: Supported
819F: Makefile
820F: *.inc
821F: src/include/kconfig.h
822F: util/kconfig/
823F: util/sconfig/
824F: util/xcompile/
825F: util/genbuild_h/
826
827TOOLCHAIN
828F: util/crossgcc/
829
830DOCKER
831M: Martin Roth <gaumless@gmail.com>
832S: Supported
833F: util/docker/
834
835GIT
836F: .git*
837F: /util/gitconfig
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700838
Stefan Reinauer2e38cc52015-05-06 11:15:38 -0700839LINT SCRIPTS
Martin Roth057ce5f2016-03-17 12:03:00 -0600840M: Martin Roth <gaumless@gmail.com>
Stefan Reinauer2e38cc52015-05-06 11:15:38 -0700841S: Supported
842F: util/lint/
843
Angel Pons8d6f5872020-06-07 00:25:42 +0200844IFDTOOL
845M: Stefan Reinauer <stefan.reinauer@coreboot.org>
846F: util/ifdtool/
847
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700848INTELTOOL
849M: Stefan Reinauer <stefan.reinauer@coreboot.org>
850F: util/inteltool/
851
Philipp Deppenwiese4cd9a112016-03-23 00:02:40 +0100852INTELMETOOL
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100853M: Christian Walter <christian.walter@9elements.com>
Philipp Deppenwiese4cd9a112016-03-23 00:02:40 +0100854F: util/intelmetool/
855
Maxim Polyakov8f6c8962021-08-07 13:07:44 +0300856INTELP2M
857M: Maxim Polyakov <max.senia.poliak@gmail.com>
858S: Maintained
859F: util/intelp2m/
860
Nicola Corna4f4fc182017-02-23 16:53:45 +0100861ME_CLEANER
862M: Nicola Corna <nicola@corna.info>
863W: https://github.com/corna/me_cleaner
864S: Maintained
865F: util/me_cleaner/
866
Felix Singerf9948a42021-02-01 13:46:50 +0100867LIVEISO
868M: Felix Singer <felixsinger@posteo.net>
869S: Supported
870F: util/liveiso/
871
Angel Pons8d6f5872020-06-07 00:25:42 +0200872################################################################################
873# Miscellaneous
874################################################################################
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700875
Angel Pons8d6f5872020-06-07 00:25:42 +0200876ASPEED AST2050 DRIVER & COMMON CODE
877M: Timothy Pearson <tpearson@raptorengineeringinc.com>
Patrick Georgi65ff63f2015-05-21 18:54:10 +0200878S: Supported
Angel Pons8d6f5872020-06-07 00:25:42 +0200879F: src/drivers/aspeed/common/
880F: src/drivers/aspeed/ast2050/
Patrick Georgi65ff63f2015-05-21 18:54:10 +0200881
Angel Pons8d6f5872020-06-07 00:25:42 +0200882ACPI
Lijian Zhao5bd9b7f2020-12-29 09:12:36 +0800883M: Lance Zhao <lance.zhao@gmail.com>
Tim Wawrzynczak7c3e48c2022-09-28 15:41:10 -0600884M: Tim Wawrzynczak <inforichland@gmail.com>
Lijian Zhao5bd9b7f2020-12-29 09:12:36 +0800885S: Supported
Angel Pons8d6f5872020-06-07 00:25:42 +0200886F: src/acpi/
887F: src/arch/x86/acpi/
888F: util/acpi/
889
890LZ4 COMPRESSION
891M: Julius Werner <jwerner@chromium.org>
892S: Supported
893F: src/commonlib/lz4*
894F: payloads/libpayload/liblz4/
895F: util/cbfstool/lz4/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700896
897BINARY OBJECTS
898F: 3rdparty/blobs/
899
900VERIFIED BOOT
Julius Werner763db462021-07-30 16:30:14 -0700901M: Julius Werner <jwerner@chromium.org>
902M: Yu-Ping Wu <yupingso@google.com>
903S: Supported
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700904F: 3rdparty/vboot/
Julius Werner763db462021-07-30 16:30:14 -0700905F: src/security/vboot/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700906F: src/include/tpm.h
907F: src/include/tpm_lite/
908
909RESOURCE ALLOCATOR
910F: src/device/*
911F: src/include/device/
912F: src/include/cpu/cpu.h
913
914OPTION ROM EXECUTION & X86EMU
915F: src/device/oprom/
916
917CBFS
Julius Werner0655f782019-12-11 16:19:48 -0800918M: Julius Werner <jwerner@chromium.org>
919F: src/include/cbfs*
920F: src/commonlib/bsd/include/commonlib/bsd/cbfs*
921F: src/commonlib/bsd/cbfs*
922F: src/lib/cbfs.c
923
924CBFSTOOL
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700925F: util/cbfstool/
926
927CBMEM
928F: src/include/cbmem.h
929F: src/include/cbmem_id.h
930F: util/cbmem/
931
932CONSOLE
933F: src/console/
934F: src/include/console/
935F: src/drivers/uart/
936
Philipp Deppenwiese6507e6f2016-06-22 19:01:47 +0200937TPM SUPPORT
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100938M: Christian Walter <christian.walter@9elements.com>
Philipp Deppenwiese8f6af1c2018-11-23 19:13:54 +0100939S: Supported
Philipp Deppenwiese6507e6f2016-06-22 19:01:47 +0200940F: src/drivers/*/tpm/
Felix Singer3c02ed92020-11-30 06:56:08 +0100941F: src/security/tpm/
Philipp Deppenwiese6507e6f2016-06-22 19:01:47 +0200942
Martin Rothe801fcb2017-05-27 10:54:02 -0600943SUPERIOS & SUPERIOTOOL
944M: Felix Held <felix-coreboot@felixheld.de>
Felix Held6e296b32022-04-06 21:49:24 +0200945S: Odd Fixes
Martin Rothe801fcb2017-05-27 10:54:02 -0600946F: src/superio/
947F: util/superiotool/
948
Patrick Georgidcc0cc22021-09-23 11:49:41 +0200949SPD UTILITIES
950M: Reka Norman <rekanorman@chromium.org>
951S: Maintained
952F: util/spd_tools/
953F: util/spdtool/
954
Julius Wernerc34e41f2017-06-09 14:26:03 -0700955MEMLAYOUT
956M: Julius Werner <jwerner@chromium.org>
957S: Supported
958F: */memlayout.h
959F: *.ld
960
Frans Hendriksf20bf922019-06-13 14:14:56 +0200961ELTAN VENDORCODE
962M: Frans Hendriks <fhendriks@eltan.com>
Frans Hendriks7e7ea2b2021-12-02 10:15:20 +0100963M: Erik van den Bogaert <ebogaert@eltan.com>
Frans Hendriksf20bf922019-06-13 14:14:56 +0200964S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100965F: src/vendorcode/eltan/
Frans Hendriksf20bf922019-06-13 14:14:56 +0200966
Tim Crawford56dd9f0382021-04-21 15:40:23 -0600967TAS5825M DRIVER
968M: Jeremy Soller <jeremy@system76.com>
969M: Tim Crawford <tcrawford@system76.com>
970S: Maintained
971F: src/drivers/i2c/tas5825m/
972
Patrick Georgi517097f2021-03-02 18:08:14 +0100973TESTS
974M: Jakub Czapiga <jacz@semihalf.com>
975S: Maintained
976F: tests/
Jakub Czapiga6df286e2021-12-15 15:46:35 +0000977F: payloads/libpayload/tests/
Patrick Georgi517097f2021-03-02 18:08:14 +0100978
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700979MISSING: TIMERS / DELAYS
980
981MISSING: TIMESTAMPS
982
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700983MISSING: FMAP
984
985MISSING: GPIO
986
987MISSING: SMP
988
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700989MISSING: DMP / QEMU-X86
990
991MISSING: ELOG
992
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700993MISSING: SPI
994
Angel Pons0b500992020-04-15 16:47:36 +0200995# *** Infrastructure Owners ***
Martin Roth19fdedb2017-06-25 15:44:16 -0600996# This is intended to let people know who they should contact for issues with various infrastructure pieces.
997# Hardware
998# Owners: Stefan, Patrick
Sumeet Pawnikar1638a852017-09-12 22:17:55 +0530999# Backups:
Martin Roth19fdedb2017-06-25 15:44:16 -06001000
1001# Web Server
1002# Owners: Stefan, Patrick
1003# Backups:
1004
1005# Website
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +01001006# Owners: Martin
Martin Roth19fdedb2017-06-25 15:44:16 -06001007# Backups: Patrick, Stefan
1008
1009# Documentation Website
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +01001010# Owners: Patrick
Martin Roth19fdedb2017-06-25 15:44:16 -06001011# Backups:
1012
Patrick Georgi1d348942019-07-17 20:40:50 +02001013CODE OF CONDUCT
1014M: Stefan Reinauer <stefan.reinauer@coreboot.org>
Patrick Georgi1d348942019-07-17 20:40:50 +02001015M: Ronald Minnich <rminnich@coreboot.org>
1016M: Martin Roth <martin@coreboot.org>
1017S: Maintained
1018F: Documentation/community/code_of_conduct.md
1019
Martin Roth19fdedb2017-06-25 15:44:16 -06001020# Wiki
1021# Owners: Stefan, Patrick
1022# Backups:
1023
1024# Gerrit
1025# Owners: Stefan, Patrick
1026# Backups: Martin
1027
1028# Jenkins
1029# Owners: Patrick, Martin
1030# Backups:
1031
1032# Bug Tracker
1033# Owners: Lynxis,
1034# Backups: Martin,
1035
1036# Mailing List
1037# Owners: Stefan, Patrick
1038# Backups: Martin,
1039
1040# Software Freedom Conservancy
1041# Main contact: Martin
1042# “Official” contact: Stefan