blob: b7838fef5c343f5b49d3f9097f889b5ea14c90ff [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
141M: Marshall Dawson <marshalldawson3rd@gmail.com>
142M: Felix Held <felix-coreboot@felixheld.de>
143M: Jason Glenesk <jason.glenesk@gmail.com>
Fred Reitberger636a6de2022-02-17 13:27:35 -0500144M: Fred Reitberger <reitbergerfred@gmail.com>
Felix Held9a1583b2020-12-06 20:15:31 +0100145S: Maintained
Felix Heldd575c8d2022-01-25 04:41:06 +0100146F: src/mainboard/amd/chausie/
Felix Held9a1583b2020-12-06 20:15:31 +0100147F: src/mainboard/amd/majolica/
148F: src/mainboard/amd/mandolin/
149
Evgeny Zinoviev09bf63e2019-05-31 16:03:27 +0300150APPLE MAINBOARDS
151M: Evgeny Zinoviev <me@ch1p.io>
152S: Maintained
153F: src/mainboard/apple/
154
Patrick Georgi8fb453e2018-11-21 22:12:45 +0100155
Angel Pons8d6f5872020-06-07 00:25:42 +0200156
157ASROCK B85M PRO4 MAINBOARD
Angel Pons8a508272020-06-06 22:45:16 +0200158M: Angel Pons <th3fanbus@gmail.com>
159S: Maintained
Angel Pons8d6f5872020-06-07 00:25:42 +0200160F: src/mainboard/asrock/b85m_pro4/
Andrey Petrov842dfe82016-05-24 22:01:56 -0700161
Angel Pons33849042018-12-01 23:28:03 +0100162ASROCK G41C-GS MAINBOARD & VARIANTS
163M: Angel Pons <th3fanbus@gmail.com>
164S: Maintained
165F: src/mainboard/asrock/g41c-gs/
166
Tristan Corrickd88cf5f2018-12-06 19:26:47 +1300167ASROCK H81M-HDS MAINBOARD
168M: Tristan Corrick <tristan@corrick.kiwi>
169S: Maintained
170F: src/mainboard/asrock/h81m-hds/
171
Angel Pons8d6f5872020-06-07 00:25:42 +0200172
Angel Ponsf2aaddc2020-06-06 22:38:38 +0200173
Mike Banon2a830852021-10-27 20:11:45 +0300174ASUS A88XM-E MAINBOARD
175M: Mike Banon <mikebdp2@gmail.com>
176S: Maintained
177F: src/mainboard/asus/a88xm-e/
178
Mike Banonc732d682019-12-31 14:29:39 +0300179ASUS AM1I-A MAINBOARD
180M: Mike Banon <mikebdp2@gmail.com>
181S: Maintained
182F: src/mainboard/asus/am1i-a/
183
Angel Ponse94cda52021-05-17 12:31:29 +0200184ASUS H61 SERIES MAINBOARDS
185M: Angel Pons <th3fanbus@gmail.com>
Angel Ponsed1e25d2021-05-17 13:22:57 +0200186M: Tristan Corrick <tristan@corrick.kiwi>
Angel Ponse94cda52021-05-17 12:31:29 +0200187S: Maintained
188F: src/mainboard/asus/h61-series/
189
Tristan Corrickd88cf5f2018-12-06 19:26:47 +1300190ASUS MAXIMUS IV GENE-Z MAINBOARD
191M: Tristan Corrick <tristan@corrick.kiwi>
192S: Maintained
193F: src/mainboard/asus/maximus_iv_gene-z/
194
Angel Pons33849042018-12-01 23:28:03 +0100195ASUS P5QC PRO MAINBOARD & VARIANTS
196M: Angel Pons <th3fanbus@gmail.com>
Stefan Ott98d63852021-04-22 01:28:56 +0200197R: Stefan Ott <coreboot@desire.ch>
Angel Pons33849042018-12-01 23:28:03 +0100198S: Maintained
199F: src/mainboard/asus/p5qc/
200
Angel Ponsf2aaddc2020-06-06 22:38:38 +0200201ASUS P5QPL-AM MAINBOARD & VARIANTS
202M: Angel Pons <th3fanbus@gmail.com>
203S: Maintained
204F: src/mainboard/asus/p5qpl-am/
205
Angel Pons81c2e022021-05-17 17:45:54 +0200206ASUS P8Z77 SERIES MAINBOARDS
Angel Ponsf2aaddc2020-06-06 22:38:38 +0200207M: Angel Pons <th3fanbus@gmail.com>
Angel Pons6f925062021-05-17 17:57:19 +0200208M: Vlado Cibic <vladocb@protonmail.com>
Angel Ponsf2aaddc2020-06-06 22:38:38 +0200209S: Maintained
Angel Pons81c2e022021-05-17 17:45:54 +0200210F: src/mainboard/asus/p8z77-series/
Angel Ponsf2aaddc2020-06-06 22:38:38 +0200211
Michał Żygowskib9f9f6c2018-12-21 12:23:27 +0100212
Michael Niewöhner489a11e2019-10-17 14:57:52 +0200213
Felix Singer63975f02020-10-12 21:47:43 +0000214CLEVO MAINBOARDS
215M: Felix Singer <felixsinger@posteo.net>
Michael Niewöhnere4478632020-07-19 22:56:35 +0200216M: Michael Niewöhner <foss@mniewoehner.de>
Felix Singer63975f02020-10-12 21:47:43 +0000217S: Supported
Michael Niewöhner5fd29312020-11-13 01:13:46 +0100218F: src/mainboard/clevo/
Felix Singer63975f02020-10-12 21:47:43 +0000219
220
221
Frans Hendriks1583fcd2019-06-05 10:18:23 +0200222FACEBOOK FBG1701 MAINBOARD
223M: Frans Hendriks <fhendriks@eltan.com>
Frans Hendriks7e7ea2b2021-12-02 10:15:20 +0100224M: Erik van den Bogaert <ebogaert@eltan.com>
Frans Hendriks1583fcd2019-06-05 10:18:23 +0200225S: Maintained
226F: src/mainboard/facebook/fbg1701/
227
Wim Vervoorn4ba70a72019-12-05 13:48:11 +0100228FACEBOOK MONOLITH MAINBOARD
229M: Frans Hendriks <fhendriks@eltan.com>
Frans Hendriks7e7ea2b2021-12-02 10:15:20 +0100230M: Erik van den Bogaert <ebogaert@eltan.com>
Wim Vervoorn4ba70a72019-12-05 13:48:11 +0100231S: Maintained
232F: src/mainboard/facebook/monolith/
233
Angel Pons8d6f5872020-06-07 00:25:42 +0200234
235
Angel Pons8602e662021-04-21 23:29:03 +0200236GIGABYTE GA-D510UD MAINBOARD
237M: Angel Pons <th3fanbus@gmail.com>
238S: Maintained
239F: src/mainboard/gigabyte/ga-d510ud/
240
Angel Pons8d6f5872020-06-07 00:25:42 +0200241GIGABYTE GA-G41M-ES2L MAINBOARD
242M: Damien Zammit <damien@zamaudio.com>
243S: Odd Fixes
Felix Singer3c02ed92020-11-30 06:56:08 +0100244F: src/mainboard/gigabyte/ga-g41m-es2l/
Angel Pons8d6f5872020-06-07 00:25:42 +0200245
246GIGABYTE GA-H61M SERIES MAINBOARDS
247M: Angel Pons <th3fanbus@gmail.com>
248S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100249F: src/mainboard/gigabyte/ga-h61m-series/
Angel Pons8d6f5872020-06-07 00:25:42 +0200250
Kapil Porwal423bc1a2022-08-08 13:05:23 +0000251GOOGLE REX MAINBOARDS
252M: Subrata Banik <subratabanik@google.com>
253M: Tarun Tuli <taruntuli@google.com>
254M: Kapil Porwal <kapilporwal@google.com>
255S: Maintained
256F: src/mainboard/google/rex/
Angel Pons8d6f5872020-06-07 00:25:42 +0200257
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600258GOOGLE BRYA MAINBOARDS
259M: Tim Wawrzynczak <twawrzynczak@chromium.org>
260S: Maintained
261F: src/mainboard/google/brya/
262
263GOOGLE HATCH MAINBOARDS
264M: Tim Wawrzynczak <twawrzynczak@chromium.org>
265S: Maintained
266F: src/mainboard/google/hatch/
Angel Pons8d6f5872020-06-07 00:25:42 +0200267
268GOOGLE PANTHER MAINBOARD
269M: Stefan Reinauer <stefan.reinauer@coreboot.org>
270S: Supported
271F: src/mainboard/google/panther/
272
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600273GOOGLE VOLTEER MAINBOARDS
274M: Tim Wawrzynczak <twawrzynczak@chromium.org>
Nick Vaccaro5f124552021-04-28 14:28:39 -0700275M: Nick Vaccaro <nvaccaro@chromium.org>
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600276S: Maintained
277F: src/mainboard/google/volteer/
278
Angel Pons8d6f5872020-06-07 00:25:42 +0200279GOOGLE MAINBOARDS (Intel-based, legacy/inactive)
280M: Matt DeVillier <MrChromebox@gmail.com>
281S: Maintained
282F: src/mainboard/google/auron/
283F: src/mainboard/google/beltino/
284F: src/mainboard/google/butterfly/
285F: src/mainboard/google/cyan/
286F: src/mainboard/google/glados/
287F: src/mainboard/google/jecht/
288F: src/mainboard/google/link/
289F: src/mainboard/google/parrot/
290F: src/mainboard/google/slippy/
291F: src/mainboard/google/stout/
292
293
294
Angel Pons8602e662021-04-21 23:29:03 +0200295HP 280 G2 MAINBOARD
296M: Angel Pons <th3fanbus@gmail.com>
297S: Maintained
298F: src/mainboard/hp/280_g2/
299
300
301
Angel Pons8d6f5872020-06-07 00:25:42 +0200302INTEL D510MO MAINBOARD
303M: Damien Zammit <damien@zamaudio.com>
304S: Odd Fixes
Felix Singer3c02ed92020-11-30 06:56:08 +0100305F: src/mainboard/intel/d510mo/
Angel Pons8d6f5872020-06-07 00:25:42 +0200306
Mariusz Szafranski37afe1c2022-01-19 15:25:29 +0000307INTEL HARCUVAR_CRB MAINBOARD
308M: Jeff Daly <jeffd@silicom-usa.com>
309M: Vanessa Eusebio <vanessa.f.eusebio@intel.com>
310M: Suresh Bellampalli <suresh.bellampalli@intel.com>
311M: Mariusz Szafranski <mariuszx.szafranski@intel.com>
312S: Maintained
313F: src/mainboard/intel/harcuvar/
314
Angel Pons8d6f5872020-06-07 00:25:42 +0200315INTEL STRAGO MAINBOARD
316M: Hannah Williams <hannah.williams@intel.com>
317S: Supported
318F: /src/mainboard/intel/strago/
319
320
321
Felix Singer32608cf2020-11-22 00:38:16 +0000322KONTRON BSL6 MAINBOARD
323M: Felix Singer <felixsinger@posteo.net>
324M: Nico Huber <nico.h@gmx.de>
325S: Supported
326F: src/mainboard/kontron/bsl6/
327
Felix Singer5a41b0d2020-11-23 20:20:38 +0000328KONTRON MAL10 MAINBOARD
329M: Maxim Polyakov <max.senia.poliak@gmail.com>
330M: Nico Huber <nico.h@gmx.de>
331M: Felix Singer <felixsinger@posteo.net>
332S: Supported
333F: src/mainboard/kontron/mal10/
334
Felix Singer32608cf2020-11-22 00:38:16 +0000335
336
Angel Pons8d6f5872020-06-07 00:25:42 +0200337LENOVO MAINBOARDS
338M: Alexander Couzens <lynxis@fe80.eu>
Angel Pons8d6f5872020-06-07 00:25:42 +0200339S: Maintained
340F: src/mainboard/lenovo/
341
342LENOVO G505S MAINBOARD
343M: Mike Banon <mikebdp2@gmail.com>
344S: Maintained
345F: src/mainboard/lenovo/g505s/
346
Stefan Ott98d63852021-04-22 01:28:56 +0200347LENOVO X200 MAINBOARD
348R: Stefan Ott <coreboot@desire.ch>
349S: Maintained
350F: src/mainboard/lenovo/x200/
351
352LENOVO X201 MAINBOARD
353R: Stefan Ott <coreboot@desire.ch>
354S: Maintained
355F: src/mainboard/lenovo/x201/
Angel Pons8d6f5872020-06-07 00:25:42 +0200356
357
358LIBRETREND LT1000 MAINBOARD
359M: Piotr Król <piotr.krol@3mdeb.com>
360M: Michał Żygowski <michal.zygowski@3mdeb.com>
361S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100362F: src/mainboard/libretrend/lt1000/
Angel Pons8d6f5872020-06-07 00:25:42 +0200363
364
Angel Pons8602e662021-04-21 23:29:03 +0200365
366MSI H81M-P33 MAINBOARD
367M: Angel Pons <th3fanbus@gmail.com>
368S: Maintained
369F: src/mainboard/msi/h81m-p33/
370
Michał Żygowski4a12f542022-07-25 10:10:50 +0200371MSI MS-7D25 MAINBOARDS
372M: Michał Żygowski <michal.zygowski@3mdeb.com>
373M: Michał Kopeć <michal.kopec@3mdeb.com>
374S: Maintained
375F: src/mainboard/msi/ms7d25/
Angel Pons8602e662021-04-21 23:29:03 +0200376
Jonathan Zhangdd4f6432020-06-30 11:39:09 -0700377OCP DELTALAKE MAINBOARD
Jonathan Zhang4a4806f2021-09-16 09:06:47 -0700378M: Arthur Heymans <arthur@aheymans.xyz>
379M: Christian Walter <christian.walter@9elements.com>
Jonathan Zhangdd4f6432020-06-30 11:39:09 -0700380M: Johnny Lin <Johnny_Lin@wiwynn.com>
Jonathan Zhang4a4806f2021-09-16 09:06:47 -0700381M: Jonathan Zhang <jonzhang@fb.com>
382M: Tim Chu <Tim.Chu@quantatw.com>
Jonathan Zhangdd4f6432020-06-30 11:39:09 -0700383S: Supported
Felix Singer3c02ed92020-11-30 06:56:08 +0100384F: src/mainboard/ocp/deltalake/
Angel Pons8d6f5872020-06-07 00:25:42 +0200385
Jonathan Zhanged849ed2020-05-01 11:23:46 -0700386OCP TIOGAPASS MAINBOARD
387M: Jonathan Zhang <jonzhang@fb.com>
388M: Reddy Chagam <anjaneya.chagam@intel.com>
389M: Johnny Lin <Johnny_Lin@wiwynn.com>
390M: Morgan Jang <Morgan_Jang@wiwynn.com>
391M: Ryback Hung <<Ryback.Hung@quantatw.com>
392M: Bryant Ou <Bryant.Ou@quantatw.com>
393S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100394F: src/mainboard/ocp/tiogapass/
Jonathan Zhanged849ed2020-05-01 11:23:46 -0700395
Angel Pons8d6f5872020-06-07 00:25:42 +0200396
397
398OPENCELLULAR MAINBOARDS
399M: Christian Walter <christian.walter@9elements.com>
400M: Patrick Rudolph <patrick.rudolph@9elements.com>
401S: Supported
402F: src/mainboard/opencellular/elgon/
403
404
405
406PC ENGINES ALL MAINBOARDS
407M: Piotr Król <piotr.krol@3mdeb.com>
408M: Michał Żygowski <michal.zygowski@3mdeb.com>
409S: Supported
410F: src/mainboard/pcengines/
411
412
413
Frans Hendriksa78146c2019-07-19 10:30:20 +0200414PORTWELL PQ-M107 MAINBOARD
415M: Frans Hendriks <fhendriks@eltan.com>
Frans Hendriks7e7ea2b2021-12-02 10:15:20 +0100416M: Erik van den Bogaert <ebogaert@eltan.com>
Frans Hendriksa78146c2019-07-19 10:30:20 +0200417S: Maintained
418F: src/mainboard/portwell/m107/
419
Martin Roth2a3434752016-03-05 18:31:29 -0700420
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700421
Angel Pons8d6f5872020-06-07 00:25:42 +0200422PROTECTLI ALL MAINBOARDS
423M: Piotr Król <piotr.krol@3mdeb.com>
424M: Michał Żygowski <michal.zygowski@3mdeb.com>
425S: Maintained
426F: src/mainboard/protectli/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700427
Angel Pons8d6f5872020-06-07 00:25:42 +0200428
429
Lean Sheng Tana29452a2022-06-03 10:06:04 +0200430PRODRIVE ATLAS MAINBOARD
431M: Angel Pons <th3fanbus@gmail.com>
432M: Christian Walter <christian.walter@9elements.com>
433M: Lean Sheng Tan <sheng.tan@9elements.com>
434S: Maintained
435F: src/mainboard/prodrive/atlas/
436
Christian Walter02b39372020-06-17 20:17:59 +0200437PRODRIVE HERMES MAINBOARD
438M: Christian Walter <christian.walter@9elements.com>
439M: Patrick Rudolph <patrick.rudolph@9elements.com>
440S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100441F: src/mainboard/prodrive/hermes/
Christian Walter02b39372020-06-17 20:17:59 +0200442
443
444
Angel Pons8d6f5872020-06-07 00:25:42 +0200445PURISM MAINBOARDS
Jonathon Hall5ec1c142022-08-02 16:45:00 -0400446M: Jonathon Hall <jonathon.hall@puri.sm>
Julius Werner848f5db2017-09-11 13:12:48 -0700447S: Supported
Felix Singer3c02ed92020-11-30 06:56:08 +0100448F: src/mainboard/purism/
Angel Pons8d6f5872020-06-07 00:25:42 +0200449
450
451
452SAMSUNG CHROMEOS MAINBOARDS
453M: Matt DeVillier <MrChromebox@gmail.com>
454S: Maintained
455F: src/mainboard/samsung/lumpy/
456F: src/mainboard/samsung/stumpy/
457
458
459
Felix Singer32608cf2020-11-22 00:38:16 +0000460SIEMENS CHILI MAINBAORD
461M: Felix Singer <felixsinger@posteo.net>
462M: Nico Huber <nico.h@gmx.de>
463S: Supported
464F: src/mainboard/siemens/chili/
465
Angel Pons8d6f5872020-06-07 00:25:42 +0200466SIEMENS MC_xxxx MAINBOARDS
467M: Werner Zeh <werner.zeh@siemens.com>
468S: Maintained
469F: src/mainboard/siemens/mc_apl1/
Werner Zeh9f15a6c2022-04-22 10:23:44 +0200470F: src/mainboard/siemens/mc_ehl/
Angel Pons8d6f5872020-06-07 00:25:42 +0200471
472
473
Sean Rhodes17441a32021-07-05 16:03:15 +0100474STAR LABS MAINBOARDS
475M: Sean Rhodes <sean@starlabs.systems>
476S: Maintained
477F: src/mainboard/starlabs/
478
479
480
Jeremy Soller625af2b2020-07-21 08:23:39 -0600481SYSTEM76 MAINBOARDS
482M: Jeremy Soller <jeremy@system76.com>
Tim Crawford5310d522021-04-21 15:30:29 -0600483M: Tim Crawford <tcrawford@system76.com>
Jeremy Soller625af2b2020-07-21 08:23:39 -0600484S: Maintained
485F: src/mainboard/system76/
486
487
488
Angel Pons8d6f5872020-06-07 00:25:42 +0200489SUPERMICRO X10SLM+-F MAINBOARD
490M: Tristan Corrick <tristan@corrick.kiwi>
491S: Maintained
492F: src/mainboard/supermicro/x10slm-f/
493
494SUPERMICRO X11-LGA1151-SERIES
495M: Michael Niewöhner <foss@mniewoehner.de>
496S: Maintained
Michael Niewöhner5fd29312020-11-13 01:13:46 +0100497F: src/mainboard/supermicro/x11-lga1151-series/
Angel Pons8d6f5872020-06-07 00:25:42 +0200498
499################################################################################
500# Architectures
501################################################################################
Julius Werner848f5db2017-09-11 13:12:48 -0700502
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700503ARM ARCHITECTURE
Julius Wernerc34e41f2017-06-09 14:26:03 -0700504M: Julius Werner <jwerner@chromium.org>
505S: Supported
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700506F: src/arch/arm/
Julius Wernerc34e41f2017-06-09 14:26:03 -0700507F: src/arch/arm64/
Julius Wernerc34e41f2017-06-09 14:26:03 -0700508F: src/soc/nvidia/
509F: src/soc/rockchip/
510F: util/nvidia/
511F: util/rockchip/
512
Angel Pons8d6f5872020-06-07 00:25:42 +0200513PPC64 ARCHITECTURE
514M: Ronald Minnich <rminnich@gmail.com>
515M: Timothy Pearson <tpearson@raptorengineeringinc.com>
516S: Maintained
517F: src/arch/ppc64/
518F: src/cpu/qemu-power8/
519F: src/mainboard/emulation/qemu-power8/
520
521RISC-V ARCHITECTURE
522M: Ronald Minnich <rminnich@gmail.com>
523R: Philipp Hug <philipp@hug.cx>
524S: Maintained
525F: src/arch/riscv/
526F: src/soc/sifive/
527F: src/soc/ucb/
528F: src/mainboard/emulation/*-riscv/
529F: src/mainboard/sifive/
530F: util/riscv/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700531
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700532X86 ARCHITECTURE
533F: src/arch/x86/
534F: src/cpu/x86/
535F: src/drivers/pc80/
536F: src/include/pc80/
537F: src/include/cpu/x86/
538
Angel Pons8d6f5872020-06-07 00:25:42 +0200539################################################################################
540# Embedded Controllers
541################################################################################
542
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600543CHROME EC
544M: Tim Wawrzynczak <twawrzynczak@chromium.org>
545S: Maintained
546F: src/ec/google/chromeec/
547
Angel Pons8d6f5872020-06-07 00:25:42 +0200548LENOVO EC
549M: Alexander Couzens <lynxis@fe80.eu>
550S: Maintained
551F: src/ec/lenovo/
552
Sean Rhodes17441a32021-07-05 16:03:15 +0100553STARLABS EC
554M: Sean Rhodes <sean@starlabs.systems>
555S: Maintained
556F: src/ec/starlabs/
557
Jeremy Soller625af2b2020-07-21 08:23:39 -0600558SYSTEM76 EC
559M: Jeremy Soller <jeremy@system76.com>
Tim Crawford5310d522021-04-21 15:30:29 -0600560M: Tim Crawford <tcrawford@system76.com>
Jeremy Soller625af2b2020-07-21 08:23:39 -0600561S: Maintained
562F: src/ec/system76/
563
Angel Pons8d6f5872020-06-07 00:25:42 +0200564################################################################################
565# Northbridges
566################################################################################
567
568INTEL HASWELL NORTHBRIDGE
569M: Angel Pons <th3fanbus@gmail.com>
570S: Maintained
571F: src/northbridge/intel/haswell/
572
573INTEL PINEVIEW CHIPSET
574M: Damien Zammit <damien@zamaudio.com>
575M: Angel Pons <th3fanbus@gmail.com>
576S: Odd Fixes
577F: src/northbridge/intel/pineview/
578
579INTEL SANDYBRIDGE NORTHBRIDGE
580M: Angel Pons <th3fanbus@gmail.com>
581S: Maintained
582F: src/northbridge/intel/sandybridge/
583
584INTEL X4X CHIPSET
585M: Damien Zammit <damien@zamaudio.com>
586M: Angel Pons <th3fanbus@gmail.com>
587S: Odd Fixes
588F: src/northbridge/intel/x4x/
589
590################################################################################
591# Platforms
592################################################################################
593
594AMD SUPPORT
595F: src/vendorcode/amd/
596F: src/cpu/amd/
597F: src/northbridge/amd/
598F: src/southbridge/amd/
599F: src/include/cpu/amd/
600
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700601INTEL SUPPORT
Martin Roth954338d2017-03-05 11:20:18 -0700602S: Maintained
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700603F: src/vendorcode/intel/
604F: src/cpu/intel/
605F: src/northbridge/intel/
606F: src/southbridge/intel/
607F: src/soc/intel/
608F: src/drivers/intel/
609F: src/include/cpu/intel/
610
Angel Pons8d6f5872020-06-07 00:25:42 +0200611INTEL FSP 1.1
612M: Lee Leahy <leroy.p.leahy@intel.com>
613M: Huang Jin <huang.jin@intel.com>
614M: York Yang <york.yang@intel.com>
615S: Supported
616F: src/drivers/intel/fsp1_1/
617
618INTEL FSP 2.0
619M: Andrey Petrov <andrey.petrov@gmail.com>
620S: Maintained
621F: src/drivers/intel/fsp2_0/
622
623################################################################################
624# Systems on a Chip
625################################################################################
626
Felix Heldfef413e2020-12-02 15:57:24 +0100627AMD Cezanne
628M: Marshall Dawson <marshalldawson3rd@gmail.com>
629M: Felix Held <felix-coreboot@felixheld.de>
630M: Jason Glenesk <jason.glenesk@gmail.com>
Raul E Rangelc81509c2021-01-25 10:24:14 -0700631M: Raul E Rangel <rrangel@chromium.org>
Fred Reitberger636a6de2022-02-17 13:27:35 -0500632M: Fred Reitberger <reitbergerfred@gmail.com>
Matt DeVillier (AMD)0303d692022-07-20 17:08:41 -0500633M: Matt DeVillier <matt.devillier@amd.corp-partner.google.com>
Felix Heldfef413e2020-12-02 15:57:24 +0100634S: Maintained
635F: src/soc/amd/cezanne/
Felix Heldfe84dbb2021-08-06 16:25:35 +0200636F: src/vendorcode/amd/fsp/cezanne/
Felix Heldfef413e2020-12-02 15:57:24 +0100637
638AMD common SoC code
639M: Marshall Dawson <marshalldawson3rd@gmail.com>
640M: Felix Held <felix-coreboot@felixheld.de>
641M: Jason Glenesk <jason.glenesk@gmail.com>
Raul E Rangelc81509c2021-01-25 10:24:14 -0700642M: Raul E Rangel <rrangel@chromium.org>
Fred Reitberger636a6de2022-02-17 13:27:35 -0500643M: Fred Reitberger <reitbergerfred@gmail.com>
Matt DeVillier (AMD)0303d692022-07-20 17:08:41 -0500644M: Matt DeVillier <matt.devillier@amd.corp-partner.google.com>
Felix Heldfef413e2020-12-02 15:57:24 +0100645S: Maintained
646F: src/soc/amd/common/
647
Felix Held93231b42020-11-13 15:56:28 +0100648AMD Picasso
649M: Marshall Dawson <marshalldawson3rd@gmail.com>
650M: Felix Held <felix-coreboot@felixheld.de>
651M: Jason Glenesk <jason.glenesk@gmail.com>
Raul E Rangelc81509c2021-01-25 10:24:14 -0700652M: Raul E Rangel <rrangel@chromium.org>
Fred Reitberger636a6de2022-02-17 13:27:35 -0500653M: Fred Reitberger <reitbergerfred@gmail.com>
Matt DeVillier (AMD)0303d692022-07-20 17:08:41 -0500654M: Matt DeVillier <matt.devillier@amd.corp-partner.google.com>
Felix Held93231b42020-11-13 15:56:28 +0100655S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100656F: src/soc/amd/picasso/
657F: src/vendorcode/amd/fsp/picasso/
Felix Held93231b42020-11-13 15:56:28 +0100658
Jon Murphy4f732422022-08-05 15:43:44 -0600659AMD Mendocino
Felix Held2e88d062022-01-25 04:39:39 +0100660M: Marshall Dawson <marshalldawson3rd@gmail.com>
661M: Felix Held <felix-coreboot@felixheld.de>
662M: Jason Glenesk <jason.glenesk@gmail.com>
663M: Raul E Rangel <rrangel@chromium.org>
Fred Reitberger636a6de2022-02-17 13:27:35 -0500664M: Fred Reitberger <reitbergerfred@gmail.com>
Matt DeVillier (AMD)0303d692022-07-20 17:08:41 -0500665M: Matt DeVillier <matt.devillier@amd.corp-partner.google.com>
Felix Held2e88d062022-01-25 04:39:39 +0100666S: Maintained
Jon Murphy4f732422022-08-05 15:43:44 -0600667F: src/soc/amd/mendocino/
668F: src/vendorcode/amd/fsp/mendocino/
Felix Held2e88d062022-01-25 04:39:39 +0100669
Felix Held4080e082021-08-06 16:30:02 +0200670AMD Stoneyridge
671M: Marshall Dawson <marshalldawson3rd@gmail.com>
672M: Felix Held <felix-coreboot@felixheld.de>
Matt DeVillier (AMD)0303d692022-07-20 17:08:41 -0500673M: Matt DeVillier <matt.devillier@amd.corp-partner.google.com>
Felix Held4080e082021-08-06 16:30:02 +0200674S: Odd Fixes
675F: src/soc/amd/stoneyridge/
676
Kapil Porwal423bc1a2022-08-08 13:05:23 +0000677INTEL METEORLAKE SOC
678M: Subrata Banik <subratabanik@google.com>
679M: Tarun Tuli <taruntuli@google.com>
680M: Kapil Porwal <kapilporwal@google.com>
681S: Maintained
682F: src/soc/intel/meteorlake/
683
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600684INTEL ALDERLAKE SOC
685M: Tim Wawrzynczak <twawrzynczak@chromium.org>
686S: Maintained
687F: src/soc/intel/alderlake/
688
Angel Pons8d6f5872020-06-07 00:25:42 +0200689INTEL APOLLOLAKE_SOC
690M: Andrey Petrov <andrey.petrov@gmail.com>
691S: Maintained
692F: src/soc/intel/apollolake/
693
694INTEL BRASWELL SOC
695M: Piotr Król <piotr.krol@3mdeb.com>
696M: Michał Żygowski <michal.zygowski@3mdeb.com>
697M: Frans Hendriks <fhendriks@eltan.com>
698S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100699F: /src/soc/intel/braswell/
700F: /src/vendorcode/intel/fsp/fsp1_1/braswell/
Angel Pons8d6f5872020-06-07 00:25:42 +0200701
Mariusz Szafranski37afe1c2022-01-19 15:25:29 +0000702INTEL DENVERTON-NS SOC
703M: Jeff Daly <jeffd@silicom-usa.com>
704M: Vanessa Eusebio <vanessa.f.eusebio@intel.com>
705M: Suresh Bellampalli <suresh.bellampalli@intel.com>
706M: Mariusz Szafranski <mariuszx.szafranski@intel.com>
707S: Maintained
708F: src/soc/intel/denverton_ns/
709
Lean Sheng Tan37a407f2022-06-03 10:12:28 +0200710INTEL ELKHARTLAKE SOC
711M: Lean Sheng Tan <sheng.tan@9elements.com>
712M: Werner Zeh <werner.zeh@siemens.com>
713S: Maintained
714F: src/soc/intel/elkhartlake/
715
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600716INTEL TIGERLAKE SOC
717M: Tim Wawrzynczak <twawrzynczak@chromium.org>
718S: Maintained
719F: src/soc/intel/tigerlake/
720
Jonathan Zhange9b0b082020-06-30 13:28:52 -0700721INTEL Xeon Sacalable Processor Family
722M: Jonathan Zhang <jonzhang@fb.com>
723M: Reddy Chagam <anjaneya.chagam@intel.com>
724M: Johnny Lin <Johnny_Lin@wiwynn.com>
Jonathan Zhang4a4806f2021-09-16 09:06:47 -0700725M: Tim Chu <Tim.Chu@quantatw.com>
726M: Arthur Heymans <arthur@aheymans.xyz>
727M: Christian Walter <christian.walter@9elements.com>
Jonathan Zhange9b0b082020-06-30 13:28:52 -0700728S: Supported
Felix Singerd70d1d12020-11-30 06:56:08 +0100729F: src/soc/intel/xeon_sp/
Felix Singer3c02ed92020-11-30 06:56:08 +0100730F: src/vendorcode/intel/fsp/fsp2_0/skylake_sp/
731F: src/vendorcode/intel/fsp/fsp2_0/copperlake_sp/
Jonathan Zhange9b0b082020-06-30 13:28:52 -0700732
Julius Wernerb1263802020-08-24 14:24:21 -0700733MEDIATEK SOCS
734M: Hung-Te Lin <hungte@chromium.org>
735S: Supported
Felix Singer3c02ed92020-11-30 06:56:08 +0100736F: src/soc/mediatek/
Julius Wernerb1263802020-08-24 14:24:21 -0700737
Xi Chen022b1b92021-02-05 11:45:12 +0800738MEDIATEK MT8192
739M: Xi Chen <xixi.chen@mediatek.com>
740S: Maintained
741F: src/soc/mediatek/mt8192/
742F: src/vendorcode/mediatek/mt8192/
743
Angel Pons8d6f5872020-06-07 00:25:42 +0200744ORPHANED ARM SOCS
745S: Orphaned
746F: src/cpu/armltd/
Sam Lewisad7b2e22020-08-03 20:18:29 +1000747F: src/soc/ti/
Angel Pons8d6f5872020-06-07 00:25:42 +0200748F: src/soc/qualcomm/
749F: src/soc/samsung/
750F: util/exynos/
751F: util/ipqheader/
752
753################################################################################
754# Payloads
755################################################################################
756
757NVRAM
758F: util/nvramtool/
759F: payloads/nvramcui/
760
761LIBPAYLOAD
762F: payloads/libpayload/
763
764COREINFO PAYLOAD
765F: payloads/coreinfo/
766
767EXTERNAL PAYLOADS INTEGRATION
768M: Stefan Reinauer <stefan.reinauer@coreboot.org>
769M: Martin Roth <gaumless@gmail.com>
Felix Singer3c02ed92020-11-30 06:56:08 +0100770F: payloads/external/
Angel Pons8d6f5872020-06-07 00:25:42 +0200771
772LINUXBOOT PAYLOAD INTEGRATION
773M: Christian Walter <christian.walter@9elements.com>
774M: Marcello Sylvester Bauer <info@marcellobauer.com>
775S: Supported
Felix Singer3c02ed92020-11-30 06:56:08 +0100776F: payloads/external/LinuxBoot/
Angel Pons8d6f5872020-06-07 00:25:42 +0200777
778################################################################################
779# Utilities
780################################################################################
781
782ABUILD
Angel Pons8d6f5872020-06-07 00:25:42 +0200783M: Martin Roth <gaumless@gmail.com>
784S: Supported
785F: util/abuild/
786
787BOARD STATUS
788F: util/board_status/
789
790BUILD SYSTEM
Angel Pons8d6f5872020-06-07 00:25:42 +0200791M: Martin Roth <gaumless@gmail.com>
792S: Supported
793F: Makefile
794F: *.inc
795F: src/include/kconfig.h
796F: util/kconfig/
797F: util/sconfig/
798F: util/xcompile/
799F: util/genbuild_h/
800
801TOOLCHAIN
802F: util/crossgcc/
803
804DOCKER
805M: Martin Roth <gaumless@gmail.com>
806S: Supported
807F: util/docker/
808
809GIT
810F: .git*
811F: /util/gitconfig
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700812
Stefan Reinauer2e38cc52015-05-06 11:15:38 -0700813LINT SCRIPTS
Martin Roth057ce5f2016-03-17 12:03:00 -0600814M: Martin Roth <gaumless@gmail.com>
Stefan Reinauer2e38cc52015-05-06 11:15:38 -0700815S: Supported
816F: util/lint/
817
Angel Pons8d6f5872020-06-07 00:25:42 +0200818IFDTOOL
819M: Stefan Reinauer <stefan.reinauer@coreboot.org>
820F: util/ifdtool/
821
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700822INTELTOOL
823M: Stefan Reinauer <stefan.reinauer@coreboot.org>
824F: util/inteltool/
825
Philipp Deppenwiese4cd9a112016-03-23 00:02:40 +0100826INTELMETOOL
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100827M: Christian Walter <christian.walter@9elements.com>
Philipp Deppenwiese4cd9a112016-03-23 00:02:40 +0100828F: util/intelmetool/
829
Maxim Polyakov8f6c8962021-08-07 13:07:44 +0300830INTELP2M
831M: Maxim Polyakov <max.senia.poliak@gmail.com>
832S: Maintained
833F: util/intelp2m/
834
Nicola Corna4f4fc182017-02-23 16:53:45 +0100835ME_CLEANER
836M: Nicola Corna <nicola@corna.info>
837W: https://github.com/corna/me_cleaner
838S: Maintained
839F: util/me_cleaner/
840
Felix Singerf9948a42021-02-01 13:46:50 +0100841LIVEISO
842M: Felix Singer <felixsinger@posteo.net>
843S: Supported
844F: util/liveiso/
845
Angel Pons8d6f5872020-06-07 00:25:42 +0200846################################################################################
847# Miscellaneous
848################################################################################
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700849
Angel Pons8d6f5872020-06-07 00:25:42 +0200850ASPEED AST2050 DRIVER & COMMON CODE
851M: Timothy Pearson <tpearson@raptorengineeringinc.com>
Patrick Georgi65ff63f2015-05-21 18:54:10 +0200852S: Supported
Angel Pons8d6f5872020-06-07 00:25:42 +0200853F: src/drivers/aspeed/common/
854F: src/drivers/aspeed/ast2050/
Patrick Georgi65ff63f2015-05-21 18:54:10 +0200855
Angel Pons8d6f5872020-06-07 00:25:42 +0200856ACPI
Lijian Zhao5bd9b7f2020-12-29 09:12:36 +0800857M: Lance Zhao <lance.zhao@gmail.com>
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600858M: Tim Wawrzynczak <twawrzynczak@chromium.org>
Lijian Zhao5bd9b7f2020-12-29 09:12:36 +0800859S: Supported
Angel Pons8d6f5872020-06-07 00:25:42 +0200860F: src/acpi/
861F: src/arch/x86/acpi/
862F: util/acpi/
863
864LZ4 COMPRESSION
865M: Julius Werner <jwerner@chromium.org>
866S: Supported
867F: src/commonlib/lz4*
868F: payloads/libpayload/liblz4/
869F: util/cbfstool/lz4/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700870
871BINARY OBJECTS
872F: 3rdparty/blobs/
873
874VERIFIED BOOT
Julius Werner763db462021-07-30 16:30:14 -0700875M: Julius Werner <jwerner@chromium.org>
876M: Yu-Ping Wu <yupingso@google.com>
877S: Supported
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700878F: 3rdparty/vboot/
Julius Werner763db462021-07-30 16:30:14 -0700879F: src/security/vboot/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700880F: src/include/tpm.h
881F: src/include/tpm_lite/
882
883RESOURCE ALLOCATOR
884F: src/device/*
885F: src/include/device/
886F: src/include/cpu/cpu.h
887
888OPTION ROM EXECUTION & X86EMU
889F: src/device/oprom/
890
891CBFS
Julius Werner0655f782019-12-11 16:19:48 -0800892M: Julius Werner <jwerner@chromium.org>
893F: src/include/cbfs*
894F: src/commonlib/bsd/include/commonlib/bsd/cbfs*
895F: src/commonlib/bsd/cbfs*
896F: src/lib/cbfs.c
897
898CBFSTOOL
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700899F: util/cbfstool/
900
901CBMEM
902F: src/include/cbmem.h
903F: src/include/cbmem_id.h
904F: util/cbmem/
905
906CONSOLE
907F: src/console/
908F: src/include/console/
909F: src/drivers/uart/
910
Philipp Deppenwiese6507e6f2016-06-22 19:01:47 +0200911TPM SUPPORT
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100912M: Christian Walter <christian.walter@9elements.com>
Philipp Deppenwiese8f6af1c2018-11-23 19:13:54 +0100913S: Supported
Philipp Deppenwiese6507e6f2016-06-22 19:01:47 +0200914F: src/drivers/*/tpm/
Felix Singer3c02ed92020-11-30 06:56:08 +0100915F: src/security/tpm/
Philipp Deppenwiese6507e6f2016-06-22 19:01:47 +0200916
Martin Rothe801fcb2017-05-27 10:54:02 -0600917SUPERIOS & SUPERIOTOOL
918M: Felix Held <felix-coreboot@felixheld.de>
Felix Held6e296b32022-04-06 21:49:24 +0200919S: Odd Fixes
Martin Rothe801fcb2017-05-27 10:54:02 -0600920F: src/superio/
921F: util/superiotool/
922
Patrick Georgidcc0cc22021-09-23 11:49:41 +0200923SPD UTILITIES
924M: Reka Norman <rekanorman@chromium.org>
925S: Maintained
926F: util/spd_tools/
927F: util/spdtool/
928
Julius Wernerc34e41f2017-06-09 14:26:03 -0700929MEMLAYOUT
930M: Julius Werner <jwerner@chromium.org>
931S: Supported
932F: */memlayout.h
933F: *.ld
934
Frans Hendriksf20bf922019-06-13 14:14:56 +0200935ELTAN VENDORCODE
936M: Frans Hendriks <fhendriks@eltan.com>
Frans Hendriks7e7ea2b2021-12-02 10:15:20 +0100937M: Erik van den Bogaert <ebogaert@eltan.com>
Frans Hendriksf20bf922019-06-13 14:14:56 +0200938S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100939F: src/vendorcode/eltan/
Frans Hendriksf20bf922019-06-13 14:14:56 +0200940
Tim Crawford56dd9f0382021-04-21 15:40:23 -0600941TAS5825M DRIVER
942M: Jeremy Soller <jeremy@system76.com>
943M: Tim Crawford <tcrawford@system76.com>
944S: Maintained
945F: src/drivers/i2c/tas5825m/
946
Patrick Georgi517097f2021-03-02 18:08:14 +0100947TESTS
948M: Jakub Czapiga <jacz@semihalf.com>
949S: Maintained
950F: tests/
Jakub Czapiga6df286e2021-12-15 15:46:35 +0000951F: payloads/libpayload/tests/
Patrick Georgi517097f2021-03-02 18:08:14 +0100952
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700953MISSING: TIMERS / DELAYS
954
955MISSING: TIMESTAMPS
956
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700957MISSING: FMAP
958
959MISSING: GPIO
960
961MISSING: SMP
962
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700963MISSING: DMP / QEMU-X86
964
965MISSING: ELOG
966
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700967MISSING: SPI
968
Angel Pons0b500992020-04-15 16:47:36 +0200969# *** Infrastructure Owners ***
Martin Roth19fdedb2017-06-25 15:44:16 -0600970# This is intended to let people know who they should contact for issues with various infrastructure pieces.
971# Hardware
972# Owners: Stefan, Patrick
Sumeet Pawnikar1638a852017-09-12 22:17:55 +0530973# Backups:
Martin Roth19fdedb2017-06-25 15:44:16 -0600974
975# Web Server
976# Owners: Stefan, Patrick
977# Backups:
978
979# Website
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100980# Owners: Martin
Martin Roth19fdedb2017-06-25 15:44:16 -0600981# Backups: Patrick, Stefan
982
983# Documentation Website
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100984# Owners: Patrick
Martin Roth19fdedb2017-06-25 15:44:16 -0600985# Backups:
986
Patrick Georgi1d348942019-07-17 20:40:50 +0200987CODE OF CONDUCT
988M: Stefan Reinauer <stefan.reinauer@coreboot.org>
Patrick Georgi1d348942019-07-17 20:40:50 +0200989M: Ronald Minnich <rminnich@coreboot.org>
990M: Martin Roth <martin@coreboot.org>
991S: Maintained
992F: Documentation/community/code_of_conduct.md
993
Martin Roth19fdedb2017-06-25 15:44:16 -0600994# Wiki
995# Owners: Stefan, Patrick
996# Backups:
997
998# Gerrit
999# Owners: Stefan, Patrick
1000# Backups: Martin
1001
1002# Jenkins
1003# Owners: Patrick, Martin
1004# Backups:
1005
1006# Bug Tracker
1007# Owners: Lynxis,
1008# Backups: Martin,
1009
1010# Mailing List
1011# Owners: Stefan, Patrick
1012# Backups: Martin,
1013
1014# Software Freedom Conservancy
1015# Main contact: Martin
1016# “Official” contact: Stefan