Skip to content
Snippets Groups Projects
Commit c6e1e521 authored by Guido Gunther's avatar Guido Gunther :zzz: Committed by Angus Ainslie (Purism)
Browse files

soc: imx: Try harder to get imx8mq SoC revisions


The mainline ATF doesn't currently support the FSL_SIP_GET_SOC_INFO call
nor does it have the code to identify different imx8mq SOC revisions so
mimic what NXPs ATF does here.

As a fallback use ATF so we can identify new revisions once it gains
support or when using NXPs ATF.

Signed-off-by: default avatarGuido Günther <agx@sigxcpu.org>
parent 5dfa5674
No related branches found
No related tags found
6 merge requests!101Adjust the pin control register values of each SDA and SCL pin,!82USB: Add USB_QUIRK_RESET_RESUME quirk for Microchip USB2642,!71Make I2C1 operate at 387kHz,!66Purism redpine driver,!54Drop capacity,!44WIP power: bq25890_charger: Indicate charging state
......@@ -272,6 +272,18 @@ soc@0 {
ranges = <0x0 0x0 0x0 0x3e000000>;
dma-ranges = <0x40000000 0x0 0x40000000 0xc0000000>;
bus@00000000 { /* ROM */
compatible = "simple-bus";
#address-cells = <1>;
#size-cells = <1>;
ranges = <0x00000000 0x00000000 0x20000>;
rom@00000000 {
compatible = "fsl,imx8mq-bootrom";
reg = <0x00000000 0x1e800>;
};
};
bus@30000000 { /* AIPS1 */
compatible = "fsl,imx8mq-aips-bus", "simple-bus";
#address-cells = <1>;
......
......@@ -3,6 +3,7 @@
* Copyright 2019 NXP.
*/
#include <linux/arm-smccc.h>
#include <linux/init.h>
#include <linux/io.h>
#include <linux/of_address.h>
......@@ -11,42 +12,82 @@
#include <linux/platform_device.h>
#include <linux/of.h>
#define REV_A0 0x10
#define REV_B0 0x20
#define REV_B1 0x21
#define IMX8MQ_SW_INFO_A0 0x800
#define IMX8MQ_SW_INFO_B0 0x83C
#define IMX8MQ_SW_INFO_B1 0x40
#define IMX8MQ_SW_MAGIC_B1 0xff0055aa
/* Same as ANADIG_DIGPROG_IMX7D */
#define ANADIG_DIGPROG_IMX8MM 0x800
#define FSL_SIP_GET_SOC_INFO 0xc2000006
struct imx8_soc_data {
char *name;
u32 (*soc_revision)(void);
};
static u32 __init imx8mq_soc_revision(void)
static u32 __init imx8mq_soc_revision_atf(void)
{
struct arm_smccc_res res = { 0 };
arm_smccc_smc(FSL_SIP_GET_SOC_INFO, 0, 0, 0, 0, 0, 0, 0, &res);
/*
* Bit [23:16] is the silicon ID
* Bit[7:4] is the base layer revision,
* Bit[3:0] is the metal layer revision
* e.g. 0x10 stands for Tapeout 1.0
*/
return res.a0 & 0xff;
}
static u32 __init imx8mq_soc_magic_node(const char *node, u32 offset)
{
struct device_node *np;
void __iomem *ocotp_base;
void __iomem *base;
u32 magic;
u32 rev = 0;
np = of_find_compatible_node(NULL, NULL, "fsl,imx8mq-ocotp");
np = of_find_compatible_node(NULL, NULL, node);
if (!np)
goto out;
return 0;
base = of_iomap(np, 0);
WARN_ON(!base);
ocotp_base = of_iomap(np, 0);
WARN_ON(!ocotp_base);
magic = readl_relaxed(base + offset);
iounmap(base);
of_node_put(np);
return magic;
}
magic = readl_relaxed(ocotp_base + IMX8MQ_SW_INFO_B1);
static u32 __init imx8mq_soc_revision(void)
{
u32 magic;
/* B1 revision identified by ocotop */
magic = imx8mq_soc_magic_node("fsl,imx8mq-ocotp", IMX8MQ_SW_INFO_B1);
if (magic == IMX8MQ_SW_MAGIC_B1)
rev = REV_B1;
return REV_B1;
iounmap(ocotp_base);
/* B0 identified by bootrom */
magic = imx8mq_soc_magic_node("fsl,imx8mq-bootrom", IMX8MQ_SW_INFO_B0);
if ((magic & 0xff) == REV_B0)
return REV_B0;
out:
of_node_put(np);
return rev;
/* A0 identified by anatop */
magic = imx8mq_soc_magic_node("fsl,imx8mq-anatop", IMX8MQ_SW_INFO_A0);
if ((magic & 0xff) == REV_A0)
return REV_A0;
/* Read revision from ATF as fallback */
magic = imx8mq_soc_revision_atf();
if (magic != 0xff)
return magic;
return 0;
}
static u32 __init imx8mm_soc_revision(void)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment