blob: e91bfc2006462d14aadea936d6c9e8a1c2484c92 [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
Frans Hendriks1583fcd2019-06-05 10:18:23 +0200211FACEBOOK FBG1701 MAINBOARD
212M: Frans Hendriks <fhendriks@eltan.com>
213M: Wim Vervoorn <wvervoorn@eltan.com>
214S: Maintained
215F: src/mainboard/facebook/fbg1701/
216
Wim Vervoorn4ba70a72019-12-05 13:48:11 +0100217FACEBOOK MONOLITH MAINBOARD
218M: Frans Hendriks <fhendriks@eltan.com>
219M: Wim Vervoorn <wvervoorn@eltan.com>
220S: Maintained
221F: src/mainboard/facebook/monolith/
222
Angel Pons8d6f5872020-06-07 00:25:42 +0200223
224
225GETAC P470 MAINBOARD
226M: Patrick Georgi <patrick@georgi.software>
227S: Maintained
228F: src/mainboard/getac/p470
229
230
231
232GIGABYTE GA-G41M-ES2L MAINBOARD
233M: Damien Zammit <damien@zamaudio.com>
234S: Odd Fixes
235F: src/mainboard/gigabyte/ga-g41m-es2l
236
237GIGABYTE GA-H61M SERIES MAINBOARDS
238M: Angel Pons <th3fanbus@gmail.com>
239S: Maintained
240F: src/mainboard/gigabyte/ga-h61m-series
241
242
243
244GOOGLE PANTHER MAINBOARD
245M: Stefan Reinauer <stefan.reinauer@coreboot.org>
246S: Supported
247F: src/mainboard/google/panther/
248
249GOOGLE MAINBOARDS (Intel-based, legacy/inactive)
250M: Matt DeVillier <MrChromebox@gmail.com>
251S: Maintained
252F: src/mainboard/google/auron/
253F: src/mainboard/google/beltino/
254F: src/mainboard/google/butterfly/
255F: src/mainboard/google/cyan/
256F: src/mainboard/google/glados/
257F: src/mainboard/google/jecht/
258F: src/mainboard/google/link/
259F: src/mainboard/google/parrot/
260F: src/mainboard/google/slippy/
261F: src/mainboard/google/stout/
262
263
264
265INTEL D510MO MAINBOARD
266M: Damien Zammit <damien@zamaudio.com>
267S: Odd Fixes
268F: src/mainboard/intel/d510mo
269
270INTEL STRAGO MAINBOARD
271M: Hannah Williams <hannah.williams@intel.com>
272S: Supported
273F: /src/mainboard/intel/strago/
274
275
276
277LENOVO MAINBOARDS
278M: Alexander Couzens <lynxis@fe80.eu>
279M: Patrick Rudolph <siro@das-labor.org>
280S: Maintained
281F: src/mainboard/lenovo/
282
283LENOVO G505S MAINBOARD
284M: Mike Banon <mikebdp2@gmail.com>
285S: Maintained
286F: src/mainboard/lenovo/g505s/
287
288
289
290LIBRETREND LT1000 MAINBOARD
291M: Piotr Król <piotr.krol@3mdeb.com>
292M: Michał Żygowski <michal.zygowski@3mdeb.com>
293S: Maintained
294F: src/mainboard/libretrend/lt1000
295
296
Jonathan Zhangdd4f6432020-06-30 11:39:09 -0700297OCP DELTALAKE MAINBOARD
298M: Jonathan Zhang <jonzhang@fb.com>
299M: Reddy Chagam <anjaneya.chagam@intel.com>
300M: Johnny Lin <Johnny_Lin@wiwynn.com>
301M: Morgan Jang <Morgan_Jang@wiwynn.com>
302M: Ryback Hung <<Ryback.Hung@quantatw.com>
303M: Bryant Ou <Bryant.Ou@quantatw.com>
304S: Supported
305F: src/mainboard/ocp/deltalake
Angel Pons8d6f5872020-06-07 00:25:42 +0200306
Jonathan Zhanged849ed2020-05-01 11:23:46 -0700307OCP TIOGAPASS MAINBOARD
308M: Jonathan Zhang <jonzhang@fb.com>
309M: Reddy Chagam <anjaneya.chagam@intel.com>
310M: Johnny Lin <Johnny_Lin@wiwynn.com>
311M: Morgan Jang <Morgan_Jang@wiwynn.com>
312M: Ryback Hung <<Ryback.Hung@quantatw.com>
313M: Bryant Ou <Bryant.Ou@quantatw.com>
314S: Maintained
315F: src/mainboard/ocp/tiogapass
316
Angel Pons8d6f5872020-06-07 00:25:42 +0200317
318
319OPENCELLULAR MAINBOARDS
320M: Christian Walter <christian.walter@9elements.com>
321M: Patrick Rudolph <patrick.rudolph@9elements.com>
322S: Supported
323F: src/mainboard/opencellular/elgon/
324
325
326
327PC ENGINES ALL MAINBOARDS
328M: Piotr Król <piotr.krol@3mdeb.com>
329M: Michał Żygowski <michal.zygowski@3mdeb.com>
330S: Supported
331F: src/mainboard/pcengines/
332
333
334
Frans Hendriksa78146c2019-07-19 10:30:20 +0200335PORTWELL PQ-M107 MAINBOARD
336M: Frans Hendriks <fhendriks@eltan.com>
337M: Wim Vervoorn <wvervoorn@eltan.com>
338S: Maintained
339F: src/mainboard/portwell/m107/
340
Martin Roth2a3434752016-03-05 18:31:29 -0700341
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700342
Angel Pons8d6f5872020-06-07 00:25:42 +0200343PROTECTLI ALL MAINBOARDS
344M: Piotr Król <piotr.krol@3mdeb.com>
345M: Michał Żygowski <michal.zygowski@3mdeb.com>
346S: Maintained
347F: src/mainboard/protectli/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700348
Angel Pons8d6f5872020-06-07 00:25:42 +0200349
350
Christian Walter02b39372020-06-17 20:17:59 +0200351PRODRIVE HERMES MAINBOARD
352M: Christian Walter <christian.walter@9elements.com>
353M: Patrick Rudolph <patrick.rudolph@9elements.com>
354S: Maintained
355F: src/mainboard/prodrive/hermes
356
357
358
Angel Pons8d6f5872020-06-07 00:25:42 +0200359PURISM MAINBOARDS
360M: Matt DeVillier <matt.devillier@puri.sm>
Julius Werner848f5db2017-09-11 13:12:48 -0700361S: Supported
Angel Pons8d6f5872020-06-07 00:25:42 +0200362F: src/mainboard/purism
363
364
365
366SAMSUNG CHROMEOS MAINBOARDS
367M: Matt DeVillier <MrChromebox@gmail.com>
368S: Maintained
369F: src/mainboard/samsung/lumpy/
370F: src/mainboard/samsung/stumpy/
371
372
373
374SIEMENS MC_xxxx MAINBOARDS
375M: Werner Zeh <werner.zeh@siemens.com>
376S: Maintained
377F: src/mainboard/siemens/mc_apl1/
378
379
380
Jeremy Soller625af2b2020-07-21 08:23:39 -0600381SYSTEM76 MAINBOARDS
382M: Jeremy Soller <jeremy@system76.com>
383S: Maintained
384F: src/mainboard/system76/
385
386
387
Angel Pons8d6f5872020-06-07 00:25:42 +0200388SUPERMICRO X10SLM+-F MAINBOARD
389M: Tristan Corrick <tristan@corrick.kiwi>
390S: Maintained
391F: src/mainboard/supermicro/x10slm-f/
392
393SUPERMICRO X11-LGA1151-SERIES
394M: Michael Niewöhner <foss@mniewoehner.de>
395S: Maintained
396F: src/mainboard/supermicro/x11-lga1151-series
397
398################################################################################
399# Architectures
400################################################################################
Julius Werner848f5db2017-09-11 13:12:48 -0700401
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700402ARM ARCHITECTURE
Julius Wernerc34e41f2017-06-09 14:26:03 -0700403M: Julius Werner <jwerner@chromium.org>
404S: Supported
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700405F: src/arch/arm/
Julius Wernerc34e41f2017-06-09 14:26:03 -0700406F: src/arch/arm64/
407F: src/soc/mediatek/
408F: src/soc/nvidia/
409F: src/soc/rockchip/
410F: util/nvidia/
411F: util/rockchip/
412
Angel Pons8d6f5872020-06-07 00:25:42 +0200413PPC64 ARCHITECTURE
414M: Ronald Minnich <rminnich@gmail.com>
415M: Timothy Pearson <tpearson@raptorengineeringinc.com>
416S: Maintained
417F: src/arch/ppc64/
418F: src/cpu/qemu-power8/
419F: src/mainboard/emulation/qemu-power8/
420
421RISC-V ARCHITECTURE
422M: Ronald Minnich <rminnich@gmail.com>
423R: Philipp Hug <philipp@hug.cx>
424S: Maintained
425F: src/arch/riscv/
426F: src/soc/sifive/
427F: src/soc/ucb/
428F: src/mainboard/emulation/*-riscv/
429F: src/mainboard/sifive/
430F: util/riscv/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700431
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700432X86 ARCHITECTURE
433F: src/arch/x86/
434F: src/cpu/x86/
435F: src/drivers/pc80/
436F: src/include/pc80/
437F: src/include/cpu/x86/
438
Angel Pons8d6f5872020-06-07 00:25:42 +0200439################################################################################
440# Embedded Controllers
441################################################################################
442
443LENOVO EC
444M: Alexander Couzens <lynxis@fe80.eu>
445S: Maintained
446F: src/ec/lenovo/
447
Jeremy Soller625af2b2020-07-21 08:23:39 -0600448SYSTEM76 EC
449M: Jeremy Soller <jeremy@system76.com>
450S: Maintained
451F: src/ec/system76/
452
Angel Pons8d6f5872020-06-07 00:25:42 +0200453################################################################################
454# Northbridges
455################################################################################
456
457INTEL HASWELL NORTHBRIDGE
458M: Angel Pons <th3fanbus@gmail.com>
459S: Maintained
460F: src/northbridge/intel/haswell/
461
462INTEL PINEVIEW CHIPSET
463M: Damien Zammit <damien@zamaudio.com>
464M: Angel Pons <th3fanbus@gmail.com>
465S: Odd Fixes
466F: src/northbridge/intel/pineview/
467
468INTEL SANDYBRIDGE NORTHBRIDGE
469M: Angel Pons <th3fanbus@gmail.com>
470S: Maintained
471F: src/northbridge/intel/sandybridge/
472
473INTEL X4X CHIPSET
474M: Damien Zammit <damien@zamaudio.com>
475M: Angel Pons <th3fanbus@gmail.com>
476S: Odd Fixes
477F: src/northbridge/intel/x4x/
478
479################################################################################
480# Platforms
481################################################################################
482
483AMD SUPPORT
484F: src/vendorcode/amd/
485F: src/cpu/amd/
486F: src/northbridge/amd/
487F: src/southbridge/amd/
488F: src/include/cpu/amd/
489
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700490INTEL SUPPORT
Martin Roth954338d2017-03-05 11:20:18 -0700491M: Patrick Rudolph <siro@das-labor.org>
492S: Maintained
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700493F: src/vendorcode/intel/
494F: src/cpu/intel/
495F: src/northbridge/intel/
496F: src/southbridge/intel/
497F: src/soc/intel/
498F: src/drivers/intel/
499F: src/include/cpu/intel/
500
Angel Pons8d6f5872020-06-07 00:25:42 +0200501INTEL FSP DENVERTON-NS SOC & HARCUVAR CRB
502M: Vanessa Eusebio <vanessa.f.eusebio@intel.com>
503M: David Guckian <david.guckian@intel.com>
504S: Odd Fixes
505F: src/mainboard/intel/harcuvar/
506F: src/soc/intel/denverton_ns/
507F: src/vendorcode/intel/fsp/fsp2_0/denverton_ns/
508
509INTEL FSP 1.1
510M: Lee Leahy <leroy.p.leahy@intel.com>
511M: Huang Jin <huang.jin@intel.com>
512M: York Yang <york.yang@intel.com>
513S: Supported
514F: src/drivers/intel/fsp1_1/
515
516INTEL FSP 2.0
517M: Andrey Petrov <andrey.petrov@gmail.com>
518S: Maintained
519F: src/drivers/intel/fsp2_0/
520
521################################################################################
522# Systems on a Chip
523################################################################################
524
525INTEL APOLLOLAKE_SOC
526M: Andrey Petrov <andrey.petrov@gmail.com>
527S: Maintained
528F: src/soc/intel/apollolake/
529
530INTEL BRASWELL SOC
531M: Piotr Król <piotr.krol@3mdeb.com>
532M: Michał Żygowski <michal.zygowski@3mdeb.com>
533M: Frans Hendriks <fhendriks@eltan.com>
534S: Maintained
535F: /src/soc/intel/braswell
536F: /src/vendorcode/intel/fsp/fsp1_1/braswell
537
Jonathan Zhange9b0b082020-06-30 13:28:52 -0700538INTEL Xeon Sacalable Processor Family
539M: Jonathan Zhang <jonzhang@fb.com>
540M: Reddy Chagam <anjaneya.chagam@intel.com>
541M: Johnny Lin <Johnny_Lin@wiwynn.com>
542M: Morgan Jang <Morgan_Jang@wiwynn.com>
543M: Ryback Hung <<Ryback.Hung@quantatw.com>
544M: Bryant Ou <Bryant.Ou@quantatw.com>
545S: Supported
546F: src/soc/intel/xeon_sp
547F: src/vendorcode/intel/fsp/fsp2_0/skylake_sp
548F: src/vendorcode/intel/fsp/fsp2_0/copperlake_sp
549
Angel Pons8d6f5872020-06-07 00:25:42 +0200550ORPHANED ARM SOCS
551S: Orphaned
552F: src/cpu/armltd/
Sam Lewisad7b2e22020-08-03 20:18:29 +1000553F: src/soc/ti/
Angel Pons8d6f5872020-06-07 00:25:42 +0200554F: src/soc/qualcomm/
555F: src/soc/samsung/
556F: util/exynos/
557F: util/ipqheader/
558
559################################################################################
560# Payloads
561################################################################################
562
563NVRAM
564F: util/nvramtool/
565F: payloads/nvramcui/
566
567LIBPAYLOAD
568F: payloads/libpayload/
569
570COREINFO PAYLOAD
571F: payloads/coreinfo/
572
573EXTERNAL PAYLOADS INTEGRATION
574M: Stefan Reinauer <stefan.reinauer@coreboot.org>
575M: Martin Roth <gaumless@gmail.com>
576F: payloads/external
577
578LINUXBOOT PAYLOAD INTEGRATION
579M: Christian Walter <christian.walter@9elements.com>
580M: Marcello Sylvester Bauer <info@marcellobauer.com>
581S: Supported
582F: payloads/external/LinuxBoot
583
584################################################################################
585# Utilities
586################################################################################
587
588ABUILD
589M: Patrick Georgi <patrick@georgi-clan.de>
590M: Martin Roth <gaumless@gmail.com>
591S: Supported
592F: util/abuild/
593
594BOARD STATUS
595F: util/board_status/
596
597BUILD SYSTEM
598M: Patrick Georgi <patrick@georgi-clan.de>
599M: Martin Roth <gaumless@gmail.com>
600S: Supported
601F: Makefile
602F: *.inc
603F: src/include/kconfig.h
604F: util/kconfig/
605F: util/sconfig/
606F: util/xcompile/
607F: util/genbuild_h/
608
609TOOLCHAIN
610F: util/crossgcc/
611
612DOCKER
613M: Martin Roth <gaumless@gmail.com>
614S: Supported
615F: util/docker/
616
617GIT
618F: .git*
619F: /util/gitconfig
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700620
Stefan Reinauer2e38cc52015-05-06 11:15:38 -0700621LINT SCRIPTS
622M: Patrick Georgi <patrick@georgi-clan.de>
Martin Roth057ce5f2016-03-17 12:03:00 -0600623M: Martin Roth <gaumless@gmail.com>
Stefan Reinauer2e38cc52015-05-06 11:15:38 -0700624S: Supported
625F: util/lint/
626
Angel Pons8d6f5872020-06-07 00:25:42 +0200627IFDTOOL
628M: Stefan Reinauer <stefan.reinauer@coreboot.org>
629F: util/ifdtool/
630
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700631INTELTOOL
632M: Stefan Reinauer <stefan.reinauer@coreboot.org>
633F: util/inteltool/
634
Philipp Deppenwiese4cd9a112016-03-23 00:02:40 +0100635INTELMETOOL
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100636M: Christian Walter <christian.walter@9elements.com>
Philipp Deppenwiese4cd9a112016-03-23 00:02:40 +0100637F: util/intelmetool/
638
Nicola Corna4f4fc182017-02-23 16:53:45 +0100639ME_CLEANER
640M: Nicola Corna <nicola@corna.info>
641W: https://github.com/corna/me_cleaner
642S: Maintained
643F: util/me_cleaner/
644
Angel Pons8d6f5872020-06-07 00:25:42 +0200645################################################################################
646# Miscellaneous
647################################################################################
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700648
Angel Pons8d6f5872020-06-07 00:25:42 +0200649ASPEED AST2050 DRIVER & COMMON CODE
650M: Timothy Pearson <tpearson@raptorengineeringinc.com>
Patrick Georgi65ff63f2015-05-21 18:54:10 +0200651S: Supported
Angel Pons8d6f5872020-06-07 00:25:42 +0200652F: src/drivers/aspeed/common/
653F: src/drivers/aspeed/ast2050/
Patrick Georgi65ff63f2015-05-21 18:54:10 +0200654
Angel Pons8d6f5872020-06-07 00:25:42 +0200655ACPI
656F: src/acpi/
657F: src/arch/x86/acpi/
658F: util/acpi/
659
660LZ4 COMPRESSION
661M: Julius Werner <jwerner@chromium.org>
662S: Supported
663F: src/commonlib/lz4*
664F: payloads/libpayload/liblz4/
665F: util/cbfstool/lz4/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700666
667BINARY OBJECTS
668F: 3rdparty/blobs/
669
670VERIFIED BOOT
671F: 3rdparty/vboot/
672F: src/vendorcode/google/chromeos/
673F: src/include/tpm.h
674F: src/include/tpm_lite/
675
676RESOURCE ALLOCATOR
677F: src/device/*
678F: src/include/device/
679F: src/include/cpu/cpu.h
680
681OPTION ROM EXECUTION & X86EMU
682F: src/device/oprom/
683
684CBFS
685F: src/include/cbfs.h
Julius Werner98eeb962019-12-11 15:47:42 -0800686F: src/commonlib/bsd/include/commonlib/bsd/cbfs_serialized.h
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700687F: util/cbfstool/
688
689CBMEM
690F: src/include/cbmem.h
691F: src/include/cbmem_id.h
692F: util/cbmem/
693
694CONSOLE
695F: src/console/
696F: src/include/console/
697F: src/drivers/uart/
698
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700699VERIFIED BOOT 2
700M: Aaron Durbin <adurbin@chromium.org>
Philipp Deppenwiese8f6af1c2018-11-23 19:13:54 +0100701F: src/security/vboot/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700702
Philipp Deppenwiese6507e6f2016-06-22 19:01:47 +0200703TPM SUPPORT
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100704M: Christian Walter <christian.walter@9elements.com>
Philipp Deppenwiese8f6af1c2018-11-23 19:13:54 +0100705S: Supported
Philipp Deppenwiese6507e6f2016-06-22 19:01:47 +0200706F: src/drivers/*/tpm/
Philipp Deppenwiese8f6af1c2018-11-23 19:13:54 +0100707F: src/security/tpm
Philipp Deppenwiese6507e6f2016-06-22 19:01:47 +0200708
Martin Rothe801fcb2017-05-27 10:54:02 -0600709SUPERIOS & SUPERIOTOOL
710M: Felix Held <felix-coreboot@felixheld.de>
711S: Maintained
712F: src/superio/
713F: util/superiotool/
714
Julius Wernerc34e41f2017-06-09 14:26:03 -0700715MEMLAYOUT
716M: Julius Werner <jwerner@chromium.org>
717S: Supported
718F: */memlayout.h
719F: *.ld
720
Frans Hendriksf20bf922019-06-13 14:14:56 +0200721ELTAN VENDORCODE
722M: Frans Hendriks <fhendriks@eltan.com>
723M: Wim Vervoorn <wvervoorn@eltan.com>
724S: Maintained
725F: src/vendorcode/eltan
726
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700727MISSING: TIMERS / DELAYS
728
729MISSING: TIMESTAMPS
730
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700731MISSING: FMAP
732
733MISSING: GPIO
734
735MISSING: SMP
736
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700737MISSING: DMP / QEMU-X86
738
739MISSING: ELOG
740
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700741MISSING: SPI
742
Angel Pons0b500992020-04-15 16:47:36 +0200743# *** Infrastructure Owners ***
Martin Roth19fdedb2017-06-25 15:44:16 -0600744# This is intended to let people know who they should contact for issues with various infrastructure pieces.
745# Hardware
746# Owners: Stefan, Patrick
Sumeet Pawnikar1638a852017-09-12 22:17:55 +0530747# Backups:
Martin Roth19fdedb2017-06-25 15:44:16 -0600748
749# Web Server
750# Owners: Stefan, Patrick
751# Backups:
752
753# Website
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100754# Owners: Martin
Martin Roth19fdedb2017-06-25 15:44:16 -0600755# Backups: Patrick, Stefan
756
757# Documentation Website
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100758# Owners: Patrick
Martin Roth19fdedb2017-06-25 15:44:16 -0600759# Backups:
760
Patrick Georgi1d348942019-07-17 20:40:50 +0200761CODE OF CONDUCT
762M: Stefan Reinauer <stefan.reinauer@coreboot.org>
763M: Patrick Georgi <patrick@coreboot.org>
764M: Ronald Minnich <rminnich@coreboot.org>
765M: Martin Roth <martin@coreboot.org>
766S: Maintained
767F: Documentation/community/code_of_conduct.md
768
Martin Roth19fdedb2017-06-25 15:44:16 -0600769# Wiki
770# Owners: Stefan, Patrick
771# Backups:
772
773# Gerrit
774# Owners: Stefan, Patrick
775# Backups: Martin
776
777# Jenkins
778# Owners: Patrick, Martin
779# Backups:
780
781# Bug Tracker
782# Owners: Lynxis,
783# Backups: Martin,
784
785# Mailing List
786# Owners: Stefan, Patrick
787# Backups: Martin,
788
789# Software Freedom Conservancy
790# Main contact: Martin
791# “Official” contact: Stefan