trogdor: Provide initial mainboard support
[coreboot.git] / MAINTAINERS
blob9abbdb1527098d65f5d119a97dfa03a9e5d7fb3b
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 APPLE MAINBOARDS
167 M:      Evgeny Zinoviev <me@ch1p.io>
168 S:      Maintained
169 F:      src/mainboard/apple/
171 GETAC P470 MAINBOARD
172 M:      Patrick Georgi <patrick@georgi.software>
173 S:      Maintained
174 F:      src/mainboard/getac/p470
176 INTEL PINEVIEW CHIPSET
177 M:      Damien Zammit <damien@zamaudio.com>
178 S:      Odd Fixes
179 F:      src/northbridge/intel/pineview/
181 INTEL D510MO MAINBOARD
182 M:      Damien Zammit <damien@zamaudio.com>
183 S:      Odd Fixes
184 F:      src/mainboard/intel/d510mo
186 INTEL X4X CHIPSET
187 M:      Damien Zammit <damien@zamaudio.com>
188 S:      Odd Fixes
189 F:      src/northbridge/intel/x4x/
191 GIGABYTE GA-G41M-ES2L MAINBOARD
192 M:      Damien Zammit <damien@zamaudio.com>
193 S:      Odd Fixes
194 F:      src/mainboard/gigabyte/ga-g41m-es2l
196 GIGABYTE GA-H61M-S2PV MAINBOARD
197 M:      Angel Pons <th3fanbus@gmail.com>
198 S:      Maintained
199 F:      src/mainboard/gigabyte/ga-h61m-s2pv
201 GOOGLE PANTHER MAINBOARD
202 M:      Stefan Reinauer <stefan.reinauer@coreboot.org>
203 S:      Supported
204 F:      src/mainboard/google/panther/
206 GOOGLE MAINBOARDS (Intel-based, legacy/inactive)
207 M:      Matt DeVillier <MrChromebox@gmail.com>
208 S:      Maintained
209 F:      src/mainboard/google/auron/
210 F:      src/mainboard/google/beltino/
211 F:      src/mainboard/google/butterfly/
212 F:      src/mainboard/google/cyan/
213 F:      src/mainboard/google/glados/
214 F:      src/mainboard/google/jecht/
215 F:      src/mainboard/google/link/
216 F:      src/mainboard/google/parrot/
217 F:      src/mainboard/google/slippy/
218 F:      src/mainboard/google/stout/
220 OCP MAINBOARDS
221 M:      Philipp Deppenwiese <zaolin.daisuki@gmail.com>
222 M:      Patrick Rudolph <patrick.rudolph@9elements.com>
223 S:      Supported
224 F:      src/mainboard/ocp/wedge100s/
225 F:      src/mainboard/ocp/monolake/
227 OPENCELLULAR MAINBOARDS
228 M:      Philipp Deppenwiese <zaolin.daisuki@gmail.com>
229 M:      Patrick Rudolph <patrick.rudolph@9elements.com>
230 S:      Supported
231 F:      src/mainboard/opencellular/rotundu/
232 F:      src/mainboard/opencellular/elgon/
234 PURISM MAINBOARDS
235 M:      Matt DeVillier <matt.devillier@puri.sm>
236 S:      Supported
237 F:      src/mainboard/purism
239 SAMSUNG CHROMEOS MAINBOARDS
240 M:      Matt DeVillier <MrChromebox@gmail.com>
241 S:      Maintained
242 F:      src/mainboard/samsung/lumpy/
243 F:      src/mainboard/samsung/stumpy/
245 INTEL MINNOWBOARD MAX MAINBOARD
246 M:      Huang Jin <huang.jin@intel.com>
247 M:      York Yang <york.yang@intel.com>
248 S:      Supported
249 F:      src/mainboard/intel/minnowmax/
251 INTEL FSP BAYTRAIL CHIP & CRBs
252 M:      Huang Jin <huang.jin@intel.com>
253 M:      York Yang <york.yang@intel.com>
254 M:      Philipp Deppenwiese <zaolin.daisuki@gmail.com>
255 S:      Supported
256 F:      src/soc/intel/fsp_baytrail/
257 F:      src/vendorcode/intel/fsp1_0/baytrail/
258 F:      src/mainboard/intel/bakersport_fsp/
259 F:      src/mainboard/intel/bayleybay_fsp/
261 INTEL FSP BROADWELL-DE SOC & CRB
262 M:      York Yang <york.yang@intel.com>
263 M:      Philipp Deppenwiese <zaolin.daisuki@gmail.com>
264 S:      Supported
265 F:      src/soc/intel/fsp_broadwell_de/
266 F:      src/vendorcode/intel/fsp1_0/broadwell_de/
267 F:      src/mainboard/intel/camelbackmountain_fsp/
269 INTEL FSP DENVERTON-NS SOC & HARCUVAR CRB
270 M:      Vanessa Eusebio <vanessa.f.eusebio@intel.com>
271 M:      David Guckian <david.guckian@intel.com>
272 S:      Odd Fixes
273 F:      src/mainboard/intel/harcuvar/
274 F:      src/soc/intel/denverton_ns/
275 F:      src/vendorcode/intel/fsp/fsp2_0/denverton_ns/
277 FSP 1.0 RANGELEY & CRB
278 M:      David Guckian <david.guckian@intel.com>
279 M:      Fei Wang <fei.z.wang@intel.com>
280 S:      Supported
281 F:      src/cpu/intel/fsp_model_406dx/
282 F:      src/northbridge/intel/fsp_rangeley/
283 F:      src/southbridge/intel/fsp_rangeley/
284 F:      src/vendorcode/intel/fsp1_0/rangeley/
285 F:      src/mainboard/intel/mohonpeak/
287 INTEL FSP 1.0
288 M:      Huang Jin <huang.jin@intel.com>
289 M:      York Yang <york.yang@intel.com>
290 M:      Philipp Deppenwiese <zaolin.daisuki@gmail.com>
291 S:      Supported
292 F:      src/drivers/intel/fsp1_0/
293 F:      src/vendorcode/intel/fsp1_0/broadwell_de/
295 INTEL FSP 1.1
296 M:      Lee Leahy <leroy.p.leahy@intel.com>
297 M:      Huang Jin <huang.jin@intel.com>
298 M:      York Yang <york.yang@intel.com>
299 S:      Supported
300 F:      src/drivers/intel/fsp1_1/
302 INTEL FSP 2.0
303 M:      Andrey Petrov <andrey.petrov@gmail.com>
304 S:      Maintained
305 F:      src/drivers/intel/fsp2_0/
307 INTEL STRAGO MAINBOARD
308 M:      Hannah Williams <hannah.williams@intel.com>
309 S:      Supported
310 F:      /src/mainboard/intel/strago/
312 INTEL BRASWELL SOC
313 M:      Piotr Król <piotr.krol@3mdeb.com>
314 M:      Michał Żygowski <michal.zygowski@3mdeb.com>
315 M:      Frans Hendriks <fhendriks@eltan.com>
316 S:      Maintained
317 F:      /src/soc/intel/braswell
318 F:      /src/vendorcode/intel/fsp/fsp1_1/braswell
320 INTEL APOLLOLAKE_SOC
321 M:      Andrey Petrov <andrey.petrov@gmail.com>
322 S:      Maintained
323 F:      src/soc/intel/apollolake/
325 ASROCK G41C-GS MAINBOARD & VARIANTS
326 M:      Angel Pons <th3fanbus@gmail.com>
327 S:      Maintained
328 F:      src/mainboard/asrock/g41c-gs/
330 ASROCK H81M-HDS MAINBOARD
331 M:      Tristan Corrick <tristan@corrick.kiwi>
332 S:      Maintained
333 F:      src/mainboard/asrock/h81m-hds/
335 ASUS KFSN4-DRE & KFSN4-DRE_K8 MAINBOARDS
336 M:      Timothy Pearson <tpearson@raptorengineeringinc.com>
337 S:      Supported
338 F:      src/mainboard/asus/kfsn4-dre/
339 F:      src/mainboard/asus/kfsn4-dre_k8/
341 ASUS KCMA-D8 MAINBOARD
342 M:      Timothy Pearson <tpearson@raptorengineeringinc.com>
343 S:      Supported
344 F:      src/mainboard/asus/kcma-d8/
346 ASUS KGPE-D16 MAINBOARD
347 M:      Timothy Pearson <tpearson@raptorengineeringinc.com>
348 S:      Supported
349 F:      src/mainboard/asus/kgpe-d16/
351 ASUS MAXIMUS IV GENE-Z MAINBOARD
352 M:      Tristan Corrick <tristan@corrick.kiwi>
353 S:      Maintained
354 F:      src/mainboard/asus/maximus_iv_gene-z/
356 ASUS P5QC PRO MAINBOARD & VARIANTS
357 M:      Angel Pons <th3fanbus@gmail.com>
358 S:      Maintained
359 F:      src/mainboard/asus/p5qc/
361 ASUS P8H61-M LX MAINBOARD
362 M:      Tristan Corrick <tristan@corrick.kiwi>
363 S:      Maintained
364 F:      src/mainboard/asus/p8h61-m_lx/
366 ASUS P8H61-M PRO MAINBOARD
367 M:      Angel Pons <th3fanbus@gmail.com>
368 S:      Maintained
369 F:      src/mainboard/asus/p8h61-m_pro/
371 ASUS P8Z77-M PRO MAINBOARD
372 M:      Vlado Cibic <vladocb@protonmail.com>
373 S:      Maintained
374 F:      src/mainboard/asus/p8z77-m_pro/
376 PC ENGINES ALL MAINBOARDS
377 M:      Piotr Król <piotr.krol@3mdeb.com>
378 M:      Michał Żygowski <michal.zygowski@3mdeb.com>
379 S:      Supported
380 F:      src/mainboard/pcengines/
382 SIEMENS MC_xxxx MAINBOARDS
383 M:      Werner Zeh <werner.zeh@siemens.com>
384 S:      Maintained
385 F:      src/mainboard/siemens/mc_apl1/
386 F:      src/mainboard/siemens/mc_bdx1/
387 F:      src/mainboard/siemens/mc_tcu3/
389 SUPERMICRO X10SLM+-F MAINBOARD
390 M:      Tristan Corrick <tristan@corrick.kiwi>
391 S:      Maintained
392 F:      src/mainboard/supermicro/x10slm-f/
394 SUPERMICRO X11-LGA1151-SERIES
395 M:      Michael Niewöhner <foss@mniewoehner.de>
396 S:      Maintained
397 F:      src/mainboard/supermicro/x11-lga1151-series
399 FACEBOOK FBG1701 MAINBOARD
400 M:      Frans Hendriks <fhendriks@eltan.com>
401 M:      Wim Vervoorn <wvervoorn@eltan.com>
402 S:      Maintained
403 F:      src/mainboard/facebook/fbg1701/
405 PORTWELL PQ-M107 MAINBOARD
406 M:      Frans Hendriks <fhendriks@eltan.com>
407 M:      Wim Vervoorn <wvervoorn@eltan.com>
408 S:      Maintained
409 F:      src/mainboard/portwell/m107/
411 AMD FAMILY10H & FAMILY15H (NON-AGESA) CPUS & NORTHBRIDGE
412 M:      Timothy Pearson <tpearson@raptorengineeringinc.com>
413 S:      Supported
414 F:      src/cpu/amd/family_10h-family_15h/
415 F:      src/northbridge/amd/amdfam10/
416 F:      src/northbridge/amd/amdmct/
417 F:      src/northbridge/amd/amdht/
419 AMD SB700 (NON-CIMX) SOUTHBRIDGE
420 M:      Timothy Pearson <tpearson@raptorengineeringinc.com>
421 S:      Supported
422 F:      src/southbridge/amd/sb700/
424 AMD SR5650 SOUTHBRIDGE
425 M:      Timothy Pearson <tpearson@raptorengineeringinc.com>
426 S:      Supported
427 F:      src/southbridge/amd/sr5650/
429 ASPEED AST2050 DRIVER & COMMON CODE
430 M:      Timothy Pearson <tpearson@raptorengineeringinc.com>
431 S:      Supported
432 F:      src/drivers/aspeed/common/
433 F:      src/drivers/aspeed/ast2050/
435 ATI MACH64 Driver
436 S:      Orphan
437 F:      src/drivers/ati/mach64/
439 ABUILD
440 M:      Patrick Georgi <patrick@georgi-clan.de>
441 M:      Martin Roth <gaumless@gmail.com>
442 S:      Supported
443 F:      util/abuild/
445 ACPI
446 F:      src/acpi/
447 F:      src/arch/x86/acpi/
448 F:      util/acpi/
450 LZ4 COMPRESSION
451 M:      Julius Werner <jwerner@chromium.org>
452 S:      Supported
453 F:      src/commonlib/lz4*
454 F:      payloads/libpayload/liblz4/
455 F:      util/cbfstool/lz4/
457 ARM ARCHITECTURE
458 M:      Julius Werner <jwerner@chromium.org>
459 S:      Supported
460 F:      src/arch/arm/
461 F:      src/arch/arm64/
462 F:      src/soc/mediatek/
463 F:      src/soc/nvidia/
464 F:      src/soc/rockchip/
465 F:      util/nvidia/
466 F:      util/rockchip/
468 ORPHANED ARM SOCS
469 S:      Orphaned
470 F:      src/cpu/allwinner/
471 F:      src/cpu/armltd/
472 F:      src/cpu/ti/
473 F:      src/soc/marvell/
474 F:      src/soc/qualcomm/
475 F:      src/soc/samsung/
476 F:      util/arm_boot_tools/
477 F:      util/exynos/
478 F:      util/ipqheader/
480 MIPS ARCHITECTURE
481 F:      src/arch/mips/
482 F:      src/cpu/mips/
483 F:      src/soc/imgtec/
484 F:      util/bimgtool/
486 X86 ARCHITECTURE
487 F:      src/arch/x86/
488 F:      src/cpu/x86/
489 F:      src/drivers/pc80/
490 F:      src/include/pc80/
491 F:      src/include/cpu/x86/
493 INTEL SUPPORT
494 M:      Patrick Rudolph <siro@das-labor.org>
495 S:      Maintained
496 F:      src/vendorcode/intel/
497 F:      src/cpu/intel/
498 F:      src/northbridge/intel/
499 F:      src/southbridge/intel/
500 F:      src/soc/intel/
501 F:      src/drivers/intel/
502 F:      src/include/cpu/intel/
504 AMD SUPPORT
505 F:      src/vendorcode/amd/
506 F:      src/cpu/amd/
507 F:      src/northbridge/amd/
508 F:      src/southbridge/amd/
509 F:      src/include/cpu/amd/
511 VIA SUPPORT
512 F:      src/cpu/via/
513 F:      src/northbridge/via/
514 F:      src/southbridge/via/
516 LINT SCRIPTS
517 M:      Patrick Georgi <patrick@georgi-clan.de>
518 M:      Martin Roth <gaumless@gmail.com>
519 S:      Supported
520 F:      util/lint/
522 INTELTOOL
523 M:      Stefan Reinauer <stefan.reinauer@coreboot.org>
524 F:      util/inteltool/
526 INTELMETOOL
527 M:      Philipp Deppenwiese <zaolin.daisuki@gmail.com>
528 F:      util/intelmetool/
530 ME_CLEANER
531 M:      Nicola Corna <nicola@corna.info>
532 W:      https://github.com/corna/me_cleaner
533 S:      Maintained
534 F:      util/me_cleaner/
536 IFDTOOL
537 M:      Stefan Reinauer <stefan.reinauer@coreboot.org>
538 F:      util/ifdtool/
540 BUILD SYSTEM
541 M:      Patrick Georgi <patrick@georgi-clan.de>
542 M:      Martin Roth <gaumless@gmail.com>
543 S:      Supported
544 F:      Makefile
545 F:      *.inc
546 F:      src/include/kconfig.h
547 F:      util/kconfig/
548 F:      util/sconfig/
549 F:      util/xcompile/
550 F:      util/genbuild_h/
552 BOARD STATUS
553 F:      util/board_status/
555 BINARY OBJECTS
556 F:      3rdparty/blobs/
558 VERIFIED BOOT
559 F:      3rdparty/vboot/
560 F:      src/vendorcode/google/chromeos/
561 F:      src/include/tpm.h
562 F:      src/include/tpm_lite/
564 RESOURCE ALLOCATOR
565 F:      src/device/*
566 F:      src/include/device/
567 F:      src/include/cpu/cpu.h
569 OPTION ROM EXECUTION & X86EMU
570 F:      src/device/oprom/
572 CBFS
573 F:      src/include/cbfs.h
574 F:      src/include/cbfs_serialized.h
575 F:      util/cbfstool/
577 CBMEM
578 F:      src/include/cbmem.h
579 F:      src/include/cbmem_id.h
580 F:      util/cbmem/
582 CONSOLE
583 F:      src/console/
584 F:      src/include/console/
585 F:      src/drivers/uart/
587 NVRAM
588 F:      util/nvramtool/
589 F:      util/optionlist/
590 F:      payloads/nvramcui/
592 LIBPAYLOAD
593 F:      payloads/libpayload/
595 BAYOU PAYLOAD
596 F:      payloads/bayou/
598 COREINFO PAYLOAD
599 F:      payloads/coreinfo/
601 EXTERNAL PAYLOADS INTEGRATION
602 M:      Stefan Reinauer <stefan.reinauer@coreboot.org>
603 M:      Martin Roth <gaumless@gmail.com>
604 F:      payloads/external
606 LINUXBOOT PAYLOAD INTEGRATION
607 M:      Philipp Deppenwiese <zaolin.daisuki@gmail.com>
608 M:      Marcello Sylvester Bauer <info@marcellobauer.com>
609 S:      Supported
610 F:      payloads/external/LinuxBoot
612 VERIFIED BOOT 2
613 M:      Aaron Durbin <adurbin@chromium.org>
614 F:      src/security/vboot/
616 TPM SUPPORT
617 M:      Philipp Deppenwiese <zaolin.daisuki@gmail.com>
618 S:      Supported
619 F:      src/drivers/*/tpm/
620 F:      src/security/vboot/vboot_crtm.*
621 F:      src/security/tpm
623 DOCKER
624 M:      Martin Roth <gaumless@gmail.com>
625 S:      Supported
626 F:      util/docker/
628 TOOLCHAIN
629 F:      util/crossgcc/
632 F:      .git*
633 F:      /util/gitconfig
635 SUPERIOS & SUPERIOTOOL
636 M:      Felix Held <felix-coreboot@felixheld.de>
637 S:      Maintained
638 F:      src/superio/
639 F:      util/superiotool/
641 MEMLAYOUT
642 M:      Julius Werner <jwerner@chromium.org>
643 S:      Supported
644 F:      */memlayout.h
645 F:      *.ld
647 ELTAN VENDORCODE
648 M:      Frans Hendriks <fhendriks@eltan.com>
649 M:      Wim Vervoorn <wvervoorn@eltan.com>
650 S:      Maintained
651 F:      src/vendorcode/eltan
653 MISSING: TIMERS / DELAYS
655 MISSING: TIMESTAMPS
657 MISSING: FMAP
659 MISSING: GPIO
661 MISSING: SMP
663 MISSING: DMP / QEMU-X86
665 MISSING: ELOG
667 MISSING: SPI
669 # *** Infrastructure Owners***
670 # This is intended to let people know who they should contact for issues with various infrastructure pieces.
671 # Hardware
672 #       Owners: Stefan, Patrick
673 #       Backups:
675 # Web Server
676 #       Owners: Stefan, Patrick
677 #       Backups:
679 # Website
680 #       Owners: Martin, Philipp
681 #       Backups: Patrick, Stefan
683 # Documentation Website
684 #       Owners: Patrick, Philipp
685 #       Backups:
687 CODE OF CONDUCT
688 M:      Stefan Reinauer <stefan.reinauer@coreboot.org>
689 M:      Patrick Georgi <patrick@coreboot.org>
690 M:      Ronald Minnich <rminnich@coreboot.org>
691 M:      Martin Roth <martin@coreboot.org>
692 S:      Maintained
693 F:      Documentation/community/code_of_conduct.md
695 # Wiki
696 #       Owners: Stefan, Patrick
697 #       Backups:
699 # Gerrit
700 #       Owners: Stefan, Patrick
701 #       Backups: Martin
703 # Jenkins
704 #       Owners: Patrick, Martin
705 #       Backups:
707 # Bug Tracker
708 #       Owners: Lynxis,
709 #       Backups: Martin,
711 # Mailing List
712 #       Owners: Stefan, Patrick
713 #       Backups: Martin,
715 # Software Freedom Conservancy
716 #       Main contact: Martin
717 #       “Official” contact: Stefan