blob: 74f185448905ad2fd7bf80541294e454233e4137 [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>
144S: Maintained
145F: src/mainboard/amd/majolica/
146F: src/mainboard/amd/mandolin/
147
Evgeny Zinoviev09bf63e2019-05-31 16:03:27 +0300148APPLE MAINBOARDS
149M: Evgeny Zinoviev <me@ch1p.io>
150S: Maintained
151F: src/mainboard/apple/
152
Patrick Georgi8fb453e2018-11-21 22:12:45 +0100153
Angel Pons8d6f5872020-06-07 00:25:42 +0200154
155ASROCK B85M PRO4 MAINBOARD
Angel Pons8a508272020-06-06 22:45:16 +0200156M: Angel Pons <th3fanbus@gmail.com>
157S: Maintained
Angel Pons8d6f5872020-06-07 00:25:42 +0200158F: src/mainboard/asrock/b85m_pro4/
Andrey Petrov842dfe82016-05-24 22:01:56 -0700159
Angel Pons33849042018-12-01 23:28:03 +0100160ASROCK G41C-GS MAINBOARD & VARIANTS
161M: Angel Pons <th3fanbus@gmail.com>
162S: Maintained
163F: src/mainboard/asrock/g41c-gs/
164
Tristan Corrickd88cf5f2018-12-06 19:26:47 +1300165ASROCK H81M-HDS MAINBOARD
166M: Tristan Corrick <tristan@corrick.kiwi>
167S: Maintained
168F: src/mainboard/asrock/h81m-hds/
169
Angel Pons8d6f5872020-06-07 00:25:42 +0200170
Angel Ponsf2aaddc2020-06-06 22:38:38 +0200171
Mike Banonc732d682019-12-31 14:29:39 +0300172ASUS AM1I-A MAINBOARD
173M: Mike Banon <mikebdp2@gmail.com>
174S: Maintained
175F: src/mainboard/asus/am1i-a/
176
Angel Ponse94cda52021-05-17 12:31:29 +0200177ASUS H61 SERIES MAINBOARDS
178M: Angel Pons <th3fanbus@gmail.com>
Angel Ponsed1e25d2021-05-17 13:22:57 +0200179M: Tristan Corrick <tristan@corrick.kiwi>
Angel Ponse94cda52021-05-17 12:31:29 +0200180S: Maintained
181F: src/mainboard/asus/h61-series/
182
Tristan Corrickd88cf5f2018-12-06 19:26:47 +1300183ASUS MAXIMUS IV GENE-Z MAINBOARD
184M: Tristan Corrick <tristan@corrick.kiwi>
185S: Maintained
186F: src/mainboard/asus/maximus_iv_gene-z/
187
Angel Pons33849042018-12-01 23:28:03 +0100188ASUS P5QC PRO MAINBOARD & VARIANTS
189M: Angel Pons <th3fanbus@gmail.com>
Stefan Ott98d63852021-04-22 01:28:56 +0200190R: Stefan Ott <coreboot@desire.ch>
Angel Pons33849042018-12-01 23:28:03 +0100191S: Maintained
192F: src/mainboard/asus/p5qc/
193
Angel Ponsf2aaddc2020-06-06 22:38:38 +0200194ASUS P5QPL-AM MAINBOARD & VARIANTS
195M: Angel Pons <th3fanbus@gmail.com>
196S: Maintained
197F: src/mainboard/asus/p5qpl-am/
198
Angel Pons81c2e022021-05-17 17:45:54 +0200199ASUS P8Z77 SERIES MAINBOARDS
Angel Ponsf2aaddc2020-06-06 22:38:38 +0200200M: Angel Pons <th3fanbus@gmail.com>
Angel Pons6f925062021-05-17 17:57:19 +0200201M: Vlado Cibic <vladocb@protonmail.com>
Angel Ponsf2aaddc2020-06-06 22:38:38 +0200202S: Maintained
Angel Pons81c2e022021-05-17 17:45:54 +0200203F: src/mainboard/asus/p8z77-series/
Angel Ponsf2aaddc2020-06-06 22:38:38 +0200204
Michał Żygowskib9f9f6c2018-12-21 12:23:27 +0100205
Michael Niewöhner489a11e2019-10-17 14:57:52 +0200206
Felix Singer63975f02020-10-12 21:47:43 +0000207CLEVO MAINBOARDS
208M: Felix Singer <felixsinger@posteo.net>
Michael Niewöhnere4478632020-07-19 22:56:35 +0200209M: Michael Niewöhner <foss@mniewoehner.de>
Felix Singer63975f02020-10-12 21:47:43 +0000210S: Supported
Michael Niewöhner5fd29312020-11-13 01:13:46 +0100211F: src/mainboard/clevo/
Felix Singer63975f02020-10-12 21:47:43 +0000212
213
214
Frans Hendriks1583fcd2019-06-05 10:18:23 +0200215FACEBOOK FBG1701 MAINBOARD
216M: Frans Hendriks <fhendriks@eltan.com>
217M: Wim Vervoorn <wvervoorn@eltan.com>
218S: Maintained
219F: src/mainboard/facebook/fbg1701/
220
Wim Vervoorn4ba70a72019-12-05 13:48:11 +0100221FACEBOOK MONOLITH MAINBOARD
222M: Frans Hendriks <fhendriks@eltan.com>
223M: Wim Vervoorn <wvervoorn@eltan.com>
224S: Maintained
225F: src/mainboard/facebook/monolith/
226
Angel Pons8d6f5872020-06-07 00:25:42 +0200227
228
229GETAC P470 MAINBOARD
230M: Patrick Georgi <patrick@georgi.software>
231S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100232F: src/mainboard/getac/p470/
Angel Pons8d6f5872020-06-07 00:25:42 +0200233
234
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
251
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600252GOOGLE BRYA MAINBOARDS
253M: Tim Wawrzynczak <twawrzynczak@chromium.org>
254S: Maintained
255F: src/mainboard/google/brya/
256
257GOOGLE HATCH MAINBOARDS
258M: Tim Wawrzynczak <twawrzynczak@chromium.org>
259S: Maintained
260F: src/mainboard/google/hatch/
Angel Pons8d6f5872020-06-07 00:25:42 +0200261
262GOOGLE PANTHER MAINBOARD
263M: Stefan Reinauer <stefan.reinauer@coreboot.org>
264S: Supported
265F: src/mainboard/google/panther/
266
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600267GOOGLE VOLTEER MAINBOARDS
268M: Tim Wawrzynczak <twawrzynczak@chromium.org>
269S: Maintained
270F: src/mainboard/google/volteer/
271
Angel Pons8d6f5872020-06-07 00:25:42 +0200272GOOGLE MAINBOARDS (Intel-based, legacy/inactive)
273M: Matt DeVillier <MrChromebox@gmail.com>
274S: Maintained
275F: src/mainboard/google/auron/
276F: src/mainboard/google/beltino/
277F: src/mainboard/google/butterfly/
278F: src/mainboard/google/cyan/
279F: src/mainboard/google/glados/
280F: src/mainboard/google/jecht/
281F: src/mainboard/google/link/
282F: src/mainboard/google/parrot/
283F: src/mainboard/google/slippy/
284F: src/mainboard/google/stout/
285
286
287
Angel Pons8602e662021-04-21 23:29:03 +0200288HP 280 G2 MAINBOARD
289M: Angel Pons <th3fanbus@gmail.com>
290S: Maintained
291F: src/mainboard/hp/280_g2/
292
293
294
Angel Pons8d6f5872020-06-07 00:25:42 +0200295INTEL D510MO MAINBOARD
296M: Damien Zammit <damien@zamaudio.com>
297S: Odd Fixes
Felix Singer3c02ed92020-11-30 06:56:08 +0100298F: src/mainboard/intel/d510mo/
Angel Pons8d6f5872020-06-07 00:25:42 +0200299
300INTEL STRAGO MAINBOARD
301M: Hannah Williams <hannah.williams@intel.com>
302S: Supported
303F: /src/mainboard/intel/strago/
304
305
306
Felix Singer32608cf2020-11-22 00:38:16 +0000307KONTRON BSL6 MAINBOARD
308M: Felix Singer <felixsinger@posteo.net>
309M: Nico Huber <nico.h@gmx.de>
310S: Supported
311F: src/mainboard/kontron/bsl6/
312
Felix Singer5a41b0d2020-11-23 20:20:38 +0000313KONTRON MAL10 MAINBOARD
314M: Maxim Polyakov <max.senia.poliak@gmail.com>
315M: Nico Huber <nico.h@gmx.de>
316M: Felix Singer <felixsinger@posteo.net>
317S: Supported
318F: src/mainboard/kontron/mal10/
319
Felix Singer32608cf2020-11-22 00:38:16 +0000320
321
Angel Pons8d6f5872020-06-07 00:25:42 +0200322LENOVO MAINBOARDS
323M: Alexander Couzens <lynxis@fe80.eu>
324M: Patrick Rudolph <siro@das-labor.org>
325S: Maintained
326F: src/mainboard/lenovo/
327
328LENOVO G505S MAINBOARD
329M: Mike Banon <mikebdp2@gmail.com>
330S: Maintained
331F: src/mainboard/lenovo/g505s/
332
Stefan Ott98d63852021-04-22 01:28:56 +0200333LENOVO X200 MAINBOARD
334R: Stefan Ott <coreboot@desire.ch>
335S: Maintained
336F: src/mainboard/lenovo/x200/
337
338LENOVO X201 MAINBOARD
339R: Stefan Ott <coreboot@desire.ch>
340S: Maintained
341F: src/mainboard/lenovo/x201/
Angel Pons8d6f5872020-06-07 00:25:42 +0200342
343
344LIBRETREND LT1000 MAINBOARD
345M: Piotr Król <piotr.krol@3mdeb.com>
346M: Michał Żygowski <michal.zygowski@3mdeb.com>
347S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100348F: src/mainboard/libretrend/lt1000/
Angel Pons8d6f5872020-06-07 00:25:42 +0200349
350
Angel Pons8602e662021-04-21 23:29:03 +0200351
352MSI H81M-P33 MAINBOARD
353M: Angel Pons <th3fanbus@gmail.com>
354S: Maintained
355F: src/mainboard/msi/h81m-p33/
356
357
358
Jonathan Zhangdd4f6432020-06-30 11:39:09 -0700359OCP DELTALAKE MAINBOARD
360M: Jonathan Zhang <jonzhang@fb.com>
361M: Reddy Chagam <anjaneya.chagam@intel.com>
362M: Johnny Lin <Johnny_Lin@wiwynn.com>
363M: Morgan Jang <Morgan_Jang@wiwynn.com>
364M: Ryback Hung <<Ryback.Hung@quantatw.com>
365M: Bryant Ou <Bryant.Ou@quantatw.com>
366S: Supported
Felix Singer3c02ed92020-11-30 06:56:08 +0100367F: src/mainboard/ocp/deltalake/
Angel Pons8d6f5872020-06-07 00:25:42 +0200368
Jonathan Zhanged849ed2020-05-01 11:23:46 -0700369OCP TIOGAPASS MAINBOARD
370M: Jonathan Zhang <jonzhang@fb.com>
371M: Reddy Chagam <anjaneya.chagam@intel.com>
372M: Johnny Lin <Johnny_Lin@wiwynn.com>
373M: Morgan Jang <Morgan_Jang@wiwynn.com>
374M: Ryback Hung <<Ryback.Hung@quantatw.com>
375M: Bryant Ou <Bryant.Ou@quantatw.com>
376S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100377F: src/mainboard/ocp/tiogapass/
Jonathan Zhanged849ed2020-05-01 11:23:46 -0700378
Angel Pons8d6f5872020-06-07 00:25:42 +0200379
380
381OPENCELLULAR MAINBOARDS
382M: Christian Walter <christian.walter@9elements.com>
383M: Patrick Rudolph <patrick.rudolph@9elements.com>
384S: Supported
385F: src/mainboard/opencellular/elgon/
386
387
388
389PC ENGINES ALL MAINBOARDS
390M: Piotr Król <piotr.krol@3mdeb.com>
391M: Michał Żygowski <michal.zygowski@3mdeb.com>
392S: Supported
393F: src/mainboard/pcengines/
394
395
396
Frans Hendriksa78146c2019-07-19 10:30:20 +0200397PORTWELL PQ-M107 MAINBOARD
398M: Frans Hendriks <fhendriks@eltan.com>
399M: Wim Vervoorn <wvervoorn@eltan.com>
400S: Maintained
401F: src/mainboard/portwell/m107/
402
Martin Roth2a3434752016-03-05 18:31:29 -0700403
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700404
Angel Pons8d6f5872020-06-07 00:25:42 +0200405PROTECTLI ALL MAINBOARDS
406M: Piotr Król <piotr.krol@3mdeb.com>
407M: Michał Żygowski <michal.zygowski@3mdeb.com>
408S: Maintained
409F: src/mainboard/protectli/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700410
Angel Pons8d6f5872020-06-07 00:25:42 +0200411
412
Christian Walter02b39372020-06-17 20:17:59 +0200413PRODRIVE HERMES MAINBOARD
414M: Christian Walter <christian.walter@9elements.com>
415M: Patrick Rudolph <patrick.rudolph@9elements.com>
416S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100417F: src/mainboard/prodrive/hermes/
Christian Walter02b39372020-06-17 20:17:59 +0200418
419
420
Angel Pons8d6f5872020-06-07 00:25:42 +0200421PURISM MAINBOARDS
422M: Matt DeVillier <matt.devillier@puri.sm>
Julius Werner848f5db2017-09-11 13:12:48 -0700423S: Supported
Felix Singer3c02ed92020-11-30 06:56:08 +0100424F: src/mainboard/purism/
Angel Pons8d6f5872020-06-07 00:25:42 +0200425
426
427
428SAMSUNG CHROMEOS MAINBOARDS
429M: Matt DeVillier <MrChromebox@gmail.com>
430S: Maintained
431F: src/mainboard/samsung/lumpy/
432F: src/mainboard/samsung/stumpy/
433
434
435
Felix Singer32608cf2020-11-22 00:38:16 +0000436SIEMENS CHILI MAINBAORD
437M: Felix Singer <felixsinger@posteo.net>
438M: Nico Huber <nico.h@gmx.de>
439S: Supported
440F: src/mainboard/siemens/chili/
441
Angel Pons8d6f5872020-06-07 00:25:42 +0200442SIEMENS MC_xxxx MAINBOARDS
443M: Werner Zeh <werner.zeh@siemens.com>
444S: Maintained
445F: src/mainboard/siemens/mc_apl1/
446
447
448
Jeremy Soller625af2b2020-07-21 08:23:39 -0600449SYSTEM76 MAINBOARDS
450M: Jeremy Soller <jeremy@system76.com>
451S: Maintained
452F: src/mainboard/system76/
453
454
455
Angel Pons8d6f5872020-06-07 00:25:42 +0200456SUPERMICRO X10SLM+-F MAINBOARD
457M: Tristan Corrick <tristan@corrick.kiwi>
458S: Maintained
459F: src/mainboard/supermicro/x10slm-f/
460
461SUPERMICRO X11-LGA1151-SERIES
462M: Michael Niewöhner <foss@mniewoehner.de>
463S: Maintained
Michael Niewöhner5fd29312020-11-13 01:13:46 +0100464F: src/mainboard/supermicro/x11-lga1151-series/
Angel Pons8d6f5872020-06-07 00:25:42 +0200465
466################################################################################
467# Architectures
468################################################################################
Julius Werner848f5db2017-09-11 13:12:48 -0700469
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700470ARM ARCHITECTURE
Julius Wernerc34e41f2017-06-09 14:26:03 -0700471M: Julius Werner <jwerner@chromium.org>
472S: Supported
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700473F: src/arch/arm/
Julius Wernerc34e41f2017-06-09 14:26:03 -0700474F: src/arch/arm64/
Julius Wernerc34e41f2017-06-09 14:26:03 -0700475F: src/soc/nvidia/
476F: src/soc/rockchip/
477F: util/nvidia/
478F: util/rockchip/
479
Angel Pons8d6f5872020-06-07 00:25:42 +0200480PPC64 ARCHITECTURE
481M: Ronald Minnich <rminnich@gmail.com>
482M: Timothy Pearson <tpearson@raptorengineeringinc.com>
483S: Maintained
484F: src/arch/ppc64/
485F: src/cpu/qemu-power8/
486F: src/mainboard/emulation/qemu-power8/
487
488RISC-V ARCHITECTURE
489M: Ronald Minnich <rminnich@gmail.com>
490R: Philipp Hug <philipp@hug.cx>
491S: Maintained
492F: src/arch/riscv/
493F: src/soc/sifive/
494F: src/soc/ucb/
495F: src/mainboard/emulation/*-riscv/
496F: src/mainboard/sifive/
497F: util/riscv/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700498
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700499X86 ARCHITECTURE
500F: src/arch/x86/
501F: src/cpu/x86/
502F: src/drivers/pc80/
503F: src/include/pc80/
504F: src/include/cpu/x86/
505
Angel Pons8d6f5872020-06-07 00:25:42 +0200506################################################################################
507# Embedded Controllers
508################################################################################
509
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600510CHROME EC
511M: Tim Wawrzynczak <twawrzynczak@chromium.org>
512S: Maintained
513F: src/ec/google/chromeec/
514
Angel Pons8d6f5872020-06-07 00:25:42 +0200515LENOVO EC
516M: Alexander Couzens <lynxis@fe80.eu>
517S: Maintained
518F: src/ec/lenovo/
519
Jeremy Soller625af2b2020-07-21 08:23:39 -0600520SYSTEM76 EC
521M: Jeremy Soller <jeremy@system76.com>
522S: Maintained
523F: src/ec/system76/
524
Angel Pons8d6f5872020-06-07 00:25:42 +0200525################################################################################
526# Northbridges
527################################################################################
528
529INTEL HASWELL NORTHBRIDGE
530M: Angel Pons <th3fanbus@gmail.com>
531S: Maintained
532F: src/northbridge/intel/haswell/
533
534INTEL PINEVIEW CHIPSET
535M: Damien Zammit <damien@zamaudio.com>
536M: Angel Pons <th3fanbus@gmail.com>
537S: Odd Fixes
538F: src/northbridge/intel/pineview/
539
540INTEL SANDYBRIDGE NORTHBRIDGE
541M: Angel Pons <th3fanbus@gmail.com>
542S: Maintained
543F: src/northbridge/intel/sandybridge/
544
545INTEL X4X CHIPSET
546M: Damien Zammit <damien@zamaudio.com>
547M: Angel Pons <th3fanbus@gmail.com>
548S: Odd Fixes
549F: src/northbridge/intel/x4x/
550
551################################################################################
552# Platforms
553################################################################################
554
555AMD SUPPORT
556F: src/vendorcode/amd/
557F: src/cpu/amd/
558F: src/northbridge/amd/
559F: src/southbridge/amd/
560F: src/include/cpu/amd/
561
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700562INTEL SUPPORT
Martin Roth954338d2017-03-05 11:20:18 -0700563M: Patrick Rudolph <siro@das-labor.org>
564S: Maintained
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700565F: src/vendorcode/intel/
566F: src/cpu/intel/
567F: src/northbridge/intel/
568F: src/southbridge/intel/
569F: src/soc/intel/
570F: src/drivers/intel/
571F: src/include/cpu/intel/
572
Angel Pons8d6f5872020-06-07 00:25:42 +0200573INTEL FSP DENVERTON-NS SOC & HARCUVAR CRB
Mariusz Szafranski778c4f8c2020-11-19 13:05:32 +0100574M: Suresh Bellampalli <suresh.bellampalli@intel.com>
Angel Pons8d6f5872020-06-07 00:25:42 +0200575M: Vanessa Eusebio <vanessa.f.eusebio@intel.com>
Mariusz Szafranski778c4f8c2020-11-19 13:05:32 +0100576M: Michal Motyl <michalx.motyl@intel.com>
577M: Mariusz Szafranski <mariuszx.szafranski@intel.com>
578S: Maintained
Angel Pons8d6f5872020-06-07 00:25:42 +0200579F: src/mainboard/intel/harcuvar/
580F: src/soc/intel/denverton_ns/
Angel Pons8d6f5872020-06-07 00:25:42 +0200581
582INTEL FSP 1.1
583M: Lee Leahy <leroy.p.leahy@intel.com>
584M: Huang Jin <huang.jin@intel.com>
585M: York Yang <york.yang@intel.com>
586S: Supported
587F: src/drivers/intel/fsp1_1/
588
589INTEL FSP 2.0
590M: Andrey Petrov <andrey.petrov@gmail.com>
591S: Maintained
592F: src/drivers/intel/fsp2_0/
593
594################################################################################
595# Systems on a Chip
596################################################################################
597
Felix Heldfef413e2020-12-02 15:57:24 +0100598AMD Cezanne
599M: Marshall Dawson <marshalldawson3rd@gmail.com>
600M: Felix Held <felix-coreboot@felixheld.de>
601M: Jason Glenesk <jason.glenesk@gmail.com>
Raul E Rangelc81509c2021-01-25 10:24:14 -0700602M: Raul E Rangel <rrangel@chromium.org>
Felix Heldfef413e2020-12-02 15:57:24 +0100603S: Maintained
604F: src/soc/amd/cezanne/
605
606AMD common SoC code
607M: Marshall Dawson <marshalldawson3rd@gmail.com>
608M: Felix Held <felix-coreboot@felixheld.de>
609M: Jason Glenesk <jason.glenesk@gmail.com>
Raul E Rangelc81509c2021-01-25 10:24:14 -0700610M: Raul E Rangel <rrangel@chromium.org>
Felix Heldfef413e2020-12-02 15:57:24 +0100611S: Maintained
612F: src/soc/amd/common/
613
Felix Held93231b42020-11-13 15:56:28 +0100614AMD Picasso
615M: Marshall Dawson <marshalldawson3rd@gmail.com>
616M: Felix Held <felix-coreboot@felixheld.de>
617M: Jason Glenesk <jason.glenesk@gmail.com>
Raul E Rangelc81509c2021-01-25 10:24:14 -0700618M: Raul E Rangel <rrangel@chromium.org>
Felix Held93231b42020-11-13 15:56:28 +0100619S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100620F: src/soc/amd/picasso/
621F: src/vendorcode/amd/fsp/picasso/
Felix Held93231b42020-11-13 15:56:28 +0100622
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600623INTEL ALDERLAKE SOC
624M: Tim Wawrzynczak <twawrzynczak@chromium.org>
625S: Maintained
626F: src/soc/intel/alderlake/
627
Angel Pons8d6f5872020-06-07 00:25:42 +0200628INTEL APOLLOLAKE_SOC
629M: Andrey Petrov <andrey.petrov@gmail.com>
630S: Maintained
631F: src/soc/intel/apollolake/
632
633INTEL BRASWELL SOC
634M: Piotr Król <piotr.krol@3mdeb.com>
635M: Michał Żygowski <michal.zygowski@3mdeb.com>
636M: Frans Hendriks <fhendriks@eltan.com>
637S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100638F: /src/soc/intel/braswell/
639F: /src/vendorcode/intel/fsp/fsp1_1/braswell/
Angel Pons8d6f5872020-06-07 00:25:42 +0200640
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600641INTEL TIGERLAKE SOC
642M: Tim Wawrzynczak <twawrzynczak@chromium.org>
643S: Maintained
644F: src/soc/intel/tigerlake/
645
Jonathan Zhange9b0b082020-06-30 13:28:52 -0700646INTEL Xeon Sacalable Processor Family
647M: Jonathan Zhang <jonzhang@fb.com>
648M: Reddy Chagam <anjaneya.chagam@intel.com>
649M: Johnny Lin <Johnny_Lin@wiwynn.com>
650M: Morgan Jang <Morgan_Jang@wiwynn.com>
651M: Ryback Hung <<Ryback.Hung@quantatw.com>
652M: Bryant Ou <Bryant.Ou@quantatw.com>
653S: Supported
Felix Singerd70d1d12020-11-30 06:56:08 +0100654F: src/soc/intel/xeon_sp/
Felix Singer3c02ed92020-11-30 06:56:08 +0100655F: src/vendorcode/intel/fsp/fsp2_0/skylake_sp/
656F: src/vendorcode/intel/fsp/fsp2_0/copperlake_sp/
Jonathan Zhange9b0b082020-06-30 13:28:52 -0700657
Julius Wernerb1263802020-08-24 14:24:21 -0700658MEDIATEK SOCS
659M: Hung-Te Lin <hungte@chromium.org>
660S: Supported
Felix Singer3c02ed92020-11-30 06:56:08 +0100661F: src/soc/mediatek/
Julius Wernerb1263802020-08-24 14:24:21 -0700662
Xi Chen022b1b92021-02-05 11:45:12 +0800663MEDIATEK MT8192
664M: Xi Chen <xixi.chen@mediatek.com>
665S: Maintained
666F: src/soc/mediatek/mt8192/
667F: src/vendorcode/mediatek/mt8192/
668
Angel Pons8d6f5872020-06-07 00:25:42 +0200669ORPHANED ARM SOCS
670S: Orphaned
671F: src/cpu/armltd/
Sam Lewisad7b2e22020-08-03 20:18:29 +1000672F: src/soc/ti/
Angel Pons8d6f5872020-06-07 00:25:42 +0200673F: src/soc/qualcomm/
674F: src/soc/samsung/
675F: util/exynos/
676F: util/ipqheader/
677
678################################################################################
679# Payloads
680################################################################################
681
682NVRAM
683F: util/nvramtool/
684F: payloads/nvramcui/
685
686LIBPAYLOAD
687F: payloads/libpayload/
688
689COREINFO PAYLOAD
690F: payloads/coreinfo/
691
692EXTERNAL PAYLOADS INTEGRATION
693M: Stefan Reinauer <stefan.reinauer@coreboot.org>
694M: Martin Roth <gaumless@gmail.com>
Felix Singer3c02ed92020-11-30 06:56:08 +0100695F: payloads/external/
Angel Pons8d6f5872020-06-07 00:25:42 +0200696
697LINUXBOOT PAYLOAD INTEGRATION
698M: Christian Walter <christian.walter@9elements.com>
699M: Marcello Sylvester Bauer <info@marcellobauer.com>
700S: Supported
Felix Singer3c02ed92020-11-30 06:56:08 +0100701F: payloads/external/LinuxBoot/
Angel Pons8d6f5872020-06-07 00:25:42 +0200702
703################################################################################
704# Utilities
705################################################################################
706
707ABUILD
708M: Patrick Georgi <patrick@georgi-clan.de>
709M: Martin Roth <gaumless@gmail.com>
710S: Supported
711F: util/abuild/
712
713BOARD STATUS
714F: util/board_status/
715
716BUILD SYSTEM
717M: Patrick Georgi <patrick@georgi-clan.de>
718M: Martin Roth <gaumless@gmail.com>
719S: Supported
720F: Makefile
721F: *.inc
722F: src/include/kconfig.h
723F: util/kconfig/
724F: util/sconfig/
725F: util/xcompile/
726F: util/genbuild_h/
727
728TOOLCHAIN
729F: util/crossgcc/
730
731DOCKER
732M: Martin Roth <gaumless@gmail.com>
733S: Supported
734F: util/docker/
735
736GIT
737F: .git*
738F: /util/gitconfig
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700739
Stefan Reinauer2e38cc52015-05-06 11:15:38 -0700740LINT SCRIPTS
741M: Patrick Georgi <patrick@georgi-clan.de>
Martin Roth057ce5f2016-03-17 12:03:00 -0600742M: Martin Roth <gaumless@gmail.com>
Stefan Reinauer2e38cc52015-05-06 11:15:38 -0700743S: Supported
744F: util/lint/
745
Angel Pons8d6f5872020-06-07 00:25:42 +0200746IFDTOOL
747M: Stefan Reinauer <stefan.reinauer@coreboot.org>
748F: util/ifdtool/
749
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700750INTELTOOL
751M: Stefan Reinauer <stefan.reinauer@coreboot.org>
752F: util/inteltool/
753
Philipp Deppenwiese4cd9a112016-03-23 00:02:40 +0100754INTELMETOOL
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100755M: Christian Walter <christian.walter@9elements.com>
Philipp Deppenwiese4cd9a112016-03-23 00:02:40 +0100756F: util/intelmetool/
757
Nicola Corna4f4fc182017-02-23 16:53:45 +0100758ME_CLEANER
759M: Nicola Corna <nicola@corna.info>
760W: https://github.com/corna/me_cleaner
761S: Maintained
762F: util/me_cleaner/
763
Angel Pons8d6f5872020-06-07 00:25:42 +0200764################################################################################
765# Miscellaneous
766################################################################################
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700767
Angel Pons8d6f5872020-06-07 00:25:42 +0200768ASPEED AST2050 DRIVER & COMMON CODE
769M: Timothy Pearson <tpearson@raptorengineeringinc.com>
Patrick Georgi65ff63f2015-05-21 18:54:10 +0200770S: Supported
Angel Pons8d6f5872020-06-07 00:25:42 +0200771F: src/drivers/aspeed/common/
772F: src/drivers/aspeed/ast2050/
Patrick Georgi65ff63f2015-05-21 18:54:10 +0200773
Angel Pons8d6f5872020-06-07 00:25:42 +0200774ACPI
Lijian Zhao5bd9b7f2020-12-29 09:12:36 +0800775M: Lance Zhao <lance.zhao@gmail.com>
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600776M: Tim Wawrzynczak <twawrzynczak@chromium.org>
Lijian Zhao5bd9b7f2020-12-29 09:12:36 +0800777S: Supported
Angel Pons8d6f5872020-06-07 00:25:42 +0200778F: src/acpi/
779F: src/arch/x86/acpi/
780F: util/acpi/
781
782LZ4 COMPRESSION
783M: Julius Werner <jwerner@chromium.org>
784S: Supported
785F: src/commonlib/lz4*
786F: payloads/libpayload/liblz4/
787F: util/cbfstool/lz4/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700788
789BINARY OBJECTS
790F: 3rdparty/blobs/
791
792VERIFIED BOOT
793F: 3rdparty/vboot/
794F: src/vendorcode/google/chromeos/
795F: src/include/tpm.h
796F: src/include/tpm_lite/
797
798RESOURCE ALLOCATOR
799F: src/device/*
800F: src/include/device/
801F: src/include/cpu/cpu.h
802
803OPTION ROM EXECUTION & X86EMU
804F: src/device/oprom/
805
806CBFS
Julius Werner0655f782019-12-11 16:19:48 -0800807M: Julius Werner <jwerner@chromium.org>
808F: src/include/cbfs*
809F: src/commonlib/bsd/include/commonlib/bsd/cbfs*
810F: src/commonlib/bsd/cbfs*
811F: src/lib/cbfs.c
812
813CBFSTOOL
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700814F: util/cbfstool/
815
816CBMEM
817F: src/include/cbmem.h
818F: src/include/cbmem_id.h
819F: util/cbmem/
820
821CONSOLE
822F: src/console/
823F: src/include/console/
824F: src/drivers/uart/
825
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700826VERIFIED BOOT 2
827M: Aaron Durbin <adurbin@chromium.org>
Philipp Deppenwiese8f6af1c2018-11-23 19:13:54 +0100828F: src/security/vboot/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700829
Philipp Deppenwiese6507e6f2016-06-22 19:01:47 +0200830TPM SUPPORT
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100831M: Christian Walter <christian.walter@9elements.com>
Philipp Deppenwiese8f6af1c2018-11-23 19:13:54 +0100832S: Supported
Philipp Deppenwiese6507e6f2016-06-22 19:01:47 +0200833F: src/drivers/*/tpm/
Felix Singer3c02ed92020-11-30 06:56:08 +0100834F: src/security/tpm/
Philipp Deppenwiese6507e6f2016-06-22 19:01:47 +0200835
Martin Rothe801fcb2017-05-27 10:54:02 -0600836SUPERIOS & SUPERIOTOOL
837M: Felix Held <felix-coreboot@felixheld.de>
838S: Maintained
839F: src/superio/
840F: util/superiotool/
841
Julius Wernerc34e41f2017-06-09 14:26:03 -0700842MEMLAYOUT
843M: Julius Werner <jwerner@chromium.org>
844S: Supported
845F: */memlayout.h
846F: *.ld
847
Frans Hendriksf20bf922019-06-13 14:14:56 +0200848ELTAN VENDORCODE
849M: Frans Hendriks <fhendriks@eltan.com>
850M: Wim Vervoorn <wvervoorn@eltan.com>
851S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100852F: src/vendorcode/eltan/
Frans Hendriksf20bf922019-06-13 14:14:56 +0200853
Patrick Georgi517097f2021-03-02 18:08:14 +0100854TESTS
855M: Jakub Czapiga <jacz@semihalf.com>
856S: Maintained
857F: tests/
858
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700859MISSING: TIMERS / DELAYS
860
861MISSING: TIMESTAMPS
862
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700863MISSING: FMAP
864
865MISSING: GPIO
866
867MISSING: SMP
868
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700869MISSING: DMP / QEMU-X86
870
871MISSING: ELOG
872
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700873MISSING: SPI
874
Angel Pons0b500992020-04-15 16:47:36 +0200875# *** Infrastructure Owners ***
Martin Roth19fdedb2017-06-25 15:44:16 -0600876# This is intended to let people know who they should contact for issues with various infrastructure pieces.
877# Hardware
878# Owners: Stefan, Patrick
Sumeet Pawnikar1638a852017-09-12 22:17:55 +0530879# Backups:
Martin Roth19fdedb2017-06-25 15:44:16 -0600880
881# Web Server
882# Owners: Stefan, Patrick
883# Backups:
884
885# Website
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100886# Owners: Martin
Martin Roth19fdedb2017-06-25 15:44:16 -0600887# Backups: Patrick, Stefan
888
889# Documentation Website
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100890# Owners: Patrick
Martin Roth19fdedb2017-06-25 15:44:16 -0600891# Backups:
892
Patrick Georgi1d348942019-07-17 20:40:50 +0200893CODE OF CONDUCT
894M: Stefan Reinauer <stefan.reinauer@coreboot.org>
895M: Patrick Georgi <patrick@coreboot.org>
896M: Ronald Minnich <rminnich@coreboot.org>
897M: Martin Roth <martin@coreboot.org>
898S: Maintained
899F: Documentation/community/code_of_conduct.md
900
Martin Roth19fdedb2017-06-25 15:44:16 -0600901# Wiki
902# Owners: Stefan, Patrick
903# Backups:
904
905# Gerrit
906# Owners: Stefan, Patrick
907# Backups: Martin
908
909# Jenkins
910# Owners: Patrick, Martin
911# Backups:
912
913# Bug Tracker
914# Owners: Lynxis,
915# Backups: Martin,
916
917# Mailing List
918# Owners: Stefan, Patrick
919# Backups: Martin,
920
921# Software Freedom Conservancy
922# Main contact: Martin
923# “Official” contact: Stefan