blob: 4627a5832ee15c56be9c9b39b7f2fabbaabcfc28 [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
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -070017
Martin Rothf6fea4f2022-10-22 20:18:55 -0600181. Make sure your changes compile correctly in multiple configurations. In
19 particular check that changes work for various boards in the tree that
20 it affects:
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -070021
Martin Rothf6fea4f2022-10-22 20:18:55 -060022 Test with: `util/abuild/abuild -c $(nproc) -t vendor/boardname`
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -070023
Martin Rothf6fea4f2022-10-22 20:18:55 -0600242. When you are happy with a change make it generally available for
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -070025 testing in gerrit and await feedback.
26
Martin Rothf6fea4f2022-10-22 20:18:55 -0600273. Be prepared to get your changes sent back with seemingly
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -070028 silly requests about formatting and variable names. These aren't
29 as silly as they seem. One job the maintainers do is to keep
30 things looking the same. Sometimes this means that the clever
31 hack in your mainboard or chipset to get around a problem actually
32 needs to become a generalized coreboot feature ready for next time.
33
34 PLEASE check your patch with the automated style checker
35 (util/lint/checkpatch.pl) to catch trival style violations.
Paul Menzel59e21132017-06-05 12:46:00 +020036 See https://www.coreboot.org/Coding_Style for guidance here.
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -070037
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -070038 PLEASE document known bugs. If it doesn't work for everything
39 or does something very odd once a month document it.
40
Martin Rothf6fea4f2022-10-22 20:18:55 -060041 ALWAYS remember that submissions are made under the terms
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -070042 of the OSDL certificate of contribution and should include a
43 Signed-off-by: line. The current version of this "Developer's
44 Certificate of Origin" (DCO) is listed at
Paul Menzel59e21132017-06-05 12:46:00 +020045 https://www.coreboot.org/Development_Guidelines#Sign-off_Procedure.
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -070046
Martin Rothf6fea4f2022-10-22 20:18:55 -0600474. Make sure you have the right to send any changes you make. If you
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -070048 do changes at work you may find your employer owns the patch
49 not you.
50
Martin Rothf6fea4f2022-10-22 20:18:55 -0600515. Happy hacking.
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -070052
53Descriptions of section entries:
54
Stefan Reinauera4ffe8a2015-10-21 13:09:42 -070055 M: Maintainer: FullName <address@domain>
Nico Huberc9826d72018-11-05 13:42:35 +010056 Must be registered to Gerrit (https://review.coreboot.org/).
Martin Rothf6fea4f2022-10-22 20:18:55 -060057 Should have experience with upstream coreboot development and
58 +2 rights.
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -070059 R: Designated reviewer: FullName <address@domain>
60 These reviewers should be CCed on patches.
61 L: Mailing list that is relevant to this area
62 W: Web-page with status/info
63 Q: Patchwork web based patch tracking system site
64 T: SCM tree type and location.
65 Type is one of: git, hg, quilt, stgit, topgit
66 S: Status, one of the following:
Nico Huberc9826d72018-11-05 13:42:35 +010067 Supported: Someone is continuously paid to look after this and
68 a reaction to review requests can be expected
69 within a few days, a month at most.
70 Maintained: Someone actually looks after it and a reaction to
71 review requests can usually be expected within a
72 few weeks.
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -070073 Odd Fixes: It has a maintainer but they don't have time to do
74 much other than throw the odd patch in. See below..
75 Orphan: No current maintainer [but maybe you could take the
76 role as you write your new code].
77 Obsolete: Old code. Something tagged obsolete generally means
78 it has been replaced by a better system and you
79 should be using that.
80 F: Files and directories with wildcard patterns.
81 A trailing slash includes all files and subdirectory files.
82 F: drivers/net/ all files in and below drivers/net
83 F: drivers/net/* all files in drivers/net, but not below
84 F: */net/* all files in "any top level directory"/net
85 One pattern per line. Multiple F: lines acceptable.
86 N: Files and directories with regex patterns.
87 N: [^a-z]tegra all files whose path contains the word tegra
88 One pattern per line. Multiple N: lines acceptable.
89 scripts/get_maintainer.pl has different behavior for files that
90 match F: pattern and matches of N: patterns. By default,
91 get_maintainer will not look at git log history when an F: pattern
92 match occurs. When an N: match occurs, git log history is used
93 to also notify the people that have git commit signatures.
94 X: Files and directories that are NOT maintained, same rules as F:
95 Files exclusions are tested before file matches.
96 Can be useful for excluding a specific subdirectory, for instance:
97 F: net/
98 X: net/ipv6/
99 matches all files in and below net excluding net/ipv6/
100 K: Keyword perl extended regex pattern to match content in a
101 patch or file. For instance:
102 K: of_get_profile
103 matches patches or files that contain "of_get_profile"
104 K: \b(printk|pr_(info|err))\b
105 matches patches or files that contain one or more of the words
106 printk, pr_info or pr_err
107 One regex pattern per line. Multiple K: lines acceptable.
108
109Note: For the hard of thinking, this list is meant to remain in alphabetical
110order. If you could add yourselves to it in alphabetical order that would be
111so much easier [Ed]
112
113Maintainers List (try to look for most precise areas first)
114
115 -----------------------------------
116
Angel Pons8d6f5872020-06-07 00:25:42 +0200117################################################################################
118# Mainboards
119################################################################################
Mike Banonc732d682019-12-31 14:29:39 +0300120
Felix Held9a1583b2020-12-06 20:15:31 +0100121AMD family 17h and 19h reference boards
Felix Held9a1583b2020-12-06 20:15:31 +0100122M: Felix Held <felix-coreboot@felixheld.de>
123M: Jason Glenesk <jason.glenesk@gmail.com>
Fred Reitberger636a6de2022-02-17 13:27:35 -0500124M: Fred Reitberger <reitbergerfred@gmail.com>
Martin Roth7703b192022-08-10 12:14:10 -0600125L: amd_coreboot_org_changes@googlegroups.com
Felix Held9a1583b2020-12-06 20:15:31 +0100126S: Maintained
Martin Roth7703b192022-08-10 12:14:10 -0600127F: src/mainboard/amd/bilby/
Fred Reitbergerbc4b85f2022-10-14 08:51:12 -0400128F: src/mainboard/amd/birman/
Felix Heldd575c8d2022-01-25 04:41:06 +0100129F: src/mainboard/amd/chausie/
Felix Held9a1583b2020-12-06 20:15:31 +0100130F: src/mainboard/amd/majolica/
131F: src/mainboard/amd/mandolin/
132
Martin Roth7703b192022-08-10 12:14:10 -0600133AMD reference boards outside of family 17h and 19h
134L: amd_coreboot_org_changes@googlegroups.com
135F: src/mainboard/amd/gardenia/
136F: src/mainboard/amd/inagua/
137F: src/mainboard/amd/olivehill/
Felix Heldf0d62ce2022-10-14 17:48:22 +0200138F: src/mainboard/amd/pademelon/
Martin Roth7703b192022-08-10 12:14:10 -0600139F: src/mainboard/amd/parmer/
140F: src/mainboard/amd/persimmon/
141F: src/mainboard/amd/south_station/
142F: src/mainboard/amd/thatcher/
143F: src/mainboard/amd/union_station/
144
145
146
Evgeny Zinoviev09bf63e2019-05-31 16:03:27 +0300147APPLE MAINBOARDS
148M: Evgeny Zinoviev <me@ch1p.io>
149S: Maintained
150F: src/mainboard/apple/
151
Patrick Georgi8fb453e2018-11-21 22:12:45 +0100152
Angel Pons8d6f5872020-06-07 00:25:42 +0200153
154ASROCK B85M PRO4 MAINBOARD
Angel Pons8a508272020-06-06 22:45:16 +0200155M: Angel Pons <th3fanbus@gmail.com>
156S: Maintained
Angel Pons8d6f5872020-06-07 00:25:42 +0200157F: src/mainboard/asrock/b85m_pro4/
Andrey Petrov842dfe82016-05-24 22:01:56 -0700158
Angel Pons33849042018-12-01 23:28:03 +0100159ASROCK G41C-GS MAINBOARD & VARIANTS
160M: Angel Pons <th3fanbus@gmail.com>
161S: Maintained
162F: src/mainboard/asrock/g41c-gs/
163
Tristan Corrickd88cf5f2018-12-06 19:26:47 +1300164ASROCK H81M-HDS MAINBOARD
165M: Tristan Corrick <tristan@corrick.kiwi>
166S: Maintained
167F: src/mainboard/asrock/h81m-hds/
168
Angel Pons8d6f5872020-06-07 00:25:42 +0200169
Angel Ponsf2aaddc2020-06-06 22:38:38 +0200170
Mike Banon2a830852021-10-27 20:11:45 +0300171ASUS A88XM-E MAINBOARD
172M: Mike Banon <mikebdp2@gmail.com>
173S: Maintained
174F: src/mainboard/asus/a88xm-e/
175
Mike Banonc732d682019-12-31 14:29:39 +0300176ASUS AM1I-A MAINBOARD
177M: Mike Banon <mikebdp2@gmail.com>
178S: Maintained
179F: src/mainboard/asus/am1i-a/
180
Angel Ponse94cda52021-05-17 12:31:29 +0200181ASUS H61 SERIES MAINBOARDS
182M: Angel Pons <th3fanbus@gmail.com>
Angel Ponsed1e25d2021-05-17 13:22:57 +0200183M: Tristan Corrick <tristan@corrick.kiwi>
Angel Ponse94cda52021-05-17 12:31:29 +0200184S: Maintained
185F: src/mainboard/asus/h61-series/
186
Tristan Corrickd88cf5f2018-12-06 19:26:47 +1300187ASUS MAXIMUS IV GENE-Z MAINBOARD
188M: Tristan Corrick <tristan@corrick.kiwi>
189S: Maintained
190F: src/mainboard/asus/maximus_iv_gene-z/
191
Angel Pons33849042018-12-01 23:28:03 +0100192ASUS P5QC PRO MAINBOARD & VARIANTS
193M: Angel Pons <th3fanbus@gmail.com>
Stefan Ott98d63852021-04-22 01:28:56 +0200194R: Stefan Ott <coreboot@desire.ch>
Angel Pons33849042018-12-01 23:28:03 +0100195S: Maintained
196F: src/mainboard/asus/p5qc/
197
Angel Ponsf2aaddc2020-06-06 22:38:38 +0200198ASUS P5QPL-AM MAINBOARD & VARIANTS
199M: Angel Pons <th3fanbus@gmail.com>
200S: Maintained
201F: src/mainboard/asus/p5qpl-am/
202
Angel Pons81c2e022021-05-17 17:45:54 +0200203ASUS P8Z77 SERIES MAINBOARDS
Angel Ponsf2aaddc2020-06-06 22:38:38 +0200204M: Angel Pons <th3fanbus@gmail.com>
Angel Pons6f925062021-05-17 17:57:19 +0200205M: Vlado Cibic <vladocb@protonmail.com>
Angel Ponsf2aaddc2020-06-06 22:38:38 +0200206S: Maintained
Angel Pons81c2e022021-05-17 17:45:54 +0200207F: src/mainboard/asus/p8z77-series/
Angel Ponsf2aaddc2020-06-06 22:38:38 +0200208
Michał Żygowskib9f9f6c2018-12-21 12:23:27 +0100209
Michael Niewöhner489a11e2019-10-17 14:57:52 +0200210
Felix Singer63975f02020-10-12 21:47:43 +0000211CLEVO MAINBOARDS
212M: Felix Singer <felixsinger@posteo.net>
Michael Niewöhnere4478632020-07-19 22:56:35 +0200213M: Michael Niewöhner <foss@mniewoehner.de>
Felix Singer63975f02020-10-12 21:47:43 +0000214S: Supported
Michael Niewöhner5fd29312020-11-13 01:13:46 +0100215F: src/mainboard/clevo/
Felix Singer63975f02020-10-12 21:47:43 +0000216
217
218
Frans Hendriks1583fcd2019-06-05 10:18:23 +0200219FACEBOOK FBG1701 MAINBOARD
220M: Frans Hendriks <fhendriks@eltan.com>
Frans Hendriks7e7ea2b2021-12-02 10:15:20 +0100221M: Erik van den Bogaert <ebogaert@eltan.com>
Frans Hendriks1583fcd2019-06-05 10:18:23 +0200222S: Maintained
223F: src/mainboard/facebook/fbg1701/
224
Wim Vervoorn4ba70a72019-12-05 13:48:11 +0100225FACEBOOK MONOLITH MAINBOARD
226M: Frans Hendriks <fhendriks@eltan.com>
Frans Hendriks7e7ea2b2021-12-02 10:15:20 +0100227M: Erik van den Bogaert <ebogaert@eltan.com>
Wim Vervoorn4ba70a72019-12-05 13:48:11 +0100228S: Maintained
229F: src/mainboard/facebook/monolith/
230
Angel Pons8d6f5872020-06-07 00:25:42 +0200231
232
Angel Pons8602e662021-04-21 23:29:03 +0200233GIGABYTE GA-D510UD MAINBOARD
234M: Angel Pons <th3fanbus@gmail.com>
235S: Maintained
236F: src/mainboard/gigabyte/ga-d510ud/
237
Angel Pons8d6f5872020-06-07 00:25:42 +0200238GIGABYTE GA-G41M-ES2L MAINBOARD
239M: Damien Zammit <damien@zamaudio.com>
240S: Odd Fixes
Felix Singer3c02ed92020-11-30 06:56:08 +0100241F: src/mainboard/gigabyte/ga-g41m-es2l/
Angel Pons8d6f5872020-06-07 00:25:42 +0200242
243GIGABYTE GA-H61M SERIES MAINBOARDS
244M: Angel Pons <th3fanbus@gmail.com>
245S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100246F: src/mainboard/gigabyte/ga-h61m-series/
Angel Pons8d6f5872020-06-07 00:25:42 +0200247
Kapil Porwal423bc1a2022-08-08 13:05:23 +0000248GOOGLE REX MAINBOARDS
249M: Subrata Banik <subratabanik@google.com>
250M: Tarun Tuli <taruntuli@google.com>
251M: Kapil Porwal <kapilporwal@google.com>
252S: Maintained
253F: src/mainboard/google/rex/
Angel Pons8d6f5872020-06-07 00:25:42 +0200254
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600255GOOGLE BRYA MAINBOARDS
Tarun Tuli660d1ee2022-10-03 19:37:31 +0000256M: Tarun Tuli <taruntuli@google.com>
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600257S: Maintained
258F: src/mainboard/google/brya/
259
260GOOGLE HATCH MAINBOARDS
Tarun Tuli660d1ee2022-10-03 19:37:31 +0000261M: Tarun Tuli <taruntuli@google.com>
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600262S: Maintained
263F: src/mainboard/google/hatch/
Angel Pons8d6f5872020-06-07 00:25:42 +0200264
265GOOGLE PANTHER MAINBOARD
266M: Stefan Reinauer <stefan.reinauer@coreboot.org>
267S: Supported
268F: src/mainboard/google/panther/
269
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600270GOOGLE VOLTEER MAINBOARDS
Nick Vaccaro5f124552021-04-28 14:28:39 -0700271M: Nick Vaccaro <nvaccaro@chromium.org>
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600272S: Maintained
273F: src/mainboard/google/volteer/
274
Angel Pons8d6f5872020-06-07 00:25:42 +0200275GOOGLE MAINBOARDS (Intel-based, legacy/inactive)
276M: Matt DeVillier <MrChromebox@gmail.com>
277S: Maintained
278F: src/mainboard/google/auron/
279F: src/mainboard/google/beltino/
280F: src/mainboard/google/butterfly/
281F: src/mainboard/google/cyan/
282F: src/mainboard/google/glados/
283F: src/mainboard/google/jecht/
284F: src/mainboard/google/link/
285F: src/mainboard/google/parrot/
286F: src/mainboard/google/slippy/
287F: src/mainboard/google/stout/
288
Martin Roth7703b192022-08-10 12:14:10 -0600289GOOGLE AMD-BASED MAINBOARDS
290M: Martin Roth <martin.roth@amd.corp-partner.google.com>
291M: Jason Nien <jason.nien@amd.corp-partner.google.com>
292L: amd_coreboot_org_changes@googlegroups.com
293S: Supported
294F: src/mainboard/google/kahlee/
295F: src/mainboard/google/zork/
296F: src/mainboard/google/guybrush/
297F: src/mainboard/google/skyrim/
Angel Pons8d6f5872020-06-07 00:25:42 +0200298
299
Angel Pons8602e662021-04-21 23:29:03 +0200300HP 280 G2 MAINBOARD
301M: Angel Pons <th3fanbus@gmail.com>
302S: Maintained
303F: src/mainboard/hp/280_g2/
304
305
306
Angel Pons8d6f5872020-06-07 00:25:42 +0200307INTEL D510MO MAINBOARD
308M: Damien Zammit <damien@zamaudio.com>
309S: Odd Fixes
Felix Singer3c02ed92020-11-30 06:56:08 +0100310F: src/mainboard/intel/d510mo/
Angel Pons8d6f5872020-06-07 00:25:42 +0200311
Mariusz Szafranski37afe1c2022-01-19 15:25:29 +0000312INTEL HARCUVAR_CRB MAINBOARD
313M: Jeff Daly <jeffd@silicom-usa.com>
314M: Vanessa Eusebio <vanessa.f.eusebio@intel.com>
315M: Suresh Bellampalli <suresh.bellampalli@intel.com>
316M: Mariusz Szafranski <mariuszx.szafranski@intel.com>
317S: Maintained
318F: src/mainboard/intel/harcuvar/
319
Angel Pons8d6f5872020-06-07 00:25:42 +0200320INTEL STRAGO MAINBOARD
321M: Hannah Williams <hannah.williams@intel.com>
322S: Supported
323F: /src/mainboard/intel/strago/
324
325
326
Felix Singer32608cf2020-11-22 00:38:16 +0000327KONTRON BSL6 MAINBOARD
328M: Felix Singer <felixsinger@posteo.net>
329M: Nico Huber <nico.h@gmx.de>
330S: Supported
331F: src/mainboard/kontron/bsl6/
332
Felix Singer5a41b0d2020-11-23 20:20:38 +0000333KONTRON MAL10 MAINBOARD
334M: Maxim Polyakov <max.senia.poliak@gmail.com>
335M: Nico Huber <nico.h@gmx.de>
336M: Felix Singer <felixsinger@posteo.net>
337S: Supported
338F: src/mainboard/kontron/mal10/
339
Felix Singer32608cf2020-11-22 00:38:16 +0000340
341
Angel Pons8d6f5872020-06-07 00:25:42 +0200342LENOVO MAINBOARDS
343M: Alexander Couzens <lynxis@fe80.eu>
Angel Pons8d6f5872020-06-07 00:25:42 +0200344S: Maintained
345F: src/mainboard/lenovo/
346
347LENOVO G505S MAINBOARD
348M: Mike Banon <mikebdp2@gmail.com>
349S: Maintained
350F: src/mainboard/lenovo/g505s/
351
Stefan Ott98d63852021-04-22 01:28:56 +0200352LENOVO X200 MAINBOARD
353R: Stefan Ott <coreboot@desire.ch>
354S: Maintained
355F: src/mainboard/lenovo/x200/
356
357LENOVO X201 MAINBOARD
358R: Stefan Ott <coreboot@desire.ch>
359S: Maintained
360F: src/mainboard/lenovo/x201/
Angel Pons8d6f5872020-06-07 00:25:42 +0200361
362
363LIBRETREND LT1000 MAINBOARD
364M: Piotr Król <piotr.krol@3mdeb.com>
365M: Michał Żygowski <michal.zygowski@3mdeb.com>
366S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100367F: src/mainboard/libretrend/lt1000/
Angel Pons8d6f5872020-06-07 00:25:42 +0200368
369
Angel Pons8602e662021-04-21 23:29:03 +0200370
371MSI H81M-P33 MAINBOARD
372M: Angel Pons <th3fanbus@gmail.com>
373S: Maintained
374F: src/mainboard/msi/h81m-p33/
375
Michał Żygowski4a12f542022-07-25 10:10:50 +0200376MSI MS-7D25 MAINBOARDS
377M: Michał Żygowski <michal.zygowski@3mdeb.com>
378M: Michał Kopeć <michal.kopec@3mdeb.com>
379S: Maintained
380F: src/mainboard/msi/ms7d25/
Angel Pons8602e662021-04-21 23:29:03 +0200381
Jonathan Zhangdd4f6432020-06-30 11:39:09 -0700382OCP DELTALAKE MAINBOARD
Jonathan Zhang4a4806f2021-09-16 09:06:47 -0700383M: Arthur Heymans <arthur@aheymans.xyz>
384M: Christian Walter <christian.walter@9elements.com>
Jonathan Zhangdd4f6432020-06-30 11:39:09 -0700385M: Johnny Lin <Johnny_Lin@wiwynn.com>
Jonathan Zhang4a4806f2021-09-16 09:06:47 -0700386M: Jonathan Zhang <jonzhang@fb.com>
387M: Tim Chu <Tim.Chu@quantatw.com>
Jonathan Zhangdd4f6432020-06-30 11:39:09 -0700388S: Supported
Felix Singer3c02ed92020-11-30 06:56:08 +0100389F: src/mainboard/ocp/deltalake/
Angel Pons8d6f5872020-06-07 00:25:42 +0200390
Jonathan Zhanged849ed2020-05-01 11:23:46 -0700391OCP TIOGAPASS MAINBOARD
392M: Jonathan Zhang <jonzhang@fb.com>
393M: Reddy Chagam <anjaneya.chagam@intel.com>
394M: Johnny Lin <Johnny_Lin@wiwynn.com>
395M: Morgan Jang <Morgan_Jang@wiwynn.com>
396M: Ryback Hung <<Ryback.Hung@quantatw.com>
397M: Bryant Ou <Bryant.Ou@quantatw.com>
398S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100399F: src/mainboard/ocp/tiogapass/
Jonathan Zhanged849ed2020-05-01 11:23:46 -0700400
Angel Pons8d6f5872020-06-07 00:25:42 +0200401
402
403OPENCELLULAR MAINBOARDS
404M: Christian Walter <christian.walter@9elements.com>
405M: Patrick Rudolph <patrick.rudolph@9elements.com>
406S: Supported
407F: src/mainboard/opencellular/elgon/
408
409
410
411PC ENGINES ALL MAINBOARDS
412M: Piotr Król <piotr.krol@3mdeb.com>
413M: Michał Żygowski <michal.zygowski@3mdeb.com>
414S: Supported
415F: src/mainboard/pcengines/
416
417
418
Frans Hendriksa78146c2019-07-19 10:30:20 +0200419PORTWELL PQ-M107 MAINBOARD
420M: Frans Hendriks <fhendriks@eltan.com>
Frans Hendriks7e7ea2b2021-12-02 10:15:20 +0100421M: Erik van den Bogaert <ebogaert@eltan.com>
Frans Hendriksa78146c2019-07-19 10:30:20 +0200422S: Maintained
423F: src/mainboard/portwell/m107/
424
Martin Roth2a3434752016-03-05 18:31:29 -0700425
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700426
Angel Pons8d6f5872020-06-07 00:25:42 +0200427PROTECTLI ALL MAINBOARDS
428M: Piotr Król <piotr.krol@3mdeb.com>
429M: Michał Żygowski <michal.zygowski@3mdeb.com>
430S: Maintained
431F: src/mainboard/protectli/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700432
Angel Pons8d6f5872020-06-07 00:25:42 +0200433
434
Lean Sheng Tana29452a2022-06-03 10:06:04 +0200435PRODRIVE ATLAS MAINBOARD
436M: Angel Pons <th3fanbus@gmail.com>
437M: Christian Walter <christian.walter@9elements.com>
438M: Lean Sheng Tan <sheng.tan@9elements.com>
439S: Maintained
440F: src/mainboard/prodrive/atlas/
441
Christian Walter02b39372020-06-17 20:17:59 +0200442PRODRIVE HERMES MAINBOARD
443M: Christian Walter <christian.walter@9elements.com>
444M: Patrick Rudolph <patrick.rudolph@9elements.com>
445S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100446F: src/mainboard/prodrive/hermes/
Christian Walter02b39372020-06-17 20:17:59 +0200447
448
449
Angel Pons8d6f5872020-06-07 00:25:42 +0200450PURISM MAINBOARDS
Jonathon Hall5ec1c142022-08-02 16:45:00 -0400451M: Jonathon Hall <jonathon.hall@puri.sm>
Julius Werner848f5db2017-09-11 13:12:48 -0700452S: Supported
Felix Singer3c02ed92020-11-30 06:56:08 +0100453F: src/mainboard/purism/
Angel Pons8d6f5872020-06-07 00:25:42 +0200454
455
456
457SAMSUNG CHROMEOS MAINBOARDS
458M: Matt DeVillier <MrChromebox@gmail.com>
459S: Maintained
460F: src/mainboard/samsung/lumpy/
461F: src/mainboard/samsung/stumpy/
462
463
464
Felix Singer32608cf2020-11-22 00:38:16 +0000465SIEMENS CHILI MAINBAORD
466M: Felix Singer <felixsinger@posteo.net>
467M: Nico Huber <nico.h@gmx.de>
468S: Supported
469F: src/mainboard/siemens/chili/
470
Angel Pons8d6f5872020-06-07 00:25:42 +0200471SIEMENS MC_xxxx MAINBOARDS
472M: Werner Zeh <werner.zeh@siemens.com>
473S: Maintained
474F: src/mainboard/siemens/mc_apl1/
Werner Zeh9f15a6c2022-04-22 10:23:44 +0200475F: src/mainboard/siemens/mc_ehl/
Angel Pons8d6f5872020-06-07 00:25:42 +0200476
477
478
Sean Rhodes17441a32021-07-05 16:03:15 +0100479STAR LABS MAINBOARDS
480M: Sean Rhodes <sean@starlabs.systems>
481S: Maintained
482F: src/mainboard/starlabs/
483
484
485
Jeremy Soller625af2b2020-07-21 08:23:39 -0600486SYSTEM76 MAINBOARDS
487M: Jeremy Soller <jeremy@system76.com>
Tim Crawford5310d522021-04-21 15:30:29 -0600488M: Tim Crawford <tcrawford@system76.com>
Jeremy Soller625af2b2020-07-21 08:23:39 -0600489S: Maintained
490F: src/mainboard/system76/
491
492
493
Angel Pons8d6f5872020-06-07 00:25:42 +0200494SUPERMICRO X10SLM+-F MAINBOARD
495M: Tristan Corrick <tristan@corrick.kiwi>
496S: Maintained
497F: src/mainboard/supermicro/x10slm-f/
498
499SUPERMICRO X11-LGA1151-SERIES
500M: Michael Niewöhner <foss@mniewoehner.de>
501S: Maintained
Michael Niewöhner5fd29312020-11-13 01:13:46 +0100502F: src/mainboard/supermicro/x11-lga1151-series/
Angel Pons8d6f5872020-06-07 00:25:42 +0200503
504################################################################################
505# Architectures
506################################################################################
Julius Werner848f5db2017-09-11 13:12:48 -0700507
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700508ARM ARCHITECTURE
Julius Wernerc34e41f2017-06-09 14:26:03 -0700509M: Julius Werner <jwerner@chromium.org>
510S: Supported
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700511F: src/arch/arm/
Julius Wernerc34e41f2017-06-09 14:26:03 -0700512F: src/arch/arm64/
Julius Wernerc34e41f2017-06-09 14:26:03 -0700513F: src/soc/nvidia/
514F: src/soc/rockchip/
515F: util/nvidia/
516F: util/rockchip/
517
Angel Pons8d6f5872020-06-07 00:25:42 +0200518PPC64 ARCHITECTURE
519M: Ronald Minnich <rminnich@gmail.com>
520M: Timothy Pearson <tpearson@raptorengineeringinc.com>
521S: Maintained
522F: src/arch/ppc64/
523F: src/cpu/qemu-power8/
524F: src/mainboard/emulation/qemu-power8/
525
526RISC-V ARCHITECTURE
527M: Ronald Minnich <rminnich@gmail.com>
528R: Philipp Hug <philipp@hug.cx>
529S: Maintained
530F: src/arch/riscv/
531F: src/soc/sifive/
532F: src/soc/ucb/
533F: src/mainboard/emulation/*-riscv/
534F: src/mainboard/sifive/
535F: util/riscv/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700536
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700537X86 ARCHITECTURE
538F: src/arch/x86/
539F: src/cpu/x86/
540F: src/drivers/pc80/
541F: src/include/pc80/
542F: src/include/cpu/x86/
543
Angel Pons8d6f5872020-06-07 00:25:42 +0200544################################################################################
545# Embedded Controllers
546################################################################################
547
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600548CHROME EC
Tarun Tuli660d1ee2022-10-03 19:37:31 +0000549M: Boris Mittelberg <bmbm@google.com>
550M: Caveh Jalali <caveh@chromium.org>
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600551S: Maintained
552F: src/ec/google/chromeec/
553
Angel Pons8d6f5872020-06-07 00:25:42 +0200554LENOVO EC
555M: Alexander Couzens <lynxis@fe80.eu>
556S: Maintained
557F: src/ec/lenovo/
558
Sean Rhodes17441a32021-07-05 16:03:15 +0100559STARLABS EC
560M: Sean Rhodes <sean@starlabs.systems>
561S: Maintained
562F: src/ec/starlabs/
563
Jeremy Soller625af2b2020-07-21 08:23:39 -0600564SYSTEM76 EC
565M: Jeremy Soller <jeremy@system76.com>
Tim Crawford5310d522021-04-21 15:30:29 -0600566M: Tim Crawford <tcrawford@system76.com>
Jeremy Soller625af2b2020-07-21 08:23:39 -0600567S: Maintained
568F: src/ec/system76/
569
Angel Pons8d6f5872020-06-07 00:25:42 +0200570################################################################################
571# Northbridges
572################################################################################
573
574INTEL HASWELL NORTHBRIDGE
575M: Angel Pons <th3fanbus@gmail.com>
576S: Maintained
577F: src/northbridge/intel/haswell/
578
579INTEL PINEVIEW CHIPSET
580M: Damien Zammit <damien@zamaudio.com>
581M: Angel Pons <th3fanbus@gmail.com>
582S: Odd Fixes
583F: src/northbridge/intel/pineview/
584
585INTEL SANDYBRIDGE NORTHBRIDGE
586M: Angel Pons <th3fanbus@gmail.com>
587S: Maintained
588F: src/northbridge/intel/sandybridge/
589
590INTEL X4X CHIPSET
591M: Damien Zammit <damien@zamaudio.com>
592M: Angel Pons <th3fanbus@gmail.com>
593S: Odd Fixes
594F: src/northbridge/intel/x4x/
595
596################################################################################
597# Platforms
598################################################################################
599
600AMD SUPPORT
Martin Roth7703b192022-08-10 12:14:10 -0600601L: amd_coreboot_org_changes@googlegroups.com
Angel Pons8d6f5872020-06-07 00:25:42 +0200602F: src/vendorcode/amd/
603F: src/cpu/amd/
604F: src/northbridge/amd/
605F: src/southbridge/amd/
606F: src/include/cpu/amd/
607
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700608INTEL SUPPORT
Martin Roth954338d2017-03-05 11:20:18 -0700609S: Maintained
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700610F: src/vendorcode/intel/
611F: src/cpu/intel/
612F: src/northbridge/intel/
613F: src/southbridge/intel/
614F: src/soc/intel/
615F: src/drivers/intel/
616F: src/include/cpu/intel/
617
Angel Pons8d6f5872020-06-07 00:25:42 +0200618INTEL FSP 1.1
619M: Lee Leahy <leroy.p.leahy@intel.com>
620M: Huang Jin <huang.jin@intel.com>
621M: York Yang <york.yang@intel.com>
622S: Supported
623F: src/drivers/intel/fsp1_1/
624
625INTEL FSP 2.0
626M: Andrey Petrov <andrey.petrov@gmail.com>
627S: Maintained
628F: src/drivers/intel/fsp2_0/
629
630################################################################################
631# Systems on a Chip
632################################################################################
633
Felix Heldfef413e2020-12-02 15:57:24 +0100634AMD Cezanne
Felix Heldfef413e2020-12-02 15:57:24 +0100635M: Felix Held <felix-coreboot@felixheld.de>
636M: Jason Glenesk <jason.glenesk@gmail.com>
Raul E Rangelc81509c2021-01-25 10:24:14 -0700637M: Raul E Rangel <rrangel@chromium.org>
Fred Reitberger636a6de2022-02-17 13:27:35 -0500638M: Fred Reitberger <reitbergerfred@gmail.com>
Matt DeVillier (AMD)0303d692022-07-20 17:08:41 -0500639M: Matt DeVillier <matt.devillier@amd.corp-partner.google.com>
Martin Roth7703b192022-08-10 12:14:10 -0600640L: amd_coreboot_org_changes@googlegroups.com
Felix Heldfef413e2020-12-02 15:57:24 +0100641S: Maintained
642F: src/soc/amd/cezanne/
Felix Heldfe84dbb2021-08-06 16:25:35 +0200643F: src/vendorcode/amd/fsp/cezanne/
Felix Heldfef413e2020-12-02 15:57:24 +0100644
645AMD common SoC code
Felix Heldfef413e2020-12-02 15:57:24 +0100646M: Felix Held <felix-coreboot@felixheld.de>
647M: Jason Glenesk <jason.glenesk@gmail.com>
Raul E Rangelc81509c2021-01-25 10:24:14 -0700648M: Raul E Rangel <rrangel@chromium.org>
Fred Reitberger636a6de2022-02-17 13:27:35 -0500649M: Fred Reitberger <reitbergerfred@gmail.com>
Matt DeVillier (AMD)0303d692022-07-20 17:08:41 -0500650M: Matt DeVillier <matt.devillier@amd.corp-partner.google.com>
Martin Roth7703b192022-08-10 12:14:10 -0600651L: amd_coreboot_org_changes@googlegroups.com
Felix Heldfef413e2020-12-02 15:57:24 +0100652S: Maintained
653F: src/soc/amd/common/
654
Felix Held93231b42020-11-13 15:56:28 +0100655AMD Picasso
Felix Held93231b42020-11-13 15:56:28 +0100656M: Felix Held <felix-coreboot@felixheld.de>
657M: Jason Glenesk <jason.glenesk@gmail.com>
Fred Reitberger636a6de2022-02-17 13:27:35 -0500658M: Fred Reitberger <reitbergerfred@gmail.com>
Matt DeVillier (AMD)0303d692022-07-20 17:08:41 -0500659M: Matt DeVillier <matt.devillier@amd.corp-partner.google.com>
Martin Roth7703b192022-08-10 12:14:10 -0600660L: amd_coreboot_org_changes@googlegroups.com
Felix Held93231b42020-11-13 15:56:28 +0100661S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100662F: src/soc/amd/picasso/
663F: src/vendorcode/amd/fsp/picasso/
Felix Held93231b42020-11-13 15:56:28 +0100664
Jon Murphy4f732422022-08-05 15:43:44 -0600665AMD Mendocino
Felix Held2e88d062022-01-25 04:39:39 +0100666M: Felix Held <felix-coreboot@felixheld.de>
667M: Jason Glenesk <jason.glenesk@gmail.com>
668M: Raul E Rangel <rrangel@chromium.org>
Fred Reitberger636a6de2022-02-17 13:27:35 -0500669M: Fred Reitberger <reitbergerfred@gmail.com>
Matt DeVillier (AMD)0303d692022-07-20 17:08:41 -0500670M: Matt DeVillier <matt.devillier@amd.corp-partner.google.com>
Martin Roth7703b192022-08-10 12:14:10 -0600671L: amd_coreboot_org_changes@googlegroups.com
672S: Supported
Jon Murphy4f732422022-08-05 15:43:44 -0600673F: src/soc/amd/mendocino/
674F: src/vendorcode/amd/fsp/mendocino/
Felix Held2e88d062022-01-25 04:39:39 +0100675
Fred Reitbergerbc4b85f2022-10-14 08:51:12 -0400676AMD Morgana
677M: Felix Held <felix-coreboot@felixheld.de>
678M: Jason Glenesk <jason.glenesk@gmail.com>
679M: Fred Reitberger <reitbergerfred@gmail.com>
680M: Matt DeVillier <matt.devillier@amd.corp-partner.google.com>
681L: amd_coreboot_org_changes@googlegroups.com
682S: Supported
683F: src/soc/amd/morgana/
684F: src/vendorcode/amd/fsp/morgana/
685
Felix Held4080e082021-08-06 16:30:02 +0200686AMD Stoneyridge
Felix Held4080e082021-08-06 16:30:02 +0200687M: Felix Held <felix-coreboot@felixheld.de>
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
Felix Held4080e082021-08-06 16:30:02 +0200690S: Odd Fixes
691F: src/soc/amd/stoneyridge/
692
Kapil Porwal423bc1a2022-08-08 13:05:23 +0000693INTEL METEORLAKE SOC
694M: Subrata Banik <subratabanik@google.com>
695M: Tarun Tuli <taruntuli@google.com>
696M: Kapil Porwal <kapilporwal@google.com>
697S: Maintained
698F: src/soc/intel/meteorlake/
699
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600700INTEL ALDERLAKE SOC
Tarun Tuli660d1ee2022-10-03 19:37:31 +0000701M: Subrata Banik <subratabanik@google.com>
702M: Tarun Tuli <taruntuli@google.com>
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600703S: Maintained
704F: src/soc/intel/alderlake/
705
Angel Pons8d6f5872020-06-07 00:25:42 +0200706INTEL APOLLOLAKE_SOC
Sean Rhodes88058a22022-10-20 10:48:34 +0100707M: Sean Rhodes <sean@starlabs.systems>
708S: Odd Fixes
Angel Pons8d6f5872020-06-07 00:25:42 +0200709F: src/soc/intel/apollolake/
710
711INTEL BRASWELL SOC
712M: Piotr Król <piotr.krol@3mdeb.com>
713M: Michał Żygowski <michal.zygowski@3mdeb.com>
714M: Frans Hendriks <fhendriks@eltan.com>
715S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100716F: /src/soc/intel/braswell/
717F: /src/vendorcode/intel/fsp/fsp1_1/braswell/
Angel Pons8d6f5872020-06-07 00:25:42 +0200718
Mariusz Szafranski37afe1c2022-01-19 15:25:29 +0000719INTEL DENVERTON-NS SOC
720M: Jeff Daly <jeffd@silicom-usa.com>
721M: Vanessa Eusebio <vanessa.f.eusebio@intel.com>
722M: Suresh Bellampalli <suresh.bellampalli@intel.com>
723M: Mariusz Szafranski <mariuszx.szafranski@intel.com>
724S: Maintained
725F: src/soc/intel/denverton_ns/
726
Lean Sheng Tan37a407f2022-06-03 10:12:28 +0200727INTEL ELKHARTLAKE SOC
728M: Lean Sheng Tan <sheng.tan@9elements.com>
729M: Werner Zeh <werner.zeh@siemens.com>
730S: Maintained
731F: src/soc/intel/elkhartlake/
732
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600733INTEL TIGERLAKE SOC
Tarun Tuli660d1ee2022-10-03 19:37:31 +0000734M: Subrata Banik <subratabanik@google.com>
735M: Tarun Tuli <taruntuli@google.com>
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
Martin Rotha2efadd12022-10-16 14:46:07 -0600971COREBOOT RELEASES
972M: Felix Singer <felixsinger@posteo.net>
973M: Jason Glenesk <jason.glenesk@gmail.com>
974M: Angel Pons <th3fanbus@gmail.com>
975M: Martin Roth <gaumless@gmail.com>
Martin Rothfed17f92022-10-22 16:46:51 -0600976M: Matt DeVillier <MrChromebox@gmail.com>
Martin Rotha2efadd12022-10-16 14:46:07 -0600977S: Maintained
978F: Documentation/releases/
979F: util/release/
980
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700981MISSING: TIMERS / DELAYS
982
983MISSING: TIMESTAMPS
984
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700985MISSING: FMAP
986
987MISSING: GPIO
988
989MISSING: SMP
990
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700991MISSING: DMP / QEMU-X86
992
993MISSING: ELOG
994
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700995MISSING: SPI
996
Angel Pons0b500992020-04-15 16:47:36 +0200997# *** Infrastructure Owners ***
Martin Roth19fdedb2017-06-25 15:44:16 -0600998# This is intended to let people know who they should contact for issues with various infrastructure pieces.
999# Hardware
1000# Owners: Stefan, Patrick
Sumeet Pawnikar1638a852017-09-12 22:17:55 +05301001# Backups:
Martin Roth19fdedb2017-06-25 15:44:16 -06001002
1003# Web Server
1004# Owners: Stefan, Patrick
1005# Backups:
1006
1007# Website
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +01001008# Owners: Martin
Martin Roth19fdedb2017-06-25 15:44:16 -06001009# Backups: Patrick, Stefan
1010
1011# Documentation Website
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +01001012# Owners: Patrick
Martin Roth19fdedb2017-06-25 15:44:16 -06001013# Backups:
1014
Patrick Georgi1d348942019-07-17 20:40:50 +02001015CODE OF CONDUCT
1016M: Stefan Reinauer <stefan.reinauer@coreboot.org>
Patrick Georgi1d348942019-07-17 20:40:50 +02001017M: Ronald Minnich <rminnich@coreboot.org>
1018M: Martin Roth <martin@coreboot.org>
1019S: Maintained
1020F: Documentation/community/code_of_conduct.md
1021
Martin Roth19fdedb2017-06-25 15:44:16 -06001022# Wiki
1023# Owners: Stefan, Patrick
1024# Backups:
1025
1026# Gerrit
1027# Owners: Stefan, Patrick
1028# Backups: Martin
1029
1030# Jenkins
1031# Owners: Patrick, Martin
1032# Backups:
1033
1034# Bug Tracker
1035# Owners: Lynxis,
1036# Backups: Martin,
1037
1038# Mailing List
1039# Owners: Stefan, Patrick
1040# Backups: Martin,
1041
1042# Software Freedom Conservancy
1043# Main contact: Martin
1044# “Official” contact: Stefan