Merge branch 'next/drivers' into HEAD
[deliverable/linux.git] / arch / arm / mach-tegra / common.c
CommitLineData
c5f80065 1/*
c37c07dd 2 * arch/arm/mach-tegra/common.c
c5f80065
EG
3 *
4 * Copyright (C) 2010 Google, Inc.
5 *
6 * Author:
7 * Colin Cross <ccross@android.com>
8 *
9 * This software is licensed under the terms of the GNU General Public
10 * License version 2, as published by the Free Software Foundation, and
11 * may be copied, distributed, and modified under those terms.
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 */
19
20#include <linux/init.h>
21#include <linux/io.h>
4de3a8fa
CC
22#include <linux/clk.h>
23#include <linux/delay.h>
c37c07dd 24#include <linux/of_irq.h>
c5f80065
EG
25
26#include <asm/hardware/cache-l2x0.h>
c37c07dd 27#include <asm/hardware/gic.h>
c5f80065
EG
28
29#include <mach/iomap.h>
65fe31da 30#include <mach/powergate.h>
c5f80065
EG
31
32#include "board.h"
d8611961 33#include "clock.h"
73625e3e 34#include "fuse.h"
d3b8bdd5 35#include "pmc.h"
b861c275 36#include "apbio.h"
59b0f682 37#include "sleep.h"
d8611961 38
6d7d7b3e
SW
39/*
40 * Storage for debug-macro.S's state.
41 *
42 * This must be in .data not .bss so that it gets initialized each time the
43 * kernel is loaded. The data is declared here rather than debug-macro.S so
44 * that multiple inclusions of debug-macro.S point at the same data.
45 */
46#define TEGRA_DEBUG_UART_OFFSET (TEGRA_DEBUG_UART_BASE & 0xFFFF)
47u32 tegra_uart_config[3] = {
48 /* Debug UART initialization required */
49 1,
50 /* Debug UART physical address */
51 (u32)(IO_APB_PHYS + TEGRA_DEBUG_UART_OFFSET),
52 /* Debug UART virtual address */
53 (u32)(IO_APB_VIRT + TEGRA_DEBUG_UART_OFFSET),
54};
d8611961 55
6cc04a44 56#ifdef CONFIG_OF
c37c07dd
PDS
57static const struct of_device_id tegra_dt_irq_match[] __initconst = {
58 { .compatible = "arm,cortex-a9-gic", .data = gic_of_init },
59 { }
60};
61
62void __init tegra_dt_init_irq(void)
63{
64 tegra_init_irq();
65 of_irq_init(tegra_dt_irq_match);
66}
6cc04a44 67#endif
c37c07dd 68
699fe145
CC
69void tegra_assert_system_reset(char mode, const char *cmd)
70{
9bfc3f0d 71 void __iomem *reset = IO_ADDRESS(TEGRA_PMC_BASE + 0);
699fe145
CC
72 u32 reg;
73
375b19cd 74 reg = readl_relaxed(reset);
9bfc3f0d 75 reg |= 0x10;
375b19cd 76 writel_relaxed(reg, reset);
699fe145
CC
77}
78
c37c07dd
PDS
79#ifdef CONFIG_ARCH_TEGRA_2x_SOC
80static __initdata struct tegra_clk_init_table tegra20_clk_init_table[] = {
d8611961
CC
81 /* name parent rate enabled */
82 { "clk_m", NULL, 0, true },
83 { "pll_p", "clk_m", 216000000, true },
84 { "pll_p_out1", "pll_p", 28800000, true },
85 { "pll_p_out2", "pll_p", 48000000, true },
86 { "pll_p_out3", "pll_p", 72000000, true },
9abafa02 87 { "pll_p_out4", "pll_p", 24000000, true },
60f975b9
SW
88 { "pll_c", "clk_m", 600000000, true },
89 { "pll_c_out1", "pll_c", 120000000, true },
90 { "sclk", "pll_c_out1", 120000000, true },
91 { "hclk", "sclk", 120000000, true },
7ff4db09 92 { "pclk", "hclk", 60000000, true },
cd51d0ed
CC
93 { "csite", NULL, 0, true },
94 { "emc", NULL, 0, true },
95 { "cpu", NULL, 0, true },
d8611961
CC
96 { NULL, NULL, 0, 0},
97};
c37c07dd 98#endif
c5f80065 99
64376269
PDS
100#ifdef CONFIG_ARCH_TEGRA_3x_SOC
101static __initdata struct tegra_clk_init_table tegra30_clk_init_table[] = {
102 /* name parent rate enabled */
103 { "clk_m", NULL, 0, true },
104 { "pll_p", "clk_m", 408000000, true },
105 { "pll_p_out1", "pll_p", 9600000, true },
106 { NULL, NULL, 0, 0},
107};
108#endif
109
110
01548673 111static void __init tegra_init_cache(u32 tag_latency, u32 data_latency)
c5f80065
EG
112{
113#ifdef CONFIG_CACHE_L2X0
114 void __iomem *p = IO_ADDRESS(TEGRA_ARM_PERIF_BASE) + 0x3000;
01548673 115 u32 aux_ctrl, cache_type;
c5f80065 116
01548673
PDS
117 writel_relaxed(tag_latency, p + L2X0_TAG_LATENCY_CTRL);
118 writel_relaxed(data_latency, p + L2X0_DATA_LATENCY_CTRL);
c5f80065 119
01548673
PDS
120 cache_type = readl(p + L2X0_CACHE_TYPE);
121 aux_ctrl = (cache_type & 0x700) << (17-8);
122 aux_ctrl |= 0x6C000001;
123
124 l2x0_init(p, aux_ctrl, 0x8200c3fe);
c5f80065 125#endif
4de3a8fa 126
c5f80065
EG
127}
128
c37c07dd
PDS
129#ifdef CONFIG_ARCH_TEGRA_2x_SOC
130void __init tegra20_init_early(void)
c5f80065 131{
b861c275 132 tegra_apb_io_init();
73625e3e 133 tegra_init_fuse();
c37c07dd
PDS
134 tegra2_init_clocks();
135 tegra_clk_init_from_table(tegra20_clk_init_table);
01548673 136 tegra_init_cache(0x331, 0x441);
d3b8bdd5 137 tegra_pmc_init();
65fe31da 138 tegra_powergate_init();
453689e4 139 tegra20_hotplug_init();
c5f80065 140}
c37c07dd 141#endif
44107d8b
PDS
142#ifdef CONFIG_ARCH_TEGRA_3x_SOC
143void __init tegra30_init_early(void)
144{
b861c275 145 tegra_apb_io_init();
cec60064 146 tegra_init_fuse();
7ff43eea 147 tegra30_init_clocks();
64376269 148 tegra_clk_init_from_table(tegra30_clk_init_table);
44107d8b 149 tegra_init_cache(0x441, 0x551);
d3b8bdd5 150 tegra_pmc_init();
65fe31da 151 tegra_powergate_init();
59b0f682 152 tegra30_hotplug_init();
44107d8b
PDS
153}
154#endif
390e0cfd
SG
155
156void __init tegra_init_late(void)
157{
390e0cfd
SG
158 tegra_powergate_debugfs_init();
159}
This page took 0.144692 seconds and 5 git commands to generate.