blob: 42e411457494bc9e8fa840519daf2a0cedd4c69d [file] [log] [blame]
Santosh Shilimkar2722e562011-03-07 20:53:10 +05301/*
Sricharan Rc10d5c92014-04-11 13:09:36 -05002 * OMAP L3 Interconnect error handling driver
sricharaned0e3522011-08-24 20:07:45 +05303 *
Nishanth Menonc5f2aea2014-04-11 13:15:43 -05004 * Copyright (C) 2011-2014 Texas Instruments Incorporated - http://www.ti.com/
sricharaned0e3522011-08-24 20:07:45 +05305 * 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
Nishanth Menonc5f2aea2014-04-11 13:15:43 -05009 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
sricharaned0e3522011-08-24 20:07:45 +053011 *
Nishanth Menonc5f2aea2014-04-11 13:15:43 -050012 * This program is distributed "as is" WITHOUT ANY WARRANTY of any
13 * kind, whether express or implied; without even the implied warranty
14 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
sricharaned0e3522011-08-24 20:07:45 +053015 * GNU General Public License for more details.
sricharaned0e3522011-08-24 20:07:45 +053016 */
Santosh Shilimkar2722e562011-03-07 20:53:10 +053017#include <linux/init.h>
Santosh Shilimkar2722e562011-03-07 20:53:10 +053018#include <linux/interrupt.h>
Sricharan R06594522013-11-26 07:38:23 -060019#include <linux/io.h>
Santosh Shilimkar2722e562011-03-07 20:53:10 +053020#include <linux/kernel.h>
Sricharan R06594522013-11-26 07:38:23 -060021#include <linux/module.h>
22#include <linux/of_device.h>
23#include <linux/of.h>
24#include <linux/platform_device.h>
Santosh Shilimkar2722e562011-03-07 20:53:10 +053025#include <linux/slab.h>
26
27#include "omap_l3_noc.h"
28
29/*
30 * Interrupt Handler for L3 error detection.
31 * 1) Identify the L3 clockdomain partition to which the error belongs to.
32 * 2) Identify the slave where the error information is logged
33 * 3) Print the logged information.
34 * 4) Add dump stack to provide kernel trace.
35 *
36 * Two Types of errors :
37 * 1) Custom errors in L3 :
38 * Target like DMM/FW/EMIF generates SRESP=ERR error
39 * 2) Standard L3 error:
40 * - Unsupported CMD.
41 * L3 tries to access target while it is idle
42 * - OCP disconnect.
43 * - Address hole error:
44 * If DSS/ISS/FDIF/USBHOSTFS access a target where they
45 * do not have connectivity, the error is logged in
46 * their default target which is DMM2.
47 *
48 * On High Secure devices, firewall errors are possible and those
49 * can be trapped as well. But the trapping is implemented as part
50 * secure software and hence need not be implemented here.
51 */
52static irqreturn_t l3_interrupt_handler(int irq, void *_l3)
53{
54
Sricharan Rc10d5c92014-04-11 13:09:36 -050055 struct omap_l3 *l3 = _l3;
sricharan551a9fa2011-09-07 17:25:16 +053056 int inttype, i, k;
Santosh Shilimkar2722e562011-03-07 20:53:10 +053057 int err_src = 0;
sricharan551a9fa2011-09-07 17:25:16 +053058 u32 std_err_main, err_reg, clear, masterid;
sricharan6616aac2011-08-23 12:58:48 +053059 void __iomem *base, *l3_targ_base;
Nishanth Menon9e224c82014-04-11 11:21:47 -050060 void __iomem *l3_targ_stderr, *l3_targ_slvofslsb, *l3_targ_mstaddr;
sricharan551a9fa2011-09-07 17:25:16 +053061 char *target_name, *master_name = "UN IDENTIFIED";
Nishanth Menon3ae9af72014-04-11 11:38:10 -050062 struct l3_target_data *l3_targ_inst;
Nishanth Menon97708c02014-04-14 09:57:50 -050063 struct l3_flagmux_data *flag_mux;
Sricharan R06594522013-11-26 07:38:23 -060064 struct l3_masters_data *master;
Nishanth Menonc98aa7a2014-04-11 12:24:56 -050065 char *err_description;
66 char err_string[30] = { 0 };
Santosh Shilimkar2722e562011-03-07 20:53:10 +053067
68 /* Get the Type of interrupt */
omar ramirez35f7b962011-04-18 16:39:42 +000069 inttype = irq == l3->app_irq ? L3_APPLICATION_ERROR : L3_DEBUG_ERROR;
Santosh Shilimkar2722e562011-03-07 20:53:10 +053070
Sricharan R06594522013-11-26 07:38:23 -060071 for (i = 0; i < l3->num_modules; i++) {
Santosh Shilimkar2722e562011-03-07 20:53:10 +053072 /*
73 * Read the regerr register of the clock domain
74 * to determine the source
75 */
sricharan6616aac2011-08-23 12:58:48 +053076 base = l3->l3_base[i];
Nishanth Menon97708c02014-04-14 09:57:50 -050077 flag_mux = l3->l3_flagmux[i];
78 err_reg = readl_relaxed(base + flag_mux->offset +
Nishanth Menon9e224c82014-04-11 11:21:47 -050079 L3_FLAGMUX_REGERR0 + (inttype << 3));
Santosh Shilimkar2722e562011-03-07 20:53:10 +053080
81 /* Get the corresponding error and analyse */
82 if (err_reg) {
Nishanth Menonc98aa7a2014-04-11 12:24:56 -050083 bool std_err = true;
84
Santosh Shilimkar2722e562011-03-07 20:53:10 +053085 /* Identify the source from control status register */
Todd Poynor342fd142011-08-24 19:11:39 +053086 err_src = __ffs(err_reg);
Rajendra Nayak3340d732014-04-10 11:31:33 -050087
88 /* We DONOT expect err_src to go out of bounds */
89 BUG_ON(err_src > MAX_CLKDM_TARGETS);
90
Nishanth Menon97708c02014-04-14 09:57:50 -050091 if (err_src < flag_mux->num_targ_data) {
92 l3_targ_inst = &flag_mux->l3_targ[err_src];
93 target_name = l3_targ_inst->name;
94 l3_targ_base = base + l3_targ_inst->offset;
95 } else {
96 target_name = L3_TARGET_NOT_SUPPORTED;
97 }
Santosh Shilimkar2722e562011-03-07 20:53:10 +053098
Rajendra Nayak3340d732014-04-10 11:31:33 -050099 /*
100 * If we do not know of a register offset to decode
101 * and clear, then mask.
102 */
103 if (target_name == L3_TARGET_NOT_SUPPORTED) {
104 u32 mask_val;
105 void __iomem *mask_reg;
106
107 /*
108 * Certain plaforms may have "undocumented"
109 * status pending on boot.. So dont generate
110 * a severe warning here.
111 */
112 dev_err(l3->dev,
113 "L3 %s error: target %d mod:%d %s\n",
114 inttype ? "debug" : "application",
115 err_src, i, "(unclearable)");
116
Nishanth Menon97708c02014-04-14 09:57:50 -0500117 mask_reg = base + flag_mux->offset +
Rajendra Nayak3340d732014-04-10 11:31:33 -0500118 L3_FLAGMUX_MASK0 + (inttype << 3);
119 mask_val = readl_relaxed(mask_reg);
120 mask_val &= ~(1 << err_src);
121 writel_relaxed(mask_val, mask_reg);
122
123 break;
124 }
125
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530126 /* Read the stderrlog_main_source from clk domain */
Nishanth Menon9e224c82014-04-11 11:21:47 -0500127 l3_targ_stderr = l3_targ_base + L3_TARG_STDERRLOG_MAIN;
128 l3_targ_slvofslsb = l3_targ_base +
129 L3_TARG_STDERRLOG_SLVOFSLSB;
Nishanth Menon9e224c82014-04-11 11:21:47 -0500130
131 std_err_main = readl_relaxed(l3_targ_stderr);
Nishanth Menond4d88192014-04-16 11:01:02 -0500132
Nishanth Menonc98aa7a2014-04-11 12:24:56 -0500133 switch (std_err_main & CUSTOM_ERROR) {
134 case STANDARD_ERROR:
135 err_description = "Standard";
136 snprintf(err_string, sizeof(err_string),
137 ": At Address: 0x%08X ",
138 readl_relaxed(l3_targ_slvofslsb));
139
140 l3_targ_mstaddr = l3_targ_base +
141 L3_TARG_STDERRLOG_MSTADDR;
142 break;
143
144 case CUSTOM_ERROR:
145 err_description = "Custom";
146
147 l3_targ_mstaddr = l3_targ_base +
148 L3_TARG_STDERRLOG_CINFO_MSTADDR;
149 break;
150
151 default:
152 std_err = false;
153 /* Nothing to be handled here as of now */
154 break;
155 }
156
157 if (!std_err)
158 break;
159
Nishanth Menond4d88192014-04-16 11:01:02 -0500160 /* STDERRLOG_MSTADDR Stores the NTTP master address. */
161 masterid = (readl_relaxed(l3_targ_mstaddr) &
162 l3->mst_addr_mask) >>
163 __ffs(l3->mst_addr_mask);
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530164
Nishanth Menonc98aa7a2014-04-11 12:24:56 -0500165 for (k = 0, master = l3->l3_masters;
166 k < l3->num_masters; k++, master++) {
167 if (masterid == master->id) {
168 master_name = master->name;
169 break;
sricharan551a9fa2011-09-07 17:25:16 +0530170 }
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530171 }
Nishanth Menonc98aa7a2014-04-11 12:24:56 -0500172
173 WARN(true,
174 "%s:L3 %s Error: MASTER %s TARGET %s%s\n",
175 dev_name(l3->dev),
176 err_description,
177 master_name, target_name,
178 err_string);
179 /* clear the std error log*/
180 clear = std_err_main | CLEAR_STDERR_LOG;
181 writel_relaxed(clear, l3_targ_stderr);
182
183 /* Error found so break the for loop */
184 break;
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530185 }
186 }
187 return IRQ_HANDLED;
188}
189
Sricharan R06594522013-11-26 07:38:23 -0600190static const struct of_device_id l3_noc_match[] = {
191 {.compatible = "ti,omap4-l3-noc", .data = &omap_l3_data},
192 {},
193};
194MODULE_DEVICE_TABLE(of, l3_noc_match);
195
Sricharan Rc10d5c92014-04-11 13:09:36 -0500196static int omap_l3_probe(struct platform_device *pdev)
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530197{
Sricharan R06594522013-11-26 07:38:23 -0600198 const struct of_device_id *of_id;
Sricharan Rc10d5c92014-04-11 13:09:36 -0500199 static struct omap_l3 *l3;
Peter Ujfalusi56c4a022014-04-01 16:23:47 +0300200 int ret, i;
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530201
Sricharan R06594522013-11-26 07:38:23 -0600202 of_id = of_match_device(l3_noc_match, &pdev->dev);
203 if (!of_id) {
204 dev_err(&pdev->dev, "OF data missing\n");
205 return -EINVAL;
206 }
207
Peter Ujfalusibae74512014-04-01 16:23:46 +0300208 l3 = devm_kzalloc(&pdev->dev, sizeof(*l3), GFP_KERNEL);
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530209 if (!l3)
omar ramirez7529b702011-04-18 16:39:41 +0000210 return -ENOMEM;
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530211
Sricharan R06594522013-11-26 07:38:23 -0600212 memcpy(l3, of_id->data, sizeof(*l3));
Nishanth Menonca6a3492014-04-11 12:04:01 -0500213 l3->dev = &pdev->dev;
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530214 platform_set_drvdata(pdev, l3);
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530215
Peter Ujfalusi56c4a022014-04-01 16:23:47 +0300216 /* Get mem resources */
Sricharan R06594522013-11-26 07:38:23 -0600217 for (i = 0; i < l3->num_modules; i++) {
Peter Ujfalusi56c4a022014-04-01 16:23:47 +0300218 struct resource *res = platform_get_resource(pdev,
219 IORESOURCE_MEM, i);
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530220
Peter Ujfalusi56c4a022014-04-01 16:23:47 +0300221 l3->l3_base[i] = devm_ioremap_resource(&pdev->dev, res);
222 if (IS_ERR(l3->l3_base[i])) {
Nishanth Menonca6a3492014-04-11 12:04:01 -0500223 dev_err(l3->dev, "ioremap %d failed\n", i);
Peter Ujfalusi56c4a022014-04-01 16:23:47 +0300224 return PTR_ERR(l3->l3_base[i]);
225 }
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530226 }
227
228 /*
229 * Setup interrupt Handlers
230 */
Todd Poynorc1df2dc2011-08-29 17:42:23 +0530231 l3->debug_irq = platform_get_irq(pdev, 0);
Nishanth Menonca6a3492014-04-11 12:04:01 -0500232 ret = devm_request_irq(l3->dev, l3->debug_irq, l3_interrupt_handler,
Peter Ujfalusia0ef78f2014-04-01 16:23:48 +0300233 IRQF_DISABLED, "l3-dbg-irq", l3);
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530234 if (ret) {
Nishanth Menonca6a3492014-04-11 12:04:01 -0500235 dev_err(l3->dev, "request_irq failed for %d\n",
Peter Ujfalusiae225982014-04-01 16:23:50 +0300236 l3->debug_irq);
Peter Ujfalusi56c4a022014-04-01 16:23:47 +0300237 return ret;
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530238 }
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530239
Todd Poynorc1df2dc2011-08-29 17:42:23 +0530240 l3->app_irq = platform_get_irq(pdev, 1);
Nishanth Menonca6a3492014-04-11 12:04:01 -0500241 ret = devm_request_irq(l3->dev, l3->app_irq, l3_interrupt_handler,
Peter Ujfalusia0ef78f2014-04-01 16:23:48 +0300242 IRQF_DISABLED, "l3-app-irq", l3);
243 if (ret)
Nishanth Menonca6a3492014-04-11 12:04:01 -0500244 dev_err(l3->dev, "request_irq failed for %d\n", l3->app_irq);
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530245
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530246 return ret;
247}
248
Sricharan Rc10d5c92014-04-11 13:09:36 -0500249static struct platform_driver omap_l3_driver = {
250 .probe = omap_l3_probe,
Benoit Coussond039c5b2011-08-12 13:52:50 +0200251 .driver = {
252 .name = "omap_l3_noc",
253 .owner = THIS_MODULE,
Sricharan R06594522013-11-26 07:38:23 -0600254 .of_match_table = of_match_ptr(l3_noc_match),
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530255 },
256};
257
Sricharan Rc10d5c92014-04-11 13:09:36 -0500258static int __init omap_l3_init(void)
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530259{
Sricharan Rc10d5c92014-04-11 13:09:36 -0500260 return platform_driver_register(&omap_l3_driver);
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530261}
Sricharan Rc10d5c92014-04-11 13:09:36 -0500262postcore_initcall_sync(omap_l3_init);
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530263
Sricharan Rc10d5c92014-04-11 13:09:36 -0500264static void __exit omap_l3_exit(void)
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530265{
Sricharan Rc10d5c92014-04-11 13:09:36 -0500266 platform_driver_unregister(&omap_l3_driver);
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530267}
Sricharan Rc10d5c92014-04-11 13:09:36 -0500268module_exit(omap_l3_exit);