northbridge/amd/lx: Remove commented code

Change-Id: I37c1674ee380936aba797e24897593fcca3b0269
Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/16891
Tested-by: build bot (Jenkins)
Reviewed-by: Martin Roth <martinroth@google.com>
This commit is contained in:
Elyes HAOUAS 2016-10-05 18:40:51 +02:00 committed by Martin Roth
parent e809dd3a84
commit 1a77fd3e36
2 changed files with 0 additions and 53 deletions

View File

@ -293,37 +293,17 @@ static void enable_shadow(device_t dev)
static void northbridge_init(device_t dev)
{
//msr_t msr;
printk(BIOS_SPEW, ">> Entering northbridge.c: %s\n", __func__);
enable_shadow(dev);
/*
* Swiss cheese
*/
//msr = rdmsr(MSR_GLIU0_SHADOW);
//msr.hi |= 0x3;
//msr.lo |= 0x30000;
//printk(BIOS_DEBUG, "MSR 0x%08X is now 0x%08X:0x%08X\n", MSR_GLIU0_SHADOW, msr.hi, msr.lo);
//printk(BIOS_DEBUG, "MSR 0x%08X is now 0x%08X:0x%08X\n", MSR_GLIU1_SHADOW, msr.hi, msr.lo);
}
static void northbridge_set_resources(struct device *dev)
{
uint8_t line;
#if 0
struct resource *res;
for (res = dev->resource_list; res; res = res->next) {
// andrei: do not change the base address, it will make the VSA virtual registers unusable
//pci_set_resource(dev, res);
// FIXME: static allocation may conflict with dynamic mappings!
}
#endif
struct bus *bus;
for (bus = dev->link_list; bus; bus = bus->next) {
if (bus->children) {
@ -400,12 +380,8 @@ static void pci_domain_enable(device_t dev)
cpubug();
chipsetinit();
// print_conf();
do_vsmbios(); // do the magic stuff here, so prepare your tambourine;)
// print_conf();
graphics_init();
}

View File

@ -65,21 +65,6 @@ static void pll_reset(void)
return;
}
#if 0 // Unused
static unsigned int CPUSpeed(void)
{
unsigned int speed;
msr_t msr;
msr = rdmsr(GLCP_SYS_RSTPLL);
speed = ((((msr.hi >> RSTPLL_UPPER_CPUMULT_SHIFT) & 0x1F) + 1) * 333) / 10;
if ((((((msr.hi >> RSTPLL_UPPER_CPUMULT_SHIFT) & 0x1F) + 1) * 333) % 10) > 5) {
++speed;
}
return (speed);
}
#endif
unsigned int GeodeLinkSpeed(void)
{
unsigned int speed;
@ -92,17 +77,3 @@ unsigned int GeodeLinkSpeed(void)
}
return (speed);
}
#if 0 // Unused
static unsigned int PCISpeed(void)
{
msr_t msr;
msr = rdmsr(GLCP_SYS_RSTPLL);
if (msr.hi & (1 << RSTPPL_LOWER_PCISPEED_SHIFT)) {
return (66);
} else {
return (33);
}
}
#endif