Linux Audio

Check our new training course

Loading...
v5.9
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 * Copyright 2019 NXP.
  4 */
  5
  6#include <linux/init.h>
  7#include <linux/io.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>
 13#include <linux/of.h>
 
 14
 15#define REV_B1				0x21
 16
 17#define IMX8MQ_SW_INFO_B1		0x40
 18#define IMX8MQ_SW_MAGIC_B1		0xff0055aa
 19
 20#define IMX_SIP_GET_SOC_INFO		0xc2000006
 21
 22#define OCOTP_UID_LOW			0x410
 23#define OCOTP_UID_HIGH			0x420
 24
 25#define IMX8MP_OCOTP_UID_OFFSET		0x10
 26
 27/* Same as ANADIG_DIGPROG_IMX7D */
 28#define ANADIG_DIGPROG_IMX8MM	0x800
 29
 30struct imx8_soc_data {
 31	char *name;
 32	u32 (*soc_revision)(void);
 33};
 34
 35static u64 soc_uid;
 36
 37#ifdef CONFIG_HAVE_ARM_SMCCC
 38static u32 imx8mq_soc_revision_from_atf(void)
 39{
 40	struct arm_smccc_res res;
 41
 42	arm_smccc_smc(IMX_SIP_GET_SOC_INFO, 0, 0, 0, 0, 0, 0, 0, &res);
 43
 44	if (res.a0 == SMCCC_RET_NOT_SUPPORTED)
 45		return 0;
 46	else
 47		return res.a0 & 0xff;
 48}
 49#else
 50static inline u32 imx8mq_soc_revision_from_atf(void) { return 0; };
 51#endif
 52
 53static u32 __init imx8mq_soc_revision(void)
 54{
 55	struct device_node *np;
 56	void __iomem *ocotp_base;
 57	u32 magic;
 58	u32 rev;
 
 59
 60	np = of_find_compatible_node(NULL, NULL, "fsl,imx8mq-ocotp");
 61	if (!np)
 62		return 0;
 63
 64	ocotp_base = of_iomap(np, 0);
 65	WARN_ON(!ocotp_base);
 
 
 
 
 
 
 
 66
 67	/*
 68	 * SOC revision on older imx8mq is not available in fuses so query
 69	 * the value from ATF instead.
 70	 */
 71	rev = imx8mq_soc_revision_from_atf();
 72	if (!rev) {
 73		magic = readl_relaxed(ocotp_base + IMX8MQ_SW_INFO_B1);
 74		if (magic == IMX8MQ_SW_MAGIC_B1)
 75			rev = REV_B1;
 76	}
 77
 78	soc_uid = readl_relaxed(ocotp_base + OCOTP_UID_HIGH);
 79	soc_uid <<= 32;
 80	soc_uid |= readl_relaxed(ocotp_base + OCOTP_UID_LOW);
 81
 
 
 82	iounmap(ocotp_base);
 83	of_node_put(np);
 84
 85	return rev;
 86}
 87
 88static void __init imx8mm_soc_uid(void)
 89{
 90	void __iomem *ocotp_base;
 91	struct device_node *np;
 92	u32 offset = of_machine_is_compatible("fsl,imx8mp") ?
 93		     IMX8MP_OCOTP_UID_OFFSET : 0;
 94
 95	np = of_find_compatible_node(NULL, NULL, "fsl,imx8mm-ocotp");
 96	if (!np)
 97		return;
 98
 99	ocotp_base = of_iomap(np, 0);
100	WARN_ON(!ocotp_base);
101
102	soc_uid = readl_relaxed(ocotp_base + OCOTP_UID_HIGH + offset);
103	soc_uid <<= 32;
104	soc_uid |= readl_relaxed(ocotp_base + OCOTP_UID_LOW + offset);
105
106	iounmap(ocotp_base);
107	of_node_put(np);
108}
109
110static u32 __init imx8mm_soc_revision(void)
111{
112	struct device_node *np;
113	void __iomem *anatop_base;
114	u32 rev;
115
116	np = of_find_compatible_node(NULL, NULL, "fsl,imx8mm-anatop");
117	if (!np)
118		return 0;
119
120	anatop_base = of_iomap(np, 0);
121	WARN_ON(!anatop_base);
122
123	rev = readl_relaxed(anatop_base + ANADIG_DIGPROG_IMX8MM);
124
125	iounmap(anatop_base);
126	of_node_put(np);
127
128	imx8mm_soc_uid();
129
130	return rev;
131}
132
133static const struct imx8_soc_data imx8mq_soc_data = {
134	.name = "i.MX8MQ",
135	.soc_revision = imx8mq_soc_revision,
136};
137
138static const struct imx8_soc_data imx8mm_soc_data = {
139	.name = "i.MX8MM",
140	.soc_revision = imx8mm_soc_revision,
141};
142
143static const struct imx8_soc_data imx8mn_soc_data = {
144	.name = "i.MX8MN",
145	.soc_revision = imx8mm_soc_revision,
146};
147
148static const struct imx8_soc_data imx8mp_soc_data = {
149	.name = "i.MX8MP",
150	.soc_revision = imx8mm_soc_revision,
151};
152
153static __maybe_unused const struct of_device_id imx8_soc_match[] = {
154	{ .compatible = "fsl,imx8mq", .data = &imx8mq_soc_data, },
155	{ .compatible = "fsl,imx8mm", .data = &imx8mm_soc_data, },
156	{ .compatible = "fsl,imx8mn", .data = &imx8mn_soc_data, },
157	{ .compatible = "fsl,imx8mp", .data = &imx8mp_soc_data, },
158	{ }
159};
160
161#define imx8_revision(soc_rev) \
162	soc_rev ? \
163	kasprintf(GFP_KERNEL, "%d.%d", (soc_rev >> 4) & 0xf,  soc_rev & 0xf) : \
164	"unknown"
165
166static int __init imx8_soc_init(void)
167{
168	struct soc_device_attribute *soc_dev_attr;
169	struct soc_device *soc_dev;
170	const struct of_device_id *id;
171	u32 soc_rev = 0;
172	const struct imx8_soc_data *data;
173	int ret;
174
175	soc_dev_attr = kzalloc(sizeof(*soc_dev_attr), GFP_KERNEL);
176	if (!soc_dev_attr)
177		return -ENOMEM;
178
179	soc_dev_attr->family = "Freescale i.MX";
180
181	ret = of_property_read_string(of_root, "model", &soc_dev_attr->machine);
182	if (ret)
183		goto free_soc;
184
185	id = of_match_node(imx8_soc_match, of_root);
186	if (!id) {
187		ret = -ENODEV;
188		goto free_soc;
189	}
190
191	data = id->data;
192	if (data) {
193		soc_dev_attr->soc_id = data->name;
194		if (data->soc_revision)
195			soc_rev = data->soc_revision();
196	}
197
198	soc_dev_attr->revision = imx8_revision(soc_rev);
199	if (!soc_dev_attr->revision) {
200		ret = -ENOMEM;
201		goto free_soc;
202	}
203
204	soc_dev_attr->serial_number = kasprintf(GFP_KERNEL, "%016llX", soc_uid);
205	if (!soc_dev_attr->serial_number) {
206		ret = -ENOMEM;
207		goto free_rev;
208	}
209
210	soc_dev = soc_device_register(soc_dev_attr);
211	if (IS_ERR(soc_dev)) {
212		ret = PTR_ERR(soc_dev);
213		goto free_serial_number;
214	}
215
216	pr_info("SoC: %s revision %s\n", soc_dev_attr->soc_id,
217		soc_dev_attr->revision);
218
219	if (IS_ENABLED(CONFIG_ARM_IMX_CPUFREQ_DT))
220		platform_device_register_simple("imx-cpufreq-dt", -1, NULL, 0);
221
222	return 0;
223
224free_serial_number:
225	kfree(soc_dev_attr->serial_number);
226free_rev:
227	if (strcmp(soc_dev_attr->revision, "unknown"))
228		kfree(soc_dev_attr->revision);
229free_soc:
230	kfree(soc_dev_attr);
231	return ret;
232}
233device_initcall(imx8_soc_init);
v6.2
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 * Copyright 2019 NXP.
  4 */
  5
  6#include <linux/init.h>
  7#include <linux/io.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>
 13#include <linux/of.h>
 14#include <linux/clk.h>
 15
 16#define REV_B1				0x21
 17
 18#define IMX8MQ_SW_INFO_B1		0x40
 19#define IMX8MQ_SW_MAGIC_B1		0xff0055aa
 20
 21#define IMX_SIP_GET_SOC_INFO		0xc2000006
 22
 23#define OCOTP_UID_LOW			0x410
 24#define OCOTP_UID_HIGH			0x420
 25
 26#define IMX8MP_OCOTP_UID_OFFSET		0x10
 27
 28/* Same as ANADIG_DIGPROG_IMX7D */
 29#define ANADIG_DIGPROG_IMX8MM	0x800
 30
 31struct imx8_soc_data {
 32	char *name;
 33	u32 (*soc_revision)(void);
 34};
 35
 36static u64 soc_uid;
 37
 38#ifdef CONFIG_HAVE_ARM_SMCCC
 39static u32 imx8mq_soc_revision_from_atf(void)
 40{
 41	struct arm_smccc_res res;
 42
 43	arm_smccc_smc(IMX_SIP_GET_SOC_INFO, 0, 0, 0, 0, 0, 0, 0, &res);
 44
 45	if (res.a0 == SMCCC_RET_NOT_SUPPORTED)
 46		return 0;
 47	else
 48		return res.a0 & 0xff;
 49}
 50#else
 51static inline u32 imx8mq_soc_revision_from_atf(void) { return 0; };
 52#endif
 53
 54static u32 __init imx8mq_soc_revision(void)
 55{
 56	struct device_node *np;
 57	void __iomem *ocotp_base;
 58	u32 magic;
 59	u32 rev;
 60	struct clk *clk;
 61
 62	np = of_find_compatible_node(NULL, NULL, "fsl,imx8mq-ocotp");
 63	if (!np)
 64		return 0;
 65
 66	ocotp_base = of_iomap(np, 0);
 67	WARN_ON(!ocotp_base);
 68	clk = of_clk_get_by_name(np, NULL);
 69	if (IS_ERR(clk)) {
 70		WARN_ON(IS_ERR(clk));
 71		return 0;
 72	}
 73
 74	clk_prepare_enable(clk);
 75
 76	/*
 77	 * SOC revision on older imx8mq is not available in fuses so query
 78	 * the value from ATF instead.
 79	 */
 80	rev = imx8mq_soc_revision_from_atf();
 81	if (!rev) {
 82		magic = readl_relaxed(ocotp_base + IMX8MQ_SW_INFO_B1);
 83		if (magic == IMX8MQ_SW_MAGIC_B1)
 84			rev = REV_B1;
 85	}
 86
 87	soc_uid = readl_relaxed(ocotp_base + OCOTP_UID_HIGH);
 88	soc_uid <<= 32;
 89	soc_uid |= readl_relaxed(ocotp_base + OCOTP_UID_LOW);
 90
 91	clk_disable_unprepare(clk);
 92	clk_put(clk);
 93	iounmap(ocotp_base);
 94	of_node_put(np);
 95
 96	return rev;
 97}
 98
 99static void __init imx8mm_soc_uid(void)
