AGESA F15: AMD family15 AGESA code
[coreboot.git] / src / vendorcode / amd / agesa / f15 / Proc / Mem / Tech / mt.c
1 /* $NoKeywords:$ */
2 /**
3  * @file
4  *
5  * mt.c
6  *
7  * Common Technology file
8  *
9  * @xrefitem bom "File Content Label" "Release Content"
10  * @e project: AGESA
11  * @e sub-project: (Mem/Tech)
12  * @e \$Revision: 56279 $ @e \$Date: 2011-07-11 13:11:28 -0600 (Mon, 11 Jul 2011) $
13  *
14  **/
15 /*****************************************************************************
16 *
17 * Copyright (C) 2012 Advanced Micro Devices, Inc.
18 * All rights reserved.
19 *
20 * Redistribution and use in source and binary forms, with or without
21 * modification, are permitted provided that the following conditions are met:
22 *     * Redistributions of source code must retain the above copyright
23 *       notice, this list of conditions and the following disclaimer.
24 *     * Redistributions in binary form must reproduce the above copyright
25 *       notice, this list of conditions and the following disclaimer in the
26 *       documentation and/or other materials provided with the distribution.
27 *     * Neither the name of Advanced Micro Devices, Inc. nor the names of
28 *       its contributors may be used to endorse or promote products derived
29 *       from this software without specific prior written permission.
30 *
31 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
32 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
33 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
34 * DISCLAIMED. IN NO EVENT SHALL ADVANCED MICRO DEVICES, INC. BE LIABLE FOR ANY
35 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
36 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
37 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
38 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
39 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
40 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
41 *
42 * ***************************************************************************
43 *
44 */
45
46 /*
47  *----------------------------------------------------------------------------
48  *                                MODULES USED
49  *
50  *----------------------------------------------------------------------------
51  */
52
53
54 #include "AGESA.h"
55 #include "amdlib.h"
56 #include "mport.h"
57 #include "mm.h"
58 #include "mn.h"
59 #include "mt.h"
60 #include "Filecode.h"
61 CODE_GROUP (G1_PEICC)
62 RDATA_GROUP (G2_PEI)
63
64 #define FILECODE PROC_MEM_TECH_MT_FILECODE
65 /*----------------------------------------------------------------------------
66  *                          DEFINITIONS AND MACROS
67  *
68  *----------------------------------------------------------------------------
69  */
70
71 /*----------------------------------------------------------------------------
72  *                           TYPEDEFS AND STRUCTURES
73  *
74  *----------------------------------------------------------------------------
75  */
76
77 /*----------------------------------------------------------------------------
78  *                        PROTOTYPES OF LOCAL FUNCTIONS
79  *
80  *----------------------------------------------------------------------------
81  */
82 BOOLEAN
83 STATIC
84 MemTDefaultTechnologyHook (
85   IN OUT   MEM_TECH_BLOCK *TechPtr,
86   IN OUT   VOID *OptParam
87   );
88 /*----------------------------------------------------------------------------
89  *                            EXPORTED FUNCTIONS
90  *
91  *----------------------------------------------------------------------------
92  */
93
94 /* -----------------------------------------------------------------------------*/
95 /**
96  *
97  *      This function is the default return for non-training technology features
98  *
99  *     @param[in,out]   *TechPtr   - Pointer to the MEM_TECH_BLOCK
100  */
101 BOOLEAN
102 MemTFeatDef (
103   IN OUT   MEM_TECH_BLOCK *TechPtr
104   )
105 {
106   return TRUE;
107 }
108
109 /* -----------------------------------------------------------------------------*/
110 /**
111  *
112  *      This function sets the TestFail bit for all CS that fail training.
113  *
114  *     @param[in,out]   *TechPtr   - Pointer to the MEM_TECH_BLOCK
115  */
116 VOID
117 MemTMarkTrainFail (
118   IN OUT   MEM_TECH_BLOCK *TechPtr
119   )
120 {
121   MEM_NB_BLOCK *NBPtr;
122   UINT8 Dct;
123   UINT8 ChipSel;
124
125   NBPtr = TechPtr->NBPtr;
126   for (Dct = 0; Dct < NBPtr->DctCount; Dct ++) {
127     NBPtr->SwitchDCT (NBPtr, Dct);
128     NBPtr->DCTPtr->Timings.CsEnabled &= ~NBPtr->DCTPtr->Timings.CsTrainFail;
129     for (ChipSel = 0; ChipSel < MAX_CS_PER_CHANNEL; ChipSel ++) {
130       if ((NBPtr->DCTPtr->Timings.CsTrainFail & ((UINT16)1 << ChipSel)) != 0) {
131         NBPtr->SetBitField (NBPtr, (BFCSBaseAddr0Reg + ChipSel), (UINT32)1 << BFTestFail);
132       }
133     }
134   }
135 }
136
137 /* -----------------------------------------------------------------------------*/
138 /**
139  *
140  *      This function sets the initial controller environment before training.
141  *
142  *     @param[in,out]   *TechPtr   - Pointer to the MEM_TECH_BLOCK
143  *
144  */
145
146 VOID
147 MemTBeginTraining (
148   IN OUT   MEM_TECH_BLOCK *TechPtr
149   )
150 {
151   S_UINT64 SMsr;
152   MEM_DATA_STRUCT *MemPtr;
153   MEM_NB_BLOCK  *NBPtr;
154
155   NBPtr = TechPtr->NBPtr;
156   MemPtr = NBPtr->MemPtr;
157
158   LibAmdReadCpuReg (CR4_REG, &TechPtr->CR4reg);
159   LibAmdWriteCpuReg (CR4_REG, TechPtr->CR4reg | ((UINT32)1 << 9)); // enable SSE2
160
161   LibAmdMsrRead (HWCR, (UINT64 *) (&SMsr), &MemPtr->StdHeader);            // HWCR
162   TechPtr->HwcrLo = SMsr.lo;
163   SMsr.lo |= 0x00020000;                  // turn on HWCR.wrap32dis
164   SMsr.lo &= 0xFFFF7FFF;                  // turn off HWCR.SSEDIS
165   LibAmdMsrWrite (HWCR, (UINT64 *) (&SMsr), &MemPtr->StdHeader);
166
167   TechPtr->DramEcc = (UINT8) NBPtr->GetBitField (NBPtr, BFDramEccEn);
168   NBPtr->SetBitField (NBPtr, BFDramEccEn, 0); // Disable ECC
169 }
170
171 /* -----------------------------------------------------------------------------*/
172 /**
173  *
174  *      This function sets the final controller environment after training.
175  *
176  *     @param[in,out]   *TechPtr   - Pointer to the MEM_TECH_BLOCK
177  *
178  */
179
180 VOID
181 MemTEndTraining (
182   IN OUT   MEM_TECH_BLOCK *TechPtr
183   )
184 {
185   S_UINT64 SMsr;
186   MEM_DATA_STRUCT *MemPtr;
187   MEM_NB_BLOCK  *NBPtr;
188
189   NBPtr = TechPtr->NBPtr;
190   MemPtr = NBPtr->MemPtr;
191
192   LibAmdWriteCpuReg (CR4_REG, TechPtr->CR4reg);
193
194   LibAmdMsrRead (HWCR, (UINT64 *)&SMsr, &MemPtr->StdHeader);
195   SMsr.lo = TechPtr->HwcrLo;
196   LibAmdMsrWrite (HWCR, (UINT64 *)&SMsr, &MemPtr->StdHeader);
197
198   NBPtr->SetBitField (NBPtr, BFDramEccEn, TechPtr->DramEcc);
199 }
200
201 /* -----------------------------------------------------------------------------*/
202 /**
203  *
204  *      This function sets all the bytelanes/nibbles to the same delay value
205  *
206  *     @param[in,out]   *TechPtr   - Pointer to the MEM_TECH_BLOCK
207  *     @param[in]       Dly - Delay value to set
208  *
209  */
210
211 VOID
212 MemTSetDQSDelayAllCSR (
213   IN OUT   MEM_TECH_BLOCK *TechPtr,
214   IN       UINT8 Dly
215   )
216 {
217   UINT8 i;
218   UINT8 MaxBytelanes;
219   MaxBytelanes = (TechPtr->NBPtr->MCTPtr->Status[SbEccDimms] && TechPtr->NBPtr->IsSupported[EccByteTraining]) ? 9 : 8;
220
221   for (i = 0; i <  MaxBytelanes; i++) {
222     TechPtr->SetDQSDelayCSR (TechPtr, i, Dly);
223   }
224   TechPtr->NBPtr->FamilySpecificHook[RegAccessFence] (TechPtr->NBPtr, NULL);
225 }
226 /*-----------------------------------------------------------------------------
227  *
228  *
229  *     This function is used to intialize common technology functions
230  *
231  *     @param[in,out]  *TechPtr     - Pointer to the MEM_TECH_BLOCK
232  * ----------------------------------------------------------------------------
233  */
234 VOID
235 MemTCommonTechInit (
236   IN OUT   MEM_TECH_BLOCK *TechPtr
237   )
238 {
239   UINT8 i;
240   for (i = 0; i < NumberOfTechHooks; i++) {
241     TechPtr->TechnologySpecificHook[i] = MemTDefaultTechnologyHook;
242   }
243 }
244 /*-----------------------------------------------------------------------------
245  *
246  *
247  *     This function is an empty function used to intialize TechnologySpecificHook array
248  *
249  *     @param[in,out]  *TechPtr     - Pointer to the MEM_NB_BLOCK
250  *     @param[in,out]  OptParam   - Optional parameter
251  *
252  *     @return  FALSE - always
253  * ----------------------------------------------------------------------------
254  */
255 BOOLEAN
256 STATIC
257 MemTDefaultTechnologyHook (
258   IN OUT   MEM_TECH_BLOCK *TechPtr,
259   IN OUT   VOID *OptParam
260   )
261 {
262   return FALSE;
263 }