aboutsummaryrefslogtreecommitdiff
path: root/src/vendorcode/amd/agesa/f15/Proc/Mem/Ps/OR/mpor3.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/vendorcode/amd/agesa/f15/Proc/Mem/Ps/OR/mpor3.c')
-rw-r--r--src/vendorcode/amd/agesa/f15/Proc/Mem/Ps/OR/mpor3.c228
1 files changed, 228 insertions, 0 deletions
diff --git a/src/vendorcode/amd/agesa/f15/Proc/Mem/Ps/OR/mpor3.c b/src/vendorcode/amd/agesa/f15/Proc/Mem/Ps/OR/mpor3.c
new file mode 100644
index 0000000000..f4464e938b
--- /dev/null
+++ b/src/vendorcode/amd/agesa/f15/Proc/Mem/Ps/OR/mpor3.c
@@ -0,0 +1,228 @@
+/* $NoKeywords:$ */
+/**
+ * @file
+ *
+ * mpor3.c
+ *
+ * Platform specific settings for OR
+ *
+ * @xrefitem bom "File Content Label" "Release Content"
+ * @e project: AGESA
+ * @e sub-project: (Mem/Ps)
+ * @e \$Revision: 44324 $ @e \$Date: 2010-12-22 02:16:51 -0700 (Wed, 22 Dec 2010) $
+ *
+ **/
+/*****************************************************************************
+ *
+ * Copyright (C) 2012 Advanced Micro Devices, Inc.
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions are met:
+ * * Redistributions of source code must retain the above copyright
+ * notice, this list of conditions and the following disclaimer.
+ * * Redistributions in binary form must reproduce the above copyright
+ * notice, this list of conditions and the following disclaimer in the
+ * documentation and/or other materials provided with the distribution.
+ * * Neither the name of Advanced Micro Devices, Inc. nor the names of
+ * its contributors may be used to endorse or promote products derived
+ * from this software without specific prior written permission.
+ *
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+ * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ * DISCLAIMED. IN NO EVENT SHALL ADVANCED MICRO DEVICES, INC. BE LIABLE FOR ANY
+ * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+ * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+ * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+ * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+ * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ *
+ * ***************************************************************************
+ *
+ */
+
+#include "AGESA.h"
+#include "AdvancedApi.h"
+#include "mport.h"
+#include "ma.h"
+#include "Ids.h"
+#include "cpuFamRegisters.h"
+#include "cpuRegisters.h"
+#include "mm.h"
+#include "mn.h"
+#include "mp.h"
+#include "Filecode.h"
+
+CODE_GROUP (G3_DXE)
+RDATA_GROUP (G3_DXE)
+
+
+
+#define FILECODE PROC_MEM_PS_OR_MPOR3_FILECODE
+/*----------------------------------------------------------------------------
+ * DEFINITIONS AND MACROS
+ *
+ *----------------------------------------------------------------------------
+ */
+
+/*----------------------------------------------------------------------------
+ * TYPEDEFS AND STRUCTURES
+ *
+ *----------------------------------------------------------------------------
+ */
+
+/*----------------------------------------------------------------------------
+ * PROTOTYPES OF LOCAL FUNCTIONS
+ *
+ *----------------------------------------------------------------------------
+ */
+/*
+ *-----------------------------------------------------------------------------
+ * EXPORTED FUNCTIONS
+ *
+ *-----------------------------------------------------------------------------
+ */
+//
+// Common tables of Orochi platform specific configuration
+//
+
+// MR0[WR]
+// Format :
+// D18F2x22C_dct[1:0][Twr], MR0[WR]
+//
+CONST PSCFG_MR0WR_ENTRY MR0WR[] = {
+ {0x10, 0},
+ {0x05, 1},
+ {0x06, 2},
+ {0x07, 3},
+ {0x08, 4},
+ {0x0A, 5},
+ {0x0C, 6},
+ {0x0E, 7}
+};
+CONST PSC_TBL_ENTRY MR0WrTblEntry = {
+ {PSCFG_MR0WR, DT_DONT_CARE, NOD_DONT_CARE, {AMD_FAMILY_15_OR, AMD_F15_ALL}, PT_DONT_CARE, DDR3_TECHNOLOGY},
+ sizeof (MR0WR) / sizeof (PSCFG_MR0WR_ENTRY),
+ (VOID *)&MR0WR
+};
+
+// MR0[CL]
+// Format :
+// D18F2x200_dct[1:0][Tcl], MR0[CL][3:1], MR0[CL][0]
+//
+CONST PSCFG_MR0CL_ENTRY MR0CL[] = {
+ {0x05, 1, 0},
+ {0x06, 2, 0},
+ {0x07, 3, 0},
+ {0x08, 4, 0},
+ {0x09, 5, 0},
+ {0x0A, 6, 0},
+ {0x0B, 7, 0},
+ {0x0C, 0, 1},
+ {0x0D, 1, 1},
+ {0x0E, 2, 1},
+ {0x0F, 3, 1},
+ {0x10, 4, 1}
+};
+CONST PSC_TBL_ENTRY MR0CLTblEntry = {
+ {PSCFG_MR0CL, DT_DONT_CARE, NOD_DONT_CARE, {AMD_FAMILY_15_OR, AMD_F15_ALL}, PT_DONT_CARE, DDR3_TECHNOLOGY},
+ sizeof (MR0CL) / sizeof (PSCFG_MR0CL_ENTRY),
+ (VOID *)&MR0CL
+};
+
+
+//
+// CKE tri-state
+//
+STATIC CONST UINT8 ROMDATA OrDdr3CKETri[] = {0x55, 0xAA};
+CONST PSC_TBL_ENTRY OrDdr3CKETriEnt = {
+ {PSCFG_CKETRI, DT_DONT_CARE, NOD_DONT_CARE, {AMD_FAMILY_15_OR, AMD_F15_ALL}, PT_DONT_CARE, DDR3_TECHNOLOGY},
+ sizeof (OrDdr3CKETri) / sizeof (UINT8),
+ (VOID *)&OrDdr3CKETri
+};
+
+
+//
+// ODT tri-state [UDIMM & RDIMM][1DPC & 2DPC]
+//
+// Bit 0: MEMODT[1,0][0]
+// Bit 1: MEMODT[1,0][1]
+// Bit 2: MEMODT[1,0][2]
+// Bit 3: MEMODT[1,0][3]
+//
+// Dimm 0 : BP_MEMCSx[1:0], BP_MEMODTx[2, 0]
+// Dimm 1 : BP_MEMCSx[3:2], BP_MEMODTx[3, 1]
+STATIC CONST UINT8 ROMDATA OrDdr3ODTTri[] = {0x01, 0x04, 0x02, 0x08};
+CONST PSC_TBL_ENTRY OrDdr3ODTTriEnt = {
+ {PSCFG_ODTTRI, UDIMM_TYPE + RDIMM_TYPE, _1DIMM + _2DIMM, {AMD_FAMILY_15_OR, AMD_F15_ALL}, PT_DONT_CARE, DDR3_TECHNOLOGY},
+ sizeof (OrDdr3ODTTri) / sizeof (UINT8),
+ (VOID *)&OrDdr3ODTTri
+};
+//
+// ODT tri-state [UDIMM & RDIMM][3DPC]
+//
+// Dimm 0: BP_MEMCSx[1:0], BP_MEMODTx[0]
+// Dimm 1: BP_MEMCSx[7:6, 3:2], BP_MEMODTx[3, 1]
+// Dimm 2: BP_MEMCSx[5:4], BP_MEMODTx[2]
+STATIC CONST UINT8 ROMDATA OrDdr3ODTTri3D[] = {0x03, 0x44, 0x30, 0x88};
+CONST PSC_TBL_ENTRY OrDdr3ODTTri3DEnt = {
+ {PSCFG_ODTTRI, UDIMM_TYPE + RDIMM_TYPE, _3DIMM, {AMD_FAMILY_15_OR, AMD_F15_ALL}, PT_DONT_CARE, DDR3_TECHNOLOGY},
+ sizeof (OrDdr3ODTTri3D) / sizeof (UINT8),
+ (VOID *)&OrDdr3ODTTri3D
+};
+
+
+//
+// ODT tri-state [LRDIMM][1DPC & 2DPC]
+//
+// Bit 0: MEMODT[1,0][0]
+// Bit 1: MEMODT[1,0][1]
+// Bit 2: MEMODT[1,0][2]
+// Bit 3: MEMODT[1,0][3]
+//
+// Dimm 0 : BP_MEMCSx[5:4, 1:0], BP_MEMODTx[2, 0]
+// Dimm 1 : BP_MEMCSx[7:6, 3:2], BP_MEMODTx[3, 1]
+// LR : Assert DIMM ODT0 only
+STATIC CONST UINT8 ROMDATA OrLRDdr3ODTTri[] = {0x03, 0x0C, 0x00, 0x00};
+CONST PSC_TBL_ENTRY OrLRDdr3ODTTriEnt = {
+ {PSCFG_ODTTRI, LRDIMM_TYPE, _1DIMM + _2DIMM, {AMD_FAMILY_15_OR, AMD_F15_ALL}, PT_DONT_CARE, DDR3_TECHNOLOGY},
+ sizeof (OrLRDdr3ODTTri) / sizeof (UINT8),
+ (VOID *)&OrLRDdr3ODTTri
+};
+
+//
+// ODT tri-state [LRDIMM][3DPC]
+//
+// Dimm 0: BP_MEMCSx[1:0], BP_MEMODTx[0]
+// Dimm 1: BP_MEMCSx[7:6, 3:2], BP_MEMODTx[3, 1]
+// Dimm 2: BP_MEMCSx[5:4], BP_MEMODTx[2]
+// LR : Assert DIMM ODT0 only
+STATIC CONST UINT8 ROMDATA OrLRDdr3ODTTri3D[] = {0x03, 0x0C, 0x30, 0xC0};
+CONST PSC_TBL_ENTRY OrLRDdr3ODTTri3DEnt = {
+ {PSCFG_ODTTRI, LRDIMM_TYPE, _3DIMM, {AMD_FAMILY_15_OR, AMD_F15_ALL}, PT_DONT_CARE, DDR3_TECHNOLOGY},
+ sizeof (OrLRDdr3ODTTri3D) / sizeof (UINT8),
+ (VOID *)&OrLRDdr3ODTTri3D
+};
+
+//
+// ChipSel tri-state [UDIMM]
+//
+STATIC CONST UINT8 ROMDATA OrUDdr3CSTri[] = {0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80};
+CONST PSC_TBL_ENTRY OrUDdr3CSTriEnt = {
+ {PSCFG_CSTRI, UDIMM_TYPE, NOD_DONT_CARE, {AMD_FAMILY_15_OR, AMD_F15_ALL}, PT_DONT_CARE, DDR3_TECHNOLOGY},
+ sizeof (OrUDdr3CSTri) / sizeof (UINT8),
+ (VOID *)&OrUDdr3CSTri
+};
+//
+// ChipSel tri-state [RDIMM & LRDIMM]
+// BIOS must not tri-state chip select pin corresponding to the second chip
+// select of a single rank registered dimm
+STATIC CONST UINT8 ROMDATA OrDdr3CSTri[] = {0x01, 0x03, 0x04, 0x0C, 0x10, 0x30, 0x40, 0xC0};
+CONST PSC_TBL_ENTRY OrDdr3CSTriEnt = {
+ {PSCFG_CSTRI, LRDIMM_TYPE + RDIMM_TYPE, NOD_DONT_CARE, {AMD_FAMILY_15_OR, AMD_F15_ALL}, PT_DONT_CARE, DDR3_TECHNOLOGY},
+ sizeof (OrDdr3CSTri) / sizeof (UINT8),
+ (VOID *)&OrDdr3CSTri
+};
+