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
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
|
/*
* BCM47XX Sonics SiliconBackplane SDRAM/MEMC core initialization
*
* Copyright 2007, Broadcom Corporation
* All Rights Reserved.
*
* THIS SOFTWARE IS OFFERED "AS IS", AND BROADCOM GRANTS NO WARRANTIES OF ANY
* KIND, EXPRESS OR IMPLIED, BY STATUTE, COMMUNICATION OR OTHERWISE. BROADCOM
* SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS
* FOR A SPECIFIC PURPOSE OR NONINFRINGEMENT CONCERNING THIS SOFTWARE.
*
* $Id: sbsdram.S,v 1.1.1.1 2008/07/21 09:20:53 james26_jang Exp $
*/
#include <sbconfig.h>
#include <sbsdram.h>
#include <sbmemc.h>
#include <sbsocram.h>
#include <sbchipc.h>
#include <bcmdevs.h>
#include <bcmnvram.h>
#include <mipsinc.h>
/* #define DEBUG_SBSDRAM 1 */
#ifdef DEBUG_SBSDRAM
/* Trace function
* Write to prog space so we can see it in
* the Logic Analizer
*/
#define TRACE_INIT \
li k0,0xb8000120; \
li k1,0x11; \
sw k1,0(k0); \
li k1,0x01020108; \
sw k1,4(k0); \
li k0,0xbb000000
#define TRACE(num, reg) sw reg,(num << 4)(k0)
#else
#define TRACE(num, reg)
#define TRACE_INIT
#endif
/*
* Register usage within this file:
*
* top ncdlsearch test_mem Xdr_do_init sb_reset_core
* v0: retval retval
* v1: corerev - - corerev -
* a0: coreptr coreptr - coreptr coreptr
* a1: x x x sdr/ddr flag
* a2: NVRAM x x
* a3: x
* t0: - - config
* t1: - - mode
* t2: - wr/strm off wr/strm
* t3: - rd/strd rd/strd
* t4: - g/clkd g/clkd
* t5: x
* t6: retaddr - - -
* t7: - - retaddr -
* s0: pass_count - -
* s1: wrsum/clkdsum - -
* s2: rdsum/pass_countmax - -
* s3: gsum/strmmax - -
* s4: wrlim/stdmmax - -
* s5: rdlim/clkdmax - -
* s6: glim/clkdlim - -
* s7: dll - -
* t8: - - x tmp
* t9: - - x retaddr
* k0: trace trace trace - -
* k1: trace trace trace - -
* gp:
* sp:
* s8: - step - -
* ra:
*/
.text
.set mips32
LEAF(board_draminit)
.set noreorder
/* Save return address */
move t6,ra
TRACE_INIT
/* Scan for an SDRAM controller (a0) */
li a0,KSEG1ADDR(SB_ENUM_BASE)
1: lw v1,(SBCONFIGOFF + SBIDHIGH)(a0)
and a1,v1,SBIDH_CC_MASK
srl a1,a1,SBIDH_CC_SHIFT
beq a1,SB_MEMC,foundctrl
nop
beq a1,SB_SOCRAM,foundctrl
nop
beq a1,SB_SDRAM,foundctrl
nop
addu a0,SB_CORE_SIZE
bne a1,(SBIDH_CC_MASK >> SBIDH_CC_SHIFT),1b
nop
/* No SDRAM controller */
jr t6
li v0, 0
foundctrl:
/* If we are already in RAM, just go and size it */
bal 1f
nop
1: li t0,PHYSADDR_MASK
and t0,t0,ra
li t1,SB_FLASH1
blt t0,t1,memprio_szmem
nop
/* For socram we don't need any nvram parms, just do a core reset */
bne a1,SB_SOCRAM,read_nvram
nop
bal sb_core_reset
li a2,0
/* and size memory */
b memprio_szmem
nop
read_nvram:
/* Find NVRAM (a2) */
li t0,KSEG1ADDR(SB_ENUM_BASE) # Is there a chipcommon core?
lw t1,(SBCONFIGOFF + SBIDHIGH)(t0)
and t1,t1,SBIDH_CC_MASK
srl t1,t1,SBIDH_CC_SHIFT
bne t1,SB_CC,notcc
nop
/* It is a chipcommon core: */
/* 1: Isolate memc's corerev in v1 */
and t2,v1,SBIDH_RCE_MASK
srl t2,t2,SBIDH_RCE_SHIFT
and v1,v1,SBIDH_RC_MASK
or v1,t2
/* 1.5: 5365a0 lies about its revision, it is really 1 */
bnez v1,1f
nop
lw t1,CC_CHIPID(t0) # Get chipid
andi t1,CID_ID_MASK # Check chipid
bne t1,BCM5365_CHIP_ID,1f
nop
li v1,1
/* 2: use the 32MB window */
1: li t2,KSEG1ADDR(SB_FLASH2 - NVRAM_SPACE)
li t4,SB_FLASH2_SZ
b find_nvram
nop
notcc:
/* else use the 4MB window */
li t2,KSEG1ADDR(SB_FLASH1 - NVRAM_SPACE)
li t4,SB_FLASH1_SZ
find_nvram:
li t3,FLASH_MIN
li t0,NVRAM_MAGIC
1:
add a2,t2,t3
lw t1,0(a2)
beq t0,t1,read_parms
nop
sll t3,t3,1
ble t3,t4,1b
nop
/* Try embedded NVRAM at 4 KB and 1 KB as last resorts */
li a2,KSEG1ADDR(SB_FLASH1 + 0x1000)
lw t1,0(a2)
beq t0,t1,read_parms
nop
li a2,KSEG1ADDR(SB_FLASH1 + 0x400)
lw t1,0(a2)
beq t0,t1,read_parms
nop
b init # No NVRAM
li a2, 0
read_parms:
/* Get SDRAM parameters (t0, t1, t2) from NVRAM (a2) */
lw t0,8(a2) # SDRAM init
srl t0,16
lw t2,12(a2)
andi t1,t2,0xffff # SDRAM config
srl t2,16 # SDRAM refresh
lw t3,16(a2) # SDRAM ncdl
init:
/* Initialize SDRAM controller: sdram core */
beq a1,SB_SDRAM,sdram_init
nop
/* else it is a memc core */
memc_init:
bnez a2,1f # Already have the parms in
nop # t0, t1, t2, t3
/* No nvram parms: assume DDRM16MX16X2 */
li t0,MEMC_DDR_INIT
li t1,MEMC_DDR_MODE
li t3,MEMC_DDR1_NCDL # If rev1 (4712):
beq v1,1,1f
nop
# rev0, 2:
li t3,MEMC_DDR_NCDL
1:
andi a3,t0,MEMC_CONFIG_DDR # Is it ddr or sdr?
beqz a3,memc_sdr_init
nop
/* Initialize DDR SDRAM */
memc_ddr_init:
beqz t3,ddr_find_ncdl # Do we have ncdl values? (0s)
nop
li t4,-1 # or ffs
bne t3,t4,break_ddr_ncdl
nop
ddr_find_ncdl:
/* Register usage */
#define pass_count s0
#define wrsum s1
#define rdsum s2
#define gsum s3
#define wrlim s4
#define rdlim s5
#define glim s6
#define dll s7
#define step s8
#define wr t2
#define rd t3
#define g t4
/* Initialize counter & accumulators */
move pass_count,zero
move wrsum,zero
move rdsum,zero
move gsum,zero
/* Initialize with default values */
li wr,5
li rd,5
bal ddr_do_init
li g,10
/* Read dll value */
lw dll,MEMC_NCDLCTL(a0)
TRACE(1, dll)
andi dll,dll,0xfe
srl dll,dll,1
beqz dll,memprio_szmem /* If zero, leave the default values */
nop
move wrlim,dll /* dll value is lim for wr, rd and g */
move rdlim,dll
move glim,dll
TRACE(2, wrlim)
TRACE(3, rdlim)
TRACE(4, glim)
addi step,dll,15 /* step = (dll + 16 - 1) / 16 */
srl step,step,4
TRACE(5, step)
sub wr,zero,dll /* Negate dll as initial value */
move rd,wr
move g,wr
/* Inner loop: call ddr_do_init to re-initialize and the test mem */
loop:
TRACE(6, wr)
TRACE(7, rd)
TRACE(8, g)
bal ddr_do_init
nop
bal test_mem
nop
TRACE(9, v0)
beqz v0,nextg
nop
/* Memory is ok */
addi pass_count,1
add wrsum,wrsum,wr
add rdsum,rdsum,rd
add gsum,gsum,g
TRACE(0xa, pass_count)
TRACE(0xb, wrsum)
TRACE(0xc, rdsum)
TRACE(0xd, gsum)
bne wr,dll,1f
nop
sll wrlim,dll,1
TRACE(0xe, wrlim)
1:
bne rd,dll,2f
nop
sll rdlim,dll,1
TRACE(0xf, rdlim)
2:
bne g,dll,nextg
nop
sll glim,dll,1
TRACE(0x10, glim)
nextg:
add g,g,step
ble g,glim,loop
nop
sub g,zero,dll
move glim,dll
TRACE(0x11, g)
/* nextrd: */
add rd,rd,step
ble rd,rdlim,loop
nop
sub rd,zero,dll
move rdlim,dll
TRACE(0x12, rd)
/* nextwr: */
add wr,wr,step
ble wr,wrlim,loop
nop
/* All done, calculate average values and program them */
TRACE(0x13, pass_count)
TRACE(0x14, wrsum)
TRACE(0x15, rdsum)
TRACE(0x16, gsum)
beqz pass_count,1f
nop
div zero,wrsum,pass_count
mflo wr
div zero,rdsum,pass_count
mflo rd
div zero,gsum,pass_count
mflo g
b ddr_got_ncdl
nop
/* No passing values, panic! (use defaults) */
1:
li t3,MEMC_DDR1_NCDL # If rev1:
beq v1,1,2f
nop
# rev0, 2:
li t3,MEMC_DDR_NCDL
2:
break_ddr_ncdl:
andi t4,t3,0xff # t4: g
srl t2,t3,16 # t2: wr
andi t2,t2,0xff
srl t3,t3,8 # t3: rd
andi t3,t3,0xff
ddr_got_ncdl:
TRACE(0x17, wr)
TRACE(0x18, rd)
TRACE(0x19, g)
bal ddr_do_init
nop
b memprio_szmem
nop
memc_sdr_init:
beqz t3,sdr_find_ncdl # Do we have ncdl values?
nop
li t4,-1
bne t3,t4,break_sdr_ncdl
nop
sdr_find_ncdl:
/* Register usage */
#define pass_count s0
#define clkdsum s1
#define pass_countmax s2
#define strmmax s3
#define strdmax s4
#define clkdmax s5
#define clkdlim s6
#define strm t2
#define strd t3
#define clkd t4
#define STRMLIM 4
#define STRDLIM 16
#define CLKDLIM 128
#define CLKDLIM_IC 256
/* Initialize counter & saved values */
move pass_countmax,zero
move strmmax,zero
move strdmax,zero
li clkdlim,CLKDLIM
and strm,t0,0x2000 /* Test for internal clock (Using strm as a temp) */
beqz strm,strmloop
nop
li clkdlim,CLKDLIM_IC
move strm,zero /* strm loop */
strmloop:
move strd,zero
strdloop:
move pass_count,zero
move clkdsum,zero
move clkd,zero
/* Inner loop: call sdr_do_init to re-initialize and the test mem */
clkdloop:
TRACE(0x1a, strm)
TRACE(0x1b, strd)
TRACE(0x1c, clkd)
bal sdr_do_init
nop
bal test_mem
nop
TRACE(0x1d, v0)
beqz v0,failclkd
nop
/* Memory is ok */
addi pass_count,1
add clkdsum,clkdsum,clkd
TRACE(0x1e, pass_count)
TRACE(0x1f, clkdsum)
b nextclkd
nop
failclkd:
bnez pass_count,clkdout # End of passing range, leave clkd loop
nop
nextclkd:
addi clkd,clkd,1
blt clkd,clkdlim,clkdloop
nop
clkdout:
/* If no passing values, skip to next strm */
beqz pass_count,nextstrm
nop
/* If this is a new max, Save the values */
ble pass_count,pass_countmax,nextstrd
nop
move pass_countmax,pass_count
div zero,clkdsum,pass_count
mflo clkdmax
move strdmax,strd
move strmmax,strm
TRACE(0x20, pass_count)
TRACE(0x21, clkdmax)
TRACE(0x22, strdmax)
TRACE(0x23, strmmax)
nextstrd:
addi strd,strd,1
blt strd,STRDLIM,strdloop
nop
nextstrm:
addi strm,strm,1
blt strm,STRMLIM,strmloop
nop
/* All done, program the new ncdl values */
TRACE(0x24, pass_count)
TRACE(0x25, clkdmax)
TRACE(0x26, strdmax)
TRACE(0x27, strmmax)
beqz pass_countmax,1f
nop
move clkd,clkdmax
move strd,strdmax
move strm,strmmax
b sdr_got_ncdl
nop
/* No passing values, panic! (use defaults) */
1:
li t3,MEMC_SDR1_NCDL # If rev1:
beq v1,1,2f
nop
# rev0, 2:
li t3,MEMC_SDR_NCDL
2:
break_sdr_ncdl:
andi t4,t3,0xff # t4: cd
srl t2,t3,16 # t2: sm
andi t2,t2,3 # sm is 2 bits only
srl t3,t3,8 # t3: sd
andi t3,t3,0xf # sd is 4 bits
sdr_got_ncdl:
bal sdr_do_init
nop
b memprio_szmem
nop
sdram_init:
bnez a2,1f # Already have the parms in t0, t1, t2
nop
/* Use default SDRAM parameters */
li t0, SDRAM_INIT
li t1, SDRAM_CONFIG
li t2, SDRAM_REFRESH
/* Initialize SDRAM */
1:
bal sb_core_reset
li a2,0
sw t1, 4(a0) # SDRAM config
li a1, 0x000a
sw a1, 0(a0)
li a1, 0x000c
sw a1, 0(a0)
li a1, 0x0009
sw a1, 0(a0) # 1st refresh of power up sequence
sw a1, 0(a0) # 2nd refresh of power up sequence
sw a1, 0(a0) # 3rd refresh of power up sequence
sw a1, 0(a0) # 4th refresh of power up sequence
sw a1, 0(a0) # 5th refresh of power up sequence
sw a1, 0(a0) # 6th refresh of power up sequence
sw a1, 0(a0) # 7th refresh of power up sequence
sw a1, 0(a0) # 8th refresh of power up sequence
sw t0, 0(a0) # SDRAM init
sw t2, 8(a0) # SDRAM refresh
/* Change the memory priority inversion counter value */
/* Determine memory size and return */
memprio_szmem:
#ifdef APPLE
lw t0, MEMC_PRIORINV(a0)
li t1, 0xFFFF0000
and t0, t0, t1
ori t0, t0, 0x1
sw t0, MEMC_PRIORINV(a0)
#else
li t0,KSEG1ADDR(SB_ENUM_BASE) # is there a chipcommon core?
lw t1,(SBCONFIGOFF + SBIDHIGH)(t0)
and t1,t1,SBIDH_CC_MASK
srl t1,t1,SBIDH_CC_SHIFT
bne t1,SB_CC,0f
nop
lw t1,CC_CHIPID(t0) # is this BCM4785 chip?
and t1,t1,CID_ID_MASK
bne t1,BCM4785_CHIP_ID,0f
nop
lw t0,MEMC_PRIORINV(a0) # change PriorInvTim to 2
and t0,t0,0xFFFF0000
ori t0,t0,0x02
sw t0,MEMC_PRIORINV(a0)
#endif
0: lw t0,(SBCONFIGOFF + SBIDHIGH)(a0)
and t1,t0,SBIDH_CC_MASK
srl t1,t1,SBIDH_CC_SHIFT
bne t1,SB_SOCRAM,szmem_alias
nop
/* The socram core tells us how much memory there is */
lw t1,SR_COREINFO(a0)
and t0,t0,SBIDH_RC_MASK /* Find corerev */
beq t0,zero,crev0
/* Its corerev >= 1 */
and t2,t1,SRCI_SRNB_MASK /* Find number of blocks */
srl t2,t2,SRCI_SRNB_SHIFT
and t1,t1,SRCI_SRBSZ_MASK /* Find block size */
addi t1,t1,SR_BSZ_BASE
li t0,1
sll t0,t0,t1
mul v0,t0,t2
jr t6
nop
crev0:
and t1,t1,SRCI_MS0_MASK
add t1,t1,SR_MS0_BASE
li v0,1
sll v0,v0,t1
jr t6
nop
szmem_alias:
li t0,KSEG1
li t2,0xaa55beef
sw zero,0(t0)
li v0,(1 << 20)
1: or t0,v0,KSEG1
sw t2,0(t0)
li t0,KSEG1
lw t1,0(t0)
beq t1,t2,done
nop
sll v0,v0,1
bne v0,(128 << 20),1b
nop
/* Didn't find an alias, must be 128MB */
done:
jr t6
nop
/*
* Test memory
*
* Uses arg in t2(wr/sd), t3(rd/sm) and t4(g/clkd)
* Returns success (1) or failure (0) in v0
* Uses a1, a2, a3 & t5
*/
test_mem:
/* Use t4 to generate a semi-random address in the second KB */
li a1,KSEG1
addi a2,t4,255
sll a2,a2,2
add a1,a1,a2
/* First set: 0 & its negation */
li a2,0
sw a2,0(a1)
not a3,a2
sw a3,4(a1)
nop
lw t5,0(a1)
bne a2,t5,bad_mem
nop
lw t5,4(a1)
bne a3,t5,bad_mem
nop
/* Second set: 0xaaaaaaaa & its negation */
li a2,0xaaaaaaaa
sw a2,0(a1)
not a3,a2
sw a3,4(a1)
nop
lw t5,0(a1)
bne a2,t5,bad_mem
nop
lw t5,4(a1)
bne a3,t5,bad_mem
nop
/* Third set: 0x12345678 & its negation */
li a2,0x12345678
sw a2,0(a1)
not a3,a2
sw a3,4(a1)
nop
lw t5,0(a1)
bne a2,t5,bad_mem
nop
lw t5,4(a1)
bne a3,t5,bad_mem
nop
/* Fourth set: the ncdl & its negation */
sll a2,t2,8
or a2,t3
sll a2,a2,8
or a2,t4
sw a2,0(a1)
not a3,a2
sw a3,4(a1)
nop
lw t5,0(a1)
bne a2,t5,bad_mem
nop
lw t5,4(a1)
bne a3,t5,bad_mem
nop
/* Fifth set: the CPU count register & its negation */
mfc0 a2,$9
sw a2,0(a1)
not a3,a2
sw a3,4(a1)
nop
lw t5,0(a1)
bne a2,t5,bad_mem
nop
lw t5,4(a1)
bne a3,t5,bad_mem
nop
jr ra
li v0,1
bad_mem:
jr ra
li v0,0
/* Do an init of the memc core for ddr
* a0: memc core pointer
* t0: memc config value
* t1: memc mode value
* t2: memc wr ncdl value
* t3: memc rd ncdl value
* t4: memc g ncdl value
*
* Uses a1, a2, t7, t8, t9 (here and by calling sb_core_reset)
*/
ddr_do_init:
/* Save return address */
move t7,ra
bal sb_core_reset
li a1,0
li a1,MEMC_CONFIG_INIT
or a1,a1,t0
lui a2, 0x8 # set DQMGate for memc rev 4 or more
or a1, a1, a2
sw a1,MEMC_CONFIG(a0)
li a1,MEMC_DRAMTIM25_INIT # Assume CAS latency of 2.5
andi t8,t1,0xf0 # Find out the CAS latency
bne t8,0x20,1f
nop
li a1,MEMC_DRAMTIM2_INIT # CAS latency is 2
1:
sw a1,MEMC_DRAMTIM(a0)
#ifndef BCM_ATE
li t8,KSEG1ADDR(SB_ENUM_BASE) # Get package options
lw a1,CC_CHIPID(t8) # Get chipid
li t9,CID_PKG_MASK # Check package options
and a1,a1,t9
srl a1,a1,CID_PKG_SHIFT
addi t8,SBCONFIGOFF # Get corerev for chipcommon
lw a2,SBIDHIGH(t8)
li t8,SBIDH_RCE_MASK
and t8,t8,a2
srl t8,SBIDH_RCE_SHIFT
li t9,SBIDH_RC_MASK
and t9,t9,a2
or t8,t8,t9
bge t8,10,1f # If ccrev is >= 10 use 4bit pkg opt
nop
ori a1,8 # else add a bit to the 3bit field
1:
beq a1,HDLSIM_PKG_ID,hdlsim # Special case for hdl sim:
nop
li t8,KSEG1ADDR(SB_ENUM_BASE) # Get chipid again
lw a2,CC_CHIPID(t8)
li t9,BCM5350_CHIP_ID # 5350 ChipID
li t8,CID_ID_MASK
and t8,t8,a2
bne t8,t9,notsim # if not 5350keep going
nop
bne a1,(8 | HDLSIM5350_PKG_ID),notsim # If 5350, is it (3/4-bit) vsim?
nop
#endif /* !BCM_ATE */
hdlsim:
li a1,MEMC_RDNCDLCOR_SIMINIT # Fixed 0xf6 rdncdl and no inits
sw a1,MEMC_RDNCDLCOR(a0) # of wrncdl, dqsgate and miscdly.
#ifndef BCM_ATE
b simskip
nop
notsim: andi t8,t3,0xff
sll a1,t8,8 # Replicate rd ncdl 4 times
or a1,a1,t8
sll t8,a1,16
or t8,t8,a1
li a1,MEMC_RDNCDLCOR_INIT
or a1,a1,t8
sw a1,MEMC_RDNCDLCOR(a0)
li a1,MEMC_1_WRNCDLCOR_INIT # If rev1:
beq v1,1,1f
nop
# rev0, 2
li a1,MEMC_WRNCDLCOR_INIT
1:
andi t8,t2,0xff
or a1,a1,t8
sw a1,MEMC_WRNCDLCOR(a0)
li a1,MEMC_DQSGATENCDL_INIT
andi t8,t4,0xff
or a1,a1,t8
sw a1,MEMC_DQSGATENCDL(a0)
li a1,MEMC_1_MISCDLYCTL_INIT # If rev1:
beq v1,1,2f
nop
# rev0,2
li a1,MEMC_MISCDLYCTL_INIT
2:
sw a1,MEMC_MISCDLYCTL(a0)
#endif /* !BCM_ATE */
simskip:
li a1,MEMC_NCDLCTL_INIT
sw a1,MEMC_NCDLCTL(a0)
li a1,MEMC_CONTROL_INIT0
sw a1,MEMC_CONTROL(a0)
li a1,MEMC_CONTROL_INIT1
sw a1,MEMC_CONTROL(a0)
li a1,MEMC_MODEBUF_INIT0
sw a1,MEMC_MODEBUF(a0)
li a1,MEMC_CONTROL_INIT2
sw a1,MEMC_CONTROL(a0)
li a1,MEMC_MODEBUF_INIT1
or a1,a1,t1
sw a1,MEMC_MODEBUF(a0)
li a1,MEMC_CONTROL_INIT3
sw a1,MEMC_CONTROL(a0)
li a1,MEMC_CONTROL_INIT4
sw a1,MEMC_CONTROL(a0)
li a1,MEMC_CONTROL_INIT5
sw a1,MEMC_CONTROL(a0)
lw a1,MEMC_CONTROL(a0)
lw a1,MEMC_CONTROL(a0)
lw a1,MEMC_CONTROL(a0)
li a1,MEMC_CONTROL_INIT5
sw a1,MEMC_CONTROL(a0)
lw a1,MEMC_CONTROL(a0)
lw a1,MEMC_CONTROL(a0)
lw a1,MEMC_CONTROL(a0)
li a1,MEMC_REFRESH_INIT
sw a1,MEMC_REFRESH(a0)
li a1,MEMC_MODEBUF_INIT2
or a1,a1,t1
sw a1,MEMC_MODEBUF(a0)
li a1,MEMC_CONTROL_INIT6
sw a1,MEMC_CONTROL(a0)
li a1,MEMC_CONTROL_INIT7
sw a1,MEMC_CONTROL(a0)
/* Wait for SDRAM controller to refresh.
* We want 8uS delay.
*/
li t8,50
1: lw a1,(SBCONFIGOFF + SBIDLOW)(a0)
lw a1,(SBCONFIGOFF + SBIDHIGH)(a0)
bnez t8,1b
subu t8,1
jr t7
nop
/* Do an init of the memc core for sdr
* a0: memc core pointer
* t0: memc config value
* t1: memc mode value
* t2: memc strobe mode ncdl value
* t3: memc strobe delay ncdl value
* t4: memc clock delay ncdl value
*
* Uses a1, t7, t8, t9 (here and by calling sb_core_reset)
*/
sdr_do_init:
/* Save return address */
move t7,ra
bal sb_core_reset
li a1,0x40
/* Initialize SDRAM */
li a1,MEMC_SD_CONFIG_INIT
or a1,a1,t0
sw a1,MEMC_CONFIG(a0)
li a1,MEMC_SD_DRAMTIM3_INIT # Assume CAS latency of 3
andi t8,t1,0xf0 # Find out the CAS latency
bne t8,0x20,1f
nop
li a1,MEMC_SD_DRAMTIM2_INIT # CAS latency is 2
1:
sw a1,MEMC_DRAMTIM(a0)
andi t8,t4,0xff
ble t8,MEMC_CD_THRESHOLD,1f # if (cd <= MEMC_CD_THRESHOLD) rd = cd
nop
li t8,MEMC_CD_THRESHOLD # else rd = MEMC_CD_THRESHOLD
1: # t8 is now rd
sll a1,t8,8 # .. replicate it 4 times
or a1,a1,t8
sll t8,a1,16
or t8,t8,a1
li a1,MEMC_SD_RDNCDLCOR_INIT
or a1,a1,t8
sw a1,MEMC_RDNCDLCOR(a0)
li a1,MEMC_SD1_WRNCDLCOR_INIT # rev1
beq v1,1,1f
nop
li a1,MEMC_SD_WRNCDLCOR_INIT # rev0, 2
1:
li t8,0
ble t4,MEMC_CD_THRESHOLD,2f # if (cd <= MEMC_CD_THRESHOLD) wr = 0
nop
andi t8,t4,0xff # else wr = cd - MEMC_CD_THRESHOLD
sub t8,t8,MEMC_CD_THRESHOLD
andi t8,t8,0xff
2: # t8 is now wr, a0 is extra bits
or a1,a1,t8
sw a1,MEMC_WRNCDLCOR(a0)
andi t8,t2,3
sll a1,t8,28
andi t8,t3,0xf
sll t8,t8,24
or t8,t8,a1
li a1,MEMC_SD1_MISCDLYCTL_INIT
beq v1,1,3f # If rev1:
nop
# rev0, 2:
li a1,MEMC_SD_MISCDLYCTL_INIT
3:
or a1,a1,t8
sw a1,MEMC_MISCDLYCTL(a0)
li a1,MEMC_SD_CONTROL_INIT0
sw a1,MEMC_CONTROL(a0)
li a1,MEMC_SD_CONTROL_INIT1
sw a1,MEMC_CONTROL(a0)
li a1,MEMC_SD_CONTROL_INIT2
sw a1,MEMC_CONTROL(a0)
lw a1,MEMC_CONTROL(a0)
lw a1,MEMC_CONTROL(a0)
lw a1,MEMC_CONTROL(a0)
li a1,MEMC_SD_CONTROL_INIT2
sw a1,MEMC_CONTROL(a0)
lw a1,MEMC_CONTROL(a0)
lw a1,MEMC_CONTROL(a0)
lw a1,MEMC_CONTROL(a0)
li a1,MEMC_SD_CONTROL_INIT2
sw a1,MEMC_CONTROL(a0)
lw a1,MEMC_CONTROL(a0)
lw a1,MEMC_CONTROL(a0)
lw a1,MEMC_CONTROL(a0)
li a1,MEMC_SD_REFRESH_INIT
sw a1,MEMC_REFRESH(a0)
li a1,MEMC_SD_MODEBUF_INIT
or a1,a1,t1
sw a1,MEMC_MODEBUF(a0)
li a1,MEMC_SD_CONTROL_INIT3
sw a1,MEMC_CONTROL(a0)
li a1,MEMC_SD_CONTROL_INIT4
sw a1,MEMC_CONTROL(a0)
li t8,50
1: lw a1,(SBCONFIGOFF + SBIDLOW)(a0)
lw a1,(SBCONFIGOFF + SBIDHIGH)(a0)
bnez t8,1b
subu t8,1
jr t7
nop
/* Special sb_core_reset that makes sure the first time
* clock is enabled, address line 6 is in the state specified
* by a1.
*
* a0: Core pointer
* a1: 0x40 if a6 needs to be 1, 0 otherwise
* uses t8, t9
*/
.align 6
sb_core_reset:
/* Save return address */
move t9,ra
/* run uncached */
bal kseg1_switch
nop
/* Figure out our address */
bal h0
nop
h0: add t8,ra,24 # This is (h1 - h0)
andi t8,t8,0x40
bne t8,a1,alt_core_reset
nop
/* Set reset while enabling the clock */
li t8,(SBTML_FGC | SBTML_CLK | SBTML_RESET)
h1: sw t8,(SBCONFIGOFF + SBTMSTATELOW)(a0)
b cont
nop
/* Now pad to 0x40: We want (h2 - h1) == 0x40 and there
* are 5 instructions inbetween them.
*/
.space (0x40 - 20)
alt_core_reset:
/* Set reset while enabling the clock */
li t8,(SBTML_FGC | SBTML_CLK | SBTML_RESET)
h2: sw t8,(SBCONFIGOFF + SBTMSTATELOW)(a0)
cont:
/* Read back and delay */
lw t8, (SBCONFIGOFF + SBTMSTATELOW)(a0)
lw t8, (SBCONFIGOFF + SBTMSTATELOW)(a0)
lw t8, (SBCONFIGOFF + SBTMSTATELOW)(a0)
/* Clear reset */
li t8, (SBTML_FGC | SBTML_CLK)
sw t8, (SBCONFIGOFF + SBTMSTATELOW)(a0)
/* Read back and delay */
lw t8, (SBCONFIGOFF + SBTMSTATELOW)(a0)
lw t8, (SBCONFIGOFF + SBTMSTATELOW)(a0)
lw t8, (SBCONFIGOFF + SBTMSTATELOW)(a0)
/* Leave clock enabled */
li t8, SBTML_CLK
sw t8, (SBCONFIGOFF + SBTMSTATELOW)(a0)
/* Read back and delay */
lw t8, (SBCONFIGOFF + SBTMSTATELOW)(a0)
lw t8, (SBCONFIGOFF + SBTMSTATELOW)(a0)
lw t8, (SBCONFIGOFF + SBTMSTATELOW)(a0)
jr t9
nop
kseg1_switch:
and ra,ra,PHYSADDR_MASK
or ra,ra,KSEG1
jr ra
nop
.set reorder
END(board_draminit)
|