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
73ba5d40
Unverified
Commit
73ba5d40
authored
Jan 25, 2018
by
davidcunado-arm
Committed by
GitHub
Jan 25, 2018
Browse files
Merge pull request #1234 from SNG-ARM/master
SPM: Declare explicit width based types in secure_partition_boot_info…
parents
8253eb57
6dafcebc
Changes
1
Show whitespace changes
Inline
Side-by-side
include/services/secure_partition.h
View file @
73ba5d40
...
...
@@ -35,27 +35,27 @@ extern uintptr_t __SP_IMAGE_XLAT_TABLES_END__;
* partition.
*/
typedef
struct
secure_partition_mp_info
{
u
_register
_t
mpidr
;
u
nsigned
in
t
linear_id
;
u
nsigned
in
t
flags
;
u
int64
_t
mpidr
;
u
int32_
t
linear_id
;
u
int32_
t
flags
;
}
secure_partition_mp_info_t
;
typedef
struct
secure_partition_boot_info
{
param_header_t
h
;
uint
ptr
_t
sp_mem_base
;
uint
ptr
_t
sp_mem_limit
;
uint
ptr
_t
sp_image_base
;
uint
ptr
_t
sp_stack_base
;
uint
ptr
_t
sp_heap_base
;
uint
ptr
_t
sp_ns_comm_buf_base
;
uint
ptr
_t
sp_shared_buf_base
;
size
_t
sp_image_size
;
size
_t
sp_pcpu_stack_size
;
size
_t
sp_heap_size
;
size
_t
sp_ns_comm_buf_size
;
size
_t
sp_shared_buf_size
;
u
nsigned
in
t
num_sp_mem_regions
;
u
nsigned
in
t
num_cpus
;
uint
64
_t
sp_mem_base
;
uint
64
_t
sp_mem_limit
;
uint
64
_t
sp_image_base
;
uint
64
_t
sp_stack_base
;
uint
64
_t
sp_heap_base
;
uint
64
_t
sp_ns_comm_buf_base
;
uint
64
_t
sp_shared_buf_base
;
uint64
_t
sp_image_size
;
uint64
_t
sp_pcpu_stack_size
;
uint64
_t
sp_heap_size
;
uint64
_t
sp_ns_comm_buf_size
;
uint64
_t
sp_shared_buf_size
;
u
int32_
t
num_sp_mem_regions
;
u
int32_
t
num_cpus
;
secure_partition_mp_info_t
*
mp_info
;
}
secure_partition_boot_info_t
;
...
...
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