blob: 34745a0f57216c75b20499d30c6095f6597e5260 [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
Myles Watson0520d552009-05-11 22:44:14 +000068#if HAVE_HIGH_TABLES==1
69#define HIGH_TABLES_SIZE 64 // maximum size of high tables in KB
70extern uint64_t high_tables_base, high_tables_size;
71#endif
72
Eric Biederman6e53f502004-10-27 08:53:57 +000073static void pci_domain_set_resources(device_t dev)
74{
Ronald G. Minnich9cf642b2006-09-13 04:12:35 +000075 static const uint8_t ramregs[] = {
76 0x5a, 0x5b, 0x5c, 0x5d, 0x5e, 0x5f, 0x56, 0x57
77 };
Eric Biederman6e53f502004-10-27 08:53:57 +000078 device_t mc_dev;
Eric Biederman018d8dd2004-11-04 11:04:33 +000079 uint32_t pci_tolm;
Eric Biederman6e53f502004-10-27 08:53:57 +000080
Eric Biederman018d8dd2004-11-04 11:04:33 +000081 pci_tolm = find_pci_tolm(&dev->link[0]);
Eric Biederman6e53f502004-10-27 08:53:57 +000082 mc_dev = dev->link[0].children;
83 if (mc_dev) {
84 unsigned long tomk, tolmk;
Ronald G. Minnich9cf642b2006-09-13 04:12:35 +000085 unsigned char rambits;
86 int i, idx;
87
Carl-Daniel Hailfinger2ee67792008-10-01 12:52:52 +000088 for(rambits = 0, i = 0; i < ARRAY_SIZE(ramregs); i++) {
Ronald G. Minnich9cf642b2006-09-13 04:12:35 +000089 unsigned char reg;
90 reg = pci_read_config8(mc_dev, ramregs[i]);
Myles Watson032a9652009-05-11 22:24:53 +000091 /* these are ENDING addresses, not sizes.
Ronald G. Minnich9cf642b2006-09-13 04:12:35 +000092 * if there is memory in this slot, then reg will be > rambits.
Myles Watson032a9652009-05-11 22:24:53 +000093 * So we just take the max, that gives us total.
Stefan Reinauerf8ee1802008-01-18 15:08:58 +000094 * We take the highest one to cover for once and future coreboot
Ronald G. Minnich9cf642b2006-09-13 04:12:35 +000095 * bugs. We warn about bugs.
96 */
97 if (reg > rambits)
98 rambits = reg;
99 if (reg < rambits)
Myles Watson032a9652009-05-11 22:24:53 +0000100 printk_err("ERROR! register 0x%x is not set!\n",
Ronald G. Minnich9cf642b2006-09-13 04:12:35 +0000101 ramregs[i]);
102 }
103 if (rambits == 0) {
104 printk_err("RAM size config registers are empty; defaulting to 64 MBytes\n");
105 rambits = 8;
106 }
107 printk_debug("I would set ram size to 0x%x Kbytes\n", (rambits)*8*1024);
108 tomk = rambits*8*1024;
Eric Biederman6e53f502004-10-27 08:53:57 +0000109 /* Compute the top of Low memory */
110 tolmk = pci_tolm >> 10;
111 if (tolmk >= tomk) {
Myles Watson032a9652009-05-11 22:24:53 +0000112 /* The PCI hole does not overlap the memory. */
Eric Biederman6e53f502004-10-27 08:53:57 +0000113 tolmk = tomk;
114 }
Myles Watson032a9652009-05-11 22:24:53 +0000115
116 /* Report the memory regions. */
Eric Biederman6e53f502004-10-27 08:53:57 +0000117 idx = 10;
Myles Watson0520d552009-05-11 22:44:14 +0000118 ram_resource(dev, idx++, 0, 640);
119 ram_resource(dev, idx++, 768, tolmk - 768);
120
121#if HAVE_HIGH_TABLES==1
122 /* Leave some space for ACPI, PIRQ and MP tables */
123 high_tables_base = (tomk - HIGH_TABLES_SIZE) * 1024;
124 high_tables_size = HIGH_TABLES_SIZE * 1024;
125#endif
Stefan Reinauere2b53e12004-06-28 11:59:45 +0000126 }
Eric Biederman6e53f502004-10-27 08:53:57 +0000127 assign_resources(&dev->link[0]);
128}
Stefan Reinauere2b53e12004-06-28 11:59:45 +0000129
Eric Biederman6e53f502004-10-27 08:53:57 +0000130static unsigned int pci_domain_scan_bus(device_t dev, unsigned int max)
131{
Eric Biederman018d8dd2004-11-04 11:04:33 +0000132 max = pci_scan_bus(&dev->link[0], PCI_DEVFN(0, 0), 0xff, max);
133 return max;
Eric Biederman6e53f502004-10-27 08:53:57 +0000134}
135
136static struct device_operations pci_domain_ops = {
Myles Watson032a9652009-05-11 22:24:53 +0000137 .read_resources = pci_domain_read_resources,
138 .set_resources = pci_domain_set_resources,
139 .enable_resources = enable_childrens_resources,
140 .init = 0,
141 .scan_bus = pci_domain_scan_bus,
142};
Eric Biederman6e53f502004-10-27 08:53:57 +0000143
144static void enable_dev(struct device *dev)
145{
Eric Biederman018d8dd2004-11-04 11:04:33 +0000146 /* Set the operations if it is a special bus type */
147 if (dev->path.type == DEVICE_PATH_PCI_DOMAIN) {
148 dev->ops = &pci_domain_ops;
Eric Biedermana9e632c2004-11-18 22:38:08 +0000149 pci_set_method(dev);
Eric Biederman018d8dd2004-11-04 11:04:33 +0000150 }
Stefan Reinauere2b53e12004-06-28 11:59:45 +0000151}
152
Myles Watsonb8c2aa22008-02-07 20:37:37 +0000153struct chip_operations cpu_emulation_qemu_x86_ops = {
Eric Biederman018d8dd2004-11-04 11:04:33 +0000154 CHIP_NAME("QEMU Northbridge")
Eric Biederman6e53f502004-10-27 08:53:57 +0000155 .enable_dev = enable_dev,
Stefan Reinauere2b53e12004-06-28 11:59:45 +0000156};
Stefan Reinauer246ae212005-09-08 17:17:25 +0000157
158void udelay(int usecs)
159{
160 int i;
161 for(i = 0; i < usecs; i++)
Stefan Reinauer8e65adb2008-08-13 12:16:15 +0000162 inb(0x80);
Stefan Reinauer246ae212005-09-08 17:17:25 +0000163}
164
165