mb/google/brya/var/gimble: Configure GPIO to release PERST# earlier
[coreboot.git] / MAINTAINERS
blob7d87771f692a76e3973cd39c6f497fdd8bc205e7
3                     List of upstream coreboot maintainers
4                      and how to submit coreboot changes
6 This represents the list of maintainers that work on the upstream coreboot
7 code base (on coreboot.org).  Maintainers are assigned to topics and when
8 applicable to subtrees of the source tree. You'll find some subtrees that
9 don't have a maintainer. If you are looking for reviewers for such a sub-
10 tree, it's often a good choice to look at the git history to see who worked
11 on it last.
13 Please try to follow the guidelines below.  This will make things
14 easier on the maintainers.  Not all of these guidelines matter for every
15 trivial patch so apply some common sense.
17 1.      Always _test_ your changes, however small, on at least 1 or
18         2 people, preferably many more.
20 2.      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!)
28 3.      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!)
32 4.      When you are happy with a change make it generally available for
33         testing in gerrit and await feedback.
35 5.      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.
44         PLEASE check your patch with the automated style checker
45         (util/lint/checkpatch.pl) to catch trival style violations.
46         See https://www.coreboot.org/Coding_Style for guidance here.
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.
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.
58         PLEASE document known bugs. If it doesn't work for everything
59         or does something very odd once a month document it.
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
65         https://www.coreboot.org/Development_Guidelines#Sign-off_Procedure.
67 6.      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.
71 7.      Happy hacking.
73 Descriptions of section entries:
75         M: Maintainer: FullName <address@domain>
76            Must be registered to Gerrit (https://review.coreboot.org/).
77            Should have experience with upstream coreboot development.
78         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:
86            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.
92            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.
128 Note: For the hard of thinking, this list is meant to remain in alphabetical
129 order. If you could add yourselves to it in alphabetical order that would be
130 so much easier [Ed]
132 Maintainers List (try to look for most precise areas first)
134                 -----------------------------------
136 ################################################################################
137 # Mainboards
138 ################################################################################
140 AMD family 17h and 19h reference boards
141 M:      Marshall Dawson <marshalldawson3rd@gmail.com>
142 M:      Felix Held <felix-coreboot@felixheld.de>
143 M:      Jason Glenesk <jason.glenesk@gmail.com>
144 S:      Maintained
145 F:      src/mainboard/amd/majolica/
146 F:      src/mainboard/amd/mandolin/
148 APPLE MAINBOARDS
149 M:      Evgeny Zinoviev <me@ch1p.io>
150 S:      Maintained
151 F:      src/mainboard/apple/
155 ASROCK B85M PRO4 MAINBOARD
156 M:      Angel Pons <th3fanbus@gmail.com>
157 S:      Maintained
158 F:      src/mainboard/asrock/b85m_pro4/
160 ASROCK G41C-GS MAINBOARD & VARIANTS
161 M:      Angel Pons <th3fanbus@gmail.com>
162 S:      Maintained
163 F:      src/mainboard/asrock/g41c-gs/
165 ASROCK H81M-HDS MAINBOARD
166 M:      Tristan Corrick <tristan@corrick.kiwi>
167 S:      Maintained
168 F:      src/mainboard/asrock/h81m-hds/
172 ASUS A88XM-E MAINBOARD
173 M:      Mike Banon <mikebdp2@gmail.com>
174 S:      Maintained
175 F:      src/mainboard/asus/a88xm-e/
177 ASUS AM1I-A MAINBOARD
178 M:      Mike Banon <mikebdp2@gmail.com>
179 S:      Maintained
180 F:      src/mainboard/asus/am1i-a/
182 ASUS H61 SERIES MAINBOARDS
183 M:      Angel Pons <th3fanbus@gmail.com>
184 M:      Tristan Corrick <tristan@corrick.kiwi>
185 S:      Maintained
186 F:      src/mainboard/asus/h61-series/
188 ASUS MAXIMUS IV GENE-Z MAINBOARD
189 M:      Tristan Corrick <tristan@corrick.kiwi>
190 S:      Maintained
191 F:      src/mainboard/asus/maximus_iv_gene-z/
193 ASUS P5QC PRO MAINBOARD & VARIANTS
194 M:      Angel Pons <th3fanbus@gmail.com>
195 R:      Stefan Ott <coreboot@desire.ch>
196 S:      Maintained
197 F:      src/mainboard/asus/p5qc/
199 ASUS P5QPL-AM MAINBOARD & VARIANTS
200 M:      Angel Pons <th3fanbus@gmail.com>
201 S:      Maintained
202 F:      src/mainboard/asus/p5qpl-am/
204 ASUS P8Z77 SERIES MAINBOARDS
205 M:      Angel Pons <th3fanbus@gmail.com>
206 M:      Vlado Cibic <vladocb@protonmail.com>
207 S:      Maintained
208 F:      src/mainboard/asus/p8z77-series/
212 CLEVO MAINBOARDS
213 M:      Felix Singer <felixsinger@posteo.net>
214 M:      Michael Niewöhner <foss@mniewoehner.de>
215 S:      Supported
216 F:      src/mainboard/clevo/
220 FACEBOOK FBG1701 MAINBOARD
221 M:      Frans Hendriks <fhendriks@eltan.com>
222 M:      Erik van den Bogaert <ebogaert@eltan.com>
223 S:      Maintained
224 F:      src/mainboard/facebook/fbg1701/
226 FACEBOOK MONOLITH MAINBOARD
227 M:      Frans Hendriks <fhendriks@eltan.com>
228 M:      Erik van den Bogaert <ebogaert@eltan.com>
229 S:      Maintained
230 F:      src/mainboard/facebook/monolith/
234 GIGABYTE GA-D510UD MAINBOARD
235 M:      Angel Pons <th3fanbus@gmail.com>
236 S:      Maintained
237 F:      src/mainboard/gigabyte/ga-d510ud/
239 GIGABYTE GA-G41M-ES2L MAINBOARD
240 M:      Damien Zammit <damien@zamaudio.com>
241 S:      Odd Fixes
242 F:      src/mainboard/gigabyte/ga-g41m-es2l/
244 GIGABYTE GA-H61M SERIES MAINBOARDS
245 M:      Angel Pons <th3fanbus@gmail.com>
246 S:      Maintained
247 F:      src/mainboard/gigabyte/ga-h61m-series/
250 GOOGLE BRYA MAINBOARDS
251 M:      Tim Wawrzynczak <twawrzynczak@chromium.org>
252 S:      Maintained
253 F:      src/mainboard/google/brya/
255 GOOGLE HATCH MAINBOARDS
256 M:      Tim Wawrzynczak <twawrzynczak@chromium.org>
257 S:      Maintained
258 F:      src/mainboard/google/hatch/
260 GOOGLE PANTHER MAINBOARD
261 M:      Stefan Reinauer <stefan.reinauer@coreboot.org>
262 S:      Supported
263 F:      src/mainboard/google/panther/
265 GOOGLE VOLTEER MAINBOARDS
266 M:      Tim Wawrzynczak <twawrzynczak@chromium.org>
267 M:      Nick Vaccaro <nvaccaro@chromium.org>
268 S:      Maintained
269 F:      src/mainboard/google/volteer/
271 GOOGLE MAINBOARDS (Intel-based, legacy/inactive)
272 M:      Matt DeVillier <MrChromebox@gmail.com>
273 S:      Maintained
274 F:      src/mainboard/google/auron/
275 F:      src/mainboard/google/beltino/
276 F:      src/mainboard/google/butterfly/
277 F:      src/mainboard/google/cyan/
278 F:      src/mainboard/google/glados/
279 F:      src/mainboard/google/jecht/
280 F:      src/mainboard/google/link/
281 F:      src/mainboard/google/parrot/
282 F:      src/mainboard/google/slippy/
283 F:      src/mainboard/google/stout/
287 HP 280 G2 MAINBOARD
288 M:      Angel Pons <th3fanbus@gmail.com>
289 S:      Maintained
290 F:      src/mainboard/hp/280_g2/
294 INTEL D510MO MAINBOARD
295 M:      Damien Zammit <damien@zamaudio.com>
296 S:      Odd Fixes
297 F:      src/mainboard/intel/d510mo/
299 INTEL STRAGO MAINBOARD
300 M:      Hannah Williams <hannah.williams@intel.com>
301 S:      Supported
302 F:      /src/mainboard/intel/strago/
306 KONTRON BSL6 MAINBOARD
307 M:      Felix Singer <felixsinger@posteo.net>
308 M:      Nico Huber <nico.h@gmx.de>
309 S:      Supported
310 F:      src/mainboard/kontron/bsl6/
312 KONTRON MAL10 MAINBOARD
313 M:      Maxim Polyakov <max.senia.poliak@gmail.com>
314 M:      Nico Huber <nico.h@gmx.de>
315 M:      Felix Singer <felixsinger@posteo.net>
316 S:      Supported
317 F:      src/mainboard/kontron/mal10/
321 LENOVO MAINBOARDS
322 M:      Alexander Couzens <lynxis@fe80.eu>
323 M:      Patrick Rudolph <siro@das-labor.org>
324 S:      Maintained
325 F:      src/mainboard/lenovo/
327 LENOVO G505S MAINBOARD
328 M:      Mike Banon <mikebdp2@gmail.com>
329 S:      Maintained
330 F:      src/mainboard/lenovo/g505s/
332 LENOVO X200 MAINBOARD
333 R:      Stefan Ott <coreboot@desire.ch>
334 S:      Maintained
335 F:      src/mainboard/lenovo/x200/
337 LENOVO X201 MAINBOARD
338 R:      Stefan Ott <coreboot@desire.ch>
339 S:      Maintained
340 F:      src/mainboard/lenovo/x201/
343 LIBRETREND LT1000 MAINBOARD
344 M:      Piotr Król <piotr.krol@3mdeb.com>
345 M:      Michał Żygowski <michal.zygowski@3mdeb.com>
346 S:      Maintained
347 F:      src/mainboard/libretrend/lt1000/
351 MSI H81M-P33 MAINBOARD
352 M:      Angel Pons <th3fanbus@gmail.com>
353 S:      Maintained
354 F:      src/mainboard/msi/h81m-p33/
358 OCP DELTALAKE MAINBOARD
359 M:      Arthur Heymans <arthur@aheymans.xyz>
360 M:      Christian Walter <christian.walter@9elements.com>
361 M:      Johnny Lin <Johnny_Lin@wiwynn.com>
362 M:      Jonathan Zhang <jonzhang@fb.com>
363 M:      Tim Chu <Tim.Chu@quantatw.com>
364 S:      Supported
365 F:      src/mainboard/ocp/deltalake/
367 OCP TIOGAPASS MAINBOARD
368 M:      Jonathan Zhang <jonzhang@fb.com>
369 M:      Reddy Chagam <anjaneya.chagam@intel.com>
370 M:      Johnny Lin <Johnny_Lin@wiwynn.com>
371 M:      Morgan Jang <Morgan_Jang@wiwynn.com>
372 M:      Ryback Hung <<Ryback.Hung@quantatw.com>
373 M:      Bryant Ou <Bryant.Ou@quantatw.com>
374 S:      Maintained
375 F:      src/mainboard/ocp/tiogapass/
379 OPENCELLULAR MAINBOARDS
380 M:      Christian Walter <christian.walter@9elements.com>
381 M:      Patrick Rudolph <patrick.rudolph@9elements.com>
382 S:      Supported
383 F:      src/mainboard/opencellular/elgon/
387 PC ENGINES ALL MAINBOARDS
388 M:      Piotr Król <piotr.krol@3mdeb.com>
389 M:      Michał Żygowski <michal.zygowski@3mdeb.com>
390 S:      Supported
391 F:      src/mainboard/pcengines/
395 PORTWELL PQ-M107 MAINBOARD
396 M:      Frans Hendriks <fhendriks@eltan.com>
397 M:      Erik van den Bogaert <ebogaert@eltan.com>
398 S:      Maintained
399 F:      src/mainboard/portwell/m107/
403 PROTECTLI ALL MAINBOARDS
404 M:      Piotr Król <piotr.krol@3mdeb.com>
405 M:      Michał Żygowski <michal.zygowski@3mdeb.com>
406 S:      Maintained
407 F:      src/mainboard/protectli/
411 PRODRIVE HERMES MAINBOARD
412 M:      Christian Walter <christian.walter@9elements.com>
413 M:      Patrick Rudolph <patrick.rudolph@9elements.com>
414 S:      Maintained
415 F:      src/mainboard/prodrive/hermes/
419 PURISM MAINBOARDS
420 M:      Matt DeVillier <matt.devillier@puri.sm>
421 S:      Supported
422 F:      src/mainboard/purism/
426 SAMSUNG CHROMEOS MAINBOARDS
427 M:      Matt DeVillier <MrChromebox@gmail.com>
428 S:      Maintained
429 F:      src/mainboard/samsung/lumpy/
430 F:      src/mainboard/samsung/stumpy/
434 SIEMENS CHILI MAINBAORD
435 M:      Felix Singer <felixsinger@posteo.net>
436 M:      Nico Huber <nico.h@gmx.de>
437 S:      Supported
438 F:      src/mainboard/siemens/chili/
440 SIEMENS MC_xxxx MAINBOARDS
441 M:      Werner Zeh <werner.zeh@siemens.com>
442 S:      Maintained
443 F:      src/mainboard/siemens/mc_apl1/
447 STAR LABS MAINBOARDS
448 M:      Sean Rhodes <sean@starlabs.systems>
449 S:      Maintained
450 F:      src/mainboard/starlabs/
454 SYSTEM76 MAINBOARDS
455 M:      Jeremy Soller <jeremy@system76.com>
456 M:      Tim Crawford <tcrawford@system76.com>
457 S:      Maintained
458 F:      src/mainboard/system76/
462 SUPERMICRO X10SLM+-F MAINBOARD
463 M:      Tristan Corrick <tristan@corrick.kiwi>
464 S:      Maintained
465 F:      src/mainboard/supermicro/x10slm-f/
467 SUPERMICRO X11-LGA1151-SERIES
468 M:      Michael Niewöhner <foss@mniewoehner.de>
469 S:      Maintained
470 F:      src/mainboard/supermicro/x11-lga1151-series/
472 ################################################################################
473 # Architectures
474 ################################################################################
476 ARM ARCHITECTURE
477 M:      Julius Werner <jwerner@chromium.org>
478 S:      Supported
479 F:      src/arch/arm/
480 F:      src/arch/arm64/
481 F:      src/soc/nvidia/
482 F:      src/soc/rockchip/
483 F:      util/nvidia/
484 F:      util/rockchip/
486 PPC64 ARCHITECTURE
487 M:      Ronald Minnich <rminnich@gmail.com>
488 M:      Timothy Pearson <tpearson@raptorengineeringinc.com>
489 S:      Maintained
490 F:      src/arch/ppc64/
491 F:      src/cpu/qemu-power8/
492 F:      src/mainboard/emulation/qemu-power8/
494 RISC-V ARCHITECTURE
495 M:      Ronald Minnich <rminnich@gmail.com>
496 R:      Philipp Hug <philipp@hug.cx>
497 S:      Maintained
498 F:      src/arch/riscv/
499 F:      src/soc/sifive/
500 F:      src/soc/ucb/
501 F:      src/mainboard/emulation/*-riscv/
502 F:      src/mainboard/sifive/
503 F:      util/riscv/
505 X86 ARCHITECTURE
506 F:      src/arch/x86/
507 F:      src/cpu/x86/
508 F:      src/drivers/pc80/
509 F:      src/include/pc80/
510 F:      src/include/cpu/x86/
512 ################################################################################
513 # Embedded Controllers
514 ################################################################################
516 CHROME EC
517 M:      Tim Wawrzynczak <twawrzynczak@chromium.org>
518 S:      Maintained
519 F:      src/ec/google/chromeec/
521 LENOVO EC
522 M:      Alexander Couzens <lynxis@fe80.eu>
523 S:      Maintained
524 F:      src/ec/lenovo/
526 STARLABS EC
527 M:      Sean Rhodes <sean@starlabs.systems>
528 S:      Maintained
529 F:      src/ec/starlabs/
531 SYSTEM76 EC
532 M:      Jeremy Soller <jeremy@system76.com>
533 M:      Tim Crawford <tcrawford@system76.com>
534 S:      Maintained
535 F:      src/ec/system76/
537 ################################################################################
538 # Northbridges
539 ################################################################################
541 INTEL HASWELL NORTHBRIDGE
542 M:      Angel Pons <th3fanbus@gmail.com>
543 S:      Maintained
544 F:      src/northbridge/intel/haswell/
546 INTEL PINEVIEW CHIPSET
547 M:      Damien Zammit <damien@zamaudio.com>
548 M:      Angel Pons <th3fanbus@gmail.com>
549 S:      Odd Fixes
550 F:      src/northbridge/intel/pineview/
552 INTEL SANDYBRIDGE NORTHBRIDGE
553 M:      Angel Pons <th3fanbus@gmail.com>
554 S:      Maintained
555 F:      src/northbridge/intel/sandybridge/
557 INTEL X4X CHIPSET
558 M:      Damien Zammit <damien@zamaudio.com>
559 M:      Angel Pons <th3fanbus@gmail.com>
560 S:      Odd Fixes
561 F:      src/northbridge/intel/x4x/
563 ################################################################################
564 # Platforms
565 ################################################################################
567 AMD SUPPORT
568 F:      src/vendorcode/amd/
569 F:      src/cpu/amd/
570 F:      src/northbridge/amd/
571 F:      src/southbridge/amd/
572 F:      src/include/cpu/amd/
574 INTEL SUPPORT
575 M:      Patrick Rudolph <siro@das-labor.org>
576 S:      Maintained
577 F:      src/vendorcode/intel/
578 F:      src/cpu/intel/
579 F:      src/northbridge/intel/
580 F:      src/southbridge/intel/
581 F:      src/soc/intel/
582 F:      src/drivers/intel/
583 F:      src/include/cpu/intel/
585 INTEL FSP DENVERTON-NS SOC & HARCUVAR CRB
586 M:      Suresh Bellampalli <suresh.bellampalli@intel.com>
587 M:      Vanessa Eusebio <vanessa.f.eusebio@intel.com>
588 M:      Michal Motyl <michalx.motyl@intel.com>
589 M:      Mariusz Szafranski <mariuszx.szafranski@intel.com>
590 S:      Maintained
591 F:      src/mainboard/intel/harcuvar/
592 F:      src/soc/intel/denverton_ns/
594 INTEL FSP 1.1
595 M:      Lee Leahy <leroy.p.leahy@intel.com>
596 M:      Huang Jin <huang.jin@intel.com>
597 M:      York Yang <york.yang@intel.com>
598 S:      Supported
599 F:      src/drivers/intel/fsp1_1/
601 INTEL FSP 2.0
602 M:      Andrey Petrov <andrey.petrov@gmail.com>
603 S:      Maintained
604 F:      src/drivers/intel/fsp2_0/
606 ################################################################################
607 # Systems on a Chip
608 ################################################################################
610 AMD Cezanne
611 M:      Marshall Dawson <marshalldawson3rd@gmail.com>
612 M:      Felix Held <felix-coreboot@felixheld.de>
613 M:      Jason Glenesk <jason.glenesk@gmail.com>
614 M:      Raul E Rangel <rrangel@chromium.org>
615 S:      Maintained
616 F:      src/soc/amd/cezanne/
617 F:      src/vendorcode/amd/fsp/cezanne/
619 AMD common SoC code
620 M:      Marshall Dawson <marshalldawson3rd@gmail.com>
621 M:      Felix Held <felix-coreboot@felixheld.de>
622 M:      Jason Glenesk <jason.glenesk@gmail.com>
623 M:      Raul E Rangel <rrangel@chromium.org>
624 S:      Maintained
625 F:      src/soc/amd/common/
627 AMD Picasso
628 M:      Marshall Dawson <marshalldawson3rd@gmail.com>
629 M:      Felix Held <felix-coreboot@felixheld.de>
630 M:      Jason Glenesk <jason.glenesk@gmail.com>
631 M:      Raul E Rangel <rrangel@chromium.org>
632 S:      Maintained
633 F:      src/soc/amd/picasso/
634 F:      src/vendorcode/amd/fsp/picasso/
636 AMD Stoneyridge
637 M:      Marshall Dawson <marshalldawson3rd@gmail.com>
638 M:      Felix Held <felix-coreboot@felixheld.de>
639 S:      Odd Fixes
640 F:      src/soc/amd/stoneyridge/
642 INTEL ALDERLAKE SOC
643 M:      Tim Wawrzynczak <twawrzynczak@chromium.org>
644 S:      Maintained
645 F:      src/soc/intel/alderlake/
647 INTEL APOLLOLAKE_SOC
648 M:      Andrey Petrov <andrey.petrov@gmail.com>
649 S:      Maintained
650 F:      src/soc/intel/apollolake/
652 INTEL BRASWELL SOC
653 M:      Piotr Król <piotr.krol@3mdeb.com>
654 M:      Michał Żygowski <michal.zygowski@3mdeb.com>
655 M:      Frans Hendriks <fhendriks@eltan.com>
656 S:      Maintained
657 F:      /src/soc/intel/braswell/
658 F:      /src/vendorcode/intel/fsp/fsp1_1/braswell/
660 INTEL TIGERLAKE SOC
661 M:      Tim Wawrzynczak <twawrzynczak@chromium.org>
662 S:      Maintained
663 F:      src/soc/intel/tigerlake/
665 INTEL Xeon Sacalable Processor Family
666 M:      Jonathan Zhang <jonzhang@fb.com>
667 M:      Reddy Chagam <anjaneya.chagam@intel.com>
668 M:      Johnny Lin <Johnny_Lin@wiwynn.com>
669 M:      Tim Chu <Tim.Chu@quantatw.com>
670 M:      Arthur Heymans <arthur@aheymans.xyz>
671 M:      Christian Walter <christian.walter@9elements.com>
672 S:      Supported
673 F:      src/soc/intel/xeon_sp/
674 F:      src/vendorcode/intel/fsp/fsp2_0/skylake_sp/
675 F:      src/vendorcode/intel/fsp/fsp2_0/copperlake_sp/
677 MEDIATEK SOCS
678 M:      Hung-Te Lin <hungte@chromium.org>
679 S:      Supported
680 F:      src/soc/mediatek/
682 MEDIATEK MT8192
683 M:      Xi Chen <xixi.chen@mediatek.com>
684 S:      Maintained
685 F:      src/soc/mediatek/mt8192/
686 F:      src/vendorcode/mediatek/mt8192/
688 ORPHANED ARM SOCS
689 S:      Orphaned
690 F:      src/cpu/armltd/
691 F:      src/soc/ti/
692 F:      src/soc/qualcomm/
693 F:      src/soc/samsung/
694 F:      util/exynos/
695 F:      util/ipqheader/
697 ################################################################################
698 # Payloads
699 ################################################################################
701 NVRAM
702 F:      util/nvramtool/
703 F:      payloads/nvramcui/
705 LIBPAYLOAD
706 F:      payloads/libpayload/
708 COREINFO PAYLOAD
709 F:      payloads/coreinfo/
711 EXTERNAL PAYLOADS INTEGRATION
712 M:      Stefan Reinauer <stefan.reinauer@coreboot.org>
713 M:      Martin Roth <gaumless@gmail.com>
714 F:      payloads/external/
716 LINUXBOOT PAYLOAD INTEGRATION
717 M:      Christian Walter <christian.walter@9elements.com>
718 M:      Marcello Sylvester Bauer <info@marcellobauer.com>
719 S:      Supported
720 F:      payloads/external/LinuxBoot/
722 ################################################################################
723 # Utilities
724 ################################################################################
726 ABUILD
727 M:      Martin Roth <gaumless@gmail.com>
728 S:      Supported
729 F:      util/abuild/
731 BOARD STATUS
732 F:      util/board_status/
734 BUILD SYSTEM
735 M:      Martin Roth <gaumless@gmail.com>
736 S:      Supported
737 F:      Makefile
738 F:      *.inc
739 F:      src/include/kconfig.h
740 F:      util/kconfig/
741 F:      util/sconfig/
742 F:      util/xcompile/
743 F:      util/genbuild_h/
745 TOOLCHAIN
746 F:      util/crossgcc/
748 DOCKER
749 M:      Martin Roth <gaumless@gmail.com>
750 S:      Supported
751 F:      util/docker/
754 F:      .git*
755 F:      /util/gitconfig
757 LINT SCRIPTS
758 M:      Martin Roth <gaumless@gmail.com>
759 S:      Supported
760 F:      util/lint/
762 IFDTOOL
763 M:      Stefan Reinauer <stefan.reinauer@coreboot.org>
764 F:      util/ifdtool/
766 INTELTOOL
767 M:      Stefan Reinauer <stefan.reinauer@coreboot.org>
768 F:      util/inteltool/
770 INTELMETOOL
771 M:      Christian Walter <christian.walter@9elements.com>
772 F:      util/intelmetool/
774 INTELP2M
775 M:      Maxim Polyakov <max.senia.poliak@gmail.com>
776 S:      Maintained
777 F:      util/intelp2m/
779 ME_CLEANER
780 M:      Nicola Corna <nicola@corna.info>
781 W:      https://github.com/corna/me_cleaner
782 S:      Maintained
783 F:      util/me_cleaner/
785 LIVEISO
786 M:      Felix Singer <felixsinger@posteo.net>
787 S:      Supported
788 F:      util/liveiso/
790 ################################################################################
791 # Miscellaneous
792 ################################################################################
794 ASPEED AST2050 DRIVER & COMMON CODE
795 M:      Timothy Pearson <tpearson@raptorengineeringinc.com>
796 S:      Supported
797 F:      src/drivers/aspeed/common/
798 F:      src/drivers/aspeed/ast2050/
800 ACPI
801 M:      Lance Zhao <lance.zhao@gmail.com>
802 M:      Tim Wawrzynczak <twawrzynczak@chromium.org>
803 S:      Supported
804 F:      src/acpi/
805 F:      src/arch/x86/acpi/
806 F:      util/acpi/
808 LZ4 COMPRESSION
809 M:      Julius Werner <jwerner@chromium.org>
810 S:      Supported
811 F:      src/commonlib/lz4*
812 F:      payloads/libpayload/liblz4/
813 F:      util/cbfstool/lz4/
815 BINARY OBJECTS
816 F:      3rdparty/blobs/
818 VERIFIED BOOT
819 M:      Julius Werner <jwerner@chromium.org>
820 M:      Yu-Ping Wu <yupingso@google.com>
821 S:      Supported
822 F:      3rdparty/vboot/
823 F:      src/security/vboot/
824 F:      src/include/tpm.h
825 F:      src/include/tpm_lite/
827 RESOURCE ALLOCATOR
828 F:      src/device/*
829 F:      src/include/device/
830 F:      src/include/cpu/cpu.h
832 OPTION ROM EXECUTION & X86EMU
833 F:      src/device/oprom/
835 CBFS
836 M:      Julius Werner <jwerner@chromium.org>
837 F:      src/include/cbfs*
838 F:      src/commonlib/bsd/include/commonlib/bsd/cbfs*
839 F:      src/commonlib/bsd/cbfs*
840 F:      src/lib/cbfs.c
842 CBFSTOOL
843 F:      util/cbfstool/
845 CBMEM
846 F:      src/include/cbmem.h
847 F:      src/include/cbmem_id.h
848 F:      util/cbmem/
850 CONSOLE
851 F:      src/console/
852 F:      src/include/console/
853 F:      src/drivers/uart/
855 TPM SUPPORT
856 M:      Christian Walter <christian.walter@9elements.com>
857 S:      Supported
858 F:      src/drivers/*/tpm/
859 F:      src/security/tpm/
861 SUPERIOS & SUPERIOTOOL
862 M:      Felix Held <felix-coreboot@felixheld.de>
863 S:      Maintained
864 F:      src/superio/
865 F:      util/superiotool/
867 SPD UTILITIES
868 M:      Reka Norman <rekanorman@chromium.org>
869 S:      Maintained
870 F:      util/spd_tools/
871 F:      util/spdtool/
873 MEMLAYOUT
874 M:      Julius Werner <jwerner@chromium.org>
875 S:      Supported
876 F:      */memlayout.h
877 F:      *.ld
879 ELTAN VENDORCODE
880 M:      Frans Hendriks <fhendriks@eltan.com>
881 M:      Erik van den Bogaert <ebogaert@eltan.com>
882 S:      Maintained
883 F:      src/vendorcode/eltan/
885 TAS5825M DRIVER
886 M:      Jeremy Soller <jeremy@system76.com>
887 M:      Tim Crawford <tcrawford@system76.com>
888 S:      Maintained
889 F:      src/drivers/i2c/tas5825m/
891 TESTS
892 M:      Jakub Czapiga <jacz@semihalf.com>
893 S:      Maintained
894 F:      tests/
895 F:      payloads/libpayload/tests/
897 MISSING: TIMERS / DELAYS
899 MISSING: TIMESTAMPS
901 MISSING: FMAP
903 MISSING: GPIO
905 MISSING: SMP
907 MISSING: DMP / QEMU-X86
909 MISSING: ELOG
911 MISSING: SPI
913 # *** Infrastructure Owners ***
914 # This is intended to let people know who they should contact for issues with various infrastructure pieces.
915 # Hardware
916 #       Owners: Stefan, Patrick
917 #       Backups:
919 # Web Server
920 #       Owners: Stefan, Patrick
921 #       Backups:
923 # Website
924 #       Owners: Martin
925 #       Backups: Patrick, Stefan
927 # Documentation Website
928 #       Owners: Patrick
929 #       Backups:
931 CODE OF CONDUCT
932 M:      Stefan Reinauer <stefan.reinauer@coreboot.org>
933 M:      Ronald Minnich <rminnich@coreboot.org>
934 M:      Martin Roth <martin@coreboot.org>
935 S:      Maintained
936 F:      Documentation/community/code_of_conduct.md
938 # Wiki
939 #       Owners: Stefan, Patrick
940 #       Backups:
942 # Gerrit
943 #       Owners: Stefan, Patrick
944 #       Backups: Martin
946 # Jenkins
947 #       Owners: Patrick, Martin
948 #       Backups:
950 # Bug Tracker
951 #       Owners: Lynxis,
952 #       Backups: Martin,
954 # Mailing List
955 #       Owners: Stefan, Patrick
956 #       Backups: Martin,
958 # Software Freedom Conservancy
959 #       Main contact: Martin
960 #       “Official” contact: Stefan