mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-18 18:44:22 +00:00

This patch does the following reorganization to psci power management (PM) handler setup for ARM standard platform ports : 1. The mailbox programming required during `plat_setup_psci_ops()` is identical for all ARM platforms. Hence the implementation of this API is now moved to the common `arm_pm.c` file. Each ARM platform now must define the PLAT_ARM_TRUSTED_MAILBOX_BASE macro, which in current platforms is the same as ARM_SHARED_RAM_BASE. 2. The PSCI PM handler callback structure, `plat_psci_ops`, must now be exported via `plat_arm_psci_pm_ops`. This allows the common implementation of `plat_setup_psci_ops()` to return a platform specific `plat_psci_ops`. In the case of CSS platforms, a default weak implementation of the same is provided in `css_pm.c` which can be overridden by each CSS platform. 3. For CSS platforms, the PSCI PM handlers defined in `css_pm.c` are now made library functions and a new header file `css_pm.h` is added to export these generic PM handlers. This allows the platform to reuse the adequate CSS PM handlers and redefine others which need to be customized when overriding the default `plat_arm_psci_pm_ops` in `css_pm.c`. Change-Id: I277910f609e023ee5d5ff0129a80ecfce4356ede
299 lines
10 KiB
C
299 lines
10 KiB
C
/*
|
|
* Copyright (c) 2013-2015, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions are met:
|
|
*
|
|
* Redistributions of source code must retain the above copyright notice, this
|
|
* list of conditions and the following disclaimer.
|
|
*
|
|
* Redistributions in binary form must reproduce the above copyright notice,
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
* and/or other materials provided with the distribution.
|
|
*
|
|
* Neither the name of ARM nor the names of its contributors may be used
|
|
* to endorse or promote products derived from this software without specific
|
|
* prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
|
|
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
|
|
#include <arch_helpers.h>
|
|
#include <arm_config.h>
|
|
#include <arm_gic.h>
|
|
#include <assert.h>
|
|
#include <debug.h>
|
|
#include <errno.h>
|
|
#include <mmio.h>
|
|
#include <platform.h>
|
|
#include <plat_arm.h>
|
|
#include <psci.h>
|
|
#include <v2m_def.h>
|
|
#include "drivers/pwrc/fvp_pwrc.h"
|
|
#include "fvp_def.h"
|
|
#include "fvp_private.h"
|
|
|
|
|
|
#if ARM_RECOM_STATE_ID_ENC
|
|
/*
|
|
* The table storing the valid idle power states. Ensure that the
|
|
* array entries are populated in ascending order of state-id to
|
|
* enable us to use binary search during power state validation.
|
|
* The table must be terminated by a NULL entry.
|
|
*/
|
|
const unsigned int arm_pm_idle_states[] = {
|
|
/* State-id - 0x01 */
|
|
arm_make_pwrstate_lvl1(ARM_LOCAL_STATE_RUN, ARM_LOCAL_STATE_RET,
|
|
ARM_PWR_LVL0, PSTATE_TYPE_STANDBY),
|
|
/* State-id - 0x02 */
|
|
arm_make_pwrstate_lvl1(ARM_LOCAL_STATE_RUN, ARM_LOCAL_STATE_OFF,
|
|
ARM_PWR_LVL0, PSTATE_TYPE_POWERDOWN),
|
|
/* State-id - 0x22 */
|
|
arm_make_pwrstate_lvl1(ARM_LOCAL_STATE_OFF, ARM_LOCAL_STATE_OFF,
|
|
ARM_PWR_LVL1, PSTATE_TYPE_POWERDOWN),
|
|
0,
|
|
};
|
|
#endif
|
|
|
|
/*******************************************************************************
|
|
* Function which implements the common FVP specific operations to power down a
|
|
* cpu in response to a CPU_OFF or CPU_SUSPEND request.
|
|
******************************************************************************/
|
|
static void fvp_cpu_pwrdwn_common(void)
|
|
{
|
|
/* Prevent interrupts from spuriously waking up this cpu */
|
|
arm_gic_cpuif_deactivate();
|
|
|
|
/* Program the power controller to power off this cpu. */
|
|
fvp_pwrc_write_ppoffr(read_mpidr_el1());
|
|
}
|
|
|
|
/*******************************************************************************
|
|
* Function which implements the common FVP specific operations to power down a
|
|
* cluster in response to a CPU_OFF or CPU_SUSPEND request.
|
|
******************************************************************************/
|
|
static void fvp_cluster_pwrdwn_common(void)
|
|
{
|
|
uint64_t mpidr = read_mpidr_el1();
|
|
|
|
/* Disable coherency if this cluster is to be turned off */
|
|
fvp_cci_disable();
|
|
|
|
/* Program the power controller to turn the cluster off */
|
|
fvp_pwrc_write_pcoffr(mpidr);
|
|
}
|
|
|
|
/*******************************************************************************
|
|
* FVP handler called when a CPU is about to enter standby.
|
|
******************************************************************************/
|
|
void fvp_cpu_standby(plat_local_state_t cpu_state)
|
|
{
|
|
|
|
assert(cpu_state == ARM_LOCAL_STATE_RET);
|
|
|
|
/*
|
|
* Enter standby state
|
|
* dsb is good practice before using wfi to enter low power states
|
|
*/
|
|
dsb();
|
|
wfi();
|
|
}
|
|
|
|
/*******************************************************************************
|
|
* FVP handler called when a power domain is about to be turned on. The
|
|
* mpidr determines the CPU to be turned on.
|
|
******************************************************************************/
|
|
int fvp_pwr_domain_on(u_register_t mpidr)
|
|
{
|
|
int rc = PSCI_E_SUCCESS;
|
|
unsigned int psysr;
|
|
|
|
/*
|
|
* Ensure that we do not cancel an inflight power off request
|
|
* for the target cpu. That would leave it in a zombie wfi.
|
|
* Wait for it to power off, program the jump address for the
|
|
* target cpu and then program the power controller to turn
|
|
* that cpu on
|
|
*/
|
|
do {
|
|
psysr = fvp_pwrc_read_psysr(mpidr);
|
|
} while (psysr & PSYSR_AFF_L0);
|
|
|
|
fvp_pwrc_write_pponr(mpidr);
|
|
return rc;
|
|
}
|
|
|
|
/*******************************************************************************
|
|
* FVP handler called when a power domain is about to be turned off. The
|
|
* target_state encodes the power state that each level should transition to.
|
|
******************************************************************************/
|
|
void fvp_pwr_domain_off(const psci_power_state_t *target_state)
|
|
{
|
|
assert(target_state->pwr_domain_state[ARM_PWR_LVL0] ==
|
|
ARM_LOCAL_STATE_OFF);
|
|
|
|
/*
|
|
* If execution reaches this stage then this power domain will be
|
|
* suspended. Perform at least the cpu specific actions followed
|
|
* by the cluster specific operations if applicable.
|
|
*/
|
|
fvp_cpu_pwrdwn_common();
|
|
|
|
if (target_state->pwr_domain_state[ARM_PWR_LVL1] ==
|
|
ARM_LOCAL_STATE_OFF)
|
|
fvp_cluster_pwrdwn_common();
|
|
|
|
}
|
|
|
|
/*******************************************************************************
|
|
* FVP handler called when a power domain is about to be suspended. The
|
|
* target_state encodes the power state that each level should transition to.
|
|
******************************************************************************/
|
|
void fvp_pwr_domain_suspend(const psci_power_state_t *target_state)
|
|
{
|
|
unsigned long mpidr;
|
|
|
|
/*
|
|
* FVP has retention only at cpu level. Just return
|
|
* as nothing is to be done for retention.
|
|
*/
|
|
if (target_state->pwr_domain_state[ARM_PWR_LVL0] ==
|
|
ARM_LOCAL_STATE_RET)
|
|
return;
|
|
|
|
assert(target_state->pwr_domain_state[ARM_PWR_LVL0] ==
|
|
ARM_LOCAL_STATE_OFF);
|
|
|
|
/* Get the mpidr for this cpu */
|
|
mpidr = read_mpidr_el1();
|
|
|
|
/* Program the power controller to enable wakeup interrupts. */
|
|
fvp_pwrc_set_wen(mpidr);
|
|
|
|
/* Perform the common cpu specific operations */
|
|
fvp_cpu_pwrdwn_common();
|
|
|
|
/* Perform the common cluster specific operations */
|
|
if (target_state->pwr_domain_state[ARM_PWR_LVL1] ==
|
|
ARM_LOCAL_STATE_OFF)
|
|
fvp_cluster_pwrdwn_common();
|
|
}
|
|
|
|
/*******************************************************************************
|
|
* FVP handler called when a power domain has just been powered on after
|
|
* being turned off earlier. The target_state encodes the low power state that
|
|
* each level has woken up from.
|
|
******************************************************************************/
|
|
void fvp_pwr_domain_on_finish(const psci_power_state_t *target_state)
|
|
{
|
|
unsigned long mpidr;
|
|
|
|
assert(target_state->pwr_domain_state[ARM_PWR_LVL0] ==
|
|
ARM_LOCAL_STATE_OFF);
|
|
|
|
/* Get the mpidr for this cpu */
|
|
mpidr = read_mpidr_el1();
|
|
|
|
/* Perform the common cluster specific operations */
|
|
if (target_state->pwr_domain_state[ARM_PWR_LVL1] ==
|
|
ARM_LOCAL_STATE_OFF) {
|
|
/*
|
|
* This CPU might have woken up whilst the cluster was
|
|
* attempting to power down. In this case the FVP power
|
|
* controller will have a pending cluster power off request
|
|
* which needs to be cleared by writing to the PPONR register.
|
|
* This prevents the power controller from interpreting a
|
|
* subsequent entry of this cpu into a simple wfi as a power
|
|
* down request.
|
|
*/
|
|
fvp_pwrc_write_pponr(mpidr);
|
|
|
|
/* Enable coherency if this cluster was off */
|
|
fvp_cci_enable();
|
|
}
|
|
|
|
/*
|
|
* Clear PWKUPR.WEN bit to ensure interrupts do not interfere
|
|
* with a cpu power down unless the bit is set again
|
|
*/
|
|
fvp_pwrc_clr_wen(mpidr);
|
|
|
|
/* Enable the gic cpu interface */
|
|
arm_gic_cpuif_setup();
|
|
|
|
/* TODO: This setup is needed only after a cold boot */
|
|
arm_gic_pcpu_distif_setup();
|
|
}
|
|
|
|
/*******************************************************************************
|
|
* FVP handler called when a power domain has just been powered on after
|
|
* having been suspended earlier. The target_state encodes the low power state
|
|
* that each level has woken up from.
|
|
* TODO: At the moment we reuse the on finisher and reinitialize the secure
|
|
* context. Need to implement a separate suspend finisher.
|
|
******************************************************************************/
|
|
void fvp_pwr_domain_suspend_finish(const psci_power_state_t *target_state)
|
|
{
|
|
/*
|
|
* Nothing to be done on waking up from retention from CPU level.
|
|
*/
|
|
if (target_state->pwr_domain_state[ARM_PWR_LVL0] ==
|
|
ARM_LOCAL_STATE_RET)
|
|
return;
|
|
|
|
fvp_pwr_domain_on_finish(target_state);
|
|
}
|
|
|
|
/*******************************************************************************
|
|
* FVP handlers to shutdown/reboot the system
|
|
******************************************************************************/
|
|
static void __dead2 fvp_system_off(void)
|
|
{
|
|
/* Write the System Configuration Control Register */
|
|
mmio_write_32(V2M_SYSREGS_BASE + V2M_SYS_CFGCTRL,
|
|
V2M_CFGCTRL_START |
|
|
V2M_CFGCTRL_RW |
|
|
V2M_CFGCTRL_FUNC(V2M_FUNC_SHUTDOWN));
|
|
wfi();
|
|
ERROR("FVP System Off: operation not handled.\n");
|
|
panic();
|
|
}
|
|
|
|
static void __dead2 fvp_system_reset(void)
|
|
{
|
|
/* Write the System Configuration Control Register */
|
|
mmio_write_32(V2M_SYSREGS_BASE + V2M_SYS_CFGCTRL,
|
|
V2M_CFGCTRL_START |
|
|
V2M_CFGCTRL_RW |
|
|
V2M_CFGCTRL_FUNC(V2M_FUNC_REBOOT));
|
|
wfi();
|
|
ERROR("FVP System Reset: operation not handled.\n");
|
|
panic();
|
|
}
|
|
|
|
/*******************************************************************************
|
|
* Export the platform handlers via plat_arm_psci_pm_ops. The ARM Standard
|
|
* platform layer will take care of registering the handlers with PSCI.
|
|
******************************************************************************/
|
|
const plat_psci_ops_t plat_arm_psci_pm_ops = {
|
|
.cpu_standby = fvp_cpu_standby,
|
|
.pwr_domain_on = fvp_pwr_domain_on,
|
|
.pwr_domain_off = fvp_pwr_domain_off,
|
|
.pwr_domain_suspend = fvp_pwr_domain_suspend,
|
|
.pwr_domain_on_finish = fvp_pwr_domain_on_finish,
|
|
.pwr_domain_suspend_finish = fvp_pwr_domain_suspend_finish,
|
|
.system_off = fvp_system_off,
|
|
.system_reset = fvp_system_reset,
|
|
.validate_power_state = arm_validate_power_state,
|
|
.validate_ns_entrypoint = arm_validate_ns_entrypoint
|
|
};
|