blob: f62f276a480af588d2bce14763f2675f051124c5 [file] [log] [blame]
efdesign987c0c64e2011-06-20 19:56:06 -07001#*****************************************************************************
efdesign98621ca382011-06-20 18:12:43 -07002#
efdesign987c0c64e2011-06-20 19:56:06 -07003# Copyright (c) 2011, Advanced Micro Devices, Inc.
4# All rights reserved.
efdesign9884cbce22011-08-04 12:09:17 -06005#
efdesign987c0c64e2011-06-20 19:56:06 -07006# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions are met:
8# * Redistributions of source code must retain the above copyright
9# notice, this list of conditions and the following disclaimer.
10# * Redistributions in binary form must reproduce the above copyright
11# notice, this list of conditions and the following disclaimer in the
12# documentation and/or other materials provided with the distribution.
13# * Neither the name of Advanced Micro Devices, Inc. nor the names of
14# its contributors may be used to endorse or promote products derived
15# from this software without specific prior written permission.
efdesign9884cbce22011-08-04 12:09:17 -060016#
efdesign987c0c64e2011-06-20 19:56:06 -070017# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
18# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
19# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
20# DISCLAIMED. IN NO EVENT SHALL ADVANCED MICRO DEVICES, INC. BE LIABLE FOR ANY
21# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
22# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
23# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
24# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
26# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
efdesign9884cbce22011-08-04 12:09:17 -060027#
efdesign987c0c64e2011-06-20 19:56:06 -070028#*****************************************************************************
efdesign98621ca382011-06-20 18:12:43 -070029
30# AGESA V5 Files
31AGESA_ROOT = src/vendorcode/amd/agesa/f14
32
33AGESA_INC = -Isrc/mainboard/$(MAINBOARDDIR)
34AGESA_INC += -I$(AGESA_ROOT)
Edward O'Callaghan63ebb242014-11-28 22:26:45 +110035AGESA_INC += -I$(AGESA_ROOT)/../common
efdesign98621ca382011-06-20 18:12:43 -070036AGESA_INC += -I$(AGESA_ROOT)/Include
37AGESA_INC += -I$(AGESA_ROOT)/Lib
38AGESA_INC += -I$(AGESA_ROOT)/Legacy
39AGESA_INC += -I$(AGESA_ROOT)/Proc/Common
efdesign98621ca382011-06-20 18:12:43 -070040AGESA_INC += -I$(AGESA_ROOT)/Proc/CPU
efdesign98621ca382011-06-20 18:12:43 -070041AGESA_INC += -I$(AGESA_ROOT)/Proc/CPU/Family
42AGESA_INC += -I$(AGESA_ROOT)/Proc/CPU/Family/0x14
43AGESA_INC += -I$(AGESA_ROOT)/Proc/CPU/Family/0x14/ON
efdesign9884cbce22011-08-04 12:09:17 -060044AGESA_INC += -I$(AGESA_ROOT)/Proc/CPU/Feature
efdesign98621ca382011-06-20 18:12:43 -070045AGESA_INC += -I$(AGESA_ROOT)/Proc/GNB
46AGESA_INC += -I$(AGESA_ROOT)/Proc/GNB/Common
efdesign9884cbce22011-08-04 12:09:17 -060047AGESA_INC += -I$(AGESA_ROOT)/Proc/GNB/Gfx
48AGESA_INC += -I$(AGESA_ROOT)/Proc/GNB/Gfx/Family
49AGESA_INC += -I$(AGESA_ROOT)/Proc/GNB/Modules/GnbCommonLib
efdesign98621ca382011-06-20 18:12:43 -070050AGESA_INC += -I$(AGESA_ROOT)/Proc/GNB/Nb
51AGESA_INC += -I$(AGESA_ROOT)/Proc/GNB/Nb/Family
52AGESA_INC += -I$(AGESA_ROOT)/Proc/GNB/Nb/Family/0x14
53AGESA_INC += -I$(AGESA_ROOT)/Proc/GNB/Nb/Feature
54AGESA_INC += -I$(AGESA_ROOT)/Proc/GNB/PCIe
55AGESA_INC += -I$(AGESA_ROOT)/Proc/GNB/PCIe/Family
56AGESA_INC += -I$(AGESA_ROOT)/Proc/GNB/PCIe/Family/0x14
57AGESA_INC += -I$(AGESA_ROOT)/Proc/GNB/PCIe/Feature
efdesign9884cbce22011-08-04 12:09:17 -060058AGESA_INC += -I$(AGESA_ROOT)/Proc/HT
59AGESA_INC += -I$(AGESA_ROOT)/Proc/IDS
60AGESA_INC += -I$(AGESA_ROOT)/Proc/Mem
61AGESA_INC += -I$(AGESA_ROOT)/Proc/Mem/NB/ON
efdesign98621ca382011-06-20 18:12:43 -070062AGESA_INC += -I$(AGESA_ROOT)/Proc/Recovery/GNB
63AGESA_INC += -I$(AGESA_ROOT)/Proc/Recovery/CPU
64AGESA_INC += -I$(AGESA_ROOT)/Proc/Recovery/Mem
65
Patrick Georgi9f5af6a2014-05-18 23:30:56 +020066CFLAGS_x86_32 += -march=k8-sse3 -mtune=k8-sse3 -fno-zero-initialized-in-bss -fno-strict-aliasing
efdesign98621ca382011-06-20 18:12:43 -070067
68export AGESA_ROOT := $(AGESA_ROOT)
69export AGESA_INC := $(AGESA_INC)
Patrick Georgie3927432014-05-18 23:04:27 +020070CPPFLAGS_x86_32 += $(AGESA_INC)
Edward O'Callaghane07cb652014-04-01 04:13:26 +110071#######################################################################
72
73classes-y += libagesa
74
Furquan Shaikh99ac98f2014-04-23 10:18:48 -070075$(eval $(call create_class_compiler,libagesa,x86_32))
76
Edward O'Callaghane07cb652014-04-01 04:13:26 +110077libagesa-y = Proc/GNB/Modules/GnbGfxConfig/GfxConfigPost.c
78libagesa-y += Proc/GNB/Modules/GnbGfxConfig/GfxConfigEnv.c
79libagesa-y += Proc/GNB/Nb/Family/0x14/F14NbLclkDpm.c
80libagesa-y += Proc/GNB/Modules/GnbPcieAlibV1/PcieAlib.c
81libagesa-y += Proc/GNB/Modules/GnbPcieInitLibV1/PcieSiliconServices.c
82libagesa-y += Proc/GNB/Modules/GnbCommonLib/GnbLibPciAcc.c
83libagesa-y += Proc/GNB/Modules/GnbCommonLib/GnbLibHeap.c
84libagesa-y += Proc/GNB/Modules/GnbCommonLib/GnbLibCpuAcc.c
85libagesa-y += Proc/GNB/Modules/GnbGfxInitLibV1/GfxCardInfo.c
86libagesa-y += Proc/GNB/Modules/GnbCommonLib/GnbLibIoAcc.c
87libagesa-y += Proc/GNB/Modules/GnbGfxInitLibV1/GfxPowerPlayTable.c
88libagesa-y += Proc/GNB/Modules/GnbPcieConfig/PcieMapTopology.c
89libagesa-y += Proc/GNB/Modules/GnbPcieConfig/PcieInputParser.c
90libagesa-y += Proc/GNB/Modules/GnbPcieConfig/PcieConfigData.c
91libagesa-y += Proc/GNB/Modules/GnbPcieTrainingV1/PcieWorkarounds.c
92libagesa-y += Proc/GNB/Modules/GnbCommonLib/GnbLibMemAcc.c
93libagesa-y += Proc/GNB/Modules/GnbPcieInitLibV1/PcieTopologyServices.c
94libagesa-y += Proc/GNB/Modules/GnbPcieTrainingV1/PcieTraining.c
95libagesa-y += Proc/GNB/Modules/GnbPcieInitLibV1/PciePortServices.c
96libagesa-y += Proc/GNB/Modules/GnbGfxInitLibV1/GfxEnumConnectors.c
97libagesa-y += Proc/GNB/Modules/GnbPcieInitLibV1/PcieTimer.c
98libagesa-y += Proc/GNB/Modules/GnbPcieInitLibV1/PciePifServices.c
99libagesa-y += Proc/GNB/Modules/GnbPcieInitLibV1/PcieAspmExitLatency.c
100libagesa-y += Proc/GNB/Modules/GnbPcieInitLibV1/PcieWrapperRegAcc.c
101libagesa-y += Proc/GNB/Modules/GnbPcieConfig/PcieConfigLib.c
102libagesa-y += Proc/GNB/Modules/GnbPcieInitLibV1/PciePortRegAcc.c
103libagesa-y += Proc/GNB/Modules/GnbPcieInitLibV1/PcieUtilityLib.c
104libagesa-y += Proc/GNB/Modules/GnbPcieInitLibV1/PcieAspmBlackList.c
105libagesa-y += Proc/GNB/Modules/GnbPcieInitLibV1/PciePowerMgmt.c
106libagesa-y += Proc/GNB/Modules/GnbPcieInitLibV1/PcieAspm.c
107libagesa-y += Proc/GNB/Modules/GnbCommonLib/GnbLibPci.c
108libagesa-y += Proc/GNB/Modules/GnbPcieInitLibV1/PcieSbLink.c
109libagesa-y += Proc/GNB/Modules/GnbNbInitLibV1/GnbNbInitLibV1.c
110libagesa-y += Proc/GNB/Modules/GnbCommonLib/GnbLib.c
111libagesa-y += Proc/CPU/Family/0x14/cpuF14PerCorePciTables.c
112libagesa-y += Proc/CPU/Family/0x14/cpuF14BrandIdFt1.c
113libagesa-y += Proc/GNB/Nb/NbInitAtPost.c
114libagesa-y += Proc/GNB/PCIe/Family/0x14/F14PcieAlib.c
115libagesa-y += Proc/CPU/Family/0x14/F14IoCstate.c
116libagesa-y += Proc/CPU/Feature/cpuIoCstate.c
117libagesa-y += Proc/Mem/NB/ON/mnprotoon.c
118libagesa-y += Proc/CPU/Family/0x14/F14MicrocodePatch0500000B.c
119libagesa-y += Proc/CPU/Family/0x14/F14MicrocodePatch0500001A.c
Nicolas Reinecke86393bb2015-01-26 14:14:19 +0100120libagesa-y += Proc/CPU/Family/0x14/F14MicrocodePatch05000029.c
121libagesa-y += Proc/CPU/Family/0x14/F14MicrocodePatch05000119.c
Edward O'Callaghane07cb652014-04-01 04:13:26 +1100122libagesa-y += Proc/GNB/PCIe/Family/0x14/F14PciePifServices.c
123libagesa-y += Proc/CPU/Family/0x14/ON/F14OnInitEarlyTable.c
124libagesa-y += Proc/CPU/cpuInitEarlyTable.c
125libagesa-y += Proc/GNB/Nb/Family/0x14/F14NbLclkNclkRatio.c
126libagesa-y += Proc/GNB/Nb/Family/0x14/F14NbSmu.c
127libagesa-y += Proc/GNB/PCIe/PcieInitAtEnv.c
128libagesa-y += Proc/GNB/PCIe/PcieInitAtPost.c
129libagesa-y += Proc/GNB/Nb/Feature/NbLclkDpm.c
130libagesa-y += Proc/GNB/Nb/Feature/NbFuseTable.c
131libagesa-y += Proc/GNB/Nb/Family/0x14/F14NbPowerGate.c
132libagesa-y += Proc/GNB/Common/GnbLibFeatures.c
133libagesa-y += Proc/CPU/Family/0x14/cpuF14Pstate.c
134libagesa-y += Proc/CPU/Feature/cpuC6State.c
135libagesa-y += Proc/CPU/Family/0x14/F14C6State.c
136libagesa-y += Proc/Mem/Main/mmMemRestore.c
137libagesa-y += Proc/Mem/Main/mm.c
138libagesa-y += Proc/CPU/Family/0x14/cpuCommonF14Utilities.c
139libagesa-y += Proc/CPU/Family/0x14/ON/F14OnEquivalenceTable.c
140libagesa-y += Proc/Mem/Tech/mttml.c
141libagesa-y += Proc/Mem/Tech/DDR3/mtrci3.c
142libagesa-y += Proc/GNB/GnbInitAtReset.c
143libagesa-y += Proc/Mem/NB/ON/mnmcton.c
144libagesa-y += Proc/CPU/Feature/cpuCacheInit.c
145libagesa-y += Proc/Mem/Tech/mttdimbt.c
146libagesa-y += Proc/Mem/Tech/DDR3/mtsdi3.c
147libagesa-y += Proc/Mem/Tech/mthdi.c
148libagesa-y += Proc/GNB/GnbInitAtEarly.c
149libagesa-y += Proc/CPU/Family/0x14/cpuF14PowerMgmtSystemTables.c
150libagesa-y += Proc/GNB/PCIe/Family/0x14/F14PcieWrapperServices.c
151libagesa-y += Proc/Mem/NB/mnfeat.c
152libagesa-y += Proc/Mem/Main/mmStandardTraining.c
153libagesa-y += Proc/HT/Fam14/htNbUtilitiesFam14.c
154libagesa-y += Proc/CPU/cpuBist.c
155libagesa-y += Proc/Mem/Main/mmParallelTraining.c
156libagesa-y += Proc/Mem/Feat/LVDDR3/mflvddr3.c
157libagesa-y += Proc/GNB/PCIe/Family/0x14/F14PcieComplexConfig.c
158libagesa-y += Proc/CPU/Family/0x14/cpuF14PowerPlane.c
159libagesa-y += Proc/CPU/Family/0x14/cpuF14LowPowerInit.c
160libagesa-y += Proc/Mem/NB/mnreg.c
161libagesa-y += Proc/Mem/NB/ON/mnflowon.c
162libagesa-y += Proc/Mem/Feat/CHINTLV/mfchi.c
163libagesa-y += Proc/GNB/PCIe/PcieInit.c
164libagesa-y += Proc/GNB/Gfx/GfxInitAtMidPost.c
165libagesa-y += Proc/CPU/Family/0x14/cpuF14CacheDefaults.c
166libagesa-y += Proc/Mem/Ps/ON/mpuon3.c
167libagesa-y += Proc/CPU/cahalt.c
168libagesa-y += Proc/CPU/cahaltasm.S
169libagesa-y += Proc/Mem/Tech/mt.c
170libagesa-y += Proc/CPU/Family/0x14/ON/F14OnMicrocodePatchTables.c
171libagesa-y += Proc/CPU/Family/0x14/ON/F14OnPciTables.c
172libagesa-y += Proc/GNB/PCIe/PciePortInit.c
173libagesa-y += Proc/Mem/NB/mnflow.c
174libagesa-y += Proc/CPU/Feature/cpuFeatureLeveling.c
175libagesa-y += Proc/Mem/Tech/mttoptsrc.c
176libagesa-y += Proc/Mem/Feat/PARTRN/mfParallelTraining.c
177libagesa-y += Proc/GNB/Gfx/GfxInitAtPost.c
178libagesa-y += Proc/Mem/Main/mmEcc.c
179libagesa-y += Legacy/Proc/Dispatcher.c
180libagesa-y += Proc/Mem/Feat/MEMCLR/mfmemclr.c
181libagesa-y += Proc/CPU/Family/0x14/cpuF14WheaInitDataTables.c
182libagesa-y += Proc/CPU/Feature/cpuDmi.c
183libagesa-y += Proc/Mem/Tech/mttsrc.c
184libagesa-y += Proc/Mem/NB/mnmct.c
185libagesa-y += Proc/HT/htInterfaceNonCoherent.c
186libagesa-y += Proc/Mem/NB/ON/mnidendimmon.c
187libagesa-y += Proc/CPU/Feature/cpuSrat.c
188libagesa-y += Proc/Common/AmdS3LateRestore.c
189libagesa-y += Proc/CPU/Table.c
190libagesa-y += Proc/GNB/PCIe/Family/0x14/F14PcieComplexServices.c
191libagesa-y += Proc/CPU/Family/0x14/cpuF14Utilities.c
192libagesa-y += Proc/HT/htInterface.c
193libagesa-y += Proc/GNB/Gfx/GfxStrapsInit.c
194libagesa-y += Proc/GNB/Nb/NbInitAtEarly.c
195libagesa-y += Lib/amdlib.c
196libagesa-y += Proc/CPU/Feature/cpuCacheFlushOnHalt.c
197libagesa-y += Proc/CPU/Feature/cpuCpb.c
198libagesa-y += Proc/Mem/Main/minit.c
199libagesa-y += Proc/GNB/PCIe/Family/0x14/F14PciePhyServices.c
200libagesa-y += Proc/GNB/GnbInitAtLate.c
201libagesa-y += Proc/Mem/NB/ON/mnoton.c
202libagesa-y += Proc/Mem/Feat/INTLVRN/mfintlvrn.c
203libagesa-y += Proc/GNB/Nb/NbInit.c
204libagesa-y += Proc/Mem/Feat/IDENDIMM/mfidendimm.c
205libagesa-y += Proc/Mem/Main/mmflow.c
206libagesa-y += Proc/Mem/Ardk/ma.c
207libagesa-y += Proc/Common/CommonInits.c
208libagesa-y += Proc/CPU/Feature/cpuPstateLeveling.c
209libagesa-y += Proc/Mem/NB/ON/mndcton.c
210libagesa-y += Proc/Common/AmdInitPost.c
211libagesa-y += Proc/GNB/Gfx/GfxGmcInit.c
212libagesa-y += Proc/CPU/cpuBrandId.c
213libagesa-y += Proc/Mem/NB/mnphy.c
214libagesa-y += Proc/Common/AmdInitEnv.c
215libagesa-y += Proc/Mem/Main/mmConditionalPso.c
216libagesa-y += Proc/GNB/GnbInitAtPost.c
217libagesa-y += Proc/Common/CommonReturns.c
218libagesa-y += Proc/CPU/cpuPowerMgmt.c
219libagesa-y += Proc/Common/AmdInitResume.c
220libagesa-y += Proc/CPU/Family/0x14/cpuF14PowerCheck.c
221libagesa-y += Proc/CPU/Family/0x14/cpuF14Dmi.c
222libagesa-y += Proc/Mem/NB/ON/mnregon.c
223libagesa-y += Proc/GNB/Gfx/GfxIntegratedInfoTableInit.c
224libagesa-y += Proc/Common/AmdInitEarly.c
225libagesa-y += Proc/CPU/cpuFamilyTranslation.c
226libagesa-y += Proc/CPU/cpuPostInit.c
227libagesa-y += Proc/Mem/NB/mn.c
228libagesa-y += Proc/GNB/Gfx/GfxInitAtEnvPost.c
229libagesa-y += Proc/CPU/Feature/cpuHwC1e.c
230libagesa-y += Proc/CPU/cpuLateInit.c
231libagesa-y += Proc/Common/CreateStruct.c
232libagesa-y += Proc/CPU/Feature/cpuWhea.c
Edward O'Callaghane07cb652014-04-01 04:13:26 +1100233libagesa-y += Proc/Mem/Feat/CSINTLV/mfcsi.c
234libagesa-y += Proc/Mem/Feat/ECC/mfecc.c
235libagesa-y += Proc/Mem/Feat/DMI/mfDMI.c
236libagesa-y += Proc/Mem/Ps/ON/mpson3.c
237libagesa-y += Proc/Common/AmdLateRunApTask.c
238libagesa-y += Proc/CPU/cpuPowerMgmtMultiSocket.c
239libagesa-y += Proc/Mem/Main/mmUmaAlloc.c
240libagesa-y += Proc/CPU/Feature/cpuPstateTables.c
241libagesa-y += Proc/CPU/Family/0x14/cpuF14PciTables.c
242libagesa-y += Proc/CPU/cpuPowerMgmtSingleSocket.c
243libagesa-y += Proc/GNB/GnbInitAtMid.c
244libagesa-y += Proc/Mem/Tech/DDR3/mt3.c
245libagesa-y += Proc/Mem/Feat/EXCLUDIMM/mfdimmexclud.c
246libagesa-y += Proc/Mem/Main/mmExcludeDimm.c
247libagesa-y += Proc/GNB/PCIe/PcieInitAtEarlyPost.c
248libagesa-y += Proc/HT/htInterfaceGeneral.c
249libagesa-y += Proc/CPU/S3.c
250libagesa-y += Proc/CPU/Feature/cpuFeatures.c
251libagesa-y += Proc/Mem/Ps/mp.c
252libagesa-y += Proc/Mem/Main/mdef.c
253libagesa-y += Proc/Mem/Tech/mtthrc.c
254libagesa-y += Proc/CPU/cpuGeneralServices.c
255libagesa-y += Proc/HT/htNb.c
256libagesa-y += Proc/CPU/Feature/cpuSlit.c
257libagesa-y += Proc/Mem/Feat/ECC/mfemp.c
258libagesa-y += Proc/GNB/Nb/NbInitAtLatePost.c
259libagesa-y += Proc/Mem/Main/mmNodeInterleave.c
260libagesa-y += Proc/HT/Fam14/htNbFam14.c
261libagesa-y += Proc/GNB/Gfx/GfxConfigData.c
262libagesa-y += Proc/Mem/Main/ON/mmflowon.c
263libagesa-y += Proc/Common/AmdInitReset.c
264libagesa-y += Proc/CPU/Family/0x14/cpuF14MsrTables.c
265libagesa-y += Proc/GNB/PCIe/PcieInitAtLatePost.c
266libagesa-y += Proc/Mem/Tech/mttEdgeDetect.c
267libagesa-y += Proc/GNB/Gfx/GfxRegisterAcc.c
268libagesa-y += Proc/Common/AmdInitLate.c
269libagesa-y += Proc/HT/htFeat.c
270libagesa-y += Proc/GNB/Nb/NbInitAtReset.c
271libagesa-y += Proc/CPU/Family/0x14/ON/F14OnLogicalIdTables.c
272libagesa-y += Proc/CPU/Family/0x14/ON/F14OnCpb.c
273libagesa-y += Legacy/Proc/hobTransfer.c
274libagesa-y += Proc/CPU/cpuApicUtilities.c
275libagesa-y += Proc/GNB/GnbInitAtEnv.c
276libagesa-y += Proc/CPU/cpuEventLog.c
277libagesa-y += Proc/HT/htInterfaceCoherent.c
278libagesa-y += Proc/Mem/Main/muc.c
279libagesa-y += Proc/Mem/Main/mmLvDdr3.c
280libagesa-y += Proc/CPU/cpuMicrocodePatch.c
281libagesa-y += Proc/Mem/Tech/mttecc.c
282libagesa-y += Proc/CPU/Family/0x14/cpuF14SoftwareThermal.c
283libagesa-y += Legacy/Proc/agesaCallouts.c
284libagesa-y += Proc/Mem/NB/ON/mnon.c
285libagesa-y += Proc/Mem/Feat/ODTHERMAL/mfodthermal.c
286libagesa-y += Proc/Mem/Feat/PARTRN/mfStandardTraining.c
287libagesa-y += Proc/Mem/NB/mndct.c
288libagesa-y += Proc/Mem/Main/mmOnlineSpare.c
289libagesa-y += Proc/CPU/cpuEarlyInit.c
290libagesa-y += Proc/Mem/NB/ON/mnphyon.c
291libagesa-y += Proc/Mem/Main/merrhdl.c
292libagesa-y += Proc/Common/AmdS3Save.c
293libagesa-y += Proc/Mem/Tech/DDR3/mtspd3.c
294libagesa-y += Proc/CPU/Family/0x14/cpuF14BrandId.c
295libagesa-y += Proc/HT/htMain.c
296libagesa-y += Proc/CPU/cpuWarmReset.c
297libagesa-y += Proc/GNB/Nb/NbConfigData.c
298libagesa-y += Proc/Mem/Tech/DDR3/mttwl3.c
299libagesa-y += Proc/CPU/Feature/cpuPstateGather.c
300libagesa-y += Proc/Mem/Tech/DDR3/mtot3.c
301libagesa-y += Proc/Mem/Main/mmMemClr.c
302libagesa-y += Proc/Mem/Ardk/ON/mauon3.c
303libagesa-y += Proc/Mem/Feat/TABLE/mftds.c
304libagesa-y += Proc/Mem/Ardk/ON/mason3.c
305libagesa-y += Proc/Mem/Feat/S3/mfs3.c
306libagesa-y += Proc/HT/htNotify.c
307libagesa-y += Proc/Mem/NB/mnS3.c
308libagesa-y += Proc/CPU/heapManager.c
309libagesa-y += Proc/Mem/Tech/DDR3/mttecc3.c
310libagesa-y += Proc/Mem/NB/ON/mnS3on.c
311libagesa-y += Proc/Common/AmdInitMid.c
312libagesa-y += Proc/Mem/NB/mntrain3.c
313libagesa-y += Proc/GNB/Gfx/Family/0x14/F14GfxServices.c
314libagesa-y += Proc/Common/S3SaveState.c
315libagesa-y += Proc/Common/S3RestoreState.c
316libagesa-y += Proc/GNB/PCIe/PcieLateInit.c
317libagesa-y += Proc/GNB/PCIe/PciePortLateInit.c
318libagesa-y += Proc/GNB/PCIe/PcieMiscLib.c
319libagesa-y += Proc/GNB/Nb/NbSmuLib.c
320libagesa-y += Proc/GNB/Nb/NbInitAtEnv.c
321libagesa-y += Proc/GNB/Nb/Family/0x14/F14NbServices.c
322libagesa-y += Proc/GNB/Gfx/GfxLib.c
323libagesa-y += Proc/GNB/Nb/NbPowerMgmt.c
324libagesa-y += Proc/Recovery/HT/htInitReset.c
325libagesa-y += Proc/Mem/Main/mu.c
326
327$(obj)/libagesa.fam14.a: $$(libagesa-objs)
328 @printf " AGESA $(subst $(obj)/,,$(@))\n"
Stefan Reinauer6ab0fd02015-06-18 22:03:19 -0700329 $(AR_romstage) rcs $@ $+
Edward O'Callaghane07cb652014-04-01 04:13:26 +1100330
331romstage-libs += $(obj)/libagesa.fam14.a
332ramstage-libs += $(obj)/libagesa.fam14.a