100{
101	void __iomem *ocotp_base;
102	struct device_node *np;
103	u32 offset = of_machine_is_compatible("fsl,imx8mp") ?
104		     IMX8MP_OCOTP_UID_OFFSET : 0;
105
106	np = of_find_compatible_node(NULL, NULL, "fsl,imx8mm-ocotp");
107	if (!np)
108		return;
109
110	ocotp_base = of_iomap(np, 0);
111	WARN_ON(!ocotp_base);
112
113	soc_uid = readl_relaxed(ocotp_base + OCOTP_UID_HIGH + offset);
114	soc_uid <<= 32;
115	soc_uid |= readl_relaxed(ocotp_base + OCOTP_UID_LOW + offset);
116
117	iounmap(ocotp_base);
118	of_node_put(np);
119}
120
121static u32 __init imx8mm_soc_revision(void)
122{
123	struct device_node *np;
124	void __iomem *anatop_base;
125	u32 rev;
126
127	np = of_find_compatible_node(NULL, NULL, "fsl,imx8mm-anatop");
128	if (!np)
129		return 0;
130
131	anatop_base = of_iomap(np, 0);
132	WARN_ON(!anatop_base);
133
134	rev = readl_relaxed(anatop_base + ANADIG_DIGPROG_IMX8MM);
135
136	iounmap(anatop_base);
137	of_node_put(np);
138
139	imx8mm_soc_uid();
140
141	return rev;
142}
143
144static const struct imx8_soc_data imx8mq_soc_data = {
145	.name = "i.MX8MQ",
146	.soc_revision = imx8mq_soc_revision,
147};
148
149static const struct imx8_soc_data imx8mm_soc_data = {
150	.name = "i.MX8MM",
151	.soc_revision = imx8mm_soc_revision,
152};
153
154static const struct imx8_soc_data imx8mn_soc_data = {
155	.name = "i.MX8MN",
156	.soc_revision = imx8mm_soc_revision,
157};
158
159static const struct imx8_soc_data imx8mp_soc_data = {
160	.name = "i.MX8MP",
161	.soc_revision = imx8mm_soc_revision,
162};
163
164static __maybe_unused const struct of_device_id imx8_soc_match[] = {
165	{ .compatible = "fsl,imx8mq", .data = &imx8mq_soc_data, },
166	{ .compatible = "fsl,imx8mm", .data = &imx8mm_soc_data, },
167	{ .compatible = "fsl,imx8mn", .data = &imx8mn_soc_data, },
168	{ .compatible = "fsl,imx8mp", .data = &imx8mp_soc_data, },
169	{ }
170};
171
172#define imx8_revision(soc_rev) \
173	soc_rev ? \
174	kasprintf(GFP_KERNEL, "%d.%d", (soc_rev >> 4) & 0xf,  soc_rev & 0xf) : \
175	"unknown"
176
177static int __init imx8_soc_init(void)
178{
179	struct soc_device_attribute *soc_dev_attr;
180	struct soc_device *soc_dev;
181	const struct of_device_id *id;
182	u32 soc_rev = 0;
183	const struct imx8_soc_data *data;
184	int ret;
185
186	soc_dev_attr = kzalloc(sizeof(*soc_dev_attr), GFP_KERNEL);
187	if (!soc_dev_attr)
188		return -ENOMEM;
189
190	soc_dev_attr->family = "Freescale i.MX";
191
192	ret = of_property_read_string(of_root, "model", &soc_dev_attr->machine);
193	if (ret)
194		goto free_soc;
195
196	id = of_match_node(imx8_soc_match, of_root);
197	if (!id) {
198		ret = -ENODEV;
199		goto free_soc;
200	}
201
202	data = id->data;
203	if (data) {
204		soc_dev_attr->soc_id = data->name;
205		if (data->soc_revision)
206			soc_rev = data->soc_revision();
207	}
208
209	soc_dev_attr->revision = imx8_revision(soc_rev);
210	if (!soc_dev_attr->revision) {
211		ret = -ENOMEM;
212		goto free_soc;
213	}
214
215	soc_dev_attr->serial_number = kasprintf(GFP_KERNEL, "%016llX", soc_uid);
216	if (!soc_dev_attr->serial_number) {
217		ret = -ENOMEM;
218		goto free_rev;
219	}
220
221	soc_dev = soc_device_register(soc_dev_attr);
222	if (IS_ERR(soc_dev)) {
223		ret = PTR_ERR(soc_dev);
224		goto free_serial_number;
225	}
226
227	pr_info("SoC: %s revision %s\n", soc_dev_attr->soc_id,
228		soc_dev_attr->revision);
229
230	if (IS_ENABLED(CONFIG_ARM_IMX_CPUFREQ_DT))
231		platform_device_register_simple("imx-cpufreq-dt", -1, NULL, 0);
232
233	return 0;
234
235free_serial_number:
236	kfree(soc_dev_attr->serial_number);
237free_rev:
238	if (strcmp(soc_dev_attr->revision, "unknown"))
239		kfree(soc_dev_attr->revision);
240free_soc:
241	kfree(soc_dev_attr);
242	return ret;
243}
244device_initcall(imx8_soc_init);