2 * CoreNet Coherency Fabric error reporting
4 * Copyright 2014 Freescale Semiconductor Inc.
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2 of the License, or (at your
9 * option) any later version.
12 #include <linux/interrupt.h>
14 #include <linux/irq.h>
15 #include <linux/module.h>
17 #include <linux/of_address.h>
18 #include <linux/of_device.h>
19 #include <linux/of_irq.h>
20 #include <linux/platform_device.h>
28 enum ccf_version version;
33 static const struct ccf_info ccf1_info = {
35 .err_reg_offs = 0xa00,
39 static const struct ccf_info ccf2_info = {
41 .err_reg_offs = 0xe40,
46 * This register is present but not documented, with different values for
47 * IP_ID, on other chips with fsl,corenet2-cf such as t4240 and b4860.
50 #define CCF_BRR_IPID 0xffff0000
51 #define CCF_BRR_IPID_T1040 0x09310000
53 static const struct of_device_id ccf_matches[] = {
55 .compatible = "fsl,corenet1-cf",
59 .compatible = "fsl,corenet2-cf",
64 MODULE_DEVICE_TABLE(of, ccf_matches);
67 u32 errdet; /* 0x00 Error Detect Register */
68 /* 0x04 Error Enable (ccf1)/Disable (ccf2) Register */
70 /* 0x08 Error Interrupt Enable Register (ccf2 only) */
72 u32 cecar; /* 0x0c Error Capture Attribute Register */
73 u32 cecaddrh; /* 0x10 Error Capture Address High */
74 u32 cecaddrl; /* 0x14 Error Capture Address Low */
75 u32 cecar2; /* 0x18 Error Capture Attribute Register 2 */
78 /* LAE/CV also valid for errdis and errinten */
79 #define ERRDET_LAE (1 << 0) /* Local Access Error */
80 #define ERRDET_CV (1 << 1) /* Coherency Violation */
81 #define ERRDET_UTID (1 << 2) /* Unavailable Target ID (t1040) */
82 #define ERRDET_MCST (1 << 3) /* Multicast Stash (t1040) */
83 #define ERRDET_CTYPE_SHIFT 26 /* Capture Type (ccf2 only) */
84 #define ERRDET_CTYPE_MASK (0x1f << ERRDET_CTYPE_SHIFT)
85 #define ERRDET_CAP (1 << 31) /* Capture Valid (ccf2 only) */
87 #define CECAR_VAL (1 << 0) /* Valid (ccf1 only) */
88 #define CECAR_UVT (1 << 15) /* Unavailable target ID (ccf1) */
89 #define CECAR_SRCID_SHIFT_CCF1 24
90 #define CECAR_SRCID_MASK_CCF1 (0xff << CECAR_SRCID_SHIFT_CCF1)
91 #define CECAR_SRCID_SHIFT_CCF2 18
92 #define CECAR_SRCID_MASK_CCF2 (0xff << CECAR_SRCID_SHIFT_CCF2)
94 #define CECADDRH_ADDRH 0xff
97 const struct ccf_info *info;
100 struct ccf_err_regs __iomem *err_regs;
104 static irqreturn_t ccf_irq(int irq, void *dev_id)
106 struct ccf_private *ccf = dev_id;
107 static DEFINE_RATELIMIT_STATE(ratelimit, DEFAULT_RATELIMIT_INTERVAL,
108 DEFAULT_RATELIMIT_BURST);
109 u32 errdet, cecar, cecar2;
113 bool cap_valid = false;
115 errdet = ioread32be(&ccf->err_regs->errdet);
116 cecar = ioread32be(&ccf->err_regs->cecar);
117 cecar2 = ioread32be(&ccf->err_regs->cecar2);
118 addr = ioread32be(&ccf->err_regs->cecaddrl);
119 addr |= ((u64)(ioread32be(&ccf->err_regs->cecaddrh) &
120 CECADDRH_ADDRH)) << 32;
122 if (!__ratelimit(&ratelimit))
125 switch (ccf->info->version) {
127 if (cecar & CECAR_VAL) {
128 if (cecar & CECAR_UVT)
131 src_id = (cecar & CECAR_SRCID_MASK_CCF1) >>
132 CECAR_SRCID_SHIFT_CCF1;
138 if (errdet & ERRDET_CAP) {
139 src_id = (cecar & CECAR_SRCID_MASK_CCF2) >>
140 CECAR_SRCID_SHIFT_CCF2;
147 dev_crit(ccf->dev, "errdet 0x%08x cecar 0x%08x cecar2 0x%08x\n",
148 errdet, cecar, cecar2);
150 if (errdet & ERRDET_LAE) {
152 dev_crit(ccf->dev, "LAW Unavailable Target ID\n");
154 dev_crit(ccf->dev, "Local Access Window Error\n");
157 if (errdet & ERRDET_CV)
158 dev_crit(ccf->dev, "Coherency Violation\n");
160 if (errdet & ERRDET_UTID)
161 dev_crit(ccf->dev, "Unavailable Target ID\n");
163 if (errdet & ERRDET_MCST)
164 dev_crit(ccf->dev, "Multicast Stash\n");
167 dev_crit(ccf->dev, "address 0x%09llx, src id 0x%x\n",
172 iowrite32be(errdet, &ccf->err_regs->errdet);
173 return errdet ? IRQ_HANDLED : IRQ_NONE;
176 static int ccf_probe(struct platform_device *pdev)
178 struct ccf_private *ccf;
180 const struct of_device_id *match;
184 match = of_match_device(ccf_matches, &pdev->dev);
188 ccf = devm_kzalloc(&pdev->dev, sizeof(*ccf), GFP_KERNEL);
192 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
194 dev_err(&pdev->dev, "%s: no mem resource\n", __func__);
198 ccf->regs = devm_ioremap_resource(&pdev->dev, r);
199 if (IS_ERR(ccf->regs)) {
200 dev_err(&pdev->dev, "%s: can't map mem resource\n", __func__);
201 return PTR_ERR(ccf->regs);
204 ccf->dev = &pdev->dev;
205 ccf->info = match->data;
206 ccf->err_regs = ccf->regs + ccf->info->err_reg_offs;
208 if (ccf->info->has_brr) {
209 u32 brr = ioread32be(ccf->regs + CCF_BRR);
211 if ((brr & CCF_BRR_IPID) == CCF_BRR_IPID_T1040)
215 dev_set_drvdata(&pdev->dev, ccf);
217 irq = platform_get_irq(pdev, 0);
219 dev_err(&pdev->dev, "%s: no irq\n", __func__);
223 ret = devm_request_irq(&pdev->dev, irq, ccf_irq, 0, pdev->name, ccf);
225 dev_err(&pdev->dev, "%s: can't request irq\n", __func__);
229 errinten = ERRDET_LAE | ERRDET_CV;
231 errinten |= ERRDET_UTID | ERRDET_MCST;
233 switch (ccf->info->version) {
235 /* On CCF1 this register enables rather than disables. */
236 iowrite32be(errinten, &ccf->err_regs->errdis);
240 iowrite32be(0, &ccf->err_regs->errdis);
241 iowrite32be(errinten, &ccf->err_regs->errinten);
248 static int ccf_remove(struct platform_device *pdev)
250 struct ccf_private *ccf = dev_get_drvdata(&pdev->dev);
252 switch (ccf->info->version) {
254 iowrite32be(0, &ccf->err_regs->errdis);
259 * We clear errdis on ccf1 because that's the only way to
260 * disable interrupts, but on ccf2 there's no need to disable
263 iowrite32be(0, &ccf->err_regs->errinten);
270 static struct platform_driver ccf_driver = {
272 .name = KBUILD_MODNAME,
273 .of_match_table = ccf_matches,
276 .remove = ccf_remove,
279 module_platform_driver(ccf_driver);
281 MODULE_LICENSE("GPL");
282 MODULE_AUTHOR("Freescale Semiconductor");
283 MODULE_DESCRIPTION("Freescale CoreNet Coherency Fabric error reporting");