Add missing licenses to several of the files.
[coreboot.git] / src / northbridge / amd / lx / northbridge.c
1 /*
2  * This file is part of the LinuxBIOS project.
3  *
4  * Copyright (C) 2007 Advanced Micro Devices, Inc.
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
19  */
20
21 #include <console/console.h>
22 #include <arch/io.h>
23 #include <stdint.h>
24 #include <device/device.h>
25 #include <device/pci.h>
26 #include <device/pci_ids.h>
27 #include <stdlib.h>
28 #include <string.h>
29 #include <bitops.h>
30 #include <cpu/cpu.h>
31 #include <cpu/amd/lxdef.h>
32 #include <cpu/x86/msr.h>
33 #include <cpu/x86/cache.h>
34 #include <cpu/amd/vr.h>
35 #include "chip.h"
36 #include "northbridge.h"
37
38
39 /* here is programming for the various MSRs.*/
40 #define IM_QWAIT 0x100000
41
42 #define DMCF_WRITE_SERIALIZE_REQUEST (2<<12) /* 2 outstanding */ /* in high */
43 #define DMCF_SERIAL_LOAD_MISSES  (2) /* enabled */
44
45 /* these are the 8-bit attributes for controlling RCONF registers */
46 #define CACHE_DISABLE (1<<0)
47 #define WRITE_ALLOCATE (1<<1)
48 #define WRITE_PROTECT (1<<2)
49 #define WRITE_THROUGH (1<<3)
50 #define WRITE_COMBINE (1<<4)
51 #define WRITE_SERIALIZE (1<<5)
52
53 /* ram has none of this stuff */
54 #define RAM_PROPERTIES (0)
55 #define DEVICE_PROPERTIES (WRITE_SERIALIZE|CACHE_DISABLE)
56 #define ROM_PROPERTIES (WRITE_SERIALIZE|WRITE_PROTECT|CACHE_DISABLE)
57 #define MSR_WS_CD_DEFAULT (0x21212121)
58
59 /* 1810-1817 give you 8 registers with which to program protection regions */
60 /* the are region configuration range registers, or RRCF */
61 /* in msr terms, the are a straight base, top address assign, since they are 4k aligned. */
62 /* so no left-shift needed for top or base */
63 #define RRCF_LOW(base,properties) (base|(1<<8)|properties)
64 #define RRCF_LOW_CD(base)       RRCF_LOW(base, CACHE_DISABLE)
65
66 /* build initializer for P2D MSR */
67 #define P2D_BM(msr, pdid1, bizarro, pbase, pmask) {msr, {.hi=(pdid1<<29)|(bizarro<<28)|(pbase>>24), .lo=(pbase<<8)|pmask}}
68 #define P2D_BMO(msr, pdid1, bizarro, poffset, pbase, pmask) {msr, {.hi=(pdid1<<29)|(bizarro<<28)|(poffset<<8)|(pbase>>24), .lo=(pbase<<8)|pmask}}
69 #define P2D_R(msr, pdid1, bizarro, pmax, pmin) {msr, {.hi=(pdid1<<29)|(bizarro<<28)|(pmax>>12), .lo=(pmax<<20)|pmin}}
70 #define P2D_RO(msr, pdid1, bizarro, poffset, pmax, pmin) {msr, {.hi=(pdid1<<29)|(bizarro<<28)|(poffset<<8)|(pmax>>12), .lo=(pmax<<20)|pmin}}
71 #define P2D_SC(msr, pdid1, bizarro, wen, ren,pscbase) {msr, {.hi=(pdid1<<29)|(bizarro<<28)|(wen), .lo=(ren<<16)|(pscbase>>18)}}
72 #define IOD_BM(msr, pdid1, bizarro, ibase, imask) {msr, {.hi=(pdid1<<29)|(bizarro<<28)|(ibase>>12), .lo=(ibase<<20)|imask}}
73 #define IOD_SC(msr, pdid1, bizarro, en, wen, ren, ibase) {msr, {.hi=(pdid1<<29)|(bizarro<<28), .lo=(en<<24)|(wen<<21)|(ren<<20)|(ibase<<3)}}
74
75 #define BRIDGE_IO_MASK (IORESOURCE_IO | IORESOURCE_MEM)
76
77 extern void graphics_init(void);
78 extern void cpubug(void);
79 extern void chipsetinit(void);
80 extern void print_conf(void);
81 extern uint32_t get_systop(void);
82
83 void northbridge_init_early(void);
84 void setup_realmode_idt(void);
85 void do_vsmbios(void);
86
87 struct msr_defaults {
88         int msr_no;
89         msr_t msr;
90 } msr_defaults [] = {
91         {0x1700, {.hi = 0, .lo = IM_QWAIT}},
92         {0x1800, {.hi = DMCF_WRITE_SERIALIZE_REQUEST, .lo = DMCF_SERIAL_LOAD_MISSES}},
93         /* 1808 will be done down below, so we have to do 180a->1817 (well, 1813 really) */
94         /* for 180a, for now, we assume VSM will configure it */
95         /* 180b is left at reset value,a0000-bffff is non-cacheable */
96         /* 180c, c0000-dffff is set to write serialize and non-cachable */
97         /* oops, 180c will be set by cpu bug handling in cpubug.c */
98         //{0x180c, {.hi = MSR_WS_CD_DEFAULT, .lo = MSR_WS_CD_DEFAULT}},
99         /* 180d is left at default, e0000-fffff is non-cached */
100
101         /* we will assume 180e, the ssm region configuration, is left at default or set by VSM */
102         /* we will not set 0x180f, the DMM,yet */
103         //{0x1810, {.hi=0xee7ff000, .lo=RRCF_LOW(0xee000000, WRITE_COMBINE|CACHE_DISABLE)}},
104         //{0x1811, {.hi = 0xefffb000, .lo = RRCF_LOW_CD(0xefff8000)}},
105         //{0x1812, {.hi = 0xefff7000, .lo = RRCF_LOW_CD(0xefff4000)}},
106         //{0x1813, {.hi = 0xefff3000, .lo = RRCF_LOW_CD(0xefff0000)}},
107         /* now for GLPCI routing */
108         /* GLIU0 */
109         P2D_BM(MSR_GLIU0_BASE1, 0x1, 0x0, 0x0, 0xfff80),
110         P2D_BM(MSR_GLIU0_BASE2, 0x1, 0x0, 0x80000, 0xfffe0),
111         P2D_SC(MSR_GLIU0_SHADOW, 0x1, 0x0, 0x0,  0xff03, 0xC0000),
112         /* GLIU1 */
113         P2D_BM(MSR_GLIU1_BASE1, 0x1, 0x0, 0x0, 0xfff80),
114         P2D_BM(MSR_GLIU1_BASE2, 0x1, 0x0, 0x80000, 0xfffe0),
115         P2D_SC(MSR_GLIU1_SHADOW, 0x1, 0x0, 0x0,  0xff03, 0xC0000),
116         {0}
117 };
118
119 /* todo: add a resource record. We don't do this here because this may be called when 
120   * very little of the platform is actually working.
121   */
122 int sizeram(void)
123 {
124         msr_t msr;
125         int sizem = 0;
126         unsigned short dimm;
127
128         msr = rdmsr(MC_CF07_DATA);
129         printk_debug("sizeram: _MSR MC_CF07_DATA: %08x:%08x\n", msr.hi, msr.lo);
130
131         /* dimm 0 */
132         dimm = msr.hi;
133         /* installed? */
134         if ((dimm & 7) != 7){
135                 sizem = 4 << ((dimm >> 12) & 0x0F);
136         }
137
138         /* dimm 1*/
139         dimm = msr.hi >> 16;
140         /* installed? */
141         if ((dimm & 7) != 7){
142                 sizem += 4 << ((dimm >> 12) & 0x0F);
143         }
144
145         printk_debug("sizeram: sizem 0x%xMB\n", sizem);
146         return sizem;
147 }
148
149
150
151 static void enable_shadow(device_t dev)
152 {
153 }
154
155 static void northbridge_init(device_t dev) 
156 {
157         //msr_t msr;
158
159         printk_spew(">> Entering northbridge.c: %s\n", __FUNCTION__);
160         
161         enable_shadow(dev);
162         /*
163          * Swiss cheese
164          */
165         //msr = rdmsr(MSR_GLIU0_SHADOW);
166         
167         //msr.hi |= 0x3;
168         //msr.lo |= 0x30000;
169         
170
171         //printk_debug("MSR 0x%08X is now 0x%08X:0x%08X\n", MSR_GLIU0_SHADOW, msr.hi, msr.lo);
172         //printk_debug("MSR 0x%08X is now 0x%08X:0x%08X\n", MSR_GLIU1_SHADOW, msr.hi, msr.lo);
173 }
174
175 void northbridge_set_resources(struct device *dev)
176 {
177         struct resource *resource, *last;
178         unsigned link;
179         uint8_t line;
180
181         last = &dev->resource[dev->resources];
182
183         for(resource = &dev->resource[0]; resource < last; resource++)
184         {
185
186                 // andrei: do not change the base address, it will make the VSA virtual registers unusable
187                 //pci_set_resource(dev, resource);
188                 // FIXME: static allocation may conflict with dynamic mappings!
189         }
190
191         for(link = 0; link < dev->links; link++) {
192                 struct bus *bus;
193                 bus = &dev->link[link];
194                 if (bus->children) {
195                         printk_debug("my_dev_set_resources: assign_resources %d\n", bus);
196                         assign_resources(bus);
197                 }
198         }
199
200         /* set a default latency timer */
201         pci_write_config8(dev, PCI_LATENCY_TIMER, 0x40);
202
203         /* set a default secondary latency timer */
204         if ((dev->hdr_type & 0x7f) == PCI_HEADER_TYPE_BRIDGE) {
205                 pci_write_config8(dev, PCI_SEC_LATENCY_TIMER, 0x40);
206         }
207
208         /* zero the irq settings */
209         line = pci_read_config8(dev, PCI_INTERRUPT_PIN);
210         if (line) {
211                 pci_write_config8(dev, PCI_INTERRUPT_LINE, 0);
212         }
213         
214         /* set the cache line size, so far 64 bytes is good for everyone */
215         pci_write_config8(dev, PCI_CACHE_LINE_SIZE, 64 >> 2);
216 }
217
218 static struct device_operations northbridge_operations = {
219         .read_resources   = pci_dev_read_resources,
220         .set_resources    = northbridge_set_resources,
221         .enable_resources = pci_dev_enable_resources,
222         .init             = northbridge_init,
223         .enable           = 0,
224         .ops_pci          = 0,
225 };
226
227 static struct pci_driver northbridge_driver __pci_driver = {
228         .ops = &northbridge_operations,
229         .vendor = PCI_VENDOR_ID_AMD,
230         .device = PCI_DEVICE_ID_AMD_LXBRIDGE,
231 };
232
233
234 static void pci_domain_read_resources(device_t dev)
235 {
236         struct resource *resource;
237         printk_spew(">> Entering northbridge.c: %s\n", __FUNCTION__);
238
239         /* Initialize the system wide io space constraints */
240         resource = new_resource(dev, IOINDEX_SUBTRACTIVE(0,0));
241         resource->limit = 0xffffUL;
242         resource->flags = IORESOURCE_IO | IORESOURCE_SUBTRACTIVE | IORESOURCE_ASSIGNED;
243
244         /* Initialize the system wide memory resources constraints */
245         resource = new_resource(dev, IOINDEX_SUBTRACTIVE(1,0));
246         resource->limit = 0xffffffffULL;
247         resource->flags = IORESOURCE_MEM | IORESOURCE_SUBTRACTIVE | IORESOURCE_ASSIGNED;
248 }
249
250 static void ram_resource(device_t dev, unsigned long index,
251         unsigned long basek, unsigned long sizek)
252 {
253         struct resource *resource;
254
255         if (!sizek) return;
256         
257         resource = new_resource(dev, index);
258         resource->base  = ((resource_t)basek) << 10;
259         resource->size  = ((resource_t)sizek) << 10;
260         resource->flags =  IORESOURCE_MEM | IORESOURCE_CACHEABLE |
261                 IORESOURCE_FIXED | IORESOURCE_STORED | IORESOURCE_ASSIGNED;
262 }
263
264 static void pci_domain_set_resources(device_t dev)
265 {
266         int idx;
267         device_t mc_dev;
268
269         printk_spew(">> Entering northbridge.c: %s\n", __FUNCTION__);
270
271         mc_dev = dev->link[0].children;
272         if (mc_dev) 
273         {
274                 /* Report the memory regions */
275                 idx = 10;
276                 ram_resource(dev, idx++, 0, 640);
277                 ram_resource(dev, idx++, 1024, (get_systop()- 0x100000)/1024 ); // Systop - 1 MB -> KB
278         }
279
280         assign_resources(&dev->link[0]);
281 }
282
283 static void pci_domain_enable(device_t dev)
284 {
285
286         printk_spew(">> Entering northbridge.c: %s\n", __FUNCTION__);
287
288         // do this here for now -- this chip really breaks our device model
289         northbridge_init_early();
290         cpubug();
291         chipsetinit();
292
293         setup_realmode_idt();
294
295         printk_debug("Before VSA:\n");
296         // print_conf();
297
298         do_vsmbios();   // do the magic stuff here, so prepare your tambourine ;)
299         
300         printk_debug("After VSA:\n");
301         // print_conf();
302
303         graphics_init();
304         pci_set_method(dev);
305 }
306
307 static unsigned int pci_domain_scan_bus(device_t dev, unsigned int max)
308 {
309         printk_spew(">> Entering northbridge.c: %s\n", __FUNCTION__);
310
311         max = pci_scan_bus(&dev->link[0], PCI_DEVFN(0, 0), 0xff, max);
312         return max;
313 }
314
315 static struct device_operations pci_domain_ops = {
316         .read_resources   = pci_domain_read_resources,
317         .set_resources    = pci_domain_set_resources,
318         .enable_resources = enable_childrens_resources,
319         .scan_bus         = pci_domain_scan_bus,
320         .enable           = pci_domain_enable,
321 };  
322
323 static void cpu_bus_init(device_t dev)
324 {
325         printk_spew(">> Entering northbridge.c: %s\n", __FUNCTION__);
326
327         initialize_cpus(&dev->link[0]);
328 }
329
330 static void cpu_bus_noop(device_t dev)
331 {
332 }
333
334 static struct device_operations cpu_bus_ops = {
335         .read_resources   = cpu_bus_noop,
336         .set_resources    = cpu_bus_noop,
337         .enable_resources = cpu_bus_noop,
338         .init             = cpu_bus_init,
339         .scan_bus         = 0,
340 };
341
342 static void enable_dev(struct device *dev)
343 {
344         printk_spew(">> Entering northbridge.c: %s with path %d\n", 
345                 __FUNCTION__, dev->path.type);
346
347         /* Set the operations if it is a special bus type */
348         if (dev->path.type == DEVICE_PATH_PCI_DOMAIN)
349                 dev->ops = &pci_domain_ops;
350         else if (dev->path.type == DEVICE_PATH_APIC_CLUSTER)
351                 dev->ops = &cpu_bus_ops;
352 }
353
354 struct chip_operations northbridge_amd_lx_ops = {
355         CHIP_NAME("AMD LX Northbridge")
356         .enable_dev = enable_dev, 
357 };