util/lint: Omit more vendorcode from license header test
[coreboot.git] / MAINTAINERS
blob353129240b25231d1193e247997d7f4372ce51a7
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 RISC-V ARCHITECTURE
137 M:      Ronald Minnich <rminnich@gmail.com>
138 R:      Philipp Hug <philipp@hug.cx>
139 S:      Maintained
140 F:      src/arch/riscv/
141 F:      src/soc/sifive/
142 F:      src/soc/ucb/
143 F:      src/mainboard/emulation/*-riscv/
144 F:      src/mainboard/sifive/
145 F:      util/riscv/
147 PPC64 ARCHITECTURE
148 M:      Ronald Minnich <rminnich@gmail.com>
149 M:      Timothy Pearson <tpearson@raptorengineeringinc.com>
150 S:      Maintained
151 F:      src/arch/ppc64/
152 F:      src/cpu/qemu-power8/
153 F:      src/mainboard/emulation/qemu-power8/
155 LENOVO EC
156 M:      Alexander Couzens <lynxis@fe80.eu>
157 S:      Maintained
158 F:      src/ec/lenovo/
160 LENOVO MAINBOARDS
161 M:      Alexander Couzens <lynxis@fe80.eu>
162 M:      Patrick Rudolph <siro@das-labor.org>
163 S:      Maintained
164 F:      src/mainboard/lenovo/
166 LENOVO G505S MAINBOARD
167 M:      Mike Banon <mikebdp2@gmail.com>
168 S:      Maintained
169 F:      src/mainboard/lenovo/g505s/
171 APPLE MAINBOARDS
172 M:      Evgeny Zinoviev <me@ch1p.io>
173 S:      Maintained
174 F:      src/mainboard/apple/
176 GETAC P470 MAINBOARD
177 M:      Patrick Georgi <patrick@georgi.software>
178 S:      Maintained
179 F:      src/mainboard/getac/p470
181 INTEL PINEVIEW CHIPSET
182 M:      Damien Zammit <damien@zamaudio.com>
183 S:      Odd Fixes
184 F:      src/northbridge/intel/pineview/
186 INTEL D510MO MAINBOARD
187 M:      Damien Zammit <damien@zamaudio.com>
188 S:      Odd Fixes
189 F:      src/mainboard/intel/d510mo
191 INTEL X4X CHIPSET
192 M:      Damien Zammit <damien@zamaudio.com>
193 S:      Odd Fixes
194 F:      src/northbridge/intel/x4x/
196 GIGABYTE GA-G41M-ES2L MAINBOARD
197 M:      Damien Zammit <damien@zamaudio.com>
198 S:      Odd Fixes
199 F:      src/mainboard/gigabyte/ga-g41m-es2l
201 GIGABYTE GA-H61M SERIES MAINBOARDS
202 M:      Angel Pons <th3fanbus@gmail.com>
203 S:      Maintained
204 F:      src/mainboard/gigabyte/ga-h61m-series
206 GOOGLE PANTHER MAINBOARD
207 M:      Stefan Reinauer <stefan.reinauer@coreboot.org>
208 S:      Supported
209 F:      src/mainboard/google/panther/
211 GOOGLE MAINBOARDS (Intel-based, legacy/inactive)
212 M:      Matt DeVillier <MrChromebox@gmail.com>
213 S:      Maintained
214 F:      src/mainboard/google/auron/
215 F:      src/mainboard/google/beltino/
216 F:      src/mainboard/google/butterfly/
217 F:      src/mainboard/google/cyan/
218 F:      src/mainboard/google/glados/
219 F:      src/mainboard/google/jecht/
220 F:      src/mainboard/google/link/
221 F:      src/mainboard/google/parrot/
222 F:      src/mainboard/google/slippy/
223 F:      src/mainboard/google/stout/
225 OPENCELLULAR MAINBOARDS
226 M:      Christian Walter <christian.walter@9elements.com>
227 M:      Patrick Rudolph <patrick.rudolph@9elements.com>
228 S:      Supported
229 F:      src/mainboard/opencellular/elgon/
231 PURISM MAINBOARDS
232 M:      Matt DeVillier <matt.devillier@puri.sm>
233 S:      Supported
234 F:      src/mainboard/purism
236 SAMSUNG CHROMEOS MAINBOARDS
237 M:      Matt DeVillier <MrChromebox@gmail.com>
238 S:      Maintained
239 F:      src/mainboard/samsung/lumpy/
240 F:      src/mainboard/samsung/stumpy/
242 INTEL FSP DENVERTON-NS SOC & HARCUVAR CRB
243 M:      Vanessa Eusebio <vanessa.f.eusebio@intel.com>
244 M:      David Guckian <david.guckian@intel.com>
245 S:      Odd Fixes
246 F:      src/mainboard/intel/harcuvar/
247 F:      src/soc/intel/denverton_ns/
248 F:      src/vendorcode/intel/fsp/fsp2_0/denverton_ns/
250 INTEL FSP 1.1
251 M:      Lee Leahy <leroy.p.leahy@intel.com>
252 M:      Huang Jin <huang.jin@intel.com>
253 M:      York Yang <york.yang@intel.com>
254 S:      Supported
255 F:      src/drivers/intel/fsp1_1/
257 INTEL FSP 2.0
258 M:      Andrey Petrov <andrey.petrov@gmail.com>
259 S:      Maintained
260 F:      src/drivers/intel/fsp2_0/
262 INTEL STRAGO MAINBOARD
263 M:      Hannah Williams <hannah.williams@intel.com>
264 S:      Supported
265 F:      /src/mainboard/intel/strago/
267 INTEL BRASWELL SOC
268 M:      Piotr Król <piotr.krol@3mdeb.com>
269 M:      Michał Żygowski <michal.zygowski@3mdeb.com>
270 M:      Frans Hendriks <fhendriks@eltan.com>
271 S:      Maintained
272 F:      /src/soc/intel/braswell
273 F:      /src/vendorcode/intel/fsp/fsp1_1/braswell
275 INTEL APOLLOLAKE_SOC
276 M:      Andrey Petrov <andrey.petrov@gmail.com>
277 S:      Maintained
278 F:      src/soc/intel/apollolake/
280 ASROCK G41C-GS MAINBOARD & VARIANTS
281 M:      Angel Pons <th3fanbus@gmail.com>
282 S:      Maintained
283 F:      src/mainboard/asrock/g41c-gs/
285 ASROCK H81M-HDS MAINBOARD
286 M:      Tristan Corrick <tristan@corrick.kiwi>
287 S:      Maintained
288 F:      src/mainboard/asrock/h81m-hds/
290 ASUS AM1I-A MAINBOARD
291 M:      Mike Banon <mikebdp2@gmail.com>
292 S:      Maintained
293 F:      src/mainboard/asus/am1i-a/
295 ASUS MAXIMUS IV GENE-Z MAINBOARD
296 M:      Tristan Corrick <tristan@corrick.kiwi>
297 S:      Maintained
298 F:      src/mainboard/asus/maximus_iv_gene-z/
300 ASUS P5QC PRO MAINBOARD & VARIANTS
301 M:      Angel Pons <th3fanbus@gmail.com>
302 S:      Maintained
303 F:      src/mainboard/asus/p5qc/
305 ASUS P8H61-M LX MAINBOARD
306 M:      Tristan Corrick <tristan@corrick.kiwi>
307 S:      Maintained
308 F:      src/mainboard/asus/p8h61-m_lx/
310 ASUS P8H61-M PRO MAINBOARD
311 M:      Angel Pons <th3fanbus@gmail.com>
312 S:      Maintained
313 F:      src/mainboard/asus/p8h61-m_pro/
315 ASUS P8Z77-M PRO MAINBOARD
316 M:      Vlado Cibic <vladocb@protonmail.com>
317 S:      Maintained
318 F:      src/mainboard/asus/p8z77-m_pro/
320 LIBRETREND LT1000 MAINBOARD
321 M:      Piotr Król <piotr.krol@3mdeb.com>
322 M:      Michał Żygowski <michal.zygowski@3mdeb.com>
323 S:      Maintained
324 F:      src/mainboard/libretrend/lt1000
326 PC ENGINES ALL MAINBOARDS
327 M:      Piotr Król <piotr.krol@3mdeb.com>
328 M:      Michał Żygowski <michal.zygowski@3mdeb.com>
329 S:      Supported
330 F:      src/mainboard/pcengines/
332 PROTECTLI ALL MAINBOARDS
333 M:      Piotr Król <piotr.krol@3mdeb.com>
334 M:      Michał Żygowski <michal.zygowski@3mdeb.com>
335 S:      Maintained
336 F:      src/mainboard/protectli/
338 SIEMENS MC_xxxx MAINBOARDS
339 M:      Werner Zeh <werner.zeh@siemens.com>
340 S:      Maintained
341 F:      src/mainboard/siemens/mc_apl1/
343 SUPERMICRO X10SLM+-F MAINBOARD
344 M:      Tristan Corrick <tristan@corrick.kiwi>
345 S:      Maintained
346 F:      src/mainboard/supermicro/x10slm-f/
348 SUPERMICRO X11-LGA1151-SERIES
349 M:      Michael Niewöhner <foss@mniewoehner.de>
350 S:      Maintained
351 F:      src/mainboard/supermicro/x11-lga1151-series
353 FACEBOOK FBG1701 MAINBOARD
354 M:      Frans Hendriks <fhendriks@eltan.com>
355 M:      Wim Vervoorn <wvervoorn@eltan.com>
356 S:      Maintained
357 F:      src/mainboard/facebook/fbg1701/
359 FACEBOOK MONOLITH MAINBOARD
360 M:      Frans Hendriks <fhendriks@eltan.com>
361 M:      Wim Vervoorn <wvervoorn@eltan.com>
362 S:      Maintained
363 F:      src/mainboard/facebook/monolith/
365 OCP TIOGAPASS MAINBOARD
366 M:      Jonathan Zhang <jonzhang@fb.com>
367 M:      Reddy Chagam <anjaneya.chagam@intel.com>
368 M:      Johnny Lin <Johnny_Lin@wiwynn.com>
369 M:      Morgan Jang <Morgan_Jang@wiwynn.com>
370 M:      Ryback Hung <<Ryback.Hung@quantatw.com>
371 M:      Bryant Ou <Bryant.Ou@quantatw.com>
372 S:      Maintained
373 F:      src/mainboard/ocp/tiogapass
375 PORTWELL PQ-M107 MAINBOARD
376 M:      Frans Hendriks <fhendriks@eltan.com>
377 M:      Wim Vervoorn <wvervoorn@eltan.com>
378 S:      Maintained
379 F:      src/mainboard/portwell/m107/
381 ASPEED AST2050 DRIVER & COMMON CODE
382 M:      Timothy Pearson <tpearson@raptorengineeringinc.com>
383 S:      Supported
384 F:      src/drivers/aspeed/common/
385 F:      src/drivers/aspeed/ast2050/
387 ABUILD
388 M:      Patrick Georgi <patrick@georgi-clan.de>
389 M:      Martin Roth <gaumless@gmail.com>
390 S:      Supported
391 F:      util/abuild/
393 ACPI
394 F:      src/acpi/
395 F:      src/arch/x86/acpi/
396 F:      util/acpi/
398 LZ4 COMPRESSION
399 M:      Julius Werner <jwerner@chromium.org>
400 S:      Supported
401 F:      src/commonlib/lz4*
402 F:      payloads/libpayload/liblz4/
403 F:      util/cbfstool/lz4/
405 ARM ARCHITECTURE
406 M:      Julius Werner <jwerner@chromium.org>
407 S:      Supported
408 F:      src/arch/arm/
409 F:      src/arch/arm64/
410 F:      src/soc/mediatek/
411 F:      src/soc/nvidia/
412 F:      src/soc/rockchip/
413 F:      util/nvidia/
414 F:      util/rockchip/
416 ORPHANED ARM SOCS
417 S:      Orphaned
418 F:      src/cpu/armltd/
419 F:      src/cpu/ti/
420 F:      src/soc/qualcomm/
421 F:      src/soc/samsung/
422 F:      util/exynos/
423 F:      util/ipqheader/
425 X86 ARCHITECTURE
426 F:      src/arch/x86/
427 F:      src/cpu/x86/
428 F:      src/drivers/pc80/
429 F:      src/include/pc80/
430 F:      src/include/cpu/x86/
432 INTEL SUPPORT
433 M:      Patrick Rudolph <siro@das-labor.org>
434 S:      Maintained
435 F:      src/vendorcode/intel/
436 F:      src/cpu/intel/
437 F:      src/northbridge/intel/
438 F:      src/southbridge/intel/
439 F:      src/soc/intel/
440 F:      src/drivers/intel/
441 F:      src/include/cpu/intel/
443 AMD SUPPORT
444 F:      src/vendorcode/amd/
445 F:      src/cpu/amd/
446 F:      src/northbridge/amd/
447 F:      src/southbridge/amd/
448 F:      src/include/cpu/amd/
450 LINT SCRIPTS
451 M:      Patrick Georgi <patrick@georgi-clan.de>
452 M:      Martin Roth <gaumless@gmail.com>
453 S:      Supported
454 F:      util/lint/
456 INTELTOOL
457 M:      Stefan Reinauer <stefan.reinauer@coreboot.org>
458 F:      util/inteltool/
460 INTELMETOOL
461 M:      Christian Walter <christian.walter@9elements.com>
462 F:      util/intelmetool/
464 ME_CLEANER
465 M:      Nicola Corna <nicola@corna.info>
466 W:      https://github.com/corna/me_cleaner
467 S:      Maintained
468 F:      util/me_cleaner/
470 IFDTOOL
471 M:      Stefan Reinauer <stefan.reinauer@coreboot.org>
472 F:      util/ifdtool/
474 BUILD SYSTEM
475 M:      Patrick Georgi <patrick@georgi-clan.de>
476 M:      Martin Roth <gaumless@gmail.com>
477 S:      Supported
478 F:      Makefile
479 F:      *.inc
480 F:      src/include/kconfig.h
481 F:      util/kconfig/
482 F:      util/sconfig/
483 F:      util/xcompile/
484 F:      util/genbuild_h/
486 BOARD STATUS
487 F:      util/board_status/
489 BINARY OBJECTS
490 F:      3rdparty/blobs/
492 VERIFIED BOOT
493 F:      3rdparty/vboot/
494 F:      src/vendorcode/google/chromeos/
495 F:      src/include/tpm.h
496 F:      src/include/tpm_lite/
498 RESOURCE ALLOCATOR
499 F:      src/device/*
500 F:      src/include/device/
501 F:      src/include/cpu/cpu.h
503 OPTION ROM EXECUTION & X86EMU
504 F:      src/device/oprom/
506 CBFS
507 F:      src/include/cbfs.h
508 F:      src/commonlib/bsd/include/commonlib/bsd/cbfs_serialized.h
509 F:      util/cbfstool/
511 CBMEM
512 F:      src/include/cbmem.h
513 F:      src/include/cbmem_id.h
514 F:      util/cbmem/
516 CONSOLE
517 F:      src/console/
518 F:      src/include/console/
519 F:      src/drivers/uart/
521 NVRAM
522 F:      util/nvramtool/
523 F:      payloads/nvramcui/
525 LIBPAYLOAD
526 F:      payloads/libpayload/
528 COREINFO PAYLOAD
529 F:      payloads/coreinfo/
531 EXTERNAL PAYLOADS INTEGRATION
532 M:      Stefan Reinauer <stefan.reinauer@coreboot.org>
533 M:      Martin Roth <gaumless@gmail.com>
534 F:      payloads/external
536 LINUXBOOT PAYLOAD INTEGRATION
537 M:      Christian Walter <christian.walter@9elements.com>
538 M:      Marcello Sylvester Bauer <info@marcellobauer.com>
539 S:      Supported
540 F:      payloads/external/LinuxBoot
542 VERIFIED BOOT 2
543 M:      Aaron Durbin <adurbin@chromium.org>
544 F:      src/security/vboot/
546 TPM SUPPORT
547 M:      Christian Walter <christian.walter@9elements.com>
548 S:      Supported
549 F:      src/drivers/*/tpm/
550 F:      src/security/tpm
552 DOCKER
553 M:      Martin Roth <gaumless@gmail.com>
554 S:      Supported
555 F:      util/docker/
557 TOOLCHAIN
558 F:      util/crossgcc/
561 F:      .git*
562 F:      /util/gitconfig
564 SUPERIOS & SUPERIOTOOL
565 M:      Felix Held <felix-coreboot@felixheld.de>
566 S:      Maintained
567 F:      src/superio/
568 F:      util/superiotool/
570 MEMLAYOUT
571 M:      Julius Werner <jwerner@chromium.org>
572 S:      Supported
573 F:      */memlayout.h
574 F:      *.ld
576 ELTAN VENDORCODE
577 M:      Frans Hendriks <fhendriks@eltan.com>
578 M:      Wim Vervoorn <wvervoorn@eltan.com>
579 S:      Maintained
580 F:      src/vendorcode/eltan
582 MISSING: TIMERS / DELAYS
584 MISSING: TIMESTAMPS
586 MISSING: FMAP
588 MISSING: GPIO
590 MISSING: SMP
592 MISSING: DMP / QEMU-X86
594 MISSING: ELOG
596 MISSING: SPI
598 # *** Infrastructure Owners ***
599 # This is intended to let people know who they should contact for issues with various infrastructure pieces.
600 # Hardware
601 #       Owners: Stefan, Patrick
602 #       Backups:
604 # Web Server
605 #       Owners: Stefan, Patrick
606 #       Backups:
608 # Website
609 #       Owners: Martin
610 #       Backups: Patrick, Stefan
612 # Documentation Website
613 #       Owners: Patrick
614 #       Backups:
616 CODE OF CONDUCT
617 M:      Stefan Reinauer <stefan.reinauer@coreboot.org>
618 M:      Patrick Georgi <patrick@coreboot.org>
619 M:      Ronald Minnich <rminnich@coreboot.org>
620 M:      Martin Roth <martin@coreboot.org>
621 S:      Maintained
622 F:      Documentation/community/code_of_conduct.md
624 # Wiki
625 #       Owners: Stefan, Patrick
626 #       Backups:
628 # Gerrit
629 #       Owners: Stefan, Patrick
630 #       Backups: Martin
632 # Jenkins
633 #       Owners: Patrick, Martin
634 #       Backups:
636 # Bug Tracker
637 #       Owners: Lynxis,
638 #       Backups: Martin,
640 # Mailing List
641 #       Owners: Stefan, Patrick
642 #       Backups: Martin,
644 # Software Freedom Conservancy
645 #       Main contact: Martin
646 #       “Official” contact: Stefan