2010-01-22 08:53:02 +08:00
|
|
|
/*
|
2011-12-14 23:03:17 +08:00
|
|
|
* arch/arm/mach-tegra/common.c
|
2010-01-22 08:53:02 +08:00
|
|
|
*
|
2013-02-10 09:45:28 +08:00
|
|
|
* Copyright (c) 2013 NVIDIA Corporation. All rights reserved.
|
2010-01-22 08:53:02 +08:00
|
|
|
* Copyright (C) 2010 Google, Inc.
|
|
|
|
*
|
|
|
|
* Author:
|
|
|
|
* Colin Cross <ccross@android.com>
|
|
|
|
*
|
|
|
|
* This software is licensed under the terms of the GNU General Public
|
|
|
|
* License version 2, as published by the Free Software Foundation, and
|
|
|
|
* may be copied, distributed, and modified under those terms.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/io.h>
|
2010-04-06 04:16:42 +08:00
|
|
|
#include <linux/clk.h>
|
|
|
|
#include <linux/delay.h>
|
2012-11-06 06:18:28 +08:00
|
|
|
#include <linux/irqchip.h>
|
2013-01-11 15:46:26 +08:00
|
|
|
#include <linux/clk/tegra.h>
|
2010-01-22 08:53:02 +08:00
|
|
|
|
|
|
|
#include <asm/hardware/cache-l2x0.h>
|
|
|
|
|
2012-02-10 07:47:49 +08:00
|
|
|
#include <mach/powergate.h>
|
2010-01-22 08:53:02 +08:00
|
|
|
|
|
|
|
#include "board.h"
|
2011-09-08 20:15:22 +08:00
|
|
|
#include "common.h"
|
2010-06-24 06:49:17 +08:00
|
|
|
#include "fuse.h"
|
2012-10-05 04:24:09 +08:00
|
|
|
#include "iomap.h"
|
2012-01-26 05:43:28 +08:00
|
|
|
#include "pmc.h"
|
2012-06-20 20:36:34 +08:00
|
|
|
#include "apbio.h"
|
2012-08-16 17:31:51 +08:00
|
|
|
#include "sleep.h"
|
2012-11-13 10:04:48 +08:00
|
|
|
#include "pm.h"
|
2013-01-04 17:32:22 +08:00
|
|
|
#include "reset.h"
|
2010-01-29 08:40:29 +08:00
|
|
|
|
2012-01-06 18:43:22 +08:00
|
|
|
/*
|
|
|
|
* Storage for debug-macro.S's state.
|
|
|
|
*
|
|
|
|
* This must be in .data not .bss so that it gets initialized each time the
|
|
|
|
* kernel is loaded. The data is declared here rather than debug-macro.S so
|
|
|
|
* that multiple inclusions of debug-macro.S point at the same data.
|
|
|
|
*/
|
2012-10-02 05:33:20 +08:00
|
|
|
u32 tegra_uart_config[4] = {
|
2012-01-06 18:43:22 +08:00
|
|
|
/* Debug UART initialization required */
|
|
|
|
1,
|
|
|
|
/* Debug UART physical address */
|
2012-10-02 05:21:20 +08:00
|
|
|
0,
|
2012-01-06 18:43:22 +08:00
|
|
|
/* Debug UART virtual address */
|
2012-10-02 05:21:20 +08:00
|
|
|
0,
|
2012-10-02 05:33:20 +08:00
|
|
|
/* Scratch space for debug macro */
|
|
|
|
0,
|
2012-01-06 18:43:22 +08:00
|
|
|
};
|
2010-01-29 08:40:29 +08:00
|
|
|
|
2011-12-20 03:24:05 +08:00
|
|
|
#ifdef CONFIG_OF
|
2011-12-14 23:03:17 +08:00
|
|
|
void __init tegra_dt_init_irq(void)
|
|
|
|
{
|
2013-01-11 15:46:26 +08:00
|
|
|
tegra_clocks_init();
|
2013-04-03 19:31:28 +08:00
|
|
|
tegra_pmc_init();
|
2011-12-14 23:03:17 +08:00
|
|
|
tegra_init_irq();
|
2012-11-06 06:18:28 +08:00
|
|
|
irqchip_init();
|
2011-12-14 23:03:17 +08:00
|
|
|
}
|
2011-12-20 03:24:05 +08:00
|
|
|
#endif
|
2011-12-14 23:03:17 +08:00
|
|
|
|
2010-08-24 09:37:25 +08:00
|
|
|
void tegra_assert_system_reset(char mode, const char *cmd)
|
|
|
|
{
|
2011-12-14 23:03:19 +08:00
|
|
|
void __iomem *reset = IO_ADDRESS(TEGRA_PMC_BASE + 0);
|
2010-08-24 09:37:25 +08:00
|
|
|
u32 reg;
|
|
|
|
|
2011-02-18 00:13:57 +08:00
|
|
|
reg = readl_relaxed(reset);
|
2011-12-14 23:03:19 +08:00
|
|
|
reg |= 0x10;
|
2011-02-18 00:13:57 +08:00
|
|
|
writel_relaxed(reg, reset);
|
2010-08-24 09:37:25 +08:00
|
|
|
}
|
|
|
|
|
2012-10-29 18:25:57 +08:00
|
|
|
static void __init tegra_init_cache(void)
|
2010-01-22 08:53:02 +08:00
|
|
|
{
|
|
|
|
#ifdef CONFIG_CACHE_L2X0
|
2012-11-13 10:04:48 +08:00
|
|
|
int ret;
|
2010-01-22 08:53:02 +08:00
|
|
|
void __iomem *p = IO_ADDRESS(TEGRA_ARM_PERIF_BASE) + 0x3000;
|
2011-12-14 23:03:20 +08:00
|
|
|
u32 aux_ctrl, cache_type;
|
2010-01-22 08:53:02 +08:00
|
|
|
|
2011-12-14 23:03:20 +08:00
|
|
|
cache_type = readl(p + L2X0_CACHE_TYPE);
|
|
|
|
aux_ctrl = (cache_type & 0x700) << (17-8);
|
2012-11-14 22:27:23 +08:00
|
|
|
aux_ctrl |= 0x7C400001;
|
2011-12-14 23:03:20 +08:00
|
|
|
|
2012-11-13 10:04:48 +08:00
|
|
|
ret = l2x0_of_init(aux_ctrl, 0x8200c3fe);
|
|
|
|
if (!ret)
|
|
|
|
l2x0_saved_regs_addr = virt_to_phys(&l2x0_saved_regs);
|
2010-01-22 08:53:02 +08:00
|
|
|
#endif
|
2010-04-06 04:16:42 +08:00
|
|
|
|
2010-01-22 08:53:02 +08:00
|
|
|
}
|
|
|
|
|
2013-02-14 01:15:48 +08:00
|
|
|
void __init tegra_init_early(void)
|
2010-01-22 08:53:02 +08:00
|
|
|
{
|
2013-01-04 17:32:22 +08:00
|
|
|
tegra_cpu_reset_handler_init();
|
2012-06-20 20:36:34 +08:00
|
|
|
tegra_apb_io_init();
|
2010-06-24 06:49:17 +08:00
|
|
|
tegra_init_fuse();
|
2012-10-29 18:25:57 +08:00
|
|
|
tegra_init_cache();
|
2012-02-10 07:47:49 +08:00
|
|
|
tegra_powergate_init();
|
2013-02-14 01:15:48 +08:00
|
|
|
tegra_hotplug_init();
|
2013-02-10 09:45:28 +08:00
|
|
|
}
|
|
|
|
|
2012-05-02 17:08:06 +08:00
|
|
|
void __init tegra_init_late(void)
|
|
|
|
{
|
|
|
|
tegra_powergate_debugfs_init();
|
|
|
|
}
|