AGESA F15: AMD family15 AGESA code
[coreboot.git] / src / vendorcode / amd / agesa / f15 / Proc / CPU / cpuInitEarlyTable.c
1 /* $NoKeywords:$ */
2 /**
3  * @file
4  *
5  * Initialize the 'common' way of running early initialization.
6  *
7  * Returns the table of initialization steps to perform at
8  * AmdInitEarly.
9  *
10  * @xrefitem bom "File Content Label" "Release Content"
11  * @e project:      AGESA
12  * @e sub-project:  CPU
13  * @e \$Revision: 56279 $   @e \$Date: 2011-07-11 13:11:28 -0600 (Mon, 11 Jul 2011) $
14  *
15  */
16 /*
17  ******************************************************************************
18  *
19  * Copyright (C) 2012 Advanced Micro Devices, Inc.
20  * All rights reserved.
21  *
22  * Redistribution and use in source and binary forms, with or without
23  * modification, are permitted provided that the following conditions are met:
24  *     * Redistributions of source code must retain the above copyright
25  *       notice, this list of conditions and the following disclaimer.
26  *     * Redistributions in binary form must reproduce the above copyright
27  *       notice, this list of conditions and the following disclaimer in the
28  *       documentation and/or other materials provided with the distribution.
29  *     * Neither the name of Advanced Micro Devices, Inc. nor the names of
30  *       its contributors may be used to endorse or promote products derived
31  *       from this software without specific prior written permission.
32  *
33  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
34  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
35  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
36  * DISCLAIMED. IN NO EVENT SHALL ADVANCED MICRO DEVICES, INC. BE LIABLE FOR ANY
37  * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
38  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
39  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
40  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
41  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
42  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
43  *
44  ******************************************************************************
45  */
46
47 /*----------------------------------------------------------------------------------------
48  *                             M O D U L E S    U S E D
49  *----------------------------------------------------------------------------------------
50  */
51 #include "AGESA.h"
52 #include "cpuFamilyTranslation.h"
53 #include "Filecode.h"
54 #include "cpuEarlyInit.h"
55 CODE_GROUP (G1_PEICC)
56 RDATA_GROUP (G2_PEI)
57
58 #define FILECODE PROC_CPU_CPUINITEARLYTABLE_FILECODE
59
60
61 /*----------------------------------------------------------------------------------------
62  *                   D E F I N I T I O N S    A N D    M A C R O S
63  *----------------------------------------------------------------------------------------
64  */
65
66 /*----------------------------------------------------------------------------------------
67  *                  T Y P E D E F S     A N D     S T R U C T U  R E S
68  *----------------------------------------------------------------------------------------
69  */
70
71 /*----------------------------------------------------------------------------------------
72  *           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
73  *----------------------------------------------------------------------------------------
74  */
75 VOID
76 GetCommonEarlyInitOnCoreTable (
77   IN       CPU_SPECIFIC_SERVICES                *FamilyServices,
78      OUT   CONST S_PERFORM_EARLY_INIT_ON_CORE   **Table,
79   IN       AMD_CPU_EARLY_PARAMS                 *EarlyParams,
80   IN       AMD_CONFIG_PARAMS                    *StdHeader
81   );
82
83 /*----------------------------------------------------------------------------------------
84  *                          E X P O R T E D    F U N C T I O N S
85  *----------------------------------------------------------------------------------------
86  */
87 extern F_PERFORM_EARLY_INIT_ON_CORE McaInitializationAtEarly;
88 extern F_PERFORM_EARLY_INIT_ON_CORE SetRegistersFromTablesAtEarly;
89 extern F_PERFORM_EARLY_INIT_ON_CORE SetBrandIdRegistersAtEarly;
90 extern F_PERFORM_EARLY_INIT_ON_CORE LocalApicInitializationAtEarly;
91 extern F_PERFORM_EARLY_INIT_ON_CORE LoadMicrocodePatchAtEarly;
92
93 CONST S_PERFORM_EARLY_INIT_ON_CORE ROMDATA CommonEarlyInitOnCoreTable[] =
94 {
95   {McaInitializationAtEarly, PERFORM_EARLY_ANY_CONDITION},
96   {SetRegistersFromTablesAtEarly, PERFORM_EARLY_ANY_CONDITION},
97   {SetBrandIdRegistersAtEarly, PERFORM_EARLY_ANY_CONDITION},
98   {LocalApicInitializationAtEarly, PERFORM_EARLY_ANY_CONDITION},
99   {LoadMicrocodePatchAtEarly, PERFORM_EARLY_ANY_CONDITION},
100   {NULL, 0}
101 };
102
103 /*------------------------------------------------------------------------------------*/
104 /**
105  * Initializer routine that may be invoked at AmdCpuEarly to return the steps that a
106  * processor that uses the standard initialization steps should take.
107  *
108  *  @CpuServiceMethod{::F_GET_EARLY_INIT_TABLE}.
109  *
110  * @param[in]       FamilyServices    The current Family Specific Services.
111  * @param[out]      Table             Table of appropriate init steps for the executing core.
112  * @param[in]       EarlyParams       Service Interface structure to initialize.
113  * @param[in]       StdHeader         Opaque handle to standard config header.
114  *
115  */
116 VOID
117 GetCommonEarlyInitOnCoreTable (
118   IN       CPU_SPECIFIC_SERVICES                *FamilyServices,
119      OUT   CONST S_PERFORM_EARLY_INIT_ON_CORE   **Table,
120   IN       AMD_CPU_EARLY_PARAMS                 *EarlyParams,
121   IN       AMD_CONFIG_PARAMS                    *StdHeader
122   )
123 {
124   *Table = CommonEarlyInitOnCoreTable;
125 }