* [PATCH] ARM: tegra: only run PL310 init on systems with one
@ 2014-02-18 23:51 Stephen Warren
2014-02-19 4:31 ` Olof Johansson
0 siblings, 1 reply; 4+ messages in thread
From: Stephen Warren @ 2014-02-18 23:51 UTC (permalink / raw)
To: arm; +Cc: linux-arm-kernel, linux-tegra, Stephen Warren, stable
From: Stephen Warren <swarren@nvidia.com>
Fix tegra_init_cache() to check whether the system has a PL310 cache
before touching the PL310 registers. This prevents access to non-existent
registers on Tegra114 and later.
Note for stable kernels:
In <= v3.12, the file to patch is arch/arm/mach-tegra/common.c.
Cc: <stable@vger.kernel.org> # v3.9+
Signed-off-by: Stephen Warren <swarren@nvidia.com>
---
Another fix for 3.14
arch/arm/mach-tegra/tegra.c | 10 ++++++++++
1 file changed, 10 insertions(+)
diff --git a/arch/arm/mach-tegra/tegra.c b/arch/arm/mach-tegra/tegra.c
index 303a285d80fd..6191603379e1 100644
--- a/arch/arm/mach-tegra/tegra.c
+++ b/arch/arm/mach-tegra/tegra.c
@@ -73,10 +73,20 @@ u32 tegra_uart_config[3] = {
static void __init tegra_init_cache(void)
{
#ifdef CONFIG_CACHE_L2X0
+ static const struct of_device_id pl310_ids[] __initconst = {
+ { .compatible = "arm,pl310-cache", },
+ {}
+ };
+
+ struct device_node *np;
int ret;
void __iomem *p = IO_ADDRESS(TEGRA_ARM_PERIF_BASE) + 0x3000;
u32 aux_ctrl, cache_type;
+ np = of_find_matching_node(NULL, pl310_ids);
+ if (!np)
+ return;
+
cache_type = readl(p + L2X0_CACHE_TYPE);
aux_ctrl = (cache_type & 0x700) << (17-8);
aux_ctrl |= 0x7C400001;
--
1.8.1.5
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] ARM: tegra: only run PL310 init on systems with one
2014-02-18 23:51 [PATCH] ARM: tegra: only run PL310 init on systems with one Stephen Warren
@ 2014-02-19 4:31 ` Olof Johansson
0 siblings, 0 replies; 4+ messages in thread
From: Olof Johansson @ 2014-02-19 4:31 UTC (permalink / raw)
To: Stephen Warren; +Cc: arm, linux-arm-kernel, linux-tegra, Stephen Warren, stable
On Tue, Feb 18, 2014 at 04:51:58PM -0700, Stephen Warren wrote:
> From: Stephen Warren <swarren@nvidia.com>
>
> Fix tegra_init_cache() to check whether the system has a PL310 cache
> before touching the PL310 registers. This prevents access to non-existent
> registers on Tegra114 and later.
>
> Note for stable kernels:
> In <= v3.12, the file to patch is arch/arm/mach-tegra/common.c.
>
> Cc: <stable@vger.kernel.org> # v3.9+
> Signed-off-by: Stephen Warren <swarren@nvidia.com>
> ---
> Another fix for 3.14
Applied.
-Olof
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH] ARM: tegra: only run PL310 init on systems with one
@ 2014-02-26 18:02 Stephen Warren
2014-02-27 12:55 ` Luís Henriques
0 siblings, 1 reply; 4+ messages in thread
From: Stephen Warren @ 2014-02-26 18:02 UTC (permalink / raw)
To: stable-u79uwXL29TY76Z2rM5mHXA
Cc: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
linux-tegra-u79uwXL29TY76Z2rM5mHXA, Stephen Warren
From: Stephen Warren <swarren-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
(This is commit 8859685785bfafadf9bc922dd3a2278e59886947 upstream)
Fix tegra_init_cache() to check whether the system has a PL310 cache
before touching the PL310 registers. This prevents access to non-existent
registers on Tegra114 and later.
(When applying this to 3.10, there will be a trivial conflict, just due to
context differences, at the added include of (linux/of.h>)
(I applied and tested this backport on each of v3.10.*, v3.11.*, v3.12.*)
Cc: <stable-u79uwXL29TY76Z2rM5mHXA@public.gmane.org> # v3.10..v3.12 inclusive
Signed-off-by: Stephen Warren <swarren-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
---
arch/arm/mach-tegra/common.c | 11 +++++++++++
1 file changed, 11 insertions(+)
diff --git a/arch/arm/mach-tegra/common.c b/arch/arm/mach-tegra/common.c
index 94a119a35af8..3c405f43ca39 100644
--- a/arch/arm/mach-tegra/common.c
+++ b/arch/arm/mach-tegra/common.c
@@ -22,6 +22,7 @@
#include <linux/io.h>
#include <linux/clk.h>
#include <linux/delay.h>
+#include <linux/of.h>
#include <linux/reboot.h>
#include <linux/irqchip.h>
#include <linux/clk-provider.h>
@@ -82,10 +83,20 @@ void tegra_assert_system_reset(enum reboot_mode mode, const char *cmd)
static void __init tegra_init_cache(void)
{
#ifdef CONFIG_CACHE_L2X0
+ static const struct of_device_id pl310_ids[] __initconst = {
+ { .compatible = "arm,pl310-cache", },
+ {}
+ };
+
+ struct device_node *np;
int ret;
void __iomem *p = IO_ADDRESS(TEGRA_ARM_PERIF_BASE) + 0x3000;
u32 aux_ctrl, cache_type;
+ np = of_find_matching_node(NULL, pl310_ids);
+ if (!np)
+ return;
+
cache_type = readl(p + L2X0_CACHE_TYPE);
aux_ctrl = (cache_type & 0x700) << (17-8);
aux_ctrl |= 0x7C400001;
--
1.8.1.5
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] ARM: tegra: only run PL310 init on systems with one
2014-02-26 18:02 Stephen Warren
@ 2014-02-27 12:55 ` Luís Henriques
0 siblings, 0 replies; 4+ messages in thread
From: Luís Henriques @ 2014-02-27 12:55 UTC (permalink / raw)
To: Stephen Warren; +Cc: stable, linux-arm-kernel, linux-tegra, Stephen Warren
On Wed, Feb 26, 2014 at 11:02:26AM -0700, Stephen Warren wrote:
> From: Stephen Warren <swarren@nvidia.com>
>
> (This is commit 8859685785bfafadf9bc922dd3a2278e59886947 upstream)
>
> Fix tegra_init_cache() to check whether the system has a PL310 cache
> before touching the PL310 registers. This prevents access to non-existent
> registers on Tegra114 and later.
>
> (When applying this to 3.10, there will be a trivial conflict, just due to
> context differences, at the added include of (linux/of.h>)
>
> (I applied and tested this backport on each of v3.10.*, v3.11.*, v3.12.*)
Thanks a lot for backporting and testing this patch. I will queue it for
the 3.11 kernel.
Cheers,
--
Luís
> Cc: <stable@vger.kernel.org> # v3.10..v3.12 inclusive
> Signed-off-by: Stephen Warren <swarren@nvidia.com>
> ---
> arch/arm/mach-tegra/common.c | 11 +++++++++++
> 1 file changed, 11 insertions(+)
>
> diff --git a/arch/arm/mach-tegra/common.c b/arch/arm/mach-tegra/common.c
> index 94a119a35af8..3c405f43ca39 100644
> --- a/arch/arm/mach-tegra/common.c
> +++ b/arch/arm/mach-tegra/common.c
> @@ -22,6 +22,7 @@
> #include <linux/io.h>
> #include <linux/clk.h>
> #include <linux/delay.h>
> +#include <linux/of.h>
> #include <linux/reboot.h>
> #include <linux/irqchip.h>
> #include <linux/clk-provider.h>
> @@ -82,10 +83,20 @@ void tegra_assert_system_reset(enum reboot_mode mode, const char *cmd)
> static void __init tegra_init_cache(void)
> {
> #ifdef CONFIG_CACHE_L2X0
> + static const struct of_device_id pl310_ids[] __initconst = {
> + { .compatible = "arm,pl310-cache", },
> + {}
> + };
> +
> + struct device_node *np;
> int ret;
> void __iomem *p = IO_ADDRESS(TEGRA_ARM_PERIF_BASE) + 0x3000;
> u32 aux_ctrl, cache_type;
>
> + np = of_find_matching_node(NULL, pl310_ids);
> + if (!np)
> + return;
> +
> cache_type = readl(p + L2X0_CACHE_TYPE);
> aux_ctrl = (cache_type & 0x700) << (17-8);
> aux_ctrl |= 0x7C400001;
> --
> 1.8.1.5
>
> --
> To unsubscribe from this list: send the line "unsubscribe stable" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2014-02-27 12:55 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-02-18 23:51 [PATCH] ARM: tegra: only run PL310 init on systems with one Stephen Warren
2014-02-19 4:31 ` Olof Johansson
-- strict thread matches above, loose matches on Subject: below --
2014-02-26 18:02 Stephen Warren
2014-02-27 12:55 ` Luís Henriques
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).