Gustavo Padovan
December 17, 2018
Reading time:
In the beginning, Android did not really have a graphics stack. It was just pushing frames directly to framebuffers and hoping for the best, the approach worked for quite some time.
However, over time, the usecases became more and more complex and a new graphics stack was necessary. About 6 years ago the Android team conducted a lot of research and quickly realized that the mainline kernel was far from being up to the job - it was lacking Atomic screen updates, explicit syncronization and support for low power hardware, among other things. Google was left with no other choice than to design their own graphic stack: Atomic Display Framework (ADF).
That was another piece of the mainline linux kernel that Android forked, but it allowed Google to overcome the challenges brought on by the new needs of industry and customers.
The mainline graphics stack had a number of problems and the API was outdated and not keeping pace with the industry. The mainline graphics community knew it was time for an upgrade!
The addition of Kernel Modeset (KMS) around 2008 was a revolution in itself, but as time passed, new needs arose and a new API was required. That lead to a situation where we had different syscalls to update every single buffer on the screen. In order to update the whole screen, for example, one would need to make a couple of syscalls and hope they would all be applied to the display hardware before the next vsync signal, otherwise some user noticeable flickering could happen. Unfortunately, such flickering was happening quite often.
Led by Daniel Vetter (Intel), the introduction of Atomic Modesetting on top of KMS in 2015 added a new system call that would contain *all* the information to update all buffers in all screens in a single commit transaction, fixing the issues that plagued the previous API. The Direct Rendering Manager (DRM) Core went through a comprehensive refactoring process, and drivers became much easier to write, allowing for all the major drivers to be eventually ported to atomic modesetting, and many more added as well, some of them with Collabora's help.
Atomic Modeset was a giant step but there was still one piece missing: Explicit Synchronization. To avoid screen stalls and lack of knowledge about the current state of a buffer, ADF from Android introduced sync fences to keep track of buffer state and signal when GPU or Display is done filling or scanning it out.
In work led by Collabora, the Android Sync Framework was refactored and added to the mainline kernel, and Explicit Synchronization support was coded into DRM Atomic Modeset. The kernel now had all the pieces to support Android running on DRM/KMS.
The dream finally came true in 2018 with the release of the Google Pixel 3, the first Android phone running with the mainline graphics stack. A feat that was deemed impossible 10 years ago is now a reality thanks to a lot of hard work from the entire community.
Google ChromeOS also benefited from Explicit Synchronization to improve support for Android apps on Chromebooks, and now the Chrome Browser also has Explicit Synchronization support.
As more vendors start to push their code to mainline, and follow upstream closely, we expect others Android phone vendors to switch to DRM/KMS too in the future. The upstream stack is now quite modern and robust, and the benefits of using it is becoming clear!
08/10/2024
Having multiple developers work on pre-merge testing distributes the process and ensures that every contribution is rigorously tested before…
15/08/2024
After rigorous debugging, a new unit testing framework was added to the backend compiler for NVK. This is a walkthrough of the steps taken…
01/08/2024
We're reflecting on the steps taken as we continually seek to improve Linux kernel integration. This will include more detail about the…
27/06/2024
With each board running a mainline-first Linux software stack and tested in a CI loop with the LAVA test framework, the Farm showcased Collabora's…
26/06/2024
WirePlumber 0.5 arrived recently with many new and essential features including the Smart Filter Policy, enabling audio filters to automatically…
12/06/2024
Part 3 of the cmtp-responder series with a focus on USB gadgets explores several new elements including a unified build environment with…
Comments (5)
MgcLabs:
Dec 17, 2018 at 06:22 PM
So now I wonder what major stuff is Out of Tree and if much, how far we are from having a completely mainline Android. I don't mean Android's userland being in the kernel obviously..I mean all Android phones running mainline Linux kernel
Reply to this comment
Reply to this comment
mjblenner:
Dec 17, 2018 at 09:42 PM
Have a look at
https://source.android.com/devices/architecture/kernel/android-common
"When compared to LTS (4.14.0), the Android common kernel has 355 changes, 32266 insertions, and 1546 deletions (as of February 2018)"
Most of the out of tree stuff seems to be drivers, with a big chunk of energy aware scheduling.
Reply to this comment
Reply to this comment
Michael:
Dec 17, 2018 at 09:50 PM
This LWN article deals with what still needs to be done to get Android running on the mainline kernel:
https://lwn.net/Articles/771974/
Reply to this comment
Reply to this comment
amehaye:
Dec 17, 2018 at 07:53 PM
I guess that some of the major obstacles remaining are supporting the various cameras out there, as well as all the hardware media coders/decoders.
Reply to this comment
Reply to this comment
Robert Foss:
Dec 18, 2018 at 10:00 AM
Drivers are indeed a large part of whats left, but some drivers like those for finger print readers for example will likely never be upstreamed since the driver does little more than uploadinggg an encrypted firmware blob to the device.
But if you look at the Android Commons kernel and compare them to the kernel LTS releases the number non-upstreamed patches should be small, on the order of 300 and shrinking.
Reply to this comment
Reply to this comment
Add a Comment