blob: 49fbc38c627ec3f2d8252743bbfc24d5e3f23d64 [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
Tristan Corrickd88cf5f2018-12-06 19:26:47 +1300177ASUS MAXIMUS IV GENE-Z MAINBOARD
178M: Tristan Corrick <tristan@corrick.kiwi>
179S: Maintained
180F: src/mainboard/asus/maximus_iv_gene-z/
181
Angel Pons33849042018-12-01 23:28:03 +0100182ASUS P5QC PRO MAINBOARD & VARIANTS
183M: Angel Pons <th3fanbus@gmail.com>
184S: Maintained
185F: src/mainboard/asus/p5qc/
186
Angel Ponsf2aaddc2020-06-06 22:38:38 +0200187ASUS P5QPL-AM MAINBOARD & VARIANTS
188M: Angel Pons <th3fanbus@gmail.com>
189S: Maintained
190F: src/mainboard/asus/p5qpl-am/
191
Tristan Corrickd88cf5f2018-12-06 19:26:47 +1300192ASUS P8H61-M LX MAINBOARD
193M: Tristan Corrick <tristan@corrick.kiwi>
194S: Maintained
195F: src/mainboard/asus/p8h61-m_lx/
196
Angel Ponsf2aaddc2020-06-06 22:38:38 +0200197ASUS P8H61-M LX3 R2.0 MAINBOARD
198M: Angel Pons <th3fanbus@gmail.com>
199S: Maintained
200F: src/mainboard/asus/p8h61-m_lx3_r2_0/
201
Angel Pons33849042018-12-01 23:28:03 +0100202ASUS P8H61-M PRO MAINBOARD
203M: Angel Pons <th3fanbus@gmail.com>
204S: Maintained
205F: src/mainboard/asus/p8h61-m_pro/
206
Vlado Cibic2bf6a302019-06-09 06:53:50 +0000207ASUS P8Z77-M PRO MAINBOARD
208M: Vlado Cibic <vladocb@protonmail.com>
209S: Maintained
210F: src/mainboard/asus/p8z77-m_pro/
211
Angel Ponsf2aaddc2020-06-06 22:38:38 +0200212ASUS P8Z77-V LX2 MAINBOARD
213M: Angel Pons <th3fanbus@gmail.com>
214S: Maintained
215F: src/mainboard/asus/p8z77-v_lx2/
216
Michał Żygowskib9f9f6c2018-12-21 12:23:27 +0100217
Michael Niewöhner489a11e2019-10-17 14:57:52 +0200218
Felix Singer63975f02020-10-12 21:47:43 +0000219CLEVO MAINBOARDS
220M: Felix Singer <felixsinger@posteo.net>
Michael Niewöhnere4478632020-07-19 22:56:35 +0200221M: Michael Niewöhner <foss@mniewoehner.de>
Felix Singer63975f02020-10-12 21:47:43 +0000222S: Supported
Michael Niewöhner5fd29312020-11-13 01:13:46 +0100223F: src/mainboard/clevo/
Felix Singer63975f02020-10-12 21:47:43 +0000224
225
226
Frans Hendriks1583fcd2019-06-05 10:18:23 +0200227FACEBOOK FBG1701 MAINBOARD
228M: Frans Hendriks <fhendriks@eltan.com>
229M: Wim Vervoorn <wvervoorn@eltan.com>
230S: Maintained
231F: src/mainboard/facebook/fbg1701/
232
Wim Vervoorn4ba70a72019-12-05 13:48:11 +0100233FACEBOOK MONOLITH MAINBOARD
234M: Frans Hendriks <fhendriks@eltan.com>
235M: Wim Vervoorn <wvervoorn@eltan.com>
236S: Maintained
237F: src/mainboard/facebook/monolith/
238
Angel Pons8d6f5872020-06-07 00:25:42 +0200239
240
241GETAC P470 MAINBOARD
242M: Patrick Georgi <patrick@georgi.software>
243S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100244F: src/mainboard/getac/p470/
Angel Pons8d6f5872020-06-07 00:25:42 +0200245
246
247
248GIGABYTE GA-G41M-ES2L MAINBOARD
249M: Damien Zammit <damien@zamaudio.com>
250S: Odd Fixes
Felix Singer3c02ed92020-11-30 06:56:08 +0100251F: src/mainboard/gigabyte/ga-g41m-es2l/
Angel Pons8d6f5872020-06-07 00:25:42 +0200252
253GIGABYTE GA-H61M SERIES MAINBOARDS
254M: Angel Pons <th3fanbus@gmail.com>
255S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100256F: src/mainboard/gigabyte/ga-h61m-series/
Angel Pons8d6f5872020-06-07 00:25:42 +0200257
258
259
260GOOGLE PANTHER MAINBOARD
261M: Stefan Reinauer <stefan.reinauer@coreboot.org>
262S: Supported
263F: src/mainboard/google/panther/
264
265GOOGLE MAINBOARDS (Intel-based, legacy/inactive)
266M: Matt DeVillier <MrChromebox@gmail.com>
267S: Maintained
268F: src/mainboard/google/auron/
269F: src/mainboard/google/beltino/
270F: src/mainboard/google/butterfly/
271F: src/mainboard/google/cyan/
272F: src/mainboard/google/glados/
273F: src/mainboard/google/jecht/
274F: src/mainboard/google/link/
275F: src/mainboard/google/parrot/
276F: src/mainboard/google/slippy/
277F: src/mainboard/google/stout/
278
279
280
281INTEL D510MO MAINBOARD
282M: Damien Zammit <damien@zamaudio.com>
283S: Odd Fixes
Felix Singer3c02ed92020-11-30 06:56:08 +0100284F: src/mainboard/intel/d510mo/
Angel Pons8d6f5872020-06-07 00:25:42 +0200285
286INTEL STRAGO MAINBOARD
287M: Hannah Williams <hannah.williams@intel.com>
288S: Supported
289F: /src/mainboard/intel/strago/
290
291
292
Felix Singer32608cf2020-11-22 00:38:16 +0000293KONTRON BSL6 MAINBOARD
294M: Felix Singer <felixsinger@posteo.net>
295M: Nico Huber <nico.h@gmx.de>
296S: Supported
297F: src/mainboard/kontron/bsl6/
298
Felix Singer5a41b0d2020-11-23 20:20:38 +0000299KONTRON MAL10 MAINBOARD
300M: Maxim Polyakov <max.senia.poliak@gmail.com>
301M: Nico Huber <nico.h@gmx.de>
302M: Felix Singer <felixsinger@posteo.net>
303S: Supported
304F: src/mainboard/kontron/mal10/
305
Felix Singer32608cf2020-11-22 00:38:16 +0000306
307
Angel Pons8d6f5872020-06-07 00:25:42 +0200308LENOVO MAINBOARDS
309M: Alexander Couzens <lynxis@fe80.eu>
310M: Patrick Rudolph <siro@das-labor.org>
311S: Maintained
312F: src/mainboard/lenovo/
313
314LENOVO G505S MAINBOARD
315M: Mike Banon <mikebdp2@gmail.com>
316S: Maintained
317F: src/mainboard/lenovo/g505s/
318
319
320
321LIBRETREND LT1000 MAINBOARD
322M: Piotr Król <piotr.krol@3mdeb.com>
323M: Michał Żygowski <michal.zygowski@3mdeb.com>
324S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100325F: src/mainboard/libretrend/lt1000/
Angel Pons8d6f5872020-06-07 00:25:42 +0200326
327
Jonathan Zhangdd4f6432020-06-30 11:39:09 -0700328OCP DELTALAKE MAINBOARD
329M: Jonathan Zhang <jonzhang@fb.com>
330M: Reddy Chagam <anjaneya.chagam@intel.com>
331M: Johnny Lin <Johnny_Lin@wiwynn.com>
332M: Morgan Jang <Morgan_Jang@wiwynn.com>
333M: Ryback Hung <<Ryback.Hung@quantatw.com>
334M: Bryant Ou <Bryant.Ou@quantatw.com>
335S: Supported
Felix Singer3c02ed92020-11-30 06:56:08 +0100336F: src/mainboard/ocp/deltalake/
Angel Pons8d6f5872020-06-07 00:25:42 +0200337
Jonathan Zhanged849ed2020-05-01 11:23:46 -0700338OCP TIOGAPASS MAINBOARD
339M: Jonathan Zhang <jonzhang@fb.com>
340M: Reddy Chagam <anjaneya.chagam@intel.com>
341M: Johnny Lin <Johnny_Lin@wiwynn.com>
342M: Morgan Jang <Morgan_Jang@wiwynn.com>
343M: Ryback Hung <<Ryback.Hung@quantatw.com>
344M: Bryant Ou <Bryant.Ou@quantatw.com>
345S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100346F: src/mainboard/ocp/tiogapass/
Jonathan Zhanged849ed2020-05-01 11:23:46 -0700347
Angel Pons8d6f5872020-06-07 00:25:42 +0200348
349
350OPENCELLULAR MAINBOARDS
351M: Christian Walter <christian.walter@9elements.com>
352M: Patrick Rudolph <patrick.rudolph@9elements.com>
353S: Supported
354F: src/mainboard/opencellular/elgon/
355
356
357
358PC ENGINES ALL MAINBOARDS
359M: Piotr Król <piotr.krol@3mdeb.com>
360M: Michał Żygowski <michal.zygowski@3mdeb.com>
361S: Supported
362F: src/mainboard/pcengines/
363
364
365
Frans Hendriksa78146c2019-07-19 10:30:20 +0200366PORTWELL PQ-M107 MAINBOARD
367M: Frans Hendriks <fhendriks@eltan.com>
368M: Wim Vervoorn <wvervoorn@eltan.com>
369S: Maintained
370F: src/mainboard/portwell/m107/
371
Martin Roth2a3434752016-03-05 18:31:29 -0700372
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700373
Angel Pons8d6f5872020-06-07 00:25:42 +0200374PROTECTLI ALL MAINBOARDS
375M: Piotr Król <piotr.krol@3mdeb.com>
376M: Michał Żygowski <michal.zygowski@3mdeb.com>
377S: Maintained
378F: src/mainboard/protectli/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700379
Angel Pons8d6f5872020-06-07 00:25:42 +0200380
381
Christian Walter02b39372020-06-17 20:17:59 +0200382PRODRIVE HERMES MAINBOARD
383M: Christian Walter <christian.walter@9elements.com>
384M: Patrick Rudolph <patrick.rudolph@9elements.com>
385S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100386F: src/mainboard/prodrive/hermes/
Christian Walter02b39372020-06-17 20:17:59 +0200387
388
389
Angel Pons8d6f5872020-06-07 00:25:42 +0200390PURISM MAINBOARDS
391M: Matt DeVillier <matt.devillier@puri.sm>
Julius Werner848f5db2017-09-11 13:12:48 -0700392S: Supported
Felix Singer3c02ed92020-11-30 06:56:08 +0100393F: src/mainboard/purism/
Angel Pons8d6f5872020-06-07 00:25:42 +0200394
395
396
397SAMSUNG CHROMEOS MAINBOARDS
398M: Matt DeVillier <MrChromebox@gmail.com>
399S: Maintained
400F: src/mainboard/samsung/lumpy/
401F: src/mainboard/samsung/stumpy/
402
403
404
Felix Singer32608cf2020-11-22 00:38:16 +0000405SIEMENS CHILI MAINBAORD
406M: Felix Singer <felixsinger@posteo.net>
407M: Nico Huber <nico.h@gmx.de>
408S: Supported
409F: src/mainboard/siemens/chili/
410
Angel Pons8d6f5872020-06-07 00:25:42 +0200411SIEMENS MC_xxxx MAINBOARDS
412M: Werner Zeh <werner.zeh@siemens.com>
413S: Maintained
414F: src/mainboard/siemens/mc_apl1/
415
416
417
Jeremy Soller625af2b2020-07-21 08:23:39 -0600418SYSTEM76 MAINBOARDS
419M: Jeremy Soller <jeremy@system76.com>
420S: Maintained
421F: src/mainboard/system76/
422
423
424
Angel Pons8d6f5872020-06-07 00:25:42 +0200425SUPERMICRO X10SLM+-F MAINBOARD
426M: Tristan Corrick <tristan@corrick.kiwi>
427S: Maintained
428F: src/mainboard/supermicro/x10slm-f/
429
430SUPERMICRO X11-LGA1151-SERIES
431M: Michael Niewöhner <foss@mniewoehner.de>
432S: Maintained
Michael Niewöhner5fd29312020-11-13 01:13:46 +0100433F: src/mainboard/supermicro/x11-lga1151-series/
Angel Pons8d6f5872020-06-07 00:25:42 +0200434
435################################################################################
436# Architectures
437################################################################################
Julius Werner848f5db2017-09-11 13:12:48 -0700438
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700439ARM ARCHITECTURE
Julius Wernerc34e41f2017-06-09 14:26:03 -0700440M: Julius Werner <jwerner@chromium.org>
441S: Supported
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700442F: src/arch/arm/
Julius Wernerc34e41f2017-06-09 14:26:03 -0700443F: src/arch/arm64/
Julius Wernerc34e41f2017-06-09 14:26:03 -0700444F: src/soc/nvidia/
445F: src/soc/rockchip/
446F: util/nvidia/
447F: util/rockchip/
448
Angel Pons8d6f5872020-06-07 00:25:42 +0200449PPC64 ARCHITECTURE
450M: Ronald Minnich <rminnich@gmail.com>
451M: Timothy Pearson <tpearson@raptorengineeringinc.com>
452S: Maintained
453F: src/arch/ppc64/
454F: src/cpu/qemu-power8/
455F: src/mainboard/emulation/qemu-power8/
456
457RISC-V ARCHITECTURE
458M: Ronald Minnich <rminnich@gmail.com>
459R: Philipp Hug <philipp@hug.cx>
460S: Maintained
461F: src/arch/riscv/
462F: src/soc/sifive/
463F: src/soc/ucb/
464F: src/mainboard/emulation/*-riscv/
465F: src/mainboard/sifive/
466F: util/riscv/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700467
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700468X86 ARCHITECTURE
469F: src/arch/x86/
470F: src/cpu/x86/
471F: src/drivers/pc80/
472F: src/include/pc80/
473F: src/include/cpu/x86/
474
Angel Pons8d6f5872020-06-07 00:25:42 +0200475################################################################################
476# Embedded Controllers
477################################################################################
478
479LENOVO EC
480M: Alexander Couzens <lynxis@fe80.eu>
481S: Maintained
482F: src/ec/lenovo/
483
Jeremy Soller625af2b2020-07-21 08:23:39 -0600484SYSTEM76 EC
485M: Jeremy Soller <jeremy@system76.com>
486S: Maintained
487F: src/ec/system76/
488
Angel Pons8d6f5872020-06-07 00:25:42 +0200489################################################################################
490# Northbridges
491################################################################################
492
493INTEL HASWELL NORTHBRIDGE
494M: Angel Pons <th3fanbus@gmail.com>
495S: Maintained
496F: src/northbridge/intel/haswell/
497
498INTEL PINEVIEW CHIPSET
499M: Damien Zammit <damien@zamaudio.com>
500M: Angel Pons <th3fanbus@gmail.com>
501S: Odd Fixes
502F: src/northbridge/intel/pineview/
503
504INTEL SANDYBRIDGE NORTHBRIDGE
505M: Angel Pons <th3fanbus@gmail.com>
506S: Maintained
507F: src/northbridge/intel/sandybridge/
508
509INTEL X4X CHIPSET
510M: Damien Zammit <damien@zamaudio.com>
511M: Angel Pons <th3fanbus@gmail.com>
512S: Odd Fixes
513F: src/northbridge/intel/x4x/
514
515################################################################################
516# Platforms
517################################################################################
518
519AMD SUPPORT
520F: src/vendorcode/amd/
521F: src/cpu/amd/
522F: src/northbridge/amd/
523F: src/southbridge/amd/
524F: src/include/cpu/amd/
525
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700526INTEL SUPPORT
Martin Roth954338d2017-03-05 11:20:18 -0700527M: Patrick Rudolph <siro@das-labor.org>
528S: Maintained
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700529F: src/vendorcode/intel/
530F: src/cpu/intel/
531F: src/northbridge/intel/
532F: src/southbridge/intel/
533F: src/soc/intel/
534F: src/drivers/intel/
535F: src/include/cpu/intel/
536
Angel Pons8d6f5872020-06-07 00:25:42 +0200537INTEL FSP DENVERTON-NS SOC & HARCUVAR CRB
Mariusz Szafranski778c4f8c2020-11-19 13:05:32 +0100538M: Suresh Bellampalli <suresh.bellampalli@intel.com>
Angel Pons8d6f5872020-06-07 00:25:42 +0200539M: Vanessa Eusebio <vanessa.f.eusebio@intel.com>
Mariusz Szafranski778c4f8c2020-11-19 13:05:32 +0100540M: Michal Motyl <michalx.motyl@intel.com>
541M: Mariusz Szafranski <mariuszx.szafranski@intel.com>
542S: Maintained
Angel Pons8d6f5872020-06-07 00:25:42 +0200543F: src/mainboard/intel/harcuvar/
544F: src/soc/intel/denverton_ns/
Angel Pons8d6f5872020-06-07 00:25:42 +0200545
546INTEL FSP 1.1
547M: Lee Leahy <leroy.p.leahy@intel.com>
548M: Huang Jin <huang.jin@intel.com>
549M: York Yang <york.yang@intel.com>
550S: Supported
551F: src/drivers/intel/fsp1_1/
552
553INTEL FSP 2.0
554M: Andrey Petrov <andrey.petrov@gmail.com>
555S: Maintained
556F: src/drivers/intel/fsp2_0/
557
558################################################################################
559# Systems on a Chip
560################################################################################
561
Felix Heldfef413e2020-12-02 15:57:24 +0100562AMD Cezanne
563M: Marshall Dawson <marshalldawson3rd@gmail.com>
564M: Felix Held <felix-coreboot@felixheld.de>
565M: Jason Glenesk <jason.glenesk@gmail.com>
566S: Maintained
567F: src/soc/amd/cezanne/
568
569AMD common SoC code
570M: Marshall Dawson <marshalldawson3rd@gmail.com>
571M: Felix Held <felix-coreboot@felixheld.de>
572M: Jason Glenesk <jason.glenesk@gmail.com>
573S: Maintained
574F: src/soc/amd/common/
575
Felix Held93231b42020-11-13 15:56:28 +0100576AMD Picasso
577M: Marshall Dawson <marshalldawson3rd@gmail.com>
578M: Felix Held <felix-coreboot@felixheld.de>
579M: Jason Glenesk <jason.glenesk@gmail.com>
580S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100581F: src/soc/amd/picasso/
582F: src/vendorcode/amd/fsp/picasso/
Felix Held93231b42020-11-13 15:56:28 +0100583
Angel Pons8d6f5872020-06-07 00:25:42 +0200584INTEL APOLLOLAKE_SOC
585M: Andrey Petrov <andrey.petrov@gmail.com>
586S: Maintained
587F: src/soc/intel/apollolake/
588
589INTEL BRASWELL SOC
590M: Piotr Król <piotr.krol@3mdeb.com>
591M: Michał Żygowski <michal.zygowski@3mdeb.com>
592M: Frans Hendriks <fhendriks@eltan.com>
593S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100594F: /src/soc/intel/braswell/
595F: /src/vendorcode/intel/fsp/fsp1_1/braswell/
Angel Pons8d6f5872020-06-07 00:25:42 +0200596
Jonathan Zhange9b0b082020-06-30 13:28:52 -0700597INTEL Xeon Sacalable Processor Family
598M: Jonathan Zhang <jonzhang@fb.com>
599M: Reddy Chagam <anjaneya.chagam@intel.com>
600M: Johnny Lin <Johnny_Lin@wiwynn.com>
601M: Morgan Jang <Morgan_Jang@wiwynn.com>
602M: Ryback Hung <<Ryback.Hung@quantatw.com>
603M: Bryant Ou <Bryant.Ou@quantatw.com>
604S: Supported
605F: src/soc/intel/xeon_sp
Felix Singer3c02ed92020-11-30 06:56:08 +0100606F: src/vendorcode/intel/fsp/fsp2_0/skylake_sp/
607F: src/vendorcode/intel/fsp/fsp2_0/copperlake_sp/
Jonathan Zhange9b0b082020-06-30 13:28:52 -0700608
Julius Wernerb1263802020-08-24 14:24:21 -0700609MEDIATEK SOCS
610M: Hung-Te Lin <hungte@chromium.org>
611S: Supported
Felix Singer3c02ed92020-11-30 06:56:08 +0100612F: src/soc/mediatek/
Julius Wernerb1263802020-08-24 14:24:21 -0700613
Angel Pons8d6f5872020-06-07 00:25:42 +0200614ORPHANED ARM SOCS
615S: Orphaned
616F: src/cpu/armltd/
Sam Lewisad7b2e22020-08-03 20:18:29 +1000617F: src/soc/ti/
Angel Pons8d6f5872020-06-07 00:25:42 +0200618F: src/soc/qualcomm/
619F: src/soc/samsung/
620F: util/exynos/
621F: util/ipqheader/
622
623################################################################################
624# Payloads
625################################################################################
626
627NVRAM
628F: util/nvramtool/
629F: payloads/nvramcui/
630
631LIBPAYLOAD
632F: payloads/libpayload/
633
634COREINFO PAYLOAD
635F: payloads/coreinfo/
636
637EXTERNAL PAYLOADS INTEGRATION
638M: Stefan Reinauer <stefan.reinauer@coreboot.org>
639M: Martin Roth <gaumless@gmail.com>
Felix Singer3c02ed92020-11-30 06:56:08 +0100640F: payloads/external/
Angel Pons8d6f5872020-06-07 00:25:42 +0200641
642LINUXBOOT PAYLOAD INTEGRATION
643M: Christian Walter <christian.walter@9elements.com>
644M: Marcello Sylvester Bauer <info@marcellobauer.com>
645S: Supported
Felix Singer3c02ed92020-11-30 06:56:08 +0100646F: payloads/external/LinuxBoot/
Angel Pons8d6f5872020-06-07 00:25:42 +0200647
648################################################################################
649# Utilities
650################################################################################
651
652ABUILD
653M: Patrick Georgi <patrick@georgi-clan.de>
654M: Martin Roth <gaumless@gmail.com>
655S: Supported
656F: util/abuild/
657
658BOARD STATUS
659F: util/board_status/
660
661BUILD SYSTEM
662M: Patrick Georgi <patrick@georgi-clan.de>
663M: Martin Roth <gaumless@gmail.com>
664S: Supported
665F: Makefile
666F: *.inc
667F: src/include/kconfig.h
668F: util/kconfig/
669F: util/sconfig/
670F: util/xcompile/
671F: util/genbuild_h/
672
673TOOLCHAIN
674F: util/crossgcc/
675
676DOCKER
677M: Martin Roth <gaumless@gmail.com>
678S: Supported
679F: util/docker/
680
681GIT
682F: .git*
683F: /util/gitconfig
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700684
Stefan Reinauer2e38cc52015-05-06 11:15:38 -0700685LINT SCRIPTS
686M: Patrick Georgi <patrick@georgi-clan.de>
Martin Roth057ce5f2016-03-17 12:03:00 -0600687M: Martin Roth <gaumless@gmail.com>
Stefan Reinauer2e38cc52015-05-06 11:15:38 -0700688S: Supported
689F: util/lint/
690
Angel Pons8d6f5872020-06-07 00:25:42 +0200691IFDTOOL
692M: Stefan Reinauer <stefan.reinauer@coreboot.org>
693F: util/ifdtool/
694
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700695INTELTOOL
696M: Stefan Reinauer <stefan.reinauer@coreboot.org>
697F: util/inteltool/
698
Philipp Deppenwiese4cd9a112016-03-23 00:02:40 +0100699INTELMETOOL
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100700M: Christian Walter <christian.walter@9elements.com>
Philipp Deppenwiese4cd9a112016-03-23 00:02:40 +0100701F: util/intelmetool/
702
Nicola Corna4f4fc182017-02-23 16:53:45 +0100703ME_CLEANER
704M: Nicola Corna <nicola@corna.info>
705W: https://github.com/corna/me_cleaner
706S: Maintained
707F: util/me_cleaner/
708
Angel Pons8d6f5872020-06-07 00:25:42 +0200709################################################################################
710# Miscellaneous
711################################################################################
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700712
Angel Pons8d6f5872020-06-07 00:25:42 +0200713ASPEED AST2050 DRIVER & COMMON CODE
714M: Timothy Pearson <tpearson@raptorengineeringinc.com>
Patrick Georgi65ff63f2015-05-21 18:54:10 +0200715S: Supported
Angel Pons8d6f5872020-06-07 00:25:42 +0200716F: src/drivers/aspeed/common/
717F: src/drivers/aspeed/ast2050/
Patrick Georgi65ff63f2015-05-21 18:54:10 +0200718
Angel Pons8d6f5872020-06-07 00:25:42 +0200719ACPI
720F: src/acpi/
721F: src/arch/x86/acpi/
722F: util/acpi/
723
724LZ4 COMPRESSION
725M: Julius Werner <jwerner@chromium.org>
726S: Supported
727F: src/commonlib/lz4*
728F: payloads/libpayload/liblz4/
729F: util/cbfstool/lz4/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700730
731BINARY OBJECTS
732F: 3rdparty/blobs/
733
734VERIFIED BOOT
735F: 3rdparty/vboot/
736F: src/vendorcode/google/chromeos/
737F: src/include/tpm.h
738F: src/include/tpm_lite/
739
740RESOURCE ALLOCATOR
741F: src/device/*
742F: src/include/device/
743F: src/include/cpu/cpu.h
744
745OPTION ROM EXECUTION & X86EMU
746F: src/device/oprom/
747
748CBFS
Julius Werner0655f782019-12-11 16:19:48 -0800749M: Julius Werner <jwerner@chromium.org>
750F: src/include/cbfs*
751F: src/commonlib/bsd/include/commonlib/bsd/cbfs*
752F: src/commonlib/bsd/cbfs*
753F: src/lib/cbfs.c
754
755CBFSTOOL
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700756F: util/cbfstool/
757
758CBMEM
759F: src/include/cbmem.h
760F: src/include/cbmem_id.h
761F: util/cbmem/
762
763CONSOLE
764F: src/console/
765F: src/include/console/
766F: src/drivers/uart/
767
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700768VERIFIED BOOT 2
769M: Aaron Durbin <adurbin@chromium.org>
Philipp Deppenwiese8f6af1c2018-11-23 19:13:54 +0100770F: src/security/vboot/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700771
Philipp Deppenwiese6507e6f2016-06-22 19:01:47 +0200772TPM SUPPORT
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100773M: Christian Walter <christian.walter@9elements.com>
Philipp Deppenwiese8f6af1c2018-11-23 19:13:54 +0100774S: Supported
Philipp Deppenwiese6507e6f2016-06-22 19:01:47 +0200775F: src/drivers/*/tpm/
Felix Singer3c02ed92020-11-30 06:56:08 +0100776F: src/security/tpm/
Philipp Deppenwiese6507e6f2016-06-22 19:01:47 +0200777
Martin Rothe801fcb2017-05-27 10:54:02 -0600778SUPERIOS & SUPERIOTOOL
779M: Felix Held <felix-coreboot@felixheld.de>
780S: Maintained
781F: src/superio/
782F: util/superiotool/
783
Julius Wernerc34e41f2017-06-09 14:26:03 -0700784MEMLAYOUT
785M: Julius Werner <jwerner@chromium.org>
786S: Supported
787F: */memlayout.h
788F: *.ld
789
Frans Hendriksf20bf922019-06-13 14:14:56 +0200790ELTAN VENDORCODE
791M: Frans Hendriks <fhendriks@eltan.com>
792M: Wim Vervoorn <wvervoorn@eltan.com>
793S: Maintained
Felix Singer3c02ed92020-11-30 06:56:08 +0100794F: src/vendorcode/eltan/
Frans Hendriksf20bf922019-06-13 14:14:56 +0200795
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700796MISSING: TIMERS / DELAYS
797
798MISSING: TIMESTAMPS
799
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700800MISSING: FMAP
801
802MISSING: GPIO
803
804MISSING: SMP
805
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700806MISSING: DMP / QEMU-X86
807
808MISSING: ELOG
809
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700810MISSING: SPI
811
Angel Pons0b500992020-04-15 16:47:36 +0200812# *** Infrastructure Owners ***
Martin Roth19fdedb2017-06-25 15:44:16 -0600813# This is intended to let people know who they should contact for issues with various infrastructure pieces.
814# Hardware
815# Owners: Stefan, Patrick
Sumeet Pawnikar1638a852017-09-12 22:17:55 +0530816# Backups:
Martin Roth19fdedb2017-06-25 15:44:16 -0600817
818# Web Server
819# Owners: Stefan, Patrick
820# Backups:
821
822# Website
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100823# Owners: Martin
Martin Roth19fdedb2017-06-25 15:44:16 -0600824# Backups: Patrick, Stefan
825
826# Documentation Website
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100827# Owners: Patrick
Martin Roth19fdedb2017-06-25 15:44:16 -0600828# Backups:
829
Patrick Georgi1d348942019-07-17 20:40:50 +0200830CODE OF CONDUCT
831M: Stefan Reinauer <stefan.reinauer@coreboot.org>
832M: Patrick Georgi <patrick@coreboot.org>
833M: Ronald Minnich <rminnich@coreboot.org>
834M: Martin Roth <martin@coreboot.org>
835S: Maintained
836F: Documentation/community/code_of_conduct.md
837
Martin Roth19fdedb2017-06-25 15:44:16 -0600838# Wiki
839# Owners: Stefan, Patrick
840# Backups:
841
842# Gerrit
843# Owners: Stefan, Patrick
844# Backups: Martin
845
846# Jenkins
847# Owners: Patrick, Martin
848# Backups:
849
850# Bug Tracker
851# Owners: Lynxis,
852# Backups: Martin,
853
854# Mailing List
855# Owners: Stefan, Patrick
856# Backups: Martin,
857
858# Software Freedom Conservancy
859# Main contact: Martin
860# “Official” contact: Stefan