aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2016-10-05 18:40:51 +0200
committerMartin Roth <martinroth@google.com>2016-10-09 21:31:11 +0200
commit1a77fd3e369d9330b9abf04ac6b0d804a11e1e3e (patch)
treef5b9eddc127701bf2f3e596224dce9dd81ec19b1 /src
parente809dd3a84a7ea07cec0dc4acedd73f50363661f (diff)
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>
Diffstat (limited to 'src')
-rw-r--r--src/northbridge/amd/lx/northbridge.c24
-rw-r--r--src/northbridge/amd/lx/pll_reset.c29
2 files changed, 0 insertions, 53 deletions
diff --git a/src/northbridge/amd/lx/northbridge.c b/src/northbridge/amd/lx/northbridge.c
index 4b6090f1e5..f0304becef 100644
--- a/src/northbridge/amd/lx/northbridge.c
+++ b/src/northbridge/amd/lx/northbridge.c
@@ -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();
}
diff --git a/src/northbridge/amd/lx/pll_reset.c b/src/northbridge/amd/lx/pll_reset.c
index 318c7a1be0..d98a8ea1b6 100644
--- a/src/northbridge/amd/lx/pll_reset.c
+++ b/src/northbridge/amd/lx/pll_reset.c
@@ -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