Tom Warren | 112a188 | 2011-04-14 12:18:06 +0000 | [diff] [blame] | 1 | /* |
| 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 Warren | 61c6d0e | 2012-12-11 13:34:15 +0000 | [diff] [blame] | 23 | |
| 24 | /* Tegra AP (Application Processor) code */ |
| 25 | |
Tom Warren | ab37196 | 2012-09-19 15:50:56 -0700 | [diff] [blame] | 26 | #include <common.h> |
Tom Warren | 112a188 | 2011-04-14 12:18:06 +0000 | [diff] [blame] | 27 | #include <asm/io.h> |
Simon Glass | 1fed82a | 2012-04-02 13:18:50 +0000 | [diff] [blame] | 28 | #include <asm/arch/gp_padctrl.h> |
Tom Warren | ab37196 | 2012-09-19 15:50:56 -0700 | [diff] [blame] | 29 | #include <asm/arch-tegra/ap.h> |
Tom Warren | 61c6d0e | 2012-12-11 13:34:15 +0000 | [diff] [blame] | 30 | #include <asm/arch-tegra/clock.h> |
Tom Warren | ab37196 | 2012-09-19 15:50:56 -0700 | [diff] [blame] | 31 | #include <asm/arch-tegra/fuse.h> |
| 32 | #include <asm/arch-tegra/pmc.h> |
| 33 | #include <asm/arch-tegra/scu.h> |
Tom Warren | e3d95bc | 2013-01-28 13:32:10 +0000 | [diff] [blame] | 34 | #include <asm/arch-tegra/tegra.h> |
Tom Warren | ab37196 | 2012-09-19 15:50:56 -0700 | [diff] [blame] | 35 | #include <asm/arch-tegra/warmboot.h> |
Tom Warren | 112a188 | 2011-04-14 12:18:06 +0000 | [diff] [blame] | 36 | |
Simon Glass | 1fed82a | 2012-04-02 13:18:50 +0000 | [diff] [blame] | 37 | int tegra_get_chip_type(void) |
| 38 | { |
| 39 | struct apb_misc_gp_ctlr *gp; |
Tom Warren | 22562a4 | 2012-09-04 17:00:24 -0700 | [diff] [blame] | 40 | struct fuse_regs *fuse = (struct fuse_regs *)NV_PA_FUSE_BASE; |
Simon Glass | 1fed82a | 2012-04-02 13:18:50 +0000 | [diff] [blame] | 41 | uint tegra_sku_id, rev; |
| 42 | |
| 43 | /* |
| 44 | * This is undocumented, Chip ID is bits 15:8 of the register |
| 45 | * APB_MISC + 0x804, and has value 0x20 for Tegra20, 0x30 for |
Tom Warren | e3d95bc | 2013-01-28 13:32:10 +0000 | [diff] [blame] | 46 | * Tegra30, and 0x35 for T114. |
Simon Glass | 1fed82a | 2012-04-02 13:18:50 +0000 | [diff] [blame] | 47 | */ |
Tom Warren | 22562a4 | 2012-09-04 17:00:24 -0700 | [diff] [blame] | 48 | gp = (struct apb_misc_gp_ctlr *)NV_PA_APB_MISC_GP_BASE; |
Simon Glass | 1fed82a | 2012-04-02 13:18:50 +0000 | [diff] [blame] | 49 | rev = (readl(&gp->hidrev) & HIDREV_CHIPID_MASK) >> HIDREV_CHIPID_SHIFT; |
| 50 | |
| 51 | tegra_sku_id = readl(&fuse->sku_info) & 0xff; |
| 52 | |
| 53 | switch (rev) { |
Allen Martin | 55d98a1 | 2012-08-31 08:30:00 +0000 | [diff] [blame] | 54 | case CHIPID_TEGRA20: |
Simon Glass | 1fed82a | 2012-04-02 13:18:50 +0000 | [diff] [blame] | 55 | switch (tegra_sku_id) { |
| 56 | case SKU_ID_T20: |
| 57 | return TEGRA_SOC_T20; |
| 58 | case SKU_ID_T25SE: |
| 59 | case SKU_ID_AP25: |
| 60 | case SKU_ID_T25: |
| 61 | case SKU_ID_AP25E: |
| 62 | case SKU_ID_T25E: |
| 63 | return TEGRA_SOC_T25; |
| 64 | } |
| 65 | break; |
Tom Warren | 61c6d0e | 2012-12-11 13:34:15 +0000 | [diff] [blame] | 66 | case CHIPID_TEGRA30: |
| 67 | switch (tegra_sku_id) { |
Stephen Warren | d9cd502 | 2013-03-27 09:37:02 +0000 | [diff] [blame] | 68 | case SKU_ID_T33: |
Tom Warren | 61c6d0e | 2012-12-11 13:34:15 +0000 | [diff] [blame] | 69 | case SKU_ID_T30: |
| 70 | return TEGRA_SOC_T30; |
| 71 | } |
| 72 | break; |
Tom Warren | e3d95bc | 2013-01-28 13:32:10 +0000 | [diff] [blame] | 73 | case CHIPID_TEGRA114: |
| 74 | switch (tegra_sku_id) { |
| 75 | case SKU_ID_T114_ENG: |
| 76 | return TEGRA_SOC_T114; |
| 77 | } |
| 78 | break; |
Simon Glass | 1fed82a | 2012-04-02 13:18:50 +0000 | [diff] [blame] | 79 | } |
| 80 | /* unknown sku id */ |
| 81 | return TEGRA_SOC_UNKNOWN; |
| 82 | } |
| 83 | |
Allen Martin | c9c9846 | 2012-08-31 08:30:12 +0000 | [diff] [blame] | 84 | static void enable_scu(void) |
Tom Warren | 112a188 | 2011-04-14 12:18:06 +0000 | [diff] [blame] | 85 | { |
| 86 | struct scu_ctlr *scu = (struct scu_ctlr *)NV_PA_ARM_PERIPHBASE; |
| 87 | u32 reg; |
| 88 | |
| 89 | /* If SCU already setup/enabled, return */ |
| 90 | if (readl(&scu->scu_ctrl) & SCU_CTRL_ENABLE) |
| 91 | return; |
| 92 | |
| 93 | /* Invalidate all ways for all processors */ |
| 94 | writel(0xFFFF, &scu->scu_inv_all); |
| 95 | |
| 96 | /* Enable SCU - bit 0 */ |
| 97 | reg = readl(&scu->scu_ctrl); |
| 98 | reg |= SCU_CTRL_ENABLE; |
| 99 | writel(reg, &scu->scu_ctrl); |
| 100 | } |
| 101 | |
Tom Warren | 7ee52b0 | 2012-05-30 14:06:09 -0700 | [diff] [blame] | 102 | static u32 get_odmdata(void) |
| 103 | { |
| 104 | /* |
| 105 | * ODMDATA is stored in the BCT in IRAM by the BootROM. |
| 106 | * The BCT start and size are stored in the BIT in IRAM. |
| 107 | * Read the data @ bct_start + (bct_size - 12). This works |
| 108 | * on T20 and T30 BCTs, which are locked down. If this changes |
| 109 | * in new chips (T114, etc.), we can revisit this algorithm. |
| 110 | */ |
| 111 | |
| 112 | u32 bct_start, odmdata; |
| 113 | |
Tom Warren | 61c6d0e | 2012-12-11 13:34:15 +0000 | [diff] [blame] | 114 | bct_start = readl(NV_PA_BASE_SRAM + NVBOOTINFOTABLE_BCTPTR); |
Tom Warren | 7ee52b0 | 2012-05-30 14:06:09 -0700 | [diff] [blame] | 115 | odmdata = readl(bct_start + BCT_ODMDATA_OFFSET); |
| 116 | |
| 117 | return odmdata; |
| 118 | } |
| 119 | |
Allen Martin | c9c9846 | 2012-08-31 08:30:12 +0000 | [diff] [blame] | 120 | static void init_pmc_scratch(void) |
Tom Warren | 112a188 | 2011-04-14 12:18:06 +0000 | [diff] [blame] | 121 | { |
Tom Warren | 22562a4 | 2012-09-04 17:00:24 -0700 | [diff] [blame] | 122 | struct pmc_ctlr *const pmc = (struct pmc_ctlr *)NV_PA_PMC_BASE; |
Tom Warren | 7ee52b0 | 2012-05-30 14:06:09 -0700 | [diff] [blame] | 123 | u32 odmdata; |
Tom Warren | 112a188 | 2011-04-14 12:18:06 +0000 | [diff] [blame] | 124 | int i; |
| 125 | |
| 126 | /* SCRATCH0 is initialized by the boot ROM and shouldn't be cleared */ |
| 127 | for (i = 0; i < 23; i++) |
| 128 | writel(0, &pmc->pmc_scratch1+i); |
| 129 | |
| 130 | /* ODMDATA is for kernel use to determine RAM size, LP config, etc. */ |
Tom Warren | 7ee52b0 | 2012-05-30 14:06:09 -0700 | [diff] [blame] | 131 | odmdata = get_odmdata(); |
| 132 | writel(odmdata, &pmc->pmc_scratch20); |
Tom Warren | 112a188 | 2011-04-14 12:18:06 +0000 | [diff] [blame] | 133 | } |
| 134 | |
Allen Martin | c9c9846 | 2012-08-31 08:30:12 +0000 | [diff] [blame] | 135 | void s_init(void) |
Tom Warren | 112a188 | 2011-04-14 12:18:06 +0000 | [diff] [blame] | 136 | { |
Simon Glass | ec8dab4 | 2011-11-05 03:56:50 +0000 | [diff] [blame] | 137 | /* Init PMC scratch memory */ |
| 138 | init_pmc_scratch(); |
Tom Warren | 112a188 | 2011-04-14 12:18:06 +0000 | [diff] [blame] | 139 | |
Simon Glass | ec8dab4 | 2011-11-05 03:56:50 +0000 | [diff] [blame] | 140 | enable_scu(); |
Tom Warren | 112a188 | 2011-04-14 12:18:06 +0000 | [diff] [blame] | 141 | |
Tom Warren | 82b5134 | 2013-03-25 16:22:26 -0700 | [diff] [blame^] | 142 | /* init the cache */ |
| 143 | config_cache(); |
Tom Warren | 112a188 | 2011-04-14 12:18:06 +0000 | [diff] [blame] | 144 | } |