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
cfcf4e9d
Commit
cfcf4e9d
authored
Feb 25, 2020
by
Mark Dykes
Committed by
TrustedFirmware Code Review
Feb 25, 2020
Browse files
Merge "arm/css/scpi: Don't panic if the SCP fails to respond" into integration
parents
020ce8c9
98367c80
Changes
1
Hide whitespace changes
Inline
Side-by-side
drivers/arm/css/scpi/css_scpi.c
View file @
cfcf4e9d
/*
* Copyright (c) 2014-20
18
, ARM Limited and Contributors. All rights reserved.
* Copyright (c) 2014-20
20
, ARM Limited and Contributors. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
...
...
@@ -51,7 +51,7 @@ static void scpi_secure_message_send(size_t payload_size)
mhu_secure_message_send
(
SCPI_MHU_SLOT_ID
);
}
static
void
scpi_secure_message_receive
(
scpi_cmd_t
*
cmd
)
static
int
scpi_secure_message_receive
(
scpi_cmd_t
*
cmd
)
{
uint32_t
mhu_status
;
...
...
@@ -63,7 +63,7 @@ static void scpi_secure_message_receive(scpi_cmd_t *cmd)
if
(
mhu_status
!=
(
1
<<
SCPI_MHU_SLOT_ID
))
{
ERROR
(
"MHU: Unexpected protocol (MHU status: 0x%x)
\n
"
,
mhu_status
);
panic
()
;
return
-
1
;
}
/*
...
...
@@ -74,6 +74,8 @@ static void scpi_secure_message_receive(scpi_cmd_t *cmd)
dmbld
();
memcpy
(
cmd
,
(
void
*
)
SCPI_SHARED_MEM_SCP_TO_AP
,
sizeof
(
*
cmd
));
return
0
;
}
static
void
scpi_secure_message_end
(
void
)
...
...
@@ -84,14 +86,19 @@ static void scpi_secure_message_end(void)
int
scpi_wait_ready
(
void
)
{
scpi_cmd_t
scpi_cmd
;
int
rc
;
VERBOSE
(
"Waiting for SCP_READY command...
\n
"
);
/* Get a message from the SCP */
scpi_secure_message_start
();
scpi_secure_message_receive
(
&
scpi_cmd
);
rc
=
scpi_secure_message_receive
(
&
scpi_cmd
);
scpi_secure_message_end
();
/* If no message was received, don't send a response */
if
(
rc
!=
0
)
return
rc
;
/* We are expecting 'SCP Ready', produce correct error if it's not */
scpi_status_t
status
=
SCP_OK
;
if
(
scpi_cmd
.
id
!=
SCPI_CMD_SCP_READY
)
{
...
...
@@ -209,7 +216,8 @@ int scpi_get_css_power_state(unsigned int mpidr, unsigned int *cpu_state_p,
* Send message and wait for SCP's response
*/
scpi_secure_message_send
(
0
);
scpi_secure_message_receive
(
&
response
);
if
(
scpi_secure_message_receive
(
&
response
)
!=
0
)
goto
exit
;
if
(
response
.
status
!=
SCP_OK
)
goto
exit
;
...
...
@@ -254,7 +262,9 @@ uint32_t scpi_sys_power_state(scpi_system_state_t system_state)
*
payload_addr
=
system_state
&
0xff
;
scpi_secure_message_send
(
sizeof
(
*
payload_addr
));
scpi_secure_message_receive
(
&
response
);
/* If no response is received, fill in an error status */
if
(
scpi_secure_message_receive
(
&
response
)
!=
0
)
response
.
status
=
SCP_E_TIMEOUT
;
scpi_secure_message_end
();
...
...
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