util/ifdtool: Add additional regions for platforms that support them
[coreboot.git] / MAINTAINERS
blobddd80886b2bfc0b4a2fa9e7bea8a0cd13ba240b8
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/chausie/
146 F:      src/mainboard/amd/majolica/
147 F:      src/mainboard/amd/mandolin/
149 APPLE MAINBOARDS
150 M:      Evgeny Zinoviev <me@ch1p.io>
151 S:      Maintained
152 F:      src/mainboard/apple/
156 ASROCK B85M PRO4 MAINBOARD
157 M:      Angel Pons <th3fanbus@gmail.com>
158 S:      Maintained
159 F:      src/mainboard/asrock/b85m_pro4/
161 ASROCK G41C-GS MAINBOARD & VARIANTS
162 M:      Angel Pons <th3fanbus@gmail.com>
163 S:      Maintained
164 F:      src/mainboard/asrock/g41c-gs/
166 ASROCK H81M-HDS MAINBOARD
167 M:      Tristan Corrick <tristan@corrick.kiwi>
168 S:      Maintained
169 F:      src/mainboard/asrock/h81m-hds/
173 ASUS A88XM-E MAINBOARD
174 M:      Mike Banon <mikebdp2@gmail.com>
175 S:      Maintained
176 F:      src/mainboard/asus/a88xm-e/
178 ASUS AM1I-A MAINBOARD
179 M:      Mike Banon <mikebdp2@gmail.com>
180 S:      Maintained
181 F:      src/mainboard/asus/am1i-a/
183 ASUS H61 SERIES MAINBOARDS
184 M:      Angel Pons <th3fanbus@gmail.com>
185 M:      Tristan Corrick <tristan@corrick.kiwi>
186 S:      Maintained
187 F:      src/mainboard/asus/h61-series/
189 ASUS MAXIMUS IV GENE-Z MAINBOARD
190 M:      Tristan Corrick <tristan@corrick.kiwi>
191 S:      Maintained
192 F:      src/mainboard/asus/maximus_iv_gene-z/
194 ASUS P5QC PRO MAINBOARD & VARIANTS
195 M:      Angel Pons <th3fanbus@gmail.com>
196 R:      Stefan Ott <coreboot@desire.ch>
197 S:      Maintained
198 F:      src/mainboard/asus/p5qc/
200 ASUS P5QPL-AM MAINBOARD & VARIANTS
201 M:      Angel Pons <th3fanbus@gmail.com>
202 S:      Maintained
203 F:      src/mainboard/asus/p5qpl-am/
205 ASUS P8Z77 SERIES MAINBOARDS
206 M:      Angel Pons <th3fanbus@gmail.com>
207 M:      Vlado Cibic <vladocb@protonmail.com>
208 S:      Maintained
209 F:      src/mainboard/asus/p8z77-series/
213 CLEVO MAINBOARDS
214 M:      Felix Singer <felixsinger@posteo.net>
215 M:      Michael Niewöhner <foss@mniewoehner.de>
216 S:      Supported
217 F:      src/mainboard/clevo/
221 FACEBOOK FBG1701 MAINBOARD
222 M:      Frans Hendriks <fhendriks@eltan.com>
223 M:      Erik van den Bogaert <ebogaert@eltan.com>
224 S:      Maintained
225 F:      src/mainboard/facebook/fbg1701/
227 FACEBOOK MONOLITH MAINBOARD
228 M:      Frans Hendriks <fhendriks@eltan.com>
229 M:      Erik van den Bogaert <ebogaert@eltan.com>
230 S:      Maintained
231 F:      src/mainboard/facebook/monolith/
235 GIGABYTE GA-D510UD MAINBOARD
236 M:      Angel Pons <th3fanbus@gmail.com>
237 S:      Maintained
238 F:      src/mainboard/gigabyte/ga-d510ud/
240 GIGABYTE GA-G41M-ES2L MAINBOARD
241 M:      Damien Zammit <damien@zamaudio.com>
242 S:      Odd Fixes
243 F:      src/mainboard/gigabyte/ga-g41m-es2l/
245 GIGABYTE GA-H61M SERIES MAINBOARDS
246 M:      Angel Pons <th3fanbus@gmail.com>
247 S:      Maintained
248 F:      src/mainboard/gigabyte/ga-h61m-series/
251 GOOGLE BRYA MAINBOARDS
252 M:      Tim Wawrzynczak <twawrzynczak@chromium.org>
253 S:      Maintained
254 F:      src/mainboard/google/brya/
256 GOOGLE HATCH MAINBOARDS
257 M:      Tim Wawrzynczak <twawrzynczak@chromium.org>
258 S:      Maintained
259 F:      src/mainboard/google/hatch/
261 GOOGLE PANTHER MAINBOARD
262 M:      Stefan Reinauer <stefan.reinauer@coreboot.org>
263 S:      Supported
264 F:      src/mainboard/google/panther/
266 GOOGLE VOLTEER MAINBOARDS
267 M:      Tim Wawrzynczak <twawrzynczak@chromium.org>
268 M:      Nick Vaccaro <nvaccaro@chromium.org>
269 S:      Maintained
270 F:      src/mainboard/google/volteer/
272 GOOGLE MAINBOARDS (Intel-based, legacy/inactive)
273 M:      Matt DeVillier <MrChromebox@gmail.com>
274 S:      Maintained
275 F:      src/mainboard/google/auron/
276 F:      src/mainboard/google/beltino/
277 F:      src/mainboard/google/butterfly/
278 F:      src/mainboard/google/cyan/
279 F:      src/mainboard/google/glados/
280 F:      src/mainboard/google/jecht/
281 F:      src/mainboard/google/link/
282 F:      src/mainboard/google/parrot/
283 F:      src/mainboard/google/slippy/
284 F:      src/mainboard/google/stout/
288 HP 280 G2 MAINBOARD
289 M:      Angel Pons <th3fanbus@gmail.com>
290 S:      Maintained
291 F:      src/mainboard/hp/280_g2/
295 INTEL D510MO MAINBOARD
296 M:      Damien Zammit <damien@zamaudio.com>
297 S:      Odd Fixes
298 F:      src/mainboard/intel/d510mo/
300 INTEL STRAGO MAINBOARD
301 M:      Hannah Williams <hannah.williams@intel.com>
302 S:      Supported
303 F:      /src/mainboard/intel/strago/
307 KONTRON BSL6 MAINBOARD
308 M:      Felix Singer <felixsinger@posteo.net>
309 M:      Nico Huber <nico.h@gmx.de>
310 S:      Supported
311 F:      src/mainboard/kontron/bsl6/
313 KONTRON MAL10 MAINBOARD
314 M:      Maxim Polyakov <max.senia.poliak@gmail.com>
315 M:      Nico Huber <nico.h@gmx.de>
316 M:      Felix Singer <felixsinger@posteo.net>
317 S:      Supported
318 F:      src/mainboard/kontron/mal10/
322 LENOVO MAINBOARDS
323 M:      Alexander Couzens <lynxis@fe80.eu>
324 M:      Patrick Rudolph <siro@das-labor.org>
325 S:      Maintained
326 F:      src/mainboard/lenovo/
328 LENOVO G505S MAINBOARD
329 M:      Mike Banon <mikebdp2@gmail.com>
330 S:      Maintained
331 F:      src/mainboard/lenovo/g505s/
333 LENOVO X200 MAINBOARD
334 R:      Stefan Ott <coreboot@desire.ch>
335 S:      Maintained
336 F:      src/mainboard/lenovo/x200/
338 LENOVO X201 MAINBOARD
339 R:      Stefan Ott <coreboot@desire.ch>
340 S:      Maintained
341 F:      src/mainboard/lenovo/x201/
344 LIBRETREND LT1000 MAINBOARD
345 M:      Piotr Król <piotr.krol@3mdeb.com>
346 M:      Michał Żygowski <michal.zygowski@3mdeb.com>
347 S:      Maintained
348 F:      src/mainboard/libretrend/lt1000/
352 MSI H81M-P33 MAINBOARD
353 M:      Angel Pons <th3fanbus@gmail.com>
354 S:      Maintained
355 F:      src/mainboard/msi/h81m-p33/
359 OCP DELTALAKE MAINBOARD
360 M:      Arthur Heymans <arthur@aheymans.xyz>
361 M:      Christian Walter <christian.walter@9elements.com>
362 M:      Johnny Lin <Johnny_Lin@wiwynn.com>
363 M:      Jonathan Zhang <jonzhang@fb.com>
364 M:      Tim Chu <Tim.Chu@quantatw.com>
365 S:      Supported
366 F:      src/mainboard/ocp/deltalake/
368 OCP TIOGAPASS MAINBOARD
369 M:      Jonathan Zhang <jonzhang@fb.com>
370 M:      Reddy Chagam <anjaneya.chagam@intel.com>
371 M:      Johnny Lin <Johnny_Lin@wiwynn.com>
372 M:      Morgan Jang <Morgan_Jang@wiwynn.com>
373 M:      Ryback Hung <<Ryback.Hung@quantatw.com>
374 M:      Bryant Ou <Bryant.Ou@quantatw.com>
375 S:      Maintained
376 F:      src/mainboard/ocp/tiogapass/
380 OPENCELLULAR MAINBOARDS
381 M:      Christian Walter <christian.walter@9elements.com>
382 M:      Patrick Rudolph <patrick.rudolph@9elements.com>
383 S:      Supported
384 F:      src/mainboard/opencellular/elgon/
388 PC ENGINES ALL MAINBOARDS
389 M:      Piotr Król <piotr.krol@3mdeb.com>
390 M:      Michał Żygowski <michal.zygowski@3mdeb.com>
391 S:      Supported
392 F:      src/mainboard/pcengines/
396 PORTWELL PQ-M107 MAINBOARD
397 M:      Frans Hendriks <fhendriks@eltan.com>
398 M:      Erik van den Bogaert <ebogaert@eltan.com>
399 S:      Maintained
400 F:      src/mainboard/portwell/m107/
404 PROTECTLI ALL MAINBOARDS
405 M:      Piotr Król <piotr.krol@3mdeb.com>
406 M:      Michał Żygowski <michal.zygowski@3mdeb.com>
407 S:      Maintained
408 F:      src/mainboard/protectli/
412 PRODRIVE HERMES MAINBOARD
413 M:      Christian Walter <christian.walter@9elements.com>
414 M:      Patrick Rudolph <patrick.rudolph@9elements.com>
415 S:      Maintained
416 F:      src/mainboard/prodrive/hermes/
420 PURISM MAINBOARDS
421 M:      Matt DeVillier <matt.devillier@puri.sm>
422 S:      Supported
423 F:      src/mainboard/purism/
427 SAMSUNG CHROMEOS MAINBOARDS
428 M:      Matt DeVillier <MrChromebox@gmail.com>
429 S:      Maintained
430 F:      src/mainboard/samsung/lumpy/
431 F:      src/mainboard/samsung/stumpy/
435 SIEMENS CHILI MAINBAORD
436 M:      Felix Singer <felixsinger@posteo.net>
437 M:      Nico Huber <nico.h@gmx.de>
438 S:      Supported
439 F:      src/mainboard/siemens/chili/
441 SIEMENS MC_xxxx MAINBOARDS
442 M:      Werner Zeh <werner.zeh@siemens.com>
443 S:      Maintained
444 F:      src/mainboard/siemens/mc_apl1/
448 STAR LABS MAINBOARDS
449 M:      Sean Rhodes <sean@starlabs.systems>
450 S:      Maintained
451 F:      src/mainboard/starlabs/
455 SYSTEM76 MAINBOARDS
456 M:      Jeremy Soller <jeremy@system76.com>
457 M:      Tim Crawford <tcrawford@system76.com>
458 S:      Maintained
459 F:      src/mainboard/system76/
463 SUPERMICRO X10SLM+-F MAINBOARD
464 M:      Tristan Corrick <tristan@corrick.kiwi>
465 S:      Maintained
466 F:      src/mainboard/supermicro/x10slm-f/
468 SUPERMICRO X11-LGA1151-SERIES
469 M:      Michael Niewöhner <foss@mniewoehner.de>
470 S:      Maintained
471 F:      src/mainboard/supermicro/x11-lga1151-series/
473 ################################################################################
474 # Architectures
475 ################################################################################
477 ARM ARCHITECTURE
478 M:      Julius Werner <jwerner@chromium.org>
479 S:      Supported
480 F:      src/arch/arm/
481 F:      src/arch/arm64/
482 F:      src/soc/nvidia/
483 F:      src/soc/rockchip/
484 F:      util/nvidia/
485 F:      util/rockchip/
487 PPC64 ARCHITECTURE
488 M:      Ronald Minnich <rminnich@gmail.com>
489 M:      Timothy Pearson <tpearson@raptorengineeringinc.com>
490 S:      Maintained
491 F:      src/arch/ppc64/
492 F:      src/cpu/qemu-power8/
493 F:      src/mainboard/emulation/qemu-power8/
495 RISC-V ARCHITECTURE
496 M:      Ronald Minnich <rminnich@gmail.com>
497 R:      Philipp Hug <philipp@hug.cx>
498 S:      Maintained
499 F:      src/arch/riscv/
500 F:      src/soc/sifive/
501 F:      src/soc/ucb/
502 F:      src/mainboard/emulation/*-riscv/
503 F:      src/mainboard/sifive/
504 F:      util/riscv/
506 X86 ARCHITECTURE
507 F:      src/arch/x86/
508 F:      src/cpu/x86/
509 F:      src/drivers/pc80/
510 F:      src/include/pc80/
511 F:      src/include/cpu/x86/
513 ################################################################################
514 # Embedded Controllers
515 ################################################################################
517 CHROME EC
518 M:      Tim Wawrzynczak <twawrzynczak@chromium.org>
519 S:      Maintained
520 F:      src/ec/google/chromeec/
522 LENOVO EC
523 M:      Alexander Couzens <lynxis@fe80.eu>
524 S:      Maintained
525 F:      src/ec/lenovo/
527 STARLABS EC
528 M:      Sean Rhodes <sean@starlabs.systems>
529 S:      Maintained
530 F:      src/ec/starlabs/
532 SYSTEM76 EC
533 M:      Jeremy Soller <jeremy@system76.com>
534 M:      Tim Crawford <tcrawford@system76.com>
535 S:      Maintained
536 F:      src/ec/system76/
538 ################################################################################
539 # Northbridges
540 ################################################################################
542 INTEL HASWELL NORTHBRIDGE
543 M:      Angel Pons <th3fanbus@gmail.com>
544 S:      Maintained
545 F:      src/northbridge/intel/haswell/
547 INTEL PINEVIEW CHIPSET
548 M:      Damien Zammit <damien@zamaudio.com>
549 M:      Angel Pons <th3fanbus@gmail.com>
550 S:      Odd Fixes
551 F:      src/northbridge/intel/pineview/
553 INTEL SANDYBRIDGE NORTHBRIDGE
554 M:      Angel Pons <th3fanbus@gmail.com>
555 S:      Maintained
556 F:      src/northbridge/intel/sandybridge/
558 INTEL X4X CHIPSET
559 M:      Damien Zammit <damien@zamaudio.com>
560 M:      Angel Pons <th3fanbus@gmail.com>
561 S:      Odd Fixes
562 F:      src/northbridge/intel/x4x/
564 ################################################################################
565 # Platforms
566 ################################################################################
568 AMD SUPPORT
569 F:      src/vendorcode/amd/
570 F:      src/cpu/amd/
571 F:      src/northbridge/amd/
572 F:      src/southbridge/amd/
573 F:      src/include/cpu/amd/
575 INTEL SUPPORT
576 M:      Patrick Rudolph <siro@das-labor.org>
577 S:      Maintained
578 F:      src/vendorcode/intel/
579 F:      src/cpu/intel/
580 F:      src/northbridge/intel/
581 F:      src/southbridge/intel/
582 F:      src/soc/intel/
583 F:      src/drivers/intel/
584 F:      src/include/cpu/intel/
586 INTEL FSP DENVERTON-NS SOC & HARCUVAR CRB
587 M:      Suresh Bellampalli <suresh.bellampalli@intel.com>
588 M:      Vanessa Eusebio <vanessa.f.eusebio@intel.com>
589 M:      Michal Motyl <michalx.motyl@intel.com>
590 M:      Mariusz Szafranski <mariuszx.szafranski@intel.com>
591 S:      Maintained
592 F:      src/mainboard/intel/harcuvar/
593 F:      src/soc/intel/denverton_ns/
595 INTEL FSP 1.1
596 M:      Lee Leahy <leroy.p.leahy@intel.com>
597 M:      Huang Jin <huang.jin@intel.com>
598 M:      York Yang <york.yang@intel.com>
599 S:      Supported
600 F:      src/drivers/intel/fsp1_1/
602 INTEL FSP 2.0
603 M:      Andrey Petrov <andrey.petrov@gmail.com>
604 S:      Maintained
605 F:      src/drivers/intel/fsp2_0/
607 ################################################################################
608 # Systems on a Chip
609 ################################################################################
611 AMD Cezanne
612 M:      Marshall Dawson <marshalldawson3rd@gmail.com>
613 M:      Felix Held <felix-coreboot@felixheld.de>
614 M:      Jason Glenesk <jason.glenesk@gmail.com>
615 M:      Raul E Rangel <rrangel@chromium.org>
616 S:      Maintained
617 F:      src/soc/amd/cezanne/
618 F:      src/vendorcode/amd/fsp/cezanne/
620 AMD common SoC code
621 M:      Marshall Dawson <marshalldawson3rd@gmail.com>
622 M:      Felix Held <felix-coreboot@felixheld.de>
623 M:      Jason Glenesk <jason.glenesk@gmail.com>
624 M:      Raul E Rangel <rrangel@chromium.org>
625 S:      Maintained
626 F:      src/soc/amd/common/
628 AMD Picasso
629 M:      Marshall Dawson <marshalldawson3rd@gmail.com>
630 M:      Felix Held <felix-coreboot@felixheld.de>
631 M:      Jason Glenesk <jason.glenesk@gmail.com>
632 M:      Raul E Rangel <rrangel@chromium.org>
633 S:      Maintained
634 F:      src/soc/amd/picasso/
635 F:      src/vendorcode/amd/fsp/picasso/
637 AMD Sabrina
638 M:      Marshall Dawson <marshalldawson3rd@gmail.com>
639 M:      Felix Held <felix-coreboot@felixheld.de>
640 M:      Jason Glenesk <jason.glenesk@gmail.com>
641 M:      Raul E Rangel <rrangel@chromium.org>
642 S:      Maintained
643 F:      src/soc/amd/sabrina/
644 F:      src/vendorcode/amd/fsp/sabrina/
646 AMD Stoneyridge
647 M:      Marshall Dawson <marshalldawson3rd@gmail.com>
648 M:      Felix Held <felix-coreboot@felixheld.de>
649 S:      Odd Fixes
650 F:      src/soc/amd/stoneyridge/
652 INTEL ALDERLAKE SOC
653 M:      Tim Wawrzynczak <twawrzynczak@chromium.org>
654 S:      Maintained
655 F:      src/soc/intel/alderlake/
657 INTEL APOLLOLAKE_SOC
658 M:      Andrey Petrov <andrey.petrov@gmail.com>
659 S:      Maintained
660 F:      src/soc/intel/apollolake/
662 INTEL BRASWELL SOC
663 M:      Piotr Król <piotr.krol@3mdeb.com>
664 M:      Michał Żygowski <michal.zygowski@3mdeb.com>
665 M:      Frans Hendriks <fhendriks@eltan.com>
666 S:      Maintained
667 F:      /src/soc/intel/braswell/
668 F:      /src/vendorcode/intel/fsp/fsp1_1/braswell/
670 INTEL TIGERLAKE SOC
671 M:      Tim Wawrzynczak <twawrzynczak@chromium.org>
672 S:      Maintained
673 F:      src/soc/intel/tigerlake/
675 INTEL Xeon Sacalable Processor Family
676 M:      Jonathan Zhang <jonzhang@fb.com>
677 M:      Reddy Chagam <anjaneya.chagam@intel.com>
678 M:      Johnny Lin <Johnny_Lin@wiwynn.com>
679 M:      Tim Chu <Tim.Chu@quantatw.com>
680 M:      Arthur Heymans <arthur@aheymans.xyz>
681 M:      Christian Walter <christian.walter@9elements.com>
682 S:      Supported
683 F:      src/soc/intel/xeon_sp/
684 F:      src/vendorcode/intel/fsp/fsp2_0/skylake_sp/
685 F:      src/vendorcode/intel/fsp/fsp2_0/copperlake_sp/
687 MEDIATEK SOCS
688 M:      Hung-Te Lin <hungte@chromium.org>
689 S:      Supported
690 F:      src/soc/mediatek/
692 MEDIATEK MT8192
693 M:      Xi Chen <xixi.chen@mediatek.com>
694 S:      Maintained
695 F:      src/soc/mediatek/mt8192/
696 F:      src/vendorcode/mediatek/mt8192/
698 ORPHANED ARM SOCS
699 S:      Orphaned
700 F:      src/cpu/armltd/
701 F:      src/soc/ti/
702 F:      src/soc/qualcomm/
703 F:      src/soc/samsung/
704 F:      util/exynos/
705 F:      util/ipqheader/
707 ################################################################################
708 # Payloads
709 ################################################################################
711 NVRAM
712 F:      util/nvramtool/
713 F:      payloads/nvramcui/
715 LIBPAYLOAD
716 F:      payloads/libpayload/
718 COREINFO PAYLOAD
719 F:      payloads/coreinfo/
721 EXTERNAL PAYLOADS INTEGRATION
722 M:      Stefan Reinauer <stefan.reinauer@coreboot.org>
723 M:      Martin Roth <gaumless@gmail.com>
724 F:      payloads/external/
726 LINUXBOOT PAYLOAD INTEGRATION
727 M:      Christian Walter <christian.walter@9elements.com>
728 M:      Marcello Sylvester Bauer <info@marcellobauer.com>
729 S:      Supported
730 F:      payloads/external/LinuxBoot/
732 ################################################################################
733 # Utilities
734 ################################################################################
736 ABUILD
737 M:      Martin Roth <gaumless@gmail.com>
738 S:      Supported
739 F:      util/abuild/
741 BOARD STATUS
742 F:      util/board_status/
744 BUILD SYSTEM
745 M:      Martin Roth <gaumless@gmail.com>
746 S:      Supported
747 F:      Makefile
748 F:      *.inc
749 F:      src/include/kconfig.h
750 F:      util/kconfig/
751 F:      util/sconfig/
752 F:      util/xcompile/
753 F:      util/genbuild_h/
755 TOOLCHAIN
756 F:      util/crossgcc/
758 DOCKER
759 M:      Martin Roth <gaumless@gmail.com>
760 S:      Supported
761 F:      util/docker/
764 F:      .git*
765 F:      /util/gitconfig
767 LINT SCRIPTS
768 M:      Martin Roth <gaumless@gmail.com>
769 S:      Supported
770 F:      util/lint/
772 IFDTOOL
773 M:      Stefan Reinauer <stefan.reinauer@coreboot.org>
774 F:      util/ifdtool/
776 INTELTOOL
777 M:      Stefan Reinauer <stefan.reinauer@coreboot.org>
778 F:      util/inteltool/
780 INTELMETOOL
781 M:      Christian Walter <christian.walter@9elements.com>
782 F:      util/intelmetool/
784 INTELP2M
785 M:      Maxim Polyakov <max.senia.poliak@gmail.com>
786 S:      Maintained
787 F:      util/intelp2m/
789 ME_CLEANER
790 M:      Nicola Corna <nicola@corna.info>
791 W:      https://github.com/corna/me_cleaner
792 S:      Maintained
793 F:      util/me_cleaner/
795 LIVEISO
796 M:      Felix Singer <felixsinger@posteo.net>
797 S:      Supported
798 F:      util/liveiso/
800 ################################################################################
801 # Miscellaneous
802 ################################################################################
804 ASPEED AST2050 DRIVER & COMMON CODE
805 M:      Timothy Pearson <tpearson@raptorengineeringinc.com>
806 S:      Supported
807 F:      src/drivers/aspeed/common/
808 F:      src/drivers/aspeed/ast2050/
810 ACPI
811 M:      Lance Zhao <lance.zhao@gmail.com>
812 M:      Tim Wawrzynczak <twawrzynczak@chromium.org>
813 S:      Supported
814 F:      src/acpi/
815 F:      src/arch/x86/acpi/
816 F:      util/acpi/
818 LZ4 COMPRESSION
819 M:      Julius Werner <jwerner@chromium.org>
820 S:      Supported
821 F:      src/commonlib/lz4*
822 F:      payloads/libpayload/liblz4/
823 F:      util/cbfstool/lz4/
825 BINARY OBJECTS
826 F:      3rdparty/blobs/
828 VERIFIED BOOT
829 M:      Julius Werner <jwerner@chromium.org>
830 M:      Yu-Ping Wu <yupingso@google.com>
831 S:      Supported
832 F:      3rdparty/vboot/
833 F:      src/security/vboot/
834 F:      src/include/tpm.h
835 F:      src/include/tpm_lite/
837 RESOURCE ALLOCATOR
838 F:      src/device/*
839 F:      src/include/device/
840 F:      src/include/cpu/cpu.h
842 OPTION ROM EXECUTION & X86EMU
843 F:      src/device/oprom/
845 CBFS
846 M:      Julius Werner <jwerner@chromium.org>
847 F:      src/include/cbfs*
848 F:      src/commonlib/bsd/include/commonlib/bsd/cbfs*
849 F:      src/commonlib/bsd/cbfs*
850 F:      src/lib/cbfs.c
852 CBFSTOOL
853 F:      util/cbfstool/
855 CBMEM
856 F:      src/include/cbmem.h
857 F:      src/include/cbmem_id.h
858 F:      util/cbmem/
860 CONSOLE
861 F:      src/console/
862 F:      src/include/console/
863 F:      src/drivers/uart/
865 TPM SUPPORT
866 M:      Christian Walter <christian.walter@9elements.com>
867 S:      Supported
868 F:      src/drivers/*/tpm/
869 F:      src/security/tpm/
871 SUPERIOS & SUPERIOTOOL
872 M:      Felix Held <felix-coreboot@felixheld.de>
873 S:      Maintained
874 F:      src/superio/
875 F:      util/superiotool/
877 SPD UTILITIES
878 M:      Reka Norman <rekanorman@chromium.org>
879 S:      Maintained
880 F:      util/spd_tools/
881 F:      util/spdtool/
883 MEMLAYOUT
884 M:      Julius Werner <jwerner@chromium.org>
885 S:      Supported
886 F:      */memlayout.h
887 F:      *.ld
889 ELTAN VENDORCODE
890 M:      Frans Hendriks <fhendriks@eltan.com>
891 M:      Erik van den Bogaert <ebogaert@eltan.com>
892 S:      Maintained
893 F:      src/vendorcode/eltan/
895 TAS5825M DRIVER
896 M:      Jeremy Soller <jeremy@system76.com>
897 M:      Tim Crawford <tcrawford@system76.com>
898 S:      Maintained
899 F:      src/drivers/i2c/tas5825m/
901 TESTS
902 M:      Jakub Czapiga <jacz@semihalf.com>
903 S:      Maintained
904 F:      tests/
905 F:      payloads/libpayload/tests/
907 MISSING: TIMERS / DELAYS
909 MISSING: TIMESTAMPS
911 MISSING: FMAP
913 MISSING: GPIO
915 MISSING: SMP
917 MISSING: DMP / QEMU-X86
919 MISSING: ELOG
921 MISSING: SPI
923 # *** Infrastructure Owners ***
924 # This is intended to let people know who they should contact for issues with various infrastructure pieces.
925 # Hardware
926 #       Owners: Stefan, Patrick
927 #       Backups:
929 # Web Server
930 #       Owners: Stefan, Patrick
931 #       Backups:
933 # Website
934 #       Owners: Martin
935 #       Backups: Patrick, Stefan
937 # Documentation Website
938 #       Owners: Patrick
939 #       Backups:
941 CODE OF CONDUCT
942 M:      Stefan Reinauer <stefan.reinauer@coreboot.org>
943 M:      Ronald Minnich <rminnich@coreboot.org>
944 M:      Martin Roth <martin@coreboot.org>
945 S:      Maintained
946 F:      Documentation/community/code_of_conduct.md
948 # Wiki
949 #       Owners: Stefan, Patrick
950 #       Backups:
952 # Gerrit
953 #       Owners: Stefan, Patrick
954 #       Backups: Martin
956 # Jenkins
957 #       Owners: Patrick, Martin
958 #       Backups:
960 # Bug Tracker
961 #       Owners: Lynxis,
962 #       Backups: Martin,
964 # Mailing List
965 #       Owners: Stefan, Patrick
966 #       Backups: Martin,
968 # Software Freedom Conservancy
969 #       Main contact: Martin
970 #       “Official” contact: Stefan