/* $NoKeywords:$ */ /** * @file * * PCIe PIF initialization routine * * * * @xrefitem bom "File Content Label" "Release Content" * @e project: AGESA * @e sub-project: GNB * @e \$Revision: 63425 $ @e \$Date: 2011-12-22 11:24:10 -0600 (Thu, 22 Dec 2011) $ * */ /* ***************************************************************************** * * Copyright 2008 - 2012 ADVANCED MICRO DEVICES, INC. All Rights Reserved. * * AMD is granting you permission to use this software (the Materials) * pursuant to the terms and conditions of your Software License Agreement * with AMD. This header does *NOT* give you permission to use the Materials * or any rights under AMD's intellectual property. Your use of any portion * of these Materials shall constitute your acceptance of those terms and * conditions. If you do not agree to the terms and conditions of the Software * License Agreement, please do not use any portion of these Materials. * * CONFIDENTIALITY: The Materials and all other information, identified as * confidential and provided to you by AMD shall be kept confidential in * accordance with the terms and conditions of the Software License Agreement. * * LIMITATION OF LIABILITY: THE MATERIALS AND ANY OTHER RELATED INFORMATION * PROVIDED TO YOU BY AMD ARE PROVIDED "AS IS" WITHOUT ANY EXPRESS OR IMPLIED * WARRANTY OF ANY KIND, INCLUDING BUT NOT LIMITED TO WARRANTIES OF * MERCHANTABILITY, NONINFRINGEMENT, TITLE, FITNESS FOR ANY PARTICULAR PURPOSE, * OR WARRANTIES ARISING FROM CONDUCT, COURSE OF DEALING, OR USAGE OF TRADE. * IN NO EVENT SHALL AMD OR ITS LICENSORS BE LIABLE FOR ANY DAMAGES WHATSOEVER * (INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF PROFITS, BUSINESS * INTERRUPTION, OR LOSS OF INFORMATION) ARISING OUT OF AMD'S NEGLIGENCE, * GROSS NEGLIGENCE, THE USE OF OR INABILITY TO USE THE MATERIALS OR ANY OTHER * RELATED INFORMATION PROVIDED TO YOU BY AMD, EVEN IF AMD HAS BEEN ADVISED OF * THE POSSIBILITY OF SUCH DAMAGES. BECAUSE SOME JURISDICTIONS PROHIBIT THE * EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES, * THE ABOVE LIMITATION MAY NOT APPLY TO YOU. * * AMD does not assume any responsibility for any errors which may appear in * the Materials or any other related information provided to you by AMD, or * result from use of the Materials or any related information. * * You agree that you will not reverse engineer or decompile the Materials. * * NO SUPPORT OBLIGATION: AMD is not obligated to furnish, support, or make any * further information, software, technical information, know-how, or show-how * available to you. Additionally, AMD retains the right to modify the * Materials at any time, without notice, and is not obligated to provide such * modified Materials to you. * * U.S. GOVERNMENT RESTRICTED RIGHTS: The Materials are provided with * "RESTRICTED RIGHTS." Use, duplication, or disclosure by the Government is * subject to the restrictions as set forth in FAR 52.227-14 and * DFAR252.227-7013, et seq., or its successor. Use of the Materials by the * Government constitutes acknowledgement of AMD's proprietary rights in them. * * EXPORT ASSURANCE: You agree and certify that neither the Materials, nor any * direct product thereof will be exported directly or indirectly, into any * country prohibited by the United States Export Administration Act and the * regulations thereunder, without the required authorization from the U.S. * government nor will be used for any purpose prohibited by the same. * *************************************************************************** * */ /*---------------------------------------------------------------------------------------- * M O D U L E S U S E D *---------------------------------------------------------------------------------------- */ #include "AGESA.h" #include "Ids.h" #include "amdlib.h" #include "Gnb.h" #include "GnbPcie.h" #include "GnbCommonLib.h" #include "GnbPcieConfig.h" #include "GnbPcieInitLibV1.h" #include "GnbRegistersLN.h" #include "Filecode.h" #define FILECODE PROC_GNB_MODULES_GNBPCIEINITLIBV1_PCIEPHYSERVICES_FILECODE /*---------------------------------------------------------------------------------------- * D E F I N I T I O N S A N D M A C R O S *---------------------------------------------------------------------------------------- */ #define MAX_NUM_PHYs 2 #define MAX_NUM_LANE_PER_PHY 8 /*---------------------------------------------------------------------------------------- * T Y P E D E F S A N D S T R U C T U R E S *---------------------------------------------------------------------------------------- */ //Channel Type: LowLoss / HighLoss / Mob0db / Mob3db / Ext6db / Ext8db INT8 chtype_0 /* DeemphasisSel */ [] = { 1, 0, 1, 1, 0, 0}; INT8 chtype_1 /* DeemphGen1Nom */ [] = { 42, 42, 0, 0, 42, 42}; INT8 chtype_2 /* DeemPh35Gen2Nom */ [] = { 42, 64, 0, 42, 64, 77}; INT8 chtype_3 /* Deemph60Gen2NOm */ [] = { 42, 64, 0, 42, 64, 77}; /*---------------------------------------------------------------------------------------- * P R O T O T Y P E S O F L O C A L F U N C T I O N S *---------------------------------------------------------------------------------------- */ /*---------------------------------------------------------------------------------------- * E X P O R T E D F U N C T I O N S *---------------------------------------------------------------------------------------- */ /*----------------------------------------------------------------------------------------*/ /** * PHY lane ganging * * * * @param[out] Wrapper Pointer to internal configuration data area * @param[in] Pcie Pointer to global PCIe configuration */ VOID PciePhyApplyGanging ( IN PCIe_WRAPPER_CONFIG *Wrapper, IN PCIe_PLATFORM_CONFIG *Pcie ) { PCIe_ENGINE_CONFIG *EngineList; UINT8 GangMatrix [MAX_NUM_PHYs][MAX_NUM_LANE_PER_PHY]; UINT8 MasterMatrix [MAX_NUM_PHYs][MAX_NUM_LANE_PER_PHY]; UINT16 LoPhylane; UINT16 HiPhylane; UINT8 Phy; UINT16 Lane; UINT16 PhyLinkWidth; IDS_HDT_CONSOLE (GNB_TRACE, "PciePhyApplyGanging Enter\n"); LibAmdMemFill (GangMatrix, 0, sizeof (GangMatrix), GnbLibGetHeader (Pcie)); LibAmdMemFill (MasterMatrix, 0, sizeof (MasterMatrix), GnbLibGetHeader (Pcie)); EngineList = PcieConfigGetChildEngine (Wrapper); while (EngineList != NULL) { if (PcieLibIsEngineAllocated (EngineList)) { HiPhylane = PcieLibGetHiPhyLane (EngineList) - Wrapper->StartPhyLane; LoPhylane = PcieLibGetLoPhyLane (EngineList) - Wrapper->StartPhyLane; PhyLinkWidth = HiPhylane - LoPhylane + 1; if (PhyLinkWidth >= 8) { for (Lane = LoPhylane; Lane <= HiPhylane; Lane++) { ((UINT8 *) GangMatrix)[Lane] = 1; } } else { if (PhyLinkWidth > 0 && PhyLinkWidth < 4) { for (Lane = (LoPhylane / 4) * 4; Lane < (((LoPhylane / 4) * 4) + 4) ; Lane++) { ((UINT8 *) MasterMatrix)[Lane] = 1; } } } } EngineList = PcieLibGetNextDescriptor (EngineList); } for (Phy = 0; Phy < Wrapper->NumberOfPIFs; Phy++) { for (Lane = 0; Lane < MAX_NUM_LANE_PER_PHY; Lane++) { D0F0xE4_PHY_6005_STRUCT D0F0xE4_PHY_6005; D0F0xE4_PHY_6005.Value = PcieRegisterRead ( Wrapper, PHY_SPACE (Wrapper->WrapId, Phy, D0F0xE4_PHY_6005_ADDRESS + Lane * 0x80), Pcie ); D0F0xE4_PHY_6005.Field.GangedModeEn = GangMatrix [Phy][Lane]; D0F0xE4_PHY_6005.Field.IsOwnMstr = MasterMatrix [Phy][Lane]; PcieRegisterWrite ( Wrapper, PHY_SPACE (Wrapper->WrapId, Phy, D0F0xE4_PHY_6005_ADDRESS + Lane * 0x80), D0F0xE4_PHY_6005.Value, FALSE, Pcie ); } } IDS_HDT_CONSOLE (GNB_TRACE, "PciePhyApplyGanging Exit\n"); } /*----------------------------------------------------------------------------------------*/ /** * Point "virtual" PLL clock picker away from PCIe * * * * @param[in] Wrapper Pointer to internal configuration data area * @param[in] Pcie Pointer to global PCIe configuration */ VOID PciePhyAvertClockPickers ( IN PCIe_WRAPPER_CONFIG *Wrapper, IN PCIe_PLATFORM_CONFIG *Pcie ) { UINT32 DdiLanes; UINT8 Nibble; IDS_HDT_CONSOLE (GNB_TRACE, "PciePhyAvertClockPickers Enter\n"); DdiLanes = PcieUtilGetWrapperLaneBitMap (LANE_TYPE_DDI_PHY_NATIVE, 0, Wrapper); for (Nibble = 0; Nibble < 4; Nibble++) { if (DdiLanes & (0xf << (Nibble * 4))) { PcieRegisterRMW ( Wrapper, PHY_SPACE (Wrapper->WrapId, (Nibble >> 1), D0F0xE4_PHY_0009_ADDRESS + (Nibble & 0x1)), D0F0xE4_PHY_0009_PCIePllSel_MASK, 0x0 << D0F0xE4_PHY_0009_PCIePllSel_OFFSET, FALSE, Pcie ); PcieRegisterRMW ( Wrapper, PHY_SPACE (Wrapper->WrapId, (Nibble >> 1), D0F0xE4_PHY_000B_ADDRESS + (Nibble & 0x1)), D0F0xE4_PHY_000B_MargPktSbiEn_MASK | D0F0xE4_PHY_000B_PcieModeSbiEn_MASK, (0x0 << D0F0xE4_PHY_000B_MargPktSbiEn_OFFSET) | (0x0 << D0F0xE4_PHY_000B_PcieModeSbiEn_OFFSET), FALSE, Pcie ); } } IDS_HDT_CONSOLE (GNB_TRACE, "PciePhyAvertClockPickers Exit\n"); } /*----------------------------------------------------------------------------------------*/ /** * Set PHY channel characteristic * * * * @param[in] Engine Pointer to engine configuration * @param[in] Pcie Pointer to global PCIe configuration */ VOID PciePhyChannelCharacteristic ( IN PCIe_ENGINE_CONFIG *Engine, IN PCIe_PLATFORM_CONFIG *Pcie ) { PCIe_WRAPPER_CONFIG *Wrapper; UINT16 StartLane; UINT16 EndLane; UINT16 Lane; UINT8 ChannelType; Wrapper = PcieConfigGetParentWrapper (Engine); ChannelType = Engine->Type.Port.PortData.ChannelType; StartLane = MIN (Engine->EngineData.StartLane, Engine->EngineData.EndLane) - Wrapper->StartPhyLane; EndLane = MAX (Engine->EngineData.StartLane, Engine->EngineData.EndLane) - Wrapper->StartPhyLane; PcieRegisterRMW ( Wrapper, WRAP_SPACE (Wrapper->WrapId, D0F0xE4_WRAP_0803_ADDRESS + (Engine->Type.Port.PortId) * 0x100), D0F0xE4_WRAP_0903_StrapBifDeemphasisSel_MASK, chtype_0 /* DeemphasisSel */[ChannelType] << D0F0xE4_WRAP_0903_StrapBifDeemphasisSel_OFFSET, FALSE, Pcie ); for (Lane = StartLane; Lane <= EndLane; Lane++) { UINT16 PhyLane; UINT16 Phy; if (Lane < MAX_NUM_LANE_PER_PHY ) { Phy = 0; PhyLane = Lane; } else { Phy = 1; PhyLane = Lane - MAX_NUM_LANE_PER_PHY; } PcieRegisterRMW ( Wrapper, PHY_SPACE (Wrapper->WrapId, Phy, D0F0xE4_PHY_6006_ADDRESS + PhyLane * 0x80), D0F0xE4_PHY_6006_DeemphGen1Nom_MASK, chtype_1 /* DeemphGen1Nom */[ChannelType] << D0F0xE4_PHY_6006_DeemphGen1Nom_OFFSET, FALSE, Pcie ); PcieRegisterRMW ( Wrapper, PHY_SPACE (Wrapper->WrapId, Phy, D0F0xE4_PHY_6006_ADDRESS + PhyLane * 0x80), D0F0xE4_PHY_6006_Deemph35Gen2Nom_MASK, chtype_2 /* DeemPh35Gen2Nom */[ChannelType] << D0F0xE4_PHY_6006_Deemph35Gen2Nom_OFFSET, FALSE, Pcie ); PcieRegisterRMW ( Wrapper, PHY_SPACE (Wrapper->WrapId, Phy, D0F0xE4_PHY_6006_ADDRESS + PhyLane * 0x80), D0F0xE4_PHY_6006_Deemph60Gen2Nom_MASK, chtype_3 /* Deemph60Gen2NOm */[ChannelType] << D0F0xE4_PHY_6006_Deemph60Gen2Nom_OFFSET, FALSE, Pcie ); } } /*----------------------------------------------------------------------------------------*/ /** * DCC recalibration * * * * @param[in] Wrapper Pointer to internal configuration data area * @param[in] Pcie Pointer to global PCIe configuration */ AGESA_STATUS PciePhyForceDccRecalibration ( IN PCIe_WRAPPER_CONFIG *Wrapper, IN PCIe_PLATFORM_CONFIG *Pcie ) { UINT8 Phy; UINT8 PhyLane; for (Phy = 0; Phy < Wrapper->NumberOfPIFs; Phy++) { for (PhyLane = 0; PhyLane < MAX_NUM_LANE_PER_PHY; PhyLane++) { PcieRegisterWriteField ( Wrapper, PHY_SPACE (Wrapper->WrapId, Phy, D0F0xE4_PHY_4001_ADDRESS + PhyLane * 0x80), D0F0xE4_PHY_4001_ForceDccRecalc_OFFSET, D0F0xE4_PHY_4001_ForceDccRecalc_WIDTH, 0x1, FALSE, Pcie ); } } return AGESA_SUCCESS; }