Stefan Reinauer | c6e1f8a | 2015-04-28 13:42:55 -0700 | [diff] [blame] | 1 | |
| 2 | |
| 3 | List of maintainers and how to submit coreboot changes |
| 4 | |
| 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. |
| 8 | |
| 9 | 1. Always _test_ your changes, however small, on at least 1 or |
| 10 | 2 people, preferably many more. |
| 11 | |
| 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!) |
| 19 | |
| 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!) |
| 23 | |
| 24 | 4. When you are happy with a change make it generally available for |
| 25 | testing in gerrit and await feedback. |
| 26 | |
| 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. |
| 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 | |
| 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. |
| 62 | |
| 63 | 7. Happy hacking. |
| 64 | |
| 65 | Descriptions of section entries: |
| 66 | |
Stefan Reinauer | a4ffe8a | 2015-10-21 13:09:42 -0700 | [diff] [blame] | 67 | M: Maintainer: FullName <address@domain> |
Stefan Reinauer | c6e1f8a | 2015-04-28 13:42:55 -0700 | [diff] [blame] | 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. |
| 113 | |
| 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] |
| 117 | |
| 118 | Maintainers List (try to look for most precise areas first) |
| 119 | |
| 120 | ----------------------------------- |
| 121 | |
| 122 | RISC-V ARCHITECTURE |
| 123 | M: Ronald Minnich <rminnich@gmail.com> |
| 124 | S: Maintained |
Stefan Reinauer | a4ffe8a | 2015-10-21 13:09:42 -0700 | [diff] [blame] | 125 | F: src/arch/riscv/ |
Stefan Reinauer | bf3dbaf | 2015-06-12 15:30:59 -0700 | [diff] [blame] | 126 | F: src/soc/ucb/ |
Stefan Reinauer | a4ffe8a | 2015-10-21 13:09:42 -0700 | [diff] [blame] | 127 | F: src/mainboard/emulation/qemu-riscv/ |
Stefan Reinauer | c6e1f8a | 2015-04-28 13:42:55 -0700 | [diff] [blame] | 128 | |
Alexander Couzens | 753af5b | 2015-12-05 13:45:27 +0100 | [diff] [blame] | 129 | LENOVO EC |
| 130 | M: Alexander Couzens <lynxis@fe80.eu> |
| 131 | S: Maintained |
| 132 | F: src/ec/lenovo/ |
| 133 | |
| 134 | LENOVO MAINBOARDS |
| 135 | M: Alexander Couzens <lynxis@fe80.eu> |
| 136 | S: Maintained |
| 137 | F: src/mainboard/lenovo/ |
| 138 | |
Stefan Reinauer | c6e1f8a | 2015-04-28 13:42:55 -0700 | [diff] [blame] | 139 | GOOGLE PANTHER MAINBOARD |
| 140 | M: Stefan Reinauer <stefan.reinauer@coreboot.org> |
| 141 | S: Supported |
Stefan Reinauer | a4ffe8a | 2015-10-21 13:09:42 -0700 | [diff] [blame] | 142 | F: src/mainboard/google/panther/ |
Stefan Reinauer | c6e1f8a | 2015-04-28 13:42:55 -0700 | [diff] [blame] | 143 | |
Martin Roth | 173fe07 | 2015-12-04 08:42:36 -0700 | [diff] [blame] | 144 | INTEL FSP IVYBRIDGE/PANTHERPOINT/CAVECREEK & CRBs |
| 145 | M: York Yang <york.yang@intel.com> |
| 146 | S: Supported |
| 147 | F: src/cpu/intel/fsp_model_206ax/ |
| 148 | F: src/northbridge/intel/fsp_sandybridge/ |
| 149 | F: src/southbridge/intel/fsp_bd82x6x/ |
| 150 | F: src/southbridge/intel/fsp_i89xx/ |
| 151 | F: src/vendorcode/intel/fsp1_0/ivybridge_bd82x6x |
| 152 | F: src/vendorcode/intel/fsp1_0/ivybridge_i89xx |
| 153 | F: src/mainboard/intel/cougar_canyon2/ |
| 154 | F: src/mainboard/intel/stargo2/ |
| 155 | |
Martin Roth | 3a18a80 | 2015-11-19 15:45:32 -0700 | [diff] [blame] | 156 | INTEL MINNOWBOARD MAX MAINBOARD |
Alexandru Gagniuc | 000e8aa | 2015-10-13 17:30:04 -0700 | [diff] [blame] | 157 | M: Huang Jin <huang.jin@intel.com> |
| 158 | M: York Yang <york.yang@intel.com> |
Martin Roth | 3a18a80 | 2015-11-19 15:45:32 -0700 | [diff] [blame] | 159 | M: Martin Roth <gaumless@gmail.com> |
Alexandru Gagniuc | 000e8aa | 2015-10-13 17:30:04 -0700 | [diff] [blame] | 160 | S: Supported |
Martin Roth | 3a18a80 | 2015-11-19 15:45:32 -0700 | [diff] [blame] | 161 | F: src/mainboard/intel/minnowmax/ |
| 162 | |
Alexandru Gagniuc | 000e8aa | 2015-10-13 17:30:04 -0700 | [diff] [blame] | 163 | INTEL FSP BAYTRAIL CHIP & CRBs |
| 164 | M: Huang Jin <huang.jin@intel.com> |
| 165 | M: York Yang <york.yang@intel.com> |
Martin Roth | 3a18a80 | 2015-11-19 15:45:32 -0700 | [diff] [blame] | 166 | M: Martin Roth <gaumless@gmail.com> |
Alexandru Gagniuc | 000e8aa | 2015-10-13 17:30:04 -0700 | [diff] [blame] | 167 | S: Supported |
Martin Roth | 3a18a80 | 2015-11-19 15:45:32 -0700 | [diff] [blame] | 168 | F: src/soc/intel/fsp_baytrail/ |
Alexandru Gagniuc | 000e8aa | 2015-10-13 17:30:04 -0700 | [diff] [blame] | 169 | F: src/vendorcode/intel/fsp1_0/baytrail/ |
| 170 | F: src/mainboard/intel/bakersport_fsp/ |
| 171 | F: src/mainboard/intel/bayleybay_fsp/ |
Martin Roth | 3a18a80 | 2015-11-19 15:45:32 -0700 | [diff] [blame] | 172 | |
Martin Roth | 980a8c1 | 2015-12-04 08:33:35 -0700 | [diff] [blame] | 173 | FSP 1.0 RANGELEY & CRB |
| 174 | M: David Guckian <david.guckian@intel.com> |
| 175 | M: Fei Wang <fei.z.wang@intel.com> |
| 176 | S: Supported |
| 177 | F: src/cpu/intel/fsp_model_406dx/ |
| 178 | F: src/northbridge/intel/fsp_rangeley/ |
| 179 | F: src/southbridge/intel/fsp_rangeley/ |
| 180 | F: src/vendorcode/intel/fsp1_0/rangeley/ |
| 181 | F: src/mainboard/intel/mohonpeak/ |
| 182 | |
| 183 | INTEL LITTLE PLAINS MAINBOARD |
| 184 | M: Marcin Wojciechowski <marcin.wojciechowski@intel.com> |
| 185 | S: Supported |
| 186 | F: src/mainboard/intel/littleplains/ |
| 187 | |
Martin Roth | 3a18a80 | 2015-11-19 15:45:32 -0700 | [diff] [blame] | 188 | INTEL FSP 1.0 |
Alexandru Gagniuc | 000e8aa | 2015-10-13 17:30:04 -0700 | [diff] [blame] | 189 | M: Huang Jin <huang.jin@intel.com> |
| 190 | M: York Yang <york.yang@intel.com> |
Martin Roth | 3a18a80 | 2015-11-19 15:45:32 -0700 | [diff] [blame] | 191 | M: Martin Roth <gaumless@gmail.com> |
Alexandru Gagniuc | 000e8aa | 2015-10-13 17:30:04 -0700 | [diff] [blame] | 192 | S: Supported |
Martin Roth | 3a18a80 | 2015-11-19 15:45:32 -0700 | [diff] [blame] | 193 | F: src/drivers/intel/fsp1_0/ |
Martin Roth | 3a18a80 | 2015-11-19 15:45:32 -0700 | [diff] [blame] | 194 | |
Martin Roth | 533f666 | 2015-12-04 08:36:49 -0700 | [diff] [blame] | 195 | INTEL FSP 1.1 |
| 196 | M: Lee Leahy <leroy.p.leahy@intel.com> |
| 197 | M: Andrey Petrov <andrey.petrov@intel.com> |
| 198 | M: Huang Jin <huang.jin@intel.com> |
| 199 | M: York Yang <york.yang@intel.com> |
| 200 | S: Supported |
| 201 | F: src/drivers/intel/fsp1_1/ |
| 202 | |
Stefan Reinauer | c6e1f8a | 2015-04-28 13:42:55 -0700 | [diff] [blame] | 203 | ATI MACH64 Driver |
| 204 | S: Orphan |
Stefan Reinauer | bf3dbaf | 2015-06-12 15:30:59 -0700 | [diff] [blame] | 205 | F: src/drivers/ati/mach64/ |
| 206 | |
| 207 | ABUILD |
| 208 | M: Patrick Georgi <patrick@georgi-clan.de> |
| 209 | S: Supported |
| 210 | F: util/abuild/ |
| 211 | |
| 212 | ACPI |
| 213 | F: src/acpi/ |
| 214 | F: src/arch/x86/acpi/ |
| 215 | F: util/acpi/ |
| 216 | |
| 217 | ARM ARCHITECTURE |
| 218 | F: src/arch/arm/ |
| 219 | F: src/arch/arm64 |
| 220 | F: src/cpu/allwinner/ |
| 221 | F: src/cpu/armltd/ |
| 222 | F: src/cpu/samsung/ |
| 223 | F: src/cpu/ti/ |
| 224 | F: src/soc/broadcom/ |
| 225 | F: src/soc/marvell/ |
| 226 | F: src/soc/nvidia/ |
| 227 | F: src/soc/qualcomm/ |
| 228 | F: src/soc/rockchip/ |
| 229 | F: src/soc/samsung/ |
| 230 | F: util/arm_boot_tools/ |
| 231 | F: util/broadcom/ |
| 232 | F: util/exynos/ |
| 233 | F: util/ipqheader/ |
| 234 | F: util/nvidia/ |
| 235 | F: util/rockchip/ |
| 236 | |
| 237 | MIPS ARCHITECTURE |
| 238 | F: src/arch/mips/ |
| 239 | F: src/cpu/mips/ |
| 240 | F: src/soc/imgtec/ |
| 241 | F: util/bimgtool/ |
| 242 | |
| 243 | X86 ARCHITECTURE |
| 244 | F: src/arch/x86/ |
| 245 | F: src/cpu/x86/ |
| 246 | F: src/drivers/pc80/ |
| 247 | F: src/include/pc80/ |
| 248 | F: src/include/cpu/x86/ |
| 249 | |
| 250 | INTEL SUPPORT |
| 251 | F: src/vendorcode/intel/ |
| 252 | F: src/cpu/intel/ |
| 253 | F: src/northbridge/intel/ |
| 254 | F: src/southbridge/intel/ |
| 255 | F: src/soc/intel/ |
| 256 | F: src/drivers/intel/ |
| 257 | F: src/include/cpu/intel/ |
| 258 | |
| 259 | AMD SUPPORT |
| 260 | F: src/vendorcode/amd/ |
| 261 | F: src/cpu/amd/ |
| 262 | F: src/northbridge/amd/ |
| 263 | F: src/southbridge/amd/ |
| 264 | F: src/include/cpu/amd/ |
| 265 | |
| 266 | VIA SUPPORT |
| 267 | F: src/cpu/via/ |
| 268 | F: src/northbridge/via/ |
| 269 | F: src/southbridge/via/ |
Stefan Reinauer | c6e1f8a | 2015-04-28 13:42:55 -0700 | [diff] [blame] | 270 | |
Stefan Reinauer | 2e38cc5 | 2015-05-06 11:15:38 -0700 | [diff] [blame] | 271 | LINT SCRIPTS |
| 272 | M: Patrick Georgi <patrick@georgi-clan.de> |
| 273 | S: Supported |
| 274 | F: util/lint/ |
| 275 | |
Stefan Reinauer | bf3dbaf | 2015-06-12 15:30:59 -0700 | [diff] [blame] | 276 | INTELTOOL |
| 277 | M: Stefan Reinauer <stefan.reinauer@coreboot.org> |
| 278 | F: util/inteltool/ |
| 279 | |
| 280 | IFDTOOL |
| 281 | M: Stefan Reinauer <stefan.reinauer@coreboot.org> |
| 282 | F: util/ifdtool/ |
| 283 | F: util/ifdfake/ |
| 284 | |
Patrick Georgi | 65ff63f | 2015-05-21 18:54:10 +0200 | [diff] [blame] | 285 | BUILD SYSTEM |
| 286 | M: Patrick Georgi <patrick@georgi-clan.de> |
Martin Roth | 3a18a80 | 2015-11-19 15:45:32 -0700 | [diff] [blame] | 287 | M: Martin Roth <gaumless@gmail.com> |
Patrick Georgi | 65ff63f | 2015-05-21 18:54:10 +0200 | [diff] [blame] | 288 | S: Supported |
| 289 | F: Makefile |
| 290 | F: *.inc |
Stefan Reinauer | bf3dbaf | 2015-06-12 15:30:59 -0700 | [diff] [blame] | 291 | F: src/include/kconfig.h |
Stefan Reinauer | a4ffe8a | 2015-10-21 13:09:42 -0700 | [diff] [blame] | 292 | F: util/kconfig/ |
| 293 | F: util/sconfig/ |
Patrick Georgi | 65ff63f | 2015-05-21 18:54:10 +0200 | [diff] [blame] | 294 | |
Stefan Reinauer | bf3dbaf | 2015-06-12 15:30:59 -0700 | [diff] [blame] | 295 | BOARD STATUS |
| 296 | F: util/board_status/ |
| 297 | |
| 298 | BINARY OBJECTS |
| 299 | F: 3rdparty/blobs/ |
| 300 | |
| 301 | VERIFIED BOOT |
| 302 | F: 3rdparty/vboot/ |
| 303 | F: src/vendorcode/google/chromeos/ |
| 304 | F: src/include/tpm.h |
| 305 | F: src/include/tpm_lite/ |
| 306 | |
| 307 | RESOURCE ALLOCATOR |
| 308 | F: src/device/* |
| 309 | F: src/include/device/ |
| 310 | F: src/include/cpu/cpu.h |
| 311 | |
| 312 | OPTION ROM EXECUTION & X86EMU |
| 313 | F: src/device/oprom/ |
| 314 | |
| 315 | CBFS |
| 316 | F: src/include/cbfs.h |
| 317 | F: src/include/cbfs_serialized.h |
| 318 | F: util/cbfstool/ |
| 319 | |
| 320 | CBMEM |
| 321 | F: src/include/cbmem.h |
| 322 | F: src/include/cbmem_id.h |
| 323 | F: util/cbmem/ |
| 324 | |
| 325 | CONSOLE |
| 326 | F: src/console/ |
| 327 | F: src/include/console/ |
| 328 | F: src/drivers/uart/ |
| 329 | |
| 330 | NVRAM |
| 331 | F: util/nvramtool/ |
| 332 | F: util/optionlist/ |
| 333 | F: payloads/nvramcui/ |
| 334 | |
| 335 | LIBPAYLOAD |
| 336 | F: payloads/libpayload/ |
| 337 | |
| 338 | BAYOU PAYLOAD |
| 339 | F: payloads/bayou/ |
| 340 | |
| 341 | COREINFO PAYLOAD |
| 342 | F: payloads/coreinfo/ |
| 343 | |
| 344 | EXTERNAL PAYLOADS INTEGRATION |
| 345 | M: Stefan Reinauer <stefan.reinauer@coreboot.org> |
| 346 | F: payloads/external |
| 347 | |
| 348 | VERIFIED BOOT 2 |
| 349 | M: Aaron Durbin <adurbin@chromium.org> |
| 350 | F: src/vendorcode/google/chromeos/vboot2/ |
| 351 | |
| 352 | MISSING: TIMERS / DELAYS |
| 353 | |
| 354 | MISSING: TIMESTAMPS |
| 355 | |
| 356 | MISSING: MEMLAYOUT |
| 357 | |
| 358 | MISSING: FMAP |
| 359 | |
| 360 | MISSING: GPIO |
| 361 | |
| 362 | MISSING: SMP |
| 363 | |
| 364 | MISSING: SUPERIOS |
| 365 | |
| 366 | MISSING: DMP / QEMU-X86 |
| 367 | |
| 368 | MISSING: ELOG |
| 369 | |
| 370 | MISSING: GENERIC DRAM (should drop) |
| 371 | |
| 372 | MISSING: SPI |
| 373 | |
Stefan Reinauer | c6e1f8a | 2015-04-28 13:42:55 -0700 | [diff] [blame] | 374 | THE REST |
| 375 | M: Stefan Reinauer <stefan.reinauer@coreboot.org> |
| 376 | L: coreboot@coreboot.org |
| 377 | T: git http://review.coreboot.org/coreboot |
| 378 | S: Buried alive in mainboards |
| 379 | F: * |
| 380 | F: */ |