blob: 6b9d3e426e32f8752c3214832af6f70a4d88941c [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
20#define CONFIG_FSL_SEC_MON
Saksham Jainc0c38d22016-03-23 16:24:35 +053021#define CONFIG_SHA_HW_ACCEL
Aneesh Bansald31bb3e2015-07-31 14:10:03 +053022#define CONFIG_SHA_PROG_HW_ACCEL
Aneesh Bansald31bb3e2015-07-31 14:10:03 +053023#define CONFIG_RSA_FREESCALE_EXP
Aneesh Bansalb3e98202015-12-08 13:54:29 +053024
Aneesh Bansald31bb3e2015-07-31 14:10:03 +053025#ifndef CONFIG_FSL_CAAM
26#define CONFIG_FSL_CAAM
27#endif
28
Sumit Gargbdddd6e2016-06-14 13:52:38 -040029#ifdef CONFIG_SPL_BUILD
30#define CONFIG_SPL_BOARD_INIT
31#define CONFIG_SPL_DM 1
32#define CONFIG_SPL_CRYPTO_SUPPORT
33#define CONFIG_SPL_HASH_SUPPORT
34#define CONFIG_SPL_RSA
35#define CONFIG_SPL_DRIVERS_MISC_SUPPORT
36/*
37 * Define the key hash for U-Boot here if public/private key pair used to
38 * sign U-boot are different from the SRK hash put in the fuse
39 * Example of defining KEY_HASH is
40 * #define CONFIG_SPL_UBOOT_KEY_HASH \
41 * "41066b564c6ffcef40ccbc1e0a5d0d519604000c785d97bbefd25e4d288d1c8b"
42 * else leave it defined as NULL
43 */
44
45#define CONFIG_SPL_UBOOT_KEY_HASH NULL
46#endif /* ifdef CONFIG_SPL_BUILD */
47
48#ifndef CONFIG_SPL_BUILD
49#define CONFIG_CMD_BLOB
50#define CONFIG_CMD_HASH
Aneesh Bansald31bb3e2015-07-31 14:10:03 +053051#define CONFIG_KEY_REVOCATION
52#ifndef CONFIG_SYS_RAMBOOT
53/* The key used for verification of next level images
54 * is picked up from an Extension Table which has
55 * been verified by the ISBC (Internal Secure boot Code)
56 * in boot ROM of the SoC.
57 * The feature is only applicable in case of NOR boot and is
58 * not applicable in case of RAMBOOT (NAND, SD, SPI).
59 */
Saksham Jain6121f082016-03-23 16:24:34 +053060#ifndef CONFIG_ESBC_HDR_LS
61/* Current Key EXT feature not available in LS ESBC Header */
Aneesh Bansald31bb3e2015-07-31 14:10:03 +053062#define CONFIG_FSL_ISBC_KEY_EXT
63#endif
64
Saksham Jain6121f082016-03-23 16:24:34 +053065#endif
66
York Suncbe8e1c2016-04-04 11:41:26 -070067#if defined(CONFIG_LS1043A) || defined(CONFIG_LS2080A)
Saksham Jainc0c38d22016-03-23 16:24:35 +053068/* For LS1043 (ARMv8), ESBC image Address in Header is 64 bit
York Suncbe8e1c2016-04-04 11:41:26 -070069 * Similiarly for LS2080
Saksham Jainc0c38d22016-03-23 16:24:35 +053070 */
Aneesh Bansal962021a2016-01-22 16:37:22 +053071#define CONFIG_ESBC_ADDR_64BIT
72#endif
73
York Suncbe8e1c2016-04-04 11:41:26 -070074#ifdef CONFIG_LS2080A
Saksham Jainf0eb2ca2016-03-23 16:24:38 +053075#define CONFIG_EXTRA_ENV \
76 "setenv fdt_high 0xa0000000;" \
77 "setenv initrd_high 0xcfffffff;" \
78 "setenv hwconfig \'fsl_ddr:ctlr_intlv=null,bank_intlv=null\';"
79#else
gaurav ranaf79323c2015-03-10 14:08:50 +053080#define CONFIG_EXTRA_ENV \
Sumit Garg45642832016-06-14 13:52:39 -040081 "setenv fdt_high 0xffffffff;" \
82 "setenv initrd_high 0xffffffff;" \
gaurav ranaf79323c2015-03-10 14:08:50 +053083 "setenv hwconfig \'fsl_ddr:ctlr_intlv=null,bank_intlv=null\';"
Saksham Jainf0eb2ca2016-03-23 16:24:38 +053084#endif
gaurav ranaf79323c2015-03-10 14:08:50 +053085
Saksham Jain503eab92016-03-23 16:24:37 +053086/* Copying Bootscript and Header to DDR from NOR for LS2 and for rest, from
87 * Non-XIP Memory (Nand/SD)*/
Sumit Garg45642832016-06-14 13:52:39 -040088#if defined(CONFIG_SYS_RAMBOOT) || defined(CONFIG_LS2080A) || \
89 defined(CONFIG_SD_BOOT)
Saksham Jain503eab92016-03-23 16:24:37 +053090#define CONFIG_BOOTSCRIPT_COPY_RAM
91#endif
Sumit Garg45642832016-06-14 13:52:39 -040092/* The address needs to be modified according to NOR, NAND, SD and
93 * DDR memory map
94 */
York Suncbe8e1c2016-04-04 11:41:26 -070095#ifdef CONFIG_LS2080A
Sumit Garg45642832016-06-14 13:52:39 -040096#define CONFIG_BS_HDR_ADDR_DEVICE 0x583920000
97#define CONFIG_BS_ADDR_DEVICE 0x583900000
Saksham Jain503eab92016-03-23 16:24:37 +053098#define CONFIG_BS_HDR_ADDR_RAM 0xa3920000
99#define CONFIG_BS_ADDR_RAM 0xa3900000
Sumit Garg45642832016-06-14 13:52:39 -0400100#define CONFIG_BS_HDR_SIZE 0x00002000
101#define CONFIG_BS_SIZE 0x00001000
Saksham Jain503eab92016-03-23 16:24:37 +0530102#else
Sumit Garg45642832016-06-14 13:52:39 -0400103#ifdef CONFIG_SD_BOOT
104/* For SD boot address and size are assigned in terms of sector
105 * offset and no. of sectors respectively.
106 */
107#define CONFIG_BS_HDR_ADDR_DEVICE 0x00000800
108#define CONFIG_BS_ADDR_DEVICE 0x00000840
109#define CONFIG_BS_HDR_SIZE 0x00000010
110#define CONFIG_BS_SIZE 0x00000008
111#else
112#define CONFIG_BS_HDR_ADDR_DEVICE 0x600a0000
113#define CONFIG_BS_ADDR_DEVICE 0x60060000
114#define CONFIG_BS_HDR_SIZE 0x00002000
115#define CONFIG_BS_SIZE 0x00001000
116#endif /* #ifdef CONFIG_SD_BOOT */
117#define CONFIG_BS_HDR_ADDR_RAM 0x81000000
118#define CONFIG_BS_ADDR_RAM 0x81020000
Saksham Jain503eab92016-03-23 16:24:37 +0530119#endif
120
121#ifdef CONFIG_BOOTSCRIPT_COPY_RAM
122#define CONFIG_BOOTSCRIPT_HDR_ADDR CONFIG_BS_HDR_ADDR_RAM
Saksham Jain503eab92016-03-23 16:24:37 +0530123#define CONFIG_BOOTSCRIPT_ADDR CONFIG_BS_ADDR_RAM
Saksham Jain506c2eb2016-03-23 16:24:36 +0530124#else
Sumit Garg45642832016-06-14 13:52:39 -0400125#define CONFIG_BOOTSCRIPT_HDR_ADDR CONFIG_BS_HDR_ADDR_DEVICE
126/* BOOTSCRIPT_ADDR is not required */
Saksham Jain506c2eb2016-03-23 16:24:36 +0530127#endif
gaurav ranaf79323c2015-03-10 14:08:50 +0530128
Sumit Garge0f9e9b2016-09-01 12:56:44 -0400129#ifdef CONFIG_FSL_LS_PPA
130#ifdef CONFIG_SYS_LS_PPA_FW_IN_XIP
131#ifdef CONFIG_LS1043A
132#define CONFIG_SYS_LS_PPA_ESBC_ADDR 0x600c0000
133#endif
134#else
135#error "No CONFIG_SYS_LS_PPA_FW_IN_xxx defined"
136#endif /* ifdef CONFIG_SYS_LS_PPA_FW_IN_XIP */
137
138/* Define the key hash here if SRK used for signing PPA image is
139 * different from SRK hash put in SFP used for U-Boot.
140 * Example
141 * #define CONFIG_PPA_KEY_HASH \
142 * "41066b564c6ffcef40ccbc1e0a5d0d519604000c785d97bbefd25e4d288d1c8b"
143 */
144#define CONFIG_PPA_KEY_HASH NULL
145#endif /* ifdef CONFIG_FSL_LS_PPA */
146
Aneesh Bansal43104702016-01-22 16:37:24 +0530147#include <config_fsl_chain_trust.h>
Sumit Gargbdddd6e2016-06-14 13:52:38 -0400148#endif /* #ifndef CONFIG_SPL_BUILD */
Aneesh Bansal43104702016-01-22 16:37:24 +0530149#endif /* #ifdef CONFIG_CHAIN_OF_TRUST */
gaurav ranaf79323c2015-03-10 14:08:50 +0530150#endif