blob: 8f1835711676791884a7522d0633a73bca1f816a [file] [log] [blame]
Santosh Shilimkar2722e562011-03-07 20:53:10 +05301/*
sricharaned0e3522011-08-24 20:07:45 +05302 * OMAP4XXX L3 Interconnect error handling driver
3 *
4 * Copyright (C) 2011 Texas Corporation
5 * Santosh Shilimkar <santosh.shilimkar@ti.com>
6 * Sricharan <r.sricharan@ti.com>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
21 * USA
22 */
Santosh Shilimkar2722e562011-03-07 20:53:10 +053023#include <linux/init.h>
24#include <linux/io.h>
25#include <linux/platform_device.h>
26#include <linux/interrupt.h>
27#include <linux/kernel.h>
28#include <linux/slab.h>
29
30#include "omap_l3_noc.h"
31
32/*
33 * Interrupt Handler for L3 error detection.
34 * 1) Identify the L3 clockdomain partition to which the error belongs to.
35 * 2) Identify the slave where the error information is logged
36 * 3) Print the logged information.
37 * 4) Add dump stack to provide kernel trace.
38 *
39 * Two Types of errors :
40 * 1) Custom errors in L3 :
41 * Target like DMM/FW/EMIF generates SRESP=ERR error
42 * 2) Standard L3 error:
43 * - Unsupported CMD.
44 * L3 tries to access target while it is idle
45 * - OCP disconnect.
46 * - Address hole error:
47 * If DSS/ISS/FDIF/USBHOSTFS access a target where they
48 * do not have connectivity, the error is logged in
49 * their default target which is DMM2.
50 *
51 * On High Secure devices, firewall errors are possible and those
52 * can be trapped as well. But the trapping is implemented as part
53 * secure software and hence need not be implemented here.
54 */
55static irqreturn_t l3_interrupt_handler(int irq, void *_l3)
56{
57
sricharaned0e3522011-08-24 20:07:45 +053058 struct omap4_l3 *l3 = _l3;
Todd Poynor342fd142011-08-24 19:11:39 +053059 int inttype, i;
Santosh Shilimkar2722e562011-03-07 20:53:10 +053060 int err_src = 0;
sricharan6616aac2011-08-23 12:58:48 +053061 u32 std_err_main, err_reg, clear;
62 void __iomem *base, *l3_targ_base;
Santosh Shilimkar2722e562011-03-07 20:53:10 +053063 char *source_name;
64
65 /* Get the Type of interrupt */
omar ramirez35f7b962011-04-18 16:39:42 +000066 inttype = irq == l3->app_irq ? L3_APPLICATION_ERROR : L3_DEBUG_ERROR;
Santosh Shilimkar2722e562011-03-07 20:53:10 +053067
68 for (i = 0; i < L3_MODULES; i++) {
69 /*
70 * Read the regerr register of the clock domain
71 * to determine the source
72 */
sricharan6616aac2011-08-23 12:58:48 +053073 base = l3->l3_base[i];
74 err_reg = __raw_readl(base + l3_flagmux[i] +
Todd Poynor342fd142011-08-24 19:11:39 +053075 + L3_FLAGMUX_REGERR0 + (inttype << 3));
Santosh Shilimkar2722e562011-03-07 20:53:10 +053076
77 /* Get the corresponding error and analyse */
78 if (err_reg) {
79 /* Identify the source from control status register */
Todd Poynor342fd142011-08-24 19:11:39 +053080 err_src = __ffs(err_reg);
Santosh Shilimkar2722e562011-03-07 20:53:10 +053081
Santosh Shilimkar2722e562011-03-07 20:53:10 +053082 /* Read the stderrlog_main_source from clk domain */
Todd Poynor342fd142011-08-24 19:11:39 +053083 l3_targ_base = base + *(l3_targ[i] + err_src);
sricharan6616aac2011-08-23 12:58:48 +053084 std_err_main = __raw_readl(l3_targ_base +
Todd Poynor342fd142011-08-24 19:11:39 +053085 L3_TARG_STDERRLOG_MAIN);
Santosh Shilimkar2722e562011-03-07 20:53:10 +053086
omar ramirez35f7b962011-04-18 16:39:42 +000087 switch (std_err_main & CUSTOM_ERROR) {
Santosh Shilimkar2722e562011-03-07 20:53:10 +053088 case STANDARD_ERROR:
89 source_name =
Todd Poynor342fd142011-08-24 19:11:39 +053090 l3_targ_inst_name[i][err_src];
Santosh Shilimkar2722e562011-03-07 20:53:10 +053091 WARN(true, "L3 standard error: SOURCE:%s at address 0x%x\n",
Todd Poynor342fd142011-08-24 19:11:39 +053092 source_name,
sricharan6616aac2011-08-23 12:58:48 +053093 __raw_readl(l3_targ_base +
Todd Poynor342fd142011-08-24 19:11:39 +053094 L3_TARG_STDERRLOG_SLVOFSLSB));
Santosh Shilimkar2722e562011-03-07 20:53:10 +053095 /* clear the std error log*/
96 clear = std_err_main | CLEAR_STDERR_LOG;
Todd Poynor342fd142011-08-24 19:11:39 +053097 writel(clear, l3_targ_base +
98 L3_TARG_STDERRLOG_MAIN);
Santosh Shilimkar2722e562011-03-07 20:53:10 +053099 break;
100
101 case CUSTOM_ERROR:
102 source_name =
Todd Poynor342fd142011-08-24 19:11:39 +0530103 l3_targ_inst_name[i][err_src];
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530104
Todd Poynor342fd142011-08-24 19:11:39 +0530105 WARN(true, "L3 custom error: SOURCE:%s\n",
106 source_name);
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530107 /* clear the std error log*/
108 clear = std_err_main | CLEAR_STDERR_LOG;
Todd Poynor342fd142011-08-24 19:11:39 +0530109 writel(clear, l3_targ_base +
110 L3_TARG_STDERRLOG_MAIN);
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530111 break;
112
113 default:
114 /* Nothing to be handled here as of now */
115 break;
116 }
117 /* Error found so break the for loop */
118 break;
119 }
120 }
121 return IRQ_HANDLED;
122}
123
124static int __init omap4_l3_probe(struct platform_device *pdev)
125{
sricharaned0e3522011-08-24 20:07:45 +0530126 static struct omap4_l3 *l3;
Todd Poynor342fd142011-08-24 19:11:39 +0530127 struct resource *res;
Todd Poynorc1df2dc2011-08-29 17:42:23 +0530128 int ret;
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530129
130 l3 = kzalloc(sizeof(*l3), GFP_KERNEL);
131 if (!l3)
omar ramirez7529b702011-04-18 16:39:41 +0000132 return -ENOMEM;
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530133
134 platform_set_drvdata(pdev, l3);
135 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
136 if (!res) {
137 dev_err(&pdev->dev, "couldn't find resource 0\n");
138 ret = -ENODEV;
omar ramirez7529b702011-04-18 16:39:41 +0000139 goto err0;
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530140 }
141
142 l3->l3_base[0] = ioremap(res->start, resource_size(res));
omar ramirez35f7b962011-04-18 16:39:42 +0000143 if (!l3->l3_base[0]) {
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530144 dev_err(&pdev->dev, "ioremap failed\n");
145 ret = -ENOMEM;
omar ramirez7529b702011-04-18 16:39:41 +0000146 goto err0;
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530147 }
148
149 res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
150 if (!res) {
151 dev_err(&pdev->dev, "couldn't find resource 1\n");
152 ret = -ENODEV;
omar ramirez7529b702011-04-18 16:39:41 +0000153 goto err1;
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530154 }
155
156 l3->l3_base[1] = ioremap(res->start, resource_size(res));
omar ramirez35f7b962011-04-18 16:39:42 +0000157 if (!l3->l3_base[1]) {
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530158 dev_err(&pdev->dev, "ioremap failed\n");
159 ret = -ENOMEM;
omar ramirez7529b702011-04-18 16:39:41 +0000160 goto err1;
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530161 }
162
163 res = platform_get_resource(pdev, IORESOURCE_MEM, 2);
164 if (!res) {
165 dev_err(&pdev->dev, "couldn't find resource 2\n");
166 ret = -ENODEV;
omar ramirez7529b702011-04-18 16:39:41 +0000167 goto err2;
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530168 }
169
170 l3->l3_base[2] = ioremap(res->start, resource_size(res));
omar ramirez35f7b962011-04-18 16:39:42 +0000171 if (!l3->l3_base[2]) {
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530172 dev_err(&pdev->dev, "ioremap failed\n");
173 ret = -ENOMEM;
omar ramirez7529b702011-04-18 16:39:41 +0000174 goto err2;
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530175 }
176
177 /*
178 * Setup interrupt Handlers
179 */
Todd Poynorc1df2dc2011-08-29 17:42:23 +0530180 l3->debug_irq = platform_get_irq(pdev, 0);
181 ret = request_irq(l3->debug_irq,
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530182 l3_interrupt_handler,
183 IRQF_DISABLED, "l3-dbg-irq", l3);
184 if (ret) {
185 pr_crit("L3: request_irq failed to register for 0x%x\n",
sricharaned0e3522011-08-24 20:07:45 +0530186 OMAP44XX_IRQ_L3_DBG);
omar ramirez7529b702011-04-18 16:39:41 +0000187 goto err3;
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530188 }
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530189
Todd Poynorc1df2dc2011-08-29 17:42:23 +0530190 l3->app_irq = platform_get_irq(pdev, 1);
191 ret = request_irq(l3->app_irq,
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530192 l3_interrupt_handler,
193 IRQF_DISABLED, "l3-app-irq", l3);
194 if (ret) {
195 pr_crit("L3: request_irq failed to register for 0x%x\n",
sricharaned0e3522011-08-24 20:07:45 +0530196 OMAP44XX_IRQ_L3_APP);
omar ramirez7529b702011-04-18 16:39:41 +0000197 goto err4;
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530198 }
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530199
omar ramirez7529b702011-04-18 16:39:41 +0000200 return 0;
201
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530202err4:
omar ramirez7529b702011-04-18 16:39:41 +0000203 free_irq(l3->debug_irq, l3);
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530204err3:
omar ramirez7529b702011-04-18 16:39:41 +0000205 iounmap(l3->l3_base[2]);
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530206err2:
omar ramirez7529b702011-04-18 16:39:41 +0000207 iounmap(l3->l3_base[1]);
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530208err1:
omar ramirez7529b702011-04-18 16:39:41 +0000209 iounmap(l3->l3_base[0]);
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530210err0:
omar ramirez7529b702011-04-18 16:39:41 +0000211 kfree(l3);
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530212 return ret;
213}
214
215static int __exit omap4_l3_remove(struct platform_device *pdev)
216{
sricharaned0e3522011-08-24 20:07:45 +0530217 struct omap4_l3 *l3 = platform_get_drvdata(pdev);
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530218
219 free_irq(l3->app_irq, l3);
220 free_irq(l3->debug_irq, l3);
221 iounmap(l3->l3_base[0]);
222 iounmap(l3->l3_base[1]);
223 iounmap(l3->l3_base[2]);
224 kfree(l3);
225
226 return 0;
227}
228
229static struct platform_driver omap4_l3_driver = {
sricharaned0e3522011-08-24 20:07:45 +0530230 .remove = __exit_p(omap4_l3_remove),
231 .driver = {
232 .name = "omap_l3_noc",
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530233 },
234};
235
236static int __init omap4_l3_init(void)
237{
238 return platform_driver_probe(&omap4_l3_driver, omap4_l3_probe);
239}
240postcore_initcall_sync(omap4_l3_init);
241
242static void __exit omap4_l3_exit(void)
243{
244 platform_driver_unregister(&omap4_l3_driver);
245}
246module_exit(omap4_l3_exit);