random fixes.
authorRonald G. Minnich <rminnich@gmail.com>
Mon, 23 Aug 2004 21:04:36 +0000 (21:04 +0000)
committerRonald G. Minnich <rminnich@gmail.com>
Mon, 23 Aug 2004 21:04:36 +0000 (21:04 +0000)
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@1632 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1

src/northbridge/transmeta/tm5800/Config.lb
src/northbridge/transmeta/tm5800/debug.c
src/northbridge/transmeta/tm5800/northbridge.h

index c4ed559da32cdbe1ea56ecbd36a85ec94ca5a08b..fab87f8eebfd8733581e6212b701394b237bb8d0 100644 (file)
@@ -1,5 +1,4 @@
 
 config chip.h
 object northbridge.o
-driver misc_control.o
 
index 40296ee3c8cd9948a62c59b74bfbed3246ad1e5c..2c052741f696a917e1455e7849a5fe845d227fa6 100644 (file)
@@ -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");
-       }       
-}
index 6d3b60f25b8cc558195fd9a1a060b37eaf76ce4e..07ac989736db51becd19d38db443086fd1341516 100644 (file)
@@ -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 */