]> git.proxmox.com Git - mirror_edk2.git/blob - ArmPlatformPkg/ArmVExpressPkg/Library/ArmVExpressLibCTA9x4/CTA9x4.c
b314f51b01ac87a6f8f1d4eb3c5b29b54cb4c4b4
[mirror_edk2.git] / ArmPlatformPkg / ArmVExpressPkg / Library / ArmVExpressLibCTA9x4 / CTA9x4.c
1 /** @file
2 *
3 * Copyright (c) 2011-2012, ARM Limited. All rights reserved.
4 *
5 * This program and the accompanying materials
6 * are licensed and made available under the terms and conditions of the BSD License
7 * which accompanies this distribution. The full text of the license may be found at
8 * http://opensource.org/licenses/bsd-license.php
9 *
10 * THE PROGRAM IS DISTRIBUTED UNDER THE BSD LICENSE ON AN "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
12 *
13 **/
14
15 #include <Library/IoLib.h>
16 #include <Library/ArmPlatformLib.h>
17 #include <Library/DebugLib.h>
18 #include <Library/PcdLib.h>
19 #include <Library/SerialPortLib.h>
20
21 #include <Drivers/PL341Dmc.h>
22 #include <Drivers/PL301Axi.h>
23 #include <Drivers/SP804Timer.h>
24
25 #include <Ppi/ArmMpCoreInfo.h>
26
27 #include <ArmPlatform.h>
28
29 #define SerialPrint(txt) SerialPortWrite ((UINT8*)(txt), AsciiStrLen(txt)+1);
30
31 ARM_CORE_INFO mVersatileExpressMpCoreInfoCTA9x4[] = {
32 {
33 // Cluster 0, Core 0
34 0x0, 0x0,
35
36 // MP Core MailBox Set/Get/Clear Addresses and Clear Value
37 (EFI_PHYSICAL_ADDRESS)ARM_VE_SYS_FLAGS_REG,
38 (EFI_PHYSICAL_ADDRESS)ARM_VE_SYS_FLAGS_SET_REG,
39 (EFI_PHYSICAL_ADDRESS)ARM_VE_SYS_FLAGS_CLR_REG,
40 (UINT64)0xFFFFFFFF
41 },
42 {
43 // Cluster 0, Core 1
44 0x0, 0x1,
45
46 // MP Core MailBox Set/Get/Clear Addresses and Clear Value
47 (EFI_PHYSICAL_ADDRESS)ARM_VE_SYS_FLAGS_REG,
48 (EFI_PHYSICAL_ADDRESS)ARM_VE_SYS_FLAGS_SET_REG,
49 (EFI_PHYSICAL_ADDRESS)ARM_VE_SYS_FLAGS_CLR_REG,
50 (UINT64)0xFFFFFFFF
51 },
52 {
53 // Cluster 0, Core 2
54 0x0, 0x2,
55
56 // MP Core MailBox Set/Get/Clear Addresses and Clear Value
57 (EFI_PHYSICAL_ADDRESS)ARM_VE_SYS_FLAGS_REG,
58 (EFI_PHYSICAL_ADDRESS)ARM_VE_SYS_FLAGS_SET_REG,
59 (EFI_PHYSICAL_ADDRESS)ARM_VE_SYS_FLAGS_CLR_REG,
60 (UINT64)0xFFFFFFFF
61 },
62 {
63 // Cluster 0, Core 3
64 0x0, 0x3,
65
66 // MP Core MailBox Set/Get/Clear Addresses and Clear Value
67 (EFI_PHYSICAL_ADDRESS)ARM_VE_SYS_FLAGS_REG,
68 (EFI_PHYSICAL_ADDRESS)ARM_VE_SYS_FLAGS_SET_REG,
69 (EFI_PHYSICAL_ADDRESS)ARM_VE_SYS_FLAGS_CLR_REG,
70 (UINT64)0xFFFFFFFF
71 }
72 };
73
74 // DDR2 timings
75 PL341_DMC_CONFIG DDRTimings = {
76 .MaxChip = 1,
77 .IsUserCfg = TRUE,
78 .User0Cfg = 0x7C924924,
79 .User2Cfg = (TC_UIOLHXC_VALUE << TC_UIOLHNC_SHIFT) | (TC_UIOLHXC_VALUE << TC_UIOLHPC_SHIFT) | (0x1 << TC_UIOHOCT_SHIFT) | (0x1 << TC_UIOHSTOP_SHIFT),
80 .HasQos = TRUE,
81 .RefreshPeriod = 0x3D0,
82 .CasLatency = 0x8,
83 .WriteLatency = 0x3,
84 .t_mrd = 0x2,
85 .t_ras = 0xA,
86 .t_rc = 0xE,
87 .t_rcd = 0x104,
88 .t_rfc = 0x2f32,
89 .t_rp = 0x14,
90 .t_rrd = 0x2,
91 .t_wr = 0x4,
92 .t_wtr = 0x2,
93 .t_xp = 0x2,
94 .t_xsr = 0xC8,
95 .t_esr = 0x14,
96 .MemoryCfg = DMC_MEMORY_CONFIG_ACTIVE_CHIP_1 | DMC_MEMORY_CONFIG_BURST_4 |
97 DMC_MEMORY_CONFIG_ROW_ADDRESS_15 | DMC_MEMORY_CONFIG_COLUMN_ADDRESS_10,
98 .MemoryCfg2 = DMC_MEMORY_CFG2_DQM_INIT | DMC_MEMORY_CFG2_CKE_INIT |
99 DMC_MEMORY_CFG2_BANK_BITS_3 | DMC_MEMORY_CFG2_MEM_WIDTH_32,
100 .MemoryCfg3 = 0x00000001,
101 .ChipCfg0 = 0x00010000,
102 .t_faw = 0x00000A0D,
103 .ModeReg = DDR2_MR_BURST_LENGTH_4 | DDR2_MR_CAS_LATENCY_4 | DDR2_MR_WR_CYCLES_4,
104 .ExtModeReg = DDR_EMR_RTT_50R | (DDR_EMR_ODS_VAL << DDR_EMR_ODS_MASK),
105 };
106
107 /**
108 Return the current Boot Mode
109
110 This function returns the boot reason on the platform
111
112 @return Return the current Boot Mode of the platform
113
114 **/
115 EFI_BOOT_MODE
116 ArmPlatformGetBootMode (
117 VOID
118 )
119 {
120 if (MmioRead32(ARM_VE_SYS_FLAGS_NV_REG) == 0) {
121 return BOOT_WITH_FULL_CONFIGURATION;
122 } else {
123 return BOOT_ON_S2_RESUME;
124 }
125 }
126
127 /**
128 Initialize controllers that must setup in the normal world
129
130 This function is called by the ArmPlatformPkg/PrePi or ArmPlatformPkg/PlatformPei
131 in the PEI phase.
132
133 **/
134 VOID
135 ArmPlatformNormalInitialize (
136 VOID
137 )
138 {
139 // Configure periodic timer (TIMER0) for 1MHz operation
140 MmioOr32 (SP810_CTRL_BASE + SP810_SYS_CTRL_REG, SP810_SYS_CTRL_TIMER0_TIMCLK);
141 // Configure 1MHz clock
142 MmioOr32 (SP810_CTRL_BASE + SP810_SYS_CTRL_REG, SP810_SYS_CTRL_TIMER1_TIMCLK);
143 // configure SP810 to use 1MHz clock and disable
144 MmioAndThenOr32 (SP810_CTRL_BASE + SP810_SYS_CTRL_REG, ~SP810_SYS_CTRL_TIMER2_EN, SP810_SYS_CTRL_TIMER2_TIMCLK);
145 // Configure SP810 to use 1MHz clock and disable
146 MmioAndThenOr32 (SP810_CTRL_BASE + SP810_SYS_CTRL_REG, ~SP810_SYS_CTRL_TIMER3_EN, SP810_SYS_CTRL_TIMER3_TIMCLK);
147 }
148
149 /**
150 Initialize the system (or sometimes called permanent) memory
151
152 This memory is generally represented by the DRAM.
153
154 **/
155 VOID
156 ArmPlatformInitializeSystemMemory (
157 VOID
158 )
159 {
160 UINT32 Value;
161
162 // Memory Map remapping
163 if (FeaturePcdGet(PcdNorFlashRemapping)) {
164 SerialPrint ("Secure ROM at 0x0\n\r");
165 } else {
166 Value = MmioRead32(ARM_VE_SYS_CFGRW1_REG); //Scc - CFGRW1
167 // Remap the DRAM to 0x0
168 MmioWrite32(ARM_VE_SYS_CFGRW1_REG, (Value & 0x0FFFFFFF) | ARM_VE_CFGRW1_REMAP_DRAM);
169 }
170
171 PL341DmcInit(ARM_VE_DMC_BASE, &DDRTimings);
172 PL301AxiInit(ARM_VE_FAXI_BASE);
173 }
174
175 EFI_STATUS
176 PrePeiCoreGetMpCoreInfo (
177 OUT UINTN *CoreCount,
178 OUT ARM_CORE_INFO **ArmCoreTable
179 )
180 {
181 *CoreCount = sizeof(mVersatileExpressMpCoreInfoCTA9x4) / sizeof(ARM_CORE_INFO);
182 *ArmCoreTable = mVersatileExpressMpCoreInfoCTA9x4;
183
184 return EFI_SUCCESS;
185 }
186
187 // Needs to be declared in the file. Otherwise gArmMpCoreInfoPpiGuid is undefined in the contect of PrePeiCore
188 EFI_GUID mArmMpCoreInfoPpiGuid = ARM_MP_CORE_INFO_PPI_GUID;
189 ARM_MP_CORE_INFO_PPI mMpCoreInfoPpi = { PrePeiCoreGetMpCoreInfo };
190
191 EFI_PEI_PPI_DESCRIPTOR gPlatformPpiTable[] = {
192 {
193 EFI_PEI_PPI_DESCRIPTOR_PPI,
194 &mArmMpCoreInfoPpiGuid,
195 &mMpCoreInfoPpi
196 }
197 };
198
199 VOID
200 ArmPlatformGetPlatformPpiList (
201 OUT UINTN *PpiListSize,
202 OUT EFI_PEI_PPI_DESCRIPTOR **PpiList
203 )
204 {
205 *PpiListSize = sizeof(gPlatformPpiTable);
206 *PpiList = gPlatformPpiTable;
207 }
208