]> git.sesse.net Git - pistorm/blob - platforms/amiga/piscsi/device_driver_amiga/bootrom.s
a8e8a5a75b3c7b9f028ca0751e2110d38ed2e42a
[pistorm] / platforms / amiga / piscsi / device_driver_amiga / bootrom.s
1 **
2 ** Sample autoboot code fragment
3 **
4 ** These are the calling conventions for the Diag routine
5 **
6 ** A7 -- points to at least 2K of stack
7 ** A6 -- ExecBase
8 ** A5 -- ExpansionBase
9 ** A3 -- your board's ConfigDev structure
10 ** A2 -- Base of diag/init area that was copied
11 ** A0 -- Base of your board
12 **
13 ** Your Diag routine should return a non-zero value in D0 for success.
14 ** If this value is NULL, then the diag/init area that was copied
15 ** will be returned to the free memory pool.
16 **
17
18     INCLUDE "exec/types.i"
19     INCLUDE "exec/nodes.i"
20     INCLUDE "exec/resident.i"
21     INCLUDE "libraries/configvars.i"
22
23     ; LVO's resolved by linking with library amiga.lib
24     XREF   _LVOFindResident
25
26 ROMINFO     EQU      0
27 ROMOFFS     EQU     $0
28
29 * ROMINFO defines whether you want the AUTOCONFIG information in
30 * the beginning of your ROM (set to 0 if you instead have PALS
31 * providing the AUTOCONFIG information instead)
32 *
33 * ROMOFFS is the offset from your board base where your ROMs appear.
34 * Your ROMs might appear at offset 0 and contain your AUTOCONFIG
35 * information in the high nibbles of the first $40 words ($80 bytes).
36 * Or, your autoconfig ID information may be in a PAL, with your
37 * ROMs possibly being addressed at some offset (for example $2000)
38 * from your board base.  This ROMOFFS constant will be used as an
39 * additional offset from your configured board address when patching
40 * structures which require absolute pointers to ROM code or data.
41
42 *----- We'll store Version and Revision in serial number
43 VERSION         EQU     37              ; also the high word of serial number
44 REVISION        EQU     1               ; also the low word of serial number
45
46 * See the Addison-Wesley Amiga Hardware Manual for more info.
47
48 MANUF_ID        EQU     2011            ; CBM assigned (2011 for hackers only)
49 PRODUCT_ID      EQU     1               ; Manufacturer picks product ID
50
51 BOARDSIZE       EQU     $10000          ; How much address space board decodes
52 SIZE_FLAG       EQU     3               ; Autoconfig 3-bit flag for BOARDSIZE
53                                         ;   0=$800000(8meg)  4=$80000(512K)
54                                         ;   1=$10000(64K)    5=$100000(1meg)
55                                         ;   2=$20000(128K)   6=$200000(2meg)
56                                         ;   3=$40000(256K)   7=$400000(4meg)
57             CODE
58
59 AllocMem    EQU -198
60
61 *******  RomStart  ***************************************************
62 **********************************************************************
63
64 RomStart:
65
66 *******  DiagStart  **************************************************
67 DiagStart:  ; This is the DiagArea structure whose relative offset from
68             ; your board base appears as the Init Diag vector in your
69             ; autoconfig ID information.  This structure is designed
70             ; to use all relative pointers (no patching needed).
71             dc.b    DAC_WORDWIDE+DAC_CONFIGTIME    ; da_Config
72             dc.b    0                              ; da_Flags
73             dc.w    $4000              ; da_Size
74             dc.w    DiagEntry-DiagStart            ; da_DiagPoint
75             dc.w    BootEntry-DiagStart            ; da_BootPoint
76             dc.w    DevName-DiagStart              ; da_Name
77             dc.w    0                              ; da_Reserved01
78             dc.w    0                              ; da_Reserved02
79
80 *******  Resident Structure  *****************************************
81 Romtag:
82             dc.w    RTC_MATCHWORD      ; UWORD RT_MATCHWORD
83 rt_Match:   dc.l    Romtag-DiagStart   ; APTR  RT_MATCHTAG
84 rt_End:     dc.l    EndCopy-DiagStart  ; APTR  RT_ENDSKIP
85             dc.b    RTW_COLDSTART      ; UBYTE RT_FLAGS
86             dc.b    VERSION            ; UBYTE RT_VERSION
87             dc.b    NT_DEVICE          ; UBYTE RT_TYPE
88             dc.b    20                 ; BYTE  RT_PRI
89 rt_Name:    dc.l    DevName-DiagStart  ; APTR  RT_NAME
90 rt_Id:      dc.l    IdString-DiagStart ; APTR  RT_IDSTRING
91 rt_Init:    dc.l    Init-RomStart      ; APTR  RT_INIT
92
93
94 ******* Strings referenced in Diag Copy area  ************************
95 DevName:    dc.b    '2nd.scsi.device',0                      ; Name string
96 IdString    dc.b    'PISCSI ',48+VERSION,'.',48+REVISION   ; Id string
97
98 DosName:    dc.b    'dos.library',0                ; DOS library name
99
100 DosDevName: dc.b    'ABC',0        ; dos device name for MakeDosNode()
101                                    ;   (dos device will be ABC:)
102
103             ds.w    0              ; word align
104
105 *******  DiagEntry  **************************************************
106 **********************************************************************
107 *
108 *   success = DiagEntry(BoardBase,DiagCopy, configDev)
109 *   d0                  a0         a2                  a3
110 *
111 *   Called by expansion architecture to relocate any pointers
112 *   in the copied diagnostic area.   We will patch the romtag.
113 *   If you have pre-coded your MakeDosNode packet, BootNode,
114 *   or device initialization structures, they would also need
115 *   to be within this copy area, and patched by this routine.
116 *
117 **********************************************************************
118
119 DiagEntry:
120             nop
121             nop
122             nop
123             move.l  #1,$80000020
124
125             movea.l 4,a6
126             move.l #$40000,d0
127             moveq #0,d1
128             jsr AllocMem(a6)
129
130             nop
131             nop
132             move.l  d0,$80000040
133
134             move.l  d0,a1
135             move.l  #0,d1
136             movea.l  4,a6
137             add.l #$16e,a1
138             nop
139             nop
140             nop
141             jsr     -102(a6)
142             nop
143             nop
144             bra.s endpatches
145
146
147             lea      patchTable-RomStart(a0),a1   ; find patch table
148             adda.l   #ROMOFFS,a1                  ; adjusting for ROMOFFS
149
150 * Patch relative pointers to labels within DiagCopy area
151 * by adding Diag RAM copy address.  These pointers were coded as
152 * long relative offsets from base of the DiagArea structure.
153 *
154 dpatches:
155             move.l   a2,d1           ;d1=base of ram Diag copy
156 dloop:
157             move.w   (a1)+,d0        ;d0=word offs. into Diag needing patch
158             bmi.s    bpatches        ;-1 is end of word patch offset table
159             add.l    d1,0(a2,d0.w)   ;add DiagCopy addr to coded rel. offset
160             bra.s    dloop
161
162 * Patches relative pointers to labels within the ROM by adding
163 * the board base address + ROMOFFS.  These pointers were coded as
164 * long relative offsets from RomStart.
165 *
166 bpatches:
167             move.l   a0,d1           ;d1 = board base address
168             add.l    #ROMOFFS,d1     ;add offset to where your ROMs are
169 rloop:
170             move.w   (a1)+,d0        ;d0=word offs. into Diag needing patch
171             bmi.s   endpatches       ;-1 is end of patch offset table
172             add.l   d1,0(a2,d0.w)    ;add ROM address to coded relative offset
173             bra.s   rloop
174
175 endpatches:
176             moveq.l #1,d0           ; indicate "success"
177             rts
178
179
180 *******  BootEntry  **************************************************
181 **********************************************************************
182
183 BootEntry:  lea     DosName(PC),a1          ; 'dos.library',0
184             jsr     _LVOFindResident(a6)    ; find the DOS resident tag
185             move.l  d0,a0                   ; in order to bootstrap
186             move.l  RT_INIT(A0),a0          ; set vector to DOS INIT
187             jsr     (a0)                    ; and initialize DOS
188             rts
189
190 *
191 * End of the Diag copy area which is copied to RAM
192 *
193 EndCopy:
194 *************************************************************************
195
196 *************************************************************************
197 *
198 *   Beginning of ROM driver code and data that is accessed only in
199 *   the ROM space.  This must all be position-independent.
200 *
201
202 patchTable:
203 * Word offsets into Diag area where pointers need Diag copy address added
204             dc.w   rt_Match-DiagStart
205             dc.w   rt_End-DiagStart
206             dc.w   rt_Name-DiagStart
207             dc.w   rt_Id-DiagStart
208             dc.w   -1
209
210 * Word offsets into Diag area where pointers need boardbase+ROMOFFS added
211             dc.w   rt_Init-DiagStart
212             dc.w   -1
213
214 *******  Romtag InitEntry  **********************************************
215 *************************************************************************
216
217 Init:       ; After Diag patching, our romtag will point to this
218             ; routine in ROM so that it can be called at Resident
219             ; initialization time.
220             ; This routine will be similar to a normal expansion device
221             ; initialization routine, but will MakeDosNode then set up a
222             ; BootNode, and Enqueue() on eb_MountList.
223             ;
224             rts
225
226             ; Rest of your position-independent device code goes here.
227
228             END