blob: c0ca6eb379e4733de3fea5fcd81b58139f4dbe2b [file] [log] [blame]
Tom Warren74652cf2011-04-14 12:18:06 +00001/*
2* (C) Copyright 2010-2011
3* NVIDIA Corporation <www.nvidia.com>
4*
5* See file CREDITS for list of people who contributed to this
6* project.
7*
8* This program is free software; you can redistribute it and/or
9* modify it under the terms of the GNU General Public License as
10* published by the Free Software Foundation; either version 2 of
11* the License, or (at your option) any later version.
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* You should have received a copy of the GNU General Public License
19* along with this program; if not, write to the Free Software
20* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21* MA 02111-1307 USA
22*/
Tom Warren74652cf2011-04-14 12:18:06 +000023#include <asm/io.h>
Simon Glassf9f3e1b2012-04-02 13:18:46 +000024#include <asm/arch/ap20.h>
Simon Glassd5153622012-04-02 13:18:50 +000025#include <asm/arch/fuse.h>
26#include <asm/arch/gp_padctrl.h>
Tom Warren74652cf2011-04-14 12:18:06 +000027#include <asm/arch/pmc.h>
Tom Warren74652cf2011-04-14 12:18:06 +000028#include <asm/arch/scu.h>
Yen Linc5179da2012-04-02 13:18:56 +000029#include <asm/arch/warmboot.h>
Tom Warren74652cf2011-04-14 12:18:06 +000030#include <common.h>
31
Simon Glassd5153622012-04-02 13:18:50 +000032int tegra_get_chip_type(void)
33{
34 struct apb_misc_gp_ctlr *gp;
Tom Warren29f3e3f2012-09-04 17:00:24 -070035 struct fuse_regs *fuse = (struct fuse_regs *)NV_PA_FUSE_BASE;
Simon Glassd5153622012-04-02 13:18:50 +000036 uint tegra_sku_id, rev;
37
38 /*
39 * This is undocumented, Chip ID is bits 15:8 of the register
40 * APB_MISC + 0x804, and has value 0x20 for Tegra20, 0x30 for
41 * Tegra30
42 */
Tom Warren29f3e3f2012-09-04 17:00:24 -070043 gp = (struct apb_misc_gp_ctlr *)NV_PA_APB_MISC_GP_BASE;
Simon Glassd5153622012-04-02 13:18:50 +000044 rev = (readl(&gp->hidrev) & HIDREV_CHIPID_MASK) >> HIDREV_CHIPID_SHIFT;
45
46 tegra_sku_id = readl(&fuse->sku_info) & 0xff;
47
48 switch (rev) {
Allen Martin00a27492012-08-31 08:30:00 +000049 case CHIPID_TEGRA20:
Simon Glassd5153622012-04-02 13:18:50 +000050 switch (tegra_sku_id) {
51 case SKU_ID_T20:
52 return TEGRA_SOC_T20;
53 case SKU_ID_T25SE:
54 case SKU_ID_AP25:
55 case SKU_ID_T25:
56 case SKU_ID_AP25E:
57 case SKU_ID_T25E:
58 return TEGRA_SOC_T25;
59 }
60 break;
61 }
62 /* unknown sku id */
63 return TEGRA_SOC_UNKNOWN;
64}
65
Allen Martin12b7b702012-08-31 08:30:12 +000066static void enable_scu(void)
Tom Warren74652cf2011-04-14 12:18:06 +000067{
68 struct scu_ctlr *scu = (struct scu_ctlr *)NV_PA_ARM_PERIPHBASE;
69 u32 reg;
70
71 /* If SCU already setup/enabled, return */
72 if (readl(&scu->scu_ctrl) & SCU_CTRL_ENABLE)
73 return;
74
75 /* Invalidate all ways for all processors */
76 writel(0xFFFF, &scu->scu_inv_all);
77
78 /* Enable SCU - bit 0 */
79 reg = readl(&scu->scu_ctrl);
80 reg |= SCU_CTRL_ENABLE;
81 writel(reg, &scu->scu_ctrl);
82}
83
Tom Warren76e350b2012-05-30 14:06:09 -070084static u32 get_odmdata(void)
85{
86 /*
87 * ODMDATA is stored in the BCT in IRAM by the BootROM.
88 * The BCT start and size are stored in the BIT in IRAM.
89 * Read the data @ bct_start + (bct_size - 12). This works
90 * on T20 and T30 BCTs, which are locked down. If this changes
91 * in new chips (T114, etc.), we can revisit this algorithm.
92 */
93
94 u32 bct_start, odmdata;
95
96 bct_start = readl(AP20_BASE_PA_SRAM + NVBOOTINFOTABLE_BCTPTR);
97 odmdata = readl(bct_start + BCT_ODMDATA_OFFSET);
98
99 return odmdata;
100}
101
Allen Martin12b7b702012-08-31 08:30:12 +0000102static void init_pmc_scratch(void)
Tom Warren74652cf2011-04-14 12:18:06 +0000103{
Tom Warren29f3e3f2012-09-04 17:00:24 -0700104 struct pmc_ctlr *const pmc = (struct pmc_ctlr *)NV_PA_PMC_BASE;
Tom Warren76e350b2012-05-30 14:06:09 -0700105 u32 odmdata;
Tom Warren74652cf2011-04-14 12:18:06 +0000106 int i;
107
108 /* SCRATCH0 is initialized by the boot ROM and shouldn't be cleared */
109 for (i = 0; i < 23; i++)
110 writel(0, &pmc->pmc_scratch1+i);
111
112 /* ODMDATA is for kernel use to determine RAM size, LP config, etc. */
Tom Warren76e350b2012-05-30 14:06:09 -0700113 odmdata = get_odmdata();
114 writel(odmdata, &pmc->pmc_scratch20);
Tom Warren74652cf2011-04-14 12:18:06 +0000115}
116
Allen Martin12b7b702012-08-31 08:30:12 +0000117void s_init(void)
Tom Warren74652cf2011-04-14 12:18:06 +0000118{
Simon Glass210576f2011-11-05 03:56:50 +0000119 /* Init PMC scratch memory */
120 init_pmc_scratch();
Tom Warren74652cf2011-04-14 12:18:06 +0000121
Simon Glass210576f2011-11-05 03:56:50 +0000122 enable_scu();
123
124 /* enable SMP mode and FW for CPU0, by writing to Auxiliary Ctl reg */
125 asm volatile(
126 "mrc p15, 0, r0, c1, c0, 1\n"
127 "orr r0, r0, #0x41\n"
128 "mcr p15, 0, r0, c1, c0, 1\n");
129
130 /* FIXME: should have ap20's L2 disabled too? */
Tom Warren74652cf2011-04-14 12:18:06 +0000131}