blob: 0875fdd2d5f119f4c23f692d4e1477acb96be7c8 [file] [log] [blame]
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -07001
2
3 List of maintainers and how to submit coreboot changes
4
5Please try to follow the guidelines below. This will make things
6easier on the maintainers. Not all of these guidelines matter for every
7trivial patch so apply some common sense.
8
91. Always _test_ your changes, however small, on at least 1 or
10 2 people, preferably many more.
11
122. Try to release a few ALPHA test versions to gerrit. Announce
13 them onto the coreboot mailing list and IRC channel and await
14 results. This is especially important on coreboot core changes,
15 but also for device drivers, because often that's the only way
16 you will find things like the fact revision 3 chipset needs
17 a magic fix you didn't know about, or some clown changed the
18 chips on a board and not its name. (Don't laugh!)
19
203. Make sure your changes compile correctly in multiple
21 configurations. In particular check that changes work for all
22 boards in the tree (use abuild!)
23
244. When you are happy with a change make it generally available for
25 testing in gerrit and await feedback.
26
275. Make your patch available through coreboot's gerrit code review
28 system, and add the relevant maintainer from this list as a code
29 reviewer. Be prepared to get your changes sent back with seemingly
30 silly requests about formatting and variable names. These aren't
31 as silly as they seem. One job the maintainers do is to keep
32 things looking the same. Sometimes this means that the clever
33 hack in your mainboard or chipset to get around a problem actually
34 needs to become a generalized coreboot feature ready for next time.
35
36 PLEASE check your patch with the automated style checker
37 (util/lint/checkpatch.pl) to catch trival style violations.
Paul Menzel59e21132017-06-05 12:46:00 +020038 See https://www.coreboot.org/Coding_Style for guidance here.
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -070039
40 PLEASE add the maintainers that are generated by
41 util/scripts/get_maintainer.pl as reviewers. The results returned
42 by the script will be best if you have git installed and are
43 making your changes in a branch derived from coreboot.org's latest
44 git tree.
45
46 PLEASE try to include any credit lines you want added with the
47 patch. It avoids people being missed off by mistake and makes
48 it easier to know who wants adding and who doesn't.
49
50 PLEASE document known bugs. If it doesn't work for everything
51 or does something very odd once a month document it.
52
53 PLEASE remember that submissions must be made under the terms
54 of the OSDL certificate of contribution and should include a
55 Signed-off-by: line. The current version of this "Developer's
56 Certificate of Origin" (DCO) is listed at
Paul Menzel59e21132017-06-05 12:46:00 +020057 https://www.coreboot.org/Development_Guidelines#Sign-off_Procedure.
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -070058
596. Make sure you have the right to send any changes you make. If you
60 do changes at work you may find your employer owns the patch
61 not you.
62
637. Happy hacking.
64
65Descriptions of section entries:
66
Stefan Reinauera4ffe8a2015-10-21 13:09:42 -070067 M: Maintainer: FullName <address@domain>
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -070068 R: Designated reviewer: FullName <address@domain>
69 These reviewers should be CCed on patches.
70 L: Mailing list that is relevant to this area
71 W: Web-page with status/info
72 Q: Patchwork web based patch tracking system site
73 T: SCM tree type and location.
74 Type is one of: git, hg, quilt, stgit, topgit
75 S: Status, one of the following:
76 Supported: Someone is actually paid to look after this.
77 Maintained: Someone actually looks after it.
78 Odd Fixes: It has a maintainer but they don't have time to do
79 much other than throw the odd patch in. See below..
80 Orphan: No current maintainer [but maybe you could take the
81 role as you write your new code].
82 Obsolete: Old code. Something tagged obsolete generally means
83 it has been replaced by a better system and you
84 should be using that.
85 F: Files and directories with wildcard patterns.
86 A trailing slash includes all files and subdirectory files.
87 F: drivers/net/ all files in and below drivers/net
88 F: drivers/net/* all files in drivers/net, but not below
89 F: */net/* all files in "any top level directory"/net
90 One pattern per line. Multiple F: lines acceptable.
91 N: Files and directories with regex patterns.
92 N: [^a-z]tegra all files whose path contains the word tegra
93 One pattern per line. Multiple N: lines acceptable.
94 scripts/get_maintainer.pl has different behavior for files that
95 match F: pattern and matches of N: patterns. By default,
96 get_maintainer will not look at git log history when an F: pattern
97 match occurs. When an N: match occurs, git log history is used
98 to also notify the people that have git commit signatures.
99 X: Files and directories that are NOT maintained, same rules as F:
100 Files exclusions are tested before file matches.
101 Can be useful for excluding a specific subdirectory, for instance:
102 F: net/
103 X: net/ipv6/
104 matches all files in and below net excluding net/ipv6/
105 K: Keyword perl extended regex pattern to match content in a
106 patch or file. For instance:
107 K: of_get_profile
108 matches patches or files that contain "of_get_profile"
109 K: \b(printk|pr_(info|err))\b
110 matches patches or files that contain one or more of the words
111 printk, pr_info or pr_err
112 One regex pattern per line. Multiple K: lines acceptable.
113
114Note: For the hard of thinking, this list is meant to remain in alphabetical
115order. If you could add yourselves to it in alphabetical order that would be
116so much easier [Ed]
117
118Maintainers List (try to look for most precise areas first)
119
120 -----------------------------------
121
122RISC-V ARCHITECTURE
123M: Ronald Minnich <rminnich@gmail.com>
Jonathan Neuschäfer968292b2016-10-12 00:17:59 +0200124M: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -0700125S: Maintained
Stefan Reinauera4ffe8a2015-10-21 13:09:42 -0700126F: src/arch/riscv/
Jonathan Neuschäfer9453c922016-11-12 13:03:19 +0100127F: src/soc/lowrisc
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700128F: src/soc/ucb/
Jonathan Neuschäfer950d48f2016-10-12 00:18:00 +0200129F: src/mainboard/emulation/*-riscv/
Jonathan Neuschäfer9453c922016-11-12 13:03:19 +0100130F: src/mainboard/lowrisc
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -0700131
Martin Roth57fcae12016-03-17 12:00:25 -0600132POWER8 ARCHITECTURE
133M: Ronald Minnich <rminnich@gmail.com>
134M: Timothy Pearson <tpearson@raptorengineeringinc.com>
135S: Maintained
136F: src/arch/power8/
137F: src/cpu/qemu-power8/
138F: src/mainboard/emulation/qemu-power8/
139
Alexander Couzens753af5b2015-12-05 13:45:27 +0100140LENOVO EC
141M: Alexander Couzens <lynxis@fe80.eu>
142S: Maintained
143F: src/ec/lenovo/
144
145LENOVO MAINBOARDS
146M: Alexander Couzens <lynxis@fe80.eu>
Martin Roth954338d2017-03-05 11:20:18 -0700147M: Patrick Rudolph <siro@das-labor.org>
Alexander Couzens753af5b2015-12-05 13:45:27 +0100148S: Maintained
149F: src/mainboard/lenovo/
150
Martin Roth7fae59b2016-03-17 12:01:27 -0600151INTEL PINEVIEW CHIPSET
152M: Damien Zammit <damien@zamaudio.com>
Martin Roth19fdedb2017-06-25 15:44:16 -0600153S: Odd Fixes
Martin Roth7fae59b2016-03-17 12:01:27 -0600154F: src/northbridge/intel/pineview/
155
156INTEL D510MO MAINBOARD
157M: Damien Zammit <damien@zamaudio.com>
Martin Roth19fdedb2017-06-25 15:44:16 -0600158S: Odd Fixes
Martin Roth7fae59b2016-03-17 12:01:27 -0600159F: src/mainboard/intel/d510mo
160
161INTEL X4X CHIPSET
162M: Damien Zammit <damien@zamaudio.com>
Martin Roth19fdedb2017-06-25 15:44:16 -0600163S: Odd Fixes
Martin Roth7fae59b2016-03-17 12:01:27 -0600164F: src/northbridge/intel/x4x/
165
166GIGABYTE GA-G41M-ES2L MAINBOARD
167M: Damien Zammit <damien@zamaudio.com>
Martin Roth19fdedb2017-06-25 15:44:16 -0600168S: Odd Fixes
Martin Roth7fae59b2016-03-17 12:01:27 -0600169F: src/mainboard/gigabyte/ga-g41m-es2l
170
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -0700171GOOGLE PANTHER MAINBOARD
172M: Stefan Reinauer <stefan.reinauer@coreboot.org>
173S: Supported
Stefan Reinauera4ffe8a2015-10-21 13:09:42 -0700174F: src/mainboard/google/panther/
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -0700175
Martin Roth3a18a802015-11-19 15:45:32 -0700176INTEL MINNOWBOARD MAX MAINBOARD
Alexandru Gagniuc000e8aa2015-10-13 17:30:04 -0700177M: Huang Jin <huang.jin@intel.com>
178M: York Yang <york.yang@intel.com>
Alexandru Gagniuc000e8aa2015-10-13 17:30:04 -0700179S: Supported
Martin Roth3a18a802015-11-19 15:45:32 -0700180F: src/mainboard/intel/minnowmax/
181
Alexandru Gagniuc000e8aa2015-10-13 17:30:04 -0700182INTEL FSP BAYTRAIL CHIP & CRBs
183M: Huang Jin <huang.jin@intel.com>
184M: York Yang <york.yang@intel.com>
Alexandru Gagniuc000e8aa2015-10-13 17:30:04 -0700185S: Supported
Martin Roth3a18a802015-11-19 15:45:32 -0700186F: src/soc/intel/fsp_baytrail/
Alexandru Gagniuc000e8aa2015-10-13 17:30:04 -0700187F: src/vendorcode/intel/fsp1_0/baytrail/
188F: src/mainboard/intel/bakersport_fsp/
189F: src/mainboard/intel/bayleybay_fsp/
Martin Roth3a18a802015-11-19 15:45:32 -0700190
York Yangfbec6b12016-04-15 11:22:49 -0700191INTEL FSP BROADWELL-DE SOC & CRB
192M: York Yang <york.yang@intel.com>
193S: Supported
194F: src/soc/intel/fsp_broadwell_de/
195F: src/vendorcode/intel/fsp1_0/broadwell_de/
196F: src/mainboard/intel/camelbackmountain_fsp/
197
198INTEL FSP IVYBRIDGE/PANTHERPOINT/CAVECREEK & CRBs
199M: York Yang <york.yang@intel.com>
200S: Supported
201F: src/cpu/intel/fsp_model_206ax/
202F: src/northbridge/intel/fsp_sandybridge/
203F: src/southbridge/intel/fsp_bd82x6x/
204F: src/southbridge/intel/fsp_i89xx/
205F: src/vendorcode/intel/fsp1_0/ivybridge_bd82x6x
206F: src/vendorcode/intel/fsp1_0/ivybridge_i89xx
207F: src/mainboard/intel/cougar_canyon2/
208F: src/mainboard/intel/stargo2/
209
Mariusz Szafranski025d8192017-09-12 14:15:35 +0200210INTEL FSP DENVERTON-NS SOC & HARCUVAR CRB
211M: SweeHeng Wong <swee.heng.wong@intel.com>
Vanessa Eusebio3ca534f2018-02-23 09:26:47 -0700212M: Jeff Daly <jeffrey.daly@intel.com>
Mariusz Szafranski025d8192017-09-12 14:15:35 +0200213M: Vanessa Eusebio <vanessa.f.eusebio@intel.com>
Vanessa Eusebio3ca534f2018-02-23 09:26:47 -0700214M: David Guckian <david.guckian@intel.com>
215M: Shine Liu <shine.liu@intel.com>
Mariusz Szafranski025d8192017-09-12 14:15:35 +0200216S: Supported
217F: src/mainboard/intel/harcuvar/
218F: src/soc/intel/denverton_ns/
219F: src/vendorcode/intel/fsp/fsp2_0/denverton_ns/
220
Martin Roth980a8c12015-12-04 08:33:35 -0700221FSP 1.0 RANGELEY & CRB
222M: David Guckian <david.guckian@intel.com>
223M: Fei Wang <fei.z.wang@intel.com>
224S: Supported
225F: src/cpu/intel/fsp_model_406dx/
226F: src/northbridge/intel/fsp_rangeley/
227F: src/southbridge/intel/fsp_rangeley/
228F: src/vendorcode/intel/fsp1_0/rangeley/
229F: src/mainboard/intel/mohonpeak/
230
Martin Roth3a18a802015-11-19 15:45:32 -0700231INTEL FSP 1.0
Alexandru Gagniuc000e8aa2015-10-13 17:30:04 -0700232M: Huang Jin <huang.jin@intel.com>
233M: York Yang <york.yang@intel.com>
Alexandru Gagniuc000e8aa2015-10-13 17:30:04 -0700234S: Supported
Martin Roth3a18a802015-11-19 15:45:32 -0700235F: src/drivers/intel/fsp1_0/
Martin Roth3a18a802015-11-19 15:45:32 -0700236
Martin Roth533f6662015-12-04 08:36:49 -0700237INTEL FSP 1.1
238M: Lee Leahy <leroy.p.leahy@intel.com>
Martin Roth533f6662015-12-04 08:36:49 -0700239M: Huang Jin <huang.jin@intel.com>
240M: York Yang <york.yang@intel.com>
241S: Supported
242F: src/drivers/intel/fsp1_1/
243
Andrey Petrov842dfe82016-05-24 22:01:56 -0700244INTEL FSP 2.0
Andrey Petrov379c8632017-07-12 13:06:22 -0700245M: Andrey Petrov <andrey.petrov@gmail.com>
246S: Maintained
Andrey Petrov842dfe82016-05-24 22:01:56 -0700247F: src/drivers/intel/fsp2_0/
248
Martin Roth4a1c69a2016-03-17 12:02:12 -0600249INTEL STRAGO MAINBOARD
250M: Hannah Williams <hannah.williams@intel.com>
251S: Supported
252F: /src/mainboard/intel/strago/
253
254INTEL BRASWELL SOC
255M: Hannah Williams <hannah.williams@intel.com>
256S: Supported
257F: /src/soc/intel/braswell
258F: /src/vendorcode/intel/fsp/fsp1_1/braswell
259
Andrey Petrov842dfe82016-05-24 22:01:56 -0700260INTEL APOLLOLAKE_SOC
Andrey Petrov379c8632017-07-12 13:06:22 -0700261M: Andrey Petrov <andrey.petrov@gmail.com>
262S: Maintained
Andrey Petrov842dfe82016-05-24 22:01:56 -0700263F: src/soc/intel/apollolake/
264
Martin Roth2a3434752016-03-05 18:31:29 -0700265ASUS KFSN4-DRE & KFSN4-DRE_K8 MAINBOARDS
266M: Timothy Pearson <tpearson@raptorengineeringinc.com>
267S: Supported
268F: src/mainboard/asus/kfsn4-dre/
269F: src/mainboard/asus/kfsn4-dre_k8/
270
271ASUS KCMA-D8 MAINBOARD
272M: Timothy Pearson <tpearson@raptorengineeringinc.com>
273S: Supported
274F: src/mainboard/asus/kcma-d8/
275
276ASUS KGPE-D16 MAINBOARD
277M: Timothy Pearson <tpearson@raptorengineeringinc.com>
278S: Supported
279F: src/mainboard/asus/kgpe-d16/
280
Piotr Króldfd2a8b2017-09-28 11:48:40 +0200281PC ENGINES ALL MAINBOARDS
282M: Piotr Król <piotr.krol@3mdeb.com>
Piotr Król5044b012018-03-16 22:38:03 +0100283M: Michał Żygowski <michal.zygowski@3mdeb.com>
Piotr Króldfd2a8b2017-09-28 11:48:40 +0200284S: Supported
285F: src/mainboard/pcengines/
286
Martin Roth2a3434752016-03-05 18:31:29 -0700287AMD FAMILY10H & FAMILY15H (NON-AGESA) CPUS & NORTHBRIDGE
288M: Timothy Pearson <tpearson@raptorengineeringinc.com>
289S: Supported
290F: src/cpu/amd/family_10h-family_15h/
291F: src/northbridge/amd/amdfam10/
292F: src/northbridge/amd/amdmct/
293F: src/northbridge/amd/amdht/
294
295AMD SB700 (NON-CIMX) SOUTHBRIDGE
296M: Timothy Pearson <tpearson@raptorengineeringinc.com>
297S: Supported
298F: src/southbridge/amd/sb700/
299
300AMD SR5650 SOUTHBRIDGE
301M: Timothy Pearson <tpearson@raptorengineeringinc.com>
302S: Supported
303F: src/southbridge/amd/sr5650/
304
305ASPEED AST2050 DRIVER & COMMON CODE
306M: Timothy Pearson <tpearson@raptorengineeringinc.com>
307S: Supported
308F: src/drivers/aspeed/common/
309F: src/drivers/aspeed/ast2050/
310
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -0700311ATI MACH64 Driver
312S: Orphan
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700313F: src/drivers/ati/mach64/
314
315ABUILD
316M: Patrick Georgi <patrick@georgi-clan.de>
Martin Roth954338d2017-03-05 11:20:18 -0700317M: Martin Roth <gaumless@gmail.com>
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700318S: Supported
319F: util/abuild/
320
321ACPI
322F: src/acpi/
323F: src/arch/x86/acpi/
324F: util/acpi/
325
Julius Werner848f5db2017-09-11 13:12:48 -0700326LZ4 COMPRESSION
327M: Julius Werner <jwerner@chromium.org>
328S: Supported
329F: src/commonlib/lz4*
330F: payloads/libpayload/liblz4/
331F: util/cbfstool/lz4/
332
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700333ARM ARCHITECTURE
Julius Wernerc34e41f2017-06-09 14:26:03 -0700334M: Julius Werner <jwerner@chromium.org>
335S: Supported
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700336F: src/arch/arm/
Julius Wernerc34e41f2017-06-09 14:26:03 -0700337F: src/arch/arm64/
338F: src/soc/mediatek/
339F: src/soc/nvidia/
340F: src/soc/rockchip/
341F: util/nvidia/
342F: util/rockchip/
343
344ORPHANED ARM SOCS
345S: Orphaned
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700346F: src/cpu/allwinner/
347F: src/cpu/armltd/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700348F: src/cpu/ti/
349F: src/soc/broadcom/
350F: src/soc/marvell/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700351F: src/soc/qualcomm/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700352F: src/soc/samsung/
353F: util/arm_boot_tools/
354F: util/broadcom/
355F: util/exynos/
356F: util/ipqheader/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700357
358MIPS ARCHITECTURE
359F: src/arch/mips/
360F: src/cpu/mips/
361F: src/soc/imgtec/
362F: util/bimgtool/
363
364X86 ARCHITECTURE
365F: src/arch/x86/
366F: src/cpu/x86/
367F: src/drivers/pc80/
368F: src/include/pc80/
369F: src/include/cpu/x86/
370
371INTEL SUPPORT
Martin Roth954338d2017-03-05 11:20:18 -0700372M: Patrick Rudolph <siro@das-labor.org>
373S: Maintained
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700374F: src/vendorcode/intel/
375F: src/cpu/intel/
376F: src/northbridge/intel/
377F: src/southbridge/intel/
378F: src/soc/intel/
379F: src/drivers/intel/
380F: src/include/cpu/intel/
381
382AMD SUPPORT
383F: src/vendorcode/amd/
384F: src/cpu/amd/
385F: src/northbridge/amd/
386F: src/southbridge/amd/
387F: src/include/cpu/amd/
388
389VIA SUPPORT
390F: src/cpu/via/
391F: src/northbridge/via/
392F: src/southbridge/via/
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -0700393
Stefan Reinauer2e38cc52015-05-06 11:15:38 -0700394LINT SCRIPTS
395M: Patrick Georgi <patrick@georgi-clan.de>
Martin Roth057ce5f2016-03-17 12:03:00 -0600396M: Martin Roth <gaumless@gmail.com>
Stefan Reinauer2e38cc52015-05-06 11:15:38 -0700397S: Supported
398F: util/lint/
399
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700400INTELTOOL
401M: Stefan Reinauer <stefan.reinauer@coreboot.org>
402F: util/inteltool/
403
Philipp Deppenwiese4cd9a112016-03-23 00:02:40 +0100404INTELMETOOL
405M: Philipp Deppenwiese <zaolin.daisuki@gmail.com>
406F: util/intelmetool/
407
Nicola Corna4f4fc182017-02-23 16:53:45 +0100408ME_CLEANER
409M: Nicola Corna <nicola@corna.info>
410W: https://github.com/corna/me_cleaner
411S: Maintained
412F: util/me_cleaner/
413
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700414IFDTOOL
415M: Stefan Reinauer <stefan.reinauer@coreboot.org>
416F: util/ifdtool/
417F: util/ifdfake/
418
Patrick Georgi65ff63f2015-05-21 18:54:10 +0200419BUILD SYSTEM
420M: Patrick Georgi <patrick@georgi-clan.de>
Martin Roth3a18a802015-11-19 15:45:32 -0700421M: Martin Roth <gaumless@gmail.com>
Patrick Georgi65ff63f2015-05-21 18:54:10 +0200422S: Supported
423F: Makefile
424F: *.inc
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700425F: src/include/kconfig.h
Stefan Reinauera4ffe8a2015-10-21 13:09:42 -0700426F: util/kconfig/
427F: util/sconfig/
Martin Roth954338d2017-03-05 11:20:18 -0700428F: util/xcompile/
429F: util/genbuild_h/
Patrick Georgi65ff63f2015-05-21 18:54:10 +0200430
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700431BOARD STATUS
432F: util/board_status/
433
434BINARY OBJECTS
435F: 3rdparty/blobs/
436
437VERIFIED BOOT
438F: 3rdparty/vboot/
439F: src/vendorcode/google/chromeos/
440F: src/include/tpm.h
441F: src/include/tpm_lite/
442
443RESOURCE ALLOCATOR
444F: src/device/*
445F: src/include/device/
446F: src/include/cpu/cpu.h
447
448OPTION ROM EXECUTION & X86EMU
449F: src/device/oprom/
450
451CBFS
452F: src/include/cbfs.h
453F: src/include/cbfs_serialized.h
454F: util/cbfstool/
455
456CBMEM
457F: src/include/cbmem.h
458F: src/include/cbmem_id.h
459F: util/cbmem/
460
461CONSOLE
462F: src/console/
463F: src/include/console/
464F: src/drivers/uart/
465
466NVRAM
467F: util/nvramtool/
468F: util/optionlist/
469F: payloads/nvramcui/
470
471LIBPAYLOAD
472F: payloads/libpayload/
473
474BAYOU PAYLOAD
475F: payloads/bayou/
476
477COREINFO PAYLOAD
478F: payloads/coreinfo/
479
480EXTERNAL PAYLOADS INTEGRATION
481M: Stefan Reinauer <stefan.reinauer@coreboot.org>
Martin Roth057ce5f2016-03-17 12:03:00 -0600482M: Martin Roth <gaumless@gmail.com>
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700483F: payloads/external
484
485VERIFIED BOOT 2
486M: Aaron Durbin <adurbin@chromium.org>
487F: src/vendorcode/google/chromeos/vboot2/
488
Philipp Deppenwiese6507e6f2016-06-22 19:01:47 +0200489TPM SUPPORT
490M: Philipp Deppenwiese <zaolin.daisuki@gmail.com>
491F: src/drivers/*/tpm/
492F: src/security/tpm12/
493F: src/security/tpm20/
494F: util/tss-generator/
495
Martin Roth954338d2017-03-05 11:20:18 -0700496DOCKER
497M: Martin Roth <gaumless@gmail.com>
498S: Supported
499F: util/docker/
500
501TOOLCHAIN
Martin Roth954338d2017-03-05 11:20:18 -0700502F: util/crossgcc/
503
504GIT
Martin Roth954338d2017-03-05 11:20:18 -0700505F: .git*
506F: /util/gitconfig
507
Martin Rothe801fcb2017-05-27 10:54:02 -0600508SUPERIOS & SUPERIOTOOL
509M: Felix Held <felix-coreboot@felixheld.de>
510S: Maintained
511F: src/superio/
512F: util/superiotool/
513
Julius Wernerc34e41f2017-06-09 14:26:03 -0700514MEMLAYOUT
515M: Julius Werner <jwerner@chromium.org>
516S: Supported
517F: */memlayout.h
518F: *.ld
519
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700520MISSING: TIMERS / DELAYS
521
522MISSING: TIMESTAMPS
523
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700524MISSING: FMAP
525
526MISSING: GPIO
527
528MISSING: SMP
529
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700530MISSING: DMP / QEMU-X86
531
532MISSING: ELOG
533
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700534MISSING: SPI
535
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -0700536THE REST
537M: Stefan Reinauer <stefan.reinauer@coreboot.org>
Paul Menzela8843de2017-06-05 12:33:23 +0200538T: git https://review.coreboot.org/coreboot
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -0700539S: Buried alive in mainboards
540F: *
541F: */
Martin Roth19fdedb2017-06-25 15:44:16 -0600542
543# *** Infrastructure Owners***
544# This is intended to let people know who they should contact for issues with various infrastructure pieces.
545# Hardware
546# Owners: Stefan, Patrick
Sumeet Pawnikar1638a852017-09-12 22:17:55 +0530547# Backups:
Martin Roth19fdedb2017-06-25 15:44:16 -0600548
549# Web Server
550# Owners: Stefan, Patrick
551# Backups:
552
553# Website
Sumeet Pawnikar1638a852017-09-12 22:17:55 +0530554# Owners: Martin, Philipp
Martin Roth19fdedb2017-06-25 15:44:16 -0600555# Backups: Patrick, Stefan
556
557# Documentation Website
558# Owners: Patrick, Philipp
559# Backups:
560
561# Wiki
562# Owners: Stefan, Patrick
563# Backups:
564
565# Gerrit
566# Owners: Stefan, Patrick
567# Backups: Martin
568
569# Jenkins
570# Owners: Patrick, Martin
571# Backups:
572
573# Bug Tracker
574# Owners: Lynxis,
575# Backups: Martin,
576
577# Mailing List
578# Owners: Stefan, Patrick
579# Backups: Martin,
580
581# Software Freedom Conservancy
582# Main contact: Martin
583# “Official” contact: Stefan