1 /*
2  * Arm SCP/MCP Software
3  * Copyright (c) 2020-2021, Arm Limited and Contributors. All rights reserved.
4  *
5  * SPDX-License-Identifier: BSD-3-Clause
6  */
7 
8 #ifndef SCP_SOC_MMAP_H
9 #define SCP_SOC_MMAP_H
10 
11 #include "scp_mmap.h"
12 
13 #define SCP_PLL_BASE (SCP_SOC_EXPANSION3_BASE + 0x03000000)
14 
15 #define SCP_PLL_SYSPLL (SCP_PLL_BASE + 0x00000000)
16 #define SCP_PLL_DISPLAY (SCP_PLL_BASE + 0x00000014)
17 #define SCP_PLL_PIX0 (SCP_PLL_BASE + 0x00000018)
18 #define SCP_PLL_PIX1 (SCP_PLL_BASE + 0x0000001C)
19 #define SCP_PLL_INTERCONNECT (SCP_PLL_BASE + 0x00000020)
20 
21 #define SCP_PLL_CPU_TYPE0 (SCP_PLL_BASE + 0x00000100)
22 #define SCP_PLL_CPU_TYPE1 (SCP_PLL_BASE + 0x00000104)
23 #define SCP_PLL_CPU_TYPE2 (SCP_PLL_BASE + 0x00000108)
24 
25 #endif /* SCP_SOC_MMAP_H */
26