summaryrefslogtreecommitdiff
path: root/doc/develop
diff options
context:
space:
mode:
Diffstat (limited to 'doc/develop')
-rw-r--r--doc/develop/checkpatch.rst54
-rw-r--r--doc/develop/codingstyle.rst81
-rw-r--r--doc/develop/falcon.rst84
-rw-r--r--doc/develop/release_cycle.rst28
-rw-r--r--doc/develop/statistics/u-boot-stats-v2025.10.rst814
5 files changed, 947 insertions, 114 deletions
diff --git a/doc/develop/checkpatch.rst b/doc/develop/checkpatch.rst
index b52452bc296..d5c47e56032 100644
--- a/doc/develop/checkpatch.rst
+++ b/doc/develop/checkpatch.rst
@@ -168,7 +168,7 @@ Available options:
- --fix
- This is an EXPERIMENTAL feature. If correctable errors exists, a file
+ This is an EXPERIMENTAL feature. If correctable errors exist, a file
<inputfile>.EXPERIMENTAL-checkpatch-fixes is created which has the
automatically fixable errors corrected.
@@ -181,7 +181,7 @@ Available options:
- --ignore-perl-version
- Override checking of perl version. Runtime errors maybe encountered after
+ Override checking of perl version. Runtime errors may be encountered after
enabling this flag if the perl version does not meet the minimum specified.
- --codespell
@@ -342,24 +342,6 @@ API usage
See: https://www.kernel.org/doc/html/latest/RCU/whatisRCU.html#full-list-of-rcu-apis
- **DEPRECATED_VARIABLE**
- EXTRA_{A,C,CPP,LD}FLAGS are deprecated and should be replaced by the new
- flags added via commit f77bf01425b1 ("kbuild: introduce ccflags-y,
- asflags-y and ldflags-y").
-
- The following conversion scheme maybe used::
-
- EXTRA_AFLAGS -> asflags-y
- EXTRA_CFLAGS -> ccflags-y
- EXTRA_CPPFLAGS -> cppflags-y
- EXTRA_LDFLAGS -> ldflags-y
-
- See:
-
- 1. https://lore.kernel.org/lkml/20070930191054.GA15876@uranus.ravnborg.org/
- 2. https://lore.kernel.org/lkml/1313384834-24433-12-git-send-email-lacombar@gmail.com/
- 3. https://www.kernel.org/doc/html/latest/kbuild/makefiles.html#compilation-flags
-
**DEVICE_ATTR_FUNCTIONS**
The function names used in DEVICE_ATTR is unusual.
Typically, the store and show functions are used with <attr>_store and
@@ -470,8 +452,6 @@ API usage
usleep_range() should be preferred over udelay(). The proper way of
using usleep_range() is mentioned in the kernel docs.
- See: https://www.kernel.org/doc/html/latest/timers/timers-howto.html#delays-information-on-the-various-kernel-delay-sleep-mechanisms
-
Comments
--------
@@ -515,6 +495,15 @@ Comments
See: https://lore.kernel.org/lkml/20131006222342.GT19510@leaf/
+ **UNCOMMENTED_RGMII_MODE**
+ Historically, the RGMII PHY modes specified in Device Trees have been
+ used inconsistently, often referring to the usage of delays on the PHY
+ side rather than describing the board.
+
+ PHY modes "rgmii", "rgmii-rxid" and "rgmii-txid" modes require the clock
+ signal to be delayed on the PCB; this unusual configuration should be
+ described in a comment. If they are not (meaning that the delay is realized
+ internally in the MAC or PHY), "rgmii-id" is the correct PHY mode.
Commit message
--------------
@@ -612,6 +601,13 @@ Commit message
See: https://www.kernel.org/doc/html/latest/process/submitting-patches.html#describe-your-changes
+ **BAD_FIXES_TAG**
+ The Fixes: tag is malformed or does not follow the community conventions.
+ This can occur if the tag have been split into multiple lines (e.g., when
+ pasted in an email program with word wrapping enabled).
+
+ See: https://www.kernel.org/doc/html/latest/process/submitting-patches.html#describe-your-changes
+
Comparison style
----------------
@@ -899,6 +895,20 @@ Macros, Attributes and Symbols
See: https://lore.kernel.org/lkml/1399671106.2912.21.camel@joe-AO725/
+ **MACRO_ARG_UNUSED**
+ If function-like macros do not utilize a parameter, it might result
+ in a build warning. We advocate for utilizing static inline functions
+ to replace such macros.
+ For example, for a macro such as the one below::
+
+ #define test(a) do { } while (0)
+
+ there would be a warning like below::
+
+ WARNING: Argument 'a' is not used in function-like macro.
+
+ See: https://www.kernel.org/doc/html/latest/process/coding-style.html#macros-enums-and-rtl
+
**SINGLE_STATEMENT_DO_WHILE_MACRO**
For the multi-statement macros, it is necessary to use the do-while
loop to avoid unpredictable code paths. The do-while loop helps to
diff --git a/doc/develop/codingstyle.rst b/doc/develop/codingstyle.rst
index 8ed6babe455..013bfebf7e4 100644
--- a/doc/develop/codingstyle.rst
+++ b/doc/develop/codingstyle.rst
@@ -12,8 +12,9 @@ or only minimal changes.
The following rules apply:
* All contributions to U-Boot should conform to the `Linux kernel
- coding style <https://www.kernel.org/doc/html/latest/process/coding-style.html>`_
- and the `Lindent script <https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/scripts/Lindent>`_.
+ coding style <https://www.kernel.org/doc/html/latest/process/coding-style.html>`_.
+ U-Boot includes a `.clang-format` configuration file that can be used to
+ automatically format code according to these standards.
* The exception for net files to the `multi-line comment
<https://www.kernel.org/doc/html/latest/process/coding-style.html#commenting>`_
applies only to Linux, not to U-Boot. Only large hunks which are copied
@@ -73,6 +74,82 @@ The following rules apply:
issues are resolved *before* posting on the mailing list. For more information,
read :doc:`checkpatch`.
+Code Formatting with clang-format
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+U-Boot provides a `.clang-format` configuration file that was copied directly
+from the Linux kernel without any modifications, ensuring complete compatibility
+with kernel coding standards. Here are common ways to use clang-format:
+
+**Basic usage for single files:**
+
+.. code-block:: bash
+
+ clang-format -style=file -i <file>
+
+**Format multiple files:**
+
+.. code-block:: bash
+
+ find . -name '*.c' -o -name '*.h' | xargs clang-format -style=file -i
+
+**Integration with git (format only staged changes):**
+
+.. code-block:: bash
+
+ git clang-format
+
+**Editor integration examples:**
+
+* **Vim/Neovim:** Install vim-clang-format plugin
+* **Emacs:** Use clang-format.el
+* **VSCode:** Install "Clang-Format" extension
+* **Most IDEs:** Have built-in or plugin support for clang-format
+
+The `.clang-format` file in the repository root ensures consistent formatting
+across the entire codebase and aligns with Linux kernel coding standards.
+
+**Disabling clang-format for specific code blocks:**
+
+In some cases, you may want to disable automatic formatting for specific code
+sections, such as carefully formatted tables, assembly code, or imported code
+from other projects. Use the following comments to control formatting:
+
+.. code-block:: c
+
+ // clang-format off
+ static const struct register_config regs[] = {
+ { 0x1000, 0x12345678 }, // Base address register
+ { 0x1004, 0xabcdef00 }, // Control register
+ { 0x1008, 0x00000001 }, // Status register
+ };
+ // clang-format on
+
+**Controversial aspects of coding style enforcement:**
+
+Coding style enforcement can be controversial, and it's difficult to have one
+configuration that satisfies everyone's personal preferences. The goal of using
+clang-format is consistency across the codebase rather than accommodating
+individual preferences. While some developers may disagree with specific
+formatting choices, maintaining a uniform style throughout the project makes
+code more readable and maintainable for the entire development community.
+
+**Best practices for formatting:**
+
+When using clang-format to format code, consider these best practices:
+
+* **Format only changed blocks:** It's preferred to format only the blocks of
+ code that have been modified rather than entire files. This keeps diffs
+ focused on actual changes and makes code reviews easier.
+
+* **Separate formatting commits:** If you need to format entire files, create
+ a separate commit containing only formatting changes. This allows reviewers
+ to easily distinguish between functional changes and pure formatting updates.
+
+* **Use git clang-format:** The ``git clang-format`` command is particularly
+ useful as it formats only the lines that have been modified in your current
+ changes, avoiding unnecessary formatting of unchanged code.
+
* Source files originating from different projects (for example the MTD
subsystem or the hush shell code from the BusyBox project) may, after
careful consideration, be exempted from these rules. For such files, the
diff --git a/doc/develop/falcon.rst b/doc/develop/falcon.rst
index 244b4ccb5c2..5689d5b93a7 100644
--- a/doc/develop/falcon.rst
+++ b/doc/develop/falcon.rst
@@ -22,7 +22,7 @@ copies U-Boot image into the memory.
The Falcon Mode extends this way allowing to start the Linux kernel directly
from SPL. A new command is added to U-Boot to prepare the parameters that SPL
-must pass to the kernel, using ATAGS or Device Tree.
+must pass to the kernel using a Device Tree.
In normal mode, these parameters are generated each time before
loading the kernel, passing to Linux the address in memory where
@@ -117,10 +117,7 @@ spl - SPL configuration
Usage::
- spl export <img=atags|fdt> [kernel_addr] [initrd_addr] [fdt_addr ]
-
-img
- "atags" or "fdt"
+ spl export fdt [kernel_addr] [initrd_addr] [fdt_addr ]
kernel_addr
kernel is loaded as part of the boot process, but it is not started.
@@ -134,11 +131,11 @@ fdt_addr
in case of fdt, the address of the device tree.
The *spl export* command does not write to a storage media. The user is
-responsible to transfer the gathered information (assembled ATAGS list
-or prepared FDT) from temporary storage in RAM into persistent storage
-after each run of *spl export*. Unfortunately the position of temporary
-storage can not be predicted nor provided at command line, it depends
-highly on your system setup and your provided data (ATAGS or FDT).
+responsible to transfer the gathered information (prepared FDT) from temporary
+storage in RAM into persistent storage after each run of *spl export*.
+Unfortunately the position of temporary storage can not be predicted nor
+provided at command line, it depends highly on your system setup and your
+provided device tree.
However at the end of an successful *spl export* run it will print the
RAM address of temporary storage. The RAM address of FDT will also be
set in the environment variable *fdtargsaddr*, the new length of the
@@ -152,73 +149,6 @@ to the pre-defined address in persistent storage
The following example shows how to prepare the data for Falcon Mode on
twister board with ATAGS BLOB.
-The *spl export* command is prepared to work with ATAGS and FDT. However,
-using FDT is at the moment untested. The ppc port (see a3m071 example
-later) prepares the fdt blob with the fdt command instead.
-
-
-Usage on the twister board
---------------------------
-
-Using mtd names with the following (default) configuration
-for mtdparts::
-
- device nand0 <omap2-nand.0>, # parts = 9
- #: name size offset mask_flags
- 0: MLO 0x00080000 0x00000000 0
- 1: u-boot 0x00100000 0x00080000 0
- 2: env1 0x00040000 0x00180000 0
- 3: env2 0x00040000 0x001c0000 0
- 4: kernel 0x00600000 0x00200000 0
- 5: bootparms 0x00040000 0x00800000 0
- 6: splashimg 0x00200000 0x00840000 0
- 7: mini 0x02800000 0x00a40000 0
- 8: rootfs 0x1cdc0000 0x03240000 0
-
-::
-
- twister => nand read 82000000 kernel
-
- NAND read: device 0 offset 0x200000, size 0x600000
- 6291456 bytes read: OK
-
-Now the kernel is in RAM at address 0x82000000::
-
- twister => spl export atags 0x82000000
- ## Booting kernel from Legacy Image at 82000000 ...
- Image Name: Linux-3.5.0-rc4-14089-gda0b7f4
- Image Type: ARM Linux Kernel Image (uncompressed)
- Data Size: 3654808 Bytes = 3.5 MiB
- Load Address: 80008000
- Entry Point: 80008000
- Verifying Checksum ... OK
- Loading Kernel Image ... OK
- OK
- cmdline subcommand not supported
- bdt subcommand not supported
- Argument image is now in RAM at: 0x80000100
-
-The result can be checked at address 0x80000100::
-
- twister => md 0x80000100
- 80000100: 00000005 54410001 00000000 00000000 ......AT........
- 80000110: 00000000 00000067 54410009 746f6f72 ....g.....ATroot
- 80000120: 65642f3d 666e2f76 77722073 73666e20 =/dev/nfs rw nfs
-
-The parameters generated with this step can be saved into NAND at the offset
-0x800000 (value for twister for CONFIG_CMD_SPL_NAND_OFS)::
-
- nand erase.part bootparms
- nand write 0x80000100 bootparms 0x4000
-
-Now the parameters are stored into the NAND flash at the address
-CONFIG_CMD_SPL_NAND_OFS (=0x800000).
-
-Next time, the board can be started into Falcon Mode moving the
-setting the GPIO (on twister GPIO 55 is used) to kernel mode.
-
-The kernel is loaded directly by the SPL without passing through U-Boot.
-
Example with FDT: a3m071 board
------------------------------
diff --git a/doc/develop/release_cycle.rst b/doc/develop/release_cycle.rst
index ebe92b6f189..37abe1c5040 100644
--- a/doc/develop/release_cycle.rst
+++ b/doc/develop/release_cycle.rst
@@ -1,4 +1,4 @@
-.. |next_ver| replace:: v2025.10
+.. |next_ver| replace:: v2026.01
Release Cycle
=============
@@ -53,15 +53,15 @@ Examples::
Current Status
--------------
-* U-Boot v2025.07 was released on Monday, 07 July 2025.
+* U-Boot v2025.10 was released on Monday, 06 October 2025.
-* The Merge Window for the next release (|next_ver|) is **closed** with the -rc1
- release on Monday, 28 July 2025.
+* The Merge Window for the next release (|next_ver|) is **open** until the -rc1
+ release on Monday, 27 October 2025.
* The next branch is now **open** with the -rc2 release on Monday, 11 August
2025.
-* Release "|next_ver|" is scheduled for Monday, 06 October 2025.
+* Release "|next_ver|" is scheduled for Monday, 05 January 2026.
Future Releases
---------------
@@ -69,29 +69,29 @@ Future Releases
.. The following commented out dates are for when release candidates are
planned to be tagged.
-For the next scheduled release, release candidates were made on::
+.. For the next scheduled release, release candidates were made on::
-* U-Boot |next_ver|-rc1 was released on Mon 28 July 2025.
+.. * U-Boot |next_ver|-rc1 was released on Mon 27 October 2025.
-* U-Boot |next_ver|-rc2 was released on Mon 11 August 2025.
+.. * U-Boot |next_ver|-rc2 was released on Mon 10 November 2025.
-* U-Boot |next_ver|-rc3 was released on Mon 25 August 2025.
+.. * U-Boot |next_ver|-rc3 was released on Mon 24 November 2025.
-* U-Boot |next_ver|-rc4 was released on Mon 08 September 2025.
+.. * U-Boot |next_ver|-rc4 was released on Mon 08 December 2025.
-* U-Boot |next_ver|-rc5 was released on Tue 23 September 2025.
+.. * U-Boot |next_ver|-rc5 was released on Tue 22 December 2025.
Please note that the following dates are planned only and may be deviated from
as needed.
-* "v2025.10": end of MW = Mon, Jul 28, 2025; release = Mon, Oct 06, 2025
-
* "v2026.01": end of MW = Mon, Oct 27, 2025; release = Mon, Jan 05, 2026
* "v2026.04": end of MW = Mon, Jan 26, 2026; release = Mon, Apr 06, 2026
* "v2026.07": end of MW = Mon, Apr 27, 2026; release = Mon, Jul 06, 2026
+* "v2026.10": end of MW = Mon, Jul 27, 2026; release = Mon, Oct 05, 2026
+
Previous Releases
-----------------
@@ -99,6 +99,8 @@ Note: these statistics are generated by our fork of `gitdm
<https://source.denx.de/u-boot/gitdm>`_, which was originally created by
Jonathan Corbet.
+* :doc:`statistics/u-boot-stats-v2025.10` which was released on 06 October 2025.
+
* :doc:`statistics/u-boot-stats-v2025.07` which was released on 07 July 2025.
* :doc:`statistics/u-boot-stats-v2025.04` which was released on 07 April 2025.
diff --git a/doc/develop/statistics/u-boot-stats-v2025.10.rst b/doc/develop/statistics/u-boot-stats-v2025.10.rst
new file mode 100644
index 00000000000..9588d174b6f
--- /dev/null
+++ b/doc/develop/statistics/u-boot-stats-v2025.10.rst
@@ -0,0 +1,814 @@
+:orphan:
+
+Release Statistics for U-Boot v2025.10
+======================================
+
+* Processed 1408 changesets from 189 developers
+
+* 25 employers found
+
+* A total of 248541 lines added, 98341 removed (delta 150200)
+
+.. table:: Developers with the most changesets
+ :widths: auto
+
+ ==================================== =====
+ Name Count
+ ==================================== =====
+ Simon Glass 165 (11.7%)
+ Tom Rini 140 (9.9%)
+ Andrew Goodbody 105 (7.5%)
+ Marek Vasut 70 (5.0%)
+ Ilias Apalodimas 46 (3.3%)
+ Rasmus Villemoes 35 (2.5%)
+ Tim Harvey 28 (2.0%)
+ Andre Przywara 28 (2.0%)
+ Jerome Forissier 26 (1.8%)
+ Sam Protsenko 25 (1.8%)
+ Jonas Karlman 25 (1.8%)
+ Michal Simek 23 (1.6%)
+ Heinrich Schuchardt 22 (1.6%)
+ Yao Zi 21 (1.5%)
+ Quentin Schulz 19 (1.3%)
+ Alif Zakuan Yuslaimi 19 (1.3%)
+ Tingting Meng 18 (1.3%)
+ Dinesh Maniyam 17 (1.2%)
+ Ion Agorria 14 (1.0%)
+ Venkatesh Yadav Abbarapu 13 (0.9%)
+ Bryan Brattlof 13 (0.9%)
+ Martin Schwan 12 (0.9%)
+ Patrice Chotard 11 (0.8%)
+ E Shattow 11 (0.8%)
+ Wadim Egorov 11 (0.8%)
+ Casey Connolly 10 (0.7%)
+ Balaji Selvanathan 10 (0.7%)
+ Yannic Moog 10 (0.7%)
+ Aristo Chen 10 (0.7%)
+ Emanuele Ghidoli 10 (0.7%)
+ Patrick Delaunay 9 (0.6%)
+ Anshul Dalal 9 (0.6%)
+ Adriano Carvalho 9 (0.6%)
+ Anurag Dutta 9 (0.6%)
+ Varadarajan Narayanan 9 (0.6%)
+ Sughosh Ganu 9 (0.6%)
+ Dario Binacchi 9 (0.6%)
+ Ye Li 8 (0.6%)
+ Leo Yu-Chi Liang 8 (0.6%)
+ Moteen Shah 8 (0.6%)
+ Jamie Gibbons 7 (0.5%)
+ Peng Fan 7 (0.5%)
+ Michael Trimarchi 7 (0.5%)
+ Lukasz Czechowski 7 (0.5%)
+ Holger Brunck 7 (0.5%)
+ Christian Marangi 7 (0.5%)
+ Aswin Murugan 7 (0.5%)
+ Zixun LI 7 (0.5%)
+ Kongyang Liu 7 (0.5%)
+ Primoz Fiser 6 (0.4%)
+ Ryan Wanner 6 (0.4%)
+ Pieter Van Trappen 6 (0.4%)
+ Alice Guo 5 (0.4%)
+ Fabio Estevam 5 (0.4%)
+ Henrik Grimler 5 (0.4%)
+ Svyatoslav Ryhel 5 (0.4%)
+ João Paulo Gonçalves 5 (0.4%)
+ Naresh Kumar Ravulapalli 5 (0.4%)
+ Manorit Chawdhry 5 (0.4%)
+ Javier Martinez Canillas 5 (0.4%)
+ Ying-Chun Liu (PaulLiu) 5 (0.4%)
+ Luca Weiss 5 (0.4%)
+ Manikandan Muralidharan 5 (0.4%)
+ Yegor Yefremov 4 (0.3%)
+ Neha Malcom Francis 4 (0.3%)
+ david regan 4 (0.3%)
+ Ben Dooks 4 (0.3%)
+ Martin Herren 4 (0.3%)
+ Philip Molloy 4 (0.3%)
+ Varshini Rajendran 4 (0.3%)
+ Mikhail Kshevetskiy 4 (0.3%)
+ Weijie Gao 4 (0.3%)
+ Hrushikesh Salunke 4 (0.3%)
+ Lukasz Majewski 4 (0.3%)
+ Beleswar Padhi 4 (0.3%)
+ Gabriel Fernandez 4 (0.3%)
+ Conor Dooley 3 (0.2%)
+ Tony Dinh 3 (0.2%)
+ Heiko Thiery 3 (0.2%)
+ Paul Kocialkowski 3 (0.2%)
+ Mark Kettenis 3 (0.2%)
+ Shiji Yang 3 (0.2%)
+ David Zang 3 (0.2%)
+ Cheick Traore 3 (0.2%)
+ Frieder Schrempf 3 (0.2%)
+ Fiona Klute 3 (0.2%)
+ Padmarao Begari 3 (0.2%)
+ Magnus Damm 3 (0.2%)
+ George Chan 3 (0.2%)
+ Sukrut Bellary 3 (0.2%)
+ Sean Edmond 3 (0.2%)
+ Neil Armstrong 2 (0.1%)
+ Mattijs Korpershoek 2 (0.1%)
+ Heiko Schocher 2 (0.1%)
+ Raymond Mao 2 (0.1%)
+ Udit Kumar 2 (0.1%)
+ Jan Kiszka 2 (0.1%)
+ Heiko Stuebner 2 (0.1%)
+ Frank Wang 2 (0.1%)
+ Da Xue 2 (0.1%)
+ Christophe Kerello 2 (0.1%)
+ Junhui Liu 2 (0.1%)
+ Peter Robinson 2 (0.1%)
+ Jim Liu 2 (0.1%)
+ Jernej Skrabec 2 (0.1%)
+ Antonio Borneo 2 (0.1%)
+ Hugo Villeneuve 2 (0.1%)
+ Vitor Soares 2 (0.1%)
+ Tomas Alvarez Vanoli 2 (0.1%)
+ Eoin Dickson 2 (0.1%)
+ Romain Gantois 2 (0.1%)
+ Shmuel Leib Melamud 2 (0.1%)
+ Adriano Cordova 2 (0.1%)
+ Nathan Morrisson 2 (0.1%)
+ Thomas Bonnefille 1 (0.1%)
+ Javier Tia 1 (0.1%)
+ Kory Maincent 1 (0.1%)
+ Ben Wolsieffer 1 (0.1%)
+ Daniel P. Berrangé 1 (0.1%)
+ Jiaxun Yang 1 (0.1%)
+ Maksim Kiselev 1 (0.1%)
+ Alexander Dahl 1 (0.1%)
+ Ricardo Simoes 1 (0.1%)
+ Sidharth Seela 1 (0.1%)
+ Mathieu Othacehe 1 (0.1%)
+ Kunihiko Hayashi 1 (0.1%)
+ Christoph Niedermaier 1 (0.1%)
+ Prasanth Babu Mantena 1 (0.1%)
+ Patrick Rudolph 1 (0.1%)
+ Boon Khai Ng 1 (0.1%)
+ Niu Zhihong 1 (0.1%)
+ Diederik de Haas 1 (0.1%)
+ Jianwei Zheng 1 (0.1%)
+ Marius Dinu 1 (0.1%)
+ Jakob Unterwurzacher 1 (0.1%)
+ Jon Lin 1 (0.1%)
+ Chris Morgan 1 (0.1%)
+ Alex Shumsky 1 (0.1%)
+ Siddharth Vadapalli 1 (0.1%)
+ Frank Böwingloh 1 (0.1%)
+ Miquel Raynal 1 (0.1%)
+ Jonas Schwöbel 1 (0.1%)
+ Max Merchel 1 (0.1%)
+ Stefan Roese 1 (0.1%)
+ Lad Prabhakar 1 (0.1%)
+ Sumit Garg 1 (0.1%)
+ Ramin Moussavi 1 (0.1%)
+ Eric Anderson 1 (0.1%)
+ Tien Fong Chee 1 (0.1%)
+ Takahiro Kuwano 1 (0.1%)
+ Greg Malysa 1 (0.1%)
+ Mikko Rapeli 1 (0.1%)
+ Christian Speich 1 (0.1%)
+ Clément Le Goffic 1 (0.1%)
+ Justin Swartz 1 (0.1%)
+ Andrew Davis 1 (0.1%)
+ Mikhail Kalashnikov 1 (0.1%)
+ Enric Balletbo i Serra 1 (0.1%)
+ Rebecca Cran 1 (0.1%)
+ Iulian Banaga 1 (0.1%)
+ Jaehoon Chung 1 (0.1%)
+ Ariel D'Alessandro 1 (0.1%)
+ Francesco Dolcini 1 (0.1%)
+ Gokul Praveen 1 (0.1%)
+ Anatolij Gustschin 1 (0.1%)
+ Leonard Anderweit 1 (0.1%)
+ Lucas Dietrich 1 (0.1%)
+ Rui Miguel Silva 1 (0.1%)
+ Frank Wunderlich 1 (0.1%)
+ MD Danish Anwar 1 (0.1%)
+ Alexander Stein 1 (0.1%)
+ Tobias Olausson 1 (0.1%)
+ Michael Walle 1 (0.1%)
+ Chuanhong Guo 1 (0.1%)
+ Giulio Benetti 1 (0.1%)
+ Vignesh Raghavendra 1 (0.1%)
+ 牛 志宏 1 (0.1%)
+ Jamin Lin 1 (0.1%)
+ Cody Eksal 1 (0.1%)
+ Eric Schikschneit 1 (0.1%)
+ Richard Weinberger 1 (0.1%)
+ Simeon Marijon 1 (0.1%)
+ Valentin Caron 1 (0.1%)
+ Parth Pancholi 1 (0.1%)
+ Anis Chali 1 (0.1%)
+ Anton Moryakov 1 (0.1%)
+ SkyLake.Huang 1 (0.1%)
+ Alexander Sverdlin 1 (0.1%)
+ Johannes Krottmayer 1 (0.1%)
+ ==================================== =====
+
+
+.. table:: Developers with the most changed lines
+ :widths: auto
+
+ ==================================== =====
+ Name Count
+ ==================================== =====
+ Tom Rini 192200 (63.3%)
+ Simon Glass 13843 (4.6%)
+ Neha Malcom Francis 8502 (2.8%)
+ Parth Pancholi 8340 (2.7%)
+ Marek Vasut 6133 (2.0%)
+ Dinesh Maniyam 5848 (1.9%)
+ Fabio Estevam 5363 (1.8%)
+ Michal Simek 4628 (1.5%)
+ Ion Agorria 3850 (1.3%)
+ Andre Przywara 2617 (0.9%)
+ Kongyang Liu 2532 (0.8%)
+ Gabriel Fernandez 2197 (0.7%)
+ Tingting Meng 2182 (0.7%)
+ Ryan Wanner 1919 (0.6%)
+ Jernej Skrabec 1795 (0.6%)
+ Tim Harvey 1769 (0.6%)
+ Cody Eksal 1722 (0.6%)
+ Paul Kocialkowski 1715 (0.6%)
+ Svyatoslav Ryhel 1666 (0.5%)
+ Sam Protsenko 1560 (0.5%)
+ Yao Zi 1484 (0.5%)
+ Varshini Rajendran 1374 (0.5%)
+ Lukasz Majewski 1332 (0.4%)
+ Ilias Apalodimas 1292 (0.4%)
+ Jonas Schwöbel 1203 (0.4%)
+ Neil Armstrong 1054 (0.3%)
+ Anshul Dalal 1007 (0.3%)
+ Alif Zakuan Yuslaimi 938 (0.3%)
+ Anis Chali 921 (0.3%)
+ Jerome Forissier 918 (0.3%)
+ Patrice Chotard 803 (0.3%)
+ Varadarajan Narayanan 802 (0.3%)
+ Sughosh Ganu 791 (0.3%)
+ Michael Trimarchi 775 (0.3%)
+ Simeon Marijon 677 (0.2%)
+ Martin Schwan 670 (0.2%)
+ Bryan Brattlof 640 (0.2%)
+ Leo Yu-Chi Liang 602 (0.2%)
+ Heinrich Schuchardt 595 (0.2%)
+ Andrew Goodbody 585 (0.2%)
+ Frieder Schrempf 538 (0.2%)
+ Jonas Karlman 536 (0.2%)
+ Hrushikesh Salunke 536 (0.2%)
+ Rasmus Villemoes 501 (0.2%)
+ Jamie Gibbons 492 (0.2%)
+ Alice Guo 445 (0.1%)
+ Casey Connolly 436 (0.1%)
+ Anurag Dutta 436 (0.1%)
+ Dario Binacchi 435 (0.1%)
+ Fiona Klute 429 (0.1%)
+ Ying-Chun Liu (PaulLiu) 408 (0.1%)
+ Aristo Chen 368 (0.1%)
+ Aswin Murugan 352 (0.1%)
+ Moteen Shah 333 (0.1%)
+ Balaji Selvanathan 326 (0.1%)
+ Padmarao Begari 326 (0.1%)
+ Ariel D'Alessandro 326 (0.1%)
+ Eoin Dickson 315 (0.1%)
+ Quentin Schulz 306 (0.1%)
+ Manikandan Muralidharan 296 (0.1%)
+ Sukrut Bellary 254 (0.1%)
+ Mikhail Kalashnikov 252 (0.1%)
+ Da Xue 227 (0.1%)
+ Yannic Moog 225 (0.1%)
+ Pieter Van Trappen 223 (0.1%)
+ Heiko Thiery 207 (0.1%)
+ Peng Fan 202 (0.1%)
+ Shmuel Leib Melamud 201 (0.1%)
+ João Paulo Gonçalves 192 (0.1%)
+ Chuanhong Guo 187 (0.1%)
+ Christian Marangi 181 (0.1%)
+ E Shattow 178 (0.1%)
+ Magnus Damm 178 (0.1%)
+ Wadim Egorov 177 (0.1%)
+ Jamin Lin 175 (0.1%)
+ Patrick Delaunay 147 (0.0%)
+ Jon Lin 147 (0.0%)
+ Javier Martinez Canillas 145 (0.0%)
+ Beleswar Padhi 136 (0.0%)
+ Adriano Carvalho 133 (0.0%)
+ Niu Zhihong 133 (0.0%)
+ Lukasz Czechowski 127 (0.0%)
+ Greg Malysa 112 (0.0%)
+ Jianwei Zheng 102 (0.0%)
+ Chris Morgan 100 (0.0%)
+ Zixun LI 97 (0.0%)
+ Junhui Liu 94 (0.0%)
+ Sean Edmond 85 (0.0%)
+ Holger Brunck 76 (0.0%)
+ Leonard Anderweit 75 (0.0%)
+ Conor Dooley 74 (0.0%)
+ Mikhail Kshevetskiy 65 (0.0%)
+ Emanuele Ghidoli 64 (0.0%)
+ Primoz Fiser 63 (0.0%)
+ Venkatesh Yadav Abbarapu 60 (0.0%)
+ Cheick Traore 56 (0.0%)
+ Valentin Caron 54 (0.0%)
+ Frank Wang 52 (0.0%)
+ Weijie Gao 50 (0.0%)
+ Javier Tia 48 (0.0%)
+ Ye Li 44 (0.0%)
+ Ben Dooks 43 (0.0%)
+ Tony Dinh 41 (0.0%)
+ MD Danish Anwar 41 (0.0%)
+ david regan 40 (0.0%)
+ Jim Liu 39 (0.0%)
+ Manorit Chawdhry 38 (0.0%)
+ Vitor Soares 38 (0.0%)
+ Martin Herren 35 (0.0%)
+ Antonio Borneo 35 (0.0%)
+ Christoph Niedermaier 33 (0.0%)
+ Clément Le Goffic 33 (0.0%)
+ Michael Walle 33 (0.0%)
+ Henrik Grimler 28 (0.0%)
+ Romain Gantois 28 (0.0%)
+ Siddharth Vadapalli 28 (0.0%)
+ Eric Schikschneit 26 (0.0%)
+ Heiko Stuebner 25 (0.0%)
+ George Chan 24 (0.0%)
+ Adriano Cordova 24 (0.0%)
+ Udit Kumar 23 (0.0%)
+ Naresh Kumar Ravulapalli 20 (0.0%)
+ Jakob Unterwurzacher 20 (0.0%)
+ Max Merchel 20 (0.0%)
+ Luca Weiss 19 (0.0%)
+ Heiko Schocher 19 (0.0%)
+ Peter Robinson 19 (0.0%)
+ Christophe Kerello 16 (0.0%)
+ Alex Shumsky 14 (0.0%)
+ Miquel Raynal 14 (0.0%)
+ Sumit Garg 13 (0.0%)
+ Richard Weinberger 13 (0.0%)
+ Johannes Krottmayer 13 (0.0%)
+ Yegor Yefremov 12 (0.0%)
+ Ramin Moussavi 12 (0.0%)
+ Mark Kettenis 11 (0.0%)
+ 牛 志宏 11 (0.0%)
+ Mattijs Korpershoek 10 (0.0%)
+ Hugo Villeneuve 10 (0.0%)
+ Tomas Alvarez Vanoli 10 (0.0%)
+ Sidharth Seela 10 (0.0%)
+ Iulian Banaga 10 (0.0%)
+ Philip Molloy 9 (0.0%)
+ Stefan Roese 9 (0.0%)
+ Lad Prabhakar 9 (0.0%)
+ Shiji Yang 8 (0.0%)
+ Giulio Benetti 8 (0.0%)
+ Jiaxun Yang 7 (0.0%)
+ Diederik de Haas 7 (0.0%)
+ Raymond Mao 6 (0.0%)
+ Jan Kiszka 6 (0.0%)
+ Boon Khai Ng 6 (0.0%)
+ Jaehoon Chung 6 (0.0%)
+ Lucas Dietrich 6 (0.0%)
+ Frank Wunderlich 6 (0.0%)
+ Anton Moryakov 6 (0.0%)
+ Mikko Rapeli 5 (0.0%)
+ Enric Balletbo i Serra 5 (0.0%)
+ Alexander Dahl 4 (0.0%)
+ Justin Swartz 4 (0.0%)
+ Francesco Dolcini 4 (0.0%)
+ Anatolij Gustschin 4 (0.0%)
+ Alexander Sverdlin 4 (0.0%)
+ David Zang 3 (0.0%)
+ Thomas Bonnefille 3 (0.0%)
+ Ricardo Simoes 3 (0.0%)
+ Mathieu Othacehe 3 (0.0%)
+ Prasanth Babu Mantena 3 (0.0%)
+ Tien Fong Chee 3 (0.0%)
+ Takahiro Kuwano 3 (0.0%)
+ Gokul Praveen 3 (0.0%)
+ Nathan Morrisson 2 (0.0%)
+ Kory Maincent 2 (0.0%)
+ Marius Dinu 2 (0.0%)
+ Tobias Olausson 2 (0.0%)
+ SkyLake.Huang 2 (0.0%)
+ Ben Wolsieffer 1 (0.0%)
+ Daniel P. Berrangé 1 (0.0%)
+ Maksim Kiselev 1 (0.0%)
+ Kunihiko Hayashi 1 (0.0%)
+ Patrick Rudolph 1 (0.0%)
+ Frank Böwingloh 1 (0.0%)
+ Eric Anderson 1 (0.0%)
+ Christian Speich 1 (0.0%)
+ Andrew Davis 1 (0.0%)
+ Rebecca Cran 1 (0.0%)
+ Rui Miguel Silva 1 (0.0%)
+ Alexander Stein 1 (0.0%)
+ Vignesh Raghavendra 1 (0.0%)
+ ==================================== =====
+
+
+.. table:: Developers with the most lines removed
+ :widths: auto
+
+ ==================================== =====
+ Name Count
+ ==================================== =====
+ Michal Simek 4134 (4.2%)
+ Paul Kocialkowski 1710 (1.7%)
+ Frieder Schrempf 530 (0.5%)
+ Bryan Brattlof 357 (0.4%)
+ Kongyang Liu 351 (0.4%)
+ Heiko Thiery 202 (0.2%)
+ Greg Malysa 109 (0.1%)
+ Leonard Anderweit 55 (0.1%)
+ Junhui Liu 48 (0.0%)
+ Andrew Goodbody 38 (0.0%)
+ Yannic Moog 22 (0.0%)
+ Udit Kumar 22 (0.0%)
+ Primoz Fiser 18 (0.0%)
+ Martin Herren 18 (0.0%)
+ E Shattow 14 (0.0%)
+ Sumit Garg 13 (0.0%)
+ Anurag Dutta 11 (0.0%)
+ Henrik Grimler 9 (0.0%)
+ Lad Prabhakar 9 (0.0%)
+ Max Merchel 8 (0.0%)
+ Philip Molloy 7 (0.0%)
+ Giulio Benetti 7 (0.0%)
+ Pieter Van Trappen 3 (0.0%)
+ Jan Kiszka 3 (0.0%)
+ Alexander Dahl 3 (0.0%)
+ Prasanth Babu Mantena 3 (0.0%)
+ Hugo Villeneuve 2 (0.0%)
+ Enric Balletbo i Serra 2 (0.0%)
+ SkyLake.Huang 2 (0.0%)
+ Anatolij Gustschin 1 (0.0%)
+ Kunihiko Hayashi 1 (0.0%)
+ Vignesh Raghavendra 1 (0.0%)
+ ==================================== =====
+
+
+.. table:: Developers with the most signoffs (total 289)
+ :widths: auto
+
+ ==================================== =====
+ Name Count
+ ==================================== =====
+ Casey Connolly 39 (13.5%)
+ Michal Simek 31 (10.7%)
+ Minkyu Kang 24 (8.3%)
+ Ilias Apalodimas 21 (7.3%)
+ Alif Zakuan Yuslaimi 17 (5.9%)
+ Mattijs Korpershoek 15 (5.2%)
+ Patrice Chotard 14 (4.8%)
+ Peng Fan 10 (3.5%)
+ Svyatoslav Ryhel 10 (3.5%)
+ Junhui Liu 7 (2.4%)
+ Chen-Yu Tsai 7 (2.4%)
+ Alexandre Torgue 7 (2.4%)
+ Heiko Stuebner 7 (2.4%)
+ Michael Trimarchi 7 (2.4%)
+ Randolph Sheng-Kai Lin 6 (2.1%)
+ Andre Przywara 5 (1.7%)
+ Caleb Connolly 4 (1.4%)
+ Tien Fong Chee 4 (1.4%)
+ Jonas Karlman 4 (1.4%)
+ Tom Rini 4 (1.4%)
+ Jerome Forissier 3 (1.0%)
+ Christian Hewitt 2 (0.7%)
+ Romain Sioen 2 (0.7%)
+ Jacky Bai 2 (0.7%)
+ Prasad Kummari 2 (0.7%)
+ Balamanikandan Gunasundar 2 (0.7%)
+ Antonio Borneo 2 (0.7%)
+ Holger Brunck 2 (0.7%)
+ Lukasz Czechowski 2 (0.7%)
+ Wadim Egorov 2 (0.7%)
+ Alice Guo 2 (0.7%)
+ Varshini Rajendran 2 (0.7%)
+ Henrik Grimler 1 (0.3%)
+ Mark Jonas 1 (0.3%)
+ Lee Jones 1 (0.3%)
+ Jérémie Dautheribes 1 (0.3%)
+ Stanley Chu 1 (0.3%)
+ Eugen Hristev 1 (0.3%)
+ Greg Kroah-Hartman 1 (0.3%)
+ Jonathan Stroud 1 (0.3%)
+ Ashok Reddy Soma 1 (0.3%)
+ Tejas Bhumkar 1 (0.3%)
+ Paul Sajna 1 (0.3%)
+ Sam Shih 1 (0.3%)
+ Tomas Alvarez Vanoli 1 (0.3%)
+ Boon Khai Ng 1 (0.3%)
+ Vitor Soares 1 (0.3%)
+ Valentin Caron 1 (0.3%)
+ Manikandan Muralidharan 1 (0.3%)
+ Heinrich Schuchardt 1 (0.3%)
+ Varadarajan Narayanan 1 (0.3%)
+ Fabio Estevam 1 (0.3%)
+ Simon Glass 1 (0.3%)
+ ==================================== =====
+
+
+.. table:: Developers with the most reviews (total 605)
+ :widths: auto
+
+ ==================================== =====
+ Name Count
+ ==================================== =====
+ Kever Yang 50 (8.3%)
+ Tien Fong Chee 46 (7.6%)
+ Patrice Chotard 44 (7.3%)
+ Ilias Apalodimas 39 (6.4%)
+ Peng Fan 36 (6.0%)
+ Tom Rini 29 (4.8%)
+ Leo Yu-Chi Liang 28 (4.6%)
+ Mattijs Korpershoek 26 (4.3%)
+ Simon Glass 25 (4.1%)
+ Quentin Schulz 23 (3.8%)
+ Marek Vasut 22 (3.6%)
+ Casey Connolly 20 (3.3%)
+ Neil Armstrong 18 (3.0%)
+ Heinrich Schuchardt 16 (2.6%)
+ Stefan Roese 16 (2.6%)
+ Patrick Delaunay 15 (2.5%)
+ Neha Malcom Francis 14 (2.3%)
+ Bryan Brattlof 13 (2.1%)
+ Jerome Forissier 12 (2.0%)
+ Peter Robinson 8 (1.3%)
+ Svyatoslav Ryhel 7 (1.2%)
+ Sumit Garg 7 (1.2%)
+ Michael Trimarchi 6 (1.0%)
+ Jernej Skrabec 6 (1.0%)
+ Eugen Hristev 5 (0.8%)
+ Udit Kumar 5 (0.8%)
+ Sam Protsenko 5 (0.8%)
+ Dhruva Gole 4 (0.7%)
+ Anshul Dalal 4 (0.7%)
+ Andre Przywara 3 (0.5%)
+ Fabio Estevam 3 (0.5%)
+ Andrew Goodbody 3 (0.5%)
+ Rob Herring (Arm)" 3 (0.5%)
+ Anand Moon 3 (0.5%)
+ Heiko Schocher 3 (0.5%)
+ Christoph Niedermaier 3 (0.5%)
+ Tony Dinh 3 (0.5%)
+ Jonas Karlman 2 (0.3%)
+ Tudor Ambarus 2 (0.3%)
+ Rui Miguel Silva 2 (0.3%)
+ Javier Martinez Canillas 2 (0.3%)
+ Minkyu Kang 1 (0.2%)
+ Junhui Liu 1 (0.2%)
+ Alice Guo 1 (0.2%)
+ Greg Malysa 1 (0.2%)
+ Prasanth Babu Mantena 1 (0.2%)
+ Francesco Dolcini 1 (0.2%)
+ Andrew Davis 1 (0.2%)
+ Christophe ROULLIER 1 (0.2%)
+ Paul Barker 1 (0.2%)
+ Krzysztof Kozlowski 1 (0.2%)
+ Gao Xiang 1 (0.2%)
+ Aniket Limaye 1 (0.2%)
+ Wolfgang Wallner 1 (0.2%)
+ Martyn Welch 1 (0.2%)
+ Viacheslav Bocharov 1 (0.2%)
+ Manorit Chawdhry 1 (0.2%)
+ Mark Kettenis 1 (0.2%)
+ Miquel Raynal 1 (0.2%)
+ Siddharth Vadapalli 1 (0.2%)
+ Weijie Gao 1 (0.2%)
+ Venkatesh Yadav Abbarapu 1 (0.2%)
+ Conor Dooley 1 (0.2%)
+ Martin Schwan 1 (0.2%)
+ Lukasz Majewski 1 (0.2%)
+ ==================================== =====
+
+
+.. table:: Developers with the most test credits (total 44)
+ :widths: auto
+
+ ==================================== =====
+ Name Count
+ ==================================== =====
+ Peter Robinson 8 (18.2%)
+ Wadim Egorov 7 (15.9%)
+ Ilias Apalodimas 2 (4.5%)
+ Heinrich Schuchardt 2 (4.5%)
+ Bryan Brattlof 2 (4.5%)
+ Anshul Dalal 2 (4.5%)
+ Christoph Niedermaier 2 (4.5%)
+ Judith Mendez 2 (4.5%)
+ Mikko Rapeli 2 (4.5%)
+ Tim Harvey 2 (4.5%)
+ Patrice Chotard 1 (2.3%)
+ Mattijs Korpershoek 1 (2.3%)
+ Quentin Schulz 1 (2.3%)
+ Marek Vasut 1 (2.3%)
+ Fabio Estevam 1 (2.3%)
+ Alice Guo 1 (2.3%)
+ Martin Schwan 1 (2.3%)
+ Michal Simek 1 (2.3%)
+ Paul Sajna 1 (2.3%)
+ Raffaele Tranquillini 1 (2.3%)
+ Adam Ford 1 (2.3%)
+ Alexey Minnekhanov 1 (2.3%)
+ Petr Štetiar 1 (2.3%)
+ ==================================== =====
+
+
+.. table:: Developers who gave the most tested-by credits (total 44)
+ :widths: auto
+
+ ==================================== =====
+ Name Count
+ ==================================== =====
+ Kongyang Liu 7 (15.9%)
+ Martin Schwan 6 (13.6%)
+ Ilias Apalodimas 2 (4.5%)
+ Tom Rini 2 (4.5%)
+ Sam Protsenko 2 (4.5%)
+ Romain Gantois 2 (4.5%)
+ Rasmus Villemoes 2 (4.5%)
+ Ying-Chun Liu (PaulLiu) 2 (4.5%)
+ Yao Zi 2 (4.5%)
+ Tim Harvey 1 (2.3%)
+ Marek Vasut 1 (2.3%)
+ Alice Guo 1 (2.3%)
+ Casey Connolly 1 (2.3%)
+ Neil Armstrong 1 (2.3%)
+ Patrick Delaunay 1 (2.3%)
+ Svyatoslav Ryhel 1 (2.3%)
+ Michael Trimarchi 1 (2.3%)
+ Andrew Goodbody 1 (2.3%)
+ Junhui Liu 1 (2.3%)
+ Manorit Chawdhry 1 (2.3%)
+ Heiko Stuebner 1 (2.3%)
+ Leonard Anderweit 1 (2.3%)
+ Yannic Moog 1 (2.3%)
+ George Chan 1 (2.3%)
+ Christian Marangi 1 (2.3%)
+ Sughosh Ganu 1 (2.3%)
+ ==================================== =====
+
+
+.. table:: Developers with the most report credits (total 12)
+ :widths: auto
+
+ ==================================== =====
+ Name Count
+ ==================================== =====
+ Simon Glass 2 (16.7%)
+ Tim Harvey 1 (8.3%)
+ Andrew Goodbody 1 (8.3%)
+ Mikko Rapeli 1 (8.3%)
+ Michal Simek 1 (8.3%)
+ Javier Martinez Canillas 1 (8.3%)
+ Alexander Dahl 1 (8.3%)
+ Alex Bennée 1 (8.3%)
+ Hal Feng 1 (8.3%)
+ Hiroyuki Saito 1 (8.3%)
+ Adriano Carvalho 1 (8.3%)
+ ==================================== =====
+
+
+.. table:: Developers who gave the most report credits (total 12)
+ :widths: auto
+
+ ==================================== =====
+ Name Count
+ ==================================== =====
+ Yannic Moog 2 (16.7%)
+ Heinrich Schuchardt 2 (16.7%)
+ Ilias Apalodimas 1 (8.3%)
+ Anshul Dalal 1 (8.3%)
+ Neha Malcom Francis 1 (8.3%)
+ Jerome Forissier 1 (8.3%)
+ E Shattow 1 (8.3%)
+ Daniel P. Berrangé 1 (8.3%)
+ Takahiro Kuwano 1 (8.3%)
+ Ye Li 1 (8.3%)
+ ==================================== =====
+
+
+.. table:: Top changeset contributors by employer
+ :widths: auto
+
+ ==================================== =====
+ Name Count
+ ==================================== =====
+ (Unknown) 530 (37.6%)
+ Linaro 233 (16.5%)
+ Google LLC 165 (11.7%)
+ Konsulko Group 140 (9.9%)
+ Texas Instruments 64 (4.5%)
+ Renesas Electronics 44 (3.1%)
+ AMD 39 (2.8%)
+ Phytec 34 (2.4%)
+ ST Microelectronics 34 (2.4%)
+ ARM 28 (2.0%)
+ NXP 20 (1.4%)
+ Toradex 19 (1.3%)
+ Amarula Solutions 16 (1.1%)
+ Red Hat 8 (0.6%)
+ Bootlin 5 (0.4%)
+ DENX Software Engineering 5 (0.4%)
+ Analog Devices 4 (0.3%)
+ Broadcom 4 (0.3%)
+ Rockchip 4 (0.3%)
+ BayLibre SAS 3 (0.2%)
+ Intel 3 (0.2%)
+ Siemens 3 (0.2%)
+ Collabora Ltd. 1 (0.1%)
+ Samsung 1 (0.1%)
+ Socionext Inc. 1 (0.1%)
+ ==================================== =====
+
+
+.. table:: Top lines changed by employer
+ :widths: auto
+
+ ==================================== =====
+ Name Count
+ ==================================== =====
+ Konsulko Group 192200 (63.3%)
+ (Unknown) 49460 (16.3%)
+ Google LLC 13843 (4.6%)
+ Texas Instruments 11728 (3.9%)
+ Toradex 8638 (2.8%)
+ Linaro 7104 (2.3%)
+ AMD 5014 (1.7%)
+ ST Microelectronics 4018 (1.3%)
+ Renesas Electronics 3149 (1.0%)
+ ARM 2617 (0.9%)
+ DENX Software Engineering 1342 (0.4%)
+ Amarula Solutions 1210 (0.4%)
+ Phytec 1147 (0.4%)
+ NXP 691 (0.2%)
+ Red Hat 347 (0.1%)
+ Collabora Ltd. 326 (0.1%)
+ Rockchip 301 (0.1%)
+ BayLibre SAS 254 (0.1%)
+ Bootlin 47 (0.0%)
+ Broadcom 40 (0.0%)
+ Siemens 10 (0.0%)
+ Analog Devices 9 (0.0%)
+ Intel 7 (0.0%)
+ Samsung 6 (0.0%)
+ Socionext Inc. 1 (0.0%)
+ ==================================== =====
+
+
+.. table:: Employers with the most signoffs (total 289)
+ :widths: auto
+
+ ==================================== =====
+ Name Count
+ ==================================== =====
+ (Unknown) 100 (34.6%)
+ Linaro 68 (23.5%)
+ AMD 36 (12.5%)
+ ST Microelectronics 24 (8.3%)
+ Samsung 24 (8.3%)
+ NXP 14 (4.8%)
+ Amarula Solutions 7 (2.4%)
+ ARM 5 (1.7%)
+ Konsulko Group 4 (1.4%)
+ Phytec 2 (0.7%)
+ Google LLC 1 (0.3%)
+ Toradex 1 (0.3%)
+ Bootlin 1 (0.3%)
+ Bosch 1 (0.3%)
+ Canonical 1 (0.3%)
+ ==================================== =====
+
+
+.. table:: Employers with the most hackers (total 192)
+ :widths: auto
+
+ ==================================== =====
+ Name Count
+ ==================================== =====
+ (Unknown) 112 (58.3%)
+ Texas Instruments 15 (7.8%)
+ Linaro 12 (6.2%)
+ ST Microelectronics 9 (4.7%)
+ Toradex 5 (2.6%)
+ Phytec 4 (2.1%)
+ Bootlin 4 (2.1%)
+ AMD 3 (1.6%)
+ NXP 3 (1.6%)
+ Red Hat 3 (1.6%)
+ Rockchip 3 (1.6%)
+ Amarula Solutions 2 (1.0%)
+ Renesas Electronics 2 (1.0%)
+ DENX Software Engineering 2 (1.0%)
+ Siemens 2 (1.0%)
+ Intel 2 (1.0%)
+ Samsung 1 (0.5%)
+ ARM 1 (0.5%)
+ Konsulko Group 1 (0.5%)
+ Google LLC 1 (0.5%)
+ Collabora Ltd. 1 (0.5%)
+ BayLibre SAS 1 (0.5%)
+ Broadcom 1 (0.5%)
+ Analog Devices 1 (0.5%)
+ Socionext Inc. 1 (0.5%)
+ ==================================== =====