[PATCH 2/2] sifive: edac: Add EDAC driver for Sifive l2 Cache Controller

From: Yash Shah
Date: Tue Mar 12 2019 - 05:21:33 EST


Add driver for the SiFive L2 cache controller
on the HiFive Unleashed board

Signed-off-by: Yash Shah <yash.shah@xxxxxxxxxx>
---
arch/riscv/Kconfig | 1 +
drivers/edac/Kconfig | 7 +
drivers/edac/Makefile | 1 +
drivers/edac/sifive_edac-l2.c | 292 ++++++++++++++++++++++++++++++++++++++++++
4 files changed, 301 insertions(+)
create mode 100644 drivers/edac/sifive_edac-l2.c

diff --git a/arch/riscv/Kconfig b/arch/riscv/Kconfig
index 515fc3c..fede4b6 100644
--- a/arch/riscv/Kconfig
+++ b/arch/riscv/Kconfig
@@ -49,6 +49,7 @@ config RISCV
select RISCV_TIMER
select GENERIC_IRQ_MULTI_HANDLER
select ARCH_HAS_PTE_SPECIAL
+ select EDAC_SUPPORT

config MMU
def_bool y
diff --git a/drivers/edac/Kconfig b/drivers/edac/Kconfig
index e286b5b..63ccdf1 100644
--- a/drivers/edac/Kconfig
+++ b/drivers/edac/Kconfig
@@ -440,6 +440,13 @@ config EDAC_ALTERA_SDMMC
Support for error detection and correction on the
Altera SDMMC FIFO Memory for Altera SoCs.

+config EDAC_SIFIVE_L2
+ tristate "Sifive L2 Cache"
+ depends on RISCV
+ help
+ Support for error detection and correction on the SiFive L2
+ cache controller.
+
config EDAC_SYNOPSYS
tristate "Synopsys DDR Memory Controller"
depends on ARCH_ZYNQ || ARCH_ZYNQMP
diff --git a/drivers/edac/Makefile b/drivers/edac/Makefile
index 716096d..ad9e3d3 100644
--- a/drivers/edac/Makefile
+++ b/drivers/edac/Makefile
@@ -74,6 +74,7 @@ obj-$(CONFIG_EDAC_OCTEON_PCI) += octeon_edac-pci.o
obj-$(CONFIG_EDAC_THUNDERX) += thunderx_edac.o

