User:Knuxify/Draft:Qualcomm/Adding a new SoC to mainline Linux: Difference between revisions
No edit summary |
|||
| (2 intermediate revisions by the same user not shown) | |||
| Line 35: | Line 35: | ||
In order to begin mainlining your SoC, you need to have the following bits of information: | In order to begin mainlining your SoC, you need to have the following bits of information: | ||
* The '''codenames''' of the SoC. Qualcomm SoCs appear to have two codenames<ref>The names of these codenames have been sourced from [https://wiki.postmarketos.org/wiki/Qualcomm_Snapdragon_8_Gen_1/8%2B_Gen_1/7%2B_Gen_2_(SM8450/SM8475/SM7475) the postmarketOS wiki page for the Snapdragon 8 Gen 1, not sure where that is sourced from.</ref>: | * The '''codenames''' of the SoC. Qualcomm SoCs appear to have two codenames<ref>The names of these codenames have been sourced from [https://wiki.postmarketos.org/wiki/Qualcomm_Snapdragon_8_Gen_1/8%2B_Gen_1/7%2B_Gen_2_(SM8450/SM8475/SM7475) the postmarketOS wiki page for the Snapdragon 8 Gen 1], not sure where that is sourced from.</ref>: | ||
** '''Board codename''' ("DTS nickname"?) - you'll find it in the driver names on the device, as well as in the main compatible string of the devicetree. This is what's used across most of the downstream kernel. | ** '''Board codename''' ("DTS nickname"?) - you'll find it in the driver names on the device, as well as in the main compatible string of the devicetree. This is what's used across most of the downstream kernel. | ||
** '''Platform codename''' - presumably shared between multiple SoCs from the same family. | ** '''Platform codename''' - presumably shared between multiple SoCs from the same family. | ||
** Since SM7635 ("Volcano"/"Milos"), Qualcomm | ** Since SM7635 ("Volcano"/"Milos") getting upstreamed, Qualcomm appears to have changed their policy around driver/compatible naming in mainline and now expects developers to use the platform codename instead of the model number<ref>https://lore.kernel.org/lkml/[email protected]/</ref>. If you're unsure of the platform codename for your device, you can send the Qualcomm folks an email and ask them directly<ref>I ended up getting [https://lore.kernel.org/lkml/[email protected]/ a public reply to my query for SM7435].</ref>, or just use the model name for now and let them correct you (as was done in the Milos case). | ||
* A copy of the '''downstream kernel'''; preferably the one for your device, but you can also use the kernel from another device with the same SoC, or - as a last resort - any kernel with the relevant SoC drivers (hint: search by downstream codename). | * A copy of the '''downstream kernel'''; preferably the one for your device, but you can also use the kernel from another device with the same SoC, or - as a last resort - any kernel with the relevant SoC drivers (hint: search by downstream codename). | ||
* A copy of the '''<code>qcom_proprietary_devicetree</code>''' or similar repo with the DTSI source files (because they're not in the kernel repo for whatever reason...). Search for <code>(downstream codename).dtsi</code> on GitHub and you'll find the right repository eventually. | * A copy of the '''<code>qcom_proprietary_devicetree</code>''' or similar repo with the DTSI source files (because they're not in the kernel repo for whatever reason...). Search for <code>(downstream codename).dtsi</code> on GitHub and you'll find the right repository eventually. | ||
| Line 70: | Line 70: | ||
<syntaxhighlight lang="makefile"> | <syntaxhighlight lang="makefile"> | ||
obj-$( | obj-$(CONFIG_SM_GCC_CODENAME) += CODENAME-gcc.o | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Copy your downstream driver to <code>driver/clk/qcom/CODENAME-gcc.c</code>. | |||
Paste the initialization code from another GCC driver (<syntaxhighlight inline lang="c">static struct platform_driver gcc_smXXXX_driver</syntaxhighlight> and onwards.) | Paste the initialization code from another GCC driver (<syntaxhighlight inline lang="c">static struct platform_driver gcc_smXXXX_driver</syntaxhighlight> and onwards.) | ||
{{todo|There are some missing struct members, these can be ommited. IIRC one has a counterpart in mainline but I don't remember which one... revisit this, maybe?}} | |||
=== Interconnect driver === | |||
TODO figure out what the interconnect actually does. | |||
Similar to clocks, interconnects are nearly the same as in downstream, but need some changes. | |||
Add a Kconfig option and a Makefile entry in <code>drivers/interconnect/qcom/{Kconfig,Makefile}</code> (see how the other drivers do it). Then, copy your interconnect driver to <code>drivers/interconnect/qcom/codename.c</code>. | |||
'''Do not copy the accompanying header file.''' Mainline stopped using static IDs for ICC nodes as of 2025-10; you'll need to convert your driver. | |||
* In every instance of <code>qcom_icc_node</code>: | |||
** Remove the <code>.id</code> member; | |||
** Replace <code>.links</code> with <code>.link-nodes</code> containing a list with pointers to a qcom_icc_desc. To figure out what to point to - see <code>static struct qcom_icc_node *XXXXXX_nodes[] = {</code> structs - the name will be the same. | |||
''See https://lore.kernel.org/all/[email protected]/ for an example. Ignore the part where they add <code>alloc_dyn_id</code>, that was removed in another commit as dynamic IDs are now the only option.'' | |||
=== TLMM/pinctrl === | |||
Driver is in drivers/pinctrl/qcom. | |||
Downstream driver is split into a .c file and a .h file; mainline has them both in the .c file. TODO I don't remember exactly how I arrived at the mainline driver... | |||
* Replace <code>MSM_GPIO_PIN_FUNCTION(gpio)</code> with <code>MSM_PIN_FUNCTION(gpio)</code> | |||
* Replace the probe and platform_device stuff with the same stuff copied from another driver in mainline | |||
== Porting the PMIC(s) == | == Porting the PMIC(s) == | ||
Latest revision as of 18:36, 28 May 2026
| 🚧 | This page is a work-in-progress. Some information contained within may be inaccurate or incomplete.
In particular: Currently in the middle of finding this out in real time :) |
This guide will cover the process of adding support for a recent (~2020 or newer, todo?) Qualcomm SoC into mainline Linux. Most of the information contained within is also applicable to older chips, though more manual effort may be needed to get these to run.
This guide was tested with the SM7435. Some details might be different for other SoCs. If you have any hints, please contribute!
High-level overview
| TODO: Some of this will have to be moved out to the top-level Qualcomm page |
The basic components of a Qualcomm SoC are:
- The GCC, or Global Clock Controller; as the name suggests, it is the primary clock controller for most components.
- The other clock controllers: CAMCC, DISPCC, GPUCC and VIDEOCC.
- The RPM, or Resource and Power Manager (RPMH or RPM Hardened in SDM845 and later); todo explanation from qcom glossary.
- Under the RPM is the RPM(H)CC (RPM clock controller) and RPM(H)PD (RPM power domains).
- QUP, or Qualcomm Universal Peripheral; the part of the SoC that provides I2C or SPI busses, as well as UART.
- TLMM (Top Level Mode Multiplexer); provides pinmux and GPIO pins.
- Many NOC interconnects (Network on Chip).
- A timer and an interrupt controller, both standard ARM parts.
These are just the most low-level components; from there, we can move on to the higher-level ones:
- Thermal monitoring sensor
- USB host controller and PHY
- Display controller and DSI PHY
- GPU
- etc.
This page will touch on mainline porting of most of these parts.
Finding information about your SoC
In order to begin mainlining your SoC, you need to have the following bits of information:
- The codenames of the SoC. Qualcomm SoCs appear to have two codenames[1]:
- Board codename ("DTS nickname"?) - you'll find it in the driver names on the device, as well as in the main compatible string of the devicetree. This is what's used across most of the downstream kernel.
- Platform codename - presumably shared between multiple SoCs from the same family.
- Since SM7635 ("Volcano"/"Milos") getting upstreamed, Qualcomm appears to have changed their policy around driver/compatible naming in mainline and now expects developers to use the platform codename instead of the model number[2]. If you're unsure of the platform codename for your device, you can send the Qualcomm folks an email and ask them directly[3], or just use the model name for now and let them correct you (as was done in the Milos case).
- A copy of the downstream kernel; preferably the one for your device, but you can also use the kernel from another device with the same SoC, or - as a last resort - any kernel with the relevant SoC drivers (hint: search by downstream codename).
- A copy of the
qcom_proprietary_devicetreeor similar repo with the DTSI source files (because they're not in the kernel repo for whatever reason...). Search for(downstream codename).dtsion GitHub and you'll find the right repository eventually. - An extracted DTB from your device. Dump this from a running device using FDT (todo: instructions, would probably be good on a generic page, maybe subpage of Devicetree)?
- Find a similar SoC that is already supported. Usually flagship SoCs are available in mainline; try to find a flagship from around the same time as the SoC you're mainlining. Find its DTSIs as well; then you can compare the differences between downstream and mainline for the upstreamed SoC, and correlate them with differences in your SoC. You'll also be able to check the other SoC's drivers and use them as a base for your own drivers.
Adding the DTSI
todo
Porting individual parts
Clock controllers
On recent Qualcomm SoCs, the downstream kernel uses the mainline Qualcomm clock driver with only some vendor-specific quirks. This means that the clock drivers and their relevant headers can pretty much be copied verbatim from downstream, with some slight modifications.
First, create the GCC driver. Open driver/clk/qcom/Kconfig and add the relevant Kconfig option for your SoC (remember to keep it ordered alphabetically):
config SM_GCC_xxxx
tristate "SMxxxx Global Clock Controller"
depends on ARM64 || COMPILE_TEST
select QCOM_GDSC
help
Support for the global clock controller on SMxxxx devices.
Say Y if you want to use peripheral devices such as UART,
SPI, I2C, USB, SD/UFS, PCIe etc.
Open driver/clk/qcom/Makefile and add the relevant entry:
obj-$(CONFIG_SM_GCC_CODENAME) += CODENAME-gcc.o
Copy your downstream driver to driver/clk/qcom/CODENAME-gcc.c.
Paste the initialization code from another GCC driver (static struct platform_driver gcc_smXXXX_driver and onwards.)
| TODO: There are some missing struct members, these can be ommited. IIRC one has a counterpart in mainline but I don't remember which one... revisit this, maybe? |
Interconnect driver
TODO figure out what the interconnect actually does.
Similar to clocks, interconnects are nearly the same as in downstream, but need some changes.
Add a Kconfig option and a Makefile entry in drivers/interconnect/qcom/{Kconfig,Makefile} (see how the other drivers do it). Then, copy your interconnect driver to drivers/interconnect/qcom/codename.c.
Do not copy the accompanying header file. Mainline stopped using static IDs for ICC nodes as of 2025-10; you'll need to convert your driver.
- In every instance of
qcom_icc_node:- Remove the
.idmember; - Replace
.linkswith.link-nodescontaining a list with pointers to a qcom_icc_desc. To figure out what to point to - seestatic struct qcom_icc_node *XXXXXX_nodes[] = {structs - the name will be the same.
- Remove the
See https://lore.kernel.org/all/[email protected]/ for an example. Ignore the part where they add alloc_dyn_id, that was removed in another commit as dynamic IDs are now the only option.
TLMM/pinctrl
Driver is in drivers/pinctrl/qcom.
Downstream driver is split into a .c file and a .h file; mainline has them both in the .c file. TODO I don't remember exactly how I arrived at the mainline driver...
- Replace
MSM_GPIO_PIN_FUNCTION(gpio)withMSM_PIN_FUNCTION(gpio) - Replace the probe and platform_device stuff with the same stuff copied from another driver in mainline
Porting the PMIC(s)
Qualcomm devices use multiple PMICs for different purposes. Often, the PMIC is paired with an SoC or series of SoCs.
References
- ↑ The names of these codenames have been sourced from the postmarketOS wiki page for the Snapdragon 8 Gen 1, not sure where that is sourced from.
- ↑ https://lore.kernel.org/lkml/[email protected]/
- ↑ I ended up getting a public reply to my query for SM7435.