AGESA F15: AMD family15 AGESA code
[coreboot.git] / src / vendorcode / amd / agesa / f15 / Proc / CPU / Family / 0x10 / RevC / DA / F10DaCacheFlushOnHalt.c
1 /* $NoKeywords:$ */
2 /**
3  * @file
4  *
5  * AMD CPU Cache Flush On Halt Function.
6  *
7  * Contains code to initialize Cache Flush On Halt feature for Family 10h DA.
8  *
9  * @xrefitem bom "File Content Label" "Release Content"
10  * @e project:      AGESA
11  * @e sub-project:  CPU/Family/0x10/DA
12  * @e \$Revision: 56279 $   @e \$Date: 2011-07-11 13:11:28 -0600 (Mon, 11 Jul 2011) $
13  *
14  */
15 /*
16  ******************************************************************************
17  *
18  * Copyright (C) 2012 Advanced Micro Devices, Inc.
19  * All rights reserved.
20  *
21  * Redistribution and use in source and binary forms, with or without
22  * modification, are permitted provided that the following conditions are met:
23  *     * Redistributions of source code must retain the above copyright
24  *       notice, this list of conditions and the following disclaimer.
25  *     * Redistributions in binary form must reproduce the above copyright
26  *       notice, this list of conditions and the following disclaimer in the
27  *       documentation and/or other materials provided with the distribution.
28  *     * Neither the name of Advanced Micro Devices, Inc. nor the names of
29  *       its contributors may be used to endorse or promote products derived
30  *       from this software without specific prior written permission.
31  *
32  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
33  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
34  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
35  * DISCLAIMED. IN NO EVENT SHALL ADVANCED MICRO DEVICES, INC. BE LIABLE FOR ANY
36  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
37  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
38  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
39  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
40  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
41  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
42  *
43  ******************************************************************************
44  *----------------------------------------------------------------------------
45  */
46
47
48 /*
49  *----------------------------------------------------------------------------
50  *                                MODULES USED
51  *
52  *----------------------------------------------------------------------------
53  */
54 #include "AGESA.h"
55 #include "cpuRegisters.h"
56 #include "cpuServices.h"
57 #include "cpuFamilyTranslation.h"
58 #include "cpuPostInit.h"
59 #include "cpuFeatures.h"
60 #include "OptionMultiSocket.h"
61 #include "Filecode.h"
62 CODE_GROUP (G1_PEICC)
63 RDATA_GROUP (G2_PEI)
64
65 #define FILECODE PROC_CPU_FAMILY_0X10_REVC_DA_F10DACACHEFLUSHONHALT_FILECODE
66 /*----------------------------------------------------------------------------
67  *                          DEFINITIONS AND MACROS
68  *
69  *----------------------------------------------------------------------------
70  */
71 extern OPTION_MULTISOCKET_CONFIGURATION OptionMultiSocketConfiguration;
72
73 /*----------------------------------------------------------------------------
74  *                           TYPEDEFS AND STRUCTURES
75  *
76  *----------------------------------------------------------------------------
77  */
78
79 /*----------------------------------------------------------------------------------------
80  *                          E X P O R T E D    F U N C T I O N S
81  *----------------------------------------------------------------------------------------
82  */
83
84 /*----------------------------------------------------------------------------
85  *                        PROTOTYPES OF LOCAL FUNCTIONS
86  *
87  *----------------------------------------------------------------------------
88  */
89
90 /*----------------------------------------------------------------------------------------
91  *                          P U B L I C     F U N C T I O N S
92  *----------------------------------------------------------------------------------------
93  */
94
95 /* -----------------------------------------------------------------------------*/
96 /**
97  *    Enable DA-C Cpu Cache Flush On Halt Function
98  *
99  *    @param[in]       FamilySpecificServices   The current Family Specific Services.
100  *    @param[in]       EntryPoint               Timepoint designator.
101  *    @param[in]       PlatformConfig           Contains the runtime modifiable feature input data.
102  *    @param[in]       StdHeader                Config Handle for library, services.
103  */
104 VOID
105 SetF10DaCacheFlushOnHaltRegister (
106   IN       CPU_CFOH_FAMILY_SERVICES     *FamilySpecificServices,
107   IN       UINT64                       EntryPoint,
108   IN       PLATFORM_CONFIGURATION       *PlatformConfig,
109   IN       AMD_CONFIG_PARAMS            *StdHeader
110   )
111 {
112   UINT32       CoreCount;
113   UINT32       AndMask;
114   UINT32       OrMask;
115   PCI_ADDR     PciAddress;
116   CPU_LOGICAL_ID LogicalId;
117
118   if ((EntryPoint & CPU_FEAT_AFTER_POST_MTRR_SYNC) != 0) {
119     // F3xDC[25:19] = 04h
120     // F3xDC[18:16] = 111b
121     PciAddress.Address.Function = FUNC_3;
122     PciAddress.Address.Register = CLOCK_POWER_TIMING_CTRL2_REG;
123     AndMask = 0xFC00FFFF;
124     OrMask = 0x00270000;
125
126     GetLogicalIdOfCurrentCore (&LogicalId, StdHeader);
127     if (LogicalId.Revision == AMD_F10_DA_C2) {
128       //For DA_C2 single Core, F3xDC[18:16] = 0
129       GetActiveCoresInCurrentSocket (&CoreCount, StdHeader);
130       if (CoreCount == 1) {
131         OrMask = 0x00200000;
132       }
133     }
134
135     IDS_OPTION_HOOK (IDS_CACHE_FLUSH_HLT, &OrMask, StdHeader);
136     OptionMultiSocketConfiguration.ModifyCurrSocketPci (&PciAddress, AndMask, OrMask, StdHeader); // F3xDC
137   }
138 }
139
140 CONST CPU_CFOH_FAMILY_SERVICES ROMDATA F10DaCacheFlushOnHalt =
141 {
142   0,
143   SetF10DaCacheFlushOnHaltRegister
144 };