ARM: tegra: split tegra_pmc_init() in two
[deliverable/linux.git] / arch / arm / mach-tegra / common.c
CommitLineData
c5f80065 1/*
c37c07dd 2 * arch/arm/mach-tegra/common.c
c5f80065 3 *
d2ffb918 4 * Copyright (c) 2013 NVIDIA Corporation. All rights reserved.
c5f80065
EG
5 * Copyright (C) 2010 Google, Inc.
6 *
7 * Author:
8 * Colin Cross <ccross@android.com>
9 *
10 * This software is licensed under the terms of the GNU General Public
11 * License version 2, as published by the Free Software Foundation, and
12 * may be copied, distributed, and modified under those terms.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 */
20
21#include <linux/init.h>
22#include <linux/io.h>
4de3a8fa
CC
23#include <linux/clk.h>
24#include <linux/delay.h>
7b6d864b 25#include <linux/reboot.h>
0529e315 26#include <linux/irqchip.h>
c5f80065
EG
27
28#include <asm/hardware/cache-l2x0.h>
29
c5f80065 30#include "board.h"
a1725732 31#include "common.h"
e22dc2b2 32#include "cpuidle.h"
73625e3e 33#include "fuse.h"
2be39c07 34#include "iomap.h"
e307cc89 35#include "irq.h"
d3b8bdd5 36#include "pmc.h"
b861c275 37#include "apbio.h"
59b0f682 38#include "sleep.h"
29a0e7be 39#include "pm.h"
9e32366f 40#include "reset.h"
d8611961 41
6d7d7b3e
SW
42/*
43 * Storage for debug-macro.S's state.
44 *
45 * This must be in .data not .bss so that it gets initialized each time the
46 * kernel is loaded. The data is declared here rather than debug-macro.S so
47 * that multiple inclusions of debug-macro.S point at the same data.
48 */
1a6d3da8 49u32 tegra_uart_config[4] = {
6d7d7b3e
SW
50 /* Debug UART initialization required */
51 1,
52 /* Debug UART physical address */
adc18315 53 0,
6d7d7b3e 54 /* Debug UART virtual address */
adc18315 55 0,
1a6d3da8
SW
56 /* Scratch space for debug macro */
57 0,
6d7d7b3e 58};
d8611961 59
6cc04a44 60#ifdef CONFIG_OF
c37c07dd
PDS
61void __init tegra_dt_init_irq(void)
62{
d2207071 63 tegra_pmc_init_irq();
c37c07dd 64 tegra_init_irq();
0529e315 65 irqchip_init();
e307cc89 66 tegra_legacy_irq_syscore_init();
c37c07dd 67}
6cc04a44 68#endif
c37c07dd 69
7b6d864b 70void tegra_assert_system_reset(enum reboot_mode mode, const char *cmd)
699fe145 71{
9bfc3f0d 72 void __iomem *reset = IO_ADDRESS(TEGRA_PMC_BASE + 0);
699fe145
CC
73 u32 reg;
74
375b19cd 75 reg = readl_relaxed(reset);
9bfc3f0d 76 reg |= 0x10;
375b19cd 77 writel_relaxed(reg, reset);
699fe145
CC
78}
79
d065ab71 80static void __init tegra_init_cache(void)
c5f80065
EG
81{
82#ifdef CONFIG_CACHE_L2X0
29a0e7be 83 int ret;
c5f80065 84 void __iomem *p = IO_ADDRESS(TEGRA_ARM_PERIF_BASE) + 0x3000;
01548673 85 u32 aux_ctrl, cache_type;
c5f80065 86
01548673
PDS
87 cache_type = readl(p + L2X0_CACHE_TYPE);
88 aux_ctrl = (cache_type & 0x700) << (17-8);
fd072a86 89 aux_ctrl |= 0x7C400001;
01548673 90
29a0e7be
JL
91 ret = l2x0_of_init(aux_ctrl, 0x8200c3fe);
92 if (!ret)
93 l2x0_saved_regs_addr = virt_to_phys(&l2x0_saved_regs);
c5f80065 94#endif
4de3a8fa 95
c5f80065
EG
96}
97
7469688e 98void __init tegra_init_early(void)
c5f80065 99{
9e32366f 100 tegra_cpu_reset_handler_init();
b861c275 101 tegra_apb_io_init();
73625e3e 102 tegra_init_fuse();
d065ab71 103 tegra_init_cache();
65fe31da 104 tegra_powergate_init();
7469688e 105 tegra_hotplug_init();
d2ffb918
OJ
106}
107
390e0cfd
SG
108void __init tegra_init_late(void)
109{
c8c2e606 110 tegra_init_suspend();
e22dc2b2 111 tegra_cpuidle_init();
390e0cfd
SG
112 tegra_powergate_debugfs_init();
113}
This page took 0.208041 seconds and 5 git commands to generate.