blob: edd274b9b5e20c1843b4ef146c9bf2f6300de83c [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
297
Jonathan Zhanged849ed2020-05-01 11:23:46 -0700298OCP TIOGAPASS MAINBOARD
299M: Jonathan Zhang <jonzhang@fb.com>
300M: Reddy Chagam <anjaneya.chagam@intel.com>
301M: Johnny Lin <Johnny_Lin@wiwynn.com>
302M: Morgan Jang <Morgan_Jang@wiwynn.com>
303M: Ryback Hung <<Ryback.Hung@quantatw.com>
304M: Bryant Ou <Bryant.Ou@quantatw.com>
305S: Maintained
306F: src/mainboard/ocp/tiogapass
307
Angel Pons8d6f5872020-06-07 00:25:42 +0200308
309
310OPENCELLULAR MAINBOARDS
311M: Christian Walter <christian.walter@9elements.com>
312M: Patrick Rudolph <patrick.rudolph@9elements.com>
313S: Supported
314F: src/mainboard/opencellular/elgon/
315
316
317
318PC ENGINES ALL MAINBOARDS
319M: Piotr Król <piotr.krol@3mdeb.com>
320M: Michał Żygowski <michal.zygowski@3mdeb.com>
321S: Supported
322F: src/mainboard/pcengines/
323
324
325
Frans Hendriksa78146c2019-07-19 10:30:20 +0200326PORTWELL PQ-M107 MAINBOARD
327M: Frans Hendriks <fhendriks@eltan.com>
328M: Wim Vervoorn <wvervoorn@eltan.com>
329S: Maintained
330F: src/mainboard/portwell/m107/
331
Martin Roth2a3434752016-03-05 18:31:29 -0700332
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700333
Angel Pons8d6f5872020-06-07 00:25:42 +0200334PROTECTLI ALL MAINBOARDS
335M: Piotr Król <piotr.krol@3mdeb.com>
336M: Michał Żygowski <michal.zygowski@3mdeb.com>
337S: Maintained
338F: src/mainboard/protectli/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700339
Angel Pons8d6f5872020-06-07 00:25:42 +0200340
341
342PURISM MAINBOARDS
343M: Matt DeVillier <matt.devillier@puri.sm>
Julius Werner848f5db2017-09-11 13:12:48 -0700344S: Supported
Angel Pons8d6f5872020-06-07 00:25:42 +0200345F: src/mainboard/purism
346
347
348
349SAMSUNG CHROMEOS MAINBOARDS
350M: Matt DeVillier <MrChromebox@gmail.com>
351S: Maintained
352F: src/mainboard/samsung/lumpy/
353F: src/mainboard/samsung/stumpy/
354
355
356
357SIEMENS MC_xxxx MAINBOARDS
358M: Werner Zeh <werner.zeh@siemens.com>
359S: Maintained
360F: src/mainboard/siemens/mc_apl1/
361
362
363
364SUPERMICRO X10SLM+-F MAINBOARD
365M: Tristan Corrick <tristan@corrick.kiwi>
366S: Maintained
367F: src/mainboard/supermicro/x10slm-f/
368
369SUPERMICRO X11-LGA1151-SERIES
370M: Michael Niewöhner <foss@mniewoehner.de>
371S: Maintained
372F: src/mainboard/supermicro/x11-lga1151-series
373
374################################################################################
375# Architectures
376################################################################################
Julius Werner848f5db2017-09-11 13:12:48 -0700377
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700378ARM ARCHITECTURE
Julius Wernerc34e41f2017-06-09 14:26:03 -0700379M: Julius Werner <jwerner@chromium.org>
380S: Supported
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700381F: src/arch/arm/
Julius Wernerc34e41f2017-06-09 14:26:03 -0700382F: src/arch/arm64/
383F: src/soc/mediatek/
384F: src/soc/nvidia/
385F: src/soc/rockchip/
386F: util/nvidia/
387F: util/rockchip/
388
Angel Pons8d6f5872020-06-07 00:25:42 +0200389PPC64 ARCHITECTURE
390M: Ronald Minnich <rminnich@gmail.com>
391M: Timothy Pearson <tpearson@raptorengineeringinc.com>
392S: Maintained
393F: src/arch/ppc64/
394F: src/cpu/qemu-power8/
395F: src/mainboard/emulation/qemu-power8/
396
397RISC-V ARCHITECTURE
398M: Ronald Minnich <rminnich@gmail.com>
399R: Philipp Hug <philipp@hug.cx>
400S: Maintained
401F: src/arch/riscv/
402F: src/soc/sifive/
403F: src/soc/ucb/
404F: src/mainboard/emulation/*-riscv/
405F: src/mainboard/sifive/
406F: util/riscv/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700407
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700408X86 ARCHITECTURE
409F: src/arch/x86/
410F: src/cpu/x86/
411F: src/drivers/pc80/
412F: src/include/pc80/
413F: src/include/cpu/x86/
414
Angel Pons8d6f5872020-06-07 00:25:42 +0200415################################################################################
416# Embedded Controllers
417################################################################################
418
419LENOVO EC
420M: Alexander Couzens <lynxis@fe80.eu>
421S: Maintained
422F: src/ec/lenovo/
423
424################################################################################
425# Northbridges
426################################################################################
427
428INTEL HASWELL NORTHBRIDGE
429M: Angel Pons <th3fanbus@gmail.com>
430S: Maintained
431F: src/northbridge/intel/haswell/
432
433INTEL PINEVIEW CHIPSET
434M: Damien Zammit <damien@zamaudio.com>
435M: Angel Pons <th3fanbus@gmail.com>
436S: Odd Fixes
437F: src/northbridge/intel/pineview/
438
439INTEL SANDYBRIDGE NORTHBRIDGE
440M: Angel Pons <th3fanbus@gmail.com>
441S: Maintained
442F: src/northbridge/intel/sandybridge/
443
444INTEL X4X CHIPSET
445M: Damien Zammit <damien@zamaudio.com>
446M: Angel Pons <th3fanbus@gmail.com>
447S: Odd Fixes
448F: src/northbridge/intel/x4x/
449
450################################################################################
451# Platforms
452################################################################################
453
454AMD SUPPORT
455F: src/vendorcode/amd/
456F: src/cpu/amd/
457F: src/northbridge/amd/
458F: src/southbridge/amd/
459F: src/include/cpu/amd/
460
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700461INTEL SUPPORT
Martin Roth954338d2017-03-05 11:20:18 -0700462M: Patrick Rudolph <siro@das-labor.org>
463S: Maintained
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700464F: src/vendorcode/intel/
465F: src/cpu/intel/
466F: src/northbridge/intel/
467F: src/southbridge/intel/
468F: src/soc/intel/
469F: src/drivers/intel/
470F: src/include/cpu/intel/
471
Angel Pons8d6f5872020-06-07 00:25:42 +0200472INTEL FSP DENVERTON-NS SOC & HARCUVAR CRB
473M: Vanessa Eusebio <vanessa.f.eusebio@intel.com>
474M: David Guckian <david.guckian@intel.com>
475S: Odd Fixes
476F: src/mainboard/intel/harcuvar/
477F: src/soc/intel/denverton_ns/
478F: src/vendorcode/intel/fsp/fsp2_0/denverton_ns/
479
480INTEL FSP 1.1
481M: Lee Leahy <leroy.p.leahy@intel.com>
482M: Huang Jin <huang.jin@intel.com>
483M: York Yang <york.yang@intel.com>
484S: Supported
485F: src/drivers/intel/fsp1_1/
486
487INTEL FSP 2.0
488M: Andrey Petrov <andrey.petrov@gmail.com>
489S: Maintained
490F: src/drivers/intel/fsp2_0/
491
492################################################################################
493# Systems on a Chip
494################################################################################
495
496INTEL APOLLOLAKE_SOC
497M: Andrey Petrov <andrey.petrov@gmail.com>
498S: Maintained
499F: src/soc/intel/apollolake/
500
501INTEL BRASWELL SOC
502M: Piotr Król <piotr.krol@3mdeb.com>
503M: Michał Żygowski <michal.zygowski@3mdeb.com>
504M: Frans Hendriks <fhendriks@eltan.com>
505S: Maintained
506F: /src/soc/intel/braswell
507F: /src/vendorcode/intel/fsp/fsp1_1/braswell
508
509ORPHANED ARM SOCS
510S: Orphaned
511F: src/cpu/armltd/
512F: src/cpu/ti/
513F: src/soc/qualcomm/
514F: src/soc/samsung/
515F: util/exynos/
516F: util/ipqheader/
517
518################################################################################
519# Payloads
520################################################################################
521
522NVRAM
523F: util/nvramtool/
524F: payloads/nvramcui/
525
526LIBPAYLOAD
527F: payloads/libpayload/
528
529COREINFO PAYLOAD
530F: payloads/coreinfo/
531
532EXTERNAL PAYLOADS INTEGRATION
533M: Stefan Reinauer <stefan.reinauer@coreboot.org>
534M: Martin Roth <gaumless@gmail.com>
535F: payloads/external
536
537LINUXBOOT PAYLOAD INTEGRATION
538M: Christian Walter <christian.walter@9elements.com>
539M: Marcello Sylvester Bauer <info@marcellobauer.com>
540S: Supported
541F: payloads/external/LinuxBoot
542
543################################################################################
544# Utilities
545################################################################################
546
547ABUILD
548M: Patrick Georgi <patrick@georgi-clan.de>
549M: Martin Roth <gaumless@gmail.com>
550S: Supported
551F: util/abuild/
552
553BOARD STATUS
554F: util/board_status/
555
556BUILD SYSTEM
557M: Patrick Georgi <patrick@georgi-clan.de>
558M: Martin Roth <gaumless@gmail.com>
559S: Supported
560F: Makefile
561F: *.inc
562F: src/include/kconfig.h
563F: util/kconfig/
564F: util/sconfig/
565F: util/xcompile/
566F: util/genbuild_h/
567
568TOOLCHAIN
569F: util/crossgcc/
570
571DOCKER
572M: Martin Roth <gaumless@gmail.com>
573S: Supported
574F: util/docker/
575
576GIT
577F: .git*
578F: /util/gitconfig
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700579
Stefan Reinauer2e38cc52015-05-06 11:15:38 -0700580LINT SCRIPTS
581M: Patrick Georgi <patrick@georgi-clan.de>
Martin Roth057ce5f2016-03-17 12:03:00 -0600582M: Martin Roth <gaumless@gmail.com>
Stefan Reinauer2e38cc52015-05-06 11:15:38 -0700583S: Supported
584F: util/lint/
585
Angel Pons8d6f5872020-06-07 00:25:42 +0200586IFDTOOL
587M: Stefan Reinauer <stefan.reinauer@coreboot.org>
588F: util/ifdtool/
589
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700590INTELTOOL
591M: Stefan Reinauer <stefan.reinauer@coreboot.org>
592F: util/inteltool/
593
Philipp Deppenwiese4cd9a112016-03-23 00:02:40 +0100594INTELMETOOL
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100595M: Christian Walter <christian.walter@9elements.com>
Philipp Deppenwiese4cd9a112016-03-23 00:02:40 +0100596F: util/intelmetool/
597
Nicola Corna4f4fc182017-02-23 16:53:45 +0100598ME_CLEANER
599M: Nicola Corna <nicola@corna.info>
600W: https://github.com/corna/me_cleaner
601S: Maintained
602F: util/me_cleaner/
603
Angel Pons8d6f5872020-06-07 00:25:42 +0200604################################################################################
605# Miscellaneous
606################################################################################
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700607
Angel Pons8d6f5872020-06-07 00:25:42 +0200608ASPEED AST2050 DRIVER & COMMON CODE
609M: Timothy Pearson <tpearson@raptorengineeringinc.com>
Patrick Georgi65ff63f2015-05-21 18:54:10 +0200610S: Supported
Angel Pons8d6f5872020-06-07 00:25:42 +0200611F: src/drivers/aspeed/common/
612F: src/drivers/aspeed/ast2050/
Patrick Georgi65ff63f2015-05-21 18:54:10 +0200613
Angel Pons8d6f5872020-06-07 00:25:42 +0200614ACPI
615F: src/acpi/
616F: src/arch/x86/acpi/
617F: util/acpi/
618
619LZ4 COMPRESSION
620M: Julius Werner <jwerner@chromium.org>
621S: Supported
622F: src/commonlib/lz4*
623F: payloads/libpayload/liblz4/
624F: util/cbfstool/lz4/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700625
626BINARY OBJECTS
627F: 3rdparty/blobs/
628
629VERIFIED BOOT
630F: 3rdparty/vboot/
631F: src/vendorcode/google/chromeos/
632F: src/include/tpm.h
633F: src/include/tpm_lite/
634
635RESOURCE ALLOCATOR
636F: src/device/*
637F: src/include/device/
638F: src/include/cpu/cpu.h
639
640OPTION ROM EXECUTION & X86EMU
641F: src/device/oprom/
642
643CBFS
644F: src/include/cbfs.h
Julius Werner98eeb962019-12-11 15:47:42 -0800645F: src/commonlib/bsd/include/commonlib/bsd/cbfs_serialized.h
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700646F: util/cbfstool/
647
648CBMEM
649F: src/include/cbmem.h
650F: src/include/cbmem_id.h
651F: util/cbmem/
652
653CONSOLE
654F: src/console/
655F: src/include/console/
656F: src/drivers/uart/
657
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700658VERIFIED BOOT 2
659M: Aaron Durbin <adurbin@chromium.org>
Philipp Deppenwiese8f6af1c2018-11-23 19:13:54 +0100660F: src/security/vboot/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700661
Philipp Deppenwiese6507e6f2016-06-22 19:01:47 +0200662TPM SUPPORT
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100663M: Christian Walter <christian.walter@9elements.com>
Philipp Deppenwiese8f6af1c2018-11-23 19:13:54 +0100664S: Supported
Philipp Deppenwiese6507e6f2016-06-22 19:01:47 +0200665F: src/drivers/*/tpm/
Philipp Deppenwiese8f6af1c2018-11-23 19:13:54 +0100666F: src/security/tpm
Philipp Deppenwiese6507e6f2016-06-22 19:01:47 +0200667
Martin Rothe801fcb2017-05-27 10:54:02 -0600668SUPERIOS & SUPERIOTOOL
669M: Felix Held <felix-coreboot@felixheld.de>
670S: Maintained
671F: src/superio/
672F: util/superiotool/
673
Julius Wernerc34e41f2017-06-09 14:26:03 -0700674MEMLAYOUT
675M: Julius Werner <jwerner@chromium.org>
676S: Supported
677F: */memlayout.h
678F: *.ld
679
Frans Hendriksf20bf922019-06-13 14:14:56 +0200680ELTAN VENDORCODE
681M: Frans Hendriks <fhendriks@eltan.com>
682M: Wim Vervoorn <wvervoorn@eltan.com>
683S: Maintained
684F: src/vendorcode/eltan
685
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700686MISSING: TIMERS / DELAYS
687
688MISSING: TIMESTAMPS
689
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700690MISSING: FMAP
691
692MISSING: GPIO
693
694MISSING: SMP
695
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700696MISSING: DMP / QEMU-X86
697
698MISSING: ELOG
699
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700700MISSING: SPI
701
Angel Pons0b500992020-04-15 16:47:36 +0200702# *** Infrastructure Owners ***
Martin Roth19fdedb2017-06-25 15:44:16 -0600703# This is intended to let people know who they should contact for issues with various infrastructure pieces.
704# Hardware
705# Owners: Stefan, Patrick
Sumeet Pawnikar1638a852017-09-12 22:17:55 +0530706# Backups:
Martin Roth19fdedb2017-06-25 15:44:16 -0600707
708# Web Server
709# Owners: Stefan, Patrick
710# Backups:
711
712# Website
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100713# Owners: Martin
Martin Roth19fdedb2017-06-25 15:44:16 -0600714# Backups: Patrick, Stefan
715
716# Documentation Website
Philipp Deppenwiese00eb7d72020-03-28 14:19:44 +0100717# Owners: Patrick
Martin Roth19fdedb2017-06-25 15:44:16 -0600718# Backups:
719
Patrick Georgi1d348942019-07-17 20:40:50 +0200720CODE OF CONDUCT
721M: Stefan Reinauer <stefan.reinauer@coreboot.org>
722M: Patrick Georgi <patrick@coreboot.org>
723M: Ronald Minnich <rminnich@coreboot.org>
724M: Martin Roth <martin@coreboot.org>
725S: Maintained
726F: Documentation/community/code_of_conduct.md
727
Martin Roth19fdedb2017-06-25 15:44:16 -0600728# Wiki
729# Owners: Stefan, Patrick
730# Backups:
731
732# Gerrit
733# Owners: Stefan, Patrick
734# Backups: Martin
735
736# Jenkins
737# Owners: Patrick, Martin
738# Backups:
739
740# Bug Tracker
741# Owners: Lynxis,
742# Backups: Martin,
743
744# Mailing List
745# Owners: Stefan, Patrick
746# Backups: Martin,
747
748# Software Freedom Conservancy
749# Main contact: Martin
750# “Official” contact: Stefan