blob: f005fab8524cfa2a3e26798df462bd8f0e4181c8 [file] [log] [blame]
Stefan Reinauere2b53e12004-06-28 11:59:45 +00001#include <console/console.h>
2#include <arch/io.h>
3#include <stdint.h>
Stefan Reinauere2b53e12004-06-28 11:59:45 +00004#include <device/device.h>
5#include <device/pci.h>
Stefan Reinauere2b53e12004-06-28 11:59:45 +00006#include <stdlib.h>
7#include <string.h>
8#include <bitops.h>
9#include "chip.h"
10#include "northbridge.h"
11
Eric Biederman6e53f502004-10-27 08:53:57 +000012#define BRIDGE_IO_MASK (IORESOURCE_IO | IORESOURCE_MEM)
13
14static void pci_domain_read_resources(device_t dev)
Stefan Reinauere2b53e12004-06-28 11:59:45 +000015{
Eric Biederman018d8dd2004-11-04 11:04:33 +000016 struct resource *resource;
Stefan Reinauere2b53e12004-06-28 11:59:45 +000017
Eric Biederman018d8dd2004-11-04 11:04:33 +000018 /* Initialize the system wide io space constraints */
19 resource = new_resource(dev, IOINDEX_SUBTRACTIVE(0,0));
20 resource->limit = 0xffffUL;
21 resource->flags = IORESOURCE_IO | IORESOURCE_SUBTRACTIVE | IORESOURCE_ASSIGNED;
Eric Biederman6e53f502004-10-27 08:53:57 +000022
Eric Biederman018d8dd2004-11-04 11:04:33 +000023 /* Initialize the system wide memory resources constraints */
24 resource = new_resource(dev, IOINDEX_SUBTRACTIVE(1,0));
25 resource->limit = 0xffffffffULL;
26 resource->flags = IORESOURCE_MEM | IORESOURCE_SUBTRACTIVE | IORESOURCE_ASSIGNED;
Eric Biederman6e53f502004-10-27 08:53:57 +000027}
28
Stefan Reinauere4932dc2004-11-02 20:33:12 +000029static void ram_resource(device_t dev, unsigned long index,
Eric Biederman018d8dd2004-11-04 11:04:33 +000030 unsigned long basek, unsigned long sizek)
Stefan Reinauere4932dc2004-11-02 20:33:12 +000031{
Eric Biederman018d8dd2004-11-04 11:04:33 +000032 struct resource *resource;
Stefan Reinauere4932dc2004-11-02 20:33:12 +000033
Eric Biederman018d8dd2004-11-04 11:04:33 +000034 if (!sizek) {
35 return;
36 }
37 resource = new_resource(dev, index);
38 resource->base = ((resource_t)basek) << 10;
39 resource->size = ((resource_t)sizek) << 10;
40 resource->flags = IORESOURCE_MEM | IORESOURCE_CACHEABLE | \
41 IORESOURCE_FIXED | IORESOURCE_STORED | IORESOURCE_ASSIGNED;
Stefan Reinauere4932dc2004-11-02 20:33:12 +000042}
43
Eric Biederman018d8dd2004-11-04 11:04:33 +000044static void tolm_test(void *gp, struct device *dev, struct resource *new)
45{
46 struct resource **best_p = gp;
47 struct resource *best;
48 best = *best_p;
49 if (!best || (best->base > new->base)) {
50 best = new;
51 }
52 *best_p = best;
53}
54
55static uint32_t find_pci_tolm(struct bus *bus)
56{
57 struct resource *min;
58 uint32_t tolm;
59 min = 0;
60 search_bus_resources(bus, IORESOURCE_MEM, IORESOURCE_MEM, tolm_test, &min);
61 tolm = 0xffffffffUL;
62 if (min && tolm > min->base) {
63 tolm = min->base;
64 }
65 return tolm;
66}
Stefan Reinauere4932dc2004-11-02 20:33:12 +000067
Eric Biederman6e53f502004-10-27 08:53:57 +000068static void pci_domain_set_resources(device_t dev)
69{
Ronald G. Minnich9cf642b2006-09-13 04:12:35 +000070 static const uint8_t ramregs[] = {
71 0x5a, 0x5b, 0x5c, 0x5d, 0x5e, 0x5f, 0x56, 0x57
72 };
Eric Biederman6e53f502004-10-27 08:53:57 +000073 device_t mc_dev;
Eric Biederman018d8dd2004-11-04 11:04:33 +000074 uint32_t pci_tolm;
Eric Biederman6e53f502004-10-27 08:53:57 +000075
Eric Biederman018d8dd2004-11-04 11:04:33 +000076 pci_tolm = find_pci_tolm(&dev->link[0]);
Eric Biederman6e53f502004-10-27 08:53:57 +000077 mc_dev = dev->link[0].children;
78 if (mc_dev) {
79 unsigned long tomk, tolmk;
Ronald G. Minnich9cf642b2006-09-13 04:12:35 +000080 unsigned char rambits;
81 int i, idx;
82
Carl-Daniel Hailfinger2ee67792008-10-01 12:52:52 +000083 for(rambits = 0, i = 0; i < ARRAY_SIZE(ramregs); i++) {
Ronald G. Minnich9cf642b2006-09-13 04:12:35 +000084 unsigned char reg;
85 reg = pci_read_config8(mc_dev, ramregs[i]);
86 /* these are ENDING addresses, not sizes.
87 * if there is memory in this slot, then reg will be > rambits.
88 * So we just take the max, that gives us total.
Stefan Reinauerf8ee1802008-01-18 15:08:58 +000089 * We take the highest one to cover for once and future coreboot
Ronald G. Minnich9cf642b2006-09-13 04:12:35 +000090 * bugs. We warn about bugs.
91 */
92 if (reg > rambits)
93 rambits = reg;
94 if (reg < rambits)
95 printk_err("ERROR! register 0x%x is not set!\n",
96 ramregs[i]);
97 }
98 if (rambits == 0) {
99 printk_err("RAM size config registers are empty; defaulting to 64 MBytes\n");
100 rambits = 8;
101 }
102 printk_debug("I would set ram size to 0x%x Kbytes\n", (rambits)*8*1024);
103 tomk = rambits*8*1024;
Eric Biederman6e53f502004-10-27 08:53:57 +0000104 /* Compute the top of Low memory */
105 tolmk = pci_tolm >> 10;
106 if (tolmk >= tomk) {
107 /* The PCI hole does not overlap memory.
108 */
109 tolmk = tomk;
110 }
Eric Biederman6e53f502004-10-27 08:53:57 +0000111 /* Report the memory regions */
112 idx = 10;
Ronald G. Minnich9cf642b2006-09-13 04:12:35 +0000113 ram_resource(dev, idx++, 0, tolmk);
Stefan Reinauere2b53e12004-06-28 11:59:45 +0000114 }
Eric Biederman6e53f502004-10-27 08:53:57 +0000115 assign_resources(&dev->link[0]);
116}
Stefan Reinauere2b53e12004-06-28 11:59:45 +0000117
Eric Biederman6e53f502004-10-27 08:53:57 +0000118static unsigned int pci_domain_scan_bus(device_t dev, unsigned int max)
119{
Eric Biederman018d8dd2004-11-04 11:04:33 +0000120 max = pci_scan_bus(&dev->link[0], PCI_DEVFN(0, 0), 0xff, max);
121 return max;
Eric Biederman6e53f502004-10-27 08:53:57 +0000122}
123
124static struct device_operations pci_domain_ops = {
Eric Biederman018d8dd2004-11-04 11:04:33 +0000125 .read_resources = pci_domain_read_resources,
126 .set_resources = pci_domain_set_resources,
127 .enable_resources = enable_childrens_resources,
128 .init = 0,
129 .scan_bus = pci_domain_scan_bus,
Eric Biederman6e53f502004-10-27 08:53:57 +0000130};
131
132static void enable_dev(struct device *dev)
133{
Eric Biederman018d8dd2004-11-04 11:04:33 +0000134 /* Set the operations if it is a special bus type */
135 if (dev->path.type == DEVICE_PATH_PCI_DOMAIN) {
136 dev->ops = &pci_domain_ops;
Eric Biedermana9e632c2004-11-18 22:38:08 +0000137 pci_set_method(dev);
Eric Biederman018d8dd2004-11-04 11:04:33 +0000138 }
Stefan Reinauere2b53e12004-06-28 11:59:45 +0000139}
140
Myles Watsonb8c2aa22008-02-07 20:37:37 +0000141struct chip_operations cpu_emulation_qemu_x86_ops = {
Eric Biederman018d8dd2004-11-04 11:04:33 +0000142 CHIP_NAME("QEMU Northbridge")
Eric Biederman6e53f502004-10-27 08:53:57 +0000143 .enable_dev = enable_dev,
Stefan Reinauere2b53e12004-06-28 11:59:45 +0000144};
Stefan Reinauer246ae212005-09-08 17:17:25 +0000145
146void udelay(int usecs)
147{
148 int i;
149 for(i = 0; i < usecs; i++)
Stefan Reinauer8e65adb2008-08-13 12:16:15 +0000150 inb(0x80);
Stefan Reinauer246ae212005-09-08 17:17:25 +0000151}
152
153