google/reef: Add Maxim98357a support
[coreboot.git] / MAINTAINERS
blob6e51ff827a9cdde2bef2235d48d8034c940e3948
3         List of maintainers and how to submit coreboot changes
5 Please try to follow the guidelines below.  This will make things
6 easier on the maintainers.  Not all of these guidelines matter for every
7 trivial patch so apply some common sense.
9 1.      Always _test_ your changes, however small, on at least 1 or
10         2 people, preferably many more.
12 2.      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!)
20 3.      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!)
24 4.      When you are happy with a change make it generally available for
25         testing in gerrit and await feedback.
27 5.      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.
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.
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.
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.
50         PLEASE document known bugs. If it doesn't work for everything
51         or does something very odd once a month document it.
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.
59 6.      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.
63 7.      Happy hacking.
65 Descriptions of section entries:
67         M: Maintainer: FullName <address@domain>
68         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.
114 Note: For the hard of thinking, this list is meant to remain in alphabetical
115 order. If you could add yourselves to it in alphabetical order that would be
116 so much easier [Ed]
118 Maintainers List (try to look for most precise areas first)
120                 -----------------------------------
122 RISC-V ARCHITECTURE
123 M:      Ronald Minnich <rminnich@gmail.com>
124 S:      Maintained
125 F:      src/arch/riscv/
126 F:      src/soc/ucb/
127 F:      src/mainboard/emulation/qemu-riscv/
129 POWER8 ARCHITECTURE
130 M:      Ronald Minnich <rminnich@gmail.com>
131 M:      Timothy Pearson <tpearson@raptorengineeringinc.com>
132 S:      Maintained
133 F:      src/arch/power8/
134 F:      src/cpu/qemu-power8/
135 F:      src/mainboard/emulation/qemu-power8/
137 LENOVO EC
138 M:      Alexander Couzens <lynxis@fe80.eu>
139 S:      Maintained
140 F:      src/ec/lenovo/
142 LENOVO MAINBOARDS
143 M:      Alexander Couzens <lynxis@fe80.eu>
144 M:      Patrick Rudolph <siro@das-labor.org>
145 S:      Maintained
146 F:      src/mainboard/lenovo/
148 INTEL PINEVIEW CHIPSET
149 M:      Damien Zammit <damien@zamaudio.com>
150 S:      Maintained
151 F:      src/northbridge/intel/pineview/
153 INTEL D510MO MAINBOARD
154 M:      Damien Zammit <damien@zamaudio.com>
155 S:      Maintained
156 F:      src/mainboard/intel/d510mo
158 INTEL X4X CHIPSET
159 M:      Damien Zammit <damien@zamaudio.com>
160 S:      Maintained
161 F:      src/northbridge/intel/x4x/
163 GIGABYTE GA-G41M-ES2L MAINBOARD
164 M:      Damien Zammit <damien@zamaudio.com>
165 S:      Maintained
166 F:      src/mainboard/gigabyte/ga-g41m-es2l
168 GOOGLE PANTHER MAINBOARD
169 M:      Stefan Reinauer <stefan.reinauer@coreboot.org>
170 S:      Supported
171 F:      src/mainboard/google/panther/
173 INTEL MINNOWBOARD MAX MAINBOARD
174 M:      Huang Jin <huang.jin@intel.com>
175 M:      York Yang <york.yang@intel.com>
176 M:      Martin Roth <gaumless@gmail.com>
177 S:      Supported
178 F:      src/mainboard/intel/minnowmax/
180 INTEL FSP BAYTRAIL CHIP & CRBs
181 M:      Huang Jin <huang.jin@intel.com>
182 M:      York Yang <york.yang@intel.com>
183 M:      Martin Roth <gaumless@gmail.com>
184 S:      Supported
185 F:      src/soc/intel/fsp_baytrail/
186 F:      src/vendorcode/intel/fsp1_0/baytrail/
187 F:      src/mainboard/intel/bakersport_fsp/
188 F:      src/mainboard/intel/bayleybay_fsp/
190 INTEL FSP BROADWELL-DE SOC & CRB
191 M:      York Yang <york.yang@intel.com>
192 S:      Supported
193 F:      src/soc/intel/fsp_broadwell_de/
194 F:      src/vendorcode/intel/fsp1_0/broadwell_de/
195 F:      src/mainboard/intel/camelbackmountain_fsp/
197 INTEL FSP IVYBRIDGE/PANTHERPOINT/CAVECREEK & CRBs
198 M:      York Yang <york.yang@intel.com>
199 S:      Supported
200 F:      src/cpu/intel/fsp_model_206ax/
201 F:      src/northbridge/intel/fsp_sandybridge/
202 F:      src/southbridge/intel/fsp_bd82x6x/
203 F:      src/southbridge/intel/fsp_i89xx/
204 F:      src/vendorcode/intel/fsp1_0/ivybridge_bd82x6x
205 F:      src/vendorcode/intel/fsp1_0/ivybridge_i89xx
206 F:      src/mainboard/intel/cougar_canyon2/
207 F:      src/mainboard/intel/stargo2/
209 FSP 1.0 RANGELEY & CRB
210 M:      David Guckian <david.guckian@intel.com>
211 M:      Fei Wang <fei.z.wang@intel.com>
212 S:      Supported
213 F:      src/cpu/intel/fsp_model_406dx/
214 F:      src/northbridge/intel/fsp_rangeley/
215 F:      src/southbridge/intel/fsp_rangeley/
216 F:      src/vendorcode/intel/fsp1_0/rangeley/
217 F:      src/mainboard/intel/mohonpeak/
219 INTEL LITTLE PLAINS MAINBOARD
220 M:      Marcin Wojciechowski <marcin.wojciechowski@intel.com>
221 S:      Supported
222 F:      src/mainboard/intel/littleplains/
224 INTEL FSP 1.0
225 M:      Huang Jin <huang.jin@intel.com>
226 M:      York Yang <york.yang@intel.com>
227 M:      Martin Roth <gaumless@gmail.com>
228 S:      Supported
229 F:      src/drivers/intel/fsp1_0/
231 INTEL FSP 1.1
232 M:      Lee Leahy <leroy.p.leahy@intel.com>
233 M:      Andrey Petrov <andrey.petrov@intel.com>
234 M:      Huang Jin <huang.jin@intel.com>
235 M:      York Yang <york.yang@intel.com>
236 S:      Supported
237 F:      src/drivers/intel/fsp1_1/
239 INTEL FSP 2.0
240 M:      Andrey Petrov <andrey.petrov@intel.com>
241 S:      Supported
242 F:      src/drivers/intel/fsp2_0/
244 INTEL STRAGO MAINBOARD
245 M:      Hannah Williams <hannah.williams@intel.com>
246 S:      Supported
247 F:      /src/mainboard/intel/strago/
249 INTEL AMENIA MAINBOARD
250 M:      Andrey Petrov <andrey.petrov@intel.com>
251 S:      Supported
252 F:      src/mainboard/intel/amenia/
254 INTEL BRASWELL SOC
255 M:      Hannah Williams <hannah.williams@intel.com>
256 S:      Supported
257 F:      /src/soc/intel/braswell
258 F:      /src/vendorcode/intel/fsp/fsp1_1/braswell
260 INTEL APOLLOLAKE_SOC
261 M:      Andrey Petrov <andrey.petrov@intel.com>
262 S:      Supported
263 F:      src/soc/intel/apollolake/
265 ASUS KFSN4-DRE & KFSN4-DRE_K8 MAINBOARDS
266 M:      Timothy Pearson <tpearson@raptorengineeringinc.com>
267 S:      Supported
268 F:      src/mainboard/asus/kfsn4-dre/
269 F:      src/mainboard/asus/kfsn4-dre_k8/
271 ASUS KCMA-D8 MAINBOARD
272 M:      Timothy Pearson <tpearson@raptorengineeringinc.com>
273 S:      Supported
274 F:      src/mainboard/asus/kcma-d8/
276 ASUS KGPE-D16 MAINBOARD
277 M:      Timothy Pearson <tpearson@raptorengineeringinc.com>
278 S:      Supported
279 F:      src/mainboard/asus/kgpe-d16/
281 AMD FAMILY10H & FAMILY15H (NON-AGESA) CPUS & NORTHBRIDGE
282 M:      Timothy Pearson <tpearson@raptorengineeringinc.com>
283 S:      Supported
284 F:      src/cpu/amd/family_10h-family_15h/
285 F:      src/northbridge/amd/amdfam10/
286 F:      src/northbridge/amd/amdmct/
287 F:      src/northbridge/amd/amdht/
289 AMD SB700 (NON-CIMX) SOUTHBRIDGE
290 M:      Timothy Pearson <tpearson@raptorengineeringinc.com>
291 S:      Supported
292 F:      src/southbridge/amd/sb700/
294 AMD SR5650 SOUTHBRIDGE
295 M:      Timothy Pearson <tpearson@raptorengineeringinc.com>
296 S:      Supported
297 F:      src/southbridge/amd/sr5650/
299 ASPEED AST2050 DRIVER & COMMON CODE
300 M:      Timothy Pearson <tpearson@raptorengineeringinc.com>
301 S:      Supported
302 F:      src/drivers/aspeed/common/
303 F:      src/drivers/aspeed/ast2050/
305 ATI MACH64 Driver
306 S:      Orphan
307 F:      src/drivers/ati/mach64/
309 ABUILD
310 M:      Patrick Georgi <patrick@georgi-clan.de>
311 S:      Supported
312 F:      util/abuild/
314 ACPI
315 F:      src/acpi/
316 F:      src/arch/x86/acpi/
317 F:      util/acpi/
319 ARM ARCHITECTURE
320 F:      src/arch/arm/
321 F:      src/arch/arm64
322 F:      src/cpu/allwinner/
323 F:      src/cpu/armltd/
324 F:      src/cpu/samsung/
325 F:      src/cpu/ti/
326 F:      src/soc/broadcom/
327 F:      src/soc/marvell/
328 F:      src/soc/nvidia/
329 F:      src/soc/qualcomm/
330 F:      src/soc/rockchip/
331 F:      src/soc/samsung/
332 F:      util/arm_boot_tools/
333 F:      util/broadcom/
334 F:      util/exynos/
335 F:      util/ipqheader/
336 F:      util/nvidia/
337 F:      util/rockchip/
339 MIPS ARCHITECTURE
340 F:      src/arch/mips/
341 F:      src/cpu/mips/
342 F:      src/soc/imgtec/
343 F:      util/bimgtool/
345 X86 ARCHITECTURE
346 F:      src/arch/x86/
347 F:      src/cpu/x86/
348 F:      src/drivers/pc80/
349 F:      src/include/pc80/
350 F:      src/include/cpu/x86/
352 INTEL SUPPORT
353 M:      Patrick Rudolph <siro@das-labor.org>
354 S:      Maintained
355 F:      src/vendorcode/intel/
356 F:      src/cpu/intel/
357 F:      src/northbridge/intel/
358 F:      src/southbridge/intel/
359 F:      src/soc/intel/
360 F:      src/drivers/intel/
361 F:      src/include/cpu/intel/
363 AMD SUPPORT
364 F:      src/vendorcode/amd/
365 F:      src/cpu/amd/
366 F:      src/northbridge/amd/
367 F:      src/southbridge/amd/
368 F:      src/include/cpu/amd/
370 VIA SUPPORT
371 F:      src/cpu/via/
372 F:      src/northbridge/via/
373 F:      src/southbridge/via/
375 LINT SCRIPTS
376 M:      Patrick Georgi <patrick@georgi-clan.de>
377 M:      Martin Roth <gaumless@gmail.com>
378 S:      Supported
379 F:      util/lint/
381 INTELTOOL
382 M:      Stefan Reinauer <stefan.reinauer@coreboot.org>
383 F:      util/inteltool/
385 INTELMETOOL
386 M:      Philipp Deppenwiese <zaolin.daisuki@gmail.com>
387 F:      util/intelmetool/
389 IFDTOOL
390 M:      Stefan Reinauer <stefan.reinauer@coreboot.org>
391 F:      util/ifdtool/
392 F:      util/ifdfake/
394 BUILD SYSTEM
395 M:      Patrick Georgi <patrick@georgi-clan.de>
396 M:      Martin Roth <gaumless@gmail.com>
397 S:      Supported
398 F:      Makefile
399 F:      *.inc
400 F:      src/include/kconfig.h
401 F:      util/kconfig/
402 F:      util/sconfig/
404 BOARD STATUS
405 M:      Martin Roth <gaumless@gmail.com>
406 S:      Supported
407 F:      util/board_status/
409 BINARY OBJECTS
410 F:      3rdparty/blobs/
412 VERIFIED BOOT
413 F:      3rdparty/vboot/
414 F:      src/vendorcode/google/chromeos/
415 F:      src/include/tpm.h
416 F:      src/include/tpm_lite/
418 RESOURCE ALLOCATOR
419 F:      src/device/*
420 F:      src/include/device/
421 F:      src/include/cpu/cpu.h
423 OPTION ROM EXECUTION & X86EMU
424 F:      src/device/oprom/
426 CBFS
427 F:      src/include/cbfs.h
428 F:      src/include/cbfs_serialized.h
429 F:      util/cbfstool/
431 CBMEM
432 F:      src/include/cbmem.h
433 F:      src/include/cbmem_id.h
434 F:      util/cbmem/
436 CONSOLE
437 F:      src/console/
438 F:      src/include/console/
439 F:      src/drivers/uart/
441 NVRAM
442 F:      util/nvramtool/
443 F:      util/optionlist/
444 F:      payloads/nvramcui/
446 LIBPAYLOAD
447 F:      payloads/libpayload/
449 BAYOU PAYLOAD
450 F:      payloads/bayou/
452 COREINFO PAYLOAD
453 F:      payloads/coreinfo/
455 EXTERNAL PAYLOADS INTEGRATION
456 M:      Stefan Reinauer <stefan.reinauer@coreboot.org>
457 M:      Martin Roth <gaumless@gmail.com>
458 F:      payloads/external
460 VERIFIED BOOT 2
461 M:      Aaron Durbin <adurbin@chromium.org>
462 F:      src/vendorcode/google/chromeos/vboot2/
464 TPM SUPPORT
465 M:      Philipp Deppenwiese <zaolin.daisuki@gmail.com>
466 F:      src/drivers/*/tpm/
467 F:      src/security/tpm12/
468 F:      src/security/tpm20/
469 F:      util/tss-generator/
471 MISSING: TIMERS / DELAYS
473 MISSING: TIMESTAMPS
475 MISSING: MEMLAYOUT
477 MISSING: FMAP
479 MISSING: GPIO
481 MISSING: SMP
483 MISSING: SUPERIOS
485 MISSING: DMP / QEMU-X86
487 MISSING: ELOG
489 MISSING: GENERIC DRAM (should drop)
491 MISSING: SPI
493 THE REST
494 M:      Stefan Reinauer <stefan.reinauer@coreboot.org>
495 L:      coreboot@coreboot.org
496 T:      git http://review.coreboot.org/coreboot
497 S:      Buried alive in mainboards
498 F:      *
499 F:      */