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
|
/* -*- mode: asm -*-
**
** head.S -- This file contains the initial boot code for the
** Linux/68k kernel.
**
** Copyright 1993 by Hamish Macdonald
**
** 68040 fixes by Michael Rausch
** 68060 fixes by Roman Hodek
**
** Atari support by Andreas Schwab, using ideas of Robert de Vries
** and Bjoern Brauel
**
** 94/11/14 Andreas Schwab: put kernel at PAGESIZE
** 94/11/18 Andreas Schwab: remove identity mapping of STRAM for Atari
** ++ Bjoern & Roman: ATARI-68040 support for the Medusa
** 95/11/18 Richard Hirst: Added MVME166 support
** 96/04/26 Guenther Kelleter: fixed identity mapping for Falcon with
** Magnum- and FX-alternate ram
** 98/04/25 Phil Blundell: added HP300 support
**
** This file is subject to the terms and conditions of the GNU General Public
** License. See the file README.legal in the main directory of this archive
** for more details.
**
*/
/*
* Linux startup code.
*
* At this point, the boot loader has:
* Disabled interrupts
* Disabled caches
* Put us in supervisor state.
*
* The kernel setup code takes the following steps:
* Raise interrupt level
* Set up initial kernel memory mapping.
* This sets up a mapping of the 4M of memory the kernel
* is located in. It also does a mapping of any initial
* machine specific areas.
* Note that the kernel is located at virtual address 0x1000 == _start
* Enable cache memories
* Jump to kernel startup
*
* Register d6 contains the CPU flags and d4 the machine type
* from the boot_info information for most of this file.
* The upper word of d6 contains a bit for '040 or '060, since these two
* are quite similar for initial mm setup. Another bit in d6 allows
* distinction of the '060. The lower word of d6 contains the cache mode
* that should be applied to pages containing descriptors. This mode is
* non-cached/non-serialized for the '040 and cacheable/write-through for
* the '060.
*
* General register usage:
* a6 - start of unused memory
* new pages can be allocated from here
* a5 - mmu root table
* a4 - mmu pointer table
* a3 - mmu page tables
* a2 - points to the page table entry for a6
* cache status can be changed (used for '0[46]0)
* you must increase a2 if alloc a new page
* d7 - used for debug output and some macros
* d6 - cpu type and cache mode
* d5 - physical start address of kernel
* d4 - machine type
*/
#include <linux/config.h>
#include <linux/linkage.h>
#include <asm/bootinfo.h>
#include <asm/setup.h>
#include <asm/pgtable.h>
.globl SYMBOL_NAME(kernel_pg_dir), SYMBOL_NAME(kpt)
.globl SYMBOL_NAME(availmem)
.globl SYMBOL_NAME(m68k_pgtable_cachemode)
.globl SYMBOL_NAME(kernel_pmd_table), SYMBOL_NAME(swapper_pg_dir)
#if defined(CONFIG_MVME16x)
.globl SYMBOL_NAME(mvme_bdid_ptr)
#endif
/*
* Added m68k_supervisor_cachemode for 68060 boards where some drivers
* need writethrough caching for supervisor accesses. Drivers known to
* be effected are 53c7xx.c and apricot.c (when used on VME boards).
* Richard Hirst.
*/
#ifdef CONFIG_060_WRITETHROUGH
.globl SYMBOL_NAME(m68k_supervisor_cachemode)
#endif
D6B_0460 = 16 /* indicates 680[46]0 in d6 */
D6B_060 = 17 /* indicates 68060 in d6 */
D6F_040 = 1<<D6B_0460
D6F_060 = (1<<D6B_0460)+(1<<D6B_060)
/* Translation control register */
TC_ENABLE = 0x8000
TC_PAGE8K = 0x4000
TC_PAGE4K = 0x0000
/* Transparent translation registers */
TTR_ENABLE = 0x8000 /* enable transparent translation */
TTR_ANYMODE = 0x4000 /* user and kernel mode access */
TTR_KERNELMODE = 0x2000 /* only kernel mode access */
TTR_USERMODE = 0x0000 /* only user mode access */
TTR_CI = 0x0400 /* inhibit cache */
TTR_RW = 0x0200 /* read/write mode */
TTR_RWM = 0x0100 /* read/write mask */
TTR_FCB2 = 0x0040 /* function code base bit 2 */
TTR_FCB1 = 0x0020 /* function code base bit 1 */
TTR_FCB0 = 0x0010 /* function code base bit 0 */
TTR_FCM2 = 0x0004 /* function code mask bit 2 */
TTR_FCM1 = 0x0002 /* function code mask bit 1 */
TTR_FCM0 = 0x0001 /* function code mask bit 0 */
/* Cache Control registers */
CC6_ENABLE_D = 0x80000000 /* enable data cache (680[46]0) */
CC6_FREEZE_D = 0x40000000 /* freeze data cache (68060) */
CC6_ENABLE_SB = 0x20000000 /* enable store buffer (68060) */
CC6_PUSH_DPI = 0x10000000 /* disable CPUSH invalidation (68060) */
CC6_HALF_D = 0x08000000 /* half-cache mode for data cache (68060) */
CC6_ENABLE_B = 0x00800000 /* enable branch cache (68060) */
CC6_CLRA_B = 0x00400000 /* clear all entries in branch cache (68060) */
CC6_CLRU_B = 0x00200000 /* clear user entries in branch cache (68060) */
CC6_ENABLE_I = 0x00008000 /* enable instruction cache (680[46]0) */
CC6_FREEZE_I = 0x00004000 /* freeze instruction cache (68060) */
CC6_HALF_I = 0x00002000 /* half-cache mode for instruction cache (68060) */
CC3_ALLOC_WRITE = 0x00002000 /* write allocate mode(68030) */
CC3_ENABLE_DB = 0x00001000 /* enable data burst (68030) */
CC3_CLR_D = 0x00000800 /* clear data cache (68030) */
CC3_CLRE_D = 0x00000400 /* clear entry in data cache (68030) */
CC3_FREEZE_D = 0x00000200 /* freeze data cache (68030) */
CC3_ENABLE_D = 0x00000100 /* enable data cache (68030) */
CC3_ENABLE_IB = 0x00000010 /* enable instruction burst (68030) */
CC3_CLR_I = 0x00000008 /* clear instruction cache (68030) */
CC3_CLRE_I = 0x00000004 /* clear entry in instruction cache (68030) */
CC3_FREEZE_I = 0x00000002 /* freeze instruction cache (68030) */
CC3_ENABLE_I = 0x00000001 /* enable instruction cache (68030) */
/* Miscellaneous definitions */
PAGESIZE = 4096
ROOT_TABLE_SIZE = 128
PTR_TABLE_SIZE = 128
PAGE_TABLE_SIZE = 64
ROOT_INDEX_SHIFT = 25
PTR_INDEX_SHIFT = 18
PAGE_INDEX_SHIFT = 12
TABLENR_4MB = 16 /* # of page tables needed to page 4 MB */
TABLENR_16MB = 64 /* same for 16 MB */
#define putc(ch) moveq &ch,%d7; jbsr Lserial_putc
#define putr() putc(13); putc(10)
#define putn(nr) movel nr,%d7; jbsr Lserial_putnum
#define is_not_amiga(lab) moveq &MACH_AMIGA,%d7; cmpl %d4,%d7; jne lab
#define is_not_atari(lab) moveq &MACH_ATARI,%d7; cmpl %d4,%d7; jne lab
#define is_not_mvme16x(lab) moveq &MACH_MVME16x,%d7; cmpl %d4,%d7; jne lab
#define is_not_bvme6000(lab) moveq &MACH_BVME6000,%d7; cmpl %d4,%d7; jne lab
#define is_not_hp300(lab) moveq &MACH_HP300,%d7 ; cmpl %d4,%d7; jne lab
#define is_040_or_060(lab) btst &D6B_0460,%d6; jne lab
#define is_not_040_or_060(lab) btst &D6B_0460,%d6; jeq lab
#define is_060(lab) btst &D6B_060,%d6; jne lab
#define is_not_060(lab) btst &D6B_060,%d6; jeq lab
/* On the HP300 we use the on-board LEDs for debug output before
the console is running. Writing a 1 bit turns the corresponding LED
_off_ - on the 340 bit 7 is towards the back panel of the machine. */
#ifdef CONFIG_HP300
#define leds(x) is_not_hp300(42f) ; moveb #(x),%d7 ; jbsr Lset_leds; 42:
#else
#define leds(x)
#endif
.text
ENTRY(_stext)
/*
* Version numbers of the bootinfo interface
* The area from _stext to _start will later be used as kernel pointer table
*/
bras 1f /* Jump over bootinfo version numbers */
.long BOOTINFOV_MAGIC
.long MACH_AMIGA, AMIGA_BOOTI_VERSION
.long MACH_ATARI, ATARI_BOOTI_VERSION
.long MACH_MVME16x, MVME16x_BOOTI_VERSION
.long MACH_BVME6000, BVME6000_BOOTI_VERSION
.long 0
1: jra SYMBOL_NAME(_start)
.equ SYMBOL_NAME(kernel_pmd_table),SYMBOL_NAME(_stext)
.equ SYMBOL_NAME(kernel_pg_dir),SYMBOL_NAME(kernel_pmd_table)
.equ SYMBOL_NAME(swapper_pg_dir),SYMBOL_NAME(kernel_pg_dir)+(ROOT_TABLE_SIZE<<2)
.equ Lavail_pmd_table,SYMBOL_NAME(swapper_pg_dir)+(ROOT_TABLE_SIZE<<2)
.equ .,SYMBOL_NAME(_stext)+PAGESIZE
ENTRY(_start)
/*
* Setup initial stack pointer
*/
lea %pc@(SYMBOL_NAME(_stext):w),%sp
/*
* Record the CPU and machine type.
*/
movew #BI_MACHTYPE,%d0
jbsr Lget_bi_record
movel %a0@,%d4
lea %pc@(SYMBOL_NAME(m68k_machtype)),%a0
movel %d4,%a0@
movew #BI_FPUTYPE,%d0
jbsr Lget_bi_record
movel %a0@,%d0
lea %pc@(SYMBOL_NAME(m68k_fputype)),%a0
movel %d0,%a0@
movew #BI_MMUTYPE,%d0
jbsr Lget_bi_record
movel %a0@,%d0
lea %pc@(SYMBOL_NAME(m68k_mmutype)),%a0
movel %d0,%a0@
movew #BI_CPUTYPE,%d0
jbsr Lget_bi_record
movel %a0@,%d0
lea %pc@(SYMBOL_NAME(m68k_cputype)),%a0
movel %d0,%a0@
btst #CPUB_68060,%d0
jeq 1f
/* '060: d6 := BIT0460|BIT060, cache mode 0x60 (no-cache/non-ser) */
movel #D6F_060+_PAGE_CACHE040W,%d6
jra 2f
1: btst #CPUB_68040,%d0
jeq 1f
/* '040: d6 := BIT0460, cache mode 0x00 (write-through) */
movel #D6F_040+_PAGE_CACHE040W,%d6
jra 2f
1: /* '020 or '030: d6 := no CPU bit, cache mode unused */
moveq #0,%d6
2: lea %pc@(SYMBOL_NAME(m68k_pgtable_cachemode)),%a0
moveq #0,%d0
movew %d6,%d0
movel %d0,%a0@ /* save cache mode for page tables */
/*
* If this is a 68060 board using drivers with cache coherency
* problems, then supervisor memory accesses need to be write-through
* also; otherwise, we want copyback.
*/
#if defined(CONFIG_060_WRITETHROUGH)
is_not_060(Lset_norm)
jra 1f
Lset_norm:
move.w #_PAGE_CACHE040,%d0
1:
lea %pc@(SYMBOL_NAME(m68k_supervisor_cachemode)),%a0
movel %d0,%a0@
#endif
/*
* raise interrupt level
*/
movew #0x2700,%sr
/*
If running on an Atari, determine the I/O base of the
serial port and test if we are running on a Medusa or Hades.
This test is necessary here, because on the Hades the serial
port is only accessible in the high I/O memory area.
The test whether it is a Medusa is done by writing to the byte at
phys. 0x0. This should result in a bus error on all other machines.
...should, but doesn't. The Afterburner040 for the Falcon has the
same behaviour (0x0..0x7 are no ROM shadow). So we have to do
another test to distinguish Medusa and AB040. This is a
read attempt for 0x00ff82fe phys. that should bus error on a Falcon
(+AB040), but is in the range where the Medusa always asserts DTACK.
The test for the Hades is done by reading address 0xb0000000. This
should give a bus error on the Medusa.
*/
#ifdef CONFIG_ATARI
is_not_atari(Lnotypetest)
/* get special machine type (Medusa/Hades/AB40) */
moveq #0,%d3 /* default if tag doesn't exist */
movew #BI_ATARI_MCH_TYPE,%d0
jbsr Lget_bi_record
tstl %d0
jbmi 1f
movel %a0@,%d3
1:
/* %d3 is not clobbered until Atari page tables are set up,
* where it is used again. */
/* On the Hades, the iobase must be set up before opening the
* serial port. There are no I/O regs at 0x00ffxxxx at all. */
moveq #0,%d0
cmpl #ATARI_MACH_HADES,%d3
jbne 1f
movel #0xff000000,%d0 /* Hades I/O base addr: 0xff000000 */
1: lea %pc@(Liobase),%a0
movel %d0,%a0@
Lnotypetest:
#endif
/*
* Initialize serial port
*/
jbsr Lserial_init
putr()
putc('A')
/*
* Get address at end of bootinfo and mask off at a page boundary.
*/
moveq #0,%d0
jbsr Lget_bi_record
addw #PAGESIZE-1,%a0
movel %a0,%d0
andl #-PAGESIZE,%d0
movel %d0,%a6
putc('B')
/*
* Save physical start address of kernel
*/
lea %pc@(SYMBOL_NAME(_stext)-PAGESIZE:w),%a0
movel %a0,%d5
/*
* initialize the kernel root table.
*/
lea %pc@(SYMBOL_NAME(kernel_pg_dir):w),%a5
movel %a5,%a0
moveq #ROOT_TABLE_SIZE-1,%d1
1: clrl %a0@+
dbra %d1,1b
/*
* Initialize root table descriptor pointing to the kernel pointer
* table.
*/
lea %pc@(Lavail_pmd_table:w),%a4
moveq #_PAGE_TABLE,%d0
addl %a4,%d0
movel %d0,%a5@
putc('C')
/*
* Initialize the pointer tables referred to above. They either point
* to page tables in the case of the 680[46]0 or contain early
* termination page descriptors in the case of the 68851 or 68030.
*
* Each pointer table entry points to a 64 entry page table. 16 of these
* page tables are grouped to form a single 1024 entry page table which
* fits in a single 4096 byte page.
*
* Some register usages:
* a0 -> pointer table descriptor address
* a1 -> pointer table descriptor
* d1 -> counter
* d2 -> pointer table descriptor increment (varies according to CPU)
*/
/* clear the kernel pointer table */
movel %a4,%a0
moveq #PTR_TABLE_SIZE-1,%d1
1: clrl %a0@+
dbra %d1,1b
movel %a4,%a0
moveq #15,%d1
/*
* base value of pointer table descriptor is either
* the address of the first page table (680[46]0)
* or the base address of physical memory (68030).
*/
is_040_or_060(1f)
/* 680[23]0 */
movel %d5,%a1 /* base address */
addql #_PAGE_PRESENT,%a1 /* descriptor type */
movel #PAGE_TABLE_SIZE*PAGESIZE,%d2 /* increment */
jra 2f
1: /* 680[46]0 */
movel %a6,%a3 /* base address */
addw #PAGESIZE,%a6 /* allocate page for 16 page tables */
lea %pc@(SYMBOL_NAME(kpt)),%a1
movel %a3,%a1@ /* save address of page table */
movel %a3,%a1
addw #_PAGE_TABLE+_PAGE_ACCESSED,%a1 /* descriptor type */
movel #PAGE_TABLE_SIZE<<2,%d2 /* increment */
2: movel %a1,%a0@+
addl %d2,%a1
dbra %d1,2b
putc('D')
/*
* If we are running on a 680[46]0, we have a kernel page table and
* must initialize it. Make the entries point to the first
* 4M of physical memory (the memory we are residing in).
* Set the cache mode bits to Cacheable, Copyback. Set the Global bits
* in the descriptors also.
*/
is_not_040_or_060(Lnot040)
putc('F')
movel %a3,%a0
movel %d5,%a1
#if defined(CONFIG_060_WRITETHROUGH)
addw #_PAGE_GLOBAL040+_PAGE_PRESENT+_PAGE_ACCESSED,%a1
addl m68k_supervisor_cachemode,%a1
#else
addw #_PAGE_GLOBAL040+_PAGE_CACHE040+_PAGE_PRESENT+_PAGE_ACCESSED,%a1
#endif
movew #(PAGE_TABLE_SIZE*TABLENR_4MB)-1,%d1
movel #PAGESIZE,%d2
1: movel %a1,%a0@+
addl %d2,%a1
dbra %d1,1b
/*
* on the 68040, pages used to hold mmu tables should
* be initialized as noncachable; the '060 allows write-through.
* Do this for the root table page (which also contains
* all pointer tables utilized thus far) and the
* kernel page table.
*/
movel %a5,%d0
subl %d5,%d0
moveq #PAGE_INDEX_SHIFT,%d2
lsrl %d2,%d0
lea %a3@(%d0:l:4),%a2
movel %a2@,%d1
andw #_CACHEMASK040,%d1
orw %d6,%d1
movel %d1,%a2@
movel %a3,%d0
subl %d5,%d0
lsrl %d2,%d0
lea %a3@(%d0:l:4),%a2
movel %a2@,%d1
andw #_CACHEMASK040,%d1
orw %d6,%d1
movel %d1,%a2@+
/*
* %a2 points now to the page table entry for available pages at %a6,
* hence caching modes for new pages can easily set unless increasing
* of %a2 are forgotten.
*/
Lnot040:
leds(0x4)
/*
* Do any machine specific page table initializations.
*/
#ifdef CONFIG_AMIGA
is_not_amiga(Lnotami)
/*
* Setup a mapping of the first 16M of physical address space at virtual
* address 0x80000000, using early termination page descriptors for the
* 68030, and proper page tables for the 680[46]0. Set this area as
* non-cacheable.
*/
putc('H')
is_040_or_060(Lspami68040)
/*
* for the 68030, just setup a translation to map in the first
* 32M of physical address space at virtual address 0x80000000
* using an early termination page descriptor.
*/
putc('I')
movel #_PAGE_NOCACHE030+_PAGE_PRESENT+_PAGE_ACCESSED,%d0
movel %d0,%a5@(0x40<<2)
jra Lmapphys
Lspami68040:
/*
* for the 680[46]0, use another pointer table, and allocate 4 more
* page tables. Initialize the pointer table to point to the
* page tables. Then initialize the page tables to point to
* the first 16M of memory, with no caching (noncachable/serialized).
*/
/* clear the amiga pointer table */
lea %a4@(PTR_TABLE_SIZE<<2),%a4
moveq #PTR_TABLE_SIZE-1,%d1
1: clrl %a0@+
dbra %d1,1b
/* allocate 4 pages for 64 page tables */
movel %a6,%a3
addw #4*PAGESIZE,%a6
/* initialize the pointer table */
movel %a4,%a0
movel %a3,%a1
addw #_PAGE_TABLE+_PAGE_ACCESSED,%a1 /* base descriptor */
movel #PAGE_TABLE_SIZE<<2,%d2 /* increment */
moveq #TABLENR_16MB-1,%d1
1: movel %a1,%a0@+
addl %d2,%a1
dbra %d1,1b
/* ensure that the root table points to the pointer table */
movel %a4,%a0
addw #_PAGE_TABLE+_PAGE_ACCESSED,%a0
movel %a0,%a5@(0x40<<2)
/*
* initialize the page tables
* descriptor bits include noncachable/serialized and global bits.
*/
movel %a3,%a0
movew #_PAGE_GLOBAL040+_PAGE_NOCACHE_S+_PAGE_PRESENT+_PAGE_ACCESSED,%a1
movel #PAGESIZE,%d2
movew #(PAGE_TABLE_SIZE*TABLENR_16MB)-1,%d1
1: movel %a1,%a0@+
addl %d2,%a1
dbra %d1,1b
/*
* Finally, since we just allocated 4 page tables, make sure that
* the virtual mapping of the 4 page tables indicates
* noncachable/serialized.
*/
moveq #3,%d0
1: movel %a2@,%d1 /* a2 already points to root table offset */
andw #_CACHEMASK040,%d1
orw %d6,%d1
movel %d1,%a2@+
dbra %d0,1b
jra Lmapphys
Lnotami:
#endif
#ifdef CONFIG_ATARI
is_not_atari(Lnotatari)
move.w #PAGESIZE,%sp
/* On the Atari, we map the I/O region (phys. 0x00ffxxxx) by mapping
the last 16 MB of virtual address space to the first 16 MB (i.e.
0xffxxxxxx -> 0x00xxxxxx). For this, an additional pointer table is
needed. I/O ranges are marked non-cachable.
For the Medusa it is better to map the I/O region transparently
(i.e. 0xffxxxxxx -> 0xffxxxxxx), because some I/O registers are
accessible only in the high area.
On the Hades all I/O registers are only accessible in the high
area.
*/
/* I/O base addr for non-Medusa, non-Hades: 0x00000000 */
moveq #0,%d0
cmpl #ATARI_MACH_MEDUSA,%d3
jbeq 2f
cmpl #ATARI_MACH_HADES,%d3
jbne 1f
2: movel #0xff000000,%d0 /* Medusa/Hades base addr: 0xff000000 */
1: movel %d0,%d3
/* Let the root table point to the new pointer table */
lea %a4@(PTR_TABLE_SIZE<<2),%a4
movel %a4,%a0
addw #_PAGE_TABLE+_PAGE_ACCESSED,%a0
movel %a0,%a5@(0x7f<<2) /* 0xFE000000 - 0xFFFFFFFF */
/* clear lower half of the pointer table (0xfexxxxxx) */
movel %a4,%a0
movel #(PTR_TABLE_SIZE/2)-1,%d2
1: clrl %a0@+
dbra %d2,1b
is_040_or_060(Lspata68040)
/* Mapping of the last 16M of virtual address space to the first 16M
for efficient addressing of hardware registers */
movel #PAGE_TABLE_SIZE*PAGESIZE,%d1
movel #(PTR_TABLE_SIZE/2)-1,%d2
movel %d3,%d0
orw #_PAGE_PRESENT+_PAGE_ACCESSED,%d0
1: movel %d0,%a0@+
addl %d1,%d0
dbra %d2,1b
moveq #_PAGE_NOCACHE030,%d0 /* make non-cachable */
addl %d0,%a4@(0x7f<<2) /* 0xFFFC0000-0xFFFFFFFF (I/O space) */
/* GK: 0xFFF00000-0xFFF3FFFF (IDE-bus) has to be non-cachable too */
addl %d0,%a4@(0x7c<<2)
jra Lmapphys
Lspata68040:
/* allocate 4 page tables */
movel %a6,%a3
addw #4*PAGESIZE,%a6
/* Initialize the upper half of the pointer table (a0 is still valid) */
movel %a3,%a1
addw #_PAGE_TABLE+_PAGE_ACCESSED,%a1
movel #PAGE_TABLE_SIZE<<2,%d2
moveq #TABLENR_16MB-1,%d1
1: movel %a1,%a0@+
addl %d2,%a1
dbra %d1,1b
/* Initialize the page tables as noncacheable/serialized! */
movel %a3,%a0
movel %d3,%a1
addw #_PAGE_GLOBAL040+_PAGE_NOCACHE_S+_PAGE_PRESENT+_PAGE_ACCESSED,%a1
movel #PAGESIZE,%d2
movew #(PAGE_TABLE_SIZE*TABLENR_16MB)-1,%d1
1: movel %a1,%a0@+
addl %d2,%a1
dbra %d1,1b
/*
* Finally, since we just allocated 4 page tables, make sure that
* the virtual mapping of the 4 page tables indicates
* noncachable or write-through.
*/
moveq #3,%d0
1: movel %a2@,%d1 /* a2 already points to root table offset */
andw #_CACHEMASK040,%d1
orw %d6,%d1
movel %d1,%a2@+
dbra %d0,1b
Lnotatari:
#endif
#ifdef CONFIG_HP300
is_not_hp300(Lnothp300)
/* On the HP300, we map the ROM, INTIO and DIO regions (phys. 0x00xxxxxx)
by mapping 32MB from 0xf0xxxxxx -> 0x00xxxxxx) using an 030 early
termination page descriptor. The ROM mapping is needed because the LEDs
are mapped there too. */
movel #_PAGE_NOCACHE030+_PAGE_PRESENT+_PAGE_ACCESSED,%d0
movel %d0,%a5@(0x78<<2)
Lnothp300:
#endif
#if defined(CONFIG_MVME16x)
is_not_mvme16x(Lnot16x)
/* Get pointer to board ID data */
movel %d2,%sp@-
.long 0x4e4f0070 /* trap 0x70 - .BRD_ID */
movel %sp@+,%d2
lea %pc@(SYMBOL_NAME(mvme_bdid_ptr)),%a0
movel %d2,%a0@
/*
* On MVME16x we have already created kernel page tables for
* 4MB of RAM at address 0, so now need to do a transparent
* mapping of the top of memory space. Make it 0.5GByte for now.
*/
movel #0xe01f0000,%d2 /* logical address base */
orw #0xa040,%d2 /* add in magic bits */
.long 0x4e7b2005 /* movec d2,ittr1 */
.long 0x4e7b2007 /* movec d2,dttr1 */
Lnot16x:
#endif
#if defined(CONFIG_BVME6000)
is_not_bvme6000(Lnotbvm)
/*
* On BVME6000 we have already created kernel page tables for
* 4MB of RAM at address 0, so now need to do a transparent
* mapping of the top of memory space. Make it 0.5GByte for now.
*/
movel #0xe01f0000,%d2 /* logical address base */
orw #0xa040,%d2 /* add in magic bits */
.long 0x4e7b2005 /* movec d2,ittr1 */
.long 0x4e7b2007 /* movec d2,dttr1 */
.long 0x4e7b2004 /* movec d2,ittr0 */
.long 0x4e7b2006 /* movec d2,dttr0 */
Lnotbvm:
#endif
/*
* Setup a transparent mapping of the physical memory we are executing in.
*
* Only do this if the physical memory is not in the first 16M Meg, or not on
* an Amiga since the first 16M is already identity mapped on the Amiga.
*/
Lmapphys:
putc('J')
leds(0x8)
#ifdef CONFIG_AMIGA
is_not_amiga(Lmapphysnotamiga)
/*
* The virtual address of the start of the kernel is 0x1000. We transparently
* translate the memory where we running in and can enable then the MMU. Hence
* we have now two locations of the kernel in memory and can jump to the final
* place. Except if the physical location is in the first 16MB, translation
* will overlap later virtual location, but as we already mapped the first
* 16MB to 0x80000000, we can jump there after translation and MMU is enabled
* and then we can switch off translation and go to the final place.
* On 020/030 we must emulate transparant translation, since 020 doesn't know
* it, but due to early termination pointer this is easy to do.
* When MMU is enabled, stack pointer and Lcustom will become again valid and
* stack points to the unused first page.
*/
/*
* Setup Supervisor Root Pointer register to point to page directory,
* setup translation register contents and enable translation.
*/
putc('K')
movew #PAGESIZE,%sp
/* fixup the Amiga custom register location before printing */
lea %pc@(Lcustom),%a0
movel #0x80000000,%a0@
is_040_or_060(Lamimmu68040)
moveq #ROOT_INDEX_SHIFT,%d2
movel %d5,%d0
lsrl %d2,%d0
movel %d0,%d1
lsll %d2,%d1
orw #_PAGE_PRESENT+_PAGE_ACCESSED,%d1
lsll #2,%d0
movel %a5@(%d0:w),%d2
movel %d1,%a5@(%d0:w)
lea %pc@(Lmmu),%a3
/* no limit, 4byte descriptors */
movel #0x80000002,%a3@
movel %a5,%a3@(4)
pmove %a3@,%srp
pmove %a3@,%crp
pflusha
/*
* enable,super root enable,4096 byte pages,7 bit root index,
* 7 bit pointer index, 6 bit page table index.
*/
movel #0x82c07760,%a3@
pmove %a3@,%tc /* enable the MMU */
tstl %d0
jne 1f
jmp %pc@(2f+0x80000000)
1: jmp 2f:w
2: movel %d2,%a5@(%d0:w)
pflusha
jmp LdoneMMUenable:w
Lamimmu68040:
.chip 68040
lea 2f:w,%a0
movel %d5,%d0
andl #0xff000000,%d0
jne 1f
lea %pc@(2f+0x80000000),%a0
1: orw #TTR_ENABLE+TTR_KERNELMODE+_PAGE_NOCACHE_S,%d0
movec %d0,%itt0
movec %a5,%urp
movec %a5,%srp
pflusha
movel #TC_ENABLE+TC_PAGE4K,%d0
/*
* this value is also ok for the 68060, we don`t use the cache
* mode/protection defaults
*/
movec %d0,%tc /* enable the MMU */
jmp %a0@
2: moveq #0,%d0
movec %d0,%itt0
jmp LdoneMMUenable:w
.chip 68k
Lmapphysnotamiga:
#endif
#ifdef CONFIG_ATARI
is_not_atari(Lmapphysnotatari)
/*
* If the kernel physical address is different from its virtual address, we
* will temporarily set up an identity mapping of the 16MB chunk with
* transparent translation where the kernel is executing.
*/
putc('L')
/* fixup the Atari iobase register location before printing */
lea %pc@(Liobase),%a0
movel #0xff000000,%a0@
is_040_or_060(Latarimmu68040)
.chip 68030
lea %pc@(Lmmu),%a3
movel %d5,%d0
jne 1f
lea LdoneMMUenable:w,%a0
jra 3f
1: lea 4f:w,%a0
andl #0xff000000,%d0 /* logical address base */
jeq 2f
orw #TTR_ENABLE+TTR_CI+TTR_RWM+TTR_FCB2+TTR_FCM1+TTR_FCM0,%d0
movel %d0,%a3@
pmove %a3@,%tt0
jra 3f
/* tt0 doesn't work if physical and virtual address of kernel is in
* the same 16M area (Falcon with Magnum/FX, kernel in alternate ram)
* Transparent translation through kernel pointer table
* Requires that this code until after MMU enabling lies in
* the 256K page around %d5
*/
2: movel %a5@,%d1
andw #0xfff0,%d1
movel %d1,%a1
movel %d5,%d1
moveq #PTR_INDEX_SHIFT,%d0
lsrl %d0,%d1
lea %a1@(%d1:l:4),%a1
movel %d5,%d1
orw #_PAGE_PRESENT+_PAGE_ACCESSED,%d1
movel %a1@,%d2
movel %d1,%a1@
lea 5f:w,%a0
/* no limit, 4byte descriptors */
3: movel #0x80000002,%a3@
movel %a5,%a3@(4)
pmove %a3@,%srp
pmove %a3@,%crp
pflusha
/*
* enable,super root enable,4096 byte pages,7 bit root index,
* 7 bit pointer index, 6 bit page table index.
*/
movel #0x82c07760,%a3@
pmove %a3@,%tc /* enable the MMU */
jmp %a0@
4: clrl %a3@
pmove %a3@,%tt0
jra LdoneMMUenable
5: movel %d2,%a1@
jra LdoneMMUenable
.chip 68k
Latarimmu68040:
.chip 68040
movel %d5,%d0
jne 1f
lea LdoneMMUenable:w,%a0
jra 2f
1: lea 3f:w,%a0
andl #0xff000000,%d0 /* logical address base */
orw #TTR_ENABLE+TTR_KERNELMODE+_PAGE_NOCACHE_S,%d0
movec %d0,%itt0
2: nop
pflusha
movec %a5,%srp
movec %a5,%urp
movel #TC_ENABLE+TC_PAGE4K,%d0
/*
* this value is also ok for the 68060, we don`t use the cache
* mode/protection defaults
*/
movec %d0,%tc /* enable the MMU */
jmp %a0@
3: moveq #0,%d0
movec %d0,%itt0
jra LdoneMMUenable
.chip 68k
Lmapphysnotatari:
#endif
#if defined(CONFIG_MVME16x)
is_not_mvme16x(Lmapphysnot16x)
/*
* save physaddr of phys mem in register a3
*/
moveq #'L',%d7
jbsr Lserial_putc
.word 0xf4d8 /* CINVA I/D */
.word 0xf518 /* pflusha */
.long 0x4e7bd807 /* movec a5,srp */
.long 0x4e7bd806 /* movec a5,urp */
movel #(TC_ENABLE+TC_PAGE4K),%d0
.long 0x4e7b0003 /* movec d0,tc (enable the MMU) */
jra LdoneMMUenable /* branch to continuation of startup */
Lmapphysnot16x:
#endif
#if defined(CONFIG_HP300)
is_not_hp300(Lmapphysnothp300)
/*
* Physical RAM is at 0xff000000. We want to map the kernel at 0x00000000.
* In order to avoid disaster when we enable the MMU we need to make a
* transparent mapping of the RAM we're executing out of as well.
*/
/*
* save physaddr of phys mem in register a3
*/
.chip 68030
lea %pc@(Lmmu),%a3
movel %d5,%d0
andl #0xff000000,%d0 /* logical address base */
orw #TTR_ENABLE+TTR_CI+TTR_RWM+TTR_FCB2+TTR_FCM1+TTR_FCM0,%d0
movel %d0,%a3@
pmove %a3@,%tt0
/* no limit, 4byte descriptors */
movel #0x80000002,%a3@
movel %a5,%a3@(4)
pmove %a3@,%srp
pmove %a3@,%crp
pflusha
/*
* enable,super root enable,4096 byte pages,7 bit root index,
* 7 bit pointer index, 6 bit page table index.
*/
movel #0x82c07760,%a3@
pmove %a3@,%tc /* enable the MMU */
jmp 1f
1:
.chip 68k
/*
* Fix up the custom register to point to the new location of the LEDs.
*/
lea %pc@(Lcustom),%a1
movel #0xf0000000,%a1@
/*
* Energise the FPU and caches.
*/
orl #0x64, 0xf05f400c
Lmapphysnothp300:
#endif
#if defined(CONFIG_BVME6000)
is_not_bvme6000(Lmapphysnotbvm)
/*
* save physaddr of phys mem in register a3
*/
moveq #'L',%d7
jbsr Lserial_putc
.word 0xf4d8 /* CINVA I/D */
.word 0xf518 /* pflusha */
.long 0x4e7bd807 /* movec a5,srp */
.long 0x4e7bd806 /* movec a5,urp */
movel #(TC_ENABLE+TC_PAGE4K),%d0
/*
* this value is also ok for the 68060, we don`t use the cache
* mode/protection defaults
*/
.long 0x4e7b0003 /* movec d0,tc (enable the MMU) */
jra LdoneMMUenable /* branch to continuation of startup */
Lmapphysnotbvm:
#endif
LdoneMMUenable:
/*
* Fixup the addresses for the kernel pointer table and availmem.
* Convert them from physical addresses to virtual addresses.
*/
putc('M')
leds(0x10)
/*
* d5 contains physaddr of kernel start
*/
subl %d5,SYMBOL_NAME(kpt)
/*
* do the same conversion on the first available memory
* address (in a6).
*/
subl %d5,%a6
movel %a6,SYMBOL_NAME(availmem) /* first available memory address */
putc('N')
/*
* Enable caches
*/
is_040_or_060(Lcache680460)
movel #CC3_ENABLE_DB+CC3_CLR_D+CC3_ENABLE_D+CC3_ENABLE_IB+CC3_CLR_I+CC3_ENABLE_I,%d0
movec %d0,%cacr
jra 1f
Lcache680460:
.chip 68040
cpusha %bc
.chip 68k
is_060(Lcache68060)
movel #CC6_ENABLE_D+CC6_ENABLE_I,%d0
/* MMU stuff works in copyback mode now, so enable the cache */
movec %d0,%cacr
jra 1f
Lcache68060:
.chip 68060
movel #CC6_ENABLE_D+CC6_ENABLE_I+CC6_ENABLE_SB+CC6_PUSH_DPI+CC6_ENABLE_B+CC6_CLRA_B,%d0
/* MMU stuff works in copyback mode now, so enable the cache */
movec %d0,%cacr
/* enable superscalar dispatch in PCR */
moveq #1,%d0
movec %d0,%pcr
.chip 68k
1:
/*
* Setup initial stack pointer
* We need to get current loaded up with our first task...
*/
lea SYMBOL_NAME(init_task_union),%a2
lea 8192(%a2),%sp
/* jump to the kernel start */
putr()
leds(0x55)
subl %a6,%a6 /* clear a6 for gdb */
jbsr SYMBOL_NAME(start_kernel)
/*
* Find a tag record in the bootinfo structure
* The bootinfo structure is located right after the kernel bss
* Returns: d0: size (-1 if not found)
* a0: data pointer (end-of-records if not found)
*/
Lget_bi_record:
lea %pc@(SYMBOL_NAME(_end)),%a0
1: tstw %a0@(BIR_tag)
jeq 3f
cmpw %a0@(BIR_tag),%d0
jeq 2f
addw %a0@(BIR_size),%a0
jra 1b
2: moveq #0,%d0
movew %a0@(BIR_size),%d0
lea %a0@(BIR_data),%a0
rts
3: moveq #-1,%d0
lea %a0@(BIR_size),%a0
rts
/*
* Debug output support
* Atarians have a choice between the parallel port, the serial port
* from the MFP or a serial port of the SCC
*/
#ifdef CONFIG_ATARI
/* #define USE_PRINTER */
/* #define USE_SCC */
#define USE_MFP
#ifdef USE_PRINTER
LPSG_SELECT = 0xff8800
LPSG_READ = 0xff8800
LPSG_WRITE = 0xff8802
LPSG_IO_A = 14
LPSG_IO_B = 15
LPSG_CONTROL = 7
LSTMFP_GPIP = 0xfffa01
LSTMFP_DDR = 0xfffa05
LSTMFP_IERB = 0xfffa09
#elif defined(USE_SCC)
LSCC_CTRL_B = 0xff8c85
LSCC_DATA_B = 0xff8c87
/* Initialisation table for SCC */
scc_initable:
.byte 9,12 /* Reset */
.byte 4,0x44 /* x16, 1 stopbit, no parity */
.byte 3,0xc0 /* receiver: 8 bpc */
.byte 5,0xe2 /* transmitter: 8 bpc, assert dtr/rts */
.byte 9,0 /* no interrupts */
.byte 10,0 /* NRZ */
.byte 11,0x50 /* use baud rate generator */
.byte 12,24,13,0 /* 9600 baud */
.byte 14,2,14,3 /* use master clock for BRG, enable */
.byte 3,0xc1 /* enable receiver */
.byte 5,0xea /* enable transmitter */
.byte -1
.even
#elif defined(USE_MFP)
LMFP_UCR = 0xfffa29
LMFP_TDCDR = 0xfffa1d
LMFP_TDDR = 0xfffa25
LMFP_TSR = 0xfffa2d
LMFP_UDR = 0xfffa2f
#endif
#endif
#if defined (CONFIG_BVME6000)
BVME_SCC_CTRL_A = 0xffb0000b
BVME_SCC_DATA_A = 0xffb0000f
#endif
/*
* Serial port output support.
*/
LSERPER = 0xdff032
LSERDAT = 0xdff030
LSERDATR = 0xdff018
LSERIAL_CNTRL = 0xbfd000
LSERIAL_DTR = 7
/*
* Initialize serial port hardware for 9600/8/1
* a0 thrashed
* Amiga d0 trashed
* Atari d0 trashed (a1 in case of SCC)
*/
.even
Lserial_init:
#ifdef CONFIG_AMIGA
cmpil #MACH_AMIGA,%d4
jne 1f
bclr #LSERIAL_DTR,LSERIAL_CNTRL
movew #BI_AMIGA_SERPER,%d0
jbsr Lget_bi_record
movew %a0@,LSERPER
jra 9f
1:
#endif
#ifdef CONFIG_ATARI
cmpil #MACH_ATARI,%d4
jne 4f
movel %pc@(Liobase),%a1
#ifdef USE_PRINTER
bclr #0,%a1@(LSTMFP_IERB)
bclr #0,%a1@(LSTMFP_DDR)
moveb #LPSG_CONTROL,%a1@(LPSG_SELECT)
moveb #0xff,%a1@(LPSG_WRITE)
moveb #LPSG_IO_B,%a1@(LPSG_SELECT)
clrb %a1@(LPSG_WRITE)
moveb #LPSG_IO_A,%a1@(LPSG_SELECT)
moveb %a1@(LPSG_READ),%d0
bset #5,%d0
moveb %d0,%a1@(LPSG_WRITE)
#elif defined(USE_SCC)
lea %a1@(LSCC_CTRL_B),%a0
lea %pc@(scc_initable:w),%a1
2: moveb %a1@+,%d0
jmi 3f
moveb %d0,%a0@
moveb %a1@+,%a0@
jra 2b
3: clrb %a0@
#elif defined(USE_MFP)
bclr #1,%a1@(LMFP_TSR)
moveb #0x88,%a1@(LMFP_UCR)
andb #0x70,%a1@(LMFP_TDCDR)
moveb #2,%a1@(LMFP_TDDR)
orb #1,%a1@(LMFP_TDCDR)
bset #1,%a1@(LMFP_TSR)
#endif
4:
#endif
9:
rts
#ifdef CONFIG_HP300
/* Set LEDs to %d7 */
.even
Lset_leds:
moveml %a0/%a1,%sp@-
movel %pc@(Lcustom),%a1
moveb %d7,%a1@(0x1ffff)
moveml %sp@+,%a0/%a1
rts
#endif
/*
* Output character in d7 on serial port.
* d7 thrashed.
*/
Lserial_putc:
moveml %a0/%a1,%sp@-
#if defined(CONFIG_MVME16x)
cmpil #MACH_MVME16x,%d4
jne 2f
moveb %d7,%sp@-
.long 0x4e4f0020
jra 9f
2:
#endif
#ifdef CONFIG_BVME6000
cmpil #MACH_BVME6000,%d4
jne 2f
1: btst #2,BVME_SCC_CTRL_A
jeq 1b
moveb %d7,BVME_SCC_DATA_A
jra 9f
2:
#endif
#ifdef CONFIG_AMIGA
cmpil #MACH_AMIGA,%d4
jne 2f
andw #0x00ff,%d7
oriw #0x0100,%d7
movel %pc@(Lcustom),%a1
movew %d7,%a1@(LSERDAT)
1: movew %a1@(LSERDATR),%d7
andw #0x2000,%d7
jeq 1b
jra 9f
2:
#endif
#ifdef CONFIG_ATARI
cmpil #MACH_ATARI,%d4
jne 4f
movel %pc@(Liobase),%a1
#ifdef USE_PRINTER
3: btst #0,%a1@(LSTMFP_GPIP)
jne 3b
moveb #LPSG_IO_B,%a1@(LPSG_SELECT)
moveb %d7,%a1@(LPSG_WRITE)
moveb #LPSG_IO_A,%a1@(LPSG_SELECT)
moveb %a1@(LPSG_READ),%d7
bclr #5,%d7
moveb %d7,%a1@(LPSG_WRITE)
nop
nop
bset #5,%d7
moveb %d7,%a1@(LPSG_WRITE)
#elif defined(USE_SCC)
3: btst #2,%a1@(LSCC_CTRL_B)
jeq 3b
moveb %d7,%a1@(LSCC_DATA_B)
#elif defined(USE_MFP)
3: btst #7,%a1@(LMFP_TSR)
jeq 3b
moveb %d7,%a1@(LMFP_UDR)
#endif
4:
#endif
9:
moveml %sp@+,%a0/%a1
rts
/*
* Output string pointed to by a0 to serial port.
* a0 trashed.
*/
Lserial_puts:
movel %d7,%sp@-
1: moveb %a0@+,%d7
jeq 2f
jbsr Lserial_putc
jra 1b
2: movel %sp@+,%d7
rts
/*
* Output number in d7 in hex notation on serial port.
*/
Lserial_putnum:
moveml %d0-%d2/%d7,%sp@-
movel %d7,%d1
moveq #4,%d0
moveq #7,%d2
L1: roll %d0,%d1
moveb %d1,%d7
andb #0x0f,%d7
cmpb #0x0a,%d7
jcc 1f
addb #'0',%d7
jra 2f
1: addb #'A'-10,%d7
2: jbsr Lserial_putc
dbra %d2,L1
moveq #32,%d7
jbsr Lserial_putc
moveml %sp@+,%d0-%d2/%d7
rts
#if 0
Lshowtest:
moveml %a0/%d7,%sp@-
putc('A')
putc('=')
putn(%a1)
ptestr #5,%a1@,#7,%a0
putc('D')
putc('A')
putc('=')
putn(%a0)
putc('D')
putc('=')
putn(%a0@)
putc('S')
putc('=')
lea %pc@(Lmmu),%a0
pmove %psr,%a0@
clrl %d7
movew %a0@,%d7
jbsr Lserial_putnum
putr()
moveml %sp@+,%a0/%d7
rts
#endif
.data
.even
Lcustom:
Liobase:
.long 0
Lmmu: .quad 0
SYMBOL_NAME_LABEL(kpt)
.long 0
SYMBOL_NAME_LABEL(availmem)
.long 0
SYMBOL_NAME_LABEL(m68k_pgtable_cachemode)
.long 0
#ifdef CONFIG_060_WRITETHROUGH
SYMBOL_NAME_LABEL(m68k_supervisor_cachemode)
.long 0
#endif
#if defined(CONFIG_MVME16x)
SYMBOL_NAME_LABEL(mvme_bdid_ptr)
.long 0
#endif
|