blob: 25bcb60be880318873a1a5d06279a8b86efc1215 [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 */
Axel Lind4fc7eb2011-11-02 09:40:11 +080023#include <linux/module.h>
Santosh Shilimkar2722e562011-03-07 20:53:10 +053024#include <linux/init.h>
25#include <linux/io.h>
26#include <linux/platform_device.h>
27#include <linux/interrupt.h>
28#include <linux/kernel.h>
29#include <linux/slab.h>
30
31#include "omap_l3_noc.h"
32
33/*
34 * Interrupt Handler for L3 error detection.
35 * 1) Identify the L3 clockdomain partition to which the error belongs to.
36 * 2) Identify the slave where the error information is logged
37 * 3) Print the logged information.
38 * 4) Add dump stack to provide kernel trace.
39 *
40 * Two Types of errors :
41 * 1) Custom errors in L3 :
42 * Target like DMM/FW/EMIF generates SRESP=ERR error
43 * 2) Standard L3 error:
44 * - Unsupported CMD.
45 * L3 tries to access target while it is idle
46 * - OCP disconnect.
47 * - Address hole error:
48 * If DSS/ISS/FDIF/USBHOSTFS access a target where they
49 * do not have connectivity, the error is logged in
50 * their default target which is DMM2.
51 *
52 * On High Secure devices, firewall errors are possible and those
53 * can be trapped as well. But the trapping is implemented as part
54 * secure software and hence need not be implemented here.
55 */
56static irqreturn_t l3_interrupt_handler(int irq, void *_l3)
57{
58
sricharaned0e3522011-08-24 20:07:45 +053059 struct omap4_l3 *l3 = _l3;
sricharan551a9fa2011-09-07 17:25:16 +053060 int inttype, i, k;
Santosh Shilimkar2722e562011-03-07 20:53:10 +053061 int err_src = 0;
sricharan551a9fa2011-09-07 17:25:16 +053062 u32 std_err_main, err_reg, clear, masterid;
sricharan6616aac2011-08-23 12:58:48 +053063 void __iomem *base, *l3_targ_base;
sricharan551a9fa2011-09-07 17:25:16 +053064 char *target_name, *master_name = "UN IDENTIFIED";
Santosh Shilimkar2722e562011-03-07 20:53:10 +053065
66 /* Get the Type of interrupt */
omar ramirez35f7b962011-04-18 16:39:42 +000067 inttype = irq == l3->app_irq ? L3_APPLICATION_ERROR : L3_DEBUG_ERROR;
Santosh Shilimkar2722e562011-03-07 20:53:10 +053068
69 for (i = 0; i < L3_MODULES; i++) {
70 /*
71 * Read the regerr register of the clock domain
72 * to determine the source
73 */
sricharan6616aac2011-08-23 12:58:48 +053074 base = l3->l3_base[i];
75 err_reg = __raw_readl(base + l3_flagmux[i] +
Todd Poynor342fd142011-08-24 19:11:39 +053076 + L3_FLAGMUX_REGERR0 + (inttype << 3));
Santosh Shilimkar2722e562011-03-07 20:53:10 +053077
78 /* Get the corresponding error and analyse */
79 if (err_reg) {
80 /* Identify the source from control status register */
Todd Poynor342fd142011-08-24 19:11:39 +053081 err_src = __ffs(err_reg);
Santosh Shilimkar2722e562011-03-07 20:53:10 +053082
Santosh Shilimkar2722e562011-03-07 20:53:10 +053083 /* Read the stderrlog_main_source from clk domain */
Todd Poynor342fd142011-08-24 19:11:39 +053084 l3_targ_base = base + *(l3_targ[i] + err_src);
sricharan6616aac2011-08-23 12:58:48 +053085 std_err_main = __raw_readl(l3_targ_base +
Todd Poynor342fd142011-08-24 19:11:39 +053086 L3_TARG_STDERRLOG_MAIN);
sricharan551a9fa2011-09-07 17:25:16 +053087 masterid = __raw_readl(l3_targ_base +
88 L3_TARG_STDERRLOG_MSTADDR);
Santosh Shilimkar2722e562011-03-07 20:53:10 +053089
omar ramirez35f7b962011-04-18 16:39:42 +000090 switch (std_err_main & CUSTOM_ERROR) {
Santosh Shilimkar2722e562011-03-07 20:53:10 +053091 case STANDARD_ERROR:
sricharan551a9fa2011-09-07 17:25:16 +053092 target_name =
Todd Poynor342fd142011-08-24 19:11:39 +053093 l3_targ_inst_name[i][err_src];
sricharan551a9fa2011-09-07 17:25:16 +053094 WARN(true, "L3 standard error: TARGET:%s at address 0x%x\n",
95 target_name,
sricharan6616aac2011-08-23 12:58:48 +053096 __raw_readl(l3_targ_base +
Todd Poynor342fd142011-08-24 19:11:39 +053097 L3_TARG_STDERRLOG_SLVOFSLSB));
Santosh Shilimkar2722e562011-03-07 20:53:10 +053098 /* clear the std error log*/
99 clear = std_err_main | CLEAR_STDERR_LOG;
Todd Poynor342fd142011-08-24 19:11:39 +0530100 writel(clear, l3_targ_base +
101 L3_TARG_STDERRLOG_MAIN);
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530102 break;
103
104 case CUSTOM_ERROR:
sricharan551a9fa2011-09-07 17:25:16 +0530105 target_name =
Todd Poynor342fd142011-08-24 19:11:39 +0530106 l3_targ_inst_name[i][err_src];
sricharan551a9fa2011-09-07 17:25:16 +0530107 for (k = 0; k < NUM_OF_L3_MASTERS; k++) {
108 if (masterid == l3_masters[k].id)
109 master_name =
110 l3_masters[k].name;
111 }
112 WARN(true, "L3 custom error: MASTER:%s TARGET:%s\n",
113 master_name, target_name);
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530114 /* clear the std error log*/
115 clear = std_err_main | CLEAR_STDERR_LOG;
Todd Poynor342fd142011-08-24 19:11:39 +0530116 writel(clear, l3_targ_base +
117 L3_TARG_STDERRLOG_MAIN);
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530118 break;
119
120 default:
121 /* Nothing to be handled here as of now */
122 break;
123 }
124 /* Error found so break the for loop */
125 break;
126 }
127 }
128 return IRQ_HANDLED;
129}
130
Greg Kroah-Hartman0fe763c2012-12-21 15:14:44 -0800131static int omap4_l3_probe(struct platform_device *pdev)
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530132{
sricharaned0e3522011-08-24 20:07:45 +0530133 static struct omap4_l3 *l3;
Peter Ujfalusi56c4a022014-04-01 16:23:47 +0300134 int ret, i;
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530135
Peter Ujfalusibae74512014-04-01 16:23:46 +0300136 l3 = devm_kzalloc(&pdev->dev, sizeof(*l3), GFP_KERNEL);
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530137 if (!l3)
omar ramirez7529b702011-04-18 16:39:41 +0000138 return -ENOMEM;
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530139
140 platform_set_drvdata(pdev, l3);
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530141
Peter Ujfalusi56c4a022014-04-01 16:23:47 +0300142 /* Get mem resources */
143 for (i = 0; i < L3_MODULES; i++) {
144 struct resource *res = platform_get_resource(pdev,
145 IORESOURCE_MEM, i);
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530146
Peter Ujfalusi56c4a022014-04-01 16:23:47 +0300147 l3->l3_base[i] = devm_ioremap_resource(&pdev->dev, res);
148 if (IS_ERR(l3->l3_base[i])) {
149 dev_err(&pdev->dev, "ioremap %d failed\n", i);
150 return PTR_ERR(l3->l3_base[i]);
151 }
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530152 }
153
154 /*
155 * Setup interrupt Handlers
156 */
Todd Poynorc1df2dc2011-08-29 17:42:23 +0530157 l3->debug_irq = platform_get_irq(pdev, 0);
Peter Ujfalusia0ef78f2014-04-01 16:23:48 +0300158 ret = devm_request_irq(&pdev->dev, l3->debug_irq, l3_interrupt_handler,
159 IRQF_DISABLED, "l3-dbg-irq", l3);
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530160 if (ret) {
161 pr_crit("L3: request_irq failed to register for 0x%x\n",
Olof Johansson2c2d1672012-09-20 16:10:02 -0700162 l3->debug_irq);
Peter Ujfalusi56c4a022014-04-01 16:23:47 +0300163 return ret;
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530164 }
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530165
Todd Poynorc1df2dc2011-08-29 17:42:23 +0530166 l3->app_irq = platform_get_irq(pdev, 1);
Peter Ujfalusia0ef78f2014-04-01 16:23:48 +0300167 ret = devm_request_irq(&pdev->dev, l3->app_irq, l3_interrupt_handler,
168 IRQF_DISABLED, "l3-app-irq", l3);
169 if (ret)
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530170 pr_crit("L3: request_irq failed to register for 0x%x\n",
Olof Johansson2c2d1672012-09-20 16:10:02 -0700171 l3->app_irq);
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530172
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530173 return ret;
174}
175
Greg Kroah-Hartman0fe763c2012-12-21 15:14:44 -0800176static int omap4_l3_remove(struct platform_device *pdev)
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530177{
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530178 return 0;
179}
180
Benoit Coussond039c5b2011-08-12 13:52:50 +0200181#if defined(CONFIG_OF)
182static const struct of_device_id l3_noc_match[] = {
183 {.compatible = "ti,omap4-l3-noc", },
184 {},
Govindraj.R8770b072011-11-23 14:45:37 -0800185};
Benoit Coussond039c5b2011-08-12 13:52:50 +0200186MODULE_DEVICE_TABLE(of, l3_noc_match);
187#else
188#define l3_noc_match NULL
189#endif
190
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530191static struct platform_driver omap4_l3_driver = {
Benoit Coussond039c5b2011-08-12 13:52:50 +0200192 .probe = omap4_l3_probe,
Greg Kroah-Hartman0fe763c2012-12-21 15:14:44 -0800193 .remove = omap4_l3_remove,
Benoit Coussond039c5b2011-08-12 13:52:50 +0200194 .driver = {
195 .name = "omap_l3_noc",
196 .owner = THIS_MODULE,
197 .of_match_table = l3_noc_match,
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530198 },
199};
200
201static int __init omap4_l3_init(void)
202{
Benoit Coussond039c5b2011-08-12 13:52:50 +0200203 return platform_driver_register(&omap4_l3_driver);
Santosh Shilimkar2722e562011-03-07 20:53:10 +0530204}
205postcore_initcall_sync(omap4_l3_init);
206
207static void __exit omap4_l3_exit(void)
208{
209 platform_driver_unregister(&omap4_l3_driver);
210}
211module_exit(omap4_l3_exit);