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
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
|
#include "ppc_asm.tmpl"
#include "ppc_defs.h"
#include <linux/errno.h>
#include <linux/sys.h>
#include <asm/ppc_machine.h>
#define NEWMM 1
#define SYNC() \
isync; \
sync
#define STATS
/*
* Increment a [64 bit] statistic counter
* Uses R2, R3
*/
#define BUMP(ctr) \
lis r2,ctr@h; \
ori r2,r2,ctr@l; \
lwz r3,4(r2); \
addic r3,r3,1; \
stw r3,4(r2); \
lwz r3,0(r2); \
addze r3,r3; \
stw r3,0(r2)
/* The same as 'BUMP' but running unmapped (TLB code) */
#define BUMP_UNMAPPED(ctr) \
mfspr r0,XER; \
lis r2,ctr@h; \
ori r2,r2,ctr@l; \
lis r3,0xF000; \
andc r2,r2,r3; \
lwz r3,4(r2); \
addic r3,r3,1; \
stw r3,4(r2); \
lwz r3,0(r2); \
addze r3,r3; \
mtspr XER,r0; \
stw r3,0(r2)
#define DO_RFI_TRACE_UNMAPPED(mark)
#define DO_RFI_TRACE_MAPPED(mark)
#define DEFAULT_TRAP(offset) \
li r13,0; \
ori r13,r13,HID0_ICE; \
mtspr HID0,r13; \
lis r13,0xFFF00000>>16; \
ori r13,r13,offset; \
mtlr r13; \
blr
#define TRACE_TRAP(offset)
#define DATA_CACHE_OFF() \
mfspr r2,HID0; \
li r3,0; \
ori r3,r3,HID0_DCE; \
andc r2,r2,r3; \
mtspr HID0,r2;
#define DATA_CACHE_ON() \
mfspr r2,HID0; \
ori r2,r2,HID0_DCE; \
mtspr HID0,r2;
/* This instruction is not implemented on the PPC 603 */
#define tlbia \
li r4,64; \
mtspr CTR,r4; \
lis r4,0x9000; \
0: tlbie r4; \
addi r4,r4,0x1000; \
bdnz 0b
/* Validate kernel stack - check for overflow */
/* all regs are considered scratch since the C function will stomp them */
#define CHECK_STACK() \
/*lis r3,current_set@ha; \
lwz r3,current_set@l(r3); \
bl _EXTERN(check_stack)*/
#if 0
#define _CHECK_STACK() \
mtspr SPR0,r3; \
mtspr SPR1,r4; /* use r3,4 as scratch */ \
lis r2,current_set@ha; \
lwz r2,current_set@l(r2); \
lwz r2,KERNEL_STACK_PAGE(r2); \
/* if kernel stack is sys_stack skip check */ \
/*lis r3,sys_stack@h; \
ori r3,r3,sys_stack@l; \
cmpl 0,r1,r3;*/ \
/* check for STACK_MAGIC on kernel stack page */ \
lis r3, 0xdead; /* STACK_MAGIC */ \
ori r3,r3,0xbeef; \
lwz r4,0(r2); /* get *kernel_stack_page */ \
cmpl 0,r4,r3; \
bne 01f; \
/* check that ksp is > kernel page */ \
/*li r3,0x0FFF; \
andc r2,r2,r3; \
andc r3,r1,r3; \
cmp 0,r3,r2; \
beq 02f;*/ \
/* check that ksp and kernel stack page are on same page */ \
cmp 0,r1,r2; \
bge 02f; \
01: mr r6,r1; /* setup info for call to bad_stack() */ \
mr r5,r2; \
bl _EXTERN(bad_stack); \
02: mfspr r4,SPR1; \
mfspr r3,SPR0
#endif
/* save fp regs if fp is used */
/* assumes that r1 contains ptr to regs of task and r2 is scratch
-- Cort */
#define SAVE_FP_REGS() \
/* check if fp has been used by checking msr_fp bit */ \
lwz r2,_MSR(r1); \
andi. r2,r2,MSR_FP; \
bne 00f; \
/* floating point has been used -- save fp regs */ \
lis r2,current_set@h; \
ori r2,r2,current_set@l; \
addi r2,r2,TSS; \
/*mr r2,r1;*/ \
stfd fr0,TSS_FPR0(r2); \
stfd fr1,TSS_FPR1(r2); \
stfd fr2,TSS_FPR2(r2); \
stfd fr3,TSS_FPR3(r2); \
stfd fr4,TSS_FPR4(r2); \
stfd fr5,TSS_FPR5(r2); \
stfd fr6,TSS_FPR6(r2); \
stfd fr7,TSS_FPR7(r2); \
stfd fr8,TSS_FPR8(r2); \
stfd fr9,TSS_FPR9(r2); \
stfd fr10,TSS_FPR10(r2); \
stfd fr11,TSS_FPR11(r2); \
stfd fr12,TSS_FPR12(r2); \
stfd fr13,TSS_FPR13(r2); \
stfd fr14,TSS_FPR14(r2); \
stfd fr15,TSS_FPR15(r2); \
stfd fr16,TSS_FPR16(r2); \
stfd fr17,TSS_FPR17(r2); \
stfd fr18,TSS_FPR18(r2); \
stfd fr19,TSS_FPR19(r2); \
stfd fr20,TSS_FPR20(r2); \
stfd fr21,TSS_FPR21(r2); \
stfd fr22,TSS_FPR22(r2); \
stfd fr23,TSS_FPR23(r2); \
stfd fr24,TSS_FPR24(r2); \
stfd fr25,TSS_FPR25(r2); \
stfd fr26,TSS_FPR26(r2); \
stfd fr27,TSS_FPR27(r2); \
stfd fr28,TSS_FPR28(r2); \
stfd fr29,TSS_FPR29(r2); \
stfd fr30,TSS_FPR30(r2); \
stfd fr31,TSS_FPR31(r2); \
00:
/* restores fp regs if fp has been used -- always restores fpscr */
/* assumes that r1 contains ptr to regs, r2 is scratch and srr1 holds
what will become the msr when this process executes -- Cort*/
#define RESTORE_FP_REGS(mark) \
/* check if restoring from _switch() */ \
li r2, mark; \
cmpi 0,r2,0x0f0f; \
bne 00f; /* only need to save if called from _switch() with 0x0f0f */\
/* check if fp has been used by checking msr_fp bit */ \
/* srr1 contains msr */ \
mfspr r2,SRR1; \
andi. r2,r2,MSR_FP; \
bne 00f; \
/* floating point has been used -- restore fp regs */ \
/* Hey, Rocky! Watch me pull fp regs from my stack! */ \
lis r2,current_set@h; \
ori r2,r2,current_set@l; \
addi r2,r2,TSS; \
/*mr r2,r1;*/\
lfd fr0,TSS_FPR0(r2); \
lfd fr1,TSS_FPR1(r2); \
lfd fr2,TSS_FPR2(r2); \
lfd fr3,TSS_FPR3(r2); \
lfd fr4,TSS_FPR4(r2); \
lfd fr5,TSS_FPR5(r2); \
lfd fr6,TSS_FPR6(r2); \
lfd fr7,TSS_FPR7(r2); \
lfd fr8,TSS_FPR8(r2); \
lfd fr9,TSS_FPR9(r2); \
lfd fr10,TSS_FPR10(r2); \
lfd fr11,TSS_FPR11(r2); \
lfd fr12,TSS_FPR12(r2); \
lfd fr13,TSS_FPR13(r2); \
lfd fr14,TSS_FPR14(r2); \
lfd fr15,TSS_FPR15(r2); \
lfd fr16,TSS_FPR16(r2); \
lfd fr17,TSS_FPR17(r2); \
lfd fr18,TSS_FPR18(r2); \
lfd fr19,TSS_FPR19(r2); \
lfd fr20,TSS_FPR20(r2); \
lfd fr21,TSS_FPR21(r2); \
lfd fr22,TSS_FPR22(r2); \
lfd fr23,TSS_FPR23(r2); \
lfd fr24,TSS_FPR24(r2); \
lfd fr25,TSS_FPR25(r2); \
lfd fr26,TSS_FPR26(r2); \
lfd fr27,TSS_FPR27(r2); \
lfd fr28,TSS_FPR28(r2); \
lfd fr29,TSS_FPR29(r2); \
lfd fr30,TSS_FPR30(r2); \
lfd fr31,TSS_FPR31(r2); \
00:
/* save all registers */
#define SAVE_ALL_REGS(mark) \
subi r1,r1,INT_FRAME_SIZE; /* Make room for frame */ \
stmw r3,GPR3(r1); /* Save R3..R31 */ \
stw r3,ORIG_GPR3(r1); \
stw r0,GPR0(r1); \
mfspr r2,SPR0; \
stw r2,GPR1(r1); \
mfspr r2,SPR1; \
stw r2,GPR2(r1); \
mfspr r2,SPR2; \
stw r2,_NIP(r1); \
mfspr r2,SPR3; \
stw r2,_MSR(r1); \
mfctr r2; \
stw r2,_CTR(r1); \
mflr r2; \
stw r2,_LINK(r1); \
mfcr r2; \
stw r2,_CCR(r1); \
mfspr r2,XER; \
stw r2,_XER(r1); \
mffs fr0; \
stfd fr0,FPCSR(r1); \
lis r2,_break_lwarx@h; \
ori r2,r2,_break_lwarx@l; \
stwcx. r2,0,r2; \
li r2,mark; \
stw r2,TRAP(r1); \
lis r2,0xDEAD; \
ori r2,r2,0xDEAD; \
stw r2,MARKER(r1); \
li r2,0; \
stw r2,RESULT(r1)
/* save registers clobbered by a page fault handler */
#define SAVE_PAGE_FAULT_REGS(offset) \
mfspr r2,DAR; \
stw r2,_DAR(r1); \
mfspr r2,DSISR; \
stw r2,_DSISR(r1); \
mfspr r2,PVR; /* Check for 603/603e */ \
srwi r2,r2,16; \
cmpi 0,r2,3; /* 603 */ \
beq 22f; \
cmpi 0,r2,6; /* 603e */ \
bne 24f; \
22: mfspr r2,HASH1; /* Note: these registers exist only on 603 */ \
stw r2,_HASH1(r1); \
mfspr r2,HASH2; \
stw r2,_HASH2(r1); \
mfspr r2,IMISS; \
stw r2,_IMISS(r1); \
mfspr r2,DMISS; \
stw r2,_DMISS(r1); \
mfspr r2,ICMP; \
stw r2,_ICMP(r1); \
mfspr r2,DCMP; \
stw r2,_DCMP(r1); \
24:
#define SAVE_INT_REGS(mark) \
mtspr SPR0,r1; /* Save current stack pointer */ \
mtspr SPR1,r2; /* Scratch */ \
mfcr r2; \
mtspr SPR2,r2; \
mfspr r2,SRR1; /* Interrupt from user/system mode */ \
andi. r2,r2,MSR_PR; \
beq+ 10f; /* Jump if system - already have stack */ \
mfspr r2,SPR2; /* Restore CCR */ \
mtcrf 0xFF,r2; \
mfspr r2,SRR0; /* Preserve interrupt registers */ \
mtspr SPR2,r2; \
mfspr r2,SRR1; \
mtspr SPR3,r2; \
lis r2,05f@h; \
ori r2,r2,05f@l; \
mtspr SRR0,r2; \
mfmsr r2; \
ori r2,r2,MSR_|MSR_DR|MSR_IR; \
mtspr SRR1,r2; \
rfi; \
05: lis r2,current_set@ha; \
lwz r2,current_set@l(r2); \
mfspr r1,SPR2; \
stw r1,TSS+LAST_PC(r2); \
mfspr r1,SPR0; \
stw r1,TSS+USER_STACK(r2); \
lwz r1,TSS+KSP(r2); \
subi r1,r1,INT_FRAME_SIZE; /* Make room for frame */ \
stw r1,TSS+PT_REGS(r2); /* Save regs pointer for 'ptrace' */ \
lwz r1,TSS+KSP(r2); \
b 20f; \
10: mfspr r2,SPR2; /* Restore CCR */ \
mtcrf 0xFF,r2; \
mfspr r2,SRR0; /* Preserve interrupt registers */ \
mtspr SPR2,r2; \
mfspr r2,SRR1; \
mtspr SPR3,r2; \
lis r2,20f@h; \
ori r2,r2,20f@l; \
mtspr SRR0,r2; \
mfmsr r2; \
ori r2,r2,MSR_|MSR_DR|MSR_IR; \
mtspr SRR1,r2; \
SYNC(); \
rfi; \
20: SAVE_ALL_REGS(mark); \
CHECK_STACK()
#define RETURN_FROM_INT(mark) \
90: mfmsr r0; /* Disable interrupts */ \
li r4,0; \
ori r4,r4,MSR_EE; \
andc r0,r0,r4; \
sync; /* Some chip revs need this... */ \
mtmsr r0; \
lis r2,intr_count@ha; /* Need to run 'bottom half' */ \
lwz r3,intr_count@l(r2); \
cmpi 0,r3,0; \
bne 00f; \
lis r4,bh_mask@ha; \
lwz r4,bh_mask@l(r4); \
lis r5,bh_active@ha; \
lwz r5,bh_active@l(r5); \
and. r4,r4,r5; \
beq 00f; \
addi r3,r3,1; \
stw r3,intr_count@l(r2); \
bl _EXTERN(_do_bottom_half); \
lis r2,intr_count@ha; \
lwz r3,intr_count@l(r2); \
subi r3,r3,1; \
stw r3,intr_count@l(r2); \
00: lwz r2,_MSR(r1); /* Returning to user mode? */ \
andi. r2,r2,MSR_PR; \
beq+ 10f; /* no - no need to mess with stack */ \
/* lis r2,kernel_pages_are_copyback@ha; \
lwz r2,kernel_pages_are_copyback@l(r2); \
cmpi 0,r2,0; \
beq 05f; \
bl _EXTERN(flush_instruction_cache); */ \
05: lis r3,current_set@ha; /* need to save kernel stack pointer */ \
lwz r3,current_set@l(r3); \
/*addi r4,r1,INT_FRAME_SIZE*/; /* size of frame */ \
lwz r4, KERNEL_STACK_PAGE(r3); \
addi r4,r4,KERNEL_STACK_SIZE; /* reset stack pointer to top of stack page */ \
/* stack isn't 0'd so show_task():sched.c shows highwater of stack */ \
stw r4,TSS+KSP(r3); \
lwz r4,STATE(r3); /* If state != 0, can't run */ \
cmpi 0,r4,0; \
beq 06f; \
bl _EXTERN(schedule); \
b 90b; \
06: lwz r4,COUNTER(r3); /* Time quantum expired? */ \
cmpi 0,r4,0; \
bne 07f; \
bl _EXTERN(schedule); \
b 90b; \
07: lwz r4,BLOCKED(r3); /* Check for pending unblocked signals */ \
lwz r5,SIGNAL(r3); \
andc. r0,r5,r4; /* Lets thru any unblocked */ \
beq 10f; \
mr r3,r4; \
mr r4,r1; \
bl _EXTERN(do_signal); \
10: lwz r2,_NIP(r1); /* Restore environment */ \
mtspr SRR0,r2; \
lwz r2,_MSR(r1); \
mtspr SRR1,r2; \
lmw r3,GPR3(r1); \
lwz r2,_CTR(r1); \
mtctr r2; \
lwz r2,_LINK(r1); \
mtlr r2; \
lwz r2,_XER(r1); \
mtspr XER,r2; \
lfd fr0,FPCSR(r1); \
mtfsf 0xFF,fr0; \
RESTORE_FP_REGS(mark) ; \
lwz r2,_CCR(r1); \
mtcrf 0xFF,r2; \
lwz r0,GPR0(r1); \
lwz r2,GPR2(r1); \
lwz r1,GPR1(r1); \
SYNC(); \
rfi
_TEXT()
/*
* This code may be executed by a bootstrap process. If so, the
* purpose is to relocate the loaded image to it's final location
* in memory.
* R3: End of image
* R4: Start of image - 0x400
* R11: Start of command line string
* R12: End of command line string
* R30: 'BeBx' if this is a BeBox
*
*/
.globl _start
.globl _stext
_stext:
_start:
addi r4,r4,0x400 /* Point at start of image */
li r5,0 /* Load address */
subi r4,r4,4 /* Adjust for auto-increment */
subi r5,r5,4
subi r3,r3,4
00: lwzu r0,4(r4) /* Fast move */
stwu r0,4(r5)
cmp 0,r3,r4
bne 00b
li r5,0x100 /* Actual code starts here */
mtlr r5
blr
hang:
ori r0,r0,0
b hang
/*
* BeBox CPU #1 vector & code
*/
_ORG(0x0080)
.globl BeBox_CPU1_vector
BeBox_CPU1_vector:
.long 0
BeBox_CPU1_reset:
li r1,BeBox_CPU1_vector@l
li r2,0
stw r2,0(r1)
00: lwz r2,0(r1)
cmpi 0,r2,0
bne 10f
li r2,10000
mtctr r2
02: nop
bdnz 02b
b 00b
10: mtlr r1
blr
_ORG(0x0100)
/* Hard Reset */
.globl HardReset
HardReset:
b Reset
_ORG(0x0200)
b MachineCheck
_ORG(0x0300)
b DataAccess
_ORG(0x0400)
b InstructionAccess
_ORG(0x0500)
b HardwareInterrupt
_ORG(0x0600)
b Alignment
_ORG(0x0700)
b ProgramCheck
_ORG(0x0800)
b FloatingPointCheck
/* Decrementer register - ignored for now... */
_ORG(0x0900)
/* TRACE_TRAP(0x900) */
mtspr SPR0,r1
lis r1,0x7FFF
ori r1,r1,0xFFFF
mtspr DEC,r1
mfspr r1,SPR0
#if 0
SYNC
#endif
rfi
_ORG(0x0A00)
DEFAULT_TRAP(0x0A00)
_ORG(0x0B00)
DEFAULT_TRAP(0x0B00)
/*
* System call
*/
_ORG(0x0C00)
b SystemCall
_ORG(0x0D00)
b SingleStep
_ORG(0x0E00)
DEFAULT_TRAP(0x0E00)
_ORG(0x0F00)
DEFAULT_TRAP(0x0F00)
/*
* Handle TLB Miss on an instruction load
*/
_ORG(0x1000)
/* Note: It is *unsafe* to use the TRACE TRAP macro here since there */
/* could be a 'trace' in progress when the TLB miss occurs. */
/* TRACE_TRAP(0x1000) */
b InstructionTLBMiss
/*
* Handle TLB Miss on a data item load
*/
_ORG(0x1100)
/* TRACE_TRAP(0x1100) */
b DataLoadTLBMiss
/*
* Handle TLB Miss on a store operation
*/
_ORG(0x1200)
/* TRACE_TRAP(0x1200) */
b DataStoreTLBMiss
_ORG(0x1300)
InstructionAddressBreakpoint:
DEFAULT_TRAP(0x1300)
_ORG(0x1400)
SystemManagementInterrupt:
DEFAULT_TRAP(0x1400)
_ORG(0x1500)
/*
* This space [buffer] is used to forceably flush the data cache when
* running in copyback mode. This is necessary IFF the data cache could
* contain instructions for which the instruction cache has stale data.
* Since the instruction cache NEVER snoops the data cache, memory must
* be made coherent with the data cache to insure that the instruction
* cache gets a valid instruction stream. Note that this flushing is
* only performed when switching from system to user mode since this is
* the only juncture [as far as the OS goes] where the data cache may
* contain instructions, e.g. after a disk read.
*/
#define NUM_CACHE_LINES 128*4
#define CACHE_LINE_SIZE 32
cache_flush_buffer:
.space NUM_CACHE_LINES*CACHE_LINE_SIZE /* CAUTION! these need to match hardware */
#if NUM_CACHE_LINES < 512
_ORG(0x4000)
#endif
/* changed to use r3 as residual pointer (as firmware does), that's all -- Cort */
/*
* Hardware reset [actually from bootstrap]
* Initialize memory management & call secondary init
* Registers initialized by bootstrap:
* R11: Start of command line string
* R12: End of command line string
* R28: Residual data
* R29: Total Memory Size
* R30: 'BeBx' if this is a BeBox
*/
Reset:
lis r7,0xF000 /* To mask upper 4 bits */
/* set pointer to residual data */
lis r1,resptr@h
ori r1,r1,resptr@l
andc r1,r1,r7
/* changed to use r3 as residual pointer (as firmware does) -- Cort */
/* this is only a ptr, the actual data is copied in mmu_init */
stw r3,0(r1)
/* Copy argument string */
li r0,0 /* Null terminate string */
stb r0,0(r12)
lis r1,cmd_line@h
ori r1,r1,cmd_line@l
andc r1,r1,r7 /* No MMU yet - need unmapped address */
subi r1,r1,1
subi r11,r11,1
00: lbzu r0,1(r11)
cmpi 0,r0,0
stbu r0,1(r1)
bne 00b
#define IS_BE_BOX 0x42654278 /* 'BeBx' */
lis r1,isBeBox@h
ori r1,r1,isBeBox@l
andc r1,r1,r7
/* See if this is a CPU other than CPU#1 */
/* This [currently] happens on the BeBox */
lwz r2,0(r1)
cmpi 0,r2,0
bne Reset_BeBox_CPU1
/* Save machine type indicator */
li r2,0
lis r3,IS_BE_BOX>>16
ori r3,r3,IS_BE_BOX&0xFFFF
cmp 0,r30,r3
bne 00f
li r2,1
mr r11,r28
mr r12,r29
lis r5,BeBox_CPU1_vector@h
ori r5,r5,BeBox_CPU1_vector@l
andc r5,r5,r7 /* Tell CPU #1 where to go */
00: stw r2,0(r1)
stw r30,4(r1)
#if 0
lis r1,sys_stack@h
ori r1,r1,sys_stack@l
#else
lis r1,init_kernel_stack@h
ori r1,r1,init_kernel_stack@l
#endif
addi r1,r1,0x1000 /* top of stack */
#if 0
li r2,0x0FFF /* Mask stack address down to page boundary */
#endif
andc r1,r1,r2
subi r1,r1,INT_FRAME_SIZE /* Padding for first frame */
li r2,0 /* TOC pointer for nanokernel */
li r0,MSR_ /* Make sure FPU enabled */
mtmsr r0
lis r3,_edata@h /* Clear BSS */
ori r3,r3,_edata@l
andc r3,r3,r7 /* make unmapped address */
lis r4,_end@h
ori r4,r4,_end@l
andc r4,r4,r7 /* make unmapped address */
subi r3,r3,4
li r0,0
00: stwu r0,4(r3)
cmp 0,r3,r4
blt 00b
#if 0
/* Save total memory size (passed from bootstrap) */
lis r3,_TotalMemory@h
ori r3,r3,_TotalMemory@l
andc r3,r3,r7 /* make unmapped address */
stw r29,0(r3)
#endif
/* Initialize BAT registers */
lis r3,BAT0@h
ori r3,r3,BAT0@l
andc r3,r3,r7 /* make unmapped address */
lwz r0,0(r3)
mtspr IBAT0U,r0
mtspr DBAT0U,r0
lwz r0,4(r3)
mtspr IBAT0L,r0
mtspr DBAT0L,r0
lis r3,BAT1@h
ori r3,r3,BAT1@l
andc r3,r3,r7 /* make unmapped address */
lwz r0,0(r3)
mtspr IBAT1U,r0
mtspr DBAT1U,r0
lwz r0,4(r3)
mtspr IBAT1L,r0
mtspr DBAT1L,r0
/* this BAT mapping will cover all of kernel space */
#ifdef NEWMM
lis r3,BAT2@h
ori r3,r3,BAT2@l
#else
lis r3,TMP_BAT2@h
ori r3,r3,TMP_BAT2@l
#endif
andc r3,r3,r7 /* make unmapped address */
lwz r0,0(r3)
mtspr IBAT2U,r0
mtspr DBAT2U,r0
lwz r0,4(r3)
mtspr IBAT2L,r0
mtspr DBAT2L,r0
#if 1
lis r3,BAT3@h
ori r3,r3,BAT3@l
andc r3,r3,r7 /* make unmapped address */
lwz r0,0(r3)
mtspr IBAT3U,r0
mtspr DBAT3U,r0
lwz r0,4(r3)
mtspr IBAT3L,r0
mtspr DBAT3L,r0
#endif
/* Now we can turn on the MMU */
mfmsr r3
ori r3,r3,MSR_DR|MSR_IR
mtspr SRR1,r3
lis r3,10f@h
ori r3,r3,10f@l
mtspr SRR0,r3
DO_RFI_TRACE_UNMAPPED(0xDEAD0000)
SYNC
rfi /* enables MMU */
10: bl _EXTERN(MMU_init) /* initialize MMU environment */
DO_RFI_TRACE_MAPPED(0xDEAD0100)
/* Withdraw BAT2->RAM mapping */
lis r7,0xF000 /* To mask upper 4 bits */
lis r3,20f@h
ori r3,r3,20f@l
andc r3,r3,r7 /* make unmapped address */
mtspr SRR0,r3
mfmsr r3
li r4,MSR_DR|MSR_IR
andc r3,r3,r4
mtspr SRR1,r3
SYNC
DO_RFI_TRACE_MAPPED(0xDEAD0200)
SYNC
rfi
20:
DO_RFI_TRACE_UNMAPPED(0xDEAD0400)
20: lis r3,BAT2@h
ori r3,r3,BAT2@l
andc r3,r3,r7 /* make unmapped address */
lwz r0,0(r3)
mtspr IBAT2U,r0
mtspr DBAT2U,r0
lwz r0,4(r3)
mtspr IBAT2L,r0
mtspr DBAT2L,r0
/* Load up the kernel context */
lis r2,init_task@h
ori r2,r2,init_task@l
addi r2,r2,TSS
andc r2,r2,r7 /* make unmapped address */
SYNC /* Force all PTE updates to finish */
tlbia /* Clear all TLB entries */
lis r3,_SDR1@h
ori r3,r3,_SDR1@l
andc r3,r3,r7 /* make unmapped address */
lwz r3,0(r3)
mtspr SDR1,r3
lwz r0,MMU_SEG0(r2)
mtsr SR0,r0
lwz r0,MMU_SEG1(r2)
mtsr SR1,r0
lwz r0,MMU_SEG2(r2)
mtsr SR2,r0
lwz r0,MMU_SEG3(r2)
mtsr SR3,r0
lwz r0,MMU_SEG4(r2)
mtsr SR4,r0
lwz r0,MMU_SEG5(r2)
mtsr SR5,r0
lwz r0,MMU_SEG6(r2)
mtsr SR6,r0
lwz r0,MMU_SEG7(r2)
mtsr SR7,r0
lwz r0,MMU_SEG8(r2)
mtsr SR8,r0
lwz r0,MMU_SEG9(r2)
mtsr SR9,r0
lwz r0,MMU_SEG10(r2)
mtsr SR10,r0
lwz r0,MMU_SEG11(r2)
mtsr SR11,r0
lwz r0,MMU_SEG12(r2)
mtsr SR12,r0
lwz r0,MMU_SEG13(r2)
mtsr SR13,r0
lwz r0,MMU_SEG14(r2)
mtsr SR14,r0
lwz r0,MMU_SEG15(r2)
mtsr SR15,r0
/* Now turn on the MMU for real! */
mfmsr r3
ori r3,r3,MSR_DR|MSR_IR
mtspr SRR1,r3
lis r3,30f@h
ori r3,r3,30f@l
mtspr SRR0,r3
DO_RFI_TRACE_UNMAPPED(0xDEAD0500)
SYNC
rfi /* enables MMU */
30:
/* Turn on L1 Data Cache */
mfspr r3,HID0 /* Caches are controlled by this register */
ori r4,r3,(HID0_ICE|HID0_ICFI)
ori r3,r3,(HID0_ICE)
ori r4,r4,(HID0_DCE|HID0_DCI)
ori r3,r3,(HID0_DCE)
sync
mtspr HID0,r4
mtspr HID0,r3
/* L1 cache enable */
mfspr r2,PVR /* Check for 603/603e */
srwi r2,r2,16
cmpi 0,r2,4 /* 604 */
bne 40f
mfspr r3,HID0 /* Turn on 604 specific features */
ori r3,r3,(HID0_SIED|HID0_BHTE)
mtspr HID0,r3
40: b _EXTERN(start_kernel) /* call main code */
.long 0 # Illegal!
/*
* BeBox CPU #2 runs here
*/
Reset_BeBox_CPU1:
lis r1,CPU1_stack@h
ori r1,r1,CPU1_stack@l
li r2,0x0FFF /* Mask stack address down to page boundary */
andc r1,r1,r2
subi r1,r1,INT_FRAME_SIZE /* Padding for first frame */
lis r30,CPU1_trace@h
ori r30,r30,CPU1_trace@l
andc r30,r30,r7
li r5,1
stw r5,0(r30)
li r2,0 /* TOC pointer for nanokernel */
li r0,MSR_ /* Make sure FPU enabled */
mtmsr r0
/* Initialize BAT registers */
lis r3,BAT0@h
ori r3,r3,BAT0@l
andc r3,r3,r7 /* make unmapped address */
lwz r0,0(r3)
mtspr IBAT0U,r0
mtspr DBAT0U,r0
lwz r0,4(r3)
mtspr IBAT0L,r0
mtspr DBAT0L,r0
lis r3,BAT1@h
ori r3,r3,BAT1@l
andc r3,r3,r7 /* make unmapped address */
lwz r0,0(r3)
mtspr IBAT1U,r0
mtspr DBAT1U,r0
lwz r0,4(r3)
mtspr IBAT1L,r0
mtspr DBAT1L,r0
lis r3,TMP_BAT2@h
ori r3,r3,TMP_BAT2@l
andc r3,r3,r7 /* make unmapped address */
lwz r0,0(r3)
mtspr IBAT2U,r0
mtspr DBAT2U,r0
lwz r0,4(r3)
mtspr IBAT2L,r0
mtspr DBAT2L,r0
/* Now we can turn on the MMU */
mfmsr r3
ori r3,r3,MSR_DR|MSR_IR
mtspr SRR1,r3
lis r3,10f@h
ori r3,r3,10f@l
mtspr SRR0,r3
li r5,2
stw r5,0(r30)
SYNC
rfi /* enables MMU */
10:
lis r30,CPU1_trace@h
ori r30,r30,CPU1_trace@l
li r5,3
stw r5,0(r30)
bl _EXTERN(BeBox_CPU1)
/*
* Machine Check (Bus Errors, etc)
*/
MachineCheck:
TRACE_TRAP(0x0200)
SAVE_INT_REGS(0x0200)
mr r3,r1 /* Set pointer to saved regs */
bl _EXTERN(MachineCheckException)
RETURN_FROM_INT(0x0200)
/*
* Data Access exception
*/
DataAccess:
SAVE_INT_REGS(0x0300)
#if 1
mfspr r3, DAR
mfspr r4, DSISR
li r5, 0 /* not a text fault */
mr r6, r1
bl _EXTERN(new_page_fault)
#else
SAVE_PAGE_FAULT_REGS(0x0D00)
mr r3,r1
bl _EXTERN(DataAccessException)
#endif
RETURN_FROM_INT(0x0300)
/*
* Instruction Access Exception
*/
InstructionAccess:
SAVE_INT_REGS(0x0400)
#if 1
mfspr r3, SPR2 /* srr0 was saved here */
mfspr r4, SPR3 /* srr1 was saved here */
li r5, 1 /* a text fault */
mr r6, r1
bl _EXTERN(new_page_fault)
#else
SAVE_PAGE_FAULT_REGS(0x0D00)
mr r3,r1
bl _EXTERN(InstructionAccessException)
#endif
RETURN_FROM_INT(0x0400)
/*
* Hardware Interrupt
*/
HardwareInterrupt:
SAVE_INT_REGS(0x0500)
BUMP(__Hardware_Interrupts)
mr r3,r1 /* Set pointer to saved regs */
bl _EXTERN(handle_IRQ)
RETURN_FROM_INT(0x0500)
/*
* Alignment
*/
Alignment:
TRACE_TRAP(0x0600)
SAVE_INT_REGS(0x0600)
mr r3,r1 /* Set pointer to saved regs */
bl _EXTERN(AlignmentException)
RETURN_FROM_INT(0x0600)
/*
* Illegal instruction
*/
ProgramCheck:
TRACE_TRAP(0x0700)
SAVE_INT_REGS(0x0700)
mr r3,r1 /* Set pointer to saved regs */
bl _EXTERN(ProgramCheckException)
RETURN_FROM_INT(0x0700)
/*
* Single Step Exception
*/
SingleStep:
SAVE_INT_REGS(0x0D00)
SAVE_PAGE_FAULT_REGS(0x0D00)
mr r3,r1 /* Set pointer to saved regs */
bl _EXTERN(SingleStepException)
#if 0
bl _EXTERN(flush_instruction_cache)
#endif
RETURN_FROM_INT(0x0D00)
/*
* Floating point [not available, etc]
*/
FloatingPointCheck:
SAVE_INT_REGS(0x0800)
mr r3,r1 /* Set pointer to saved regs */
bl _EXTERN(FloatingPointCheckException)
cmpi 0,r3,MSR_FP /* check if fp was turned on by handler */
bne 00f
RETURN_FROM_INT(0x0f0f) /* 0xf0f tells to restore fp regs */
00: RETURN_FROM_INT(0x0200)
/*
* System Call exception
*/
SystemCall:
SAVE_INT_REGS(0x0C00)
lwz r2,_CCR(r1) /* Clear SO bit in CR */
lis r9,0x1000
andc r2,r2,r9
stw r2,_CCR(r1)
cmpi 0,r0,0x7777 /* Special case for 'sys_sigreturn' */
bne+ 10f
mr r3,r1
bl _EXTERN(sys_sigreturn)
cmpi 0,r3,0 /* Check for restarted system call */
bge 99f
b 20f
10: lis r2,current_set@ha
lwz r2,current_set@l(r2)
lwz r2,TASK_FLAGS(r2)
andi. r2,r2,PF_TRACESYS
bne 50f
lis r2,sys_call_table@h
ori r2,r2,sys_call_table@l
slwi r0,r0,2
lwzx r2,r2,r0 /* Fetch system call handler [ptr] */
#if 1
cmpi 0,r2,0 /* make sure syscall handler not 0 */
beq 99f
cmpi 0,r0,NR_syscalls<<2 /* make sure syscallnum in bounds */
bgt 99f
#endif
mtlr r2
mr r9,r1
blrl /* Call handler */
20: stw r3,RESULT(r1) /* Save result */
cmpi 0,r3,0
bge 30f
neg r3,r3
cmpi 0,r3,ERESTARTNOHAND
bne 22f
li r3,EINTR
22: lwz r2,_CCR(r1) /* Set SO bit in CR */
oris r2,r2,0x1000
stw r2,_CCR(r1)
30: stw r3,GPR3(r1) /* Update return value */
b 99f
/* Traced system call support */
50: bl _EXTERN(syscall_trace)
lwz r0,GPR0(r1) /* Restore original registers */
lwz r3,GPR3(r1)
lwz r4,GPR4(r1)
lwz r5,GPR5(r1)
lwz r6,GPR6(r1)
lwz r7,GPR7(r1)
lwz r8,GPR8(r1)
lwz r9,GPR9(r1)
lis r2,sys_call_table@h
ori r2,r2,sys_call_table@l
slwi r0,r0,2
lwzx r2,r2,r0 /* Fetch system call handler [ptr] */
mtlr r2
mr r9,r1
blrl /* Call handler */
stw r3,RESULT(r1) /* Save result */
cmpi 0,r3,0
bge 60f
neg r3,r3
cmpi 0,r3,ERESTARTNOHAND
bne 52f
li r3,EINTR
52: lwz r2,_CCR(r1) /* Set SO bit in CR */
oris r2,r2,0x1000
stw r2,_CCR(r1)
60: stw r3,GPR3(r1) /* Update return value */
bl _EXTERN(syscall_trace)
99:
RETURN_FROM_INT(0x0C00)
/*
* Handle TLB miss for instruction
*/
InstructionTLBMiss:
BUMP_UNMAPPED(__Instruction_TLB_Misses)
mfctr r0 /* Need to save this - CTR can't be touched! */
mfspr r2,HASH1 /* Get PTE pointer */
mfspr r3,ICMP /* Partial item compare value */
00: li r1,8 /* 8 items / bucket */
mtctr r1
subi r2,r2,8 /* Preset pointer */
10: lwzu r1,8(r2) /* Get next PTE */
cmp 0,r1,r3 /* Found entry yet? */
bdne 10b /* Jump back if not, until CTR==0 */
bne 30f /* Try secondary hash if CTR==0 */
lwz r1,4(r2) /* Get second word of entry */
#if 0
andi. r3,r1,0x08 /* Check guard bit - invalid access if set */
bne InstructionFetchError
#endif
andi. r3,r1,0x100 /* Check R bit (referenced) */
bne 20f /* If set, all done */
ori r1,r1,0x100 /* Set bit */
stw r1,4(r2) /* Update memory image */
20: mtctr r0 /* Restore CTR */
mfspr r3,SRR1 /* Need to restore CR0 */
mtcrf 0x80,r3
mfspr r0,IMISS /* Set to update TLB */
mtspr RPA,r1
tlbli r0
#if 0
SYNC
#endif
rfi /* All done */
/* Secondary hash */
30: andi. r1,r3,0x40 /* Already doing secondary hash? */
bne InstructionAddressInvalid /* Yes - item not in hash table */
mfspr r2,HASH2 /* Get hash table pointer */
ori r3,r3,0x40 /* Set secondary hash */
b 00b /* Try lookup again */
/*
* Handle TLB miss for DATA Load operation
*/
DataLoadTLBMiss:
mfctr r0 /* Need to save this - CTR can't be touched! */
mfspr r2,HASH1 /* Get PTE pointer */
mfspr r3,DCMP /* Partial item compare value */
00: li r1,8 /* 8 items / bucket */
mtctr r1
subi r2,r2,8 /* Preset pointer */
10: lwzu r1,8(r2) /* Get next PTE */
cmp 0,r1,r3 /* Found entry yet? */
bdne 10b /* Jump back if not, until CTR==0 */
bne 30f /* Try secondary hash if CTR==0 */
lwz r1,4(r2) /* Get second word of entry */
andi. r3,r1,0x100 /* Check R bit (referenced) */
ori r1,r1,0x100 /* Set bit */
bne 20f /* If set, all done */
stw r1,4(r2) /* Update memory image */
20: mtctr r0 /* Restore CTR */
mfspr r3,SRR1 /* Need to restore CR0 */
mtcrf 0x80,r3
mfspr r0,DMISS /* Set to update TLB */
mtspr RPA,r1
/* SYNC() */
tlbld r0
#if 0
SYNC
#endif
rfi /* All done */
/* Secondary hash */
30: andi. r1,r3,0x40 /* Already doing secondary hash? */
bne DataAddressInvalid /* Yes - item not in hash table */
mfspr r2,HASH2 /* Get hash table pointer */
ori r3,r3,0x40 /* Set secondary hash */
b 00b /* Try lookup again */
/*
* Handle TLB miss for DATA STORE
*/
DataStoreTLBMiss:
BUMP_UNMAPPED(__DataStore_TLB_Misses)
mfctr r0 /* Need to save this - CTR can't be touched! */
mfspr r2,HASH1 /* Get PTE pointer */
mfspr r3,DCMP /* Partial item compare value */
00: li r1,8 /* 8 items / bucket */
mtctr r1
subi r2,r2,8 /* Preset pointer */
10: lwzu r1,8(r2) /* Get next PTE */
cmp 0,r1,r3 /* Found entry yet? */
bdne 10b /* Jump back if not, until CTR==0 */
bne 30f /* Try secondary hash if CTR==0 */
lwz r1,4(r2) /* Get second word of entry */
andi. r3,r1,0x80 /* Check C bit (changed) */
#if 0 /* Note: no validation */
beq 40f /* If not set (first time) validate access */
#else
ori r1,r1,0x180 /* Set changed, accessed */
bne 20f
stw r1,4(r2)
#endif
20: mtctr r0 /* Restore CTR */
mfspr r3,SRR1 /* Need to restore CR0 */
mtcrf 0x80,r3
mfspr r0,DMISS /* Set to update TLB */
mtspr RPA,r1
tlbld r0
#if 0
SYNC
#endif
rfi /* All done */
/* Secondary hash */
30: andi. r1,r3,0x40 /* Already doing secondary hash? */
bne DataAddressInvalid /* Yes - item not in hash table */
mfspr r2,HASH2 /* Get hash table pointer */
ori r3,r3,0x40 /* Set secondary hash */
b 00b /* Try lookup again */
/* PTE found - validate access */
40: rlwinm. r3,r1,30,0,1 /* Extract PP bits */
bge- 50f /* Jump if PP=0,1 */
andi. r3,r1,1
beq+ 70f /* Access OK */
b WriteProtectError /* Not OK - fail! */
50: mfspr r3,SRR1 /* Check privilege */
andi. r3,r3,MSR_PR
beq+ 60f /* Jump if supervisor mode */
mfspr r3,DMISS /* Get address */
mfsrin r3,r3 /* Get segment register */
andis. r3,r3,0x2000 /* If Kp==0, OK */
beq+ 70f
b WriteProtectError /* Bad access */
60: mfspr r3,DMISS /* Get address */
mfsrin r3,r3 /* Get segment register */
andis. r3,r3,0x4000 /* If Ks==0, OK */
beq+ 70f
b WriteProtectError /* Bad access */
70: ori r1,r1,0x180 /* Set changed, accessed */
stw r1,4(r2) /* Update PTE in memory */
b 20b
/*
* These routines are error paths/continuations of the exception
* handlers above. They are placed here to avoid the problems
* of only 0x100 bytes per exception handler.
*/
/* Invalid address */
InstructionAddressInvalid:
mfspr r3,SRR1
rlwinm r1,r3,9,6,6 /* Get load/store bit */
addis r1,r1,0x4000 /* Set bit 1 -> PTE not found */
b 10f
/* Fetch from guarded or no-access page */
InstructionFetchError:
mfspr r3,SRR1
rlwinm r1,r3,9,6,6 /* Get load/store bit */
addis r1,r1,0x0800 /* Set bit 4 -> protection error */
10: mtspr DSISR,r1
mtctr r0 /* Restore CTR */
andi. r2,r3,0xFFFF /* Clear upper bits of SRR1 */
mtspr SRR1,r2
mfspr r1,IMISS /* Get failing address */
rlwinm. r2,r2,0,31,31 /* Check for little endian access */
beq 20f /* Jump if big endian */
xori r1,r1,3
20: mtspr DAR,r1 /* Set fault address */
mfmsr r0 /* Restore "normal" registers */
xoris r0,r0,MSR_TGPR>>16
mtcrf 0x80,r3 /* Restore CR0 */
ori r0,r0,MSR_FP /* Need to keep FP enabled */
sync /* Some chip revs have problems here... */
mtmsr r0
b InstructionAccess
/* Invalid address */
DataAddressInvalid:
mfspr r3,SRR1
rlwinm r1,r3,9,6,6 /* Get load/store bit */
addis r1,r1,0x4000 /* Set bit 1 -> PTE not found */
b 10f
/* Write to read-only space */
WriteProtectError:
mfspr r3,SRR1
rlwinm r1,r3,9,6,6 /* Get load/store bit */
addis r1,r1,0x0800 /* Set bit 4 -> protection error */
10: mtspr DSISR,r1
mtctr r0 /* Restore CTR */
andi. r2,r3,0xFFFF /* Clear upper bits of SRR1 */
mtspr SRR1,r2
mfspr r1,DMISS /* Get failing address */
rlwinm. r2,r2,0,31,31 /* Check for little endian access */
beq 20f /* Jump if big endian */
xori r1,r1,3
20: mtspr DAR,r1 /* Set fault address */
mfmsr r0 /* Restore "normal" registers */
xoris r0,r0,MSR_TGPR>>16
mtcrf 0x80,r3 /* Restore CR0 */
ori r0,r0,MSR_FP /* Need to keep FP enabled */
sync /* Some chip revs have problems here... */
mtmsr r0
b DataAccess
/*
* Flush instruction cache
* *** I'm really paranoid here!
*/
_GLOBAL(flush_instruction_cache)
mflr r5
bl _EXTERN(flush_data_cache)
mfspr r3,HID0 /* Caches are controlled by this register */
li r4,0
ori r4,r4,(HID0_ICE|HID0_ICFI)
or r3,r3,r4 /* Need to enable+invalidate to clear */
mtspr HID0,r3
andc r3,r3,r4
ori r3,r3,HID0_ICE /* Enable cache */
mtspr HID0,r3
mtlr r5
blr
/*
* Flush data cache
* *** I'm really paranoid here!
*/
_GLOBAL(flush_data_cache)
BUMP(__Cache_Flushes)
lis r3,cache_is_copyback@ha
lwz r3,cache_is_copyback@l(r3)
cmpi 0,r3,0
beq 10f
/* When DATA CACHE is copy-back */
lis r3,cache_flush_buffer@h
ori r3,r3,cache_flush_buffer@l
li r4,NUM_CACHE_LINES
mtctr r4
00: dcbz 0,r3 /* Flush cache line with minimal BUS traffic */
addi r3,r3,CACHE_LINE_SIZE /* Next line, please */
bdnz 00b
10: blr
/*
* Flush a particular page from the DATA cache
* Note: this is necessary because the instruction cache does *not*
* snoop from the data cache.
* void flush_page(void *page)
*/
_GLOBAL(flush_page)
li r4,0x0FFF
andc r3,r3,r4 /* Get page base address */
li r4,4096/CACHE_LINE_SIZE /* Number of lines in a page */
mtctr r4
00: dcbf 0,r3 /* Clear line */
icbi 0,r3
addi r3,r3,CACHE_LINE_SIZE
bdnz 00b
blr
/*
* This routine switches between two different tasks. The process
* state of one is saved on its kernel stack. Then the state
* of the other is restored from its kernel stack. The memory
* management hardware is updated to the second process's state.
* Finally, we can return to the second process, via the 'return'.
*
* Note: there are two ways to get to the "going out" portion
* of this code; either by coming in via the entry (_switch)
* or via "fork" which must set up an environment equivalent
* to the "_switch" path. If you change this (or in particular, the
* SAVE_ALL_REGS macro), you'll have to change the fork code also.
*
* The code which creates the new task context is in 'copy_thread'
* in arch/ppc/kernel/process.c
*/
_GLOBAL(_switch)
mtspr SPR0,r1 /* SAVE_ALL_REGS prologue */
mtspr SPR1,r2
mflr r2 /* Return to switch caller */
mtspr SPR2,r2
mfmsr r2
mtspr SPR3,r2
SAVE_ALL_REGS(0x0FF0)
SAVE_FP_REGS()
CHECK_STACK()
SYNC()
stw r1,KSP(r3) /* Set old stack pointer */
BUMP(__Context_Switches)
lwz r1,KSP(r4) /* Load new stack pointer */
lwz r0,MMU_SEG0(r4)
mtsr SR0,r0
lwz r0,MMU_SEG1(r4)
mtsr SR1,r0
lwz r0,MMU_SEG2(r4)
mtsr SR2,r0
lwz r0,MMU_SEG3(r4)
mtsr SR3,r0
lwz r0,MMU_SEG4(r4)
mtsr SR4,r0
lwz r0,MMU_SEG5(r4)
mtsr SR5,r0
lwz r0,MMU_SEG6(r4)
mtsr SR6,r0
lwz r0,MMU_SEG7(r4)
mtsr SR7,r0
#if 0
/* segs 8-15 are shared by everyone -- don't need to be changed */
lwz r0,MMU_SEG8(r4)
mtsr SR8,r0
lwz r0,MMU_SEG9(r4)
mtsr SR9,r0
lwz r0,MMU_SEG10(r4)
mtsr SR10,r0
lwz r0,MMU_SEG11(r4)
mtsr SR11,r0
lwz r0,MMU_SEG12(r4)
mtsr SR12,r0
lwz r0,MMU_SEG13(r4)
mtsr SR13,r0
lwz r0,MMU_SEG14(r4)
mtsr SR14,r0
lwz r0,MMU_SEG15(r4)
mtsr SR15,r0
#endif
/* no need to invalidate tlb since each process has a distinct
set of vsid's. -- Cort */
#if 0
tlbia /* Invalidate entire TLB */
BUMP(__TLBIAs)
#endif
/* p5.2 603 users manual - with addr transl. enabled,
the memory access is performed under the control of
the page table entry. I interpret this to mean that
it is tagged with the vsid -- so no need to flush here
since each process has a distinct set of vsid's.
Of course, my intepretation may be wrong.
-- Cort */
/*bl _EXTERN(flush_instruction_cache)*/
RETURN_FROM_INT(0x0f0f)
/*
* This routine is just here to keep GCC happy - sigh...
*/
_GLOBAL(__main)
blr
.data
.globl sdata
sdata:
.space 2*4096
#if 0
_GLOBAL(sys_stack)
sys_stack:
.space 4096
#endif
CPU1_stack:
.globl empty_zero_page
empty_zero_page:
.space 4096
.globl swapper_pg_dir
swapper_pg_dir:
.space 4096
/*
* This space gets a copy of optional info passed to us by the bootstrap
* Used to pass parameters into the kernel like root=/dev/sda1, etc.
*/
.globl cmd_line
cmd_line:
.space 512
#ifdef STATS
/*
* Miscellaneous statistics - gathered just for performance info
*/
.globl _INTR_stats
_INTR_stats:
.globl __Instruction_TLB_Misses
__Instruction_TLB_Misses:
.long 0,0 /* Instruction TLB misses */
.globl __DataLoad_TLB_Misses
__DataLoad_TLB_Misses:
.long 0,0 /* Data [load] TLB misses */
.globl __DataStore_TLB_Misses
__DataStore_TLB_Misses:
.long 0,0 /* Data [store] TLB misses */
.globl __Instruction_Page_Faults
__Instruction_Page_Faults:
.long 0,0 /* Instruction page faults */
.globl __Data_Page_Faults
__Data_Page_Faults:
.long 0,0 /* Data page faults */
.globl __Cache_Flushes
__Cache_Flushes:
.long 0,0 /* Explicit cache flushes */
.globl __Context_Switches
__Context_Switches:
.long 0,0 /* Context switches */
.globl __Hardware_Interrupts
__Hardware_Interrupts:
.long 0,0 /* I/O interrupts (disk, timer, etc) */
.globl __TLBIAs
.globl __TLBIAs
__TLBIAs:
.long 0,0 /* TLB cache forceably flushed */
.globl __TLBIEs
__TLBIEs:
.long 0,0 /* Specific TLB entry flushed */
#endif
.globl _TotalMemory
_TotalMemory:
.long 0,0
/*
* This location is used to break any outstanding "lock"s when
* changing contexts.
*/
_break_lwarx: .long 0
|