mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-23 13:36:05 +00:00

This allows PSCI in TF-A to signal platform power states to QEMU via a controller in secure space. This required a sbsa-ref specific version of PSCI functions for the platform. Also adjusted the MMU range to also include the new EC. Add a new MMU region for the embedded controller and increase the size of xlat tables by one for the new region. Signed-off-by: Graeme Gregory <graeme@nuviainc.com> Change-Id: Iece8a88947f11e82ab8988e460a8a66ad175a5ee
17 lines
305 B
C
17 lines
305 B
C
/*
|
|
* Copyright (c) 2020, Nuvia Inc
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef SBSA_PRIVATE_H
|
|
#define SBSA_PRIVATE_H
|
|
|
|
#include <stdint.h>
|
|
|
|
unsigned int plat_qemu_calc_core_pos(u_register_t mpidr);
|
|
|
|
void qemu_pwr_gic_on_finish(void);
|
|
void qemu_pwr_gic_off(void);
|
|
|
|
#endif /* SBSA_PRIVATE_H */
|