@ -1,5 +1,5 @@
/*
* Copyright ( c ) 2018 , ARM Limited and Contributors . All rights reserved .
* Copyright ( c ) 2018 - 2019 , ARM Limited and Contributors . All rights reserved .
*
* SPDX - License - Identifier : BSD - 3 - Clause
*/
@ -27,7 +27,7 @@ static scmi_channel_plat_info_t sgi575_scmi_plat_info = {
. ring_doorbell = & mhu_ring_doorbell ,
} ;
static scmi_channel_plat_info_t sgi_clark _scmi_plat_info = {
static scmi_channel_plat_info_t rd_n1e1_edge _scmi_plat_info = {
. scmi_mbx_mem = CSS_SCMI_PAYLOAD_BASE ,
. db_reg_addr = PLAT_CSS_MHU_BASE + SENDER_REG_SET ( 0 ) ,
. db_preserve_mask = 0xfffffffe ,
@ -37,8 +37,8 @@ static scmi_channel_plat_info_t sgi_clark_scmi_plat_info = {
scmi_channel_plat_info_t * plat_css_get_scmi_info ( )
{
if ( sgi_plat_info . platform_id = = SGI_CLARK _SID_VER_PART_NUM)
return & sgi_clark _scmi_plat_info;
if ( sgi_plat_info . platform_id = = RD_N1E1_EDGE _SID_VER_PART_NUM)
return & rd_n1e1_edge _scmi_plat_info;
else if ( sgi_plat_info . platform_id = = SGI575_SSC_VER_PART_NUM )
return & sgi575_scmi_plat_info ;
else
@ -65,9 +65,9 @@ void bl31_platform_setup(void)
const plat_psci_ops_t * plat_arm_psci_override_pm_ops ( plat_psci_ops_t * ops )
{
/* For SGI-Clark.Helios platform only CPU ON/OFF is supported */
if ( ( sgi_plat_info . platform_id = = SGI_CLARK _SID_VER_PART_NUM) & &
( sgi_plat_info . config_id = = SGI_CLARK_HELIOS _CONFIG_ID) ) {
/* For RD-E1-Edge platform only CPU ON/OFF is supported */
if ( ( sgi_plat_info . platform_id = = RD_N1E1_EDGE _SID_VER_PART_NUM) & &
( sgi_plat_info . config_id = = RD_E1_EDGE _CONFIG_ID) ) {
ops - > cpu_standby = NULL ;
ops - > system_off = NULL ;
ops - > system_reset = NULL ;