mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-05-03 09:29:57 +00:00

Refactored system manager driver to be shared across both intel platform Signed-off-by: Hadi Asyrafi <muhammad.hadi.asyrafi.abdul.halim@intel.com> Change-Id: Ic4d056c3d15c3152403dc11641c2452770a6162d
28 lines
768 B
C
28 lines
768 B
C
/*
|
|
* Copyright (c) 2019, ARM Limited and Contributors. All rights reserved.
|
|
* Copyright (c) 2019, Intel Corporation. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef PLAT_SOCFPGA_DEF_H
|
|
#define PLAT_SOCFPGA_DEF_H
|
|
|
|
#include <platform_def.h>
|
|
|
|
/* Platform Setting */
|
|
#define PLATFORM_MODEL PLAT_SOCFPGA_AGILEX
|
|
|
|
/* Register Mapping */
|
|
#define SOCFPGA_MMC_REG_BASE 0xff808000
|
|
|
|
#define SOCFPGA_RSTMGR_REG_BASE 0xffd11000
|
|
#define SOCFPGA_SYSMGR_REG_BASE 0xffd12000
|
|
|
|
#define SOCFPGA_L4_PER_SCR_REG_BASE 0xffd21000
|
|
#define SOCFPGA_L4_SYS_SCR_REG_BASE 0xffd21100
|
|
#define SOCFPGA_SOC2FPGA_SCR_REG_BASE 0xffd21200
|
|
#define SOCFPGA_LWSOC2FPGA_SCR_REG_BASE 0xffd21300
|
|
|
|
#endif /* PLAT_SOCFPGA_DEF_H */
|
|
|