vsm can be called now, and then hang.
[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
16 #define NORTHBRIDGE_FILE "northbridge.c"
17 /*
18 */
19
20 /* todo: add a resource record. We don't do this here because this may be called when 
21   * very little of the platform is actually working.
22   */
23 int
24 sizeram(void)
25 {
26         msr_t msr;
27         int sizem = 0;
28         unsigned short dimm;
29
30         msr = rdmsr(0x20000018);
31         printk_debug("sizeram: %08x:%08x\n", msr.hi, msr.lo);
32
33         /* dimm 0 */
34         dimm = msr.hi;
35         /* installed? */
36         if ((dimm & 7) != 7)
37                 sizem = (1 << ((dimm >> 12)-1)) * 8;
38
39
40         /* dimm 1*/
41         dimm = msr.hi >> 16;
42         /* installed? */
43         if ((dimm & 7) != 7)
44                 sizem += (1 << ((dimm >> 12)-1)) * 8;
45
46         printk_debug("sizeram: sizem 0x%x\n", sizem);
47         return sizem;
48 }
49
50
51 /* here is programming for the various MSRs.*/
52 #define IM_QWAIT 0x100000
53
54 #define DMCF_WRITE_SERIALIZE_REQUEST (2<<12) /* 2 outstanding */ /* in high */
55 #define DMCF_SERIAL_LOAD_MISSES  (2) /* enabled */
56
57 /* these are the 8-bit attributes for controlling RCONF registers */
58 #define CACHE_DISABLE (1<<0)
59 #define WRITE_ALLOCATE (1<<1)
60 #define WRITE_PROTECT (1<<2)
61 #define WRITE_THROUGH (1<<3)
62 #define WRITE_COMBINE (1<<4)
63 #define WRITE_SERIALIZE (1<<5)
64
65 /* ram has none of this stuff */
66 #define RAM_PROPERTIES (0)
67 #define DEVICE_PROPERTIES (WRITE_SERIALIZE|CACHE_DISABLE)
68 #define ROM_PROPERTIES (WRITE_SERIALIZE|WRITE_THROUGH|CACHE_DISABLE)
69 #define MSR_WS_CD_DEFAULT (0x21212121)
70
71 /* 1810-1817 give you 8 registers with which to program protection regions */
72 /* the are region configuration range registers, or RRCF */
73 /* in msr terms, the are a straight base, top address assign, since they are 4k aligned. */
74 /* so no left-shift needed for top or base */
75 #define RRCF_LOW(base,properties) (base|(1<<8)|properties)
76 #define RRCF_LOW_CD(base)       RRCF_LOW(base, CACHE_DISABLE)
77
78 /* build initializer for P2D MSR */
79 #define P2D_BM(msr, pdid1, bizarro, pbase, pmask) {msr, {.hi=(pdid1<<29)|(bizarro<<28)|(pbase>>24), .lo=(pbase<<8)|pmask}}
80 #define P2D_BMO(msr, pdid1, bizarro, poffset, pbase, pmask) {msr, {.hi=(pdid1<<29)|(bizarro<<28)|(poffset<<8)|(pbase>>24), .lo=(pbase<<8)|pmask}}
81 #define P2D_R(msr, pdid1, bizarro, pmax, pmin) {msr, {.hi=(pdid1<<29)|(bizarro<<28)|(pmax>>12), .lo=(pmax<<20)|pmin}}
82 #define P2D_RO(msr, pdid1, bizarro, poffset, pmax, pmin) {msr, {.hi=(pdid1<<29)|(bizarro<<28)|(poffset<<8)|(pmax>>12), .lo=(pmax<<20)|pmin}}
83 #define P2D_SC(msr, pdid1, bizarro, wen, ren,pscbase) {msr, {.hi=(pdid1<<29)|(bizarro<<28)|(wen), .lo=(ren<<16)|(pscbase>>18)}}
84 #define IOD_BM(msr, pdid1, bizarro, ibase, imask) {msr, {.hi=(pdid1<<29)|(bizarro<<28)|(ibase>>12), .lo=(ibase<<20)|imask}}
85 #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)}}
86
87
88
89 struct msr_defaults {
90         int msr_no;
91         msr_t msr;
92 } msr_defaults [] = {
93         {0x1700, {.hi = 0, .lo = IM_QWAIT}},
94         {0x1800, {.hi = DMCF_WRITE_SERIALIZE_REQUEST, .lo = DMCF_SERIAL_LOAD_MISSES}},
95         /* 1808 will be done down below, so we have to do 180a->1817 (well, 1813 really) */
96         /* for 180a, for now, we assume VSM will configure it */
97         /* 180b is left at reset value,a0000-bffff is non-cacheable */
98         /* 180c, c0000-dffff is set to write serialize and non-cachable */
99         /* oops, 180c will be set by cpu bug handling in cpubug.c */
100         //{0x180c, {.hi = MSR_WS_CD_DEFAULT, .lo = MSR_WS_CD_DEFAULT}},
101         /* 180d is left at default, e0000-fffff is non-cached */
102
103         /* we will assume 180e, the ssm region configuration, is left at default or set by VSM */
104         /* we will not set 0x180f, the DMM,yet */
105         {0x1810, {.hi=0xee7ff000, .lo=RRCF_LOW(0xee000000, WRITE_COMBINE|CACHE_DISABLE)}},
106         {0x1811, {.hi = 0xefffb000, .lo = RRCF_LOW_CD(0xefff8000)}},
107         {0x1812, {.hi = 0xefff7000, .lo = RRCF_LOW_CD(0xefff4000)}},
108         {0x1813, {.hi = 0xefff3000, .lo = RRCF_LOW_CD(0xefff0000)}},
109         /* now for GLPCI routing */
110         /* GLIU0 */
111         P2D_BM(0x10000020, 0x1, 0x0, 0x0, 0xfff80),
112         P2D_BM(0x10000021, 0x1, 0x0, 0x80000, 0xfffe0),
113         P2D_SC(0x1000002c, 0x1, 0x0, 0x0,  0xff03, 0x3),
114         /* GLIU1 */
115         P2D_BM(0x40000020, 0x1, 0x0, 0x0, 0xfff80),
116         P2D_BM(0x40000021, 0x1, 0x0, 0x80000, 0xfffe0),
117         P2D_SC(0x4000002d, 0x1, 0x0, 0x0,  0xff03, 0x3),
118         {0}
119 };
120
121
122 static void
123 setup_gx2_cache(int sizem)
124 {
125         msr_t msr;
126         unsigned long long val;
127         printk_debug("enable_cache: enable for %dm bytes\n", sizem);
128         /* build up the rconf word. */
129         /* the SYSTOP bits 27:8 are actually the top bits from 31:12. Book fails to say that */
130         /* set romrp */
131         val = ((unsigned long long) ROM_PROPERTIES) << 56;
132         /* make rom base useful for 1M roms */
133         /* fuctory sets this to a weird value, just go with it. */
134         val |= ((unsigned long long) 0xfff800)<<36;
135         /* set the devrp properties */
136         val |= ((unsigned long long) DEVICE_PROPERTIES) << 28;
137         /* sigh. Take our TOM, RIGHT shift 12, since it page-aligned, then LEFT-shift 8 for reg. */
138         /* yank off 8M for frame buffer and 1M for VSA */
139         sizem -= 9;
140         sizem *= 0x100000;
141         sizem >>= 12;
142         sizem <<= 8;
143         val |= sizem;
144         val |= RAM_PROPERTIES;
145         msr.lo = val;
146         msr.hi = (val >> 32);
147         printk_debug("msr will be set to %x:%x\n", msr.hi, msr.lo);
148         wrmsr(CPU_RCONF_DEFAULT, msr);
149
150         enable_cache();
151         wbinvd();
152 }
153 /* we have to do this here. We have not found a nicer way to do it */
154 void
155 setup_gx2(void)
156 {
157         int i;
158         msr_t msr;
159
160         unsigned long sizem, membytes;
161         sizem = sizeram();
162         
163         setup_gx2_cache(sizem);
164
165
166         membytes = sizem * 1048576;
167
168         /* we need to set 0x10000029 and 0x40000029 */
169         msr.hi = 0x20000000 | membytes >>20;
170         msr.lo = 0x100 | ( ((membytes >>12) & 0xfff) << 20);
171         wrmsr(0x10000029, msr);
172         wrmsr(0x40000029, msr);
173         msr = rdmsr(0x10000029);
174         printk_debug("MSR 0x%x is now 0x%x:0x%x\n", 0x10000029, msr.hi,msr.lo);
175         msr = rdmsr(0x40000029);
176         printk_debug("MSR 0x%x is now 0x%x:0x%x\n", 0x40000029, msr.hi,msr.lo);
177
178         /* need to write 10000028 for vsm */
179         /* it is a P2D_R, but the two we just wrote have same offset; use same value */
180         wrmsr(0x10000028, msr);
181         msr = rdmsr(0x10000028);
182         printk_debug("MSR 0x%x is now 0x%x:0x%x\n", 0x10000028, msr.hi,msr.lo);
183
184
185         /* now do the default MSR values */
186         for(i = 0; msr_defaults[i].msr_no; i++) {
187                 msr_t msr;
188                 wrmsr(msr_defaults[i].msr_no, msr_defaults[i].msr);
189                 msr = rdmsr(msr_defaults[i].msr_no);
190                 printk_debug("MSR 0x%x is now 0x%x:0x%x\n", msr_defaults[i].msr_no, msr.hi,msr.lo);
191         }
192 }
193
194
195 static void optimize_xbus(device_t dev)
196 {
197         /* Optimise X-Bus performance */
198         pci_write_config8(dev, 0x40, 0x1e);
199         pci_write_config8(dev, 0x41, 0x52);
200         pci_write_config8(dev, 0x43, 0xc1);
201         pci_write_config8(dev, 0x44, 0x00);
202 }
203
204 static void enable_shadow(device_t dev)
205 {
206         
207 }
208
209 static void northbridge_init(device_t dev) 
210 {
211         printk_debug("northbridge: %s()\n", __FUNCTION__);
212         
213         optimize_xbus(dev);
214         enable_shadow(dev);
215 }
216
217
218 static struct device_operations northbridge_operations = {
219         .read_resources   = pci_dev_read_resources,
220         .set_resources    = pci_dev_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_CYRIX,
230         .device = PCI_DEVICE_ID_CYRIX_PCI_MASTER, 
231 };
232
233
234
235 #define BRIDGE_IO_MASK (IORESOURCE_IO | IORESOURCE_MEM)
236
237 static void pci_domain_read_resources(device_t dev)
238 {
239         struct resource *resource;
240
241         printk_spew("%s:%s()\n", NORTHBRIDGE_FILE, __FUNCTION__);
242
243         /* Initialize the system wide io space constraints */
244         resource = new_resource(dev, IOINDEX_SUBTRACTIVE(0,0));
245         resource->limit = 0xffffUL;
246         resource->flags = IORESOURCE_IO | IORESOURCE_SUBTRACTIVE | IORESOURCE_ASSIGNED;
247
248         /* Initialize the system wide memory resources constraints */
249         resource = new_resource(dev, IOINDEX_SUBTRACTIVE(1,0));
250         resource->limit = 0xffffffffULL;
251         resource->flags = IORESOURCE_MEM | IORESOURCE_SUBTRACTIVE | IORESOURCE_ASSIGNED;
252 }
253
254 static void ram_resource(device_t dev, unsigned long index,
255         unsigned long basek, unsigned long sizek)
256 {
257         struct resource *resource;
258
259         if (!sizek) {
260                 return;
261         }
262         resource = new_resource(dev, index);
263         resource->base  = ((resource_t)basek) << 10;
264         resource->size  = ((resource_t)sizek) << 10;
265         resource->flags =  IORESOURCE_MEM | IORESOURCE_CACHEABLE | \
266                 IORESOURCE_FIXED | IORESOURCE_STORED | IORESOURCE_ASSIGNED;
267 }
268
269 static void tolm_test(void *gp, struct device *dev, struct resource *new)
270 {
271         struct resource **best_p = gp;
272         struct resource *best;
273         best = *best_p;
274         if (!best || (best->base > new->base)) {
275                 best = new;
276         }
277         *best_p = best;
278 }
279
280 static uint32_t find_pci_tolm(struct bus *bus)
281 {
282         struct resource *min;
283         uint32_t tolm;
284         min = 0;
285         search_bus_resources(bus, IORESOURCE_MEM, IORESOURCE_MEM, tolm_test, &min);
286         tolm = 0xffffffffUL;
287         if (min && tolm > min->base) {
288                 tolm = min->base;
289         }
290         return tolm;
291 }
292
293 #define FRAMEBUFFERK 4096
294
295 static void pci_domain_set_resources(device_t dev)
296 {
297         device_t mc_dev;
298         uint32_t pci_tolm;
299 #if 0
300         pci_tolm = find_pci_tolm(&dev->link[0]);
301         mc_dev = dev->link[0].children;
302         if (mc_dev) {
303                 unsigned int tomk, tolmk;
304                 unsigned int ramreg = 0;
305                 int i, idx;
306                 unsigned int *bcdramtop = (unsigned int *)(GX_BASE + BC_DRAM_TOP);
307                 unsigned int *mcgbaseadd = (unsigned int *)(GX_BASE + MC_GBASE_ADD);
308
309                 for(i=0; i<0x20; i+= 0x10) {
310                         unsigned int *mcreg = (unsigned int *)(GX_BASE + MC_BANK_CFG);
311                         unsigned int mem_config = *mcreg;
312
313                         if (((mem_config & (DIMM_PG_SZ << i)) >> (4 + i)) == 7)
314                                 continue;
315                         ramreg += 1 << (((mem_config & (DIMM_SZ << i)) >> (i + 8)) + 2);
316                 }
317                         
318                 tomk = ramreg << 10;
319
320                 /* Sort out the framebuffer size */
321                 tomk -= FRAMEBUFFERK;
322                 *bcdramtop = ((tomk << 10) - 1);
323                 *mcgbaseadd = (tomk >> 9);
324
325                 printk_debug("BC_DRAM_TOP = 0x%08x\n", *bcdramtop);
326                 printk_debug("MC_GBASE_ADD = 0x%08x\n", *mcgbaseadd);
327
328                 printk_debug("I would set ram size to %d Mbytes\n", (tomk >> 10));
329
330                 /* Compute the top of Low memory */
331                 tolmk = pci_tolm >> 10;
332                 if (tolmk >= tomk) {
333                         /* The PCI hole does does not overlap the memory.
334                          */
335                         tolmk = tomk;
336                 }
337                 /* Report the memory regions */
338                 idx = 10;
339                 ram_resource(dev, idx++, 0, tolmk);
340         }
341         assign_resources(&dev->link[0]);
342 #endif
343 }
344
345 static unsigned int pci_domain_scan_bus(device_t dev, unsigned int max)
346 {
347         max = pci_scan_bus(&dev->link[0], PCI_DEVFN(0, 0), 0xff, max);
348         return max;
349 }
350
351 static struct device_operations pci_domain_ops = {
352         .read_resources   = pci_domain_read_resources,
353         .set_resources    = pci_domain_set_resources,
354         .enable_resources = enable_childrens_resources,
355         .init             = 0,
356         .scan_bus         = pci_domain_scan_bus,
357 };  
358
359 static void cpu_bus_init(device_t dev)
360 {
361         initialize_cpus(&dev->link[0]);
362 }
363
364 static void cpu_bus_noop(device_t dev)
365 {
366 }
367
368 static struct device_operations cpu_bus_ops = {
369         .read_resources   = cpu_bus_noop,
370         .set_resources    = cpu_bus_noop,
371         .enable_resources = cpu_bus_noop,
372         .init             = cpu_bus_init,
373         .scan_bus         = 0,
374 };
375
376 static void enable_dev(struct device *dev)
377 {
378         printk_debug("gx2 north: enable_dev\n");
379         /* Set the operations if it is a special bus type */
380         if (dev->path.type == DEVICE_PATH_PCI_DOMAIN) {
381                 extern void cpubug(void);
382                 printk_debug("DEVICE_PATH_PCI_DOMAIN\n");
383                 /* cpubug MUST be called before setup_gx2(), so we force the issue here */
384                 cpubug();       
385                 setup_gx2();
386                 /* do this here for now -- this chip really breaks our device model */
387                 do_vsmbios();
388                 dev->ops = &pci_domain_ops;
389                 pci_set_method(dev);
390         }
391         else if (dev->path.type == DEVICE_PATH_APIC_CLUSTER) {
392
393                 printk_debug("DEVICE_PATH_APIC_CLUSTER\n");
394                 dev->ops = &cpu_bus_ops;
395         }
396 }
397
398 struct chip_operations northbridge_amd_gx2_ops = {
399         CHIP_NAME("AMD GX2 Northbridge")
400         .enable_dev = enable_dev, 
401 };