blob: 28628fff48715a0b2e31664094feda7eb3758ed9 [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.
38 See http://coreboot.org/Coding_Style for guidance here.
39
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
57 http://coreboot.org/Development_Guidelines#Sign-off_Procedure.
58
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>
124S: Maintained
Stefan Reinauera4ffe8a2015-10-21 13:09:42 -0700125F: src/arch/riscv/
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700126F: src/soc/ucb/
Stefan Reinauera4ffe8a2015-10-21 13:09:42 -0700127F: src/mainboard/emulation/qemu-riscv/
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -0700128
Martin Roth57fcae12016-03-17 12:00:25 -0600129POWER8 ARCHITECTURE
130M: Ronald Minnich <rminnich@gmail.com>
131M: Timothy Pearson <tpearson@raptorengineeringinc.com>
132S: Maintained
133F: src/arch/power8/
134F: src/cpu/qemu-power8/
135F: src/mainboard/emulation/qemu-power8/
136
Alexander Couzens753af5b2015-12-05 13:45:27 +0100137LENOVO EC
138M: Alexander Couzens <lynxis@fe80.eu>
139S: Maintained
140F: src/ec/lenovo/
141
142LENOVO MAINBOARDS
143M: Alexander Couzens <lynxis@fe80.eu>
144S: Maintained
145F: src/mainboard/lenovo/
146
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -0700147GOOGLE PANTHER MAINBOARD
148M: Stefan Reinauer <stefan.reinauer@coreboot.org>
149S: Supported
Stefan Reinauera4ffe8a2015-10-21 13:09:42 -0700150F: src/mainboard/google/panther/
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -0700151
Martin Roth173fe072015-12-04 08:42:36 -0700152INTEL FSP IVYBRIDGE/PANTHERPOINT/CAVECREEK & CRBs
153M: York Yang <york.yang@intel.com>
154S: Supported
155F: src/cpu/intel/fsp_model_206ax/
156F: src/northbridge/intel/fsp_sandybridge/
157F: src/southbridge/intel/fsp_bd82x6x/
158F: src/southbridge/intel/fsp_i89xx/
159F: src/vendorcode/intel/fsp1_0/ivybridge_bd82x6x
160F: src/vendorcode/intel/fsp1_0/ivybridge_i89xx
161F: src/mainboard/intel/cougar_canyon2/
162F: src/mainboard/intel/stargo2/
163
Martin Roth3a18a802015-11-19 15:45:32 -0700164INTEL MINNOWBOARD MAX MAINBOARD
Alexandru Gagniuc000e8aa2015-10-13 17:30:04 -0700165M: Huang Jin <huang.jin@intel.com>
166M: York Yang <york.yang@intel.com>
Martin Roth3a18a802015-11-19 15:45:32 -0700167M: Martin Roth <gaumless@gmail.com>
Alexandru Gagniuc000e8aa2015-10-13 17:30:04 -0700168S: Supported
Martin Roth3a18a802015-11-19 15:45:32 -0700169F: src/mainboard/intel/minnowmax/
170
Alexandru Gagniuc000e8aa2015-10-13 17:30:04 -0700171INTEL FSP BAYTRAIL CHIP & CRBs
172M: Huang Jin <huang.jin@intel.com>
173M: York Yang <york.yang@intel.com>
Martin Roth3a18a802015-11-19 15:45:32 -0700174M: Martin Roth <gaumless@gmail.com>
Alexandru Gagniuc000e8aa2015-10-13 17:30:04 -0700175S: Supported
Martin Roth3a18a802015-11-19 15:45:32 -0700176F: src/soc/intel/fsp_baytrail/
Alexandru Gagniuc000e8aa2015-10-13 17:30:04 -0700177F: src/vendorcode/intel/fsp1_0/baytrail/
178F: src/mainboard/intel/bakersport_fsp/
179F: src/mainboard/intel/bayleybay_fsp/
Martin Roth3a18a802015-11-19 15:45:32 -0700180
Martin Roth980a8c12015-12-04 08:33:35 -0700181FSP 1.0 RANGELEY & CRB
182M: David Guckian <david.guckian@intel.com>
183M: Fei Wang <fei.z.wang@intel.com>
184S: Supported
185F: src/cpu/intel/fsp_model_406dx/
186F: src/northbridge/intel/fsp_rangeley/
187F: src/southbridge/intel/fsp_rangeley/
188F: src/vendorcode/intel/fsp1_0/rangeley/
189F: src/mainboard/intel/mohonpeak/
190
191INTEL LITTLE PLAINS MAINBOARD
192M: Marcin Wojciechowski <marcin.wojciechowski@intel.com>
193S: Supported
194F: src/mainboard/intel/littleplains/
195
Martin Roth3a18a802015-11-19 15:45:32 -0700196INTEL FSP 1.0
Alexandru Gagniuc000e8aa2015-10-13 17:30:04 -0700197M: Huang Jin <huang.jin@intel.com>
198M: York Yang <york.yang@intel.com>
Martin Roth3a18a802015-11-19 15:45:32 -0700199M: Martin Roth <gaumless@gmail.com>
Alexandru Gagniuc000e8aa2015-10-13 17:30:04 -0700200S: Supported
Martin Roth3a18a802015-11-19 15:45:32 -0700201F: src/drivers/intel/fsp1_0/
Martin Roth3a18a802015-11-19 15:45:32 -0700202
Martin Roth533f6662015-12-04 08:36:49 -0700203INTEL FSP 1.1
204M: Lee Leahy <leroy.p.leahy@intel.com>
205M: Andrey Petrov <andrey.petrov@intel.com>
206M: Huang Jin <huang.jin@intel.com>
207M: York Yang <york.yang@intel.com>
208S: Supported
209F: src/drivers/intel/fsp1_1/
210
Martin Roth4a1c69a2016-03-17 12:02:12 -0600211INTEL STRAGO MAINBOARD
212M: Hannah Williams <hannah.williams@intel.com>
213S: Supported
214F: /src/mainboard/intel/strago/
215
216INTEL BRASWELL SOC
217M: Hannah Williams <hannah.williams@intel.com>
218S: Supported
219F: /src/soc/intel/braswell
220F: /src/vendorcode/intel/fsp/fsp1_1/braswell
221
Martin Roth2a3434752016-03-05 18:31:29 -0700222ASUS KFSN4-DRE & KFSN4-DRE_K8 MAINBOARDS
223M: Timothy Pearson <tpearson@raptorengineeringinc.com>
224S: Supported
225F: src/mainboard/asus/kfsn4-dre/
226F: src/mainboard/asus/kfsn4-dre_k8/
227
228ASUS KCMA-D8 MAINBOARD
229M: Timothy Pearson <tpearson@raptorengineeringinc.com>
230S: Supported
231F: src/mainboard/asus/kcma-d8/
232
233ASUS KGPE-D16 MAINBOARD
234M: Timothy Pearson <tpearson@raptorengineeringinc.com>
235S: Supported
236F: src/mainboard/asus/kgpe-d16/
237
238AMD FAMILY10H & FAMILY15H (NON-AGESA) CPUS & NORTHBRIDGE
239M: Timothy Pearson <tpearson@raptorengineeringinc.com>
240S: Supported
241F: src/cpu/amd/family_10h-family_15h/
242F: src/northbridge/amd/amdfam10/
243F: src/northbridge/amd/amdmct/
244F: src/northbridge/amd/amdht/
245
246AMD SB700 (NON-CIMX) SOUTHBRIDGE
247M: Timothy Pearson <tpearson@raptorengineeringinc.com>
248S: Supported
249F: src/southbridge/amd/sb700/
250
251AMD SR5650 SOUTHBRIDGE
252M: Timothy Pearson <tpearson@raptorengineeringinc.com>
253S: Supported
254F: src/southbridge/amd/sr5650/
255
256ASPEED AST2050 DRIVER & COMMON CODE
257M: Timothy Pearson <tpearson@raptorengineeringinc.com>
258S: Supported
259F: src/drivers/aspeed/common/
260F: src/drivers/aspeed/ast2050/
261
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -0700262ATI MACH64 Driver
263S: Orphan
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700264F: src/drivers/ati/mach64/
265
266ABUILD
267M: Patrick Georgi <patrick@georgi-clan.de>
268S: Supported
269F: util/abuild/
270
271ACPI
272F: src/acpi/
273F: src/arch/x86/acpi/
274F: util/acpi/
275
276ARM ARCHITECTURE
277F: src/arch/arm/
278F: src/arch/arm64
279F: src/cpu/allwinner/
280F: src/cpu/armltd/
281F: src/cpu/samsung/
282F: src/cpu/ti/
283F: src/soc/broadcom/
284F: src/soc/marvell/
285F: src/soc/nvidia/
286F: src/soc/qualcomm/
287F: src/soc/rockchip/
288F: src/soc/samsung/
289F: util/arm_boot_tools/
290F: util/broadcom/
291F: util/exynos/
292F: util/ipqheader/
293F: util/nvidia/
294F: util/rockchip/
295
296MIPS ARCHITECTURE
297F: src/arch/mips/
298F: src/cpu/mips/
299F: src/soc/imgtec/
300F: util/bimgtool/
301
302X86 ARCHITECTURE
303F: src/arch/x86/
304F: src/cpu/x86/
305F: src/drivers/pc80/
306F: src/include/pc80/
307F: src/include/cpu/x86/
308
309INTEL SUPPORT
310F: src/vendorcode/intel/
311F: src/cpu/intel/
312F: src/northbridge/intel/
313F: src/southbridge/intel/
314F: src/soc/intel/
315F: src/drivers/intel/
316F: src/include/cpu/intel/
317
318AMD SUPPORT
319F: src/vendorcode/amd/
320F: src/cpu/amd/
321F: src/northbridge/amd/
322F: src/southbridge/amd/
323F: src/include/cpu/amd/
324
325VIA SUPPORT
326F: src/cpu/via/
327F: src/northbridge/via/
328F: src/southbridge/via/
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -0700329
Stefan Reinauer2e38cc52015-05-06 11:15:38 -0700330LINT SCRIPTS
331M: Patrick Georgi <patrick@georgi-clan.de>
Martin Roth057ce5f2016-03-17 12:03:00 -0600332M: Martin Roth <gaumless@gmail.com>
Stefan Reinauer2e38cc52015-05-06 11:15:38 -0700333S: Supported
334F: util/lint/
335
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700336INTELTOOL
337M: Stefan Reinauer <stefan.reinauer@coreboot.org>
338F: util/inteltool/
339
Philipp Deppenwiese4cd9a112016-03-23 00:02:40 +0100340INTELMETOOL
341M: Philipp Deppenwiese <zaolin.daisuki@gmail.com>
342F: util/intelmetool/
343
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700344IFDTOOL
345M: Stefan Reinauer <stefan.reinauer@coreboot.org>
346F: util/ifdtool/
347F: util/ifdfake/
348
Patrick Georgi65ff63f2015-05-21 18:54:10 +0200349BUILD SYSTEM
350M: Patrick Georgi <patrick@georgi-clan.de>
Martin Roth3a18a802015-11-19 15:45:32 -0700351M: Martin Roth <gaumless@gmail.com>
Patrick Georgi65ff63f2015-05-21 18:54:10 +0200352S: Supported
353F: Makefile
354F: *.inc
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700355F: src/include/kconfig.h
Stefan Reinauera4ffe8a2015-10-21 13:09:42 -0700356F: util/kconfig/
357F: util/sconfig/
Patrick Georgi65ff63f2015-05-21 18:54:10 +0200358
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700359BOARD STATUS
Martin Roth057ce5f2016-03-17 12:03:00 -0600360M: Martin Roth <gaumless@gmail.com>
361S: Supported
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700362F: util/board_status/
363
364BINARY OBJECTS
365F: 3rdparty/blobs/
366
367VERIFIED BOOT
368F: 3rdparty/vboot/
369F: src/vendorcode/google/chromeos/
370F: src/include/tpm.h
371F: src/include/tpm_lite/
372
373RESOURCE ALLOCATOR
374F: src/device/*
375F: src/include/device/
376F: src/include/cpu/cpu.h
377
378OPTION ROM EXECUTION & X86EMU
379F: src/device/oprom/
380
381CBFS
382F: src/include/cbfs.h
383F: src/include/cbfs_serialized.h
384F: util/cbfstool/
385
386CBMEM
387F: src/include/cbmem.h
388F: src/include/cbmem_id.h
389F: util/cbmem/
390
391CONSOLE
392F: src/console/
393F: src/include/console/
394F: src/drivers/uart/
395
396NVRAM
397F: util/nvramtool/
398F: util/optionlist/
399F: payloads/nvramcui/
400
401LIBPAYLOAD
402F: payloads/libpayload/
403
404BAYOU PAYLOAD
405F: payloads/bayou/
406
407COREINFO PAYLOAD
408F: payloads/coreinfo/
409
410EXTERNAL PAYLOADS INTEGRATION
411M: Stefan Reinauer <stefan.reinauer@coreboot.org>
Martin Roth057ce5f2016-03-17 12:03:00 -0600412M: Martin Roth <gaumless@gmail.com>
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700413F: payloads/external
414
415VERIFIED BOOT 2
416M: Aaron Durbin <adurbin@chromium.org>
417F: src/vendorcode/google/chromeos/vboot2/
418
419MISSING: TIMERS / DELAYS
420
421MISSING: TIMESTAMPS
422
423MISSING: MEMLAYOUT
424
425MISSING: FMAP
426
427MISSING: GPIO
428
429MISSING: SMP
430
431MISSING: SUPERIOS
432
433MISSING: DMP / QEMU-X86
434
435MISSING: ELOG
436
437MISSING: GENERIC DRAM (should drop)
438
439MISSING: SPI
440
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -0700441THE REST
442M: Stefan Reinauer <stefan.reinauer@coreboot.org>
443L: coreboot@coreboot.org
444T: git http://review.coreboot.org/coreboot
445S: Buried alive in mainboards
446F: *
447F: */