2011-03-07 23:23:10 +08:00
|
|
|
/*
|
2014-04-12 02:09:36 +08:00
|
|
|
* OMAP L3 Interconnect error handling driver
|
2011-08-24 22:37:45 +08:00
|
|
|
*
|
2014-04-12 02:15:43 +08:00
|
|
|
* Copyright (C) 2011-2014 Texas Instruments Incorporated - http://www.ti.com/
|
2011-08-24 22:37:45 +08:00
|
|
|
* Santosh Shilimkar <santosh.shilimkar@ti.com>
|
|
|
|
* Sricharan <r.sricharan@ti.com>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
2014-04-12 02:15:43 +08:00
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
2011-08-24 22:37:45 +08:00
|
|
|
*
|
2014-04-12 02:15:43 +08:00
|
|
|
* This program is distributed "as is" WITHOUT ANY WARRANTY of any
|
|
|
|
* kind, whether express or implied; without even the implied warranty
|
|
|
|
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2011-08-24 22:37:45 +08:00
|
|
|
* GNU General Public License for more details.
|
|
|
|
*/
|
2011-03-07 23:23:10 +08:00
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/interrupt.h>
|
2013-11-26 21:38:23 +08:00
|
|
|
#include <linux/io.h>
|
2011-03-07 23:23:10 +08:00
|
|
|
#include <linux/kernel.h>
|
2013-11-26 21:38:23 +08:00
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/of_device.h>
|
|
|
|
#include <linux/of.h>
|
|
|
|
#include <linux/platform_device.h>
|
2011-03-07 23:23:10 +08:00
|
|
|
#include <linux/slab.h>
|
|
|
|
|
|
|
|
#include "omap_l3_noc.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Interrupt Handler for L3 error detection.
|
|
|
|
* 1) Identify the L3 clockdomain partition to which the error belongs to.
|
|
|
|
* 2) Identify the slave where the error information is logged
|
|
|
|
* 3) Print the logged information.
|
|
|
|
* 4) Add dump stack to provide kernel trace.
|
|
|
|
*
|
|
|
|
* Two Types of errors :
|
|
|
|
* 1) Custom errors in L3 :
|
|
|
|
* Target like DMM/FW/EMIF generates SRESP=ERR error
|
|
|
|
* 2) Standard L3 error:
|
|
|
|
* - Unsupported CMD.
|
|
|
|
* L3 tries to access target while it is idle
|
|
|
|
* - OCP disconnect.
|
|
|
|
* - Address hole error:
|
|
|
|
* If DSS/ISS/FDIF/USBHOSTFS access a target where they
|
|
|
|
* do not have connectivity, the error is logged in
|
|
|
|
* their default target which is DMM2.
|
|
|
|
*
|
|
|
|
* On High Secure devices, firewall errors are possible and those
|
|
|
|
* can be trapped as well. But the trapping is implemented as part
|
|
|
|
* secure software and hence need not be implemented here.
|
|
|
|
*/
|
|
|
|
static irqreturn_t l3_interrupt_handler(int irq, void *_l3)
|
|
|
|
{
|
|
|
|
|
2014-04-12 02:09:36 +08:00
|
|
|
struct omap_l3 *l3 = _l3;
|
2011-09-07 19:55:16 +08:00
|
|
|
int inttype, i, k;
|
2011-03-07 23:23:10 +08:00
|
|
|
int err_src = 0;
|
2011-09-07 19:55:16 +08:00
|
|
|
u32 std_err_main, err_reg, clear, masterid;
|
2011-08-23 15:28:48 +08:00
|
|
|
void __iomem *base, *l3_targ_base;
|
2014-04-12 00:21:47 +08:00
|
|
|
void __iomem *l3_targ_stderr, *l3_targ_slvofslsb, *l3_targ_mstaddr;
|
2011-09-07 19:55:16 +08:00
|
|
|
char *target_name, *master_name = "UN IDENTIFIED";
|
2014-04-12 00:38:10 +08:00
|
|
|
struct l3_target_data *l3_targ_inst;
|
2014-04-14 22:57:50 +08:00
|
|
|
struct l3_flagmux_data *flag_mux;
|
2013-11-26 21:38:23 +08:00
|
|
|
struct l3_masters_data *master;
|
2014-04-12 01:24:56 +08:00
|
|
|
char *err_description;
|
|
|
|
char err_string[30] = { 0 };
|
2011-03-07 23:23:10 +08:00
|
|
|
|
|
|
|
/* Get the Type of interrupt */
|
2011-04-19 00:39:42 +08:00
|
|
|
inttype = irq == l3->app_irq ? L3_APPLICATION_ERROR : L3_DEBUG_ERROR;
|
2011-03-07 23:23:10 +08:00
|
|
|
|
2013-11-26 21:38:23 +08:00
|
|
|
for (i = 0; i < l3->num_modules; i++) {
|
2011-03-07 23:23:10 +08:00
|
|
|
/*
|
|
|
|
* Read the regerr register of the clock domain
|
|
|
|
* to determine the source
|
|
|
|
*/
|
2011-08-23 15:28:48 +08:00
|
|
|
base = l3->l3_base[i];
|
2014-04-14 22:57:50 +08:00
|
|
|
flag_mux = l3->l3_flagmux[i];
|
|
|
|
err_reg = readl_relaxed(base + flag_mux->offset +
|
2014-04-12 00:21:47 +08:00
|
|
|
L3_FLAGMUX_REGERR0 + (inttype << 3));
|
2011-03-07 23:23:10 +08:00
|
|
|
|
|
|
|
/* Get the corresponding error and analyse */
|
|
|
|
if (err_reg) {
|
2014-04-12 01:24:56 +08:00
|
|
|
bool std_err = true;
|
|
|
|
|
2011-03-07 23:23:10 +08:00
|
|
|
/* Identify the source from control status register */
|
2011-08-24 21:41:39 +08:00
|
|
|
err_src = __ffs(err_reg);
|
bus: omap_l3_noc: Add support for discountinous flag mux input numbers
On DRA7, unlike on OMAP4 and OMAP5, the flag mux input numbers used
to indicate the source of errors are not continous. Have a way in the
driver to catch these and WARN the user of the flag mux input thats
either undocumented or wrong.
In the similar vein, Timeout errors in AM43x can't be cleared per h/w
team, neither does it have a STDERRLOG_MAIN to clear the error.
Further, the mux bit offset might not even be indexed into our array
of known mux input description, in which case we'd have a abort.
So, define a static range check for bit description and any definition
which has target_name set to NULL (the ones that are not populated or
ones that are specifically marked in the case of discontinous input
numbers), can handle the same gracefully. Upon occurance of error from
such sources, mask it. Otherwise, we'd have an infinite interrupt
source without any means to clear it.
NOTE: follow on patch ensures that these masked bits are ignored.
[nm@ti.com: rebase, squash and improve]
Signed-off-by: Rajendra Nayak <rnayak@ti.com>
Signed-off-by: Afzal Mohammed <afzal@ti.com>
Signed-off-by: Nishanth Menon <nm@ti.com>
Acked-by: Santosh Shilimkar <santosh.shilimkar@ti.com>
Acked-by: Peter Ujfalusi <peter.ujfalusi@ti.com>
Tested-by: Darren Etheridge <detheridge@ti.com>
Tested-by: Sekhar Nori <nsekhar@ti.com>
2014-04-11 00:31:33 +08:00
|
|
|
|
|
|
|
/* We DONOT expect err_src to go out of bounds */
|
|
|
|
BUG_ON(err_src > MAX_CLKDM_TARGETS);
|
|
|
|
|
2014-04-14 22:57:50 +08:00
|
|
|
if (err_src < flag_mux->num_targ_data) {
|
|
|
|
l3_targ_inst = &flag_mux->l3_targ[err_src];
|
|
|
|
target_name = l3_targ_inst->name;
|
|
|
|
l3_targ_base = base + l3_targ_inst->offset;
|
|
|
|
} else {
|
|
|
|
target_name = L3_TARGET_NOT_SUPPORTED;
|
|
|
|
}
|
2011-03-07 23:23:10 +08:00
|
|
|
|
bus: omap_l3_noc: Add support for discountinous flag mux input numbers
On DRA7, unlike on OMAP4 and OMAP5, the flag mux input numbers used
to indicate the source of errors are not continous. Have a way in the
driver to catch these and WARN the user of the flag mux input thats
either undocumented or wrong.
In the similar vein, Timeout errors in AM43x can't be cleared per h/w
team, neither does it have a STDERRLOG_MAIN to clear the error.
Further, the mux bit offset might not even be indexed into our array
of known mux input description, in which case we'd have a abort.
So, define a static range check for bit description and any definition
which has target_name set to NULL (the ones that are not populated or
ones that are specifically marked in the case of discontinous input
numbers), can handle the same gracefully. Upon occurance of error from
such sources, mask it. Otherwise, we'd have an infinite interrupt
source without any means to clear it.
NOTE: follow on patch ensures that these masked bits are ignored.
[nm@ti.com: rebase, squash and improve]
Signed-off-by: Rajendra Nayak <rnayak@ti.com>
Signed-off-by: Afzal Mohammed <afzal@ti.com>
Signed-off-by: Nishanth Menon <nm@ti.com>
Acked-by: Santosh Shilimkar <santosh.shilimkar@ti.com>
Acked-by: Peter Ujfalusi <peter.ujfalusi@ti.com>
Tested-by: Darren Etheridge <detheridge@ti.com>
Tested-by: Sekhar Nori <nsekhar@ti.com>
2014-04-11 00:31:33 +08:00
|
|
|
/*
|
|
|
|
* If we do not know of a register offset to decode
|
|
|
|
* and clear, then mask.
|
|
|
|
*/
|
|
|
|
if (target_name == L3_TARGET_NOT_SUPPORTED) {
|
|
|
|
u32 mask_val;
|
|
|
|
void __iomem *mask_reg;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Certain plaforms may have "undocumented"
|
|
|
|
* status pending on boot.. So dont generate
|
|
|
|
* a severe warning here.
|
|
|
|
*/
|
|
|
|
dev_err(l3->dev,
|
|
|
|
"L3 %s error: target %d mod:%d %s\n",
|
|
|
|
inttype ? "debug" : "application",
|
|
|
|
err_src, i, "(unclearable)");
|
|
|
|
|
2014-04-14 22:57:50 +08:00
|
|
|
mask_reg = base + flag_mux->offset +
|
bus: omap_l3_noc: Add support for discountinous flag mux input numbers
On DRA7, unlike on OMAP4 and OMAP5, the flag mux input numbers used
to indicate the source of errors are not continous. Have a way in the
driver to catch these and WARN the user of the flag mux input thats
either undocumented or wrong.
In the similar vein, Timeout errors in AM43x can't be cleared per h/w
team, neither does it have a STDERRLOG_MAIN to clear the error.
Further, the mux bit offset might not even be indexed into our array
of known mux input description, in which case we'd have a abort.
So, define a static range check for bit description and any definition
which has target_name set to NULL (the ones that are not populated or
ones that are specifically marked in the case of discontinous input
numbers), can handle the same gracefully. Upon occurance of error from
such sources, mask it. Otherwise, we'd have an infinite interrupt
source without any means to clear it.
NOTE: follow on patch ensures that these masked bits are ignored.
[nm@ti.com: rebase, squash and improve]
Signed-off-by: Rajendra Nayak <rnayak@ti.com>
Signed-off-by: Afzal Mohammed <afzal@ti.com>
Signed-off-by: Nishanth Menon <nm@ti.com>
Acked-by: Santosh Shilimkar <santosh.shilimkar@ti.com>
Acked-by: Peter Ujfalusi <peter.ujfalusi@ti.com>
Tested-by: Darren Etheridge <detheridge@ti.com>
Tested-by: Sekhar Nori <nsekhar@ti.com>
2014-04-11 00:31:33 +08:00
|
|
|
L3_FLAGMUX_MASK0 + (inttype << 3);
|
|
|
|
mask_val = readl_relaxed(mask_reg);
|
|
|
|
mask_val &= ~(1 << err_src);
|
|
|
|
writel_relaxed(mask_val, mask_reg);
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2011-03-07 23:23:10 +08:00
|
|
|
/* Read the stderrlog_main_source from clk domain */
|
2014-04-12 00:21:47 +08:00
|
|
|
l3_targ_stderr = l3_targ_base + L3_TARG_STDERRLOG_MAIN;
|
|
|
|
l3_targ_slvofslsb = l3_targ_base +
|
|
|
|
L3_TARG_STDERRLOG_SLVOFSLSB;
|
|
|
|
|
|
|
|
std_err_main = readl_relaxed(l3_targ_stderr);
|
2014-04-17 00:01:02 +08:00
|
|
|
|
2011-04-19 00:39:42 +08:00
|
|
|
switch (std_err_main & CUSTOM_ERROR) {
|
2011-03-07 23:23:10 +08:00
|
|
|
case STANDARD_ERROR:
|
2014-04-12 01:24:56 +08:00
|
|
|
err_description = "Standard";
|
|
|
|
snprintf(err_string, sizeof(err_string),
|
|
|
|
": At Address: 0x%08X ",
|
|
|
|
readl_relaxed(l3_targ_slvofslsb));
|
|
|
|
|
|
|
|
l3_targ_mstaddr = l3_targ_base +
|
|
|
|
L3_TARG_STDERRLOG_MSTADDR;
|
2011-03-07 23:23:10 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case CUSTOM_ERROR:
|
2014-04-12 01:24:56 +08:00
|
|
|
err_description = "Custom";
|
|
|
|
|
|
|
|
l3_targ_mstaddr = l3_targ_base +
|
|
|
|
L3_TARG_STDERRLOG_CINFO_MSTADDR;
|
2011-03-07 23:23:10 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2014-04-12 01:24:56 +08:00
|
|
|
std_err = false;
|
2011-03-07 23:23:10 +08:00
|
|
|
/* Nothing to be handled here as of now */
|
|
|
|
break;
|
|
|
|
}
|
2014-04-12 01:24:56 +08:00
|
|
|
|
|
|
|
if (!std_err)
|
|
|
|
break;
|
|
|
|
|
|
|
|
/* STDERRLOG_MSTADDR Stores the NTTP master address. */
|
|
|
|
masterid = (readl_relaxed(l3_targ_mstaddr) &
|
|
|
|
l3->mst_addr_mask) >>
|
|
|
|
__ffs(l3->mst_addr_mask);
|
|
|
|
|
|
|
|
for (k = 0, master = l3->l3_masters;
|
|
|
|
k < l3->num_masters; k++, master++) {
|
|
|
|
if (masterid == master->id) {
|
|
|
|
master_name = master->name;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
WARN(true,
|
|
|
|
"%s:L3 %s Error: MASTER %s TARGET %s%s\n",
|
|
|
|
dev_name(l3->dev),
|
|
|
|
err_description,
|
|
|
|
master_name, target_name,
|
|
|
|
err_string);
|
|
|
|
/* clear the std error log*/
|
|
|
|
clear = std_err_main | CLEAR_STDERR_LOG;
|
|
|
|
writel_relaxed(clear, l3_targ_stderr);
|
|
|
|
|
|
|
|
/* Error found so break the for loop */
|
|
|
|
break;
|
2011-03-07 23:23:10 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return IRQ_HANDLED;
|
|
|
|
}
|
|
|
|
|
2013-11-26 21:38:23 +08:00
|
|
|
static const struct of_device_id l3_noc_match[] = {
|
|
|
|
{.compatible = "ti,omap4-l3-noc", .data = &omap_l3_data},
|
|
|
|
{},
|
|
|
|
};
|
|
|
|
MODULE_DEVICE_TABLE(of, l3_noc_match);
|
|
|
|
|
2014-04-12 02:09:36 +08:00
|
|
|
static int omap_l3_probe(struct platform_device *pdev)
|
2011-03-07 23:23:10 +08:00
|
|
|
{
|
2013-11-26 21:38:23 +08:00
|
|
|
const struct of_device_id *of_id;
|
2014-04-12 02:09:36 +08:00
|
|
|
static struct omap_l3 *l3;
|
2014-04-01 21:23:47 +08:00
|
|
|
int ret, i;
|
2011-03-07 23:23:10 +08:00
|
|
|
|
2013-11-26 21:38:23 +08:00
|
|
|
of_id = of_match_device(l3_noc_match, &pdev->dev);
|
|
|
|
if (!of_id) {
|
|
|
|
dev_err(&pdev->dev, "OF data missing\n");
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2014-04-01 21:23:46 +08:00
|
|
|
l3 = devm_kzalloc(&pdev->dev, sizeof(*l3), GFP_KERNEL);
|
2011-03-07 23:23:10 +08:00
|
|
|
if (!l3)
|
2011-04-19 00:39:41 +08:00
|
|
|
return -ENOMEM;
|
2011-03-07 23:23:10 +08:00
|
|
|
|
2013-11-26 21:38:23 +08:00
|
|
|
memcpy(l3, of_id->data, sizeof(*l3));
|
2014-04-12 01:04:01 +08:00
|
|
|
l3->dev = &pdev->dev;
|
2011-03-07 23:23:10 +08:00
|
|
|
platform_set_drvdata(pdev, l3);
|
|
|
|
|
2014-04-01 21:23:47 +08:00
|
|
|
/* Get mem resources */
|
2013-11-26 21:38:23 +08:00
|
|
|
for (i = 0; i < l3->num_modules; i++) {
|
2014-04-01 21:23:47 +08:00
|
|
|
struct resource *res = platform_get_resource(pdev,
|
|
|
|
IORESOURCE_MEM, i);
|
2011-03-07 23:23:10 +08:00
|
|
|
|
2014-04-01 21:23:47 +08:00
|
|
|
l3->l3_base[i] = devm_ioremap_resource(&pdev->dev, res);
|
|
|
|
if (IS_ERR(l3->l3_base[i])) {
|
2014-04-12 01:04:01 +08:00
|
|
|
dev_err(l3->dev, "ioremap %d failed\n", i);
|
2014-04-01 21:23:47 +08:00
|
|
|
return PTR_ERR(l3->l3_base[i]);
|
|
|
|
}
|
2011-03-07 23:23:10 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Setup interrupt Handlers
|
|
|
|
*/
|
2011-08-29 20:12:23 +08:00
|
|
|
l3->debug_irq = platform_get_irq(pdev, 0);
|
2014-04-12 01:04:01 +08:00
|
|
|
ret = devm_request_irq(l3->dev, l3->debug_irq, l3_interrupt_handler,
|
2014-04-01 21:23:48 +08:00
|
|
|
IRQF_DISABLED, "l3-dbg-irq", l3);
|
2011-03-07 23:23:10 +08:00
|
|
|
if (ret) {
|
2014-04-12 01:04:01 +08:00
|
|
|
dev_err(l3->dev, "request_irq failed for %d\n",
|
2014-04-01 21:23:50 +08:00
|
|
|
l3->debug_irq);
|
2014-04-01 21:23:47 +08:00
|
|
|
return ret;
|
2011-03-07 23:23:10 +08:00
|
|
|
}
|
|
|
|
|
2011-08-29 20:12:23 +08:00
|
|
|
l3->app_irq = platform_get_irq(pdev, 1);
|
2014-04-12 01:04:01 +08:00
|
|
|
ret = devm_request_irq(l3->dev, l3->app_irq, l3_interrupt_handler,
|
2014-04-01 21:23:48 +08:00
|
|
|
IRQF_DISABLED, "l3-app-irq", l3);
|
|
|
|
if (ret)
|
2014-04-12 01:04:01 +08:00
|
|
|
dev_err(l3->dev, "request_irq failed for %d\n", l3->app_irq);
|
2011-04-19 00:39:41 +08:00
|
|
|
|
2011-03-07 23:23:10 +08:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2014-04-12 02:09:36 +08:00
|
|
|
static struct platform_driver omap_l3_driver = {
|
|
|
|
.probe = omap_l3_probe,
|
2011-08-12 19:52:50 +08:00
|
|
|
.driver = {
|
|
|
|
.name = "omap_l3_noc",
|
|
|
|
.owner = THIS_MODULE,
|
2013-11-26 21:38:23 +08:00
|
|
|
.of_match_table = of_match_ptr(l3_noc_match),
|
2011-03-07 23:23:10 +08:00
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2014-04-12 02:09:36 +08:00
|
|
|
static int __init omap_l3_init(void)
|
2011-03-07 23:23:10 +08:00
|
|
|
{
|
2014-04-12 02:09:36 +08:00
|
|
|
return platform_driver_register(&omap_l3_driver);
|
2011-03-07 23:23:10 +08:00
|
|
|
}
|
2014-04-12 02:09:36 +08:00
|
|
|
postcore_initcall_sync(omap_l3_init);
|
2011-03-07 23:23:10 +08:00
|
|
|
|
2014-04-12 02:09:36 +08:00
|
|
|
static void __exit omap_l3_exit(void)
|
2011-03-07 23:23:10 +08:00
|
|
|
{
|
2014-04-12 02:09:36 +08:00
|
|
|
platform_driver_unregister(&omap_l3_driver);
|
2011-03-07 23:23:10 +08:00
|
|
|
}
|
2014-04-12 02:09:36 +08:00
|
|
|
module_exit(omap_l3_exit);
|