hc
2024-12-19 9370bb92b2d16684ee45cf24e879c93c509162da
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
/* Memory sub-system initialization code */
 
#include <config.h>
#include <mach/au1x00.h>
#include <asm/regdef.h>
#include <asm/mipsregs.h>
 
#define AU1500_SYS_ADDR        0xB1900000
#define sys_endian        0x0038
#define CP0_Config0        $16
#define CPU_SCALE        ((CONFIG_SYS_MHZ) / 12) /* CPU clock is a multiple of 12 MHz */
#define MEM_1MS            ((CONFIG_SYS_MHZ) * 1000)
 
   .text
   .set noreorder
   .set mips32
 
   .globl    lowlevel_init
lowlevel_init:
   /*
    * Step 1) Establish CPU endian mode.
    * Db1500-specific:
    * Switch S1.1 Off(bit7 reads 1) is Little Endian
    * Switch S1.1 On (bit7 reads 0) is Big Endian
    */
#ifdef CONFIG_DBAU1550
   li    t0, MEM_STCFG2
   li    t1, 0x00000040
   sw    t1, 0(t0)
 
   li    t0, MEM_STTIME2
   li    t1, 0x22080a20
   sw    t1, 0(t0)
 
   li    t0, MEM_STADDR2
   li    t1, 0x10c03f00
   sw    t1, 0(t0)
#else
   li    t0, MEM_STCFG1
   li    t1, 0x00000080
   sw    t1, 0(t0)
 
   li    t0, MEM_STTIME1
   li    t1, 0x22080a20
   sw    t1, 0(t0)
 
   li    t0, MEM_STADDR1
   li    t1, 0x10c03f00
   sw    t1, 0(t0)
#endif
 
   li    t0, DB1XX0_BCSR_ADDR
   lw    t1,8(t0)
   andi    t1,t1,0x80
   beq    zero,t1,big_endian
   nop
little_endian:
 
   /* Change Au1 core to little endian */
   li    t0, AU1500_SYS_ADDR
   li    t1, 1
   sw    t1, sys_endian(t0)
   mfc0    t2, CP0_CONFIG
   mtc0    t2, CP0_CONFIG
   nop
   nop
 
   /* Big Endian is default so nothing to do but fall through */
 
big_endian:
 
   /*
    * Step 2) Establish Status Register
    * (set BEV, clear ERL, clear EXL, clear IE)
    */
   li    t1, 0x00400000
   mtc0    t1, CP0_STATUS
 
   /*
    * Step 3) Establish CP0 Config0
    * (set OD, set K0=3)
    */
   li    t1, 0x00080003
   mtc0    t1, CP0_CONFIG
 
   /*
    * Step 4) Disable Watchpoint facilities
    */
   li t1, 0x00000000
   mtc0    t1, CP0_WATCHLO
   mtc0    t1, CP0_IWATCHLO
   /*
    * Step 5) Disable the performance counters
    */
   mtc0    zero, CP0_PERFORMANCE
   nop
 
   /*
    * Step 6) Establish EJTAG Debug register
    */
   mtc0    zero, CP0_DEBUG
   nop
 
   /*
    * Step 7) Establish Cause
    * (set IV bit)
    */
   li    t1, 0x00800000
   mtc0    t1, CP0_CAUSE
 
   /* Establish Wired (and Random) */
   mtc0    zero, CP0_WIRED
   nop
 
#ifdef CONFIG_DBAU1550
   /* No workaround if running from ram */
   lui    t0, 0xffc0
   lui    t3, 0xbfc0
   and    t1, ra, t0
   bne    t1, t3, noCacheJump
   nop
 
   /*** From AMD YAMON ***/
   /*
    * Step 8) Initialize the caches
    */
   li        t0, (16*1024)
   li        t1, 32
   li        t2, 0x80000000
   addu    t3, t0, t2
cacheloop:
   cache    0, 0(t2)
   cache    1, 0(t2)
   addu    t2, t1
   bne        t2, t3, cacheloop
   nop
 
   /* Save return address */
   move        t3, ra
 
   /* Run from cacheable space now */
   bal        cachehere
   nop
