]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
ARM: tegra: Initialize flow controller from DT
authorThierry Reding <treding@nvidia.com>
Tue, 26 Aug 2014 06:14:04 +0000 (08:14 +0200)
committerStephen Warren <swarren@nvidia.com>
Tue, 26 Aug 2014 17:43:55 +0000 (11:43 -0600)
Use a matching device tree node to initialize the flow controller driver
instead of hard-coding the I/O address. This is necessary to get rid of
the iomap.h include, which in turn make it easier to share this code
with 64-bit Tegra SoCs.

Signed-off-by: Thierry Reding <treding@nvidia.com>
Signed-off-by: Stephen Warren <swarren@nvidia.com>
arch/arm/mach-tegra/flowctrl.c
arch/arm/mach-tegra/flowctrl.h
arch/arm/mach-tegra/tegra.c

index ec55d1de1b55ec061490838658a8b87d603a86d0..475e783992fd284dbeb613ba8928262811c1809a 100644 (file)
 #include <linux/init.h>
 #include <linux/io.h>
 #include <linux/kernel.h>
+#include <linux/of.h>
+#include <linux/of_address.h>
 
 #include <soc/tegra/fuse.h>
 
 #include "flowctrl.h"
-#include "iomap.h"
 
 static u8 flowctrl_offset_halt_cpu[] = {
        FLOW_CTRL_HALT_CPU0_EVENTS,
@@ -42,23 +43,22 @@ static u8 flowctrl_offset_cpu_csr[] = {
        FLOW_CTRL_CPU1_CSR + 16,
 };
 
+static void __iomem *tegra_flowctrl_base;
+
 static void flowctrl_update(u8 offset, u32 value)
 {
-       void __iomem *addr = IO_ADDRESS(TEGRA_FLOW_CTRL_BASE) + offset;
-
-       writel(value, addr);
+       writel(value, tegra_flowctrl_base + offset);
 
        /* ensure the update has reached the flow controller */
        wmb();
-       readl_relaxed(addr);
+       readl_relaxed(tegra_flowctrl_base + offset);
 }
 
 u32 flowctrl_read_cpu_csr(unsigned int cpuid)
 {
        u8 offset = flowctrl_offset_cpu_csr[cpuid];
-       void __iomem *addr = IO_ADDRESS(TEGRA_FLOW_CTRL_BASE) + offset;
 
-       return readl(addr);
+       return readl(tegra_flowctrl_base + offset);
 }
 
 void flowctrl_write_cpu_csr(unsigned int cpuid, u32 value)
@@ -139,3 +139,33 @@ void flowctrl_cpu_suspend_exit(unsigned int cpuid)
        reg |= FLOW_CTRL_CSR_EVENT_FLAG;                /* clear event */
        flowctrl_write_cpu_csr(cpuid, reg);
 }
+
+static const struct of_device_id matches[] __initconst = {
+       { .compatible = "nvidia,tegra124-flowctrl" },
+       { .compatible = "nvidia,tegra114-flowctrl" },
+       { .compatible = "nvidia,tegra30-flowctrl" },
+       { .compatible = "nvidia,tegra20-flowctrl" },
+       { }
+};
+
+void __init tegra_flowctrl_init(void)
+{
+       /* hardcoded fallback if device tree node is missing */
+       unsigned long base = 0x60007000;
+       unsigned long size = SZ_4K;
+       struct device_node *np;
+
+       np = of_find_matching_node(NULL, matches);
+       if (np) {
+               struct resource res;
+
+               if (of_address_to_resource(np, 0, &res) == 0) {
+                       size = resource_size(&res);
+                       base = res.start;
+               }
+
+               of_node_put(np);
+       }
+
+       tegra_flowctrl_base = ioremap_nocache(base, size);
+}
index c89aac60a14335c79c9e3b1b6630308e51ba2922..73a9c5016c1ab1ae9414887eb3fdfa16a1b32293 100644 (file)
@@ -59,6 +59,8 @@ void flowctrl_write_cpu_halt(unsigned int cpuid, u32 value);
 
 void flowctrl_cpu_suspend_enter(unsigned int cpuid);
 void flowctrl_cpu_suspend_exit(unsigned int cpuid);
+
+void tegra_flowctrl_init(void);
 #endif
 
 #endif
index 5ef5173dec83bf32b68ea0c5931a9aa03547ad84..ef016af1c9e769176378e2930f24dc2f060adc09 100644 (file)
@@ -48,6 +48,7 @@
 #include "board.h"
 #include "common.h"
 #include "cpuidle.h"
+#include "flowctrl.h"
 #include "iomap.h"
 #include "irq.h"
 #include "pm.h"
@@ -74,6 +75,7 @@ static void __init tegra_init_early(void)
 {
        of_register_trusted_foundations();
        tegra_cpu_reset_handler_init();
+       tegra_flowctrl_init();
 }
 
 static void __init tegra_dt_init_irq(void)