mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-08-16 01:17:01 +02:00
Add SMP support for Versal NET via register access. Signed-off-by: Michal Simek <michal.simek@amd.com> Signed-off-by: Akshay Belsare <Akshay.Belsare@amd.com> Change-Id: I46d73e2cd678ae720b5255722b6b0611c22659e8
26 lines
540 B
C
26 lines
540 B
C
/*
|
|
* Copyright (c) 2022, Xilinx, Inc. All rights reserved.
|
|
* Copyright (C) 2022, Advanced Micro Devices, 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 <stdint.h>
|
|
|
|
#include <common/debug.h>
|
|
|
|
#include "pm_defs.h"
|
|
|
|
#define NON_SECURE_FLAG 1U
|
|
#define SECURE_FLAG 0U
|
|
|
|
#endif /* PLAT_PM_COMMON_H */
|