Mercurial > hg > Members > kono > nitros9-code
annotate defs/rbfdefs @ 1645:cc5f6fa1da23
Fixed bug in copy where -v was on by default (should be off) and writemsb/writelsb
wasn't being cleared when copying multiple files.
author | boisy |
---|---|
date | Thu, 15 Jul 2004 15:39:38 +0000 |
parents | d6f639eb9a0f |
children | b17a3a132bbb |
rev | line source |
---|---|
1541 | 1 IFNE RBFDEFS-1 |
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 |
1609 | 105 * IT.TYP Definitions |
0 | 106 * |
1626 | 107 TYP.HARD equ %10000000 Hard disk |
1199 | 108 TYP.FLP equ %00000000 Floppy disk |
1626 | 109 TYP.NSF equ %01000000 Non-standard format |
110 TYP.SOF equ %00000000 Standard NitrOS-9 format | |
1199 | 111 |
1609 | 112 * IT.TYP bit definitions if bit 7 of IT.TYP is set (hard disk) |
1626 | 113 TYPH.256 equ %00000000 256 byte sector media |
114 TYPH.512 equ %00000001 512 byte sector media | |
115 TYPH.1024 equ %00000010 1024 byte sector media | |
116 TYPH.2048 equ %00000011 2048 byte sector media | |
117 TYPH.SSM equ %00000011 Sector size mask | |
1637 | 118 TYPH.DRSV equ %00001100 Driver-reserved bits |
119 TYPH.DSQ equ %00010000 Drive size query flag | |
1609 | 120 |
121 * IT.TYP bit definitions if bit 7 of IT.TYP is clear (floppy disk) | |
0 | 122 TYP.5 equ %00000000 5" media |
123 TYP.8 equ %00000001 8" media | |
1609 | 124 TYP.256 equ %00000000 256 byte sector media |
125 TYP.512 equ %00000100 512 byte sector media | |
0 | 126 TYP.CCF equ %00100000 CoCo format |
127 TYP.NCCF equ %00000000 Non-CoCo format | |
128 | |
1609 | 129 * IT.DNS Definitions |
130 * | |
1626 | 131 |
132 * If bit 7 of IT.TYP is set, IT.DNS is driver-dependent | |
133 | |
1609 | 134 * IT.DNS bit definitions if bit 7 of IT.TYP is clear (floppy disk) |
0 | 135 DNS.FM equ %00000000 Single-density (FM) |
136 DNS.MFM equ %00000001 Double-density (MFM) | |
137 DNS.STD equ %00000000 Single track density (48 tpi) | |
1618 | 138 DNS.DTD equ %00000010 Double track density (96/135 tpi) |
0 | 139 |
1199 | 140 * Floppy disk step rate definitions |
0 | 141 STP.30ms equ 0 30ms step rate |
142 STP.20ms equ 1 20ms step rate | |
143 STP.12ms equ 2 12ms step rate | |
144 STP.6ms equ 3 6ms step rate | |
145 | |
1200 | 146 pag |
0 | 147 ************************************* |
148 * Random Block Path Descriptor Format | |
149 * | |
1199 | 150 * A path descriptor is created for every new path that is open |
151 * via the I$Open system call (processed by IOMan). Process | |
152 * descriptors track state information of a path. | |
153 * | |
0 | 154 org PD.FST |
155 PD.SMF rmb 1 State flags | |
156 PD.CP rmb 4 Current logical byte position | |
157 PD.SIZ rmb 4 File size | |
158 PD.SBL rmb 3 Segment beginning lsn | |
159 PD.SBP rmb 3 Segment beginning psn | |
160 PD.SSZ rmb 3 Segment size | |
161 PD.DSK rmb 2 Disk id | |
162 PD.DTB rmb 2 Drive table ptr | |
163 org PD.OPT | |
164 rmb 1 Device type | |
165 PD.DRV rmb 1 Drive number | |
166 PD.STP rmb 1 Step rate | |
167 PD.TYP rmb 1 Disk device type (5" 8" other) | |
168 PD.DNS rmb 1 Density capability | |
169 PD.CYL rmb 2 Number of cylinders | |
170 PD.SID rmb 1 Number of surfaces | |
171 PD.VFY rmb 1 0=verify disk writes | |
172 PD.SCT rmb 2 Default sectors/track | |
173 PD.T0S rmb 2 Default sectors/track tr00,s0 | |
174 PD.ILV rmb 1 Sector interleave offset | |
175 PD.SAS rmb 1 Segment allocation size | |
176 PD.TFM rmb 1 DMA Transfer Mode | |
177 PD.Exten rmb 2 Path Extension (PE) for record locking | |
178 PD.SToff rmb 1 Sector/Track offsets (for "foreign" disk formats) | |
179 PD.ATT rmb 1 File attributes | |
180 PD.FD rmb 3 File descriptor psn | |
181 PD.DFD rmb 3 Directory file descriptor psn | |
182 PD.DCP rmb 4 File directory entry ptr | |
183 PD.DVT rmb 2 User readable dev tbl ptr | |
184 | |
185 * State Flags | |
186 BUFMOD equ $01 Buffer modified | |
187 SINBUF equ $02 Sector in buffer | |
188 FDBUF equ $04 File descriptor in buffer | |
189 *EOFSEC equ $08 End of file sector | |
190 *EOF equ $10 End of file | |
191 InDriver equ $20 Currently in Disk Driver, or queued | |
192 BufBusy equ $40 Buffer is currently busy | |
193 | |
1199 | 194 IFNE Level-1 |
0 | 195 ************************************ |
196 * Random Block Path Extension Format | |
197 * | |
1199 | 198 * RBF paths under Level Two have additional information that |
199 * is referenced by the path extension area. | |
200 * | |
0 | 201 org 0 |
202 PE.PE rmb 1 PE path number | |
1199 | 203 PE.PDptr rmb 2 Back ptr to this PE's Path Descriptor |
0 | 204 PE.NxFil rmb 2 Drive Open-File list ptr |
1199 | 205 PE.Confl rmb 2 Circular File Conflict list |
0 | 206 PE.Lock rmb 1 Path lockout status |
207 PE.LoLck rmb 4 Low Locked Logical addr | |
208 PE.HiLck rmb 4 High Locked Logical addr | |
209 PE.Wait rmb 2 PE ptr to (next) locked-out PE | |
210 PE.TmOut rmb 2 Max ticks to wait for locked segment | |
211 PE.Owner rmb 1 Process ID of owner of locked segment | |
1199 | 212 PE.Req rmb 1 Temp for PE.Lock in GAIN when LockSeg fails |
213 PE.Prior rmb 1 Temp for process priority while in driver | |
214 PE.SigSg rmb 1 Signal code to send | |
215 PE.SigID rmb 1 Process ID to send the signal to | |
216 rmb 32-. Reserved | |
217 PE.FilNm rmb 32 Temp for filename during directory search | |
0 | 218 |
219 * PE.Lock status codes | |
1199 | 220 Unlocked equ 0 No portion of file is locked |
221 RcdLock equ 1 Record from LoLck to HiLck locked | |
222 FileLock equ 2 Entire file locked | |
0 | 223 EofLock equ 4 End of file is locked |
1199 | 224 ENDC |
225 | |
0 | 226 |
1200 | 227 pag |
0 | 228 *********************** |
229 * LSN0 Disk Data Format | |
230 * | |
1199 | 231 * Logical Sector Number 0 is the first sector on an RBF formatted device |
232 * and contains information about the device's size and format. | |
233 * | |
0 | 234 org 0 |
235 DD.TOT rmb 3 Total number of sectors | |
236 DD.TKS rmb 1 Track size in sectors | |
237 DD.MAP rmb 2 Number of bytes in allocation bit map | |
238 DD.BIT rmb 2 Number of sectors/bit | |
239 DD.DIR rmb 3 Address of root directory fd | |
240 DD.OWN rmb 2 Owner | |
241 DD.ATT rmb 1 Attributes | |
1199 | 242 DD.DSK rmb 2 Disk ID |
0 | 243 DD.FMT rmb 1 Disk format; density/sides |
244 DD.SPT rmb 2 Sectors/track | |
245 DD.RES rmb 2 Reserved for future use | |
246 DD.SIZ equ . Device descriptor minimum size | |
247 DD.BT rmb 3 System bootstrap sector | |
248 DD.BSZ rmb 2 Size of system bootstrap | |
249 DD.DAT rmb 5 Creation date | |
250 DD.NAM rmb 32 Volume name | |
1199 | 251 DD.OPT rmb 32 Option area |
0 | 252 |
1199 | 253 * DD.FMT Bit Definitions - valid only if device is a floppy disk |
1618 | 254 FMT.SIDE equ %00000001 Single Sided=0, Double Sided=1 |
255 FMT.DNS equ %00000010 Single Density=0, Double Density=1 | |
256 FMT.TDNS equ %00000100 Track Density: 48 TPI=0, 96/135 TPI=1 | |
257 FMT.T0DN equ %00100000 Track 0 Density, see FMT.DNS | |
0 | 258 |
1199 | 259 |
1200 | 260 pag |
0 | 261 ************************ |
262 * File Descriptor Format | |
263 * | |
1199 | 264 * The file descriptor is a sector that is present for every file |
265 * on an RBF device. It contains attributes, modification dates, | |
266 * and segment information on a file. | |
267 * | |
0 | 268 org 0 |
269 FD.ATT rmb 1 Attributes | |
270 FD.OWN rmb 2 Owner | |
271 FD.DAT rmb 5 Date last modified | |
272 FD.LNK rmb 1 Link count | |
273 FD.SIZ rmb 4 File size | |
274 FD.Creat rmb 3 Segment list extension | |
275 FD.SEG equ . Beginning of segment list | |
276 * Segment List Entry Format | |
277 org 0 | |
278 FDSL.A rmb 3 Segment beginning physical sector number | |
279 FDSL.B rmb 2 Segment size | |
280 FDSL.S equ . Segment list entry size | |
281 FD.LS1 equ FD.SEG+((256-FD.SEG)/FDSL.S-1)*FDSL.S | |
282 FD.LS2 equ (256/FDSL.S-1)*FDSL.S | |
283 MINSEC set 16 | |
284 | |
1199 | 285 |
1200 | 286 pag |
0 | 287 ************************ |
288 * Directory Entry Format | |
289 * | |
1199 | 290 * Directory entries are part of a directory and define the name |
291 * of the file, as well as a pointer to its file descriptor. | |
292 * | |
0 | 293 org 0 |
294 DIR.NM rmb 29 File name | |
295 DIR.FD rmb 3 File descriptor physical sector number | |
296 DIR.SZ equ . Directory record size | |
297 | |
1199 | 298 |
1200 | 299 pag |
300 ******************** | |
301 * RBF Static Storage | |
0 | 302 * |
303 * Overall Disk Static Storage | |
304 * | |
1199 | 305 * Note: This does not reserve any memory for drive tables. Each |
306 * driver is responsible for reserving sufficient memory for | |
307 * the appropriate number of tables. | |
0 | 308 * |
309 org V.USER Reserve required ($06) | |
310 V.NDRV rmb 1 Number of drives ($07) | |
311 rmb 8 reserved ($08) | |
312 DRVBEG equ . Beginning of drive tables ($10) | |
1199 | 313 |
314 | |
1200 | 315 pag |
1199 | 316 **************** |
0 | 317 * Global Storage For Disk Drive Tables |
1199 | 318 * |
319 * Each table contains the first 'DD.SIZ' bytes from | |
320 * LSN 0, and the current track, stepping rate, | |
321 * bitmap use flag, and disk type. | |
0 | 322 * |
323 org 0 | |
1199 | 324 rmb DD.SIZ Device descriptor, LSN 0 |
0 | 325 V.TRAK rmb 2 Current track |
326 V.BMB rmb 1 Bit-map use flag | |
1199 | 327 V.FileHd rmb 2 Open file list for this drive |
0 | 328 V.DiskID rmb 2 Disk ID |
329 V.BMapSz rmb 1 Bitmap Size | |
1199 | 330 V.MapSct rmb 1 Lowest reasonable bitmap sector |
331 V.ResBit rmb 1 Reserved bitmap sector (for compaction) | |
0 | 332 V.ScTkOf rmb 1 Sector/Track byte (Combined from descriptor) |
333 V.ScOfst rmb 1 Sector offset split from byte above | |
334 V.TkOfst rmb 1 Track offset split from byte above | |
1199 | 335 rmb 4 Reserved |
0 | 336 DRVMEM equ . |
337 | |
1199 | 338 ENDC |
373
c07686556109
Added ifeq statements at top to allow for multiple use's of same def
boisy
parents:
71
diff
changeset
|
339 |