Mainlining Guide

From postmarketOS
(Redirected from Mainline Guide)
Note General information about Mainlining is on the Mainlining page.

Introduction

Note Please have realistic expectations: Booting mainline even if nothing else is working is already a great achievement!

The kernel fork used in Android is different from the kernel at [1]. The former is downstream kernel (aka. baseline kernel) and the latter is upstream kernel. Carrying around forks of the kernel is not sustainable as it becomes impossible to provide security patches after a short time. The only way to truly fix this for a device is mainlining it. Making a device boot with the upstream kernel is colloquially referred to as mainlining.

When it comes to postmarketOS, we want to get as many devices working with one shared kernel package (based on upstream).

This guide will walk you through mainlining your device. For the devices where this will work, you should be fine with basic shell knowledge, and you will be rewarded with learning a lot of new stuff and possibly booting the mainline kernel on your device!


Getting Help

Read Mainlining_FAQ first to check if there provides some tips for your progress.

The mainlining process varies greatly for each device, which means we can't just write down straight forward instructions here. But luckily there are skilled people who have a bigger picture of a specific SoC and they know how to help you out efficiently. Head over to your device's wiki page (as linked in the device overview) and look at the chipset the device has (infobox on the top right). You can also check out Mainlining#Getting_help

Make sure that your SoC is listed in Mainlining#Supported_SoCs. If it isn't, ask someone on #postmarketOS-mainline if it's supported in mainline Linux.


Requirements

postmarketOS port

This guide assumes that postmarketOS was already ported with a downstream kernel to your device, and that you can enter a shell after it booted via USB (SSH or telnet). Downstream kernels are the ones from the vendor, that ship with the device, and all derivatives from that (e.g. your typical Android / LineageOS ROM). You can check if it was ported already on the devices page, and start a new port if necessary.

Note An existing port with downstream kernel is not a hard dependency, it may take less effort overall to skip that depending on the state of the codebase.

Serial cable

It is recommended to have a working serial cable for your device. In case you can not make one, it might be possible to use a workaround for retrieving log messages but that isn't straight forward. You can also use a framebuffer console to see logs appearing on your screen, which you will have to enable in your dts.

Kernel packaging

To make the kernel work with multiple devices, it no longer appends the dtb file to the kernel image. Instead, it puts all dtb files for the current architecture in /usr/share/dtb. The postmarketos-mkinitfs package appends the dtb file defined in the deviceinfo to the linux image in the boot partition.

Cooperative firmware

Some firmware, especially the bootloader, trustzone etc., don't play nice with the mainline Linux kernel. That is because it may require ugly hacks in the kernel, courtesy of being disgustingly broken. Those ugly hacks will not be accepted into mainline, because the proper solution would be to fix the firmware, regardless of the fact that the freedom to do that was taken away from you thanks to signature verification.

For example, a device shipping with 32bit kernel or even 64bit kernel with aforementioned ugly hacks, is likely to not support PSCI, the only mainline-approved way of CPU power management (including SMP) on aarch64. Considering this relies on trustzone cooperation, which is as far from being under your control as it possibly can, you're probably out of luck unless you a) implement said ugly hacks or b) manage to exploit your device and supply a proper trustzone.

Only if we campaign for the freedom to run our own software on the devices we own will we be able to replace the firmware with an open one, shall one emerge.

Device tree source

To make your device boot, you will need a device tree source (dts) file (which will get compiled to a dtb mentioned above). The guide would tell you about how to make a device tree from existing file provided by soc.

Preparation

Before proceeding, make sure that you know that your device is supported by the mainline kernel. Otherwise use the source code of a vendor's fork of the kernel, which is known to work as described in the porting guide.

pmbootstrap setup

If you have not done this already, please download and initialize pmbootstrap. You can stay with the defaults. Just make sure to select the right device, and (to save you some time), select none as the user interface. Replace ~/code with the path where you would like to store the source code.

$ cd ~/code
$ git clone https://gitlab.com/postmarketOS/pmbootstrap.git
$ cd pmbootstrap
$ alias pmbootstrap=$PWD/pmbootstrap.py
$ pmbootstrap init

Generate an initramfs with the debug-shell hook:

$ pmbootstrap initfs hook_add debug-shell

