aboutsummaryrefslogtreecommitdiff
path: root/src/northbridge
diff options
context:
space:
mode:
authorRonald G. Minnich <rminnich@gmail.com>2004-08-23 21:04:36 +0000
committerRonald G. Minnich <rminnich@gmail.com>2004-08-23 21:04:36 +0000
commit300e1b569addfc617db3bd1fa9ee0b33d8c65072 (patch)
tree484cf357efd9c3e9e2e88d2510572011f81cbc0d /src/northbridge
parent92d159f27d7ccf8165ce7dae2dd616baa6ca544f (diff)
random fixes.
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1632 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/northbridge')
-rw-r--r--src/northbridge/transmeta/tm5800/Config.lb1
-rw-r--r--src/northbridge/transmeta/tm5800/debug.c91
-rw-r--r--src/northbridge/transmeta/tm5800/northbridge.h6
3 files changed, 3 insertions, 95 deletions
diff --git a/src/northbridge/transmeta/tm5800/Config.lb b/src/northbridge/transmeta/tm5800/Config.lb
index c4ed559da3..fab87f8eeb 100644
--- a/src/northbridge/transmeta/tm5800/Config.lb
+++ b/src/northbridge/transmeta/tm5800/Config.lb
@@ -1,5 +1,4 @@
config chip.h
object northbridge.o
-driver misc_control.o
diff --git a/src/northbridge/transmeta/tm5800/debug.c b/src/northbridge/transmeta/tm5800/debug.c
index 40296ee3c8..2c052741f6 100644
--- a/src/northbridge/transmeta/tm5800/debug.c
+++ b/src/northbridge/transmeta/tm5800/debug.c
@@ -68,94 +68,3 @@ static void dump_pci_devices(void)
dump_pci_device(dev);
}
}
-
-static void dump_spd_registers(const struct mem_controller *ctrl)
-{
- int i;
- print_debug("\r\n");
- for(i = 0; i < 4; i++) {
- unsigned device;
- device = ctrl->channel0[i];
- if (device) {
- int j;
- print_debug("dimm: ");
- print_debug_hex8(i);
- print_debug(".0: ");
- print_debug_hex8(device);
- for(j = 0; j < 256; j++) {
- int status;
- unsigned char byte;
- if ((j & 0xf) == 0) {
- print_debug("\r\n");
- print_debug_hex8(j);
- print_debug(": ");
- }
- status = smbus_read_byte(device, j);
- if (status < 0) {
- print_debug("bad device\r\n");
- break;
- }
- byte = status & 0xff;
- print_debug_hex8(byte);
- print_debug_char(' ');
- }
- print_debug("\r\n");
- }
- device = ctrl->channel1[i];
- if (device) {
- int j;
- print_debug("dimm: ");
- print_debug_hex8(i);
- print_debug(".1: ");
- print_debug_hex8(device);
- for(j = 0; j < 256; j++) {
- int status;
- unsigned char byte;
- if ((j & 0xf) == 0) {
- print_debug("\r\n");
- print_debug_hex8(j);
- print_debug(": ");
- }
- status = smbus_read_byte(device, j);
- if (status < 0) {
- print_debug("bad device\r\n");
- break;
- }
- byte = status & 0xff;
- print_debug_hex8(byte);
- print_debug_char(' ');
- }
- print_debug("\r\n");
- }
- }
-}
-static void dump_smbus_registers(void)
-{
- int i;
- print_debug("\r\n");
- for(i = 1; i < 0x80; i++) {
- unsigned device;
- device = i;
- int j;
- print_debug("smbus: ");
- print_debug_hex8(device);
- for(j = 0; j < 256; j++) {
- int status;
- unsigned char byte;
- if ((j & 0xf) == 0) {
- print_debug("\r\n");
- print_debug_hex8(j);
- print_debug(": ");
- }
- status = smbus_read_byte(device, j);
- if (status < 0) {
- print_debug("bad device\r\n");
- break;
- }
- byte = status & 0xff;
- print_debug_hex8(byte);
- print_debug_char(' ');
- }
- print_debug("\r\n");
- }
-}
diff --git a/src/northbridge/transmeta/tm5800/northbridge.h b/src/northbridge/transmeta/tm5800/northbridge.h
index 6d3b60f25b..07ac989736 100644
--- a/src/northbridge/transmeta/tm5800/northbridge.h
+++ b/src/northbridge/transmeta/tm5800/northbridge.h
@@ -1,5 +1,5 @@
-#ifndef NORTHBRIDGE_AMD_AMDK8_H
-#define NORTHBRIDGE_AMD_AMDK8_H
+#ifndef NORTHBRIDGE_TRANSMETA_TM58000_H
+#define NORTHBRIDGE_TRANSMETA_TM58000_H
-#endif /* NORTHBRIDGE_AMD_AMDK8_H */
+#endif /* NORTHBRIDGE_TRANSMETA_TM58000_H */