|
@@ -1,16 +1,8 @@
|
|
|
+// SPDX-License-Identifier: GPL-2.0
|
|
|
/*
|
|
|
* Renesas SoC Identification
|
|
|
*
|
|
|
* Copyright (C) 2014-2016 Glider bvba
|
|
|
- *
|
|
|
- * This program is free software; you can redistribute it and/or modify
|
|
|
- * it under the terms of the GNU General Public License as published by
|
|
|
- * the Free Software Foundation; version 2 of the License.
|
|
|
- *
|
|
|
- * This program is distributed in the hope that it will be useful,
|
|
|
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
- * GNU General Public License for more details.
|
|
|
*/
|
|
|
|
|
|
#include <linux/io.h>
|
|
@@ -46,15 +38,24 @@ static const struct renesas_family fam_rmobile __initconst __maybe_unused = {
|
|
|
.reg = 0xe600101c, /* CCCR (Common Chip Code Register) */
|
|
|
};
|
|
|
|
|
|
-static const struct renesas_family fam_rza __initconst __maybe_unused = {
|
|
|
- .name = "RZ/A",
|
|
|
+static const struct renesas_family fam_rza1 __initconst __maybe_unused = {
|
|
|
+ .name = "RZ/A1",
|
|
|
+};
|
|
|
+
|
|
|
+static const struct renesas_family fam_rza2 __initconst __maybe_unused = {
|
|
|
+ .name = "RZ/A2",
|
|
|
};
|
|
|
|
|
|
-static const struct renesas_family fam_rzg __initconst __maybe_unused = {
|
|
|
- .name = "RZ/G",
|
|
|
+static const struct renesas_family fam_rzg1 __initconst __maybe_unused = {
|
|
|
+ .name = "RZ/G1",
|
|
|
.reg = 0xff000044, /* PRR (Product Register) */
|
|
|
};
|
|
|
|
|
|
+static const struct renesas_family fam_rzg2 __initconst __maybe_unused = {
|
|
|
+ .name = "RZ/G2",
|
|
|
+ .reg = 0xfff00044, /* PRR (Product Register) */
|
|
|
+};
|
|
|
+
|
|
|
static const struct renesas_family fam_shmobile __initconst __maybe_unused = {
|
|
|
.name = "SH-Mobile",
|
|
|
.reg = 0xe600101c, /* CCCR (Common Chip Code Register) */
|
|
@@ -67,7 +68,12 @@ struct renesas_soc {
|
|
|
};
|
|
|
|
|
|
static const struct renesas_soc soc_rz_a1h __initconst __maybe_unused = {
|
|
|
- .family = &fam_rza,
|
|
|
+ .family = &fam_rza1,
|
|
|
+};
|
|
|
+
|
|
|
+static const struct renesas_soc soc_rz_a2m __initconst __maybe_unused = {
|
|
|
+ .family = &fam_rza2,
|
|
|
+ .id = 0x3b,
|
|
|
};
|
|
|
|
|
|
static const struct renesas_soc soc_rmobile_ape6 __initconst __maybe_unused = {
|
|
@@ -81,30 +87,40 @@ static const struct renesas_soc soc_rmobile_a1 __initconst __maybe_unused = {
|
|
|
};
|
|
|
|
|
|
static const struct renesas_soc soc_rz_g1h __initconst __maybe_unused = {
|
|
|
- .family = &fam_rzg,
|
|
|
+ .family = &fam_rzg1,
|
|
|
.id = 0x45,
|
|
|
};
|
|
|
|
|
|
static const struct renesas_soc soc_rz_g1m __initconst __maybe_unused = {
|
|
|
- .family = &fam_rzg,
|
|
|
+ .family = &fam_rzg1,
|
|
|
.id = 0x47,
|
|
|
};
|
|
|
|
|
|
static const struct renesas_soc soc_rz_g1n __initconst __maybe_unused = {
|
|
|
- .family = &fam_rzg,
|
|
|
+ .family = &fam_rzg1,
|
|
|
.id = 0x4b,
|
|
|
};
|
|
|
|
|
|
static const struct renesas_soc soc_rz_g1e __initconst __maybe_unused = {
|
|
|
- .family = &fam_rzg,
|
|
|
+ .family = &fam_rzg1,
|
|
|
.id = 0x4c,
|
|
|
};
|
|
|
|
|
|
static const struct renesas_soc soc_rz_g1c __initconst __maybe_unused = {
|
|
|
- .family = &fam_rzg,
|
|
|
+ .family = &fam_rzg1,
|
|
|
.id = 0x53,
|
|
|
};
|
|
|
|
|
|
+static const struct renesas_soc soc_rz_g2m __initconst __maybe_unused = {
|
|
|
+ .family = &fam_rzg2,
|
|
|
+ .id = 0x52,
|
|
|
+};
|
|
|
+
|
|
|
+static const struct renesas_soc soc_rz_g2e __initconst __maybe_unused = {
|
|
|
+ .family = &fam_rzg2,
|
|
|
+ .id = 0x57,
|
|
|
+};
|
|
|
+
|
|
|
static const struct renesas_soc soc_rcar_m1a __initconst __maybe_unused = {
|
|
|
.family = &fam_rcar_gen1,
|
|
|
};
|
|
@@ -184,6 +200,9 @@ static const struct of_device_id renesas_socs[] __initconst = {
|
|
|
#ifdef CONFIG_ARCH_R7S72100
|
|
|
{ .compatible = "renesas,r7s72100", .data = &soc_rz_a1h },
|
|
|
#endif
|
|
|
+#ifdef CONFIG_ARCH_R7S9210
|
|
|
+ { .compatible = "renesas,r7s9210", .data = &soc_rz_a2m },
|
|
|
+#endif
|
|
|
#ifdef CONFIG_ARCH_R8A73A4
|
|
|
{ .compatible = "renesas,r8a73a4", .data = &soc_rmobile_ape6 },
|
|
|
#endif
|
|
@@ -205,6 +224,12 @@ static const struct of_device_id renesas_socs[] __initconst = {
|
|
|
#ifdef CONFIG_ARCH_R8A77470
|
|
|
{ .compatible = "renesas,r8a77470", .data = &soc_rz_g1c },
|
|
|
#endif
|
|
|
+#ifdef CONFIG_ARCH_R8A774A1
|
|
|
+ { .compatible = "renesas,r8a774a1", .data = &soc_rz_g2m },
|
|
|
+#endif
|
|
|
+#ifdef CONFIG_ARCH_R8A774C0
|
|
|
+ { .compatible = "renesas,r8a774c0", .data = &soc_rz_g2e },
|
|
|
+#endif
|
|
|
#ifdef CONFIG_ARCH_R8A7778
|
|
|
{ .compatible = "renesas,r8a7778", .data = &soc_rcar_m1a },
|
|
|
#endif
|
|
@@ -262,7 +287,7 @@ static int __init renesas_soc_init(void)
|
|
|
void __iomem *chipid = NULL;
|
|
|
struct soc_device *soc_dev;
|
|
|
struct device_node *np;
|
|
|
- unsigned int product;
|
|
|
+ unsigned int product, eshi = 0, eslo;
|
|
|
|
|
|
match = of_match_node(renesas_socs, of_root);
|
|
|
if (!match)
|
|
@@ -271,6 +296,31 @@ static int __init renesas_soc_init(void)
|
|
|
soc = match->data;
|
|
|
family = soc->family;
|
|
|
|
|
|
+ np = of_find_compatible_node(NULL, NULL, "renesas,bsid");
|
|
|
+ if (np) {
|
|
|
+ chipid = of_iomap(np, 0);
|
|
|
+ of_node_put(np);
|
|
|
+
|
|
|
+ if (chipid) {
|
|
|
+ product = readl(chipid);
|
|
|
+ iounmap(chipid);
|
|
|
+
|
|
|
+ if (soc->id && ((product >> 16) & 0xff) != soc->id) {
|
|
|
+ pr_warn("SoC mismatch (product = 0x%x)\n",
|
|
|
+ product);
|
|
|
+ return -ENODEV;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /*
|
|
|
+ * TODO: Upper 4 bits of BSID are for chip version, but the
|
|
|
+ * format is not known at this time so we don't know how to
|
|
|
+ * specify eshi and eslo
|
|
|
+ */
|
|
|
+
|
|
|
+ goto done;
|
|
|
+ }
|
|
|
+
|
|
|
/* Try PRR first, then hardcoded fallback */
|
|
|
np = of_find_compatible_node(NULL, NULL, "renesas,prr");
|
|
|
if (np) {
|
|
@@ -289,8 +339,11 @@ static int __init renesas_soc_init(void)
|
|
|
pr_warn("SoC mismatch (product = 0x%x)\n", product);
|
|
|
return -ENODEV;
|
|
|
}
|
|
|
+ eshi = ((product >> 4) & 0x0f) + 1;
|
|
|
+ eslo = product & 0xf;
|
|
|
}
|
|
|
|
|
|
+done:
|
|
|
soc_dev_attr = kzalloc(sizeof(*soc_dev_attr), GFP_KERNEL);
|
|
|
if (!soc_dev_attr)
|
|
|
return -ENOMEM;
|
|
@@ -302,10 +355,9 @@ static int __init renesas_soc_init(void)
|
|
|
soc_dev_attr->family = kstrdup_const(family->name, GFP_KERNEL);
|
|
|
soc_dev_attr->soc_id = kstrdup_const(strchr(match->compatible, ',') + 1,
|
|
|
GFP_KERNEL);
|
|
|
- if (chipid)
|
|
|
- soc_dev_attr->revision = kasprintf(GFP_KERNEL, "ES%u.%u",
|
|
|
- ((product >> 4) & 0x0f) + 1,
|
|
|
- product & 0xf);
|
|
|
+ if (eshi)
|
|
|
+ soc_dev_attr->revision = kasprintf(GFP_KERNEL, "ES%u.%u", eshi,
|
|
|
+ eslo);
|
|
|
|
|
|
pr_info("Detected Renesas %s %s %s\n", soc_dev_attr->family,
|
|
|
soc_dev_attr->soc_id, soc_dev_attr->revision ?: "");
|