Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 | // SPDX-License-Identifier: GPL-2.0+ /* * (C) Copyright 2010 - 2011 * NVIDIA Corporation <www.nvidia.com> */ #include <asm/global_data.h> #include <asm/io.h> #include <linux/errno.h> #include <asm/arch/clock.h> #include <asm/arch/emc.h> #include <asm/arch/gp_padctrl.h> #include <asm/arch/pinmux.h> #include <asm/arch/sdram_param.h> #include <asm/arch/tegra.h> #include <asm/arch-tegra/ap.h> #include <asm/arch-tegra/apb_misc.h> #include <asm/arch-tegra/clk_rst.h> #include <asm/arch-tegra/pmc.h> #include <asm/arch-tegra/fuse.h> #include <asm/arch-tegra/warmboot.h> #include <asm/arch-tegra/crypto.h> DECLARE_GLOBAL_DATA_PTR; /* * This is the place in SRAM where the SDRAM parameters are stored. There * are 4 blocks, one for each RAM code */ #define SDRAM_PARAMS_BASE (NV_PA_BASE_SRAM + 0x188) /* TODO: If we later add support for the Misc GP controller, refactor this */ union xm2cfga_reg { struct { u32 reserved0:2; u32 hsm_en:1; u32 reserved1:2; u32 preemp_en:1; u32 vref_en:1; u32 reserved2:5; u32 cal_drvdn:5; u32 reserved3:3; u32 cal_drvup:5; u32 reserved4:3; u32 cal_drvdn_slwr:2; u32 cal_drvup_slwf:2; }; u32 word; }; union xm2cfgd_reg { struct { u32 reserved0:2; u32 hsm_en:1; u32 schmt_en:1; u32 lpmd:2; u32 vref_en:1; u32 reserved1:5; u32 cal_drvdn:5; u32 reserved2:3; u32 cal_drvup:5; u32 reserved3:3; u32 cal_drvdn_slwr:2; u32 cal_drvup_slwf:2; }; u32 word; }; /* * TODO: This register is not documented in the TRM yet. We could move this * into the EMC and give it a proper interface, but not while it is * undocumented. */ union fbio_spare_reg { struct { u32 reserved:24; u32 cfg_wb0:8; }; u32 word; }; /* We pack the resume information into these unions for later */ union scratch2_reg { struct { u32 pllm_base_divm:5; u32 pllm_base_divn:10; u32 pllm_base_divp:3; u32 pllm_misc_lfcon:4; u32 pllm_misc_cpcon:4; u32 gp_xm2cfga_padctrl_preemp:1; u32 gp_xm2cfgd_padctrl_schmt:1; u32 osc_ctrl_xobp:1; u32 memory_type:3; }; u32 word; }; union scratch4_reg { struct { u32 emc_clock_divider:8; u32 pllm_stable_time:8; u32 pllx_stable_time:8; u32 emc_fbio_spare_cfg_wb0:8; }; u32 word; }; union scratch24_reg { struct { u32 emc_auto_cal_wait:8; u32 emc_pin_program_wait:8; u32 warmboot_wait:8; u32 reserved:8; }; u32 word; }; int warmboot_save_sdram_params(void) { u32 ram_code; struct sdram_params sdram; struct apb_misc_pp_ctlr *apb_misc = (struct apb_misc_pp_ctlr *)NV_PA_APB_MISC_BASE; struct pmc_ctlr *pmc = (struct pmc_ctlr *)NV_PA_PMC_BASE; struct apb_misc_gp_ctlr *gp = (struct apb_misc_gp_ctlr *)NV_PA_APB_MISC_GP_BASE; struct emc_ctlr *emc = emc_get_controller(gd->fdt_blob); union scratch2_reg scratch2; union scratch4_reg scratch4; union scratch24_reg scratch24; union xm2cfga_reg xm2cfga; union xm2cfgd_reg xm2cfgd; union fbio_spare_reg fbio_spare; /* get ram code that is used as index to array sdram_params in BCT */ ram_code = (readl(&apb_misc->strapping_opt_a) >> STRAP_OPT_A_RAM_CODE_SHIFT) & 3; memcpy(&sdram, (char *)((struct sdram_params *)SDRAM_PARAMS_BASE + ram_code), sizeof(sdram)); xm2cfga.word = readl(&gp->xm2cfga); xm2cfgd.word = readl(&gp->xm2cfgd); scratch2.word = 0; scratch2.osc_ctrl_xobp = clock_get_osc_bypass(); /* Get the memory PLL settings */ { u32 divm, divn, divp, cpcon, lfcon; if (clock_ll_read_pll(CLOCK_ID_MEMORY, &divm, &divn, &divp, &cpcon, &lfcon)) return -1; scratch2.pllm_base_divm = divm; scratch2.pllm_base_divn = divn; scratch2.pllm_base_divp = divp; scratch2.pllm_misc_cpcon = cpcon; scratch2.pllm_misc_lfcon = lfcon; } scratch2.gp_xm2cfga_padctrl_preemp = xm2cfga.preemp_en; scratch2.gp_xm2cfgd_padctrl_schmt = xm2cfgd.schmt_en; scratch2.memory_type = sdram.memory_type; writel(scratch2.word, &pmc->pmc_scratch2); /* collect data from various sources for pmc_scratch4 */ fbio_spare.word = readl(&emc->fbio_spare); scratch4.word = 0; scratch4.emc_fbio_spare_cfg_wb0 = fbio_spare.cfg_wb0; scratch4.emc_clock_divider = sdram.emc_clock_divider; scratch4.pllm_stable_time = -1; scratch4.pllx_stable_time = -1; writel(scratch4.word, &pmc->pmc_scratch4); /* collect various data from sdram for pmc_scratch24 */ scratch24.word = 0; scratch24.emc_pin_program_wait = sdram.emc_pin_program_wait; scratch24.emc_auto_cal_wait = sdram.emc_auto_cal_wait; scratch24.warmboot_wait = sdram.warm_boot_wait; writel(scratch24.word, &pmc->pmc_scratch24); return 0; } static void determine_crypto_options(int *is_encrypted, int *is_signed) { switch (tegra_fuse_get_operation_mode()) { case MODE_ODM_PRODUCTION_SECURE: *is_encrypted = 1; *is_signed = 1; break; case MODE_ODM_PRODUCTION_OPEN: case MODE_PRODUCTION: *is_encrypted = 0; *is_signed = 1; break; case MODE_UNDEFINED: default: *is_encrypted = 0; *is_signed = 0; break; } } static int encrypt_wb_code(u8 *source, u8 *destination, u32 length) { source += offsetof(struct wb_header, random_aes_block); destination += offsetof(struct wb_header, random_aes_block); length -= offsetof(struct wb_header, random_aes_block); return encrypt_data_block(source, destination, length); } static int sign_wb_code(u32 start, u32 length) { int err; u8 *source; /* Pointer to source */ u8 *hash; /* Calculate AES block parameters. */ source = (u8 *)(start + offsetof(struct wb_header, random_aes_block)); length -= offsetof(struct wb_header, random_aes_block); hash = (u8 *)(start + offsetof(struct wb_header, hash)); err = sign_data_block(source, length, hash); return err; } int warmboot_prepare_code(u32 seg_address, u32 seg_length) { int err = 0; u32 length; /* length of the signed/encrypt code */ struct wb_header *dst_header; /* Pointer to dest WB header */ int is_encrypted; /* Segment is encrypted */ int is_signed; /* Segment is signed */ /* Determine crypto options. */ determine_crypto_options(&is_encrypted, &is_signed); /* Get the actual code limits. */ length = roundup(((u32)wb_end - (u32)wb_start), 16); /* * The region specified by seg_address must be in SDRAM and must be * nonzero in length. */ if (seg_length == 0 || seg_address < NV_PA_SDRAM_BASE || seg_address + seg_length >= NV_PA_SDRAM_BASE + gd->ram_size) { err = -EFAULT; goto fail; } /* Things must be 16-byte aligned. */ if ((seg_length & 0xF) || (seg_address & 0xF)) { err = -EINVAL; goto fail; } /* Will the code fit? (destination includes wb_header + wb code) */ if (seg_length < (length + sizeof(struct wb_header))) { err = -EINVAL; goto fail; } dst_header = (struct wb_header *)seg_address; memset((char *)dst_header, 0, sizeof(struct wb_header)); /* Populate the random_aes_block as requested. */ { u32 *aes_block = (u32 *)&(dst_header->random_aes_block); u32 *end = (u32 *)(((u32)aes_block) + sizeof(dst_header->random_aes_block)); do { *aes_block++ = 0; } while (aes_block < end); } /* Populate the header. */ dst_header->length_insecure = length + sizeof(struct wb_header); dst_header->length_secure = length + sizeof(struct wb_header); dst_header->destination = NV_WB_RUN_ADDRESS; dst_header->entry_point = NV_WB_RUN_ADDRESS; dst_header->code_length = length; if (is_encrypted) encrypt_wb_code((u8 *)wb_start, (u8 *)dst_header, length + sizeof(struct wb_header)); else /* copy the wb code directly following dst_header */ memcpy((char *)(dst_header + 1), (char *)wb_start, length); if (is_signed) err = sign_wb_code(seg_address, dst_header->length_insecure); fail: if (err) printf("Warning: warmboot code copy failed (error=%d)\n", err); return err; } |