Richard Smith | cb8eab4 | 2006-07-24 04:25:47 +0000 | [diff] [blame] | 1 | #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 Osgood | e562f72 | 2008-12-19 03:36:48 +0000 | [diff] [blame] | 10 | #include <cpu/cpu.h> |
| 11 | #include <pc80/keyboard.h> |
Richard Smith | cb8eab4 | 2006-07-24 04:25:47 +0000 | [diff] [blame] | 12 | #include "chip.h" |
| 13 | #include "northbridge.h" |
Uwe Hermann | 1a9c892 | 2007-04-01 17:24:03 +0000 | [diff] [blame] | 14 | #include "i440bx.h" |
Richard Smith | cb8eab4 | 2006-07-24 04:25:47 +0000 | [diff] [blame] | 15 | |
Myles Watson | 032a965 | 2009-05-11 22:24:53 +0000 | [diff] [blame] | 16 | static void northbridge_init(device_t dev) |
Richard Smith | cb8eab4 | 2006-07-24 04:25:47 +0000 | [diff] [blame] | 17 | { |
Stefan Reinauer | c02b4fc | 2010-03-22 11:42:32 +0000 | [diff] [blame] | 18 | printk(BIOS_SPEW, "Northbridge Init\n"); |
Richard Smith | cb8eab4 | 2006-07-24 04:25:47 +0000 | [diff] [blame] | 19 | } |
| 20 | |
Richard Smith | cb8eab4 | 2006-07-24 04:25:47 +0000 | [diff] [blame] | 21 | static 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 Reinauer | f1cf1f7 | 2007-10-24 09:08:58 +0000 | [diff] [blame] | 30 | static const struct pci_driver northbridge_driver __pci_driver = { |
Richard Smith | cb8eab4 | 2006-07-24 04:25:47 +0000 | [diff] [blame] | 31 | .ops = &northbridge_operations, |
| 32 | .vendor = PCI_VENDOR_ID_INTEL, |
Myles Watson | 032a965 | 2009-05-11 22:24:53 +0000 | [diff] [blame] | 33 | .device = 0x7190, |
Richard Smith | cb8eab4 | 2006-07-24 04:25:47 +0000 | [diff] [blame] | 34 | }; |
| 35 | |
Richard Smith | cb8eab4 | 2006-07-24 04:25:47 +0000 | [diff] [blame] | 36 | static void ram_resource(device_t dev, unsigned long index, |
Myles Watson | 032a965 | 2009-05-11 22:24:53 +0000 | [diff] [blame] | 37 | unsigned long basek, unsigned long sizek) |
Richard Smith | cb8eab4 | 2006-07-24 04:25:47 +0000 | [diff] [blame] | 38 | { |
Myles Watson | 032a965 | 2009-05-11 22:24:53 +0000 | [diff] [blame] | 39 | struct resource *resource; |
Richard Smith | cb8eab4 | 2006-07-24 04:25:47 +0000 | [diff] [blame] | 40 | |
Myles Watson | 032a965 | 2009-05-11 22:24:53 +0000 | [diff] [blame] | 41 | 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 Smith | cb8eab4 | 2006-07-24 04:25:47 +0000 | [diff] [blame] | 49 | } |
| 50 | |
| 51 | static 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 | |
| 62 | static 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 Watson | b8e2027 | 2009-10-15 13:35:47 +0000 | [diff] [blame] | 75 | #if CONFIG_WRITE_HIGH_TABLES==1 |
Stefan Reinauer | b5fb0c5 | 2009-04-30 13:58:42 +0000 | [diff] [blame] | 76 | #define HIGH_TABLES_SIZE 64 // maximum size of high tables in KB |
| 77 | extern uint64_t high_tables_base, high_tables_size; |
| 78 | #endif |
Myles Watson | 032a965 | 2009-05-11 22:24:53 +0000 | [diff] [blame] | 79 | |
Myles Watson | 29cc9ed | 2009-07-02 18:56:24 +0000 | [diff] [blame] | 80 | static void i440bx_domain_set_resources(device_t dev) |
Richard Smith | cb8eab4 | 2006-07-24 04:25:47 +0000 | [diff] [blame] | 81 | { |
Richard Smith | cb8eab4 | 2006-07-24 04:25:47 +0000 | [diff] [blame] | 82 | device_t mc_dev; |
Uwe Hermann | f5a6fd2 | 2007-05-27 23:31:31 +0000 | [diff] [blame] | 83 | uint32_t pci_tolm; |
Richard Smith | cb8eab4 | 2006-07-24 04:25:47 +0000 | [diff] [blame] | 84 | |
Uwe Hermann | f5a6fd2 | 2007-05-27 23:31:31 +0000 | [diff] [blame] | 85 | pci_tolm = find_pci_tolm(&dev->link[0]); |
Richard Smith | cb8eab4 | 2006-07-24 04:25:47 +0000 | [diff] [blame] | 86 | mc_dev = dev->link[0].children; |
| 87 | if (mc_dev) { |
| 88 | unsigned long tomk, tolmk; |
Uwe Hermann | 1a9c892 | 2007-04-01 17:24:03 +0000 | [diff] [blame] | 89 | int idx; |
Richard Smith | cb8eab4 | 2006-07-24 04:25:47 +0000 | [diff] [blame] | 90 | |
Uwe Hermann | f5a6fd2 | 2007-05-27 23:31:31 +0000 | [diff] [blame] | 91 | /* Figure out which areas are/should be occupied by RAM. The |
| 92 | * value of the highest DRB denotes the end of the physical |
| 93 | * memory (in units of 8MB). |
Uwe Hermann | 1a9c892 | 2007-04-01 17:24:03 +0000 | [diff] [blame] | 94 | */ |
Uwe Hermann | f5a6fd2 | 2007-05-27 23:31:31 +0000 | [diff] [blame] | 95 | tomk = ((unsigned long)pci_read_config8(mc_dev, DRB7)); |
Uwe Hermann | f03e4e9 | 2007-05-10 23:59:20 +0000 | [diff] [blame] | 96 | |
Uwe Hermann | f5a6fd2 | 2007-05-27 23:31:31 +0000 | [diff] [blame] | 97 | /* Convert to KB. */ |
| 98 | tomk *= (8 * 1024); |
| 99 | |
Stefan Reinauer | c02b4fc | 2010-03-22 11:42:32 +0000 | [diff] [blame] | 100 | printk(BIOS_DEBUG, "Setting RAM size to %ld MB\n", tomk / 1024); |
Uwe Hermann | f5a6fd2 | 2007-05-27 23:31:31 +0000 | [diff] [blame] | 101 | |
| 102 | /* Compute the top of low memory. */ |
| 103 | tolmk = pci_tolm / 1024; |
| 104 | |
Richard Smith | cb8eab4 | 2006-07-24 04:25:47 +0000 | [diff] [blame] | 105 | if (tolmk >= tomk) { |
Myles Watson | 032a965 | 2009-05-11 22:24:53 +0000 | [diff] [blame] | 106 | /* The PCI hole does not overlap the memory. */ |
Richard Smith | cb8eab4 | 2006-07-24 04:25:47 +0000 | [diff] [blame] | 107 | tolmk = tomk; |
| 108 | } |
Uwe Hermann | 1a9c892 | 2007-04-01 17:24:03 +0000 | [diff] [blame] | 109 | |
Uwe Hermann | f5a6fd2 | 2007-05-27 23:31:31 +0000 | [diff] [blame] | 110 | /* Report the memory regions. */ |
Richard Smith | cb8eab4 | 2006-07-24 04:25:47 +0000 | [diff] [blame] | 111 | idx = 10; |
Uwe Hermann | 1a9c892 | 2007-04-01 17:24:03 +0000 | [diff] [blame] | 112 | ram_resource(dev, idx++, 0, 640); |
Uwe Hermann | f5a6fd2 | 2007-05-27 23:31:31 +0000 | [diff] [blame] | 113 | ram_resource(dev, idx++, 768, tolmk - 768); |
Myles Watson | 032a965 | 2009-05-11 22:24:53 +0000 | [diff] [blame] | 114 | |
Myles Watson | b8e2027 | 2009-10-15 13:35:47 +0000 | [diff] [blame] | 115 | #if CONFIG_WRITE_HIGH_TABLES==1 |
Stefan Reinauer | b5fb0c5 | 2009-04-30 13:58:42 +0000 | [diff] [blame] | 116 | /* Leave some space for ACPI, PIRQ and MP tables */ |
| 117 | high_tables_base = (tomk - HIGH_TABLES_SIZE) * 1024; |
| 118 | high_tables_size = HIGH_TABLES_SIZE * 1024; |
| 119 | #endif |
Richard Smith | cb8eab4 | 2006-07-24 04:25:47 +0000 | [diff] [blame] | 120 | } |
| 121 | assign_resources(&dev->link[0]); |
| 122 | } |
| 123 | |
Richard Smith | cb8eab4 | 2006-07-24 04:25:47 +0000 | [diff] [blame] | 124 | static struct device_operations pci_domain_ops = { |
Myles Watson | 032a965 | 2009-05-11 22:24:53 +0000 | [diff] [blame] | 125 | .read_resources = pci_domain_read_resources, |
Myles Watson | 29cc9ed | 2009-07-02 18:56:24 +0000 | [diff] [blame] | 126 | .set_resources = i440bx_domain_set_resources, |
Myles Watson | 032a965 | 2009-05-11 22:24:53 +0000 | [diff] [blame] | 127 | .enable_resources = enable_childrens_resources, |
| 128 | .init = 0, |
| 129 | .scan_bus = pci_domain_scan_bus, |
| 130 | }; |
Richard Smith | cb8eab4 | 2006-07-24 04:25:47 +0000 | [diff] [blame] | 131 | |
| 132 | static void cpu_bus_init(device_t dev) |
| 133 | { |
Myles Watson | 032a965 | 2009-05-11 22:24:53 +0000 | [diff] [blame] | 134 | initialize_cpus(&dev->link[0]); |
Richard Smith | cb8eab4 | 2006-07-24 04:25:47 +0000 | [diff] [blame] | 135 | } |
| 136 | |
| 137 | static void cpu_bus_noop(device_t dev) |
| 138 | { |
| 139 | } |
| 140 | |
| 141 | static struct device_operations cpu_bus_ops = { |
Myles Watson | 032a965 | 2009-05-11 22:24:53 +0000 | [diff] [blame] | 142 | .read_resources = cpu_bus_noop, |
| 143 | .set_resources = cpu_bus_noop, |
| 144 | .enable_resources = cpu_bus_noop, |
| 145 | .init = cpu_bus_init, |
| 146 | .scan_bus = 0, |
Richard Smith | cb8eab4 | 2006-07-24 04:25:47 +0000 | [diff] [blame] | 147 | }; |
| 148 | |
| 149 | static void enable_dev(struct device *dev) |
| 150 | { |
Myles Watson | 032a965 | 2009-05-11 22:24:53 +0000 | [diff] [blame] | 151 | /* Set the operations if it is a special bus type */ |
| 152 | if (dev->path.type == DEVICE_PATH_PCI_DOMAIN) { |
| 153 | dev->ops = &pci_domain_ops; |
Richard Smith | cb8eab4 | 2006-07-24 04:25:47 +0000 | [diff] [blame] | 154 | pci_set_method(dev); |
Myles Watson | 032a965 | 2009-05-11 22:24:53 +0000 | [diff] [blame] | 155 | } |
| 156 | else if (dev->path.type == DEVICE_PATH_APIC_CLUSTER) { |
| 157 | dev->ops = &cpu_bus_ops; |
| 158 | } |
Richard Smith | cb8eab4 | 2006-07-24 04:25:47 +0000 | [diff] [blame] | 159 | } |
| 160 | |
| 161 | struct chip_operations northbridge_intel_i440bx_ops = { |
Uwe Hermann | f5a6fd2 | 2007-05-27 23:31:31 +0000 | [diff] [blame] | 162 | CHIP_NAME("Intel 82443BX (440BX) Northbridge") |
Uwe Hermann | 1a9c892 | 2007-04-01 17:24:03 +0000 | [diff] [blame] | 163 | .enable_dev = enable_dev, |
Richard Smith | cb8eab4 | 2006-07-24 04:25:47 +0000 | [diff] [blame] | 164 | }; |