2013-07-09 11:42:43 +02:00
|
|
|
/*
|
|
|
|
* This file is part of the coreboot project.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 Advanced Micro Devices, Inc.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; version 2 of the License.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
Remove address from GPLv2 headers
As per discussion with lawyers[tm], it's not a good idea to
shorten the license header too much - not for legal reasons
but because there are tools that look for them, and giving
them a standard pattern simplifies things.
However, we got confirmation that we don't have to update
every file ever added to coreboot whenever the FSF gets a
new lease, but can drop the address instead.
util/kconfig is excluded because that's imported code that
we may want to synchronize every now and then.
$ find * -type f -exec sed -i "s:Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, *MA[, ]*02110-1301[, ]*USA:Foundation, Inc.:" {} +
$ find * -type f -exec sed -i "s:Foundation, Inc., 51 Franklin Street, Suite 500, Boston, MA 02110-1335, USA:Foundation, Inc.:" {} +
$ find * -type f -exec sed -i "s:Foundation, Inc., 59 Temple Place[-, ]*Suite 330, Boston, MA *02111-1307[, ]*USA:Foundation, Inc.:" {} +
$ find * -type f -exec sed -i "s:Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.:Foundation, Inc.:" {} +
$ find * -type f
-a \! -name \*.patch \
-a \! -name \*_shipped \
-a \! -name LICENSE_GPL \
-a \! -name LGPL.txt \
-a \! -name COPYING \
-a \! -name DISCLAIMER \
-exec sed -i "/Foundation, Inc./ N;s:Foundation, Inc.* USA\.* *:Foundation, Inc. :;s:Foundation, Inc. $:Foundation, Inc.:" {} +
Change-Id: Icc968a5a5f3a5df8d32b940f9cdb35350654bef9
Signed-off-by: Patrick Georgi <pgeorgi@chromium.org>
Reviewed-on: http://review.coreboot.org/9233
Tested-by: build bot (Jenkins)
Reviewed-by: Vladimir Serbinenko <phcoder@gmail.com>
2015-03-26 15:17:45 +01:00
|
|
|
* Foundation, Inc.
|
2013-07-09 11:42:43 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "AGESA.h"
|
|
|
|
#include "amdlib.h"
|
|
|
|
#include "Ids.h"
|
|
|
|
#include "heapManager.h"
|
|
|
|
#include "Filecode.h"
|
|
|
|
|
2014-10-21 12:43:46 +02:00
|
|
|
#include <northbridge/amd/agesa/agesawrapper.h>
|
|
|
|
|
2013-07-09 11:42:43 +02:00
|
|
|
#define FILECODE PROC_GNB_PCIE_FAMILY_0X15_F15PCIECOMPLEXCONFIG_FILECODE
|
|
|
|
|
2013-07-11 06:24:47 +02:00
|
|
|
static const PCIe_PORT_DESCRIPTOR PortList [] = {
|
2013-07-09 11:42:43 +02:00
|
|
|
{
|
2015-05-23 13:27:44 +02:00
|
|
|
0,
|
2013-07-09 11:42:43 +02:00
|
|
|
PCIE_ENGINE_DATA_INITIALIZER (PciePortEngine, 3, 3),
|
|
|
|
PCIE_PORT_DATA_INITIALIZER_V2 (PortEnabled, ChannelTypeExt6db, 2, 5,
|
|
|
|
HotplugDisabled,
|
|
|
|
PcieGenMaxSupported,
|
|
|
|
PcieGenMaxSupported,
|
|
|
|
AspmDisabled, 0x01, 0)
|
|
|
|
},
|
|
|
|
/* Initialize Port descriptor (PCIe port, Lanes 1, PCI Device Number 2, ...) */
|
|
|
|
{
|
2015-05-23 13:27:44 +02:00
|
|
|
0,
|
2013-07-09 11:42:43 +02:00
|
|
|
PCIE_ENGINE_DATA_INITIALIZER (PciePortEngine, 2, 2),
|
|
|
|
PCIE_PORT_DATA_INITIALIZER_V2 (PortEnabled, ChannelTypeExt6db, 2, 4,
|
|
|
|
HotplugDisabled,
|
|
|
|
PcieGenMaxSupported,
|
|
|
|
PcieGenMaxSupported,
|
|
|
|
AspmDisabled, 0x02, 0)
|
|
|
|
},
|
|
|
|
/* Initialize Port descriptor (PCIe port, Lanes 2, PCI Device Number 2, ...) */
|
|
|
|
{
|
2015-05-23 13:27:44 +02:00
|
|
|
0,
|
2013-07-09 11:42:43 +02:00
|
|
|
PCIE_ENGINE_DATA_INITIALIZER (PciePortEngine, 1, 1),
|
|
|
|
PCIE_PORT_DATA_INITIALIZER_V2 (PortEnabled, ChannelTypeExt6db, 2, 3,
|
|
|
|
HotplugDisabled,
|
|
|
|
PcieGenMaxSupported,
|
|
|
|
PcieGenMaxSupported,
|
|
|
|
AspmDisabled, 0x03, 0)
|
|
|
|
},
|
|
|
|
/* Initialize Port descriptor (PCIe port, Lanes 3, PCI Device Number 2, ...) */
|
|
|
|
{
|
|
|
|
0,
|
|
|
|
PCIE_ENGINE_DATA_INITIALIZER (PciePortEngine, 0, 0),
|
|
|
|
PCIE_PORT_DATA_INITIALIZER_V2 (PortEnabled, ChannelTypeExt6db, 2, 2,
|
|
|
|
HotplugDisabled,
|
|
|
|
PcieGenMaxSupported,
|
|
|
|
PcieGenMaxSupported,
|
|
|
|
AspmDisabled, 0x04, 0)
|
|
|
|
},
|
|
|
|
/* Initialize Port descriptor (PCIe port, Lanes 4-7, PCI Device Number 4, ...) */
|
|
|
|
{
|
2015-05-23 13:27:44 +02:00
|
|
|
DESCRIPTOR_TERMINATE_LIST,
|
2013-07-09 11:42:43 +02:00
|
|
|
PCIE_ENGINE_DATA_INITIALIZER (PciePortEngine, 4, 7),
|
|
|
|
PCIE_PORT_DATA_INITIALIZER_V2 (PortEnabled, ChannelTypeExt6db, 2, 1,
|
|
|
|
HotplugDisabled,
|
|
|
|
PcieGenMaxSupported,
|
|
|
|
PcieGenMaxSupported,
|
|
|
|
AspmDisabled, 0x05, 0)
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-07-11 06:24:47 +02:00
|
|
|
static const PCIe_DDI_DESCRIPTOR DdiList [] = {
|
2013-07-09 11:42:43 +02:00
|
|
|
/* DP0 to HDMI0/DP */
|
|
|
|
{
|
|
|
|
0,
|
|
|
|
PCIE_ENGINE_DATA_INITIALIZER (PcieDdiEngine, 8, 11),
|
|
|
|
PCIE_DDI_DATA_INITIALIZER (ConnectorTypeDP, Aux1, Hdp1)
|
|
|
|
},
|
|
|
|
/* DP1 to FCH */
|
|
|
|
{
|
|
|
|
0,
|
|
|
|
PCIE_ENGINE_DATA_INITIALIZER (PcieDdiEngine, 12, 15),
|
|
|
|
PCIE_DDI_DATA_INITIALIZER (ConnectorTypeDP, Aux2, Hdp2)
|
|
|
|
},
|
|
|
|
/* DP2 to HDMI1/DP */
|
|
|
|
{
|
|
|
|
DESCRIPTOR_TERMINATE_LIST,
|
|
|
|
PCIE_ENGINE_DATA_INITIALIZER (PcieDdiEngine, 16, 19),
|
|
|
|
PCIE_DDI_DATA_INITIALIZER (ConnectorTypeCrt, Aux3, Hdp3)
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2013-07-11 06:24:47 +02:00
|
|
|
static const PCIe_COMPLEX_DESCRIPTOR PcieComplex = {
|
|
|
|
.Flags = DESCRIPTOR_TERMINATE_LIST,
|
|
|
|
.SocketId = 0,
|
|
|
|
.PciePortList = PortList,
|
|
|
|
.DdiLinkList = DdiList
|
2013-07-09 11:42:43 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/*---------------------------------------------------------------------------------------*/
|
|
|
|
/**
|
|
|
|
* OemCustomizeInitEarly
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* This is the stub function will call the host environment through the binary block
|
|
|
|
* interface (call-out port) to provide a user hook opportunity
|
|
|
|
*
|
|
|
|
* Parameters:
|
|
|
|
* @param[in] *InitEarly
|
|
|
|
*
|
|
|
|
* @retval VOID
|
|
|
|
*
|
|
|
|
**/
|
|
|
|
/*---------------------------------------------------------------------------------------*/
|
2014-12-16 06:34:58 +01:00
|
|
|
|
|
|
|
static AGESA_STATUS OemInitEarly(AMD_EARLY_PARAMS * InitEarly)
|
2013-07-09 11:42:43 +02:00
|
|
|
{
|
2013-07-11 06:24:47 +02:00
|
|
|
AGESA_STATUS Status;
|
|
|
|
PCIe_COMPLEX_DESCRIPTOR *PcieComplexListPtr;
|
2013-07-09 11:42:43 +02:00
|
|
|
|
|
|
|
ALLOCATE_HEAP_PARAMS AllocHeapParams;
|
|
|
|
|
|
|
|
/* GNB PCIe topology Porting */
|
|
|
|
|
|
|
|
/* */
|
|
|
|
/* Allocate buffer for PCIe_COMPLEX_DESCRIPTOR , PCIe_PORT_DESCRIPTOR and PCIe_DDI_DESCRIPTOR */
|
|
|
|
/* */
|
2013-07-11 06:24:47 +02:00
|
|
|
AllocHeapParams.RequestedBufferSize = sizeof(PcieComplex);
|
2013-07-09 11:42:43 +02:00
|
|
|
|
|
|
|
AllocHeapParams.BufferHandle = AMD_MEM_MISC_HANDLES_START;
|
|
|
|
AllocHeapParams.Persist = HEAP_LOCAL_CACHE;
|
|
|
|
Status = HeapAllocateBuffer (&AllocHeapParams, &InitEarly->StdHeader);
|
2014-12-16 15:45:52 +01:00
|
|
|
ASSERT(Status == AGESA_SUCCESS);
|
2013-07-09 11:42:43 +02:00
|
|
|
|
2013-07-11 06:24:47 +02:00
|
|
|
PcieComplexListPtr = (PCIe_COMPLEX_DESCRIPTOR *) AllocHeapParams.BufferPtr;
|
|
|
|
LibAmdMemCopy (PcieComplexListPtr, &PcieComplex, sizeof(PcieComplex), &InitEarly->StdHeader);
|
|
|
|
InitEarly->GnbConfig.PcieComplexList = PcieComplexListPtr;
|
2014-12-16 06:34:58 +01:00
|
|
|
return AGESA_SUCCESS;
|
2013-07-09 11:42:43 +02:00
|
|
|
}
|
2014-12-16 06:34:58 +01:00
|
|
|
|
2014-12-16 08:29:56 +01:00
|
|
|
static AGESA_STATUS OemInitMid(AMD_MID_PARAMS * InitMid)
|
|
|
|
{
|
|
|
|
/* 0 iGpuVgaAdapter, 1 iGpuVgaNonAdapter; */
|
|
|
|
InitMid->GnbMidConfiguration.iGpuVgaMode = 0;
|
|
|
|
return AGESA_SUCCESS;
|
|
|
|
}
|
|
|
|
|
2014-12-16 06:34:58 +01:00
|
|
|
const struct OEM_HOOK OemCustomize = {
|
|
|
|
.InitEarly = OemInitEarly,
|
2014-12-16 08:29:56 +01:00
|
|
|
.InitMid = OemInitMid,
|
2014-12-16 06:34:58 +01:00
|
|
|
};
|