platform: generic: andes/renesas: Add SBI EXT to check for enabling IOCP errata
authorLad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
Tue, 11 Apr 2023 16:36:33 +0000 (17:36 +0100)
committerAnup Patel <anup@brainfault.org>
Fri, 14 Apr 2023 12:05:04 +0000 (17:35 +0530)
I/O Coherence Port (IOCP) provides an AXI interface for connecting
external non-caching masters, such as DMA controllers. The accesses
from IOCP are coherent with D-Caches and L2 Cache.

IOCP is a specification option and is disabled on the Renesas RZ/Five
SoC (which is based on Andes AX45MP core) due to this reason IP blocks
using DMA will fail.

As a workaround for SoCs with IOCP disabled CMO needs to be handled by
software. Firstly OpenSBI configures the memory region as
"Memory, Non-cacheable, Bufferable" and passes this region as a global
shared dma pool as a DT node. With DMA_GLOBAL_POOL enabled all DMA
allocations happen from this region and synchronization callbacks are
implemented to synchronize when doing DMA transactions.

SBI_EXT_ANDES_IOCP_SW_WORKAROUND checks if the IOCP errata should be
applied to handle cache management.

Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
Reviewed-by: Anup Patel <anup@brainfault.org>
Reviewed-by: Conor Dooley <conor.dooley@microchip.com>
Reviewed-by: Yu Chien Peter Lin <peterlin@andestech.com>
platform/generic/Kconfig
platform/generic/andes/Kconfig
platform/generic/andes/andes_sbi.c [new file with mode: 0644]
platform/generic/andes/objects.mk
platform/generic/include/andes/andes45.h
platform/generic/include/andes/andes_sbi.h [new file with mode: 0644]
platform/generic/renesas/rzfive/rzfive.c

index 1f4f8e1f3401f263ce33489e1bc2ccf4d07bf9a5..72768edeb921a3cbf3355b8111d54abcf4c358e5 100644 (file)
@@ -36,6 +36,7 @@ config PLATFORM_ANDES_AE350
 config PLATFORM_RENESAS_RZFIVE
        bool "Renesas RZ/Five support"
        select ANDES45_PMA
+       select ANDES_SBI
        default n
 
 config PLATFORM_SIFIVE_FU540
index 3ad4e4ca56f5baa134079aabb1207e8373da3fd5..a91fb9c95dced5fd9c5f775c3b9b4dba9d80cfe4 100644 (file)
@@ -3,3 +3,7 @@
 config ANDES45_PMA
        bool "Andes PMA support"
        default n
+
+config ANDES_SBI
+       bool "Andes SBI support"
+       default n
diff --git a/platform/generic/andes/andes_sbi.c b/platform/generic/andes/andes_sbi.c
new file mode 100644 (file)
index 0000000..3e89fb9
--- /dev/null
@@ -0,0 +1,51 @@
+// SPDX-License-Identifier: BSD-2-Clause
+/*
+ * Copyright (C) 2023 Renesas Electronics Corp.
+ *
+ */
+#include <andes/andes45.h>
+#include <andes/andes_sbi.h>
+#include <sbi/riscv_asm.h>
+#include <sbi/sbi_error.h>
+
+enum sbi_ext_andes_fid {
+       SBI_EXT_ANDES_FID0 = 0, /* Reserved for future use */
+       SBI_EXT_ANDES_IOCP_SW_WORKAROUND,
+};
+
+static bool andes45_cache_controllable(void)
+{
+       return (((csr_read(CSR_MICM_CFG) & MICM_CFG_ISZ_MASK) ||
+                (csr_read(CSR_MDCM_CFG) & MDCM_CFG_DSZ_MASK)) &&
+               (csr_read(CSR_MMSC_CFG) & MMSC_CFG_CCTLCSR_MASK) &&
+               (csr_read(CSR_MCACHE_CTL) & MCACHE_CTL_CCTL_SUEN_MASK) &&
+               misa_extension('U'));
+}
+
+static bool andes45_iocp_disabled(void)
+{
+       return (csr_read(CSR_MMSC_CFG) & MMSC_IOCP_MASK) ? false : true;
+}
+
+static bool andes45_apply_iocp_sw_workaround(void)
+{
+       return andes45_cache_controllable() & andes45_iocp_disabled();
+}
+
+int andes_sbi_vendor_ext_provider(long funcid,
+                                 const struct sbi_trap_regs *regs,
+                                 unsigned long *out_value,
+                                 struct sbi_trap_info *out_trap,
+                                 const struct fdt_match *match)
+{
+       switch (funcid) {
+       case SBI_EXT_ANDES_IOCP_SW_WORKAROUND:
+               *out_value = andes45_apply_iocp_sw_workaround();
+               break;
+
+       default:
+               return SBI_EINVAL;
+       }
+
+       return 0;
+}
index ea6b561953efcade7c226c1749eaa3ae80a89655..e8f86ea08150fe4b48a2d51ea4b1b486c78c9ee2 100644 (file)
@@ -6,3 +6,4 @@ carray-platform_override_modules-$(CONFIG_PLATFORM_ANDES_AE350) += andes_ae350
 platform-objs-$(CONFIG_PLATFORM_ANDES_AE350) += andes/ae350.o andes/sleep.o
 
 platform-objs-$(CONFIG_ANDES45_PMA) += andes/andes45-pma.o