Kernel

Download a copy of linux-next. If your device's SoC has a git repository with active development, use that instead of https://github.com/torvalds/linux.git:

$ cd ~/code
$ git clone https://github.com/torvalds/linux.git --depth 1
$ cd linux

If you have already checked out the regular linux repository, you can add the linux-next branch as follows:

$ cd ~/code/linux
$ git remote add linux-next https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
$ git fetch --tags linux-next
$ git checkout -b development linux-next/master

After running the commands of one of the two blocks above, add a new branch for your device:

$ cd ~/code/linux
$ git checkout -b "device-<vendor>-<codename>"

envkernel.sh

Usually when compiling a kernel, you would install all dependencies and a cross compiler in your host system. To make it easier, we have the envkernel.sh script (for fish shell: envkernel.fish). It sets up an Alpine Linux chroot with all the dependencies by using pmbootstrap internally, exports the environment variables to use the right cross compiler and creates an alias to make. This means, whenever you type make after sourcing that script, it will actually run make in the chroot. Please try the script out once to make sure everything is working as expected:

(enter the directory where you have cloned the linux kernel source)
$ cd ~/code/linux
$ source ~/code/pmbootstrap/helpers/envkernel.sh
Initializing Alpine chroot (details: 'pmbootstrap log')
pmbootstrap envkernel.sh activated successfully.
 * kernel source:  /home/user/code/linux
 * output folder:  /home/user/code/linux/.output
 * architecture:   arm (samsung-i9100 is armhf)
 * aliases: make, kernelroot, pmbootstrap, pmbroot (see 'type make' etc.)

envkernel.sh has grown to be quite powerful, read more about it at the compiling kernels with envkernel.sh wiki page.

Reminder

Please double check with the following checklist that you meet all the requirements before proceeding further. If you need any help with the above, just ask in the channel or on GitLab.


Device Tree Source

The DTS file describes how the peripherals of the device are connected to the SoC. Here is a short description of the process you are guided through here.

Before start

If you are having trouble, ask in the channel. When it comes to DT, it's best to start with one that already works. Look under arch/{arm,arm64}/boot/dts in the kernel source code for relevant files (browse online) with your device's codename. You may want to use source code host services (GitLab, github, etc.) to search for your dts for your specific SoC.

The general file naming is $chipset_vendor-$chipset-$vendor-$codename.dts. Examples:

  • qcom-msm8974-lge-nexus5-hammerhead.dts
  • qcom-msm8974-sony-xperia-honami.dts
  • qcom-apq8064-sony-xperia-yuga.dts
  • qcom-apq8064-asus-nexus7-flo.dts

When you don't have a result, try to find a dts file with the same chipset as your device (e.g. msm8974). Try to create a new one for your device based on that by creating a patch for linux-postmarketos-stable.

If there is not even a dts file for the same chipset, you need to create one from scratch (no idea how to do that, good luck and please extend the wiki). If you have no idea but the faith, you may check the #Other guides about DT at the page below to pick up some ideas.

Start with an existing file

Now we have got source DT qcom-apq8064-asus-nexus7-flo.dts for our target device apq8064-lge-nexus4-mako. Copy it and rename to your device name.

Example for copying an existing file:

$ cd ~/code/linux/arch/arm/boot/dts
$ cp qcom-apq8064-asus-nexus7-flo.dts qcom-apq8064-lge-nexus4-mako.dts

Let's commit that directly, so it will be easy to see what you have changed later on by running git diff (adjust the description of the commit accordingly):

$ git add -A
$ git commit -m "Starting with: qcom-apq8064-asus-nexus7-flo.dts"

Adjust model and compatible

Open the DTS file in an editor and replace the model and compatible strings at the top of the file:

