1 // SPDX-License-Identifier: GPL-2.0
6 #include <linux/init.h>
8 #include <linux/of_address.h>
9 #include <linux/slab.h>
10 #include <linux/sys_soc.h>
11 #include <linux/platform_device.h>
12 #include <linux/arm-smccc.h>
17 #define IMX8MQ_SW_INFO_B1 0x40
18 #define IMX8MQ_SW_MAGIC_B1 0xff0055aa
20 #define IMX_SIP_GET_SOC_INFO 0xc2000006
22 #define OCOTP_UID_LOW 0x410
23 #define OCOTP_UID_HIGH 0x420
25 /* Same as ANADIG_DIGPROG_IMX7D */
26 #define ANADIG_DIGPROG_IMX8MM 0x800
28 struct imx8_soc_data {
30 u32 (*soc_revision)(void);
35 #ifdef CONFIG_HAVE_ARM_SMCCC
36 static u32 imx8mq_soc_revision_from_atf(void)
38 struct arm_smccc_res res;
40 arm_smccc_smc(IMX_SIP_GET_SOC_INFO, 0, 0, 0, 0, 0, 0, 0, &res);
42 if (res.a0 == SMCCC_RET_NOT_SUPPORTED)
48 static inline u32 imx8mq_soc_revision_from_atf(void) { return 0; };
51 static u32 __init imx8mq_soc_revision(void)
53 struct device_node *np;
54 void __iomem *ocotp_base;
58 np = of_find_compatible_node(NULL, NULL, "fsl,imx8mq-ocotp");
62 ocotp_base = of_iomap(np, 0);
66 * SOC revision on older imx8mq is not available in fuses so query
67 * the value from ATF instead.
69 rev = imx8mq_soc_revision_from_atf();
71 magic = readl_relaxed(ocotp_base + IMX8MQ_SW_INFO_B1);
72 if (magic == IMX8MQ_SW_MAGIC_B1)
76 soc_uid = readl_relaxed(ocotp_base + OCOTP_UID_HIGH);
78 soc_uid |= readl_relaxed(ocotp_base + OCOTP_UID_LOW);
86 static void __init imx8mm_soc_uid(void)
88 void __iomem *ocotp_base;
89 struct device_node *np;
91 np = of_find_compatible_node(NULL, NULL, "fsl,imx8mm-ocotp");
95 ocotp_base = of_iomap(np, 0);
98 soc_uid = readl_relaxed(ocotp_base + OCOTP_UID_HIGH);
100 soc_uid |= readl_relaxed(ocotp_base + OCOTP_UID_LOW);
106 static u32 __init imx8mm_soc_revision(void)
108 struct device_node *np;
109 void __iomem *anatop_base;
112 np = of_find_compatible_node(NULL, NULL, "fsl,imx8mm-anatop");
116 anatop_base = of_iomap(np, 0);
117 WARN_ON(!anatop_base);
119 rev = readl_relaxed(anatop_base + ANADIG_DIGPROG_IMX8MM);
121 iounmap(anatop_base);
129 static const struct imx8_soc_data imx8mq_soc_data = {
131 .soc_revision = imx8mq_soc_revision,
134 static const struct imx8_soc_data imx8mm_soc_data = {
136 .soc_revision = imx8mm_soc_revision,
139 static const struct imx8_soc_data imx8mn_soc_data = {
141 .soc_revision = imx8mm_soc_revision,
144 static const struct imx8_soc_data imx8mp_soc_data = {
146 .soc_revision = imx8mm_soc_revision,
149 static const struct of_device_id imx8_soc_match[] = {
150 { .compatible = "fsl,imx8mq", .data = &imx8mq_soc_data, },
151 { .compatible = "fsl,imx8mm", .data = &imx8mm_soc_data, },
152 { .compatible = "fsl,imx8mn", .data = &imx8mn_soc_data, },
153 { .compatible = "fsl,imx8mp", .data = &imx8mp_soc_data, },
157 #define imx8_revision(soc_rev) \
159 kasprintf(GFP_KERNEL, "%d.%d", (soc_rev >> 4) & 0xf, soc_rev & 0xf) : \
162 static int __init imx8_soc_init(void)
164 struct soc_device_attribute *soc_dev_attr;
165 struct soc_device *soc_dev;
166 const struct of_device_id *id;
168 const struct imx8_soc_data *data;
171 soc_dev_attr = kzalloc(sizeof(*soc_dev_attr), GFP_KERNEL);
175 soc_dev_attr->family = "Freescale i.MX";
177 ret = of_property_read_string(of_root, "model", &soc_dev_attr->machine);
181 id = of_match_node(imx8_soc_match, of_root);
189 soc_dev_attr->soc_id = data->name;
190 if (data->soc_revision)
191 soc_rev = data->soc_revision();
194 soc_dev_attr->revision = imx8_revision(soc_rev);
195 if (!soc_dev_attr->revision) {
200 soc_dev_attr->serial_number = kasprintf(GFP_KERNEL, "%016llX", soc_uid);
201 if (!soc_dev_attr->serial_number) {
206 soc_dev = soc_device_register(soc_dev_attr);
207 if (IS_ERR(soc_dev)) {
208 ret = PTR_ERR(soc_dev);
209 goto free_serial_number;
212 pr_info("SoC: %s revision %s\n", soc_dev_attr->soc_id,
213 soc_dev_attr->revision);
215 if (IS_ENABLED(CONFIG_ARM_IMX_CPUFREQ_DT))
216 platform_device_register_simple("imx-cpufreq-dt", -1, NULL, 0);
221 kfree(soc_dev_attr->serial_number);
223 if (strcmp(soc_dev_attr->revision, "unknown"))
224 kfree(soc_dev_attr->revision);
229 device_initcall(imx8_soc_init);