blob: 53cd7550a0629e467e4f5153213a38c2cc4ec3eb [file] [log] [blame]
gaurav ranaf79323c2015-03-10 14:08:50 +05301/*
2 * Copyright 2015 Freescale Semiconductor, Inc.
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#ifndef __FSL_SECURE_BOOT_H
8#define __FSL_SECURE_BOOT_H
9
10#ifdef CONFIG_SECURE_BOOT
Aneesh Bansal43104702016-01-22 16:37:24 +053011
12#ifndef CONFIG_FIT_SIGNATURE
13#define CONFIG_CHAIN_OF_TRUST
14#endif
15
16#endif
17
18#ifdef CONFIG_CHAIN_OF_TRUST
Aneesh Bansald31bb3e2015-07-31 14:10:03 +053019#define CONFIG_CMD_ESBC_VALIDATE
Aneesh Bansal3322e212016-01-22 16:37:23 +053020#define CONFIG_CMD_BLOB
Saksham Jainc0c38d22016-03-23 16:24:35 +053021#define CONFIG_CMD_HASH
Aneesh Bansald31bb3e2015-07-31 14:10:03 +053022#define CONFIG_FSL_SEC_MON
Saksham Jainc0c38d22016-03-23 16:24:35 +053023#define CONFIG_SHA_HW_ACCEL
Aneesh Bansald31bb3e2015-07-31 14:10:03 +053024#define CONFIG_SHA_PROG_HW_ACCEL
Aneesh Bansald31bb3e2015-07-31 14:10:03 +053025#define CONFIG_RSA_FREESCALE_EXP
Aneesh Bansalb3e98202015-12-08 13:54:29 +053026
Aneesh Bansald31bb3e2015-07-31 14:10:03 +053027#ifndef CONFIG_FSL_CAAM
28#define CONFIG_FSL_CAAM
29#endif
30
31#define CONFIG_KEY_REVOCATION
32#ifndef CONFIG_SYS_RAMBOOT
33/* The key used for verification of next level images
34 * is picked up from an Extension Table which has
35 * been verified by the ISBC (Internal Secure boot Code)
36 * in boot ROM of the SoC.
37 * The feature is only applicable in case of NOR boot and is
38 * not applicable in case of RAMBOOT (NAND, SD, SPI).
39 */
Saksham Jain6121f082016-03-23 16:24:34 +053040#ifndef CONFIG_ESBC_HDR_LS
41/* Current Key EXT feature not available in LS ESBC Header */
Aneesh Bansald31bb3e2015-07-31 14:10:03 +053042#define CONFIG_FSL_ISBC_KEY_EXT
43#endif
44
Saksham Jain6121f082016-03-23 16:24:34 +053045#endif
46
York Suncbe8e1c2016-04-04 11:41:26 -070047#if defined(CONFIG_LS1043A) || defined(CONFIG_LS2080A)
Saksham Jainc0c38d22016-03-23 16:24:35 +053048/* For LS1043 (ARMv8), ESBC image Address in Header is 64 bit
York Suncbe8e1c2016-04-04 11:41:26 -070049 * Similiarly for LS2080
Saksham Jainc0c38d22016-03-23 16:24:35 +053050 */
Aneesh Bansal962021a2016-01-22 16:37:22 +053051#define CONFIG_ESBC_ADDR_64BIT
52#endif
53
York Suncbe8e1c2016-04-04 11:41:26 -070054#ifdef CONFIG_LS2080A
Saksham Jainf0eb2ca2016-03-23 16:24:38 +053055#define CONFIG_EXTRA_ENV \
56 "setenv fdt_high 0xa0000000;" \
57 "setenv initrd_high 0xcfffffff;" \
58 "setenv hwconfig \'fsl_ddr:ctlr_intlv=null,bank_intlv=null\';"
59#else
gaurav ranaf79323c2015-03-10 14:08:50 +053060#define CONFIG_EXTRA_ENV \
61 "setenv fdt_high 0xcfffffff;" \
62 "setenv initrd_high 0xcfffffff;" \
63 "setenv hwconfig \'fsl_ddr:ctlr_intlv=null,bank_intlv=null\';"
Saksham Jainf0eb2ca2016-03-23 16:24:38 +053064#endif
gaurav ranaf79323c2015-03-10 14:08:50 +053065
Saksham Jain503eab92016-03-23 16:24:37 +053066/* Copying Bootscript and Header to DDR from NOR for LS2 and for rest, from
67 * Non-XIP Memory (Nand/SD)*/
York Suncbe8e1c2016-04-04 11:41:26 -070068#if defined(CONFIG_SYS_RAMBOOT) || defined(CONFIG_LS2080A)
Saksham Jain503eab92016-03-23 16:24:37 +053069#define CONFIG_BOOTSCRIPT_COPY_RAM
70#endif
71/* The address needs to be modified according to NOR and DDR memory map */
York Suncbe8e1c2016-04-04 11:41:26 -070072#ifdef CONFIG_LS2080A
Saksham Jain503eab92016-03-23 16:24:37 +053073#define CONFIG_BS_HDR_ADDR_FLASH 0x583920000
74#define CONFIG_BS_ADDR_FLASH 0x583900000
75#define CONFIG_BS_HDR_ADDR_RAM 0xa3920000
76#define CONFIG_BS_ADDR_RAM 0xa3900000
77#else
78#define CONFIG_BS_HDR_ADDR_FLASH 0x600a0000
79#define CONFIG_BS_ADDR_FLASH 0x60060000
80#define CONFIG_BS_HDR_ADDR_RAM 0xa0060000
81#define CONFIG_BS_ADDR_RAM 0xa0060000
82#endif
83
84#ifdef CONFIG_BOOTSCRIPT_COPY_RAM
85#define CONFIG_BOOTSCRIPT_HDR_ADDR CONFIG_BS_HDR_ADDR_RAM
86#define CONFIG_BS_HDR_SIZE 0x00002000
87#define CONFIG_BOOTSCRIPT_ADDR CONFIG_BS_ADDR_RAM
88#define CONFIG_BS_SIZE 0x00001000
Saksham Jain506c2eb2016-03-23 16:24:36 +053089#else
Saksham Jain503eab92016-03-23 16:24:37 +053090#define CONFIG_BOOTSCRIPT_HDR_ADDR CONFIG_BS_HDR_ADDR_FLASH
91/* BS_HDR_SIZE, BOOTSCRIPT_ADDR and BS_SIZE are not required */
Saksham Jain506c2eb2016-03-23 16:24:36 +053092#endif
gaurav ranaf79323c2015-03-10 14:08:50 +053093
Aneesh Bansal43104702016-01-22 16:37:24 +053094#include <config_fsl_chain_trust.h>
95#endif /* #ifdef CONFIG_CHAIN_OF_TRUST */
gaurav ranaf79323c2015-03-10 14:08:50 +053096#endif