arm-trusted-firmware/plat/amd/versal2/include/scmi.h
Amit Nagal c97857dba2 feat(versal2): add support for AMD Versal Gen 2 platform
New SoC is a78 based with gicv3 and uart over pl011. Communication
interfaces are similar to Versal NET platform. System starts with AMD PLM
firmware which loads TF-A(bl31) to memory, which is already configured, and
jumps to it. PLM also prepare handoff structure for TF-A with information
what components were load and flags which indicate which EL level SW should
be started.

Change-Id: I5065b1b7ec4ee58e77dc4096747758480c84009c
Signed-off-by: Amit Nagal <amit.nagal@amd.com>
Signed-off-by: Akshay Belsare <akshay.belsare@amd.com>
Signed-off-by: Michal Simek <michal.simek@amd.com>
2024-06-10 08:09:49 +02:00

20 lines
367 B
C

/*
* Copyright (c) 2023-2024, Advanced Micro Devices, Inc. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
#ifndef SCMI_H
#define SCMI_H
#include "versal2-scmi.h"
#define SIP_SCMI (0xC200ffffU)
#define SMT_BUFFER_BASE 0x7fffe000
void init_scmi_server(void);
#define SCMI_VENDOR "AMD"
#define SCMI_PRODUCT "Versal Gen 2"
#endif /* DEF_H */