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
7b36a7e9
"include/git@web.lueluesay.top:root/arm-trusted-firmware.git" did not exist on "888037e5c89d3cf9b09a9eaf74234682c2311851"
Commit
7b36a7e9
authored
Feb 26, 2020
by
Olivier Deprez
Committed by
TrustedFirmware Code Review
Feb 26, 2020
Browse files
Merge "allwinner: Reserve and map space for the SCP firmware" into integration
parents
cf92be29
57b36632
Changes
2
Hide whitespace changes
Inline
Side-by-side
plat/allwinner/common/include/platform_def.h
View file @
7b36a7e9
...
@@ -14,7 +14,12 @@
...
@@ -14,7 +14,12 @@
#include <sunxi_mmap.h>
#include <sunxi_mmap.h>
#define BL31_BASE (SUNXI_SRAM_A2_BASE + 0x4000)
#define BL31_BASE (SUNXI_SRAM_A2_BASE + 0x4000)
#define BL31_LIMIT (SUNXI_SRAM_A2_BASE + SUNXI_SRAM_A2_SIZE)
#define BL31_LIMIT (SUNXI_SRAM_A2_BASE + \
SUNXI_SRAM_A2_SIZE - SUNXI_SCP_SIZE)
/* The SCP firmware is allocated the last 16KiB of SRAM A2. */
#define SUNXI_SCP_BASE BL31_LIMIT
#define SUNXI_SCP_SIZE 0x4000
/* Overwrite U-Boot SPL, but reserve the first page for the SPL header. */
/* Overwrite U-Boot SPL, but reserve the first page for the SPL header. */
#define BL31_NOBITS_BASE (SUNXI_SRAM_A1_BASE + 0x1000)
#define BL31_NOBITS_BASE (SUNXI_SRAM_A1_BASE + 0x1000)
...
@@ -51,7 +56,7 @@
...
@@ -51,7 +56,7 @@
#define PLATFORM_CORE_COUNT (PLATFORM_CLUSTER_COUNT * \
#define PLATFORM_CORE_COUNT (PLATFORM_CLUSTER_COUNT * \
PLATFORM_MAX_CPUS_PER_CLUSTER)
PLATFORM_MAX_CPUS_PER_CLUSTER)
#define PLATFORM_MAX_CPUS_PER_CLUSTER U(4)
#define PLATFORM_MAX_CPUS_PER_CLUSTER U(4)
#define PLATFORM_MMAP_REGIONS
4
#define PLATFORM_MMAP_REGIONS
5
#define PLATFORM_STACK_SIZE (0x1000 / PLATFORM_CORE_COUNT)
#define PLATFORM_STACK_SIZE (0x1000 / PLATFORM_CORE_COUNT)
#ifndef SPD_none
#ifndef SPD_none
...
...
plat/allwinner/common/sunxi_common.c
View file @
7b36a7e9
...
@@ -21,6 +21,8 @@
...
@@ -21,6 +21,8 @@
static
const
mmap_region_t
sunxi_mmap
[
PLATFORM_MMAP_REGIONS
+
1
]
=
{
static
const
mmap_region_t
sunxi_mmap
[
PLATFORM_MMAP_REGIONS
+
1
]
=
{
MAP_REGION_FLAT
(
SUNXI_SRAM_BASE
,
SUNXI_SRAM_SIZE
,
MAP_REGION_FLAT
(
SUNXI_SRAM_BASE
,
SUNXI_SRAM_SIZE
,
MT_RW_DATA
|
MT_SECURE
),
MT_RW_DATA
|
MT_SECURE
),
MAP_REGION_FLAT
(
SUNXI_SCP_BASE
,
SUNXI_SCP_SIZE
,
MT_DEVICE
|
MT_RW
|
MT_SECURE
|
MT_EXECUTE_NEVER
),
MAP_REGION_FLAT
(
SUNXI_DEV_BASE
,
SUNXI_DEV_SIZE
,
MAP_REGION_FLAT
(
SUNXI_DEV_BASE
,
SUNXI_DEV_SIZE
,
MT_DEVICE
|
MT_RW
|
MT_SECURE
|
MT_EXECUTE_NEVER
),
MT_DEVICE
|
MT_RW
|
MT_SECURE
|
MT_EXECUTE_NEVER
),
MAP_REGION
(
SUNXI_DRAM_BASE
,
SUNXI_DRAM_VIRT_BASE
,
SUNXI_DRAM_SEC_SIZE
,
MAP_REGION
(
SUNXI_DRAM_BASE
,
SUNXI_DRAM_VIRT_BASE
,
SUNXI_DRAM_SEC_SIZE
,
...
...
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