blob: 7c3c18095c37cf22d4e49d8ab79286499ed8ad38 [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
Stefan Reinauere4932dc2004-11-02 20:33:12 +000012static void ram_resource(device_t dev, unsigned long index,
Eric Biederman018d8dd2004-11-04 11:04:33 +000013 unsigned long basek, unsigned long sizek)
Stefan Reinauere4932dc2004-11-02 20:33:12 +000014{
Eric Biederman018d8dd2004-11-04 11:04:33 +000015 struct resource *resource;
Stefan Reinauere4932dc2004-11-02 20:33:12 +000016
Eric Biederman018d8dd2004-11-04 11:04:33 +000017 if (!sizek) {
18 return;
19 }
20 resource = new_resource(dev, index);
21 resource->base = ((resource_t)basek) << 10;
22 resource->size = ((resource_t)sizek) << 10;
23 resource->flags = IORESOURCE_MEM | IORESOURCE_CACHEABLE | \
24 IORESOURCE_FIXED | IORESOURCE_STORED | IORESOURCE_ASSIGNED;
Stefan Reinauere4932dc2004-11-02 20:33:12 +000025}
26
Eric Biederman018d8dd2004-11-04 11:04:33 +000027static void tolm_test(void *gp, struct device *dev, struct resource *new)
28{
29 struct resource **best_p = gp;
30 struct resource *best;
31 best = *best_p;
32 if (!best || (best->base > new->base)) {
33 best = new;
34 }
35 *best_p = best;
36}
37
38static uint32_t find_pci_tolm(struct bus *bus)
39{
40 struct resource *min;
41 uint32_t tolm;
42 min = 0;
43 search_bus_resources(bus, IORESOURCE_MEM, IORESOURCE_MEM, tolm_test, &min);
44 tolm = 0xffffffffUL;
45 if (min && tolm > min->base) {
46 tolm = min->base;
47 }
48 return tolm;
49}
Stefan Reinauere4932dc2004-11-02 20:33:12 +000050
Myles Watsonb8e20272009-10-15 13:35:47 +000051#if CONFIG_WRITE_HIGH_TABLES==1
Myles Watson0520d552009-05-11 22:44:14 +000052#define HIGH_TABLES_SIZE 64 // maximum size of high tables in KB
53extern uint64_t high_tables_base, high_tables_size;
54#endif
55
Myles Watson29cc9ed2009-07-02 18:56:24 +000056static void cpu_pci_domain_set_resources(device_t dev)
Eric Biederman6e53f502004-10-27 08:53:57 +000057{
Ronald G. Minnich9cf642b2006-09-13 04:12:35 +000058 static const uint8_t ramregs[] = {
59 0x5a, 0x5b, 0x5c, 0x5d, 0x5e, 0x5f, 0x56, 0x57
60 };
Eric Biederman6e53f502004-10-27 08:53:57 +000061 device_t mc_dev;
Eric Biederman018d8dd2004-11-04 11:04:33 +000062 uint32_t pci_tolm;
Eric Biederman6e53f502004-10-27 08:53:57 +000063
Eric Biederman018d8dd2004-11-04 11:04:33 +000064 pci_tolm = find_pci_tolm(&dev->link[0]);
Eric Biederman6e53f502004-10-27 08:53:57 +000065 mc_dev = dev->link[0].children;
66 if (mc_dev) {
67 unsigned long tomk, tolmk;
Ronald G. Minnich9cf642b2006-09-13 04:12:35 +000068 unsigned char rambits;
69 int i, idx;
70
Carl-Daniel Hailfinger2ee67792008-10-01 12:52:52 +000071 for(rambits = 0, i = 0; i < ARRAY_SIZE(ramregs); i++) {
Ronald G. Minnich9cf642b2006-09-13 04:12:35 +000072 unsigned char reg;
73 reg = pci_read_config8(mc_dev, ramregs[i]);
Myles Watson032a9652009-05-11 22:24:53 +000074 /* these are ENDING addresses, not sizes.
Ronald G. Minnich9cf642b2006-09-13 04:12:35 +000075 * if there is memory in this slot, then reg will be > rambits.
Myles Watson032a9652009-05-11 22:24:53 +000076 * So we just take the max, that gives us total.
Stefan Reinauerf8ee1802008-01-18 15:08:58 +000077 * We take the highest one to cover for once and future coreboot
Ronald G. Minnich9cf642b2006-09-13 04:12:35 +000078 * bugs. We warn about bugs.
79 */
80 if (reg > rambits)
81 rambits = reg;
82 if (reg < rambits)
Myles Watson032a9652009-05-11 22:24:53 +000083 printk_err("ERROR! register 0x%x is not set!\n",
Ronald G. Minnich9cf642b2006-09-13 04:12:35 +000084 ramregs[i]);
85 }
86 if (rambits == 0) {
87 printk_err("RAM size config registers are empty; defaulting to 64 MBytes\n");
88 rambits = 8;
89 }
90 printk_debug("I would set ram size to 0x%x Kbytes\n", (rambits)*8*1024);
91 tomk = rambits*8*1024;
Eric Biederman6e53f502004-10-27 08:53:57 +000092 /* Compute the top of Low memory */
93 tolmk = pci_tolm >> 10;
94 if (tolmk >= tomk) {
Myles Watson032a9652009-05-11 22:24:53 +000095 /* The PCI hole does not overlap the memory. */
Eric Biederman6e53f502004-10-27 08:53:57 +000096 tolmk = tomk;
97 }
Myles Watson032a9652009-05-11 22:24:53 +000098
99 /* Report the memory regions. */
Eric Biederman6e53f502004-10-27 08:53:57 +0000100 idx = 10;
Myles Watson0520d552009-05-11 22:44:14 +0000101 ram_resource(dev, idx++, 0, 640);
102 ram_resource(dev, idx++, 768, tolmk - 768);
103
Myles Watsonb8e20272009-10-15 13:35:47 +0000104#if CONFIG_WRITE_HIGH_TABLES==1
Myles Watson0520d552009-05-11 22:44:14 +0000105 /* Leave some space for ACPI, PIRQ and MP tables */
106 high_tables_base = (tomk - HIGH_TABLES_SIZE) * 1024;
107 high_tables_size = HIGH_TABLES_SIZE * 1024;
108#endif
Stefan Reinauere2b53e12004-06-28 11:59:45 +0000109 }
Eric Biederman6e53f502004-10-27 08:53:57 +0000110 assign_resources(&dev->link[0]);
111}
Stefan Reinauere2b53e12004-06-28 11:59:45 +0000112
Myles Watson29cc9ed2009-07-02 18:56:24 +0000113static void cpu_pci_domain_read_resources(struct device *dev)
Eric Biederman6e53f502004-10-27 08:53:57 +0000114{
Myles Watson29cc9ed2009-07-02 18:56:24 +0000115 struct resource *res;
116
117 pci_domain_read_resources(dev);
118
119 /* Reserve space for the IOAPIC. This should be in the Southbridge,
120 * but I couldn't tell which device to put it in. */
121 res = new_resource(dev, 2);
122 res->base = 0xfec00000UL;
123 res->size = 0x100000UL;
124 res->limit = 0xffffffffUL;
125 res->flags = IORESOURCE_MEM | IORESOURCE_FIXED | IORESOURCE_STORED |
126 IORESOURCE_ASSIGNED;
127
128 /* Reserve space for the LAPIC. There's one in every processor, but
129 * the space only needs to be reserved once, so we do it here. */
130 res = new_resource(dev, 3);
131 res->base = 0xfee00000UL;
132 res->size = 0x10000UL;
133 res->limit = 0xffffffffUL;
134 res->flags = IORESOURCE_MEM | IORESOURCE_FIXED | IORESOURCE_STORED |
135 IORESOURCE_ASSIGNED;
Eric Biederman6e53f502004-10-27 08:53:57 +0000136}
137
138static struct device_operations pci_domain_ops = {
Myles Watson29cc9ed2009-07-02 18:56:24 +0000139 .read_resources = cpu_pci_domain_read_resources,
140 .set_resources = cpu_pci_domain_set_resources,
Myles Watson032a9652009-05-11 22:24:53 +0000141 .enable_resources = enable_childrens_resources,
142 .init = 0,
143 .scan_bus = pci_domain_scan_bus,
144};
Eric Biederman6e53f502004-10-27 08:53:57 +0000145
146static void enable_dev(struct device *dev)
147{
Eric Biederman018d8dd2004-11-04 11:04:33 +0000148 /* Set the operations if it is a special bus type */
149 if (dev->path.type == DEVICE_PATH_PCI_DOMAIN) {
150 dev->ops = &pci_domain_ops;
Eric Biedermana9e632c2004-11-18 22:38:08 +0000151 pci_set_method(dev);
Eric Biederman018d8dd2004-11-04 11:04:33 +0000152 }
Stefan Reinauere2b53e12004-06-28 11:59:45 +0000153}
154
Myles Watsonb8c2aa22008-02-07 20:37:37 +0000155struct chip_operations cpu_emulation_qemu_x86_ops = {
Eric Biederman018d8dd2004-11-04 11:04:33 +0000156 CHIP_NAME("QEMU Northbridge")
Eric Biederman6e53f502004-10-27 08:53:57 +0000157 .enable_dev = enable_dev,
Stefan Reinauere2b53e12004-06-28 11:59:45 +0000158};
Stefan Reinauer246ae212005-09-08 17:17:25 +0000159
160void udelay(int usecs)
161{
162 int i;
163 for(i = 0; i < usecs; i++)
Stefan Reinauer8e65adb2008-08-13 12:16:15 +0000164 inb(0x80);
Stefan Reinauer246ae212005-09-08 17:17:25 +0000165}
166
167