Linux Audio

Check our new training course

Loading...
v6.2
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 * Renesas SoC Identification
  4 *
  5 * Copyright (C) 2014-2016 Glider bvba
  6 */
  7
  8#include <linux/io.h>
  9#include <linux/of.h>
 10#include <linux/of_address.h>
 11#include <linux/slab.h>
 12#include <linux/string.h>
 13#include <linux/sys_soc.h>
 14
 15
 16struct renesas_family {
 17	const char name[16];
 18	u32 reg;			/* CCCR or PRR, if not in DT */
 19};
 20
 21static const struct renesas_family fam_rcar_gen1 __initconst __maybe_unused = {
 22	.name	= "R-Car Gen1",
 23	.reg	= 0xff000044,		/* PRR (Product Register) */
 24};
 25
 26static const struct renesas_family fam_rcar_gen2 __initconst __maybe_unused = {
 27	.name	= "R-Car Gen2",
 28	.reg	= 0xff000044,		/* PRR (Product Register) */
 29};
 30
 31static const struct renesas_family fam_rcar_gen3 __initconst __maybe_unused = {
 32	.name	= "R-Car Gen3",
 33	.reg	= 0xfff00044,		/* PRR (Product Register) */
 34};
 35
 36static const struct renesas_family fam_rcar_gen4 __initconst __maybe_unused = {
 37	.name	= "R-Car Gen4",
 38};
 39
 40static const struct renesas_family fam_rmobile __initconst __maybe_unused = {
 41	.name	= "R-Mobile",
 42	.reg	= 0xe600101c,		/* CCCR (Common Chip Code Register) */
 43};
 44
 45static const struct renesas_family fam_rza1 __initconst __maybe_unused = {
 46	.name	= "RZ/A1",
 47};
 48
 49static const struct renesas_family fam_rza2 __initconst __maybe_unused = {
 50	.name	= "RZ/A2",
 51};
 52
 53static const struct renesas_family fam_rzfive __initconst __maybe_unused = {
 54	.name	= "RZ/Five",
 55};
 56
 57static const struct renesas_family fam_rzg1 __initconst __maybe_unused = {
 58	.name	= "RZ/G1",
 59	.reg	= 0xff000044,		/* PRR (Product Register) */
 60};
 61
 62static const struct renesas_family fam_rzg2 __initconst __maybe_unused = {
 63	.name	= "RZ/G2",
 64	.reg	= 0xfff00044,		/* PRR (Product Register) */
 65};
 66
 67static const struct renesas_family fam_rzg2l __initconst __maybe_unused = {
 68	.name	= "RZ/G2L",
 69};
 70
 71static const struct renesas_family fam_rzg2ul __initconst __maybe_unused = {
 72	.name	= "RZ/G2UL",
 73};
 74
 75static const struct renesas_family fam_rzv2l __initconst __maybe_unused = {
 76	.name	= "RZ/V2L",
 77};
 78
 79static const struct renesas_family fam_rzv2m __initconst __maybe_unused = {
 80	.name	= "RZ/V2M",
 81};
 82
 83static const struct renesas_family fam_shmobile __initconst __maybe_unused = {
 84	.name	= "SH-Mobile",
 85	.reg	= 0xe600101c,		/* CCCR (Common Chip Code Register) */
 86};
 87
 88
 89struct renesas_soc {
 90	const struct renesas_family *family;
 91	u32 id;
 92};
 93
 94static const struct renesas_soc soc_rz_a1h __initconst __maybe_unused = {
 95	.family	= &fam_rza1,
 96};
 97
 98static const struct renesas_soc soc_rz_a2m __initconst __maybe_unused = {
 99	.family	= &fam_rza2,
100	.id	= 0x3b,
101};
102
103static const struct renesas_soc soc_rmobile_ape6 __initconst __maybe_unused = {
104	.family	= &fam_rmobile,
105	.id	= 0x3f,
106};
107
108static const struct renesas_soc soc_rmobile_a1 __initconst __maybe_unused = {
109	.family	= &fam_rmobile,
110	.id	= 0x40,
111};
112
113static const struct renesas_soc soc_rz_five __initconst __maybe_unused = {
114	.family = &fam_rzfive,
115	.id     = 0x847c447,
116};
117
118static const struct renesas_soc soc_rz_g1h __initconst __maybe_unused = {
119	.family	= &fam_rzg1,
120	.id	= 0x45,
121};
122
123static const struct renesas_soc soc_rz_g1m __initconst __maybe_unused = {
124	.family	= &fam_rzg1,
125	.id	= 0x47,
126};
127
128static const struct renesas_soc soc_rz_g1n __initconst __maybe_unused = {
129	.family	= &fam_rzg1,
130	.id	= 0x4b,
131};
132
133static const struct renesas_soc soc_rz_g1e __initconst __maybe_unused = {
134	.family	= &fam_rzg1,
135	.id	= 0x4c,
136};
137
138static const struct renesas_soc soc_rz_g1c __initconst __maybe_unused = {
139	.family	= &fam_rzg1,
140	.id	= 0x53,
141};
142
143static const struct renesas_soc soc_rz_g2m __initconst __maybe_unused = {
144	.family	= &fam_rzg2,
145	.id	= 0x52,
146};
147
148static const struct renesas_soc soc_rz_g2n __initconst __maybe_unused = {
149	.family = &fam_rzg2,
150	.id     = 0x55,
151};
152
153static const struct renesas_soc soc_rz_g2e __initconst __maybe_unused = {
154	.family	= &fam_rzg2,
155	.id	= 0x57,
156};
157
158static const struct renesas_soc soc_rz_g2h __initconst __maybe_unused = {
159	.family	= &fam_rzg2,
160	.id	= 0x4f,
161};
162
163static const struct renesas_soc soc_rz_g2l __initconst __maybe_unused = {
164	.family = &fam_rzg2l,
165	.id     = 0x841c447,
166};
167
168static const struct renesas_soc soc_rz_g2ul __initconst __maybe_unused = {
169	.family = &fam_rzg2ul,
170	.id     = 0x8450447,
171};
172
173static const struct renesas_soc soc_rz_v2l __initconst __maybe_unused = {
174	.family = &fam_rzv2l,
175	.id     = 0x8447447,
176};
177
178static const struct renesas_soc soc_rz_v2m __initconst __maybe_unused = {
179	.family = &fam_rzv2m,
180};
181
182static const struct renesas_soc soc_rcar_m1a __initconst __maybe_unused = {
183	.family	= &fam_rcar_gen1,
184};
185
186static const struct renesas_soc soc_rcar_h1 __initconst __maybe_unused = {
187	.family	= &fam_rcar_gen1,
188	.id	= 0x3b,
189};
190
191static const struct renesas_soc soc_rcar_h2 __initconst __maybe_unused = {
192	.family	= &fam_rcar_gen2,
193	.id	= 0x45,
194};
195
196static const struct renesas_soc soc_rcar_m2_w __initconst __maybe_unused = {
197	.family	= &fam_rcar_gen2,
198	.id	= 0x47,
199};
200
201static const struct renesas_soc soc_rcar_v2h __initconst __maybe_unused = {
202	.family	= &fam_rcar_gen2,
203	.id	= 0x4a,
204};
205
206static const struct renesas_soc soc_rcar_m2_n __initconst __maybe_unused = {
207	.family	= &fam_rcar_gen2,
208	.id	= 0x4b,
209};
210
211static const struct renesas_soc soc_rcar_e2 __initconst __maybe_unused = {
212	.family	= &fam_rcar_gen2,
213	.id	= 0x4c,
214};
215
216static const struct renesas_soc soc_rcar_h3 __initconst __maybe_unused = {
217	.family	= &fam_rcar_gen3,
218	.id	= 0x4f,
219};
220
221static const struct renesas_soc soc_rcar_m3_w __initconst __maybe_unused = {
222	.family	= &fam_rcar_gen3,
223	.id	= 0x52,
224};
225
226static const struct renesas_soc soc_rcar_m3_n __initconst __maybe_unused = {
227	.family = &fam_rcar_gen3,
228	.id     = 0x55,
229};
230
231static const struct renesas_soc soc_rcar_v3m __initconst __maybe_unused = {
232	.family	= &fam_rcar_gen3,
233	.id	= 0x54,
234};
235
236static const struct renesas_soc soc_rcar_v3h __initconst __maybe_unused = {
237	.family	= &fam_rcar_gen3,
238	.id	= 0x56,
239};
240
241static const struct renesas_soc soc_rcar_e3 __initconst __maybe_unused = {
242	.family	= &fam_rcar_gen3,
243	.id	= 0x57,
244};
245
246static const struct renesas_soc soc_rcar_d3 __initconst __maybe_unused = {
247	.family	= &fam_rcar_gen3,
248	.id	= 0x58,
249};
250
251static const struct renesas_soc soc_rcar_v3u __initconst __maybe_unused = {
252	.family	= &fam_rcar_gen4,
253	.id	= 0x59,
254};
255
256static const struct renesas_soc soc_rcar_s4 __initconst __maybe_unused = {
257	.family	= &fam_rcar_gen4,
258	.id	= 0x5a,
259};
260
261static const struct renesas_soc soc_rcar_v4h __initconst __maybe_unused = {
262	.family	= &fam_rcar_gen4,
263	.id	= 0x5c,
264};
265
266static const struct renesas_soc soc_shmobile_ag5 __initconst __maybe_unused = {
267	.family	= &fam_shmobile,
268	.id	= 0x37,
269};
270
271
272static const struct of_device_id renesas_socs[] __initconst = {
273#ifdef CONFIG_ARCH_R7S72100
274	{ .compatible = "renesas,r7s72100",	.data = &soc_rz_a1h },
275#endif
276#ifdef CONFIG_ARCH_R7S9210
277	{ .compatible = "renesas,r7s9210",	.data = &soc_rz_a2m },
278#endif
279#ifdef CONFIG_ARCH_R8A73A4
280	{ .compatible = "renesas,r8a73a4",	.data = &soc_rmobile_ape6 },
281#endif
282#ifdef CONFIG_ARCH_R8A7740
283	{ .compatible = "renesas,r8a7740",	.data = &soc_rmobile_a1 },
284#endif
285#ifdef CONFIG_ARCH_R8A7742
286	{ .compatible = "renesas,r8a7742",	.data = &soc_rz_g1h },
287#endif
288#ifdef CONFIG_ARCH_R8A7743
289	{ .compatible = "renesas,r8a7743",	.data = &soc_rz_g1m },
290#endif
291#ifdef CONFIG_ARCH_R8A7744
292	{ .compatible = "renesas,r8a7744",	.data = &soc_rz_g1n },
293#endif
294#ifdef CONFIG_ARCH_R8A7745
295	{ .compatible = "renesas,r8a7745",	.data = &soc_rz_g1e },
296#endif
297#ifdef CONFIG_ARCH_R8A77470
298	{ .compatible = "renesas,r8a77470",	.data = &soc_rz_g1c },
299#endif
300#ifdef CONFIG_ARCH_R8A774A1
301	{ .compatible = "renesas,r8a774a1",	.data = &soc_rz_g2m },
302#endif
303#ifdef CONFIG_ARCH_R8A774B1
304	{ .compatible = "renesas,r8a774b1",	.data = &soc_rz_g2n },
305#endif
306#ifdef CONFIG_ARCH_R8A774C0
307	{ .compatible = "renesas,r8a774c0",	.data = &soc_rz_g2e },
308#endif
309#ifdef CONFIG_ARCH_R8A774E1
310	{ .compatible = "renesas,r8a774e1",	.data = &soc_rz_g2h },
311#endif
312#ifdef CONFIG_ARCH_R8A7778
313	{ .compatible = "renesas,r8a7778",	.data = &soc_rcar_m1a },
314#endif
315#ifdef CONFIG_ARCH_R8A7779
316	{ .compatible = "renesas,r8a7779",	.data = &soc_rcar_h1 },
317#endif
318#ifdef CONFIG_ARCH_R8A7790
319	{ .compatible = "renesas,r8a7790",	.data = &soc_rcar_h2 },
320#endif
321#ifdef CONFIG_ARCH_R8A7791
322	{ .compatible = "renesas,r8a7791",	.data = &soc_rcar_m2_w },
323#endif
324#ifdef CONFIG_ARCH_R8A7792
325	{ .compatible = "renesas,r8a7792",	.data = &soc_rcar_v2h },
326#endif
327#ifdef CONFIG_ARCH_R8A7793
328	{ .compatible = "renesas,r8a7793",	.data = &soc_rcar_m2_n },
329#endif
330#ifdef CONFIG_ARCH_R8A7794
331	{ .compatible = "renesas,r8a7794",	.data = &soc_rcar_e2 },
332#endif
333#if defined(CONFIG_ARCH_R8A77950) || defined(CONFIG_ARCH_R8A77951)
334	{ .compatible = "renesas,r8a7795",	.data = &soc_rcar_h3 },
335#endif
336#ifdef CONFIG_ARCH_R8A77951
337	{ .compatible = "renesas,r8a779m0",	.data = &soc_rcar_h3 },
338	{ .compatible = "renesas,r8a779m1",	.data = &soc_rcar_h3 },
339	{ .compatible = "renesas,r8a779m8",	.data = &soc_rcar_h3 },
340	{ .compatible = "renesas,r8a779mb",	.data = &soc_rcar_h3 },
341#endif
342#ifdef CONFIG_ARCH_R8A77960
343	{ .compatible = "renesas,r8a7796",	.data = &soc_rcar_m3_w },
344#endif
345#ifdef CONFIG_ARCH_R8A77961
346	{ .compatible = "renesas,r8a77961",	.data = &soc_rcar_m3_w },
347	{ .compatible = "renesas,r8a779m2",	.data = &soc_rcar_m3_w },
348	{ .compatible = "renesas,r8a779m3",	.data = &soc_rcar_m3_w },
349#endif
350#ifdef CONFIG_ARCH_R8A77965
351	{ .compatible = "renesas,r8a77965",	.data = &soc_rcar_m3_n },
352	{ .compatible = "renesas,r8a779m4",	.data = &soc_rcar_m3_n },
353	{ .compatible = "renesas,r8a779m5",	.data = &soc_rcar_m3_n },
354#endif
355#ifdef CONFIG_ARCH_R8A77970
356	{ .compatible = "renesas,r8a77970",	.data = &soc_rcar_v3m },
357#endif
358#ifdef CONFIG_ARCH_R8A77980
359	{ .compatible = "renesas,r8a77980",	.data = &soc_rcar_v3h },
360#endif
361#ifdef CONFIG_ARCH_R8A77990
362	{ .compatible = "renesas,r8a77990",	.data = &soc_rcar_e3 },
363	{ .compatible = "renesas,r8a779m6",	.data = &soc_rcar_e3 },
364#endif
365#ifdef CONFIG_ARCH_R8A77995
366	{ .compatible = "renesas,r8a77995",	.data = &soc_rcar_d3 },
367	{ .compatible = "renesas,r8a779m7",	.data = &soc_rcar_d3 },
368#endif
369#ifdef CONFIG_ARCH_R8A779A0
370	{ .compatible = "renesas,r8a779a0",	.data = &soc_rcar_v3u },
371#endif
372#ifdef CONFIG_ARCH_R8A779F0
373	{ .compatible = "renesas,r8a779f0",	.data = &soc_rcar_s4 },
374#endif
375#ifdef CONFIG_ARCH_R8A779G0
376	{ .compatible = "renesas,r8a779g0",	.data = &soc_rcar_v4h },
377#endif
378#if defined(CONFIG_ARCH_R9A07G043)
379#ifdef CONFIG_RISCV
380	{ .compatible = "renesas,r9a07g043",	.data = &soc_rz_five },
381#else
382	{ .compatible = "renesas,r9a07g043",	.data = &soc_rz_g2ul },
383#endif
384#endif
385#if defined(CONFIG_ARCH_R9A07G044)
386	{ .compatible = "renesas,r9a07g044",	.data = &soc_rz_g2l },
387#endif
388#if defined(CONFIG_ARCH_R9A07G054)
389	{ .compatible = "renesas,r9a07g054",	.data = &soc_rz_v2l },
390#endif
391#if defined(CONFIG_ARCH_R9A09G011)
392	{ .compatible = "renesas,r9a09g011",	.data = &soc_rz_v2m },
393#endif
394#ifdef CONFIG_ARCH_SH73A0
395	{ .compatible = "renesas,sh73a0",	.data = &soc_shmobile_ag5 },
396#endif
397	{ /* sentinel */ }
398};
399
400struct renesas_id {
401	unsigned int offset;
402	u32 mask;
403};
404
405static const struct renesas_id id_bsid __initconst = {
406	.offset = 0,
407	.mask = 0xff0000,
408	/*
409	 * TODO: Upper 4 bits of BSID are for chip version, but the format is
410	 * not known at this time so we don't know how to specify eshi and eslo
411	 */
412};
413
414static const struct renesas_id id_rzg2l __initconst = {
415	.offset = 0xa04,
416	.mask = 0xfffffff,
417};
418
419static const struct renesas_id id_rzv2m __initconst = {
420	.offset = 0x104,
421	.mask = 0xff,
422};
423
424static const struct renesas_id id_prr __initconst = {
425	.offset = 0,
426	.mask = 0xff00,
427};
428
429static const struct of_device_id renesas_ids[] __initconst = {
430	{ .compatible = "renesas,bsid",			.data = &id_bsid },
431	{ .compatible = "renesas,r9a07g043-sysc",	.data = &id_rzg2l },
432	{ .compatible = "renesas,r9a07g044-sysc",	.data = &id_rzg2l },
433	{ .compatible = "renesas,r9a07g054-sysc",	.data = &id_rzg2l },
434	{ .compatible = "renesas,r9a09g011-sys",	.data = &id_rzv2m },
435	{ .compatible = "renesas,prr",			.data = &id_prr },
436	{ /* sentinel */ }
437};
438
439static int __init renesas_soc_init(void)
440{
441	struct soc_device_attribute *soc_dev_attr;
442	unsigned int product, eshi = 0, eslo;
443	const struct renesas_family *family;
444	const struct of_device_id *match;
445	const struct renesas_soc *soc;
446	const struct renesas_id *id;
447	void __iomem *chipid = NULL;
448	const char *rev_prefix = "";
449	struct soc_device *soc_dev;
450	struct device_node *np;
451	const char *soc_id;
452	int ret;
453
454	match = of_match_node(renesas_socs, of_root);
455	if (!match)
456		return -ENODEV;
457
458	soc_id = strchr(match->compatible, ',') + 1;
459	soc = match->data;
460	family = soc->family;
461
462	np = of_find_matching_node_and_match(NULL, renesas_ids, &match);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
463	if (np) {
464		id = match->data;
465		chipid = of_iomap(np, 0);
466		of_node_put(np);
467	} else if (soc->id && family->reg) {
468		/* Try hardcoded CCCR/PRR fallback */
469		id = &id_prr;
470		chipid = ioremap(family->reg, 4);
471	}
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
472
 
473	soc_dev_attr = kzalloc(sizeof(*soc_dev_attr), GFP_KERNEL);
474	if (!soc_dev_attr)
475		return -ENOMEM;
476
477	np = of_find_node_by_path("/");
478	of_property_read_string(np, "model", &soc_dev_attr->machine);
479	of_node_put(np);
480
481	soc_dev_attr->family = kstrdup_const(family->name, GFP_KERNEL);
482	soc_dev_attr->soc_id = kstrdup_const(soc_id, GFP_KERNEL);
 
 
 
 
483
484	if (chipid) {
485		product = readl(chipid + id->offset);
486		iounmap(chipid);
487
488		if (id == &id_prr) {
489			/* R-Car M3-W ES1.1 incorrectly identifies as ES2.0 */
490			if ((product & 0x7fff) == 0x5210)
491				product ^= 0x11;
492			/* R-Car M3-W ES1.3 incorrectly identifies as ES2.1 */
493			if ((product & 0x7fff) == 0x5211)
494				product ^= 0x12;
495
496			eshi = ((product >> 4) & 0x0f) + 1;
497			eslo = product & 0xf;
498			soc_dev_attr->revision = kasprintf(GFP_KERNEL, "ES%u.%u",
499							   eshi, eslo);
500		}  else if (id == &id_rzg2l) {
501			eshi =  ((product >> 28) & 0x0f);
502			soc_dev_attr->revision = kasprintf(GFP_KERNEL, "%u",
503							   eshi);
504			rev_prefix = "Rev ";
505		} else if (id == &id_rzv2m) {
506			eshi = ((product >> 4) & 0x0f);
507			eslo = product & 0xf;
508			soc_dev_attr->revision = kasprintf(GFP_KERNEL, "%u.%u",
509							   eshi, eslo);
510		}
511
512		if (soc->id &&
513		    ((product & id->mask) >> __ffs(id->mask)) != soc->id) {
514			pr_warn("SoC mismatch (product = 0x%x)\n", product);
515			ret = -ENODEV;
516			goto free_soc_dev_attr;
517		}
518	}
519
520	pr_info("Detected Renesas %s %s %s%s\n", soc_dev_attr->family,
521		soc_dev_attr->soc_id, rev_prefix, soc_dev_attr->revision ?: "");
522
523	soc_dev = soc_device_register(soc_dev_attr);
524	if (IS_ERR(soc_dev)) {
525		ret = PTR_ERR(soc_dev);
526		goto free_soc_dev_attr;
 
 
 
527	}
528
529	return 0;
530
531free_soc_dev_attr:
532	kfree(soc_dev_attr->revision);
533	kfree_const(soc_dev_attr->soc_id);
534	kfree_const(soc_dev_attr->family);
535	kfree(soc_dev_attr);
536	return ret;
537}
538early_initcall(renesas_soc_init);
v5.14.15
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 * Renesas SoC Identification
  4 *
  5 * Copyright (C) 2014-2016 Glider bvba
  6 */
  7
  8#include <linux/io.h>
  9#include <linux/of.h>
 10#include <linux/of_address.h>
 11#include <linux/slab.h>
 12#include <linux/string.h>
 13#include <linux/sys_soc.h>
 14
 15
 16struct renesas_family {
 17	const char name[16];
 18	u32 reg;			/* CCCR or PRR, if not in DT */
 19};
 20
 21static const struct renesas_family fam_rcar_gen1 __initconst __maybe_unused = {
 22	.name	= "R-Car Gen1",
 23	.reg	= 0xff000044,		/* PRR (Product Register) */
 24};
 25
 26static const struct renesas_family fam_rcar_gen2 __initconst __maybe_unused = {
 27	.name	= "R-Car Gen2",
 28	.reg	= 0xff000044,		/* PRR (Product Register) */
 29};
 30
 31static const struct renesas_family fam_rcar_gen3 __initconst __maybe_unused = {
 32	.name	= "R-Car Gen3",
 33	.reg	= 0xfff00044,		/* PRR (Product Register) */
 34};
 35
 
 
 
 
 36static const struct renesas_family fam_rmobile __initconst __maybe_unused = {
 37	.name	= "R-Mobile",
 38	.reg	= 0xe600101c,		/* CCCR (Common Chip Code Register) */
 39};
 40
 41static const struct renesas_family fam_rza1 __initconst __maybe_unused = {
 42	.name	= "RZ/A1",
 43};
 44
 45static const struct renesas_family fam_rza2 __initconst __maybe_unused = {
 46	.name	= "RZ/A2",
 47};
 48
 
 
 
 
 49static const struct renesas_family fam_rzg1 __initconst __maybe_unused = {
 50	.name	= "RZ/G1",
 51	.reg	= 0xff000044,		/* PRR (Product Register) */
 52};
 53
 54static const struct renesas_family fam_rzg2 __initconst __maybe_unused = {
 55	.name	= "RZ/G2",
 56	.reg	= 0xfff00044,		/* PRR (Product Register) */
 57};
 58
 59static const struct renesas_family fam_rzg2l __initconst __maybe_unused = {
 60	.name	= "RZ/G2L",
 61};
 62
 
 
 
 
 
 
 
 
 
 
 
 
 63static const struct renesas_family fam_shmobile __initconst __maybe_unused = {
 64	.name	= "SH-Mobile",
 65	.reg	= 0xe600101c,		/* CCCR (Common Chip Code Register) */
 66};
 67
 68
 69struct renesas_soc {
 70	const struct renesas_family *family;
 71	u32 id;
 72};
 73
 74static const struct renesas_soc soc_rz_a1h __initconst __maybe_unused = {
 75	.family	= &fam_rza1,
 76};
 77
 78static const struct renesas_soc soc_rz_a2m __initconst __maybe_unused = {
 79	.family	= &fam_rza2,
 80	.id	= 0x3b,
 81};
 82
 83static const struct renesas_soc soc_rmobile_ape6 __initconst __maybe_unused = {
 84	.family	= &fam_rmobile,
 85	.id	= 0x3f,
 86};
 87
 88static const struct renesas_soc soc_rmobile_a1 __initconst __maybe_unused = {
 89	.family	= &fam_rmobile,
 90	.id	= 0x40,
 91};
 92
 
 
 
 
 
 93static const struct renesas_soc soc_rz_g1h __initconst __maybe_unused = {
 94	.family	= &fam_rzg1,
 95	.id	= 0x45,
 96};
 97
 98static const struct renesas_soc soc_rz_g1m __initconst __maybe_unused = {
 99	.family	= &fam_rzg1,
100	.id	= 0x47,
101};
102
103static const struct renesas_soc soc_rz_g1n __initconst __maybe_unused = {
104	.family	= &fam_rzg1,
105	.id	= 0x4b,
106};
107
108static const struct renesas_soc soc_rz_g1e __initconst __maybe_unused = {
109	.family	= &fam_rzg1,
110	.id	= 0x4c,
111};
112
113static const struct renesas_soc soc_rz_g1c __initconst __maybe_unused = {
114	.family	= &fam_rzg1,
115	.id	= 0x53,
116};
117
118static const struct renesas_soc soc_rz_g2m __initconst __maybe_unused = {
119	.family	= &fam_rzg2,
120	.id	= 0x52,
121};
122
123static const struct renesas_soc soc_rz_g2n __initconst __maybe_unused = {
124	.family = &fam_rzg2,
125	.id     = 0x55,
126};
127
128static const struct renesas_soc soc_rz_g2e __initconst __maybe_unused = {
129	.family	= &fam_rzg2,
130	.id	= 0x57,
131};
132
133static const struct renesas_soc soc_rz_g2h __initconst __maybe_unused = {
134	.family	= &fam_rzg2,
135	.id	= 0x4f,
136};
137
138static const struct renesas_soc soc_rz_g2l __initconst __maybe_unused = {
139	.family = &fam_rzg2l,
140	.id     = 0x841c447,
141};
142
 
 
 
 
 
 
 
 
 
 
 
 
 
 
143static const struct renesas_soc soc_rcar_m1a __initconst __maybe_unused = {
144	.family	= &fam_rcar_gen1,
145};
146
147static const struct renesas_soc soc_rcar_h1 __initconst __maybe_unused = {
148	.family	= &fam_rcar_gen1,
149	.id	= 0x3b,
150};
151
152static const struct renesas_soc soc_rcar_h2 __initconst __maybe_unused = {
153	.family	= &fam_rcar_gen2,
154	.id	= 0x45,
155};
156
157static const struct renesas_soc soc_rcar_m2_w __initconst __maybe_unused = {
158	.family	= &fam_rcar_gen2,
159	.id	= 0x47,
160};
161
162static const struct renesas_soc soc_rcar_v2h __initconst __maybe_unused = {
163	.family	= &fam_rcar_gen2,
164	.id	= 0x4a,
165};
166
167static const struct renesas_soc soc_rcar_m2_n __initconst __maybe_unused = {
168	.family	= &fam_rcar_gen2,
169	.id	= 0x4b,
170};
171
172static const struct renesas_soc soc_rcar_e2 __initconst __maybe_unused = {
173	.family	= &fam_rcar_gen2,
174	.id	= 0x4c,
175};
176
177static const struct renesas_soc soc_rcar_h3 __initconst __maybe_unused = {
178	.family	= &fam_rcar_gen3,
179	.id	= 0x4f,
180};
181
182static const struct renesas_soc soc_rcar_m3_w __initconst __maybe_unused = {
183	.family	= &fam_rcar_gen3,
184	.id	= 0x52,
185};
186
187static const struct renesas_soc soc_rcar_m3_n __initconst __maybe_unused = {
188	.family = &fam_rcar_gen3,
189	.id     = 0x55,
190};
191
192static const struct renesas_soc soc_rcar_v3m __initconst __maybe_unused = {
193	.family	= &fam_rcar_gen3,
194	.id	= 0x54,
195};
196
197static const struct renesas_soc soc_rcar_v3h __initconst __maybe_unused = {
198	.family	= &fam_rcar_gen3,
199	.id	= 0x56,
200};
201
202static const struct renesas_soc soc_rcar_e3 __initconst __maybe_unused = {
203	.family	= &fam_rcar_gen3,
204	.id	= 0x57,
205};
206
207static const struct renesas_soc soc_rcar_d3 __initconst __maybe_unused = {
208	.family	= &fam_rcar_gen3,
209	.id	= 0x58,
210};
211
212static const struct renesas_soc soc_rcar_v3u __initconst __maybe_unused = {
213	.family	= &fam_rcar_gen3,
214	.id	= 0x59,
215};
216
 
 
 
 
 
 
 
 
 
 
217static const struct renesas_soc soc_shmobile_ag5 __initconst __maybe_unused = {
218	.family	= &fam_shmobile,
219	.id	= 0x37,
220};
221
222
223static const struct of_device_id renesas_socs[] __initconst = {
224#ifdef CONFIG_ARCH_R7S72100
225	{ .compatible = "renesas,r7s72100",	.data = &soc_rz_a1h },
226#endif
227#ifdef CONFIG_ARCH_R7S9210
228	{ .compatible = "renesas,r7s9210",	.data = &soc_rz_a2m },
229#endif
230#ifdef CONFIG_ARCH_R8A73A4
231	{ .compatible = "renesas,r8a73a4",	.data = &soc_rmobile_ape6 },
232#endif
233#ifdef CONFIG_ARCH_R8A7740
234	{ .compatible = "renesas,r8a7740",	.data = &soc_rmobile_a1 },
235#endif
236#ifdef CONFIG_ARCH_R8A7742
237	{ .compatible = "renesas,r8a7742",	.data = &soc_rz_g1h },
238#endif
239#ifdef CONFIG_ARCH_R8A7743
240	{ .compatible = "renesas,r8a7743",	.data = &soc_rz_g1m },
241#endif
242#ifdef CONFIG_ARCH_R8A7744
243	{ .compatible = "renesas,r8a7744",	.data = &soc_rz_g1n },
244#endif
245#ifdef CONFIG_ARCH_R8A7745
246	{ .compatible = "renesas,r8a7745",	.data = &soc_rz_g1e },
247#endif
248#ifdef CONFIG_ARCH_R8A77470
249	{ .compatible = "renesas,r8a77470",	.data = &soc_rz_g1c },
250#endif
251#ifdef CONFIG_ARCH_R8A774A1
252	{ .compatible = "renesas,r8a774a1",	.data = &soc_rz_g2m },
253#endif
254#ifdef CONFIG_ARCH_R8A774B1
255	{ .compatible = "renesas,r8a774b1",	.data = &soc_rz_g2n },
256#endif
257#ifdef CONFIG_ARCH_R8A774C0
258	{ .compatible = "renesas,r8a774c0",	.data = &soc_rz_g2e },
259#endif
260#ifdef CONFIG_ARCH_R8A774E1
261	{ .compatible = "renesas,r8a774e1",	.data = &soc_rz_g2h },
262#endif
263#ifdef CONFIG_ARCH_R8A7778
264	{ .compatible = "renesas,r8a7778",	.data = &soc_rcar_m1a },
265#endif
266#ifdef CONFIG_ARCH_R8A7779
267	{ .compatible = "renesas,r8a7779",	.data = &soc_rcar_h1 },
268#endif
269#ifdef CONFIG_ARCH_R8A7790
270	{ .compatible = "renesas,r8a7790",	.data = &soc_rcar_h2 },
271#endif
272#ifdef CONFIG_ARCH_R8A7791
273	{ .compatible = "renesas,r8a7791",	.data = &soc_rcar_m2_w },
274#endif
275#ifdef CONFIG_ARCH_R8A7792
276	{ .compatible = "renesas,r8a7792",	.data = &soc_rcar_v2h },
277#endif
278#ifdef CONFIG_ARCH_R8A7793
279	{ .compatible = "renesas,r8a7793",	.data = &soc_rcar_m2_n },
280#endif
281#ifdef CONFIG_ARCH_R8A7794
282	{ .compatible = "renesas,r8a7794",	.data = &soc_rcar_e2 },
283#endif
284#if defined(CONFIG_ARCH_R8A77950) || defined(CONFIG_ARCH_R8A77951)
285	{ .compatible = "renesas,r8a7795",	.data = &soc_rcar_h3 },
286#endif
 
 
 
 
 
 
287#ifdef CONFIG_ARCH_R8A77960
288	{ .compatible = "renesas,r8a7796",	.data = &soc_rcar_m3_w },
289#endif
290#ifdef CONFIG_ARCH_R8A77961
291	{ .compatible = "renesas,r8a77961",	.data = &soc_rcar_m3_w },
 
 
292#endif
293#ifdef CONFIG_ARCH_R8A77965
294	{ .compatible = "renesas,r8a77965",	.data = &soc_rcar_m3_n },
 
 
295#endif
296#ifdef CONFIG_ARCH_R8A77970
297	{ .compatible = "renesas,r8a77970",	.data = &soc_rcar_v3m },
298#endif
299#ifdef CONFIG_ARCH_R8A77980
300	{ .compatible = "renesas,r8a77980",	.data = &soc_rcar_v3h },
301#endif
302#ifdef CONFIG_ARCH_R8A77990
303	{ .compatible = "renesas,r8a77990",	.data = &soc_rcar_e3 },
 
304#endif
305#ifdef CONFIG_ARCH_R8A77995
306	{ .compatible = "renesas,r8a77995",	.data = &soc_rcar_d3 },
 
307#endif
308#ifdef CONFIG_ARCH_R8A779A0
309	{ .compatible = "renesas,r8a779a0",	.data = &soc_rcar_v3u },
310#endif
 
 
 
 
 
 
 
 
 
 
 
 
 
311#if defined(CONFIG_ARCH_R9A07G044)
312	{ .compatible = "renesas,r9a07g044",	.data = &soc_rz_g2l },
313#endif
 
 
 
 
 
 
314#ifdef CONFIG_ARCH_SH73A0
315	{ .compatible = "renesas,sh73a0",	.data = &soc_shmobile_ag5 },
316#endif
317	{ /* sentinel */ }
318};
319
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
320static int __init renesas_soc_init(void)
321{
322	struct soc_device_attribute *soc_dev_attr;
 
323	const struct renesas_family *family;
324	const struct of_device_id *match;
325	const struct renesas_soc *soc;
 
326	void __iomem *chipid = NULL;
 
327	struct soc_device *soc_dev;
328	struct device_node *np;
329	unsigned int product, eshi = 0, eslo;
 
330
331	match = of_match_node(renesas_socs, of_root);
332	if (!match)
333		return -ENODEV;
334
 
335	soc = match->data;
336	family = soc->family;
337
338	np = of_find_compatible_node(NULL, NULL, "renesas,bsid");
339	if (np) {
340		chipid = of_iomap(np, 0);
341		of_node_put(np);
342
343		if (chipid) {
344			product = readl(chipid);
345			iounmap(chipid);
346
347			if (soc->id && ((product >> 16) & 0xff) != soc->id) {
348				pr_warn("SoC mismatch (product = 0x%x)\n",
349					product);
350				return -ENODEV;
351			}
352		}
353
354		/*
355		 * TODO: Upper 4 bits of BSID are for chip version, but the
356		 * format is not known at this time so we don't know how to
357		 * specify eshi and eslo
358		 */
359
360		goto done;
361	}
362
363	np = of_find_compatible_node(NULL, NULL, "renesas,r9a07g044-sysc");
364	if (np) {
365		chipid = of_iomap(np, 0);
366		of_node_put(np);
367
368		if (chipid) {
369			product = readl(chipid + 0x0a04);
370			iounmap(chipid);
371
372			if (soc->id && (product & 0xfffffff) != soc->id) {
373				pr_warn("SoC mismatch (product = 0x%x)\n",
374					product);
375				return -ENODEV;
376			}
377		}
378
379		goto done;
380	}
381
382	/* Try PRR first, then hardcoded fallback */
383	np = of_find_compatible_node(NULL, NULL, "renesas,prr");
384	if (np) {
 
385		chipid = of_iomap(np, 0);
386		of_node_put(np);
387	} else if (soc->id && family->reg) {
 
 
388		chipid = ioremap(family->reg, 4);
389	}
390	if (chipid) {
391		product = readl(chipid);
392		iounmap(chipid);
393		/* R-Car M3-W ES1.1 incorrectly identifies as ES2.0 */
394		if ((product & 0x7fff) == 0x5210)
395			product ^= 0x11;
396		/* R-Car M3-W ES1.3 incorrectly identifies as ES2.1 */
397		if ((product & 0x7fff) == 0x5211)
398			product ^= 0x12;
399		if (soc->id && ((product >> 8) & 0xff) != soc->id) {
400			pr_warn("SoC mismatch (product = 0x%x)\n", product);
401			return -ENODEV;
402		}
403		eshi = ((product >> 4) & 0x0f) + 1;
404		eslo = product & 0xf;
405	}
406
407done:
408	soc_dev_attr = kzalloc(sizeof(*soc_dev_attr), GFP_KERNEL);
409	if (!soc_dev_attr)
410		return -ENOMEM;
411
412	np = of_find_node_by_path("/");
413	of_property_read_string(np, "model", &soc_dev_attr->machine);
414	of_node_put(np);
415
416	soc_dev_attr->family = kstrdup_const(family->name, GFP_KERNEL);
417	soc_dev_attr->soc_id = kstrdup_const(strchr(match->compatible, ',') + 1,
418					     GFP_KERNEL);
419	if (eshi)
420		soc_dev_attr->revision = kasprintf(GFP_KERNEL, "ES%u.%u", eshi,
421						   eslo);
422
423	pr_info("Detected Renesas %s %s %s\n", soc_dev_attr->family,
424		soc_dev_attr->soc_id, soc_dev_attr->revision ?: "");
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
425
426	soc_dev = soc_device_register(soc_dev_attr);
427	if (IS_ERR(soc_dev)) {
428		kfree(soc_dev_attr->revision);
429		kfree_const(soc_dev_attr->soc_id);
430		kfree_const(soc_dev_attr->family);
431		kfree(soc_dev_attr);
432		return PTR_ERR(soc_dev);
433	}
434
435	return 0;
 
 
 
 
 
 
 
436}
437early_initcall(renesas_soc_init);