+platform-objs-$(CONFIG_ANDES_SBI) += andes/andes_sbi.o
index 08b3d18876e0ef5e4d62b5c9889dccc355a1fceb..f570994353843e392056cd9ac90e62593c78f741 100644 (file)
@@ -4,7 +4,26 @@
 #define CSR_MARCHID_MICROID 0xfff
 
 /* Memory and Miscellaneous Registers */
-#define CSR_MCACHE_CTL 0x7ca
-#define CSR_MCCTLCOMMAND 0x7cc
+#define CSR_MCACHE_CTL         0x7ca
+#define CSR_MCCTLCOMMAND       0x7cc
+
+/* Configuration Control & Status Registers */
+#define CSR_MICM_CFG           0xfc0
+#define CSR_MDCM_CFG           0xfc1
+#define CSR_MMSC_CFG           0xfc2
+
+#define MICM_CFG_ISZ_OFFSET            6
+#define MICM_CFG_ISZ_MASK              (0x7  << MICM_CFG_ISZ_OFFSET)
+
+#define MDCM_CFG_DSZ_OFFSET            6
+#define MDCM_CFG_DSZ_MASK              (0x7  << MDCM_CFG_DSZ_OFFSET)
+
+#define MMSC_CFG_CCTLCSR_OFFSET                16
+#define MMSC_CFG_CCTLCSR_MASK          (0x1 << MMSC_CFG_CCTLCSR_OFFSET)
+#define MMSC_IOCP_OFFSET                       47
+#define MMSC_IOCP_MASK                 (0x1ULL << MMSC_IOCP_OFFSET)
+
+#define MCACHE_CTL_CCTL_SUEN_OFFSET    8
+#define MCACHE_CTL_CCTL_SUEN_MASK      (0x1 << MCACHE_CTL_CCTL_SUEN_OFFSET)
 
 #endif /* _RISCV_ANDES45_H */
diff --git a/platform/generic/include/andes/andes_sbi.h b/platform/generic/include/andes/andes_sbi.h
new file mode 100644 (file)
index 0000000..e5dc250
--- /dev/null
@@ -0,0 +1,15 @@
+// SPDX-License-Identifier: BSD-2-Clause
+
+#ifndef _RISCV_ANDES_SBI_H
+#define _RISCV_ANDES_SBI_H
+
+#include <sbi/sbi_trap.h>
+#include <sbi_utils/fdt/fdt_helper.h>
+
+int andes_sbi_vendor_ext_provider(long funcid,
+                                 const struct sbi_trap_regs *regs,
+                                 unsigned long *out_value,
+                                 struct sbi_trap_info *out_trap,
+                                 const struct fdt_match *match);
+
+#endif /* _RISCV_ANDES_SBI_H */
index 4d71d0d6c2279710638d1f34dabcea2f870ab96f..a69797b18df5a77c0b0361879b4da2aa280ffec0 100644 (file)
@@ -5,6 +5,7 @@
  */
 
 #include <andes/andes45_pma.h>
+#include <andes/andes_sbi.h>
 #include <platform_override.h>
 #include <sbi/sbi_domain.h>
 #include <sbi_utils/fdt/fdt_helper.h>
@@ -55,4 +56,5 @@ const struct platform_override renesas_rzfive = {
        .match_table = renesas_rzfive_match,
        .early_init = renesas_rzfive_early_init,
        .final_init = renesas_rzfive_final_init,
+       .vendor_ext_provider = andes_sbi_vendor_ext_provider,
 };