cachehere:
   li        t1, ~0x20000000 /* convert to KSEG0 */
   and        t0, ra, t1
   addi    t0, 5*4            /* 5 insns beyond cachehere */
   jr        t0
   nop
 
   /* Restore return address */
   move        ra, t3
 
   /*
    * Step 9) Initialize the TLB
    */
   li        t0, 0            # index value
   li        t1, 0x00000000        # entryhi value
   li        t2, 32            # 32 entries
 
tlbloop:
   /* Probe TLB for matching EntryHi */
   mtc0    t1, CP0_ENTRYHI
   tlbp
   nop
 
   /* Examine Index[P], 1=no matching entry */
   mfc0    t3, CP0_INDEX
   li    t4, 0x80000000
   and    t3, t4, t3
   addiu    t1, t1, 1        # increment t1 (asid)
   beq    zero, t3, tlbloop
   nop
 
   /* Initialize the TLB entry */
   mtc0    t0, CP0_INDEX
   mtc0    zero, CP0_ENTRYLO0
   mtc0    zero, CP0_ENTRYLO1
   mtc0    zero, CP0_PAGEMASK
   tlbwi
 
   /* Do it again */
   addiu    t0, t0, 1
   bne    t0, t2, tlbloop
   nop
 
#endif /* CONFIG_DBAU1550 */
 
   /* First setup pll:s to make serial work ok */
   /* We have a 12 MHz crystal */
   li    t0, SYS_CPUPLL
   li    t1, CPU_SCALE  /* CPU clock */
   sw    t1, 0(t0)
   sync
   nop
   nop
 
   /* wait 1mS for clocks to settle */
   li    t1, MEM_1MS
1:    add    t1, -1
   bne    t1, zero, 1b
   nop
   /* Setup AUX PLL */
   li    t0, SYS_AUXPLL
   li    t1, 0x20 /* 96 MHz */
   sw    t1, 0(t0) /* aux pll */
   sync
 
#ifdef CONFIG_DBAU1550
   /*  Static memory controller */
   /* RCE0 - can not change while fetching, do so from icache */
   move        t2, ra /* Store return address */
   bal        getAddr
   nop
 
getAddr:
   move        t1, ra
   move        ra, t2 /* Move return addess back */
 
   cache    0x14,0(t1)
   cache    0x14,32(t1)
   /*** /From YAMON ***/
 
noCacheJump:
#endif /* CONFIG_DBAU1550 */
 
#ifdef CONFIG_DBAU1550
   li    t0, MEM_STTIME0
   li    t1, 0x040181D7
   sw    t1, 0(t0)
 
   /* RCE0 AMD MirrorBit Flash (?) */
   li    t0, MEM_STCFG0
   li    t1, 0x00000003
   sw    t1, 0(t0)
 
   li    t0, MEM_STADDR0
   li    t1, 0x11803E00
   sw    t1, 0(t0)
#else /* CONFIG_DBAU1550 */
   li    t0, MEM_STTIME0
   li    t1, 0x040181D7
   sw    t1, 0(t0)
 
   /* RCE0 AMD 29LV640M MirrorBit Flash */
   li    t0, MEM_STCFG0
   li    t1, 0x00000013
   sw    t1, 0(t0)
 
   li    t0, MEM_STADDR0
   li    t1, 0x11E03F80
   sw    t1, 0(t0)
#endif /* CONFIG_DBAU1550 */
 
   /* RCE1 CPLD Board Logic */
   li    t0, MEM_STCFG1
   li    t1, 0x00000080
   sw    t1, 0(t0)
 
   li    t0, MEM_STTIME1
   li    t1, 0x22080a20
   sw    t1, 0(t0)
 
   li    t0, MEM_STADDR1
   li    t1, 0x10c03f00
   sw    t1, 0(t0)
 
#ifdef CONFIG_DBAU1550
   /* RCE2 CPLD Board Logic */
   li    t0, MEM_STCFG2
   li    t1, 0x00000040
   sw    t1, 0(t0)
 
   li    t0, MEM_STTIME2
   li    t1, 0x22080a20
   sw    t1, 0(t0)
 
   li    t0, MEM_STADDR2
   li    t1, 0x10c03f00
   sw    t1, 0(t0)
