soc: qcom: Add support to register LLCC EDAC driver
authorVenkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
Wed, 12 Sep 2018 18:06:33 +0000 (11:06 -0700)
committerAndy Gross <andy.gross@linaro.org>
Thu, 13 Sep 2018 20:53:58 +0000 (15:53 -0500)
Cache error reporting controller detects and reports single and
double bit errors on Last Level Cache Controller (LLCC) cache.
Add required support to register LLCC EDAC driver as platform driver,
from LLCC driver.

Signed-off-by: Venkata Narendra Kumar Gutta <vnkgutta@codeaurora.org>
Reviewed-by: Evan Green <evgreen@chromium.org>
Signed-off-by: Andy Gross <andy.gross@linaro.org>
drivers/soc/qcom/llcc-slice.c
include/linux/soc/qcom/llcc-qcom.h

index 08e3d388e153f63983c346f660b6d6244d587be7..d78926742510a6ed0430b2bc7c63409b1797e781 100644 (file)
@@ -225,7 +225,7 @@ static int qcom_llcc_cfg_program(struct platform_device *pdev)
        u32 attr0_val;
        u32 max_cap_cacheline;
        u32 sz;
-       int ret;
+       int ret = 0;
        const struct llcc_slice_config *llcc_table;
        struct llcc_slice_desc desc;
 
@@ -283,6 +283,7 @@ int qcom_llcc_probe(struct platform_device *pdev,
        struct resource *llcc_banks_res, *llcc_bcast_res;
        void __iomem *llcc_banks_base, *llcc_bcast_base;
        int ret, i;
+       struct platform_device *llcc_edac;
 
        drv_data = devm_kzalloc(dev, sizeof(*drv_data), GFP_KERNEL);
        if (!drv_data)
@@ -342,7 +343,20 @@ int qcom_llcc_probe(struct platform_device *pdev,
        mutex_init(&drv_data->lock);
        platform_set_drvdata(pdev, drv_data);
 
-       return qcom_llcc_cfg_program(pdev);
+       ret = qcom_llcc_cfg_program(pdev);
+       if (ret)
+               return ret;
+
+       drv_data->ecc_irq = platform_get_irq(pdev, 0);
+       if (drv_data->ecc_irq >= 0) {
+               llcc_edac = platform_device_register_data(&pdev->dev,
+                                               "qcom_llcc_edac", -1, drv_data,
+                                               sizeof(*drv_data));
+               if (IS_ERR(llcc_edac))
+                       dev_err(dev, "Failed to register llcc edac driver\n");
+       }
+
+       return ret;
 }
 EXPORT_SYMBOL_GPL(qcom_llcc_probe);
 
index c681e795b58724643092142d7181d48e8899c3c9..2e4b34d2617ec134dc58bfe39e2d30b1e9588b43 100644 (file)
@@ -78,6 +78,7 @@ struct llcc_slice_config {
  * @num_banks: Number of llcc banks
  * @bitmap: Bit map to track the active slice ids
  * @offsets: Pointer to the bank offsets array
+ * @ecc_irq: interrupt for llcc cache error detection and reporting
  */
 struct llcc_drv_data {
        struct regmap *regmap;
@@ -89,6 +90,7 @@ struct llcc_drv_data {
        u32 num_banks;
        unsigned long *bitmap;
        u32 *offsets;
+       int ecc_irq;
 };
 
 #if IS_ENABLED(CONFIG_QCOM_LLCC)