northbridge/amd/amdfam10: Add family15h model10h-1fh (Trinity)
Change-Id: I96d695ed10176276116fcf3a2b77605fb3f2d5db Signed-off-by: Damien Zammit <damien@zamaudio.com> Reviewed-on: https://review.coreboot.org/13710 Tested-by: build bot (Jenkins) Tested-by: Raptor Engineering Automated Test Stand <noreply@raptorengineeringinc.com> Reviewed-by: Martin Roth <martinroth@google.com>
This commit is contained in:
parent
27e085a8ee
commit
33aaa921f7
|
@ -101,6 +101,7 @@ uint64_t mctGetLogicalCPUID(u32 Node)
|
||||||
ret = AMD_OR_B2;
|
ret = AMD_OR_B2;
|
||||||
break;
|
break;
|
||||||
case 0x15020:
|
case 0x15020:
|
||||||
|
case 0x15101:
|
||||||
ret = AMD_OR_C0;
|
ret = AMD_OR_C0;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
* This file is part of the coreboot project.
|
* This file is part of the coreboot project.
|
||||||
*
|
*
|
||||||
* Copyright (C) 2015 Timothy Pearson <tpearson@raptorengineeringinc.com>, Raptor Engineering
|
* Copyright (C) 2015 Timothy Pearson <tpearson@raptorengineeringinc.com>, Raptor Engineering
|
||||||
|
* Copyright (C) 2016 Damien Zammit <damien@zamaudio.com>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* 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
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
@ -154,6 +155,12 @@ static const struct pci_driver mcf4_driver_fam10 __pci_driver = {
|
||||||
.device = 0x1204,
|
.device = 0x1204,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static const struct pci_driver mcf4_driver_fam15_model10 __pci_driver = {
|
||||||
|
.ops = &mcf4_ops,
|
||||||
|
.vendor = PCI_VENDOR_ID_AMD,
|
||||||
|
.device = 0x1404,
|
||||||
|
};
|
||||||
|
|
||||||
static const struct pci_driver mcf4_driver_fam15 __pci_driver = {
|
static const struct pci_driver mcf4_driver_fam15 __pci_driver = {
|
||||||
.ops = &mcf4_ops,
|
.ops = &mcf4_ops,
|
||||||
.vendor = PCI_VENDOR_ID_AMD,
|
.vendor = PCI_VENDOR_ID_AMD,
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
* Copyright (C) Stefan Reinauer
|
* Copyright (C) Stefan Reinauer
|
||||||
* Copyright (C) 2007 Advanced Micro Devices, Inc.
|
* Copyright (C) 2007 Advanced Micro Devices, Inc.
|
||||||
* Copyright (C) 2015 Timothy Pearson <tpearson@raptorengineeringinc.com>, Raptor Engineering
|
* Copyright (C) 2015 Timothy Pearson <tpearson@raptorengineeringinc.com>, Raptor Engineering
|
||||||
|
* Copyright (C) 2016 Damien Zammit <damien@zamaudio.com>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* 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
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
@ -117,16 +118,25 @@ static void set_agp_aperture(device_t dev, uint32_t pci_id)
|
||||||
|
|
||||||
static void mcf3_set_resources_fam10h(device_t dev)
|
static void mcf3_set_resources_fam10h(device_t dev)
|
||||||
{
|
{
|
||||||
/* Set the gart apeture */
|
/* Set the gart aperture */
|
||||||
set_agp_aperture(dev, 0x1203);
|
set_agp_aperture(dev, 0x1203);
|
||||||
|
|
||||||
/* Set the generic PCI resources */
|
/* Set the generic PCI resources */
|
||||||
pci_dev_set_resources(dev);
|
pci_dev_set_resources(dev);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static void mcf3_set_resources_fam15h_model10(device_t dev)
|
||||||
|
{
|
||||||
|
/* Set the gart aperture */
|
||||||
|
set_agp_aperture(dev, 0x1403);
|
||||||
|
|
||||||
|
/* Set the generic PCI resources */
|
||||||
|
pci_dev_set_resources(dev);
|
||||||
|
}
|
||||||
|
|
||||||
static void mcf3_set_resources_fam15h(device_t dev)
|
static void mcf3_set_resources_fam15h(device_t dev)
|
||||||
{
|
{
|
||||||
/* Set the gart apeture */
|
/* Set the gart aperture */
|
||||||
set_agp_aperture(dev, 0x1603);
|
set_agp_aperture(dev, 0x1603);
|
||||||
|
|
||||||
/* Set the generic PCI resources */
|
/* Set the generic PCI resources */
|
||||||
|
@ -175,6 +185,15 @@ static struct device_operations mcf3_ops_fam10h = {
|
||||||
.ops_pci = 0,
|
.ops_pci = 0,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static struct device_operations mcf3_ops_fam15h_model10 = {
|
||||||
|
.read_resources = mcf3_read_resources,
|
||||||
|
.set_resources = mcf3_set_resources_fam15h_model10,
|
||||||
|
.enable_resources = pci_dev_enable_resources,
|
||||||
|
.init = misc_control_init,
|
||||||
|
.scan_bus = 0,
|
||||||
|
.ops_pci = 0,
|
||||||
|
};
|
||||||
|
|
||||||
static struct device_operations mcf3_ops_fam15h = {
|
static struct device_operations mcf3_ops_fam15h = {
|
||||||
.read_resources = mcf3_read_resources,
|
.read_resources = mcf3_read_resources,
|
||||||
.set_resources = mcf3_set_resources_fam15h,
|
.set_resources = mcf3_set_resources_fam15h,
|
||||||
|
@ -190,6 +209,12 @@ static const struct pci_driver mcf3_driver __pci_driver = {
|
||||||
.device = 0x1203,
|
.device = 0x1203,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static const struct pci_driver mcf3_driver_fam15_model10 __pci_driver = {
|
||||||
|
.ops = &mcf3_ops_fam15h_model10,
|
||||||
|
.vendor = PCI_VENDOR_ID_AMD,
|
||||||
|
.device = 0x1403,
|
||||||
|
};
|
||||||
|
|
||||||
static const struct pci_driver mcf3_driver_fam15 __pci_driver = {
|
static const struct pci_driver mcf3_driver_fam15 __pci_driver = {
|
||||||
.ops = &mcf3_ops_fam15h,
|
.ops = &mcf3_ops_fam15h,
|
||||||
.vendor = PCI_VENDOR_ID_AMD,
|
.vendor = PCI_VENDOR_ID_AMD,
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
* This file is part of the coreboot project.
|
* This file is part of the coreboot project.
|
||||||
*
|
*
|
||||||
* Copyright (C) 2015 Timothy Pearson <tpearson@raptorengineeringinc.com>, Raptor Engineering
|
* Copyright (C) 2015 Timothy Pearson <tpearson@raptorengineeringinc.com>, Raptor Engineering
|
||||||
|
* Copyright (C) 2016 Damien Zammit <damien@zamaudio.com>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* 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
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
@ -64,7 +65,6 @@ static void nb_control_init(struct device *dev)
|
||||||
printk(BIOS_DEBUG, "done.\n");
|
printk(BIOS_DEBUG, "done.\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
static struct device_operations mcf5_ops = {
|
static struct device_operations mcf5_ops = {
|
||||||
.read_resources = pci_dev_read_resources,
|
.read_resources = pci_dev_read_resources,
|
||||||
.set_resources = pci_dev_set_resources,
|
.set_resources = pci_dev_set_resources,
|
||||||
|
@ -74,6 +74,12 @@ static struct device_operations mcf5_ops = {
|
||||||
.ops_pci = 0,
|
.ops_pci = 0,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static const struct pci_driver mcf5_driver_fam15_model10 __pci_driver = {
|
||||||
|
.ops = &mcf5_ops,
|
||||||
|
.vendor = PCI_VENDOR_ID_AMD,
|
||||||
|
.device = 0x1405,
|
||||||
|
};
|
||||||
|
|
||||||
static const struct pci_driver mcf5_driver_fam15 __pci_driver = {
|
static const struct pci_driver mcf5_driver_fam15 __pci_driver = {
|
||||||
.ops = &mcf5_ops,
|
.ops = &mcf5_ops,
|
||||||
.vendor = PCI_VENDOR_ID_AMD,
|
.vendor = PCI_VENDOR_ID_AMD,
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
/*
|
/*
|
||||||
* This file is part of the coreboot project.
|
* This file is part of the coreboot project.
|
||||||
*
|
*
|
||||||
|
* Copyright (C) 2016 Damien Zammit <damien@zamaudio.com>
|
||||||
* Copyright (C) 2015 Timothy Pearson <tpearson@raptorengineeringinc.com>, Raptor Engineering
|
* Copyright (C) 2015 Timothy Pearson <tpearson@raptorengineeringinc.com>, Raptor Engineering
|
||||||
* Copyright (C) 2007 Advanced Micro Devices, Inc.
|
* Copyright (C) 2007 Advanced Micro Devices, Inc.
|
||||||
*
|
*
|
||||||
|
@ -673,26 +674,29 @@ static struct device_operations northbridge_operations = {
|
||||||
.ops_pci = 0,
|
.ops_pci = 0,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
static const struct pci_driver mcf0_driver __pci_driver = {
|
static const struct pci_driver mcf0_driver __pci_driver = {
|
||||||
.ops = &northbridge_operations,
|
.ops = &northbridge_operations,
|
||||||
.vendor = PCI_VENDOR_ID_AMD,
|
.vendor = PCI_VENDOR_ID_AMD,
|
||||||
.device = 0x1200,
|
.device = 0x1200,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
static void amdfam10_nb_init(void *chip_info)
|
static void amdfam10_nb_init(void *chip_info)
|
||||||
{
|
{
|
||||||
relocate_sb_ht_chain();
|
relocate_sb_ht_chain();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static const struct pci_driver mcf0_driver_fam15_model10 __pci_driver = {
|
||||||
|
.ops = &northbridge_operations,
|
||||||
|
.vendor = PCI_VENDOR_ID_AMD,
|
||||||
|
.device = 0x1400,
|
||||||
|
};
|
||||||
|
|
||||||
static const struct pci_driver mcf0_driver_fam15 __pci_driver = {
|
static const struct pci_driver mcf0_driver_fam15 __pci_driver = {
|
||||||
.ops = &northbridge_operations,
|
.ops = &northbridge_operations,
|
||||||
.vendor = PCI_VENDOR_ID_AMD,
|
.vendor = PCI_VENDOR_ID_AMD,
|
||||||
.device = 0x1600,
|
.device = 0x1600,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
struct chip_operations northbridge_amd_amdfam10_ops = {
|
struct chip_operations northbridge_amd_amdfam10_ops = {
|
||||||
CHIP_NAME("AMD Family 10h/15h Northbridge")
|
CHIP_NAME("AMD Family 10h/15h Northbridge")
|
||||||
.enable_dev = 0,
|
.enable_dev = 0,
|
||||||
|
|
|
@ -579,6 +579,9 @@ static uint16_t mct_MaxLoadFreq(uint8_t count, uint8_t highest_rank_count, uint8
|
||||||
//G34
|
//G34
|
||||||
#elif CONFIG_CPU_SOCKET_TYPE == 0x15
|
#elif CONFIG_CPU_SOCKET_TYPE == 0x15
|
||||||
#include "../amdmct/mct_ddr3/mctardk5.c"
|
#include "../amdmct/mct_ddr3/mctardk5.c"
|
||||||
|
//FM2
|
||||||
|
#elif CONFIG_CPU_SOCKET_TYPE == 0x16
|
||||||
|
#include "../amdmct/mct_ddr3/mctardk5.c"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#else /* DDR2 */
|
#else /* DDR2 */
|
||||||
|
|
|
@ -258,6 +258,11 @@ static BOOL AMD_CB_IgnoreLink (u8 node, u8 link)
|
||||||
static void amd_ht_init(struct sys_info *sysinfo)
|
static void amd_ht_init(struct sys_info *sysinfo)
|
||||||
{
|
{
|
||||||
|
|
||||||
|
if (!sysinfo) {
|
||||||
|
printk(BIOS_DEBUG, "Skipping amd_ht_init()\n");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
AMD_HTBLOCK ht_wrapper = {
|
AMD_HTBLOCK ht_wrapper = {
|
||||||
NULL, // u8 **topolist;
|
NULL, // u8 **topolist;
|
||||||
0, // u8 AutoBusStart;
|
0, // u8 AutoBusStart;
|
||||||
|
|
|
@ -162,3 +162,4 @@
|
||||||
#define AMD_PKGTYPE_G34 3
|
#define AMD_PKGTYPE_G34 3
|
||||||
#define AMD_PKGTYPE_ASB2 4
|
#define AMD_PKGTYPE_ASB2 4
|
||||||
#define AMD_PKGTYPE_C32 5
|
#define AMD_PKGTYPE_C32 5
|
||||||
|
#define AMD_PKGTYPE_FM2 6
|
||||||
|
|
|
@ -6850,10 +6850,15 @@ static void mct_InitialMCT_D(struct MCTStatStruc *pMCTstat, struct DCTStatStruc
|
||||||
static u32 mct_NodePresent_D(void)
|
static u32 mct_NodePresent_D(void)
|
||||||
{
|
{
|
||||||
u32 val;
|
u32 val;
|
||||||
if (is_fam15h())
|
if (is_fam15h()) {
|
||||||
|
if (is_model10_1f()) {
|
||||||
|
val = 0x14001022;
|
||||||
|
} else {
|
||||||
val = 0x16001022;
|
val = 0x16001022;
|
||||||
else
|
}
|
||||||
|
} else {
|
||||||
val = 0x12001022;
|
val = 0x12001022;
|
||||||
|
}
|
||||||
return val;
|
return val;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue