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
ccd130ea
Unverified
Commit
ccd130ea
authored
May 01, 2018
by
danh-arm
Committed by
GitHub
May 01, 2018
Browse files
Merge pull request #1255 from masahir0y/int-ll64
Use consistent int-ll64 typedefs for aarch32 and aarch64
parents
a8d9550b
0a2d5b43
Changes
27
Hide whitespace changes
Inline
Side-by-side
services/spd/opteed/opteed_pm.c
View file @
ccd130ea
...
...
@@ -16,7 +16,7 @@
* The target cpu is being turned on. Allow the OPTEED/OPTEE to perform any
* actions needed. Nothing at the moment.
******************************************************************************/
static
void
opteed_cpu_on_handler
(
u
int64
_t
target_cpu
)
static
void
opteed_cpu_on_handler
(
u
_register
_t
target_cpu
)
{
}
...
...
@@ -24,7 +24,7 @@ static void opteed_cpu_on_handler(uint64_t target_cpu)
* This cpu is being turned off. Allow the OPTEED/OPTEE to perform any actions
* needed
******************************************************************************/
static
int32_t
opteed_cpu_off_handler
(
u
int64
_t
unused
)
static
int32_t
opteed_cpu_off_handler
(
u
_register
_t
unused
)
{
int32_t
rc
=
0
;
uint32_t
linear_id
=
plat_my_core_pos
();
...
...
@@ -57,7 +57,7 @@ static int32_t opteed_cpu_off_handler(uint64_t unused)
* This cpu is being suspended. S-EL1 state must have been saved in the
* resident cpu (mpidr format) if it is a UP/UP migratable OPTEE.
******************************************************************************/
static
void
opteed_cpu_suspend_handler
(
u
int64
_t
max_off_pwrlvl
)
static
void
opteed_cpu_suspend_handler
(
u
_register
_t
max_off_pwrlvl
)
{
int32_t
rc
=
0
;
uint32_t
linear_id
=
plat_my_core_pos
();
...
...
@@ -87,7 +87,7 @@ static void opteed_cpu_suspend_handler(uint64_t max_off_pwrlvl)
* after initialising minimal architectural state that guarantees safe
* execution.
******************************************************************************/
static
void
opteed_cpu_on_finish_handler
(
u
int64
_t
unused
)
static
void
opteed_cpu_on_finish_handler
(
u
_register
_t
unused
)
{
int32_t
rc
=
0
;
uint32_t
linear_id
=
plat_my_core_pos
();
...
...
@@ -123,7 +123,7 @@ static void opteed_cpu_on_finish_handler(uint64_t unused)
* completed the preceding suspend call. Use that context to program an entry
* into OPTEE to allow it to do any remaining book keeping
******************************************************************************/
static
void
opteed_cpu_suspend_finish_handler
(
u
int64
_t
max_off_pwrlvl
)
static
void
opteed_cpu_suspend_finish_handler
(
u
_register
_t
max_off_pwrlvl
)
{
int32_t
rc
=
0
;
uint32_t
linear_id
=
plat_my_core_pos
();
...
...
@@ -154,7 +154,7 @@ static void opteed_cpu_suspend_finish_handler(uint64_t max_off_pwrlvl)
* Return the type of OPTEE the OPTEED is dealing with. Report the current
* resident cpu (mpidr format) if it is a UP/UP migratable OPTEE.
******************************************************************************/
static
int32_t
opteed_cpu_migrate_info
(
u
int64
_t
*
resident_cpu
)
static
int32_t
opteed_cpu_migrate_info
(
u
_register
_t
*
resident_cpu
)
{
return
OPTEE_MIGRATE_INFO
;
}
...
...
services/spd/tlkd/tlkd_main.c
View file @
ccd130ea
...
...
@@ -44,14 +44,14 @@ DEFINE_SVC_UUID(tlk_uuid,
0xbd11e9c9
,
0x2bba
,
0x52ee
,
0xb1
,
0x72
,
0x46
,
0x1f
,
0xba
,
0x97
,
0x7f
,
0x63
);
int32_t
tlkd_init
(
void
);
static
int32_t
tlkd_init
(
void
);
/*******************************************************************************
* Secure Payload Dispatcher setup. The SPD finds out the SP entrypoint and type
* (aarch32/aarch64) if not already known and initialises the context for entry
* into the SP for its initialisation.
******************************************************************************/
int32_t
tlkd_setup
(
void
)
static
int32_t
tlkd_setup
(
void
)
{
entry_point_info_t
*
tlk_ep_info
;
...
...
@@ -100,7 +100,7 @@ int32_t tlkd_setup(void)
* used. This function performs a synchronous entry into the Secure payload.
* The SP passes control back to this routine through a SMC.
******************************************************************************/
int32_t
tlkd_init
(
void
)
static
int32_t
tlkd_init
(
void
)
{
entry_point_info_t
*
tlk_entry_point
;
...
...
@@ -133,14 +133,14 @@ int32_t tlkd_init(void)
* will also return any information that the secure payload needs to do the
* work assigned to it.
******************************************************************************/
uint
64
_t
tlkd_smc_handler
(
uint32_t
smc_fid
,
u
int64
_t
x1
,
u
int64
_t
x2
,
u
int64
_t
x3
,
u
int64
_t
x4
,
static
uint
ptr
_t
tlkd_smc_handler
(
uint32_t
smc_fid
,
u
_register
_t
x1
,
u
_register
_t
x2
,
u
_register
_t
x3
,
u
_register
_t
x4
,
void
*
cookie
,
void
*
handle
,
u
int64
_t
flags
)
u
_register
_t
flags
)
{
cpu_context_t
*
ns_cpu_context
;
gp_regs_t
*
gp_regs
;
...
...
services/spd/tlkd/tlkd_pm.c
View file @
ccd130ea
...
...
@@ -22,7 +22,7 @@ extern tlk_context_t tlk_ctx;
* Return the type of payload TLKD is dealing with. Report the current
* resident cpu (mpidr format) if it is a UP/UP migratable payload.
******************************************************************************/
static
int32_t
cpu_migrate_info
(
u
int64
_t
*
resident_cpu
)
static
int32_t
cpu_migrate_info
(
u
_register
_t
*
resident_cpu
)
{
/* the payload runs only on CPU0 */
*
resident_cpu
=
MPIDR_CPU0
;
...
...
@@ -35,7 +35,7 @@ static int32_t cpu_migrate_info(uint64_t *resident_cpu)
* This cpu is being suspended. Inform TLK of the SYSTEM_SUSPEND event, so
* that it can pass this information to its Trusted Apps.
******************************************************************************/
static
void
cpu_suspend_handler
(
u
int64
_t
suspend_level
)
static
void
cpu_suspend_handler
(
u
_register
_t
suspend_level
)
{
gp_regs_t
*
gp_regs
;
int
cpu
=
read_mpidr
()
&
MPIDR_CPU_MASK
;
...
...
@@ -67,7 +67,7 @@ static void cpu_suspend_handler(uint64_t suspend_level)
* This cpu is being resumed. Inform TLK of the SYSTEM_SUSPEND exit, so
* that it can pass this information to its Trusted Apps.
******************************************************************************/
static
void
cpu_resume_handler
(
u
int64
_t
suspend_level
)
static
void
cpu_resume_handler
(
u
_register
_t
suspend_level
)
{
gp_regs_t
*
gp_regs
;
int
cpu
=
read_mpidr
()
&
MPIDR_CPU_MASK
;
...
...
services/spd/trusty/trusty.c
View file @
ccd130ea
...
...
@@ -53,7 +53,7 @@ struct args {
uint64_t
r7
;
};
struct
trusty_cpu_ctx
trusty_cpu_ctx
[
PLATFORM_CORE_COUNT
];
static
struct
trusty_cpu_ctx
trusty_cpu_ctx
[
PLATFORM_CORE_COUNT
];
struct
args
trusty_init_context_stack
(
void
**
sp
,
void
*
new_stack
);
struct
args
trusty_context_switch_helper
(
void
**
sp
,
void
*
smc_params
);
...
...
@@ -159,7 +159,7 @@ static uint64_t trusty_set_fiq_handler(void *handle, uint64_t cpu,
struct
trusty_cpu_ctx
*
ctx
;
if
(
cpu
>=
PLATFORM_CORE_COUNT
)
{
ERROR
(
"%s: cpu %ld >= %d
\n
"
,
__func__
,
cpu
,
PLATFORM_CORE_COUNT
);
ERROR
(
"%s: cpu %
l
ld >= %d
\n
"
,
__func__
,
cpu
,
PLATFORM_CORE_COUNT
);
return
SM_ERR_INVALID_PARAMETERS
;
}
...
...
@@ -191,7 +191,7 @@ static uint64_t trusty_fiq_exit(void *handle, uint64_t x1, uint64_t x2, uint64_t
ret
=
trusty_context_switch
(
NON_SECURE
,
SMC_FC_FIQ_EXIT
,
0
,
0
,
0
);
if
(
ret
.
r0
!=
1
)
{
INFO
(
"%s(%p) SMC_FC_FIQ_EXIT returned unexpected value, %ld
\n
"
,
INFO
(
"%s(%p) SMC_FC_FIQ_EXIT returned unexpected value, %
l
ld
\n
"
,
__func__
,
handle
,
ret
.
r0
);
}
...
...
@@ -212,14 +212,14 @@ static uint64_t trusty_fiq_exit(void *handle, uint64_t x1, uint64_t x2, uint64_t
SMC_RET0
(
handle
);
}
static
uint
64
_t
trusty_smc_handler
(
uint32_t
smc_fid
,
u
int64
_t
x1
,
u
int64
_t
x2
,
u
int64
_t
x3
,
u
int64
_t
x4
,
static
uint
ptr
_t
trusty_smc_handler
(
uint32_t
smc_fid
,
u
_register
_t
x1
,
u
_register
_t
x2
,
u
_register
_t
x3
,
u
_register
_t
x4
,
void
*
cookie
,
void
*
handle
,
u
int64
_t
flags
)
u
_register
_t
flags
)
{
struct
args
ret
;
uint32_t
vmid
=
0
;
...
...
@@ -331,7 +331,7 @@ static void trusty_cpu_suspend(uint32_t off)
ret
=
trusty_context_switch
(
NON_SECURE
,
SMC_FC_CPU_SUSPEND
,
off
,
0
,
0
);
if
(
ret
.
r0
!=
0
)
{
INFO
(
"%s: cpu %d, SMC_FC_CPU_SUSPEND returned unexpected value, %ld
\n
"
,
INFO
(
"%s: cpu %d, SMC_FC_CPU_SUSPEND returned unexpected value, %
l
ld
\n
"
,
__func__
,
plat_my_core_pos
(),
ret
.
r0
);
}
}
...
...
@@ -342,19 +342,19 @@ static void trusty_cpu_resume(uint32_t on)
ret
=
trusty_context_switch
(
NON_SECURE
,
SMC_FC_CPU_RESUME
,
on
,
0
,
0
);
if
(
ret
.
r0
!=
0
)
{
INFO
(
"%s: cpu %d, SMC_FC_CPU_RESUME returned unexpected value, %ld
\n
"
,
INFO
(
"%s: cpu %d, SMC_FC_CPU_RESUME returned unexpected value, %
l
ld
\n
"
,
__func__
,
plat_my_core_pos
(),
ret
.
r0
);
}
}
static
int32_t
trusty_cpu_off_handler
(
u
int64
_t
unused
)
static
int32_t
trusty_cpu_off_handler
(
u
_register
_t
unused
)
{
trusty_cpu_suspend
(
1
);
return
0
;
}
static
void
trusty_cpu_on_finish_handler
(
u
int64
_t
unused
)
static
void
trusty_cpu_on_finish_handler
(
u
_register
_t
unused
)
{
struct
trusty_cpu_ctx
*
ctx
=
get_trusty_ctx
();
...
...
@@ -365,12 +365,12 @@ static void trusty_cpu_on_finish_handler(uint64_t unused)
}
}
static
void
trusty_cpu_suspend_handler
(
u
int64
_t
unused
)
static
void
trusty_cpu_suspend_handler
(
u
_register
_t
unused
)
{
trusty_cpu_suspend
(
0
);
}
static
void
trusty_cpu_suspend_finish_handler
(
u
int64
_t
unused
)
static
void
trusty_cpu_suspend_finish_handler
(
u
_register
_t
unused
)
{
trusty_cpu_resume
(
0
);
}
...
...
services/spd/tspd/tspd_main.c
View file @
ccd130ea
...
...
@@ -179,7 +179,7 @@ static uint64_t tspd_ns_interrupt_handler(uint32_t id,
* (aarch32/aarch64) if not already known and initialises the context for entry
* into the SP for its initialisation.
******************************************************************************/
int32_t
tspd_setup
(
void
)
static
int32_t
tspd_setup
(
void
)
{
entry_point_info_t
*
tsp_ep_info
;
uint32_t
linear_id
;
...
...
@@ -273,14 +273,14 @@ int32_t tspd_init(void)
* will also return any information that the secure payload needs to do the
* work assigned to it.
******************************************************************************/
uint
64
_t
tspd_smc_handler
(
uint32_t
smc_fid
,
u
int64
_t
x1
,
u
int64
_t
x2
,
u
int64
_t
x3
,
u
int64
_t
x4
,
static
uint
ptr
_t
tspd_smc_handler
(
uint32_t
smc_fid
,
u
_register
_t
x1
,
u
_register
_t
x2
,
u
_register
_t
x3
,
u
_register
_t
x4
,
void
*
cookie
,
void
*
handle
,
u
int64
_t
flags
)
u
_register
_t
flags
)
{
cpu_context_t
*
ns_cpu_context
;
uint32_t
linear_id
=
plat_my_core_pos
(),
ns
;
...
...
services/spd/tspd/tspd_pm.c
View file @
ccd130ea
...
...
@@ -17,7 +17,7 @@
* The target cpu is being turned on. Allow the TSPD/TSP to perform any actions
* needed. Nothing at the moment.
******************************************************************************/
static
void
tspd_cpu_on_handler
(
u
int64
_t
target_cpu
)
static
void
tspd_cpu_on_handler
(
u
_register
_t
target_cpu
)
{
}
...
...
@@ -25,7 +25,7 @@ static void tspd_cpu_on_handler(uint64_t target_cpu)
* This cpu is being turned off. Allow the TSPD/TSP to perform any actions
* needed
******************************************************************************/
static
int32_t
tspd_cpu_off_handler
(
u
int64
_t
unused
)
static
int32_t
tspd_cpu_off_handler
(
u
_register
_t
unused
)
{
int32_t
rc
=
0
;
uint32_t
linear_id
=
plat_my_core_pos
();
...
...
@@ -64,7 +64,7 @@ static int32_t tspd_cpu_off_handler(uint64_t unused)
* This cpu is being suspended. S-EL1 state must have been saved in the
* resident cpu (mpidr format) if it is a UP/UP migratable TSP.
******************************************************************************/
static
void
tspd_cpu_suspend_handler
(
u
int64
_t
max_off_pwrlvl
)
static
void
tspd_cpu_suspend_handler
(
u
_register
_t
max_off_pwrlvl
)
{
int32_t
rc
=
0
;
uint32_t
linear_id
=
plat_my_core_pos
();
...
...
@@ -100,7 +100,7 @@ static void tspd_cpu_suspend_handler(uint64_t max_off_pwrlvl)
* after initialising minimal architectural state that guarantees safe
* execution.
******************************************************************************/
static
void
tspd_cpu_on_finish_handler
(
u
int64
_t
unused
)
static
void
tspd_cpu_on_finish_handler
(
u
_register
_t
unused
)
{
int32_t
rc
=
0
;
uint32_t
linear_id
=
plat_my_core_pos
();
...
...
@@ -145,7 +145,7 @@ static void tspd_cpu_on_finish_handler(uint64_t unused)
* completed the preceding suspend call. Use that context to program an entry
* into the TSP to allow it to do any remaining book keeping
******************************************************************************/
static
void
tspd_cpu_suspend_finish_handler
(
u
int64
_t
max_off_pwrlvl
)
static
void
tspd_cpu_suspend_finish_handler
(
u
_register
_t
max_off_pwrlvl
)
{
int32_t
rc
=
0
;
uint32_t
linear_id
=
plat_my_core_pos
();
...
...
@@ -176,7 +176,7 @@ static void tspd_cpu_suspend_finish_handler(uint64_t max_off_pwrlvl)
* Return the type of TSP the TSPD is dealing with. Report the current resident
* cpu (mpidr format) if it is a UP/UP migratable TSP.
******************************************************************************/
static
int32_t
tspd_cpu_migrate_info
(
u
int64
_t
*
resident_cpu
)
static
int32_t
tspd_cpu_migrate_info
(
u
_register
_t
*
resident_cpu
)
{
return
TSP_MIGRATE_INFO
;
}
...
...
services/spd/tspd/tspd_private.h
View file @
ccd130ea
...
...
@@ -221,16 +221,6 @@ void tspd_init_tsp_ep_state(struct entry_point_info *tsp_entry_point,
tsp_context_t
*
tsp_ctx
);
int
tspd_abort_preempted_smc
(
tsp_context_t
*
tsp_ctx
);
uint64_t
tspd_smc_handler
(
uint32_t
smc_fid
,
uint64_t
x1
,
uint64_t
x2
,
uint64_t
x3
,
uint64_t
x4
,
void
*
cookie
,
void
*
handle
,
uint64_t
flags
);
int32_t
tspd_setup
(
void
);
uint64_t
tspd_handle_sp_preemption
(
void
*
handle
);
extern
tsp_context_t
tspd_sp_context
[
TSPD_CORE_COUNT
];
...
...
Prev
1
2
Next
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