These changes incorporate steve goodrich'es fixes, and one bug that is
[coreboot.git] / src / northbridge / amd / gx2 / northbridge.c
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>
10 #include "chip.h"
11 #include "northbridge.h"
12 #include <cpu/amd/gx2def.h>
13 #include <cpu/x86/msr.h>
14 #include <cpu/x86/cache.h>
15 #include <cpu/amd/vr.h>
16 #define VIDEO_MB 8
17
18 extern void graphics_init(void);
19
20 #define NORTHBRIDGE_FILE "northbridge.c"
21
22 /* todo: add a resource record. We don't do this here because this may be called when 
23   * very little of the platform is actually working.
24   */
25 int
26 sizeram(void)
27 {
28         msr_t msr;
29         int sizem = 0;
30         unsigned short dimm;
31
32         msr = rdmsr(0x20000018);
33         printk_debug("sizeram: %08x:%08x\n", msr.hi, msr.lo);
34
35         /* dimm 0 */
36         dimm = msr.hi;
37         /* installed? */
38         if ((dimm & 7) != 7)
39                 sizem = (1 << ((dimm >> 12)-1)) * 8;
40
41
42         /* dimm 1*/
43         dimm = msr.hi >> 16;
44         /* installed? */
45         if ((dimm & 7) != 7)
46                 sizem += (1 << ((dimm >> 12)-1)) * 8;
47
48         printk_debug("sizeram: sizem 0x%x\n", sizem);
49         return sizem;
50 }
51
52
53 /* here is programming for the various MSRs.*/
54 #define IM_QWAIT 0x100000
55
56 #define DMCF_WRITE_SERIALIZE_REQUEST (2<<12) /* 2 outstanding */ /* in high */
57 #define DMCF_SERIAL_LOAD_MISSES  (2) /* enabled */
58
59 /* these are the 8-bit attributes for controlling RCONF registers */
60 #define CACHE_DISABLE (1<<0)
61 #define WRITE_ALLOCATE (1<<1)
62 #define WRITE_PROTECT (1<<2)
63 #define WRITE_THROUGH (1<<3)
64 #define WRITE_COMBINE (1<<4)
65 #define WRITE_SERIALIZE (1<<5)
66
67 /* ram has none of this stuff */
68 #define RAM_PROPERTIES (0)
69 #define DEVICE_PROPERTIES (WRITE_SERIALIZE|CACHE_DISABLE)
70 #define ROM_PROPERTIES (WRITE_SERIALIZE|WRITE_PROTECT|CACHE_DISABLE)
71 #define MSR_WS_CD_DEFAULT (0x21212121)
72
73 /* 1810-1817 give you 8 registers with which to program protection regions */
74 /* the are region configuration range registers, or RRCF */
75 /* in msr terms, the are a straight base, top address assign, since they are 4k aligned. */
76 /* so no left-shift needed for top or base */
77 #define RRCF_LOW(base,properties) (base|(1<<8)|properties)
78 #define RRCF_LOW_CD(base)       RRCF_LOW(base, CACHE_DISABLE)
79
80 /* build initializer for P2D MSR */
81 #define P2D_BM(msr, pdid1, bizarro, pbase, pmask) {msr, {.hi=(pdid1<<29)|(bizarro<<28)|(pbase>>24), .lo=(pbase<<8)|pmask}}
82 #define P2D_BMO(msr, pdid1, bizarro, poffset, pbase, pmask) {msr, {.hi=(pdid1<<29)|(bizarro<<28)|(poffset<<8)|(pbase>>24), .lo=(pbase<<8)|pmask}}
83 #define P2D_R(msr, pdid1, bizarro, pmax, pmin) {msr, {.hi=(pdid1<<29)|(bizarro<<28)|(pmax>>12), .lo=(pmax<<20)|pmin}}
84 #define P2D_RO(msr, pdid1, bizarro, poffset, pmax, pmin) {msr, {.hi=(pdid1<<29)|(bizarro<<28)|(poffset<<8)|(pmax>>12), .lo=(pmax<<20)|pmin}}
85 #define P2D_SC(msr, pdid1, bizarro, wen, ren,pscbase) {msr, {.hi=(pdid1<<29)|(bizarro<<28)|(wen), .lo=(ren<<16)|(pscbase>>18)}}
86 #define IOD_BM(msr, pdid1, bizarro, ibase, imask) {msr, {.hi=(pdid1<<29)|(bizarro<<28)|(ibase>>12), .lo=(ibase<<20)|imask}}
87 #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)}}
88
89
90
91 struct msr_defaults {
92         int msr_no;
93         msr_t msr;
94 } msr_defaults [] = {
95         {0x1700, {.hi = 0, .lo = IM_QWAIT}},
96         {0x1800, {.hi = DMCF_WRITE_SERIALIZE_REQUEST, .lo = DMCF_SERIAL_LOAD_MISSES}},
97         /* 1808 will be done down below, so we have to do 180a->1817 (well, 1813 really) */
98         /* for 180a, for now, we assume VSM will configure it */
99         /* 180b is left at reset value,a0000-bffff is non-cacheable */
100         /* 180c, c0000-dffff is set to write serialize and non-cachable */
101         /* oops, 180c will be set by cpu bug handling in cpubug.c */
102         //{0x180c, {.hi = MSR_WS_CD_DEFAULT, .lo = MSR_WS_CD_DEFAULT}},
103         /* 180d is left at default, e0000-fffff is non-cached */
104
105         /* we will assume 180e, the ssm region configuration, is left at default or set by VSM */
106         /* we will not set 0x180f, the DMM,yet */
107         //{0x1810, {.hi=0xee7ff000, .lo=RRCF_LOW(0xee000000, WRITE_COMBINE|CACHE_DISABLE)}},
108         //{0x1811, {.hi = 0xefffb000, .lo = RRCF_LOW_CD(0xefff8000)}},
109         //{0x1812, {.hi = 0xefff7000, .lo = RRCF_LOW_CD(0xefff4000)}},
110         //{0x1813, {.hi = 0xefff3000, .lo = RRCF_LOW_CD(0xefff0000)}},
111         /* now for GLPCI routing */
112         /* GLIU0 */
113         P2D_BM(0x10000020, 0x1, 0x0, 0x0, 0xfff80),
114         P2D_BM(0x10000021, 0x1, 0x0, 0x80000, 0xfffe0),
115         P2D_SC(0x1000002c, 0x1, 0x0, 0x0,  0xff03, 0xC0000),
116         /* GLIU1 */
117         P2D_BM(0x40000020, 0x1, 0x0, 0x0, 0xfff80),
118         P2D_BM(0x40000021, 0x1, 0x0, 0x80000, 0xfffe0),
119         P2D_SC(0x4000002d, 0x1, 0x0, 0x0,  0xff03, 0xC0000),
120         {0}
121 };
122
123 /* note that dev is NOT used -- yet */
124 static void irq_init_steering(struct device *dev, uint16_t irq_map) {
125         /* Set up IRQ steering */
126         uint32_t pciAddr = 0x80000000 | (CHIPSET_DEV_NUM << 11) | 0x5C;
127
128         printk_debug("%s(%08X [%08X], %04X)\n", __FUNCTION__, dev, pciAddr, irq_map);
129
130         /* The IRQ steering values (in hex) are effectively dcba, where:
131          *    <a> represents the IRQ for INTA, 
132          *    <b> represents the IRQ for INTB,
133          *    <c> represents the IRQ for INTC, and
134          *    <d> represents the IRQ for INTD.
135          * Thus, a value of irq_map = 0xAA5B translates to:
136          *    INTA = IRQB (IRQ 11)
137          *    INTB = IRQ5 (IRQ 5)
138          *    INTC = IRQA (IRQ 10)
139          *    INTD = IRQA (IRQ 10)
140          */
141         outl(pciAddr & ~3, 0xCF8);
142         outl(irq_map,      0xCFC);
143 }
144
145
146 /*
147  * setup_gx2_cache
148  *
149  * Returns the amount of memory (in KB) available to the system.  This is the 
150  * total amount of memory less the amount of memory reserved for SMM use.
151  *
152  */ 
153 static int
154 setup_gx2_cache(void)
155 {
156         msr_t msr;
157         unsigned long long val;
158         int sizekbytes, sizereg;
159
160         sizekbytes = sizeram() * 1024;
161         printk_debug("setup_gx2_cache: enable for %d KB\n", sizekbytes);
162         /* build up the rconf word. */
163         /* the SYSTOP bits 27:8 are actually the top bits from 31:12. Book fails to say that */
164         /* set romrp */
165         val = ((unsigned long long) ROM_PROPERTIES) << 56;
166         /* make rom base useful for 1M roms */
167         /* Flash base address -- sized for 1M for now*/
168         val |= ((unsigned long long) 0xfff00)<<36;
169         /* set the devrp properties */
170         val |= ((unsigned long long) DEVICE_PROPERTIES) << 28;
171         /* Take our TOM, RIGHT shift 12, since it page-aligned, then LEFT-shift 8 for reg. */
172         /* yank off memory for the SMM handler */
173         sizekbytes -= SMM_SIZE;
174         sizereg = sizekbytes;
175         sizereg *= 1024;        // convert to bytes
176         sizereg >>= 12;
177         sizereg <<= 8;
178         val |= sizereg;
179         val |= RAM_PROPERTIES;
180         msr.lo = val;
181         msr.hi = (val >> 32);
182         printk_debug("msr 0x%08X will be set to %08x:%08x\n", CPU_RCONF_DEFAULT, msr.hi, msr.lo);
183         wrmsr(CPU_RCONF_DEFAULT, msr);
184
185         enable_cache();
186         wbinvd();
187         return sizekbytes;
188 }
189
190 /* we have to do this here. We have not found a nicer way to do it */
191 void
192 setup_gx2(void)
193 {
194
195         unsigned long tmp, tmp2;
196         msr_t msr;
197         unsigned long size_kb, membytes;
198
199         size_kb = setup_gx2_cache();
200
201         membytes = size_kb * 1024;
202         /* NOTE! setup_gx2_cache returns the SIZE OF RAM - RAMADJUST!
203           * so it is safe to use. You should NOT at this point call     
204           * sizeram() directly. 
205           */
206
207         /* we need to set 0x10000028 and 0x40000029 */
208         /*
209          * These two descriptors cover the range from 1 MB (0x100000) to 
210          * SYSTOP (a.k.a. TOM, or Top of Memory)
211          */
212
213 #if 0
214         /* This has already been done elsewhere */
215         printk_debug("size_kb 0x%x, membytes 0x%x\n", size_kb, membytes);
216         msr.hi = 0x20000000 | membytes>>24;
217         msr.lo = 0x100 | ( ((membytes >>12) & 0xfff) << 20);
218         wrmsr(0x10000028, msr);
219         msr.hi = 0x20000000 | membytes>>24;
220         msr.lo = 0x100 | ( ((membytes >>12) & 0xfff) << 20);
221         wrmsr(0x40000029, msr);
222 #endif
223 #if 0
224         msr = rdmsr(0x10000028);
225         printk_debug("MSR 0x%x is now 0x%x:0x%x\n", 0x10000028, msr.hi,msr.lo);
226         msr = rdmsr(0x40000029);
227         printk_debug("MSR 0x%x is now 0x%x:0x%x\n", 0x40000029, msr.hi,msr.lo);
228 #endif
229 #if 1
230         /* fixme: SMM MSR 0x10000026 and 0x400000023 */
231         /* calculate the OFFSET field */
232         tmp = membytes - SMM_OFFSET;
233         tmp >>= 12;
234         tmp <<= 8;
235         tmp |= 0x20000000;
236         tmp |= (SMM_OFFSET >> 24);
237
238         /* calculate the PBASE and PMASK fields */
239         tmp2 = (SMM_OFFSET << 8) & 0xFFF00000; /* shift right 12 then left 20  == left 8 */
240         tmp2 |= (((~(SMM_SIZE * 1024) + 1) >> 12) & 0xfffff);
241         printk_debug("MSR 0x%x is now 0x%x:0x%x\n", 0x10000026, tmp, tmp2);
242         msr.hi = tmp;
243         msr.lo = tmp2;
244         wrmsr(0x10000026, msr);
245 #endif
246 #if 0
247
248         msr.hi = 0x2cfbc040;
249         msr.lo = 0x400fffc0;
250         wrmsr(0x10000026, msr);
251         msr = rdmsr(0x10000026);
252         printk_debug("MSR 0x%x is now 0x%x:0x%x\n", 0x10000026, msr.hi, msr.lo);
253 #endif
254 #if 0
255         msr.hi = 0x22fffc02;
256         msr.lo = 0x10ffbf00;
257         wrmsr(0x1808, msr);
258         msr = rdmsr(0x1808);
259         printk_debug("MSR 0x%x is now 0x%x:0x%x\n", 0x1808, msr.hi, msr.lo);
260 #endif
261 #if 0   // SDG - don't do this
262         /* now do the default MSR values */
263         for(i = 0; msr_defaults[i].msr_no; i++) {
264                 msr_t msr;
265                 wrmsr(msr_defaults[i].msr_no, msr_defaults[i].msr);     // MSR - see table above
266                 msr = rdmsr(msr_defaults[i].msr_no);
267                 printk_debug("MSR 0x%08X is now 0x%08X:0x%08X\n", msr_defaults[i].msr_no, msr.hi,msr.lo);
268         }
269 #endif
270 }
271
272 static void enable_shadow(device_t dev)
273 {
274         
275 }
276
277 static void northbridge_init(device_t dev) 
278 {
279         struct northbridge_amd_gx2_config *nb = (struct northbridge_amd_gx2_config *)dev->chip_info;
280         printk_debug("northbridge: %s()\n", __FUNCTION__);
281         
282         enable_shadow(dev);
283         irq_init_steering(dev, nb->irqmap);
284 }
285
286 static struct device_operations northbridge_operations = {
287         .read_resources   = pci_dev_read_resources,
288         .set_resources    = pci_dev_set_resources,
289         .enable_resources = pci_dev_enable_resources,
290         .init             = northbridge_init,
291         .enable           = 0,
292         .ops_pci          = 0,
293 };
294
295 static struct pci_driver northbridge_driver __pci_driver = {
296         .ops = &northbridge_operations,
297         .vendor = PCI_VENDOR_ID_NS,
298         .device = PCI_DEVICE_ID_NS_GX2,
299 };
300
301 #define BRIDGE_IO_MASK (IORESOURCE_IO | IORESOURCE_MEM)
302
303 static void pci_domain_read_resources(device_t dev)
304 {
305         struct resource *resource;
306
307         printk_spew("%s:%s()\n", NORTHBRIDGE_FILE, __FUNCTION__);
308
309         /* Initialize the system wide io space constraints */
310         resource = new_resource(dev, IOINDEX_SUBTRACTIVE(0,0));
311         resource->limit = 0xffffUL;
312         resource->flags = IORESOURCE_IO | IORESOURCE_SUBTRACTIVE | IORESOURCE_ASSIGNED;
313
314         /* Initialize the system wide memory resources constraints */
315         resource = new_resource(dev, IOINDEX_SUBTRACTIVE(1,0));
316         resource->limit = 0xffffffffULL;
317         resource->flags = IORESOURCE_MEM | IORESOURCE_SUBTRACTIVE | IORESOURCE_ASSIGNED;
318 }
319
320 static void ram_resource(device_t dev, unsigned long index,
321         unsigned long basek, unsigned long sizek)
322 {
323         struct resource *resource;
324
325         if (!sizek) {
326                 return;
327         }
328         resource = new_resource(dev, index);
329         resource->base  = ((resource_t)basek) << 10;
330         resource->size  = ((resource_t)sizek) << 10;
331         resource->flags =  IORESOURCE_MEM | IORESOURCE_CACHEABLE | \
332                 IORESOURCE_FIXED | IORESOURCE_STORED | IORESOURCE_ASSIGNED;
333 }
334
335 static void tolm_test(void *gp, struct device *dev, struct resource *new)
336 {
337         struct resource **best_p = gp;
338         struct resource *best;
339         best = *best_p;
340         if (!best || (best->base > new->base)) {
341                 best = new;
342         }
343         *best_p = best;
344 }
345
346 #if 0
347 static uint32_t find_pci_tolm(struct bus *bus)
348 {
349         struct resource *min;
350         uint32_t tolm;
351         min = 0;
352         search_bus_resources(bus, IORESOURCE_MEM, IORESOURCE_MEM, tolm_test, &min);
353         tolm = 0xffffffffUL;
354         if (min && tolm > min->base) {
355                 tolm = min->base;
356         }
357         return tolm;
358 }
359 #endif
360 #define FRAMEBUFFERK 4096
361
362 static void pci_domain_set_resources(device_t dev)
363 {
364 #if 0
365         device_t mc_dev;
366         uint32_t pci_tolm;
367
368         pci_tolm = find_pci_tolm(&dev->link[0]);
369         mc_dev = dev->link[0].children;
370         if (mc_dev) {
371                 unsigned int tomk, tolmk;
372                 unsigned int ramreg = 0;
373                 int i, idx;
374                 unsigned int *bcdramtop = (unsigned int *)(GX_BASE + BC_DRAM_TOP);
375                 unsigned int *mcgbaseadd = (unsigned int *)(GX_BASE + MC_GBASE_ADD);
376
377                 for(i=0; i<0x20; i+= 0x10) {
378                         unsigned int *mcreg = (unsigned int *)(GX_BASE + MC_BANK_CFG);
379                         unsigned int mem_config = *mcreg;
380
381                         if (((mem_config & (DIMM_PG_SZ << i)) >> (4 + i)) == 7)
382                                 continue;
383                         ramreg += 1 << (((mem_config & (DIMM_SZ << i)) >> (i + 8)) + 2);
384                 }
385                         
386                 tomk = ramreg << 10;
387
388                 /* Sort out the framebuffer size */
389                 tomk -= FRAMEBUFFERK;
390                 *bcdramtop = ((tomk << 10) - 1);
391                 *mcgbaseadd = (tomk >> 9);
392
393                 printk_debug("BC_DRAM_TOP = 0x%08x\n", *bcdramtop);
394                 printk_debug("MC_GBASE_ADD = 0x%08x\n", *mcgbaseadd);
395
396                 printk_debug("I would set ram size to %d Mbytes\n", (tomk >> 10));
397
398                 /* Compute the top of Low memory */
399                 tolmk = pci_tolm >> 10;
400                 if (tolmk >= tomk) {
401                         /* The PCI hole does does not overlap the memory.
402                          */
403                         tolmk = tomk;
404                 }
405                 /* Report the memory regions */
406                 idx = 10;
407                 ram_resource(dev, idx++, 0, tolmk);
408         }
409 #endif
410         assign_resources(&dev->link[0]);
411 }
412
413 static unsigned int pci_domain_scan_bus(device_t dev, unsigned int max)
414 {
415         max = pci_scan_bus(&dev->link[0], PCI_DEVFN(0, 0), 0xff, max);
416         return max;
417 }
418
419 static struct device_operations pci_domain_ops = {
420         .read_resources   = pci_domain_read_resources,
421         .set_resources    = pci_domain_set_resources,
422         .enable_resources = enable_childrens_resources,
423         .init             = 0,
424         .scan_bus         = pci_domain_scan_bus,
425 };  
426
427 static void cpu_bus_init(device_t dev)
428 {
429         initialize_cpus(&dev->link[0]);
430 }
431
432 static void cpu_bus_noop(device_t dev)
433 {
434 }
435
436 static struct device_operations cpu_bus_ops = {
437         .read_resources   = cpu_bus_noop,
438         .set_resources    = cpu_bus_noop,
439         .enable_resources = cpu_bus_noop,
440         .init             = cpu_bus_init,
441         .scan_bus         = 0,
442 };
443
444 void chipsetInit (void);
445
446 static void enable_dev(struct device *dev)
447 {
448         printk_debug("gx2 north: enable_dev\n");
449         void northbridgeinit(void);
450         void chipsetinit(struct northbridge_amd_gx2_config *nb);
451         void setup_realmode_idt(void);
452         void do_vsmbios(void);
453         /* Set the operations if it is a special bus type */
454         if (dev->path.type == DEVICE_PATH_PCI_DOMAIN) {
455                 struct northbridge_amd_gx2_config *nb = (struct northbridge_amd_gx2_config *)dev->chip_info;
456                 extern void cpubug(void);
457                 printk_debug("DEVICE_PATH_PCI_DOMAIN\n");
458                 /* cpubug MUST be called before setup_gx2(), so we force the issue here */
459                 northbridgeinit();
460                 cpubug();       
461                 chipsetinit(nb);
462                 setup_gx2();
463                 /* do this here for now -- this chip really breaks our device model */
464                 setup_realmode_idt();
465                 do_vsmbios();
466                 graphics_init();
467                 dev->ops = &pci_domain_ops;
468                 pci_set_method(dev);
469                 ram_resource(dev, 0, 0, ((sizeram() - VIDEO_MB) * 1024) - SMM_SIZE);
470         } else if (dev->path.type == DEVICE_PATH_APIC_CLUSTER) {
471                 printk_debug("DEVICE_PATH_APIC_CLUSTER\n");
472                 dev->ops = &cpu_bus_ops;
473         }
474         printk_debug("gx2 north: end enable_dev\n");
475 }
476
477 struct chip_operations northbridge_amd_gx2_ops = {
478         CHIP_NAME("AMD GX2 Northbridge")
479         .enable_dev = enable_dev, 
480 };