blob: 860b79c9f73b9b4267a1d936765657d5ca2db645 [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>
179S: Maintained
180F: src/mainboard/asus/h61-series/
181
Tristan Corrickd88cf5f2018-12-06 19:26:47 +1300182ASUS MAXIMUS IV GENE-Z MAINBOARD
183M: Tristan Corrick <tristan@corrick.kiwi>
184S: Maintained
185F: src/mainboard/asus/maximus_iv_gene-z/
186
Angel Pons33849042018-12-01 23:28:03 +0100187ASUS P5QC PRO MAINBOARD & VARIANTS
188M: Angel Pons <th3fanbus@gmail.com>
Stefan Ott98d63852021-04-22 01:28:56 +0200189R: Stefan Ott <coreboot@desire.ch>
Angel Pons33849042018-12-01 23:28:03 +0100190S: Maintained
191F: src/mainboard/asus/p5qc/
192
Angel Ponsf2aaddc2020-06-06 22:38:38 +0200193ASUS P5QPL-AM MAINBOARD & VARIANTS
194M: Angel Pons <th3fanbus@gmail.com>
195S: Maintained
196F: src/mainboard/asus/p5qpl-am/
197
Tristan Corrickd88cf5f2018-12-06 19:26:47 +1300198ASUS P8H61-M LX MAINBOARD
199M: Tristan Corrick <tristan@corrick.kiwi>
200S: Maintained
201F: src/mainboard/asus/p8h61-m_lx/
202
Vlado Cibic2bf6a302019-06-09 06:53:50 +0000203ASUS P8Z77-M PRO MAINBOARD
204M: Vlado Cibic <vladocb@protonmail.com>
205S: Maintained
206F: src/mainboard/asus/p8z77-m_pro/
207
Angel Ponsf2aaddc2020-06-06 22:38:38 +0200208ASUS P8Z77-V LX2 MAINBOARD
209M: Angel Pons <th3fanbus@gmail.com>
210S: Maintained
211F: src/mainboard/asus/p8z77-v_lx2/
212
Michał Żygowskib9f9f6c2018-12-21 12:23:27 +0100213
Michael Niewöhner489a11e2019-10-17 14:57:52 +0200214
Felix Singer63975f02020-10-12 21:47:43 +0000215CLEVO MAINBOARDS
216M: Felix Singer <felixsinger@posteo.net>
Michael Niewöhnere4478632020-07-19 22:56:35 +0200217M: Michael Niewöhner <foss@mniewoehner.de>
Felix Singer63975f02020-10-12 21:47:43 +0000218S: Supported
Michael Niewöhner5fd29312020-11-13 01:13:46 +0100219F: src/mainboard/clevo/
Felix Singer63975f02020-10-12 21:47:43 +0000220
221
222
Frans Hendriks1583fcd2019-06-05 10:18:23 +0200223FACEBOOK FBG1701 MAINBOARD
224M: Frans Hendriks <fhendriks@eltan.com>
225M: Wim Vervoorn <wvervoorn@eltan.com>
226S: Maintained
227F: src/mainboard/facebook/fbg1701/
228
Wim Vervoorn4ba70a72019-12-05 13:48:11 +0100229FACEBOOK MONOLITH MAINBOARD
230M: Frans Hendriks <fhendriks@eltan.com>
231M: Wim Vervoorn <wvervoorn@eltan.com>
232S: Maintained
233F: src/mainboard/facebook/monolith/
234
Angel Pons8d6f5872020-06-07 00:25:42 +0200235
236
237GETAC P470 MAINBOARD
238M: Patrick Georgi <patrick@georgi.software>
239S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100240F: src/mainboard/getac/p470/
Angel Pons8d6f5872020-06-07 00:25:42 +0200241
242
243
Angel Pons8602e662021-04-21 23:29:03 +0200244GIGABYTE GA-D510UD MAINBOARD
245M: Angel Pons <th3fanbus@gmail.com>
246S: Maintained
247F: src/mainboard/gigabyte/ga-d510ud/
248
Angel Pons8d6f5872020-06-07 00:25:42 +0200249GIGABYTE GA-G41M-ES2L MAINBOARD
250M: Damien Zammit <damien@zamaudio.com>
251S: Odd Fixes
Felix Singer3c02ed92020-11-30 06:56:08 +0100252F: src/mainboard/gigabyte/ga-g41m-es2l/
Angel Pons8d6f5872020-06-07 00:25:42 +0200253
254GIGABYTE GA-H61M SERIES MAINBOARDS
255M: Angel Pons <th3fanbus@gmail.com>
256S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100257F: src/mainboard/gigabyte/ga-h61m-series/
Angel Pons8d6f5872020-06-07 00:25:42 +0200258
259
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600260GOOGLE BRYA MAINBOARDS
261M: Tim Wawrzynczak <twawrzynczak@chromium.org>
262S: Maintained
263F: src/mainboard/google/brya/
264
265GOOGLE HATCH MAINBOARDS
266M: Tim Wawrzynczak <twawrzynczak@chromium.org>
267S: Maintained
268F: src/mainboard/google/hatch/
Angel Pons8d6f5872020-06-07 00:25:42 +0200269
270GOOGLE PANTHER MAINBOARD
271M: Stefan Reinauer <stefan.reinauer@coreboot.org>
272S: Supported
273F: src/mainboard/google/panther/
274
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600275GOOGLE VOLTEER MAINBOARDS
276M: Tim Wawrzynczak <twawrzynczak@chromium.org>
277S: Maintained
278F: src/mainboard/google/volteer/
279
Angel Pons8d6f5872020-06-07 00:25:42 +0200280GOOGLE MAINBOARDS (Intel-based, legacy/inactive)
281M: Matt DeVillier <MrChromebox@gmail.com>
282S: Maintained
283F: src/mainboard/google/auron/
284F: src/mainboard/google/beltino/
285F: src/mainboard/google/butterfly/
286F: src/mainboard/google/cyan/
287F: src/mainboard/google/glados/
288F: src/mainboard/google/jecht/
289F: src/mainboard/google/link/
290F: src/mainboard/google/parrot/
291F: src/mainboard/google/slippy/
292F: src/mainboard/google/stout/
293
294
295
Angel Pons8602e662021-04-21 23:29:03 +0200296HP 280 G2 MAINBOARD
297M: Angel Pons <th3fanbus@gmail.com>
298S: Maintained
299F: src/mainboard/hp/280_g2/
300
301
302
Angel Pons8d6f5872020-06-07 00:25:42 +0200303INTEL D510MO MAINBOARD
304M: Damien Zammit <damien@zamaudio.com>
305S: Odd Fixes
Felix Singer3c02ed92020-11-30 06:56:08 +0100306F: src/mainboard/intel/d510mo/
Angel Pons8d6f5872020-06-07 00:25:42 +0200307
308INTEL STRAGO MAINBOARD
309M: Hannah Williams <hannah.williams@intel.com>
310S: Supported
311F: /src/mainboard/intel/strago/
312
313
314
Felix Singer32608cf2020-11-22 00:38:16 +0000315KONTRON BSL6 MAINBOARD
316M: Felix Singer <felixsinger@posteo.net>
317M: Nico Huber <nico.h@gmx.de>
318S: Supported
319F: src/mainboard/kontron/bsl6/
320
Felix Singer5a41b0d2020-11-23 20:20:38 +0000321KONTRON MAL10 MAINBOARD
322M: Maxim Polyakov <max.senia.poliak@gmail.com>
323M: Nico Huber <nico.h@gmx.de>
324M: Felix Singer <felixsinger@posteo.net>
325S: Supported
326F: src/mainboard/kontron/mal10/
327
Felix Singer32608cf2020-11-22 00:38:16 +0000328
329
Angel Pons8d6f5872020-06-07 00:25:42 +0200330LENOVO MAINBOARDS
331M: Alexander Couzens <lynxis@fe80.eu>
332M: Patrick Rudolph <siro@das-labor.org>
333S: Maintained
334F: src/mainboard/lenovo/
335
336LENOVO G505S MAINBOARD
337M: Mike Banon <mikebdp2@gmail.com>
338S: Maintained
339F: src/mainboard/lenovo/g505s/
340
Stefan Ott98d63852021-04-22 01:28:56 +0200341LENOVO X200 MAINBOARD
342R: Stefan Ott <coreboot@desire.ch>
343S: Maintained
344F: src/mainboard/lenovo/x200/
345
346LENOVO X201 MAINBOARD
347R: Stefan Ott <coreboot@desire.ch>
348S: Maintained
349F: src/mainboard/lenovo/x201/
Angel Pons8d6f5872020-06-07 00:25:42 +0200350
351
352LIBRETREND LT1000 MAINBOARD
353M: Piotr Król <piotr.krol@3mdeb.com>
354M: Michał Żygowski <michal.zygowski@3mdeb.com>
355S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100356F: src/mainboard/libretrend/lt1000/
Angel Pons8d6f5872020-06-07 00:25:42 +0200357
358
Angel Pons8602e662021-04-21 23:29:03 +0200359
360MSI H81M-P33 MAINBOARD
361M: Angel Pons <th3fanbus@gmail.com>
362S: Maintained
363F: src/mainboard/msi/h81m-p33/
364
365
366
Jonathan Zhangdd4f6432020-06-30 11:39:09 -0700367OCP DELTALAKE MAINBOARD
368M: Jonathan Zhang <jonzhang@fb.com>
369M: Reddy Chagam <anjaneya.chagam@intel.com>
370M: Johnny Lin <Johnny_Lin@wiwynn.com>
371M: Morgan Jang <Morgan_Jang@wiwynn.com>
372M: Ryback Hung <<Ryback.Hung@quantatw.com>
373M: Bryant Ou <Bryant.Ou@quantatw.com>
374S: Supported
Felix Singer3c02ed92020-11-30 06:56:08 +0100375F: src/mainboard/ocp/deltalake/
Angel Pons8d6f5872020-06-07 00:25:42 +0200376
Jonathan Zhanged849ed2020-05-01 11:23:46 -0700377OCP TIOGAPASS MAINBOARD
378M: Jonathan Zhang <jonzhang@fb.com>
379M: Reddy Chagam <anjaneya.chagam@intel.com>
380M: Johnny Lin <Johnny_Lin@wiwynn.com>
381M: Morgan Jang <Morgan_Jang@wiwynn.com>
382M: Ryback Hung <<Ryback.Hung@quantatw.com>
383M: Bryant Ou <Bryant.Ou@quantatw.com>
384S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100385F: src/mainboard/ocp/tiogapass/
Jonathan Zhanged849ed2020-05-01 11:23:46 -0700386
Angel Pons8d6f5872020-06-07 00:25:42 +0200387
388
389OPENCELLULAR MAINBOARDS
390M: Christian Walter <christian.walter@9elements.com>
391M: Patrick Rudolph <patrick.rudolph@9elements.com>
392S: Supported
393F: src/mainboard/opencellular/elgon/
394
395
396
397PC ENGINES ALL MAINBOARDS
398M: Piotr Król <piotr.krol@3mdeb.com>
399M: Michał Żygowski <michal.zygowski@3mdeb.com>
400S: Supported
401F: src/mainboard/pcengines/
402
403
404
Frans Hendriksa78146c2019-07-19 10:30:20 +0200405PORTWELL PQ-M107 MAINBOARD
406M: Frans Hendriks <fhendriks@eltan.com>
407M: Wim Vervoorn <wvervoorn@eltan.com>
408S: Maintained
409F: src/mainboard/portwell/m107/
410
Martin Roth2a3434752016-03-05 18:31:29 -0700411
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700412
Angel Pons8d6f5872020-06-07 00:25:42 +0200413PROTECTLI ALL MAINBOARDS
414M: Piotr Król <piotr.krol@3mdeb.com>
415M: Michał Żygowski <michal.zygowski@3mdeb.com>
416S: Maintained
417F: src/mainboard/protectli/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700418
Angel Pons8d6f5872020-06-07 00:25:42 +0200419
420
Christian Walter02b39372020-06-17 20:17:59 +0200421PRODRIVE HERMES MAINBOARD
422M: Christian Walter <christian.walter@9elements.com>
423M: Patrick Rudolph <patrick.rudolph@9elements.com>
424S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100425F: src/mainboard/prodrive/hermes/
Christian Walter02b39372020-06-17 20:17:59 +0200426
427
428
Angel Pons8d6f5872020-06-07 00:25:42 +0200429PURISM MAINBOARDS
430M: Matt DeVillier <matt.devillier@puri.sm>
Julius Werner848f5db2017-09-11 13:12:48 -0700431S: Supported
Felix Singer3c02ed92020-11-30 06:56:08 +0100432F: src/mainboard/purism/
Angel Pons8d6f5872020-06-07 00:25:42 +0200433
434
435
436SAMSUNG CHROMEOS MAINBOARDS
437M: Matt DeVillier <MrChromebox@gmail.com>
438S: Maintained
439F: src/mainboard/samsung/lumpy/
440F: src/mainboard/samsung/stumpy/
441
442
443
Felix Singer32608cf2020-11-22 00:38:16 +0000444SIEMENS CHILI MAINBAORD
445M: Felix Singer <felixsinger@posteo.net>
446M: Nico Huber <nico.h@gmx.de>
447S: Supported
448F: src/mainboard/siemens/chili/
449
Angel Pons8d6f5872020-06-07 00:25:42 +0200450SIEMENS MC_xxxx MAINBOARDS
451M: Werner Zeh <werner.zeh@siemens.com>
452S: Maintained
453F: src/mainboard/siemens/mc_apl1/
454
455
456
Jeremy Soller625af2b2020-07-21 08:23:39 -0600457SYSTEM76 MAINBOARDS
458M: Jeremy Soller <jeremy@system76.com>
459S: Maintained
460F: src/mainboard/system76/
461
462
463
Angel Pons8d6f5872020-06-07 00:25:42 +0200464SUPERMICRO X10SLM+-F MAINBOARD
465M: Tristan Corrick <tristan@corrick.kiwi>
466S: Maintained
467F: src/mainboard/supermicro/x10slm-f/
468
469SUPERMICRO X11-LGA1151-SERIES
470M: Michael Niewöhner <foss@mniewoehner.de>
471S: Maintained
Michael Niewöhner5fd29312020-11-13 01:13:46 +0100472F: src/mainboard/supermicro/x11-lga1151-series/
Angel Pons8d6f5872020-06-07 00:25:42 +0200473
474################################################################################
475# Architectures
476################################################################################
Julius Werner848f5db2017-09-11 13:12:48 -0700477
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700478ARM ARCHITECTURE
Julius Wernerc34e41f2017-06-09 14:26:03 -0700479M: Julius Werner <jwerner@chromium.org>
480S: Supported
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700481F: src/arch/arm/
Julius Wernerc34e41f2017-06-09 14:26:03 -0700482F: src/arch/arm64/
Julius Wernerc34e41f2017-06-09 14:26:03 -0700483F: src/soc/nvidia/
484F: src/soc/rockchip/
485F: util/nvidia/
486F: util/rockchip/
487
Angel Pons8d6f5872020-06-07 00:25:42 +0200488PPC64 ARCHITECTURE
489M: Ronald Minnich <rminnich@gmail.com>
490M: Timothy Pearson <tpearson@raptorengineeringinc.com>
491S: Maintained
492F: src/arch/ppc64/
493F: src/cpu/qemu-power8/
494F: src/mainboard/emulation/qemu-power8/
495
496RISC-V ARCHITECTURE
497M: Ronald Minnich <rminnich@gmail.com>
498R: Philipp Hug <philipp@hug.cx>
499S: Maintained
500F: src/arch/riscv/
501F: src/soc/sifive/
502F: src/soc/ucb/
503F: src/mainboard/emulation/*-riscv/
504F: src/mainboard/sifive/
505F: util/riscv/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700506
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700507X86 ARCHITECTURE
508F: src/arch/x86/
509F: src/cpu/x86/
510F: src/drivers/pc80/
511F: src/include/pc80/
512F: src/include/cpu/x86/
513
Angel Pons8d6f5872020-06-07 00:25:42 +0200514################################################################################
515# Embedded Controllers
516################################################################################
517
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600518CHROME EC
519M: Tim Wawrzynczak <twawrzynczak@chromium.org>
520S: Maintained
521F: src/ec/google/chromeec/
522
Angel Pons8d6f5872020-06-07 00:25:42 +0200523LENOVO EC
524M: Alexander Couzens <lynxis@fe80.eu>
525S: Maintained
526F: src/ec/lenovo/
527
Jeremy Soller625af2b2020-07-21 08:23:39 -0600528SYSTEM76 EC
529M: Jeremy Soller <jeremy@system76.com>
530S: Maintained
531F: src/ec/system76/
532
Angel Pons8d6f5872020-06-07 00:25:42 +0200533################################################################################
534# Northbridges
535################################################################################
536
537INTEL HASWELL NORTHBRIDGE
538M: Angel Pons <th3fanbus@gmail.com>
539S: Maintained
540F: src/northbridge/intel/haswell/
541
542INTEL PINEVIEW CHIPSET
543M: Damien Zammit <damien@zamaudio.com>
544M: Angel Pons <th3fanbus@gmail.com>
545S: Odd Fixes
546F: src/northbridge/intel/pineview/
547
548INTEL SANDYBRIDGE NORTHBRIDGE
549M: Angel Pons <th3fanbus@gmail.com>
550S: Maintained
551F: src/northbridge/intel/sandybridge/
552
553INTEL X4X CHIPSET
554M: Damien Zammit <damien@zamaudio.com>
555M: Angel Pons <th3fanbus@gmail.com>
556S: Odd Fixes
557F: src/northbridge/intel/x4x/
558
559################################################################################
560# Platforms
561################################################################################
562
563AMD SUPPORT
564F: src/vendorcode/amd/
565F: src/cpu/amd/
566F: src/northbridge/amd/
567F: src/southbridge/amd/
568F: src/include/cpu/amd/
569
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700570INTEL SUPPORT
Martin Roth954338d2017-03-05 11:20:18 -0700571M: Patrick Rudolph <siro@das-labor.org>
572S: Maintained
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700573F: src/vendorcode/intel/
574F: src/cpu/intel/
575F: src/northbridge/intel/
576F: src/southbridge/intel/
577F: src/soc/intel/
578F: src/drivers/intel/
579F: src/include/cpu/intel/
580
Angel Pons8d6f5872020-06-07 00:25:42 +0200581INTEL FSP DENVERTON-NS SOC & HARCUVAR CRB
Mariusz Szafranski778c4f8c2020-11-19 13:05:32 +0100582M: Suresh Bellampalli <suresh.bellampalli@intel.com>
Angel Pons8d6f5872020-06-07 00:25:42 +0200583M: Vanessa Eusebio <vanessa.f.eusebio@intel.com>
Mariusz Szafranski778c4f8c2020-11-19 13:05:32 +0100584M: Michal Motyl <michalx.motyl@intel.com>
585M: Mariusz Szafranski <mariuszx.szafranski@intel.com>
586S: Maintained
Angel Pons8d6f5872020-06-07 00:25:42 +0200587F: src/mainboard/intel/harcuvar/
588F: src/soc/intel/denverton_ns/
Angel Pons8d6f5872020-06-07 00:25:42 +0200589
590INTEL FSP 1.1
591M: Lee Leahy <leroy.p.leahy@intel.com>
592M: Huang Jin <huang.jin@intel.com>
593M: York Yang <york.yang@intel.com>
594S: Supported
595F: src/drivers/intel/fsp1_1/
596
597INTEL FSP 2.0
598M: Andrey Petrov <andrey.petrov@gmail.com>
599S: Maintained
600F: src/drivers/intel/fsp2_0/
601
602################################################################################
603# Systems on a Chip
604################################################################################
605
Felix Heldfef413e2020-12-02 15:57:24 +0100606AMD Cezanne
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/cezanne/
613
614AMD common SoC code
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 Heldfef413e2020-12-02 15:57:24 +0100619S: Maintained
620F: src/soc/amd/common/
621
Felix Held93231b42020-11-13 15:56:28 +0100622AMD Picasso
623M: Marshall Dawson <marshalldawson3rd@gmail.com>
624M: Felix Held <felix-coreboot@felixheld.de>
625M: Jason Glenesk <jason.glenesk@gmail.com>
Raul E Rangelc81509c2021-01-25 10:24:14 -0700626M: Raul E Rangel <rrangel@chromium.org>
Felix Held93231b42020-11-13 15:56:28 +0100627S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100628F: src/soc/amd/picasso/
629F: src/vendorcode/amd/fsp/picasso/
Felix Held93231b42020-11-13 15:56:28 +0100630
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600631INTEL ALDERLAKE SOC
632M: Tim Wawrzynczak <twawrzynczak@chromium.org>
633S: Maintained
634F: src/soc/intel/alderlake/
635
Angel Pons8d6f5872020-06-07 00:25:42 +0200636INTEL APOLLOLAKE_SOC
637M: Andrey Petrov <andrey.petrov@gmail.com>
638S: Maintained
639F: src/soc/intel/apollolake/
640
641INTEL BRASWELL SOC
642M: Piotr Król <piotr.krol@3mdeb.com>
643M: Michał Żygowski <michal.zygowski@3mdeb.com>
644M: Frans Hendriks <fhendriks@eltan.com>
645S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100646F: /src/soc/intel/braswell/
647F: /src/vendorcode/intel/fsp/fsp1_1/braswell/
Angel Pons8d6f5872020-06-07 00:25:42 +0200648
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600649INTEL TIGERLAKE SOC
650M: Tim Wawrzynczak <twawrzynczak@chromium.org>
651S: Maintained
652F: src/soc/intel/tigerlake/
653
Jonathan Zhange9b0b082020-06-30 13:28:52 -0700654INTEL Xeon Sacalable Processor Family
655M: Jonathan Zhang <jonzhang@fb.com>
656M: Reddy Chagam <anjaneya.chagam@intel.com>
657M: Johnny Lin <Johnny_Lin@wiwynn.com>
658M: Morgan Jang <Morgan_Jang@wiwynn.com>
659M: Ryback Hung <<Ryback.Hung@quantatw.com>
660M: Bryant Ou <Bryant.Ou@quantatw.com>
661S: Supported
Felix Singerd70d1d12020-11-30 06:56:08 +0100662F: src/soc/intel/xeon_sp/
Felix Singer3c02ed92020-11-30 06:56:08 +0100663F: src/vendorcode/intel/fsp/fsp2_0/skylake_sp/
664F: src/vendorcode/intel/fsp/fsp2_0/copperlake_sp/
Jonathan Zhange9b0b082020-06-30 13:28:52 -0700665
Julius Wernerb1263802020-08-24 14:24:21 -0700666MEDIATEK SOCS
667M: Hung-Te Lin <hungte@chromium.org>
668S: Supported
Felix Singer3c02ed92020-11-30 06:56:08 +0100669F: src/soc/mediatek/
Julius Wernerb1263802020-08-24 14:24:21 -0700670
Xi Chen022b1b92021-02-05 11:45:12 +0800671MEDIATEK MT8192
672M: Xi Chen <xixi.chen@mediatek.com>
673S: Maintained
674F: src/soc/mediatek/mt8192/
675F: src/vendorcode/mediatek/mt8192/
676
Angel Pons8d6f5872020-06-07 00:25:42 +0200677ORPHANED ARM SOCS
678S: Orphaned
679F: src/cpu/armltd/
Sam Lewisad7b2e22020-08-03 20:18:29 +1000680F: src/soc/ti/
Angel Pons8d6f5872020-06-07 00:25:42 +0200681F: src/soc/qualcomm/
682F: src/soc/samsung/
683F: util/exynos/
684F: util/ipqheader/
685
686################################################################################
687# Payloads
688################################################################################
689
690NVRAM
691F: util/nvramtool/
692F: payloads/nvramcui/
693
694LIBPAYLOAD
695F: payloads/libpayload/
696
697COREINFO PAYLOAD
698F: payloads/coreinfo/
699
700EXTERNAL PAYLOADS INTEGRATION
701M: Stefan Reinauer <stefan.reinauer@coreboot.org>
702M: Martin Roth <gaumless@gmail.com>
Felix Singer3c02ed92020-11-30 06:56:08 +0100703F: payloads/external/
Angel Pons8d6f5872020-06-07 00:25:42 +0200704
705LINUXBOOT PAYLOAD INTEGRATION
706M: Christian Walter <christian.walter@9elements.com>
707M: Marcello Sylvester Bauer <info@marcellobauer.com>
708S: Supported
Felix Singer3c02ed92020-11-30 06:56:08 +0100709F: payloads/external/LinuxBoot/
Angel Pons8d6f5872020-06-07 00:25:42 +0200710
711################################################################################
712# Utilities
713################################################################################
714
715ABUILD
716M: Patrick Georgi <patrick@georgi-clan.de>
717M: Martin Roth <gaumless@gmail.com>
718S: Supported
719F: util/abuild/
720
721BOARD STATUS
722F: util/board_status/
723
724BUILD SYSTEM
725M: Patrick Georgi <patrick@georgi-clan.de>
726M: Martin Roth <gaumless@gmail.com>
727S: Supported
728F: Makefile
729F: *.inc
730F: src/include/kconfig.h
731F: util/kconfig/
732F: util/sconfig/
733F: util/xcompile/
734F: util/genbuild_h/
735
736TOOLCHAIN
737F: util/crossgcc/
738
739DOCKER
740M: Martin Roth <gaumless@gmail.com>
741S: Supported
742F: util/docker/
743
744GIT
745F: .git*
746F: /util/gitconfig
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700747
Stefan Reinauer2e38cc52015-05-06 11:15:38 -0700748LINT SCRIPTS
749M: Patrick Georgi <patrick@georgi-clan.de>
Martin Roth057ce5f2016-03-17 12:03:00 -0600750M: Martin Roth <gaumless@gmail.com>
Stefan Reinauer2e38cc52015-05-06 11:15:38 -0700751S: Supported
752F: util/lint/
753
Angel Pons8d6f5872020-06-07 00:25:42 +0200754IFDTOOL
755M: Stefan Reinauer <stefan.reinauer@coreboot.org>
756F: util/ifdtool/
757
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700758INTELTOOL
759M: Stefan Reinauer <stefan.reinauer@coreboot.org>
760F: util/inteltool/
761
Philipp Deppenwiese4cd9a112016-03-23 00:02:40 +0100762INTELMETOOL
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100763M: Christian Walter <christian.walter@9elements.com>
Philipp Deppenwiese4cd9a112016-03-23 00:02:40 +0100764F: util/intelmetool/
765
Nicola Corna4f4fc182017-02-23 16:53:45 +0100766ME_CLEANER
767M: Nicola Corna <nicola@corna.info>
768W: https://github.com/corna/me_cleaner
769S: Maintained
770F: util/me_cleaner/
771
Angel Pons8d6f5872020-06-07 00:25:42 +0200772################################################################################
773# Miscellaneous
774################################################################################
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700775
Angel Pons8d6f5872020-06-07 00:25:42 +0200776ASPEED AST2050 DRIVER & COMMON CODE
777M: Timothy Pearson <tpearson@raptorengineeringinc.com>
Patrick Georgi65ff63f2015-05-21 18:54:10 +0200778S: Supported
Angel Pons8d6f5872020-06-07 00:25:42 +0200779F: src/drivers/aspeed/common/
780F: src/drivers/aspeed/ast2050/
Patrick Georgi65ff63f2015-05-21 18:54:10 +0200781
Angel Pons8d6f5872020-06-07 00:25:42 +0200782ACPI
Lijian Zhao5bd9b7f2020-12-29 09:12:36 +0800783M: Lance Zhao <lance.zhao@gmail.com>
Tim Wawrzynczak7400b612021-04-20 22:04:22 -0600784M: Tim Wawrzynczak <twawrzynczak@chromium.org>
Lijian Zhao5bd9b7f2020-12-29 09:12:36 +0800785S: Supported
Angel Pons8d6f5872020-06-07 00:25:42 +0200786F: src/acpi/
787F: src/arch/x86/acpi/
788F: util/acpi/
789
790LZ4 COMPRESSION
791M: Julius Werner <jwerner@chromium.org>
792S: Supported
793F: src/commonlib/lz4*
794F: payloads/libpayload/liblz4/
795F: util/cbfstool/lz4/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700796
797BINARY OBJECTS
798F: 3rdparty/blobs/
799
800VERIFIED BOOT
801F: 3rdparty/vboot/
802F: src/vendorcode/google/chromeos/
803F: src/include/tpm.h
804F: src/include/tpm_lite/
805
806RESOURCE ALLOCATOR
807F: src/device/*
808F: src/include/device/
809F: src/include/cpu/cpu.h
810
811OPTION ROM EXECUTION & X86EMU
812F: src/device/oprom/
813
814CBFS
Julius Werner0655f782019-12-11 16:19:48 -0800815M: Julius Werner <jwerner@chromium.org>
816F: src/include/cbfs*
817F: src/commonlib/bsd/include/commonlib/bsd/cbfs*
818F: src/commonlib/bsd/cbfs*
819F: src/lib/cbfs.c
820
821CBFSTOOL
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700822F: util/cbfstool/
823
824CBMEM
825F: src/include/cbmem.h
826F: src/include/cbmem_id.h
827F: util/cbmem/
828
829CONSOLE
830F: src/console/
831F: src/include/console/
832F: src/drivers/uart/
833
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700834VERIFIED BOOT 2
835M: Aaron Durbin <adurbin@chromium.org>
Philipp Deppenwiese8f6af1c2018-11-23 19:13:54 +0100836F: src/security/vboot/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700837
Philipp Deppenwiese6507e6f2016-06-22 19:01:47 +0200838TPM SUPPORT
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100839M: Christian Walter <christian.walter@9elements.com>
Philipp Deppenwiese8f6af1c2018-11-23 19:13:54 +0100840S: Supported
Philipp Deppenwiese6507e6f2016-06-22 19:01:47 +0200841F: src/drivers/*/tpm/
Felix Singer3c02ed92020-11-30 06:56:08 +0100842F: src/security/tpm/
Philipp Deppenwiese6507e6f2016-06-22 19:01:47 +0200843
Martin Rothe801fcb2017-05-27 10:54:02 -0600844SUPERIOS & SUPERIOTOOL
845M: Felix Held <felix-coreboot@felixheld.de>
846S: Maintained
847F: src/superio/
848F: util/superiotool/
849
Julius Wernerc34e41f2017-06-09 14:26:03 -0700850MEMLAYOUT
851M: Julius Werner <jwerner@chromium.org>
852S: Supported
853F: */memlayout.h
854F: *.ld
855
Frans Hendriksf20bf922019-06-13 14:14:56 +0200856ELTAN VENDORCODE
857M: Frans Hendriks <fhendriks@eltan.com>
858M: Wim Vervoorn <wvervoorn@eltan.com>
859S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100860F: src/vendorcode/eltan/
Frans Hendriksf20bf922019-06-13 14:14:56 +0200861
Patrick Georgi517097f2021-03-02 18:08:14 +0100862TESTS
863M: Jakub Czapiga <jacz@semihalf.com>
864S: Maintained
865F: tests/
866
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700867MISSING: TIMERS / DELAYS
868
869MISSING: TIMESTAMPS
870
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700871MISSING: FMAP
872
873MISSING: GPIO
874
875MISSING: SMP
876
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700877MISSING: DMP / QEMU-X86
878
879MISSING: ELOG
880
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700881MISSING: SPI
882
Angel Pons0b500992020-04-15 16:47:36 +0200883# *** Infrastructure Owners ***
Martin Roth19fdedb2017-06-25 15:44:16 -0600884# This is intended to let people know who they should contact for issues with various infrastructure pieces.
885# Hardware
886# Owners: Stefan, Patrick
Sumeet Pawnikar1638a852017-09-12 22:17:55 +0530887# Backups:
Martin Roth19fdedb2017-06-25 15:44:16 -0600888
889# Web Server
890# Owners: Stefan, Patrick
891# Backups:
892
893# Website
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100894# Owners: Martin
Martin Roth19fdedb2017-06-25 15:44:16 -0600895# Backups: Patrick, Stefan
896
897# Documentation Website
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100898# Owners: Patrick
Martin Roth19fdedb2017-06-25 15:44:16 -0600899# Backups:
900
Patrick Georgi1d348942019-07-17 20:40:50 +0200901CODE OF CONDUCT
902M: Stefan Reinauer <stefan.reinauer@coreboot.org>
903M: Patrick Georgi <patrick@coreboot.org>
904M: Ronald Minnich <rminnich@coreboot.org>
905M: Martin Roth <martin@coreboot.org>
906S: Maintained
907F: Documentation/community/code_of_conduct.md
908
Martin Roth19fdedb2017-06-25 15:44:16 -0600909# Wiki
910# Owners: Stefan, Patrick
911# Backups:
912
913# Gerrit
914# Owners: Stefan, Patrick
915# Backups: Martin
916
917# Jenkins
918# Owners: Patrick, Martin
919# Backups:
920
921# Bug Tracker
922# Owners: Lynxis,
923# Backups: Martin,
924
925# Mailing List
926# Owners: Stefan, Patrick
927# Backups: Martin,
928
929# Software Freedom Conservancy
930# Main contact: Martin
931# “Official” contact: Stefan