AGESA boards: Relocate platform memory config
File buildOpts.c is a can of worms, pull platform memory configuration in to OemCustomize.c. This array should be assigned at runtime instead of linking a modified defaults table. Change-Id: I73d9d3fbc165e6c10472e105576d7c40820eaa6a Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/14528 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer <stefan.reinauer@coreboot.org>
This commit is contained in:
parent
a5d72a3170
commit
53052fe5ee
|
@ -18,6 +18,7 @@
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <northbridge/amd/agesa/agesawrapper.h>
|
#include <northbridge/amd/agesa/agesawrapper.h>
|
||||||
#include <vendorcode/amd/agesa/f14/Proc/CPU/heapManager.h>
|
#include <vendorcode/amd/agesa/f14/Proc/CPU/heapManager.h>
|
||||||
|
#include <PlatformMemoryConfiguration.h>
|
||||||
|
|
||||||
#define FILECODE PROC_RECOVERY_MEM_NB_ON_MRNON_FILECODE
|
#define FILECODE PROC_RECOVERY_MEM_NB_ON_MRNON_FILECODE
|
||||||
|
|
||||||
|
@ -128,6 +129,23 @@ static AGESA_STATUS OemInitEarly(AMD_EARLY_PARAMS * InitEarly)
|
||||||
return AGESA_SUCCESS;
|
return AGESA_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*----------------------------------------------------------------------------------------
|
||||||
|
* CUSTOMER OVERIDES MEMORY TABLE
|
||||||
|
*----------------------------------------------------------------------------------------
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Platform Specific Overriding Table allows IBV/OEM to pass in platform information to AGESA
|
||||||
|
* (e.g. MemClk routing, the number of DIMM slots per channel,...). If PlatformSpecificTable
|
||||||
|
* is populated, AGESA will base its settings on the data from the table. Otherwise, it will
|
||||||
|
* use its default conservative settings.
|
||||||
|
*/
|
||||||
|
CONST PSO_ENTRY ROMDATA DefaultPlatformMemoryConfiguration[] = {
|
||||||
|
NUMBER_OF_DIMMS_SUPPORTED (ANY_SOCKET, ANY_CHANNEL, 2),
|
||||||
|
NUMBER_OF_CHANNELS_SUPPORTED (ANY_SOCKET, 1),
|
||||||
|
PSO_END
|
||||||
|
};
|
||||||
|
|
||||||
const struct OEM_HOOK OemCustomize = {
|
const struct OEM_HOOK OemCustomize = {
|
||||||
.InitEarly = OemInitEarly,
|
.InitEarly = OemInitEarly,
|
||||||
};
|
};
|
||||||
|
|
|
@ -310,81 +310,3 @@ CONST AP_MTRR_SETTINGS ROMDATA OntarioApMtrrSettingsList[] =
|
||||||
// Instantiate all solution relevant data.
|
// Instantiate all solution relevant data.
|
||||||
#include "PlatformInstall.h"
|
#include "PlatformInstall.h"
|
||||||
|
|
||||||
/*----------------------------------------------------------------------------------------
|
|
||||||
* CUSTOMER OVERIDES MEMORY TABLE
|
|
||||||
*----------------------------------------------------------------------------------------
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Platform Specific Overriding Table allows IBV/OEM to pass in platform information to AGESA
|
|
||||||
* (e.g. MemClk routing, the number of DIMM slots per channel,...). If PlatformSpecificTable
|
|
||||||
* is populated, AGESA will base its settings on the data from the table. Otherwise, it will
|
|
||||||
* use its default conservative settings.
|
|
||||||
*/
|
|
||||||
CONST PSO_ENTRY ROMDATA DefaultPlatformMemoryConfiguration[] = {
|
|
||||||
//
|
|
||||||
// The following macros are supported (use comma to separate macros):
|
|
||||||
//
|
|
||||||
// MEMCLK_DIS_MAP(SocketID, ChannelID, MemClkDisBit0CSMap,..., MemClkDisBit7CSMap)
|
|
||||||
// The MemClk pins are identified based on BKDG definition of Fn2x88[MemClkDis] bitmap.
|
|
||||||
// AGESA will base on this value to disable unused MemClk to save power.
|
|
||||||
// Example:
|
|
||||||
// BKDG definition of Fn2x88[MemClkDis] bitmap for AM3 package is like below:
|
|
||||||
// Bit AM3/S1g3 pin name
|
|
||||||
// 0 M[B,A]_CLK_H/L[0]
|
|
||||||
// 1 M[B,A]_CLK_H/L[1]
|
|
||||||
// 2 M[B,A]_CLK_H/L[2]
|
|
||||||
// 3 M[B,A]_CLK_H/L[3]
|
|
||||||
// 4 M[B,A]_CLK_H/L[4]
|
|
||||||
// 5 M[B,A]_CLK_H/L[5]
|
|
||||||
// 6 M[B,A]_CLK_H/L[6]
|
|
||||||
// 7 M[B,A]_CLK_H/L[7]
|
|
||||||
// And platform has the following routing:
|
|
||||||
// CS0 M[B,A]_CLK_H/L[4]
|
|
||||||
// CS1 M[B,A]_CLK_H/L[2]
|
|
||||||
// CS2 M[B,A]_CLK_H/L[3]
|
|
||||||
// CS3 M[B,A]_CLK_H/L[5]
|
|
||||||
// Then platform can specify the following macro:
|
|
||||||
// MEMCLK_DIS_MAP(ANY_SOCKET, ANY_CHANNEL, 0x00, 0x00, 0x02, 0x04, 0x01, 0x08, 0x00, 0x00)
|
|
||||||
//
|
|
||||||
// CKE_TRI_MAP(SocketID, ChannelID, CKETriBit0CSMap, CKETriBit1CSMap)
|
|
||||||
// The CKE pins are identified based on BKDG definition of Fn2x9C_0C[CKETri] bitmap.
|
|
||||||
// AGESA will base on this value to tristate unused CKE to save power.
|
|
||||||
//
|
|
||||||
// ODT_TRI_MAP(SocketID, ChannelID, ODTTriBit0CSMap,..., ODTTriBit3CSMap)
|
|
||||||
// The ODT pins are identified based on BKDG definition of Fn2x9C_0C[ODTTri] bitmap.
|
|
||||||
// AGESA will base on this value to tristate unused ODT pins to save power.
|
|
||||||
//
|
|
||||||
// CS_TRI_MAP(SocketID, ChannelID, CSTriBit0CSMap,..., CSTriBit7CSMap)
|
|
||||||
// The Chip select pins are identified based on BKDG definition of Fn2x9C_0C[ChipSelTri] bitmap.
|
|
||||||
// AGESA will base on this value to tristate unused Chip select to save power.
|
|
||||||
//
|
|
||||||
// NUMBER_OF_DIMMS_SUPPORTED(SocketID, ChannelID, NumberOfDimmSlotsPerChannel)
|
|
||||||
// Specifies the number of DIMM slots per channel.
|
|
||||||
//
|
|
||||||
// NUMBER_OF_CHIP_SELECTS_SUPPORTED(SocketID, ChannelID, NumberOfChipSelectsPerChannel)
|
|
||||||
// Specifies the number of Chip selects per channel.
|
|
||||||
//
|
|
||||||
// NUMBER_OF_CHANNELS_SUPPORTED(SocketID, NumberOfChannelsPerSocket)
|
|
||||||
// Specifies the number of channels per socket.
|
|
||||||
//
|
|
||||||
// OVERRIDE_DDR_BUS_SPEED(SocketID, ChannelID, USER_MEMORY_TIMING_MODE, MEMORY_BUS_SPEED)
|
|
||||||
// Specifies DDR bus speed of channel ChannelID on socket SocketID.
|
|
||||||
//
|
|
||||||
// DRAM_TECHNOLOGY(SocketID, TECHNOLOGY_TYPE)
|
|
||||||
// Specifies the DRAM technology type of socket SocketID (DDR2, DDR3,...)
|
|
||||||
//
|
|
||||||
// WRITE_LEVELING_SEED(SocketID, ChannelID, Byte0Seed, Byte1Seed, Byte2Seed, Byte3Seed, Byte4Seed, Byte5Seed,
|
|
||||||
// Byte6Seed, Byte7Seed, ByteEccSeed)
|
|
||||||
// Specifies the write leveling seed for a channel of a socket.
|
|
||||||
//
|
|
||||||
NUMBER_OF_DIMMS_SUPPORTED (ANY_SOCKET, ANY_CHANNEL, 2),
|
|
||||||
NUMBER_OF_CHANNELS_SUPPORTED (ANY_SOCKET, 1),
|
|
||||||
PSO_END
|
|
||||||
};
|
|
||||||
|
|
||||||
/*
|
|
||||||
* These tables are optional and may be used to adjust memory timing settings
|
|
||||||
*/
|
|
||||||
#include "mm.h"
|
|
||||||
#include "mn.h"
|
|
||||||
|
|
|
@ -17,6 +17,7 @@
|
||||||
#include "amdlib.h"
|
#include "amdlib.h"
|
||||||
#include "Ids.h"
|
#include "Ids.h"
|
||||||
#include "heapManager.h"
|
#include "heapManager.h"
|
||||||
|
#include <PlatformMemoryConfiguration.h>
|
||||||
#include "Filecode.h"
|
#include "Filecode.h"
|
||||||
|
|
||||||
#include <northbridge/amd/agesa/agesawrapper.h>
|
#include <northbridge/amd/agesa/agesawrapper.h>
|
||||||
|
@ -151,6 +152,36 @@ static AGESA_STATUS OemInitMid(AMD_MID_PARAMS * InitMid)
|
||||||
return AGESA_SUCCESS;
|
return AGESA_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*----------------------------------------------------------------------------------------
|
||||||
|
* CUSTOMER OVERIDES MEMORY TABLE
|
||||||
|
*----------------------------------------------------------------------------------------
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Platform Specific Overriding Table allows IBV/OEM to pass in platform information to AGESA
|
||||||
|
* (e.g. MemClk routing, the number of DIMM slots per channel,...). If PlatformSpecificTable
|
||||||
|
* is populated, AGESA will base its settings on the data from the table. Otherwise, it will
|
||||||
|
* use its default conservative settings.
|
||||||
|
*/
|
||||||
|
CONST PSO_ENTRY ROMDATA DefaultPlatformMemoryConfiguration[] = {
|
||||||
|
#define SEED_A 0x12
|
||||||
|
HW_RXEN_SEED(
|
||||||
|
ANY_SOCKET, CHANNEL_A, ALL_DIMMS,
|
||||||
|
SEED_A, SEED_A, SEED_A, SEED_A, SEED_A, SEED_A, SEED_A, SEED_A,
|
||||||
|
SEED_A),
|
||||||
|
|
||||||
|
NUMBER_OF_DIMMS_SUPPORTED (ANY_SOCKET, ANY_CHANNEL, 2),
|
||||||
|
NUMBER_OF_CHANNELS_SUPPORTED (ANY_SOCKET, 1),
|
||||||
|
MOTHER_BOARD_LAYERS (LAYERS_4),
|
||||||
|
|
||||||
|
MEMCLK_DIS_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x04, 0x08, 0x00, 0x00, 0x00, 0x00),
|
||||||
|
CKE_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x04, 0x08), /* TODO: bit2map, bit3map */
|
||||||
|
ODT_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x04, 0x08),
|
||||||
|
CS_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x04, 0x08, 0x00, 0x00, 0x00, 0x00),
|
||||||
|
|
||||||
|
PSO_END
|
||||||
|
};
|
||||||
|
|
||||||
const struct OEM_HOOK OemCustomize = {
|
const struct OEM_HOOK OemCustomize = {
|
||||||
.InitEarly = OemInitEarly,
|
.InitEarly = OemInitEarly,
|
||||||
.InitMid = OemInitMid,
|
.InitMid = OemInitMid,
|
||||||
|
|
|
@ -355,98 +355,3 @@ GPIO_CONTROL olivehill_gpio[] = {
|
||||||
|
|
||||||
#include "PlatformInstall.h"
|
#include "PlatformInstall.h"
|
||||||
|
|
||||||
/*----------------------------------------------------------------------------------------
|
|
||||||
* CUSTOMER OVERIDES MEMORY TABLE
|
|
||||||
*----------------------------------------------------------------------------------------
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Platform Specific Overriding Table allows IBV/OEM to pass in platform information to AGESA
|
|
||||||
* (e.g. MemClk routing, the number of DIMM slots per channel,...). If PlatformSpecificTable
|
|
||||||
* is populated, AGESA will base its settings on the data from the table. Otherwise, it will
|
|
||||||
* use its default conservative settings.
|
|
||||||
*/
|
|
||||||
CONST PSO_ENTRY ROMDATA DefaultPlatformMemoryConfiguration[] = {
|
|
||||||
//
|
|
||||||
// The following macros are supported (use comma to separate macros):
|
|
||||||
//
|
|
||||||
// MEMCLK_DIS_MAP(SocketID, ChannelID, MemClkDisBit0CSMap,..., MemClkDisBit7CSMap)
|
|
||||||
// The MemClk pins are identified based on BKDG definition of Fn2x88[MemClkDis] bitmap.
|
|
||||||
// AGESA will base on this value to disable unused MemClk to save power.
|
|
||||||
// Example:
|
|
||||||
// BKDG definition of Fn2x88[MemClkDis] bitmap for AM3 package is like below:
|
|
||||||
// Bit AM3/S1g3 pin name
|
|
||||||
// 0 M[B,A]_CLK_H/L[0]
|
|
||||||
// 1 M[B,A]_CLK_H/L[1]
|
|
||||||
// 2 M[B,A]_CLK_H/L[2]
|
|
||||||
// 3 M[B,A]_CLK_H/L[3]
|
|
||||||
// 4 M[B,A]_CLK_H/L[4]
|
|
||||||
// 5 M[B,A]_CLK_H/L[5]
|
|
||||||
// 6 M[B,A]_CLK_H/L[6]
|
|
||||||
// 7 M[B,A]_CLK_H/L[7]
|
|
||||||
// And platform has the following routing:
|
|
||||||
// CS0 M[B,A]_CLK_H/L[4]
|
|
||||||
// CS1 M[B,A]_CLK_H/L[2]
|
|
||||||
// CS2 M[B,A]_CLK_H/L[3]
|
|
||||||
// CS3 M[B,A]_CLK_H/L[5]
|
|
||||||
// Then platform can specify the following macro:
|
|
||||||
// MEMCLK_DIS_MAP(ANY_SOCKET, ANY_CHANNEL, 0x00, 0x00, 0x02, 0x04, 0x01, 0x08, 0x00, 0x00)
|
|
||||||
//
|
|
||||||
// CKE_TRI_MAP(SocketID, ChannelID, CKETriBit0CSMap, CKETriBit1CSMap)
|
|
||||||
// The CKE pins are identified based on BKDG definition of Fn2x9C_0C[CKETri] bitmap.
|
|
||||||
// AGESA will base on this value to tristate unused CKE to save power.
|
|
||||||
//
|
|
||||||
// ODT_TRI_MAP(SocketID, ChannelID, ODTTriBit0CSMap,..., ODTTriBit3CSMap)
|
|
||||||
// The ODT pins are identified based on BKDG definition of Fn2x9C_0C[ODTTri] bitmap.
|
|
||||||
// AGESA will base on this value to tristate unused ODT pins to save power.
|
|
||||||
//
|
|
||||||
// CS_TRI_MAP(SocketID, ChannelID, CSTriBit0CSMap,..., CSTriBit7CSMap)
|
|
||||||
// The Chip select pins are identified based on BKDG definition of Fn2x9C_0C[ChipSelTri] bitmap.
|
|
||||||
// AGESA will base on this value to tristate unused Chip select to save power.
|
|
||||||
//
|
|
||||||
// NUMBER_OF_DIMMS_SUPPORTED(SocketID, ChannelID, NumberOfDimmSlotsPerChannel)
|
|
||||||
// Specifies the number of DIMM slots per channel.
|
|
||||||
//
|
|
||||||
// NUMBER_OF_CHIP_SELECTS_SUPPORTED(SocketID, ChannelID, NumberOfChipSelectsPerChannel)
|
|
||||||
// Specifies the number of Chip selects per channel.
|
|
||||||
//
|
|
||||||
// NUMBER_OF_CHANNELS_SUPPORTED(SocketID, NumberOfChannelsPerSocket)
|
|
||||||
// Specifies the number of channels per socket.
|
|
||||||
//
|
|
||||||
// OVERRIDE_DDR_BUS_SPEED(SocketID, ChannelID, USER_MEMORY_TIMING_MODE, MEMORY_BUS_SPEED)
|
|
||||||
// Specifies DDR bus speed of channel ChannelID on socket SocketID.
|
|
||||||
//
|
|
||||||
// DRAM_TECHNOLOGY(SocketID, TECHNOLOGY_TYPE)
|
|
||||||
// Specifies the DRAM technology type of socket SocketID (DDR2, DDR3,...)
|
|
||||||
//
|
|
||||||
// WRITE_LEVELING_SEED(SocketID, ChannelID, DimmID, Byte0Seed, Byte1Seed, Byte2Seed, Byte3Seed, Byte4Seed, Byte5Seed,
|
|
||||||
// Byte6Seed, Byte7Seed, ByteEccSeed)
|
|
||||||
// Specifies the write leveling seed for a channel of a socket.
|
|
||||||
//
|
|
||||||
// HW_RXEN_SEED(SocketID, ChannelID, DimmID, Byte0Seed, Byte1Seed, Byte2Seed, Byte3Seed, Byte4Seed, Byte5Seed,
|
|
||||||
// Byte6Seed, Byte7Seed, ByteEccSeed)
|
|
||||||
// Speicifes the HW RXEN training seed for a channel of a socket
|
|
||||||
//
|
|
||||||
#define SEED_A 0x12
|
|
||||||
HW_RXEN_SEED(
|
|
||||||
ANY_SOCKET, CHANNEL_A, ALL_DIMMS,
|
|
||||||
SEED_A, SEED_A, SEED_A, SEED_A, SEED_A, SEED_A, SEED_A, SEED_A,
|
|
||||||
SEED_A),
|
|
||||||
|
|
||||||
NUMBER_OF_DIMMS_SUPPORTED (ANY_SOCKET, ANY_CHANNEL, 2),
|
|
||||||
NUMBER_OF_CHANNELS_SUPPORTED (ANY_SOCKET, 1),
|
|
||||||
MOTHER_BOARD_LAYERS (LAYERS_4),
|
|
||||||
|
|
||||||
MEMCLK_DIS_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x04, 0x08, 0x00, 0x00, 0x00, 0x00),
|
|
||||||
CKE_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x04, 0x08), /* TODO: bit2map, bit3map */
|
|
||||||
ODT_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x04, 0x08),
|
|
||||||
CS_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x04, 0x08, 0x00, 0x00, 0x00, 0x00),
|
|
||||||
|
|
||||||
PSO_END
|
|
||||||
};
|
|
||||||
|
|
||||||
/*
|
|
||||||
* These tables are optional and may be used to adjust memory timing settings
|
|
||||||
*/
|
|
||||||
#include "mm.h"
|
|
||||||
#include "mn.h"
|
|
||||||
|
|
|
@ -17,6 +17,7 @@
|
||||||
#include "amdlib.h"
|
#include "amdlib.h"
|
||||||
#include "Ids.h"
|
#include "Ids.h"
|
||||||
#include "heapManager.h"
|
#include "heapManager.h"
|
||||||
|
#include <PlatformMemoryConfiguration.h>
|
||||||
#include "Filecode.h"
|
#include "Filecode.h"
|
||||||
|
|
||||||
#include <northbridge/amd/agesa/agesawrapper.h>
|
#include <northbridge/amd/agesa/agesawrapper.h>
|
||||||
|
@ -198,6 +199,28 @@ static AGESA_STATUS OemInitMid(AMD_MID_PARAMS * InitMid)
|
||||||
return AGESA_SUCCESS;
|
return AGESA_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*----------------------------------------------------------------------------------------
|
||||||
|
* CUSTOMER OVERIDES MEMORY TABLE
|
||||||
|
*----------------------------------------------------------------------------------------
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Platform Specific Overriding Table allows IBV/OEM to pass in platform information to AGESA
|
||||||
|
* (e.g. MemClk routing, the number of DIMM slots per channel,...). If PlatformSpecificTable
|
||||||
|
* is populated, AGESA will base its settings on the data from the table. Otherwise, it will
|
||||||
|
* use its default conservative settings.
|
||||||
|
*/
|
||||||
|
CONST PSO_ENTRY ROMDATA DefaultPlatformMemoryConfiguration[] = {
|
||||||
|
NUMBER_OF_DIMMS_SUPPORTED (ANY_SOCKET, ANY_CHANNEL, 1),
|
||||||
|
NUMBER_OF_CHANNELS_SUPPORTED (ANY_SOCKET, 2),
|
||||||
|
MEMCLK_DIS_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00),
|
||||||
|
CKE_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x05, 0x0A),
|
||||||
|
ODT_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x00, 0x00),
|
||||||
|
CS_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00),
|
||||||
|
|
||||||
|
PSO_END
|
||||||
|
};
|
||||||
|
|
||||||
const struct OEM_HOOK OemCustomize = {
|
const struct OEM_HOOK OemCustomize = {
|
||||||
.InitEarly = OemInitEarly,
|
.InitEarly = OemInitEarly,
|
||||||
.InitMid = OemInitMid,
|
.InitMid = OemInitMid,
|
||||||
|
|
|
@ -356,90 +356,3 @@ GPIO_CONTROL parmer_gpio[] = {
|
||||||
|
|
||||||
#include "PlatformInstall.h"
|
#include "PlatformInstall.h"
|
||||||
|
|
||||||
/*----------------------------------------------------------------------------------------
|
|
||||||
* CUSTOMER OVERIDES MEMORY TABLE
|
|
||||||
*----------------------------------------------------------------------------------------
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Platform Specific Overriding Table allows IBV/OEM to pass in platform information to AGESA
|
|
||||||
* (e.g. MemClk routing, the number of DIMM slots per channel,...). If PlatformSpecificTable
|
|
||||||
* is populated, AGESA will base its settings on the data from the table. Otherwise, it will
|
|
||||||
* use its default conservative settings.
|
|
||||||
*/
|
|
||||||
CONST PSO_ENTRY ROMDATA DefaultPlatformMemoryConfiguration[] = {
|
|
||||||
//
|
|
||||||
// The following macros are supported (use comma to separate macros):
|
|
||||||
//
|
|
||||||
// MEMCLK_DIS_MAP(SocketID, ChannelID, MemClkDisBit0CSMap,..., MemClkDisBit7CSMap)
|
|
||||||
// The MemClk pins are identified based on BKDG definition of Fn2x88[MemClkDis] bitmap.
|
|
||||||
// AGESA will base on this value to disable unused MemClk to save power.
|
|
||||||
// Example:
|
|
||||||
// BKDG definition of Fn2x88[MemClkDis] bitmap for AM3 package is like below:
|
|
||||||
// Bit AM3/S1g3 pin name
|
|
||||||
// 0 M[B,A]_CLK_H/L[0]
|
|
||||||
// 1 M[B,A]_CLK_H/L[1]
|
|
||||||
// 2 M[B,A]_CLK_H/L[2]
|
|
||||||
// 3 M[B,A]_CLK_H/L[3]
|
|
||||||
// 4 M[B,A]_CLK_H/L[4]
|
|
||||||
// 5 M[B,A]_CLK_H/L[5]
|
|
||||||
// 6 M[B,A]_CLK_H/L[6]
|
|
||||||
// 7 M[B,A]_CLK_H/L[7]
|
|
||||||
// And platform has the following routing:
|
|
||||||
// CS0 M[B,A]_CLK_H/L[4]
|
|
||||||
// CS1 M[B,A]_CLK_H/L[2]
|
|
||||||
// CS2 M[B,A]_CLK_H/L[3]
|
|
||||||
// CS3 M[B,A]_CLK_H/L[5]
|
|
||||||
// Then platform can specify the following macro:
|
|
||||||
// MEMCLK_DIS_MAP(ANY_SOCKET, ANY_CHANNEL, 0x00, 0x00, 0x02, 0x04, 0x01, 0x08, 0x00, 0x00)
|
|
||||||
//
|
|
||||||
// CKE_TRI_MAP(SocketID, ChannelID, CKETriBit0CSMap, CKETriBit1CSMap)
|
|
||||||
// The CKE pins are identified based on BKDG definition of Fn2x9C_0C[CKETri] bitmap.
|
|
||||||
// AGESA will base on this value to tristate unused CKE to save power.
|
|
||||||
//
|
|
||||||
// ODT_TRI_MAP(SocketID, ChannelID, ODTTriBit0CSMap,..., ODTTriBit3CSMap)
|
|
||||||
// The ODT pins are identified based on BKDG definition of Fn2x9C_0C[ODTTri] bitmap.
|
|
||||||
// AGESA will base on this value to tristate unused ODT pins to save power.
|
|
||||||
//
|
|
||||||
// CS_TRI_MAP(SocketID, ChannelID, CSTriBit0CSMap,..., CSTriBit7CSMap)
|
|
||||||
// The Chip select pins are identified based on BKDG definition of Fn2x9C_0C[ChipSelTri] bitmap.
|
|
||||||
// AGESA will base on this value to tristate unused Chip select to save power.
|
|
||||||
//
|
|
||||||
// NUMBER_OF_DIMMS_SUPPORTED(SocketID, ChannelID, NumberOfDimmSlotsPerChannel)
|
|
||||||
// Specifies the number of DIMM slots per channel.
|
|
||||||
//
|
|
||||||
// NUMBER_OF_CHIP_SELECTS_SUPPORTED(SocketID, ChannelID, NumberOfChipSelectsPerChannel)
|
|
||||||
// Specifies the number of Chip selects per channel.
|
|
||||||
//
|
|
||||||
// NUMBER_OF_CHANNELS_SUPPORTED(SocketID, NumberOfChannelsPerSocket)
|
|
||||||
// Specifies the number of channels per socket.
|
|
||||||
//
|
|
||||||
// OVERRIDE_DDR_BUS_SPEED(SocketID, ChannelID, USER_MEMORY_TIMING_MODE, MEMORY_BUS_SPEED)
|
|
||||||
// Specifies DDR bus speed of channel ChannelID on socket SocketID.
|
|
||||||
//
|
|
||||||
// DRAM_TECHNOLOGY(SocketID, TECHNOLOGY_TYPE)
|
|
||||||
// Specifies the DRAM technology type of socket SocketID (DDR2, DDR3,...)
|
|
||||||
//
|
|
||||||
// WRITE_LEVELING_SEED(SocketID, ChannelID, DimmID, Byte0Seed, Byte1Seed, Byte2Seed, Byte3Seed, Byte4Seed, Byte5Seed,
|
|
||||||
// Byte6Seed, Byte7Seed, ByteEccSeed)
|
|
||||||
// Specifies the write leveling seed for a channel of a socket.
|
|
||||||
//
|
|
||||||
// HW_RXEN_SEED(SocketID, ChannelID, DimmID, Byte0Seed, Byte1Seed, Byte2Seed, Byte3Seed, Byte4Seed, Byte5Seed,
|
|
||||||
// Byte6Seed, Byte7Seed, ByteEccSeed)
|
|
||||||
// Speicifes the HW RXEN training seed for a channel of a socket
|
|
||||||
//
|
|
||||||
NUMBER_OF_DIMMS_SUPPORTED (ANY_SOCKET, ANY_CHANNEL, 1),
|
|
||||||
NUMBER_OF_CHANNELS_SUPPORTED (ANY_SOCKET, 2),
|
|
||||||
MEMCLK_DIS_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00),
|
|
||||||
CKE_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x05, 0x0A),
|
|
||||||
ODT_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x00, 0x00),
|
|
||||||
CS_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00),
|
|
||||||
|
|
||||||
PSO_END
|
|
||||||
};
|
|
||||||
|
|
||||||
/*
|
|
||||||
* These tables are optional and may be used to adjust memory timing settings
|
|
||||||
*/
|
|
||||||
#include "mm.h"
|
|
||||||
#include "mn.h"
|
|
||||||
|
|
|
@ -18,6 +18,7 @@
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <northbridge/amd/agesa/agesawrapper.h>
|
#include <northbridge/amd/agesa/agesawrapper.h>
|
||||||
#include <vendorcode/amd/agesa/f14/Proc/CPU/heapManager.h>
|
#include <vendorcode/amd/agesa/f14/Proc/CPU/heapManager.h>
|
||||||
|
#include <PlatformMemoryConfiguration.h>
|
||||||
|
|
||||||
#define FILECODE PROC_RECOVERY_MEM_NB_ON_MRNON_FILECODE
|
#define FILECODE PROC_RECOVERY_MEM_NB_ON_MRNON_FILECODE
|
||||||
|
|
||||||
|
@ -134,6 +135,23 @@ PCIe_COMPLEX_DESCRIPTOR Brazos = {
|
||||||
return AGESA_SUCCESS;
|
return AGESA_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*----------------------------------------------------------------------------------------
|
||||||
|
* CUSTOMER OVERIDES MEMORY TABLE
|
||||||
|
*----------------------------------------------------------------------------------------
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Platform Specific Overriding Table allows IBV/OEM to pass in platform information to AGESA
|
||||||
|
* (e.g. MemClk routing, the number of DIMM slots per channel,...). If PlatformSpecificTable
|
||||||
|
* is populated, AGESA will base its settings on the data from the table. Otherwise, it will
|
||||||
|
* use its default conservative settings.
|
||||||
|
*/
|
||||||
|
CONST PSO_ENTRY ROMDATA DefaultPlatformMemoryConfiguration[] = {
|
||||||
|
NUMBER_OF_DIMMS_SUPPORTED (ANY_SOCKET, ANY_CHANNEL, 2),
|
||||||
|
NUMBER_OF_CHANNELS_SUPPORTED (ANY_SOCKET, 1),
|
||||||
|
PSO_END
|
||||||
|
};
|
||||||
|
|
||||||
const struct OEM_HOOK OemCustomize = {
|
const struct OEM_HOOK OemCustomize = {
|
||||||
.InitEarly = OemInitEarly,
|
.InitEarly = OemInitEarly,
|
||||||
};
|
};
|
||||||
|
|
|
@ -310,81 +310,3 @@ CONST AP_MTRR_SETTINGS ROMDATA OntarioApMtrrSettingsList[] =
|
||||||
// Instantiate all solution relevant data.
|
// Instantiate all solution relevant data.
|
||||||
#include "PlatformInstall.h"
|
#include "PlatformInstall.h"
|
||||||
|
|
||||||
/*----------------------------------------------------------------------------------------
|
|
||||||
* CUSTOMER OVERIDES MEMORY TABLE
|
|
||||||
*----------------------------------------------------------------------------------------
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Platform Specific Overriding Table allows IBV/OEM to pass in platform information to AGESA
|
|
||||||
* (e.g. MemClk routing, the number of DIMM slots per channel,...). If PlatformSpecificTable
|
|
||||||
* is populated, AGESA will base its settings on the data from the table. Otherwise, it will
|
|
||||||
* use its default conservative settings.
|
|
||||||
*/
|
|
||||||
CONST PSO_ENTRY ROMDATA DefaultPlatformMemoryConfiguration[] = {
|
|
||||||
//
|
|
||||||
// The following macros are supported (use comma to separate macros):
|
|
||||||
//
|
|
||||||
// MEMCLK_DIS_MAP(SocketID, ChannelID, MemClkDisBit0CSMap,..., MemClkDisBit7CSMap)
|
|
||||||
// The MemClk pins are identified based on BKDG definition of Fn2x88[MemClkDis] bitmap.
|
|
||||||
// AGESA will base on this value to disable unused MemClk to save power.
|
|
||||||
// Example:
|
|
||||||
// BKDG definition of Fn2x88[MemClkDis] bitmap for AM3 package is like below:
|
|
||||||
// Bit AM3/S1g3 pin name
|
|
||||||
// 0 M[B,A]_CLK_H/L[0]
|
|
||||||
// 1 M[B,A]_CLK_H/L[1]
|
|
||||||
// 2 M[B,A]_CLK_H/L[2]
|
|
||||||
// 3 M[B,A]_CLK_H/L[3]
|
|
||||||
// 4 M[B,A]_CLK_H/L[4]
|
|
||||||
// 5 M[B,A]_CLK_H/L[5]
|
|
||||||
// 6 M[B,A]_CLK_H/L[6]
|
|
||||||
// 7 M[B,A]_CLK_H/L[7]
|
|
||||||
// And platform has the following routing:
|
|
||||||
// CS0 M[B,A]_CLK_H/L[4]
|
|
||||||
// CS1 M[B,A]_CLK_H/L[2]
|
|
||||||
// CS2 M[B,A]_CLK_H/L[3]
|
|
||||||
// CS3 M[B,A]_CLK_H/L[5]
|
|
||||||
// Then platform can specify the following macro:
|
|
||||||
// MEMCLK_DIS_MAP(ANY_SOCKET, ANY_CHANNEL, 0x00, 0x00, 0x02, 0x04, 0x01, 0x08, 0x00, 0x00)
|
|
||||||
//
|
|
||||||
// CKE_TRI_MAP(SocketID, ChannelID, CKETriBit0CSMap, CKETriBit1CSMap)
|
|
||||||
// The CKE pins are identified based on BKDG definition of Fn2x9C_0C[CKETri] bitmap.
|
|
||||||
// AGESA will base on this value to tristate unused CKE to save power.
|
|
||||||
//
|
|
||||||
// ODT_TRI_MAP(SocketID, ChannelID, ODTTriBit0CSMap,..., ODTTriBit3CSMap)
|
|
||||||
// The ODT pins are identified based on BKDG definition of Fn2x9C_0C[ODTTri] bitmap.
|
|
||||||
// AGESA will base on this value to tristate unused ODT pins to save power.
|
|
||||||
//
|
|
||||||
// CS_TRI_MAP(SocketID, ChannelID, CSTriBit0CSMap,..., CSTriBit7CSMap)
|
|
||||||
// The Chip select pins are identified based on BKDG definition of Fn2x9C_0C[ChipSelTri] bitmap.
|
|
||||||
// AGESA will base on this value to tristate unused Chip select to save power.
|
|
||||||
//
|
|
||||||
// NUMBER_OF_DIMMS_SUPPORTED(SocketID, ChannelID, NumberOfDimmSlotsPerChannel)
|
|
||||||
// Specifies the number of DIMM slots per channel.
|
|
||||||
//
|
|
||||||
// NUMBER_OF_CHIP_SELECTS_SUPPORTED(SocketID, ChannelID, NumberOfChipSelectsPerChannel)
|
|
||||||
// Specifies the number of Chip selects per channel.
|
|
||||||
//
|
|
||||||
// NUMBER_OF_CHANNELS_SUPPORTED(SocketID, NumberOfChannelsPerSocket)
|
|
||||||
// Specifies the number of channels per socket.
|
|
||||||
//
|
|
||||||
// OVERRIDE_DDR_BUS_SPEED(SocketID, ChannelID, USER_MEMORY_TIMING_MODE, MEMORY_BUS_SPEED)
|
|
||||||
// Specifies DDR bus speed of channel ChannelID on socket SocketID.
|
|
||||||
//
|
|
||||||
// DRAM_TECHNOLOGY(SocketID, TECHNOLOGY_TYPE)
|
|
||||||
// Specifies the DRAM technology type of socket SocketID (DDR2, DDR3,...)
|
|
||||||
//
|
|
||||||
// WRITE_LEVELING_SEED(SocketID, ChannelID, Byte0Seed, Byte1Seed, Byte2Seed, Byte3Seed, Byte4Seed, Byte5Seed,
|
|
||||||
// Byte6Seed, Byte7Seed, ByteEccSeed)
|
|
||||||
// Specifies the write leveling seed for a channel of a socket.
|
|
||||||
//
|
|
||||||
NUMBER_OF_DIMMS_SUPPORTED (ANY_SOCKET, ANY_CHANNEL, 2),
|
|
||||||
NUMBER_OF_CHANNELS_SUPPORTED (ANY_SOCKET, 1),
|
|
||||||
PSO_END
|
|
||||||
};
|
|
||||||
|
|
||||||
/*
|
|
||||||
* These tables are optional and may be used to adjust memory timing settings
|
|
||||||
*/
|
|
||||||
#include "mm.h"
|
|
||||||
#include "mn.h"
|
|
||||||
|
|
|
@ -18,6 +18,7 @@
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <northbridge/amd/agesa/agesawrapper.h>
|
#include <northbridge/amd/agesa/agesawrapper.h>
|
||||||
#include <vendorcode/amd/agesa/f14/Proc/CPU/heapManager.h>
|
#include <vendorcode/amd/agesa/f14/Proc/CPU/heapManager.h>
|
||||||
|
#include <PlatformMemoryConfiguration.h>
|
||||||
|
|
||||||
#define FILECODE PROC_RECOVERY_MEM_NB_ON_MRNON_FILECODE
|
#define FILECODE PROC_RECOVERY_MEM_NB_ON_MRNON_FILECODE
|
||||||
|
|
||||||
|
@ -136,6 +137,23 @@ PCIe_COMPLEX_DESCRIPTOR Brazos = {
|
||||||
return AGESA_SUCCESS;
|
return AGESA_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*----------------------------------------------------------------------------------------
|
||||||
|
* CUSTOMER OVERIDES MEMORY TABLE
|
||||||
|
*----------------------------------------------------------------------------------------
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Platform Specific Overriding Table allows IBV/OEM to pass in platform information to AGESA
|
||||||
|
* (e.g. MemClk routing, the number of DIMM slots per channel,...). If PlatformSpecificTable
|
||||||
|
* is populated, AGESA will base its settings on the data from the table. Otherwise, it will
|
||||||
|
* use its default conservative settings.
|
||||||
|
*/
|
||||||
|
CONST PSO_ENTRY ROMDATA DefaultPlatformMemoryConfiguration[] = {
|
||||||
|
NUMBER_OF_DIMMS_SUPPORTED (ANY_SOCKET, ANY_CHANNEL, 2),
|
||||||
|
NUMBER_OF_CHANNELS_SUPPORTED (ANY_SOCKET, 1),
|
||||||
|
PSO_END
|
||||||
|
};
|
||||||
|
|
||||||
const struct OEM_HOOK OemCustomize = {
|
const struct OEM_HOOK OemCustomize = {
|
||||||
.InitEarly = OemInitEarly,
|
.InitEarly = OemInitEarly,
|
||||||
};
|
};
|
||||||
|
|
|
@ -310,81 +310,3 @@ CONST AP_MTRR_SETTINGS ROMDATA OntarioApMtrrSettingsList[] =
|
||||||
// Instantiate all solution relevant data.
|
// Instantiate all solution relevant data.
|
||||||
#include "PlatformInstall.h"
|
#include "PlatformInstall.h"
|
||||||
|
|
||||||
/*----------------------------------------------------------------------------------------
|
|
||||||
* CUSTOMER OVERIDES MEMORY TABLE
|
|
||||||
*----------------------------------------------------------------------------------------
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Platform Specific Overriding Table allows IBV/OEM to pass in platform information to AGESA
|
|
||||||
* (e.g. MemClk routing, the number of DIMM slots per channel,...). If PlatformSpecificTable
|
|
||||||
* is populated, AGESA will base its settings on the data from the table. Otherwise, it will
|
|
||||||
* use its default conservative settings.
|
|
||||||
*/
|
|
||||||
CONST PSO_ENTRY ROMDATA DefaultPlatformMemoryConfiguration[] = {
|
|
||||||
//
|
|
||||||
// The following macros are supported (use comma to separate macros):
|
|
||||||
//
|
|
||||||
// MEMCLK_DIS_MAP(SocketID, ChannelID, MemClkDisBit0CSMap,..., MemClkDisBit7CSMap)
|
|
||||||
// The MemClk pins are identified based on BKDG definition of Fn2x88[MemClkDis] bitmap.
|
|
||||||
// AGESA will base on this value to disable unused MemClk to save power.
|
|
||||||
// Example:
|
|
||||||
// BKDG definition of Fn2x88[MemClkDis] bitmap for AM3 package is like below:
|
|
||||||
// Bit AM3/S1g3 pin name
|
|
||||||
// 0 M[B,A]_CLK_H/L[0]
|
|
||||||
// 1 M[B,A]_CLK_H/L[1]
|
|
||||||
// 2 M[B,A]_CLK_H/L[2]
|
|
||||||
// 3 M[B,A]_CLK_H/L[3]
|
|
||||||
// 4 M[B,A]_CLK_H/L[4]
|
|
||||||
// 5 M[B,A]_CLK_H/L[5]
|
|
||||||
// 6 M[B,A]_CLK_H/L[6]
|
|
||||||
// 7 M[B,A]_CLK_H/L[7]
|
|
||||||
// And platform has the following routing:
|
|
||||||
// CS0 M[B,A]_CLK_H/L[4]
|
|
||||||
// CS1 M[B,A]_CLK_H/L[2]
|
|
||||||
// CS2 M[B,A]_CLK_H/L[3]
|
|
||||||
// CS3 M[B,A]_CLK_H/L[5]
|
|
||||||
// Then platform can specify the following macro:
|
|
||||||
// MEMCLK_DIS_MAP(ANY_SOCKET, ANY_CHANNEL, 0x00, 0x00, 0x02, 0x04, 0x01, 0x08, 0x00, 0x00)
|
|
||||||
//
|
|
||||||
// CKE_TRI_MAP(SocketID, ChannelID, CKETriBit0CSMap, CKETriBit1CSMap)
|
|
||||||
// The CKE pins are identified based on BKDG definition of Fn2x9C_0C[CKETri] bitmap.
|
|
||||||
// AGESA will base on this value to tristate unused CKE to save power.
|
|
||||||
//
|
|
||||||
// ODT_TRI_MAP(SocketID, ChannelID, ODTTriBit0CSMap,..., ODTTriBit3CSMap)
|
|
||||||
// The ODT pins are identified based on BKDG definition of Fn2x9C_0C[ODTTri] bitmap.
|
|
||||||
// AGESA will base on this value to tristate unused ODT pins to save power.
|
|
||||||
//
|
|
||||||
// CS_TRI_MAP(SocketID, ChannelID, CSTriBit0CSMap,..., CSTriBit7CSMap)
|
|
||||||
// The Chip select pins are identified based on BKDG definition of Fn2x9C_0C[ChipSelTri] bitmap.
|
|
||||||
// AGESA will base on this value to tristate unused Chip select to save power.
|
|
||||||
//
|
|
||||||
// NUMBER_OF_DIMMS_SUPPORTED(SocketID, ChannelID, NumberOfDimmSlotsPerChannel)
|
|
||||||
// Specifies the number of DIMM slots per channel.
|
|
||||||
//
|
|
||||||
// NUMBER_OF_CHIP_SELECTS_SUPPORTED(SocketID, ChannelID, NumberOfChipSelectsPerChannel)
|
|
||||||
// Specifies the number of Chip selects per channel.
|
|
||||||
//
|
|
||||||
// NUMBER_OF_CHANNELS_SUPPORTED(SocketID, NumberOfChannelsPerSocket)
|
|
||||||
// Specifies the number of channels per socket.
|
|
||||||
//
|
|
||||||
// OVERRIDE_DDR_BUS_SPEED(SocketID, ChannelID, USER_MEMORY_TIMING_MODE, MEMORY_BUS_SPEED)
|
|
||||||
// Specifies DDR bus speed of channel ChannelID on socket SocketID.
|
|
||||||
//
|
|
||||||
// DRAM_TECHNOLOGY(SocketID, TECHNOLOGY_TYPE)
|
|
||||||
// Specifies the DRAM technology type of socket SocketID (DDR2, DDR3,...)
|
|
||||||
//
|
|
||||||
// WRITE_LEVELING_SEED(SocketID, ChannelID, Byte0Seed, Byte1Seed, Byte2Seed, Byte3Seed, Byte4Seed, Byte5Seed,
|
|
||||||
// Byte6Seed, Byte7Seed, ByteEccSeed)
|
|
||||||
// Specifies the write leveling seed for a channel of a socket.
|
|
||||||
//
|
|
||||||
NUMBER_OF_DIMMS_SUPPORTED (ANY_SOCKET, ANY_CHANNEL, 2),
|
|
||||||
NUMBER_OF_CHANNELS_SUPPORTED (ANY_SOCKET, 1),
|
|
||||||
PSO_END
|
|
||||||
};
|
|
||||||
|
|
||||||
/*
|
|
||||||
* These tables are optional and may be used to adjust memory timing settings
|
|
||||||
*/
|
|
||||||
#include "mm.h"
|
|
||||||
#include "mn.h"
|
|
||||||
|
|
|
@ -17,6 +17,7 @@
|
||||||
#include "amdlib.h"
|
#include "amdlib.h"
|
||||||
#include "Ids.h"
|
#include "Ids.h"
|
||||||
#include "heapManager.h"
|
#include "heapManager.h"
|
||||||
|
#include <PlatformMemoryConfiguration.h>
|
||||||
#include "Filecode.h"
|
#include "Filecode.h"
|
||||||
|
|
||||||
#include <northbridge/amd/agesa/agesawrapper.h>
|
#include <northbridge/amd/agesa/agesawrapper.h>
|
||||||
|
@ -224,6 +225,28 @@ static AGESA_STATUS OemInitMid(AMD_MID_PARAMS * InitMid)
|
||||||
return AGESA_SUCCESS;
|
return AGESA_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*----------------------------------------------------------------------------------------
|
||||||
|
* CUSTOMER OVERIDES MEMORY TABLE
|
||||||
|
*----------------------------------------------------------------------------------------
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Platform Specific Overriding Table allows IBV/OEM to pass in platform information to AGESA
|
||||||
|
* (e.g. MemClk routing, the number of DIMM slots per channel,...). If PlatformSpecificTable
|
||||||
|
* is populated, AGESA will base its settings on the data from the table. Otherwise, it will
|
||||||
|
* use its default conservative settings.
|
||||||
|
*/
|
||||||
|
CONST PSO_ENTRY ROMDATA DefaultPlatformMemoryConfiguration[] = {
|
||||||
|
NUMBER_OF_DIMMS_SUPPORTED (ANY_SOCKET, ANY_CHANNEL, 1),
|
||||||
|
NUMBER_OF_CHANNELS_SUPPORTED (ANY_SOCKET, 2),
|
||||||
|
MEMCLK_DIS_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00),
|
||||||
|
CKE_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x05, 0x0A),
|
||||||
|
ODT_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x00, 0x00),
|
||||||
|
CS_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00),
|
||||||
|
|
||||||
|
PSO_END
|
||||||
|
};
|
||||||
|
|
||||||
const struct OEM_HOOK OemCustomize = {
|
const struct OEM_HOOK OemCustomize = {
|
||||||
.InitEarly = OemInitEarly,
|
.InitEarly = OemInitEarly,
|
||||||
.InitMid = OemInitMid,
|
.InitMid = OemInitMid,
|
||||||
|
|
|
@ -356,90 +356,3 @@ GPIO_CONTROL thatcher_gpio[] = {
|
||||||
|
|
||||||
#include "PlatformInstall.h"
|
#include "PlatformInstall.h"
|
||||||
|
|
||||||
/*----------------------------------------------------------------------------------------
|
|
||||||
* CUSTOMER OVERIDES MEMORY TABLE
|
|
||||||
*----------------------------------------------------------------------------------------
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Platform Specific Overriding Table allows IBV/OEM to pass in platform information to AGESA
|
|
||||||
* (e.g. MemClk routing, the number of DIMM slots per channel,...). If PlatformSpecificTable
|
|
||||||
* is populated, AGESA will base its settings on the data from the table. Otherwise, it will
|
|
||||||
* use its default conservative settings.
|
|
||||||
*/
|
|
||||||
CONST PSO_ENTRY ROMDATA DefaultPlatformMemoryConfiguration[] = {
|
|
||||||
//
|
|
||||||
// The following macros are supported (use comma to separate macros):
|
|
||||||
//
|
|
||||||
// MEMCLK_DIS_MAP(SocketID, ChannelID, MemClkDisBit0CSMap,..., MemClkDisBit7CSMap)
|
|
||||||
// The MemClk pins are identified based on BKDG definition of Fn2x88[MemClkDis] bitmap.
|
|
||||||
// AGESA will base on this value to disable unused MemClk to save power.
|
|
||||||
// Example:
|
|
||||||
// BKDG definition of Fn2x88[MemClkDis] bitmap for AM3 package is like below:
|
|
||||||
// Bit AM3/S1g3 pin name
|
|
||||||
// 0 M[B,A]_CLK_H/L[0]
|
|
||||||
// 1 M[B,A]_CLK_H/L[1]
|
|
||||||
// 2 M[B,A]_CLK_H/L[2]
|
|
||||||
// 3 M[B,A]_CLK_H/L[3]
|
|
||||||
// 4 M[B,A]_CLK_H/L[4]
|
|
||||||
// 5 M[B,A]_CLK_H/L[5]
|
|
||||||
// 6 M[B,A]_CLK_H/L[6]
|
|
||||||
// 7 M[B,A]_CLK_H/L[7]
|
|
||||||
// And platform has the following routing:
|
|
||||||
// CS0 M[B,A]_CLK_H/L[4]
|
|
||||||
// CS1 M[B,A]_CLK_H/L[2]
|
|
||||||
// CS2 M[B,A]_CLK_H/L[3]
|
|
||||||
// CS3 M[B,A]_CLK_H/L[5]
|
|
||||||
// Then platform can specify the following macro:
|
|
||||||
// MEMCLK_DIS_MAP(ANY_SOCKET, ANY_CHANNEL, 0x00, 0x00, 0x02, 0x04, 0x01, 0x08, 0x00, 0x00)
|
|
||||||
//
|
|
||||||
// CKE_TRI_MAP(SocketID, ChannelID, CKETriBit0CSMap, CKETriBit1CSMap)
|
|
||||||
// The CKE pins are identified based on BKDG definition of Fn2x9C_0C[CKETri] bitmap.
|
|
||||||
// AGESA will base on this value to tristate unused CKE to save power.
|
|
||||||
//
|
|
||||||
// ODT_TRI_MAP(SocketID, ChannelID, ODTTriBit0CSMap,..., ODTTriBit3CSMap)
|
|
||||||
// The ODT pins are identified based on BKDG definition of Fn2x9C_0C[ODTTri] bitmap.
|
|
||||||
// AGESA will base on this value to tristate unused ODT pins to save power.
|
|
||||||
//
|
|
||||||
// CS_TRI_MAP(SocketID, ChannelID, CSTriBit0CSMap,..., CSTriBit7CSMap)
|
|
||||||
// The Chip select pins are identified based on BKDG definition of Fn2x9C_0C[ChipSelTri] bitmap.
|
|
||||||
// AGESA will base on this value to tristate unused Chip select to save power.
|
|
||||||
//
|
|
||||||
// NUMBER_OF_DIMMS_SUPPORTED(SocketID, ChannelID, NumberOfDimmSlotsPerChannel)
|
|
||||||
// Specifies the number of DIMM slots per channel.
|
|
||||||
//
|
|
||||||
// NUMBER_OF_CHIP_SELECTS_SUPPORTED(SocketID, ChannelID, NumberOfChipSelectsPerChannel)
|
|
||||||
// Specifies the number of Chip selects per channel.
|
|
||||||
//
|
|
||||||
// NUMBER_OF_CHANNELS_SUPPORTED(SocketID, NumberOfChannelsPerSocket)
|
|
||||||
// Specifies the number of channels per socket.
|
|
||||||
//
|
|
||||||
// OVERRIDE_DDR_BUS_SPEED(SocketID, ChannelID, USER_MEMORY_TIMING_MODE, MEMORY_BUS_SPEED)
|
|
||||||
// Specifies DDR bus speed of channel ChannelID on socket SocketID.
|
|
||||||
//
|
|
||||||
// DRAM_TECHNOLOGY(SocketID, TECHNOLOGY_TYPE)
|
|
||||||
// Specifies the DRAM technology type of socket SocketID (DDR2, DDR3,...)
|
|
||||||
//
|
|
||||||
// WRITE_LEVELING_SEED(SocketID, ChannelID, DimmID, Byte0Seed, Byte1Seed, Byte2Seed, Byte3Seed, Byte4Seed, Byte5Seed,
|
|
||||||
// Byte6Seed, Byte7Seed, ByteEccSeed)
|
|
||||||
// Specifies the write leveling seed for a channel of a socket.
|
|
||||||
//
|
|
||||||
// HW_RXEN_SEED(SocketID, ChannelID, DimmID, Byte0Seed, Byte1Seed, Byte2Seed, Byte3Seed, Byte4Seed, Byte5Seed,
|
|
||||||
// Byte6Seed, Byte7Seed, ByteEccSeed)
|
|
||||||
// Speicifes the HW RXEN training seed for a channel of a socket
|
|
||||||
//
|
|
||||||
NUMBER_OF_DIMMS_SUPPORTED (ANY_SOCKET, ANY_CHANNEL, 1),
|
|
||||||
NUMBER_OF_CHANNELS_SUPPORTED (ANY_SOCKET, 2),
|
|
||||||
MEMCLK_DIS_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00),
|
|
||||||
CKE_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x05, 0x0A),
|
|
||||||
ODT_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x00, 0x00),
|
|
||||||
CS_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00),
|
|
||||||
|
|
||||||
PSO_END
|
|
||||||
};
|
|
||||||
|
|
||||||
/*
|
|
||||||
* These tables are optional and may be used to adjust memory timing settings
|
|
||||||
*/
|
|
||||||
#include "mm.h"
|
|
||||||
#include "mn.h"
|
|
||||||
|
|
|
@ -17,6 +17,7 @@
|
||||||
#include "amdlib.h"
|
#include "amdlib.h"
|
||||||
#include "Ids.h"
|
#include "Ids.h"
|
||||||
#include "heapManager.h"
|
#include "heapManager.h"
|
||||||
|
#include <PlatformMemoryConfiguration.h>
|
||||||
#include "PlatformGnbPcieComplex.h"
|
#include "PlatformGnbPcieComplex.h"
|
||||||
#include "Filecode.h"
|
#include "Filecode.h"
|
||||||
|
|
||||||
|
@ -142,6 +143,23 @@ PCIe_COMPLEX_DESCRIPTOR Brazos = {
|
||||||
return AGESA_SUCCESS;
|
return AGESA_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*----------------------------------------------------------------------------------------
|
||||||
|
* CUSTOMER OVERIDES MEMORY TABLE
|
||||||
|
*----------------------------------------------------------------------------------------
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Platform Specific Overriding Table allows IBV/OEM to pass in platform information to AGESA
|
||||||
|
* (e.g. MemClk routing, the number of DIMM slots per channel,...). If PlatformSpecificTable
|
||||||
|
* is populated, AGESA will base its settings on the data from the table. Otherwise, it will
|
||||||
|
* use its default conservative settings.
|
||||||
|
*/
|
||||||
|
CONST PSO_ENTRY ROMDATA DefaultPlatformMemoryConfiguration[] = {
|
||||||
|
NUMBER_OF_DIMMS_SUPPORTED (ANY_SOCKET, ANY_CHANNEL, 2),
|
||||||
|
NUMBER_OF_CHANNELS_SUPPORTED (ANY_SOCKET, 1),
|
||||||
|
PSO_END
|
||||||
|
};
|
||||||
|
|
||||||
const struct OEM_HOOK OemCustomize = {
|
const struct OEM_HOOK OemCustomize = {
|
||||||
.InitEarly = OemInitEarly,
|
.InitEarly = OemInitEarly,
|
||||||
};
|
};
|
||||||
|
|
|
@ -310,81 +310,3 @@ CONST AP_MTRR_SETTINGS ROMDATA OntarioApMtrrSettingsList[] =
|
||||||
// Instantiate all solution relevant data.
|
// Instantiate all solution relevant data.
|
||||||
#include "PlatformInstall.h"
|
#include "PlatformInstall.h"
|
||||||
|
|
||||||
/*----------------------------------------------------------------------------------------
|
|
||||||
* CUSTOMER OVERIDES MEMORY TABLE
|
|
||||||
*----------------------------------------------------------------------------------------
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Platform Specific Overriding Table allows IBV/OEM to pass in platform information to AGESA
|
|
||||||
* (e.g. MemClk routing, the number of DIMM slots per channel,...). If PlatformSpecificTable
|
|
||||||
* is populated, AGESA will base its settings on the data from the table. Otherwise, it will
|
|
||||||
* use its default conservative settings.
|
|
||||||
*/
|
|
||||||
CONST PSO_ENTRY ROMDATA DefaultPlatformMemoryConfiguration[] = {
|
|
||||||
//
|
|
||||||
// The following macros are supported (use comma to separate macros):
|
|
||||||
//
|
|
||||||
// MEMCLK_DIS_MAP(SocketID, ChannelID, MemClkDisBit0CSMap,..., MemClkDisBit7CSMap)
|
|
||||||
// The MemClk pins are identified based on BKDG definition of Fn2x88[MemClkDis] bitmap.
|
|
||||||
// AGESA will base on this value to disable unused MemClk to save power.
|
|
||||||
// Example:
|
|
||||||
// BKDG definition of Fn2x88[MemClkDis] bitmap for AM3 package is like below:
|
|
||||||
// Bit AM3/S1g3 pin name
|
|
||||||
// 0 M[B,A]_CLK_H/L[0]
|
|
||||||
// 1 M[B,A]_CLK_H/L[1]
|
|
||||||
// 2 M[B,A]_CLK_H/L[2]
|
|
||||||
// 3 M[B,A]_CLK_H/L[3]
|
|
||||||
// 4 M[B,A]_CLK_H/L[4]
|
|
||||||
// 5 M[B,A]_CLK_H/L[5]
|
|
||||||
// 6 M[B,A]_CLK_H/L[6]
|
|
||||||
// 7 M[B,A]_CLK_H/L[7]
|
|
||||||
// And platform has the following routing:
|
|
||||||
// CS0 M[B,A]_CLK_H/L[4]
|
|
||||||
// CS1 M[B,A]_CLK_H/L[2]
|
|
||||||
// CS2 M[B,A]_CLK_H/L[3]
|
|
||||||
// CS3 M[B,A]_CLK_H/L[5]
|
|
||||||
// Then platform can specify the following macro:
|
|
||||||
// MEMCLK_DIS_MAP(ANY_SOCKET, ANY_CHANNEL, 0x00, 0x00, 0x02, 0x04, 0x01, 0x08, 0x00, 0x00)
|
|
||||||
//
|
|
||||||
// CKE_TRI_MAP(SocketID, ChannelID, CKETriBit0CSMap, CKETriBit1CSMap)
|
|
||||||
// The CKE pins are identified based on BKDG definition of Fn2x9C_0C[CKETri] bitmap.
|
|
||||||
// AGESA will base on this value to tristate unused CKE to save power.
|
|
||||||
//
|
|
||||||
// ODT_TRI_MAP(SocketID, ChannelID, ODTTriBit0CSMap,..., ODTTriBit3CSMap)
|
|
||||||
// The ODT pins are identified based on BKDG definition of Fn2x9C_0C[ODTTri] bitmap.
|
|
||||||
// AGESA will base on this value to tristate unused ODT pins to save power.
|
|
||||||
//
|
|
||||||
// CS_TRI_MAP(SocketID, ChannelID, CSTriBit0CSMap,..., CSTriBit7CSMap)
|
|
||||||
// The Chip select pins are identified based on BKDG definition of Fn2x9C_0C[ChipSelTri] bitmap.
|
|
||||||
// AGESA will base on this value to tristate unused Chip select to save power.
|
|
||||||
//
|
|
||||||
// NUMBER_OF_DIMMS_SUPPORTED(SocketID, ChannelID, NumberOfDimmSlotsPerChannel)
|
|
||||||
// Specifies the number of DIMM slots per channel.
|
|
||||||
//
|
|
||||||
// NUMBER_OF_CHIP_SELECTS_SUPPORTED(SocketID, ChannelID, NumberOfChipSelectsPerChannel)
|
|
||||||
// Specifies the number of Chip selects per channel.
|
|
||||||
//
|
|
||||||
// NUMBER_OF_CHANNELS_SUPPORTED(SocketID, NumberOfChannelsPerSocket)
|
|
||||||
// Specifies the number of channels per socket.
|
|
||||||
//
|
|
||||||
// OVERRIDE_DDR_BUS_SPEED(SocketID, ChannelID, USER_MEMORY_TIMING_MODE, MEMORY_BUS_SPEED)
|
|
||||||
// Specifies DDR bus speed of channel ChannelID on socket SocketID.
|
|
||||||
//
|
|
||||||
// DRAM_TECHNOLOGY(SocketID, TECHNOLOGY_TYPE)
|
|
||||||
// Specifies the DRAM technology type of socket SocketID (DDR2, DDR3,...)
|
|
||||||
//
|
|
||||||
// WRITE_LEVELING_SEED(SocketID, ChannelID, Byte0Seed, Byte1Seed, Byte2Seed, Byte3Seed, Byte4Seed, Byte5Seed,
|
|
||||||
// Byte6Seed, Byte7Seed, ByteEccSeed)
|
|
||||||
// Specifies the write leveling seed for a channel of a socket.
|
|
||||||
//
|
|
||||||
NUMBER_OF_DIMMS_SUPPORTED (ANY_SOCKET, ANY_CHANNEL, 2),
|
|
||||||
NUMBER_OF_CHANNELS_SUPPORTED (ANY_SOCKET, 1),
|
|
||||||
PSO_END
|
|
||||||
};
|
|
||||||
|
|
||||||
/*
|
|
||||||
* These tables are optional and may be used to adjust memory timing settings
|
|
||||||
*/
|
|
||||||
#include "mm.h"
|
|
||||||
#include "mn.h"
|
|
||||||
|
|
|
@ -17,6 +17,7 @@
|
||||||
#include "amdlib.h"
|
#include "amdlib.h"
|
||||||
#include "Ids.h"
|
#include "Ids.h"
|
||||||
#include "heapManager.h"
|
#include "heapManager.h"
|
||||||
|
#include <PlatformMemoryConfiguration.h>
|
||||||
#include "PlatformGnbPcieComplex.h"
|
#include "PlatformGnbPcieComplex.h"
|
||||||
#include "Filecode.h"
|
#include "Filecode.h"
|
||||||
|
|
||||||
|
@ -122,6 +123,23 @@ PCIe_COMPLEX_DESCRIPTOR Brazos = {
|
||||||
return AGESA_SUCCESS;
|
return AGESA_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*----------------------------------------------------------------------------------------
|
||||||
|
* CUSTOMER OVERIDES MEMORY TABLE
|
||||||
|
*----------------------------------------------------------------------------------------
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Platform Specific Overriding Table allows IBV/OEM to pass in platform information to AGESA
|
||||||
|
* (e.g. MemClk routing, the number of DIMM slots per channel,...). If PlatformSpecificTable
|
||||||
|
* is populated, AGESA will base its settings on the data from the table. Otherwise, it will
|
||||||
|
* use its default conservative settings.
|
||||||
|
*/
|
||||||
|
CONST PSO_ENTRY ROMDATA DefaultPlatformMemoryConfiguration[] = {
|
||||||
|
NUMBER_OF_DIMMS_SUPPORTED (ANY_SOCKET, ANY_CHANNEL, 2),
|
||||||
|
NUMBER_OF_CHANNELS_SUPPORTED (ANY_SOCKET, 1),
|
||||||
|
PSO_END
|
||||||
|
};
|
||||||
|
|
||||||
const struct OEM_HOOK OemCustomize = {
|
const struct OEM_HOOK OemCustomize = {
|
||||||
.InitEarly = OemInitEarly,
|
.InitEarly = OemInitEarly,
|
||||||
};
|
};
|
||||||
|
|
|
@ -310,81 +310,3 @@ CONST AP_MTRR_SETTINGS ROMDATA OntarioApMtrrSettingsList[] =
|
||||||
// Instantiate all solution relevant data.
|
// Instantiate all solution relevant data.
|
||||||
#include "PlatformInstall.h"
|
#include "PlatformInstall.h"
|
||||||
|
|
||||||
/*----------------------------------------------------------------------------------------
|
|
||||||
* CUSTOMER OVERIDES MEMORY TABLE
|
|
||||||
*----------------------------------------------------------------------------------------
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Platform Specific Overriding Table allows IBV/OEM to pass in platform information to AGESA
|
|
||||||
* (e.g. MemClk routing, the number of DIMM slots per channel,...). If PlatformSpecificTable
|
|
||||||
* is populated, AGESA will base its settings on the data from the table. Otherwise, it will
|
|
||||||
* use its default conservative settings.
|
|
||||||
*/
|
|
||||||
CONST PSO_ENTRY ROMDATA DefaultPlatformMemoryConfiguration[] = {
|
|
||||||
//
|
|
||||||
// The following macros are supported (use comma to separate macros):
|
|
||||||
//
|
|
||||||
// MEMCLK_DIS_MAP(SocketID, ChannelID, MemClkDisBit0CSMap,..., MemClkDisBit7CSMap)
|
|
||||||
// The MemClk pins are identified based on BKDG definition of Fn2x88[MemClkDis] bitmap.
|
|
||||||
// AGESA will base on this value to disable unused MemClk to save power.
|
|
||||||
// Example:
|
|
||||||
// BKDG definition of Fn2x88[MemClkDis] bitmap for AM3 package is like below:
|
|
||||||
// Bit AM3/S1g3 pin name
|
|
||||||
// 0 M[B,A]_CLK_H/L[0]
|
|
||||||
// 1 M[B,A]_CLK_H/L[1]
|
|
||||||
// 2 M[B,A]_CLK_H/L[2]
|
|
||||||
// 3 M[B,A]_CLK_H/L[3]
|
|
||||||
// 4 M[B,A]_CLK_H/L[4]
|
|
||||||
// 5 M[B,A]_CLK_H/L[5]
|
|
||||||
// 6 M[B,A]_CLK_H/L[6]
|
|
||||||
// 7 M[B,A]_CLK_H/L[7]
|
|
||||||
// And platform has the following routing:
|
|
||||||
// CS0 M[B,A]_CLK_H/L[4]
|
|
||||||
// CS1 M[B,A]_CLK_H/L[2]
|
|
||||||
// CS2 M[B,A]_CLK_H/L[3]
|
|
||||||
// CS3 M[B,A]_CLK_H/L[5]
|
|
||||||
// Then platform can specify the following macro:
|
|
||||||
// MEMCLK_DIS_MAP(ANY_SOCKET, ANY_CHANNEL, 0x00, 0x00, 0x02, 0x04, 0x01, 0x08, 0x00, 0x00)
|
|
||||||
//
|
|
||||||
// CKE_TRI_MAP(SocketID, ChannelID, CKETriBit0CSMap, CKETriBit1CSMap)
|
|
||||||
// The CKE pins are identified based on BKDG definition of Fn2x9C_0C[CKETri] bitmap.
|
|
||||||
// AGESA will base on this value to tristate unused CKE to save power.
|
|
||||||
//
|
|
||||||
// ODT_TRI_MAP(SocketID, ChannelID, ODTTriBit0CSMap,..., ODTTriBit3CSMap)
|
|
||||||
// The ODT pins are identified based on BKDG definition of Fn2x9C_0C[ODTTri] bitmap.
|
|
||||||
// AGESA will base on this value to tristate unused ODT pins to save power.
|
|
||||||
//
|
|
||||||
// CS_TRI_MAP(SocketID, ChannelID, CSTriBit0CSMap,..., CSTriBit7CSMap)
|
|
||||||
// The Chip select pins are identified based on BKDG definition of Fn2x9C_0C[ChipSelTri] bitmap.
|
|
||||||
// AGESA will base on this value to tristate unused Chip select to save power.
|
|
||||||
//
|
|
||||||
// NUMBER_OF_DIMMS_SUPPORTED(SocketID, ChannelID, NumberOfDimmSlotsPerChannel)
|
|
||||||
// Specifies the number of DIMM slots per channel.
|
|
||||||
//
|
|
||||||
// NUMBER_OF_CHIP_SELECTS_SUPPORTED(SocketID, ChannelID, NumberOfChipSelectsPerChannel)
|
|
||||||
// Specifies the number of Chip selects per channel.
|
|
||||||
//
|
|
||||||
// NUMBER_OF_CHANNELS_SUPPORTED(SocketID, NumberOfChannelsPerSocket)
|
|
||||||
// Specifies the number of channels per socket.
|
|
||||||
//
|
|
||||||
// OVERRIDE_DDR_BUS_SPEED(SocketID, ChannelID, USER_MEMORY_TIMING_MODE, MEMORY_BUS_SPEED)
|
|
||||||
// Specifies DDR bus speed of channel ChannelID on socket SocketID.
|
|
||||||
//
|
|
||||||
// DRAM_TECHNOLOGY(SocketID, TECHNOLOGY_TYPE)
|
|
||||||
// Specifies the DRAM technology type of socket SocketID (DDR2, DDR3,...)
|
|
||||||
//
|
|
||||||
// WRITE_LEVELING_SEED(SocketID, ChannelID, Byte0Seed, Byte1Seed, Byte2Seed, Byte3Seed, Byte4Seed, Byte5Seed,
|
|
||||||
// Byte6Seed, Byte7Seed, ByteEccSeed)
|
|
||||||
// Specifies the write leveling seed for a channel of a socket.
|
|
||||||
//
|
|
||||||
NUMBER_OF_DIMMS_SUPPORTED (ANY_SOCKET, ANY_CHANNEL, 2),
|
|
||||||
NUMBER_OF_CHANNELS_SUPPORTED (ANY_SOCKET, 1),
|
|
||||||
PSO_END
|
|
||||||
};
|
|
||||||
|
|
||||||
/*
|
|
||||||
* These tables are optional and may be used to adjust memory timing settings
|
|
||||||
*/
|
|
||||||
#include "mm.h"
|
|
||||||
#include "mn.h"
|
|
||||||
|
|
|
@ -17,6 +17,7 @@
|
||||||
#include "amdlib.h"
|
#include "amdlib.h"
|
||||||
#include "Ids.h"
|
#include "Ids.h"
|
||||||
#include "heapManager.h"
|
#include "heapManager.h"
|
||||||
|
#include <PlatformMemoryConfiguration.h>
|
||||||
#include "Filecode.h"
|
#include "Filecode.h"
|
||||||
|
|
||||||
#include <northbridge/amd/agesa/agesawrapper.h>
|
#include <northbridge/amd/agesa/agesawrapper.h>
|
||||||
|
@ -151,6 +152,37 @@ static AGESA_STATUS OemInitMid(AMD_MID_PARAMS * InitMid)
|
||||||
return AGESA_SUCCESS;
|
return AGESA_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*----------------------------------------------------------------------------------------
|
||||||
|
* CUSTOMER OVERIDES MEMORY TABLE
|
||||||
|
*----------------------------------------------------------------------------------------
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Platform Specific Overriding Table allows IBV/OEM to pass in platform information to AGESA
|
||||||
|
* (e.g. MemClk routing, the number of DIMM slots per channel,...). If PlatformSpecificTable
|
||||||
|
* is populated, AGESA will base its settings on the data from the table. Otherwise, it will
|
||||||
|
* use its default conservative settings.
|
||||||
|
*/
|
||||||
|
CONST PSO_ENTRY ROMDATA DefaultPlatformMemoryConfiguration[] = {
|
||||||
|
|
||||||
|
#define SEED_A 0x12
|
||||||
|
HW_RXEN_SEED(
|
||||||
|
ANY_SOCKET, CHANNEL_A, ALL_DIMMS,
|
||||||
|
SEED_A, SEED_A, SEED_A, SEED_A, SEED_A, SEED_A, SEED_A, SEED_A,
|
||||||
|
SEED_A),
|
||||||
|
|
||||||
|
NUMBER_OF_DIMMS_SUPPORTED (ANY_SOCKET, ANY_CHANNEL, 2),
|
||||||
|
NUMBER_OF_CHANNELS_SUPPORTED (ANY_SOCKET, 1),
|
||||||
|
MOTHER_BOARD_LAYERS (LAYERS_4),
|
||||||
|
|
||||||
|
MEMCLK_DIS_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x04, 0x08, 0x00, 0x00, 0x00, 0x00),
|
||||||
|
CKE_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x04, 0x08), /* TODO: bit2map, bit3map */
|
||||||
|
ODT_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x04, 0x08),
|
||||||
|
CS_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x04, 0x08, 0x00, 0x00, 0x00, 0x00),
|
||||||
|
|
||||||
|
PSO_END
|
||||||
|
};
|
||||||
|
|
||||||
const struct OEM_HOOK OemCustomize = {
|
const struct OEM_HOOK OemCustomize = {
|
||||||
.InitEarly = OemInitEarly,
|
.InitEarly = OemInitEarly,
|
||||||
.InitMid = OemInitMid,
|
.InitMid = OemInitMid,
|
||||||
|
|
|
@ -355,98 +355,3 @@ GPIO_CONTROL imba180_gpio[] = {
|
||||||
|
|
||||||
#include "PlatformInstall.h"
|
#include "PlatformInstall.h"
|
||||||
|
|
||||||
/*----------------------------------------------------------------------------------------
|
|
||||||
* CUSTOMER OVERIDES MEMORY TABLE
|
|
||||||
*----------------------------------------------------------------------------------------
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Platform Specific Overriding Table allows IBV/OEM to pass in platform information to AGESA
|
|
||||||
* (e.g. MemClk routing, the number of DIMM slots per channel,...). If PlatformSpecificTable
|
|
||||||
* is populated, AGESA will base its settings on the data from the table. Otherwise, it will
|
|
||||||
* use its default conservative settings.
|
|
||||||
*/
|
|
||||||
CONST PSO_ENTRY ROMDATA DefaultPlatformMemoryConfiguration[] = {
|
|
||||||
//
|
|
||||||
// The following macros are supported (use comma to separate macros):
|
|
||||||
//
|
|
||||||
// MEMCLK_DIS_MAP(SocketID, ChannelID, MemClkDisBit0CSMap,..., MemClkDisBit7CSMap)
|
|
||||||
// The MemClk pins are identified based on BKDG definition of Fn2x88[MemClkDis] bitmap.
|
|
||||||
// AGESA will base on this value to disable unused MemClk to save power.
|
|
||||||
// Example:
|
|
||||||
// BKDG definition of Fn2x88[MemClkDis] bitmap for AM3 package is like below:
|
|
||||||
// Bit AM3/S1g3 pin name
|
|
||||||
// 0 M[B,A]_CLK_H/L[0]
|
|
||||||
// 1 M[B,A]_CLK_H/L[1]
|
|
||||||
// 2 M[B,A]_CLK_H/L[2]
|
|
||||||
// 3 M[B,A]_CLK_H/L[3]
|
|
||||||
// 4 M[B,A]_CLK_H/L[4]
|
|
||||||
// 5 M[B,A]_CLK_H/L[5]
|
|
||||||
// 6 M[B,A]_CLK_H/L[6]
|
|
||||||
// 7 M[B,A]_CLK_H/L[7]
|
|
||||||
// And platform has the following routing:
|
|
||||||
// CS0 M[B,A]_CLK_H/L[4]
|
|
||||||
// CS1 M[B,A]_CLK_H/L[2]
|
|
||||||
// CS2 M[B,A]_CLK_H/L[3]
|
|
||||||
// CS3 M[B,A]_CLK_H/L[5]
|
|
||||||
// Then platform can specify the following macro:
|
|
||||||
// MEMCLK_DIS_MAP(ANY_SOCKET, ANY_CHANNEL, 0x00, 0x00, 0x02, 0x04, 0x01, 0x08, 0x00, 0x00)
|
|
||||||
//
|
|
||||||
// CKE_TRI_MAP(SocketID, ChannelID, CKETriBit0CSMap, CKETriBit1CSMap)
|
|
||||||
// The CKE pins are identified based on BKDG definition of Fn2x9C_0C[CKETri] bitmap.
|
|
||||||
// AGESA will base on this value to tristate unused CKE to save power.
|
|
||||||
//
|
|
||||||
// ODT_TRI_MAP(SocketID, ChannelID, ODTTriBit0CSMap,..., ODTTriBit3CSMap)
|
|
||||||
// The ODT pins are identified based on BKDG definition of Fn2x9C_0C[ODTTri] bitmap.
|
|
||||||
// AGESA will base on this value to tristate unused ODT pins to save power.
|
|
||||||
//
|
|
||||||
// CS_TRI_MAP(SocketID, ChannelID, CSTriBit0CSMap,..., CSTriBit7CSMap)
|
|
||||||
// The Chip select pins are identified based on BKDG definition of Fn2x9C_0C[ChipSelTri] bitmap.
|
|
||||||
// AGESA will base on this value to tristate unused Chip select to save power.
|
|
||||||
//
|
|
||||||
// NUMBER_OF_DIMMS_SUPPORTED(SocketID, ChannelID, NumberOfDimmSlotsPerChannel)
|
|
||||||
// Specifies the number of DIMM slots per channel.
|
|
||||||
//
|
|
||||||
// NUMBER_OF_CHIP_SELECTS_SUPPORTED(SocketID, ChannelID, NumberOfChipSelectsPerChannel)
|
|
||||||
// Specifies the number of Chip selects per channel.
|
|
||||||
//
|
|
||||||
// NUMBER_OF_CHANNELS_SUPPORTED(SocketID, NumberOfChannelsPerSocket)
|
|
||||||
// Specifies the number of channels per socket.
|
|
||||||
//
|
|
||||||
// OVERRIDE_DDR_BUS_SPEED(SocketID, ChannelID, USER_MEMORY_TIMING_MODE, MEMORY_BUS_SPEED)
|
|
||||||
// Specifies DDR bus speed of channel ChannelID on socket SocketID.
|
|
||||||
//
|
|
||||||
// DRAM_TECHNOLOGY(SocketID, TECHNOLOGY_TYPE)
|
|
||||||
// Specifies the DRAM technology type of socket SocketID (DDR2, DDR3,...)
|
|
||||||
//
|
|
||||||
// WRITE_LEVELING_SEED(SocketID, ChannelID, DimmID, Byte0Seed, Byte1Seed, Byte2Seed, Byte3Seed, Byte4Seed, Byte5Seed,
|
|
||||||
// Byte6Seed, Byte7Seed, ByteEccSeed)
|
|
||||||
// Specifies the write leveling seed for a channel of a socket.
|
|
||||||
//
|
|
||||||
// HW_RXEN_SEED(SocketID, ChannelID, DimmID, Byte0Seed, Byte1Seed, Byte2Seed, Byte3Seed, Byte4Seed, Byte5Seed,
|
|
||||||
// Byte6Seed, Byte7Seed, ByteEccSeed)
|
|
||||||
// Speicifes the HW RXEN training seed for a channel of a socket
|
|
||||||
//
|
|
||||||
#define SEED_A 0x12
|
|
||||||
HW_RXEN_SEED(
|
|
||||||
ANY_SOCKET, CHANNEL_A, ALL_DIMMS,
|
|
||||||
SEED_A, SEED_A, SEED_A, SEED_A, SEED_A, SEED_A, SEED_A, SEED_A,
|
|
||||||
SEED_A),
|
|
||||||
|
|
||||||
NUMBER_OF_DIMMS_SUPPORTED (ANY_SOCKET, ANY_CHANNEL, 2),
|
|
||||||
NUMBER_OF_CHANNELS_SUPPORTED (ANY_SOCKET, 1),
|
|
||||||
MOTHER_BOARD_LAYERS (LAYERS_4),
|
|
||||||
|
|
||||||
MEMCLK_DIS_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x04, 0x08, 0x00, 0x00, 0x00, 0x00),
|
|
||||||
CKE_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x04, 0x08), /* TODO: bit2map, bit3map */
|
|
||||||
ODT_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x04, 0x08),
|
|
||||||
CS_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x04, 0x08, 0x00, 0x00, 0x00, 0x00),
|
|
||||||
|
|
||||||
PSO_END
|
|
||||||
};
|
|
||||||
|
|
||||||
/*
|
|
||||||
* These tables are optional and may be used to adjust memory timing settings
|
|
||||||
*/
|
|
||||||
#include "mm.h"
|
|
||||||
#include "mn.h"
|
|
||||||
|
|
|
@ -19,6 +19,7 @@
|
||||||
|
|
||||||
#include <northbridge/amd/agesa/agesawrapper.h>
|
#include <northbridge/amd/agesa/agesawrapper.h>
|
||||||
#include <vendorcode/amd/agesa/f15tn/Proc/CPU/heapManager.h>
|
#include <vendorcode/amd/agesa/f15tn/Proc/CPU/heapManager.h>
|
||||||
|
#include <PlatformMemoryConfiguration.h>
|
||||||
|
|
||||||
#define FILECODE PROC_GNB_PCIE_FAMILY_0X15_F15PCIECOMPLEXCONFIG_FILECODE
|
#define FILECODE PROC_GNB_PCIE_FAMILY_0X15_F15PCIECOMPLEXCONFIG_FILECODE
|
||||||
|
|
||||||
|
@ -199,6 +200,33 @@ static AGESA_STATUS OemInitMid(AMD_MID_PARAMS * InitMid)
|
||||||
return AGESA_SUCCESS;
|
return AGESA_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*----------------------------------------------------------------------------------------
|
||||||
|
* CUSTOMER OVERIDES MEMORY TABLE
|
||||||
|
*----------------------------------------------------------------------------------------
|
||||||
|
*/
|
||||||
|
|
||||||
|
#if IS_ENABLED(CONFIG_BOARD_ASUS_F2A85_M)
|
||||||
|
/*
|
||||||
|
* Platform Specific Overriding Table allows IBV/OEM to pass in platform information to AGESA
|
||||||
|
* (e.g. MemClk routing, the number of DIMM slots per channel,...). If PlatformSpecificTable
|
||||||
|
* is populated, AGESA will base its settings on the data from the table. Otherwise, it will
|
||||||
|
* use its default conservative settings.
|
||||||
|
*/
|
||||||
|
CONST PSO_ENTRY ROMDATA DefaultPlatformMemoryConfiguration[] = {
|
||||||
|
|
||||||
|
NUMBER_OF_DIMMS_SUPPORTED (ANY_SOCKET, ANY_CHANNEL, 2),
|
||||||
|
NUMBER_OF_CHANNELS_SUPPORTED (ANY_SOCKET, 2),
|
||||||
|
/*
|
||||||
|
TODO: is this OK for DDR3 socket FM2?
|
||||||
|
MEMCLK_DIS_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00),
|
||||||
|
CKE_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x05, 0x0A),
|
||||||
|
ODT_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x00, 0x00),
|
||||||
|
CS_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00),
|
||||||
|
*/
|
||||||
|
PSO_END
|
||||||
|
};
|
||||||
|
#endif /* CONFIG_BOARD_ASUS_F2A85_M */
|
||||||
|
|
||||||
const struct OEM_HOOK OemCustomize = {
|
const struct OEM_HOOK OemCustomize = {
|
||||||
.InitEarly = OemInitEarly,
|
.InitEarly = OemInitEarly,
|
||||||
.InitMid = OemInitMid,
|
.InitMid = OemInitMid,
|
||||||
|
|
|
@ -358,87 +358,3 @@ GPIO_CONTROL f2a85_m_gpio[] = {
|
||||||
/* Moving this include up will break AGESA. */
|
/* Moving this include up will break AGESA. */
|
||||||
#include <vendorcode/amd/agesa/f15tn/Include/PlatformInstall.h>
|
#include <vendorcode/amd/agesa/f15tn/Include/PlatformInstall.h>
|
||||||
|
|
||||||
/*----------------------------------------------------------------------------------------
|
|
||||||
* CUSTOMER OVERIDES MEMORY TABLE
|
|
||||||
*----------------------------------------------------------------------------------------
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Platform Specific Overriding Table allows IBV/OEM to pass in platform information to AGESA
|
|
||||||
* (e.g. MemClk routing, the number of DIMM slots per channel,...). If PlatformSpecificTable
|
|
||||||
* is populated, AGESA will base its settings on the data from the table. Otherwise, it will
|
|
||||||
* use its default conservative settings.
|
|
||||||
*/
|
|
||||||
CONST PSO_ENTRY ROMDATA DefaultPlatformMemoryConfiguration[] = {
|
|
||||||
//
|
|
||||||
// The following macros are supported (use comma to separate macros):
|
|
||||||
//
|
|
||||||
// MEMCLK_DIS_MAP(SocketID, ChannelID, MemClkDisBit0CSMap,..., MemClkDisBit7CSMap)
|
|
||||||
// The MemClk pins are identified based on BKDG definition of Fn2x88[MemClkDis] bitmap.
|
|
||||||
// AGESA will base on this value to disable unused MemClk to save power.
|
|
||||||
// Example:
|
|
||||||
// BKDG definition of Fn2x88[MemClkDis] bitmap for AM3 package is like below:
|
|
||||||
// Bit AM3/S1g3 pin name
|
|
||||||
// 0 M[B,A]_CLK_H/L[0]
|
|
||||||
// 1 M[B,A]_CLK_H/L[1]
|
|
||||||
// 2 M[B,A]_CLK_H/L[2]
|
|
||||||
// 3 M[B,A]_CLK_H/L[3]
|
|
||||||
// 4 M[B,A]_CLK_H/L[4]
|
|
||||||
// 5 M[B,A]_CLK_H/L[5]
|
|
||||||
// 6 M[B,A]_CLK_H/L[6]
|
|
||||||
// 7 M[B,A]_CLK_H/L[7]
|
|
||||||
// And platform has the following routing:
|
|
||||||
// CS0 M[B,A]_CLK_H/L[4]
|
|
||||||
// CS1 M[B,A]_CLK_H/L[2]
|
|
||||||
// CS2 M[B,A]_CLK_H/L[3]
|
|
||||||
// CS3 M[B,A]_CLK_H/L[5]
|
|
||||||
// Then platform can specify the following macro:
|
|
||||||
// MEMCLK_DIS_MAP(ANY_SOCKET, ANY_CHANNEL, 0x00, 0x00, 0x02, 0x04, 0x01, 0x08, 0x00, 0x00)
|
|
||||||
//
|
|
||||||
// CKE_TRI_MAP(SocketID, ChannelID, CKETriBit0CSMap, CKETriBit1CSMap)
|
|
||||||
// The CKE pins are identified based on BKDG definition of Fn2x9C_0C[CKETri] bitmap.
|
|
||||||
// AGESA will base on this value to tristate unused CKE to save power.
|
|
||||||
//
|
|
||||||
// ODT_TRI_MAP(SocketID, ChannelID, ODTTriBit0CSMap,..., ODTTriBit3CSMap)
|
|
||||||
// The ODT pins are identified based on BKDG definition of Fn2x9C_0C[ODTTri] bitmap.
|
|
||||||
// AGESA will base on this value to tristate unused ODT pins to save power.
|
|
||||||
//
|
|
||||||
// CS_TRI_MAP(SocketID, ChannelID, CSTriBit0CSMap,..., CSTriBit7CSMap)
|
|
||||||
// The Chip select pins are identified based on BKDG definition of Fn2x9C_0C[ChipSelTri] bitmap.
|
|
||||||
// AGESA will base on this value to tristate unused Chip select to save power.
|
|
||||||
//
|
|
||||||
// NUMBER_OF_DIMMS_SUPPORTED(SocketID, ChannelID, NumberOfDimmSlotsPerChannel)
|
|
||||||
// Specifies the number of DIMM slots per channel.
|
|
||||||
//
|
|
||||||
// NUMBER_OF_CHIP_SELECTS_SUPPORTED(SocketID, ChannelID, NumberOfChipSelectsPerChannel)
|
|
||||||
// Specifies the number of Chip selects per channel.
|
|
||||||
//
|
|
||||||
// NUMBER_OF_CHANNELS_SUPPORTED(SocketID, NumberOfChannelsPerSocket)
|
|
||||||
// Specifies the number of channels per socket.
|
|
||||||
//
|
|
||||||
// OVERRIDE_DDR_BUS_SPEED(SocketID, ChannelID, USER_MEMORY_TIMING_MODE, MEMORY_BUS_SPEED)
|
|
||||||
// Specifies DDR bus speed of channel ChannelID on socket SocketID.
|
|
||||||
//
|
|
||||||
// DRAM_TECHNOLOGY(SocketID, TECHNOLOGY_TYPE)
|
|
||||||
// Specifies the DRAM technology type of socket SocketID (DDR2, DDR3,...)
|
|
||||||
//
|
|
||||||
// WRITE_LEVELING_SEED(SocketID, ChannelID, DimmID, Byte0Seed, Byte1Seed, Byte2Seed, Byte3Seed, Byte4Seed, Byte5Seed,
|
|
||||||
// Byte6Seed, Byte7Seed, ByteEccSeed)
|
|
||||||
// Specifies the write leveling seed for a channel of a socket.
|
|
||||||
//
|
|
||||||
// HW_RXEN_SEED(SocketID, ChannelID, DimmID, Byte0Seed, Byte1Seed, Byte2Seed, Byte3Seed, Byte4Seed, Byte5Seed,
|
|
||||||
// Byte6Seed, Byte7Seed, ByteEccSeed)
|
|
||||||
// Speicifes the HW RXEN training seed for a channel of a socket
|
|
||||||
//
|
|
||||||
|
|
||||||
NUMBER_OF_DIMMS_SUPPORTED (ANY_SOCKET, ANY_CHANNEL, 2),
|
|
||||||
NUMBER_OF_CHANNELS_SUPPORTED (ANY_SOCKET, 2),
|
|
||||||
/*
|
|
||||||
TODO: is this OK for DDR3 socket FM2?
|
|
||||||
MEMCLK_DIS_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00),
|
|
||||||
CKE_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x05, 0x0A),
|
|
||||||
ODT_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x00, 0x00),
|
|
||||||
CS_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00),
|
|
||||||
*/
|
|
||||||
PSO_END
|
|
||||||
};
|
|
||||||
|
|
|
@ -1 +1,28 @@
|
||||||
#include "../f2a85-m/OemCustomize.c"
|
#include "../f2a85-m/OemCustomize.c"
|
||||||
|
/*----------------------------------------------------------------------------------------
|
||||||
|
* CUSTOMER OVERIDES MEMORY TABLE
|
||||||
|
*----------------------------------------------------------------------------------------
|
||||||
|
*/
|
||||||
|
|
||||||
|
#if IS_ENABLED(CONFIG_BOARD_ASUS_F2A85_M_LE)
|
||||||
|
/*
|
||||||
|
* Platform Specific Overriding Table allows IBV/OEM to pass in platform information to AGESA
|
||||||
|
* (e.g. MemClk routing, the number of DIMM slots per channel,...). If PlatformSpecificTable
|
||||||
|
* is populated, AGESA will base its settings on the data from the table. Otherwise, it will
|
||||||
|
* use its default conservative settings.
|
||||||
|
*/
|
||||||
|
CONST PSO_ENTRY ROMDATA DefaultPlatformMemoryConfiguration[] = {
|
||||||
|
|
||||||
|
NUMBER_OF_DIMMS_SUPPORTED (ANY_SOCKET, ANY_CHANNEL, 1),
|
||||||
|
NUMBER_OF_CHANNELS_SUPPORTED (ANY_SOCKET, 2),
|
||||||
|
|
||||||
|
/*
|
||||||
|
TODO: is this OK for DDR3 socket FM2?
|
||||||
|
MEMCLK_DIS_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00),
|
||||||
|
CKE_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x05, 0x0A),
|
||||||
|
ODT_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x00, 0x00),
|
||||||
|
CS_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00),
|
||||||
|
*/
|
||||||
|
PSO_END
|
||||||
|
};
|
||||||
|
#endif /* CONFIG_BOARD_ASUS_F2A85M_LE */
|
||||||
|
|
|
@ -358,88 +358,3 @@ GPIO_CONTROL f2a85_m_gpio[] = {
|
||||||
/* Moving this include up will break AGESA. */
|
/* Moving this include up will break AGESA. */
|
||||||
#include <vendorcode/amd/agesa/f15tn/Include/PlatformInstall.h>
|
#include <vendorcode/amd/agesa/f15tn/Include/PlatformInstall.h>
|
||||||
|
|
||||||
/*----------------------------------------------------------------------------------------
|
|
||||||
* CUSTOMER OVERIDES MEMORY TABLE
|
|
||||||
*----------------------------------------------------------------------------------------
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Platform Specific Overriding Table allows IBV/OEM to pass in platform information to AGESA
|
|
||||||
* (e.g. MemClk routing, the number of DIMM slots per channel,...). If PlatformSpecificTable
|
|
||||||
* is populated, AGESA will base its settings on the data from the table. Otherwise, it will
|
|
||||||
* use its default conservative settings.
|
|
||||||
*/
|
|
||||||
CONST PSO_ENTRY ROMDATA DefaultPlatformMemoryConfiguration[] = {
|
|
||||||
//
|
|
||||||
// The following macros are supported (use comma to separate macros):
|
|
||||||
//
|
|
||||||
// MEMCLK_DIS_MAP(SocketID, ChannelID, MemClkDisBit0CSMap,..., MemClkDisBit7CSMap)
|
|
||||||
// The MemClk pins are identified based on BKDG definition of Fn2x88[MemClkDis] bitmap.
|
|
||||||
// AGESA will base on this value to disable unused MemClk to save power.
|
|
||||||
// Example:
|
|
||||||
// BKDG definition of Fn2x88[MemClkDis] bitmap for AM3 package is like below:
|
|
||||||
// Bit AM3/S1g3 pin name
|
|
||||||
// 0 M[B,A]_CLK_H/L[0]
|
|
||||||
// 1 M[B,A]_CLK_H/L[1]
|
|
||||||
// 2 M[B,A]_CLK_H/L[2]
|
|
||||||
// 3 M[B,A]_CLK_H/L[3]
|
|
||||||
// 4 M[B,A]_CLK_H/L[4]
|
|
||||||
// 5 M[B,A]_CLK_H/L[5]
|
|
||||||
// 6 M[B,A]_CLK_H/L[6]
|
|
||||||
// 7 M[B,A]_CLK_H/L[7]
|
|
||||||
// And platform has the following routing:
|
|
||||||
// CS0 M[B,A]_CLK_H/L[4]
|
|
||||||
// CS1 M[B,A]_CLK_H/L[2]
|
|
||||||
// CS2 M[B,A]_CLK_H/L[3]
|
|
||||||
// CS3 M[B,A]_CLK_H/L[5]
|
|
||||||
// Then platform can specify the following macro:
|
|
||||||
// MEMCLK_DIS_MAP(ANY_SOCKET, ANY_CHANNEL, 0x00, 0x00, 0x02, 0x04, 0x01, 0x08, 0x00, 0x00)
|
|
||||||
//
|
|
||||||
// CKE_TRI_MAP(SocketID, ChannelID, CKETriBit0CSMap, CKETriBit1CSMap)
|
|
||||||
// The CKE pins are identified based on BKDG definition of Fn2x9C_0C[CKETri] bitmap.
|
|
||||||
// AGESA will base on this value to tristate unused CKE to save power.
|
|
||||||
//
|
|
||||||
// ODT_TRI_MAP(SocketID, ChannelID, ODTTriBit0CSMap,..., ODTTriBit3CSMap)
|
|
||||||
// The ODT pins are identified based on BKDG definition of Fn2x9C_0C[ODTTri] bitmap.
|
|
||||||
// AGESA will base on this value to tristate unused ODT pins to save power.
|
|
||||||
//
|
|
||||||
// CS_TRI_MAP(SocketID, ChannelID, CSTriBit0CSMap,..., CSTriBit7CSMap)
|
|
||||||
// The Chip select pins are identified based on BKDG definition of Fn2x9C_0C[ChipSelTri] bitmap.
|
|
||||||
// AGESA will base on this value to tristate unused Chip select to save power.
|
|
||||||
//
|
|
||||||
// NUMBER_OF_DIMMS_SUPPORTED(SocketID, ChannelID, NumberOfDimmSlotsPerChannel)
|
|
||||||
// Specifies the number of DIMM slots per channel.
|
|
||||||
//
|
|
||||||
// NUMBER_OF_CHIP_SELECTS_SUPPORTED(SocketID, ChannelID, NumberOfChipSelectsPerChannel)
|
|
||||||
// Specifies the number of Chip selects per channel.
|
|
||||||
//
|
|
||||||
// NUMBER_OF_CHANNELS_SUPPORTED(SocketID, NumberOfChannelsPerSocket)
|
|
||||||
// Specifies the number of channels per socket.
|
|
||||||
//
|
|
||||||
// OVERRIDE_DDR_BUS_SPEED(SocketID, ChannelID, USER_MEMORY_TIMING_MODE, MEMORY_BUS_SPEED)
|
|
||||||
// Specifies DDR bus speed of channel ChannelID on socket SocketID.
|
|
||||||
//
|
|
||||||
// DRAM_TECHNOLOGY(SocketID, TECHNOLOGY_TYPE)
|
|
||||||
// Specifies the DRAM technology type of socket SocketID (DDR2, DDR3,...)
|
|
||||||
//
|
|
||||||
// WRITE_LEVELING_SEED(SocketID, ChannelID, DimmID, Byte0Seed, Byte1Seed, Byte2Seed, Byte3Seed, Byte4Seed, Byte5Seed,
|
|
||||||
// Byte6Seed, Byte7Seed, ByteEccSeed)
|
|
||||||
// Specifies the write leveling seed for a channel of a socket.
|
|
||||||
//
|
|
||||||
// HW_RXEN_SEED(SocketID, ChannelID, DimmID, Byte0Seed, Byte1Seed, Byte2Seed, Byte3Seed, Byte4Seed, Byte5Seed,
|
|
||||||
// Byte6Seed, Byte7Seed, ByteEccSeed)
|
|
||||||
// Speicifes the HW RXEN training seed for a channel of a socket
|
|
||||||
//
|
|
||||||
|
|
||||||
NUMBER_OF_DIMMS_SUPPORTED (ANY_SOCKET, ANY_CHANNEL, 1),
|
|
||||||
NUMBER_OF_CHANNELS_SUPPORTED (ANY_SOCKET, 2),
|
|
||||||
|
|
||||||
/*
|
|
||||||
TODO: is this OK for DDR3 socket FM2?
|
|
||||||
MEMCLK_DIS_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00),
|
|
||||||
CKE_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x05, 0x0A),
|
|
||||||
ODT_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x00, 0x00),
|
|
||||||
CS_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00),
|
|
||||||
*/
|
|
||||||
PSO_END
|
|
||||||
};
|
|
||||||
|
|
|
@ -17,6 +17,7 @@
|
||||||
#include "amdlib.h"
|
#include "amdlib.h"
|
||||||
#include "Ids.h"
|
#include "Ids.h"
|
||||||
#include "heapManager.h"
|
#include "heapManager.h"
|
||||||
|
#include <PlatformMemoryConfiguration.h>
|
||||||
#include "Filecode.h"
|
#include "Filecode.h"
|
||||||
|
|
||||||
#include <northbridge/amd/agesa/agesawrapper.h>
|
#include <northbridge/amd/agesa/agesawrapper.h>
|
||||||
|
@ -145,6 +146,43 @@ static AGESA_STATUS OemInitMid(AMD_MID_PARAMS * InitMid)
|
||||||
return AGESA_SUCCESS;
|
return AGESA_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*----------------------------------------------------------------------------------------
|
||||||
|
* CUSTOMER OVERIDES MEMORY TABLE
|
||||||
|
*----------------------------------------------------------------------------------------
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Platform Specific Overriding Table allows IBV/OEM to pass in platform information to AGESA
|
||||||
|
* (e.g. MemClk routing, the number of DIMM slots per channel,...). If PlatformSpecificTable
|
||||||
|
* is populated, AGESA will base its settings on the data from the table. Otherwise, it will
|
||||||
|
* use its default conservative settings.
|
||||||
|
*/
|
||||||
|
CONST PSO_ENTRY ROMDATA DefaultPlatformMemoryConfiguration[] = {
|
||||||
|
|
||||||
|
#define SEED_WL 0x0E
|
||||||
|
WRITE_LEVELING_SEED(
|
||||||
|
ANY_SOCKET, CHANNEL_A, ALL_DIMMS,
|
||||||
|
SEED_WL,SEED_WL,SEED_WL,SEED_WL,SEED_WL,SEED_WL,SEED_WL,SEED_WL,
|
||||||
|
SEED_WL),
|
||||||
|
|
||||||
|
#define SEED_A 0x12
|
||||||
|
HW_RXEN_SEED(
|
||||||
|
ANY_SOCKET, CHANNEL_A, ALL_DIMMS,
|
||||||
|
SEED_A, SEED_A, SEED_A, SEED_A, SEED_A, SEED_A, SEED_A, SEED_A,
|
||||||
|
SEED_A),
|
||||||
|
|
||||||
|
NUMBER_OF_DIMMS_SUPPORTED (ANY_SOCKET, ANY_CHANNEL, 1),
|
||||||
|
NUMBER_OF_CHANNELS_SUPPORTED (ANY_SOCKET, 1),
|
||||||
|
MOTHER_BOARD_LAYERS (LAYERS_6),
|
||||||
|
|
||||||
|
MEMCLK_DIS_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00),
|
||||||
|
CKE_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x04, 0x08), /* TODO: bit2map, bit3map */
|
||||||
|
ODT_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x04, 0x08),
|
||||||
|
CS_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x04, 0x08, 0x00, 0x00, 0x00, 0x00),
|
||||||
|
|
||||||
|
PSO_END
|
||||||
|
};
|
||||||
|
|
||||||
const struct OEM_HOOK OemCustomize = {
|
const struct OEM_HOOK OemCustomize = {
|
||||||
.InitEarly = OemInitEarly,
|
.InitEarly = OemInitEarly,
|
||||||
.InitMid = OemInitMid,
|
.InitMid = OemInitMid,
|
||||||
|
|
|
@ -357,105 +357,3 @@ GPIO_CONTROL gizmo2_gpio[] = {
|
||||||
|
|
||||||
#include "PlatformInstall.h"
|
#include "PlatformInstall.h"
|
||||||
|
|
||||||
/*----------------------------------------------------------------------------------------
|
|
||||||
* CUSTOMER OVERIDES MEMORY TABLE
|
|
||||||
*----------------------------------------------------------------------------------------
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Platform Specific Overriding Table allows IBV/OEM to pass in platform information to AGESA
|
|
||||||
* (e.g. MemClk routing, the number of DIMM slots per channel,...). If PlatformSpecificTable
|
|
||||||
* is populated, AGESA will base its settings on the data from the table. Otherwise, it will
|
|
||||||
* use its default conservative settings.
|
|
||||||
*/
|
|
||||||
CONST PSO_ENTRY ROMDATA DefaultPlatformMemoryConfiguration[] = {
|
|
||||||
//
|
|
||||||
// The following macros are supported (use comma to separate macros):
|
|
||||||
//
|
|
||||||
// MEMCLK_DIS_MAP(SocketID, ChannelID, MemClkDisBit0CSMap,..., MemClkDisBit7CSMap)
|
|
||||||
// The MemClk pins are identified based on BKDG definition of Fn2x88[MemClkDis] bitmap.
|
|
||||||
// AGESA will base on this value to disable unused MemClk to save power.
|
|
||||||
// Example:
|
|
||||||
// BKDG definition of Fn2x88[MemClkDis] bitmap for AM3 package is like below:
|
|
||||||
// Bit AM3/S1g3 pin name
|
|
||||||
// 0 M[B,A]_CLK_H/L[0]
|
|
||||||
// 1 M[B,A]_CLK_H/L[1]
|
|
||||||
// 2 M[B,A]_CLK_H/L[2]
|
|
||||||
// 3 M[B,A]_CLK_H/L[3]
|
|
||||||
// 4 M[B,A]_CLK_H/L[4]
|
|
||||||
// 5 M[B,A]_CLK_H/L[5]
|
|
||||||
// 6 M[B,A]_CLK_H/L[6]
|
|
||||||
// 7 M[B,A]_CLK_H/L[7]
|
|
||||||
// And platform has the following routing:
|
|
||||||
// CS0 M[B,A]_CLK_H/L[4]
|
|
||||||
// CS1 M[B,A]_CLK_H/L[2]
|
|
||||||
// CS2 M[B,A]_CLK_H/L[3]
|
|
||||||
// CS3 M[B,A]_CLK_H/L[5]
|
|
||||||
// Then platform can specify the following macro:
|
|
||||||
// MEMCLK_DIS_MAP(ANY_SOCKET, ANY_CHANNEL, 0x00, 0x00, 0x02, 0x04, 0x01, 0x08, 0x00, 0x00)
|
|
||||||
//
|
|
||||||
// CKE_TRI_MAP(SocketID, ChannelID, CKETriBit0CSMap, CKETriBit1CSMap)
|
|
||||||
// The CKE pins are identified based on BKDG definition of Fn2x9C_0C[CKETri] bitmap.
|
|
||||||
// AGESA will base on this value to tristate unused CKE to save power.
|
|
||||||
//
|
|
||||||
// ODT_TRI_MAP(SocketID, ChannelID, ODTTriBit0CSMap,..., ODTTriBit3CSMap)
|
|
||||||
// The ODT pins are identified based on BKDG definition of Fn2x9C_0C[ODTTri] bitmap.
|
|
||||||
// AGESA will base on this value to tristate unused ODT pins to save power.
|
|
||||||
//
|
|
||||||
// CS_TRI_MAP(SocketID, ChannelID, CSTriBit0CSMap,..., CSTriBit7CSMap)
|
|
||||||
// The Chip select pins are identified based on BKDG definition of Fn2x9C_0C[ChipSelTri] bitmap.
|
|
||||||
// AGESA will base on this value to tristate unused Chip select to save power.
|
|
||||||
//
|
|
||||||
// NUMBER_OF_DIMMS_SUPPORTED(SocketID, ChannelID, NumberOfDimmSlotsPerChannel)
|
|
||||||
// Specifies the number of DIMM slots per channel.
|
|
||||||
//
|
|
||||||
// NUMBER_OF_CHIP_SELECTS_SUPPORTED(SocketID, ChannelID, NumberOfChipSelectsPerChannel)
|
|
||||||
// Specifies the number of Chip selects per channel.
|
|
||||||
//
|
|
||||||
// NUMBER_OF_CHANNELS_SUPPORTED(SocketID, NumberOfChannelsPerSocket)
|
|
||||||
// Specifies the number of channels per socket.
|
|
||||||
//
|
|
||||||
// OVERRIDE_DDR_BUS_SPEED(SocketID, ChannelID, USER_MEMORY_TIMING_MODE, MEMORY_BUS_SPEED)
|
|
||||||
// Specifies DDR bus speed of channel ChannelID on socket SocketID.
|
|
||||||
//
|
|
||||||
// DRAM_TECHNOLOGY(SocketID, TECHNOLOGY_TYPE)
|
|
||||||
// Specifies the DRAM technology type of socket SocketID (DDR2, DDR3,...)
|
|
||||||
//
|
|
||||||
// WRITE_LEVELING_SEED(SocketID, ChannelID, DimmID, Byte0Seed, Byte1Seed, Byte2Seed, Byte3Seed, Byte4Seed, Byte5Seed,
|
|
||||||
// Byte6Seed, Byte7Seed, ByteEccSeed)
|
|
||||||
// Specifies the write leveling seed for a channel of a socket.
|
|
||||||
//
|
|
||||||
// HW_RXEN_SEED(SocketID, ChannelID, DimmID, Byte0Seed, Byte1Seed, Byte2Seed, Byte3Seed, Byte4Seed, Byte5Seed,
|
|
||||||
// Byte6Seed, Byte7Seed, ByteEccSeed)
|
|
||||||
// Speicifes the HW RXEN training seed for a channel of a socket
|
|
||||||
//
|
|
||||||
|
|
||||||
#define SEED_WL 0x0E
|
|
||||||
WRITE_LEVELING_SEED(
|
|
||||||
ANY_SOCKET, CHANNEL_A, ALL_DIMMS,
|
|
||||||
SEED_WL,SEED_WL,SEED_WL,SEED_WL,SEED_WL,SEED_WL,SEED_WL,SEED_WL,
|
|
||||||
SEED_WL),
|
|
||||||
|
|
||||||
#define SEED_A 0x12
|
|
||||||
HW_RXEN_SEED(
|
|
||||||
ANY_SOCKET, CHANNEL_A, ALL_DIMMS,
|
|
||||||
SEED_A, SEED_A, SEED_A, SEED_A, SEED_A, SEED_A, SEED_A, SEED_A,
|
|
||||||
SEED_A),
|
|
||||||
|
|
||||||
NUMBER_OF_DIMMS_SUPPORTED (ANY_SOCKET, ANY_CHANNEL, 1),
|
|
||||||
NUMBER_OF_CHANNELS_SUPPORTED (ANY_SOCKET, 1),
|
|
||||||
MOTHER_BOARD_LAYERS (LAYERS_6),
|
|
||||||
|
|
||||||
MEMCLK_DIS_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00),
|
|
||||||
CKE_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x04, 0x08), /* TODO: bit2map, bit3map */
|
|
||||||
ODT_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x04, 0x08),
|
|
||||||
CS_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x04, 0x08, 0x00, 0x00, 0x00, 0x00),
|
|
||||||
|
|
||||||
PSO_END
|
|
||||||
};
|
|
||||||
|
|
||||||
/*
|
|
||||||
* These tables are optional and may be used to adjust memory timing settings
|
|
||||||
*/
|
|
||||||
#include "mm.h"
|
|
||||||
#include "mn.h"
|
|
||||||
|
|
|
@ -17,6 +17,7 @@
|
||||||
#include "amdlib.h"
|
#include "amdlib.h"
|
||||||
#include "Ids.h"
|
#include "Ids.h"
|
||||||
#include "heapManager.h"
|
#include "heapManager.h"
|
||||||
|
#include <PlatformMemoryConfiguration.h>
|
||||||
#include "Filecode.h"
|
#include "Filecode.h"
|
||||||
|
|
||||||
#include <northbridge/amd/agesa/agesawrapper.h>
|
#include <northbridge/amd/agesa/agesawrapper.h>
|
||||||
|
@ -151,6 +152,36 @@ static AGESA_STATUS OemInitMid(AMD_MID_PARAMS * InitMid)
|
||||||
return AGESA_SUCCESS;
|
return AGESA_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*----------------------------------------------------------------------------------------
|
||||||
|
* CUSTOMER OVERIDES MEMORY TABLE
|
||||||
|
*----------------------------------------------------------------------------------------
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Platform Specific Overriding Table allows IBV/OEM to pass in platform information to AGESA
|
||||||
|
* (e.g. MemClk routing, the number of DIMM slots per channel,...). If PlatformSpecificTable
|
||||||
|
* is populated, AGESA will base its settings on the data from the table. Otherwise, it will
|
||||||
|
* use its default conservative settings.
|
||||||
|
*/
|
||||||
|
CONST PSO_ENTRY ROMDATA DefaultPlatformMemoryConfiguration[] = {
|
||||||
|
#define SEED_A 0x12
|
||||||
|
HW_RXEN_SEED(
|
||||||
|
ANY_SOCKET, CHANNEL_A, ALL_DIMMS,
|
||||||
|
SEED_A, SEED_A, SEED_A, SEED_A, SEED_A, SEED_A, SEED_A, SEED_A,
|
||||||
|
SEED_A),
|
||||||
|
|
||||||
|
NUMBER_OF_DIMMS_SUPPORTED (ANY_SOCKET, ANY_CHANNEL, 2),
|
||||||
|
NUMBER_OF_CHANNELS_SUPPORTED (ANY_SOCKET, 1),
|
||||||
|
MOTHER_BOARD_LAYERS (LAYERS_4),
|
||||||
|
|
||||||
|
MEMCLK_DIS_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x04, 0x08, 0x00, 0x00, 0x00, 0x00),
|
||||||
|
CKE_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x04, 0x08), /* TODO: bit2map, bit3map */
|
||||||
|
ODT_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x04, 0x08),
|
||||||
|
CS_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x04, 0x08, 0x00, 0x00, 0x00, 0x00),
|
||||||
|
|
||||||
|
PSO_END
|
||||||
|
};
|
||||||
|
|
||||||
const struct OEM_HOOK OemCustomize = {
|
const struct OEM_HOOK OemCustomize = {
|
||||||
.InitEarly = OemInitEarly,
|
.InitEarly = OemInitEarly,
|
||||||
.InitMid = OemInitMid,
|
.InitMid = OemInitMid,
|
||||||
|
|
|
@ -355,98 +355,3 @@ GPIO_CONTROL imba180_gpio[] = {
|
||||||
|
|
||||||
#include "PlatformInstall.h"
|
#include "PlatformInstall.h"
|
||||||
|
|
||||||
/*----------------------------------------------------------------------------------------
|
|
||||||
* CUSTOMER OVERIDES MEMORY TABLE
|
|
||||||
*----------------------------------------------------------------------------------------
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Platform Specific Overriding Table allows IBV/OEM to pass in platform information to AGESA
|
|
||||||
* (e.g. MemClk routing, the number of DIMM slots per channel,...). If PlatformSpecificTable
|
|
||||||
* is populated, AGESA will base its settings on the data from the table. Otherwise, it will
|
|
||||||
* use its default conservative settings.
|
|
||||||
*/
|
|
||||||
CONST PSO_ENTRY ROMDATA DefaultPlatformMemoryConfiguration[] = {
|
|
||||||
//
|
|
||||||
// The following macros are supported (use comma to separate macros):
|
|
||||||
//
|
|
||||||
// MEMCLK_DIS_MAP(SocketID, ChannelID, MemClkDisBit0CSMap,..., MemClkDisBit7CSMap)
|
|
||||||
// The MemClk pins are identified based on BKDG definition of Fn2x88[MemClkDis] bitmap.
|
|
||||||
// AGESA will base on this value to disable unused MemClk to save power.
|
|
||||||
// Example:
|
|
||||||
// BKDG definition of Fn2x88[MemClkDis] bitmap for AM3 package is like below:
|
|
||||||
// Bit AM3/S1g3 pin name
|
|
||||||
// 0 M[B,A]_CLK_H/L[0]
|
|
||||||
// 1 M[B,A]_CLK_H/L[1]
|
|
||||||
// 2 M[B,A]_CLK_H/L[2]
|
|
||||||
// 3 M[B,A]_CLK_H/L[3]
|
|
||||||
// 4 M[B,A]_CLK_H/L[4]
|
|
||||||
// 5 M[B,A]_CLK_H/L[5]
|
|
||||||
// 6 M[B,A]_CLK_H/L[6]
|
|
||||||
// 7 M[B,A]_CLK_H/L[7]
|
|
||||||
// And platform has the following routing:
|
|
||||||
// CS0 M[B,A]_CLK_H/L[4]
|
|
||||||
// CS1 M[B,A]_CLK_H/L[2]
|
|
||||||
// CS2 M[B,A]_CLK_H/L[3]
|
|
||||||
// CS3 M[B,A]_CLK_H/L[5]
|
|
||||||
// Then platform can specify the following macro:
|
|
||||||
// MEMCLK_DIS_MAP(ANY_SOCKET, ANY_CHANNEL, 0x00, 0x00, 0x02, 0x04, 0x01, 0x08, 0x00, 0x00)
|
|
||||||
//
|
|
||||||
// CKE_TRI_MAP(SocketID, ChannelID, CKETriBit0CSMap, CKETriBit1CSMap)
|
|
||||||
// The CKE pins are identified based on BKDG definition of Fn2x9C_0C[CKETri] bitmap.
|
|
||||||
// AGESA will base on this value to tristate unused CKE to save power.
|
|
||||||
//
|
|
||||||
// ODT_TRI_MAP(SocketID, ChannelID, ODTTriBit0CSMap,..., ODTTriBit3CSMap)
|
|
||||||
// The ODT pins are identified based on BKDG definition of Fn2x9C_0C[ODTTri] bitmap.
|
|
||||||
// AGESA will base on this value to tristate unused ODT pins to save power.
|
|
||||||
//
|
|
||||||
// CS_TRI_MAP(SocketID, ChannelID, CSTriBit0CSMap,..., CSTriBit7CSMap)
|
|
||||||
// The Chip select pins are identified based on BKDG definition of Fn2x9C_0C[ChipSelTri] bitmap.
|
|
||||||
// AGESA will base on this value to tristate unused Chip select to save power.
|
|
||||||
//
|
|
||||||
// NUMBER_OF_DIMMS_SUPPORTED(SocketID, ChannelID, NumberOfDimmSlotsPerChannel)
|
|
||||||
// Specifies the number of DIMM slots per channel.
|
|
||||||
//
|
|
||||||
// NUMBER_OF_CHIP_SELECTS_SUPPORTED(SocketID, ChannelID, NumberOfChipSelectsPerChannel)
|
|
||||||
// Specifies the number of Chip selects per channel.
|
|
||||||
//
|
|
||||||
// NUMBER_OF_CHANNELS_SUPPORTED(SocketID, NumberOfChannelsPerSocket)
|
|
||||||
// Specifies the number of channels per socket.
|
|
||||||
//
|
|
||||||
// OVERRIDE_DDR_BUS_SPEED(SocketID, ChannelID, USER_MEMORY_TIMING_MODE, MEMORY_BUS_SPEED)
|
|
||||||
// Specifies DDR bus speed of channel ChannelID on socket SocketID.
|
|
||||||
//
|
|
||||||
// DRAM_TECHNOLOGY(SocketID, TECHNOLOGY_TYPE)
|
|
||||||
// Specifies the DRAM technology type of socket SocketID (DDR2, DDR3,...)
|
|
||||||
//
|
|
||||||
// WRITE_LEVELING_SEED(SocketID, ChannelID, DimmID, Byte0Seed, Byte1Seed, Byte2Seed, Byte3Seed, Byte4Seed, Byte5Seed,
|
|
||||||
// Byte6Seed, Byte7Seed, ByteEccSeed)
|
|
||||||
// Specifies the write leveling seed for a channel of a socket.
|
|
||||||
//
|
|
||||||
// HW_RXEN_SEED(SocketID, ChannelID, DimmID, Byte0Seed, Byte1Seed, Byte2Seed, Byte3Seed, Byte4Seed, Byte5Seed,
|
|
||||||
// Byte6Seed, Byte7Seed, ByteEccSeed)
|
|
||||||
// Speicifes the HW RXEN training seed for a channel of a socket
|
|
||||||
//
|
|
||||||
#define SEED_A 0x12
|
|
||||||
HW_RXEN_SEED(
|
|
||||||
ANY_SOCKET, CHANNEL_A, ALL_DIMMS,
|
|
||||||
SEED_A, SEED_A, SEED_A, SEED_A, SEED_A, SEED_A, SEED_A, SEED_A,
|
|
||||||
SEED_A),
|
|
||||||
|
|
||||||
NUMBER_OF_DIMMS_SUPPORTED (ANY_SOCKET, ANY_CHANNEL, 2),
|
|
||||||
NUMBER_OF_CHANNELS_SUPPORTED (ANY_SOCKET, 1),
|
|
||||||
MOTHER_BOARD_LAYERS (LAYERS_4),
|
|
||||||
|
|
||||||
MEMCLK_DIS_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x04, 0x08, 0x00, 0x00, 0x00, 0x00),
|
|
||||||
CKE_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x04, 0x08), /* TODO: bit2map, bit3map */
|
|
||||||
ODT_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x04, 0x08),
|
|
||||||
CS_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x04, 0x08, 0x00, 0x00, 0x00, 0x00),
|
|
||||||
|
|
||||||
PSO_END
|
|
||||||
};
|
|
||||||
|
|
||||||
/*
|
|
||||||
* These tables are optional and may be used to adjust memory timing settings
|
|
||||||
*/
|
|
||||||
#include "mm.h"
|
|
||||||
#include "mn.h"
|
|
||||||
|
|
|
@ -18,6 +18,7 @@
|
||||||
#include "amdlib.h"
|
#include "amdlib.h"
|
||||||
#include "Ids.h"
|
#include "Ids.h"
|
||||||
#include "heapManager.h"
|
#include "heapManager.h"
|
||||||
|
#include <PlatformMemoryConfiguration.h>
|
||||||
#include "PlatformGnbPcieComplex.h"
|
#include "PlatformGnbPcieComplex.h"
|
||||||
#include "Filecode.h"
|
#include "Filecode.h"
|
||||||
|
|
||||||
|
@ -139,6 +140,34 @@ PCIe_COMPLEX_DESCRIPTOR Brazos = {
|
||||||
return AGESA_SUCCESS;
|
return AGESA_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*----------------------------------------------------------------------------------------
|
||||||
|
* CUSTOMER OVERIDES MEMORY TABLE
|
||||||
|
*----------------------------------------------------------------------------------------
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Platform Specific Overriding Table allows IBV/OEM to pass in platform information to AGESA
|
||||||
|
* (e.g. MemClk routing, the number of DIMM slots per channel,...). If PlatformSpecificTable
|
||||||
|
* is populated, AGESA will base its settings on the data from the table. Otherwise, it will
|
||||||
|
* use its default conservative settings.
|
||||||
|
*/
|
||||||
|
CONST PSO_ENTRY ROMDATA DefaultPlatformMemoryConfiguration[] = {
|
||||||
|
|
||||||
|
NUMBER_OF_DIMMS_SUPPORTED (ANY_SOCKET, ANY_CHANNEL, TWO_DIMM),
|
||||||
|
NUMBER_OF_CHANNELS_SUPPORTED (ANY_SOCKET, ONE_DIMM),
|
||||||
|
|
||||||
|
// Gizmos soldered down memory uses memory CLK0 and CLK1 on CS0
|
||||||
|
MEMCLK_DIS_MAP(ANY_SOCKET, ANY_CHANNEL, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00),
|
||||||
|
|
||||||
|
// Gizmos soldered down memory requires different seeds
|
||||||
|
#define WLSEED 0x08
|
||||||
|
#define RXSEED 0x40
|
||||||
|
WRITE_LEVELING_SEED(ANY_SOCKET, ANY_CHANNEL, WLSEED, WLSEED, WLSEED, WLSEED, WLSEED, WLSEED, WLSEED, WLSEED, WLSEED),
|
||||||
|
HW_RXEN_SEED( ANY_SOCKET, ANY_CHANNEL, RXSEED, RXSEED, RXSEED, RXSEED, RXSEED, RXSEED, RXSEED, RXSEED, RXSEED),
|
||||||
|
|
||||||
|
PSO_END
|
||||||
|
};
|
||||||
|
|
||||||
const struct OEM_HOOK OemCustomize = {
|
const struct OEM_HOOK OemCustomize = {
|
||||||
.InitEarly = OemInitEarly,
|
.InitEarly = OemInitEarly,
|
||||||
};
|
};
|
||||||
|
|
|
@ -312,92 +312,3 @@ CONST AP_MTRR_SETTINGS ROMDATA OntarioApMtrrSettingsList[] =
|
||||||
// Instantiate all solution relevant data.
|
// Instantiate all solution relevant data.
|
||||||
#include "PlatformInstall.h"
|
#include "PlatformInstall.h"
|
||||||
|
|
||||||
/*----------------------------------------------------------------------------------------
|
|
||||||
* CUSTOMER OVERIDES MEMORY TABLE
|
|
||||||
*----------------------------------------------------------------------------------------
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Platform Specific Overriding Table allows IBV/OEM to pass in platform information to AGESA
|
|
||||||
* (e.g. MemClk routing, the number of DIMM slots per channel,...). If PlatformSpecificTable
|
|
||||||
* is populated, AGESA will base its settings on the data from the table. Otherwise, it will
|
|
||||||
* use its default conservative settings.
|
|
||||||
*/
|
|
||||||
CONST PSO_ENTRY ROMDATA DefaultPlatformMemoryConfiguration[] = {
|
|
||||||
//
|
|
||||||
// The following macros are supported (use comma to separate macros):
|
|
||||||
//
|
|
||||||
// MEMCLK_DIS_MAP(SocketID, ChannelID, MemClkDisBit0CSMap,..., MemClkDisBit7CSMap)
|
|
||||||
// The MemClk pins are identified based on BKDG definition of Fn2x88[MemClkDis] bitmap.
|
|
||||||
// AGESA will base on this value to disable unused MemClk to save power.
|
|
||||||
// Example:
|
|
||||||
// BKDG definition of Fn2x88[MemClkDis] bitmap for AM3 package is like below:
|
|
||||||
// Bit AM3/S1g3 pin name
|
|
||||||
// 0 M[B,A]_CLK_H/L[0]
|
|
||||||
// 1 M[B,A]_CLK_H/L[1]
|
|
||||||
// 2 M[B,A]_CLK_H/L[2]
|
|
||||||
// 3 M[B,A]_CLK_H/L[3]
|
|
||||||
// 4 M[B,A]_CLK_H/L[4]
|
|
||||||
// 5 M[B,A]_CLK_H/L[5]
|
|
||||||
// 6 M[B,A]_CLK_H/L[6]
|
|
||||||
// 7 M[B,A]_CLK_H/L[7]
|
|
||||||
// And platform has the following routing:
|
|
||||||
// CS0 M[B,A]_CLK_H/L[4]
|
|
||||||
// CS1 M[B,A]_CLK_H/L[2]
|
|
||||||
// CS2 M[B,A]_CLK_H/L[3]
|
|
||||||
// CS3 M[B,A]_CLK_H/L[5]
|
|
||||||
// Then platform can specify the following macro:
|
|
||||||
// MEMCLK_DIS_MAP(ANY_SOCKET, ANY_CHANNEL, 0x00, 0x00, 0x02, 0x04, 0x01, 0x08, 0x00, 0x00)
|
|
||||||
//
|
|
||||||
// CKE_TRI_MAP(SocketID, ChannelID, CKETriBit0CSMap, CKETriBit1CSMap)
|
|
||||||
// The CKE pins are identified based on BKDG definition of Fn2x9C_0C[CKETri] bitmap.
|
|
||||||
// AGESA will base on this value to tristate unused CKE to save power.
|
|
||||||
//
|
|
||||||
// ODT_TRI_MAP(SocketID, ChannelID, ODTTriBit0CSMap,..., ODTTriBit3CSMap)
|
|
||||||
// The ODT pins are identified based on BKDG definition of Fn2x9C_0C[ODTTri] bitmap.
|
|
||||||
// AGESA will base on this value to tristate unused ODT pins to save power.
|
|
||||||
//
|
|
||||||
// CS_TRI_MAP(SocketID, ChannelID, CSTriBit0CSMap,..., CSTriBit7CSMap)
|
|
||||||
// The Chip select pins are identified based on BKDG definition of Fn2x9C_0C[ChipSelTri] bitmap.
|
|
||||||
// AGESA will base on this value to tristate unused Chip select to save power.
|
|
||||||
//
|
|
||||||
// NUMBER_OF_DIMMS_SUPPORTED(SocketID, ChannelID, NumberOfDimmSlotsPerChannel)
|
|
||||||
// Specifies the number of DIMM slots per channel.
|
|
||||||
//
|
|
||||||
// NUMBER_OF_CHIP_SELECTS_SUPPORTED(SocketID, ChannelID, NumberOfChipSelectsPerChannel)
|
|
||||||
// Specifies the number of Chip selects per channel.
|
|
||||||
//
|
|
||||||
// NUMBER_OF_CHANNELS_SUPPORTED(SocketID, NumberOfChannelsPerSocket)
|
|
||||||
// Specifies the number of channels per socket.
|
|
||||||
//
|
|
||||||
// OVERRIDE_DDR_BUS_SPEED(SocketID, ChannelID, USER_MEMORY_TIMING_MODE, MEMORY_BUS_SPEED)
|
|
||||||
// Specifies DDR bus speed of channel ChannelID on socket SocketID.
|
|
||||||
//
|
|
||||||
// DRAM_TECHNOLOGY(SocketID, TECHNOLOGY_TYPE)
|
|
||||||
// Specifies the DRAM technology type of socket SocketID (DDR2, DDR3,...)
|
|
||||||
//
|
|
||||||
// WRITE_LEVELING_SEED(SocketID, ChannelID, Byte0Seed, Byte1Seed, Byte2Seed, Byte3Seed, Byte4Seed, Byte5Seed,
|
|
||||||
// Byte6Seed, Byte7Seed, ByteEccSeed)
|
|
||||||
// Specifies the write leveling seed for a channel of a socket.
|
|
||||||
//
|
|
||||||
|
|
||||||
NUMBER_OF_DIMMS_SUPPORTED (ANY_SOCKET, ANY_CHANNEL, TWO_DIMM),
|
|
||||||
NUMBER_OF_CHANNELS_SUPPORTED (ANY_SOCKET, ONE_DIMM),
|
|
||||||
|
|
||||||
// Gizmos soldered down memory uses memory CLK0 and CLK1 on CS0
|
|
||||||
MEMCLK_DIS_MAP(ANY_SOCKET, ANY_CHANNEL, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00),
|
|
||||||
|
|
||||||
// Gizmos soldered down memory requires different seeds
|
|
||||||
#define WLSEED 0x08
|
|
||||||
#define RXSEED 0x40
|
|
||||||
WRITE_LEVELING_SEED(ANY_SOCKET, ANY_CHANNEL, WLSEED, WLSEED, WLSEED, WLSEED, WLSEED, WLSEED, WLSEED, WLSEED, WLSEED),
|
|
||||||
HW_RXEN_SEED( ANY_SOCKET, ANY_CHANNEL, RXSEED, RXSEED, RXSEED, RXSEED, RXSEED, RXSEED, RXSEED, RXSEED, RXSEED),
|
|
||||||
|
|
||||||
PSO_END
|
|
||||||
};
|
|
||||||
|
|
||||||
/*
|
|
||||||
* These tables are optional and may be used to adjust memory timing settings
|
|
||||||
*/
|
|
||||||
#include "mm.h"
|
|
||||||
#include "mn.h"
|
|
||||||
|
|
|
@ -17,6 +17,7 @@
|
||||||
#include "amdlib.h"
|
#include "amdlib.h"
|
||||||
#include "Ids.h"
|
#include "Ids.h"
|
||||||
#include "heapManager.h"
|
#include "heapManager.h"
|
||||||
|
#include <PlatformMemoryConfiguration.h>
|
||||||
#include "Filecode.h"
|
#include "Filecode.h"
|
||||||
|
|
||||||
#include <northbridge/amd/agesa/agesawrapper.h>
|
#include <northbridge/amd/agesa/agesawrapper.h>
|
||||||
|
@ -145,6 +146,43 @@ static AGESA_STATUS OemInitMid(AMD_MID_PARAMS * InitMid)
|
||||||
return AGESA_SUCCESS;
|
return AGESA_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*----------------------------------------------------------------------------------------
|
||||||
|
* CUSTOMER OVERIDES MEMORY TABLE
|
||||||
|
*----------------------------------------------------------------------------------------
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Platform Specific Overriding Table allows IBV/OEM to pass in platform information to AGESA
|
||||||
|
* (e.g. MemClk routing, the number of DIMM slots per channel,...). If PlatformSpecificTable
|
||||||
|
* is populated, AGESA will base its settings on the data from the table. Otherwise, it will
|
||||||
|
* use its default conservative settings.
|
||||||
|
*/
|
||||||
|
CONST PSO_ENTRY ROMDATA DefaultPlatformMemoryConfiguration[] = {
|
||||||
|
|
||||||
|
#define SEED_WL 0x0E
|
||||||
|
WRITE_LEVELING_SEED(
|
||||||
|
ANY_SOCKET, CHANNEL_A, ALL_DIMMS,
|
||||||
|
SEED_WL,SEED_WL,SEED_WL,SEED_WL,SEED_WL,SEED_WL,SEED_WL,SEED_WL,
|
||||||
|
SEED_WL),
|
||||||
|
|
||||||
|
#define SEED_A 0x12
|
||||||
|
HW_RXEN_SEED(
|
||||||
|
ANY_SOCKET, CHANNEL_A, ALL_DIMMS,
|
||||||
|
SEED_A, SEED_A, SEED_A, SEED_A, SEED_A, SEED_A, SEED_A, SEED_A,
|
||||||
|
SEED_A),
|
||||||
|
|
||||||
|
NUMBER_OF_DIMMS_SUPPORTED (ANY_SOCKET, ANY_CHANNEL, 1),
|
||||||
|
NUMBER_OF_CHANNELS_SUPPORTED (ANY_SOCKET, 1),
|
||||||
|
MOTHER_BOARD_LAYERS (LAYERS_6),
|
||||||
|
|
||||||
|
MEMCLK_DIS_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00),
|
||||||
|
CKE_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x04, 0x08), /* TODO: bit2map, bit3map */
|
||||||
|
ODT_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x04, 0x08),
|
||||||
|
CS_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x04, 0x08, 0x00, 0x00, 0x00, 0x00),
|
||||||
|
|
||||||
|
PSO_END
|
||||||
|
};
|
||||||
|
|
||||||
const struct OEM_HOOK OemCustomize = {
|
const struct OEM_HOOK OemCustomize = {
|
||||||
.InitEarly = OemInitEarly,
|
.InitEarly = OemInitEarly,
|
||||||
.InitMid = OemInitMid,
|
.InitMid = OemInitMid,
|
||||||
|
|
|
@ -357,105 +357,3 @@ GPIO_CONTROL gizmo2_gpio[] = {
|
||||||
|
|
||||||
#include "PlatformInstall.h"
|
#include "PlatformInstall.h"
|
||||||
|
|
||||||
/*----------------------------------------------------------------------------------------
|
|
||||||
* CUSTOMER OVERIDES MEMORY TABLE
|
|
||||||
*----------------------------------------------------------------------------------------
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Platform Specific Overriding Table allows IBV/OEM to pass in platform information to AGESA
|
|
||||||
* (e.g. MemClk routing, the number of DIMM slots per channel,...). If PlatformSpecificTable
|
|
||||||
* is populated, AGESA will base its settings on the data from the table. Otherwise, it will
|
|
||||||
* use its default conservative settings.
|
|
||||||
*/
|
|
||||||
CONST PSO_ENTRY ROMDATA DefaultPlatformMemoryConfiguration[] = {
|
|
||||||
//
|
|
||||||
// The following macros are supported (use comma to separate macros):
|
|
||||||
//
|
|
||||||
// MEMCLK_DIS_MAP(SocketID, ChannelID, MemClkDisBit0CSMap,..., MemClkDisBit7CSMap)
|
|
||||||
// The MemClk pins are identified based on BKDG definition of Fn2x88[MemClkDis] bitmap.
|
|
||||||
// AGESA will base on this value to disable unused MemClk to save power.
|
|
||||||
// Example:
|
|
||||||
// BKDG definition of Fn2x88[MemClkDis] bitmap for AM3 package is like below:
|
|
||||||
// Bit AM3/S1g3 pin name
|
|
||||||
// 0 M[B,A]_CLK_H/L[0]
|
|
||||||
// 1 M[B,A]_CLK_H/L[1]
|
|
||||||
// 2 M[B,A]_CLK_H/L[2]
|
|
||||||
// 3 M[B,A]_CLK_H/L[3]
|
|
||||||
// 4 M[B,A]_CLK_H/L[4]
|
|
||||||
// 5 M[B,A]_CLK_H/L[5]
|
|
||||||
// 6 M[B,A]_CLK_H/L[6]
|
|
||||||
// 7 M[B,A]_CLK_H/L[7]
|
|
||||||
// And platform has the following routing:
|
|
||||||
// CS0 M[B,A]_CLK_H/L[4]
|
|
||||||
// CS1 M[B,A]_CLK_H/L[2]
|
|
||||||
// CS2 M[B,A]_CLK_H/L[3]
|
|
||||||
// CS3 M[B,A]_CLK_H/L[5]
|
|
||||||
// Then platform can specify the following macro:
|
|
||||||
// MEMCLK_DIS_MAP(ANY_SOCKET, ANY_CHANNEL, 0x00, 0x00, 0x02, 0x04, 0x01, 0x08, 0x00, 0x00)
|
|
||||||
//
|
|
||||||
// CKE_TRI_MAP(SocketID, ChannelID, CKETriBit0CSMap, CKETriBit1CSMap)
|
|
||||||
// The CKE pins are identified based on BKDG definition of Fn2x9C_0C[CKETri] bitmap.
|
|
||||||
// AGESA will base on this value to tristate unused CKE to save power.
|
|
||||||
//
|
|
||||||
// ODT_TRI_MAP(SocketID, ChannelID, ODTTriBit0CSMap,..., ODTTriBit3CSMap)
|
|
||||||
// The ODT pins are identified based on BKDG definition of Fn2x9C_0C[ODTTri] bitmap.
|
|
||||||
// AGESA will base on this value to tristate unused ODT pins to save power.
|
|
||||||
//
|
|
||||||
// CS_TRI_MAP(SocketID, ChannelID, CSTriBit0CSMap,..., CSTriBit7CSMap)
|
|
||||||
// The Chip select pins are identified based on BKDG definition of Fn2x9C_0C[ChipSelTri] bitmap.
|
|
||||||
// AGESA will base on this value to tristate unused Chip select to save power.
|
|
||||||
//
|
|
||||||
// NUMBER_OF_DIMMS_SUPPORTED(SocketID, ChannelID, NumberOfDimmSlotsPerChannel)
|
|
||||||
// Specifies the number of DIMM slots per channel.
|
|
||||||
//
|
|
||||||
// NUMBER_OF_CHIP_SELECTS_SUPPORTED(SocketID, ChannelID, NumberOfChipSelectsPerChannel)
|
|
||||||
// Specifies the number of Chip selects per channel.
|
|
||||||
//
|
|
||||||
// NUMBER_OF_CHANNELS_SUPPORTED(SocketID, NumberOfChannelsPerSocket)
|
|
||||||
// Specifies the number of channels per socket.
|
|
||||||
//
|
|
||||||
// OVERRIDE_DDR_BUS_SPEED(SocketID, ChannelID, USER_MEMORY_TIMING_MODE, MEMORY_BUS_SPEED)
|
|
||||||
// Specifies DDR bus speed of channel ChannelID on socket SocketID.
|
|
||||||
//
|
|
||||||
// DRAM_TECHNOLOGY(SocketID, TECHNOLOGY_TYPE)
|
|
||||||
// Specifies the DRAM technology type of socket SocketID (DDR2, DDR3,...)
|
|
||||||
//
|
|
||||||
// WRITE_LEVELING_SEED(SocketID, ChannelID, DimmID, Byte0Seed, Byte1Seed, Byte2Seed, Byte3Seed, Byte4Seed, Byte5Seed,
|
|
||||||
// Byte6Seed, Byte7Seed, ByteEccSeed)
|
|
||||||
// Specifies the write leveling seed for a channel of a socket.
|
|
||||||
//
|
|
||||||
// HW_RXEN_SEED(SocketID, ChannelID, DimmID, Byte0Seed, Byte1Seed, Byte2Seed, Byte3Seed, Byte4Seed, Byte5Seed,
|
|
||||||
// Byte6Seed, Byte7Seed, ByteEccSeed)
|
|
||||||
// Speicifes the HW RXEN training seed for a channel of a socket
|
|
||||||
//
|
|
||||||
|
|
||||||
#define SEED_WL 0x0E
|
|
||||||
WRITE_LEVELING_SEED(
|
|
||||||
ANY_SOCKET, CHANNEL_A, ALL_DIMMS,
|
|
||||||
SEED_WL,SEED_WL,SEED_WL,SEED_WL,SEED_WL,SEED_WL,SEED_WL,SEED_WL,
|
|
||||||
SEED_WL),
|
|
||||||
|
|
||||||
#define SEED_A 0x12
|
|
||||||
HW_RXEN_SEED(
|
|
||||||
ANY_SOCKET, CHANNEL_A, ALL_DIMMS,
|
|
||||||
SEED_A, SEED_A, SEED_A, SEED_A, SEED_A, SEED_A, SEED_A, SEED_A,
|
|
||||||
SEED_A),
|
|
||||||
|
|
||||||
NUMBER_OF_DIMMS_SUPPORTED (ANY_SOCKET, ANY_CHANNEL, 1),
|
|
||||||
NUMBER_OF_CHANNELS_SUPPORTED (ANY_SOCKET, 1),
|
|
||||||
MOTHER_BOARD_LAYERS (LAYERS_6),
|
|
||||||
|
|
||||||
MEMCLK_DIS_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00),
|
|
||||||
CKE_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x04, 0x08), /* TODO: bit2map, bit3map */
|
|
||||||
ODT_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x04, 0x08),
|
|
||||||
CS_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x04, 0x08, 0x00, 0x00, 0x00, 0x00),
|
|
||||||
|
|
||||||
PSO_END
|
|
||||||
};
|
|
||||||
|
|
||||||
/*
|
|
||||||
* These tables are optional and may be used to adjust memory timing settings
|
|
||||||
*/
|
|
||||||
#include "mm.h"
|
|
||||||
#include "mn.h"
|
|
||||||
|
|
|
@ -18,6 +18,7 @@
|
||||||
#include "amdlib.h"
|
#include "amdlib.h"
|
||||||
#include "Ids.h"
|
#include "Ids.h"
|
||||||
#include "heapManager.h"
|
#include "heapManager.h"
|
||||||
|
#include <PlatformMemoryConfiguration.h>
|
||||||
#include "Filecode.h"
|
#include "Filecode.h"
|
||||||
|
|
||||||
#include <northbridge/amd/agesa/agesawrapper.h>
|
#include <northbridge/amd/agesa/agesawrapper.h>
|
||||||
|
@ -147,6 +148,36 @@ static AGESA_STATUS OemInitMid(AMD_MID_PARAMS * InitMid)
|
||||||
return AGESA_SUCCESS;
|
return AGESA_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*----------------------------------------------------------------------------------------
|
||||||
|
* CUSTOMER OVERIDES MEMORY TABLE
|
||||||
|
*----------------------------------------------------------------------------------------
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Platform Specific Overriding Table allows IBV/OEM to pass in platform information to AGESA
|
||||||
|
* (e.g. MemClk routing, the number of DIMM slots per channel,...). If PlatformSpecificTable
|
||||||
|
* is populated, AGESA will base its settings on the data from the table. Otherwise, it will
|
||||||
|
* use its default conservative settings.
|
||||||
|
*/
|
||||||
|
CONST PSO_ENTRY ROMDATA DefaultPlatformMemoryConfiguration[] = {
|
||||||
|
#define SEED_A 0x12
|
||||||
|
HW_RXEN_SEED(
|
||||||
|
ANY_SOCKET, CHANNEL_A, ALL_DIMMS,
|
||||||
|
SEED_A, SEED_A, SEED_A, SEED_A, SEED_A, SEED_A, SEED_A, SEED_A,
|
||||||
|
SEED_A),
|
||||||
|
|
||||||
|
NUMBER_OF_DIMMS_SUPPORTED (ANY_SOCKET, ANY_CHANNEL, ONE_DIMM),
|
||||||
|
NUMBER_OF_CHANNELS_SUPPORTED (ANY_SOCKET, ONE_DIMM),
|
||||||
|
MOTHER_BOARD_LAYERS (LAYERS_6),
|
||||||
|
|
||||||
|
MEMCLK_DIS_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00),
|
||||||
|
CKE_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x04, 0x08), /* TODO: bit2map, bit3map */
|
||||||
|
ODT_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x04, 0x08),
|
||||||
|
CS_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x04, 0x08, 0x00, 0x00, 0x00, 0x00),
|
||||||
|
|
||||||
|
PSO_END
|
||||||
|
};
|
||||||
|
|
||||||
const struct OEM_HOOK OemCustomize = {
|
const struct OEM_HOOK OemCustomize = {
|
||||||
.InitEarly = OemInitEarly,
|
.InitEarly = OemInitEarly,
|
||||||
.InitMid = OemInitMid,
|
.InitMid = OemInitMid,
|
||||||
|
|
|
@ -369,98 +369,3 @@ GPIO_CONTROL hp_abm_gpio[] = {
|
||||||
|
|
||||||
#include "PlatformInstall.h"
|
#include "PlatformInstall.h"
|
||||||
|
|
||||||
/*----------------------------------------------------------------------------------------
|
|
||||||
* CUSTOMER OVERIDES MEMORY TABLE
|
|
||||||
*----------------------------------------------------------------------------------------
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Platform Specific Overriding Table allows IBV/OEM to pass in platform information to AGESA
|
|
||||||
* (e.g. MemClk routing, the number of DIMM slots per channel,...). If PlatformSpecificTable
|
|
||||||
* is populated, AGESA will base its settings on the data from the table. Otherwise, it will
|
|
||||||
* use its default conservative settings.
|
|
||||||
*/
|
|
||||||
CONST PSO_ENTRY ROMDATA DefaultPlatformMemoryConfiguration[] = {
|
|
||||||
//
|
|
||||||
// The following macros are supported (use comma to separate macros):
|
|
||||||
//
|
|
||||||
// MEMCLK_DIS_MAP(SocketID, ChannelID, MemClkDisBit0CSMap,..., MemClkDisBit7CSMap)
|
|
||||||
// The MemClk pins are identified based on BKDG definition of Fn2x88[MemClkDis] bitmap.
|
|
||||||
// AGESA will base on this value to disable unused MemClk to save power.
|
|
||||||
// Example:
|
|
||||||
// BKDG definition of Fn2x88[MemClkDis] bitmap for AM3 package is like below:
|
|
||||||
// Bit AM3/S1g3 pin name
|
|
||||||
// 0 M[B,A]_CLK_H/L[0]
|
|
||||||
// 1 M[B,A]_CLK_H/L[1]
|
|
||||||
// 2 M[B,A]_CLK_H/L[2]
|
|
||||||
// 3 M[B,A]_CLK_H/L[3]
|
|
||||||
// 4 M[B,A]_CLK_H/L[4]
|
|
||||||
// 5 M[B,A]_CLK_H/L[5]
|
|
||||||
// 6 M[B,A]_CLK_H/L[6]
|
|
||||||
// 7 M[B,A]_CLK_H/L[7]
|
|
||||||
// And platform has the following routing:
|
|
||||||
// CS0 M[B,A]_CLK_H/L[4]
|
|
||||||
// CS1 M[B,A]_CLK_H/L[2]
|
|
||||||
// CS2 M[B,A]_CLK_H/L[3]
|
|
||||||
// CS3 M[B,A]_CLK_H/L[5]
|
|
||||||
// Then platform can specify the following macro:
|
|
||||||
// MEMCLK_DIS_MAP(ANY_SOCKET, ANY_CHANNEL, 0x00, 0x00, 0x02, 0x04, 0x01, 0x08, 0x00, 0x00)
|
|
||||||
//
|
|
||||||
// CKE_TRI_MAP(SocketID, ChannelID, CKETriBit0CSMap, CKETriBit1CSMap)
|
|
||||||
// The CKE pins are identified based on BKDG definition of Fn2x9C_0C[CKETri] bitmap.
|
|
||||||
// AGESA will base on this value to tristate unused CKE to save power.
|
|
||||||
//
|
|
||||||
// ODT_TRI_MAP(SocketID, ChannelID, ODTTriBit0CSMap,..., ODTTriBit3CSMap)
|
|
||||||
// The ODT pins are identified based on BKDG definition of Fn2x9C_0C[ODTTri] bitmap.
|
|
||||||
// AGESA will base on this value to tristate unused ODT pins to save power.
|
|
||||||
//
|
|
||||||
// CS_TRI_MAP(SocketID, ChannelID, CSTriBit0CSMap,..., CSTriBit7CSMap)
|
|
||||||
// The Chip select pins are identified based on BKDG definition of Fn2x9C_0C[ChipSelTri] bitmap.
|
|
||||||
// AGESA will base on this value to tristate unused Chip select to save power.
|
|
||||||
//
|
|
||||||
// NUMBER_OF_DIMMS_SUPPORTED(SocketID, ChannelID, NumberOfDimmSlotsPerChannel)
|
|
||||||
// Specifies the number of DIMM slots per channel.
|
|
||||||
//
|
|
||||||
// NUMBER_OF_CHIP_SELECTS_SUPPORTED(SocketID, ChannelID, NumberOfChipSelectsPerChannel)
|
|
||||||
// Specifies the number of Chip selects per channel.
|
|
||||||
//
|
|
||||||
// NUMBER_OF_CHANNELS_SUPPORTED(SocketID, NumberOfChannelsPerSocket)
|
|
||||||
// Specifies the number of channels per socket.
|
|
||||||
//
|
|
||||||
// OVERRIDE_DDR_BUS_SPEED(SocketID, ChannelID, USER_MEMORY_TIMING_MODE, MEMORY_BUS_SPEED)
|
|
||||||
// Specifies DDR bus speed of channel ChannelID on socket SocketID.
|
|
||||||
//
|
|
||||||
// DRAM_TECHNOLOGY(SocketID, TECHNOLOGY_TYPE)
|
|
||||||
// Specifies the DRAM technology type of socket SocketID (DDR2, DDR3,...)
|
|
||||||
//
|
|
||||||
// WRITE_LEVELING_SEED(SocketID, ChannelID, DimmID, Byte0Seed, Byte1Seed, Byte2Seed, Byte3Seed, Byte4Seed, Byte5Seed,
|
|
||||||
// Byte6Seed, Byte7Seed, ByteEccSeed)
|
|
||||||
// Specifies the write leveling seed for a channel of a socket.
|
|
||||||
//
|
|
||||||
// HW_RXEN_SEED(SocketID, ChannelID, DimmID, Byte0Seed, Byte1Seed, Byte2Seed, Byte3Seed, Byte4Seed, Byte5Seed,
|
|
||||||
// Byte6Seed, Byte7Seed, ByteEccSeed)
|
|
||||||
// Speicifes the HW RXEN training seed for a channel of a socket
|
|
||||||
//
|
|
||||||
#define SEED_A 0x12
|
|
||||||
HW_RXEN_SEED(
|
|
||||||
ANY_SOCKET, CHANNEL_A, ALL_DIMMS,
|
|
||||||
SEED_A, SEED_A, SEED_A, SEED_A, SEED_A, SEED_A, SEED_A, SEED_A,
|
|
||||||
SEED_A),
|
|
||||||
|
|
||||||
NUMBER_OF_DIMMS_SUPPORTED (ANY_SOCKET, ANY_CHANNEL, ONE_DIMM),
|
|
||||||
NUMBER_OF_CHANNELS_SUPPORTED (ANY_SOCKET, ONE_DIMM),
|
|
||||||
MOTHER_BOARD_LAYERS (LAYERS_6),
|
|
||||||
|
|
||||||
MEMCLK_DIS_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00),
|
|
||||||
CKE_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x04, 0x08), /* TODO: bit2map, bit3map */
|
|
||||||
ODT_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x04, 0x08),
|
|
||||||
CS_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x04, 0x08, 0x00, 0x00, 0x00, 0x00),
|
|
||||||
|
|
||||||
PSO_END
|
|
||||||
};
|
|
||||||
|
|
||||||
/*
|
|
||||||
* These tables are optional and may be used to adjust memory timing settings
|
|
||||||
*/
|
|
||||||
#include "mm.h"
|
|
||||||
#include "mn.h"
|
|
||||||
|
|
|
@ -19,6 +19,7 @@
|
||||||
|
|
||||||
#include <northbridge/amd/agesa/agesawrapper.h>
|
#include <northbridge/amd/agesa/agesawrapper.h>
|
||||||
#include <vendorcode/amd/agesa/f15tn/Proc/CPU/heapManager.h>
|
#include <vendorcode/amd/agesa/f15tn/Proc/CPU/heapManager.h>
|
||||||
|
#include <PlatformMemoryConfiguration.h>
|
||||||
|
|
||||||
#define FILECODE PROC_GNB_PCIE_FAMILY_0X15_F15PCIECOMPLEXCONFIG_FILECODE
|
#define FILECODE PROC_GNB_PCIE_FAMILY_0X15_F15PCIECOMPLEXCONFIG_FILECODE
|
||||||
|
|
||||||
|
@ -197,6 +198,30 @@ static AGESA_STATUS OemInitMid(AMD_MID_PARAMS * InitMid)
|
||||||
return AGESA_SUCCESS;
|
return AGESA_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*----------------------------------------------------------------------------------------
|
||||||
|
* CUSTOMER OVERIDES MEMORY TABLE
|
||||||
|
*----------------------------------------------------------------------------------------
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Platform Specific Overriding Table allows IBV/OEM to pass in platform
|
||||||
|
* information to AGESA
|
||||||
|
* (e.g. MemClk routing, the number of DIMM slots per channel,...).
|
||||||
|
* If PlatformSpecificTable is populated, AGESA will base its settings on the
|
||||||
|
* data from the table. Otherwise, it will use its default conservative settings
|
||||||
|
*/
|
||||||
|
CONST PSO_ENTRY ROMDATA DefaultPlatformMemoryConfiguration[] = {
|
||||||
|
|
||||||
|
NUMBER_OF_DIMMS_SUPPORTED (ANY_SOCKET, ANY_CHANNEL, 1),
|
||||||
|
NUMBER_OF_CHANNELS_SUPPORTED (ANY_SOCKET, 2),
|
||||||
|
MEMCLK_DIS_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00),
|
||||||
|
CKE_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x05, 0x0A),
|
||||||
|
ODT_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x00, 0x00),
|
||||||
|
CS_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00),
|
||||||
|
|
||||||
|
PSO_END
|
||||||
|
};
|
||||||
|
|
||||||
const struct OEM_HOOK OemCustomize = {
|
const struct OEM_HOOK OemCustomize = {
|
||||||
.InitEarly = OemInitEarly,
|
.InitEarly = OemInitEarly,
|
||||||
.InitMid = OemInitMid,
|
.InitMid = OemInitMid,
|
||||||
|
|
|
@ -402,26 +402,3 @@ SCI_MAP_CONTROL m6_1035dx_sci_map[] = {
|
||||||
/* AGESA nonsense: this header depends on the definitions above */
|
/* AGESA nonsense: this header depends on the definitions above */
|
||||||
#include <vendorcode/amd/agesa/f15tn/Include/PlatformInstall.h>
|
#include <vendorcode/amd/agesa/f15tn/Include/PlatformInstall.h>
|
||||||
|
|
||||||
/*----------------------------------------------------------------------------------------
|
|
||||||
* CUSTOMER OVERIDES MEMORY TABLE
|
|
||||||
*----------------------------------------------------------------------------------------
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Platform Specific Overriding Table allows IBV/OEM to pass in platform
|
|
||||||
* information to AGESA
|
|
||||||
* (e.g. MemClk routing, the number of DIMM slots per channel,...).
|
|
||||||
* If PlatformSpecificTable is populated, AGESA will base its settings on the
|
|
||||||
* data from the table. Otherwise, it will use its default conservative settings
|
|
||||||
*/
|
|
||||||
CONST PSO_ENTRY ROMDATA DefaultPlatformMemoryConfiguration[] = {
|
|
||||||
|
|
||||||
NUMBER_OF_DIMMS_SUPPORTED (ANY_SOCKET, ANY_CHANNEL, 1),
|
|
||||||
NUMBER_OF_CHANNELS_SUPPORTED (ANY_SOCKET, 2),
|
|
||||||
MEMCLK_DIS_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00),
|
|
||||||
CKE_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x05, 0x0A),
|
|
||||||
ODT_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x00, 0x00),
|
|
||||||
CS_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00),
|
|
||||||
|
|
||||||
PSO_END
|
|
||||||
};
|
|
||||||
|
|
|
@ -19,6 +19,7 @@
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <northbridge/amd/agesa/agesawrapper.h>
|
#include <northbridge/amd/agesa/agesawrapper.h>
|
||||||
#include <vendorcode/amd/agesa/f14/Proc/CPU/heapManager.h>
|
#include <vendorcode/amd/agesa/f14/Proc/CPU/heapManager.h>
|
||||||
|
#include <PlatformMemoryConfiguration.h>
|
||||||
|
|
||||||
#define FILECODE PROC_RECOVERY_MEM_NB_ON_MRNON_FILECODE
|
#define FILECODE PROC_RECOVERY_MEM_NB_ON_MRNON_FILECODE
|
||||||
|
|
||||||
|
@ -178,6 +179,21 @@ PCIe_COMPLEX_DESCRIPTOR Brazos = {
|
||||||
return AGESA_SUCCESS;
|
return AGESA_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Customer Overides Memory Table
|
||||||
|
*
|
||||||
|
* Platform Specific Overriding Table allows IBV/OEM to pass in platform
|
||||||
|
* information to AGESA
|
||||||
|
* (e.g. MemClk routing, the number of DIMM slots per channel,...).
|
||||||
|
* If PlatformSpecificTable is populated, AGESA will base its settings on the
|
||||||
|
* data from the table. Otherwise, it will use its default conservative settings.
|
||||||
|
*/
|
||||||
|
const PSO_ENTRY ROMDATA DefaultPlatformMemoryConfiguration[] = {
|
||||||
|
NUMBER_OF_DIMMS_SUPPORTED (ANY_SOCKET, ANY_CHANNEL, 2),
|
||||||
|
NUMBER_OF_CHANNELS_SUPPORTED (ANY_SOCKET, 1),
|
||||||
|
PSO_END
|
||||||
|
};
|
||||||
|
|
||||||
const struct OEM_HOOK OemCustomize = {
|
const struct OEM_HOOK OemCustomize = {
|
||||||
.InitEarly = OemInitEarly,
|
.InitEarly = OemInitEarly,
|
||||||
};
|
};
|
||||||
|
|
|
@ -315,17 +315,3 @@ const AP_MTRR_SETTINGS ROMDATA OntarioApMtrrSettingsList[] =
|
||||||
/* Instantiate all solution relevant data. */
|
/* Instantiate all solution relevant data. */
|
||||||
#include <vendorcode/amd/agesa/f14/Include/PlatformInstall.h>
|
#include <vendorcode/amd/agesa/f14/Include/PlatformInstall.h>
|
||||||
|
|
||||||
/**
|
|
||||||
* @brief Customer Overides Memory Table
|
|
||||||
*
|
|
||||||
* Platform Specific Overriding Table allows IBV/OEM to pass in platform
|
|
||||||
* information to AGESA
|
|
||||||
* (e.g. MemClk routing, the number of DIMM slots per channel,...).
|
|
||||||
* If PlatformSpecificTable is populated, AGESA will base its settings on the
|
|
||||||
* data from the table. Otherwise, it will use its default conservative settings.
|
|
||||||
*/
|
|
||||||
const PSO_ENTRY ROMDATA DefaultPlatformMemoryConfiguration[] = {
|
|
||||||
NUMBER_OF_DIMMS_SUPPORTED (ANY_SOCKET, ANY_CHANNEL, 2),
|
|
||||||
NUMBER_OF_CHANNELS_SUPPORTED (ANY_SOCKET, 1),
|
|
||||||
PSO_END
|
|
||||||
};
|
|
||||||
|
|
|
@ -19,6 +19,7 @@
|
||||||
|
|
||||||
#include <northbridge/amd/agesa/agesawrapper.h>
|
#include <northbridge/amd/agesa/agesawrapper.h>
|
||||||
#include <vendorcode/amd/agesa/f15tn/Proc/CPU/heapManager.h>
|
#include <vendorcode/amd/agesa/f15tn/Proc/CPU/heapManager.h>
|
||||||
|
#include <PlatformMemoryConfiguration.h>
|
||||||
|
|
||||||
#define FILECODE PROC_GNB_PCIE_FAMILY_0X15_F15PCIECOMPLEXCONFIG_FILECODE
|
#define FILECODE PROC_GNB_PCIE_FAMILY_0X15_F15PCIECOMPLEXCONFIG_FILECODE
|
||||||
|
|
||||||
|
@ -197,6 +198,30 @@ static AGESA_STATUS OemInitMid(AMD_MID_PARAMS * InitMid)
|
||||||
return AGESA_SUCCESS;
|
return AGESA_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*----------------------------------------------------------------------------------------
|
||||||
|
* CUSTOMER OVERIDES MEMORY TABLE
|
||||||
|
*----------------------------------------------------------------------------------------
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Platform Specific Overriding Table allows IBV/OEM to pass in platform
|
||||||
|
* information to AGESA
|
||||||
|
* (e.g. MemClk routing, the number of DIMM slots per channel,...).
|
||||||
|
* If PlatformSpecificTable is populated, AGESA will base its settings on the
|
||||||
|
* data from the table. Otherwise, it will use its default conservative settings
|
||||||
|
*/
|
||||||
|
CONST PSO_ENTRY ROMDATA DefaultPlatformMemoryConfiguration[] = {
|
||||||
|
|
||||||
|
NUMBER_OF_DIMMS_SUPPORTED (ANY_SOCKET, ANY_CHANNEL, 1),
|
||||||
|
NUMBER_OF_CHANNELS_SUPPORTED (ANY_SOCKET, 2),
|
||||||
|
MEMCLK_DIS_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00),
|
||||||
|
CKE_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x05, 0x0A),
|
||||||
|
ODT_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x00, 0x00),
|
||||||
|
CS_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00),
|
||||||
|
|
||||||
|
PSO_END
|
||||||
|
};
|
||||||
|
|
||||||
const struct OEM_HOOK OemCustomize = {
|
const struct OEM_HOOK OemCustomize = {
|
||||||
.InitEarly = OemInitEarly,
|
.InitEarly = OemInitEarly,
|
||||||
.InitMid = OemInitMid,
|
.InitMid = OemInitMid,
|
||||||
|
|
|
@ -402,26 +402,3 @@ SCI_MAP_CONTROL lenovo_g505s_sci_map[] = {
|
||||||
/* AGESA nonsense: this header depends on the definitions above */
|
/* AGESA nonsense: this header depends on the definitions above */
|
||||||
#include <vendorcode/amd/agesa/f15tn/Include/PlatformInstall.h>
|
#include <vendorcode/amd/agesa/f15tn/Include/PlatformInstall.h>
|
||||||
|
|
||||||
/*----------------------------------------------------------------------------------------
|
|
||||||
* CUSTOMER OVERIDES MEMORY TABLE
|
|
||||||
*----------------------------------------------------------------------------------------
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Platform Specific Overriding Table allows IBV/OEM to pass in platform
|
|
||||||
* information to AGESA
|
|
||||||
* (e.g. MemClk routing, the number of DIMM slots per channel,...).
|
|
||||||
* If PlatformSpecificTable is populated, AGESA will base its settings on the
|
|
||||||
* data from the table. Otherwise, it will use its default conservative settings
|
|
||||||
*/
|
|
||||||
CONST PSO_ENTRY ROMDATA DefaultPlatformMemoryConfiguration[] = {
|
|
||||||
|
|
||||||
NUMBER_OF_DIMMS_SUPPORTED (ANY_SOCKET, ANY_CHANNEL, 1),
|
|
||||||
NUMBER_OF_CHANNELS_SUPPORTED (ANY_SOCKET, 2),
|
|
||||||
MEMCLK_DIS_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00),
|
|
||||||
CKE_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x05, 0x0A),
|
|
||||||
ODT_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x00, 0x00),
|
|
||||||
CS_TRI_MAP (ANY_SOCKET, ANY_CHANNEL, 0x01, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00),
|
|
||||||
|
|
||||||
PSO_END
|
|
||||||
};
|
|
||||||
|
|
|
@ -17,6 +17,7 @@
|
||||||
#include "amdlib.h"
|
#include "amdlib.h"
|
||||||
#include "Ids.h"
|
#include "Ids.h"
|
||||||
#include "heapManager.h"
|
#include "heapManager.h"
|
||||||
|
#include <PlatformMemoryConfiguration.h>
|
||||||
#include "PlatformGnbPcieComplex.h"
|
#include "PlatformGnbPcieComplex.h"
|
||||||
#include "Filecode.h"
|
#include "Filecode.h"
|
||||||
|
|
||||||
|
@ -140,6 +141,24 @@ PCIe_COMPLEX_DESCRIPTOR Brazos = {
|
||||||
return AGESA_SUCCESS;
|
return AGESA_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*----------------------------------------------------------------------------------------
|
||||||
|
* CUSTOMER OVERIDES MEMORY TABLE
|
||||||
|
*----------------------------------------------------------------------------------------
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Platform Specific Overriding Table allows IBV/OEM to pass in platform information to AGESA
|
||||||
|
* (e.g. MemClk routing, the number of DIMM slots per channel,...). If PlatformSpecificTable
|
||||||
|
* is populated, AGESA will base its settings on the data from the table. Otherwise, it will
|
||||||
|
* use its default conservative settings.
|
||||||
|
*/
|
||||||
|
CONST PSO_ENTRY ROMDATA DefaultPlatformMemoryConfiguration[] = {
|
||||||
|
HW_RXEN_SEED (ANY_SOCKET, ANY_CHANNEL, 0x3B, 0x3B, 0x3B, 0x3B, 0x3B, 0x3B, 0x3B, 0x3B, 0x3B),
|
||||||
|
NUMBER_OF_DIMMS_SUPPORTED (ANY_SOCKET, ANY_CHANNEL, 2),
|
||||||
|
NUMBER_OF_CHANNELS_SUPPORTED (ANY_SOCKET, 1),
|
||||||
|
PSO_END
|
||||||
|
};
|
||||||
|
|
||||||
const struct OEM_HOOK OemCustomize = {
|
const struct OEM_HOOK OemCustomize = {
|
||||||
.InitEarly = OemInitEarly,
|
.InitEarly = OemInitEarly,
|
||||||
};
|
};
|
||||||
|
|
|
@ -311,82 +311,3 @@ CONST AP_MTRR_SETTINGS ROMDATA OntarioApMtrrSettingsList[] =
|
||||||
// Instantiate all solution relevant data.
|
// Instantiate all solution relevant data.
|
||||||
#include "PlatformInstall.h"
|
#include "PlatformInstall.h"
|
||||||
|
|
||||||
/*----------------------------------------------------------------------------------------
|
|
||||||
* CUSTOMER OVERIDES MEMORY TABLE
|
|
||||||
*----------------------------------------------------------------------------------------
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Platform Specific Overriding Table allows IBV/OEM to pass in platform information to AGESA
|
|
||||||
* (e.g. MemClk routing, the number of DIMM slots per channel,...). If PlatformSpecificTable
|
|
||||||
* is populated, AGESA will base its settings on the data from the table. Otherwise, it will
|
|
||||||
* use its default conservative settings.
|
|
||||||
*/
|
|
||||||
CONST PSO_ENTRY ROMDATA DefaultPlatformMemoryConfiguration[] = {
|
|
||||||
//
|
|
||||||
// The following macros are supported (use comma to separate macros):
|
|
||||||
//
|
|
||||||
// MEMCLK_DIS_MAP(SocketID, ChannelID, MemClkDisBit0CSMap,..., MemClkDisBit7CSMap)
|
|
||||||
// The MemClk pins are identified based on BKDG definition of Fn2x88[MemClkDis] bitmap.
|
|
||||||
// AGESA will base on this value to disable unused MemClk to save power.
|
|
||||||
// Example:
|
|
||||||
// BKDG definition of Fn2x88[MemClkDis] bitmap for AM3 package is like below:
|
|
||||||
// Bit AM3/S1g3 pin name
|
|
||||||
// 0 M[B,A]_CLK_H/L[0]
|
|
||||||
// 1 M[B,A]_CLK_H/L[1]
|
|
||||||
// 2 M[B,A]_CLK_H/L[2]
|
|
||||||
// 3 M[B,A]_CLK_H/L[3]
|
|
||||||
// 4 M[B,A]_CLK_H/L[4]
|
|
||||||
// 5 M[B,A]_CLK_H/L[5]
|
|
||||||
// 6 M[B,A]_CLK_H/L[6]
|
|
||||||
// 7 M[B,A]_CLK_H/L[7]
|
|
||||||
// And platform has the following routing:
|
|
||||||
// CS0 M[B,A]_CLK_H/L[4]
|
|
||||||
// CS1 M[B,A]_CLK_H/L[2]
|
|
||||||
// CS2 M[B,A]_CLK_H/L[3]
|
|
||||||
// CS3 M[B,A]_CLK_H/L[5]
|
|
||||||
// Then platform can specify the following macro:
|
|
||||||
// MEMCLK_DIS_MAP(ANY_SOCKET, ANY_CHANNEL, 0x00, 0x00, 0x02, 0x04, 0x01, 0x08, 0x00, 0x00)
|
|
||||||
//
|
|
||||||
// CKE_TRI_MAP(SocketID, ChannelID, CKETriBit0CSMap, CKETriBit1CSMap)
|
|
||||||
// The CKE pins are identified based on BKDG definition of Fn2x9C_0C[CKETri] bitmap.
|
|
||||||
// AGESA will base on this value to tristate unused CKE to save power.
|
|
||||||
//
|
|
||||||
// ODT_TRI_MAP(SocketID, ChannelID, ODTTriBit0CSMap,..., ODTTriBit3CSMap)
|
|
||||||
// The ODT pins are identified based on BKDG definition of Fn2x9C_0C[ODTTri] bitmap.
|
|
||||||
// AGESA will base on this value to tristate unused ODT pins to save power.
|
|
||||||
//
|
|
||||||
// CS_TRI_MAP(SocketID, ChannelID, CSTriBit0CSMap,..., CSTriBit7CSMap)
|
|
||||||
// The Chip select pins are identified based on BKDG definition of Fn2x9C_0C[ChipSelTri] bitmap.
|
|
||||||
// AGESA will base on this value to tristate unused Chip select to save power.
|
|
||||||
//
|
|
||||||
// NUMBER_OF_DIMMS_SUPPORTED(SocketID, ChannelID, NumberOfDimmSlotsPerChannel)
|
|
||||||
// Specifies the number of DIMM slots per channel.
|
|
||||||
//
|
|
||||||
// NUMBER_OF_CHIP_SELECTS_SUPPORTED(SocketID, ChannelID, NumberOfChipSelectsPerChannel)
|
|
||||||
// Specifies the number of Chip selects per channel.
|
|
||||||
//
|
|
||||||
// NUMBER_OF_CHANNELS_SUPPORTED(SocketID, NumberOfChannelsPerSocket)
|
|
||||||
// Specifies the number of channels per socket.
|
|
||||||
//
|
|
||||||
// OVERRIDE_DDR_BUS_SPEED(SocketID, ChannelID, USER_MEMORY_TIMING_MODE, MEMORY_BUS_SPEED)
|
|
||||||
// Specifies DDR bus speed of channel ChannelID on socket SocketID.
|
|
||||||
//
|
|
||||||
// DRAM_TECHNOLOGY(SocketID, TECHNOLOGY_TYPE)
|
|
||||||
// Specifies the DRAM technology type of socket SocketID (DDR2, DDR3,...)
|
|
||||||
//
|
|
||||||
// WRITE_LEVELING_SEED(SocketID, ChannelID, Byte0Seed, Byte1Seed, Byte2Seed, Byte3Seed, Byte4Seed, Byte5Seed,
|
|
||||||
// Byte6Seed, Byte7Seed, ByteEccSeed)
|
|
||||||
// Specifies the write leveling seed for a channel of a socket.
|
|
||||||
//
|
|
||||||
HW_RXEN_SEED (ANY_SOCKET, ANY_CHANNEL, 0x3B, 0x3B, 0x3B, 0x3B, 0x3B, 0x3B, 0x3B, 0x3B, 0x3B),
|
|
||||||
NUMBER_OF_DIMMS_SUPPORTED (ANY_SOCKET, ANY_CHANNEL, 2),
|
|
||||||
NUMBER_OF_CHANNELS_SUPPORTED (ANY_SOCKET, 1),
|
|
||||||
PSO_END
|
|
||||||
};
|
|
||||||
|
|
||||||
/*
|
|
||||||
* These tables are optional and may be used to adjust memory timing settings
|
|
||||||
*/
|
|
||||||
#include "mm.h"
|
|
||||||
#include "mn.h"
|
|
||||||
|
|
|
@ -17,6 +17,7 @@
|
||||||
#include "amdlib.h"
|
#include "amdlib.h"
|
||||||
#include "Ids.h"
|
#include "Ids.h"
|
||||||
#include "heapManager.h"
|
#include "heapManager.h"
|
||||||
|
#include <PlatformMemoryConfiguration.h>
|
||||||
#include "PlatformGnbPcieComplex.h"
|
#include "PlatformGnbPcieComplex.h"
|
||||||
#include "Filecode.h"
|
#include "Filecode.h"
|
||||||
|
|
||||||
|
@ -140,6 +141,24 @@ PCIe_COMPLEX_DESCRIPTOR Brazos = {
|
||||||
return AGESA_SUCCESS;
|
return AGESA_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*----------------------------------------------------------------------------------------
|
||||||
|
* CUSTOMER OVERIDES MEMORY TABLE
|
||||||
|
*----------------------------------------------------------------------------------------
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Platform Specific Overriding Table allows IBV/OEM to pass in platform information to AGESA
|
||||||
|
* (e.g. MemClk routing, the number of DIMM slots per channel,...). If PlatformSpecificTable
|
||||||
|
* is populated, AGESA will base its settings on the data from the table. Otherwise, it will
|
||||||
|
* use its default conservative settings.
|
||||||
|
*/
|
||||||
|
CONST PSO_ENTRY ROMDATA DefaultPlatformMemoryConfiguration[] = {
|
||||||
|
HW_RXEN_SEED (ANY_SOCKET, ANY_CHANNEL, 0x3B, 0x3B, 0x3B, 0x3B, 0x3B, 0x3B, 0x3B, 0x3B, 0x3B),
|
||||||
|
NUMBER_OF_DIMMS_SUPPORTED (ANY_SOCKET, ANY_CHANNEL, 2),
|
||||||
|
NUMBER_OF_CHANNELS_SUPPORTED (ANY_SOCKET, 1),
|
||||||
|
PSO_END
|
||||||
|
};
|
||||||
|
|
||||||
const struct OEM_HOOK OemCustomize = {
|
const struct OEM_HOOK OemCustomize = {
|
||||||
.InitEarly = OemInitEarly,
|
.InitEarly = OemInitEarly,
|
||||||
};
|
};
|
||||||
|
|
|
@ -311,82 +311,3 @@ CONST AP_MTRR_SETTINGS ROMDATA OntarioApMtrrSettingsList[] =
|
||||||
// Instantiate all solution relevant data.
|
// Instantiate all solution relevant data.
|
||||||
#include "PlatformInstall.h"
|
#include "PlatformInstall.h"
|
||||||
|
|
||||||
/*----------------------------------------------------------------------------------------
|
|
||||||
* CUSTOMER OVERIDES MEMORY TABLE
|
|
||||||
*----------------------------------------------------------------------------------------
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Platform Specific Overriding Table allows IBV/OEM to pass in platform information to AGESA
|
|
||||||
* (e.g. MemClk routing, the number of DIMM slots per channel,...). If PlatformSpecificTable
|
|
||||||
* is populated, AGESA will base its settings on the data from the table. Otherwise, it will
|
|
||||||
* use its default conservative settings.
|
|
||||||
*/
|
|
||||||
CONST PSO_ENTRY ROMDATA DefaultPlatformMemoryConfiguration[] = {
|
|
||||||
//
|
|
||||||
// The following macros are supported (use comma to separate macros):
|
|
||||||
//
|
|
||||||
// MEMCLK_DIS_MAP(SocketID, ChannelID, MemClkDisBit0CSMap,..., MemClkDisBit7CSMap)
|
|
||||||
// The MemClk pins are identified based on BKDG definition of Fn2x88[MemClkDis] bitmap.
|
|
||||||
// AGESA will base on this value to disable unused MemClk to save power.
|
|
||||||
// Example:
|
|
||||||
// BKDG definition of Fn2x88[MemClkDis] bitmap for AM3 package is like below:
|
|
||||||
// Bit AM3/S1g3 pin name
|
|
||||||
// 0 M[B,A]_CLK_H/L[0]
|
|
||||||
// 1 M[B,A]_CLK_H/L[1]
|
|
||||||
// 2 M[B,A]_CLK_H/L[2]
|
|
||||||
// 3 M[B,A]_CLK_H/L[3]
|
|
||||||
// 4 M[B,A]_CLK_H/L[4]
|
|
||||||
// 5 M[B,A]_CLK_H/L[5]
|
|
||||||
// 6 M[B,A]_CLK_H/L[6]
|
|
||||||
// 7 M[B,A]_CLK_H/L[7]
|
|
||||||
// And platform has the following routing:
|
|
||||||
// CS0 M[B,A]_CLK_H/L[4]
|
|
||||||
// CS1 M[B,A]_CLK_H/L[2]
|
|
||||||
// CS2 M[B,A]_CLK_H/L[3]
|
|
||||||
// CS3 M[B,A]_CLK_H/L[5]
|
|
||||||
// Then platform can specify the following macro:
|
|
||||||
// MEMCLK_DIS_MAP(ANY_SOCKET, ANY_CHANNEL, 0x00, 0x00, 0x02, 0x04, 0x01, 0x08, 0x00, 0x00)
|
|
||||||
//
|
|
||||||
// CKE_TRI_MAP(SocketID, ChannelID, CKETriBit0CSMap, CKETriBit1CSMap)
|
|
||||||
// The CKE pins are identified based on BKDG definition of Fn2x9C_0C[CKETri] bitmap.
|
|
||||||
// AGESA will base on this value to tristate unused CKE to save power.
|
|
||||||
//
|
|
||||||
// ODT_TRI_MAP(SocketID, ChannelID, ODTTriBit0CSMap,..., ODTTriBit3CSMap)
|
|
||||||
// The ODT pins are identified based on BKDG definition of Fn2x9C_0C[ODTTri] bitmap.
|
|
||||||
// AGESA will base on this value to tristate unused ODT pins to save power.
|
|
||||||
//
|
|
||||||
// CS_TRI_MAP(SocketID, ChannelID, CSTriBit0CSMap,..., CSTriBit7CSMap)
|
|
||||||
// The Chip select pins are identified based on BKDG definition of Fn2x9C_0C[ChipSelTri] bitmap.
|
|
||||||
// AGESA will base on this value to tristate unused Chip select to save power.
|
|
||||||
//
|
|
||||||
// NUMBER_OF_DIMMS_SUPPORTED(SocketID, ChannelID, NumberOfDimmSlotsPerChannel)
|
|
||||||
// Specifies the number of DIMM slots per channel.
|
|
||||||
//
|
|
||||||
// NUMBER_OF_CHIP_SELECTS_SUPPORTED(SocketID, ChannelID, NumberOfChipSelectsPerChannel)
|
|
||||||
// Specifies the number of Chip selects per channel.
|
|
||||||
//
|
|
||||||
// NUMBER_OF_CHANNELS_SUPPORTED(SocketID, NumberOfChannelsPerSocket)
|
|
||||||
// Specifies the number of channels per socket.
|
|
||||||
//
|
|
||||||
// OVERRIDE_DDR_BUS_SPEED(SocketID, ChannelID, USER_MEMORY_TIMING_MODE, MEMORY_BUS_SPEED)
|
|
||||||
// Specifies DDR bus speed of channel ChannelID on socket SocketID.
|
|
||||||
//
|
|
||||||
// DRAM_TECHNOLOGY(SocketID, TECHNOLOGY_TYPE)
|
|
||||||
// Specifies the DRAM technology type of socket SocketID (DDR2, DDR3,...)
|
|
||||||
//
|
|
||||||
// WRITE_LEVELING_SEED(SocketID, ChannelID, Byte0Seed, Byte1Seed, Byte2Seed, Byte3Seed, Byte4Seed, Byte5Seed,
|
|
||||||
// Byte6Seed, Byte7Seed, ByteEccSeed)
|
|
||||||
// Specifies the write leveling seed for a channel of a socket.
|
|
||||||
//
|
|
||||||
HW_RXEN_SEED (ANY_SOCKET, ANY_CHANNEL, 0x3B, 0x3B, 0x3B, 0x3B, 0x3B, 0x3B, 0x3B, 0x3B, 0x3B),
|
|
||||||
NUMBER_OF_DIMMS_SUPPORTED (ANY_SOCKET, ANY_CHANNEL, 2),
|
|
||||||
NUMBER_OF_CHANNELS_SUPPORTED (ANY_SOCKET, 1),
|
|
||||||
PSO_END
|
|
||||||
};
|
|
||||||
|
|
||||||
/*
|
|
||||||
* These tables are optional and may be used to adjust memory timing settings
|
|
||||||
*/
|
|
||||||
#include "mm.h"
|
|
||||||
#include "mn.h"
|
|
||||||
|
|
|
@ -19,6 +19,7 @@
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <northbridge/amd/agesa/agesawrapper.h>
|
#include <northbridge/amd/agesa/agesawrapper.h>
|
||||||
#include <vendorcode/amd/agesa/f14/Proc/CPU/heapManager.h>
|
#include <vendorcode/amd/agesa/f14/Proc/CPU/heapManager.h>
|
||||||
|
#include <PlatformMemoryConfiguration.h>
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* OemCustomizeInitEarly
|
* OemCustomizeInitEarly
|
||||||
|
@ -126,6 +127,34 @@ PCIe_COMPLEX_DESCRIPTOR Brazos = {
|
||||||
return AGESA_SUCCESS;
|
return AGESA_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*----------------------------------------------------------------------------------------
|
||||||
|
* CUSTOMER OVERIDES MEMORY TABLE
|
||||||
|
*----------------------------------------------------------------------------------------
|
||||||
|
*/
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Platform Specific Overriding Table allows IBV/OEM to pass in platform information to AGESA
|
||||||
|
* (e.g. MemClk routing, the number of DIMM slots per channel,...). If PlatformSpecificTable
|
||||||
|
* is populated, AGESA will base its settings on the data from the table. Otherwise, it will
|
||||||
|
* use its default conservative settings.
|
||||||
|
*/
|
||||||
|
CONST PSO_ENTRY ROMDATA DefaultPlatformMemoryConfiguration[] = {
|
||||||
|
|
||||||
|
NUMBER_OF_DIMMS_SUPPORTED (ANY_SOCKET, ANY_CHANNEL, TWO_DIMM),
|
||||||
|
NUMBER_OF_CHANNELS_SUPPORTED (ANY_SOCKET, ONE_DIMM),
|
||||||
|
|
||||||
|
// APU soldered down memory uses memory CLK0 and CLK1 on CS0
|
||||||
|
MEMCLK_DIS_MAP(ANY_SOCKET, ANY_CHANNEL, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00),
|
||||||
|
|
||||||
|
// APU soldered down memory requires different seeds
|
||||||
|
#define WLSEED 0x08
|
||||||
|
#define RXSEED 0x40
|
||||||
|
WRITE_LEVELING_SEED(ANY_SOCKET, ANY_CHANNEL, WLSEED, WLSEED, WLSEED, WLSEED, WLSEED, WLSEED, WLSEED, WLSEED, WLSEED),
|
||||||
|
HW_RXEN_SEED( ANY_SOCKET, ANY_CHANNEL, RXSEED, RXSEED, RXSEED, RXSEED, RXSEED, RXSEED, RXSEED, RXSEED, RXSEED),
|
||||||
|
|
||||||
|
PSO_END
|
||||||
|
};
|
||||||
|
|
||||||
const struct OEM_HOOK OemCustomize = {
|
const struct OEM_HOOK OemCustomize = {
|
||||||
.InitEarly = OemInitEarly,
|
.InitEarly = OemInitEarly,
|
||||||
};
|
};
|
||||||
|
|
|
@ -309,93 +309,3 @@ CONST AP_MTRR_SETTINGS ROMDATA OntarioApMtrrSettingsList[] =
|
||||||
|
|
||||||
// Instantiate all solution relevant data.
|
// Instantiate all solution relevant data.
|
||||||
#include "PlatformInstall.h"
|
#include "PlatformInstall.h"
|
||||||
|
|
||||||
/*----------------------------------------------------------------------------------------
|
|
||||||
* CUSTOMER OVERIDES MEMORY TABLE
|
|
||||||
*----------------------------------------------------------------------------------------
|
|
||||||
*/
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Platform Specific Overriding Table allows IBV/OEM to pass in platform information to AGESA
|
|
||||||
* (e.g. MemClk routing, the number of DIMM slots per channel,...). If PlatformSpecificTable
|
|
||||||
* is populated, AGESA will base its settings on the data from the table. Otherwise, it will
|
|
||||||
* use its default conservative settings.
|
|
||||||
*/
|
|
||||||
CONST PSO_ENTRY ROMDATA DefaultPlatformMemoryConfiguration[] = {
|
|
||||||
//
|
|
||||||
// The following macros are supported (use comma to separate macros):
|
|
||||||
//
|
|
||||||
// MEMCLK_DIS_MAP(SocketID, ChannelID, MemClkDisBit0CSMap,..., MemClkDisBit7CSMap)
|
|
||||||
// The MemClk pins are identified based on BKDG definition of Fn2x88[MemClkDis] bitmap.
|
|
||||||
// AGESA will base on this value to disable unused MemClk to save power.
|
|
||||||
// Example:
|
|
||||||
// BKDG definition of Fn2x88[MemClkDis] bitmap for AM3 package is like below:
|
|
||||||
// Bit AM3/S1g3 pin name
|
|
||||||
// 0 M[B,A]_CLK_H/L[0]
|
|
||||||
// 1 M[B,A]_CLK_H/L[1]
|
|
||||||
// 2 M[B,A]_CLK_H/L[2]
|
|
||||||
// 3 M[B,A]_CLK_H/L[3]
|
|
||||||
// 4 M[B,A]_CLK_H/L[4]
|
|
||||||
// 5 M[B,A]_CLK_H/L[5]
|
|
||||||
// 6 M[B,A]_CLK_H/L[6]
|
|
||||||
// 7 M[B,A]_CLK_H/L[7]
|
|
||||||
// And platform has the following routing:
|
|
||||||
// CS0 M[B,A]_CLK_H/L[4]
|
|
||||||
// CS1 M[B,A]_CLK_H/L[2]
|
|
||||||
// CS2 M[B,A]_CLK_H/L[3]
|
|
||||||
// CS3 M[B,A]_CLK_H/L[5]
|
|
||||||
// Then platform can specify the following macro:
|
|
||||||
// MEMCLK_DIS_MAP(ANY_SOCKET, ANY_CHANNEL, 0x00, 0x00, 0x02, 0x04, 0x01, 0x08, 0x00, 0x00)
|
|
||||||
//
|
|
||||||
// CKE_TRI_MAP(SocketID, ChannelID, CKETriBit0CSMap, CKETriBit1CSMap)
|
|
||||||
// The CKE pins are identified based on BKDG definition of Fn2x9C_0C[CKETri] bitmap.
|
|
||||||
// AGESA will base on this value to tristate unused CKE to save power.
|
|
||||||
//
|
|
||||||
// ODT_TRI_MAP(SocketID, ChannelID, ODTTriBit0CSMap,..., ODTTriBit3CSMap)
|
|
||||||
// The ODT pins are identified based on BKDG definition of Fn2x9C_0C[ODTTri] bitmap.
|
|
||||||
// AGESA will base on this value to tristate unused ODT pins to save power.
|
|
||||||
//
|
|
||||||
// CS_TRI_MAP(SocketID, ChannelID, CSTriBit0CSMap,..., CSTriBit7CSMap)
|
|
||||||
// The Chip select pins are identified based on BKDG definition of Fn2x9C_0C[ChipSelTri] bitmap.
|
|
||||||
// AGESA will base on this value to tristate unused Chip select to save power.
|
|
||||||
//
|
|
||||||
// NUMBER_OF_DIMMS_SUPPORTED(SocketID, ChannelID, NumberOfDimmSlotsPerChannel)
|
|
||||||
// Specifies the number of DIMM slots per channel.
|
|
||||||
//
|
|
||||||
// NUMBER_OF_CHIP_SELECTS_SUPPORTED(SocketID, ChannelID, NumberOfChipSelectsPerChannel)
|
|
||||||
// Specifies the number of Chip selects per channel.
|
|
||||||
//
|
|
||||||
// NUMBER_OF_CHANNELS_SUPPORTED(SocketID, NumberOfChannelsPerSocket)
|
|
||||||
// Specifies the number of channels per socket.
|
|
||||||
//
|
|
||||||
// OVERRIDE_DDR_BUS_SPEED(SocketID, ChannelID, USER_MEMORY_TIMING_MODE, MEMORY_BUS_SPEED)
|
|
||||||
// Specifies DDR bus speed of channel ChannelID on socket SocketID.
|
|
||||||
//
|
|
||||||
// DRAM_TECHNOLOGY(SocketID, TECHNOLOGY_TYPE)
|
|
||||||
// Specifies the DRAM technology type of socket SocketID (DDR2, DDR3,...)
|
|
||||||
//
|
|
||||||
// WRITE_LEVELING_SEED(SocketID, ChannelID, Byte0Seed, Byte1Seed, Byte2Seed, Byte3Seed, Byte4Seed, Byte5Seed,
|
|
||||||
// Byte6Seed, Byte7Seed, ByteEccSeed)
|
|
||||||
// Specifies the write leveling seed for a channel of a socket.
|
|
||||||
//
|
|
||||||
|
|
||||||
NUMBER_OF_DIMMS_SUPPORTED (ANY_SOCKET, ANY_CHANNEL, TWO_DIMM),
|
|
||||||
NUMBER_OF_CHANNELS_SUPPORTED (ANY_SOCKET, ONE_DIMM),
|
|
||||||
|
|
||||||
// APU soldered down memory uses memory CLK0 and CLK1 on CS0
|
|
||||||
MEMCLK_DIS_MAP(ANY_SOCKET, ANY_CHANNEL, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00),
|
|
||||||
|
|
||||||
// APU soldered down memory requires different seeds
|
|
||||||
#define WLSEED 0x08
|
|
||||||
#define RXSEED 0x40
|
|
||||||
WRITE_LEVELING_SEED(ANY_SOCKET, ANY_CHANNEL, WLSEED, WLSEED, WLSEED, WLSEED, WLSEED, WLSEED, WLSEED, WLSEED, WLSEED),
|
|
||||||
HW_RXEN_SEED( ANY_SOCKET, ANY_CHANNEL, RXSEED, RXSEED, RXSEED, RXSEED, RXSEED, RXSEED, RXSEED, RXSEED, RXSEED),
|
|
||||||
|
|
||||||
PSO_END
|
|
||||||
};
|
|
||||||
|
|
||||||
/*
|
|
||||||
* These tables are optional and may be used to adjust memory timing settings
|
|
||||||
*/
|
|
||||||
#include "mm.h"
|
|
||||||
#include "mn.h"
|
|
||||||
|
|
|
@ -2160,7 +2160,6 @@ CONST UINT32 ROMDATA AmdPlatformTypeCgf = CFG_AMD_PLATFORM_TYPE;
|
||||||
#include "OptionsHt.h"
|
#include "OptionsHt.h"
|
||||||
#include "OptionHtInstall.h"
|
#include "OptionHtInstall.h"
|
||||||
#include "OptionMemory.h"
|
#include "OptionMemory.h"
|
||||||
#include "PlatformMemoryConfiguration.h"
|
|
||||||
#include "OptionMemoryInstall.h"
|
#include "OptionMemoryInstall.h"
|
||||||
#include "OptionMemoryRecovery.h"
|
#include "OptionMemoryRecovery.h"
|
||||||
#include "OptionMemoryRecoveryInstall.h"
|
#include "OptionMemoryRecoveryInstall.h"
|
||||||
|
|
|
@ -2623,7 +2623,6 @@ CONST UINT32 ROMDATA AmdPlatformTypeCgf = CFG_AMD_PLATFORM_TYPE;
|
||||||
#include "OptionsHt.h"
|
#include "OptionsHt.h"
|
||||||
#include "OptionHtInstall.h"
|
#include "OptionHtInstall.h"
|
||||||
#include "OptionMemory.h"
|
#include "OptionMemory.h"
|
||||||
#include "PlatformMemoryConfiguration.h"
|
|
||||||
#include "OptionMemoryInstall.h"
|
#include "OptionMemoryInstall.h"
|
||||||
#include "OptionMemoryRecovery.h"
|
#include "OptionMemoryRecovery.h"
|
||||||
#include "OptionMemoryRecoveryInstall.h"
|
#include "OptionMemoryRecoveryInstall.h"
|
||||||
|
|
|
@ -1732,7 +1732,6 @@ CONST UINT32 ROMDATA AmdPlatformTypeCgf = CFG_AMD_PLATFORM_TYPE;
|
||||||
#include "OptionsHt.h"
|
#include "OptionsHt.h"
|
||||||
#include "OptionHtInstall.h"
|
#include "OptionHtInstall.h"
|
||||||
#include "OptionMemory.h"
|
#include "OptionMemory.h"
|
||||||
#include "PlatformMemoryConfiguration.h"
|
|
||||||
#include "OptionMemoryInstall.h"
|
#include "OptionMemoryInstall.h"
|
||||||
#include "OptionMemoryRecovery.h"
|
#include "OptionMemoryRecovery.h"
|
||||||
#include "OptionMemoryRecoveryInstall.h"
|
#include "OptionMemoryRecoveryInstall.h"
|
||||||
|
|
Loading…
Reference in New Issue