blob: bc1e1fc40f46cbc17328a0c1b40bf4ea5c23ebb1 [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
136RISC-V ARCHITECTURE
137M: Ronald Minnich <rminnich@gmail.com>
Jonathan Neuschäfer6fe488b2018-11-30 14:54:19 +0100138R: Philipp Hug <philipp@hug.cx>
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -0700139S: Maintained
Stefan Reinauera4ffe8a2015-10-21 13:09:42 -0700140F: src/arch/riscv/
Jonathan Neuschäfer2d1d47bf32018-09-25 23:15:16 +0200141F: src/soc/sifive/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700142F: src/soc/ucb/
Jonathan Neuschäfer950d48f2016-10-12 00:18:00 +0200143F: src/mainboard/emulation/*-riscv/
Jonathan Neuschäfer2d1d47bf32018-09-25 23:15:16 +0200144F: src/mainboard/sifive/
145F: util/riscv/
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -0700146
Jonathan Neuschäferc22ad582018-11-30 00:06:50 +0100147PPC64 ARCHITECTURE
Martin Roth57fcae12016-03-17 12:00:25 -0600148M: Ronald Minnich <rminnich@gmail.com>
149M: Timothy Pearson <tpearson@raptorengineeringinc.com>
150S: Maintained
Jonathan Neuschäferc22ad582018-11-30 00:06:50 +0100151F: src/arch/ppc64/
Martin Roth57fcae12016-03-17 12:00:25 -0600152F: src/cpu/qemu-power8/
153F: src/mainboard/emulation/qemu-power8/
154
Alexander Couzens753af5b2015-12-05 13:45:27 +0100155LENOVO EC
156M: Alexander Couzens <lynxis@fe80.eu>
157S: Maintained
158F: src/ec/lenovo/
159
160LENOVO MAINBOARDS
161M: Alexander Couzens <lynxis@fe80.eu>
Martin Roth954338d2017-03-05 11:20:18 -0700162M: Patrick Rudolph <siro@das-labor.org>
Alexander Couzens753af5b2015-12-05 13:45:27 +0100163S: Maintained
164F: src/mainboard/lenovo/
165
Mike Banonc732d682019-12-31 14:29:39 +0300166LENOVO G505S MAINBOARD
167M: Mike Banon <mikebdp2@gmail.com>
168S: Maintained
169F: src/mainboard/lenovo/g505s/
170
Evgeny Zinoviev09bf63e2019-05-31 16:03:27 +0300171APPLE MAINBOARDS
172M: Evgeny Zinoviev <me@ch1p.io>
173S: Maintained
174F: src/mainboard/apple/
175
Patrick Georgi8fb453e2018-11-21 22:12:45 +0100176GETAC P470 MAINBOARD
177M: Patrick Georgi <patrick@georgi.software>
178S: Maintained
179F: src/mainboard/getac/p470
180
Martin Roth7fae59b2016-03-17 12:01:27 -0600181INTEL PINEVIEW CHIPSET
182M: Damien Zammit <damien@zamaudio.com>
Martin Roth19fdedb2017-06-25 15:44:16 -0600183S: Odd Fixes
Martin Roth7fae59b2016-03-17 12:01:27 -0600184F: src/northbridge/intel/pineview/
185
186INTEL D510MO MAINBOARD
187M: Damien Zammit <damien@zamaudio.com>
Martin Roth19fdedb2017-06-25 15:44:16 -0600188S: Odd Fixes
Martin Roth7fae59b2016-03-17 12:01:27 -0600189F: src/mainboard/intel/d510mo
190
191INTEL X4X CHIPSET
192M: Damien Zammit <damien@zamaudio.com>
Martin Roth19fdedb2017-06-25 15:44:16 -0600193S: Odd Fixes
Martin Roth7fae59b2016-03-17 12:01:27 -0600194F: src/northbridge/intel/x4x/
195
196GIGABYTE GA-G41M-ES2L MAINBOARD
197M: Damien Zammit <damien@zamaudio.com>
Martin Roth19fdedb2017-06-25 15:44:16 -0600198S: Odd Fixes
Martin Roth7fae59b2016-03-17 12:01:27 -0600199F: src/mainboard/gigabyte/ga-g41m-es2l
200
Angel Pons77410ef2020-04-15 16:36:39 +0200201GIGABYTE GA-H61M SERIES MAINBOARDS
Angel Pons33849042018-12-01 23:28:03 +0100202M: Angel Pons <th3fanbus@gmail.com>
203S: Maintained
Angel Pons77410ef2020-04-15 16:36:39 +0200204F: src/mainboard/gigabyte/ga-h61m-series
Angel Pons33849042018-12-01 23:28:03 +0100205
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -0700206GOOGLE PANTHER MAINBOARD
207M: Stefan Reinauer <stefan.reinauer@coreboot.org>
208S: Supported
Stefan Reinauera4ffe8a2015-10-21 13:09:42 -0700209F: src/mainboard/google/panther/
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -0700210
Matt DeVillier48418752018-11-28 22:37:04 -0600211GOOGLE MAINBOARDS (Intel-based, legacy/inactive)
212M: Matt DeVillier <MrChromebox@gmail.com>
213S: Maintained
214F: src/mainboard/google/auron/
215F: src/mainboard/google/beltino/
216F: src/mainboard/google/butterfly/
217F: src/mainboard/google/cyan/
218F: src/mainboard/google/glados/
219F: src/mainboard/google/jecht/
220F: src/mainboard/google/link/
221F: src/mainboard/google/parrot/
222F: src/mainboard/google/slippy/
223F: src/mainboard/google/stout/
224
Philipp Deppenwiese8f6af1c2018-11-23 19:13:54 +0100225OPENCELLULAR MAINBOARDS
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100226M: Christian Walter <christian.walter@9elements.com>
Philipp Deppenwiese8f6af1c2018-11-23 19:13:54 +0100227M: Patrick Rudolph <patrick.rudolph@9elements.com>
228S: Supported
Philipp Deppenwiese8f6af1c2018-11-23 19:13:54 +0100229F: src/mainboard/opencellular/elgon/
230
Matt DeVillier48418752018-11-28 22:37:04 -0600231PURISM MAINBOARDS
232M: Matt DeVillier <matt.devillier@puri.sm>
233S: Supported
234F: src/mainboard/purism
235
236SAMSUNG CHROMEOS MAINBOARDS
237M: Matt DeVillier <MrChromebox@gmail.com>
238S: Maintained
239F: src/mainboard/samsung/lumpy/
240F: src/mainboard/samsung/stumpy/
241
Mariusz Szafranski025d8192017-09-12 14:15:35 +0200242INTEL FSP DENVERTON-NS SOC & HARCUVAR CRB
Mariusz Szafranski025d8192017-09-12 14:15:35 +0200243M: Vanessa Eusebio <vanessa.f.eusebio@intel.com>
Vanessa Eusebio3ca534f2018-02-23 09:26:47 -0700244M: David Guckian <david.guckian@intel.com>
Nico Hubere81880d2018-11-05 13:57:03 +0100245S: Odd Fixes
Mariusz Szafranski025d8192017-09-12 14:15:35 +0200246F: src/mainboard/intel/harcuvar/
247F: src/soc/intel/denverton_ns/
248F: src/vendorcode/intel/fsp/fsp2_0/denverton_ns/
249
Martin Roth533f6662015-12-04 08:36:49 -0700250INTEL FSP 1.1
251M: Lee Leahy <leroy.p.leahy@intel.com>
Martin Roth533f6662015-12-04 08:36:49 -0700252M: Huang Jin <huang.jin@intel.com>
253M: York Yang <york.yang@intel.com>
254S: Supported
255F: src/drivers/intel/fsp1_1/
256
Andrey Petrov842dfe82016-05-24 22:01:56 -0700257INTEL FSP 2.0
Andrey Petrov379c8632017-07-12 13:06:22 -0700258M: Andrey Petrov <andrey.petrov@gmail.com>
259S: Maintained
Andrey Petrov842dfe82016-05-24 22:01:56 -0700260F: src/drivers/intel/fsp2_0/
261
Martin Roth4a1c69a2016-03-17 12:02:12 -0600262INTEL STRAGO MAINBOARD
263M: Hannah Williams <hannah.williams@intel.com>
264S: Supported
265F: /src/mainboard/intel/strago/
266
267INTEL BRASWELL SOC
Michał Żygowskib063cbe2019-03-01 11:13:19 +0100268M: Piotr Król <piotr.krol@3mdeb.com>
269M: Michał Żygowski <michal.zygowski@3mdeb.com>
270M: Frans Hendriks <fhendriks@eltan.com>
271S: Maintained
Martin Roth4a1c69a2016-03-17 12:02:12 -0600272F: /src/soc/intel/braswell
273F: /src/vendorcode/intel/fsp/fsp1_1/braswell
274
Andrey Petrov842dfe82016-05-24 22:01:56 -0700275INTEL APOLLOLAKE_SOC
Andrey Petrov379c8632017-07-12 13:06:22 -0700276M: Andrey Petrov <andrey.petrov@gmail.com>
277S: Maintained
Andrey Petrov842dfe82016-05-24 22:01:56 -0700278F: src/soc/intel/apollolake/
279
Angel Pons33849042018-12-01 23:28:03 +0100280ASROCK G41C-GS MAINBOARD & VARIANTS
281M: Angel Pons <th3fanbus@gmail.com>
282S: Maintained
283F: src/mainboard/asrock/g41c-gs/
284
Tristan Corrickd88cf5f2018-12-06 19:26:47 +1300285ASROCK H81M-HDS MAINBOARD
286M: Tristan Corrick <tristan@corrick.kiwi>
287S: Maintained
288F: src/mainboard/asrock/h81m-hds/
289
Mike Banonc732d682019-12-31 14:29:39 +0300290ASUS AM1I-A MAINBOARD
291M: Mike Banon <mikebdp2@gmail.com>
292S: Maintained
293F: src/mainboard/asus/am1i-a/
294
Tristan Corrickd88cf5f2018-12-06 19:26:47 +1300295ASUS MAXIMUS IV GENE-Z MAINBOARD
296M: Tristan Corrick <tristan@corrick.kiwi>
297S: Maintained
298F: src/mainboard/asus/maximus_iv_gene-z/
299
Angel Pons33849042018-12-01 23:28:03 +0100300ASUS P5QC PRO MAINBOARD & VARIANTS
301M: Angel Pons <th3fanbus@gmail.com>
302S: Maintained
303F: src/mainboard/asus/p5qc/
304
Tristan Corrickd88cf5f2018-12-06 19:26:47 +1300305ASUS P8H61-M LX MAINBOARD
306M: Tristan Corrick <tristan@corrick.kiwi>
307S: Maintained
308F: src/mainboard/asus/p8h61-m_lx/
309
Angel Pons33849042018-12-01 23:28:03 +0100310ASUS P8H61-M PRO MAINBOARD
311M: Angel Pons <th3fanbus@gmail.com>
312S: Maintained
313F: src/mainboard/asus/p8h61-m_pro/
314
Vlado Cibic2bf6a302019-06-09 06:53:50 +0000315ASUS P8Z77-M PRO MAINBOARD
316M: Vlado Cibic <vladocb@protonmail.com>
317S: Maintained
318F: src/mainboard/asus/p8z77-m_pro/
319
Michał Żygowskib9f9f6c2018-12-21 12:23:27 +0100320LIBRETREND LT1000 MAINBOARD
321M: Piotr Król <piotr.krol@3mdeb.com>
322M: Michał Żygowski <michal.zygowski@3mdeb.com>
323S: Maintained
324F: src/mainboard/libretrend/lt1000
325
Piotr Króldfd2a8b2017-09-28 11:48:40 +0200326PC ENGINES ALL MAINBOARDS
327M: Piotr Król <piotr.krol@3mdeb.com>
Piotr Król5044b012018-03-16 22:38:03 +0100328M: Michał Żygowski <michal.zygowski@3mdeb.com>
Piotr Króldfd2a8b2017-09-28 11:48:40 +0200329S: Supported
330F: src/mainboard/pcengines/
331
Michał Żygowskicd0a5fc2020-03-09 22:51:39 +0100332PROTECTLI ALL MAINBOARDS
333M: Piotr Król <piotr.krol@3mdeb.com>
334M: Michał Żygowski <michal.zygowski@3mdeb.com>
335S: Maintained
336F: src/mainboard/protectli/
337
Werner Zehe7207592018-11-23 09:20:06 +0100338SIEMENS MC_xxxx MAINBOARDS
339M: Werner Zeh <werner.zeh@siemens.com>
340S: Maintained
341F: src/mainboard/siemens/mc_apl1/
Werner Zehe7207592018-11-23 09:20:06 +0100342
Tristan Corrick44095c12018-12-22 00:04:18 +1300343SUPERMICRO X10SLM+-F MAINBOARD
344M: Tristan Corrick <tristan@corrick.kiwi>
345S: Maintained
346F: src/mainboard/supermicro/x10slm-f/
347
Michael Niewöhner489a11e2019-10-17 14:57:52 +0200348SUPERMICRO X11-LGA1151-SERIES
349M: Michael Niewöhner <foss@mniewoehner.de>
350S: Maintained
351F: src/mainboard/supermicro/x11-lga1151-series
352
Frans Hendriks1583fcd2019-06-05 10:18:23 +0200353FACEBOOK FBG1701 MAINBOARD
354M: Frans Hendriks <fhendriks@eltan.com>
355M: Wim Vervoorn <wvervoorn@eltan.com>
356S: Maintained
357F: src/mainboard/facebook/fbg1701/
358
Wim Vervoorn4ba70a72019-12-05 13:48:11 +0100359FACEBOOK MONOLITH MAINBOARD
360M: Frans Hendriks <fhendriks@eltan.com>
361M: Wim Vervoorn <wvervoorn@eltan.com>
362S: Maintained
363F: src/mainboard/facebook/monolith/
364
Frans Hendriksa78146c2019-07-19 10:30:20 +0200365PORTWELL PQ-M107 MAINBOARD
366M: Frans Hendriks <fhendriks@eltan.com>
367M: Wim Vervoorn <wvervoorn@eltan.com>
368S: Maintained
369F: src/mainboard/portwell/m107/
370
Martin Roth2a3434752016-03-05 18:31:29 -0700371ASPEED AST2050 DRIVER & COMMON CODE
372M: Timothy Pearson <tpearson@raptorengineeringinc.com>
373S: Supported
374F: src/drivers/aspeed/common/
375F: src/drivers/aspeed/ast2050/
376
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700377ABUILD
378M: Patrick Georgi <patrick@georgi-clan.de>
Martin Roth954338d2017-03-05 11:20:18 -0700379M: Martin Roth <gaumless@gmail.com>
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700380S: Supported
381F: util/abuild/
382
383ACPI
384F: src/acpi/
385F: src/arch/x86/acpi/
386F: util/acpi/
387
Julius Werner848f5db2017-09-11 13:12:48 -0700388LZ4 COMPRESSION
389M: Julius Werner <jwerner@chromium.org>
390S: Supported
391F: src/commonlib/lz4*
392F: payloads/libpayload/liblz4/
393F: util/cbfstool/lz4/
394
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700395ARM ARCHITECTURE
Julius Wernerc34e41f2017-06-09 14:26:03 -0700396M: Julius Werner <jwerner@chromium.org>
397S: Supported
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700398F: src/arch/arm/
Julius Wernerc34e41f2017-06-09 14:26:03 -0700399F: src/arch/arm64/
400F: src/soc/mediatek/
401F: src/soc/nvidia/
402F: src/soc/rockchip/
403F: util/nvidia/
404F: util/rockchip/
405
406ORPHANED ARM SOCS
407S: Orphaned
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700408F: src/cpu/armltd/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700409F: src/cpu/ti/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700410F: src/soc/qualcomm/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700411F: src/soc/samsung/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700412F: util/exynos/
413F: util/ipqheader/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700414
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700415X86 ARCHITECTURE
416F: src/arch/x86/
417F: src/cpu/x86/
418F: src/drivers/pc80/
419F: src/include/pc80/
420F: src/include/cpu/x86/
421
422INTEL SUPPORT
Martin Roth954338d2017-03-05 11:20:18 -0700423M: Patrick Rudolph <siro@das-labor.org>
424S: Maintained
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700425F: src/vendorcode/intel/
426F: src/cpu/intel/
427F: src/northbridge/intel/
428F: src/southbridge/intel/
429F: src/soc/intel/
430F: src/drivers/intel/
431F: src/include/cpu/intel/
432
433AMD SUPPORT
434F: src/vendorcode/amd/
435F: src/cpu/amd/
436F: src/northbridge/amd/
437F: src/southbridge/amd/
438F: src/include/cpu/amd/
439
Stefan Reinauer2e38cc52015-05-06 11:15:38 -0700440LINT SCRIPTS
441M: Patrick Georgi <patrick@georgi-clan.de>
Martin Roth057ce5f2016-03-17 12:03:00 -0600442M: Martin Roth <gaumless@gmail.com>
Stefan Reinauer2e38cc52015-05-06 11:15:38 -0700443S: Supported
444F: util/lint/
445
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700446INTELTOOL
447M: Stefan Reinauer <stefan.reinauer@coreboot.org>
448F: util/inteltool/
449
Philipp Deppenwiese4cd9a112016-03-23 00:02:40 +0100450INTELMETOOL
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100451M: Christian Walter <christian.walter@9elements.com>
Philipp Deppenwiese4cd9a112016-03-23 00:02:40 +0100452F: util/intelmetool/
453
Nicola Corna4f4fc182017-02-23 16:53:45 +0100454ME_CLEANER
455M: Nicola Corna <nicola@corna.info>
456W: https://github.com/corna/me_cleaner
457S: Maintained
458F: util/me_cleaner/
459
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700460IFDTOOL
461M: Stefan Reinauer <stefan.reinauer@coreboot.org>
462F: util/ifdtool/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700463
Patrick Georgi65ff63f2015-05-21 18:54:10 +0200464BUILD SYSTEM
465M: Patrick Georgi <patrick@georgi-clan.de>
Martin Roth3a18a802015-11-19 15:45:32 -0700466M: Martin Roth <gaumless@gmail.com>
Patrick Georgi65ff63f2015-05-21 18:54:10 +0200467S: Supported
468F: Makefile
469F: *.inc
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700470F: src/include/kconfig.h
Stefan Reinauera4ffe8a2015-10-21 13:09:42 -0700471F: util/kconfig/
472F: util/sconfig/
Martin Roth954338d2017-03-05 11:20:18 -0700473F: util/xcompile/
474F: util/genbuild_h/
Patrick Georgi65ff63f2015-05-21 18:54:10 +0200475
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700476BOARD STATUS
477F: util/board_status/
478
479BINARY OBJECTS
480F: 3rdparty/blobs/
481
482VERIFIED BOOT
483F: 3rdparty/vboot/
484F: src/vendorcode/google/chromeos/
485F: src/include/tpm.h
486F: src/include/tpm_lite/
487
488RESOURCE ALLOCATOR
489F: src/device/*
490F: src/include/device/
491F: src/include/cpu/cpu.h
492
493OPTION ROM EXECUTION & X86EMU
494F: src/device/oprom/
495
496CBFS
497F: src/include/cbfs.h
Julius Werner98eeb962019-12-11 15:47:42 -0800498F: src/commonlib/bsd/include/commonlib/bsd/cbfs_serialized.h
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700499F: util/cbfstool/
500
501CBMEM
502F: src/include/cbmem.h
503F: src/include/cbmem_id.h
504F: util/cbmem/
505
506CONSOLE
507F: src/console/
508F: src/include/console/
509F: src/drivers/uart/
510
511NVRAM
512F: util/nvramtool/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700513F: payloads/nvramcui/
514
515LIBPAYLOAD
516F: payloads/libpayload/
517
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700518COREINFO PAYLOAD
519F: payloads/coreinfo/
520
521EXTERNAL PAYLOADS INTEGRATION
522M: Stefan Reinauer <stefan.reinauer@coreboot.org>
Martin Roth057ce5f2016-03-17 12:03:00 -0600523M: Martin Roth <gaumless@gmail.com>
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700524F: payloads/external
525
Philipp Deppenwiese8f6af1c2018-11-23 19:13:54 +0100526LINUXBOOT PAYLOAD INTEGRATION
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100527M: Christian Walter <christian.walter@9elements.com>
Philipp Deppenwiese8f6af1c2018-11-23 19:13:54 +0100528M: Marcello Sylvester Bauer <info@marcellobauer.com>
529S: Supported
530F: payloads/external/LinuxBoot
531
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700532VERIFIED BOOT 2
533M: Aaron Durbin <adurbin@chromium.org>
Philipp Deppenwiese8f6af1c2018-11-23 19:13:54 +0100534F: src/security/vboot/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700535
Philipp Deppenwiese6507e6f2016-06-22 19:01:47 +0200536TPM SUPPORT
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100537M: Christian Walter <christian.walter@9elements.com>
Philipp Deppenwiese8f6af1c2018-11-23 19:13:54 +0100538S: Supported
Philipp Deppenwiese6507e6f2016-06-22 19:01:47 +0200539F: src/drivers/*/tpm/
Philipp Deppenwiese8f6af1c2018-11-23 19:13:54 +0100540F: src/security/tpm
Philipp Deppenwiese6507e6f2016-06-22 19:01:47 +0200541
Martin Roth954338d2017-03-05 11:20:18 -0700542DOCKER
543M: Martin Roth <gaumless@gmail.com>
544S: Supported
545F: util/docker/
546
547TOOLCHAIN
Martin Roth954338d2017-03-05 11:20:18 -0700548F: util/crossgcc/
549
550GIT
Martin Roth954338d2017-03-05 11:20:18 -0700551F: .git*
552F: /util/gitconfig
553
Martin Rothe801fcb2017-05-27 10:54:02 -0600554SUPERIOS & SUPERIOTOOL
555M: Felix Held <felix-coreboot@felixheld.de>
556S: Maintained
557F: src/superio/
558F: util/superiotool/
559
Julius Wernerc34e41f2017-06-09 14:26:03 -0700560MEMLAYOUT
561M: Julius Werner <jwerner@chromium.org>
562S: Supported
563F: */memlayout.h
564F: *.ld
565
Frans Hendriksf20bf922019-06-13 14:14:56 +0200566ELTAN VENDORCODE
567M: Frans Hendriks <fhendriks@eltan.com>
568M: Wim Vervoorn <wvervoorn@eltan.com>
569S: Maintained
570F: src/vendorcode/eltan
571
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700572MISSING: TIMERS / DELAYS
573
574MISSING: TIMESTAMPS
575
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700576MISSING: FMAP
577
578MISSING: GPIO
579
580MISSING: SMP
581
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700582MISSING: DMP / QEMU-X86
583
584MISSING: ELOG
585
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700586MISSING: SPI
587
Angel Pons0b500992020-04-15 16:47:36 +0200588# *** Infrastructure Owners ***
Martin Roth19fdedb2017-06-25 15:44:16 -0600589# This is intended to let people know who they should contact for issues with various infrastructure pieces.
590# Hardware
591# Owners: Stefan, Patrick
Sumeet Pawnikar1638a852017-09-12 22:17:55 +0530592# Backups:
Martin Roth19fdedb2017-06-25 15:44:16 -0600593
594# Web Server
595# Owners: Stefan, Patrick
596# Backups:
597
598# Website
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100599# Owners: Martin
Martin Roth19fdedb2017-06-25 15:44:16 -0600600# Backups: Patrick, Stefan
601
602# Documentation Website
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100603# Owners: Patrick
Martin Roth19fdedb2017-06-25 15:44:16 -0600604# Backups:
605
Patrick Georgi1d348942019-07-17 20:40:50 +0200606CODE OF CONDUCT
607M: Stefan Reinauer <stefan.reinauer@coreboot.org>
608M: Patrick Georgi <patrick@coreboot.org>
609M: Ronald Minnich <rminnich@coreboot.org>
610M: Martin Roth <martin@coreboot.org>
611S: Maintained
612F: Documentation/community/code_of_conduct.md
613
Martin Roth19fdedb2017-06-25 15:44:16 -0600614# Wiki
615# Owners: Stefan, Patrick
616# Backups:
617
618# Gerrit
619# Owners: Stefan, Patrick
620# Backups: Martin
621
622# Jenkins
623# Owners: Patrick, Martin
624# Backups:
625
626# Bug Tracker
627# Owners: Lynxis,
628# Backups: Martin,
629
630# Mailing List
631# Owners: Stefan, Patrick
632# Backups: Martin,
633
634# Software Freedom Conservancy
635# Main contact: Martin
636# “Official” contact: Stefan