blob: 5531f47ba2d317e8c47bf53ec69a32722a9c04d0 [file] [log] [blame]
Frank Vibrans2b4c8312011-02-14 18:30:54 +00001/* $NoKeywords:$ */
2/**
3 * @file
4 *
5 * AMD Family_14 WHEA initial Data
6 *
7 * @xrefitem bom "File Content Label" "Release Content"
8 * @e project: AGESA
9 * @e sub-project: CPU
10 * @e \$Revision: 34897 $ @e \$Date: 2010-07-14 10:07:10 +0800 (Wed, 14 Jul 2010) $
11 *
12 */
13/*
14 *****************************************************************************
15 *
16 * Copyright (c) 2011, Advanced Micro Devices, Inc.
17 * All rights reserved.
Edward O'Callaghan1542a6f2014-07-06 19:24:06 +100018 *
Frank Vibrans2b4c8312011-02-14 18:30:54 +000019 * Redistribution and use in source and binary forms, with or without
20 * modification, are permitted provided that the following conditions are met:
21 * * Redistributions of source code must retain the above copyright
22 * notice, this list of conditions and the following disclaimer.
23 * * Redistributions in binary form must reproduce the above copyright
24 * notice, this list of conditions and the following disclaimer in the
25 * documentation and/or other materials provided with the distribution.
Edward O'Callaghan1542a6f2014-07-06 19:24:06 +100026 * * Neither the name of Advanced Micro Devices, Inc. nor the names of
27 * its contributors may be used to endorse or promote products derived
Frank Vibrans2b4c8312011-02-14 18:30:54 +000028 * from this software without specific prior written permission.
Edward O'Callaghan1542a6f2014-07-06 19:24:06 +100029 *
Frank Vibrans2b4c8312011-02-14 18:30:54 +000030 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
31 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
32 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
33 * DISCLAIMED. IN NO EVENT SHALL ADVANCED MICRO DEVICES, INC. BE LIABLE FOR ANY
34 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
35 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
36 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
37 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
38 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
39 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Edward O'Callaghan1542a6f2014-07-06 19:24:06 +100040 *
Frank Vibrans2b4c8312011-02-14 18:30:54 +000041 * ***************************************************************************
42 *
43 */
44
45/*----------------------------------------------------------------------------------------
46 * M O D U L E S U S E D
47 *----------------------------------------------------------------------------------------
48 */
49#include "AGESA.h"
50#include "cpuLateInit.h"
51#include "cpuFamilyTranslation.h"
52#include "Filecode.h"
53#define FILECODE PROC_CPU_FAMILY_0X14_CPUF14WHEAINITDATATABLES_FILECODE
54
55/*----------------------------------------------------------------------------------------
56 * D E F I N I T I O N S A N D M A C R O S
57 *----------------------------------------------------------------------------------------
58 */
59
60/*----------------------------------------------------------------------------------------
61 * T Y P E D E F S A N D S T R U C T U R E S
62 *----------------------------------------------------------------------------------------
63 */
64
65/*----------------------------------------------------------------------------------------
66 * P R O T O T Y P E S O F L O C A L F U N C T I O N S
67 *----------------------------------------------------------------------------------------
68 */
69
efdesign9884cbce22011-08-04 12:09:17 -060070VOID
71GetF14WheaInitData (
72 IN CPU_SPECIFIC_SERVICES *FamilySpecificServices,
73 OUT CONST VOID **F14WheaInitDataPtr,
74 OUT UINT8 *NumberOfElements,
75 IN AMD_CONFIG_PARAMS *StdHeader
76 );
77
Frank Vibrans2b4c8312011-02-14 18:30:54 +000078/*----------------------------------------------------------------------------------------
79 * E X P O R T E D F U N C T I O N S
80 *----------------------------------------------------------------------------------------
81 */
82AMD_HEST_BANK_INIT_DATA F14HestBankInitData[] = {
83 {0xFFFFFFFF,0xFFFFFFFF,0x400,0x401,0x402,0x403},
84 {0xFFFFFFFF,0xFFFFFFFF,0x404,0x405,0x406,0x407},
85 {0xFFFFFFFF,0xFFFFFFFF,0x408,0x409,0x40A,0x40B},
86 {0xFFFFFFFF,0xFFFFFFFF,0x410,0x411,0x412,0x413},
87 {0xFFFFFFFF,0xFFFFFFFF,0x414,0x415,0x416,0x417},
88};
89
90AMD_WHEA_INIT_DATA F14WheaInitData = {
91 0x000000000, // AmdGlobCapInitDataLsd
92 0x000000000, // AmdGlobCapInitDataMsd
93 0x00000003F, // AmdGlobCtrlInitDataLsd
94 0x000000000, // AmdGlobCtrlInitDataMsd
95 0x00, // AmdMcbClrStatusOnInit
96 0x02, // AmdMcbStatusDataFormat
97 0x00, // AmdMcbConfWriteEn
Patrick Georgi6b688f52021-02-12 13:49:11 +010098 ARRAY_SIZE(F14HestBankInitData), // HestBankNum
Frank Vibrans2b4c8312011-02-14 18:30:54 +000099 &F14HestBankInitData[0] // Pointer to Initial data of HEST Bank
100};
101
102
103/*---------------------------------------------------------------------------------------*/
104/**
105 * Returns the family specific WHEA table properties.
106 *
107 * @CpuServiceMethod{::F_CPU_GET_FAMILY_SPECIFIC_ARRAY}.
108 *
109 * @param[in] FamilySpecificServices The current Family Specific Services.
110 * @param[out] F14WheaInitDataPtr Points to the family 12h WHEA properties.
111 * @param[out] NumberOfElements Will be one to indicate one structure.
112 * @param[in] StdHeader Header for library and services.
113 *
114 */
115VOID
116GetF14WheaInitData (
117 IN CPU_SPECIFIC_SERVICES *FamilySpecificServices,
118 OUT CONST VOID **F14WheaInitDataPtr,
119 OUT UINT8 *NumberOfElements,
120 IN AMD_CONFIG_PARAMS *StdHeader
121 )
122{
123 *NumberOfElements = 1;
124 *F14WheaInitDataPtr = &F14WheaInitData;
125}