blob: 04f784f8899ba1fc79ed6d182255b490e719a494 [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äfer968292b2016-10-12 00:17:59 +0200138M: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
Jonathan Neuschäfer6fe488b2018-11-30 14:54:19 +0100139R: Philipp Hug <philipp@hug.cx>
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -0700140S: Maintained
Stefan Reinauera4ffe8a2015-10-21 13:09:42 -0700141F: src/arch/riscv/
Jonathan Neuschäfer2d1d47bf32018-09-25 23:15:16 +0200142F: src/soc/sifive/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700143F: src/soc/ucb/
Jonathan Neuschäfer950d48f2016-10-12 00:18:00 +0200144F: src/mainboard/emulation/*-riscv/
Jonathan Neuschäfer2d1d47bf32018-09-25 23:15:16 +0200145F: src/mainboard/sifive/
146F: util/riscv/
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -0700147
Jonathan Neuschäferc22ad582018-11-30 00:06:50 +0100148PPC64 ARCHITECTURE
Martin Roth57fcae12016-03-17 12:00:25 -0600149M: Ronald Minnich <rminnich@gmail.com>
150M: Timothy Pearson <tpearson@raptorengineeringinc.com>
151S: Maintained
Jonathan Neuschäferc22ad582018-11-30 00:06:50 +0100152F: src/arch/ppc64/
Martin Roth57fcae12016-03-17 12:00:25 -0600153F: src/cpu/qemu-power8/
154F: src/mainboard/emulation/qemu-power8/
155
Alexander Couzens753af5b2015-12-05 13:45:27 +0100156LENOVO EC
157M: Alexander Couzens <lynxis@fe80.eu>
158S: Maintained
159F: src/ec/lenovo/
160
161LENOVO MAINBOARDS
162M: Alexander Couzens <lynxis@fe80.eu>
Martin Roth954338d2017-03-05 11:20:18 -0700163M: Patrick Rudolph <siro@das-labor.org>
Alexander Couzens753af5b2015-12-05 13:45:27 +0100164S: Maintained
165F: src/mainboard/lenovo/
166
Patrick Georgi8fb453e2018-11-21 22:12:45 +0100167GETAC P470 MAINBOARD
168M: Patrick Georgi <patrick@georgi.software>
169S: Maintained
170F: src/mainboard/getac/p470
171
Martin Roth7fae59b2016-03-17 12:01:27 -0600172INTEL PINEVIEW CHIPSET
173M: Damien Zammit <damien@zamaudio.com>
Martin Roth19fdedb2017-06-25 15:44:16 -0600174S: Odd Fixes
Martin Roth7fae59b2016-03-17 12:01:27 -0600175F: src/northbridge/intel/pineview/
176
177INTEL D510MO MAINBOARD
178M: Damien Zammit <damien@zamaudio.com>
Martin Roth19fdedb2017-06-25 15:44:16 -0600179S: Odd Fixes
Martin Roth7fae59b2016-03-17 12:01:27 -0600180F: src/mainboard/intel/d510mo
181
182INTEL X4X CHIPSET
183M: Damien Zammit <damien@zamaudio.com>
Martin Roth19fdedb2017-06-25 15:44:16 -0600184S: Odd Fixes
Martin Roth7fae59b2016-03-17 12:01:27 -0600185F: src/northbridge/intel/x4x/
186
187GIGABYTE GA-G41M-ES2L MAINBOARD
188M: Damien Zammit <damien@zamaudio.com>
Martin Roth19fdedb2017-06-25 15:44:16 -0600189S: Odd Fixes
Martin Roth7fae59b2016-03-17 12:01:27 -0600190F: src/mainboard/gigabyte/ga-g41m-es2l
191
Angel Pons33849042018-12-01 23:28:03 +0100192GIGABYTE GA-H61M-S2PV MAINBOARD
193M: Angel Pons <th3fanbus@gmail.com>
194S: Maintained
195F: src/mainboard/gigabyte/ga-h61m-s2pv
196
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -0700197GOOGLE PANTHER MAINBOARD
198M: Stefan Reinauer <stefan.reinauer@coreboot.org>
199S: Supported
Stefan Reinauera4ffe8a2015-10-21 13:09:42 -0700200F: src/mainboard/google/panther/
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -0700201
Matt DeVillier48418752018-11-28 22:37:04 -0600202GOOGLE MAINBOARDS (Intel-based, legacy/inactive)
203M: Matt DeVillier <MrChromebox@gmail.com>
204S: Maintained
205F: src/mainboard/google/auron/
206F: src/mainboard/google/beltino/
207F: src/mainboard/google/butterfly/
208F: src/mainboard/google/cyan/
209F: src/mainboard/google/glados/
210F: src/mainboard/google/jecht/
211F: src/mainboard/google/link/
212F: src/mainboard/google/parrot/
213F: src/mainboard/google/slippy/
214F: src/mainboard/google/stout/
215
Philipp Deppenwiese8f6af1c2018-11-23 19:13:54 +0100216OCP MAINBOARDS
217M: Philipp Deppenwiese <zaolin.daisuki@gmail.com>
218M: Patrick Rudolph <patrick.rudolph@9elements.com>
219S: Supported
220F: src/mainboard/ocp/wedge100s/
221F: src/mainboard/ocp/monolake/
222
223OPENCELLULAR MAINBOARDS
224M: Philipp Deppenwiese <zaolin.daisuki@gmail.com>
225M: Patrick Rudolph <patrick.rudolph@9elements.com>
226S: Supported
227F: src/mainboard/opencellular/rotundu/
228F: src/mainboard/opencellular/elgon/
229
Matt DeVillier48418752018-11-28 22:37:04 -0600230PURISM MAINBOARDS
231M: Matt DeVillier <matt.devillier@puri.sm>
232S: Supported
233F: src/mainboard/purism
234
235SAMSUNG CHROMEOS MAINBOARDS
236M: Matt DeVillier <MrChromebox@gmail.com>
237S: Maintained
238F: src/mainboard/samsung/lumpy/
239F: src/mainboard/samsung/stumpy/
240
Martin Roth3a18a802015-11-19 15:45:32 -0700241INTEL MINNOWBOARD MAX MAINBOARD
Alexandru Gagniuc000e8aa2015-10-13 17:30:04 -0700242M: Huang Jin <huang.jin@intel.com>
243M: York Yang <york.yang@intel.com>
Alexandru Gagniuc000e8aa2015-10-13 17:30:04 -0700244S: Supported
Martin Roth3a18a802015-11-19 15:45:32 -0700245F: src/mainboard/intel/minnowmax/
246
Alexandru Gagniuc000e8aa2015-10-13 17:30:04 -0700247INTEL FSP BAYTRAIL CHIP & CRBs
248M: Huang Jin <huang.jin@intel.com>
249M: York Yang <york.yang@intel.com>
Philipp Deppenwiese8f6af1c2018-11-23 19:13:54 +0100250M: Philipp Deppenwiese <zaolin.daisuki@gmail.com>
Alexandru Gagniuc000e8aa2015-10-13 17:30:04 -0700251S: Supported
Martin Roth3a18a802015-11-19 15:45:32 -0700252F: src/soc/intel/fsp_baytrail/
Alexandru Gagniuc000e8aa2015-10-13 17:30:04 -0700253F: src/vendorcode/intel/fsp1_0/baytrail/
254F: src/mainboard/intel/bakersport_fsp/
255F: src/mainboard/intel/bayleybay_fsp/
Martin Roth3a18a802015-11-19 15:45:32 -0700256
York Yangfbec6b12016-04-15 11:22:49 -0700257INTEL FSP BROADWELL-DE SOC & CRB
258M: York Yang <york.yang@intel.com>
Philipp Deppenwiese8f6af1c2018-11-23 19:13:54 +0100259M: Philipp Deppenwiese <zaolin.daisuki@gmail.com>
York Yangfbec6b12016-04-15 11:22:49 -0700260S: Supported
261F: src/soc/intel/fsp_broadwell_de/
262F: src/vendorcode/intel/fsp1_0/broadwell_de/
263F: src/mainboard/intel/camelbackmountain_fsp/
264
Mariusz Szafranski025d8192017-09-12 14:15:35 +0200265INTEL FSP DENVERTON-NS SOC & HARCUVAR CRB
Mariusz Szafranski025d8192017-09-12 14:15:35 +0200266M: Vanessa Eusebio <vanessa.f.eusebio@intel.com>
Vanessa Eusebio3ca534f2018-02-23 09:26:47 -0700267M: David Guckian <david.guckian@intel.com>
Nico Hubere81880d2018-11-05 13:57:03 +0100268S: Odd Fixes
Mariusz Szafranski025d8192017-09-12 14:15:35 +0200269F: src/mainboard/intel/harcuvar/
270F: src/soc/intel/denverton_ns/
271F: src/vendorcode/intel/fsp/fsp2_0/denverton_ns/
272
Martin Roth980a8c12015-12-04 08:33:35 -0700273FSP 1.0 RANGELEY & CRB
274M: David Guckian <david.guckian@intel.com>
275M: Fei Wang <fei.z.wang@intel.com>
276S: Supported
277F: src/cpu/intel/fsp_model_406dx/
278F: src/northbridge/intel/fsp_rangeley/
279F: src/southbridge/intel/fsp_rangeley/
280F: src/vendorcode/intel/fsp1_0/rangeley/
281F: src/mainboard/intel/mohonpeak/
282
Martin Roth3a18a802015-11-19 15:45:32 -0700283INTEL FSP 1.0
Alexandru Gagniuc000e8aa2015-10-13 17:30:04 -0700284M: Huang Jin <huang.jin@intel.com>
285M: York Yang <york.yang@intel.com>
Philipp Deppenwiese8f6af1c2018-11-23 19:13:54 +0100286M: Philipp Deppenwiese <zaolin.daisuki@gmail.com>
Alexandru Gagniuc000e8aa2015-10-13 17:30:04 -0700287S: Supported
Martin Roth3a18a802015-11-19 15:45:32 -0700288F: src/drivers/intel/fsp1_0/
Philipp Deppenwiese8f6af1c2018-11-23 19:13:54 +0100289F: src/vendorcode/intel/fsp1_0/broadwell_de/
Martin Roth3a18a802015-11-19 15:45:32 -0700290
Martin Roth533f6662015-12-04 08:36:49 -0700291INTEL FSP 1.1
292M: Lee Leahy <leroy.p.leahy@intel.com>
Martin Roth533f6662015-12-04 08:36:49 -0700293M: Huang Jin <huang.jin@intel.com>
294M: York Yang <york.yang@intel.com>
295S: Supported
296F: src/drivers/intel/fsp1_1/
297
Andrey Petrov842dfe82016-05-24 22:01:56 -0700298INTEL FSP 2.0
Andrey Petrov379c8632017-07-12 13:06:22 -0700299M: Andrey Petrov <andrey.petrov@gmail.com>
300S: Maintained
Andrey Petrov842dfe82016-05-24 22:01:56 -0700301F: src/drivers/intel/fsp2_0/
302
Martin Roth4a1c69a2016-03-17 12:02:12 -0600303INTEL STRAGO MAINBOARD
304M: Hannah Williams <hannah.williams@intel.com>
305S: Supported
306F: /src/mainboard/intel/strago/
307
308INTEL BRASWELL SOC
Michał Żygowskib063cbe2019-03-01 11:13:19 +0100309M: Piotr Król <piotr.krol@3mdeb.com>
310M: Michał Żygowski <michal.zygowski@3mdeb.com>
311M: Frans Hendriks <fhendriks@eltan.com>
312S: Maintained
Martin Roth4a1c69a2016-03-17 12:02:12 -0600313F: /src/soc/intel/braswell
314F: /src/vendorcode/intel/fsp/fsp1_1/braswell
315
Andrey Petrov842dfe82016-05-24 22:01:56 -0700316INTEL APOLLOLAKE_SOC
Andrey Petrov379c8632017-07-12 13:06:22 -0700317M: Andrey Petrov <andrey.petrov@gmail.com>
318S: Maintained
Andrey Petrov842dfe82016-05-24 22:01:56 -0700319F: src/soc/intel/apollolake/
320
Angel Pons33849042018-12-01 23:28:03 +0100321ASROCK G41C-GS MAINBOARD & VARIANTS
322M: Angel Pons <th3fanbus@gmail.com>
323S: Maintained
324F: src/mainboard/asrock/g41c-gs/
325
Tristan Corrickd88cf5f2018-12-06 19:26:47 +1300326ASROCK H81M-HDS MAINBOARD
327M: Tristan Corrick <tristan@corrick.kiwi>
328S: Maintained
329F: src/mainboard/asrock/h81m-hds/
330
Martin Roth2a3434752016-03-05 18:31:29 -0700331ASUS KFSN4-DRE & KFSN4-DRE_K8 MAINBOARDS
332M: Timothy Pearson <tpearson@raptorengineeringinc.com>
333S: Supported
334F: src/mainboard/asus/kfsn4-dre/
335F: src/mainboard/asus/kfsn4-dre_k8/
336
337ASUS KCMA-D8 MAINBOARD
338M: Timothy Pearson <tpearson@raptorengineeringinc.com>
339S: Supported
340F: src/mainboard/asus/kcma-d8/
341
342ASUS KGPE-D16 MAINBOARD
343M: Timothy Pearson <tpearson@raptorengineeringinc.com>
344S: Supported
345F: src/mainboard/asus/kgpe-d16/
346
Tristan Corrickd88cf5f2018-12-06 19:26:47 +1300347ASUS MAXIMUS IV GENE-Z MAINBOARD
348M: Tristan Corrick <tristan@corrick.kiwi>
349S: Maintained
350F: src/mainboard/asus/maximus_iv_gene-z/
351
Angel Pons33849042018-12-01 23:28:03 +0100352ASUS P5QC PRO MAINBOARD & VARIANTS
353M: Angel Pons <th3fanbus@gmail.com>
354S: Maintained
355F: src/mainboard/asus/p5qc/
356
Tristan Corrickd88cf5f2018-12-06 19:26:47 +1300357ASUS P8H61-M LX MAINBOARD
358M: Tristan Corrick <tristan@corrick.kiwi>
359S: Maintained
360F: src/mainboard/asus/p8h61-m_lx/
361
Angel Pons33849042018-12-01 23:28:03 +0100362ASUS P8H61-M PRO MAINBOARD
363M: Angel Pons <th3fanbus@gmail.com>
364S: Maintained
365F: src/mainboard/asus/p8h61-m_pro/
366
Piotr Króldfd2a8b2017-09-28 11:48:40 +0200367PC ENGINES ALL MAINBOARDS
368M: Piotr Król <piotr.krol@3mdeb.com>
Piotr Król5044b012018-03-16 22:38:03 +0100369M: Michał Żygowski <michal.zygowski@3mdeb.com>
Piotr Króldfd2a8b2017-09-28 11:48:40 +0200370S: Supported
371F: src/mainboard/pcengines/
372
Werner Zehe7207592018-11-23 09:20:06 +0100373SIEMENS MC_xxxx MAINBOARDS
374M: Werner Zeh <werner.zeh@siemens.com>
375S: Maintained
376F: src/mainboard/siemens/mc_apl1/
377F: src/mainboard/siemens/mc_bdx1/
378F: src/mainboard/siemens/mc_tcu3/
379
Tristan Corrick44095c12018-12-22 00:04:18 +1300380SUPERMICRO X10SLM+-F MAINBOARD
381M: Tristan Corrick <tristan@corrick.kiwi>
382S: Maintained
383F: src/mainboard/supermicro/x10slm-f/
384
Martin Roth2a3434752016-03-05 18:31:29 -0700385AMD FAMILY10H & FAMILY15H (NON-AGESA) CPUS & NORTHBRIDGE
386M: Timothy Pearson <tpearson@raptorengineeringinc.com>
387S: Supported
388F: src/cpu/amd/family_10h-family_15h/
389F: src/northbridge/amd/amdfam10/
390F: src/northbridge/amd/amdmct/
391F: src/northbridge/amd/amdht/
392
393AMD SB700 (NON-CIMX) SOUTHBRIDGE
394M: Timothy Pearson <tpearson@raptorengineeringinc.com>
395S: Supported
396F: src/southbridge/amd/sb700/
397
398AMD SR5650 SOUTHBRIDGE
399M: Timothy Pearson <tpearson@raptorengineeringinc.com>
400S: Supported
401F: src/southbridge/amd/sr5650/
402
403ASPEED AST2050 DRIVER & COMMON CODE
404M: Timothy Pearson <tpearson@raptorengineeringinc.com>
405S: Supported
406F: src/drivers/aspeed/common/
407F: src/drivers/aspeed/ast2050/
408
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -0700409ATI MACH64 Driver
410S: Orphan
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700411F: src/drivers/ati/mach64/
412
413ABUILD
414M: Patrick Georgi <patrick@georgi-clan.de>
Martin Roth954338d2017-03-05 11:20:18 -0700415M: Martin Roth <gaumless@gmail.com>
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700416S: Supported
417F: util/abuild/
418
419ACPI
420F: src/acpi/
421F: src/arch/x86/acpi/
422F: util/acpi/
423
Julius Werner848f5db2017-09-11 13:12:48 -0700424LZ4 COMPRESSION
425M: Julius Werner <jwerner@chromium.org>
426S: Supported
427F: src/commonlib/lz4*
428F: payloads/libpayload/liblz4/
429F: util/cbfstool/lz4/
430
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/
436F: src/soc/mediatek/
437F: src/soc/nvidia/
438F: src/soc/rockchip/
439F: util/nvidia/
440F: util/rockchip/
441
442ORPHANED ARM SOCS
443S: Orphaned
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700444F: src/cpu/allwinner/
445F: src/cpu/armltd/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700446F: src/cpu/ti/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700447F: src/soc/marvell/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700448F: src/soc/qualcomm/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700449F: src/soc/samsung/
450F: util/arm_boot_tools/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700451F: util/exynos/
452F: util/ipqheader/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700453
454MIPS ARCHITECTURE
455F: src/arch/mips/
456F: src/cpu/mips/
457F: src/soc/imgtec/
458F: util/bimgtool/
459
460X86 ARCHITECTURE
461F: src/arch/x86/
462F: src/cpu/x86/
463F: src/drivers/pc80/
464F: src/include/pc80/
465F: src/include/cpu/x86/
466
467INTEL SUPPORT
Martin Roth954338d2017-03-05 11:20:18 -0700468M: Patrick Rudolph <siro@das-labor.org>
469S: Maintained
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700470F: src/vendorcode/intel/
471F: src/cpu/intel/
472F: src/northbridge/intel/
473F: src/southbridge/intel/
474F: src/soc/intel/
475F: src/drivers/intel/
476F: src/include/cpu/intel/
477
478AMD SUPPORT
479F: src/vendorcode/amd/
480F: src/cpu/amd/
481F: src/northbridge/amd/
482F: src/southbridge/amd/
483F: src/include/cpu/amd/
484
485VIA SUPPORT
486F: src/cpu/via/
487F: src/northbridge/via/
488F: src/southbridge/via/
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -0700489
Stefan Reinauer2e38cc52015-05-06 11:15:38 -0700490LINT SCRIPTS
491M: Patrick Georgi <patrick@georgi-clan.de>
Martin Roth057ce5f2016-03-17 12:03:00 -0600492M: Martin Roth <gaumless@gmail.com>
Stefan Reinauer2e38cc52015-05-06 11:15:38 -0700493S: Supported
494F: util/lint/
495
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700496INTELTOOL
497M: Stefan Reinauer <stefan.reinauer@coreboot.org>
498F: util/inteltool/
499
Philipp Deppenwiese4cd9a112016-03-23 00:02:40 +0100500INTELMETOOL
501M: Philipp Deppenwiese <zaolin.daisuki@gmail.com>
502F: util/intelmetool/
503
Nicola Corna4f4fc182017-02-23 16:53:45 +0100504ME_CLEANER
505M: Nicola Corna <nicola@corna.info>
506W: https://github.com/corna/me_cleaner
507S: Maintained
508F: util/me_cleaner/
509
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700510IFDTOOL
511M: Stefan Reinauer <stefan.reinauer@coreboot.org>
512F: util/ifdtool/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700513
Patrick Georgi65ff63f2015-05-21 18:54:10 +0200514BUILD SYSTEM
515M: Patrick Georgi <patrick@georgi-clan.de>
Martin Roth3a18a802015-11-19 15:45:32 -0700516M: Martin Roth <gaumless@gmail.com>
Patrick Georgi65ff63f2015-05-21 18:54:10 +0200517S: Supported
518F: Makefile
519F: *.inc
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700520F: src/include/kconfig.h
Stefan Reinauera4ffe8a2015-10-21 13:09:42 -0700521F: util/kconfig/
522F: util/sconfig/
Martin Roth954338d2017-03-05 11:20:18 -0700523F: util/xcompile/
524F: util/genbuild_h/
Patrick Georgi65ff63f2015-05-21 18:54:10 +0200525
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700526BOARD STATUS
527F: util/board_status/
528
529BINARY OBJECTS
530F: 3rdparty/blobs/
531
532VERIFIED BOOT
533F: 3rdparty/vboot/
534F: src/vendorcode/google/chromeos/
535F: src/include/tpm.h
536F: src/include/tpm_lite/
537
538RESOURCE ALLOCATOR
539F: src/device/*
540F: src/include/device/
541F: src/include/cpu/cpu.h
542
543OPTION ROM EXECUTION & X86EMU
544F: src/device/oprom/
545
546CBFS
547F: src/include/cbfs.h
548F: src/include/cbfs_serialized.h
549F: util/cbfstool/
550
551CBMEM
552F: src/include/cbmem.h
553F: src/include/cbmem_id.h
554F: util/cbmem/
555
556CONSOLE
557F: src/console/
558F: src/include/console/
559F: src/drivers/uart/
560
561NVRAM
562F: util/nvramtool/
563F: util/optionlist/
564F: payloads/nvramcui/
565
566LIBPAYLOAD
567F: payloads/libpayload/
568
569BAYOU PAYLOAD
570F: payloads/bayou/
571
572COREINFO PAYLOAD
573F: payloads/coreinfo/
574
575EXTERNAL PAYLOADS INTEGRATION
576M: Stefan Reinauer <stefan.reinauer@coreboot.org>
Martin Roth057ce5f2016-03-17 12:03:00 -0600577M: Martin Roth <gaumless@gmail.com>
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700578F: payloads/external
579
Philipp Deppenwiese8f6af1c2018-11-23 19:13:54 +0100580LINUXBOOT PAYLOAD INTEGRATION
581M: Philipp Deppenwiese <zaolin.daisuki@gmail.com>
582M: Marcello Sylvester Bauer <info@marcellobauer.com>
583S: Supported
584F: payloads/external/LinuxBoot
585
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700586VERIFIED BOOT 2
587M: Aaron Durbin <adurbin@chromium.org>
Philipp Deppenwiese8f6af1c2018-11-23 19:13:54 +0100588F: src/security/vboot/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700589
Philipp Deppenwiese6507e6f2016-06-22 19:01:47 +0200590TPM SUPPORT
591M: Philipp Deppenwiese <zaolin.daisuki@gmail.com>
Philipp Deppenwiese8f6af1c2018-11-23 19:13:54 +0100592S: Supported
Philipp Deppenwiese6507e6f2016-06-22 19:01:47 +0200593F: src/drivers/*/tpm/
Philipp Deppenwiese8f6af1c2018-11-23 19:13:54 +0100594F: src/security/vboot/vboot_crtm.*
595F: src/security/tpm
Philipp Deppenwiese6507e6f2016-06-22 19:01:47 +0200596
Martin Roth954338d2017-03-05 11:20:18 -0700597DOCKER
598M: Martin Roth <gaumless@gmail.com>
599S: Supported
600F: util/docker/
601
602TOOLCHAIN
Martin Roth954338d2017-03-05 11:20:18 -0700603F: util/crossgcc/
604
605GIT
Martin Roth954338d2017-03-05 11:20:18 -0700606F: .git*
607F: /util/gitconfig
608
Martin Rothe801fcb2017-05-27 10:54:02 -0600609SUPERIOS & SUPERIOTOOL
610M: Felix Held <felix-coreboot@felixheld.de>
611S: Maintained
612F: src/superio/
613F: util/superiotool/
614
Julius Wernerc34e41f2017-06-09 14:26:03 -0700615MEMLAYOUT
616M: Julius Werner <jwerner@chromium.org>
617S: Supported
618F: */memlayout.h
619F: *.ld
620
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700621MISSING: TIMERS / DELAYS
622
623MISSING: TIMESTAMPS
624
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700625MISSING: FMAP
626
627MISSING: GPIO
628
629MISSING: SMP
630
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700631MISSING: DMP / QEMU-X86
632
633MISSING: ELOG
634
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700635MISSING: SPI
636
Martin Roth19fdedb2017-06-25 15:44:16 -0600637# *** Infrastructure Owners***
638# This is intended to let people know who they should contact for issues with various infrastructure pieces.
639# Hardware
640# Owners: Stefan, Patrick
Sumeet Pawnikar1638a852017-09-12 22:17:55 +0530641# Backups:
Martin Roth19fdedb2017-06-25 15:44:16 -0600642
643# Web Server
644# Owners: Stefan, Patrick
645# Backups:
646
647# Website
Sumeet Pawnikar1638a852017-09-12 22:17:55 +0530648# Owners: Martin, Philipp
Martin Roth19fdedb2017-06-25 15:44:16 -0600649# Backups: Patrick, Stefan
650
651# Documentation Website
652# Owners: Patrick, Philipp
653# Backups:
654
655# Wiki
656# Owners: Stefan, Patrick
657# Backups:
658
659# Gerrit
660# Owners: Stefan, Patrick
661# Backups: Martin
662
663# Jenkins
664# Owners: Patrick, Martin
665# Backups:
666
667# Bug Tracker
668# Owners: Lynxis,
669# Backups: Martin,
670
671# Mailing List
672# Owners: Stefan, Patrick
673# Backups: Martin,
674
675# Software Freedom Conservancy
676# Main contact: Martin
677# “Official” contact: Stefan