[PATCH v2 12/20] platform: generic: mips eyeq7h: deassert accelerator cluster resets
Vladimir Kondratiev
vladimir.kondratiev at mobileye.com
Sun Jan 18 03:37:54 PST 2026
On the EyeQ7H board, there's cluster level resets found in the
accelerator OLBs. These resets should be deasserted once on boot
and never used after
Signed-off-by: Vladimir Kondratiev <vladimir.kondratiev at mobileye.com>
---
platform/generic/mips/eyeq7h.c | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
diff --git a/platform/generic/mips/eyeq7h.c b/platform/generic/mips/eyeq7h.c
index fb4282f4a9b85b58bc0b8921caf47425ebcf059f..76ce0c0ab07a83de22bc7834d4f992a1a1f78b9b 100644
--- a/platform/generic/mips/eyeq7h.c
+++ b/platform/generic/mips/eyeq7h.c
@@ -33,6 +33,10 @@
#define MIPS_CTL0_SW_RESET_N BIT(17)
#define MIPS_CTL0_CORE_CLK_STS(n) BIT(28 + (n)) // n = 0..3
+#define OLB_ACC0 0x45000000
+#define OLB_ACC1 0x65000000
+#define OLB_XNN0 0x43600000
+#define OLB_XNN1 0x63600000
#define OLB_WEST 0x48600000
#define OLB_WEST_TSTCSR 0x60
#define TSTCSR_PALLADIUM BIT(0)
@@ -138,15 +142,27 @@ static void eyeq7h_acc_clusters_do_fixup(struct fdt_general_fixup *f, void *fdt)
YN[acc01_present & BIT(0)],
YN[(acc01_present >> 1) & BIT(0)]);
+ /* if accelerators present, correspondend OLBS present too */
+ /* deassert cluster resets for accelerators and XNN */
if (!(acc01_present & BIT(0))) {
sbi_dprintf("Disable ACC0\n");
fdt_disable_by_compat(fdt, "mobileye,eyeq7h-acc0-olb");
fdt_disable_by_compat(fdt, "mobileye,eyeq7h-xnn0-olb");
+ } else {
+ writel(0xff, (void*)OLB_ACC0 + 0x60);
+ writel(0xff, (void*)OLB_ACC0 + 0x64);
+ writel(0x7f, (void*)OLB_XNN0 + 0x60);
+ writel(0x7f, (void*)OLB_XNN0 + 0x64);
}
if (!(acc01_present & BIT(1))) {
sbi_dprintf("Disable ACC1\n");
fdt_disable_by_compat(fdt, "mobileye,eyeq7h-acc1-olb");
fdt_disable_by_compat(fdt, "mobileye,eyeq7h-xnn1-olb");
+ } else {
+ writel(0xff, (void*)OLB_ACC1 + 0x60);
+ writel(0xff, (void*)OLB_ACC1 + 0x64);
+ writel(0x7f, (void*)OLB_XNN1 + 0x60);
+ writel(0x7f, (void*)OLB_XNN1 + 0x64);
}
}
--
2.43.0
More information about the opensbi
mailing list