blob: 26229a953c6bd5e7e68e9b7ac1a5808964cbcc01 [file] [log] [blame]
Richard Smithcb8eab42006-07-24 04:25:47 +00001#include <console/console.h>
2#include <arch/io.h>
3#include <stdint.h>
4#include <device/device.h>
5#include <device/pci.h>
6#include <device/pci_ids.h>
7#include <stdlib.h>
8#include <string.h>
9#include <bitops.h>
Corey Osgoode562f722008-12-19 03:36:48 +000010#include <cpu/cpu.h>
11#include <pc80/keyboard.h>
Richard Smithcb8eab42006-07-24 04:25:47 +000012#include "chip.h"
13#include "northbridge.h"
Uwe Hermann1a9c8922007-04-01 17:24:03 +000014#include "i440bx.h"
Richard Smithcb8eab42006-07-24 04:25:47 +000015
Myles Watson032a9652009-05-11 22:24:53 +000016static void northbridge_init(device_t dev)
Richard Smithcb8eab42006-07-24 04:25:47 +000017{
18 printk_spew("Northbridge Init\n");
19}
20
Richard Smithcb8eab42006-07-24 04:25:47 +000021static struct device_operations northbridge_operations = {
22 .read_resources = pci_dev_read_resources,
23 .set_resources = pci_dev_set_resources,
24 .enable_resources = pci_dev_enable_resources,
25 .init = northbridge_init,
26 .enable = 0,
27 .ops_pci = 0,
28};
29
Stefan Reinauerf1cf1f72007-10-24 09:08:58 +000030static const struct pci_driver northbridge_driver __pci_driver = {
Richard Smithcb8eab42006-07-24 04:25:47 +000031 .ops = &northbridge_operations,
32 .vendor = PCI_VENDOR_ID_INTEL,
Myles Watson032a9652009-05-11 22:24:53 +000033 .device = 0x7190,
Richard Smithcb8eab42006-07-24 04:25:47 +000034};
35
Richard Smithcb8eab42006-07-24 04:25:47 +000036static void ram_resource(device_t dev, unsigned long index,
Myles Watson032a9652009-05-11 22:24:53 +000037 unsigned long basek, unsigned long sizek)
Richard Smithcb8eab42006-07-24 04:25:47 +000038{
Myles Watson032a9652009-05-11 22:24:53 +000039 struct resource *resource;
Richard Smithcb8eab42006-07-24 04:25:47 +000040
Myles Watson032a9652009-05-11 22:24:53 +000041 if (!sizek) {
42 return;
43 }
44 resource = new_resource(dev, index);
45 resource->base = ((resource_t)basek) << 10;
46 resource->size = ((resource_t)sizek) << 10;
47 resource->flags = IORESOURCE_MEM | IORESOURCE_CACHEABLE | \
48 IORESOURCE_FIXED | IORESOURCE_STORED | IORESOURCE_ASSIGNED;
Richard Smithcb8eab42006-07-24 04:25:47 +000049}
50
51static void tolm_test(void *gp, struct device *dev, struct resource *new)
52{
53 struct resource **best_p = gp;
54 struct resource *best;
55 best = *best_p;
56 if (!best || (best->base > new->base)) {
57 best = new;
58 }
59 *best_p = best;
60}
61
62static uint32_t find_pci_tolm(struct bus *bus)
63{
64 struct resource *min;
65 uint32_t tolm;
66 min = 0;
67 search_bus_resources(bus, IORESOURCE_MEM, IORESOURCE_MEM, tolm_test, &min);
68 tolm = 0xffffffffUL;
69 if (min && tolm > min->base) {
70 tolm = min->base;
71 }
72 return tolm;
73}
74
Myles Watsonb8e20272009-10-15 13:35:47 +000075#if CONFIG_WRITE_HIGH_TABLES==1
Stefan Reinauerb5fb0c52009-04-30 13:58:42 +000076#define HIGH_TABLES_SIZE 64 // maximum size of high tables in KB
77extern uint64_t high_tables_base, high_tables_size;
78#endif
Myles Watson032a9652009-05-11 22:24:53 +000079
Myles Watson29cc9ed2009-07-02 18:56:24 +000080static void i440bx_domain_set_resources(device_t dev)
Richard Smithcb8eab42006-07-24 04:25:47 +000081{
Richard Smithcb8eab42006-07-24 04:25:47 +000082 device_t mc_dev;
Uwe Hermannf5a6fd22007-05-27 23:31:31 +000083 uint32_t pci_tolm;
Richard Smithcb8eab42006-07-24 04:25:47 +000084
Uwe Hermannf5a6fd22007-05-27 23:31:31 +000085 pci_tolm = find_pci_tolm(&dev->link[0]);
Richard Smithcb8eab42006-07-24 04:25:47 +000086 mc_dev = dev->link[0].children;
87 if (mc_dev) {
Uwe Hermann1a9c8922007-04-01 17:24:03 +000088 uint16_t tolm_r;
Richard Smithcb8eab42006-07-24 04:25:47 +000089 unsigned long tomk, tolmk;
Uwe Hermann1a9c8922007-04-01 17:24:03 +000090 int idx;
Richard Smithcb8eab42006-07-24 04:25:47 +000091
Uwe Hermannf5a6fd22007-05-27 23:31:31 +000092 /* Figure out which areas are/should be occupied by RAM. The
93 * value of the highest DRB denotes the end of the physical
94 * memory (in units of 8MB).
Uwe Hermann1a9c8922007-04-01 17:24:03 +000095 */
Uwe Hermannf5a6fd22007-05-27 23:31:31 +000096 tomk = ((unsigned long)pci_read_config8(mc_dev, DRB7));
Uwe Hermannf03e4e92007-05-10 23:59:20 +000097
Uwe Hermannf5a6fd22007-05-27 23:31:31 +000098 /* Convert to KB. */
99 tomk *= (8 * 1024);
100
101 printk_debug("Setting RAM size to %d MB\n", tomk / 1024);
102
103 /* Compute the top of low memory. */
104 tolmk = pci_tolm / 1024;
105
Richard Smithcb8eab42006-07-24 04:25:47 +0000106 if (tolmk >= tomk) {
Myles Watson032a9652009-05-11 22:24:53 +0000107 /* The PCI hole does not overlap the memory. */
Richard Smithcb8eab42006-07-24 04:25:47 +0000108 tolmk = tomk;
109 }
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000110
Uwe Hermannf5a6fd22007-05-27 23:31:31 +0000111 /* Report the memory regions. */
Richard Smithcb8eab42006-07-24 04:25:47 +0000112 idx = 10;
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000113 ram_resource(dev, idx++, 0, 640);
Uwe Hermannf5a6fd22007-05-27 23:31:31 +0000114 ram_resource(dev, idx++, 768, tolmk - 768);
Myles Watson032a9652009-05-11 22:24:53 +0000115
Myles Watsonb8e20272009-10-15 13:35:47 +0000116#if CONFIG_WRITE_HIGH_TABLES==1
Stefan Reinauerb5fb0c52009-04-30 13:58:42 +0000117 /* Leave some space for ACPI, PIRQ and MP tables */
118 high_tables_base = (tomk - HIGH_TABLES_SIZE) * 1024;
119 high_tables_size = HIGH_TABLES_SIZE * 1024;
120#endif
Richard Smithcb8eab42006-07-24 04:25:47 +0000121 }
122 assign_resources(&dev->link[0]);
123}
124
Richard Smithcb8eab42006-07-24 04:25:47 +0000125static struct device_operations pci_domain_ops = {
Myles Watson032a9652009-05-11 22:24:53 +0000126 .read_resources = pci_domain_read_resources,
Myles Watson29cc9ed2009-07-02 18:56:24 +0000127 .set_resources = i440bx_domain_set_resources,
Myles Watson032a9652009-05-11 22:24:53 +0000128 .enable_resources = enable_childrens_resources,
129 .init = 0,
130 .scan_bus = pci_domain_scan_bus,
131};
Richard Smithcb8eab42006-07-24 04:25:47 +0000132
133static void cpu_bus_init(device_t dev)
134{
Myles Watson032a9652009-05-11 22:24:53 +0000135 initialize_cpus(&dev->link[0]);
Richard Smithcb8eab42006-07-24 04:25:47 +0000136}
137
138static void cpu_bus_noop(device_t dev)
139{
140}
141
142static struct device_operations cpu_bus_ops = {
Myles Watson032a9652009-05-11 22:24:53 +0000143 .read_resources = cpu_bus_noop,
144 .set_resources = cpu_bus_noop,
145 .enable_resources = cpu_bus_noop,
146 .init = cpu_bus_init,
147 .scan_bus = 0,
Richard Smithcb8eab42006-07-24 04:25:47 +0000148};
149
150static void enable_dev(struct device *dev)
151{
Myles Watson032a9652009-05-11 22:24:53 +0000152 /* Set the operations if it is a special bus type */
153 if (dev->path.type == DEVICE_PATH_PCI_DOMAIN) {
154 dev->ops = &pci_domain_ops;
Richard Smithcb8eab42006-07-24 04:25:47 +0000155 pci_set_method(dev);
Myles Watson032a9652009-05-11 22:24:53 +0000156 }
157 else if (dev->path.type == DEVICE_PATH_APIC_CLUSTER) {
158 dev->ops = &cpu_bus_ops;
159 }
Richard Smithcb8eab42006-07-24 04:25:47 +0000160}
161
162struct chip_operations northbridge_intel_i440bx_ops = {
Uwe Hermannf5a6fd22007-05-27 23:31:31 +0000163 CHIP_NAME("Intel 82443BX (440BX) Northbridge")
Uwe Hermann1a9c8922007-04-01 17:24:03 +0000164 .enable_dev = enable_dev,
Richard Smithcb8eab42006-07-24 04:25:47 +0000165};