#else
   li    t0, MEM_STCFG2
   li    t1, 0x00000000
   sw    t1, 0(t0)
 
   li    t0, MEM_STTIME2
   li    t1, 0x00000000
   sw    t1, 0(t0)
 
   li    t0, MEM_STADDR2
   li    t1, 0x00000000
   sw    t1, 0(t0)
#endif
 
   /* RCE3 PCMCIA 250ns */
   li    t0, MEM_STCFG3
   li    t1, 0x00000002
   sw    t1, 0(t0)
 
   li    t0, MEM_STTIME3
   li    t1, 0x280E3E07
   sw    t1, 0(t0)
 
   li    t0, MEM_STADDR3
   li    t1, 0x10000000
   sw    t1, 0(t0)
 
   sync
 
   /* Set peripherals to a known state */
   li    t0, IC0_CFG0CLR
   li    t1, 0xFFFFFFFF
   sw    t1, 0(t0)
 
   li    t0, IC0_CFG0CLR
   sw    t1, 0(t0)
 
   li    t0, IC0_CFG1CLR
   sw    t1, 0(t0)
 
   li    t0, IC0_CFG2CLR
   sw    t1, 0(t0)
 
   li    t0, IC0_SRCSET
   sw    t1, 0(t0)
 
   li    t0, IC0_ASSIGNSET
   sw    t1, 0(t0)
 
   li    t0, IC0_WAKECLR
   sw    t1, 0(t0)
 
   li    t0, IC0_RISINGCLR
   sw    t1, 0(t0)
 
   li    t0, IC0_FALLINGCLR
   sw    t1, 0(t0)
 
   li    t0, IC0_TESTBIT
   li    t1, 0x00000000
   sw    t1, 0(t0)
   sync
 
   li    t0, IC1_CFG0CLR
   li    t1, 0xFFFFFFFF
   sw    t1, 0(t0)
 
   li    t0, IC1_CFG0CLR
   sw    t1, 0(t0)
 
   li    t0, IC1_CFG1CLR
   sw    t1, 0(t0)
 
   li    t0, IC1_CFG2CLR
   sw    t1, 0(t0)
 
   li    t0, IC1_SRCSET
   sw    t1, 0(t0)
 
   li    t0, IC1_ASSIGNSET
   sw    t1, 0(t0)
 
   li    t0, IC1_WAKECLR
   sw    t1, 0(t0)
 
   li    t0, IC1_RISINGCLR
   sw    t1, 0(t0)
 
   li    t0, IC1_FALLINGCLR
   sw    t1, 0(t0)
 
   li    t0, IC1_TESTBIT
   li    t1, 0x00000000
   sw    t1, 0(t0)
   sync
 
   li    t0, SYS_FREQCTRL0
   li    t1, 0x00000000
   sw    t1, 0(t0)
 
   li    t0, SYS_FREQCTRL1
   li    t1, 0x00000000
   sw    t1, 0(t0)
 
   li    t0, SYS_CLKSRC
   li    t1, 0x00000000
   sw    t1, 0(t0)
 
   li    t0, SYS_PININPUTEN
   li    t1, 0x00000000
   sw    t1, 0(t0)
   sync
 
   li    t0, 0xB1100100
   li    t1, 0x00000000
   sw    t1, 0(t0)
 
   li    t0, 0xB1400100
   li    t1, 0x00000000
   sw    t1, 0(t0)
 
 
   li    t0, SYS_WAKEMSK
   li    t1, 0x00000000
   sw    t1, 0(t0)
 
   li    t0, SYS_WAKESRC
   li    t1, 0x00000000
   sw    t1, 0(t0)
 
   /* wait 1mS before setup */
   li    t1, MEM_1MS
1:    add    t1, -1
   bne    t1, zero, 1b
   nop
 
