blob: 8198be4af6a1469549828249da8d04c06b5e3d16 [file] [log] [blame]
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -07001
2
Nico Huberc9826d72018-11-05 13:42:35 +01003 List of upstream coreboot maintainers
4 and how to submit coreboot changes
5
6This represents the list of maintainers that work on the upstream coreboot
7code base (on coreboot.org). Maintainers are assigned to topics and when
8applicable to subtrees of the source tree. You'll find some subtrees that
9don't have a maintainer. If you are looking for reviewers for such a sub-
10tree, it's often a good choice to look at the git history to see who worked
11on it last.
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -070012
13Please try to follow the guidelines below. This will make things
14easier on the maintainers. Not all of these guidelines matter for every
15trivial patch so apply some common sense.
16
171. Always _test_ your changes, however small, on at least 1 or
18 2 people, preferably many more.
19
202. Try to release a few ALPHA test versions to gerrit. Announce
21 them onto the coreboot mailing list and IRC channel and await
22 results. This is especially important on coreboot core changes,
23 but also for device drivers, because often that's the only way
24 you will find things like the fact revision 3 chipset needs
25 a magic fix you didn't know about, or some clown changed the
26 chips on a board and not its name. (Don't laugh!)
27
283. Make sure your changes compile correctly in multiple
29 configurations. In particular check that changes work for all
30 boards in the tree (use abuild!)
31
324. When you are happy with a change make it generally available for
33 testing in gerrit and await feedback.
34
355. Make your patch available through coreboot's gerrit code review
36 system, and add the relevant maintainer from this list as a code
37 reviewer. Be prepared to get your changes sent back with seemingly
38 silly requests about formatting and variable names. These aren't
39 as silly as they seem. One job the maintainers do is to keep
40 things looking the same. Sometimes this means that the clever
41 hack in your mainboard or chipset to get around a problem actually
42 needs to become a generalized coreboot feature ready for next time.
43
44 PLEASE check your patch with the automated style checker
45 (util/lint/checkpatch.pl) to catch trival style violations.
Paul Menzel59e21132017-06-05 12:46:00 +020046 See https://www.coreboot.org/Coding_Style for guidance here.
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -070047
48 PLEASE add the maintainers that are generated by
49 util/scripts/get_maintainer.pl as reviewers. The results returned
50 by the script will be best if you have git installed and are
51 making your changes in a branch derived from coreboot.org's latest
52 git tree.
53
54 PLEASE try to include any credit lines you want added with the
55 patch. It avoids people being missed off by mistake and makes
56 it easier to know who wants adding and who doesn't.
57
58 PLEASE document known bugs. If it doesn't work for everything
59 or does something very odd once a month document it.
60
61 PLEASE remember that submissions must be made under the terms
62 of the OSDL certificate of contribution and should include a
63 Signed-off-by: line. The current version of this "Developer's
64 Certificate of Origin" (DCO) is listed at
Paul Menzel59e21132017-06-05 12:46:00 +020065 https://www.coreboot.org/Development_Guidelines#Sign-off_Procedure.
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -070066
676. Make sure you have the right to send any changes you make. If you
68 do changes at work you may find your employer owns the patch
69 not you.
70
717. Happy hacking.
72
73Descriptions of section entries:
74
Stefan Reinauera4ffe8a2015-10-21 13:09:42 -070075 M: Maintainer: FullName <address@domain>
Nico Huberc9826d72018-11-05 13:42:35 +010076 Must be registered to Gerrit (https://review.coreboot.org/).
77 Should have experience with upstream coreboot development.
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -070078 R: Designated reviewer: FullName <address@domain>
79 These reviewers should be CCed on patches.
80 L: Mailing list that is relevant to this area
81 W: Web-page with status/info
82 Q: Patchwork web based patch tracking system site
83 T: SCM tree type and location.
84 Type is one of: git, hg, quilt, stgit, topgit
85 S: Status, one of the following:
Nico Huberc9826d72018-11-05 13:42:35 +010086 Supported: Someone is continuously paid to look after this and
87 a reaction to review requests can be expected
88 within a few days, a month at most.
89 Maintained: Someone actually looks after it and a reaction to
90 review requests can usually be expected within a
91 few weeks.
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -070092 Odd Fixes: It has a maintainer but they don't have time to do
93 much other than throw the odd patch in. See below..
94 Orphan: No current maintainer [but maybe you could take the
95 role as you write your new code].
96 Obsolete: Old code. Something tagged obsolete generally means
97 it has been replaced by a better system and you
98 should be using that.
99 F: Files and directories with wildcard patterns.
100 A trailing slash includes all files and subdirectory files.
101 F: drivers/net/ all files in and below drivers/net
102 F: drivers/net/* all files in drivers/net, but not below
103 F: */net/* all files in "any top level directory"/net
104 One pattern per line. Multiple F: lines acceptable.
105 N: Files and directories with regex patterns.
106 N: [^a-z]tegra all files whose path contains the word tegra
107 One pattern per line. Multiple N: lines acceptable.
108 scripts/get_maintainer.pl has different behavior for files that
109 match F: pattern and matches of N: patterns. By default,
110 get_maintainer will not look at git log history when an F: pattern
111 match occurs. When an N: match occurs, git log history is used
112 to also notify the people that have git commit signatures.
113 X: Files and directories that are NOT maintained, same rules as F:
114 Files exclusions are tested before file matches.
115 Can be useful for excluding a specific subdirectory, for instance:
116 F: net/
117 X: net/ipv6/
118 matches all files in and below net excluding net/ipv6/
119 K: Keyword perl extended regex pattern to match content in a
120 patch or file. For instance:
121 K: of_get_profile
122 matches patches or files that contain "of_get_profile"
123 K: \b(printk|pr_(info|err))\b
124 matches patches or files that contain one or more of the words
125 printk, pr_info or pr_err
126 One regex pattern per line. Multiple K: lines acceptable.
127
128Note: For the hard of thinking, this list is meant to remain in alphabetical
129order. If you could add yourselves to it in alphabetical order that would be
130so much easier [Ed]
131
132Maintainers List (try to look for most precise areas first)
133
134 -----------------------------------
135
Angel Pons8d6f5872020-06-07 00:25:42 +0200136################################################################################
137# Mainboards
138################################################################################
Mike Banonc732d682019-12-31 14:29:39 +0300139
Evgeny Zinoviev09bf63e2019-05-31 16:03:27 +0300140APPLE MAINBOARDS
141M: Evgeny Zinoviev <me@ch1p.io>
142S: Maintained
143F: src/mainboard/apple/
144
Patrick Georgi8fb453e2018-11-21 22:12:45 +0100145
Angel Pons8d6f5872020-06-07 00:25:42 +0200146
147ASROCK B85M PRO4 MAINBOARD
Angel Pons8a508272020-06-06 22:45:16 +0200148M: Angel Pons <th3fanbus@gmail.com>
149S: Maintained
Angel Pons8d6f5872020-06-07 00:25:42 +0200150F: src/mainboard/asrock/b85m_pro4/
Andrey Petrov842dfe82016-05-24 22:01:56 -0700151
Angel Pons33849042018-12-01 23:28:03 +0100152ASROCK G41C-GS MAINBOARD & VARIANTS
153M: Angel Pons <th3fanbus@gmail.com>
154S: Maintained
155F: src/mainboard/asrock/g41c-gs/
156
Tristan Corrickd88cf5f2018-12-06 19:26:47 +1300157ASROCK H81M-HDS MAINBOARD
158M: Tristan Corrick <tristan@corrick.kiwi>
159S: Maintained
160F: src/mainboard/asrock/h81m-hds/
161
Angel Pons8d6f5872020-06-07 00:25:42 +0200162
Angel Ponsf2aaddc2020-06-06 22:38:38 +0200163
Mike Banonc732d682019-12-31 14:29:39 +0300164ASUS AM1I-A MAINBOARD
165M: Mike Banon <mikebdp2@gmail.com>
166S: Maintained
167F: src/mainboard/asus/am1i-a/
168
Tristan Corrickd88cf5f2018-12-06 19:26:47 +1300169ASUS MAXIMUS IV GENE-Z MAINBOARD
170M: Tristan Corrick <tristan@corrick.kiwi>
171S: Maintained
172F: src/mainboard/asus/maximus_iv_gene-z/
173
Angel Pons33849042018-12-01 23:28:03 +0100174ASUS P5QC PRO MAINBOARD & VARIANTS
175M: Angel Pons <th3fanbus@gmail.com>
176S: Maintained
177F: src/mainboard/asus/p5qc/
178
Angel Ponsf2aaddc2020-06-06 22:38:38 +0200179ASUS P5QPL-AM MAINBOARD & VARIANTS
180M: Angel Pons <th3fanbus@gmail.com>
181S: Maintained
182F: src/mainboard/asus/p5qpl-am/
183
Tristan Corrickd88cf5f2018-12-06 19:26:47 +1300184ASUS P8H61-M LX MAINBOARD
185M: Tristan Corrick <tristan@corrick.kiwi>
186S: Maintained
187F: src/mainboard/asus/p8h61-m_lx/
188
Angel Ponsf2aaddc2020-06-06 22:38:38 +0200189ASUS P8H61-M LX3 R2.0 MAINBOARD
190M: Angel Pons <th3fanbus@gmail.com>
191S: Maintained
192F: src/mainboard/asus/p8h61-m_lx3_r2_0/
193
Angel Pons33849042018-12-01 23:28:03 +0100194ASUS P8H61-M PRO MAINBOARD
195M: Angel Pons <th3fanbus@gmail.com>
196S: Maintained
197F: src/mainboard/asus/p8h61-m_pro/
198
Vlado Cibic2bf6a302019-06-09 06:53:50 +0000199ASUS P8Z77-M PRO MAINBOARD
200M: Vlado Cibic <vladocb@protonmail.com>
201S: Maintained
202F: src/mainboard/asus/p8z77-m_pro/
203
Angel Ponsf2aaddc2020-06-06 22:38:38 +0200204ASUS P8Z77-V LX2 MAINBOARD
205M: Angel Pons <th3fanbus@gmail.com>
206S: Maintained
207F: src/mainboard/asus/p8z77-v_lx2/
208
Michał Żygowskib9f9f6c2018-12-21 12:23:27 +0100209
Michael Niewöhner489a11e2019-10-17 14:57:52 +0200210
Felix Singer63975f02020-10-12 21:47:43 +0000211CLEVO MAINBOARDS
212M: Felix Singer <felixsinger@posteo.net>
213S: Supported
214F: src/mainboard/clevo
215
216
217
Frans Hendriks1583fcd2019-06-05 10:18:23 +0200218FACEBOOK FBG1701 MAINBOARD
219M: Frans Hendriks <fhendriks@eltan.com>
220M: Wim Vervoorn <wvervoorn@eltan.com>
221S: Maintained
222F: src/mainboard/facebook/fbg1701/
223
Wim Vervoorn4ba70a72019-12-05 13:48:11 +0100224FACEBOOK MONOLITH MAINBOARD
225M: Frans Hendriks <fhendriks@eltan.com>
226M: Wim Vervoorn <wvervoorn@eltan.com>
227S: Maintained
228F: src/mainboard/facebook/monolith/
229
Angel Pons8d6f5872020-06-07 00:25:42 +0200230
231
232GETAC P470 MAINBOARD
233M: Patrick Georgi <patrick@georgi.software>
234S: Maintained
235F: src/mainboard/getac/p470
236
237
238
239GIGABYTE GA-G41M-ES2L MAINBOARD
240M: Damien Zammit <damien@zamaudio.com>
241S: Odd Fixes
242F: src/mainboard/gigabyte/ga-g41m-es2l
243
244GIGABYTE GA-H61M SERIES MAINBOARDS
245M: Angel Pons <th3fanbus@gmail.com>
246S: Maintained
247F: src/mainboard/gigabyte/ga-h61m-series
248
249
250
251GOOGLE PANTHER MAINBOARD
252M: Stefan Reinauer <stefan.reinauer@coreboot.org>
253S: Supported
254F: src/mainboard/google/panther/
255
256GOOGLE MAINBOARDS (Intel-based, legacy/inactive)
257M: Matt DeVillier <MrChromebox@gmail.com>
258S: Maintained
259F: src/mainboard/google/auron/
260F: src/mainboard/google/beltino/
261F: src/mainboard/google/butterfly/
262F: src/mainboard/google/cyan/
263F: src/mainboard/google/glados/
264F: src/mainboard/google/jecht/
265F: src/mainboard/google/link/
266F: src/mainboard/google/parrot/
267F: src/mainboard/google/slippy/
268F: src/mainboard/google/stout/
269
270
271
272INTEL D510MO MAINBOARD
273M: Damien Zammit <damien@zamaudio.com>
274S: Odd Fixes
275F: src/mainboard/intel/d510mo
276
277INTEL STRAGO MAINBOARD
278M: Hannah Williams <hannah.williams@intel.com>
279S: Supported
280F: /src/mainboard/intel/strago/
281
282
283
284LENOVO MAINBOARDS
285M: Alexander Couzens <lynxis@fe80.eu>
286M: Patrick Rudolph <siro@das-labor.org>
287S: Maintained
288F: src/mainboard/lenovo/
289
290LENOVO G505S MAINBOARD
291M: Mike Banon <mikebdp2@gmail.com>
292S: Maintained
293F: src/mainboard/lenovo/g505s/
294
295
296
297LIBRETREND LT1000 MAINBOARD
298M: Piotr Król <piotr.krol@3mdeb.com>
299M: Michał Żygowski <michal.zygowski@3mdeb.com>
300S: Maintained
301F: src/mainboard/libretrend/lt1000
302
303
Jonathan Zhangdd4f6432020-06-30 11:39:09 -0700304OCP DELTALAKE MAINBOARD
305M: Jonathan Zhang <jonzhang@fb.com>
306M: Reddy Chagam <anjaneya.chagam@intel.com>
307M: Johnny Lin <Johnny_Lin@wiwynn.com>
308M: Morgan Jang <Morgan_Jang@wiwynn.com>
309M: Ryback Hung <<Ryback.Hung@quantatw.com>
310M: Bryant Ou <Bryant.Ou@quantatw.com>
311S: Supported
312F: src/mainboard/ocp/deltalake
Angel Pons8d6f5872020-06-07 00:25:42 +0200313
Jonathan Zhanged849ed2020-05-01 11:23:46 -0700314OCP TIOGAPASS MAINBOARD
315M: Jonathan Zhang <jonzhang@fb.com>
316M: Reddy Chagam <anjaneya.chagam@intel.com>
317M: Johnny Lin <Johnny_Lin@wiwynn.com>
318M: Morgan Jang <Morgan_Jang@wiwynn.com>
319M: Ryback Hung <<Ryback.Hung@quantatw.com>
320M: Bryant Ou <Bryant.Ou@quantatw.com>
321S: Maintained
322F: src/mainboard/ocp/tiogapass
323
Angel Pons8d6f5872020-06-07 00:25:42 +0200324
325
326OPENCELLULAR MAINBOARDS
327M: Christian Walter <christian.walter@9elements.com>
328M: Patrick Rudolph <patrick.rudolph@9elements.com>
329S: Supported
330F: src/mainboard/opencellular/elgon/
331
332
333
334PC ENGINES ALL MAINBOARDS
335M: Piotr Król <piotr.krol@3mdeb.com>
336M: Michał Żygowski <michal.zygowski@3mdeb.com>
337S: Supported
338F: src/mainboard/pcengines/
339
340
341
Frans Hendriksa78146c2019-07-19 10:30:20 +0200342PORTWELL PQ-M107 MAINBOARD
343M: Frans Hendriks <fhendriks@eltan.com>
344M: Wim Vervoorn <wvervoorn@eltan.com>
345S: Maintained
346F: src/mainboard/portwell/m107/
347
Martin Roth2a3434752016-03-05 18:31:29 -0700348
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700349
Angel Pons8d6f5872020-06-07 00:25:42 +0200350PROTECTLI ALL MAINBOARDS
351M: Piotr Król <piotr.krol@3mdeb.com>
352M: Michał Żygowski <michal.zygowski@3mdeb.com>
353S: Maintained
354F: src/mainboard/protectli/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700355
Angel Pons8d6f5872020-06-07 00:25:42 +0200356
357
Christian Walter02b39372020-06-17 20:17:59 +0200358PRODRIVE HERMES MAINBOARD
359M: Christian Walter <christian.walter@9elements.com>
360M: Patrick Rudolph <patrick.rudolph@9elements.com>
361S: Maintained
362F: src/mainboard/prodrive/hermes
363
364
365
Angel Pons8d6f5872020-06-07 00:25:42 +0200366PURISM MAINBOARDS
367M: Matt DeVillier <matt.devillier@puri.sm>
Julius Werner848f5db2017-09-11 13:12:48 -0700368S: Supported
Angel Pons8d6f5872020-06-07 00:25:42 +0200369F: src/mainboard/purism
370
371
372
373SAMSUNG CHROMEOS MAINBOARDS
374M: Matt DeVillier <MrChromebox@gmail.com>
375S: Maintained
376F: src/mainboard/samsung/lumpy/
377F: src/mainboard/samsung/stumpy/
378
379
380
381SIEMENS MC_xxxx MAINBOARDS
382M: Werner Zeh <werner.zeh@siemens.com>
383S: Maintained
384F: src/mainboard/siemens/mc_apl1/
385
386
387
Jeremy Soller625af2b2020-07-21 08:23:39 -0600388SYSTEM76 MAINBOARDS
389M: Jeremy Soller <jeremy@system76.com>
390S: Maintained
391F: src/mainboard/system76/
392
393
394
Angel Pons8d6f5872020-06-07 00:25:42 +0200395SUPERMICRO X10SLM+-F MAINBOARD
396M: Tristan Corrick <tristan@corrick.kiwi>
397S: Maintained
398F: src/mainboard/supermicro/x10slm-f/
399
400SUPERMICRO X11-LGA1151-SERIES
401M: Michael Niewöhner <foss@mniewoehner.de>
402S: Maintained
403F: src/mainboard/supermicro/x11-lga1151-series
404
405################################################################################
406# Architectures
407################################################################################
Julius Werner848f5db2017-09-11 13:12:48 -0700408
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700409ARM ARCHITECTURE
Julius Wernerc34e41f2017-06-09 14:26:03 -0700410M: Julius Werner <jwerner@chromium.org>
411S: Supported
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700412F: src/arch/arm/
Julius Wernerc34e41f2017-06-09 14:26:03 -0700413F: src/arch/arm64/
Julius Wernerc34e41f2017-06-09 14:26:03 -0700414F: src/soc/nvidia/
415F: src/soc/rockchip/
416F: util/nvidia/
417F: util/rockchip/
418
Angel Pons8d6f5872020-06-07 00:25:42 +0200419PPC64 ARCHITECTURE
420M: Ronald Minnich <rminnich@gmail.com>
421M: Timothy Pearson <tpearson@raptorengineeringinc.com>
422S: Maintained
423F: src/arch/ppc64/
424F: src/cpu/qemu-power8/
425F: src/mainboard/emulation/qemu-power8/
426
427RISC-V ARCHITECTURE
428M: Ronald Minnich <rminnich@gmail.com>
429R: Philipp Hug <philipp@hug.cx>
430S: Maintained
431F: src/arch/riscv/
432F: src/soc/sifive/
433F: src/soc/ucb/
434F: src/mainboard/emulation/*-riscv/
435F: src/mainboard/sifive/
436F: util/riscv/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700437
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700438X86 ARCHITECTURE
439F: src/arch/x86/
440F: src/cpu/x86/
441F: src/drivers/pc80/
442F: src/include/pc80/
443F: src/include/cpu/x86/
444
Angel Pons8d6f5872020-06-07 00:25:42 +0200445################################################################################
446# Embedded Controllers
447################################################################################
448
449LENOVO EC
450M: Alexander Couzens <lynxis@fe80.eu>
451S: Maintained
452F: src/ec/lenovo/
453
Jeremy Soller625af2b2020-07-21 08:23:39 -0600454SYSTEM76 EC
455M: Jeremy Soller <jeremy@system76.com>
456S: Maintained
457F: src/ec/system76/
458
Angel Pons8d6f5872020-06-07 00:25:42 +0200459################################################################################
460# Northbridges
461################################################################################
462
463INTEL HASWELL NORTHBRIDGE
464M: Angel Pons <th3fanbus@gmail.com>
465S: Maintained
466F: src/northbridge/intel/haswell/
467
468INTEL PINEVIEW CHIPSET
469M: Damien Zammit <damien@zamaudio.com>
470M: Angel Pons <th3fanbus@gmail.com>
471S: Odd Fixes
472F: src/northbridge/intel/pineview/
473
474INTEL SANDYBRIDGE NORTHBRIDGE
475M: Angel Pons <th3fanbus@gmail.com>
476S: Maintained
477F: src/northbridge/intel/sandybridge/
478
479INTEL X4X CHIPSET
480M: Damien Zammit <damien@zamaudio.com>
481M: Angel Pons <th3fanbus@gmail.com>
482S: Odd Fixes
483F: src/northbridge/intel/x4x/
484
485################################################################################
486# Platforms
487################################################################################
488
489AMD SUPPORT
490F: src/vendorcode/amd/
491F: src/cpu/amd/
492F: src/northbridge/amd/
493F: src/southbridge/amd/
494F: src/include/cpu/amd/
495
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700496INTEL SUPPORT
Martin Roth954338d2017-03-05 11:20:18 -0700497M: Patrick Rudolph <siro@das-labor.org>
498S: Maintained
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700499F: src/vendorcode/intel/
500F: src/cpu/intel/
501F: src/northbridge/intel/
502F: src/southbridge/intel/
503F: src/soc/intel/
504F: src/drivers/intel/
505F: src/include/cpu/intel/
506
Angel Pons8d6f5872020-06-07 00:25:42 +0200507INTEL FSP DENVERTON-NS SOC & HARCUVAR CRB
508M: Vanessa Eusebio <vanessa.f.eusebio@intel.com>
509M: David Guckian <david.guckian@intel.com>
510S: Odd Fixes
511F: src/mainboard/intel/harcuvar/
512F: src/soc/intel/denverton_ns/
513F: src/vendorcode/intel/fsp/fsp2_0/denverton_ns/
514
515INTEL FSP 1.1
516M: Lee Leahy <leroy.p.leahy@intel.com>
517M: Huang Jin <huang.jin@intel.com>
518M: York Yang <york.yang@intel.com>
519S: Supported
520F: src/drivers/intel/fsp1_1/
521
522INTEL FSP 2.0
523M: Andrey Petrov <andrey.petrov@gmail.com>
524S: Maintained
525F: src/drivers/intel/fsp2_0/
526
527################################################################################
528# Systems on a Chip
529################################################################################
530
531INTEL APOLLOLAKE_SOC
532M: Andrey Petrov <andrey.petrov@gmail.com>
533S: Maintained
534F: src/soc/intel/apollolake/
535
536INTEL BRASWELL SOC
537M: Piotr Król <piotr.krol@3mdeb.com>
538M: Michał Żygowski <michal.zygowski@3mdeb.com>
539M: Frans Hendriks <fhendriks@eltan.com>
540S: Maintained
541F: /src/soc/intel/braswell
542F: /src/vendorcode/intel/fsp/fsp1_1/braswell
543
Jonathan Zhange9b0b082020-06-30 13:28:52 -0700544INTEL Xeon Sacalable Processor Family
545M: Jonathan Zhang <jonzhang@fb.com>
546M: Reddy Chagam <anjaneya.chagam@intel.com>
547M: Johnny Lin <Johnny_Lin@wiwynn.com>
548M: Morgan Jang <Morgan_Jang@wiwynn.com>
549M: Ryback Hung <<Ryback.Hung@quantatw.com>
550M: Bryant Ou <Bryant.Ou@quantatw.com>
551S: Supported
552F: src/soc/intel/xeon_sp
553F: src/vendorcode/intel/fsp/fsp2_0/skylake_sp
554F: src/vendorcode/intel/fsp/fsp2_0/copperlake_sp
555
Julius Wernerb1263802020-08-24 14:24:21 -0700556MEDIATEK SOCS
557M: Hung-Te Lin <hungte@chromium.org>
558S: Supported
559F: src/soc/mediatek
560
Angel Pons8d6f5872020-06-07 00:25:42 +0200561ORPHANED ARM SOCS
562S: Orphaned
563F: src/cpu/armltd/
Sam Lewisad7b2e22020-08-03 20:18:29 +1000564F: src/soc/ti/
Angel Pons8d6f5872020-06-07 00:25:42 +0200565F: src/soc/qualcomm/
566F: src/soc/samsung/
567F: util/exynos/
568F: util/ipqheader/
569
570################################################################################
571# Payloads
572################################################################################
573
574NVRAM
575F: util/nvramtool/
576F: payloads/nvramcui/
577
578LIBPAYLOAD
579F: payloads/libpayload/
580
581COREINFO PAYLOAD
582F: payloads/coreinfo/
583
584EXTERNAL PAYLOADS INTEGRATION
585M: Stefan Reinauer <stefan.reinauer@coreboot.org>
586M: Martin Roth <gaumless@gmail.com>
587F: payloads/external
588
589LINUXBOOT PAYLOAD INTEGRATION
590M: Christian Walter <christian.walter@9elements.com>
591M: Marcello Sylvester Bauer <info@marcellobauer.com>
592S: Supported
593F: payloads/external/LinuxBoot
594
595################################################################################
596# Utilities
597################################################################################
598
599ABUILD
600M: Patrick Georgi <patrick@georgi-clan.de>
601M: Martin Roth <gaumless@gmail.com>
602S: Supported
603F: util/abuild/
604
605BOARD STATUS
606F: util/board_status/
607
608BUILD SYSTEM
609M: Patrick Georgi <patrick@georgi-clan.de>
610M: Martin Roth <gaumless@gmail.com>
611S: Supported
612F: Makefile
613F: *.inc
614F: src/include/kconfig.h
615F: util/kconfig/
616F: util/sconfig/
617F: util/xcompile/
618F: util/genbuild_h/
619
620TOOLCHAIN
621F: util/crossgcc/
622
623DOCKER
624M: Martin Roth <gaumless@gmail.com>
625S: Supported
626F: util/docker/
627
628GIT
629F: .git*
630F: /util/gitconfig
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700631
Stefan Reinauer2e38cc52015-05-06 11:15:38 -0700632LINT SCRIPTS
633M: Patrick Georgi <patrick@georgi-clan.de>
Martin Roth057ce5f2016-03-17 12:03:00 -0600634M: Martin Roth <gaumless@gmail.com>
Stefan Reinauer2e38cc52015-05-06 11:15:38 -0700635S: Supported
636F: util/lint/
637
Angel Pons8d6f5872020-06-07 00:25:42 +0200638IFDTOOL
639M: Stefan Reinauer <stefan.reinauer@coreboot.org>
640F: util/ifdtool/
641
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700642INTELTOOL
643M: Stefan Reinauer <stefan.reinauer@coreboot.org>
644F: util/inteltool/
645
Philipp Deppenwiese4cd9a112016-03-23 00:02:40 +0100646INTELMETOOL
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100647M: Christian Walter <christian.walter@9elements.com>
Philipp Deppenwiese4cd9a112016-03-23 00:02:40 +0100648F: util/intelmetool/
649
Nicola Corna4f4fc182017-02-23 16:53:45 +0100650ME_CLEANER
651M: Nicola Corna <nicola@corna.info>
652W: https://github.com/corna/me_cleaner
653S: Maintained
654F: util/me_cleaner/
655
Angel Pons8d6f5872020-06-07 00:25:42 +0200656################################################################################
657# Miscellaneous
658################################################################################
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700659
Angel Pons8d6f5872020-06-07 00:25:42 +0200660ASPEED AST2050 DRIVER & COMMON CODE
661M: Timothy Pearson <tpearson@raptorengineeringinc.com>
Patrick Georgi65ff63f2015-05-21 18:54:10 +0200662S: Supported
Angel Pons8d6f5872020-06-07 00:25:42 +0200663F: src/drivers/aspeed/common/
664F: src/drivers/aspeed/ast2050/
Patrick Georgi65ff63f2015-05-21 18:54:10 +0200665
Angel Pons8d6f5872020-06-07 00:25:42 +0200666ACPI
667F: src/acpi/
668F: src/arch/x86/acpi/
669F: util/acpi/
670
671LZ4 COMPRESSION
672M: Julius Werner <jwerner@chromium.org>
673S: Supported
674F: src/commonlib/lz4*
675F: payloads/libpayload/liblz4/
676F: util/cbfstool/lz4/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700677
678BINARY OBJECTS
679F: 3rdparty/blobs/
680
681VERIFIED BOOT
682F: 3rdparty/vboot/
683F: src/vendorcode/google/chromeos/
684F: src/include/tpm.h
685F: src/include/tpm_lite/
686
687RESOURCE ALLOCATOR
688F: src/device/*
689F: src/include/device/
690F: src/include/cpu/cpu.h
691
692OPTION ROM EXECUTION & X86EMU
693F: src/device/oprom/
694
695CBFS
696F: src/include/cbfs.h
Julius Werner98eeb962019-12-11 15:47:42 -0800697F: src/commonlib/bsd/include/commonlib/bsd/cbfs_serialized.h
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700698F: util/cbfstool/
699
700CBMEM
701F: src/include/cbmem.h
702F: src/include/cbmem_id.h
703F: util/cbmem/
704
705CONSOLE
706F: src/console/
707F: src/include/console/
708F: src/drivers/uart/
709
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700710VERIFIED BOOT 2
711M: Aaron Durbin <adurbin@chromium.org>
Philipp Deppenwiese8f6af1c2018-11-23 19:13:54 +0100712F: src/security/vboot/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700713
Philipp Deppenwiese6507e6f2016-06-22 19:01:47 +0200714TPM SUPPORT
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100715M: Christian Walter <christian.walter@9elements.com>
Philipp Deppenwiese8f6af1c2018-11-23 19:13:54 +0100716S: Supported
Philipp Deppenwiese6507e6f2016-06-22 19:01:47 +0200717F: src/drivers/*/tpm/
Philipp Deppenwiese8f6af1c2018-11-23 19:13:54 +0100718F: src/security/tpm
Philipp Deppenwiese6507e6f2016-06-22 19:01:47 +0200719
Martin Rothe801fcb2017-05-27 10:54:02 -0600720SUPERIOS & SUPERIOTOOL
721M: Felix Held <felix-coreboot@felixheld.de>
722S: Maintained
723F: src/superio/
724F: util/superiotool/
725
Julius Wernerc34e41f2017-06-09 14:26:03 -0700726MEMLAYOUT
727M: Julius Werner <jwerner@chromium.org>
728S: Supported
729F: */memlayout.h
730F: *.ld
731
Frans Hendriksf20bf922019-06-13 14:14:56 +0200732ELTAN VENDORCODE
733M: Frans Hendriks <fhendriks@eltan.com>
734M: Wim Vervoorn <wvervoorn@eltan.com>
735S: Maintained
736F: src/vendorcode/eltan
737
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700738MISSING: TIMERS / DELAYS
739
740MISSING: TIMESTAMPS
741
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700742MISSING: FMAP
743
744MISSING: GPIO
745
746MISSING: SMP
747
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700748MISSING: DMP / QEMU-X86
749
750MISSING: ELOG
751
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700752MISSING: SPI
753
Angel Pons0b500992020-04-15 16:47:36 +0200754# *** Infrastructure Owners ***
Martin Roth19fdedb2017-06-25 15:44:16 -0600755# This is intended to let people know who they should contact for issues with various infrastructure pieces.
756# Hardware
757# Owners: Stefan, Patrick
Sumeet Pawnikar1638a852017-09-12 22:17:55 +0530758# Backups:
Martin Roth19fdedb2017-06-25 15:44:16 -0600759
760# Web Server
761# Owners: Stefan, Patrick
762# Backups:
763
764# Website
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100765# Owners: Martin
Martin Roth19fdedb2017-06-25 15:44:16 -0600766# Backups: Patrick, Stefan
767
768# Documentation Website
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100769# Owners: Patrick
Martin Roth19fdedb2017-06-25 15:44:16 -0600770# Backups:
771
Patrick Georgi1d348942019-07-17 20:40:50 +0200772CODE OF CONDUCT
773M: Stefan Reinauer <stefan.reinauer@coreboot.org>
774M: Patrick Georgi <patrick@coreboot.org>
775M: Ronald Minnich <rminnich@coreboot.org>
776M: Martin Roth <martin@coreboot.org>
777S: Maintained
778F: Documentation/community/code_of_conduct.md
779
Martin Roth19fdedb2017-06-25 15:44:16 -0600780# Wiki
781# Owners: Stefan, Patrick
782# Backups:
783
784# Gerrit
785# Owners: Stefan, Patrick
786# Backups: Martin
787
788# Jenkins
789# Owners: Patrick, Martin
790# Backups:
791
792# Bug Tracker
793# Owners: Lynxis,
794# Backups: Martin,
795
796# Mailing List
797# Owners: Stefan, Patrick
798# Backups: Martin,
799
800# Software Freedom Conservancy
801# Main contact: Martin
802# “Official” contact: Stefan