Ruchika Gupta | 8ca8d82 | 2010-12-15 17:02:08 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2010-2011 Freescale Semiconductor, Inc. |
| 3 | * |
Wolfgang Denk | d79de1d | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 4 | * SPDX-License-Identifier: GPL-2.0+ |
Ruchika Gupta | 8ca8d82 | 2010-12-15 17:02:08 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #ifndef __FSL_SECURE_BOOT_H |
| 8 | #define __FSL_SECURE_BOOT_H |
gaurav rana | 8b5ea65 | 2015-02-27 09:46:17 +0530 | [diff] [blame] | 9 | #include <asm/config_mpc85xx.h> |
Ruchika Gupta | 8ca8d82 | 2010-12-15 17:02:08 +0000 | [diff] [blame] | 10 | |
Po Liu | d103009 | 2013-08-21 14:20:21 +0800 | [diff] [blame] | 11 | #ifdef CONFIG_SECURE_BOOT |
Ruchika Gupta | 8ca8d82 | 2010-12-15 17:02:08 +0000 | [diff] [blame] | 12 | #if defined(CONFIG_FSL_CORENET) |
| 13 | #define CONFIG_SYS_PBI_FLASH_BASE 0xc0000000 |
York Sun | 4620e1f | 2016-11-15 18:32:50 -0800 | [diff] [blame] | 14 | #elif defined(CONFIG_TARGET_BSC9132QDS) |
Aneesh Bansal | bf955b2 | 2014-03-12 00:07:27 +0530 | [diff] [blame] | 15 | #define CONFIG_SYS_PBI_FLASH_BASE 0xc8000000 |
York Sun | c6c51ae | 2016-11-16 11:51:24 -0800 | [diff] [blame] | 16 | #elif defined(CONFIG_TARGET_C29XPCIE) |
Aneesh Bansal | 11421b4 | 2014-12-12 15:35:04 +0530 | [diff] [blame] | 17 | #define CONFIG_SYS_PBI_FLASH_BASE 0xcc000000 |
Ruchika Gupta | 8ca8d82 | 2010-12-15 17:02:08 +0000 | [diff] [blame] | 18 | #else |
| 19 | #define CONFIG_SYS_PBI_FLASH_BASE 0xce000000 |
| 20 | #endif |
| 21 | #define CONFIG_SYS_PBI_FLASH_WINDOW 0xcff80000 |
| 22 | |
York Sun | 2dfafc6 | 2016-11-18 11:47:35 -0800 | [diff] [blame] | 23 | #if defined(CONFIG_TARGET_B4860QDS) || \ |
| 24 | defined(CONFIG_TARGET_B4420QDS) || \ |
York Sun | a74e923 | 2016-11-21 13:19:14 -0800 | [diff] [blame] | 25 | defined(CONFIG_TARGET_T4160QDS) || \ |
York Sun | ba04cb4 | 2016-11-21 13:22:08 -0800 | [diff] [blame] | 26 | defined(CONFIG_TARGET_T4240QDS) || \ |
York Sun | c68b12d | 2016-12-28 08:43:36 -0800 | [diff] [blame] | 27 | defined(CONFIG_TARGET_T2080QDS) || \ |
York Sun | a05baa4 | 2016-12-28 08:43:37 -0800 | [diff] [blame] | 28 | defined(CONFIG_TARGET_T2080RDB) || \ |
York Sun | 8853a2c | 2016-12-28 08:43:35 -0800 | [diff] [blame] | 29 | defined(CONFIG_TARGET_T1040QDS) || \ |
York Sun | 097aa60 | 2016-11-21 11:25:26 -0800 | [diff] [blame] | 30 | defined(CONFIG_TARGET_T1040RDB) || \ |
| 31 | defined(CONFIG_TARGET_T1040D4RDB) || \ |
| 32 | defined(CONFIG_TARGET_T1042RDB) || \ |
| 33 | defined(CONFIG_TARGET_T1042D4RDB) || \ |
| 34 | defined(CONFIG_TARGET_T1042RDB_PI) || \ |
York Sun | bcee92e | 2016-11-18 12:35:47 -0800 | [diff] [blame] | 35 | defined(CONFIG_ARCH_T1023) || \ |
York Sun | 7d29dd6 | 2016-11-18 13:01:34 -0800 | [diff] [blame] | 36 | defined(CONFIG_ARCH_T1024) |
Sumit Garg | afaca2a | 2016-07-14 12:27:52 -0400 | [diff] [blame] | 37 | #ifndef CONFIG_SYS_RAMBOOT |
Aneesh Bansal | 8bcbc27 | 2014-03-18 23:40:26 +0530 | [diff] [blame] | 38 | #define CONFIG_SYS_CPC_REINIT_F |
Sumit Garg | afaca2a | 2016-07-14 12:27:52 -0400 | [diff] [blame] | 39 | #endif |
gaurav rana | 8b5ea65 | 2015-02-27 09:46:17 +0530 | [diff] [blame] | 40 | #define CONFIG_KEY_REVOCATION |
Aneesh Bansal | 8bcbc27 | 2014-03-18 23:40:26 +0530 | [diff] [blame] | 41 | #undef CONFIG_SYS_INIT_L3_ADDR |
| 42 | #define CONFIG_SYS_INIT_L3_ADDR 0xbff00000 |
| 43 | #endif |
| 44 | |
Aneesh Bansal | e0f5015 | 2015-06-16 10:36:00 +0530 | [diff] [blame] | 45 | #if defined(CONFIG_RAMBOOT_PBL) |
| 46 | #undef CONFIG_SYS_INIT_L3_ADDR |
Sumit Garg | afaca2a | 2016-07-14 12:27:52 -0400 | [diff] [blame] | 47 | #ifdef CONFIG_SYS_INIT_L3_VADDR |
| 48 | #define CONFIG_SYS_INIT_L3_ADDR \ |
| 49 | (CONFIG_SYS_INIT_L3_VADDR & ~0xFFF00000) | \ |
| 50 | 0xbff00000 |
| 51 | #else |
| 52 | #define CONFIG_SYS_INIT_L3_ADDR 0xbff00000 |
| 53 | #endif |
Aneesh Bansal | e0f5015 | 2015-06-16 10:36:00 +0530 | [diff] [blame] | 54 | #endif |
| 55 | |
York Sun | c6c51ae | 2016-11-16 11:51:24 -0800 | [diff] [blame] | 56 | #if defined(CONFIG_TARGET_C29XPCIE) |
gaurav rana | 8b5ea65 | 2015-02-27 09:46:17 +0530 | [diff] [blame] | 57 | #define CONFIG_KEY_REVOCATION |
| 58 | #endif |
| 59 | |
York Sun | df70d06 | 2016-11-18 11:20:40 -0800 | [diff] [blame] | 60 | #if defined(CONFIG_ARCH_P3041) || \ |
York Sun | 84be8a9 | 2016-11-18 11:24:40 -0800 | [diff] [blame] | 61 | defined(CONFIG_ARCH_P4080) || \ |
York Sun | 2ed73f4 | 2016-11-18 11:30:56 -0800 | [diff] [blame] | 62 | defined(CONFIG_ARCH_P5020) || \ |
York Sun | a3c5b66 | 2016-11-18 11:39:36 -0800 | [diff] [blame] | 63 | defined(CONFIG_ARCH_P5040) || \ |
York Sun | 5786fca | 2016-11-18 11:15:21 -0800 | [diff] [blame] | 64 | defined(CONFIG_ARCH_P2041) |
gaurav rana | 8b5ea65 | 2015-02-27 09:46:17 +0530 | [diff] [blame] | 65 | #define CONFIG_FSL_TRUST_ARCH_v1 |
| 66 | #endif |
| 67 | |
Aneesh Bansal | d31bb3e | 2015-07-31 14:10:03 +0530 | [diff] [blame] | 68 | #if defined(CONFIG_FSL_CORENET) && !defined(CONFIG_SYS_RAMBOOT) |
gaurav rana | 8b5ea65 | 2015-02-27 09:46:17 +0530 | [diff] [blame] | 69 | /* The key used for verification of next level images |
| 70 | * is picked up from an Extension Table which has |
| 71 | * been verified by the ISBC (Internal Secure boot Code) |
Aneesh Bansal | d31bb3e | 2015-07-31 14:10:03 +0530 | [diff] [blame] | 72 | * in boot ROM of the SoC. |
| 73 | * The feature is only applicable in case of NOR boot and is |
| 74 | * not applicable in case of RAMBOOT (NAND, SD, SPI). |
gaurav rana | 8b5ea65 | 2015-02-27 09:46:17 +0530 | [diff] [blame] | 75 | */ |
| 76 | #define CONFIG_FSL_ISBC_KEY_EXT |
| 77 | #endif |
Aneesh Bansal | 4310470 | 2016-01-22 16:37:24 +0530 | [diff] [blame] | 78 | #endif /* #ifdef CONFIG_SECURE_BOOT */ |
gaurav rana | 8b5ea65 | 2015-02-27 09:46:17 +0530 | [diff] [blame] | 79 | |
Aneesh Bansal | 4310470 | 2016-01-22 16:37:24 +0530 | [diff] [blame] | 80 | #ifdef CONFIG_CHAIN_OF_TRUST |
Simon Glass | 3aa6612 | 2016-09-12 23:18:23 -0600 | [diff] [blame] | 81 | #ifdef CONFIG_SPL_BUILD |
Sumit Garg | f6d96cb | 2016-07-14 12:27:51 -0400 | [diff] [blame] | 82 | /* |
| 83 | * PPAACT and SPAACT table for PAMU must be placed on DDR after DDR init |
| 84 | * due to space crunch on CPC and thus malloc will not work. |
| 85 | */ |
| 86 | #define CONFIG_SPL_PPAACT_ADDR 0x2e000000 |
| 87 | #define CONFIG_SPL_SPAACT_ADDR 0x2f000000 |
| 88 | #define CONFIG_SPL_JR0_LIODN_S 454 |
| 89 | #define CONFIG_SPL_JR0_LIODN_NS 458 |
| 90 | /* |
| 91 | * Define the key hash for U-Boot here if public/private key pair used to |
| 92 | * sign U-boot are different from the SRK hash put in the fuse |
| 93 | * Example of defining KEY_HASH is |
| 94 | * #define CONFIG_SPL_UBOOT_KEY_HASH \ |
| 95 | * "41066b564c6ffcef40ccbc1e0a5d0d519604000c785d97bbefd25e4d288d1c8b" |
| 96 | * else leave it defined as NULL |
| 97 | */ |
| 98 | |
| 99 | #define CONFIG_SPL_UBOOT_KEY_HASH NULL |
| 100 | #endif /* ifdef CONFIG_SPL_BUILD */ |
| 101 | |
Aneesh Bansal | 4310470 | 2016-01-22 16:37:24 +0530 | [diff] [blame] | 102 | #define CONFIG_FSL_SEC_MON |
Aneesh Bansal | 4310470 | 2016-01-22 16:37:24 +0530 | [diff] [blame] | 103 | |
Sumit Garg | f6d96cb | 2016-07-14 12:27:51 -0400 | [diff] [blame] | 104 | #ifndef CONFIG_SPL_BUILD |
| 105 | /* |
| 106 | * fsl_setenv_chain_of_trust() must be called from |
Aneesh Bansal | c624909 | 2016-01-22 16:37:27 +0530 | [diff] [blame] | 107 | * board_late_init() |
| 108 | */ |
Aneesh Bansal | c624909 | 2016-01-22 16:37:27 +0530 | [diff] [blame] | 109 | |
Aneesh Bansal | b69061d | 2015-06-16 10:36:43 +0530 | [diff] [blame] | 110 | /* If Boot Script is not on NOR and is required to be copied on RAM */ |
| 111 | #ifdef CONFIG_BOOTSCRIPT_COPY_RAM |
| 112 | #define CONFIG_BS_HDR_ADDR_RAM 0x00010000 |
Sumit Garg | 4564283 | 2016-06-14 13:52:39 -0400 | [diff] [blame] | 113 | #define CONFIG_BS_HDR_ADDR_DEVICE 0x00800000 |
Aneesh Bansal | b69061d | 2015-06-16 10:36:43 +0530 | [diff] [blame] | 114 | #define CONFIG_BS_HDR_SIZE 0x00002000 |
| 115 | #define CONFIG_BS_ADDR_RAM 0x00012000 |
Sumit Garg | 4564283 | 2016-06-14 13:52:39 -0400 | [diff] [blame] | 116 | #define CONFIG_BS_ADDR_DEVICE 0x00802000 |
Aneesh Bansal | b69061d | 2015-06-16 10:36:43 +0530 | [diff] [blame] | 117 | #define CONFIG_BS_SIZE 0x00001000 |
| 118 | |
| 119 | #define CONFIG_BOOTSCRIPT_HDR_ADDR CONFIG_BS_HDR_ADDR_RAM |
| 120 | #else |
| 121 | |
gaurav rana | f79323c | 2015-03-10 14:08:50 +0530 | [diff] [blame] | 122 | /* The bootscript header address is different for B4860 because the NOR |
| 123 | * mapping is different on B4 due to reduced NOR size. |
| 124 | */ |
York Sun | 2dfafc6 | 2016-11-18 11:47:35 -0800 | [diff] [blame] | 125 | #if defined(CONFIG_TARGET_B4860QDS) || defined(CONFIG_TARGET_B4420QDS) |
gaurav rana | f79323c | 2015-03-10 14:08:50 +0530 | [diff] [blame] | 126 | #define CONFIG_BOOTSCRIPT_HDR_ADDR 0xecc00000 |
| 127 | #elif defined(CONFIG_FSL_CORENET) |
| 128 | #define CONFIG_BOOTSCRIPT_HDR_ADDR 0xe8e00000 |
York Sun | 4620e1f | 2016-11-15 18:32:50 -0800 | [diff] [blame] | 129 | #elif defined(CONFIG_TARGET_BSC9132QDS) |
gaurav rana | f79323c | 2015-03-10 14:08:50 +0530 | [diff] [blame] | 130 | #define CONFIG_BOOTSCRIPT_HDR_ADDR 0x88020000 |
York Sun | c6c51ae | 2016-11-16 11:51:24 -0800 | [diff] [blame] | 131 | #elif defined(CONFIG_TARGET_C29XPCIE) |
gaurav rana | f79323c | 2015-03-10 14:08:50 +0530 | [diff] [blame] | 132 | #define CONFIG_BOOTSCRIPT_HDR_ADDR 0xec020000 |
| 133 | #else |
| 134 | #define CONFIG_BOOTSCRIPT_HDR_ADDR 0xee020000 |
| 135 | #endif |
| 136 | |
Aneesh Bansal | 4310470 | 2016-01-22 16:37:24 +0530 | [diff] [blame] | 137 | #endif /* #ifdef CONFIG_BOOTSCRIPT_COPY_RAM */ |
gaurav rana | f79323c | 2015-03-10 14:08:50 +0530 | [diff] [blame] | 138 | |
Aneesh Bansal | 4310470 | 2016-01-22 16:37:24 +0530 | [diff] [blame] | 139 | #include <config_fsl_chain_trust.h> |
Sumit Garg | f6d96cb | 2016-07-14 12:27:51 -0400 | [diff] [blame] | 140 | #endif /* #ifndef CONFIG_SPL_BUILD */ |
Aneesh Bansal | 4310470 | 2016-01-22 16:37:24 +0530 | [diff] [blame] | 141 | #endif /* #ifdef CONFIG_CHAIN_OF_TRUST */ |
Po Liu | d103009 | 2013-08-21 14:20:21 +0800 | [diff] [blame] | 142 | #endif |