blob: 14444aa8e1a1964eebcfc27c726f3c769916a5ec [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
Evgeny Zinoviev09bf63e2019-05-31 16:03:27 +0300140APPLE MAINBOARDS
141M: Evgeny Zinoviev <me@ch1p.io>
142S: Maintained
143F: src/mainboard/apple/
144
Patrick Georgi8fb453e2018-11-21 22:12:45 +0100145
Angel Pons8d6f5872020-06-07 00:25:42 +0200146
147ASROCK B85M PRO4 MAINBOARD
Angel Pons8a508272020-06-06 22:45:16 +0200148M: Angel Pons <th3fanbus@gmail.com>
149S: Maintained
Angel Pons8d6f5872020-06-07 00:25:42 +0200150F: src/mainboard/asrock/b85m_pro4/
Andrey Petrov842dfe82016-05-24 22:01:56 -0700151
Angel Pons33849042018-12-01 23:28:03 +0100152ASROCK G41C-GS MAINBOARD & VARIANTS
153M: Angel Pons <th3fanbus@gmail.com>
154S: Maintained
155F: src/mainboard/asrock/g41c-gs/
156
Tristan Corrickd88cf5f2018-12-06 19:26:47 +1300157ASROCK H81M-HDS MAINBOARD
158M: Tristan Corrick <tristan@corrick.kiwi>
159S: Maintained
160F: src/mainboard/asrock/h81m-hds/
161
Angel Pons8d6f5872020-06-07 00:25:42 +0200162
Angel Ponsf2aaddc2020-06-06 22:38:38 +0200163
Mike Banonc732d682019-12-31 14:29:39 +0300164ASUS AM1I-A MAINBOARD
165M: Mike Banon <mikebdp2@gmail.com>
166S: Maintained
167F: src/mainboard/asus/am1i-a/
168
Tristan Corrickd88cf5f2018-12-06 19:26:47 +1300169ASUS MAXIMUS IV GENE-Z MAINBOARD
170M: Tristan Corrick <tristan@corrick.kiwi>
171S: Maintained
172F: src/mainboard/asus/maximus_iv_gene-z/
173
Angel Pons33849042018-12-01 23:28:03 +0100174ASUS P5QC PRO MAINBOARD & VARIANTS
175M: Angel Pons <th3fanbus@gmail.com>
176S: Maintained
177F: src/mainboard/asus/p5qc/
178
Angel Ponsf2aaddc2020-06-06 22:38:38 +0200179ASUS P5QPL-AM MAINBOARD & VARIANTS
180M: Angel Pons <th3fanbus@gmail.com>
181S: Maintained
182F: src/mainboard/asus/p5qpl-am/
183
Tristan Corrickd88cf5f2018-12-06 19:26:47 +1300184ASUS P8H61-M LX MAINBOARD
185M: Tristan Corrick <tristan@corrick.kiwi>
186S: Maintained
187F: src/mainboard/asus/p8h61-m_lx/
188
Angel Ponsf2aaddc2020-06-06 22:38:38 +0200189ASUS P8H61-M LX3 R2.0 MAINBOARD
190M: Angel Pons <th3fanbus@gmail.com>
191S: Maintained
192F: src/mainboard/asus/p8h61-m_lx3_r2_0/
193
Angel Pons33849042018-12-01 23:28:03 +0100194ASUS P8H61-M PRO MAINBOARD
195M: Angel Pons <th3fanbus@gmail.com>
196S: Maintained
197F: src/mainboard/asus/p8h61-m_pro/
198
Vlado Cibic2bf6a302019-06-09 06:53:50 +0000199ASUS P8Z77-M PRO MAINBOARD
200M: Vlado Cibic <vladocb@protonmail.com>
201S: Maintained
202F: src/mainboard/asus/p8z77-m_pro/
203
Angel Ponsf2aaddc2020-06-06 22:38:38 +0200204ASUS P8Z77-V LX2 MAINBOARD
205M: Angel Pons <th3fanbus@gmail.com>
206S: Maintained
207F: src/mainboard/asus/p8z77-v_lx2/
208
Michał Żygowskib9f9f6c2018-12-21 12:23:27 +0100209
Michael Niewöhner489a11e2019-10-17 14:57:52 +0200210
Felix Singer63975f02020-10-12 21:47:43 +0000211CLEVO MAINBOARDS
212M: Felix Singer <felixsinger@posteo.net>
Michael Niewöhnere4478632020-07-19 22:56:35 +0200213M: Michael Niewöhner <foss@mniewoehner.de>
Felix Singer63975f02020-10-12 21:47:43 +0000214S: Supported
Michael Niewöhner5fd29312020-11-13 01:13:46 +0100215F: src/mainboard/clevo/
Felix Singer63975f02020-10-12 21:47:43 +0000216
217
218
Frans Hendriks1583fcd2019-06-05 10:18:23 +0200219FACEBOOK FBG1701 MAINBOARD
220M: Frans Hendriks <fhendriks@eltan.com>
221M: Wim Vervoorn <wvervoorn@eltan.com>
222S: Maintained
223F: src/mainboard/facebook/fbg1701/
224
Wim Vervoorn4ba70a72019-12-05 13:48:11 +0100225FACEBOOK MONOLITH MAINBOARD
226M: Frans Hendriks <fhendriks@eltan.com>
227M: Wim Vervoorn <wvervoorn@eltan.com>
228S: Maintained
229F: src/mainboard/facebook/monolith/
230
Angel Pons8d6f5872020-06-07 00:25:42 +0200231
232
233GETAC P470 MAINBOARD
234M: Patrick Georgi <patrick@georgi.software>
235S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100236F: src/mainboard/getac/p470/
Angel Pons8d6f5872020-06-07 00:25:42 +0200237
238
239
240GIGABYTE GA-G41M-ES2L MAINBOARD
241M: Damien Zammit <damien@zamaudio.com>
242S: Odd Fixes
Felix Singer3c02ed92020-11-30 06:56:08 +0100243F: src/mainboard/gigabyte/ga-g41m-es2l/
Angel Pons8d6f5872020-06-07 00:25:42 +0200244
245GIGABYTE GA-H61M SERIES MAINBOARDS
246M: Angel Pons <th3fanbus@gmail.com>
247S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100248F: src/mainboard/gigabyte/ga-h61m-series/
Angel Pons8d6f5872020-06-07 00:25:42 +0200249
250
251
252GOOGLE PANTHER MAINBOARD
253M: Stefan Reinauer <stefan.reinauer@coreboot.org>
254S: Supported
255F: src/mainboard/google/panther/
256
257GOOGLE MAINBOARDS (Intel-based, legacy/inactive)
258M: Matt DeVillier <MrChromebox@gmail.com>
259S: Maintained
260F: src/mainboard/google/auron/
261F: src/mainboard/google/beltino/
262F: src/mainboard/google/butterfly/
263F: src/mainboard/google/cyan/
264F: src/mainboard/google/glados/
265F: src/mainboard/google/jecht/
266F: src/mainboard/google/link/
267F: src/mainboard/google/parrot/
268F: src/mainboard/google/slippy/
269F: src/mainboard/google/stout/
270
271
272
273INTEL D510MO MAINBOARD
274M: Damien Zammit <damien@zamaudio.com>
275S: Odd Fixes
Felix Singer3c02ed92020-11-30 06:56:08 +0100276F: src/mainboard/intel/d510mo/
Angel Pons8d6f5872020-06-07 00:25:42 +0200277
278INTEL STRAGO MAINBOARD
279M: Hannah Williams <hannah.williams@intel.com>
280S: Supported
281F: /src/mainboard/intel/strago/
282
283
284
Felix Singer32608cf2020-11-22 00:38:16 +0000285KONTRON BSL6 MAINBOARD
286M: Felix Singer <felixsinger@posteo.net>
287M: Nico Huber <nico.h@gmx.de>
288S: Supported
289F: src/mainboard/kontron/bsl6/
290
Felix Singer5a41b0d2020-11-23 20:20:38 +0000291KONTRON MAL10 MAINBOARD
292M: Maxim Polyakov <max.senia.poliak@gmail.com>
293M: Nico Huber <nico.h@gmx.de>
294M: Felix Singer <felixsinger@posteo.net>
295S: Supported
296F: src/mainboard/kontron/mal10/
297
Felix Singer32608cf2020-11-22 00:38:16 +0000298
299
Angel Pons8d6f5872020-06-07 00:25:42 +0200300LENOVO MAINBOARDS
301M: Alexander Couzens <lynxis@fe80.eu>
302M: Patrick Rudolph <siro@das-labor.org>
303S: Maintained
304F: src/mainboard/lenovo/
305
306LENOVO G505S MAINBOARD
307M: Mike Banon <mikebdp2@gmail.com>
308S: Maintained
309F: src/mainboard/lenovo/g505s/
310
311
312
313LIBRETREND LT1000 MAINBOARD
314M: Piotr Król <piotr.krol@3mdeb.com>
315M: Michał Żygowski <michal.zygowski@3mdeb.com>
316S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100317F: src/mainboard/libretrend/lt1000/
Angel Pons8d6f5872020-06-07 00:25:42 +0200318
319
Jonathan Zhangdd4f6432020-06-30 11:39:09 -0700320OCP DELTALAKE MAINBOARD
321M: Jonathan Zhang <jonzhang@fb.com>
322M: Reddy Chagam <anjaneya.chagam@intel.com>
323M: Johnny Lin <Johnny_Lin@wiwynn.com>
324M: Morgan Jang <Morgan_Jang@wiwynn.com>
325M: Ryback Hung <<Ryback.Hung@quantatw.com>
326M: Bryant Ou <Bryant.Ou@quantatw.com>
327S: Supported
Felix Singer3c02ed92020-11-30 06:56:08 +0100328F: src/mainboard/ocp/deltalake/
Angel Pons8d6f5872020-06-07 00:25:42 +0200329
Jonathan Zhanged849ed2020-05-01 11:23:46 -0700330OCP TIOGAPASS MAINBOARD
331M: Jonathan Zhang <jonzhang@fb.com>
332M: Reddy Chagam <anjaneya.chagam@intel.com>
333M: Johnny Lin <Johnny_Lin@wiwynn.com>
334M: Morgan Jang <Morgan_Jang@wiwynn.com>
335M: Ryback Hung <<Ryback.Hung@quantatw.com>
336M: Bryant Ou <Bryant.Ou@quantatw.com>
337S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100338F: src/mainboard/ocp/tiogapass/
Jonathan Zhanged849ed2020-05-01 11:23:46 -0700339
Angel Pons8d6f5872020-06-07 00:25:42 +0200340
341
342OPENCELLULAR MAINBOARDS
343M: Christian Walter <christian.walter@9elements.com>
344M: Patrick Rudolph <patrick.rudolph@9elements.com>
345S: Supported
346F: src/mainboard/opencellular/elgon/
347
348
349
350PC ENGINES ALL MAINBOARDS
351M: Piotr Król <piotr.krol@3mdeb.com>
352M: Michał Żygowski <michal.zygowski@3mdeb.com>
353S: Supported
354F: src/mainboard/pcengines/
355
356
357
Frans Hendriksa78146c2019-07-19 10:30:20 +0200358PORTWELL PQ-M107 MAINBOARD
359M: Frans Hendriks <fhendriks@eltan.com>
360M: Wim Vervoorn <wvervoorn@eltan.com>
361S: Maintained
362F: src/mainboard/portwell/m107/
363
Martin Roth2a3434752016-03-05 18:31:29 -0700364
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700365
Angel Pons8d6f5872020-06-07 00:25:42 +0200366PROTECTLI ALL MAINBOARDS
367M: Piotr Król <piotr.krol@3mdeb.com>
368M: Michał Żygowski <michal.zygowski@3mdeb.com>
369S: Maintained
370F: src/mainboard/protectli/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700371
Angel Pons8d6f5872020-06-07 00:25:42 +0200372
373
Christian Walter02b39372020-06-17 20:17:59 +0200374PRODRIVE HERMES MAINBOARD
375M: Christian Walter <christian.walter@9elements.com>
376M: Patrick Rudolph <patrick.rudolph@9elements.com>
377S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100378F: src/mainboard/prodrive/hermes/
Christian Walter02b39372020-06-17 20:17:59 +0200379
380
381
Angel Pons8d6f5872020-06-07 00:25:42 +0200382PURISM MAINBOARDS
383M: Matt DeVillier <matt.devillier@puri.sm>
Julius Werner848f5db2017-09-11 13:12:48 -0700384S: Supported
Felix Singer3c02ed92020-11-30 06:56:08 +0100385F: src/mainboard/purism/
Angel Pons8d6f5872020-06-07 00:25:42 +0200386
387
388
389SAMSUNG CHROMEOS MAINBOARDS
390M: Matt DeVillier <MrChromebox@gmail.com>
391S: Maintained
392F: src/mainboard/samsung/lumpy/
393F: src/mainboard/samsung/stumpy/
394
395
396
Felix Singer32608cf2020-11-22 00:38:16 +0000397SIEMENS CHILI MAINBAORD
398M: Felix Singer <felixsinger@posteo.net>
399M: Nico Huber <nico.h@gmx.de>
400S: Supported
401F: src/mainboard/siemens/chili/
402
Angel Pons8d6f5872020-06-07 00:25:42 +0200403SIEMENS MC_xxxx MAINBOARDS
404M: Werner Zeh <werner.zeh@siemens.com>
405S: Maintained
406F: src/mainboard/siemens/mc_apl1/
407
408
409
Jeremy Soller625af2b2020-07-21 08:23:39 -0600410SYSTEM76 MAINBOARDS
411M: Jeremy Soller <jeremy@system76.com>
412S: Maintained
413F: src/mainboard/system76/
414
415
416
Angel Pons8d6f5872020-06-07 00:25:42 +0200417SUPERMICRO X10SLM+-F MAINBOARD
418M: Tristan Corrick <tristan@corrick.kiwi>
419S: Maintained
420F: src/mainboard/supermicro/x10slm-f/
421
422SUPERMICRO X11-LGA1151-SERIES
423M: Michael Niewöhner <foss@mniewoehner.de>
424S: Maintained
Michael Niewöhner5fd29312020-11-13 01:13:46 +0100425F: src/mainboard/supermicro/x11-lga1151-series/
Angel Pons8d6f5872020-06-07 00:25:42 +0200426
427################################################################################
428# Architectures
429################################################################################
Julius Werner848f5db2017-09-11 13:12:48 -0700430
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700431ARM ARCHITECTURE
Julius Wernerc34e41f2017-06-09 14:26:03 -0700432M: Julius Werner <jwerner@chromium.org>
433S: Supported
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700434F: src/arch/arm/
Julius Wernerc34e41f2017-06-09 14:26:03 -0700435F: src/arch/arm64/
Julius Wernerc34e41f2017-06-09 14:26:03 -0700436F: src/soc/nvidia/
437F: src/soc/rockchip/
438F: util/nvidia/
439F: util/rockchip/
440
Angel Pons8d6f5872020-06-07 00:25:42 +0200441PPC64 ARCHITECTURE
442M: Ronald Minnich <rminnich@gmail.com>
443M: Timothy Pearson <tpearson@raptorengineeringinc.com>
444S: Maintained
445F: src/arch/ppc64/
446F: src/cpu/qemu-power8/
447F: src/mainboard/emulation/qemu-power8/
448
449RISC-V ARCHITECTURE
450M: Ronald Minnich <rminnich@gmail.com>
451R: Philipp Hug <philipp@hug.cx>
452S: Maintained
453F: src/arch/riscv/
454F: src/soc/sifive/
455F: src/soc/ucb/
456F: src/mainboard/emulation/*-riscv/
457F: src/mainboard/sifive/
458F: util/riscv/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700459
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700460X86 ARCHITECTURE
461F: src/arch/x86/
462F: src/cpu/x86/
463F: src/drivers/pc80/
464F: src/include/pc80/
465F: src/include/cpu/x86/
466
Angel Pons8d6f5872020-06-07 00:25:42 +0200467################################################################################
468# Embedded Controllers
469################################################################################
470
471LENOVO EC
472M: Alexander Couzens <lynxis@fe80.eu>
473S: Maintained
474F: src/ec/lenovo/
475
Jeremy Soller625af2b2020-07-21 08:23:39 -0600476SYSTEM76 EC
477M: Jeremy Soller <jeremy@system76.com>
478S: Maintained
479F: src/ec/system76/
480
Angel Pons8d6f5872020-06-07 00:25:42 +0200481################################################################################
482# Northbridges
483################################################################################
484
485INTEL HASWELL NORTHBRIDGE
486M: Angel Pons <th3fanbus@gmail.com>
487S: Maintained
488F: src/northbridge/intel/haswell/
489
490INTEL PINEVIEW CHIPSET
491M: Damien Zammit <damien@zamaudio.com>
492M: Angel Pons <th3fanbus@gmail.com>
493S: Odd Fixes
494F: src/northbridge/intel/pineview/
495
496INTEL SANDYBRIDGE NORTHBRIDGE
497M: Angel Pons <th3fanbus@gmail.com>
498S: Maintained
499F: src/northbridge/intel/sandybridge/
500
501INTEL X4X CHIPSET
502M: Damien Zammit <damien@zamaudio.com>
503M: Angel Pons <th3fanbus@gmail.com>
504S: Odd Fixes
505F: src/northbridge/intel/x4x/
506
507################################################################################
508# Platforms
509################################################################################
510
511AMD SUPPORT
512F: src/vendorcode/amd/
513F: src/cpu/amd/
514F: src/northbridge/amd/
515F: src/southbridge/amd/
516F: src/include/cpu/amd/
517
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700518INTEL SUPPORT
Martin Roth954338d2017-03-05 11:20:18 -0700519M: Patrick Rudolph <siro@das-labor.org>
520S: Maintained
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700521F: src/vendorcode/intel/
522F: src/cpu/intel/
523F: src/northbridge/intel/
524F: src/southbridge/intel/
525F: src/soc/intel/
526F: src/drivers/intel/
527F: src/include/cpu/intel/
528
Angel Pons8d6f5872020-06-07 00:25:42 +0200529INTEL FSP DENVERTON-NS SOC & HARCUVAR CRB
Mariusz Szafranski778c4f8c2020-11-19 13:05:32 +0100530M: Suresh Bellampalli <suresh.bellampalli@intel.com>
Angel Pons8d6f5872020-06-07 00:25:42 +0200531M: Vanessa Eusebio <vanessa.f.eusebio@intel.com>
Mariusz Szafranski778c4f8c2020-11-19 13:05:32 +0100532M: Michal Motyl <michalx.motyl@intel.com>
533M: Mariusz Szafranski <mariuszx.szafranski@intel.com>
534S: Maintained
Angel Pons8d6f5872020-06-07 00:25:42 +0200535F: src/mainboard/intel/harcuvar/
536F: src/soc/intel/denverton_ns/
Angel Pons8d6f5872020-06-07 00:25:42 +0200537
538INTEL FSP 1.1
539M: Lee Leahy <leroy.p.leahy@intel.com>
540M: Huang Jin <huang.jin@intel.com>
541M: York Yang <york.yang@intel.com>
542S: Supported
543F: src/drivers/intel/fsp1_1/
544
545INTEL FSP 2.0
546M: Andrey Petrov <andrey.petrov@gmail.com>
547S: Maintained
548F: src/drivers/intel/fsp2_0/
549
550################################################################################
551# Systems on a Chip
552################################################################################
553
Felix Heldfef413e2020-12-02 15:57:24 +0100554AMD Cezanne
555M: Marshall Dawson <marshalldawson3rd@gmail.com>
556M: Felix Held <felix-coreboot@felixheld.de>
557M: Jason Glenesk <jason.glenesk@gmail.com>
558S: Maintained
559F: src/soc/amd/cezanne/
560
561AMD common SoC code
562M: Marshall Dawson <marshalldawson3rd@gmail.com>
563M: Felix Held <felix-coreboot@felixheld.de>
564M: Jason Glenesk <jason.glenesk@gmail.com>
565S: Maintained
566F: src/soc/amd/common/
567
Felix Held93231b42020-11-13 15:56:28 +0100568AMD Picasso
569M: Marshall Dawson <marshalldawson3rd@gmail.com>
570M: Felix Held <felix-coreboot@felixheld.de>
571M: Jason Glenesk <jason.glenesk@gmail.com>
572S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100573F: src/soc/amd/picasso/
574F: src/vendorcode/amd/fsp/picasso/
Felix Held93231b42020-11-13 15:56:28 +0100575
Angel Pons8d6f5872020-06-07 00:25:42 +0200576INTEL APOLLOLAKE_SOC
577M: Andrey Petrov <andrey.petrov@gmail.com>
578S: Maintained
579F: src/soc/intel/apollolake/
580
581INTEL BRASWELL SOC
582M: Piotr Król <piotr.krol@3mdeb.com>
583M: Michał Żygowski <michal.zygowski@3mdeb.com>
584M: Frans Hendriks <fhendriks@eltan.com>
585S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100586F: /src/soc/intel/braswell/
587F: /src/vendorcode/intel/fsp/fsp1_1/braswell/
Angel Pons8d6f5872020-06-07 00:25:42 +0200588
Jonathan Zhange9b0b082020-06-30 13:28:52 -0700589INTEL Xeon Sacalable Processor Family
590M: Jonathan Zhang <jonzhang@fb.com>
591M: Reddy Chagam <anjaneya.chagam@intel.com>
592M: Johnny Lin <Johnny_Lin@wiwynn.com>
593M: Morgan Jang <Morgan_Jang@wiwynn.com>
594M: Ryback Hung <<Ryback.Hung@quantatw.com>
595M: Bryant Ou <Bryant.Ou@quantatw.com>
596S: Supported
597F: src/soc/intel/xeon_sp
Felix Singer3c02ed92020-11-30 06:56:08 +0100598F: src/vendorcode/intel/fsp/fsp2_0/skylake_sp/
599F: src/vendorcode/intel/fsp/fsp2_0/copperlake_sp/
Jonathan Zhange9b0b082020-06-30 13:28:52 -0700600
Julius Wernerb1263802020-08-24 14:24:21 -0700601MEDIATEK SOCS
602M: Hung-Te Lin <hungte@chromium.org>
603S: Supported
Felix Singer3c02ed92020-11-30 06:56:08 +0100604F: src/soc/mediatek/
Julius Wernerb1263802020-08-24 14:24:21 -0700605
Angel Pons8d6f5872020-06-07 00:25:42 +0200606ORPHANED ARM SOCS
607S: Orphaned
608F: src/cpu/armltd/
Sam Lewisad7b2e22020-08-03 20:18:29 +1000609F: src/soc/ti/
Angel Pons8d6f5872020-06-07 00:25:42 +0200610F: src/soc/qualcomm/
611F: src/soc/samsung/
612F: util/exynos/
613F: util/ipqheader/
614
615################################################################################
616# Payloads
617################################################################################
618
619NVRAM
620F: util/nvramtool/
621F: payloads/nvramcui/
622
623LIBPAYLOAD
624F: payloads/libpayload/
625
626COREINFO PAYLOAD
627F: payloads/coreinfo/
628
629EXTERNAL PAYLOADS INTEGRATION
630M: Stefan Reinauer <stefan.reinauer@coreboot.org>
631M: Martin Roth <gaumless@gmail.com>
Felix Singer3c02ed92020-11-30 06:56:08 +0100632F: payloads/external/
Angel Pons8d6f5872020-06-07 00:25:42 +0200633
634LINUXBOOT PAYLOAD INTEGRATION
635M: Christian Walter <christian.walter@9elements.com>
636M: Marcello Sylvester Bauer <info@marcellobauer.com>
637S: Supported
Felix Singer3c02ed92020-11-30 06:56:08 +0100638F: payloads/external/LinuxBoot/
Angel Pons8d6f5872020-06-07 00:25:42 +0200639
640################################################################################
641# Utilities
642################################################################################
643
644ABUILD
645M: Patrick Georgi <patrick@georgi-clan.de>
646M: Martin Roth <gaumless@gmail.com>
647S: Supported
648F: util/abuild/
649
650BOARD STATUS
651F: util/board_status/
652
653BUILD SYSTEM
654M: Patrick Georgi <patrick@georgi-clan.de>
655M: Martin Roth <gaumless@gmail.com>
656S: Supported
657F: Makefile
658F: *.inc
659F: src/include/kconfig.h
660F: util/kconfig/
661F: util/sconfig/
662F: util/xcompile/
663F: util/genbuild_h/
664
665TOOLCHAIN
666F: util/crossgcc/
667
668DOCKER
669M: Martin Roth <gaumless@gmail.com>
670S: Supported
671F: util/docker/
672
673GIT
674F: .git*
675F: /util/gitconfig
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700676
Stefan Reinauer2e38cc52015-05-06 11:15:38 -0700677LINT SCRIPTS
678M: Patrick Georgi <patrick@georgi-clan.de>
Martin Roth057ce5f2016-03-17 12:03:00 -0600679M: Martin Roth <gaumless@gmail.com>
Stefan Reinauer2e38cc52015-05-06 11:15:38 -0700680S: Supported
681F: util/lint/
682
Angel Pons8d6f5872020-06-07 00:25:42 +0200683IFDTOOL
684M: Stefan Reinauer <stefan.reinauer@coreboot.org>
685F: util/ifdtool/
686
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700687INTELTOOL
688M: Stefan Reinauer <stefan.reinauer@coreboot.org>
689F: util/inteltool/
690
Philipp Deppenwiese4cd9a112016-03-23 00:02:40 +0100691INTELMETOOL
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100692M: Christian Walter <christian.walter@9elements.com>
Philipp Deppenwiese4cd9a112016-03-23 00:02:40 +0100693F: util/intelmetool/
694
Nicola Corna4f4fc182017-02-23 16:53:45 +0100695ME_CLEANER
696M: Nicola Corna <nicola@corna.info>
697W: https://github.com/corna/me_cleaner
698S: Maintained
699F: util/me_cleaner/
700
Angel Pons8d6f5872020-06-07 00:25:42 +0200701################################################################################
702# Miscellaneous
703################################################################################
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700704
Angel Pons8d6f5872020-06-07 00:25:42 +0200705ASPEED AST2050 DRIVER & COMMON CODE
706M: Timothy Pearson <tpearson@raptorengineeringinc.com>
Patrick Georgi65ff63f2015-05-21 18:54:10 +0200707S: Supported
Angel Pons8d6f5872020-06-07 00:25:42 +0200708F: src/drivers/aspeed/common/
709F: src/drivers/aspeed/ast2050/
Patrick Georgi65ff63f2015-05-21 18:54:10 +0200710
Angel Pons8d6f5872020-06-07 00:25:42 +0200711ACPI
712F: src/acpi/
713F: src/arch/x86/acpi/
714F: util/acpi/
715
716LZ4 COMPRESSION
717M: Julius Werner <jwerner@chromium.org>
718S: Supported
719F: src/commonlib/lz4*
720F: payloads/libpayload/liblz4/
721F: util/cbfstool/lz4/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700722
723BINARY OBJECTS
724F: 3rdparty/blobs/
725
726VERIFIED BOOT
727F: 3rdparty/vboot/
728F: src/vendorcode/google/chromeos/
729F: src/include/tpm.h
730F: src/include/tpm_lite/
731
732RESOURCE ALLOCATOR
733F: src/device/*
734F: src/include/device/
735F: src/include/cpu/cpu.h
736
737OPTION ROM EXECUTION & X86EMU
738F: src/device/oprom/
739
740CBFS
Julius Werner0655f782019-12-11 16:19:48 -0800741M: Julius Werner <jwerner@chromium.org>
742F: src/include/cbfs*
743F: src/commonlib/bsd/include/commonlib/bsd/cbfs*
744F: src/commonlib/bsd/cbfs*
745F: src/lib/cbfs.c
746
747CBFSTOOL
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700748F: util/cbfstool/
749
750CBMEM
751F: src/include/cbmem.h
752F: src/include/cbmem_id.h
753F: util/cbmem/
754
755CONSOLE
756F: src/console/
757F: src/include/console/
758F: src/drivers/uart/
759
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700760VERIFIED BOOT 2
761M: Aaron Durbin <adurbin@chromium.org>
Philipp Deppenwiese8f6af1c2018-11-23 19:13:54 +0100762F: src/security/vboot/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700763
Philipp Deppenwiese6507e6f2016-06-22 19:01:47 +0200764TPM SUPPORT
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100765M: Christian Walter <christian.walter@9elements.com>
Philipp Deppenwiese8f6af1c2018-11-23 19:13:54 +0100766S: Supported
Philipp Deppenwiese6507e6f2016-06-22 19:01:47 +0200767F: src/drivers/*/tpm/
Felix Singer3c02ed92020-11-30 06:56:08 +0100768F: src/security/tpm/
Philipp Deppenwiese6507e6f2016-06-22 19:01:47 +0200769
Martin Rothe801fcb2017-05-27 10:54:02 -0600770SUPERIOS & SUPERIOTOOL
771M: Felix Held <felix-coreboot@felixheld.de>
772S: Maintained
773F: src/superio/
774F: util/superiotool/
775
Julius Wernerc34e41f2017-06-09 14:26:03 -0700776MEMLAYOUT
777M: Julius Werner <jwerner@chromium.org>
778S: Supported
779F: */memlayout.h
780F: *.ld
781
Frans Hendriksf20bf922019-06-13 14:14:56 +0200782ELTAN VENDORCODE
783M: Frans Hendriks <fhendriks@eltan.com>
784M: Wim Vervoorn <wvervoorn@eltan.com>
785S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100786F: src/vendorcode/eltan/
Frans Hendriksf20bf922019-06-13 14:14:56 +0200787
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700788MISSING: TIMERS / DELAYS
789
790MISSING: TIMESTAMPS
791
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700792MISSING: FMAP
793
794MISSING: GPIO
795
796MISSING: SMP
797
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700798MISSING: DMP / QEMU-X86
799
800MISSING: ELOG
801
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700802MISSING: SPI
803
Angel Pons0b500992020-04-15 16:47:36 +0200804# *** Infrastructure Owners ***
Martin Roth19fdedb2017-06-25 15:44:16 -0600805# This is intended to let people know who they should contact for issues with various infrastructure pieces.
806# Hardware
807# Owners: Stefan, Patrick
Sumeet Pawnikar1638a852017-09-12 22:17:55 +0530808# Backups:
Martin Roth19fdedb2017-06-25 15:44:16 -0600809
810# Web Server
811# Owners: Stefan, Patrick
812# Backups:
813
814# Website
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100815# Owners: Martin
Martin Roth19fdedb2017-06-25 15:44:16 -0600816# Backups: Patrick, Stefan
817
818# Documentation Website
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100819# Owners: Patrick
Martin Roth19fdedb2017-06-25 15:44:16 -0600820# Backups:
821
Patrick Georgi1d348942019-07-17 20:40:50 +0200822CODE OF CONDUCT
823M: Stefan Reinauer <stefan.reinauer@coreboot.org>
824M: Patrick Georgi <patrick@coreboot.org>
825M: Ronald Minnich <rminnich@coreboot.org>
826M: Martin Roth <martin@coreboot.org>
827S: Maintained
828F: Documentation/community/code_of_conduct.md
829
Martin Roth19fdedb2017-06-25 15:44:16 -0600830# Wiki
831# Owners: Stefan, Patrick
832# Backups:
833
834# Gerrit
835# Owners: Stefan, Patrick
836# Backups: Martin
837
838# Jenkins
839# Owners: Patrick, Martin
840# Backups:
841
842# Bug Tracker
843# Owners: Lynxis,
844# Backups: Martin,
845
846# Mailing List
847# Owners: Stefan, Patrick
848# Backups: Martin,
849
850# Software Freedom Conservancy
851# Main contact: Martin
852# “Official” contact: Stefan