Some more DIMM0 related cleanups and deduplication.
[coreboot.git] / src / northbridge / intel / i945 / debug.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2007-2008 coresystems GmbH
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License as
8  * published by the Free Software Foundation; version 2 of
9  * the License.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston,
19  * MA 02110-1301 USA
20  */
21
22 #include <spd.h>
23 #include <lib.h>
24 #include <arch/io.h>
25 #include <arch/romcc_io.h>
26 #include <device/pci_def.h>
27 #include <console/console.h>
28 #include "i945.h"
29
30 void print_pci_devices(void)
31 {
32         device_t dev;
33         for(dev = PCI_DEV(0, 0, 0);
34                 dev <= PCI_DEV(0, 0x1f, 0x7);
35                 dev += PCI_DEV(0,0,1)) {
36                 uint32_t id;
37                 id = pci_read_config32(dev, PCI_VENDOR_ID);
38                 if (((id & 0xffff) == 0x0000) || ((id & 0xffff) == 0xffff) ||
39                         (((id >> 16) & 0xffff) == 0xffff) ||
40                         (((id >> 16) & 0xffff) == 0x0000)) {
41                         continue;
42                 }
43                 printk(BIOS_DEBUG, "PCI: %02x:%02x.%02x", (dev >> 20) & 0xff,
44                         (dev >> 15) & 0x1f, (dev >> 12) & 7);
45                 printk(BIOS_DEBUG, " [%04x:%04x]\n", id &0xffff, id >> 16);
46         }
47 }
48
49 void dump_pci_device(unsigned dev)
50 {
51         int i;
52
53         printk(BIOS_DEBUG, "PCI: %02x:%02x.%02x\n", (dev >> 20) & 0xff, (dev >> 15) & 0x1f, (dev >> 12) & 7);
54
55         for(i = 0; i <= 255; i++) {
56                 unsigned char val;
57                 if ((i & 0x0f) == 0) {
58                         printk(BIOS_DEBUG, "%02x:", i);
59                 }
60                 val = pci_read_config8(dev, i);
61                 printk(BIOS_DEBUG, " %02x", val);
62                 if ((i & 0x0f) == 0x0f) {
63                         printk(BIOS_DEBUG, "\n");
64                 }
65         }
66 }
67
68 void dump_pci_devices(void)
69 {
70         device_t dev;
71         for(dev = PCI_DEV(0, 0, 0);
72                 dev <= PCI_DEV(0, 0x1f, 0x7);
73                 dev += PCI_DEV(0,0,1)) {
74                 uint32_t id;
75                 id = pci_read_config32(dev, PCI_VENDOR_ID);
76                 if (((id & 0xffff) == 0x0000) || ((id & 0xffff) == 0xffff) ||
77                         (((id >> 16) & 0xffff) == 0xffff) ||
78                         (((id >> 16) & 0xffff) == 0x0000)) {
79                         continue;
80                 }
81                 dump_pci_device(dev);
82         }
83 }
84
85 void dump_spd_registers(void)
86 {
87         unsigned device;
88         device = DIMM0;
89         while(device <= DIMM3) {
90                 int status = 0;
91                 int i;
92                 printk(BIOS_DEBUG, "\ndimm %02x", device);
93
94                 for(i = 0; (i < 256) ; i++) {
95                         if ((i % 16) == 0) {
96                                 printk(BIOS_DEBUG, "\n%02x: ", i);
97                         }
98                         status = smbus_read_byte(device, i);
99                         if (status < 0) {
100                                  printk(BIOS_DEBUG, "bad device: %02x\n", -status);
101                                  break;
102                         }
103                         printk(BIOS_DEBUG, "%02x ", status);
104                 }
105                 device++;
106                 printk(BIOS_DEBUG, "\n");
107         }
108 }
109
110 void dump_mem(unsigned start, unsigned end)
111 {
112         unsigned i;
113         print_debug("dump_mem:");
114         for(i=start;i<end;i++) {
115                 if((i & 0xf)==0) {
116                         printk(BIOS_DEBUG, "\n%08x:", i);
117                 }
118                 printk(BIOS_DEBUG, " %02x", (unsigned char)*((unsigned char *)i));
119         }
120         print_debug("\n");
121  }