GK SDK 源码库: XMIPCLinuxV100R005C00SPC030 (kernel/tools/open_source excluded)
This commit is contained in:
+54
@@ -0,0 +1,54 @@
|
||||
/*
|
||||
* Copyright (c) 2018-2020, ARM Limited and Contributors. All rights reserved.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
|
||||
#include <plat_ipi.h>
|
||||
#include <versal_def.h>
|
||||
#include <plat_private.h>
|
||||
#include <common/debug.h>
|
||||
#include <drivers/generic_delay_timer.h>
|
||||
#include <lib/mmio.h>
|
||||
#include <lib/xlat_tables/xlat_tables.h>
|
||||
#include <plat/common/platform.h>
|
||||
|
||||
/*
|
||||
* Table of regions to map using the MMU.
|
||||
* This doesn't include TZRAM as the 'mem_layout' argument passed to
|
||||
* configure_mmu_elx() will give the available subset of that,
|
||||
*/
|
||||
const mmap_region_t plat_versal_mmap[] = {
|
||||
MAP_REGION_FLAT(DEVICE0_BASE, DEVICE0_SIZE, MT_DEVICE | MT_RW | MT_SECURE),
|
||||
MAP_REGION_FLAT(DEVICE1_BASE, DEVICE1_SIZE, MT_DEVICE | MT_RW | MT_SECURE),
|
||||
MAP_REGION_FLAT(CRF_BASE, CRF_SIZE, MT_DEVICE | MT_RW | MT_SECURE),
|
||||
MAP_REGION_FLAT(FPD_MAINCCI_BASE, FPD_MAINCCI_SIZE, MT_DEVICE | MT_RW |
|
||||
MT_SECURE),
|
||||
{ 0 }
|
||||
};
|
||||
|
||||
const mmap_region_t *plat_versal_get_mmap(void)
|
||||
{
|
||||
return plat_versal_mmap;
|
||||
}
|
||||
|
||||
static void versal_print_platform_name(void)
|
||||
{
|
||||
NOTICE("ATF running on Xilinx %s\n", PLATFORM_NAME);
|
||||
}
|
||||
|
||||
void versal_config_setup(void)
|
||||
{
|
||||
/* Configure IPI data for versal */
|
||||
versal_ipi_config_table_init();
|
||||
|
||||
versal_print_platform_name();
|
||||
|
||||
generic_delay_timer_init();
|
||||
}
|
||||
|
||||
uint32_t plat_get_syscnt_freq2(void)
|
||||
{
|
||||
return VERSAL_CPU_CLOCK;
|
||||
}
|
||||
|
||||
+73
@@ -0,0 +1,73 @@
|
||||
/*
|
||||
* Copyright (c) 2018, ARM Limited and Contributors. All rights reserved.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
|
||||
#include <arch.h>
|
||||
#include <asm_macros.S>
|
||||
#include <drivers/arm/gicv3.h>
|
||||
#include <platform_def.h>
|
||||
|
||||
.globl plat_secondary_cold_boot_setup
|
||||
.globl plat_is_my_cpu_primary
|
||||
.globl versal_calc_core_pos
|
||||
.globl platform_mem_init
|
||||
.globl plat_my_core_pos
|
||||
|
||||
/* -----------------------------------------------------
|
||||
* void plat_secondary_cold_boot_setup (void);
|
||||
*
|
||||
* This function performs any platform specific actions
|
||||
* needed for a secondary cpu after a cold reset e.g
|
||||
* mark the cpu's presence, mechanism to place it in a
|
||||
* holding pen etc.
|
||||
* TODO: Should we read the PSYS register to make sure
|
||||
* that the request has gone through.
|
||||
* -----------------------------------------------------
|
||||
*/
|
||||
func plat_secondary_cold_boot_setup
|
||||
mrs x0, mpidr_el1
|
||||
|
||||
/*
|
||||
* There is no sane reason to come out of this wfi. This
|
||||
* cpu will be powered on and reset by the cpu_on pm api
|
||||
*/
|
||||
dsb sy
|
||||
bl plat_panic_handler
|
||||
endfunc plat_secondary_cold_boot_setup
|
||||
|
||||
func plat_is_my_cpu_primary
|
||||
mov x9, x30
|
||||
bl plat_my_core_pos
|
||||
cmp x0, #VERSAL_PRIMARY_CPU
|
||||
cset x0, eq
|
||||
ret x9
|
||||
endfunc plat_is_my_cpu_primary
|
||||
|
||||
/* -----------------------------------------------------
|
||||
* unsigned int plat_my_core_pos(void)
|
||||
* This function uses the versal_calc_core_pos()
|
||||
* definition to get the index of the calling CPU.
|
||||
* -----------------------------------------------------
|
||||
*/
|
||||
func plat_my_core_pos
|
||||
mrs x0, mpidr_el1
|
||||
b versal_calc_core_pos
|
||||
endfunc plat_my_core_pos
|
||||
|
||||
func versal_calc_core_pos
|
||||
and x1, x0, #MPIDR_CPU_MASK
|
||||
and x0, x0, #MPIDR_CLUSTER_MASK
|
||||
add x0, x1, x0, LSR #6
|
||||
ret
|
||||
endfunc versal_calc_core_pos
|
||||
|
||||
/* ---------------------------------------------------------------------
|
||||
* We don't need to carry out any memory initialization on VERSAL
|
||||
* platform. The Secure RAM is accessible straight away.
|
||||
* ---------------------------------------------------------------------
|
||||
*/
|
||||
func platform_mem_init
|
||||
ret
|
||||
endfunc platform_mem_init
|
||||
+236
@@ -0,0 +1,236 @@
|
||||
/*
|
||||
* Copyright (c) 2018-2021, ARM Limited and Contributors. All rights reserved.
|
||||
* Copyright (c) 2018-2022, Xilinx, Inc. All rights reserved.
|
||||
* Copyright (c) 2022, Advanced Micro Devices, Inc. All rights reserved.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
|
||||
#include <assert.h>
|
||||
#include <errno.h>
|
||||
#include <plat_arm.h>
|
||||
#include <plat_private.h>
|
||||
#include <bl31/bl31.h>
|
||||
#include <common/bl_common.h>
|
||||
#include <common/debug.h>
|
||||
#include <drivers/arm/dcc.h>
|
||||
#include <drivers/arm/pl011.h>
|
||||
#include <drivers/console.h>
|
||||
#include <lib/mmio.h>
|
||||
#include <lib/xlat_tables/xlat_tables.h>
|
||||
#include <plat/common/platform.h>
|
||||
#include <versal_def.h>
|
||||
#include <plat_private.h>
|
||||
#include <plat_startup.h>
|
||||
#include <pm_ipi.h>
|
||||
#include "pm_client.h"
|
||||
#include "pm_api_sys.h"
|
||||
|
||||
static entry_point_info_t bl32_image_ep_info;
|
||||
static entry_point_info_t bl33_image_ep_info;
|
||||
|
||||
/*
|
||||
* Return a pointer to the 'entry_point_info' structure of the next image for
|
||||
* the security state specified. BL33 corresponds to the non-secure image type
|
||||
* while BL32 corresponds to the secure image type. A NULL pointer is returned
|
||||
* if the image does not exist.
|
||||
*/
|
||||
entry_point_info_t *bl31_plat_get_next_image_ep_info(uint32_t type)
|
||||
{
|
||||
assert(sec_state_is_valid(type));
|
||||
|
||||
if (type == NON_SECURE) {
|
||||
return &bl33_image_ep_info;
|
||||
}
|
||||
|
||||
return &bl32_image_ep_info;
|
||||
}
|
||||
|
||||
/*
|
||||
* Set the build time defaults,if we can't find any config data.
|
||||
*/
|
||||
static inline void bl31_set_default_config(void)
|
||||
{
|
||||
bl32_image_ep_info.pc = (uintptr_t)BL32_BASE;
|
||||
bl32_image_ep_info.spsr = (uint32_t)arm_get_spsr_for_bl32_entry();
|
||||
bl33_image_ep_info.pc = (uintptr_t)plat_get_ns_image_entrypoint();
|
||||
bl33_image_ep_info.spsr = (uint32_t)SPSR_64(MODE_EL2, MODE_SP_ELX,
|
||||
DISABLE_ALL_EXCEPTIONS);
|
||||
}
|
||||
|
||||
/*
|
||||
* Perform any BL31 specific platform actions. Here is an opportunity to copy
|
||||
* parameters passed by the calling EL (S-EL1 in BL2 & S-EL3 in BL1) before they
|
||||
* are lost (potentially). This needs to be done before the MMU is initialized
|
||||
* so that the memory layout can be used while creating page tables.
|
||||
*/
|
||||
void bl31_early_platform_setup2(u_register_t arg0, u_register_t arg1,
|
||||
u_register_t arg2, u_register_t arg3)
|
||||
{
|
||||
uint64_t atf_handoff_addr;
|
||||
uint32_t payload[PAYLOAD_ARG_CNT], max_size = ATF_HANDOFF_PARAMS_MAX_SIZE;
|
||||
enum pm_ret_status ret_status;
|
||||
uint64_t addr[ATF_HANDOFF_PARAMS_MAX_SIZE];
|
||||
|
||||
if (VERSAL_CONSOLE_IS(pl011) || (VERSAL_CONSOLE_IS(pl011_1))) {
|
||||
static console_t versal_runtime_console;
|
||||
/* Initialize the console to provide early debug support */
|
||||
int32_t rc = console_pl011_register((uintptr_t)VERSAL_UART_BASE,
|
||||
(uint32_t)VERSAL_UART_CLOCK,
|
||||
(uint32_t)VERSAL_UART_BAUDRATE,
|
||||
&versal_runtime_console);
|
||||
if (rc == 0) {
|
||||
panic();
|
||||
}
|
||||
|
||||
console_set_scope(&versal_runtime_console, (uint32_t)(CONSOLE_FLAG_BOOT |
|
||||
CONSOLE_FLAG_RUNTIME));
|
||||
} else if (VERSAL_CONSOLE_IS(dcc)) {
|
||||
/* Initialize the dcc console for debug */
|
||||
int32_t rc = console_dcc_register();
|
||||
if (rc == 0) {
|
||||
panic();
|
||||
}
|
||||
} else {
|
||||
NOTICE("BL31: Did not register for any console.\n");
|
||||
}
|
||||
|
||||
/* Initialize the platform config for future decision making */
|
||||
versal_config_setup();
|
||||
/* There are no parameters from BL2 if BL31 is a reset vector */
|
||||
assert(arg0 == 0U);
|
||||
assert(arg1 == 0U);
|
||||
|
||||
/*
|
||||
* Do initial security configuration to allow DRAM/device access. On
|
||||
* Base VERSAL only DRAM security is programmable (via TrustZone), but
|
||||
* other platforms might have more programmable security devices
|
||||
* present.
|
||||
*/
|
||||
|
||||
/* Populate common information for BL32 and BL33 */
|
||||
SET_PARAM_HEAD(&bl32_image_ep_info, PARAM_EP, VERSION_1, 0);
|
||||
SET_SECURITY_STATE(bl32_image_ep_info.h.attr, SECURE);
|
||||
SET_PARAM_HEAD(&bl33_image_ep_info, PARAM_EP, VERSION_1, 0);
|
||||
SET_SECURITY_STATE(bl33_image_ep_info.h.attr, NON_SECURE);
|
||||
|
||||
PM_PACK_PAYLOAD4(payload, LOADER_MODULE_ID, 1, PM_LOAD_GET_HANDOFF_PARAMS,
|
||||
(uintptr_t)addr >> 32U, (uintptr_t)addr, max_size);
|
||||
ret_status = pm_ipi_send_sync(primary_proc, payload, NULL, 0);
|
||||
if (ret_status == PM_RET_SUCCESS) {
|
||||
INFO("BL31: GET_HANDOFF_PARAMS call success=%d\n", ret_status);
|
||||
atf_handoff_addr = (uintptr_t)&addr;
|
||||
} else {
|
||||
ERROR("BL31: GET_HANDOFF_PARAMS Failed, read atf_handoff_addr from reg\n");
|
||||
atf_handoff_addr = mmio_read_32(PMC_GLOBAL_GLOB_GEN_STORAGE4);
|
||||
}
|
||||
|
||||
enum fsbl_handoff ret = fsbl_atf_handover(&bl32_image_ep_info,
|
||||
&bl33_image_ep_info,
|
||||
atf_handoff_addr);
|
||||
if (ret == FSBL_HANDOFF_NO_STRUCT || ret == FSBL_HANDOFF_INVAL_STRUCT) {
|
||||
bl31_set_default_config();
|
||||
} else if (ret == FSBL_HANDOFF_TOO_MANY_PARTS) {
|
||||
ERROR("BL31: Error too many partitions %u\n", ret);
|
||||
} else if (ret != FSBL_HANDOFF_SUCCESS) {
|
||||
panic();
|
||||
} else {
|
||||
INFO("BL31: fsbl-atf handover success %u\n", ret);
|
||||
}
|
||||
|
||||
NOTICE("BL31: Secure code at 0x%lx\n", bl32_image_ep_info.pc);
|
||||
NOTICE("BL31: Non secure code at 0x%lx\n", bl33_image_ep_info.pc);
|
||||
}
|
||||
|
||||
static versal_intr_info_type_el3_t type_el3_interrupt_table[MAX_INTR_EL3];
|
||||
|
||||
int request_intr_type_el3(uint32_t id, interrupt_type_handler_t handler)
|
||||
{
|
||||
static uint32_t index;
|
||||
uint32_t i;
|
||||
|
||||
/* Validate 'handler' and 'id' parameters */
|
||||
if (handler == NULL || index >= MAX_INTR_EL3) {
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
/* Check if a handler has already been registered */
|
||||
for (i = 0; i < index; i++) {
|
||||
if (id == type_el3_interrupt_table[i].id) {
|
||||
return -EALREADY;
|
||||
}
|
||||
}
|
||||
|
||||
type_el3_interrupt_table[index].id = id;
|
||||
type_el3_interrupt_table[index].handler = handler;
|
||||
|
||||
index++;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static uint64_t rdo_el3_interrupt_handler(uint32_t id, uint32_t flags,
|
||||
void *handle, void *cookie)
|
||||
{
|
||||
uint32_t intr_id;
|
||||
uint32_t i;
|
||||
interrupt_type_handler_t handler = NULL;
|
||||
|
||||
intr_id = plat_ic_get_pending_interrupt_id();
|
||||
|
||||
for (i = 0; i < MAX_INTR_EL3; i++) {
|
||||
if (intr_id == type_el3_interrupt_table[i].id) {
|
||||
handler = type_el3_interrupt_table[i].handler;
|
||||
}
|
||||
}
|
||||
|
||||
if (handler != NULL) {
|
||||
return handler(intr_id, flags, handle, cookie);
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
void bl31_platform_setup(void)
|
||||
{
|
||||
/* Initialize the gic cpu and distributor interfaces */
|
||||
plat_versal_gic_driver_init();
|
||||
plat_versal_gic_init();
|
||||
}
|
||||
|
||||
void bl31_plat_runtime_setup(void)
|
||||
{
|
||||
uint64_t flags = 0;
|
||||
int32_t rc;
|
||||
|
||||
set_interrupt_rm_flag(flags, NON_SECURE);
|
||||
rc = register_interrupt_type_handler(INTR_TYPE_EL3,
|
||||
rdo_el3_interrupt_handler, flags);
|
||||
if (rc != 0) {
|
||||
panic();
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Perform the very early platform specific architectural setup here.
|
||||
*/
|
||||
void bl31_plat_arch_setup(void)
|
||||
{
|
||||
plat_arm_interconnect_init();
|
||||
plat_arm_interconnect_enter_coherency();
|
||||
|
||||
const mmap_region_t bl_regions[] = {
|
||||
MAP_REGION_FLAT(BL31_BASE, BL31_END - BL31_BASE,
|
||||
MT_MEMORY | MT_RW | MT_SECURE),
|
||||
MAP_REGION_FLAT(BL_CODE_BASE, BL_CODE_END - BL_CODE_BASE,
|
||||
MT_CODE | MT_SECURE),
|
||||
MAP_REGION_FLAT(BL_RO_DATA_BASE, BL_RO_DATA_END - BL_RO_DATA_BASE,
|
||||
MT_RO_DATA | MT_SECURE),
|
||||
MAP_REGION_FLAT(BL_COHERENT_RAM_BASE,
|
||||
BL_COHERENT_RAM_END - BL_COHERENT_RAM_BASE,
|
||||
MT_DEVICE | MT_RW | MT_SECURE),
|
||||
{0}
|
||||
};
|
||||
|
||||
setup_page_tables(bl_regions, plat_versal_get_mmap());
|
||||
enable_mmu_el3(0);
|
||||
}
|
||||
@@ -0,0 +1,55 @@
|
||||
/*
|
||||
* Copyright (c) 2019, Xilinx, Inc. All rights reserved.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
|
||||
/* Versal IPI management enums and defines */
|
||||
|
||||
#ifndef PLAT_IPI_H
|
||||
#define PLAT_IPI_H
|
||||
|
||||
#include <ipi.h>
|
||||
#include <stdint.h>
|
||||
|
||||
/*********************************************************************
|
||||
* IPI agent IDs macros
|
||||
********************************************************************/
|
||||
#define IPI_ID_PMC 1U
|
||||
#define IPI_ID_APU 2U
|
||||
#define IPI_ID_RPU0 3U
|
||||
#define IPI_ID_RPU1 4U
|
||||
#define IPI_ID_3 5U
|
||||
#define IPI_ID_4 6U
|
||||
#define IPI_ID_5 7U
|
||||
|
||||
/*********************************************************************
|
||||
* IPI message buffers
|
||||
********************************************************************/
|
||||
#define IPI_BUFFER_BASEADDR 0xFF3F0000U
|
||||
|
||||
#define IPI_BUFFER_APU_BASE (IPI_BUFFER_BASEADDR + 0x400U)
|
||||
#define IPI_BUFFER_PMC_BASE (IPI_BUFFER_BASEADDR + 0x200U)
|
||||
|
||||
#define IPI_BUFFER_TARGET_APU_OFFSET 0x80U
|
||||
#define IPI_BUFFER_TARGET_PMC_OFFSET 0x40U
|
||||
|
||||
#define IPI_BUFFER_LOCAL_BASE IPI_BUFFER_APU_BASE
|
||||
#define IPI_BUFFER_REMOTE_BASE IPI_BUFFER_PMC_BASE
|
||||
|
||||
#define IPI_BUFFER_TARGET_LOCAL_OFFSET IPI_BUFFER_TARGET_APU_OFFSET
|
||||
#define IPI_BUFFER_TARGET_REMOTE_OFFSET IPI_BUFFER_TARGET_PMC_OFFSET
|
||||
|
||||
#define IPI_BUFFER_MAX_WORDS 8
|
||||
|
||||
#define IPI_BUFFER_REQ_OFFSET 0x0U
|
||||
#define IPI_BUFFER_RESP_OFFSET 0x20U
|
||||
|
||||
/*********************************************************************
|
||||
* Platform specific IPI API declarations
|
||||
********************************************************************/
|
||||
|
||||
/* Configure IPI table for versal */
|
||||
void versal_ipi_config_table_init(void);
|
||||
|
||||
#endif /* PLAT_IPI_H */
|
||||
+110
@@ -0,0 +1,110 @@
|
||||
/*
|
||||
* Copyright (c) 2018, ARM Limited and Contributors. All rights reserved.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
|
||||
#ifndef PLAT_MACROS_S
|
||||
#define PLAT_MACROS_S
|
||||
|
||||
#include <drivers/arm/gic_common.h>
|
||||
#include <drivers/arm/gicv2.h>
|
||||
#include <drivers/arm/gicv3.h>
|
||||
|
||||
#include "../include/platform_def.h"
|
||||
|
||||
.section .rodata.gic_reg_name, "aS"
|
||||
/* Applicable only to GICv2 and GICv3 with SRE disabled (legacy mode) */
|
||||
gicc_regs:
|
||||
.asciz "gicc_hppir", "gicc_ahppir", "gicc_ctlr", ""
|
||||
|
||||
/* Applicable only to GICv3 with SRE enabled */
|
||||
icc_regs:
|
||||
.asciz "icc_hppir0_el1", "icc_hppir1_el1", "icc_ctlr_el3", ""
|
||||
|
||||
/* Registers common to both GICv2 and GICv3 */
|
||||
gicd_pend_reg:
|
||||
.asciz "gicd_ispendr regs (Offsets 0x200 - 0x278)\n Offset:\t\t\tvalue\n"
|
||||
newline:
|
||||
.asciz "\n"
|
||||
spacer:
|
||||
.asciz ":\t\t0x"
|
||||
|
||||
/* ---------------------------------------------
|
||||
* The below utility macro prints out relevant GIC
|
||||
* registers whenever an unhandled exception is
|
||||
* taken in BL31 on Versal platform.
|
||||
* Expects: GICD base in x16, GICC base in x17
|
||||
* Clobbers: x0 - x10, sp
|
||||
* ---------------------------------------------
|
||||
*/
|
||||
.macro versal_print_gic_regs
|
||||
/* Check for GICv3 system register access */
|
||||
mrs x7, id_aa64pfr0_el1
|
||||
ubfx x7, x7, #ID_AA64PFR0_GIC_SHIFT, #ID_AA64PFR0_GIC_WIDTH
|
||||
cmp x7, #1
|
||||
b.ne print_gicv2
|
||||
|
||||
/* Check for SRE enable */
|
||||
mrs x8, ICC_SRE_EL3
|
||||
tst x8, #ICC_SRE_SRE_BIT
|
||||
b.eq print_gicv2
|
||||
|
||||
/* Load the icc reg list to x6 */
|
||||
adr x6, icc_regs
|
||||
/* Load the icc regs to gp regs used by str_in_crash_buf_print */
|
||||
mrs x8, ICC_HPPIR0_EL1
|
||||
mrs x9, ICC_HPPIR1_EL1
|
||||
mrs x10, ICC_CTLR_EL3
|
||||
/* Store to the crash buf and print to console */
|
||||
bl str_in_crash_buf_print
|
||||
b print_gic_common
|
||||
|
||||
print_gicv2:
|
||||
/* Load the gicc reg list to x6 */
|
||||
adr x6, gicc_regs
|
||||
/* Load the gicc regs to gp regs used by str_in_crash_buf_print */
|
||||
ldr w8, [x17, #GICC_HPPIR]
|
||||
ldr w9, [x17, #GICC_AHPPIR]
|
||||
ldr w10, [x17, #GICC_CTLR]
|
||||
/* Store to the crash buf and print to console */
|
||||
bl str_in_crash_buf_print
|
||||
|
||||
print_gic_common:
|
||||
/* Print the GICD_ISPENDR regs */
|
||||
add x7, x16, #GICD_ISPENDR
|
||||
adr x4, gicd_pend_reg
|
||||
bl asm_print_str
|
||||
gicd_ispendr_loop:
|
||||
sub x4, x7, x16
|
||||
cmp x4, #0x280
|
||||
b.eq exit_print_gic_regs
|
||||
bl asm_print_hex
|
||||
|
||||
adr x4, spacer
|
||||
bl asm_print_str
|
||||
|
||||
ldr x4, [x7], #8
|
||||
bl asm_print_hex
|
||||
|
||||
adr x4, newline
|
||||
bl asm_print_str
|
||||
b gicd_ispendr_loop
|
||||
exit_print_gic_regs:
|
||||
.endm
|
||||
|
||||
/* ---------------------------------------------
|
||||
* The below required platform porting macro
|
||||
* prints out relevant GIC and CCI registers
|
||||
* whenever an unhandled exception is taken in
|
||||
* BL31.
|
||||
* Clobbers: x0 - x10, x16, x17, sp
|
||||
* ---------------------------------------------
|
||||
*/
|
||||
.macro plat_crash_print_regs
|
||||
mov_imm x17, PLAT_VERSAL_GICD_BASE
|
||||
mov_imm x16, PLAT_VERSAL_GICR_BASE
|
||||
versal_print_gic_regs
|
||||
.endm
|
||||
|
||||
#endif /* PLAT_MACROS_S */
|
||||
+22
@@ -0,0 +1,22 @@
|
||||
/*
|
||||
* Copyright (c) 2019, Xilinx, Inc. All rights reserved.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
|
||||
/*
|
||||
* Contains platform specific definitions of commonly used macros data types
|
||||
* for PU Power Management. This file should be common for all PU's.
|
||||
*/
|
||||
|
||||
#ifndef PLAT_PM_COMMON_H
|
||||
#define PLAT_PM_COMMON_H
|
||||
|
||||
#include <common/debug.h>
|
||||
#include <stdint.h>
|
||||
#include "pm_defs.h"
|
||||
|
||||
#define NON_SECURE_FLAG 1U
|
||||
#define SECURE_FLAG 0U
|
||||
|
||||
#endif /* PLAT_PM_COMMON_H */
|
||||
+39
@@ -0,0 +1,39 @@
|
||||
/*
|
||||
* Copyright (c) 2018-2019, ARM Limited and Contributors. All rights reserved.
|
||||
* Copyright (c) 2018-2022, Xilinx, Inc. All rights reserved.
|
||||
* Copyright (c) 2022, Advanced Micro Devices, Inc. All rights reserved.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
|
||||
#ifndef PLAT_PRIVATE_H
|
||||
#define PLAT_PRIVATE_H
|
||||
|
||||
#include <lib/xlat_tables/xlat_tables.h>
|
||||
#include <bl31/interrupt_mgmt.h>
|
||||
|
||||
typedef struct versal_intr_info_type_el3 {
|
||||
uint32_t id;
|
||||
interrupt_type_handler_t handler;
|
||||
} versal_intr_info_type_el3_t;
|
||||
|
||||
void versal_config_setup(void);
|
||||
|
||||
const mmap_region_t *plat_versal_get_mmap(void);
|
||||
|
||||
void plat_versal_gic_driver_init(void);
|
||||
void plat_versal_gic_init(void);
|
||||
void plat_versal_gic_cpuif_enable(void);
|
||||
void plat_versal_gic_cpuif_disable(void);
|
||||
void plat_versal_gic_pcpu_init(void);
|
||||
void plat_versal_gic_save(void);
|
||||
void plat_versal_gic_resume(void);
|
||||
|
||||
uint32_t versal_calc_core_pos(u_register_t mpidr);
|
||||
/*
|
||||
* Register handler to specific GIC entrance
|
||||
* for INTR_TYPE_EL3 type of interrupt
|
||||
*/
|
||||
int32_t request_intr_type_el3(uint32_t irq, interrupt_type_handler_t fiq_handler);
|
||||
|
||||
#endif /* PLAT_PRIVATE_H */
|
||||
+104
@@ -0,0 +1,104 @@
|
||||
/*
|
||||
* Copyright (c) 2018-2021, ARM Limited and Contributors. All rights reserved.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
|
||||
#ifndef PLATFORM_DEF_H
|
||||
#define PLATFORM_DEF_H
|
||||
|
||||
#include <arch.h>
|
||||
#include "versal_def.h"
|
||||
|
||||
/*******************************************************************************
|
||||
* Generic platform constants
|
||||
******************************************************************************/
|
||||
|
||||
/* Size of cacheable stacks */
|
||||
#define PLATFORM_STACK_SIZE U(0x440)
|
||||
|
||||
#define PLATFORM_CORE_COUNT U(2)
|
||||
#define PLAT_MAX_PWR_LVL U(1)
|
||||
#define PLAT_MAX_RET_STATE U(1)
|
||||
#define PLAT_MAX_OFF_STATE U(2)
|
||||
|
||||
/*******************************************************************************
|
||||
* BL31 specific defines.
|
||||
******************************************************************************/
|
||||
/*
|
||||
* Put BL31 at the top of the Trusted SRAM (just below the shared memory, if
|
||||
* present). BL31_BASE is calculated using the current BL31 debug size plus a
|
||||
* little space for growth.
|
||||
*/
|
||||
#ifndef VERSAL_ATF_MEM_BASE
|
||||
# define BL31_BASE U(0xfffe0000)
|
||||
# define BL31_LIMIT U(0xffffffff)
|
||||
#else
|
||||
# define BL31_BASE (VERSAL_ATF_MEM_BASE)
|
||||
# define BL31_LIMIT (VERSAL_ATF_MEM_BASE + VERSAL_ATF_MEM_SIZE - 1)
|
||||
# ifdef VERSAL_ATF_MEM_PROGBITS_SIZE
|
||||
# define BL31_PROGBITS_LIMIT (VERSAL_ATF_MEM_BASE + VERSAL_ATF_MEM_PROGBITS_SIZE - 1)
|
||||
# endif
|
||||
#endif
|
||||
|
||||
/*******************************************************************************
|
||||
* BL32 specific defines.
|
||||
******************************************************************************/
|
||||
#ifndef VERSAL_BL32_MEM_BASE
|
||||
# define BL32_BASE U(0x60000000)
|
||||
# define BL32_LIMIT U(0x7fffffff)
|
||||
#else
|
||||
# define BL32_BASE (VERSAL_BL32_MEM_BASE)
|
||||
# define BL32_LIMIT (VERSAL_BL32_MEM_BASE + VERSAL_BL32_MEM_SIZE - 1)
|
||||
#endif
|
||||
|
||||
/*******************************************************************************
|
||||
* BL33 specific defines.
|
||||
******************************************************************************/
|
||||
#ifndef PRELOADED_BL33_BASE
|
||||
# define PLAT_ARM_NS_IMAGE_BASE U(0x8000000)
|
||||
#else
|
||||
# define PLAT_ARM_NS_IMAGE_BASE PRELOADED_BL33_BASE
|
||||
#endif
|
||||
|
||||
/*******************************************************************************
|
||||
* TSP specific defines.
|
||||
******************************************************************************/
|
||||
#define TSP_SEC_MEM_BASE BL32_BASE
|
||||
#define TSP_SEC_MEM_SIZE (BL32_LIMIT - BL32_BASE + 1)
|
||||
|
||||
/* ID of the secure physical generic timer interrupt used by the TSP */
|
||||
#define TSP_IRQ_SEC_PHY_TIMER ARM_IRQ_SEC_PHY_TIMER
|
||||
|
||||
/*******************************************************************************
|
||||
* Platform specific page table and MMU setup constants
|
||||
******************************************************************************/
|
||||
#define PLAT_PHY_ADDR_SPACE_SIZE (1ull << 32)
|
||||
#define PLAT_VIRT_ADDR_SPACE_SIZE (1ull << 32)
|
||||
#define MAX_MMAP_REGIONS 8
|
||||
#define MAX_XLAT_TABLES 5
|
||||
|
||||
#define CACHE_WRITEBACK_SHIFT 6
|
||||
#define CACHE_WRITEBACK_GRANULE (1 << CACHE_WRITEBACK_SHIFT)
|
||||
|
||||
#define PLAT_VERSAL_GICD_BASE U(0xF9000000)
|
||||
#define PLAT_VERSAL_GICR_BASE U(0xF9080000)
|
||||
|
||||
/*
|
||||
* Define a list of Group 1 Secure and Group 0 interrupts as per GICv3
|
||||
* terminology. On a GICv2 system or mode, the lists will be merged and treated
|
||||
* as Group 0 interrupts.
|
||||
*/
|
||||
#define PLAT_VERSAL_G1S_IRQS VERSAL_IRQ_SEC_PHY_TIMER
|
||||
#define PLAT_VERSAL_G0_IRQS VERSAL_IRQ_SEC_PHY_TIMER
|
||||
#define PLAT_VERSAL_IPI_IRQ U(62)
|
||||
|
||||
#define PLAT_VERSAL_G1S_IRQ_PROPS(grp) \
|
||||
INTR_PROP_DESC(VERSAL_IRQ_SEC_PHY_TIMER, GIC_HIGHEST_SEC_PRIORITY, grp, \
|
||||
GIC_INTR_CFG_LEVEL)
|
||||
|
||||
#define PLAT_VERSAL_G0_IRQ_PROPS(grp) \
|
||||
INTR_PROP_DESC(PLAT_VERSAL_IPI_IRQ, GIC_HIGHEST_SEC_PRIORITY, grp, \
|
||||
GIC_INTR_CFG_EDGE), \
|
||||
|
||||
#endif /* PLATFORM_DEF_H */
|
||||
+146
@@ -0,0 +1,146 @@
|
||||
/*
|
||||
* Copyright (c) 2018-2022, ARM Limited and Contributors. All rights reserved.
|
||||
* Copyright (c) 2019-2022, Xilinx, Inc. All rights reserved.
|
||||
* Copyright (c) 2022, Advanced Micro Devices, Inc. All rights reserved.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
|
||||
#ifndef VERSAL_DEF_H
|
||||
#define VERSAL_DEF_H
|
||||
|
||||
#include <plat/arm/common/smccc_def.h>
|
||||
#include <plat/common/common_def.h>
|
||||
|
||||
/* number of interrupt handlers. increase as required */
|
||||
#define MAX_INTR_EL3 2
|
||||
/* List all consoles */
|
||||
#define VERSAL_CONSOLE_ID_pl011 1
|
||||
#define VERSAL_CONSOLE_ID_pl011_0 1
|
||||
#define VERSAL_CONSOLE_ID_pl011_1 2
|
||||
#define VERSAL_CONSOLE_ID_dcc 3
|
||||
|
||||
#define VERSAL_CONSOLE_IS(con) (VERSAL_CONSOLE_ID_ ## con == VERSAL_CONSOLE)
|
||||
|
||||
/* List all supported platforms */
|
||||
#define VERSAL_PLATFORM_ID_versal_virt 1
|
||||
#define VERSAL_PLATFORM_ID_spp_itr6 2
|
||||
#define VERSAL_PLATFORM_ID_emu_itr6 3
|
||||
#define VERSAL_PLATFORM_ID_silicon 4
|
||||
|
||||
#define VERSAL_PLATFORM_IS(con) (VERSAL_PLATFORM_ID_ ## con == VERSAL_PLATFORM)
|
||||
|
||||
/* Firmware Image Package */
|
||||
#define VERSAL_PRIMARY_CPU 0
|
||||
|
||||
/*******************************************************************************
|
||||
* memory map related constants
|
||||
******************************************************************************/
|
||||
#define DEVICE0_BASE 0xFF000000
|
||||
#define DEVICE0_SIZE 0x00E00000
|
||||
#define DEVICE1_BASE 0xF9000000
|
||||
#define DEVICE1_SIZE 0x00800000
|
||||
|
||||
/*******************************************************************************
|
||||
* IRQ constants
|
||||
******************************************************************************/
|
||||
#define VERSAL_IRQ_SEC_PHY_TIMER U(29)
|
||||
|
||||
/*******************************************************************************
|
||||
* CCI-400 related constants
|
||||
******************************************************************************/
|
||||
#define PLAT_ARM_CCI_BASE 0xFD000000
|
||||
#define PLAT_ARM_CCI_CLUSTER0_SL_IFACE_IX 4
|
||||
#define PLAT_ARM_CCI_CLUSTER1_SL_IFACE_IX 5
|
||||
|
||||
/*******************************************************************************
|
||||
* UART related constants
|
||||
******************************************************************************/
|
||||
#define VERSAL_UART0_BASE 0xFF000000
|
||||
#define VERSAL_UART1_BASE 0xFF010000
|
||||
|
||||
#if VERSAL_CONSOLE_IS(pl011) || VERSAL_CONSOLE_IS(dcc)
|
||||
# define VERSAL_UART_BASE VERSAL_UART0_BASE
|
||||
#elif VERSAL_CONSOLE_IS(pl011_1)
|
||||
# define VERSAL_UART_BASE VERSAL_UART1_BASE
|
||||
#else
|
||||
# error "invalid VERSAL_CONSOLE"
|
||||
#endif
|
||||
|
||||
#define PLAT_VERSAL_CRASH_UART_BASE VERSAL_UART_BASE
|
||||
#define PLAT_VERSAL_CRASH_UART_CLK_IN_HZ VERSAL_UART_CLOCK
|
||||
#define VERSAL_CONSOLE_BAUDRATE VERSAL_UART_BAUDRATE
|
||||
|
||||
/*******************************************************************************
|
||||
* Platform related constants
|
||||
******************************************************************************/
|
||||
#if VERSAL_PLATFORM_IS(versal_virt)
|
||||
# define PLATFORM_NAME "Versal Virt"
|
||||
# define VERSAL_UART_CLOCK 25000000
|
||||
# define VERSAL_UART_BAUDRATE 115200
|
||||
# define VERSAL_CPU_CLOCK 2720000
|
||||
#elif VERSAL_PLATFORM_IS(silicon)
|
||||
# define PLATFORM_NAME "Versal Silicon"
|
||||
# define VERSAL_UART_CLOCK 100000000
|
||||
# define VERSAL_UART_BAUDRATE 115200
|
||||
# define VERSAL_CPU_CLOCK 100000000
|
||||
#elif VERSAL_PLATFORM_IS(spp_itr6)
|
||||
# define PLATFORM_NAME "SPP ITR6"
|
||||
# define VERSAL_UART_CLOCK 25000000
|
||||
# define VERSAL_UART_BAUDRATE 115200
|
||||
# define VERSAL_CPU_CLOCK 2720000
|
||||
#elif VERSAL_PLATFORM_IS(emu_itr6)
|
||||
# define PLATFORM_NAME "EMU ITR6"
|
||||
# define VERSAL_UART_CLOCK 212000
|
||||
# define VERSAL_UART_BAUDRATE 9600
|
||||
# define VERSAL_CPU_CLOCK 212000
|
||||
#endif
|
||||
|
||||
/* Access control register defines */
|
||||
#define ACTLR_EL3_L2ACTLR_BIT (1 << 6)
|
||||
#define ACTLR_EL3_CPUACTLR_BIT (1 << 0)
|
||||
|
||||
/* For cpu reset APU space here too 0xFE5F1000 CRF_APB*/
|
||||
#define CRF_BASE 0xFD1A0000
|
||||
#define CRF_SIZE 0x00600000
|
||||
|
||||
/* CRF registers and bitfields */
|
||||
#define CRF_RST_APU (CRF_BASE + 0X00000300)
|
||||
|
||||
#define CRF_RST_APU_ACPU_RESET (1 << 0)
|
||||
#define CRF_RST_APU_ACPU_PWRON_RESET (1 << 10)
|
||||
|
||||
#define FPD_MAINCCI_BASE 0xFD000000
|
||||
#define FPD_MAINCCI_SIZE 0x00100000
|
||||
|
||||
/* APU registers and bitfields */
|
||||
#define FPD_APU_BASE 0xFD5C0000U
|
||||
#define FPD_APU_CONFIG_0 (FPD_APU_BASE + 0x20U)
|
||||
#define FPD_APU_RVBAR_L_0 (FPD_APU_BASE + 0x40U)
|
||||
#define FPD_APU_RVBAR_H_0 (FPD_APU_BASE + 0x44U)
|
||||
#define FPD_APU_PWRCTL (FPD_APU_BASE + 0x90U)
|
||||
|
||||
#define FPD_APU_CONFIG_0_VINITHI_SHIFT 8U
|
||||
#define APU_0_PWRCTL_CPUPWRDWNREQ_MASK 1U
|
||||
#define APU_1_PWRCTL_CPUPWRDWNREQ_MASK 2U
|
||||
|
||||
/* PMC registers and bitfields */
|
||||
#define PMC_GLOBAL_BASE 0xF1110000U
|
||||
#define PMC_GLOBAL_GLOB_GEN_STORAGE4 (PMC_GLOBAL_BASE + 0x40U)
|
||||
|
||||
/* IPI registers and bitfields */
|
||||
#define IPI0_REG_BASE U(0xFF330000)
|
||||
#define IPI0_TRIG_BIT (1U << 2U)
|
||||
#define PMC_IPI_TRIG_BIT (1U << 1U)
|
||||
#define IPI1_REG_BASE U(0xFF340000)
|
||||
#define IPI1_TRIG_BIT (1U << 3U)
|
||||
#define IPI2_REG_BASE U(0xFF350000)
|
||||
#define IPI2_TRIG_BIT (1U << 4U)
|
||||
#define IPI3_REG_BASE U(0xFF360000)
|
||||
#define IPI3_TRIG_BIT (1U << 5U)
|
||||
#define IPI4_REG_BASE U(0xFF370000)
|
||||
#define IPI4_TRIG_BIT (1U << 5U)
|
||||
#define IPI5_REG_BASE U(0xFF380000)
|
||||
#define IPI5_TRIG_BIT (1U << 6U)
|
||||
|
||||
#endif /* VERSAL_DEF_H */
|
||||
@@ -0,0 +1,249 @@
|
||||
/*
|
||||
* Copyright (c) 2018-2021, ARM Limited and Contributors. All rights reserved.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
|
||||
#include <assert.h>
|
||||
#include <plat_arm.h>
|
||||
#include <plat_private.h>
|
||||
#include <pm_common.h>
|
||||
#include <common/debug.h>
|
||||
#include <lib/mmio.h>
|
||||
#include <lib/psci/psci.h>
|
||||
#include <plat/common/platform.h>
|
||||
#include <plat/arm/common/plat_arm.h>
|
||||
|
||||
#include "pm_api_sys.h"
|
||||
#include "pm_client.h"
|
||||
|
||||
static uintptr_t versal_sec_entry;
|
||||
|
||||
static int32_t versal_pwr_domain_on(u_register_t mpidr)
|
||||
{
|
||||
int32_t cpu_id = plat_core_pos_by_mpidr(mpidr);
|
||||
const struct pm_proc *proc;
|
||||
|
||||
VERBOSE("%s: mpidr: 0x%lx\n", __func__, mpidr);
|
||||
|
||||
if (cpu_id == -1) {
|
||||
return PSCI_E_INTERN_FAIL;
|
||||
}
|
||||
|
||||
proc = pm_get_proc((uint32_t)cpu_id);
|
||||
|
||||
/* Send request to PMC to wake up selected ACPU core */
|
||||
(void)pm_req_wakeup(proc->node_id, (versal_sec_entry & 0xFFFFFFFFU) | 0x1U,
|
||||
versal_sec_entry >> 32, 0, SECURE_FLAG);
|
||||
|
||||
/* Clear power down request */
|
||||
pm_client_wakeup(proc);
|
||||
|
||||
return PSCI_E_SUCCESS;
|
||||
}
|
||||
|
||||
/**
|
||||
* versal_pwr_domain_suspend() - This function sends request to PMC to suspend
|
||||
* core.
|
||||
*
|
||||
* @target_state Targated state
|
||||
*/
|
||||
static void versal_pwr_domain_suspend(const psci_power_state_t *target_state)
|
||||
{
|
||||
uint32_t state;
|
||||
uint32_t cpu_id = plat_my_core_pos();
|
||||
const struct pm_proc *proc = pm_get_proc(cpu_id);
|
||||
|
||||
for (size_t i = 0U; i <= PLAT_MAX_PWR_LVL; i++) {
|
||||
VERBOSE("%s: target_state->pwr_domain_state[%lu]=%x\n",
|
||||
__func__, i, target_state->pwr_domain_state[i]);
|
||||
}
|
||||
|
||||
plat_versal_gic_cpuif_disable();
|
||||
|
||||
if (target_state->pwr_domain_state[1] > PLAT_MAX_RET_STATE) {
|
||||
plat_versal_gic_save();
|
||||
}
|
||||
|
||||
state = target_state->pwr_domain_state[1] > PLAT_MAX_RET_STATE ?
|
||||
PM_STATE_SUSPEND_TO_RAM : PM_STATE_CPU_IDLE;
|
||||
|
||||
/* Send request to PMC to suspend this core */
|
||||
(void)pm_self_suspend(proc->node_id, MAX_LATENCY, state, versal_sec_entry,
|
||||
SECURE_FLAG);
|
||||
|
||||
/* APU is to be turned off */
|
||||
if (target_state->pwr_domain_state[1] > PLAT_MAX_RET_STATE) {
|
||||
/* disable coherency */
|
||||
plat_arm_interconnect_exit_coherency();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* versal_pwr_domain_suspend_finish() - This function performs actions to finish
|
||||
* suspend procedure.
|
||||
*
|
||||
* @target_state Targated state
|
||||
*/
|
||||
static void versal_pwr_domain_suspend_finish(
|
||||
const psci_power_state_t *target_state)
|
||||
{
|
||||
uint32_t cpu_id = plat_my_core_pos();
|
||||
const struct pm_proc *proc = pm_get_proc(cpu_id);
|
||||
|
||||
for (size_t i = 0U; i <= PLAT_MAX_PWR_LVL; i++) {
|
||||
VERBOSE("%s: target_state->pwr_domain_state[%lu]=%x\n",
|
||||
__func__, i, target_state->pwr_domain_state[i]);
|
||||
}
|
||||
|
||||
/* Clear the APU power control register for this cpu */
|
||||
pm_client_wakeup(proc);
|
||||
|
||||
/* enable coherency */
|
||||
plat_arm_interconnect_enter_coherency();
|
||||
|
||||
/* APU was turned off, so restore GIC context */
|
||||
if (target_state->pwr_domain_state[1] > PLAT_MAX_RET_STATE) {
|
||||
plat_versal_gic_resume();
|
||||
}
|
||||
|
||||
plat_versal_gic_cpuif_enable();
|
||||
}
|
||||
|
||||
void versal_pwr_domain_on_finish(const psci_power_state_t *target_state)
|
||||
{
|
||||
/* Enable the gic cpu interface */
|
||||
plat_versal_gic_pcpu_init();
|
||||
|
||||
/* Program the gic per-cpu distributor or re-distributor interface */
|
||||
plat_versal_gic_cpuif_enable();
|
||||
}
|
||||
|
||||
/**
|
||||
* versal_system_off() - This function sends the system off request
|
||||
* to firmware. This function does not return.
|
||||
*/
|
||||
static void __dead2 versal_system_off(void)
|
||||
{
|
||||
/* Send the power down request to the PMC */
|
||||
(void)pm_system_shutdown(XPM_SHUTDOWN_TYPE_SHUTDOWN,
|
||||
pm_get_shutdown_scope(), SECURE_FLAG);
|
||||
|
||||
while (1) {
|
||||
wfi();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* versal_system_reset() - This function sends the reset request
|
||||
* to firmware for the system to reset. This function does not return.
|
||||
*/
|
||||
static void __dead2 versal_system_reset(void)
|
||||
{
|
||||
/* Send the system reset request to the PMC */
|
||||
(void)pm_system_shutdown(XPM_SHUTDOWN_TYPE_RESET,
|
||||
pm_get_shutdown_scope(), SECURE_FLAG);
|
||||
|
||||
while (1) {
|
||||
wfi();
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* versal_pwr_domain_off() - This function performs actions to turn off core
|
||||
*
|
||||
* @target_state Targated state
|
||||
*/
|
||||
static void versal_pwr_domain_off(const psci_power_state_t *target_state)
|
||||
{
|
||||
uint32_t cpu_id = plat_my_core_pos();
|
||||
const struct pm_proc *proc = pm_get_proc(cpu_id);
|
||||
|
||||
for (size_t i = 0U; i <= PLAT_MAX_PWR_LVL; i++) {
|
||||
VERBOSE("%s: target_state->pwr_domain_state[%lu]=%x\n",
|
||||
__func__, i, target_state->pwr_domain_state[i]);
|
||||
}
|
||||
|
||||
/* Prevent interrupts from spuriously waking up this cpu */
|
||||
plat_versal_gic_cpuif_disable();
|
||||
|
||||
/*
|
||||
* Send request to PMC to power down the appropriate APU CPU
|
||||
* core.
|
||||
* According to PSCI specification, CPU_off function does not
|
||||
* have resume address and CPU core can only be woken up
|
||||
* invoking CPU_on function, during which resume address will
|
||||
* be set.
|
||||
*/
|
||||
(void)pm_self_suspend(proc->node_id, MAX_LATENCY, PM_STATE_CPU_IDLE, 0,
|
||||
SECURE_FLAG);
|
||||
}
|
||||
|
||||
/**
|
||||
* versal_validate_power_state() - This function ensures that the power state
|
||||
* parameter in request is valid.
|
||||
*
|
||||
* @power_state Power state of core
|
||||
* @req_state Requested state
|
||||
*
|
||||
* @return Returns status, either success or reason
|
||||
*/
|
||||
static int32_t versal_validate_power_state(uint32_t power_state,
|
||||
psci_power_state_t *req_state)
|
||||
{
|
||||
VERBOSE("%s: power_state: 0x%x\n", __func__, power_state);
|
||||
|
||||
uint32_t pstate = psci_get_pstate_type(power_state);
|
||||
|
||||
assert(req_state);
|
||||
|
||||
/* Sanity check the requested state */
|
||||
if (pstate == PSTATE_TYPE_STANDBY) {
|
||||
req_state->pwr_domain_state[MPIDR_AFFLVL0] = PLAT_MAX_RET_STATE;
|
||||
} else {
|
||||
req_state->pwr_domain_state[MPIDR_AFFLVL0] = PLAT_MAX_OFF_STATE;
|
||||
}
|
||||
|
||||
/* We expect the 'state id' to be zero */
|
||||
if (psci_get_pstate_id(power_state) != 0U) {
|
||||
return PSCI_E_INVALID_PARAMS;
|
||||
}
|
||||
|
||||
return PSCI_E_SUCCESS;
|
||||
}
|
||||
|
||||
/**
|
||||
* versal_get_sys_suspend_power_state() - Get power state for system suspend
|
||||
*
|
||||
* @req_state Requested state
|
||||
*/
|
||||
static void versal_get_sys_suspend_power_state(psci_power_state_t *req_state)
|
||||
{
|
||||
req_state->pwr_domain_state[PSCI_CPU_PWR_LVL] = PLAT_MAX_OFF_STATE;
|
||||
req_state->pwr_domain_state[1] = PLAT_MAX_OFF_STATE;
|
||||
}
|
||||
|
||||
static const struct plat_psci_ops versal_nopmc_psci_ops = {
|
||||
.pwr_domain_on = versal_pwr_domain_on,
|
||||
.pwr_domain_off = versal_pwr_domain_off,
|
||||
.pwr_domain_on_finish = versal_pwr_domain_on_finish,
|
||||
.pwr_domain_suspend = versal_pwr_domain_suspend,
|
||||
.pwr_domain_suspend_finish = versal_pwr_domain_suspend_finish,
|
||||
.system_off = versal_system_off,
|
||||
.system_reset = versal_system_reset,
|
||||
.validate_power_state = versal_validate_power_state,
|
||||
.get_sys_suspend_power_state = versal_get_sys_suspend_power_state,
|
||||
};
|
||||
|
||||
/*******************************************************************************
|
||||
* Export the platform specific power ops.
|
||||
******************************************************************************/
|
||||
int32_t plat_setup_psci_ops(uintptr_t sec_entrypoint,
|
||||
const struct plat_psci_ops **psci_ops)
|
||||
{
|
||||
versal_sec_entry = sec_entrypoint;
|
||||
|
||||
*psci_ops = &versal_nopmc_psci_ops;
|
||||
|
||||
return 0;
|
||||
}
|
||||
@@ -0,0 +1,14 @@
|
||||
/*
|
||||
* Copyright (c) 2018, ARM Limited and Contributors. All rights reserved.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
|
||||
#include <platform_def.h>
|
||||
|
||||
static const uint8_t plat_power_domain_tree_desc[] = {1, PLATFORM_CORE_COUNT};
|
||||
|
||||
const uint8_t *plat_get_power_domain_tree_desc(void)
|
||||
{
|
||||
return plat_power_domain_tree_desc;
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
/*
|
||||
* Copyright (c) 2018-2021, ARM Limited and Contributors. All rights reserved.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
|
||||
#include <plat_private.h>
|
||||
#include <plat/common/platform.h>
|
||||
|
||||
int32_t plat_core_pos_by_mpidr(u_register_t mpidr)
|
||||
{
|
||||
if ((mpidr & MPIDR_CLUSTER_MASK) != 0U) {
|
||||
return -1;
|
||||
}
|
||||
|
||||
if ((mpidr & MPIDR_CPU_MASK) >= PLATFORM_CORE_COUNT) {
|
||||
return -1;
|
||||
}
|
||||
|
||||
return (int32_t)versal_calc_core_pos(mpidr);
|
||||
}
|
||||
@@ -0,0 +1,98 @@
|
||||
# Copyright (c) 2018-2021, ARM Limited and Contributors. All rights reserved.
|
||||
#
|
||||
# SPDX-License-Identifier: BSD-3-Clause
|
||||
|
||||
override PROGRAMMABLE_RESET_ADDRESS := 1
|
||||
PSCI_EXTENDED_STATE_ID := 1
|
||||
A53_DISABLE_NON_TEMPORAL_HINT := 0
|
||||
SEPARATE_CODE_AND_RODATA := 1
|
||||
override RESET_TO_BL31 := 1
|
||||
PL011_GENERIC_UART := 1
|
||||
IPI_CRC_CHECK := 0
|
||||
HARDEN_SLS_ALL := 0
|
||||
|
||||
# A72 Erratum for SoC
|
||||
ERRATA_A72_859971 := 1
|
||||
ERRATA_A72_1319367 := 1
|
||||
|
||||
ifdef VERSAL_ATF_MEM_BASE
|
||||
$(eval $(call add_define,VERSAL_ATF_MEM_BASE))
|
||||
|
||||
ifndef VERSAL_ATF_MEM_SIZE
|
||||
$(error "VERSAL_ATF_BASE defined without VERSAL_ATF_SIZE")
|
||||
endif
|
||||
$(eval $(call add_define,VERSAL_ATF_MEM_SIZE))
|
||||
|
||||
ifdef VERSAL_ATF_MEM_PROGBITS_SIZE
|
||||
$(eval $(call add_define,VERSAL_ATF_MEM_PROGBITS_SIZE))
|
||||
endif
|
||||
endif
|
||||
|
||||
ifdef VERSAL_BL32_MEM_BASE
|
||||
$(eval $(call add_define,VERSAL_BL32_MEM_BASE))
|
||||
|
||||
ifndef VERSAL_BL32_MEM_SIZE
|
||||
$(error "VERSAL_BL32_BASE defined without VERSAL_BL32_SIZE")
|
||||
endif
|
||||
$(eval $(call add_define,VERSAL_BL32_MEM_SIZE))
|
||||
endif
|
||||
|
||||
ifdef IPI_CRC_CHECK
|
||||
$(eval $(call add_define,IPI_CRC_CHECK))
|
||||
endif
|
||||
|
||||
VERSAL_PLATFORM ?= silicon
|
||||
$(eval $(call add_define_val,VERSAL_PLATFORM,VERSAL_PLATFORM_ID_${VERSAL_PLATFORM}))
|
||||
|
||||
PLAT_INCLUDES := -Iinclude/plat/arm/common/ \
|
||||
-Iplat/xilinx/common/include/ \
|
||||
-Iplat/xilinx/common/ipi_mailbox_service/ \
|
||||
-Iplat/xilinx/versal/include/ \
|
||||
-Iplat/xilinx/versal/pm_service/
|
||||
|
||||
# Include GICv3 driver files
|
||||
include drivers/arm/gic/v3/gicv3.mk
|
||||
|
||||
PLAT_BL_COMMON_SOURCES := lib/xlat_tables/xlat_tables_common.c \
|
||||
lib/xlat_tables/aarch64/xlat_tables.c \
|
||||
drivers/arm/dcc/dcc_console.c \
|
||||
drivers/delay_timer/delay_timer.c \
|
||||
drivers/delay_timer/generic_delay_timer.c \
|
||||
${GICV3_SOURCES} \
|
||||
drivers/arm/pl011/aarch64/pl011_console.S \
|
||||
plat/common/aarch64/crash_console_helpers.S \
|
||||
plat/arm/common/arm_cci.c \
|
||||
plat/arm/common/arm_common.c \
|
||||
plat/common/plat_gicv3.c \
|
||||
plat/xilinx/versal/aarch64/versal_helpers.S \
|
||||
plat/xilinx/versal/aarch64/versal_common.c
|
||||
|
||||
VERSAL_CONSOLE ?= pl011
|
||||
ifeq (${VERSAL_CONSOLE}, $(filter ${VERSAL_CONSOLE},pl011 pl011_0 pl011_1 dcc))
|
||||
else
|
||||
$(error "Please define VERSAL_CONSOLE")
|
||||
endif
|
||||
|
||||
$(eval $(call add_define_val,VERSAL_CONSOLE,VERSAL_CONSOLE_ID_${VERSAL_CONSOLE}))
|
||||
|
||||
BL31_SOURCES += drivers/arm/cci/cci.c \
|
||||
lib/cpus/aarch64/cortex_a72.S \
|
||||
plat/common/plat_psci_common.c \
|
||||
plat/xilinx/common/ipi.c \
|
||||
plat/xilinx/common/plat_startup.c \
|
||||
plat/xilinx/common/ipi_mailbox_service/ipi_mailbox_svc.c \
|
||||
plat/xilinx/common/pm_service/pm_ipi.c \
|
||||
plat/xilinx/versal/bl31_versal_setup.c \
|
||||
plat/xilinx/versal/plat_psci.c \
|
||||
plat/xilinx/versal/plat_versal.c \
|
||||
plat/xilinx/versal/plat_topology.c \
|
||||
plat/xilinx/versal/sip_svc_setup.c \
|
||||
plat/xilinx/versal/versal_gicv3.c \
|
||||
plat/xilinx/versal/versal_ipi.c \
|
||||
plat/xilinx/versal/pm_service/pm_svc_main.c \
|
||||
plat/xilinx/versal/pm_service/pm_api_sys.c \
|
||||
plat/xilinx/versal/pm_service/pm_client.c
|
||||
|
||||
ifeq ($(HARDEN_SLS_ALL), 1)
|
||||
TF_CFLAGS_aarch64 += -mharden-sls=all
|
||||
endif
|
||||
+589
@@ -0,0 +1,589 @@
|
||||
/*
|
||||
* Copyright (c) 2019-2022, Xilinx, Inc. All rights reserved.
|
||||
* Copyright (c) 2022, Advanced Micro Devices, Inc. All rights reserved.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
|
||||
/*
|
||||
* Versal system level PM-API functions and communication with PMC via
|
||||
* IPI interrupts
|
||||
*/
|
||||
|
||||
#include <pm_common.h>
|
||||
#include <pm_ipi.h>
|
||||
#include <plat/common/platform.h>
|
||||
#include "pm_api_sys.h"
|
||||
#include "pm_client.h"
|
||||
#include "pm_defs.h"
|
||||
#include "pm_svc_main.h"
|
||||
|
||||
/* default shutdown/reboot scope is system(2) */
|
||||
static uint32_t pm_shutdown_scope = XPM_SHUTDOWN_SUBTYPE_RST_SYSTEM;
|
||||
|
||||
/**
|
||||
* pm_get_shutdown_scope() - Get the currently set shutdown scope
|
||||
*
|
||||
* @return Shutdown scope value
|
||||
*/
|
||||
uint32_t pm_get_shutdown_scope(void)
|
||||
{
|
||||
return pm_shutdown_scope;
|
||||
}
|
||||
|
||||
/* PM API functions */
|
||||
|
||||
/**
|
||||
* pm_handle_eemi_call() - PM call for processor to send eemi payload
|
||||
* @flag 0 - Call from secure source
|
||||
* 1 - Call from non-secure source
|
||||
* @x0 to x5 Arguments received per SMC64 standard
|
||||
* @result Payload received from firmware
|
||||
*
|
||||
* @return PM_RET_SUCCESS on success or error code
|
||||
*/
|
||||
enum pm_ret_status pm_handle_eemi_call(uint32_t flag, uint32_t x0, uint32_t x1,
|
||||
uint32_t x2, uint32_t x3, uint32_t x4,
|
||||
uint32_t x5, uint64_t *result)
|
||||
{
|
||||
uint32_t payload[PAYLOAD_ARG_CNT] = {0};
|
||||
uint32_t module_id;
|
||||
|
||||
module_id = (x0 & MODULE_ID_MASK) >> 8U;
|
||||
|
||||
//default module id is for LIBPM
|
||||
if (module_id == 0) {
|
||||
module_id = LIBPM_MODULE_ID;
|
||||
}
|
||||
|
||||
PM_PACK_PAYLOAD6(payload, module_id, flag, x0, x1, x2, x3, x4, x5);
|
||||
return pm_ipi_send_sync(primary_proc, payload, (uint32_t *)result, PAYLOAD_ARG_CNT);
|
||||
}
|
||||
|
||||
/**
|
||||
* pm_self_suspend() - PM call for processor to suspend itself
|
||||
* @nid Node id of the processor or subsystem
|
||||
* @latency Requested maximum wakeup latency (not supported)
|
||||
* @state Requested state
|
||||
* @address Resume address
|
||||
* @flag 0 - Call from secure source
|
||||
* 1 - Call from non-secure source
|
||||
*
|
||||
* This is a blocking call, it will return only once PMU has responded.
|
||||
* On a wakeup, resume address will be automatically set by PMU.
|
||||
*
|
||||
* @return Returns status, either success or error+reason
|
||||
*/
|
||||
enum pm_ret_status pm_self_suspend(uint32_t nid,
|
||||
uint32_t latency,
|
||||
uint32_t state,
|
||||
uintptr_t address, uint32_t flag)
|
||||
{
|
||||
uint32_t payload[PAYLOAD_ARG_CNT];
|
||||
uint32_t cpuid = plat_my_core_pos();
|
||||
const struct pm_proc *proc = pm_get_proc(cpuid);
|
||||
|
||||
if (proc == NULL) {
|
||||
WARN("Failed to get proc %d\n", cpuid);
|
||||
return PM_RET_ERROR_INTERNAL;
|
||||
}
|
||||
|
||||
/*
|
||||
* Do client specific suspend operations
|
||||
* (e.g. set powerdown request bit)
|
||||
*/
|
||||
pm_client_suspend(proc, state);
|
||||
|
||||
/* Send request to the PLM */
|
||||
PM_PACK_PAYLOAD6(payload, LIBPM_MODULE_ID, flag, PM_SELF_SUSPEND,
|
||||
proc->node_id, latency, state, address,
|
||||
(address >> 32));
|
||||
return pm_ipi_send_sync(proc, payload, NULL, 0);
|
||||
}
|
||||
|
||||
/**
|
||||
* pm_abort_suspend() - PM call to announce that a prior suspend request
|
||||
* is to be aborted.
|
||||
* @reason Reason for the abort
|
||||
* @flag 0 - Call from secure source
|
||||
* 1 - Call from non-secure source
|
||||
*
|
||||
* Calling PU expects the PMU to abort the initiated suspend procedure.
|
||||
* This is a non-blocking call without any acknowledge.
|
||||
*
|
||||
* @return Returns status, either success or error+reason
|
||||
*/
|
||||
enum pm_ret_status pm_abort_suspend(enum pm_abort_reason reason, uint32_t flag)
|
||||
{
|
||||
uint32_t payload[PAYLOAD_ARG_CNT];
|
||||
|
||||
/*
|
||||
* Do client specific abort suspend operations
|
||||
* (e.g. enable interrupts and clear powerdown request bit)
|
||||
*/
|
||||
pm_client_abort_suspend();
|
||||
|
||||
/* Send request to the PLM */
|
||||
PM_PACK_PAYLOAD3(payload, LIBPM_MODULE_ID, flag, PM_ABORT_SUSPEND,
|
||||
reason, primary_proc->node_id);
|
||||
return pm_ipi_send_sync(primary_proc, payload, NULL, 0);
|
||||
}
|
||||
|
||||
/**
|
||||
* pm_req_suspend() - PM call to request for another PU or subsystem to
|
||||
* be suspended gracefully.
|
||||
* @target Node id of the targeted PU or subsystem
|
||||
* @ack Flag to specify whether acknowledge is requested
|
||||
* @latency Requested wakeup latency (not supported)
|
||||
* @state Requested state (not supported)
|
||||
* @flag 0 - Call from secure source
|
||||
* 1 - Call from non-secure source
|
||||
*
|
||||
* @return Returns status, either success or error+reason
|
||||
*/
|
||||
enum pm_ret_status pm_req_suspend(uint32_t target, uint8_t ack,
|
||||
uint32_t latency, uint32_t state,
|
||||
uint32_t flag)
|
||||
{
|
||||
uint32_t payload[PAYLOAD_ARG_CNT];
|
||||
|
||||
/* Send request to the PMU */
|
||||
PM_PACK_PAYLOAD4(payload, LIBPM_MODULE_ID, flag, PM_REQ_SUSPEND, target,
|
||||
latency, state);
|
||||
if (ack == IPI_BLOCKING) {
|
||||
return pm_ipi_send_sync(primary_proc, payload, NULL, 0);
|
||||
} else {
|
||||
return pm_ipi_send(primary_proc, payload);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* pm_req_wakeup() - PM call for processor to wake up selected processor
|
||||
* or subsystem
|
||||
* @target Device ID of the processor or subsystem to wake up
|
||||
* @set_address Resume address presence indicator
|
||||
* 1 - resume address specified, 0 - otherwise
|
||||
* @address Resume address
|
||||
* @ack Flag to specify whether acknowledge requested
|
||||
* @flag 0 - Call from secure source
|
||||
* 1 - Call from non-secure source
|
||||
*
|
||||
* This API function is either used to power up another APU core for SMP
|
||||
* (by PSCI) or to power up an entirely different PU or subsystem, such
|
||||
* as RPU0, RPU, or PL_CORE_xx. Resume address for the target PU will be
|
||||
* automatically set by PMC.
|
||||
*
|
||||
* @return Returns status, either success or error+reason
|
||||
*/
|
||||
enum pm_ret_status pm_req_wakeup(uint32_t target, uint32_t set_address,
|
||||
uintptr_t address, uint8_t ack, uint32_t flag)
|
||||
{
|
||||
uint32_t payload[PAYLOAD_ARG_CNT];
|
||||
|
||||
/* Send request to the PMC to perform the wake of the PU */
|
||||
PM_PACK_PAYLOAD5(payload, LIBPM_MODULE_ID, flag, PM_REQ_WAKEUP, target,
|
||||
set_address, address, ack);
|
||||
|
||||
return pm_ipi_send_sync(primary_proc, payload, NULL, 0);
|
||||
}
|
||||
|
||||
/**
|
||||
* pm_get_callbackdata() - Read from IPI response buffer
|
||||
* @data - array of PAYLOAD_ARG_CNT elements
|
||||
* @flag - 0 - Call from secure source
|
||||
* 1 - Call from non-secure source
|
||||
* @ack - 0 - Do not ack IPI after reading payload
|
||||
* 1 - Ack IPI after reading payload
|
||||
*
|
||||
* Read value from ipi buffer response buffer.
|
||||
*/
|
||||
void pm_get_callbackdata(uint32_t *data, size_t count, uint32_t flag, uint32_t ack)
|
||||
{
|
||||
/* Return if interrupt is not from PMU */
|
||||
if (pm_ipi_irq_status(primary_proc) == 0) {
|
||||
return;
|
||||
}
|
||||
|
||||
pm_ipi_buff_read_callb(data, count);
|
||||
|
||||
if (ack != 0U) {
|
||||
pm_ipi_irq_clear(primary_proc);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* pm_pll_set_param() - Set PLL parameter
|
||||
*
|
||||
* This API is deprecated and maintained here for backward compatibility.
|
||||
* New use of this API should be avoided for versal platform.
|
||||
* This API and its use cases will be removed for versal platform.
|
||||
*
|
||||
* @clk_id PLL clock ID
|
||||
* @param PLL parameter ID
|
||||
* @value Value to set for PLL parameter
|
||||
* @flag 0 - Call from secure source
|
||||
* 1 - Call from non-secure source
|
||||
*
|
||||
* @return Returns status, either success or error+reason
|
||||
*/
|
||||
enum pm_ret_status pm_pll_set_param(uint32_t clk_id, uint32_t param,
|
||||
uint32_t value, uint32_t flag)
|
||||
{
|
||||
uint32_t payload[PAYLOAD_ARG_CNT];
|
||||
|
||||
/* Send request to the PMC */
|
||||
PM_PACK_PAYLOAD4(payload, LIBPM_MODULE_ID, flag, PM_PLL_SET_PARAMETER,
|
||||
clk_id, param, value);
|
||||
|
||||
return pm_ipi_send_sync(primary_proc, payload, NULL, 0);
|
||||
}
|
||||
|
||||
/**
|
||||
* pm_pll_get_param() - Get PLL parameter value
|
||||
*
|
||||
* This API is deprecated and maintained here for backward compatibility.
|
||||
* New use of this API should be avoided for versal platform.
|
||||
* This API and its use cases will be removed for versal platform.
|
||||
*
|
||||
* @clk_id PLL clock ID
|
||||
* @param PLL parameter ID
|
||||
* @value: Buffer to store PLL parameter value
|
||||
* @flag 0 - Call from secure source
|
||||
* 1 - Call from non-secure source
|
||||
*
|
||||
* @return Returns status, either success or error+reason
|
||||
*/
|
||||
enum pm_ret_status pm_pll_get_param(uint32_t clk_id, uint32_t param,
|
||||
uint32_t *value, uint32_t flag)
|
||||
{
|
||||
uint32_t payload[PAYLOAD_ARG_CNT];
|
||||
|
||||
/* Send request to the PMC */
|
||||
PM_PACK_PAYLOAD3(payload, LIBPM_MODULE_ID, flag, PM_PLL_GET_PARAMETER,
|
||||
clk_id, param);
|
||||
|
||||
return pm_ipi_send_sync(primary_proc, payload, value, 1);
|
||||
}
|
||||
|
||||
/**
|
||||
* pm_pll_set_mode() - Set PLL mode
|
||||
*
|
||||
* This API is deprecated and maintained here for backward compatibility.
|
||||
* New use of this API should be avoided for versal platform.
|
||||
* This API and its use cases will be removed for versal platform.
|
||||
*
|
||||
* @clk_id PLL clock ID
|
||||
* @mode PLL mode
|
||||
* @flag 0 - Call from secure source
|
||||
* 1 - Call from non-secure source
|
||||
*
|
||||
* @return Returns status, either success or error+reason
|
||||
*/
|
||||
enum pm_ret_status pm_pll_set_mode(uint32_t clk_id, uint32_t mode,
|
||||
uint32_t flag)
|
||||
{
|
||||
uint32_t payload[PAYLOAD_ARG_CNT];
|
||||
|
||||
/* Send request to the PMC */
|
||||
PM_PACK_PAYLOAD3(payload, LIBPM_MODULE_ID, flag, PM_PLL_SET_MODE,
|
||||
clk_id, mode);
|
||||
|
||||
return pm_ipi_send_sync(primary_proc, payload, NULL, 0);
|
||||
}
|
||||
|
||||
/**
|
||||
* pm_pll_get_mode() - Get PLL mode
|
||||
*
|
||||
* This API is deprecated and maintained here for backward compatibility.
|
||||
* New use of this API should be avoided for versal platform.
|
||||
* This API and its use cases will be removed for versal platform.
|
||||
*
|
||||
* @clk_id PLL clock ID
|
||||
* @mode: Buffer to store PLL mode
|
||||
* @flag 0 - Call from secure source
|
||||
* 1 - Call from non-secure source
|
||||
*
|
||||
* @return Returns status, either success or error+reason
|
||||
*/
|
||||
enum pm_ret_status pm_pll_get_mode(uint32_t clk_id, uint32_t *mode,
|
||||
uint32_t flag)
|
||||
{
|
||||
uint32_t payload[PAYLOAD_ARG_CNT];
|
||||
|
||||
/* Send request to the PMC */
|
||||
PM_PACK_PAYLOAD2(payload, LIBPM_MODULE_ID, flag, PM_PLL_GET_MODE,
|
||||
clk_id);
|
||||
|
||||
return pm_ipi_send_sync(primary_proc, payload, mode, 1);
|
||||
}
|
||||
|
||||
/**
|
||||
* pm_force_powerdown() - PM call to request for another PU or subsystem to
|
||||
* be powered down forcefully
|
||||
* @target Device ID of the PU node to be forced powered down.
|
||||
* @ack Flag to specify whether acknowledge is requested
|
||||
* @flag 0 - Call from secure source
|
||||
* 1 - Call from non-secure source
|
||||
*
|
||||
* @return Returns status, either success or error+reason
|
||||
*/
|
||||
enum pm_ret_status pm_force_powerdown(uint32_t target, uint8_t ack,
|
||||
uint32_t flag)
|
||||
{
|
||||
uint32_t payload[PAYLOAD_ARG_CNT];
|
||||
|
||||
/* Send request to the PMC */
|
||||
PM_PACK_PAYLOAD3(payload, LIBPM_MODULE_ID, flag, PM_FORCE_POWERDOWN,
|
||||
target, ack);
|
||||
|
||||
if (ack == IPI_BLOCKING) {
|
||||
return pm_ipi_send_sync(primary_proc, payload, NULL, 0);
|
||||
} else {
|
||||
return pm_ipi_send(primary_proc, payload);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* pm_system_shutdown() - PM call to request a system shutdown or restart
|
||||
* @type Shutdown or restart? 0=shutdown, 1=restart, 2=setscope
|
||||
* @subtype Scope: 0=APU-subsystem, 1=PS, 2=system
|
||||
* @flag 0 - Call from secure source
|
||||
* 1 - Call from non-secure source
|
||||
*
|
||||
* @return Returns status, either success or error+reason
|
||||
*/
|
||||
enum pm_ret_status pm_system_shutdown(uint32_t type, uint32_t subtype,
|
||||
uint32_t flag)
|
||||
{
|
||||
uint32_t payload[PAYLOAD_ARG_CNT];
|
||||
|
||||
if (type == XPM_SHUTDOWN_TYPE_SETSCOPE_ONLY) {
|
||||
/* Setting scope for subsequent PSCI reboot or shutdown */
|
||||
pm_shutdown_scope = subtype;
|
||||
return PM_RET_SUCCESS;
|
||||
}
|
||||
|
||||
/* Send request to the PMC */
|
||||
PM_PACK_PAYLOAD3(payload, LIBPM_MODULE_ID, flag, PM_SYSTEM_SHUTDOWN,
|
||||
type, subtype);
|
||||
|
||||
return pm_ipi_send_non_blocking(primary_proc, payload);
|
||||
}
|
||||
|
||||
/**
|
||||
* pm_query_data() - PM API for querying firmware data
|
||||
*
|
||||
* This API is deprecated and maintained here for backward compatibility.
|
||||
* New use of this API should be avoided for versal platform.
|
||||
* This API and its use cases will be removed for versal platform.
|
||||
*
|
||||
* @qid The type of data to query
|
||||
* @arg1 Argument 1 to requested query data call
|
||||
* @arg2 Argument 2 to requested query data call
|
||||
* @arg3 Argument 3 to requested query data call
|
||||
* @data Returned output data
|
||||
* @flag 0 - Call from secure source
|
||||
* 1 - Call from non-secure source
|
||||
*
|
||||
* @retur - 0 if success else non-zero error code of type
|
||||
* enum pm_ret_status
|
||||
*/
|
||||
enum pm_ret_status pm_query_data(uint32_t qid, uint32_t arg1, uint32_t arg2,
|
||||
uint32_t arg3, uint32_t *data, uint32_t flag)
|
||||
{
|
||||
uint32_t ret;
|
||||
uint32_t version[PAYLOAD_ARG_CNT] = {0};
|
||||
uint32_t payload[PAYLOAD_ARG_CNT];
|
||||
uint32_t fw_api_version;
|
||||
|
||||
/* Send request to the PMC */
|
||||
PM_PACK_PAYLOAD5(payload, LIBPM_MODULE_ID, flag, PM_QUERY_DATA, qid,
|
||||
arg1, arg2, arg3);
|
||||
|
||||
ret = pm_feature_check(PM_QUERY_DATA, &version[0], flag);
|
||||
if (ret == PM_RET_SUCCESS) {
|
||||
fw_api_version = version[0] & 0xFFFFU;
|
||||
if ((fw_api_version == 2U) &&
|
||||
((qid == XPM_QID_CLOCK_GET_NAME) ||
|
||||
(qid == XPM_QID_PINCTRL_GET_FUNCTION_NAME))) {
|
||||
ret = pm_ipi_send_sync(primary_proc, payload, data, PAYLOAD_ARG_CNT);
|
||||
if (ret == PM_RET_SUCCESS) {
|
||||
ret = data[0];
|
||||
data[0] = data[1];
|
||||
data[1] = data[2];
|
||||
data[2] = data[3];
|
||||
}
|
||||
} else {
|
||||
ret = pm_ipi_send_sync(primary_proc, payload, data, PAYLOAD_ARG_CNT);
|
||||
}
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
/**
|
||||
* pm_api_ioctl() - PM IOCTL API for device control and configs
|
||||
*
|
||||
* This API is deprecated and maintained here for backward compatibility.
|
||||
* New use of this API should be avoided for versal platform.
|
||||
* This API and its use cases will be removed for versal platform.
|
||||
*
|
||||
* @device_id Device ID
|
||||
* @ioctl_id ID of the requested IOCTL
|
||||
* @arg1 Argument 1 to requested IOCTL call
|
||||
* @arg2 Argument 2 to requested IOCTL call
|
||||
* @arg3 Argument 3 to requested IOCTL call
|
||||
* @value Returned output value
|
||||
* @flag 0 - Call from secure source
|
||||
* 1 - Call from non-secure source
|
||||
*
|
||||
* This function calls IOCTL to firmware for device control and configuration.
|
||||
*
|
||||
* @return Returns status, either 0 on success or non-zero error code
|
||||
* of type enum pm_ret_status
|
||||
*/
|
||||
enum pm_ret_status pm_api_ioctl(uint32_t device_id, uint32_t ioctl_id,
|
||||
uint32_t arg1, uint32_t arg2, uint32_t arg3,
|
||||
uint32_t *value, uint32_t flag)
|
||||
{
|
||||
enum pm_ret_status ret;
|
||||
|
||||
switch (ioctl_id) {
|
||||
case IOCTL_SET_PLL_FRAC_MODE:
|
||||
ret = pm_pll_set_mode(arg1, arg2, flag);
|
||||
break;
|
||||
case IOCTL_GET_PLL_FRAC_MODE:
|
||||
ret = pm_pll_get_mode(arg1, value, flag);
|
||||
break;
|
||||
case IOCTL_SET_PLL_FRAC_DATA:
|
||||
ret = pm_pll_set_param(arg1, PM_PLL_PARAM_DATA, arg2, flag);
|
||||
break;
|
||||
case IOCTL_GET_PLL_FRAC_DATA:
|
||||
ret = pm_pll_get_param(arg1, PM_PLL_PARAM_DATA, value, flag);
|
||||
break;
|
||||
case IOCTL_SET_SGI:
|
||||
/* Get the sgi number */
|
||||
ret = pm_register_sgi(arg1, arg2);
|
||||
if (ret != 0) {
|
||||
return PM_RET_ERROR_ARGS;
|
||||
}
|
||||
ret = PM_RET_SUCCESS;
|
||||
break;
|
||||
default:
|
||||
return PM_RET_ERROR_NOTSUPPORTED;
|
||||
}
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
/**
|
||||
* pm_set_wakeup_source() - PM call to specify the wakeup source while suspended
|
||||
* @target Device id of the targeted PU or subsystem
|
||||
* @wkup_node Device id of the wakeup peripheral
|
||||
* @enable Enable or disable the specified peripheral as wake source
|
||||
* @flag 0 - Call from secure source
|
||||
* 1 - Call from non-secure source
|
||||
*
|
||||
* @return Returns status, either success or error+reason
|
||||
*/
|
||||
enum pm_ret_status pm_set_wakeup_source(uint32_t target, uint32_t wkup_device,
|
||||
uint8_t enable, uint32_t flag)
|
||||
{
|
||||
uint32_t payload[PAYLOAD_ARG_CNT];
|
||||
|
||||
PM_PACK_PAYLOAD4(payload, LIBPM_MODULE_ID, flag, PM_SET_WAKEUP_SOURCE,
|
||||
target, wkup_device, enable);
|
||||
return pm_ipi_send_sync(primary_proc, payload, NULL, 0);
|
||||
}
|
||||
|
||||
/**
|
||||
* pm_feature_check() - Returns the supported API version if supported
|
||||
* @api_id API ID to check
|
||||
* @flag 0 - Call from secure source
|
||||
* 1 - Call from non-secure source
|
||||
* @ret_payload pointer to array of PAYLOAD_ARG_CNT number of
|
||||
* words Returned supported API version and bitmasks
|
||||
* for IOCTL and QUERY ID
|
||||
*
|
||||
* @return Returns status, either success or error+reason
|
||||
*/
|
||||
enum pm_ret_status pm_feature_check(uint32_t api_id, uint32_t *ret_payload,
|
||||
uint32_t flag)
|
||||
{
|
||||
uint32_t payload[PAYLOAD_ARG_CNT];
|
||||
uint32_t module_id;
|
||||
|
||||
/* Return version of API which are implemented in ATF only */
|
||||
switch (api_id) {
|
||||
case PM_GET_CALLBACK_DATA:
|
||||
case PM_GET_TRUSTZONE_VERSION:
|
||||
ret_payload[0] = PM_API_VERSION_2;
|
||||
return PM_RET_SUCCESS;
|
||||
case TF_A_PM_REGISTER_SGI:
|
||||
ret_payload[0] = PM_API_BASE_VERSION;
|
||||
return PM_RET_SUCCESS;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
module_id = (api_id & MODULE_ID_MASK) >> 8U;
|
||||
|
||||
/*
|
||||
* feature check should be done only for LIBPM module
|
||||
* If module_id is 0, then we consider it LIBPM module as default id
|
||||
*/
|
||||
if ((module_id > 0) && (module_id != LIBPM_MODULE_ID)) {
|
||||
return PM_RET_SUCCESS;
|
||||
}
|
||||
|
||||
PM_PACK_PAYLOAD2(payload, LIBPM_MODULE_ID, flag,
|
||||
PM_FEATURE_CHECK, api_id);
|
||||
return pm_ipi_send_sync(primary_proc, payload, ret_payload, PAYLOAD_ARG_CNT);
|
||||
}
|
||||
|
||||
/**
|
||||
* pm_load_pdi() - Load the PDI
|
||||
*
|
||||
* This function provides support to load PDI from linux
|
||||
*
|
||||
* src: Source device of pdi(DDR, OCM, SD etc)
|
||||
* address_low: lower 32-bit Linear memory space address
|
||||
* address_high: higher 32-bit Linear memory space address
|
||||
* @flag 0 - Call from secure source
|
||||
* 1 - Call from non-secure source
|
||||
*
|
||||
* @return Returns status, either success or error+reason
|
||||
*/
|
||||
enum pm_ret_status pm_load_pdi(uint32_t src, uint32_t address_low,
|
||||
uint32_t address_high, uint32_t flag)
|
||||
{
|
||||
uint32_t payload[PAYLOAD_ARG_CNT];
|
||||
|
||||
/* Send request to the PMU */
|
||||
PM_PACK_PAYLOAD4(payload, LOADER_MODULE_ID, flag, PM_LOAD_PDI, src,
|
||||
address_high, address_low);
|
||||
return pm_ipi_send_sync(primary_proc, payload, NULL, 0);
|
||||
}
|
||||
|
||||
/**
|
||||
* pm_register_notifier() - PM call to register a subsystem to be notified
|
||||
* about the device event
|
||||
* @device_id Device ID for the Node to which the event is related
|
||||
* @event Event in question
|
||||
* @wake Wake subsystem upon capturing the event if value 1
|
||||
* @enable Enable the registration for value 1, disable for value 0
|
||||
* @flag 0 - Call from secure source
|
||||
* 1 - Call from non-secure source
|
||||
*
|
||||
* @return Returns status, either success or error+reason
|
||||
*/
|
||||
enum pm_ret_status pm_register_notifier(uint32_t device_id, uint32_t event,
|
||||
uint32_t wake, uint32_t enable,
|
||||
uint32_t flag)
|
||||
{
|
||||
uint32_t payload[PAYLOAD_ARG_CNT];
|
||||
|
||||
/* Send request to the PMC */
|
||||
PM_PACK_PAYLOAD5(payload, LIBPM_MODULE_ID, flag, PM_REGISTER_NOTIFIER,
|
||||
device_id, event, wake, enable);
|
||||
|
||||
return pm_ipi_send_sync(primary_proc, payload, NULL, 0);
|
||||
}
|
||||
+101
@@ -0,0 +1,101 @@
|
||||
/*
|
||||
* Copyright (c) 2019-2022, Xilinx, Inc. All rights reserved.
|
||||
* Copyright (c) 2022, Advanced Micro Devices, Inc. All rights reserved.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
|
||||
#ifndef PM_API_SYS_H
|
||||
#define PM_API_SYS_H
|
||||
|
||||
#include <stdint.h>
|
||||
#include "pm_defs.h"
|
||||
|
||||
/*********************************************************************
|
||||
* Target module IDs macros
|
||||
********************************************************************/
|
||||
#define LIBPM_MODULE_ID 0x2U
|
||||
#define LOADER_MODULE_ID 0x7U
|
||||
|
||||
#define MODULE_ID_MASK 0x0000ff00U
|
||||
/**********************************************************
|
||||
* PM API function declarations
|
||||
**********************************************************/
|
||||
|
||||
enum pm_ret_status pm_handle_eemi_call(uint32_t flag, uint32_t x0, uint32_t x1,
|
||||
uint32_t x2, uint32_t x3, uint32_t x4,
|
||||
uint32_t x5, uint64_t *result);
|
||||
enum pm_ret_status pm_self_suspend(uint32_t nid,
|
||||
uint32_t latency,
|
||||
uint32_t state,
|
||||
uintptr_t address, uint32_t flag);
|
||||
enum pm_ret_status pm_abort_suspend(enum pm_abort_reason reason, uint32_t flag);
|
||||
enum pm_ret_status pm_req_suspend(uint32_t target,
|
||||
uint8_t ack,
|
||||
uint32_t latency,
|
||||
uint32_t state, uint32_t flag);
|
||||
enum pm_ret_status pm_req_wakeup(uint32_t target, uint32_t set_address,
|
||||
uintptr_t address, uint8_t ack, uint32_t flag);
|
||||
enum pm_ret_status pm_set_wakeup_source(uint32_t target, uint32_t device_id,
|
||||
uint8_t enable, uint32_t flag);
|
||||
void pm_get_callbackdata(uint32_t *data, size_t count, uint32_t flag,
|
||||
uint32_t ack);
|
||||
enum pm_ret_status pm_pll_set_param(uint32_t clk_id, uint32_t param,
|
||||
uint32_t value, uint32_t flag);
|
||||
enum pm_ret_status pm_pll_get_param(uint32_t clk_id, uint32_t param,
|
||||
uint32_t *value, uint32_t flag);
|
||||
enum pm_ret_status pm_pll_set_mode(uint32_t clk_id, uint32_t mode,
|
||||
uint32_t flag);
|
||||
enum pm_ret_status pm_pll_get_mode(uint32_t clk_id, uint32_t *mode,
|
||||
uint32_t flag);
|
||||
enum pm_ret_status pm_force_powerdown(uint32_t target, uint8_t ack,
|
||||
uint32_t flag);
|
||||
enum pm_ret_status pm_system_shutdown(uint32_t type, uint32_t subtype,
|
||||
uint32_t flag);
|
||||
enum pm_ret_status pm_api_ioctl(uint32_t device_id, uint32_t ioctl_id,
|
||||
uint32_t arg1, uint32_t arg2, uint32_t arg3,
|
||||
uint32_t *value, uint32_t flag);
|
||||
enum pm_ret_status pm_query_data(uint32_t qid, uint32_t arg1, uint32_t arg2,
|
||||
uint32_t arg3, uint32_t *data, uint32_t flag);
|
||||
uint32_t pm_get_shutdown_scope(void);
|
||||
enum pm_ret_status pm_feature_check(uint32_t api_id, uint32_t *ret_payload,
|
||||
uint32_t flag);
|
||||
enum pm_ret_status pm_load_pdi(uint32_t src, uint32_t address_low,
|
||||
uint32_t address_high, uint32_t flag);
|
||||
enum pm_ret_status pm_register_notifier(uint32_t device_id, uint32_t event,
|
||||
uint32_t wake, uint32_t enable,
|
||||
uint32_t flag);
|
||||
|
||||
/**
|
||||
* Assigning of argument values into array elements.
|
||||
*/
|
||||
#define PM_PACK_PAYLOAD1(pl, mid, flag, arg0) { \
|
||||
pl[0] = (uint32_t)(((uint32_t)(arg0) & 0xFFU) | ((mid) << 8U) | ((flag) << 24U)); \
|
||||
}
|
||||
|
||||
#define PM_PACK_PAYLOAD2(pl, mid, flag, arg0, arg1) { \
|
||||
pl[1] = (uint32_t)(arg1); \
|
||||
PM_PACK_PAYLOAD1(pl, (mid), (flag), (arg0)); \
|
||||
}
|
||||
|
||||
#define PM_PACK_PAYLOAD3(pl, mid, flag, arg0, arg1, arg2) { \
|
||||
pl[2] = (uint32_t)(arg2); \
|
||||
PM_PACK_PAYLOAD2(pl, (mid), (flag), (arg0), (arg1)); \
|
||||
}
|
||||
|
||||
#define PM_PACK_PAYLOAD4(pl, mid, flag, arg0, arg1, arg2, arg3) { \
|
||||
pl[3] = (uint32_t)(arg3); \
|
||||
PM_PACK_PAYLOAD3(pl, (mid), (flag), (arg0), (arg1), (arg2)); \
|
||||
}
|
||||
|
||||
#define PM_PACK_PAYLOAD5(pl, mid, flag, arg0, arg1, arg2, arg3, arg4) { \
|
||||
pl[4] = (uint32_t)(arg4); \
|
||||
PM_PACK_PAYLOAD4(pl, (mid), (flag), (arg0), (arg1), (arg2), (arg3)); \
|
||||
}
|
||||
|
||||
#define PM_PACK_PAYLOAD6(pl, mid, flag, arg0, arg1, arg2, arg3, arg4, arg5) { \
|
||||
pl[5] = (uint32_t)(arg5); \
|
||||
PM_PACK_PAYLOAD5(pl, (mid), (flag), (arg0), (arg1), (arg2), (arg3), (arg4)); \
|
||||
}
|
||||
|
||||
#endif /* PM_API_SYS_H */
|
||||
+261
@@ -0,0 +1,261 @@
|
||||
/*
|
||||
* Copyright (c) 2019-2022, Xilinx, Inc. All rights reserved.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
|
||||
/*
|
||||
* APU specific definition of processors in the subsystem as well as functions
|
||||
* for getting information about and changing state of the APU.
|
||||
*/
|
||||
|
||||
#include <assert.h>
|
||||
#include <plat_ipi.h>
|
||||
#include <platform_def.h>
|
||||
#include <versal_def.h>
|
||||
#include <lib/bakery_lock.h>
|
||||
#include <lib/mmio.h>
|
||||
#include <lib/utils.h>
|
||||
#include <drivers/arm/gicv3.h>
|
||||
#include <drivers/arm/gic_common.h>
|
||||
#include <plat/common/platform.h>
|
||||
#include "pm_api_sys.h"
|
||||
#include "pm_client.h"
|
||||
#include "pm_defs.h"
|
||||
|
||||
#define UNDEFINED_CPUID (~0)
|
||||
#define IRQ_MAX 142U
|
||||
#define NUM_GICD_ISENABLER ((IRQ_MAX >> 5U) + 1U)
|
||||
|
||||
DEFINE_BAKERY_LOCK(pm_client_secure_lock);
|
||||
|
||||
static const struct pm_ipi apu_ipi = {
|
||||
.local_ipi_id = IPI_ID_APU,
|
||||
.remote_ipi_id = IPI_ID_PMC,
|
||||
.buffer_base = IPI_BUFFER_APU_BASE,
|
||||
};
|
||||
|
||||
/* Order in pm_procs_all array must match cpu ids */
|
||||
static const struct pm_proc pm_procs_all[] = {
|
||||
{
|
||||
.node_id = XPM_DEVID_ACPU_0,
|
||||
.ipi = &apu_ipi,
|
||||
.pwrdn_mask = APU_0_PWRCTL_CPUPWRDWNREQ_MASK,
|
||||
},
|
||||
{
|
||||
.node_id = XPM_DEVID_ACPU_1,
|
||||
.ipi = &apu_ipi,
|
||||
.pwrdn_mask = APU_1_PWRCTL_CPUPWRDWNREQ_MASK,
|
||||
}
|
||||
};
|
||||
|
||||
const struct pm_proc *primary_proc = &pm_procs_all[0];
|
||||
|
||||
/* Interrupt to PM node index map */
|
||||
static enum pm_device_node_idx irq_node_map[IRQ_MAX + 1] = {
|
||||
[13] = XPM_NODEIDX_DEV_GPIO,
|
||||
[14] = XPM_NODEIDX_DEV_I2C_0,
|
||||
[15] = XPM_NODEIDX_DEV_I2C_1,
|
||||
[16] = XPM_NODEIDX_DEV_SPI_0,
|
||||
[17] = XPM_NODEIDX_DEV_SPI_1,
|
||||
[18] = XPM_NODEIDX_DEV_UART_0,
|
||||
[19] = XPM_NODEIDX_DEV_UART_1,
|
||||
[20] = XPM_NODEIDX_DEV_CAN_FD_0,
|
||||
[21] = XPM_NODEIDX_DEV_CAN_FD_1,
|
||||
[22] = XPM_NODEIDX_DEV_USB_0,
|
||||
[23] = XPM_NODEIDX_DEV_USB_0,
|
||||
[24] = XPM_NODEIDX_DEV_USB_0,
|
||||
[25] = XPM_NODEIDX_DEV_USB_0,
|
||||
[26] = XPM_NODEIDX_DEV_USB_0,
|
||||
[37] = XPM_NODEIDX_DEV_TTC_0,
|
||||
[38] = XPM_NODEIDX_DEV_TTC_0,
|
||||
[39] = XPM_NODEIDX_DEV_TTC_0,
|
||||
[40] = XPM_NODEIDX_DEV_TTC_1,
|
||||
[41] = XPM_NODEIDX_DEV_TTC_1,
|
||||
[42] = XPM_NODEIDX_DEV_TTC_1,
|
||||
[43] = XPM_NODEIDX_DEV_TTC_2,
|
||||
[44] = XPM_NODEIDX_DEV_TTC_2,
|
||||
[45] = XPM_NODEIDX_DEV_TTC_2,
|
||||
[46] = XPM_NODEIDX_DEV_TTC_3,
|
||||
[47] = XPM_NODEIDX_DEV_TTC_3,
|
||||
[48] = XPM_NODEIDX_DEV_TTC_3,
|
||||
[56] = XPM_NODEIDX_DEV_GEM_0,
|
||||
[57] = XPM_NODEIDX_DEV_GEM_0,
|
||||
[58] = XPM_NODEIDX_DEV_GEM_1,
|
||||
[59] = XPM_NODEIDX_DEV_GEM_1,
|
||||
[60] = XPM_NODEIDX_DEV_ADMA_0,
|
||||
[61] = XPM_NODEIDX_DEV_ADMA_1,
|
||||
[62] = XPM_NODEIDX_DEV_ADMA_2,
|
||||
[63] = XPM_NODEIDX_DEV_ADMA_3,
|
||||
[64] = XPM_NODEIDX_DEV_ADMA_4,
|
||||
[65] = XPM_NODEIDX_DEV_ADMA_5,
|
||||
[66] = XPM_NODEIDX_DEV_ADMA_6,
|
||||
[67] = XPM_NODEIDX_DEV_ADMA_7,
|
||||
[74] = XPM_NODEIDX_DEV_USB_0,
|
||||
[126] = XPM_NODEIDX_DEV_SDIO_0,
|
||||
[127] = XPM_NODEIDX_DEV_SDIO_0,
|
||||
[128] = XPM_NODEIDX_DEV_SDIO_1,
|
||||
[129] = XPM_NODEIDX_DEV_SDIO_1,
|
||||
[142] = XPM_NODEIDX_DEV_RTC,
|
||||
};
|
||||
|
||||
/**
|
||||
* irq_to_pm_node_idx - Get PM node index corresponding to the interrupt number
|
||||
* @irq: Interrupt number
|
||||
*
|
||||
* Return: PM node index corresponding to the specified interrupt
|
||||
*/
|
||||
static enum pm_device_node_idx irq_to_pm_node_idx(uint32_t irq)
|
||||
{
|
||||
assert(irq <= IRQ_MAX);
|
||||
return irq_node_map[irq];
|
||||
}
|
||||
|
||||
/**
|
||||
* pm_client_set_wakeup_sources - Set all devices with enabled interrupts as
|
||||
* wake sources in the LibPM.
|
||||
* @node_id: Node id of processor
|
||||
*/
|
||||
static void pm_client_set_wakeup_sources(uint32_t node_id)
|
||||
{
|
||||
uint32_t reg_num;
|
||||
uint32_t device_id;
|
||||
uint8_t pm_wakeup_nodes_set[XPM_NODEIDX_DEV_MAX];
|
||||
uintptr_t isenabler1 = PLAT_VERSAL_GICD_BASE + GICD_ISENABLER + 4;
|
||||
|
||||
zeromem(&pm_wakeup_nodes_set, (u_register_t)sizeof(pm_wakeup_nodes_set));
|
||||
|
||||
for (reg_num = 0U; reg_num < NUM_GICD_ISENABLER; reg_num++) {
|
||||
uint32_t base_irq = reg_num << ISENABLER_SHIFT;
|
||||
uint32_t reg = mmio_read_32(isenabler1 + (reg_num << 2));
|
||||
|
||||
if (reg == 0U) {
|
||||
continue;
|
||||
}
|
||||
|
||||
while (reg != 0U) {
|
||||
enum pm_device_node_idx node_idx;
|
||||
uint32_t idx, irq, lowest_set = reg & (-reg);
|
||||
enum pm_ret_status ret;
|
||||
|
||||
idx = __builtin_ctz(lowest_set);
|
||||
irq = base_irq + idx;
|
||||
|
||||
if (irq > IRQ_MAX) {
|
||||
break;
|
||||
}
|
||||
|
||||
node_idx = irq_to_pm_node_idx(irq);
|
||||
reg &= ~lowest_set;
|
||||
|
||||
if (node_idx > XPM_NODEIDX_DEV_MIN && node_idx < XPM_NODEIDX_DEV_MAX) {
|
||||
if (pm_wakeup_nodes_set[node_idx] == 0U) {
|
||||
/* Get device ID from node index */
|
||||
device_id = PERIPH_DEVID(node_idx);
|
||||
ret = pm_set_wakeup_source(node_id,
|
||||
device_id, 1,
|
||||
SECURE_FLAG);
|
||||
pm_wakeup_nodes_set[node_idx] = (ret == PM_RET_SUCCESS) ?
|
||||
1 : 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* pm_client_suspend() - Client-specific suspend actions
|
||||
*
|
||||
* This function should contain any PU-specific actions
|
||||
* required prior to sending suspend request to PMU
|
||||
* Actions taken depend on the state system is suspending to.
|
||||
*/
|
||||
void pm_client_suspend(const struct pm_proc *proc, uint32_t state)
|
||||
{
|
||||
bakery_lock_get(&pm_client_secure_lock);
|
||||
|
||||
if (state == PM_STATE_SUSPEND_TO_RAM) {
|
||||
pm_client_set_wakeup_sources((uint32_t)proc->node_id);
|
||||
}
|
||||
|
||||
/* Set powerdown request */
|
||||
mmio_write_32(FPD_APU_PWRCTL, mmio_read_32(FPD_APU_PWRCTL) |
|
||||
(uint32_t)proc->pwrdn_mask);
|
||||
|
||||
bakery_lock_release(&pm_client_secure_lock);
|
||||
}
|
||||
|
||||
/**
|
||||
* pm_client_abort_suspend() - Client-specific abort-suspend actions
|
||||
*
|
||||
* This function should contain any PU-specific actions
|
||||
* required for aborting a prior suspend request
|
||||
*/
|
||||
void pm_client_abort_suspend(void)
|
||||
{
|
||||
/* Enable interrupts at processor level (for current cpu) */
|
||||
gicv3_cpuif_enable(plat_my_core_pos());
|
||||
|
||||
bakery_lock_get(&pm_client_secure_lock);
|
||||
|
||||
/* Clear powerdown request */
|
||||
mmio_write_32(FPD_APU_PWRCTL, mmio_read_32(FPD_APU_PWRCTL) &
|
||||
~((uint32_t)primary_proc->pwrdn_mask));
|
||||
|
||||
bakery_lock_release(&pm_client_secure_lock);
|
||||
}
|
||||
|
||||
/**
|
||||
* pm_get_cpuid() - get the local cpu ID for a global node ID
|
||||
* @nid: node id of the processor
|
||||
*
|
||||
* Return: the cpu ID (starting from 0) for the subsystem
|
||||
*/
|
||||
static uint32_t pm_get_cpuid(uint32_t nid)
|
||||
{
|
||||
for (size_t i = 0U; i < ARRAY_SIZE(pm_procs_all); i++) {
|
||||
if (pm_procs_all[i].node_id == nid) {
|
||||
return i;
|
||||
}
|
||||
}
|
||||
return UNDEFINED_CPUID;
|
||||
}
|
||||
|
||||
/**
|
||||
* pm_client_wakeup() - Client-specific wakeup actions
|
||||
*
|
||||
* This function should contain any PU-specific actions
|
||||
* required for waking up another APU core
|
||||
*/
|
||||
void pm_client_wakeup(const struct pm_proc *proc)
|
||||
{
|
||||
uint32_t cpuid = pm_get_cpuid(proc->node_id);
|
||||
|
||||
if (cpuid == UNDEFINED_CPUID) {
|
||||
return;
|
||||
}
|
||||
|
||||
bakery_lock_get(&pm_client_secure_lock);
|
||||
|
||||
/* clear powerdown bit for affected cpu */
|
||||
uint32_t val = mmio_read_32(FPD_APU_PWRCTL);
|
||||
val &= ~(proc->pwrdn_mask);
|
||||
mmio_write_32(FPD_APU_PWRCTL, val);
|
||||
|
||||
bakery_lock_release(&pm_client_secure_lock);
|
||||
}
|
||||
|
||||
/**
|
||||
* pm_get_proc() - returns pointer to the proc structure
|
||||
* @cpuid: id of the cpu whose proc struct pointer should be returned
|
||||
*
|
||||
* Return: pointer to a proc structure if proc is found, otherwise NULL
|
||||
*/
|
||||
const struct pm_proc *pm_get_proc(uint32_t cpuid)
|
||||
{
|
||||
if (cpuid < ARRAY_SIZE(pm_procs_all)) {
|
||||
return &pm_procs_all[cpuid];
|
||||
}
|
||||
|
||||
return NULL;
|
||||
}
|
||||
+167
@@ -0,0 +1,167 @@
|
||||
/*
|
||||
* Copyright (c) 2019-2022, Xilinx, Inc. All rights reserved.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
|
||||
/* Versal power management enums and defines */
|
||||
|
||||
#ifndef PM_DEFS_H
|
||||
#define PM_DEFS_H
|
||||
|
||||
#include "pm_node.h"
|
||||
|
||||
/*********************************************************************
|
||||
* Macro definitions
|
||||
********************************************************************/
|
||||
|
||||
/* State arguments of the self suspend */
|
||||
#define PM_STATE_CPU_IDLE 0x0U
|
||||
#define PM_STATE_SUSPEND_TO_RAM 0xFU
|
||||
|
||||
#define MAX_LATENCY (~0U)
|
||||
#define MAX_QOS 100U
|
||||
|
||||
/* Processor core device IDs */
|
||||
#define APU_DEVID(IDX) NODEID(XPM_NODECLASS_DEVICE, XPM_NODESUBCL_DEV_CORE, \
|
||||
XPM_NODETYPE_DEV_CORE_APU, (IDX))
|
||||
|
||||
#define XPM_DEVID_ACPU_0 APU_DEVID(XPM_NODEIDX_DEV_ACPU_0)
|
||||
#define XPM_DEVID_ACPU_1 APU_DEVID(XPM_NODEIDX_DEV_ACPU_1)
|
||||
|
||||
#define PERIPH_DEVID(IDX) NODEID(XPM_NODECLASS_DEVICE, \
|
||||
XPM_NODESUBCL_DEV_PERIPH, \
|
||||
XPM_NODETYPE_DEV_PERIPH, (IDX))
|
||||
|
||||
#define PM_GET_CALLBACK_DATA 0xa01U
|
||||
#define PM_GET_TRUSTZONE_VERSION 0xa03U
|
||||
#define TF_A_PM_REGISTER_SGI 0xa04U
|
||||
|
||||
/* PM API Versions */
|
||||
#define PM_API_BASE_VERSION 1U
|
||||
#define PM_API_VERSION_2 2U
|
||||
|
||||
/* PM API ids */
|
||||
#define PM_REGISTER_NOTIFIER 5U
|
||||
#define PM_REQ_SUSPEND 6U
|
||||
#define PM_SELF_SUSPEND 7U
|
||||
#define PM_FORCE_POWERDOWN 8U
|
||||
#define PM_ABORT_SUSPEND 9U
|
||||
#define PM_REQ_WAKEUP 10U
|
||||
#define PM_SET_WAKEUP_SOURCE 11U
|
||||
#define PM_SYSTEM_SHUTDOWN 12U
|
||||
#define PM_IOCTL 34U
|
||||
#define PM_QUERY_DATA 35U
|
||||
#define PM_PLL_SET_PARAMETER 48U
|
||||
#define PM_PLL_GET_PARAMETER 49U
|
||||
#define PM_PLL_SET_MODE 50U
|
||||
#define PM_PLL_GET_MODE 51U
|
||||
#define PM_FEATURE_CHECK 63U
|
||||
|
||||
/* Loader API ids */
|
||||
#define PM_LOAD_PDI 0x701U
|
||||
#define PM_LOAD_GET_HANDOFF_PARAMS 0x70BU
|
||||
|
||||
/* IOCTL IDs for clock driver */
|
||||
#define IOCTL_SET_PLL_FRAC_MODE 8U
|
||||
#define IOCTL_GET_PLL_FRAC_MODE 9U
|
||||
#define IOCTL_SET_PLL_FRAC_DATA 10U
|
||||
#define IOCTL_GET_PLL_FRAC_DATA 11U
|
||||
#define IOCTL_SET_SGI 25U
|
||||
|
||||
/* Parameter ID for PLL IOCTLs */
|
||||
/* Fractional data portion for PLL */
|
||||
#define PM_PLL_PARAM_DATA 2
|
||||
|
||||
/* System shutdown macros */
|
||||
#define XPM_SHUTDOWN_TYPE_SHUTDOWN 0U
|
||||
#define XPM_SHUTDOWN_TYPE_RESET 1U
|
||||
#define XPM_SHUTDOWN_TYPE_SETSCOPE_ONLY 2U
|
||||
|
||||
#define XPM_SHUTDOWN_SUBTYPE_RST_SUBSYSTEM 0U
|
||||
#define XPM_SHUTDOWN_SUBTYPE_RST_PS_ONLY 1U
|
||||
#define XPM_SHUTDOWN_SUBTYPE_RST_SYSTEM 2U
|
||||
|
||||
/*********************************************************************
|
||||
* Enum definitions
|
||||
********************************************************************/
|
||||
|
||||
enum pm_abort_reason {
|
||||
ABORT_REASON_WKUP_EVENT = 100,
|
||||
ABORT_REASON_PU_BUSY,
|
||||
ABORT_REASON_NO_PWRDN,
|
||||
ABORT_REASON_UNKNOWN,
|
||||
};
|
||||
|
||||
enum pm_opchar_type {
|
||||
PM_OPCHAR_TYPE_POWER = 1,
|
||||
PM_OPCHAR_TYPE_TEMP,
|
||||
PM_OPCHAR_TYPE_LATENCY,
|
||||
};
|
||||
|
||||
/**
|
||||
* Subsystem IDs
|
||||
*/
|
||||
typedef enum {
|
||||
XPM_SUBSYSID_PMC,
|
||||
XPM_SUBSYSID_PSM,
|
||||
XPM_SUBSYSID_APU,
|
||||
XPM_SUBSYSID_RPU0_LOCK,
|
||||
XPM_SUBSYSID_RPU0_0,
|
||||
XPM_SUBSYSID_RPU0_1,
|
||||
XPM_SUBSYSID_DDR0,
|
||||
XPM_SUBSYSID_ME,
|
||||
XPM_SUBSYSID_PL,
|
||||
XPM_SUBSYSID_MAX,
|
||||
} XPm_SubsystemId;
|
||||
|
||||
/**
|
||||
* @PM_RET_SUCCESS: success
|
||||
* @PM_RET_ERROR_ARGS: illegal arguments provided (deprecated)
|
||||
* @PM_RET_ERROR_NOTSUPPORTED: feature not supported (deprecated)
|
||||
* @PM_RET_ERROR_NOFEATURE: feature is not available
|
||||
* @PM_RET_ERROR_INTERNAL: internal error
|
||||
* @PM_RET_ERROR_CONFLICT: conflict
|
||||
* @PM_RET_ERROR_ACCESS: access rights violation
|
||||
* @PM_RET_ERROR_INVALID_NODE: invalid node
|
||||
* @PM_RET_ERROR_DOUBLE_REQ: duplicate request for same node
|
||||
* @PM_RET_ERROR_ABORT_SUSPEND: suspend procedure has been aborted
|
||||
* @PM_RET_ERROR_TIMEOUT: timeout in communication with PMU
|
||||
* @PM_RET_ERROR_NODE_USED: node is already in use
|
||||
*/
|
||||
enum pm_ret_status {
|
||||
PM_RET_SUCCESS,
|
||||
PM_RET_ERROR_ARGS = 1,
|
||||
PM_RET_ERROR_NOTSUPPORTED = 4,
|
||||
PM_RET_ERROR_NOFEATURE = 19,
|
||||
PM_RET_ERROR_INTERNAL = 2000,
|
||||
PM_RET_ERROR_CONFLICT = 2001,
|
||||
PM_RET_ERROR_ACCESS = 2002,
|
||||
PM_RET_ERROR_INVALID_NODE = 2003,
|
||||
PM_RET_ERROR_DOUBLE_REQ = 2004,
|
||||
PM_RET_ERROR_ABORT_SUSPEND = 2005,
|
||||
PM_RET_ERROR_TIMEOUT = 2006,
|
||||
PM_RET_ERROR_NODE_USED = 2007
|
||||
};
|
||||
|
||||
/**
|
||||
* Qids
|
||||
*/
|
||||
enum pm_query_id {
|
||||
XPM_QID_INVALID,
|
||||
XPM_QID_CLOCK_GET_NAME,
|
||||
XPM_QID_CLOCK_GET_TOPOLOGY,
|
||||
XPM_QID_CLOCK_GET_FIXEDFACTOR_PARAMS,
|
||||
XPM_QID_CLOCK_GET_MUXSOURCES,
|
||||
XPM_QID_CLOCK_GET_ATTRIBUTES,
|
||||
XPM_QID_PINCTRL_GET_NUM_PINS,
|
||||
XPM_QID_PINCTRL_GET_NUM_FUNCTIONS,
|
||||
XPM_QID_PINCTRL_GET_NUM_FUNCTION_GROUPS,
|
||||
XPM_QID_PINCTRL_GET_FUNCTION_NAME,
|
||||
XPM_QID_PINCTRL_GET_FUNCTION_GROUPS,
|
||||
XPM_QID_PINCTRL_GET_PIN_GROUPS,
|
||||
XPM_QID_CLOCK_GET_NUM_CLOCKS,
|
||||
XPM_QID_CLOCK_GET_MAX_DIVISOR,
|
||||
XPM_QID_PLD_GET_PARENT,
|
||||
};
|
||||
#endif /* PM_DEFS_H */
|
||||
+192
@@ -0,0 +1,192 @@
|
||||
/*
|
||||
* Copyright (c) 2019, Xilinx, Inc. All rights reserved.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
|
||||
/* Versal PM nodes enums and defines */
|
||||
|
||||
#ifndef PM_NODE_H
|
||||
#define PM_NODE_H
|
||||
|
||||
/*********************************************************************
|
||||
* Macro definitions
|
||||
********************************************************************/
|
||||
|
||||
#define NODE_CLASS_SHIFT 26U
|
||||
#define NODE_SUBCLASS_SHIFT 20U
|
||||
#define NODE_TYPE_SHIFT 14U
|
||||
#define NODE_INDEX_SHIFT 0U
|
||||
#define NODE_CLASS_MASK_BITS 0x3F
|
||||
#define NODE_SUBCLASS_MASK_BITS 0x3F
|
||||
#define NODE_TYPE_MASK_BITS 0x3F
|
||||
#define NODE_INDEX_MASK_BITS 0x3FFF
|
||||
#define NODE_CLASS_MASK (NODE_CLASS_MASK_BITS << NODE_CLASS_SHIFT)
|
||||
#define NODE_SUBCLASS_MASK (NODE_SUBCLASS_MASK_BITS << NODE_SUBCLASS_SHIFT)
|
||||
#define NODE_TYPE_MASK (NODE_TYPE_MASK_BITS << NODE_TYPE_SHIFT)
|
||||
#define NODE_INDEX_MASK (NODE_INDEX_MASK_BITS << NODE_INDEX_SHIFT)
|
||||
|
||||
#define NODEID(CLASS, SUBCLASS, TYPE, INDEX) \
|
||||
((((CLASS) & NODE_CLASS_MASK_BITS) << NODE_CLASS_SHIFT) | \
|
||||
(((SUBCLASS) & NODE_SUBCLASS_MASK_BITS) << NODE_SUBCLASS_SHIFT) | \
|
||||
(((TYPE) & NODE_TYPE_MASK_BITS) << NODE_TYPE_SHIFT) | \
|
||||
(((INDEX) & NODE_INDEX_MASK_BITS) << NODE_INDEX_SHIFT))
|
||||
|
||||
#define NODECLASS(ID) (((ID) & NODE_CLASS_MASK) >> NODE_CLASS_SHIFT)
|
||||
#define NODESUBCLASS(ID) (((ID) & NODE_SUBCLASS_MASK) >> \
|
||||
NODE_SUBCLASS_SHIFT)
|
||||
#define NODETYPE(ID) (((ID) & NODE_TYPE_MASK) >> NODE_TYPE_SHIFT)
|
||||
#define NODEINDEX(ID) (((ID) & NODE_INDEX_MASK) >> NODE_INDEX_SHIFT)
|
||||
|
||||
/*********************************************************************
|
||||
* Enum definitions
|
||||
********************************************************************/
|
||||
|
||||
/* Node class types */
|
||||
enum pm_node_class {
|
||||
XPM_NODECLASS_MIN,
|
||||
|
||||
XPM_NODECLASS_POWER,
|
||||
XPM_NODECLASS_CLOCK,
|
||||
XPM_NODECLASS_RESET,
|
||||
XPM_NODECLASS_MEMIC,
|
||||
XPM_NODECLASS_STMIC,
|
||||
XPM_NODECLASS_DEVICE,
|
||||
|
||||
XPM_NODECLASS_MAX
|
||||
};
|
||||
|
||||
enum pm_device_node_subclass {
|
||||
/* Device types */
|
||||
XPM_NODESUBCL_DEV_CORE = 1,
|
||||
XPM_NODESUBCL_DEV_PERIPH,
|
||||
XPM_NODESUBCL_DEV_MEM,
|
||||
XPM_NODESUBCL_DEV_SOC,
|
||||
XPM_NODESUBCL_DEV_MEM_CTRLR,
|
||||
XPM_NODESUBCL_DEV_PHY,
|
||||
};
|
||||
|
||||
enum pm_device_node_type {
|
||||
/* Device types */
|
||||
XPM_NODETYPE_DEV_CORE_PMC = 1,
|
||||
XPM_NODETYPE_DEV_CORE_PSM,
|
||||
XPM_NODETYPE_DEV_CORE_APU,
|
||||
XPM_NODETYPE_DEV_CORE_RPU,
|
||||
XPM_NODETYPE_DEV_OCM,
|
||||
XPM_NODETYPE_DEV_TCM,
|
||||
XPM_NODETYPE_DEV_L2CACHE,
|
||||
XPM_NODETYPE_DEV_DDR,
|
||||
XPM_NODETYPE_DEV_PERIPH,
|
||||
XPM_NODETYPE_DEV_SOC,
|
||||
XPM_NODETYPE_DEV_GT,
|
||||
};
|
||||
|
||||
/* Device node Indexes */
|
||||
enum pm_device_node_idx {
|
||||
/* Device nodes */
|
||||
XPM_NODEIDX_DEV_MIN,
|
||||
|
||||
/* Processor devices */
|
||||
XPM_NODEIDX_DEV_PMC_PROC,
|
||||
XPM_NODEIDX_DEV_PSM_PROC,
|
||||
XPM_NODEIDX_DEV_ACPU_0,
|
||||
XPM_NODEIDX_DEV_ACPU_1,
|
||||
XPM_NODEIDX_DEV_RPU0_0,
|
||||
XPM_NODEIDX_DEV_RPU0_1,
|
||||
|
||||
/* Memory devices */
|
||||
XPM_NODEIDX_DEV_OCM_0,
|
||||
XPM_NODEIDX_DEV_OCM_1,
|
||||
XPM_NODEIDX_DEV_OCM_2,
|
||||
XPM_NODEIDX_DEV_OCM_3,
|
||||
XPM_NODEIDX_DEV_TCM_0_A,
|
||||
XPM_NODEIDX_DEV_TCM_0_B,
|
||||
XPM_NODEIDX_DEV_TCM_1_A,
|
||||
XPM_NODEIDX_DEV_TCM_1_B,
|
||||
XPM_NODEIDX_DEV_L2_BANK_0,
|
||||
XPM_NODEIDX_DEV_DDR_0,
|
||||
XPM_NODEIDX_DEV_DDR_1,
|
||||
XPM_NODEIDX_DEV_DDR_2,
|
||||
XPM_NODEIDX_DEV_DDR_3,
|
||||
XPM_NODEIDX_DEV_DDR_4,
|
||||
XPM_NODEIDX_DEV_DDR_5,
|
||||
XPM_NODEIDX_DEV_DDR_6,
|
||||
XPM_NODEIDX_DEV_DDR_7,
|
||||
|
||||
/* LPD Peripheral devices */
|
||||
XPM_NODEIDX_DEV_USB_0,
|
||||
XPM_NODEIDX_DEV_GEM_0,
|
||||
XPM_NODEIDX_DEV_GEM_1,
|
||||
XPM_NODEIDX_DEV_SPI_0,
|
||||
XPM_NODEIDX_DEV_SPI_1,
|
||||
XPM_NODEIDX_DEV_I2C_0,
|
||||
XPM_NODEIDX_DEV_I2C_1,
|
||||
XPM_NODEIDX_DEV_CAN_FD_0,
|
||||
XPM_NODEIDX_DEV_CAN_FD_1,
|
||||
XPM_NODEIDX_DEV_UART_0,
|
||||
XPM_NODEIDX_DEV_UART_1,
|
||||
XPM_NODEIDX_DEV_GPIO,
|
||||
XPM_NODEIDX_DEV_TTC_0,
|
||||
XPM_NODEIDX_DEV_TTC_1,
|
||||
XPM_NODEIDX_DEV_TTC_2,
|
||||
XPM_NODEIDX_DEV_TTC_3,
|
||||
XPM_NODEIDX_DEV_SWDT_LPD,
|
||||
|
||||
/* FPD Peripheral devices */
|
||||
XPM_NODEIDX_DEV_SWDT_FPD,
|
||||
|
||||
/* PMC Peripheral devices */
|
||||
XPM_NODEIDX_DEV_OSPI,
|
||||
XPM_NODEIDX_DEV_QSPI,
|
||||
XPM_NODEIDX_DEV_GPIO_PMC,
|
||||
XPM_NODEIDX_DEV_I2C_PMC,
|
||||
XPM_NODEIDX_DEV_SDIO_0,
|
||||
XPM_NODEIDX_DEV_SDIO_1,
|
||||
|
||||
XPM_NODEIDX_DEV_PL_0,
|
||||
XPM_NODEIDX_DEV_PL_1,
|
||||
XPM_NODEIDX_DEV_PL_2,
|
||||
XPM_NODEIDX_DEV_PL_3,
|
||||
XPM_NODEIDX_DEV_RTC,
|
||||
XPM_NODEIDX_DEV_ADMA_0,
|
||||
XPM_NODEIDX_DEV_ADMA_1,
|
||||
XPM_NODEIDX_DEV_ADMA_2,
|
||||
XPM_NODEIDX_DEV_ADMA_3,
|
||||
XPM_NODEIDX_DEV_ADMA_4,
|
||||
XPM_NODEIDX_DEV_ADMA_5,
|
||||
XPM_NODEIDX_DEV_ADMA_6,
|
||||
XPM_NODEIDX_DEV_ADMA_7,
|
||||
XPM_NODEIDX_DEV_IPI_0,
|
||||
XPM_NODEIDX_DEV_IPI_1,
|
||||
XPM_NODEIDX_DEV_IPI_2,
|
||||
XPM_NODEIDX_DEV_IPI_3,
|
||||
XPM_NODEIDX_DEV_IPI_4,
|
||||
XPM_NODEIDX_DEV_IPI_5,
|
||||
XPM_NODEIDX_DEV_IPI_6,
|
||||
|
||||
/* Entire SoC */
|
||||
XPM_NODEIDX_DEV_SOC,
|
||||
|
||||
/* DDR memory controllers */
|
||||
XPM_NODEIDX_DEV_DDRMC_0,
|
||||
XPM_NODEIDX_DEV_DDRMC_1,
|
||||
XPM_NODEIDX_DEV_DDRMC_2,
|
||||
XPM_NODEIDX_DEV_DDRMC_3,
|
||||
|
||||
/* GT devices */
|
||||
XPM_NODEIDX_DEV_GT_0,
|
||||
XPM_NODEIDX_DEV_GT_1,
|
||||
XPM_NODEIDX_DEV_GT_2,
|
||||
XPM_NODEIDX_DEV_GT_3,
|
||||
XPM_NODEIDX_DEV_GT_4,
|
||||
XPM_NODEIDX_DEV_GT_5,
|
||||
XPM_NODEIDX_DEV_GT_6,
|
||||
XPM_NODEIDX_DEV_GT_7,
|
||||
XPM_NODEIDX_DEV_GT_8,
|
||||
XPM_NODEIDX_DEV_GT_9,
|
||||
XPM_NODEIDX_DEV_GT_10,
|
||||
|
||||
XPM_NODEIDX_DEV_MAX
|
||||
};
|
||||
|
||||
#endif /* PM_NODE_H */
|
||||
+395
@@ -0,0 +1,395 @@
|
||||
/*
|
||||
* Copyright (c) 2019-2022, Xilinx, Inc. All rights reserved.
|
||||
* Copyright (c) 2022, Advanced Micro Devices, Inc. All rights reserved.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
|
||||
/*
|
||||
* Top-level SMC handler for Versal power management calls and
|
||||
* IPI setup functions for communication with PMC.
|
||||
*/
|
||||
|
||||
#include <errno.h>
|
||||
#include <plat_private.h>
|
||||
#include <stdbool.h>
|
||||
#include <common/runtime_svc.h>
|
||||
#include <plat/common/platform.h>
|
||||
#include "pm_api_sys.h"
|
||||
#include "pm_client.h"
|
||||
#include "pm_ipi.h"
|
||||
#include <drivers/arm/gicv3.h>
|
||||
#include "../drivers/arm/gic/v3/gicv3_private.h"
|
||||
|
||||
#define MODE 0x80000000U
|
||||
|
||||
#define XSCUGIC_SGIR_EL1_INITID_SHIFT 24U
|
||||
#define INVALID_SGI 0xFFU
|
||||
#define PM_INIT_SUSPEND_CB (30U)
|
||||
#define PM_NOTIFY_CB (32U)
|
||||
DEFINE_RENAME_SYSREG_RW_FUNCS(icc_asgi1r_el1, S3_0_C12_C11_6)
|
||||
|
||||
/* pm_up = true - UP, pm_up = false - DOWN */
|
||||
static bool pm_up;
|
||||
static uint32_t sgi = (uint32_t)INVALID_SGI;
|
||||
|
||||
static void notify_os(void)
|
||||
{
|
||||
int32_t cpu;
|
||||
uint32_t reg;
|
||||
|
||||
cpu = plat_my_core_pos() + 1U;
|
||||
|
||||
reg = (cpu | (sgi << XSCUGIC_SGIR_EL1_INITID_SHIFT));
|
||||
write_icc_asgi1r_el1(reg);
|
||||
}
|
||||
|
||||
static uint64_t ipi_fiq_handler(uint32_t id, uint32_t flags, void *handle,
|
||||
void *cookie)
|
||||
{
|
||||
uint32_t payload[4] = {0};
|
||||
|
||||
VERBOSE("Received IPI FIQ from firmware\n");
|
||||
|
||||
(void)plat_ic_acknowledge_interrupt();
|
||||
|
||||
pm_get_callbackdata(payload, ARRAY_SIZE(payload), 0, 0);
|
||||
switch (payload[0]) {
|
||||
case PM_INIT_SUSPEND_CB:
|
||||
case PM_NOTIFY_CB:
|
||||
if (sgi != INVALID_SGI) {
|
||||
notify_os();
|
||||
}
|
||||
break;
|
||||
default:
|
||||
pm_ipi_irq_clear(primary_proc);
|
||||
WARN("Invalid IPI payload\n");
|
||||
break;
|
||||
}
|
||||
|
||||
/* Clear FIQ */
|
||||
plat_ic_end_of_interrupt(id);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* pm_register_sgi() - PM register the IPI interrupt
|
||||
*
|
||||
* @sgi - SGI number to be used for communication.
|
||||
* @reset - Reset to invalid SGI when reset=1.
|
||||
* @return On success, the initialization function must return 0.
|
||||
* Any other return value will cause the framework to ignore
|
||||
* the service
|
||||
*
|
||||
* Update the SGI number to be used.
|
||||
*
|
||||
*/
|
||||
int32_t pm_register_sgi(uint32_t sgi_num, uint32_t reset)
|
||||
{
|
||||
if (reset == 1U) {
|
||||
sgi = INVALID_SGI;
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (sgi != INVALID_SGI) {
|
||||
return -EBUSY;
|
||||
}
|
||||
|
||||
if (sgi_num >= GICV3_MAX_SGI_TARGETS) {
|
||||
return -EINVAL;
|
||||
}
|
||||
|
||||
sgi = (uint32_t)sgi_num;
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* pm_setup() - PM service setup
|
||||
*
|
||||
* @return On success, the initialization function must return 0.
|
||||
* Any other return value will cause the framework to ignore
|
||||
* the service
|
||||
*
|
||||
* Initialization functions for Versal power management for
|
||||
* communicaton with PMC.
|
||||
*
|
||||
* Called from sip_svc_setup initialization function with the
|
||||
* rt_svc_init signature.
|
||||
*/
|
||||
int32_t pm_setup(void)
|
||||
{
|
||||
int32_t ret = 0;
|
||||
|
||||
pm_ipi_init(primary_proc);
|
||||
pm_up = true;
|
||||
|
||||
/*
|
||||
* Enable IPI IRQ
|
||||
* assume the rich OS is OK to handle callback IRQs now.
|
||||
* Even if we were wrong, it would not enable the IRQ in
|
||||
* the GIC.
|
||||
*/
|
||||
pm_ipi_irq_enable(primary_proc);
|
||||
|
||||
ret = request_intr_type_el3(PLAT_VERSAL_IPI_IRQ, ipi_fiq_handler);
|
||||
if (ret != 0) {
|
||||
WARN("BL31: registering IPI interrupt failed\n");
|
||||
}
|
||||
|
||||
gicd_write_irouter(gicv3_driver_data->gicd_base, PLAT_VERSAL_IPI_IRQ, MODE);
|
||||
return ret;
|
||||
}
|
||||
|
||||
/**
|
||||
* eemi_for_compatibility() - EEMI calls handler for deprecated calls
|
||||
*
|
||||
* @return - If EEMI API found then, uintptr_t type address, else 0
|
||||
*
|
||||
* Some EEMI API's use case needs to be changed in Linux driver, so they
|
||||
* can take advantage of common EEMI handler in TF-A. As of now the old
|
||||
* implementation of these APIs are required to maintain backward compatibility
|
||||
* until their use case in linux driver changes.
|
||||
*/
|
||||
static uintptr_t eemi_for_compatibility(uint32_t api_id, uint32_t *pm_arg,
|
||||
void *handle, uint32_t security_flag)
|
||||
{
|
||||
enum pm_ret_status ret;
|
||||
|
||||
switch (api_id) {
|
||||
|
||||
case PM_IOCTL:
|
||||
{
|
||||
uint32_t value;
|
||||
|
||||
ret = pm_api_ioctl(pm_arg[0], pm_arg[1], pm_arg[2],
|
||||
pm_arg[3], pm_arg[4],
|
||||
&value, security_flag);
|
||||
if (ret == PM_RET_ERROR_NOTSUPPORTED)
|
||||
return (uintptr_t)0;
|
||||
|
||||
SMC_RET1(handle, (uint64_t)ret | ((uint64_t)value) << 32U);
|
||||
}
|
||||
|
||||
case PM_QUERY_DATA:
|
||||
{
|
||||
uint32_t data[PAYLOAD_ARG_CNT] = { 0 };
|
||||
|
||||
ret = pm_query_data(pm_arg[0], pm_arg[1], pm_arg[2],
|
||||
pm_arg[3], data, security_flag);
|
||||
|
||||
SMC_RET2(handle, (uint64_t)ret | ((uint64_t)data[0] << 32U),
|
||||
(uint64_t)data[1] | ((uint64_t)data[2] << 32U));
|
||||
}
|
||||
|
||||
case PM_FEATURE_CHECK:
|
||||
{
|
||||
uint32_t result[PAYLOAD_ARG_CNT] = {0U};
|
||||
|
||||
ret = pm_feature_check(pm_arg[0], result, security_flag);
|
||||
SMC_RET2(handle, (uint64_t)ret | ((uint64_t)result[0] << 32U),
|
||||
(uint64_t)result[1] | ((uint64_t)result[2] << 32U));
|
||||
}
|
||||
|
||||
case PM_LOAD_PDI:
|
||||
{
|
||||
ret = pm_load_pdi(pm_arg[0], pm_arg[1], pm_arg[2],
|
||||
security_flag);
|
||||
SMC_RET1(handle, (uint64_t)ret);
|
||||
}
|
||||
|
||||
default:
|
||||
return (uintptr_t)0;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* eemi_psci_debugfs_handler() - EEMI API invoked from PSCI
|
||||
*
|
||||
* These EEMI APIs performs CPU specific power management tasks.
|
||||
* These EEMI APIs are invoked either from PSCI or from debugfs in kernel.
|
||||
* These calls require CPU specific processing before sending IPI request to
|
||||
* Platform Management Controller. For example enable/disable CPU specific
|
||||
* interrupts. This requires separate handler for these calls and may not be
|
||||
* handled using common eemi handler
|
||||
*/
|
||||
static uintptr_t eemi_psci_debugfs_handler(uint32_t api_id, uint32_t *pm_arg,
|
||||
void *handle, uint32_t security_flag)
|
||||
{
|
||||
enum pm_ret_status ret;
|
||||
|
||||
switch (api_id) {
|
||||
|
||||
case PM_SELF_SUSPEND:
|
||||
ret = pm_self_suspend(pm_arg[0], pm_arg[1], pm_arg[2],
|
||||
pm_arg[3], security_flag);
|
||||
SMC_RET1(handle, (u_register_t)ret);
|
||||
|
||||
case PM_FORCE_POWERDOWN:
|
||||
ret = pm_force_powerdown(pm_arg[0], pm_arg[1], security_flag);
|
||||
SMC_RET1(handle, (u_register_t)ret);
|
||||
|
||||
case PM_REQ_SUSPEND:
|
||||
ret = pm_req_suspend(pm_arg[0], pm_arg[1], pm_arg[2],
|
||||
pm_arg[3], security_flag);
|
||||
SMC_RET1(handle, (u_register_t)ret);
|
||||
|
||||
case PM_ABORT_SUSPEND:
|
||||
ret = pm_abort_suspend(pm_arg[0], security_flag);
|
||||
SMC_RET1(handle, (u_register_t)ret);
|
||||
|
||||
case PM_SYSTEM_SHUTDOWN:
|
||||
ret = pm_system_shutdown(pm_arg[0], pm_arg[1], security_flag);
|
||||
SMC_RET1(handle, (u_register_t)ret);
|
||||
|
||||
default:
|
||||
return (uintptr_t)0;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* TF_A_specific_handler() - SMC handler for TF-A specific functionality
|
||||
*
|
||||
* These EEMI calls performs functionality that does not require
|
||||
* IPI transaction. The handler ends in TF-A and returns requested data to
|
||||
* kernel from TF-A.
|
||||
*/
|
||||
static uintptr_t TF_A_specific_handler(uint32_t api_id, uint32_t *pm_arg,
|
||||
void *handle, uint32_t security_flag)
|
||||
{
|
||||
switch (api_id) {
|
||||
|
||||
case TF_A_PM_REGISTER_SGI:
|
||||
{
|
||||
int32_t ret;
|
||||
|
||||
ret = pm_register_sgi(pm_arg[0], pm_arg[1]);
|
||||
if (ret != 0) {
|
||||
SMC_RET1(handle, (uint32_t)PM_RET_ERROR_ARGS);
|
||||
}
|
||||
|
||||
SMC_RET1(handle, (uint32_t)PM_RET_SUCCESS);
|
||||
}
|
||||
|
||||
case PM_GET_CALLBACK_DATA:
|
||||
{
|
||||
uint32_t result[4] = {0};
|
||||
|
||||
pm_get_callbackdata(result, ARRAY_SIZE(result), security_flag, 1U);
|
||||
SMC_RET2(handle,
|
||||
(uint64_t)result[0] | ((uint64_t)result[1] << 32U),
|
||||
(uint64_t)result[2] | ((uint64_t)result[3] << 32U));
|
||||
}
|
||||
|
||||
case PM_GET_TRUSTZONE_VERSION:
|
||||
SMC_RET1(handle, (uint64_t)PM_RET_SUCCESS |
|
||||
((uint64_t)TZ_VERSION << 32U));
|
||||
|
||||
default:
|
||||
return (uintptr_t)0;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* eemi_handler() - Prepare EEMI payload and perform IPI transaction
|
||||
*
|
||||
* EEMI - Embedded Energy Management Interface is Xilinx proprietary protocol
|
||||
* to allow communication between power management controller and different
|
||||
* processing clusters.
|
||||
*
|
||||
* This handler prepares EEMI protocol payload received from kernel and performs
|
||||
* IPI transaction.
|
||||
*/
|
||||
static uintptr_t eemi_handler(uint32_t api_id, uint32_t *pm_arg,
|
||||
void *handle, uint32_t security_flag)
|
||||
{
|
||||
enum pm_ret_status ret;
|
||||
uint32_t buf[PAYLOAD_ARG_CNT] = {0};
|
||||
|
||||
ret = pm_handle_eemi_call(security_flag, api_id, pm_arg[0], pm_arg[1],
|
||||
pm_arg[2], pm_arg[3], pm_arg[4],
|
||||
(uint64_t *)buf);
|
||||
/*
|
||||
* Two IOCTLs, to get clock name and pinctrl name of pm_query_data API
|
||||
* receives 5 words of respoonse from firmware. Currently linux driver can
|
||||
* receive only 4 words from TF-A. So, this needs to be handled separately
|
||||
* than other eemi calls.
|
||||
*/
|
||||
if (api_id == PM_QUERY_DATA) {
|
||||
if ((pm_arg[0] == XPM_QID_CLOCK_GET_NAME ||
|
||||
pm_arg[0] == XPM_QID_PINCTRL_GET_FUNCTION_NAME) &&
|
||||
ret == PM_RET_SUCCESS) {
|
||||
SMC_RET2(handle, (uint64_t)buf[0] | ((uint64_t)buf[1] << 32U),
|
||||
(uint64_t)buf[2] | ((uint64_t)buf[3] << 32U));
|
||||
}
|
||||
}
|
||||
|
||||
SMC_RET2(handle, (uint64_t)ret | ((uint64_t)buf[0] << 32U),
|
||||
(uint64_t)buf[1] | ((uint64_t)buf[2] << 32U));
|
||||
}
|
||||
|
||||
/**
|
||||
* pm_smc_handler() - SMC handler for PM-API calls coming from EL1/EL2.
|
||||
* @smc_fid - Function Identifier
|
||||
* @x1 - x4 - SMC64 Arguments from kernel
|
||||
* x3 (upper 32-bits) and x4 are Unused
|
||||
* @cookie - Unused
|
||||
* @handler - Pointer to caller's context structure
|
||||
*
|
||||
* @return - Unused
|
||||
*
|
||||
* Determines that smc_fid is valid and supported PM SMC Function ID from the
|
||||
* list of pm_api_ids, otherwise completes the request with
|
||||
* the unknown SMC Function ID
|
||||
*
|
||||
* The SMC calls for PM service are forwarded from SIP Service SMC handler
|
||||
* function with rt_svc_handle signature
|
||||
*/
|
||||
uint64_t pm_smc_handler(uint32_t smc_fid, uint64_t x1, uint64_t x2, uint64_t x3,
|
||||
uint64_t x4, const void *cookie, void *handle, uint64_t flags)
|
||||
{
|
||||
uintptr_t ret;
|
||||
uint32_t pm_arg[PAYLOAD_ARG_CNT] = {0};
|
||||
uint32_t security_flag = SECURE_FLAG;
|
||||
uint32_t api_id;
|
||||
|
||||
/* Handle case where PM wasn't initialized properly */
|
||||
if (pm_up == false) {
|
||||
SMC_RET1(handle, SMC_UNK);
|
||||
}
|
||||
|
||||
/*
|
||||
* Mark BIT24 payload (i.e 1st bit of pm_arg[3] ) as non-secure (1)
|
||||
* if smc called is non secure
|
||||
*/
|
||||
if (is_caller_non_secure(flags) != 0) {
|
||||
security_flag = NON_SECURE_FLAG;
|
||||
}
|
||||
|
||||
pm_arg[0] = (uint32_t)x1;
|
||||
pm_arg[1] = (uint32_t)(x1 >> 32U);
|
||||
pm_arg[2] = (uint32_t)x2;
|
||||
pm_arg[3] = (uint32_t)(x2 >> 32U);
|
||||
pm_arg[4] = (uint32_t)x3;
|
||||
(void)(x4);
|
||||
api_id = smc_fid & FUNCID_NUM_MASK;
|
||||
|
||||
ret = eemi_for_compatibility(api_id, pm_arg, handle, security_flag);
|
||||
if (ret != (uintptr_t)0) {
|
||||
return ret;
|
||||
}
|
||||
|
||||
ret = eemi_psci_debugfs_handler(api_id, pm_arg, handle, flags);
|
||||
if (ret != (uintptr_t)0) {
|
||||
return ret;
|
||||
}
|
||||
|
||||
ret = TF_A_specific_handler(api_id, pm_arg, handle, security_flag);
|
||||
if (ret != (uintptr_t)0) {
|
||||
return ret;
|
||||
}
|
||||
|
||||
ret = eemi_handler(api_id, pm_arg, handle, security_flag);
|
||||
|
||||
return ret;
|
||||
}
|
||||
+18
@@ -0,0 +1,18 @@
|
||||
/*
|
||||
* Copyright (c) 2019-2022, Xilinx, Inc. All rights reserved.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
|
||||
#ifndef PM_SVC_MAIN_H
|
||||
#define PM_SVC_MAIN_H
|
||||
|
||||
#include <pm_common.h>
|
||||
|
||||
int32_t pm_setup(void);
|
||||
uint64_t pm_smc_handler(uint32_t smc_fid, uint64_t x1, uint64_t x2, uint64_t x3,
|
||||
uint64_t x4, const void *cookie, void *handle,
|
||||
uint64_t flags);
|
||||
|
||||
int32_t pm_register_sgi(uint32_t sgi_num, uint32_t reset);
|
||||
#endif /* PM_SVC_MAIN_H */
|
||||
@@ -0,0 +1,102 @@
|
||||
/*
|
||||
* Copyright (c) 2018-2021, ARM Limited and Contributors. All rights reserved.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
|
||||
/* Top level SMC handler for SiP calls. Dispatch PM calls to PM SMC handler. */
|
||||
|
||||
#include <common/debug.h>
|
||||
#include <common/runtime_svc.h>
|
||||
#include <tools_share/uuid.h>
|
||||
|
||||
#include "ipi_mailbox_svc.h"
|
||||
#include "pm_svc_main.h"
|
||||
|
||||
/* SMC function IDs for SiP Service queries */
|
||||
#define VERSAL_SIP_SVC_CALL_COUNT U(0x8200ff00)
|
||||
#define VERSAL_SIP_SVC_UID U(0x8200ff01)
|
||||
#define VERSAL_SIP_SVC_VERSION U(0x8200ff03)
|
||||
|
||||
/* SiP Service Calls version numbers */
|
||||
#define SIP_SVC_VERSION_MAJOR U(0)
|
||||
#define SIP_SVC_VERSION_MINOR U(1)
|
||||
|
||||
/* These macros are used to identify PM calls from the SMC function ID */
|
||||
#define PM_FID_MASK 0xf000u
|
||||
#define PM_FID_VALUE 0u
|
||||
#define IPI_FID_VALUE 0x1000u
|
||||
#define is_pm_fid(_fid) (((_fid) & PM_FID_MASK) == PM_FID_VALUE)
|
||||
#define is_ipi_fid(_fid) (((_fid) & PM_FID_MASK) == IPI_FID_VALUE)
|
||||
|
||||
/* SiP Service UUID */
|
||||
DEFINE_SVC_UUID2(versal_sip_uuid,
|
||||
0x2ab9e4ecU, 0x93b9U, 0x11e7U, 0xa0U, 0x19U,
|
||||
0xdfU, 0xe0U, 0xdbU, 0xadU, 0x0aU, 0xe0U);
|
||||
|
||||
/**
|
||||
* sip_svc_setup() - Setup SiP Service
|
||||
*
|
||||
* Invokes PM setup
|
||||
*/
|
||||
static int32_t sip_svc_setup(void)
|
||||
{
|
||||
/* PM implementation as SiP Service */
|
||||
(void)pm_setup();
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* sip_svc_smc_handler() - Top-level SiP Service SMC handler
|
||||
*
|
||||
* Handler for all SiP SMC calls. Handles standard SIP requests
|
||||
* and calls PM SMC handler if the call is for a PM-API function.
|
||||
*/
|
||||
uintptr_t sip_svc_smc_handler(uint32_t smc_fid,
|
||||
u_register_t x1,
|
||||
u_register_t x2,
|
||||
u_register_t x3,
|
||||
u_register_t x4,
|
||||
void *cookie,
|
||||
void *handle,
|
||||
u_register_t flags)
|
||||
{
|
||||
/* Let PM SMC handler deal with PM-related requests */
|
||||
if (is_pm_fid(smc_fid)) {
|
||||
return pm_smc_handler(smc_fid, x1, x2, x3, x4, cookie, handle,
|
||||
flags);
|
||||
}
|
||||
|
||||
/* Let IPI SMC handler deal with IPI-related requests */
|
||||
if (is_ipi_fid(smc_fid)) {
|
||||
return ipi_smc_handler(smc_fid, x1, x2, x3, x4, cookie, handle,
|
||||
flags);
|
||||
}
|
||||
|
||||
/* Let PM SMC handler deal with PM-related requests */
|
||||
switch (smc_fid) {
|
||||
case VERSAL_SIP_SVC_CALL_COUNT:
|
||||
/* PM functions + default functions */
|
||||
SMC_RET1(handle, 2);
|
||||
|
||||
case VERSAL_SIP_SVC_UID:
|
||||
SMC_UUID_RET(handle, versal_sip_uuid);
|
||||
|
||||
case VERSAL_SIP_SVC_VERSION:
|
||||
SMC_RET2(handle, SIP_SVC_VERSION_MAJOR, SIP_SVC_VERSION_MINOR);
|
||||
|
||||
default:
|
||||
WARN("Unimplemented SiP Service Call: 0x%x\n", smc_fid);
|
||||
SMC_RET1(handle, SMC_UNK);
|
||||
}
|
||||
}
|
||||
|
||||
/* Register PM Service Calls as runtime service */
|
||||
DECLARE_RT_SVC(
|
||||
sip_svc,
|
||||
OEN_SIP_START,
|
||||
OEN_SIP_END,
|
||||
SMC_TYPE_FAST,
|
||||
sip_svc_setup,
|
||||
sip_svc_smc_handler);
|
||||
@@ -0,0 +1,186 @@
|
||||
/*
|
||||
* Copyright (c) 2018-2019, ARM Limited and Contributors. All rights reserved.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
|
||||
#include <plat_private.h>
|
||||
#include <platform_def.h>
|
||||
|
||||
#include <common/interrupt_props.h>
|
||||
#include <drivers/arm/gicv3.h>
|
||||
#include <lib/utils.h>
|
||||
#include <plat/common/platform.h>
|
||||
|
||||
/******************************************************************************
|
||||
* The following functions are defined as weak to allow a platform to override
|
||||
* the way the GICv3 driver is initialised and used.
|
||||
*****************************************************************************/
|
||||
#pragma weak plat_versal_gic_driver_init
|
||||
#pragma weak plat_versal_gic_init
|
||||
#pragma weak plat_versal_gic_cpuif_enable
|
||||
#pragma weak plat_versal_gic_cpuif_disable
|
||||
#pragma weak plat_versal_gic_pcpu_init
|
||||
#pragma weak plat_versal_gic_redistif_on
|
||||
#pragma weak plat_versal_gic_redistif_off
|
||||
|
||||
/* The GICv3 driver only needs to be initialized in EL3 */
|
||||
static uintptr_t rdistif_base_addrs[PLATFORM_CORE_COUNT];
|
||||
|
||||
static const interrupt_prop_t versal_interrupt_props[] = {
|
||||
PLAT_VERSAL_G1S_IRQ_PROPS(INTR_GROUP1S),
|
||||
PLAT_VERSAL_G0_IRQ_PROPS(INTR_GROUP0)
|
||||
};
|
||||
|
||||
/*
|
||||
* We save and restore the GICv3 context on system suspend. Allocate the
|
||||
* data in the designated EL3 Secure carve-out memory.
|
||||
*/
|
||||
static gicv3_redist_ctx_t rdist_ctx __section("versal_el3_tzc_dram");
|
||||
static gicv3_dist_ctx_t dist_ctx __section("versal_el3_tzc_dram");
|
||||
|
||||
/*
|
||||
* MPIDR hashing function for translating MPIDRs read from GICR_TYPER register
|
||||
* to core position.
|
||||
*
|
||||
* Calculating core position is dependent on MPIDR_EL1.MT bit. However, affinity
|
||||
* values read from GICR_TYPER don't have an MT field. To reuse the same
|
||||
* translation used for CPUs, we insert MT bit read from the PE's MPIDR into
|
||||
* that read from GICR_TYPER.
|
||||
*
|
||||
* Assumptions:
|
||||
*
|
||||
* - All CPUs implemented in the system have MPIDR_EL1.MT bit set;
|
||||
* - No CPUs implemented in the system use affinity level 3.
|
||||
*/
|
||||
static uint32_t versal_gicv3_mpidr_hash(u_register_t mpidr)
|
||||
{
|
||||
mpidr |= (read_mpidr_el1() & MPIDR_MT_MASK);
|
||||
return versal_calc_core_pos(mpidr);
|
||||
}
|
||||
|
||||
static const gicv3_driver_data_t versal_gic_data __unused = {
|
||||
.gicd_base = PLAT_VERSAL_GICD_BASE,
|
||||
.gicr_base = PLAT_VERSAL_GICR_BASE,
|
||||
.interrupt_props = versal_interrupt_props,
|
||||
.interrupt_props_num = ARRAY_SIZE(versal_interrupt_props),
|
||||
.rdistif_num = PLATFORM_CORE_COUNT,
|
||||
.rdistif_base_addrs = rdistif_base_addrs,
|
||||
.mpidr_to_core_pos = versal_gicv3_mpidr_hash
|
||||
};
|
||||
|
||||
void __init plat_versal_gic_driver_init(void)
|
||||
{
|
||||
/*
|
||||
* The GICv3 driver is initialized in EL3 and does not need
|
||||
* to be initialized again in SEL1. This is because the S-EL1
|
||||
* can use GIC system registers to manage interrupts and does
|
||||
* not need GIC interface base addresses to be configured.
|
||||
*/
|
||||
#if IMAGE_BL31
|
||||
gicv3_driver_init(&versal_gic_data);
|
||||
#endif
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* Versal common helper to initialize the GIC. Only invoked by BL31
|
||||
*****************************************************************************/
|
||||
void __init plat_versal_gic_init(void)
|
||||
{
|
||||
gicv3_distif_init();
|
||||
gicv3_rdistif_init(plat_my_core_pos());
|
||||
gicv3_cpuif_enable(plat_my_core_pos());
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* Versal common helper to enable the GIC CPU interface
|
||||
*****************************************************************************/
|
||||
void plat_versal_gic_cpuif_enable(void)
|
||||
{
|
||||
gicv3_cpuif_enable(plat_my_core_pos());
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* Versal common helper to disable the GIC CPU interface
|
||||
*****************************************************************************/
|
||||
void plat_versal_gic_cpuif_disable(void)
|
||||
{
|
||||
gicv3_cpuif_disable(plat_my_core_pos());
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* Versal common helper to initialize the per-cpu redistributor interface in
|
||||
* GICv3
|
||||
*****************************************************************************/
|
||||
void plat_versal_gic_pcpu_init(void)
|
||||
{
|
||||
gicv3_rdistif_init(plat_my_core_pos());
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* Versal common helpers to power GIC redistributor interface
|
||||
*****************************************************************************/
|
||||
void plat_versal_gic_redistif_on(void)
|
||||
{
|
||||
gicv3_rdistif_on(plat_my_core_pos());
|
||||
}
|
||||
|
||||
void plat_versal_gic_redistif_off(void)
|
||||
{
|
||||
gicv3_rdistif_off(plat_my_core_pos());
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* Versal common helper to save & restore the GICv3 on resume from system
|
||||
* suspend
|
||||
*****************************************************************************/
|
||||
void plat_versal_gic_save(void)
|
||||
{
|
||||
/*
|
||||
* If an ITS is available, save its context before
|
||||
* the Redistributor using:
|
||||
* gicv3_its_save_disable(gits_base, &its_ctx[i])
|
||||
* Additionnaly, an implementation-defined sequence may
|
||||
* be required to save the whole ITS state.
|
||||
*/
|
||||
|
||||
/*
|
||||
* Save the GIC Redistributors and ITS contexts before the
|
||||
* Distributor context. As we only handle SYSTEM SUSPEND API,
|
||||
* we only need to save the context of the CPU that is issuing
|
||||
* the SYSTEM SUSPEND call, i.e. the current CPU.
|
||||
*/
|
||||
gicv3_rdistif_save(plat_my_core_pos(), &rdist_ctx);
|
||||
|
||||
/* Save the GIC Distributor context */
|
||||
gicv3_distif_save(&dist_ctx);
|
||||
|
||||
/*
|
||||
* From here, all the components of the GIC can be safely powered down
|
||||
* as long as there is an alternate way to handle wakeup interrupt
|
||||
* sources.
|
||||
*/
|
||||
}
|
||||
|
||||
void plat_versal_gic_resume(void)
|
||||
{
|
||||
/* Restore the GIC Distributor context */
|
||||
gicv3_distif_init_restore(&dist_ctx);
|
||||
|
||||
/*
|
||||
* Restore the GIC Redistributor and ITS contexts after the
|
||||
* Distributor context. As we only handle SYSTEM SUSPEND API,
|
||||
* we only need to restore the context of the CPU that issued
|
||||
* the SYSTEM SUSPEND call.
|
||||
*/
|
||||
gicv3_rdistif_init_restore(plat_my_core_pos(), &rdist_ctx);
|
||||
|
||||
/*
|
||||
* If an ITS is available, restore its context after
|
||||
* the Redistributor using:
|
||||
* gicv3_its_restore(gits_base, &its_ctx[i])
|
||||
* An implementation-defined sequence may be required to
|
||||
* restore the whole ITS state. The ITS must also be
|
||||
* re-enabled after this sequence has been executed.
|
||||
*/
|
||||
}
|
||||
@@ -0,0 +1,82 @@
|
||||
/*
|
||||
* Copyright (c) 2019-2021, Xilinx, Inc. All rights reserved.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
|
||||
/*
|
||||
* Versal IPI agent registers access management
|
||||
*/
|
||||
|
||||
#include <errno.h>
|
||||
#include <ipi.h>
|
||||
#include <plat_ipi.h>
|
||||
#include <plat_private.h>
|
||||
#include <string.h>
|
||||
#include <common/debug.h>
|
||||
#include <common/runtime_svc.h>
|
||||
#include <lib/bakery_lock.h>
|
||||
#include <lib/mmio.h>
|
||||
|
||||
/* versal ipi configuration table */
|
||||
const static struct ipi_config versal_ipi_table[] = {
|
||||
/* A72 IPI */
|
||||
[IPI_ID_APU] = {
|
||||
.ipi_bit_mask = IPI0_TRIG_BIT,
|
||||
.ipi_reg_base = IPI0_REG_BASE,
|
||||
.secure_only = 0U,
|
||||
},
|
||||
|
||||
/* PMC IPI */
|
||||
[IPI_ID_PMC] = {
|
||||
.ipi_bit_mask = PMC_IPI_TRIG_BIT,
|
||||
.ipi_reg_base = IPI0_REG_BASE,
|
||||
.secure_only = 0U,
|
||||
},
|
||||
|
||||
/* RPU0 IPI */
|
||||
[IPI_ID_RPU0] = {
|
||||
.ipi_bit_mask = IPI1_TRIG_BIT,
|
||||
.ipi_reg_base = IPI1_REG_BASE,
|
||||
.secure_only = 0U,
|
||||
},
|
||||
|
||||
/* RPU1 IPI */
|
||||
[IPI_ID_RPU1] = {
|
||||
.ipi_bit_mask = IPI2_TRIG_BIT,
|
||||
.ipi_reg_base = IPI2_REG_BASE,
|
||||
.secure_only = 0U,
|
||||
},
|
||||
|
||||
/* IPI3 IPI */
|
||||
[IPI_ID_3] = {
|
||||
.ipi_bit_mask = IPI3_TRIG_BIT,
|
||||
.ipi_reg_base = IPI3_REG_BASE,
|
||||
.secure_only = 0U,
|
||||
},
|
||||
|
||||
/* IPI4 IPI */
|
||||
[IPI_ID_4] = {
|
||||
.ipi_bit_mask = IPI4_TRIG_BIT,
|
||||
.ipi_reg_base = IPI4_REG_BASE,
|
||||
.secure_only = 0U,
|
||||
},
|
||||
|
||||
/* IPI5 IPI */
|
||||
[IPI_ID_5] = {
|
||||
.ipi_bit_mask = IPI5_TRIG_BIT,
|
||||
.ipi_reg_base = IPI5_REG_BASE,
|
||||
.secure_only = 0U,
|
||||
},
|
||||
};
|
||||
|
||||
/* versal_ipi_config_table_init() - Initialize versal IPI configuration data
|
||||
*
|
||||
* @ipi_config_table - IPI configuration table
|
||||
* @ipi_total - Total number of IPI available
|
||||
*
|
||||
*/
|
||||
void versal_ipi_config_table_init(void)
|
||||
{
|
||||
ipi_config_table_init(versal_ipi_table, ARRAY_SIZE(versal_ipi_table));
|
||||
}
|
||||
Reference in New Issue
Block a user