aboutsummaryrefslogtreecommitdiff
path: root/src/northbridge/via/vt8601/raminit.c
blob: 6f85189a601cbad1d68e976cb311e3804c9eabac (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
#include <cpu/p6/mtrr.h>
#include "raminit.h"
#if 0
/*
This software and ancillary information (herein called SOFTWARE )
called LinuxBIOS          is made available under the terms described
here.  The SOFTWARE has been approved for release with associated
LA-CC Number 00-34   .  Unless otherwise indicated, this SOFTWARE has
been authored by an employee or employees of the University of
California, operator of the Los Alamos National Laboratory under
Contract No. W-7405-ENG-36 with the U.S. Department of Energy.  The
U.S. Government has rights to use, reproduce, and distribute this
SOFTWARE.  The public may copy, distribute, prepare derivative works
and publicly display this SOFTWARE without charge, provided that this
Notice and any statement of authorship are reproduced on all copies.
Neither the Government nor the University makes any warranty, express 
or implied, or assumes any liability or responsibility for the use of
this SOFTWARE.  If SOFTWARE is modified to produce derivative works,
such modified SOFTWARE should be clearly marked, so as not to confuse
it with the version available from LANL.
 */
/* Copyright 2000, Ron Minnich, Advanced Computing Lab, LANL
 * rminnich@lanl.gov
 */
/*
 * 11/26/02 - kevinh@ispiri.com - The existing comments implied that
 * this didn't work yet.  Therefore, I've updated it so that it works
 * correctly - at least on my VIA epia motherboard.  64MB DIMM in slot 0.
 */

/* Added automatic detection of first equipped bank and its MA mapping type.
 * (Rest of configuration is done in C)
 * 5/19/03 by SONE Takeshi <ts1@tsn.or.jp>
 */


/* Stable ~1 usec delay by hitting unused ISA port. */
#define UDELAY(x) movl $x,%ecx; 9: outb %al,$0x81; loop 9b

#define DIMMS_READ(x) \
        movl 0x00000000+x, %eax; \
        movl 0x10000000+x, %eax; \
        movl 0x20000000+x, %eax; \
        movl 0x30000000+x, %eax; \
        movl 0x40000000+x, %eax; \
        movl 0x50000000+x, %eax

#define DIMMS_WRITE(x) \
        movl %eax, 0x00000000+x; \
        movl %eax, 0x10000000+x; \
        movl %eax, 0x20000000+x; \
        movl %eax, 0x30000000+x; \
        movl %eax, 0x40000000+x; \
        movl %eax, 0x50000000+x

raminit:
	intel_chip_post_macro(0x35)

	// memory clk enable. We are not using ECC
	CS_WRITE($0x78, $0x01)
	// dram control, see the book. 
#if DIMM_PC133
	CS_WRITE($0x68, $0x52)
#else
        CS_WRITE($0x68, $0x42)
#endif
	// dram control, see the book. 
	CS_WRITE($0x6B, $0x0c)
	// Initial setting, 256MB in each bank, will be rewritten later.
	CS_WRITE($0x5A, $0x20)
	CS_WRITE($0x5B, $0x40)
	CS_WRITE($0x5C, $0x60)
	CS_WRITE($0x5D, $0x80)
	CS_WRITE($0x5E, $0xA0)
	CS_WRITE($0x5F, $0xC0)
        // It seems we have to take care of these 2 registers as if 
        // they are bank 6 and 7.
        CS_WRITE($0x56, $0xC0)
        CS_WRITE($0x57, $0xC0)

	// SDRAM in all banks
	CS_WRITE($0x60, $0x3F)
	// DRAM timing. I'm suspicious of this
	// This is for all banks, 64 is 0,1.  65 is 2,3. 66 is 4,5.
	// ras precharge 4T, RAS pulse 5T
	// cas2 is 0xd6, cas3 is 0xe6
	// we're also backing off write pulse width to 2T, so result is 0xee
#if DIMM_CL2
	CS_WRITE($0x64, $0xd4)
	CS_WRITE($0x65, $0xd4)
	CS_WRITE($0x66, $0xd4)
#else // CL=3
	CS_WRITE($0x64, $0xe4)
	CS_WRITE($0x65, $0xe4)
	CS_WRITE($0x66, $0xe4)
#endif

	// dram frequency select.
	// enable 4K pages for 64M dram. 
#if DIMM_PC133
	CS_WRITE($0x69, $0x3c)
#else
        CS_WRITE($0x69, $0xac)
#endif
	// refresh counter, disabled.
	CS_WRITE($0x6A, $0x00)
	// clkenable configuration. kevinh FIXME - add precharge
	CS_WRITE($0x6C, $0x00)
	// dram read latch delay of 1 ns, MD drive 8 mA,
	// high drive strength on MA[2:	13], we#, cas#, ras#
	// As per Cindy Lee, set to 0x37, not 0x57
	CS_WRITE($0x6D, $0x7f)

        /* Initialize all banks at once */

/* begin to initialize*/
	// I forget why we need this, but we do
	mov $0xa55a5aa5, %eax
        DIMMS_WRITE(0)
	
/* set NOP*/
	CS_WRITE($0x6C, $0x01)

/* wait 200us*/
	// You need to do the memory reference. That causes the nop cycle. 
        DIMMS_READ(0)
	UDELAY(400)

/* set precharge */
	CS_WRITE($0x6C, $0x02)

/* dummy reads*/
        DIMMS_READ(0)
	UDELAY(200)

/* set CBR*/
	CS_WRITE($0x6C, $0x04)
	
/* do 8 reads and wait >100us between each - from via*/
        DIMMS_READ(0)
	UDELAY(200)
        DIMMS_READ(0)
	UDELAY(200)
        DIMMS_READ(0)
	UDELAY(200)
        DIMMS_READ(0)
	UDELAY(200)
        DIMMS_READ(0)
	UDELAY(200)
        DIMMS_READ(0)
	UDELAY(200)
        DIMMS_READ(0)
	UDELAY(200)
        DIMMS_READ(0)
	UDELAY(200)

/* set MRS*/
	CS_WRITE($0x6c, $0x03)
#if DIMM_CL2
        DIMMS_READ(0x150)
#else // CL=3
        DIMMS_READ(0x1d0)
#endif
	UDELAY(200)

/* set to normal mode */
	CS_WRITE($0x6C, $0x08)
	movl $0x55aa55aa, %eax
        DIMMS_WRITE(0)
        DIMMS_READ(0)
	UDELAY(200)

	// Set the refresh rate. 
#if DIMM_PC133
	CS_WRITE($0x6A, $0x86)
#else
	CS_WRITE($0x6A, $0x65)
#endif
	// enable multi-page open
	CS_WRITE($0x6B, $0x0d)

        /* Begin auto-detection
         * Find the first bank with DIMM equipped. */

        /* Maximum possible memory in bank 0, none in other banks.
         * Starting from bank 0, we's fill 0 in these registers
         * until memory is found. */
	CS_WRITE($0x5A, $0xff)
	CS_WRITE($0x5B, $0xff)
	CS_WRITE($0x5C, $0xff)
	CS_WRITE($0x5D, $0xff)
	CS_WRITE($0x5E, $0xff)
	CS_WRITE($0x5F, $0xff)
	CS_WRITE($0x56, $0xff)
	CS_WRITE($0x57, $0xff)

        movl $0x5A, %ebx // first bank
1:
        /* Write different values to 0 and 8, then read from 0.
         * If values of address 0 match, we have something there. */
        movl $0x12345678, %eax
        movl %eax, 0
        movl $0x87654321, %edx
        movl %edx, 8
        movl 0, %edx
        cmpl %eax, %edx
        je 2f
        /* No memory in this bank. Tell it to the bridge. */
        movl %ebx, %eax
        xorl %edx, %edx
        PCI_WRITE_CONFIG_BYTE
        incl %ebx
        cmpl $0x60, %ebx
        jne 1b
        /* No memory at all! */
	CONSOLE_EMERG_TX_STRING($msg_nomem)
1:
        hlt
        jmp 1b
2:

        /* Detect MA mapping type of the first bank. */

        jmp raminit_ma
raminit_ma_reg_table:
        /* Values for MA type register to try */
        .word 0x0000, 0x8088, 0xe0ee
        .word 0xffff // end mark

raminit_ma:
        xorl %esi, %esi // highest address
        movl $raminit_ma_reg_table, %ebx
1:
        movw (%ebx), %cx
        cmpw $0xffff, %cx
        je raminit_ma_done
        movl $0x58, %eax
        PCI_WRITE_CONFIG_WORD

        xorl %eax, %eax
        movl %eax, (%eax)

        // Write to addresses with only one address bit on,
        // from 0x80000000 to 0x00000008 (lower 3 bits are ignored, assuming 
        // 64-bit bus).
        // Then what is read at address 0 is the value written to the lowest
        // address where it gets wrap-around. That address is either the size
        // of the bank, or a missing bit due to incorrect MA mapping.
        movl $0x80000000, %eax
2:
        movl %eax, (%eax)
        shrl $1, %eax
        cmpl $4, %eax
        jne 2b

        movl 0, %eax
        cmpl %eax, %esi
        jnc 3f

        // This is the current best MA mapping.
        // Save the address and its MA mapping value.
        movl %eax, %esi
        movl %ecx, %edi
3:
        incl %ebx
        incl %ebx
        jmp 1b


raminit_ma_done:
        // Set the best (hopefully correct) MA mapping type.
        movl $0x58, %eax
        movl %edi, %ecx
        PCI_WRITE_CONFIG_WORD

	CONSOLE_DEBUG_TX_STRING($msg_enabled)
	CONSOLE_DEBUG_TX_HEX32(%esi)
	CONSOLE_DEBUG_TX_STRING($msg_bytes)

        /*
         * We have the size of first bank in %esi, but throwing it away.
         * Sizing will again be done in C, because we'll configure the rest
         * of banks in there anyway.
         */

        //CALLSP(dumpnorth)

	intel_chip_post_macro(0x36)


        .section ".rom.data"
msg_nomem:
        .asciz "No memory\r\n"
msg_enabled:
        .asciz "Enabled first bank of RAM: 0x"
msg_bytes:
        .asciz " bytes\r\n"
        .previous
#endif

	/* this is an early hack. We're going to just try to get memory
	 * working as it was before. I need help for SPD! RGM
	 */
// Set to 1 if your DIMMs are PC133
// Note that I'm assuming CPU's FSB frequency is 133MHz. If your CPU runs
// at another bus speed, you might need to change some of register values.
#ifndef DIMM_PC133
#define DIMM_PC133 0
#endif

// Set to 1 if your DIMMs are CL=2
#ifndef DIMM_CL2
#define DIMM_CL2 0
#endif

	  void dimms_read(unsigned long x) {
	  uint8_t c;
	  unsigned long eax; 
	  volatile unsigned long y;
	  eax =  x;
	  for(c = 0; c < 6; c++) {
	    
	    print_err("dimms_read: ");
	    print_err_hex32(eax);
	    print_err("\r\n");
	    y = * (volatile unsigned long *) eax;
	    eax += 0x10000000;
	  }
}

void dimms_write(int x) {
  uint8_t c;
  unsigned long eax = x;
  for(c = 0; c < 6; c++) {
    print_err("dimms_write: ");
    print_err_hex32(eax);
    print_err("\r\n");
    *(volatile unsigned long *) eax = 0;
    eax += 0x10000000;
  }
}

#define setnorthb pci_write_config8
#if 0
void setnorthb(device_t north, uint8_t reg, uint8_t val) {
  print_err("setnorth: reg ");
    print_err_hex8(reg);
  print_err(" to ");
  print_err_hex8(val);
  print_err("\r\n");
  pci_write_config8(north, reg, val);
}
#endif

void
dumpnorth(device_t north) {
  uint8_t r, c;
  for(r = 0; r < 256; r += 16) {
    print_err_hex8(r);
    print_err(":");
    for(c = 0; c < 16; c++) {
      print_err_hex8(pci_read_config8(north, r+c));
      print_err(" ");
    }
    print_err("\r\n");
  }
}
static void sdram_set_registers(const struct mem_controller *ctrl) {
  static const uint16_t raminit_ma_reg_table[] = {
    /* Values for MA type register to try */
    0x0000, 0x8088, 0xe0ee,
    0xffff // end mark
  };
  static const uint8_t ramregs[] = {0x5a, 0x5b, 0x5c, 0x5d, 0x5e, 0x5f, 
	  				0x56, 0x57};

  device_t north = 0;
  uint8_t c, r;

  print_err("vt8601 init starting\n");
  north = pci_locate_device(PCI_ID(0x1106, 0x8601), 0);
  north = 0;
  print_err_hex32(north);
  print_err(" is the north\n");
  print_err_hex16(pci_read_config16(north, 0));
  print_err(" ");
  print_err_hex16(pci_read_config16(north, 2));
  print_err("\r\n");
	
  // memory clk enable. We are not using ECC
  pci_write_config8(north,0x78, 0x01);
  print_err_hex8(pci_read_config8(north, 0x78));
  // dram control, see the book. 
#if DIMM_PC133
  pci_write_config8(north,0x68, 0x52);
#else
  pci_write_config8(north,0x68, 0x42);
#endif
  // dram control, see the book. 
  pci_write_config8(north,0x6B, 0x0c);
  // Initial setting, 256MB in each bank, will be rewritten later.
  pci_write_config8(north,0x5A, 0x20);
  print_err_hex8(pci_read_config8(north, 0x5a));
  pci_write_config8(north,0x5B, 0x40);
  pci_write_config8(north,0x5C, 0x60);
  pci_write_config8(north,0x5D, 0x80);
  pci_write_config8(north,0x5E, 0xA0);
  pci_write_config8(north,0x5F, 0xC0);
  // It seems we have to take care of these 2 registers as if 
  // they are bank 6 and 7.
  pci_write_config8(north,0x56, 0xC0);
  pci_write_config8(north,0x57, 0xC0);

  // SDRAM in all banks
  pci_write_config8(north,0x60, 0x3F);
  // DRAM timing. I'm suspicious of this
  // This is for all banks, 64 is 0,1.  65 is 2,3. 66 is 4,5.
  // ras precharge 4T, RAS pulse 5T
  // cas2 is 0xd6, cas3 is 0xe6
  // we're also backing off write pulse width to 2T, so result is 0xee
#if DIMM_CL2
  pci_write_config8(north,0x64, 0xd4);
  pci_write_config8(north,0x65, 0xd4);
  pci_write_config8(north,0x66, 0xd4);
#else // CL=3
  pci_write_config8(north,0x64, 0xe4);
  pci_write_config8(north,0x65, 0xe4);
  pci_write_config8(north,0x66, 0xe4);
#endif

  // dram frequency select.
  // enable 4K pages for 64M dram. 
#if DIMM_PC133
  pci_write_config8(north,0x69, 0x3c);
#else
  pci_write_config8(north,0x69, 0xac);
#endif
  // refresh counter, disabled.
  pci_write_config8(north,0x6A, 0x00);
  // clkenable configuration. kevinh FIXME - add precharge
  pci_write_config8(north,0x6C, 0x00);
  // dram read latch delay of 1 ns, MD drive 8 mA,
  // high drive strength on MA[2:	13], we#, cas#, ras#
  // As per Cindy Lee, set to 0x37, not 0x57
  pci_write_config8(north,0x6D, 0x7f);

  /* Initialize all banks at once */

  /* begin to initialize*/
  // I forget why we need this, but we do
  dimms_write(0xa55a5aa5);

  /* set NOP*/
  pci_write_config8(north,0x6C, 0x01);
  print_err("NOP\r\n");
  /* wait 200us*/
  // You need to do the memory reference. That causes the nop cycle. 
  dimms_read(0);
  udelay(400);
  print_err("PRECHARGE\r\n");
  /* set precharge */
  pci_write_config8(north,0x6C, 0x02);
  print_err("DUMMY READS\r\n");
  /* dummy reads*/
  dimms_read(0);
  udelay(200);
  print_err("CBR\r\n");
  /* set CBR*/
  pci_write_config8(north,0x6C, 0x04);
	
  /* do 8 reads and wait >100us between each - from via*/
  dimms_read(0);
  udelay(200);
  dimms_read(0);
  udelay(200);
  dimms_read(0);
  udelay(200);
  dimms_read(0);
  udelay(200);
  dimms_read(0);
  udelay(200);
  dimms_read(0);
  udelay(200);
  dimms_read(0);
  udelay(200);
  dimms_read(0);
  udelay(200);
  print_err("MRS\r\n");
  /* set MRS*/
  pci_write_config8(north,0x6c, 0x03);
#if DIMM_CL2
  dimms_read(0x150);
#else // CL=3
  dimms_read(0x1d0);
#endif
  udelay(200);
  print_err("NORMAL\r\n");
  /* set to normal mode */
  pci_write_config8(north,0x6C, 0x08);

  dimms_write(0x55aa55aa);
  dimms_read(0);
  udelay(200);
  print_err("set ref. rate\r\n");
  // Set the refresh rate. 
#if DIMM_PC133
  pci_write_config8(north,0x6A, 0x86);
#else
  pci_write_config8(north,0x6A, 0x65);
#endif
  print_err("enable multi-page open\r\n");
  // enable multi-page open
  pci_write_config8(north,0x6B, 0x0d);

  /* Begin auto-detection
   * Find the first bank with DIMM equipped. */

  /* Maximum possible memory in bank 0, none in other banks.
   * Starting from bank 0, we fill 0 in these registers
   * until memory is found. */
  pci_write_config8(north,0x5A, 0xff);
  pci_write_config8(north,0x5B, 0xff);
  pci_write_config8(north,0x5C, 0xff);
  pci_write_config8(north,0x5D, 0xff);
  pci_write_config8(north,0x5E, 0xff);
  pci_write_config8(north,0x5F, 0xff);
  pci_write_config8(north,0x56, 0xff);
  pci_write_config8(north,0x57, 0xff);
  dumpnorth(north);
  print_err("MA\r\n");
  for(c = 0; c < 8; c++) {
    /* Write different values to 0 and 8, then read from 0.
     * If values of address 0 match, we have something there. */
    print_err("write to 0\r\n");
    *(volatile unsigned long *) 0 = 0x12345678;

    /* LEAVE THIS HERE. IT IS ESSENTIAL. OTHERWISE BUFFERING
     * WILL FOOL YOU!
     */
    print_err("write to 8\r\n");
    *(volatile unsigned long *) 8 = 0x87654321;

    if (*(volatile unsigned long *) 0 != 0x12345678) {
      print_err("no memory in this bank\r\n");
      /* No memory in this bank. Tell it to the bridge. */
      pci_write_config8(north,ramregs[c], 0);
    } 
    /* found something */
    {
      uint8_t best = 0;

      /* Detect MA mapping type of the bank. */

      for(r = 0; r < 3; r++) {
	volatile unsigned long esi = 0;
	volatile unsigned long eax = 0;
	pci_write_config8(north,0x58, raminit_ma_reg_table[r]);

	* (volatile unsigned long *) eax = 0;
	print_err(" done write to eax\r\n");
	// Write to addresses with only one address bit
	// on, from 0x80000000 to 0x00000008 (lower 3 bits
	// are ignored, assuming 64-bit bus).  Then what
	// is read at address 0 is the value written to
	// the lowest address where it gets
	// wrap-around. That address is either the size of
	// the bank, or a missing bit due to incorrect MA
	// mapping.
	eax = 0x80000000;
	while (eax !=  4) {
	  * (volatile unsigned long *) eax = eax;
	  //print_err_hex32(eax);
	  outb(eax&0xff, 0x80);
	  eax >>= 1;
	}
	print_err(" done read to eax\r\n");
	eax = * (unsigned long *)0;
	/* oh boy ... what is this. 
	   movl 0, %eax
	   cmpl %eax, %esi
	   jnc 3f
	*/
	print_err("eax and esi: ");
	print_err_hex32(eax); print_err(" ");
	print_err_hex32(esi); print_err("\r\n");

	if (eax > esi) { /* ??*/
		      
	  // This is the current best MA mapping.
	  // Save the address and its MA mapping value.
	  best = r;
	  esi = eax;
	}
      }
		  
      pci_write_config8(north,0x58, raminit_ma_reg_table[best]);
      print_err("enabled first bank of ram ... ma is ");
      print_err_hex8(pci_read_config8(north, 0x58));
      print_err("\r\n");
    }
  }
  print_err("vt8601 done\n");
  dumpnorth(north);
  udelay(1000);
}

static void sdram_set_spd_registers(const struct mem_controller *ctrl) {
}

static void sdram_enable(int controllers, const struct mem_controller *ctrl) {
}