AGESA F15: AMD family15 AGESA code
[coreboot.git] / src / vendorcode / amd / agesa / f15 / Proc / HT / Features / htFeatSets.c
1 /* $NoKeywords:$ */
2 /**
3  * @file
4  *
5  * HyperTransport feature sets initializers.
6  *
7  * @xrefitem bom "File Content Label" "Release Content"
8  * @e project:      AGESA
9  * @e sub-project:  HyperTransport
10  * @e \$Revision: 56279 $   @e \$Date: 2011-07-11 13:11:28 -0600 (Mon, 11 Jul 2011) $
11  *
12  */
13 /*
14  *****************************************************************************
15  *
16  * Copyright (C) 2012 Advanced Micro Devices, Inc.
17  * All rights reserved.
18  *
19  * 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.
26  *     * Neither the name of Advanced Micro Devices, Inc. nor the names of
27  *       its contributors may be used to endorse or promote products derived
28  *       from this software without specific prior written permission.
29  *
30  * 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.
40  *
41  * ***************************************************************************
42  *
43  */
44
45 /*
46  *----------------------------------------------------------------------------
47  *                                MODULES USED
48  *
49  *----------------------------------------------------------------------------
50  */
51
52
53
54 #include "AGESA.h"
55 #include "amdlib.h"
56 #include "OptionsHt.h"
57 #include "Ids.h"
58 #include "Topology.h"
59 #include "htFeat.h"
60 #include "CommonReturns.h"
61 #include "htFeatDynamicDiscovery.h"
62 #include "htFeatRouting.h"
63 #include "htFeatNoncoherent.h"
64 #include "htFeatOptimization.h"
65 #include "htFeatGanging.h"
66 #include "htFeatSublinks.h"
67 #include "htFeatTrafficDistribution.h"
68 #include "Filecode.h"
69 CODE_GROUP (G1_PEICC)
70 RDATA_GROUP (G2_PEI)
71
72 #define FILECODE PROC_HT_FEATURES_HTFEATSETS_FILECODE
73 extern CONST OPTION_HT_CONFIGURATION OptionHtConfiguration;
74
75 /**
76  * Initializer for the default feature set implementation,
77  * full features.
78  */
79 CONST HT_FEATURES ROMDATA HtFeaturesDefault =
80 {
81   CoherentDiscovery,
82   LookupComputeAndLoadRoutingTables,
83   MakeHopCountTable,
84   ProcessLink,
85   GatherLinkData,
86   SelectOptimalWidthAndFrequency,
87   RegangLinks,
88   SubLinkRatioFixup,
89   IsCoherentRetryFixup,
90   SetLinkData,
91   TrafficDistribution,
92   SetHtControlRegisterBits,
93   ConvertWidthToBits
94 };
95
96 /**
97 * Initializer for the coherent HT feature set implementation
98 * (IO is using PCIe).
99 */
100 CONST HT_FEATURES ROMDATA HtFeaturesCoherentOnly =
101 {
102   CoherentDiscovery,
103   LookupComputeAndLoadRoutingTables,
104   MakeHopCountTable,
105   (PF_PROCESS_LINK)CommonVoid,
106   GatherLinkData,
107   SelectOptimalWidthAndFrequency,
108   RegangLinks,
109   SubLinkRatioFixup,
110   IsCoherentRetryFixup,
111   SetLinkData,
112   TrafficDistribution,
113   SetHtControlRegisterBits,
114   ConvertWidthToBits
115 };
116
117 /**
118  * Initializer for the non-coherent only build option.
119  */
120 CONST HT_FEATURES ROMDATA HtFeaturesNonCoherentOnly =
121 {
122   (PF_COHERENT_DISCOVERY)CommonVoid,
123   (PF_LOOKUP_COMPUTE_AND_LOAD_ROUTING_TABLES)CommonVoid,
124   (PF_MAKE_HOP_COUNT_TABLE)CommonVoid,
125   ProcessLink,
126   GatherLinkData,
127   SelectOptimalWidthAndFrequency,
128   (PF_REGANG_LINKS)CommonVoid,
129   (PF_SUBLINK_RATIO_FIXUP)CommonVoid,
130   (PF_IS_COHERENT_RETRY_FIXUP)CommonReturnFalse,
131   SetLinkData,
132   (PF_TRAFFIC_DISTRIBUTION)CommonVoid,
133   SetHtControlRegisterBits,
134   ConvertWidthToBits
135 };