obj-$(CONFIG_EDAC_ALTERA) += altera_edac.o
+obj-$(CONFIG_EDAC_SIFIVE_L2) += sifive_edac-l2.o
obj-$(CONFIG_EDAC_SYNOPSYS) += synopsys_edac.o
obj-$(CONFIG_EDAC_XGENE) += xgene_edac.o
obj-$(CONFIG_EDAC_TI) += ti_edac.o
diff --git a/drivers/edac/sifive_edac-l2.c b/drivers/edac/sifive_edac-l2.c
new file mode 100644
index 0000000..124f43a
--- /dev/null
+++ b/drivers/edac/sifive_edac-l2.c
@@ -0,0 +1,292 @@
+// SPDX-License-Identifier: GPL-2.0
+/*
+ * SiFive L2 Cache EDAC Driver
+ *
+ * Copyright (C) 2018-2019 SiFive, Inc.
+ *
+ */
+#include <linux/edac.h>
+#include <linux/interrupt.h>
+#include <linux/module.h>
+#include <linux/platform_device.h>
+#include <linux/of.h>
+#include "edac_module.h"
+
+#define SIFIVE_EDAC_DIRFIX_LOW 0x100
+#define SIFIVE_EDAC_DIRFIX_HIGH 0x104
+#define SIFIVE_EDAC_DIRFIX_COUNT 0x108
+
+#define SIFIVE_EDAC_DIRFAIL_LOW 0x120
+#define SIFIVE_EDAC_DIRFAIL_HIGH 0x124
+#define SIFIVE_EDAC_DIRFAIL_COUNT 0x128
+
+#define SIFIVE_EDAC_DATFIX_LOW 0x140
+#define SIFIVE_EDAC_DATFIX_HIGH 0x144
+#define SIFIVE_EDAC_DATFIX_COUNT 0x148
+
+#define SIFIVE_EDAC_DATFAIL_LOW 0x160
+#define SIFIVE_EDAC_DATFAIL_HIGH 0x164
+#define SIFIVE_EDAC_DATFAIL_COUNT 0x168
+
+#define SIFIVE_EDAC_ECCINJECTERR 0x40
+#define SIFIVE_EDAC_CONFIG 0x00
+
+#define SIFIVE_EDAC_MAX_INTR 4
+
+/**
+ * struct sifive_edac_l2_priv - L2 cache controller private instance data
+ * @base: Base address of the controller
+ * @irq[]: Array of interrupt numbers
+ */
+struct sifive_edac_l2_priv {
+ void __iomem *base;
+ int irq[SIFIVE_EDAC_MAX_INTR];
+};
+
+enum {
+ dir_corr = 0,
+ dir_uncorr,
+ data_corr,
+ data_uncorr,
+};
+
+static struct dentry *sifive_edac_test;
+
+static ssize_t sifive_edac_l2_write(struct file *file, const char __user *data,
+ size_t count, loff_t *ppos)
+{
+ struct edac_device_ctl_info *dci = file->private_data;
+ struct sifive_edac_l2_priv *priv = dci->pvt_info;
+ unsigned int val;
+
+ if (kstrtouint_from_user(data, count, 0, &val))
+ return -EINVAL;
+ if ((val >= 0 && val < 0xFF) || (val >= 0x10000 && val < 0x100FF))
+ writel(val, priv->base + SIFIVE_EDAC_ECCINJECTERR);
+ else
+ return -EINVAL;
+ return count;
+}
+
+static const struct file_operations sifive_edac_l2_fops = {
+ .owner = THIS_MODULE,
+ .open = simple_open,
+ .write = sifive_edac_l2_write
+};
+
+static void setup_sifive_debug(struct edac_device_ctl_info *edac_dev)
+{
+ sifive_edac_test = edac_debugfs_create_dir("sifive_edac_test");
+ edac_debugfs_create_file("sifive_debug_inject_error", 0200,
+ sifive_edac_test, edac_dev,
+ &sifive_edac_l2_fops);
+}
+
+static void teardown_sifive_debug(void)
+{
+ debugfs_remove_recursive(sifive_edac_test);
+}
+
+/**
+ * sifive_edac_l2_int_handler - ISR function for l2 cache controller
+ * @irq: Irq Number
+ * @device: Pointer to the edac device controller instance
+ *
+ * This routine is triggered whenever there is ECC error detected
+ *
+ * Return: Always returns IRQ_HANDLED
+ */
+static irqreturn_t sifive_edac_l2_int_handler(int irq, void *device)
+{
+ struct edac_device_ctl_info *dci =
+ (struct edac_device_ctl_info *)device;
+ struct sifive_edac_l2_priv *priv = dci->pvt_info;
+ u32 regval, add_h, add_l;
+
+ if (irq == priv->irq[dir_corr]) {
+ add_h = readl(priv->base + SIFIVE_EDAC_DIRFIX_HIGH);
+ add_l = readl(priv->base + SIFIVE_EDAC_DIRFIX_LOW);
+ dev_err(dci->dev,
+ "DirError at address 0x%08X.%08X\n", add_h, add_l);
+ regval = readl(priv->base + SIFIVE_EDAC_DIRFIX_COUNT);
+ edac_device_handle_ce(dci, 0, 0, "DirECCFix");
+ }
+ if (irq == priv->irq[dir_uncorr]) {
+ regval = readl(priv->base + SIFIVE_EDAC_DIRFAIL_COUNT);
+ edac_device_handle_ue(dci, 0, 0, "DirECCFail");
+ add_h = readl(priv->base + SIFIVE_EDAC_DIRFAIL_HIGH);
+ add_l = readl(priv->base + SIFIVE_EDAC_DIRFAIL_LOW);
+ panic("\nDirFail at address 0x%08X.%08X\n", add_h, add_l);
+ }
+ if (irq == priv->irq[data_corr]) {
+ add_h = readl(priv->base + SIFIVE_EDAC_DATFIX_HIGH);
+ add_l = readl(priv->base + SIFIVE_EDAC_DATFIX_LOW);
+ dev_err(dci->dev,
+ "DataError at address 0x%08X.%08X\n", add_h, add_l);
+ regval = readl(priv->base + SIFIVE_EDAC_DATFIX_COUNT);
+ edac_device_handle_ce(dci, 0, 0, "DatECCFix");
+ }
+ if (irq == priv->irq[data_uncorr]) {
+ add_h = readl(priv->base + SIFIVE_EDAC_DATFAIL_HIGH);
+ add_l = readl(priv->base + SIFIVE_EDAC_DATFAIL_LOW);
+ dev_err(dci->dev,
+ "DataFail at address 0x%08X.%08X\n", add_h, add_l);
+ regval = readl(priv->base + SIFIVE_EDAC_DATFAIL_COUNT);
+ edac_device_handle_ue(dci, 0, 0, "DatECCFail");
+ }
+
+ return IRQ_HANDLED;
+}
+
+static void sifive_edac_config_read(struct edac_device_ctl_info *dci)
+{
+ struct sifive_edac_l2_priv *priv = dci->pvt_info;
+ u32 regval, val;
+
+ regval = readl(priv->base + SIFIVE_EDAC_CONFIG);
+ val = regval & 0xFF;
+ dev_info(dci->dev, "No. of Banks in the cache: %d\n", val);
+ val = (regval & 0xFF00) >> 8;
+ dev_info(dci->dev, "No. of ways per bank: %d\n", val);
+ val = (regval & 0xFF0000) >> 16;
+ dev_info(dci->dev, "Sets per bank: %llu\n", (uint64_t)1 << val);
+ val = (regval & 0xFF000000) >> 24;
+ dev_info(dci->dev,
+ "Bytes per cache block: %llu\n", (uint64_t)1 << val);
+}
+
+/**
+ * sifive_edac_l2_probe
+ * @pdev: Pointer to the platform_device struct
+ *
+ * This routine probes a specific sifive-cache instance for binding
+ * with the driver.
+ *
+ * Return: 0 if the controller instance was successfully bound to the
+ * driver; otherwise, < 0 on error.
+ */
+static int sifive_edac_l2_probe(struct platform_device *pdev)
+{
+ struct edac_device_ctl_info *dci;
+ struct sifive_edac_l2_priv *priv;
+ int rc, i, k;
+ struct resource *res;
+ void __iomem *baseaddr;
+ u32 intr_num, intr_offset = 0;
+
+ /* Get the data from the platform device */
+ res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
+ baseaddr = devm_ioremap_resource(&pdev->dev, res);
+ if (IS_ERR(baseaddr))
+ return PTR_ERR(baseaddr);
+
+ dci = edac_device_alloc_ctl_info(sizeof(*priv), "l2cache",
+ 1, "L", 1, 1, NULL, 0, 0);
+ if (IS_ERR(dci))
+ return PTR_ERR(dci);
+
+ priv = dci->pvt_info;
+ priv->base = baseaddr;
+ dci->dev = &pdev->dev;
+ dci->mod_name = "sifive_edac_l2";
+ dci->ctl_name = "sifive_l2_controller";
+ dci->dev_name = dev_name(&pdev->dev);
+
+ setup_sifive_debug(dci);
+ sifive_edac_config_read(dci);
+
+ intr_num = of_property_count_u32_elems(pdev->dev.of_node, "interrupts");
+ if (!intr_num) {
+ dev_err(&pdev->dev, "no interrupts property\n");
+ rc = -ENODEV;
+ goto del_edac_device;
+ }
+
+ /**
+ * Only FU540 have 3 interrupts. Rest all instances of this IP have
+ * 4 interrupts (+dirfail). Therefore intr_offest is required to
+ * skip dirfail interrupt entry in case of FU540
+ */
+ if (intr_num == 3)
+ intr_offset = 1;
+
+ priv->irq[dir_corr] = platform_get_irq(pdev, 0);
+ rc = devm_request_irq(&pdev->dev, priv->irq[dir_corr],
+ sifive_edac_l2_int_handler, 0,
+ dev_name(&pdev->dev), (void *)dci);
+ if (rc) {
+ dev_err(&pdev->dev,
+ "Could not request IRQ %d\n", priv->irq[dir_corr]);
+ goto del_edac_device;
+ }
+
+ for (i = 1; i < intr_num; i++) {
+ k = i + intr_offset;
+ priv->irq[k] = platform_get_irq(pdev, i);
+ rc = devm_request_irq(&pdev->dev, priv->irq[k],
+ sifive_edac_l2_int_handler, 0,
+ dev_name(&pdev->dev), (void *)dci);
+ if (rc) {
+ dev_err(&pdev->dev,
+ "Could not request IRQ %d\n", priv->irq[k]);
+ goto del_edac_device;
+ }
+ }
+
+ rc = edac_device_add_device(dci);
+ if (rc) {
+ dev_err(&pdev->dev, "failed to register with EDAC core\n");
+ goto del_edac_device;
+ }
+
+ return rc;
+
+del_edac_device:
+ edac_device_del_device(&pdev->dev);
+ edac_device_free_ctl_info(dci);
+
+ return rc;
+}
+
+/**
+ * sifive_edac_l2_remove - Unbind driver from controller
+ * @pdev: Pointer to the platform_device struct
+ *
+ * This routine unbinds the EDAC device controller instance associated
+ * with the specified sifive-cache controller.
+ *
+ * Return: Always returns 0
+ */
+static int sifive_edac_l2_remove(struct platform_device *pdev)
+{
+ struct edac_device_ctl_info *dci = platform_get_drvdata(pdev);
+
+ teardown_sifive_debug();
+ edac_device_del_device(&pdev->dev);
+ edac_device_free_ctl_info(dci);
+
+ return 0;
+}
+
+/* Device tree node type and compatible tuples this driver can match on */
+static const struct of_device_id sifive_edac_l2_match[] = {
+ { .compatible = "sifive,ccache0" },
+ { /* end of table */ },
+};
+MODULE_DEVICE_TABLE(of, sifive_edac_l2_match);
+
+static struct platform_driver sifive_edac_l2_driver = {
+ .driver = {
+ .name = "sifive-edac-l2",
+ .owner = THIS_MODULE,
+ .of_match_table = sifive_edac_l2_match,
+ },
+ .probe = sifive_edac_l2_probe,
+ .remove = sifive_edac_l2_remove,
+};
+
+module_platform_driver(sifive_edac_l2_driver);
+
+MODULE_AUTHOR("SiFive Inc.");
+MODULE_DESCRIPTION("sifive L2 EDAC driver");
+MODULE_LICENSE("GPL v2");
--
1.9.1