summaryrefslogblamecommitdiffstats
path: root/private/ntos/fw/mips/monitor.c
blob: e82a8c2baeb4d400f05c49d42e4a5bd0411b9774 (plain) (tree)
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
1496
1497
1498
1499


























































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































































                                                                                                  
/*++

Copyright (c) 1991  Microsoft Corporation

Module Name:

    monitor.c

Abstract:

    This file contains the monitor for the firmware.

Author:

    Lluis Abello (lluis) 09-Sep-91

--*/

#include "fwp.h"
#include "monitor.h"
#include "selfmap.h"
#include "sys\types.h"
#include "stdlib.h"
#include "string.h"
#include "jzsetup.h"
#include "selftest.h"
#include "fwstring.h"


#define BYTE 1
#define HALF 2
#define WORD 4

#define R4000_XCODE_MASK (0x1f << 2)
#define XCODE_INSTRUCTION_BUS_ERROR 0x18
#define XCODE_DATA_BUS_ERROR 0x1c


VOID
RomPutLine(
    IN PCHAR String
    );

VOID
FillVideoMemory(
    IN ULONG,
    IN ULONG,
    IN ULONG
    );

#define MoveCursorToColumn(Spaces) \
    FwPrint("\r\x9B"#Spaces"C")

//
// declare static variables.
//
extern BOOLEAN ProcessorBEnabled;
ULONG Argc;
ULONG CurrentArg;

COMMAND_NAME_ID CurrentCommand;

ULONG DataSize;
ULONG DataSizeMask;
ULONG DataSizeShift;

ULONG DefaultAddress;

// ****** temp ******
// strtoul sets errno in case of overflow and is not declared anywhere else.
//
// int errno;

PCHAR RegisterNameTable[(REGISTER_NAME_ID)invalidregister] = {
    "zero",           // general register 0
    "at",             // general register 1
    "v0",             // general register 2
    "v1",             // general register 3
    "a0",             // general register 4
    "a1",             // general register 5
    "a2",             // general register 6
    "a3",             // general register 7
    "t0",             // general register 8
    "t1",             // general register 9
    "t2",             // general register 10
    "t3",             // general register 11
    "t4",             // general register 12
    "t5",             // general register 13
    "t6",             // general register 14
    "t7",             // general register 15
    "s0",             // general register 16
    "s1",             // general register 17
    "s2",             // general register 18
    "s3",             // general register 19
    "s4",             // general register 20
    "s5",             // general register 21
    "s6",             // general register 22
    "s7",             // general register 23
    "t8",             // general register 24
    "t9",             // general register 25
    "k0",             // general register 26
    "k1",             // general register 27
    "gp",             // general register 28
    "sp",             // general register 29
    "s8",             // general register 30
    "ra",             // general register 31
    "f0",             // fp register 0
    "f1",             // fp register 1
    "f2",             // fp register 2
    "f3",             // fp register 3
    "f4",             // fp register 4
    "f5",             // fp register 5
    "f6",             // fp register 6
    "f7",             // fp register 7
    "f8",             // fp register 8
    "f9",             // fp register 9
    "f10",            // fp register 10
    "f11",            // fp register 11
    "f12",            // fp register 12
    "f13",            // fp register 13
    "f14",            // fp register 14
    "f15",            // fp register 15
    "f16",            // fp register 16
    "f17",            // fp register 17
    "f18",            // fp register 18
    "f19",            // fp register 19
    "f20",            // fp register 20
    "f21",            // fp register 21
    "f22",            // fp register 22
    "f23",            // fp register 23
    "f24",            // fp register 24
    "f25",            // fp register 25
    "f26",            // fp register 26
    "f27",            // fp register 27
    "f28",            // fp register 28
    "f29",            // fp register 29
    "f30",            // fp register 30
    "f31",            // fp register 31
    "fsr",            // fp status register
    "index",          // cop0 register 0
    "random",         // cop0 register 1
    "entrylo0",       // cop0 register 2
    "entrylo1",       // cop0 register 3
    "context",        // cop0 register 4
    "pagemask",       // cop0 register 5
    "wired",          // cop0 register 6
    "badvaddr",       // cop0 register 8
    "count",          // cop0 register 9
    "entryhi",        // cop0 register 10
    "compare",        // cop0 register 11
    "psr",            // cop0 register 12
    "cause",          // cop0 register 13
    "epc",            // cop0 register 14
    "prid",           // cop0 register 15
    "config",         // cop0 register 16
    "lladdr",         // cop0 register 17
    "watchlo",        // cop0 register 18
    "watchhi",        // cop0 register 19
    "ecc",            // cop0 register 26
    "cacheerror",     // cop0 register 27
    "taglo",          // cop0 register 28
    "taghi",          // cop0 register 29
    "errorepc"       // cop0 register 30
    };

CHAR UnknownException[] = "Unknown";
PCHAR ExceptionNameTable[32] = {
        "Int",              // exception code 0
        "Mod",              // exception code 1
        "TlbL",             // exception code 2
        "TlbS",             // exception code 3
        "AdEL",             // exception code 4
        "AdES",             // exception code 5
        "IBE",              // exception code 6
        "DBE",              // exception code 7
        "Sys",              // exception code 8
        "Bp",               // exception code 9
        "RI",               // exception code 10
        "CpU",              // exception code 11
        "Ov",               // exception code 12
        "Tr",               // exception code 13
        "VCEI",             // exception code 14
        "FPE",              // exception code 15
        UnknownException,   // exception code 16
        UnknownException,   // exception code 17
        UnknownException,   // exception code 18
        UnknownException,   // exception code 19
        UnknownException,   // exception code 20
        UnknownException,   // exception code 21
        UnknownException,   // exception code 22
        "WATCH",            // exception code 23
        UnknownException,   // exception code 24
        UnknownException,   // exception code 25
        UnknownException,   // exception code 26
        UnknownException,   // exception code 27
        UnknownException,   // exception code 28
        UnknownException,   // exception code 29
        UnknownException,   // exception code 30
        "VCED"              // exception code 31
    };

PCHAR CommandNameTable[(COMMAND_NAME_ID)invalidcommand] = {
    "d",
    "db",
    "dw",
    "dd",
    "e",
    "eb",
    "ew",
    "ed",
    "o",
    "ob",
    "ow",
    "od",
    "i",
    "ib",
    "iw",
    "id",
    "r",
    "z",
    "f",
    "a",
    "h",
    "?",
#ifdef DUO
    "s",
#endif
    "q"
    };

extern ULONG RegisterTable[(REGISTER_NAME_ID)invalidregister];
extern LONG FwRow;
extern LONG FwColumn;


REGISTER_NAME_ID
GetRegister(
    IN PCHAR RegName
    )

/*++

Routine Description:

    This routine returns the index in the register table for the
    given register. Or invalid if the given register name doesn't
    match any register.

Arguments:

    RegName  - Null terminated string that contains the name of the register.

Return Value:

    Index on the Register Table for the requested register.

--*/

{
    REGISTER_NAME_ID RegId;

    for (RegId = 0; RegId < MON_INVALID_REGISTER_MSG; RegId++) {
        if (strcmp(RegisterNameTable[RegId],RegName) == 0) {
            break;
        }
    }
    return RegId;
}


ULONG
StrToUlong(
    IN PCHAR String,
    OUT CHAR ** Terminator
    )
/*++

Routine Description:

    This routine converts an ascii string to an unsigned long

Arguments:

    String  - Null terminated string that contains the value to convert.
    Terminator - Address of a pointer to a character. This routine
                 sets it to point to the cahracter in String that terminated
                 the conversion. This is '\0' in a normal case or whatever
                 garbage the string contained.


Return Value:

    Returns the converted string

--*/
{
    ULONG Ulong = 0;
    ULONG Index;
    for (Index=0;String[Index]; Index++) {

        if ((String[Index] >= '0') && (String[Index] <= '9')) {
            Ulong <<= 4;
            Ulong |= String[Index] - '0';
            continue;
        }

        //
        // Strings are always lower case so this is not needed.
        //
        //if ((String[Index] >= 'A') && (String[Index] <= 'F')) {
        //    Ulong <<= 4;
        //    Ulong |= String[Index] - 'A' + 10;
        //    continue;
        //}

        if ((String[Index] >= 'a') && (String[Index] <= 'f')) {
            Ulong <<= 4;
            Ulong |= String[Index] - 'a' + 10;
            continue;
        }
        *Terminator = &String[Index];
        return 0xFFFFFFF;
    }

    //
    // Check for overflow
    //
    if (Index > 8) {
        *Terminator = &String[0];
    } else {
        *Terminator = &String[Index];
    }
    return Ulong;
}


BOOLEAN
GetAddress(
    IN PUCHAR   String,
    OUT PULONG Address
    )

/*++

Routine Description:

    This routine converts an ascii string to an address. The string
    is the form:
    [@reg | value]

Arguments:

    String  -  Null terminated string that contains the address to convert.
    Address - Supplies a pointer to where the converted address is stored

Return Value:

    Returns TRUE if the string can be converted.
            FALSE otherwise.

--*/

{
    PUCHAR   Terminator;
    UCHAR    Delimiter;
    REGISTER_NAME_ID RegId;
    if (*String == '@') {
        String++;               // skip @
        if ((RegId = GetRegister(String)) == MON_INVALID_REGISTER_MSG) {
            FwPrint(String);
            FwPrint(MON_INVALID_REGISTER_MSG);
            return FALSE;
        } else {
                *Address = RegisterTable[RegId];
        }
    } else {
        *Address=StrToUlong(String,&Terminator);
        if (*Terminator != '\0') {
            //
            // Not the whole string was converted.
            //
            FwPrint(Terminator);
            FwPrint(MON_NOT_VALID_ADDRESS_MSG);
            return FALSE;
        }
    }
    return TRUE;
}

BOOLEAN
GetAddressRange(
    IN PCHAR   Argv[],
    OUT PULONG StartAddress,
    OUT PULONG EndAddress
    )

/*++

Routine Description:

    This routine converts an ascii string to a range, returning the starting
    and end address.

    The syntax for an address range is one of the following

        startaddress endaddres
        startaddress l numberofelements

Arguments:

    Argv - array of zero terminated argument strings.
    StartAddress - Supplies a pointer to where the Start address is stored
    EndAddress - Supplies a pointer to where the End address is stored

Return Value:

    Returns TRUE if Argv specifies a valid address range.
            FALSE otherwise.

--*/

{
    PCHAR Tmp;
    CHAR  Delimiter;

    if (CurrentArg == Argc) {
        return;
    }
    if (GetAddress(Argv[CurrentArg],StartAddress) == FALSE) {
        return FALSE;
    }
    CurrentArg++;
    if (CurrentArg == Argc) {
        *EndAddress = *StartAddress+128;
        return TRUE;
    }
    if (strcmp(Argv[CurrentArg],"l") == 0 ) {
        //
        // this is a range of the form "startaddress l count"
        //
        CurrentArg++;
        if (CurrentArg == Argc) {
            FwPrint(MON_INVALID_ARGUMENT_COUNT_MSG);
            return FALSE;
        }
        if (GetAddress(Argv[CurrentArg],EndAddress) == FALSE) {
            return FALSE;
        }
        CurrentArg++;
        *EndAddress = (*EndAddress<<DataSizeShift) + *StartAddress;
    } else {
        if (GetAddress(Argv[CurrentArg],EndAddress) == FALSE) {
            //
            // the argument didn't convert the range is Start+128
            //
            *EndAddress = *StartAddress+128;
        } else {
            CurrentArg++;
        }
    }
    //
    // Check that the range is correct End > Start
    //
    if (*EndAddress <= *StartAddress) {
        FwPrint(MON_INVALID_ADDRESS_RANGE_MSG);
         return FALSE;
    }
    return TRUE;
}
COMMAND_NAME_ID
GetCommand(
    IN PCHAR CommandName
    )

/*++

Routine Description:

    This routine tries to match the supplied string
    with one of the recognized commands.

Arguments:

    CommandName - Supplies a string to be matched with one of the monitor commands.

Return Value:

    Returns a value that identifies the command.

--*/
{
    COMMAND_NAME_ID Index;
    for (Index=0;Index<invalidcommand;Index++) {
        if (strcmp(CommandNameTable[Index],CommandName) == 0) {
            break;
        }
    }
    return Index;
}

BOOLEAN
RegisterCommand(
    IN PCHAR Argv[]
    )

/*++

Routine Description:

    This routine will implement the REGISTER command given the
    arguments in the argc,Argv form.

Arguments:

    Argv - array of zero terminated argument strings.

Return Value:

    Returns TRUE if the command is valid, FALSE otherwise.

--*/
{
    REGISTER_NAME_ID RegId;
    CHAR Message[64];
    switch(Argc) {
        case 1:
            //
            // Dump the value of all the registers
            //
            for (RegId=1;RegId<32;RegId++) {
                sprintf(Message,MON_FORMAT1_MSG,RegisterNameTable[RegId],RegisterTable[RegId]);
                FwPrint(Message);
                if ((RegId%6) == 0) {
                    FwPrint(FW_CRLF_MSG);
                }
            }
            sprintf(Message,MON_FORMAT1_MSG,RegisterNameTable[psr],RegisterTable[psr]);
            FwPrint(Message);
            sprintf(Message,MON_FORMAT1_MSG,RegisterNameTable[epc],RegisterTable[epc]);
            FwPrint(Message);
            sprintf(Message,MON_FORMAT1_MSG,RegisterNameTable[cause],RegisterTable[cause]);
            FwPrint(Message);
            sprintf(Message,MON_FORMAT1_MSG,RegisterNameTable[errorepc],RegisterTable[errorepc]);
            FwPrint(Message);
            FwPrint(FW_CRLF_MSG);
            sprintf(Message,MON_FORMAT1_MSG,RegisterNameTable[badvaddr],RegisterTable[badvaddr]);
            FwPrint(Message);
            FwPrint(FW_CRLF_MSG);
            return TRUE;
        case 2:
            //
            // Dump the value of the specified register.
            //
            if ((RegId = GetRegister(Argv[1])) == MON_INVALID_REGISTER_MSG) {
                FwPrint(Argv[1]);
                FwPrint(MON_INVALID_REGISTER_MSG);
                return FALSE;
            } else {
                sprintf(Message,"%s = %08lx\r\n",RegisterNameTable[RegId],RegisterTable[RegId]);
                FwPrint(Message);
                return TRUE;
            }
        default:
                FwPrint(MON_INVALID_ARGUMENT_COUNT_MSG);
                return FALSE;
    }
}

VOID
InputValue(
    IN ULONG Address,
    OUT PVOID Value
    )
/*++

Routine Description:

    This routine reads a value from the supplied address and displays
    it. DataSize is set to the size of the value to read.

Arguments:

    Address  - Supplies the address where the value is to be read from.
    Value    - Pointer to where the value read is stored.

Return Value:

    None.

--*/
{
    CHAR  Message[32];

    switch(DataSize) {
        case    BYTE:
                    *(PUCHAR)Value = *(PUCHAR)Address;   // read byte
                    sprintf(Message,"%02x ",*(PUCHAR)Value);
                    break;
                    //
                    // Display same data in ascii
                    //
        case    HALF:
                    sprintf(Message,"%04x ",*(PUSHORT)Address);
                    break;
        case    WORD:
                    sprintf(Message,"%08lx ",*(PULONG)Address);
                    break;
    }
    FwPrint(Message);
}


BOOLEAN
DumpCommand(
    IN PCHAR Argv[]
    )
/*++

Routine Description:

    This routine will implement the DUMP command given the
    arguments in the argc,Argv form.

Arguments:

    Argv - array of zero terminated argument strings.

Return Value:

    Returns TRUE if the command is valid, FALSE otherwise.

--*/

{
    ULONG Start,End;
    ULONG i,LineLength;
    ULONG DataLine[16];
    UCHAR  Message[32];
    //
    // Set the right range of addresses. If none specified use last
    // set of addresses+128.
    //
    if (Argc == 1) {
        Start = DefaultAddress;
        End = Start + 128;
    } else {
        if (GetAddressRange(Argv,&Start,&End) == FALSE) {
            return FALSE;
        }
        //
        // if after getting the range not all the argument were processsed.
        //
        if (CurrentArg != Argc) {
            FwPrint(MON_INVALID_ARGUMENT_COUNT_MSG);
            return FALSE;
        }
    }

    //
    // Check for proper alignment.
    //
    if ((DataSizeMask&Start) || (DataSizeMask&End)) {
        FwPrint(MON_UNALIGNED_ADDRESS_MSG);
        return FALSE;
    } else {
        //
        // Set new addresses
        //
        DefaultAddress = End;
    }
    while (Start < End) {
        //
        // Print address of line.
        //
        sprintf(Message,"0x%08lx: ",Start);
        FwPrint(Message);
        LineLength = End-Start;
        if (LineLength > 16) {
            LineLength = 16;
        }
        for (i=0;i<LineLength;i+=DataSize) {
            InputValue(Start,&DataLine[i]);
            Start+=DataSize;
        }
        if (DataSize == 1) {
            //
            // If bytes display same data in ASCII
            //
            MoveCursorToColumn(60);
            for (i=0;i<LineLength;i++) {
                if (isprint((UCHAR)DataLine[i])) {
                    sprintf(Message,"%c",DataLine[i]);
                    FwPrint(Message);
                } else {
                    FwPrint(".");
                }
            }
        }
        FwPrint(FW_CRLF_MSG);
    }
    return TRUE;
}

BOOLEAN
ZeroCommand(
    IN PCHAR Argv[]
    )
/*++

Routine Description:

    This routine will implement the Zero command given the
    arguments in the argc,Argv form.

Arguments:

    Argv - array of zero terminated argument strings.

Return Value:

    Returns TRUE if the command is valid, FALSE otherwise.

--*/

{
    ULONG Start,End;
    //
    // Set the right range of addresses. If none specified use last
    // set of addresses+128.
    //
    if (Argc == 1) {
        Start = DefaultAddress;
        End = Start + 128;
    } else {
        if (GetAddressRange(Argv,&Start,&End) == FALSE) {
            return FALSE;
        }
        //
        // if after getting the range not all the argument were processsed.
        //
        if (CurrentArg != Argc) {
            FwPrint(MON_INVALID_ARGUMENT_COUNT_MSG);
            return FALSE;
        }
    }

    //
    // Check for proper alignment.
    //
    if ((0xF&Start) || (0xF&End)) {
        FwPrint(MON_UNALIGNED_ADDRESS_MSG);
        return FALSE;
    } else {
        //
        // Set new addresses
        //
        DefaultAddress = End;
    }
    FillVideoMemory(Start,End-Start,0);
    return TRUE;
}

BOOLEAN
OutputValue(
    IN PCHAR   AsciiValue,
    IN ULONG   Address
    )

/*++

Routine Description:

    This routine writes the converted value to the specified
    address. DataSize is set to the size of the data to be written.

Arguments:

    AsciiValue - Supplies a pointer to a string that contains an hexadecimal
                 value.
    Address     - Supplies the address where the value is to be written to.

Return Value:

    TRUE if the value is successfully converted.
    FALSE otherwise.

--*/
{
    ULONG   Value;
    PCHAR   Terminator;

    //
    // Conver value to integer
    //
    Value = StrToUlong(AsciiValue,&Terminator);
    if (*Terminator != '\0') {
            //
            // Not the whole string was converted.
            //
            FwPrint(Terminator);
            FwPrint(MON_INVALID_VALUE_MSG);
            return FALSE;
    } else {
        //
        // Store the value.
        //
        switch (DataSize) {
            case    BYTE:*(PUCHAR)Address = (UCHAR)Value;
                         break;
            case    HALF:*(PUSHORT)Address = (USHORT)Value;
                         break;
            case    WORD: *(PULONG)Address = (ULONG)Value;
                         break;
        }
    }
    return TRUE;
}

BOOLEAN
OutputCommand(
    IN PCHAR Argv[]
    )
/*++

Routine Description:

    This routine will implement the OUTPUT command given the
    arguments in the argc,Argv form.

Arguments:

    Argv - array of zero terminated argument strings.

Return Value:

    Returns TRUE if the command is valid, FALSE otherwise.

--*/

{
    ULONG Start;

    if (Argc!=3) {
        FwPrint(MON_INVALID_ARGUMENT_COUNT_MSG);
        return FALSE;
    }
    if (GetAddress(Argv[1],&Start) == FALSE) {
        return FALSE;
    }

    //
    // Check for proper alignment.
    //
    if (DataSizeMask & Start) {
        FwPrint(MON_UNALIGNED_ADDRESS_MSG);
        return FALSE;
    }
    if (OutputValue(Argv[2],Start) == TRUE) {
        //
        // Set new default addresses
        //
        DefaultAddress = Start+DataSize;
    }
    return TRUE;
}

BOOLEAN
InputCommand(
    IN PCHAR Argv[]
    )
/*++

Routine Description:

    This routine will implement the INPUT command given the
    arguments in the argc,Argv form.

Arguments:

    Argv - array of zero terminated argument strings.

Return Value:

    Returns TRUE if the command is valid, FALSE otherwise.

--*/

{
    ULONG Start;
    UCHAR Message[16];
    ULONG Trash;
    if (Argc!=2) {
        FwPrint(MON_INVALID_ARGUMENT_COUNT_MSG);
        return FALSE;
    }

    if (GetAddress(Argv[1],&Start) == FALSE) {
        return FALSE;
    }

    //
    // Check for proper alignment.
    //
    if (DataSizeMask & Start) {
        FwPrint(MON_UNALIGNED_ADDRESS_MSG);
        return FALSE;
    }
    sprintf(Message,"0x%08lx: ",Start);
    FwPrint(Message);
    InputValue(Start,&Trash);
    FwPrint(FW_CRLF_MSG);
    //
    // Set new default addresses
    //
    DefaultAddress = Start+DataSize;
    return TRUE;
}

BOOLEAN
EnterCommand(
    IN PCHAR Argv[]
    )
/*++

Routine Description:

    This routine will implement the ENTER command given the
    arguments in the argc,Argv form.

Arguments:

    Argv - array of zero terminated argument strings.

Return Value:

    Returns TRUE if the command is valid, FALSE otherwise.

--*/

{
    ULONG Start;
    CHAR  String[32];
    GETSTRING_ACTION Action;

    //
    // Set the right range of addresses. If none specified use last
    // set of addresses+128.
    //
    switch(Argc) {
        case    1:
                Start = DefaultAddress;
                break;
        case    2:
                if (GetAddress(Argv[1],&Start) == FALSE) {
                    return FALSE;
                }
                break;
        case    3:
                //
                // This is equivalent to the output command
                //
                return OutputCommand(Argv);
        default:
                FwPrint(MON_INVALID_ARGUMENT_COUNT_MSG);
                return FALSE;
    }

    //
    // Check for proper alignment.
    //
    if (DataSizeMask & Start) {
        FwPrint(MON_UNALIGNED_ADDRESS_MSG);
        return FALSE;
    }
    for (;;) {
        //
        // Print address of line.
        //
        sprintf(String,"0x%08lx: ",Start);
        FwPrint(String);
        switch (DataSize) {
            case    BYTE:
                        sprintf(String,"%02x . ",*(PUCHAR)Start);
                        break;
            case    HALF:
                        sprintf(String,"%04x . ",*(PUSHORT)Start);
                        break;
            case    WORD:
                        sprintf(String,"%08lx . ",*(PULONG)Start);
                        break;
        }
        FwPrint(String);
        do {
            Action = FwGetString(String,10,NULL,FwRow,FwColumn);
        } while ((Action != GetStringSuccess) && (Action != GetStringEscape));
        FwPrint(FW_CRLF_MSG);

        if (String[0] == '\0') {     // carriage return exit enter command
            //
            // set new default address.
            //
            DefaultAddress = Start;
            return TRUE;
        }
        if (String[0] == ' ') {      // blank = next data element.
            Start+=DataSize;
            continue;
        }
        if (String[0] == '-') {      // hypen = previous data element.
            Start-=DataSize;
            continue;
        }
        if (OutputValue(String,Start) == TRUE) {   // deposit the value.
            Start+=DataSize;
        }
    }
    return TRUE;
}

BOOLEAN
FillCommand(
    IN PCHAR Argv[]
    )
/*++

Routine Description:

    This routine will implement the FILL command given the
    arguments in the argc,Argv form.

Arguments:

    Argv - array of zero terminated argument strings.

Return Value:

    Returns TRUE if the command is valid, FALSE otherwise.

--*/

{
    ULONG Start,End,Values[16];
    ULONG Index,Count;
    PCHAR Terminator;

    if (GetAddressRange(Argv,&Start,&End) == FALSE) {
            return FALSE;
    }
    //
    // if there are no more arguments we don't know what to fill with.
    //
    if (CurrentArg == Argc) {
        FwPrint(MON_INVALID_ARGUMENT_COUNT_MSG);
        return FALSE;
    }

    //
    // Convert the values
    //
    for (Count=0;CurrentArg < Argc; CurrentArg++) {
        Values[Count++] = StrToUlong(Argv[CurrentArg],&Terminator);
        if (*Terminator != '\0') {
            //
            // Not the whole string was converted.
            //
            FwPrint(Terminator);
            FwPrint(MON_INVALID_VALUE_MSG);
            return FALSE;
        }
    }
    Index = 0;
    for (;Start < End;Start++) {
        *((PCHAR)Start) = Values[Index++];
        if (Index == Count) {
            Index=0;
        }
    }
    return TRUE;
}


BOOLEAN
FwDumpLookupTable(
    IN PCHAR Argv[]
    )

/*++

Routine Description:

    This routine displays the device names stored in the lookup table.

Arguments:

    Argv - array of zero terminated argument strings.

Return Value:

    Returns TRUE if the command is valid, FALSE otherwise.

--*/

{
    UCHAR C;
    ULONG Count;
    PDRIVER_LOOKUP_ENTRY PLookupTable;

    PLookupTable=&DeviceLookupTable[0];
    while (PLookupTable->DevicePath != NULL) {
        FwPrint(PLookupTable->DevicePath);
        FwPrint(FW_CRLF_MSG);
        PLookupTable++;
    }
    return(TRUE);
}

VOID
Monitor(
    IN ULONG CallerSource
    )
/*++

Routine Description:

    This is the main dispatch routine to the various commands
    that can be typed at the monitor prompt.

Arguments:

    CallerSource - 0 if a UTLB or General exception occurred.
                 - 1 if an NMI_EXCEPTION occurred.
                 - 2 if a  CACHE_EXCEPTION occurred.
                 - 3 if the caller is not an exception handler.

Return Value:

    None.

--*/

{
    CHAR Buffer[2][128];
    ULONG ParityDiag[3];
    PULONG ParDiag;
    ULONG BufferIndex;
    PCHAR Argv[10];
    PCHAR Tmp;
    CHAR  String[128];
    BOOLEAN CommandValid;
    GETSTRING_ACTION Action;
    ULONG Index;

    JzSetScreenAttributes( TRUE, FALSE, FALSE);

#ifdef DUO
    //
    // Set text White for processor A. Yellow for processor B
    //
    if (READ_REGISTER_ULONG(&DMA_CONTROL->WhoAmI.Long) == 0) {
        JzSetScreenColor(ArcColorWhite, ArcColorBlue);
    } else {
        JzSetScreenColor(ArcColorYellow, ArcColorBlue);
    }
#else
    JzSetScreenColor(ArcColorWhite, ArcColorBlue);
#endif

    FwPrint(MON_JAZZ_MONITOR_MSG);
    sprintf(String,"%ld\r\n",*(PULONG)(PROM_ENTRY(2)));
    FwPrint(String);
    FwPrint(MON_PRESS_H_MSG);

    //
    // Initialize command line to null.
    //
    Argv[0] = (PCHAR)NULL;

    if (CallerSource !=3) {

        //
        // Display Cause of exception.
        //

        switch(CallerSource) {
            case 0:
                FwPrint(ExceptionNameTable[((RegisterTable[cause])&0xFF) >> 2]);
                break;
            case NMI_EXCEPTION:
                FwPrint(MON_NMI_MSG);
                break;
            case CACHE_EXCEPTION:
                FwPrint(MON_CACHE_ERROR_MSG);
                break;
        }
        FwPrint(MON_EXCEPTION_MSG);

        //
        // simulate a dump all registers command;
        //

        Argc = 1;
        RegisterCommand(Argv);
        Argc = 0;
    }
    //
    // Initialize Static variables.
    //
    DefaultAddress = KSEG1_BASE;
    DataSize = WORD;
    BufferIndex = 0;

#ifdef DUO
//
// Report system parity exceptions.
//
//
    if ((((RegisterTable[cause]&R4000_XCODE_MASK) == XCODE_DATA_BUS_ERROR) ||
         ((RegisterTable[cause]&R4000_XCODE_MASK) == XCODE_INSTRUCTION_BUS_ERROR)) &&
         (READ_REGISTER_ULONG(&DMA_CONTROL->NmiSource.Long) == 1)) {

        //
        // This is a bus error exception. And the cause is ecc error.
        //

        sprintf(String,
                MON_ECC_ERROR_MSG,
                RegisterTable[epc]
                );
        FwPrint(String);

        //
        // align ParDiag to a double word address
        //
        ParDiag = (PULONG) ((ULONG)(&ParityDiag[1]) & 0xFFFFFFF8);
        LoadDoubleWord(&DMA_CONTROL->EccDiagnostic,ParDiag);
        sprintf(String,
                MON_MEM_ECC_FAILED_MSG,
                READ_REGISTER_ULONG(&DMA_CONTROL->MemoryFailedAddress.Long),
                *ParDiag,
                *(ParDiag+1)
                );


    }

#endif


    if (CallerSource == CACHE_EXCEPTION) {

        //
        // try to print as much info as possible.
        //
        sprintf(String,
                MON_CACHE_ERROR_EPC_MSG,
                RegisterTable[cacheerror],
                RegisterTable[errorepc]
                );
        FwPrint(String);

#ifndef DUO
//
// Do not print Parity Diag for a DUO CacheError exception since it's only
// an internal one.
//
        //
        // align ParDiag to a double word address
        //
        ParDiag = (PULONG) ((ULONG)(&ParityDiag[1]) & 0xFFFFFFF8);
        LoadDoubleWord(&DMA_CONTROL->ParityDiagnosticLow.Long,ParDiag);
        sprintf(String,
                MON_PARITY_DIAG_MSG,
                *ParDiag,
                *(ParDiag+1)
                );
        FwPrint(String);

#endif

        //
        // Now we will probably die, as the keyboard is interrupt
        // driven and the interrupt handler is cached... Life is Tough!
        //
    }

    //
    // loop forever getting commands and dispatching them
    //
    while(TRUE) {

        //
        // print prompt
        //

        FwPrint(">");

        //
        // read a command.
        //

        do {
            Action = FwGetString(Buffer[BufferIndex],128,NULL,FwRow,FwColumn);
        } while ((Action != GetStringSuccess) && (Action != GetStringEscape));
        FwPrint(FW_CRLF_MSG);

        //
        // convert string to lower case.
        //

        for(Tmp=Buffer[BufferIndex];*Tmp;*Tmp++) {
            *Tmp=tolower(*Tmp);
        }

        //
        // if escape was pressed, simulate a quit command.
        //

        if (Action == GetStringEscape) {
            Argc = 1;
            Argv[0] = "q";

        //
        // separate command line into tokens delimited by spaces
        // load up Argv with pointers to arguments and put count in Argc
        //

        } else if (*Buffer[BufferIndex] != '\0') {
            Tmp = Buffer[BufferIndex];
            Argc = 0;
            //
            // Skip leading blanks
            //
            while ( *Tmp == ' ') {
                Tmp++;
            }
            while ( *Tmp ) {
                Argv[Argc++] = Tmp;
                while ( *Tmp ) {
                    if (*Tmp == ' ') {
                        *Tmp++ = '\0';
                        while ( *Tmp == ' ') {
                            Tmp++;
                        }
                        break;
                    }
                    Tmp++;
                }
            }

            //if ((Argv[Argc] = strtok(Buffer[BufferIndex]," ")) != NULL) {
            //    Argc++;
            //    while((Argv[Argc]=strtok((PCHAR)NULL," ")) != NULL) {
            //        Argc++;
            //    }
            //}

            //
            // Increment index so that next command is read into the other
            // buffer. And we preserve the previous one.
            //

            BufferIndex = (BufferIndex+1) & 0x1;
        } else {

            //
            // repeat the last command already in Argv Argc
            //

        }

        //
        // if first argument is not null, then dispatch to routines.
        //

        if (Argv[0] != (PCHAR) NULL) {
            CurrentArg = 1;
            CurrentCommand = GetCommand(Argv[0]);
            switch(CurrentCommand) {
                case DumpByte:
                case DumpWord:
                case DumpDouble:
                        DataSizeShift = (CurrentCommand - Dump -1);
                        DataSize = 1 << DataSizeShift;
                        DataSizeMask = DataSize-1;
                case Dump:
                        CommandValid = DumpCommand(Argv);
                        break;

                case EnterByte:
                case EnterWord:
                case EnterDouble:
                        DataSizeShift = (CurrentCommand - Enter -1);
                        DataSize = 1 << DataSizeShift;
                        DataSizeMask = DataSize-1;
                case Enter:
                        CommandValid = EnterCommand(Argv);
                        break;

                case OutputByte:
                case OutputWord:
                case OutputDouble:
                        DataSizeShift = (CurrentCommand - Output -1);
                        DataSize = 1 << DataSizeShift;
                        DataSizeMask = DataSize-1;
                case Output:
                        CommandValid = OutputCommand(Argv);
                        break;
                case InputByte:
                case InputWord:
                case InputDouble:
                        DataSizeShift = (CurrentCommand - Input -1);
                        DataSize = 1 << DataSizeShift;
                        DataSizeMask = DataSize-1;
                case Input:
                        CommandValid = InputCommand(Argv);
                        break;
                case Register:
                        CommandValid = RegisterCommand(Argv);
                        break;
                case Zero:
                        CommandValid = ZeroCommand(Argv);
                        break;
                case Fill:
                        CommandValid = FillCommand(Argv);
                        break;
                case AvailableDevices:
                        CommandValid = FwDumpLookupTable(Argv);
                        break;
                case Help:
                case Help2:
                        for (Index = 0 ; Index < MON_HELP_SIZE ; Index++) {
                            FwPrint(MON_HELP_TABLE[Index]);
                            FwPrint(FW_CRLF_MSG);
                        }
                        break;
#ifdef DUO
                case SwitchProcessor:
                        if (ProcessorBEnabled == FALSE) {
                            FwPrint(MON_PROCESSOR_B_MSG);
                            break;
                        }
                        if (READ_REGISTER_ULONG(&DMA_CONTROL->WhoAmI.Long) == 0) {
                            PPROCESSOR_B_TASK_VECTOR TaskVector;

                            //
                            // Set the monitor entry point in the TaskVector
                            //
                            TaskVector = (PPROCESSOR_B_TASK_VECTOR)&ProcessorBTask;
                            TaskVector->Routine = FwMonitor;
                            TaskVector->Data = 0;
                            WRITE_REGISTER_ULONG(&DMA_CONTROL->IpInterruptRequest.Long,2);
                            WaitForIpInterrupt(0);
                            JzSetScreenColor(ArcColorWhite, ArcColorBlue);
                            break;
                        }

                        //
                        // if processor B then do the same as in a quit command.
                        //
#endif
                case Quit:
                        if (CallerSource == 3) {
                            return;
                        } else {
                            //
                            // We came because of an exception.
                            // The only way to exit is reseting the system.
                            //
                            FwPrint(MON_NO_RETURN_MSG);
                            FwPrint(MON_RESET_MACHINE_MSG);

                            do {
                                Action = FwGetString(Buffer[BufferIndex],128,NULL,FwRow,FwColumn);
                            } while ((Action != GetStringSuccess) && (Action != GetStringEscape));
                            FwPrint(FW_CRLF_MSG);

                            Buffer[BufferIndex][0]=tolower(Buffer[BufferIndex][0]);
                            if (strcmp(Buffer[BufferIndex],"y") == 0) {
                                ResetSystem();
                                // ArcReboot();
                            }
                            break;
                        }
                case invalidcommand:
                        FwPrint(MON_UNRECOGNIZED_COMMAND_MSG);
                        //
                        // Clear the argument so that re-do last command
                        // doesn't repeat the erroneous command.
                        //
                        CommandValid = FALSE;
                        break;
            }

            if (!CommandValid) {
                Argv[0] = (PCHAR) NULL;
            }
        }
    }
}