Mercurial > hg > Members > kono > nitros9-code
annotate defs/rbfdefs @ 1530:a02b18bfc376
New 'Old' fields added from OS-9 Level One V2.00.00 Addendum
author | boisy |
---|---|
date | Wed, 14 Apr 2004 13:35:50 +0000 |
parents | 7e26b1ec9738 |
children | 8d4b5ee1cee4 |
rev | line source |
---|---|
1199 | 1 IFEQ RBFDEFS |
373
c07686556109
Added ifeq statements at top to allow for multiple use's of same def
boisy
parents:
71
diff
changeset
|
2 |
c07686556109
Added ifeq statements at top to allow for multiple use's of same def
boisy
parents:
71
diff
changeset
|
3 RBFDEFS set 1 |
c07686556109
Added ifeq statements at top to allow for multiple use's of same def
boisy
parents:
71
diff
changeset
|
4 |
1200 | 5 ******************************************************************** |
6 * RBFDefs - Random Block File Manager Definitions | |
0 | 7 * |
1200 | 8 * $Id$ |
9 * | |
1199 | 10 * RBF stands for 'Random Block Filemanager' and is a package of subroutines |
11 * that define the logical structure of a disk and allows access to the files | |
12 * in that structure. | |
13 * | |
14 * The data structures in this file give RBF its 'personality' and are used | |
15 * by RBF itself, as well as applications that will require disk I/O. | |
1200 | 16 * |
17 * Edt/Rev YYYY/MM/DD Modified by | |
18 * Comment | |
19 * ------------------------------------------------------------------ | |
20 * 1982/07/13 Robert F. Doggett | |
21 * PD.Exten added to path descriptor and PE Entries defined. | |
22 * | |
23 * 1982/07/15 Robert F. Doggett | |
24 * V.FileHd inserted in driver static storage. | |
25 * | |
26 * 1982/09/10 WGP | |
27 * Level One/Level Two condionals added. | |
28 * | |
29 * 1982/09/17 WGP | |
30 * | |
31 * 1982/09/17 Robert F. Doggett | |
32 * PD.SLE renamed to PD.Creat. | |
33 * | |
34 * 1982/09/17 Robert F. Doggett | |
35 * V.DiskID, V.BMapSz, V.MapSct added for smart multi-sector bitmap searching. | |
36 * | |
37 * 1982/09/20 Robert F. Doggett | |
38 * Reserved areas added in static storage. | |
39 | |
40 * 1983/06/07 Robert F. Doggett | |
41 * Added InDriver flag in PD.SMF. | |
42 * | |
43 * 1983/06/13 Robert F. Doggett | |
44 * Added PE.Req tmp save for PE.Lock. | |
45 * | |
46 * 1983/08/08 Robert F. Doggett | |
47 * Reserved PD.SToff for Japanese. | |
48 * | |
49 * 1983/11/19 Robert F. Doggett | |
50 * Added V.ResBit in drive tables. | |
51 * | |
52 * 1983/12/12 Robert F. Doggett | |
53 * Added PE.Prior to save process priority. | |
54 * | |
55 * 1983/12/13 Robert F. Doggett | |
56 * Added BufBusy bit in state flag (PD.SMF). | |
57 * | |
58 * 1984/07/06 Mark G. Hawkins | |
59 * Added Bit Definitions for DD.FMT. | |
60 * | |
61 * 1987/06/23 Kevin K. Darling | |
62 * Updated with Dev Desc Info | |
63 * | |
64 * 2003/06/02 Boisy G. Pitre | |
65 * Updated comments for clarity. | |
1205
383d5981c23f
Updated for anticipation of 256-2048 byte sector support
boisy
parents:
1200
diff
changeset
|
66 * Added TYP.256-TYP.2048 definitions for future expansion. |
1530
a02b18bfc376
New 'Old' fields added from OS-9 Level One V2.00.00 Addendum
boisy
parents:
1377
diff
changeset
|
67 * |
a02b18bfc376
New 'Old' fields added from OS-9 Level One V2.00.00 Addendum
boisy
parents:
1377
diff
changeset
|
68 * 2004/04/14 Boisy G. Pitre |
a02b18bfc376
New 'Old' fields added from OS-9 Level One V2.00.00 Addendum
boisy
parents:
1377
diff
changeset
|
69 * Added new entries to device descriptor as per OS-9 Level One V2.00.00 |
a02b18bfc376
New 'Old' fields added from OS-9 Level One V2.00.00 Addendum
boisy
parents:
1377
diff
changeset
|
70 * addendum. Pointed out by Rodney Hamilton. |
1200 | 71 |
72 nam RBFDefs | |
73 ttl Random Block File Manager Definitions | |
1199 | 74 |
0 | 75 |
1200 | 76 pag |
0 | 77 ******************************* |
78 * RBF Device Descriptor Offsets | |
79 * | |
1199 | 80 * These definitions are for RBF device descriptors. |
81 | |
0 | 82 org M$DTyp |
1199 | 83 rmb 1 Device type (DT.RBF) |
0 | 84 IT.DRV rmb 1 Drive number |
85 IT.STP rmb 1 Step rate | |
1199 | 86 IT.TYP rmb 1 Disk device type information |
0 | 87 IT.DNS rmb 1 Density capability |
88 IT.CYL rmb 2 Number of cylinders | |
89 IT.SID rmb 1 Number of surfaces | |
1199 | 90 IT.VFY rmb 1 Verify disk writes (0 = verify, 1 = don't) |
0 | 91 IT.SCT rmb 2 Default sectors/track |
1199 | 92 IT.T0S rmb 2 Default sectors/track for track 0 sector 0 |
0 | 93 IT.ILV rmb 1 Sector interleave offset |
94 IT.SAS rmb 1 Segment allocation size | |
1530
a02b18bfc376
New 'Old' fields added from OS-9 Level One V2.00.00 Addendum
boisy
parents:
1377
diff
changeset
|
95 * The following fields are from the OS-9 Level One V2.00.00 Addendum |
a02b18bfc376
New 'Old' fields added from OS-9 Level One V2.00.00 Addendum
boisy
parents:
1377
diff
changeset
|
96 IT.TFM rmb 1 DMA Transfer Mode |
a02b18bfc376
New 'Old' fields added from OS-9 Level One V2.00.00 Addendum
boisy
parents:
1377
diff
changeset
|
97 IT.Exten rmb 2 Path Extension (PE) for record locking |
a02b18bfc376
New 'Old' fields added from OS-9 Level One V2.00.00 Addendum
boisy
parents:
1377
diff
changeset
|
98 IT.SToff rmb 1 Sector/Track offsets (for "foreign" disk formats) |
a02b18bfc376
New 'Old' fields added from OS-9 Level One V2.00.00 Addendum
boisy
parents:
1377
diff
changeset
|
99 * The following fields are not copied to the path descriptor |
a02b18bfc376
New 'Old' fields added from OS-9 Level One V2.00.00 Addendum
boisy
parents:
1377
diff
changeset
|
100 IT.WPC rmb 1 Write precomp cyl/4 (HD) |
a02b18bfc376
New 'Old' fields added from OS-9 Level One V2.00.00 Addendum
boisy
parents:
1377
diff
changeset
|
101 IT.OFS rmb 2 Starting cylinder offset (HD) |
a02b18bfc376
New 'Old' fields added from OS-9 Level One V2.00.00 Addendum
boisy
parents:
1377
diff
changeset
|
102 IT.RWC rmb 2 Reduced write current cylinder (HD) |
a02b18bfc376
New 'Old' fields added from OS-9 Level One V2.00.00 Addendum
boisy
parents:
1377
diff
changeset
|
103 |
0 | 104 |
1199 | 105 * IT.TYP/IT.DNS/IT.STP bit definitions |
0 | 106 * |
1205
383d5981c23f
Updated for anticipation of 256-2048 byte sector support
boisy
parents:
1200
diff
changeset
|
107 TYP.256 equ %00000000 256 byte sector device |
383d5981c23f
Updated for anticipation of 256-2048 byte sector support
boisy
parents:
1200
diff
changeset
|
108 TYP.512 equ %00000010 512 byte sector device |
383d5981c23f
Updated for anticipation of 256-2048 byte sector support
boisy
parents:
1200
diff
changeset
|
109 TYP.1024 equ %00000100 1024 byte sector device |
383d5981c23f
Updated for anticipation of 256-2048 byte sector support
boisy
parents:
1200
diff
changeset
|
110 TYP.2048 equ %00000110 2048 byte sector device |
383d5981c23f
Updated for anticipation of 256-2048 byte sector support
boisy
parents:
1200
diff
changeset
|
111 TYP.SSM equ %00000110 Sector size mask |
1199 | 112 TYP.FLP equ %00000000 Floppy disk |
113 TYP.HARD equ %10000000 Hard disk | |
114 | |
115 * The following TYP and DNS bit definitions are applicable | |
116 * only if the TYP.FLP bit is clear. | |
0 | 117 TYP.5 equ %00000000 5" media |
118 TYP.8 equ %00000001 8" media | |
119 TYP.CCF equ %00100000 CoCo format | |
120 TYP.NCCF equ %00000000 Non-CoCo format | |
1377 | 121 TYP.SOF equ %00000000 Standard NitrOS-9 format |
0 | 122 TYP.NSF equ %01000000 Non-standard format |
123 | |
1199 | 124 * Density bit definitions |
0 | 125 DNS.FM equ %00000000 Single-density (FM) |
126 DNS.MFM equ %00000001 Double-density (MFM) | |
127 DNS.STD equ %00000000 Single track density (48 tpi) | |
128 DNS.DTD equ %00000010 Single track density (96 tpi) | |
129 | |
1199 | 130 * Floppy disk step rate definitions |
480 | 131 IFEQ Level-1 |
132 STP.30ms equ 3 30ms step rate | |
133 STP.20ms equ 2 20ms step rate | |
134 STP.12ms equ 1 12ms step rate | |
135 STP.6ms equ 0 6ms step rate | |
136 ELSE | |
0 | 137 STP.30ms equ 0 30ms step rate |
138 STP.20ms equ 1 20ms step rate | |
139 STP.12ms equ 2 12ms step rate | |
140 STP.6ms equ 3 6ms step rate | |
480 | 141 ENDC |
0 | 142 |
1200 | 143 pag |
0 | 144 ************************************* |
145 * Random Block Path Descriptor Format | |
146 * | |
1199 | 147 * A path descriptor is created for every new path that is open |
148 * via the I$Open system call (processed by IOMan). Process | |
149 * descriptors track state information of a path. | |
150 * | |
0 | 151 org PD.FST |
152 PD.SMF rmb 1 State flags | |
153 PD.CP rmb 4 Current logical byte position | |
154 PD.SIZ rmb 4 File size | |
155 PD.SBL rmb 3 Segment beginning lsn | |
156 PD.SBP rmb 3 Segment beginning psn | |
157 PD.SSZ rmb 3 Segment size | |
158 PD.DSK rmb 2 Disk id | |
159 PD.DTB rmb 2 Drive table ptr | |
160 org PD.OPT | |
161 rmb 1 Device type | |
162 PD.DRV rmb 1 Drive number | |
163 PD.STP rmb 1 Step rate | |
164 PD.TYP rmb 1 Disk device type (5" 8" other) | |
165 PD.DNS rmb 1 Density capability | |
166 PD.CYL rmb 2 Number of cylinders | |
167 PD.SID rmb 1 Number of surfaces | |
168 PD.VFY rmb 1 0=verify disk writes | |
169 PD.SCT rmb 2 Default sectors/track | |
170 PD.T0S rmb 2 Default sectors/track tr00,s0 | |
171 PD.ILV rmb 1 Sector interleave offset | |
172 PD.SAS rmb 1 Segment allocation size | |
173 PD.TFM rmb 1 DMA Transfer Mode | |
174 PD.Exten rmb 2 Path Extension (PE) for record locking | |
175 PD.SToff rmb 1 Sector/Track offsets (for "foreign" disk formats) | |
176 PD.ATT rmb 1 File attributes | |
177 PD.FD rmb 3 File descriptor psn | |
178 PD.DFD rmb 3 Directory file descriptor psn | |
179 PD.DCP rmb 4 File directory entry ptr | |
180 PD.DVT rmb 2 User readable dev tbl ptr | |
181 | |
182 * State Flags | |
183 BUFMOD equ $01 Buffer modified | |
184 SINBUF equ $02 Sector in buffer | |
185 FDBUF equ $04 File descriptor in buffer | |
186 *EOFSEC equ $08 End of file sector | |
187 *EOF equ $10 End of file | |
188 InDriver equ $20 Currently in Disk Driver, or queued | |
189 BufBusy equ $40 Buffer is currently busy | |
190 | |
1199 | 191 IFNE Level-1 |
0 | 192 ************************************ |
193 * Random Block Path Extension Format | |
194 * | |
1199 | 195 * RBF paths under Level Two have additional information that |
196 * is referenced by the path extension area. | |
197 * | |
0 | 198 org 0 |
199 PE.PE rmb 1 PE path number | |
1199 | 200 PE.PDptr rmb 2 Back ptr to this PE's Path Descriptor |
0 | 201 PE.NxFil rmb 2 Drive Open-File list ptr |
1199 | 202 PE.Confl rmb 2 Circular File Conflict list |
0 | 203 PE.Lock rmb 1 Path lockout status |
204 PE.LoLck rmb 4 Low Locked Logical addr | |
205 PE.HiLck rmb 4 High Locked Logical addr | |
206 PE.Wait rmb 2 PE ptr to (next) locked-out PE | |
207 PE.TmOut rmb 2 Max ticks to wait for locked segment | |
208 PE.Owner rmb 1 Process ID of owner of locked segment | |
1199 | 209 PE.Req rmb 1 Temp for PE.Lock in GAIN when LockSeg fails |
210 PE.Prior rmb 1 Temp for process priority while in driver | |
211 PE.SigSg rmb 1 Signal code to send | |
212 PE.SigID rmb 1 Process ID to send the signal to | |
213 rmb 32-. Reserved | |
214 PE.FilNm rmb 32 Temp for filename during directory search | |
0 | 215 |
216 * PE.Lock status codes | |
1199 | 217 Unlocked equ 0 No portion of file is locked |
218 RcdLock equ 1 Record from LoLck to HiLck locked | |
219 FileLock equ 2 Entire file locked | |
0 | 220 EofLock equ 4 End of file is locked |
1199 | 221 ENDC |
222 | |
0 | 223 |
1200 | 224 pag |
0 | 225 *********************** |
226 * LSN0 Disk Data Format | |
227 * | |
1199 | 228 * Logical Sector Number 0 is the first sector on an RBF formatted device |
229 * and contains information about the device's size and format. | |
230 * | |
0 | 231 org 0 |
232 DD.TOT rmb 3 Total number of sectors | |
233 DD.TKS rmb 1 Track size in sectors | |
234 DD.MAP rmb 2 Number of bytes in allocation bit map | |
235 DD.BIT rmb 2 Number of sectors/bit | |
236 DD.DIR rmb 3 Address of root directory fd | |
237 DD.OWN rmb 2 Owner | |
238 DD.ATT rmb 1 Attributes | |
1199 | 239 DD.DSK rmb 2 Disk ID |
0 | 240 DD.FMT rmb 1 Disk format; density/sides |
241 DD.SPT rmb 2 Sectors/track | |
242 DD.RES rmb 2 Reserved for future use | |
243 DD.SIZ equ . Device descriptor minimum size | |
244 DD.BT rmb 3 System bootstrap sector | |
245 DD.BSZ rmb 2 Size of system bootstrap | |
246 DD.DAT rmb 5 Creation date | |
247 DD.NAM rmb 32 Volume name | |
1199 | 248 DD.OPT rmb 32 Option area |
0 | 249 |
1199 | 250 * DD.FMT Bit Definitions - valid only if device is a floppy disk |
0 | 251 FMT.SIDE equ %00000001 Single Side=0, Double Side=1 |
252 FMT.DNS equ %00000010 Single DNS=0, Double DNS=1 | |
253 FMT.TDNS equ %00000100 48tpi=0, 96tpi=1 | |
254 FMT.T0DN equ %00100000 Track 0 DNS, see FMT.DNS | |
255 | |
1199 | 256 |
1200 | 257 pag |
0 | 258 ************************ |
259 * File Descriptor Format | |
260 * | |
1199 | 261 * The file descriptor is a sector that is present for every file |
262 * on an RBF device. It contains attributes, modification dates, | |
263 * and segment information on a file. | |
264 * | |
0 | 265 org 0 |
266 FD.ATT rmb 1 Attributes | |
267 FD.OWN rmb 2 Owner | |
268 FD.DAT rmb 5 Date last modified | |
269 FD.LNK rmb 1 Link count | |
270 FD.SIZ rmb 4 File size | |
271 FD.Creat rmb 3 Segment list extension | |
272 FD.SEG equ . Beginning of segment list | |
273 * Segment List Entry Format | |
274 org 0 | |
275 FDSL.A rmb 3 Segment beginning physical sector number | |
276 FDSL.B rmb 2 Segment size | |
277 FDSL.S equ . Segment list entry size | |
278 FD.LS1 equ FD.SEG+((256-FD.SEG)/FDSL.S-1)*FDSL.S | |
279 FD.LS2 equ (256/FDSL.S-1)*FDSL.S | |
280 MINSEC set 16 | |
281 | |
1199 | 282 |
1200 | 283 pag |
0 | 284 ************************ |
285 * Directory Entry Format | |
286 * | |
1199 | 287 * Directory entries are part of a directory and define the name |
288 * of the file, as well as a pointer to its file descriptor. | |
289 * | |
0 | 290 org 0 |
291 DIR.NM rmb 29 File name | |
292 DIR.FD rmb 3 File descriptor physical sector number | |
293 DIR.SZ equ . Directory record size | |
294 | |
1199 | 295 |
1200 | 296 pag |
297 ******************** | |
298 * RBF Static Storage | |
0 | 299 * |
300 * Overall Disk Static Storage | |
301 * | |
1199 | 302 * Note: This does not reserve any memory for drive tables. Each |
303 * driver is responsible for reserving sufficient memory for | |
304 * the appropriate number of tables. | |
0 | 305 * |
306 org V.USER Reserve required ($06) | |
307 V.NDRV rmb 1 Number of drives ($07) | |
308 rmb 8 reserved ($08) | |
309 DRVBEG equ . Beginning of drive tables ($10) | |
1199 | 310 |
311 | |
1200 | 312 pag |
1199 | 313 **************** |
0 | 314 * Global Storage For Disk Drive Tables |
1199 | 315 * |
316 * Each table contains the first 'DD.SIZ' bytes from | |
317 * LSN 0, and the current track, stepping rate, | |
318 * bitmap use flag, and disk type. | |
0 | 319 * |
320 org 0 | |
1199 | 321 rmb DD.SIZ Device descriptor, LSN 0 |
0 | 322 V.TRAK rmb 2 Current track |
323 V.BMB rmb 1 Bit-map use flag | |
1199 | 324 V.FileHd rmb 2 Open file list for this drive |
0 | 325 V.DiskID rmb 2 Disk ID |
326 V.BMapSz rmb 1 Bitmap Size | |
1199 | 327 V.MapSct rmb 1 Lowest reasonable bitmap sector |
328 V.ResBit rmb 1 Reserved bitmap sector (for compaction) | |
0 | 329 V.ScTkOf rmb 1 Sector/Track byte (Combined from descriptor) |
330 V.ScOfst rmb 1 Sector offset split from byte above | |
331 V.TkOfst rmb 1 Track offset split from byte above | |
1199 | 332 rmb 4 Reserved |
0 | 333 DRVMEM equ . |
334 | |
1199 | 335 ENDC |
373
c07686556109
Added ifeq statements at top to allow for multiple use's of same def
boisy
parents:
71
diff
changeset
|
336 |