blob: 9680a508d88169d7d73368946c4b2f10f2f82b24 [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
Alexander Couzens753af5b2015-12-05 13:45:27 +0100129LENOVO EC
130M: Alexander Couzens <lynxis@fe80.eu>
131S: Maintained
132F: src/ec/lenovo/
133
134LENOVO MAINBOARDS
135M: Alexander Couzens <lynxis@fe80.eu>
136S: Maintained
137F: src/mainboard/lenovo/
138
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -0700139GOOGLE PANTHER MAINBOARD
140M: Stefan Reinauer <stefan.reinauer@coreboot.org>
141S: Supported
Stefan Reinauera4ffe8a2015-10-21 13:09:42 -0700142F: src/mainboard/google/panther/
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -0700143
Martin Roth173fe072015-12-04 08:42:36 -0700144INTEL FSP IVYBRIDGE/PANTHERPOINT/CAVECREEK & CRBs
145M: York Yang <york.yang@intel.com>
146S: Supported
147F: src/cpu/intel/fsp_model_206ax/
148F: src/northbridge/intel/fsp_sandybridge/
149F: src/southbridge/intel/fsp_bd82x6x/
150F: src/southbridge/intel/fsp_i89xx/
151F: src/vendorcode/intel/fsp1_0/ivybridge_bd82x6x
152F: src/vendorcode/intel/fsp1_0/ivybridge_i89xx
153F: src/mainboard/intel/cougar_canyon2/
154F: src/mainboard/intel/stargo2/
155
Martin Roth3a18a802015-11-19 15:45:32 -0700156INTEL MINNOWBOARD MAX MAINBOARD
157M: Martin Roth <gaumless@gmail.com>
158S: Maintained
159F: src/mainboard/intel/minnowmax/
160
161INTEL FSP BAYTRAIL CHIP
162M: Martin Roth <gaumless@gmail.com>
163S: Odd Fixes
164F: src/soc/intel/fsp_baytrail/
165
Martin Roth980a8c12015-12-04 08:33:35 -0700166FSP 1.0 RANGELEY & CRB
167M: David Guckian <david.guckian@intel.com>
168M: Fei Wang <fei.z.wang@intel.com>
169S: Supported
170F: src/cpu/intel/fsp_model_406dx/
171F: src/northbridge/intel/fsp_rangeley/
172F: src/southbridge/intel/fsp_rangeley/
173F: src/vendorcode/intel/fsp1_0/rangeley/
174F: src/mainboard/intel/mohonpeak/
175
176INTEL LITTLE PLAINS MAINBOARD
177M: Marcin Wojciechowski <marcin.wojciechowski@intel.com>
178S: Supported
179F: src/mainboard/intel/littleplains/
180
Martin Roth3a18a802015-11-19 15:45:32 -0700181INTEL FSP 1.0
182M: Martin Roth <gaumless@gmail.com>
183S: Odd Fixes
184F: src/drivers/intel/fsp1_0/
185F: src/vendorcode/intel/fsp1_0/
186
Martin Roth533f6662015-12-04 08:36:49 -0700187INTEL FSP 1.1
188M: Lee Leahy <leroy.p.leahy@intel.com>
189M: Andrey Petrov <andrey.petrov@intel.com>
190M: Huang Jin <huang.jin@intel.com>
191M: York Yang <york.yang@intel.com>
192S: Supported
193F: src/drivers/intel/fsp1_1/
194
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -0700195ATI MACH64 Driver
196S: Orphan
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700197F: src/drivers/ati/mach64/
198
199ABUILD
200M: Patrick Georgi <patrick@georgi-clan.de>
201S: Supported
202F: util/abuild/
203
204ACPI
205F: src/acpi/
206F: src/arch/x86/acpi/
207F: util/acpi/
208
209ARM ARCHITECTURE
210F: src/arch/arm/
211F: src/arch/arm64
212F: src/cpu/allwinner/
213F: src/cpu/armltd/
214F: src/cpu/samsung/
215F: src/cpu/ti/
216F: src/soc/broadcom/
217F: src/soc/marvell/
218F: src/soc/nvidia/
219F: src/soc/qualcomm/
220F: src/soc/rockchip/
221F: src/soc/samsung/
222F: util/arm_boot_tools/
223F: util/broadcom/
224F: util/exynos/
225F: util/ipqheader/
226F: util/nvidia/
227F: util/rockchip/
228
229MIPS ARCHITECTURE
230F: src/arch/mips/
231F: src/cpu/mips/
232F: src/soc/imgtec/
233F: util/bimgtool/
234
235X86 ARCHITECTURE
236F: src/arch/x86/
237F: src/cpu/x86/
238F: src/drivers/pc80/
239F: src/include/pc80/
240F: src/include/cpu/x86/
241
242INTEL SUPPORT
243F: src/vendorcode/intel/
244F: src/cpu/intel/
245F: src/northbridge/intel/
246F: src/southbridge/intel/
247F: src/soc/intel/
248F: src/drivers/intel/
249F: src/include/cpu/intel/
250
251AMD SUPPORT
252F: src/vendorcode/amd/
253F: src/cpu/amd/
254F: src/northbridge/amd/
255F: src/southbridge/amd/
256F: src/include/cpu/amd/
257
258VIA SUPPORT
259F: src/cpu/via/
260F: src/northbridge/via/
261F: src/southbridge/via/
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -0700262
Stefan Reinauer2e38cc52015-05-06 11:15:38 -0700263LINT SCRIPTS
264M: Patrick Georgi <patrick@georgi-clan.de>
265S: Supported
266F: util/lint/
267
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700268INTELTOOL
269M: Stefan Reinauer <stefan.reinauer@coreboot.org>
270F: util/inteltool/
271
272IFDTOOL
273M: Stefan Reinauer <stefan.reinauer@coreboot.org>
274F: util/ifdtool/
275F: util/ifdfake/
276
Patrick Georgi65ff63f2015-05-21 18:54:10 +0200277BUILD SYSTEM
278M: Patrick Georgi <patrick@georgi-clan.de>
Martin Roth3a18a802015-11-19 15:45:32 -0700279M: Martin Roth <gaumless@gmail.com>
Patrick Georgi65ff63f2015-05-21 18:54:10 +0200280S: Supported
281F: Makefile
282F: *.inc
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700283F: src/include/kconfig.h
Stefan Reinauera4ffe8a2015-10-21 13:09:42 -0700284F: util/kconfig/
285F: util/sconfig/
Patrick Georgi65ff63f2015-05-21 18:54:10 +0200286
Stefan Reinauerbf3dbaf2015-06-12 15:30:59 -0700287BOARD STATUS
288F: util/board_status/
289
290BINARY OBJECTS
291F: 3rdparty/blobs/
292
293VERIFIED BOOT
294F: 3rdparty/vboot/
295F: src/vendorcode/google/chromeos/
296F: src/include/tpm.h
297F: src/include/tpm_lite/
298
299RESOURCE ALLOCATOR
300F: src/device/*
301F: src/include/device/
302F: src/include/cpu/cpu.h
303
304OPTION ROM EXECUTION & X86EMU
305F: src/device/oprom/
306
307CBFS
308F: src/include/cbfs.h
309F: src/include/cbfs_serialized.h
310F: util/cbfstool/
311
312CBMEM
313F: src/include/cbmem.h
314F: src/include/cbmem_id.h
315F: util/cbmem/
316
317CONSOLE
318F: src/console/
319F: src/include/console/
320F: src/drivers/uart/
321
322NVRAM
323F: util/nvramtool/
324F: util/optionlist/
325F: payloads/nvramcui/
326
327LIBPAYLOAD
328F: payloads/libpayload/
329
330BAYOU PAYLOAD
331F: payloads/bayou/
332
333COREINFO PAYLOAD
334F: payloads/coreinfo/
335
336EXTERNAL PAYLOADS INTEGRATION
337M: Stefan Reinauer <stefan.reinauer@coreboot.org>
338F: payloads/external
339
340VERIFIED BOOT 2
341M: Aaron Durbin <adurbin@chromium.org>
342F: src/vendorcode/google/chromeos/vboot2/
343
344MISSING: TIMERS / DELAYS
345
346MISSING: TIMESTAMPS
347
348MISSING: MEMLAYOUT
349
350MISSING: FMAP
351
352MISSING: GPIO
353
354MISSING: SMP
355
356MISSING: SUPERIOS
357
358MISSING: DMP / QEMU-X86
359
360MISSING: ELOG
361
362MISSING: GENERIC DRAM (should drop)
363
364MISSING: SPI
365
Stefan Reinauerc6e1f8a2015-04-28 13:42:55 -0700366THE REST
367M: Stefan Reinauer <stefan.reinauer@coreboot.org>
368L: coreboot@coreboot.org
369T: git http://review.coreboot.org/coreboot
370S: Buried alive in mainboards
371F: *
372F: */