blob: 0433602c85d5dafa788f1333f087f5bb6144b745 [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
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600274S: Maintained
275F: src/mainboard/google/brya/
276
277GOOGLE HATCH MAINBOARDS
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600278S: Maintained
279F: src/mainboard/google/hatch/
Angel Pons8d6f5872020-06-07 00:25:42 +0200280
281GOOGLE PANTHER MAINBOARD
282M: Stefan Reinauer <stefan.reinauer@coreboot.org>
283S: Supported
284F: src/mainboard/google/panther/
285
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600286GOOGLE VOLTEER MAINBOARDS
Nick Vaccaro5f124552021-04-28 14:28:39 -0700287M: Nick Vaccaro <nvaccaro@chromium.org>
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600288S: Maintained
289F: src/mainboard/google/volteer/
290
Angel Pons8d6f5872020-06-07 00:25:42 +0200291GOOGLE MAINBOARDS (Intel-based, legacy/inactive)
292M: Matt DeVillier <MrChromebox@gmail.com>
293S: Maintained
294F: src/mainboard/google/auron/
295F: src/mainboard/google/beltino/
296F: src/mainboard/google/butterfly/
297F: src/mainboard/google/cyan/
298F: src/mainboard/google/glados/
299F: src/mainboard/google/jecht/
300F: src/mainboard/google/link/
301F: src/mainboard/google/parrot/
302F: src/mainboard/google/slippy/
303F: src/mainboard/google/stout/
304
Martin Roth7703b192022-08-10 12:14:10 -0600305GOOGLE AMD-BASED MAINBOARDS
306M: Martin Roth <martin.roth@amd.corp-partner.google.com>
307M: Jason Nien <jason.nien@amd.corp-partner.google.com>
308L: amd_coreboot_org_changes@googlegroups.com
309S: Supported
310F: src/mainboard/google/kahlee/
311F: src/mainboard/google/zork/
312F: src/mainboard/google/guybrush/
313F: src/mainboard/google/skyrim/
Angel Pons8d6f5872020-06-07 00:25:42 +0200314
315
Angel Pons8602e662021-04-21 23:29:03 +0200316HP 280 G2 MAINBOARD
317M: Angel Pons <th3fanbus@gmail.com>
318S: Maintained
319F: src/mainboard/hp/280_g2/
320
321
322
Angel Pons8d6f5872020-06-07 00:25:42 +0200323INTEL D510MO MAINBOARD
324M: Damien Zammit <damien@zamaudio.com>
325S: Odd Fixes
Felix Singer3c02ed92020-11-30 06:56:08 +0100326F: src/mainboard/intel/d510mo/
Angel Pons8d6f5872020-06-07 00:25:42 +0200327
Mariusz Szafranski37afe1c2022-01-19 15:25:29 +0000328INTEL HARCUVAR_CRB MAINBOARD
329M: Jeff Daly <jeffd@silicom-usa.com>
330M: Vanessa Eusebio <vanessa.f.eusebio@intel.com>
331M: Suresh Bellampalli <suresh.bellampalli@intel.com>
332M: Mariusz Szafranski <mariuszx.szafranski@intel.com>
333S: Maintained
334F: src/mainboard/intel/harcuvar/
335
Angel Pons8d6f5872020-06-07 00:25:42 +0200336INTEL STRAGO MAINBOARD
337M: Hannah Williams <hannah.williams@intel.com>
338S: Supported
339F: /src/mainboard/intel/strago/
340
341
342
Felix Singer32608cf2020-11-22 00:38:16 +0000343KONTRON BSL6 MAINBOARD
344M: Felix Singer <felixsinger@posteo.net>
345M: Nico Huber <nico.h@gmx.de>
346S: Supported
347F: src/mainboard/kontron/bsl6/
348
Felix Singer5a41b0d2020-11-23 20:20:38 +0000349KONTRON MAL10 MAINBOARD
350M: Maxim Polyakov <max.senia.poliak@gmail.com>
351M: Nico Huber <nico.h@gmx.de>
352M: Felix Singer <felixsinger@posteo.net>
353S: Supported
354F: src/mainboard/kontron/mal10/
355
Felix Singer32608cf2020-11-22 00:38:16 +0000356
357
Angel Pons8d6f5872020-06-07 00:25:42 +0200358LENOVO MAINBOARDS
359M: Alexander Couzens <lynxis@fe80.eu>
Angel Pons8d6f5872020-06-07 00:25:42 +0200360S: Maintained
361F: src/mainboard/lenovo/
362
363LENOVO G505S MAINBOARD
364M: Mike Banon <mikebdp2@gmail.com>
365S: Maintained
366F: src/mainboard/lenovo/g505s/
367
Stefan Ott98d63852021-04-22 01:28:56 +0200368LENOVO X200 MAINBOARD
369R: Stefan Ott <coreboot@desire.ch>
370S: Maintained
371F: src/mainboard/lenovo/x200/
372
373LENOVO X201 MAINBOARD
374R: Stefan Ott <coreboot@desire.ch>
375S: Maintained
376F: src/mainboard/lenovo/x201/
Angel Pons8d6f5872020-06-07 00:25:42 +0200377
378
379LIBRETREND LT1000 MAINBOARD
380M: Piotr Król <piotr.krol@3mdeb.com>
381M: Michał Żygowski <michal.zygowski@3mdeb.com>
382S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100383F: src/mainboard/libretrend/lt1000/
Angel Pons8d6f5872020-06-07 00:25:42 +0200384
385
Angel Pons8602e662021-04-21 23:29:03 +0200386
387MSI H81M-P33 MAINBOARD
388M: Angel Pons <th3fanbus@gmail.com>
389S: Maintained
390F: src/mainboard/msi/h81m-p33/
391
Michał Żygowski4a12f542022-07-25 10:10:50 +0200392MSI MS-7D25 MAINBOARDS
393M: Michał Żygowski <michal.zygowski@3mdeb.com>
394M: Michał Kopeć <michal.kopec@3mdeb.com>
395S: Maintained
396F: src/mainboard/msi/ms7d25/
Angel Pons8602e662021-04-21 23:29:03 +0200397
Jonathan Zhangdd4f6432020-06-30 11:39:09 -0700398OCP DELTALAKE MAINBOARD
Jonathan Zhang4a4806f2021-09-16 09:06:47 -0700399M: Arthur Heymans <arthur@aheymans.xyz>
400M: Christian Walter <christian.walter@9elements.com>
Jonathan Zhangdd4f6432020-06-30 11:39:09 -0700401M: Johnny Lin <Johnny_Lin@wiwynn.com>
Jonathan Zhang4a4806f2021-09-16 09:06:47 -0700402M: Jonathan Zhang <jonzhang@fb.com>
403M: Tim Chu <Tim.Chu@quantatw.com>
Jonathan Zhangdd4f6432020-06-30 11:39:09 -0700404S: Supported
Felix Singer3c02ed92020-11-30 06:56:08 +0100405F: src/mainboard/ocp/deltalake/
Angel Pons8d6f5872020-06-07 00:25:42 +0200406
Jonathan Zhanged849ed2020-05-01 11:23:46 -0700407OCP TIOGAPASS MAINBOARD
408M: Jonathan Zhang <jonzhang@fb.com>
409M: Reddy Chagam <anjaneya.chagam@intel.com>
410M: Johnny Lin <Johnny_Lin@wiwynn.com>
411M: Morgan Jang <Morgan_Jang@wiwynn.com>
412M: Ryback Hung <<Ryback.Hung@quantatw.com>
413M: Bryant Ou <Bryant.Ou@quantatw.com>
414S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100415F: src/mainboard/ocp/tiogapass/
Jonathan Zhanged849ed2020-05-01 11:23:46 -0700416
Angel Pons8d6f5872020-06-07 00:25:42 +0200417
418
419OPENCELLULAR MAINBOARDS
420M: Christian Walter <christian.walter@9elements.com>
421M: Patrick Rudolph <patrick.rudolph@9elements.com>
422S: Supported
423F: src/mainboard/opencellular/elgon/
424
425
426
427PC ENGINES ALL MAINBOARDS
428M: Piotr Król <piotr.krol@3mdeb.com>
429M: Michał Żygowski <michal.zygowski@3mdeb.com>
430S: Supported
431F: src/mainboard/pcengines/
432
433
434
Frans Hendriksa78146c2019-07-19 10:30:20 +0200435PORTWELL PQ-M107 MAINBOARD
436M: Frans Hendriks <fhendriks@eltan.com>
Frans Hendriks7e7ea2b2021-12-02 10:15:20 +0100437M: Erik van den Bogaert <ebogaert@eltan.com>
Frans Hendriksa78146c2019-07-19 10:30:20 +0200438S: Maintained
439F: src/mainboard/portwell/m107/
440
Martin Roth2a3434752016-03-05 18:31:29 -0700441
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700442
Angel Pons8d6f5872020-06-07 00:25:42 +0200443PROTECTLI ALL MAINBOARDS
444M: Piotr Król <piotr.krol@3mdeb.com>
445M: Michał Żygowski <michal.zygowski@3mdeb.com>
446S: Maintained
447F: src/mainboard/protectli/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700448
Angel Pons8d6f5872020-06-07 00:25:42 +0200449
450
Lean Sheng Tana29452a2022-06-03 10:06:04 +0200451PRODRIVE ATLAS MAINBOARD
452M: Angel Pons <th3fanbus@gmail.com>
453M: Christian Walter <christian.walter@9elements.com>
454M: Lean Sheng Tan <sheng.tan@9elements.com>
455S: Maintained
456F: src/mainboard/prodrive/atlas/
457
Christian Walter02b39372020-06-17 20:17:59 +0200458PRODRIVE HERMES MAINBOARD
459M: Christian Walter <christian.walter@9elements.com>
460M: Patrick Rudolph <patrick.rudolph@9elements.com>
461S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100462F: src/mainboard/prodrive/hermes/
Christian Walter02b39372020-06-17 20:17:59 +0200463
464
465
Angel Pons8d6f5872020-06-07 00:25:42 +0200466PURISM MAINBOARDS
Jonathon Hall5ec1c142022-08-02 16:45:00 -0400467M: Jonathon Hall <jonathon.hall@puri.sm>
Julius Werner848f5db2017-09-11 13:12:48 -0700468S: Supported
Felix Singer3c02ed92020-11-30 06:56:08 +0100469F: src/mainboard/purism/
Angel Pons8d6f5872020-06-07 00:25:42 +0200470
471
472
473SAMSUNG CHROMEOS MAINBOARDS
474M: Matt DeVillier <MrChromebox@gmail.com>
475S: Maintained
476F: src/mainboard/samsung/lumpy/
477F: src/mainboard/samsung/stumpy/
478
479
480
Felix Singer32608cf2020-11-22 00:38:16 +0000481SIEMENS CHILI MAINBAORD
482M: Felix Singer <felixsinger@posteo.net>
483M: Nico Huber <nico.h@gmx.de>
484S: Supported
485F: src/mainboard/siemens/chili/
486
Angel Pons8d6f5872020-06-07 00:25:42 +0200487SIEMENS MC_xxxx MAINBOARDS
488M: Werner Zeh <werner.zeh@siemens.com>
489S: Maintained
490F: src/mainboard/siemens/mc_apl1/
Werner Zeh9f15a6c2022-04-22 10:23:44 +0200491F: src/mainboard/siemens/mc_ehl/
Angel Pons8d6f5872020-06-07 00:25:42 +0200492
493
494
Sean Rhodes17441a32021-07-05 16:03:15 +0100495STAR LABS MAINBOARDS
496M: Sean Rhodes <sean@starlabs.systems>
497S: Maintained
498F: src/mainboard/starlabs/
499
500
501
Jeremy Soller625af2b2020-07-21 08:23:39 -0600502SYSTEM76 MAINBOARDS
503M: Jeremy Soller <jeremy@system76.com>
Tim Crawford5310d522021-04-21 15:30:29 -0600504M: Tim Crawford <tcrawford@system76.com>
Jeremy Soller625af2b2020-07-21 08:23:39 -0600505S: Maintained
506F: src/mainboard/system76/
507
508
509
Angel Pons8d6f5872020-06-07 00:25:42 +0200510SUPERMICRO X10SLM+-F MAINBOARD
511M: Tristan Corrick <tristan@corrick.kiwi>
512S: Maintained
513F: src/mainboard/supermicro/x10slm-f/
514
515SUPERMICRO X11-LGA1151-SERIES
516M: Michael Niewöhner <foss@mniewoehner.de>
517S: Maintained
Michael Niewöhner5fd29312020-11-13 01:13:46 +0100518F: src/mainboard/supermicro/x11-lga1151-series/
Angel Pons8d6f5872020-06-07 00:25:42 +0200519
520################################################################################
521# Architectures
522################################################################################
Julius Werner848f5db2017-09-11 13:12:48 -0700523
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700524ARM ARCHITECTURE
Julius Wernerc34e41f2017-06-09 14:26:03 -0700525M: Julius Werner <jwerner@chromium.org>
526S: Supported
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700527F: src/arch/arm/
Julius Wernerc34e41f2017-06-09 14:26:03 -0700528F: src/arch/arm64/
Julius Wernerc34e41f2017-06-09 14:26:03 -0700529F: src/soc/nvidia/
530F: src/soc/rockchip/
531F: util/nvidia/
532F: util/rockchip/
533
Angel Pons8d6f5872020-06-07 00:25:42 +0200534PPC64 ARCHITECTURE
535M: Ronald Minnich <rminnich@gmail.com>
536M: Timothy Pearson <tpearson@raptorengineeringinc.com>
537S: Maintained
538F: src/arch/ppc64/
539F: src/cpu/qemu-power8/
540F: src/mainboard/emulation/qemu-power8/
541
542RISC-V ARCHITECTURE
543M: Ronald Minnich <rminnich@gmail.com>
544R: Philipp Hug <philipp@hug.cx>
545S: Maintained
546F: src/arch/riscv/
547F: src/soc/sifive/
548F: src/soc/ucb/
549F: src/mainboard/emulation/*-riscv/
550F: src/mainboard/sifive/
551F: util/riscv/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700552
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700553X86 ARCHITECTURE
554F: src/arch/x86/
555F: src/cpu/x86/
556F: src/drivers/pc80/
557F: src/include/pc80/
558F: src/include/cpu/x86/
559
Angel Pons8d6f5872020-06-07 00:25:42 +0200560################################################################################
561# Embedded Controllers
562################################################################################
563
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600564CHROME EC
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600565S: Maintained
566F: src/ec/google/chromeec/
567
Angel Pons8d6f5872020-06-07 00:25:42 +0200568LENOVO EC
569M: Alexander Couzens <lynxis@fe80.eu>
570S: Maintained
571F: src/ec/lenovo/
572
Sean Rhodes17441a32021-07-05 16:03:15 +0100573STARLABS EC
574M: Sean Rhodes <sean@starlabs.systems>
575S: Maintained
576F: src/ec/starlabs/
577
Jeremy Soller625af2b2020-07-21 08:23:39 -0600578SYSTEM76 EC
579M: Jeremy Soller <jeremy@system76.com>
Tim Crawford5310d522021-04-21 15:30:29 -0600580M: Tim Crawford <tcrawford@system76.com>
Jeremy Soller625af2b2020-07-21 08:23:39 -0600581S: Maintained
582F: src/ec/system76/
583
Angel Pons8d6f5872020-06-07 00:25:42 +0200584################################################################################
585# Northbridges
586################################################################################
587
588INTEL HASWELL NORTHBRIDGE
589M: Angel Pons <th3fanbus@gmail.com>
590S: Maintained
591F: src/northbridge/intel/haswell/
592
593INTEL PINEVIEW CHIPSET
594M: Damien Zammit <damien@zamaudio.com>
595M: Angel Pons <th3fanbus@gmail.com>
596S: Odd Fixes
597F: src/northbridge/intel/pineview/
598
599INTEL SANDYBRIDGE NORTHBRIDGE
600M: Angel Pons <th3fanbus@gmail.com>
601S: Maintained
602F: src/northbridge/intel/sandybridge/
603
604INTEL X4X CHIPSET
605M: Damien Zammit <damien@zamaudio.com>
606M: Angel Pons <th3fanbus@gmail.com>
607S: Odd Fixes
608F: src/northbridge/intel/x4x/
609
610################################################################################
611# Platforms
612################################################################################
613
614AMD SUPPORT
Martin Roth7703b192022-08-10 12:14:10 -0600615L: amd_coreboot_org_changes@googlegroups.com
Angel Pons8d6f5872020-06-07 00:25:42 +0200616F: src/vendorcode/amd/
617F: src/cpu/amd/
618F: src/northbridge/amd/
619F: src/southbridge/amd/
620F: src/include/cpu/amd/
621
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700622INTEL SUPPORT
Martin Roth954338d2017-03-05 11:20:18 -0700623S: Maintained
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700624F: src/vendorcode/intel/
625F: src/cpu/intel/
626F: src/northbridge/intel/
627F: src/southbridge/intel/
628F: src/soc/intel/
629F: src/drivers/intel/
630F: src/include/cpu/intel/
631
Angel Pons8d6f5872020-06-07 00:25:42 +0200632INTEL FSP 1.1
633M: Lee Leahy <leroy.p.leahy@intel.com>
634M: Huang Jin <huang.jin@intel.com>
635M: York Yang <york.yang@intel.com>
636S: Supported
637F: src/drivers/intel/fsp1_1/
638
639INTEL FSP 2.0
640M: Andrey Petrov <andrey.petrov@gmail.com>
641S: Maintained
642F: src/drivers/intel/fsp2_0/
643
644################################################################################
645# Systems on a Chip
646################################################################################
647
Felix Heldfef413e2020-12-02 15:57:24 +0100648AMD Cezanne
Felix Heldfef413e2020-12-02 15:57:24 +0100649M: Felix Held <felix-coreboot@felixheld.de>
650M: Jason Glenesk <jason.glenesk@gmail.com>
Raul E Rangelc81509c2021-01-25 10:24:14 -0700651M: Raul E Rangel <rrangel@chromium.org>
Fred Reitberger636a6de2022-02-17 13:27:35 -0500652M: Fred Reitberger <reitbergerfred@gmail.com>
Matt DeVillier (AMD)0303d692022-07-20 17:08:41 -0500653M: Matt DeVillier <matt.devillier@amd.corp-partner.google.com>
Martin Roth7703b192022-08-10 12:14:10 -0600654L: amd_coreboot_org_changes@googlegroups.com
Felix Heldfef413e2020-12-02 15:57:24 +0100655S: Maintained
656F: src/soc/amd/cezanne/
Felix Heldfe84dbb2021-08-06 16:25:35 +0200657F: src/vendorcode/amd/fsp/cezanne/
Felix Heldfef413e2020-12-02 15:57:24 +0100658
659AMD common SoC code
Felix Heldfef413e2020-12-02 15:57:24 +0100660M: Felix Held <felix-coreboot@felixheld.de>
661M: Jason Glenesk <jason.glenesk@gmail.com>
Raul E Rangelc81509c2021-01-25 10:24:14 -0700662M: Raul E Rangel <rrangel@chromium.org>
Fred Reitberger636a6de2022-02-17 13:27:35 -0500663M: Fred Reitberger <reitbergerfred@gmail.com>
Matt DeVillier (AMD)0303d692022-07-20 17:08:41 -0500664M: Matt DeVillier <matt.devillier@amd.corp-partner.google.com>
Martin Roth7703b192022-08-10 12:14:10 -0600665L: amd_coreboot_org_changes@googlegroups.com
Felix Heldfef413e2020-12-02 15:57:24 +0100666S: Maintained
667F: src/soc/amd/common/
668
Felix Held93231b42020-11-13 15:56:28 +0100669AMD Picasso
Felix Held93231b42020-11-13 15:56:28 +0100670M: Felix Held <felix-coreboot@felixheld.de>
671M: Jason Glenesk <jason.glenesk@gmail.com>
Fred Reitberger636a6de2022-02-17 13:27:35 -0500672M: Fred Reitberger <reitbergerfred@gmail.com>
Matt DeVillier (AMD)0303d692022-07-20 17:08:41 -0500673M: Matt DeVillier <matt.devillier@amd.corp-partner.google.com>
Martin Roth7703b192022-08-10 12:14:10 -0600674L: amd_coreboot_org_changes@googlegroups.com
Felix Held93231b42020-11-13 15:56:28 +0100675S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100676F: src/soc/amd/picasso/
677F: src/vendorcode/amd/fsp/picasso/
Felix Held93231b42020-11-13 15:56:28 +0100678
Jon Murphy4f732422022-08-05 15:43:44 -0600679AMD Mendocino
Felix Held2e88d062022-01-25 04:39:39 +0100680M: Felix Held <felix-coreboot@felixheld.de>
681M: Jason Glenesk <jason.glenesk@gmail.com>
682M: Raul E Rangel <rrangel@chromium.org>
Fred Reitberger636a6de2022-02-17 13:27:35 -0500683M: Fred Reitberger <reitbergerfred@gmail.com>
Matt DeVillier (AMD)0303d692022-07-20 17:08:41 -0500684M: Matt DeVillier <matt.devillier@amd.corp-partner.google.com>
Martin Roth7703b192022-08-10 12:14:10 -0600685L: amd_coreboot_org_changes@googlegroups.com
686S: Supported
Jon Murphy4f732422022-08-05 15:43:44 -0600687F: src/soc/amd/mendocino/
688F: src/vendorcode/amd/fsp/mendocino/
Felix Held2e88d062022-01-25 04:39:39 +0100689
Felix Held4080e082021-08-06 16:30:02 +0200690AMD Stoneyridge
Felix Held4080e082021-08-06 16:30:02 +0200691M: Felix Held <felix-coreboot@felixheld.de>
Matt DeVillier (AMD)0303d692022-07-20 17:08:41 -0500692M: Matt DeVillier <matt.devillier@amd.corp-partner.google.com>
Martin Roth7703b192022-08-10 12:14:10 -0600693L: amd_coreboot_org_changes@googlegroups.com
Felix Held4080e082021-08-06 16:30:02 +0200694S: Odd Fixes
695F: src/soc/amd/stoneyridge/
696
Kapil Porwal423bc1a2022-08-08 13:05:23 +0000697INTEL METEORLAKE SOC
698M: Subrata Banik <subratabanik@google.com>
699M: Tarun Tuli <taruntuli@google.com>
700M: Kapil Porwal <kapilporwal@google.com>
701S: Maintained
702F: src/soc/intel/meteorlake/
703
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600704INTEL ALDERLAKE SOC
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600705S: Maintained
706F: src/soc/intel/alderlake/
707
Angel Pons8d6f5872020-06-07 00:25:42 +0200708INTEL APOLLOLAKE_SOC
709M: Andrey Petrov <andrey.petrov@gmail.com>
710S: Maintained
711F: src/soc/intel/apollolake/
712
713INTEL BRASWELL SOC
714M: Piotr Król <piotr.krol@3mdeb.com>
715M: Michał Żygowski <michal.zygowski@3mdeb.com>
716M: Frans Hendriks <fhendriks@eltan.com>
717S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100718F: /src/soc/intel/braswell/
719F: /src/vendorcode/intel/fsp/fsp1_1/braswell/
Angel Pons8d6f5872020-06-07 00:25:42 +0200720
Mariusz Szafranski37afe1c2022-01-19 15:25:29 +0000721INTEL DENVERTON-NS SOC
722M: Jeff Daly <jeffd@silicom-usa.com>
723M: Vanessa Eusebio <vanessa.f.eusebio@intel.com>
724M: Suresh Bellampalli <suresh.bellampalli@intel.com>
725M: Mariusz Szafranski <mariuszx.szafranski@intel.com>
726S: Maintained
727F: src/soc/intel/denverton_ns/
728
Lean Sheng Tan37a407f2022-06-03 10:12:28 +0200729INTEL ELKHARTLAKE SOC
730M: Lean Sheng Tan <sheng.tan@9elements.com>
731M: Werner Zeh <werner.zeh@siemens.com>
732S: Maintained
733F: src/soc/intel/elkhartlake/
734
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600735INTEL TIGERLAKE SOC
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600736S: Maintained
737F: src/soc/intel/tigerlake/
738
Jonathan Zhange9b0b082020-06-30 13:28:52 -0700739INTEL Xeon Sacalable Processor Family
740M: Jonathan Zhang <jonzhang@fb.com>
741M: Reddy Chagam <anjaneya.chagam@intel.com>
742M: Johnny Lin <Johnny_Lin@wiwynn.com>
Jonathan Zhang4a4806f2021-09-16 09:06:47 -0700743M: Tim Chu <Tim.Chu@quantatw.com>
744M: Arthur Heymans <arthur@aheymans.xyz>
745M: Christian Walter <christian.walter@9elements.com>
Jonathan Zhange9b0b082020-06-30 13:28:52 -0700746S: Supported
Felix Singerd70d1d12020-11-30 06:56:08 +0100747F: src/soc/intel/xeon_sp/
Felix Singer3c02ed92020-11-30 06:56:08 +0100748F: src/vendorcode/intel/fsp/fsp2_0/skylake_sp/
749F: src/vendorcode/intel/fsp/fsp2_0/copperlake_sp/
Jonathan Zhange9b0b082020-06-30 13:28:52 -0700750
Julius Wernerb1263802020-08-24 14:24:21 -0700751MEDIATEK SOCS
752M: Hung-Te Lin <hungte@chromium.org>
753S: Supported
Felix Singer3c02ed92020-11-30 06:56:08 +0100754F: src/soc/mediatek/
Julius Wernerb1263802020-08-24 14:24:21 -0700755
Xi Chen022b1b92021-02-05 11:45:12 +0800756MEDIATEK MT8192
757M: Xi Chen <xixi.chen@mediatek.com>
758S: Maintained
759F: src/soc/mediatek/mt8192/
760F: src/vendorcode/mediatek/mt8192/
761
Angel Pons8d6f5872020-06-07 00:25:42 +0200762ORPHANED ARM SOCS
763S: Orphaned
764F: src/cpu/armltd/
Sam Lewisad7b2e22020-08-03 20:18:29 +1000765F: src/soc/ti/
Angel Pons8d6f5872020-06-07 00:25:42 +0200766F: src/soc/qualcomm/
767F: src/soc/samsung/
768F: util/exynos/
769F: util/ipqheader/
770
771################################################################################
772# Payloads
773################################################################################
774
775NVRAM
776F: util/nvramtool/
777F: payloads/nvramcui/
778
779LIBPAYLOAD
780F: payloads/libpayload/
781
782COREINFO PAYLOAD
783F: payloads/coreinfo/
784
785EXTERNAL PAYLOADS INTEGRATION
786M: Stefan Reinauer <stefan.reinauer@coreboot.org>
787M: Martin Roth <gaumless@gmail.com>
Felix Singer3c02ed92020-11-30 06:56:08 +0100788F: payloads/external/
Angel Pons8d6f5872020-06-07 00:25:42 +0200789
790LINUXBOOT PAYLOAD INTEGRATION
791M: Christian Walter <christian.walter@9elements.com>
792M: Marcello Sylvester Bauer <info@marcellobauer.com>
793S: Supported
Felix Singer3c02ed92020-11-30 06:56:08 +0100794F: payloads/external/LinuxBoot/
Angel Pons8d6f5872020-06-07 00:25:42 +0200795
796################################################################################
797# Utilities
798################################################################################
799
800ABUILD
Angel Pons8d6f5872020-06-07 00:25:42 +0200801M: Martin Roth <gaumless@gmail.com>
802S: Supported
803F: util/abuild/
804
805BOARD STATUS
806F: util/board_status/
807
808BUILD SYSTEM
Angel Pons8d6f5872020-06-07 00:25:42 +0200809M: Martin Roth <gaumless@gmail.com>
810S: Supported
811F: Makefile
812F: *.inc
813F: src/include/kconfig.h
814F: util/kconfig/
815F: util/sconfig/
816F: util/xcompile/
817F: util/genbuild_h/
818
819TOOLCHAIN
820F: util/crossgcc/
821
822DOCKER
823M: Martin Roth <gaumless@gmail.com>
824S: Supported
825F: util/docker/
826
827GIT
828F: .git*
829F: /util/gitconfig
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700830
Stefan Reinauer2e38cc52015-05-06 11:15:38 -0700831LINT SCRIPTS
Martin Roth057ce5f2016-03-17 12:03:00 -0600832M: Martin Roth <gaumless@gmail.com>
Stefan Reinauer2e38cc52015-05-06 11:15:38 -0700833S: Supported
834F: util/lint/
835
Angel Pons8d6f5872020-06-07 00:25:42 +0200836IFDTOOL
837M: Stefan Reinauer <stefan.reinauer@coreboot.org>
838F: util/ifdtool/
839
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700840INTELTOOL
841M: Stefan Reinauer <stefan.reinauer@coreboot.org>
842F: util/inteltool/
843
Philipp Deppenwiese4cd9a112016-03-23 00:02:40 +0100844INTELMETOOL
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100845M: Christian Walter <christian.walter@9elements.com>
Philipp Deppenwiese4cd9a112016-03-23 00:02:40 +0100846F: util/intelmetool/
847
Maxim Polyakov8f6c8962021-08-07 13:07:44 +0300848INTELP2M
849M: Maxim Polyakov <max.senia.poliak@gmail.com>
850S: Maintained
851F: util/intelp2m/
852
Nicola Corna4f4fc182017-02-23 16:53:45 +0100853ME_CLEANER
854M: Nicola Corna <nicola@corna.info>
855W: https://github.com/corna/me_cleaner
856S: Maintained
857F: util/me_cleaner/
858
Felix Singerf9948a42021-02-01 13:46:50 +0100859LIVEISO
860M: Felix Singer <felixsinger@posteo.net>
861S: Supported
862F: util/liveiso/
863
Angel Pons8d6f5872020-06-07 00:25:42 +0200864################################################################################
865# Miscellaneous
866################################################################################
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700867
Angel Pons8d6f5872020-06-07 00:25:42 +0200868ASPEED AST2050 DRIVER & COMMON CODE
869M: Timothy Pearson <tpearson@raptorengineeringinc.com>
Patrick Georgi65ff63f2015-05-21 18:54:10 +0200870S: Supported
Angel Pons8d6f5872020-06-07 00:25:42 +0200871F: src/drivers/aspeed/common/
872F: src/drivers/aspeed/ast2050/
Patrick Georgi65ff63f2015-05-21 18:54:10 +0200873
Angel Pons8d6f5872020-06-07 00:25:42 +0200874ACPI
Lijian Zhao5bd9b7f2020-12-29 09:12:36 +0800875M: Lance Zhao <lance.zhao@gmail.com>
Tim Wawrzynczak7c3e48c2022-09-28 15:41:10 -0600876M: Tim Wawrzynczak <inforichland@gmail.com>
Lijian Zhao5bd9b7f2020-12-29 09:12:36 +0800877S: Supported
Angel Pons8d6f5872020-06-07 00:25:42 +0200878F: src/acpi/
879F: src/arch/x86/acpi/
880F: util/acpi/
881
882LZ4 COMPRESSION
883M: Julius Werner <jwerner@chromium.org>
884S: Supported
885F: src/commonlib/lz4*
886F: payloads/libpayload/liblz4/
887F: util/cbfstool/lz4/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700888
889BINARY OBJECTS
890F: 3rdparty/blobs/
891
892VERIFIED BOOT
Julius Werner763db462021-07-30 16:30:14 -0700893M: Julius Werner <jwerner@chromium.org>
894M: Yu-Ping Wu <yupingso@google.com>
895S: Supported
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700896F: 3rdparty/vboot/
Julius Werner763db462021-07-30 16:30:14 -0700897F: src/security/vboot/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700898F: src/include/tpm.h
899F: src/include/tpm_lite/
900
901RESOURCE ALLOCATOR
902F: src/device/*
903F: src/include/device/
904F: src/include/cpu/cpu.h
905
906OPTION ROM EXECUTION & X86EMU
907F: src/device/oprom/
908
909CBFS
Julius Werner0655f782019-12-11 16:19:48 -0800910M: Julius Werner <jwerner@chromium.org>
911F: src/include/cbfs*
912F: src/commonlib/bsd/include/commonlib/bsd/cbfs*
913F: src/commonlib/bsd/cbfs*
914F: src/lib/cbfs.c
915
916CBFSTOOL
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700917F: util/cbfstool/
918
919CBMEM
920F: src/include/cbmem.h
921F: src/include/cbmem_id.h
922F: util/cbmem/
923
924CONSOLE
925F: src/console/
926F: src/include/console/
927F: src/drivers/uart/
928
Philipp Deppenwiese6507e6f2016-06-22 19:01:47 +0200929TPM SUPPORT
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100930M: Christian Walter <christian.walter@9elements.com>
Philipp Deppenwiese8f6af1c2018-11-23 19:13:54 +0100931S: Supported
Philipp Deppenwiese6507e6f2016-06-22 19:01:47 +0200932F: src/drivers/*/tpm/
Felix Singer3c02ed92020-11-30 06:56:08 +0100933F: src/security/tpm/
Philipp Deppenwiese6507e6f2016-06-22 19:01:47 +0200934
Martin Rothe801fcb2017-05-27 10:54:02 -0600935SUPERIOS & SUPERIOTOOL
936M: Felix Held <felix-coreboot@felixheld.de>
Felix Held6e296b32022-04-06 21:49:24 +0200937S: Odd Fixes
Martin Rothe801fcb2017-05-27 10:54:02 -0600938F: src/superio/
939F: util/superiotool/
940
Patrick Georgidcc0cc22021-09-23 11:49:41 +0200941SPD UTILITIES
942M: Reka Norman <rekanorman@chromium.org>
943S: Maintained
944F: util/spd_tools/
945F: util/spdtool/
946
Julius Wernerc34e41f2017-06-09 14:26:03 -0700947MEMLAYOUT
948M: Julius Werner <jwerner@chromium.org>
949S: Supported
950F: */memlayout.h
951F: *.ld
952
Frans Hendriksf20bf922019-06-13 14:14:56 +0200953ELTAN VENDORCODE
954M: Frans Hendriks <fhendriks@eltan.com>
Frans Hendriks7e7ea2b2021-12-02 10:15:20 +0100955M: Erik van den Bogaert <ebogaert@eltan.com>
Frans Hendriksf20bf922019-06-13 14:14:56 +0200956S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100957F: src/vendorcode/eltan/
Frans Hendriksf20bf922019-06-13 14:14:56 +0200958
Tim Crawford56dd9f0382021-04-21 15:40:23 -0600959TAS5825M DRIVER
960M: Jeremy Soller <jeremy@system76.com>
961M: Tim Crawford <tcrawford@system76.com>
962S: Maintained
963F: src/drivers/i2c/tas5825m/
964
Patrick Georgi517097f2021-03-02 18:08:14 +0100965TESTS
966M: Jakub Czapiga <jacz@semihalf.com>
967S: Maintained
968F: tests/
Jakub Czapiga6df286e2021-12-15 15:46:35 +0000969F: payloads/libpayload/tests/
Patrick Georgi517097f2021-03-02 18:08:14 +0100970
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700971MISSING: TIMERS / DELAYS
972
973MISSING: TIMESTAMPS
974
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700975MISSING: FMAP
976
977MISSING: GPIO
978
979MISSING: SMP
980
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700981MISSING: DMP / QEMU-X86
982
983MISSING: ELOG
984
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700985MISSING: SPI
986
Angel Pons0b500992020-04-15 16:47:36 +0200987# *** Infrastructure Owners ***
Martin Roth19fdedb2017-06-25 15:44:16 -0600988# This is intended to let people know who they should contact for issues with various infrastructure pieces.
989# Hardware
990# Owners: Stefan, Patrick
Sumeet Pawnikar1638a852017-09-12 22:17:55 +0530991# Backups:
Martin Roth19fdedb2017-06-25 15:44:16 -0600992
993# Web Server
994# Owners: Stefan, Patrick
995# Backups:
996
997# Website
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100998# Owners: Martin
Martin Roth19fdedb2017-06-25 15:44:16 -0600999# Backups: Patrick, Stefan
1000
1001# Documentation Website
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +01001002# Owners: Patrick
Martin Roth19fdedb2017-06-25 15:44:16 -06001003# Backups:
1004
Patrick Georgi1d348942019-07-17 20:40:50 +02001005CODE OF CONDUCT
1006M: Stefan Reinauer <stefan.reinauer@coreboot.org>
Patrick Georgi1d348942019-07-17 20:40:50 +02001007M: Ronald Minnich <rminnich@coreboot.org>
1008M: Martin Roth <martin@coreboot.org>
1009S: Maintained
1010F: Documentation/community/code_of_conduct.md
1011
Martin Roth19fdedb2017-06-25 15:44:16 -06001012# Wiki
1013# Owners: Stefan, Patrick
1014# Backups:
1015
1016# Gerrit
1017# Owners: Stefan, Patrick
1018# Backups: Martin
1019
1020# Jenkins
1021# Owners: Patrick, Martin
1022# Backups:
1023
1024# Bug Tracker
1025# Owners: Lynxis,
1026# Backups: Martin,
1027
1028# Mailing List
1029# Owners: Stefan, Patrick
1030# Backups: Martin,
1031
1032# Software Freedom Conservancy
1033# Main contact: Martin
1034# “Official” contact: Stefan