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. |
Paul Menzel | 59e2113 | 2017-06-05 12:46:00 +0200 | [diff] [blame] | 38 | See https://www.coreboot.org/Coding_Style for guidance here. |
Stefan Reinauer | c6e1f8a | 2015-04-28 13:42:55 -0700 | [diff] [blame] | 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 |
Paul Menzel | 59e2113 | 2017-06-05 12:46:00 +0200 | [diff] [blame] | 57 | https://www.coreboot.org/Development_Guidelines#Sign-off_Procedure. |
Stefan Reinauer | c6e1f8a | 2015-04-28 13:42:55 -0700 | [diff] [blame] | 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> |
Jonathan Neuschäfer | 968292b | 2016-10-12 00:17:59 +0200 | [diff] [blame] | 124 | M: Jonathan Neuschäfer <j.neuschaefer@gmx.net> |
Stefan Reinauer | c6e1f8a | 2015-04-28 13:42:55 -0700 | [diff] [blame] | 125 | S: Maintained |
Stefan Reinauer | a4ffe8a | 2015-10-21 13:09:42 -0700 | [diff] [blame] | 126 | F: src/arch/riscv/ |
Jonathan Neuschäfer | 9453c92 | 2016-11-12 13:03:19 +0100 | [diff] [blame] | 127 | F: src/soc/lowrisc |
Stefan Reinauer | bf3dbaf | 2015-06-12 15:30:59 -0700 | [diff] [blame] | 128 | F: src/soc/ucb/ |
Jonathan Neuschäfer | 950d48f | 2016-10-12 00:18:00 +0200 | [diff] [blame] | 129 | F: src/mainboard/emulation/*-riscv/ |
Jonathan Neuschäfer | 9453c92 | 2016-11-12 13:03:19 +0100 | [diff] [blame] | 130 | F: src/mainboard/lowrisc |
Stefan Reinauer | c6e1f8a | 2015-04-28 13:42:55 -0700 | [diff] [blame] | 131 | |
Martin Roth | 57fcae1 | 2016-03-17 12:00:25 -0600 | [diff] [blame] | 132 | POWER8 ARCHITECTURE |
| 133 | M: Ronald Minnich <rminnich@gmail.com> |
| 134 | M: Timothy Pearson <tpearson@raptorengineeringinc.com> |
| 135 | S: Maintained |
| 136 | F: src/arch/power8/ |
| 137 | F: src/cpu/qemu-power8/ |
| 138 | F: src/mainboard/emulation/qemu-power8/ |
| 139 | |
Alexander Couzens | 753af5b | 2015-12-05 13:45:27 +0100 | [diff] [blame] | 140 | LENOVO EC |
| 141 | M: Alexander Couzens <lynxis@fe80.eu> |
| 142 | S: Maintained |
| 143 | F: src/ec/lenovo/ |
| 144 | |
| 145 | LENOVO MAINBOARDS |
| 146 | M: Alexander Couzens <lynxis@fe80.eu> |
Martin Roth | 954338d | 2017-03-05 11:20:18 -0700 | [diff] [blame] | 147 | M: Patrick Rudolph <siro@das-labor.org> |
Alexander Couzens | 753af5b | 2015-12-05 13:45:27 +0100 | [diff] [blame] | 148 | S: Maintained |
| 149 | F: src/mainboard/lenovo/ |
| 150 | |
Martin Roth | 7fae59b | 2016-03-17 12:01:27 -0600 | [diff] [blame] | 151 | INTEL PINEVIEW CHIPSET |
| 152 | M: Damien Zammit <damien@zamaudio.com> |
Martin Roth | 19fdedb | 2017-06-25 15:44:16 -0600 | [diff] [blame] | 153 | S: Odd Fixes |
Martin Roth | 7fae59b | 2016-03-17 12:01:27 -0600 | [diff] [blame] | 154 | F: src/northbridge/intel/pineview/ |
| 155 | |
| 156 | INTEL D510MO MAINBOARD |
| 157 | M: Damien Zammit <damien@zamaudio.com> |
Martin Roth | 19fdedb | 2017-06-25 15:44:16 -0600 | [diff] [blame] | 158 | S: Odd Fixes |
Martin Roth | 7fae59b | 2016-03-17 12:01:27 -0600 | [diff] [blame] | 159 | F: src/mainboard/intel/d510mo |
| 160 | |
| 161 | INTEL X4X CHIPSET |
| 162 | M: Damien Zammit <damien@zamaudio.com> |
Martin Roth | 19fdedb | 2017-06-25 15:44:16 -0600 | [diff] [blame] | 163 | S: Odd Fixes |
Martin Roth | 7fae59b | 2016-03-17 12:01:27 -0600 | [diff] [blame] | 164 | F: src/northbridge/intel/x4x/ |
| 165 | |
| 166 | GIGABYTE GA-G41M-ES2L MAINBOARD |
| 167 | M: Damien Zammit <damien@zamaudio.com> |
Martin Roth | 19fdedb | 2017-06-25 15:44:16 -0600 | [diff] [blame] | 168 | S: Odd Fixes |
Martin Roth | 7fae59b | 2016-03-17 12:01:27 -0600 | [diff] [blame] | 169 | F: src/mainboard/gigabyte/ga-g41m-es2l |
| 170 | |
Stefan Reinauer | c6e1f8a | 2015-04-28 13:42:55 -0700 | [diff] [blame] | 171 | GOOGLE PANTHER MAINBOARD |
| 172 | M: Stefan Reinauer <stefan.reinauer@coreboot.org> |
| 173 | S: Supported |
Stefan Reinauer | a4ffe8a | 2015-10-21 13:09:42 -0700 | [diff] [blame] | 174 | F: src/mainboard/google/panther/ |
Stefan Reinauer | c6e1f8a | 2015-04-28 13:42:55 -0700 | [diff] [blame] | 175 | |
Martin Roth | 3a18a80 | 2015-11-19 15:45:32 -0700 | [diff] [blame] | 176 | INTEL MINNOWBOARD MAX MAINBOARD |
Alexandru Gagniuc | 000e8aa | 2015-10-13 17:30:04 -0700 | [diff] [blame] | 177 | M: Huang Jin <huang.jin@intel.com> |
| 178 | M: York Yang <york.yang@intel.com> |
Alexandru Gagniuc | 000e8aa | 2015-10-13 17:30:04 -0700 | [diff] [blame] | 179 | S: Supported |
Martin Roth | 3a18a80 | 2015-11-19 15:45:32 -0700 | [diff] [blame] | 180 | F: src/mainboard/intel/minnowmax/ |
| 181 | |
Alexandru Gagniuc | 000e8aa | 2015-10-13 17:30:04 -0700 | [diff] [blame] | 182 | INTEL FSP BAYTRAIL CHIP & CRBs |
| 183 | M: Huang Jin <huang.jin@intel.com> |
| 184 | M: York Yang <york.yang@intel.com> |
Alexandru Gagniuc | 000e8aa | 2015-10-13 17:30:04 -0700 | [diff] [blame] | 185 | S: Supported |
Martin Roth | 3a18a80 | 2015-11-19 15:45:32 -0700 | [diff] [blame] | 186 | F: src/soc/intel/fsp_baytrail/ |
Alexandru Gagniuc | 000e8aa | 2015-10-13 17:30:04 -0700 | [diff] [blame] | 187 | F: src/vendorcode/intel/fsp1_0/baytrail/ |
| 188 | F: src/mainboard/intel/bakersport_fsp/ |
| 189 | F: src/mainboard/intel/bayleybay_fsp/ |
Martin Roth | 3a18a80 | 2015-11-19 15:45:32 -0700 | [diff] [blame] | 190 | |
York Yang | fbec6b1 | 2016-04-15 11:22:49 -0700 | [diff] [blame] | 191 | INTEL FSP BROADWELL-DE SOC & CRB |
| 192 | M: York Yang <york.yang@intel.com> |
| 193 | S: Supported |
| 194 | F: src/soc/intel/fsp_broadwell_de/ |
| 195 | F: src/vendorcode/intel/fsp1_0/broadwell_de/ |
| 196 | F: src/mainboard/intel/camelbackmountain_fsp/ |
| 197 | |
| 198 | INTEL FSP IVYBRIDGE/PANTHERPOINT/CAVECREEK & CRBs |
| 199 | M: York Yang <york.yang@intel.com> |
| 200 | S: Supported |
| 201 | F: src/cpu/intel/fsp_model_206ax/ |
| 202 | F: src/northbridge/intel/fsp_sandybridge/ |
| 203 | F: src/southbridge/intel/fsp_bd82x6x/ |
| 204 | F: src/southbridge/intel/fsp_i89xx/ |
| 205 | F: src/vendorcode/intel/fsp1_0/ivybridge_bd82x6x |
| 206 | F: src/vendorcode/intel/fsp1_0/ivybridge_i89xx |
| 207 | F: src/mainboard/intel/cougar_canyon2/ |
| 208 | F: src/mainboard/intel/stargo2/ |
| 209 | |
Mariusz Szafranski | 025d819 | 2017-09-12 14:15:35 +0200 | [diff] [blame] | 210 | INTEL FSP DENVERTON-NS SOC & HARCUVAR CRB |
| 211 | M: SweeHeng Wong <swee.heng.wong@intel.com> |
Vanessa Eusebio | 3ca534f | 2018-02-23 09:26:47 -0700 | [diff] [blame] | 212 | M: Jeff Daly <jeffrey.daly@intel.com> |
Mariusz Szafranski | 025d819 | 2017-09-12 14:15:35 +0200 | [diff] [blame] | 213 | M: Vanessa Eusebio <vanessa.f.eusebio@intel.com> |
Vanessa Eusebio | 3ca534f | 2018-02-23 09:26:47 -0700 | [diff] [blame] | 214 | M: David Guckian <david.guckian@intel.com> |
| 215 | M: Shine Liu <shine.liu@intel.com> |
Mariusz Szafranski | 025d819 | 2017-09-12 14:15:35 +0200 | [diff] [blame] | 216 | S: Supported |
| 217 | F: src/mainboard/intel/harcuvar/ |
| 218 | F: src/soc/intel/denverton_ns/ |
| 219 | F: src/vendorcode/intel/fsp/fsp2_0/denverton_ns/ |
| 220 | |
Martin Roth | 980a8c1 | 2015-12-04 08:33:35 -0700 | [diff] [blame] | 221 | FSP 1.0 RANGELEY & CRB |
| 222 | M: David Guckian <david.guckian@intel.com> |
| 223 | M: Fei Wang <fei.z.wang@intel.com> |
| 224 | S: Supported |
| 225 | F: src/cpu/intel/fsp_model_406dx/ |
| 226 | F: src/northbridge/intel/fsp_rangeley/ |
| 227 | F: src/southbridge/intel/fsp_rangeley/ |
| 228 | F: src/vendorcode/intel/fsp1_0/rangeley/ |
| 229 | F: src/mainboard/intel/mohonpeak/ |
| 230 | |
Martin Roth | 3a18a80 | 2015-11-19 15:45:32 -0700 | [diff] [blame] | 231 | INTEL FSP 1.0 |
Alexandru Gagniuc | 000e8aa | 2015-10-13 17:30:04 -0700 | [diff] [blame] | 232 | M: Huang Jin <huang.jin@intel.com> |
| 233 | M: York Yang <york.yang@intel.com> |
Alexandru Gagniuc | 000e8aa | 2015-10-13 17:30:04 -0700 | [diff] [blame] | 234 | S: Supported |
Martin Roth | 3a18a80 | 2015-11-19 15:45:32 -0700 | [diff] [blame] | 235 | F: src/drivers/intel/fsp1_0/ |
Martin Roth | 3a18a80 | 2015-11-19 15:45:32 -0700 | [diff] [blame] | 236 | |
Martin Roth | 533f666 | 2015-12-04 08:36:49 -0700 | [diff] [blame] | 237 | INTEL FSP 1.1 |
| 238 | M: Lee Leahy <leroy.p.leahy@intel.com> |
Martin Roth | 533f666 | 2015-12-04 08:36:49 -0700 | [diff] [blame] | 239 | M: Huang Jin <huang.jin@intel.com> |
| 240 | M: York Yang <york.yang@intel.com> |
| 241 | S: Supported |
| 242 | F: src/drivers/intel/fsp1_1/ |
| 243 | |
Andrey Petrov | 842dfe8 | 2016-05-24 22:01:56 -0700 | [diff] [blame] | 244 | INTEL FSP 2.0 |
Andrey Petrov | 379c863 | 2017-07-12 13:06:22 -0700 | [diff] [blame] | 245 | M: Andrey Petrov <andrey.petrov@gmail.com> |
| 246 | S: Maintained |
Andrey Petrov | 842dfe8 | 2016-05-24 22:01:56 -0700 | [diff] [blame] | 247 | F: src/drivers/intel/fsp2_0/ |
| 248 | |
Martin Roth | 4a1c69a | 2016-03-17 12:02:12 -0600 | [diff] [blame] | 249 | INTEL STRAGO MAINBOARD |
| 250 | M: Hannah Williams <hannah.williams@intel.com> |
| 251 | S: Supported |
| 252 | F: /src/mainboard/intel/strago/ |
| 253 | |
| 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 |
| 259 | |
Andrey Petrov | 842dfe8 | 2016-05-24 22:01:56 -0700 | [diff] [blame] | 260 | INTEL APOLLOLAKE_SOC |
Andrey Petrov | 379c863 | 2017-07-12 13:06:22 -0700 | [diff] [blame] | 261 | M: Andrey Petrov <andrey.petrov@gmail.com> |
| 262 | S: Maintained |
Andrey Petrov | 842dfe8 | 2016-05-24 22:01:56 -0700 | [diff] [blame] | 263 | F: src/soc/intel/apollolake/ |
| 264 | |
Martin Roth | 2a343475 | 2016-03-05 18:31:29 -0700 | [diff] [blame] | 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/ |
| 270 | |
| 271 | ASUS KCMA-D8 MAINBOARD |
| 272 | M: Timothy Pearson <tpearson@raptorengineeringinc.com> |
| 273 | S: Supported |
| 274 | F: src/mainboard/asus/kcma-d8/ |
| 275 | |
| 276 | ASUS KGPE-D16 MAINBOARD |
| 277 | M: Timothy Pearson <tpearson@raptorengineeringinc.com> |
| 278 | S: Supported |
| 279 | F: src/mainboard/asus/kgpe-d16/ |
| 280 | |
Piotr Król | dfd2a8b | 2017-09-28 11:48:40 +0200 | [diff] [blame] | 281 | PC ENGINES ALL MAINBOARDS |
| 282 | M: Piotr Król <piotr.krol@3mdeb.com> |
Piotr Król | 5044b01 | 2018-03-16 22:38:03 +0100 | [diff] [blame] | 283 | M: Michał Żygowski <michal.zygowski@3mdeb.com> |
Piotr Król | dfd2a8b | 2017-09-28 11:48:40 +0200 | [diff] [blame] | 284 | S: Supported |
| 285 | F: src/mainboard/pcengines/ |
| 286 | |
Martin Roth | 2a343475 | 2016-03-05 18:31:29 -0700 | [diff] [blame] | 287 | AMD FAMILY10H & FAMILY15H (NON-AGESA) CPUS & NORTHBRIDGE |
| 288 | M: Timothy Pearson <tpearson@raptorengineeringinc.com> |
| 289 | S: Supported |
| 290 | F: src/cpu/amd/family_10h-family_15h/ |
| 291 | F: src/northbridge/amd/amdfam10/ |
| 292 | F: src/northbridge/amd/amdmct/ |
| 293 | F: src/northbridge/amd/amdht/ |
| 294 | |
| 295 | AMD SB700 (NON-CIMX) SOUTHBRIDGE |
| 296 | M: Timothy Pearson <tpearson@raptorengineeringinc.com> |
| 297 | S: Supported |
| 298 | F: src/southbridge/amd/sb700/ |
| 299 | |
| 300 | AMD SR5650 SOUTHBRIDGE |
| 301 | M: Timothy Pearson <tpearson@raptorengineeringinc.com> |
| 302 | S: Supported |
| 303 | F: src/southbridge/amd/sr5650/ |
| 304 | |
| 305 | ASPEED AST2050 DRIVER & COMMON CODE |
| 306 | M: Timothy Pearson <tpearson@raptorengineeringinc.com> |
| 307 | S: Supported |
| 308 | F: src/drivers/aspeed/common/ |
| 309 | F: src/drivers/aspeed/ast2050/ |
| 310 | |
Stefan Reinauer | c6e1f8a | 2015-04-28 13:42:55 -0700 | [diff] [blame] | 311 | ATI MACH64 Driver |
| 312 | S: Orphan |
Stefan Reinauer | bf3dbaf | 2015-06-12 15:30:59 -0700 | [diff] [blame] | 313 | F: src/drivers/ati/mach64/ |
| 314 | |
| 315 | ABUILD |
| 316 | M: Patrick Georgi <patrick@georgi-clan.de> |
Martin Roth | 954338d | 2017-03-05 11:20:18 -0700 | [diff] [blame] | 317 | M: Martin Roth <gaumless@gmail.com> |
Stefan Reinauer | bf3dbaf | 2015-06-12 15:30:59 -0700 | [diff] [blame] | 318 | S: Supported |
| 319 | F: util/abuild/ |
| 320 | |
| 321 | ACPI |
| 322 | F: src/acpi/ |
| 323 | F: src/arch/x86/acpi/ |
| 324 | F: util/acpi/ |
| 325 | |
Julius Werner | 848f5db | 2017-09-11 13:12:48 -0700 | [diff] [blame] | 326 | LZ4 COMPRESSION |
| 327 | M: Julius Werner <jwerner@chromium.org> |
| 328 | S: Supported |
| 329 | F: src/commonlib/lz4* |
| 330 | F: payloads/libpayload/liblz4/ |
| 331 | F: util/cbfstool/lz4/ |
| 332 | |
Stefan Reinauer | bf3dbaf | 2015-06-12 15:30:59 -0700 | [diff] [blame] | 333 | ARM ARCHITECTURE |
Julius Werner | c34e41f | 2017-06-09 14:26:03 -0700 | [diff] [blame] | 334 | M: Julius Werner <jwerner@chromium.org> |
| 335 | S: Supported |
Stefan Reinauer | bf3dbaf | 2015-06-12 15:30:59 -0700 | [diff] [blame] | 336 | F: src/arch/arm/ |
Julius Werner | c34e41f | 2017-06-09 14:26:03 -0700 | [diff] [blame] | 337 | F: src/arch/arm64/ |
| 338 | F: src/soc/mediatek/ |
| 339 | F: src/soc/nvidia/ |
| 340 | F: src/soc/rockchip/ |
| 341 | F: util/nvidia/ |
| 342 | F: util/rockchip/ |
| 343 | |
| 344 | ORPHANED ARM SOCS |
| 345 | S: Orphaned |
Stefan Reinauer | bf3dbaf | 2015-06-12 15:30:59 -0700 | [diff] [blame] | 346 | F: src/cpu/allwinner/ |
| 347 | F: src/cpu/armltd/ |
Stefan Reinauer | bf3dbaf | 2015-06-12 15:30:59 -0700 | [diff] [blame] | 348 | F: src/cpu/ti/ |
| 349 | F: src/soc/broadcom/ |
| 350 | F: src/soc/marvell/ |
Stefan Reinauer | bf3dbaf | 2015-06-12 15:30:59 -0700 | [diff] [blame] | 351 | F: src/soc/qualcomm/ |
Stefan Reinauer | bf3dbaf | 2015-06-12 15:30:59 -0700 | [diff] [blame] | 352 | F: src/soc/samsung/ |
| 353 | F: util/arm_boot_tools/ |
| 354 | F: util/broadcom/ |
| 355 | F: util/exynos/ |
| 356 | F: util/ipqheader/ |
Stefan Reinauer | bf3dbaf | 2015-06-12 15:30:59 -0700 | [diff] [blame] | 357 | |
| 358 | MIPS ARCHITECTURE |
| 359 | F: src/arch/mips/ |
| 360 | F: src/cpu/mips/ |
| 361 | F: src/soc/imgtec/ |
| 362 | F: util/bimgtool/ |
| 363 | |
| 364 | X86 ARCHITECTURE |
| 365 | F: src/arch/x86/ |
| 366 | F: src/cpu/x86/ |
| 367 | F: src/drivers/pc80/ |
| 368 | F: src/include/pc80/ |
| 369 | F: src/include/cpu/x86/ |
| 370 | |
| 371 | INTEL SUPPORT |
Martin Roth | 954338d | 2017-03-05 11:20:18 -0700 | [diff] [blame] | 372 | M: Patrick Rudolph <siro@das-labor.org> |
| 373 | S: Maintained |
Stefan Reinauer | bf3dbaf | 2015-06-12 15:30:59 -0700 | [diff] [blame] | 374 | F: src/vendorcode/intel/ |
| 375 | F: src/cpu/intel/ |
| 376 | F: src/northbridge/intel/ |
| 377 | F: src/southbridge/intel/ |
| 378 | F: src/soc/intel/ |
| 379 | F: src/drivers/intel/ |
| 380 | F: src/include/cpu/intel/ |
| 381 | |
| 382 | AMD SUPPORT |
| 383 | F: src/vendorcode/amd/ |
| 384 | F: src/cpu/amd/ |
| 385 | F: src/northbridge/amd/ |
| 386 | F: src/southbridge/amd/ |
| 387 | F: src/include/cpu/amd/ |
| 388 | |
| 389 | VIA SUPPORT |
| 390 | F: src/cpu/via/ |
| 391 | F: src/northbridge/via/ |
| 392 | F: src/southbridge/via/ |
Stefan Reinauer | c6e1f8a | 2015-04-28 13:42:55 -0700 | [diff] [blame] | 393 | |
Stefan Reinauer | 2e38cc5 | 2015-05-06 11:15:38 -0700 | [diff] [blame] | 394 | LINT SCRIPTS |
| 395 | M: Patrick Georgi <patrick@georgi-clan.de> |
Martin Roth | 057ce5f | 2016-03-17 12:03:00 -0600 | [diff] [blame] | 396 | M: Martin Roth <gaumless@gmail.com> |
Stefan Reinauer | 2e38cc5 | 2015-05-06 11:15:38 -0700 | [diff] [blame] | 397 | S: Supported |
| 398 | F: util/lint/ |
| 399 | |
Stefan Reinauer | bf3dbaf | 2015-06-12 15:30:59 -0700 | [diff] [blame] | 400 | INTELTOOL |
| 401 | M: Stefan Reinauer <stefan.reinauer@coreboot.org> |
| 402 | F: util/inteltool/ |
| 403 | |
Philipp Deppenwiese | 4cd9a11 | 2016-03-23 00:02:40 +0100 | [diff] [blame] | 404 | INTELMETOOL |
| 405 | M: Philipp Deppenwiese <zaolin.daisuki@gmail.com> |
| 406 | F: util/intelmetool/ |
| 407 | |
Nicola Corna | 4f4fc18 | 2017-02-23 16:53:45 +0100 | [diff] [blame] | 408 | ME_CLEANER |
| 409 | M: Nicola Corna <nicola@corna.info> |
| 410 | W: https://github.com/corna/me_cleaner |
| 411 | S: Maintained |
| 412 | F: util/me_cleaner/ |
| 413 | |
Stefan Reinauer | bf3dbaf | 2015-06-12 15:30:59 -0700 | [diff] [blame] | 414 | IFDTOOL |
| 415 | M: Stefan Reinauer <stefan.reinauer@coreboot.org> |
| 416 | F: util/ifdtool/ |
| 417 | F: util/ifdfake/ |
| 418 | |
Patrick Georgi | 65ff63f | 2015-05-21 18:54:10 +0200 | [diff] [blame] | 419 | BUILD SYSTEM |
| 420 | M: Patrick Georgi <patrick@georgi-clan.de> |
Martin Roth | 3a18a80 | 2015-11-19 15:45:32 -0700 | [diff] [blame] | 421 | M: Martin Roth <gaumless@gmail.com> |
Patrick Georgi | 65ff63f | 2015-05-21 18:54:10 +0200 | [diff] [blame] | 422 | S: Supported |
| 423 | F: Makefile |
| 424 | F: *.inc |
Stefan Reinauer | bf3dbaf | 2015-06-12 15:30:59 -0700 | [diff] [blame] | 425 | F: src/include/kconfig.h |
Stefan Reinauer | a4ffe8a | 2015-10-21 13:09:42 -0700 | [diff] [blame] | 426 | F: util/kconfig/ |
| 427 | F: util/sconfig/ |
Martin Roth | 954338d | 2017-03-05 11:20:18 -0700 | [diff] [blame] | 428 | F: util/xcompile/ |
| 429 | F: util/genbuild_h/ |
Patrick Georgi | 65ff63f | 2015-05-21 18:54:10 +0200 | [diff] [blame] | 430 | |
Stefan Reinauer | bf3dbaf | 2015-06-12 15:30:59 -0700 | [diff] [blame] | 431 | BOARD STATUS |
| 432 | F: util/board_status/ |
| 433 | |
| 434 | BINARY OBJECTS |
| 435 | F: 3rdparty/blobs/ |
| 436 | |
| 437 | VERIFIED BOOT |
| 438 | F: 3rdparty/vboot/ |
| 439 | F: src/vendorcode/google/chromeos/ |
| 440 | F: src/include/tpm.h |
| 441 | F: src/include/tpm_lite/ |
| 442 | |
| 443 | RESOURCE ALLOCATOR |
| 444 | F: src/device/* |
| 445 | F: src/include/device/ |
| 446 | F: src/include/cpu/cpu.h |
| 447 | |
| 448 | OPTION ROM EXECUTION & X86EMU |
| 449 | F: src/device/oprom/ |
| 450 | |
| 451 | CBFS |
| 452 | F: src/include/cbfs.h |
| 453 | F: src/include/cbfs_serialized.h |
| 454 | F: util/cbfstool/ |
| 455 | |
| 456 | CBMEM |
| 457 | F: src/include/cbmem.h |
| 458 | F: src/include/cbmem_id.h |
| 459 | F: util/cbmem/ |
| 460 | |
| 461 | CONSOLE |
| 462 | F: src/console/ |
| 463 | F: src/include/console/ |
| 464 | F: src/drivers/uart/ |
| 465 | |
| 466 | NVRAM |
| 467 | F: util/nvramtool/ |
| 468 | F: util/optionlist/ |
| 469 | F: payloads/nvramcui/ |
| 470 | |
| 471 | LIBPAYLOAD |
| 472 | F: payloads/libpayload/ |
| 473 | |
| 474 | BAYOU PAYLOAD |
| 475 | F: payloads/bayou/ |
| 476 | |
| 477 | COREINFO PAYLOAD |
| 478 | F: payloads/coreinfo/ |
| 479 | |
| 480 | EXTERNAL PAYLOADS INTEGRATION |
| 481 | M: Stefan Reinauer <stefan.reinauer@coreboot.org> |
Martin Roth | 057ce5f | 2016-03-17 12:03:00 -0600 | [diff] [blame] | 482 | M: Martin Roth <gaumless@gmail.com> |
Stefan Reinauer | bf3dbaf | 2015-06-12 15:30:59 -0700 | [diff] [blame] | 483 | F: payloads/external |
| 484 | |
| 485 | VERIFIED BOOT 2 |
| 486 | M: Aaron Durbin <adurbin@chromium.org> |
| 487 | F: src/vendorcode/google/chromeos/vboot2/ |
| 488 | |
Philipp Deppenwiese | 6507e6f | 2016-06-22 19:01:47 +0200 | [diff] [blame] | 489 | TPM SUPPORT |
| 490 | M: Philipp Deppenwiese <zaolin.daisuki@gmail.com> |
| 491 | F: src/drivers/*/tpm/ |
| 492 | F: src/security/tpm12/ |
| 493 | F: src/security/tpm20/ |
| 494 | F: util/tss-generator/ |
| 495 | |
Martin Roth | 954338d | 2017-03-05 11:20:18 -0700 | [diff] [blame] | 496 | DOCKER |
| 497 | M: Martin Roth <gaumless@gmail.com> |
| 498 | S: Supported |
| 499 | F: util/docker/ |
| 500 | |
| 501 | TOOLCHAIN |
Martin Roth | 954338d | 2017-03-05 11:20:18 -0700 | [diff] [blame] | 502 | F: util/crossgcc/ |
| 503 | |
| 504 | GIT |
Martin Roth | 954338d | 2017-03-05 11:20:18 -0700 | [diff] [blame] | 505 | F: .git* |
| 506 | F: /util/gitconfig |
| 507 | |
Martin Roth | e801fcb | 2017-05-27 10:54:02 -0600 | [diff] [blame] | 508 | SUPERIOS & SUPERIOTOOL |
| 509 | M: Felix Held <felix-coreboot@felixheld.de> |
| 510 | S: Maintained |
| 511 | F: src/superio/ |
| 512 | F: util/superiotool/ |
| 513 | |
Julius Werner | c34e41f | 2017-06-09 14:26:03 -0700 | [diff] [blame] | 514 | MEMLAYOUT |
| 515 | M: Julius Werner <jwerner@chromium.org> |
| 516 | S: Supported |
| 517 | F: */memlayout.h |
| 518 | F: *.ld |
| 519 | |
Stefan Reinauer | bf3dbaf | 2015-06-12 15:30:59 -0700 | [diff] [blame] | 520 | MISSING: TIMERS / DELAYS |
| 521 | |
| 522 | MISSING: TIMESTAMPS |
| 523 | |
Stefan Reinauer | bf3dbaf | 2015-06-12 15:30:59 -0700 | [diff] [blame] | 524 | MISSING: FMAP |
| 525 | |
| 526 | MISSING: GPIO |
| 527 | |
| 528 | MISSING: SMP |
| 529 | |
Stefan Reinauer | bf3dbaf | 2015-06-12 15:30:59 -0700 | [diff] [blame] | 530 | MISSING: DMP / QEMU-X86 |
| 531 | |
| 532 | MISSING: ELOG |
| 533 | |
Stefan Reinauer | bf3dbaf | 2015-06-12 15:30:59 -0700 | [diff] [blame] | 534 | MISSING: SPI |
| 535 | |
Stefan Reinauer | c6e1f8a | 2015-04-28 13:42:55 -0700 | [diff] [blame] | 536 | THE REST |
| 537 | M: Stefan Reinauer <stefan.reinauer@coreboot.org> |
Paul Menzel | a8843de | 2017-06-05 12:33:23 +0200 | [diff] [blame] | 538 | T: git https://review.coreboot.org/coreboot |
Stefan Reinauer | c6e1f8a | 2015-04-28 13:42:55 -0700 | [diff] [blame] | 539 | S: Buried alive in mainboards |
| 540 | F: * |
| 541 | F: */ |
Martin Roth | 19fdedb | 2017-06-25 15:44:16 -0600 | [diff] [blame] | 542 | |
| 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 Pawnikar | 1638a85 | 2017-09-12 22:17:55 +0530 | [diff] [blame] | 547 | # Backups: |
Martin Roth | 19fdedb | 2017-06-25 15:44:16 -0600 | [diff] [blame] | 548 | |
| 549 | # Web Server |
| 550 | # Owners: Stefan, Patrick |
| 551 | # Backups: |
| 552 | |
| 553 | # Website |
Sumeet Pawnikar | 1638a85 | 2017-09-12 22:17:55 +0530 | [diff] [blame] | 554 | # Owners: Martin, Philipp |
Martin Roth | 19fdedb | 2017-06-25 15:44:16 -0600 | [diff] [blame] | 555 | # 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 |