#ifdef CONFIG_DBAU1550
/* SDCS 0,1,2 DDR SDRAM */
   li    t0, MEM_SDMODE0
   li    t1, 0x04276221
   sw    t1, 0(t0)
 
   li    t0, MEM_SDMODE1
   li    t1, 0x04276221
   sw    t1, 0(t0)
 
   li    t0, MEM_SDMODE2
   li    t1, 0x04276221
   sw    t1, 0(t0)
 
   li    t0, MEM_SDADDR0
   li    t1, 0xe21003f0
   sw    t1, 0(t0)
 
   li    t0, MEM_SDADDR1
   li    t1, 0xe21043f0
   sw    t1, 0(t0)
 
   li    t0, MEM_SDADDR2
   li    t1, 0xe21083f0
   sw    t1, 0(t0)
 
   sync
 
   li    t0, MEM_SDCONFIGA
   li    t1, 0x9030060a /* Program refresh - disabled */
   sw    t1, 0(t0)
   sync
 
   li    t0, MEM_SDCONFIGB
   li    t1, 0x00028000
   sw    t1, 0(t0)
   sync
 
   li    t0, MEM_SDPRECMD /* Precharge all */
   li    t1, 0
   sw    t1, 0(t0)
   sync
 
   li    t0, MEM_SDWRMD0
   li    t1, 0x40000000
   sw    t1, 0(t0)
   sync
 
   li    t0, MEM_SDWRMD1
   li    t1, 0x40000000
   sw    t1, 0(t0)
   sync
 
   li    t0, MEM_SDWRMD2
   li    t1, 0x40000000
   sw    t1, 0(t0)
   sync
 
   li    t0, MEM_SDWRMD0
   li    t1, 0x00000063
   sw    t1, 0(t0)
   sync
 
   li    t0, MEM_SDWRMD1
   li    t1, 0x00000063
   sw    t1, 0(t0)
   sync
 
   li    t0, MEM_SDWRMD2
   li    t1, 0x00000063
   sw    t1, 0(t0)
   sync
 
   li    t0, MEM_SDPRECMD /* Precharge all */
   sw    zero, 0(t0)
   sync
 
   /* Issue 2 autoref */
   li    t0, MEM_SDAUTOREF
   sw    zero, 0(t0)
   sync
 
   li    t0, MEM_SDAUTOREF
   sw    zero, 0(t0)
   sync
 
   /* Enable refresh */
   li    t0, MEM_SDCONFIGA
   li    t1, 0x9830060a /* Program refresh - enabled */
   sw    t1, 0(t0)
   sync
 
#else /* CONFIG_DBAU1550 */
/* SDCS 0,1 SDRAM */
   li    t0, MEM_SDMODE0
   li    t1, 0x005522AA
   sw    t1, 0(t0)
 
   li    t0, MEM_SDMODE1
   li    t1, 0x005522AA
   sw    t1, 0(t0)
 
   li    t0, MEM_SDMODE2
   li    t1, 0x00000000
   sw    t1, 0(t0)
 
   li    t0, MEM_SDADDR0
   li    t1, 0x001003F8
   sw    t1, 0(t0)
 
 
   li    t0, MEM_SDADDR1
   li    t1, 0x001023F8
   sw    t1, 0(t0)
 
   li    t0, MEM_SDADDR2
   li    t1, 0x00000000
   sw    t1, 0(t0)
 
   sync
 
   li    t0, MEM_SDREFCFG
   li    t1, 0x64000C24 /* Disable */
   sw    t1, 0(t0)
   sync
 
   li    t0, MEM_SDPRECMD
   sw    zero, 0(t0)
   sync
 
   li    t0, MEM_SDAUTOREF
   sw    zero, 0(t0)
   sync
   sw    zero, 0(t0)
   sync
 
   li    t0, MEM_SDREFCFG
   li    t1, 0x66000C24 /* Enable */
   sw    t1, 0(t0)
   sync
 
   li    t0, MEM_SDWRMD0
   li    t1, 0x00000033
   sw    t1, 0(t0)
   sync
 
   li    t0, MEM_SDWRMD1
   li    t1, 0x00000033
   sw    t1, 0(t0)
   sync
 
#endif /* CONFIG_DBAU1550 */
   /* wait 1mS after setup */
   li    t1, MEM_1MS
1:    add    t1, -1
   bne    t1, zero, 1b
   nop
 
   li    t0, SYS_PINFUNC
   li    t1, 0x00008080
   sw    t1, 0(t0)
 
   li    t0, SYS_TRIOUTCLR
   li    t1, 0x00001FFF
   sw    t1, 0(t0)
 
   li    t0, SYS_OUTPUTCLR
   li    t1, 0x00008000
   sw    t1, 0(t0)
   sync
 
   jr    ra
   nop