AGESA F15: AMD family15 AGESA code
[coreboot.git] / src / vendorcode / amd / agesa / f15 / Proc / Mem / Ps / DA / mpsda2.c
1 /* $NoKeywords:$ */
2 /**
3  * @file
4  *
5  * mpsda2.c
6  *
7  * Platform specific settings for DA DDR2 SO-DIMM system
8  *
9  * @xrefitem bom "File Content Label" "Release Content"
10  * @e project: AGESA
11  * @e sub-project: (Mem/Ps)
12  * @e \$Revision: 44324 $ @e \$Date: 2010-12-22 02:16:51 -0700 (Wed, 22 Dec 2010) $
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 /* This file contains routine that add platform specific support S1g3 */
47
48
49 #include "AGESA.h"
50 #include "AdvancedApi.h"
51 #include "mport.h"
52 #include "PlatformMemoryConfiguration.h"
53 #include "ma.h"
54 #include "Ids.h"
55 #include "cpuFamRegisters.h"
56 #include "mm.h"
57 #include "mn.h"
58 #include "mp.h"
59 #include "Filecode.h"
60 CODE_GROUP (G2_PEI)
61 RDATA_GROUP (G2_PEI)
62
63 #define FILECODE PROC_MEM_PS_DA_MPSDA2_FILECODE
64 /*----------------------------------------------------------------------------
65  *                          DEFINITIONS AND MACROS
66  *
67  *----------------------------------------------------------------------------
68  */
69
70 /*----------------------------------------------------------------------------
71  *                           TYPEDEFS AND STRUCTURES
72  *
73  *----------------------------------------------------------------------------
74  */
75
76 /*----------------------------------------------------------------------------
77  *                        PROTOTYPES OF LOCAL FUNCTIONS
78  *
79  *----------------------------------------------------------------------------
80  */
81 BOOLEAN
82 STATIC
83 MemPDoPsSDA2 (
84   IN OUT   MEM_NB_BLOCK *NBPtr
85   );
86
87 /*
88  *-----------------------------------------------------------------------------
89  *                                EXPORTED FUNCTIONS
90  *
91  *-----------------------------------------------------------------------------
92  */
93 STATIC CONST DRAM_TERM_ENTRY DaSDdr2DramTerm[] = {
94   {DDR533 + DDR667 + DDR800, ONE_DIMM, ANY_NUM, 2, 0, 0},
95   {DDR533 + DDR667, TWO_DIMM, ANY_NUM, 1, 0, 0},
96   {DDR800, TWO_DIMM, ANY_NUM, 3, 0, 0}
97 };
98 /* -----------------------------------------------------------------------------*/
99 /**
100  *
101  *     This function is the constructor the platform specific settings for SO-DIMM DA DDR2
102  *
103  *     @param[in,out]   *MemPtr           Pointer to MEM_DATA_STRUCTURE
104  *     @param[in,out]   *ChannelPtr       Pointer to CH_DEF_STRUCT
105  *     @param[in,out]   *PsPtr       Pointer to MEM_PS_BLOCK
106  *
107  *     @return          AGESA_SUCCESS
108  *
109  */
110
111 AGESA_STATUS
112 MemPConstructPsSDA2 (
113   IN OUT   MEM_DATA_STRUCT *MemPtr,
114   IN OUT   CH_DEF_STRUCT *ChannelPtr,
115   IN OUT   MEM_PS_BLOCK *PsPtr
116   )
117 {
118   ASSERT (MemPtr != 0);
119   ASSERT (ChannelPtr != 0);
120
121   if ((ChannelPtr->MCTPtr->LogicalCpuid.Family & (AMD_FAMILY_10_DA | AMD_FAMILY_10_BL)) == 0) {
122     return AGESA_UNSUPPORTED;
123   }
124   if (ChannelPtr->TechType != DDR2_TECHNOLOGY) {
125     return AGESA_UNSUPPORTED;
126   }
127   if (ChannelPtr->SODimmPresent != ChannelPtr->ChDimmValid) {
128     return AGESA_UNSUPPORTED;
129   }
130
131   PsPtr->MemPDoPs = MemPDoPsSDA2;
132   PsPtr->MemPGetPORFreqLimit = MemPGetPORFreqLimitDef;
133   return AGESA_SUCCESS;
134 }
135
136 /* -----------------------------------------------------------------------------*/
137 /**
138  *
139  *     This is function sets the platform specific settings for SO-DIMM DA DDR2
140  *
141  *     @param[in,out]   *NBPtr           Pointer to MEM_NB_BLOCK
142  *
143  *     @return          TRUE - Find settings for corresponding platform and dimm population.
144  *     @return          FALSE - Fail to find settings for corresponding platform and dimm population.
145  *
146  */
147
148 BOOLEAN
149 STATIC
150 MemPDoPsSDA2 (
151   IN OUT   MEM_NB_BLOCK *NBPtr
152   )
153 {
154   if (!MemPGetDramTerm (NBPtr, GET_SIZE_OF (DaSDdr2DramTerm), DaSDdr2DramTerm)) {
155     return FALSE;
156   }
157
158   return TRUE;
159 }
160