1 // SPDX-License-Identifier: GPL-2.0+
3 * (C) Copyright 2010 - 2011
4 * NVIDIA Corporation <www.nvidia.com>
7 #include <asm/global_data.h>
9 #include <linux/errno.h>
10 #include <asm/arch/clock.h>
11 #include <asm/arch/emc.h>
12 #include <asm/arch/gp_padctrl.h>
13 #include <asm/arch/pinmux.h>
14 #include <asm/arch/sdram_param.h>
15 #include <asm/arch/tegra.h>
16 #include <asm/arch-tegra/ap.h>
17 #include <asm/arch-tegra/apb_misc.h>
18 #include <asm/arch-tegra/clk_rst.h>
19 #include <asm/arch-tegra/pmc.h>
20 #include <asm/arch-tegra/fuse.h>
21 #include <asm/arch-tegra/warmboot.h>
23 DECLARE_GLOBAL_DATA_PTR;
26 * This is the place in SRAM where the SDRAM parameters are stored. There
27 * are 4 blocks, one for each RAM code
29 #define SDRAM_PARAMS_BASE (NV_PA_BASE_SRAM + 0x188)
31 /* TODO: If we later add support for the Misc GP controller, refactor this */
69 * TODO: This register is not documented in the TRM yet. We could move this
70 * into the EMC and give it a proper interface, but not while it is
73 union fbio_spare_reg {
81 /* We pack the resume information into these unions for later */
85 u32 pllm_base_divn:10;
87 u32 pllm_misc_lfcon:4;
88 u32 pllm_misc_cpcon:4;
89 u32 gp_xm2cfga_padctrl_preemp:1;
90 u32 gp_xm2cfgd_padctrl_schmt:1;
99 u32 emc_clock_divider:8;
100 u32 pllm_stable_time:8;
101 u32 pllx_stable_time:8;
102 u32 emc_fbio_spare_cfg_wb0:8;
107 union scratch24_reg {
109 u32 emc_auto_cal_wait:8;
110 u32 emc_pin_program_wait:8;
117 int warmboot_save_sdram_params(void)
120 struct sdram_params sdram;
121 struct apb_misc_pp_ctlr *apb_misc =
122 (struct apb_misc_pp_ctlr *)NV_PA_APB_MISC_BASE;
123 struct pmc_ctlr *pmc = (struct pmc_ctlr *)NV_PA_PMC_BASE;
124 struct apb_misc_gp_ctlr *gp =
125 (struct apb_misc_gp_ctlr *)NV_PA_APB_MISC_GP_BASE;
126 struct emc_ctlr *emc = emc_get_controller(gd->fdt_blob);
127 union scratch2_reg scratch2;
128 union scratch4_reg scratch4;
129 union scratch24_reg scratch24;
130 union xm2cfga_reg xm2cfga;
131 union xm2cfgd_reg xm2cfgd;
132 union fbio_spare_reg fbio_spare;
134 /* get ram code that is used as index to array sdram_params in BCT */
135 ram_code = (readl(&apb_misc->strapping_opt_a) >>
136 STRAP_OPT_A_RAM_CODE_SHIFT) & 3;
138 (char *)((struct sdram_params *)SDRAM_PARAMS_BASE + ram_code),
141 xm2cfga.word = readl(&gp->xm2cfga);
142 xm2cfgd.word = readl(&gp->xm2cfgd);
145 scratch2.osc_ctrl_xobp = clock_get_osc_bypass();
147 /* Get the memory PLL settings */
149 u32 divm, divn, divp, cpcon, lfcon;
151 if (clock_ll_read_pll(CLOCK_ID_MEMORY, &divm, &divn, &divp,
154 scratch2.pllm_base_divm = divm;
155 scratch2.pllm_base_divn = divn;
156 scratch2.pllm_base_divp = divp;
157 scratch2.pllm_misc_cpcon = cpcon;
158 scratch2.pllm_misc_lfcon = lfcon;
161 scratch2.gp_xm2cfga_padctrl_preemp = xm2cfga.preemp_en;
162 scratch2.gp_xm2cfgd_padctrl_schmt = xm2cfgd.schmt_en;
163 scratch2.memory_type = sdram.memory_type;
164 writel(scratch2.word, &pmc->pmc_scratch2);
166 /* collect data from various sources for pmc_scratch4 */
167 fbio_spare.word = readl(&emc->fbio_spare);
169 scratch4.emc_fbio_spare_cfg_wb0 = fbio_spare.cfg_wb0;
170 scratch4.emc_clock_divider = sdram.emc_clock_divider;
171 scratch4.pllm_stable_time = -1;
172 scratch4.pllx_stable_time = -1;
173 writel(scratch4.word, &pmc->pmc_scratch4);
175 /* collect various data from sdram for pmc_scratch24 */
177 scratch24.emc_pin_program_wait = sdram.emc_pin_program_wait;
178 scratch24.emc_auto_cal_wait = sdram.emc_auto_cal_wait;
179 scratch24.warmboot_wait = sdram.warm_boot_wait;
180 writel(scratch24.word, &pmc->pmc_scratch24);
185 static u32 get_major_version(void)
188 struct apb_misc_gp_ctlr *gp =
189 (struct apb_misc_gp_ctlr *)NV_PA_APB_MISC_GP_BASE;
191 major_id = (readl(&gp->hidrev) & HIDREV_MAJORPREV_MASK) >>
192 HIDREV_MAJORPREV_SHIFT;
196 static int is_production_mode_fuse_set(struct fuse_regs *fuse)
198 return readl(&fuse->production_mode);
201 static int is_odm_production_mode_fuse_set(struct fuse_regs *fuse)
203 return readl(&fuse->security_mode);
206 static int is_failure_analysis_mode(struct fuse_regs *fuse)
208 return readl(&fuse->fa);
211 static int ap20_is_odm_production_mode(void)
213 struct fuse_regs *fuse = (struct fuse_regs *)NV_PA_FUSE_BASE;
215 if (!is_failure_analysis_mode(fuse) &&
216 is_odm_production_mode_fuse_set(fuse))
222 static int ap20_is_production_mode(void)
224 struct fuse_regs *fuse = (struct fuse_regs *)NV_PA_FUSE_BASE;
226 if (get_major_version() == 0)
229 if (!is_failure_analysis_mode(fuse) &&
230 is_production_mode_fuse_set(fuse) &&
231 !is_odm_production_mode_fuse_set(fuse))
237 static enum fuse_operating_mode fuse_get_operation_mode(void)
240 struct apb_misc_gp_ctlr *gp =
241 (struct apb_misc_gp_ctlr *)NV_PA_APB_MISC_GP_BASE;
243 chip_id = (readl(&gp->hidrev) & HIDREV_CHIPID_MASK) >>
245 if (chip_id == CHIPID_TEGRA20) {
246 if (ap20_is_odm_production_mode()) {
247 printf("!! odm_production_mode is not supported !!\n");
248 return MODE_UNDEFINED;
250 if (ap20_is_production_mode())
251 return MODE_PRODUCTION;
253 return MODE_UNDEFINED;
255 return MODE_UNDEFINED;
258 static void determine_crypto_options(int *is_encrypted, int *is_signed,
261 switch (fuse_get_operation_mode()) {
262 case MODE_PRODUCTION:
276 static int sign_wb_code(u32 start, u32 length, int use_zero_key)
279 u8 *source; /* Pointer to source */
282 /* Calculate AES block parameters. */
283 source = (u8 *)(start + offsetof(struct wb_header, random_aes_block));
284 length -= offsetof(struct wb_header, random_aes_block);
285 hash = (u8 *)(start + offsetof(struct wb_header, hash));
286 err = sign_data_block(source, length, hash);
291 int warmboot_prepare_code(u32 seg_address, u32 seg_length)
294 u32 length; /* length of the signed/encrypt code */
295 struct wb_header *dst_header; /* Pointer to dest WB header */
296 int is_encrypted; /* Segment is encrypted */
297 int is_signed; /* Segment is signed */
298 int use_zero_key; /* Use key of all zeros */
300 /* Determine crypto options. */
301 determine_crypto_options(&is_encrypted, &is_signed, &use_zero_key);
303 /* Get the actual code limits. */
304 length = roundup(((u32)wb_end - (u32)wb_start), 16);
307 * The region specified by seg_address must be in SDRAM and must be
310 if (seg_length == 0 || seg_address < NV_PA_SDRAM_BASE ||
311 seg_address + seg_length >= NV_PA_SDRAM_BASE + gd->ram_size) {
316 /* Things must be 16-byte aligned. */
317 if ((seg_length & 0xF) || (seg_address & 0xF)) {
322 /* Will the code fit? (destination includes wb_header + wb code) */
323 if (seg_length < (length + sizeof(struct wb_header))) {
328 dst_header = (struct wb_header *)seg_address;
329 memset((char *)dst_header, 0, sizeof(struct wb_header));
331 /* Populate the random_aes_block as requested. */
333 u32 *aes_block = (u32 *)&(dst_header->random_aes_block);
334 u32 *end = (u32 *)(((u32)aes_block) +
335 sizeof(dst_header->random_aes_block));
339 } while (aes_block < end);
342 /* Populate the header. */
343 dst_header->length_insecure = length + sizeof(struct wb_header);
344 dst_header->length_secure = length + sizeof(struct wb_header);
345 dst_header->destination = NV_WB_RUN_ADDRESS;
346 dst_header->entry_point = NV_WB_RUN_ADDRESS;
347 dst_header->code_length = length;
350 printf("!!!! Encryption is not supported !!!!\n");
351 dst_header->length_insecure = 0;
355 /* copy the wb code directly following dst_header. */
356 memcpy((char *)(dst_header+1), (char *)wb_start, length);
359 err = sign_wb_code(seg_address, dst_header->length_insecure,
364 printf("Warning: warmboot code copy failed (error=%d)\n", err);