arm-trusted-firmware/plat/arm/board/morello/morello_pm.c
sahil d5ca76fc4f fix(morello): remove platform specific pwr_domain_suspend wrapper
Turning redistributor off during suspend disables any wakeup interrupts
resulting in cpu getting stuck. This patch removes the platform specific
psci pwr_domain_suspend handler.

Signed-off-by: sahil <sahil@arm.com>
Change-Id: I0a307cc140447e91fd0808fcfb309593f24c14ca
2023-05-19 16:55:24 +05:30

23 lines
780 B
C

/*
* Copyright (c) 2023, Arm Limited. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#include <lib/psci/psci.h>
#include <plat/arm/common/plat_arm.h>
#include <plat/arm/css/common/css_pm.h>
#include "morello_private.h"
/*******************************************************************************
* Morello specific function called when turning off a power domain.
* Additionally disables the GIC redistributor interface as cores are disabled
* to let cluster-PPU state transition to completion when a cluster is
* powered down.
******************************************************************************/
void morello_pwr_domain_off(const psci_power_state_t *target_state)
{
css_pwr_domain_off(target_state);
plat_arm_gic_redistif_off();
}