// SPDX-License-Identifier: GPL-2.0-only
#include "qcom-apq8064-v2.0.dtsi"
#include <dt-bindings/gpio/gpio.h>
#include <dt-bindings/input/input.h>
#include <dt-bindings/pinctrl/qcom,pmic-gpio.h>
/ {
	model = "Asus Nexus7(flo)";
	compatible = "asus,nexus7-flo", "qcom,apq8064";

// ...

In the example, we replace model with "LGE Nexus4 (mako)" and the first string after compatible with "lge,nexus4-mako" (we leave the second string in place, as this is the name of the SoC, which is the same).

And again, let's commit this change. It's recommended to commit after every change you make to the DTS files so you can revert easily to the last known working state if necessary:

$ git add -A
$ git commit -m "Adjusted model and compatible"

! caveat: The right compatible values can be found in downstream dts. You may however find something unexpected.

In the following example (sm-a300fu), msm8916-mtp is used, which will result in the wrong dts being selected unless you copy qcom,board-id = <0xCE08FF01 1>; as well. Unfortunately, this board-id is shared between several Samsung phones, but considering they only bundle the one dtb a particular model uses, we can be grateful there even is a board-id. A solution has not been decided upon yet. (18. 3. 2019)

// SPDX-License-Identifier: GPL-2.0-only
/dts-v1/;

#include "msm8916-samsung-a300fu.dtsi"

/ {
	model = "Samsung Galaxy A3 sm-a300fu";
	compatible = "qcom,msm8916-mtp", "qcom,msm8916", "qcom,mtp";
	qcom,board-id = <0xCE08FF01 1>;
};

Finally, if you see regulators defined in your dts, remove them. They most likely won't work on your device, and can potentially damage your device/peripherals if set to the wrong values. An example would be: https://github.com/torvalds/linux/blob/master/arch/arm/boot/dts/qcom/qcom-msm8960-cdp.dts#L39-L273

Minimal booting version

The next steps are done to try an run a minimal mainline Linux kernel on your device. Almost nothing will work at this point, except for initializing RAM and serial output. We will work our way to enabling one feature after another throughout the process.


Adjust DTS Makefile

Open arch/{arm,arm64}/boot/dts/Makefile in an editor and add one line for your new device tree. First find the right location by searching for the prefix in the file (e.g. all qcom- lines are in the dtb-$(CONFIG_ARCH_QCOM) += \ section). Then insert the name of your dts file there, but use dtb as extension and don't forget the backslash \ at the end of the line. Save, check the diff (it should be similar to the one below) and commit your change:

$ git diff
diff --git a/arch/{arm,arm64}/boot/dts/Makefile b/arch/{arm,arm64}/boot/dts/Makefile
index 3b4cc1b64a1e..af74d95b63fa 100644
--- a/arch/{arm,arm64}/boot/dts/Makefile
+++ b/arch/{arm,arm64}/boot/dts/Makefile
@@ -756,6 +756,7 @@ dtb-$(CONFIG_ARCH_QCOM) += \
        qcom-apq8064-ifc6410.dtb \
        qcom-apq8064-sony-xperia-yuga.dtb \
        qcom-apq8064-asus-nexus7-flo.dtb \
+       qcom-apq8064-lge-nexus4-mako.dtb \
        qcom-apq8074-dragonboard.dtb \
        qcom-apq8084-ifc6540.dtb \
        qcom-apq8084-mtp.dtb \
$ git add arch/{arm,arm64}/boot/dts/Makefile
$ git commit -m "Enable my new DTS in the Makefile"  # See Submitting_Patches for how to write commit messages


Testing

Defconfig and compilation

Look at https://github.com/torvalds/linux/tree/master/arch/{arm,arm64}/configs to see what defconfig you should use. Generally, for Qualcomm devices qcom_defconfig is used. If you are confused, ask on in the channel for what defconfig to use. Make a .config file with the following:

$ cd ~/code/linux
$ source ~/code/pmbootstrap/helpers/envkernel.sh
$ make qcom_defconfig
$ make -j5

there is also a defconfig in linux-postmarketos-qcom that used by postmarketOS, you can run pmbootstrap kconfig edit postmarketos-qcom to inspect it. After you get the correct defconfig for your device:

  1. adjust the kernel config to add the drivers for the device if they are not enabled yet.
  2. Set as many drivers to build as external module as possible so the main vmlinuz filesize doesn't increase too much.
  3. Replace qcom with the kernel config you want to modify (see ls aports/main/linux-postmarketos-*).


Verification of your DTS

Before you upload the kernel to the device, it's good practice to check, if the DTS file is valid.

You'll need to grep output of the command and look for warnings related to your device DTS file.

Icon WARNING: Currently you have to revert revert of commit "Revert "kbuild: Enable DT schema checks for %.dtb targets"" to get the checks functional on DTB
$ pmbootstrap chroot -- apk update && pmbootstrap chroot -- apk add git python3-dev py3-pip swig && pmbootstrap chroot -- pip3 install dtschema
$ make qcom/sdm845-oneplus-fajita.dtb # work since 5.16 kernels, DTB can be found in the directory arch/{arm,arm64}/boot/dts/

Deal with packages

Init

Note Check if any devices based on your SoC have been mainlined using pmbootstrap. They are usually located in the aports/device/{community, main} directories. If there are any based on your SoC, model your APKBUILDs like the mainlined version

We will now use pmbootstrap and your port in pmaports to our advantage in getting mainline running on your device. Obviously everyone's device is different, so your mileage may vary. It might also be helpful seeing an example of what to expect: https://gitlab.com/LogicalErzor/mainline-kernel-pmos-aports/-/commit/3f3401fc0c6c1c823c464869cd5e0edd72c6c07c

In general, you would need to create a new kernel package for your device. You can do following to create a new kernel package:

  1. copy a existing kernel package under <workdir>/cache_git/device/{community testing}/linux-*, rename it to your device model, and place it under testing folder mentioned above.
  2. create a new package with pmbootstrap. You would need to create a device package and a linux-*<package> if your device is not in pmaports.

After creating kernel package, specifying device to use the new kernel package (or existing mainline kernel package), use the command below to build the kernel:

pmbootstrap build --envkernel linux-postmarketos-<soc> # or linux-<brand>-<device> which is your package name

Once you have set these basic parameters, it's time to see if it'll boot.

Building and Running

Run pmbootstrap install. This will fetch the kernel source, compile it, and package it for your device. pmbootstrap flasher flash_kernel should get the mainline kernel onto your device

Rebuilds

In order to rebuild, run pmbootstrap zap -p. This will zap your compiled kernel, and now you can run pmbootstrap install.

Prepare for production

First, open both your device-<vendor>-<codename> (referred to as "DEVICE") and linux-<vendor>-<codename> (referred to as "LINUX") directories. We will be working in them heavily.

Do the following in order:

  • Open DEVICE/APKBUILD and LINUX/APKBUILD and up the pkgrel version by 1. Save the file and run pmbootstrap checksum device-<vendor>-<codename>
  • Open LINUX/APKBUILD and change the following:
    • pkgver=5.16 # mainline kernel version that you are using
    • pkgdesc=... # include mainline in the string
    • change makedepends to the following: makedepends="bash bc bison devicepkg-dev flex openssl-dev perl gmp-dev mpc1-dev mpfr-dev findutils postmarketos-installkernel". If there are any errors during pmbootstrap install or pmbootstrap build --force then you will most likely be editing this
    • _repository="linux"
    • _commit="<kernel commit number>"
    • in source="" change the following:
    • replace . downstreamkernel_prepare with cp "$srcdir/config-$_flavor.$arch" .config
    • make package() like the following:
package() {
	mkdir -p "$pkgdir"/boot
	make zinstall modules_install dtbs_install \
		ARCH="$_carch" \
		INSTALL_MOD_STRIP=1 \
		INSTALL_PATH="$pkgdir"/boot \
		INSTALL_MOD_PATH="$pkgdir" \
		INSTALL_DTBS_PATH="$pkgdir/usr/share/dtb"

	install -D "$builddir"/include/config/kernel.release \
		"$pkgdir/usr/share/kernel/$_flavor/kernel.release"
}
    • Remove the huge GCC check (Don't need that for mainline)
    • Save the file and run pmbootstrap checksum linux-<vendor>-<codename>
  • Look at DEVICE/deviceinfo and see if any of the variable listed in https://gitlab.com/postmarketOS/boot-deploy/-/blob/master/boot-deploy-functions.sh are needed for your device. For example, for the MSM8960 SoC device, it needs deviceinfo_dtb and deviceinfo_append_dtb as the bootloader doesn't support dtbs
  • Replace the config file in your LINUX folder with the .config file. Make sure it's the same name and run pmbootstrap checksum linux-<vendor>-<codename>


See also

General

Misc


Other guides


Device specific

SoC-specific

Display