]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/cpu/tegra-common/ap.c
ARM: tegra: rename OUT_CLK_SOURCE_*
[karo-tx-uboot.git] / arch / arm / cpu / tegra-common / ap.c
1 /*
2 * (C) Copyright 2010-2011
3 * NVIDIA Corporation <www.nvidia.com>
4 *
5  * SPDX-License-Identifier:     GPL-2.0+
6 */
7
8 /* Tegra AP (Application Processor) code */
9
10 #include <common.h>
11 #include <asm/io.h>
12 #include <asm/arch/gp_padctrl.h>
13 #include <asm/arch-tegra/ap.h>
14 #include <asm/arch-tegra/clock.h>
15 #include <asm/arch-tegra/fuse.h>
16 #include <asm/arch-tegra/pmc.h>
17 #include <asm/arch-tegra/scu.h>
18 #include <asm/arch-tegra/tegra.h>
19 #include <asm/arch-tegra/warmboot.h>
20
21 int tegra_get_chip(void)
22 {
23         int rev;
24         struct apb_misc_gp_ctlr *gp =
25                 (struct apb_misc_gp_ctlr *)NV_PA_APB_MISC_GP_BASE;
26
27         /*
28          * This is undocumented, Chip ID is bits 15:8 of the register
29          * APB_MISC + 0x804, and has value 0x20 for Tegra20, 0x30 for
30          * Tegra30, and 0x35 for T114.
31          */
32         rev = (readl(&gp->hidrev) & HIDREV_CHIPID_MASK) >> HIDREV_CHIPID_SHIFT;
33         debug("%s: CHIPID is 0x%02X\n", __func__, rev);
34
35         return rev;
36 }
37
38 int tegra_get_sku_info(void)
39 {
40         int sku_id;
41         struct fuse_regs *fuse = (struct fuse_regs *)NV_PA_FUSE_BASE;
42
43         sku_id = readl(&fuse->sku_info) & 0xff;
44         debug("%s: SKU info byte is 0x%02X\n", __func__, sku_id);
45
46         return sku_id;
47 }
48
49 int tegra_get_chip_sku(void)
50 {
51         uint sku_id, chip_id;
52
53         chip_id = tegra_get_chip();
54         sku_id = tegra_get_sku_info();
55
56         switch (chip_id) {
57         case CHIPID_TEGRA20:
58                 switch (sku_id) {
59                 case SKU_ID_T20_7:
60                 case SKU_ID_T20:
61                         return TEGRA_SOC_T20;
62                 case SKU_ID_T25SE:
63                 case SKU_ID_AP25:
64                 case SKU_ID_T25:
65                 case SKU_ID_AP25E:
66                 case SKU_ID_T25E:
67                         return TEGRA_SOC_T25;
68                 }
69                 break;
70         case CHIPID_TEGRA30:
71                 switch (sku_id) {
72                 case SKU_ID_T33:
73                 case SKU_ID_T30:
74                 case SKU_ID_TM30MQS_P_A3:
75                 default:
76                         return TEGRA_SOC_T30;
77                 }
78                 break;
79         case CHIPID_TEGRA114:
80                 switch (sku_id) {
81                 case SKU_ID_T114_ENG:
82                 case SKU_ID_T114_1:
83                 default:
84                         return TEGRA_SOC_T114;
85                 }
86                 break;
87         }
88         /* unknown chip/sku id */
89         printf("%s: ERROR: UNKNOWN CHIP/SKU ID COMBO (0x%02X/0x%02X)\n",
90                 __func__, chip_id, sku_id);
91         return TEGRA_SOC_UNKNOWN;
92 }
93
94 static void enable_scu(void)
95 {
96         struct scu_ctlr *scu = (struct scu_ctlr *)NV_PA_ARM_PERIPHBASE;
97         u32 reg;
98
99         /* Only enable the SCU on T20/T25 */
100         if (tegra_get_chip() != CHIPID_TEGRA20)
101                 return;
102
103         /* If SCU already setup/enabled, return */
104         if (readl(&scu->scu_ctrl) & SCU_CTRL_ENABLE)
105                 return;
106
107         /* Invalidate all ways for all processors */
108         writel(0xFFFF, &scu->scu_inv_all);
109
110         /* Enable SCU - bit 0 */
111         reg = readl(&scu->scu_ctrl);
112         reg |= SCU_CTRL_ENABLE;
113         writel(reg, &scu->scu_ctrl);
114 }
115
116 static u32 get_odmdata(void)
117 {
118         /*
119          * ODMDATA is stored in the BCT in IRAM by the BootROM.
120          * The BCT start and size are stored in the BIT in IRAM.
121          * Read the data @ bct_start + (bct_size - 12). This works
122          * on T20 and T30 BCTs, which are locked down. If this changes
123          * in new chips (T114, etc.), we can revisit this algorithm.
124          */
125
126         u32 bct_start, odmdata;
127
128         bct_start = readl(NV_PA_BASE_SRAM + NVBOOTINFOTABLE_BCTPTR);
129         odmdata = readl(bct_start + BCT_ODMDATA_OFFSET);
130
131         return odmdata;
132 }
133
134 static void init_pmc_scratch(void)
135 {
136         struct pmc_ctlr *const pmc = (struct pmc_ctlr *)NV_PA_PMC_BASE;
137         u32 odmdata;
138         int i;
139
140         /* SCRATCH0 is initialized by the boot ROM and shouldn't be cleared */
141         for (i = 0; i < 23; i++)
142                 writel(0, &pmc->pmc_scratch1+i);
143
144         /* ODMDATA is for kernel use to determine RAM size, LP config, etc. */
145         odmdata = get_odmdata();
146         writel(odmdata, &pmc->pmc_scratch20);
147 }
148
149 void s_init(void)
150 {
151         /* Init PMC scratch memory */
152         init_pmc_scratch();
153
154         enable_scu();
155
156         /* init the cache */
157         config_cache();
158 }