Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
adam.huang
Arm Trusted Firmware
Commits
b16bb16e
Commit
b16bb16e
authored
Aug 16, 2017
by
Victor Chong
Browse files
hikey*: Support Trusted OS extra image (OP-TEE header) parsing
Signed-off-by:
Victor Chong
<
victor.chong@linaro.org
>
parent
2de0c5cc
Changes
15
Hide whitespace changes
Inline
Side-by-side
plat/hisilicon/hikey/aarch64/hikey_common.c
View file @
b16bb16e
...
@@ -28,6 +28,15 @@
...
@@ -28,6 +28,15 @@
TSP_SEC_MEM_SIZE, \
TSP_SEC_MEM_SIZE, \
MT_MEMORY | MT_RW | MT_SECURE)
MT_MEMORY | MT_RW | MT_SECURE)
#if LOAD_IMAGE_V2
#ifdef SPD_opteed
#define MAP_OPTEE_PAGEABLE MAP_REGION_FLAT( \
HIKEY_OPTEE_PAGEABLE_LOAD_BASE, \
HIKEY_OPTEE_PAGEABLE_LOAD_SIZE, \
MT_MEMORY | MT_RW | MT_SECURE)
#endif
#endif
#define MAP_ROM_PARAM MAP_REGION_FLAT(XG2RAM0_BASE, \
#define MAP_ROM_PARAM MAP_REGION_FLAT(XG2RAM0_BASE, \
BL1_XG2RAM0_OFFSET, \
BL1_XG2RAM0_OFFSET, \
MT_DEVICE | MT_RO | MT_SECURE)
MT_DEVICE | MT_RO | MT_SECURE)
...
@@ -64,6 +73,11 @@ static const mmap_region_t hikey_mmap[] = {
...
@@ -64,6 +73,11 @@ static const mmap_region_t hikey_mmap[] = {
MAP_DDR
,
MAP_DDR
,
MAP_DEVICE
,
MAP_DEVICE
,
MAP_TSP_MEM
,
MAP_TSP_MEM
,
#if LOAD_IMAGE_V2
#ifdef SPD_opteed
MAP_OPTEE_PAGEABLE
,
#endif
#endif
{
0
}
{
0
}
};
};
#endif
#endif
...
...
plat/hisilicon/hikey/hikey_bl2_mem_params_desc.c
View file @
b16bb16e
...
@@ -99,6 +99,43 @@ static bl_mem_params_node_t bl2_mem_params_descs[] = {
...
@@ -99,6 +99,43 @@ static bl_mem_params_node_t bl2_mem_params_descs[] = {
.
next_handoff_image_id
=
BL33_IMAGE_ID
,
.
next_handoff_image_id
=
BL33_IMAGE_ID
,
},
},
/*
* Fill BL32 external 1 related information.
* A typical use for extra1 image is with OP-TEE where it is the pager image.
*/
{
.
image_id
=
BL32_EXTRA1_IMAGE_ID
,
SET_STATIC_PARAM_HEAD
(
ep_info
,
PARAM_EP
,
VERSION_2
,
entry_point_info_t
,
SECURE
|
NON_EXECUTABLE
),
SET_STATIC_PARAM_HEAD
(
image_info
,
PARAM_EP
,
VERSION_2
,
image_info_t
,
IMAGE_ATTRIB_SKIP_LOADING
),
.
image_info
.
image_base
=
BL32_BASE
,
.
image_info
.
image_max_size
=
BL32_LIMIT
-
BL32_BASE
,
.
next_handoff_image_id
=
INVALID_IMAGE_ID
,
},
/*
* Fill BL32 external 2 related information.
* A typical use for extra2 image is with OP-TEE where it is the paged image.
*/
{
.
image_id
=
BL32_EXTRA2_IMAGE_ID
,
SET_STATIC_PARAM_HEAD
(
ep_info
,
PARAM_EP
,
VERSION_2
,
entry_point_info_t
,
SECURE
|
NON_EXECUTABLE
),
SET_STATIC_PARAM_HEAD
(
image_info
,
PARAM_EP
,
VERSION_2
,
image_info_t
,
IMAGE_ATTRIB_SKIP_LOADING
),
#ifdef SPD_opteed
.
image_info
.
image_base
=
HIKEY_OPTEE_PAGEABLE_LOAD_BASE
,
.
image_info
.
image_max_size
=
HIKEY_OPTEE_PAGEABLE_LOAD_SIZE
,
#endif
.
next_handoff_image_id
=
INVALID_IMAGE_ID
,
},
# endif
/* BL32_BASE */
# endif
/* BL32_BASE */
/* Fill BL33 related information */
/* Fill BL33 related information */
...
...
plat/hisilicon/hikey/hikey_bl2_setup.c
View file @
b16bb16e
...
@@ -17,6 +17,11 @@
...
@@ -17,6 +17,11 @@
#include <hisi_mcu.h>
#include <hisi_mcu.h>
#include <hisi_sram_map.h>
#include <hisi_sram_map.h>
#include <mmio.h>
#include <mmio.h>
#if LOAD_IMAGE_V2
#ifdef SPD_opteed
#include <optee_utils.h>
#endif
#endif
#include <platform_def.h>
#include <platform_def.h>
#include <sp804_delay_timer.h>
#include <sp804_delay_timer.h>
#include <string.h>
#include <string.h>
...
@@ -161,11 +166,29 @@ int hikey_bl2_handle_post_image_load(unsigned int image_id)
...
@@ -161,11 +166,29 @@ int hikey_bl2_handle_post_image_load(unsigned int image_id)
{
{
int
err
=
0
;
int
err
=
0
;
bl_mem_params_node_t
*
bl_mem_params
=
get_bl_mem_params_node
(
image_id
);
bl_mem_params_node_t
*
bl_mem_params
=
get_bl_mem_params_node
(
image_id
);
#ifdef SPD_opteed
bl_mem_params_node_t
*
pager_mem_params
=
NULL
;
bl_mem_params_node_t
*
paged_mem_params
=
NULL
;
#endif
assert
(
bl_mem_params
);
assert
(
bl_mem_params
);
switch
(
image_id
)
{
switch
(
image_id
)
{
#ifdef AARCH64
#ifdef AARCH64
case
BL32_IMAGE_ID
:
case
BL32_IMAGE_ID
:
#ifdef SPD_opteed
pager_mem_params
=
get_bl_mem_params_node
(
BL32_EXTRA1_IMAGE_ID
);
assert
(
pager_mem_params
);
paged_mem_params
=
get_bl_mem_params_node
(
BL32_EXTRA2_IMAGE_ID
);
assert
(
paged_mem_params
);
err
=
parse_optee_header
(
&
bl_mem_params
->
ep_info
,
&
pager_mem_params
->
image_info
,
&
paged_mem_params
->
image_info
);
if
(
err
!=
0
)
{
WARN
(
"OPTEE header parse error.
\n
"
);
}
#endif
bl_mem_params
->
ep_info
.
spsr
=
hikey_get_spsr_for_bl32_entry
();
bl_mem_params
->
ep_info
.
spsr
=
hikey_get_spsr_for_bl32_entry
();
break
;
break
;
#endif
#endif
...
...
plat/hisilicon/hikey/hikey_bl31_setup.c
View file @
b16bb16e
...
@@ -69,7 +69,7 @@ static const int cci_map[] = {
...
@@ -69,7 +69,7 @@ static const int cci_map[] = {
CCI400_SL_IFACE4_CLUSTER_IX
CCI400_SL_IFACE4_CLUSTER_IX
};
};
entry_point_info_t
*
bl31_plat_get_next_image_ep_info
(
u
nsigned
in
t
type
)
entry_point_info_t
*
bl31_plat_get_next_image_ep_info
(
u
int32_
t
type
)
{
{
entry_point_info_t
*
next_image_info
;
entry_point_info_t
*
next_image_info
;
...
...
plat/hisilicon/hikey/hikey_def.h
View file @
b16bb16e
...
@@ -33,7 +33,7 @@
...
@@ -33,7 +33,7 @@
* - Non-secure DDR (8MB) reserved for OP-TEE's future use
* - Non-secure DDR (8MB) reserved for OP-TEE's future use
*/
*/
#define DDR_SEC_SIZE 0x01000000
#define DDR_SEC_SIZE 0x01000000
#define DDR_SEC_BASE (DDR_BASE + DDR_SIZE - DDR_SEC_SIZE)
#define DDR_SEC_BASE (DDR_BASE + DDR_SIZE - DDR_SEC_SIZE)
/* 0x3F000000 */
#define DDR_SDP_SIZE 0x00400000
#define DDR_SDP_SIZE 0x00400000
#define DDR_SDP_BASE (DDR_SEC_BASE - 0x400000
/* align */
- \
#define DDR_SDP_BASE (DDR_SEC_BASE - 0x400000
/* align */
- \
...
...
plat/hisilicon/hikey/hikey_io_storage.c
View file @
b16bb16e
...
@@ -77,6 +77,14 @@ static const io_uuid_spec_t bl32_uuid_spec = {
...
@@ -77,6 +77,14 @@ static const io_uuid_spec_t bl32_uuid_spec = {
.
uuid
=
UUID_SECURE_PAYLOAD_BL32
,
.
uuid
=
UUID_SECURE_PAYLOAD_BL32
,
};
};
static
const
io_uuid_spec_t
bl32_extra1_uuid_spec
=
{
.
uuid
=
UUID_SECURE_PAYLOAD_BL32_EXTRA1
,
};
static
const
io_uuid_spec_t
bl32_extra2_uuid_spec
=
{
.
uuid
=
UUID_SECURE_PAYLOAD_BL32_EXTRA2
,
};
static
const
io_uuid_spec_t
bl33_uuid_spec
=
{
static
const
io_uuid_spec_t
bl33_uuid_spec
=
{
.
uuid
=
UUID_NON_TRUSTED_FIRMWARE_BL33
,
.
uuid
=
UUID_NON_TRUSTED_FIRMWARE_BL33
,
};
};
...
@@ -111,6 +119,16 @@ static const struct plat_io_policy policies[] = {
...
@@ -111,6 +119,16 @@ static const struct plat_io_policy policies[] = {
(
uintptr_t
)
&
bl32_uuid_spec
,
(
uintptr_t
)
&
bl32_uuid_spec
,
check_fip
check_fip
},
},
[
BL32_EXTRA1_IMAGE_ID
]
=
{
&
fip_dev_handle
,
(
uintptr_t
)
&
bl32_extra1_uuid_spec
,
check_fip
},
[
BL32_EXTRA2_IMAGE_ID
]
=
{
&
fip_dev_handle
,
(
uintptr_t
)
&
bl32_extra2_uuid_spec
,
check_fip
},
[
BL33_IMAGE_ID
]
=
{
[
BL33_IMAGE_ID
]
=
{
&
fip_dev_handle
,
&
fip_dev_handle
,
(
uintptr_t
)
&
bl33_uuid_spec
,
(
uintptr_t
)
&
bl33_uuid_spec
,
...
...
plat/hisilicon/hikey/include/platform_def.h
View file @
b16bb16e
...
@@ -113,6 +113,14 @@
...
@@ -113,6 +113,14 @@
#define BL32_DRAM_BASE DDR_SEC_BASE
#define BL32_DRAM_BASE DDR_SEC_BASE
#define BL32_DRAM_LIMIT (DDR_SEC_BASE+DDR_SEC_SIZE)
#define BL32_DRAM_LIMIT (DDR_SEC_BASE+DDR_SEC_SIZE)
#if LOAD_IMAGE_V2
#ifdef SPD_opteed
/* Load pageable part of OP-TEE at end of allocated DRAM space for BL32 */
#define HIKEY_OPTEE_PAGEABLE_LOAD_BASE (BL32_DRAM_LIMIT - HIKEY_OPTEE_PAGEABLE_LOAD_SIZE)
/* 0x3FC0_0000 */
#define HIKEY_OPTEE_PAGEABLE_LOAD_SIZE 0x400000
/* 4MB */
#endif
#endif
#if (HIKEY_TSP_RAM_LOCATION_ID == HIKEY_DRAM_ID)
#if (HIKEY_TSP_RAM_LOCATION_ID == HIKEY_DRAM_ID)
#define TSP_SEC_MEM_BASE BL32_DRAM_BASE
#define TSP_SEC_MEM_BASE BL32_DRAM_BASE
#define TSP_SEC_MEM_SIZE (BL32_DRAM_LIMIT - BL32_DRAM_BASE)
#define TSP_SEC_MEM_SIZE (BL32_DRAM_LIMIT - BL32_DRAM_BASE)
...
@@ -136,7 +144,7 @@
...
@@ -136,7 +144,7 @@
*/
*/
#define ADDR_SPACE_SIZE (1ull << 32)
#define ADDR_SPACE_SIZE (1ull << 32)
#if IMAGE_BL1 ||
IMAGE_BL2 ||
IMAGE_BL32
#if IMAGE_BL1 || IMAGE_BL32
#define MAX_XLAT_TABLES 3
#define MAX_XLAT_TABLES 3
#endif
#endif
...
@@ -144,6 +152,18 @@
...
@@ -144,6 +152,18 @@
#define MAX_XLAT_TABLES 4
#define MAX_XLAT_TABLES 4
#endif
#endif
#if IMAGE_BL2
#if LOAD_IMAGE_V2
#ifdef SPD_opteed
#define MAX_XLAT_TABLES 4
#else
#define MAX_XLAT_TABLES 3
#endif
#else
#define MAX_XLAT_TABLES 3
#endif
#endif
#define MAX_MMAP_REGIONS 16
#define MAX_MMAP_REGIONS 16
#define HIKEY_NS_IMAGE_OFFSET (DDR_BASE + 0x35000000)
#define HIKEY_NS_IMAGE_OFFSET (DDR_BASE + 0x35000000)
...
...
plat/hisilicon/hikey/platform.mk
View file @
b16bb16e
...
@@ -32,6 +32,15 @@ $(eval $(call add_define,CRASH_CONSOLE_BASE))
...
@@ -32,6 +32,15 @@ $(eval $(call add_define,CRASH_CONSOLE_BASE))
$(eval
$(call
add_define,PLAT_PL061_MAX_GPIOS))
$(eval
$(call
add_define,PLAT_PL061_MAX_GPIOS))
$(eval
$(call
add_define,PLAT_PARTITION_MAX_ENTRIES))
$(eval
$(call
add_define,PLAT_PARTITION_MAX_ENTRIES))
# Add the build options to pack Trusted OS Extra1 and Trusted OS Extra2 images
# in the FIP if the platform requires.
ifneq
($(BL32_EXTRA1),)
$(eval
$(call
FIP_ADD_IMG,BL32_EXTRA1,--tos-fw-extra1))
endif
ifneq
($(BL32_EXTRA2),)
$(eval
$(call
FIP_ADD_IMG,BL32_EXTRA2,--tos-fw-extra2))
endif
ENABLE_PLAT_COMPAT
:=
0
ENABLE_PLAT_COMPAT
:=
0
USE_COHERENT_MEM
:=
1
USE_COHERENT_MEM
:=
1
...
@@ -77,6 +86,10 @@ ifeq (${LOAD_IMAGE_V2},1)
...
@@ -77,6 +86,10 @@ ifeq (${LOAD_IMAGE_V2},1)
BL2_SOURCES
+=
plat/hisilicon/hikey/hikey_bl2_mem_params_desc.c
\
BL2_SOURCES
+=
plat/hisilicon/hikey/hikey_bl2_mem_params_desc.c
\
plat/hisilicon/hikey/hikey_image_load.c
\
plat/hisilicon/hikey/hikey_image_load.c
\
common/desc_image_load.c
common/desc_image_load.c
ifeq
(${SPD},opteed)
BL2_SOURCES
+=
lib/optee/optee_utils.c
endif
endif
endif
HIKEY_GIC_SOURCES
:=
drivers/arm/gic/common/gic_common.c
\
HIKEY_GIC_SOURCES
:=
drivers/arm/gic/common/gic_common.c
\
...
...
plat/hisilicon/hikey960/aarch64/hikey960_common.c
View file @
b16bb16e
...
@@ -41,6 +41,15 @@
...
@@ -41,6 +41,15 @@
TSP_SEC_MEM_SIZE, \
TSP_SEC_MEM_SIZE, \
MT_MEMORY | MT_RW | MT_SECURE)
MT_MEMORY | MT_RW | MT_SECURE)
#if LOAD_IMAGE_V2
#ifdef SPD_opteed
#define MAP_OPTEE_PAGEABLE MAP_REGION_FLAT( \
HIKEY960_OPTEE_PAGEABLE_LOAD_BASE, \
HIKEY960_OPTEE_PAGEABLE_LOAD_SIZE, \
MT_MEMORY | MT_RW | MT_SECURE)
#endif
#endif
/*
/*
* Table of regions for different BL stages to map using the MMU.
* Table of regions for different BL stages to map using the MMU.
* This doesn't include Trusted RAM as the 'mem_layout' argument passed to
* This doesn't include Trusted RAM as the 'mem_layout' argument passed to
...
@@ -61,6 +70,11 @@ static const mmap_region_t hikey960_mmap[] = {
...
@@ -61,6 +70,11 @@ static const mmap_region_t hikey960_mmap[] = {
MAP_DDR
,
MAP_DDR
,
MAP_DEVICE
,
MAP_DEVICE
,
MAP_TSP_MEM
,
MAP_TSP_MEM
,
#if LOAD_IMAGE_V2
#ifdef SPD_opteed
MAP_OPTEE_PAGEABLE
,
#endif
#endif
{
0
}
{
0
}
};
};
#endif
#endif
...
...
plat/hisilicon/hikey960/hikey960_bl2_mem_params_desc.c
View file @
b16bb16e
...
@@ -99,6 +99,43 @@ static bl_mem_params_node_t bl2_mem_params_descs[] = {
...
@@ -99,6 +99,43 @@ static bl_mem_params_node_t bl2_mem_params_descs[] = {
.
next_handoff_image_id
=
BL33_IMAGE_ID
,
.
next_handoff_image_id
=
BL33_IMAGE_ID
,
},
},
/*
* Fill BL32 external 1 related information.
* A typical use for extra1 image is with OP-TEE where it is the pager image.
*/
{
.
image_id
=
BL32_EXTRA1_IMAGE_ID
,
SET_STATIC_PARAM_HEAD
(
ep_info
,
PARAM_EP
,
VERSION_2
,
entry_point_info_t
,
SECURE
|
NON_EXECUTABLE
),
SET_STATIC_PARAM_HEAD
(
image_info
,
PARAM_EP
,
VERSION_2
,
image_info_t
,
IMAGE_ATTRIB_SKIP_LOADING
),
.
image_info
.
image_base
=
BL32_BASE
,
.
image_info
.
image_max_size
=
BL32_LIMIT
-
BL32_BASE
,
.
next_handoff_image_id
=
INVALID_IMAGE_ID
,
},
/*
* Fill BL32 external 2 related information.
* A typical use for extra2 image is with OP-TEE where it is the paged image.
*/
{
.
image_id
=
BL32_EXTRA2_IMAGE_ID
,
SET_STATIC_PARAM_HEAD
(
ep_info
,
PARAM_EP
,
VERSION_2
,
entry_point_info_t
,
SECURE
|
NON_EXECUTABLE
),
SET_STATIC_PARAM_HEAD
(
image_info
,
PARAM_EP
,
VERSION_2
,
image_info_t
,
IMAGE_ATTRIB_SKIP_LOADING
),
#ifdef SPD_opteed
.
image_info
.
image_base
=
HIKEY960_OPTEE_PAGEABLE_LOAD_BASE
,
.
image_info
.
image_max_size
=
HIKEY960_OPTEE_PAGEABLE_LOAD_SIZE
,
#endif
.
next_handoff_image_id
=
INVALID_IMAGE_ID
,
},
# endif
/* BL32_BASE */
# endif
/* BL32_BASE */
/* Fill BL33 related information */
/* Fill BL33 related information */
...
...
plat/hisilicon/hikey960/hikey960_bl2_setup.c
View file @
b16bb16e
...
@@ -14,6 +14,11 @@
...
@@ -14,6 +14,11 @@
#include <generic_delay_timer.h>
#include <generic_delay_timer.h>
#include <hi3660.h>
#include <hi3660.h>
#include <mmio.h>
#include <mmio.h>
#if LOAD_IMAGE_V2
#ifdef SPD_opteed
#include <optee_utils.h>
#endif
#endif
#include <platform_def.h>
#include <platform_def.h>
#include <string.h>
#include <string.h>
#include <ufs.h>
#include <ufs.h>
...
@@ -238,11 +243,29 @@ int hikey960_bl2_handle_post_image_load(unsigned int image_id)
...
@@ -238,11 +243,29 @@ int hikey960_bl2_handle_post_image_load(unsigned int image_id)
{
{
int
err
=
0
;
int
err
=
0
;
bl_mem_params_node_t
*
bl_mem_params
=
get_bl_mem_params_node
(
image_id
);
bl_mem_params_node_t
*
bl_mem_params
=
get_bl_mem_params_node
(
image_id
);
#ifdef SPD_opteed
bl_mem_params_node_t
*
pager_mem_params
=
NULL
;
bl_mem_params_node_t
*
paged_mem_params
=
NULL
;
#endif
assert
(
bl_mem_params
);
assert
(
bl_mem_params
);
switch
(
image_id
)
{
switch
(
image_id
)
{
#ifdef AARCH64
#ifdef AARCH64
case
BL32_IMAGE_ID
:
case
BL32_IMAGE_ID
:
#ifdef SPD_opteed
pager_mem_params
=
get_bl_mem_params_node
(
BL32_EXTRA1_IMAGE_ID
);
assert
(
pager_mem_params
);
paged_mem_params
=
get_bl_mem_params_node
(
BL32_EXTRA2_IMAGE_ID
);
assert
(
paged_mem_params
);
err
=
parse_optee_header
(
&
bl_mem_params
->
ep_info
,
&
pager_mem_params
->
image_info
,
&
paged_mem_params
->
image_info
);
if
(
err
!=
0
)
{
WARN
(
"OPTEE header parse error.
\n
"
);
}
#endif
bl_mem_params
->
ep_info
.
spsr
=
hikey960_get_spsr_for_bl32_entry
();
bl_mem_params
->
ep_info
.
spsr
=
hikey960_get_spsr_for_bl32_entry
();
break
;
break
;
#endif
#endif
...
...
plat/hisilicon/hikey960/hikey960_bl31_setup.c
View file @
b16bb16e
...
@@ -64,7 +64,7 @@ static const int cci_map[] = {
...
@@ -64,7 +64,7 @@ static const int cci_map[] = {
CCI400_SL_IFACE4_CLUSTER_IX
CCI400_SL_IFACE4_CLUSTER_IX
};
};
entry_point_info_t
*
bl31_plat_get_next_image_ep_info
(
u
nsigned
in
t
type
)
entry_point_info_t
*
bl31_plat_get_next_image_ep_info
(
u
int32_
t
type
)
{
{
entry_point_info_t
*
next_image_info
;
entry_point_info_t
*
next_image_info
;
...
...
plat/hisilicon/hikey960/hikey960_io_storage.c
View file @
b16bb16e
...
@@ -73,6 +73,14 @@ static const io_uuid_spec_t bl32_uuid_spec = {
...
@@ -73,6 +73,14 @@ static const io_uuid_spec_t bl32_uuid_spec = {
.
uuid
=
UUID_SECURE_PAYLOAD_BL32
,
.
uuid
=
UUID_SECURE_PAYLOAD_BL32
,
};
};
static
const
io_uuid_spec_t
bl32_extra1_uuid_spec
=
{
.
uuid
=
UUID_SECURE_PAYLOAD_BL32_EXTRA1
,
};
static
const
io_uuid_spec_t
bl32_extra2_uuid_spec
=
{
.
uuid
=
UUID_SECURE_PAYLOAD_BL32_EXTRA2
,
};
static
const
io_uuid_spec_t
bl33_uuid_spec
=
{
static
const
io_uuid_spec_t
bl33_uuid_spec
=
{
.
uuid
=
UUID_NON_TRUSTED_FIRMWARE_BL33
,
.
uuid
=
UUID_NON_TRUSTED_FIRMWARE_BL33
,
};
};
...
@@ -103,6 +111,16 @@ static const struct plat_io_policy policies[] = {
...
@@ -103,6 +111,16 @@ static const struct plat_io_policy policies[] = {
(
uintptr_t
)
&
bl32_uuid_spec
,
(
uintptr_t
)
&
bl32_uuid_spec
,
check_fip
check_fip
},
},
[
BL32_EXTRA1_IMAGE_ID
]
=
{
&
fip_dev_handle
,
(
uintptr_t
)
&
bl32_extra1_uuid_spec
,
check_fip
},
[
BL32_EXTRA2_IMAGE_ID
]
=
{
&
fip_dev_handle
,
(
uintptr_t
)
&
bl32_extra2_uuid_spec
,
check_fip
},
[
BL33_IMAGE_ID
]
=
{
[
BL33_IMAGE_ID
]
=
{
&
fip_dev_handle
,
&
fip_dev_handle
,
(
uintptr_t
)
&
bl33_uuid_spec
,
(
uintptr_t
)
&
bl33_uuid_spec
,
...
...
plat/hisilicon/hikey960/include/platform_def.h
View file @
b16bb16e
...
@@ -75,6 +75,14 @@
...
@@ -75,6 +75,14 @@
#define BL32_DRAM_BASE DDR_SEC_BASE
#define BL32_DRAM_BASE DDR_SEC_BASE
#define BL32_DRAM_LIMIT (DDR_SEC_BASE+DDR_SEC_SIZE)
#define BL32_DRAM_LIMIT (DDR_SEC_BASE+DDR_SEC_SIZE)
#if LOAD_IMAGE_V2
#ifdef SPD_opteed
/* Load pageable part of OP-TEE at end of allocated DRAM space for BL32 */
#define HIKEY960_OPTEE_PAGEABLE_LOAD_BASE (BL32_DRAM_LIMIT - HIKEY960_OPTEE_PAGEABLE_LOAD_SIZE)
/* 0x3FC0_0000 */
#define HIKEY960_OPTEE_PAGEABLE_LOAD_SIZE 0x400000
/* 4MB */
#endif
#endif
#if (HIKEY960_TSP_RAM_LOCATION_ID == HIKEY960_DRAM_ID)
#if (HIKEY960_TSP_RAM_LOCATION_ID == HIKEY960_DRAM_ID)
#define TSP_SEC_MEM_BASE BL32_DRAM_BASE
#define TSP_SEC_MEM_BASE BL32_DRAM_BASE
#define TSP_SEC_MEM_SIZE (BL32_DRAM_LIMIT - BL32_DRAM_BASE)
#define TSP_SEC_MEM_SIZE (BL32_DRAM_LIMIT - BL32_DRAM_BASE)
...
@@ -101,10 +109,22 @@
...
@@ -101,10 +109,22 @@
*/
*/
#define ADDR_SPACE_SIZE (1ull << 32)
#define ADDR_SPACE_SIZE (1ull << 32)
#if IMAGE_BL1 ||
IMAGE_BL2 ||
IMAGE_BL31 || IMAGE_BL32
#if IMAGE_BL1 || IMAGE_BL31 || IMAGE_BL32
#define MAX_XLAT_TABLES 3
#define MAX_XLAT_TABLES 3
#endif
#endif
#if IMAGE_BL2
#if LOAD_IMAGE_V2
#ifdef SPD_opteed
#define MAX_XLAT_TABLES 4
#else
#define MAX_XLAT_TABLES 3
#endif
#else
#define MAX_XLAT_TABLES 3
#endif
#endif
#define MAX_MMAP_REGIONS 16
#define MAX_MMAP_REGIONS 16
/*
/*
...
...
plat/hisilicon/hikey960/platform.mk
View file @
b16bb16e
...
@@ -25,6 +25,15 @@ PROGRAMMABLE_RESET_ADDRESS := 1
...
@@ -25,6 +25,15 @@ PROGRAMMABLE_RESET_ADDRESS := 1
$(eval
$(call
add_define,HIKEY960_TSP_RAM_LOCATION_ID))
$(eval
$(call
add_define,HIKEY960_TSP_RAM_LOCATION_ID))
$(eval
$(call
add_define,CRASH_CONSOLE_BASE))
$(eval
$(call
add_define,CRASH_CONSOLE_BASE))
# Add the build options to pack Trusted OS Extra1 and Trusted OS Extra2 images
# in the FIP if the platform requires.
ifneq
($(BL32_EXTRA1),)
$(eval
$(call
FIP_ADD_IMG,BL32_EXTRA1,--tos-fw-extra1))
endif
ifneq
($(BL32_EXTRA2),)
$(eval
$(call
FIP_ADD_IMG,BL32_EXTRA2,--tos-fw-extra2))
endif
ENABLE_PLAT_COMPAT
:=
0
ENABLE_PLAT_COMPAT
:=
0
USE_COHERENT_MEM
:=
1
USE_COHERENT_MEM
:=
1
...
@@ -68,6 +77,10 @@ ifeq (${LOAD_IMAGE_V2},1)
...
@@ -68,6 +77,10 @@ ifeq (${LOAD_IMAGE_V2},1)
BL2_SOURCES
+=
plat/hisilicon/hikey960/hikey960_bl2_mem_params_desc.c
\
BL2_SOURCES
+=
plat/hisilicon/hikey960/hikey960_bl2_mem_params_desc.c
\
plat/hisilicon/hikey960/hikey960_image_load.c
\
plat/hisilicon/hikey960/hikey960_image_load.c
\
common/desc_image_load.c
common/desc_image_load.c
ifeq
(${SPD},opteed)
BL2_SOURCES
+=
lib/optee/optee_utils.c
endif
endif
endif
BL31_SOURCES
+=
drivers/arm/cci/cci.c
\
BL31_SOURCES
+=
drivers/arm/cci/cci.c
\
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment