BSD 4_2 development
[unix-history] / usr / src / sys / mdec / utboot.s
/* utboot.s 6.2 83/09/29 */
/*
* VAX tape boot block for distribution tapes
* works on unibus tm03
*
* reads a program from a tp directory on a tape and executes it
* program must be stripped of the header and is loaded ``bits as is''
* you can return to this loader via ``ret'' as you are called ``calls $0,ent''
*/
.set RELOC,0x70000
/* a.out defines */
.set HDRSIZ,040 /* size of file header for VAX */
.set MAGIC,0410 /* file type id in header */
.set TSIZ,4 /* text size */
.set DSIZ,8 /* data size */
.set BSIZ,12 /* bss size */
.set TENT,024 /* task header entry loc */
/* tp directory definitions */
.set FILSIZ,38 /* tp direc offset for file size */
.set BNUM,44 /* tp dir offset for start block no. */
.set ENTSIZ,64 /* size of 1 TP dir entry, bytes */
.set PTHSIZ,32 /* size of TP path name, bytes */
.set BLKSIZ,512 /* tape block size, bytes */
.set NUMDIR,24 /* no. of dir blocks on tape */
.set ENTBLK,8 /* no. of dir entries per tape block */
/* processor registers and bits */
.set RXCS,32
.set RXDB,33
.set TXCS,34
.set TXDB,35
.set RXCS_DONE,0x80
.set TXCS_RDY,0x80
.set TXCS_pr,7 /* bit position of TXCS ready bit */
.set RXCS_pd,7 /* bit position of RXCS done bit */
/* UBA registers */
.set UBA_DPR1,68
.set UBA_MAP,2048
.set BNE,0x80000000
.set MRV,0x80000000
.set MR_BDP1,0x200000
/* UT UBA registers */
.set UTCS1,0
.set UTWC,02
.set UTBA,04
.set UTFC,06
.set UTCS2,010
.set UTDS,012
.set UTER,014
.set UTAS,016
.set UTCC,020
.set UTDB,022
.set UTMR,024
.set UTDT,026
.set UTSN,030
.set UTTC,032
/* UT commands and bits */
.set GO,01
.set UT_REW,0x6
.set UT_RCOM,0x38
.set UT_SREV,0x1a
.set UT_DCLR,0x8
.set UT_crdy,7 /* bit pos. */
.set UT_gapsd,13 /* bit; aka "positioning in progress" */
.set UTDENS,0x4c0 /* 1600 bpi, PDP-11 format */
/* local stack variables */
.set tapa,-4 /* desired tape addr */
.set mtapa,-8 /* current tape addr */
.set name,-8-PTHSIZ /* operator-typed file name */
/* register usage */
.set rUBA,r10
.set rUT,r11
/* ===== */
/* initialization */
init:
movl $RELOC,fp /* core loc to which to move this program */
addl3 $name,fp,sp /* set stack pointer; leave room for locals */
clrl r0
1:
movc3 $end,(r0),(fp) /* move boot up to relocated position */
jmp start+RELOC
start:
bsbw rew /* rewind input tape */
movab name(fp),r4 /* start of filename storage */
movzbl $'=,r0 /* prompt character */
bsbw putc /* output char to main console */
/* read in a file name */
movl r4,r1 /* loc at which to store file name */
nxtc:
bsbw getc /* get input char's in file name */
cmpb r0,$012 /* terminator ? */
beql nullc
movb r0,(r1)+
brb nxtc
nullc:
subl3 r4,r1,r9 /* size of path name */
beql start /* dumb operator */
clrb (r1)+
incl r9
/* user-specified TP filename has been stored at name(fp) */
/* read in entire tp directory contents into low core */
dirred:
movl $8,tapa(fp) /* tp directory starts at block 8 */
movl $(NUMDIR*BLKSIZ),r6 /* no. bytes in total dir */
bsbw taper /* read no. bytes indicated */
/* search entire directory for user-specified file name */
clrl r5 /* dir buff loc = 0 */
nxtdir:
cmpc3 r9,(r5),(r4) /* see if dir entry matches filename */
beql fndfil /* found match */
acbl $NUMDIR*BLKSIZ-1,$ENTSIZ,r5,nxtdir
/* see if done with tp dir */
brw start /* entry not in directory; start over */
/* found desired tp dir entry */
fndfil:
movzwl BNUM(r5),tapa(fp) /* start block no., 2 bytes */
addl2 $7,tapa(fp) /* skip 7 boot blocks */
movzwl FILSIZ(r5),r6 /* low 2 bytes file size */
insv FILSIZ-1(r5),$16,$8,r6 /* file size, high byte */
cmpl r6,$RELOC-512 /* check if file fits below stack */
blss filok /* file o.k. */
brw start /* file too large */
/* time to read in desired file from tape */
filok:
movl r6,r7 /* save r6 */
bsbb taper
bsbw rew
/* clear core */
subl3 r7,$RELOC-4,r0 /* no. bytes to clear */
1:
clrb (r7)+
sobgtr r0,1b
/* time to jump to start of file & execute */
addl3 $20,fp,ap
clrl r5
calls $0,(r5)
brw start
/* taper: movcTAPE (r6),tapa(fp),0 */
rew2:
bsbb rew /* beginning of tape */
taper0:
bsbb rrec /* advance 1 block; never want blk 0 */
taper:
clrl r0 /* page no. */
cmpl mtapa(fp),tapa(fp) /* current position .vs. desired */
bgtr rew2
blss taper0
1:
bsbb rrec
acbl $1,$-BLKSIZ,r6,1b
rsb
/* rew: rewind the tape */
rew:
clrl mtapa(fp) /* current position */
movw $UTDENS,UTTC(%rUT) /* select drive */
movw $UT_REW+GO,UTCS1(%rUT)
rsb
/* rrec: read 1 block from mag tape into page (r0) */
rrec:
/* pushl r0; movzbl $'r,r0; bsbw putc; movl (sp)+,r0; */
jsb utquiet
movw $-BLKSIZ,UTFC(%rUT)
movw $-256,UTWC(%rUT) /* !!!!!!!!!!!!!! */
bisl3 $MRV|MR_BDP1,r0,UBA_MAP(%rUBA)
movw $0,UTBA(%rUT)
movw $UTDENS,UTTC(%rUT) /* select drive */
movw $UT_RCOM+GO,UTCS1(%rUT)
jsb utquiet
bisl2 $BNE,UBA_DPR1(%rUBA)
tstw UTER(%rUT)
jgeq 2f
mnegw $1,UTWC(%rUT)
movw $UTDENS,UTTC(%rUT) /* select drive */
movw $UT_SREV+GO,UTCS1(%rUT)
jmp rrec
2:
incl r0 /* next page no. */
incl mtapa(fp) /* mag tape block position */
rsb
getc:
mfpr $RXCS,r0
bbc $RXCS_pd,r0,getc /* receiver ready ? */
mfpr $RXDB,r0
extzv $0,$7,r0,r0
cmpb r0,$015
bneq putc
bsbb putc
movb $0,r0
bsbb putc
movb $012,r0
putc:
mfpr $TXCS,r2
bbc $TXCS_pr,r2,putc /* transmitter ready ? */
extzv $0,$7,r0,r0
mtpr r0,$TXDB
rsb
utquiet:
movw UTCS1(%rUT),r2
bbc $UT_crdy,r2,utquiet
1:
movw UTDS(%rUT),r2
bbs $UT_gapsd,r2,1b
rsb
end: