-
Notifications
You must be signed in to change notification settings - Fork 0
/
IDE.PAS
executable file
·594 lines (500 loc) · 20.3 KB
/
IDE.PAS
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
{$X+,G+,D-,L-,S-,R-}
{*$DEFINE DEBUG}
unit IDE;
interface
uses Service;
const
ON = True;
OFF = False;
Enabled = True;
Disabled = False;
mLBA = 0;
mCHS = 1;
dMaster = 0;
dSlave = 1;
chPrimary = 0;
chSecondary = 1;
chTertiary = 2;
chQuaternary = 3;
Channel : Array [0..3] of String[15] = ('Primary','Secondary','Tertiary','Quaternary');
ChannelN : Array [0..3] of Word = ($1F0, $170, $1E8, $168);
Disk : Array [0..1] of String[15] = ('Master','Slave');
DriveMode : Array [0..1] of String[6] = ('LBA','CHS');
hdcDataReg = 0;
hdcErrorReg = 1;
hdcFeaturesReg = 1;
hdcSectorsCountReg = 2;
mwDMA0 = $20;
mwDMA1 = $21;
mwDMA2 = $22;
UltraDMA0 = $40;
UltraDMA1 = $41;
UltraDMA2 = $42;
feLBA = $01;
feDMA = $02;
feBlockMode = $04;
fePowerManagement = $08;
feSMART = $10;
IODelay = 10;
hdcBSY = $80;
hdcDRDY = $40;
hdcDRQ = $08;
hdcERR = $01;
hdcABRT = $40;
sfCritical = $01;
sfPerformance = $04;
sfErrorRate = $08;
sfEventCount = $10;
sfSelfPreserve = $20;
type
PIDEInfo = ^TIDEInfo; {Comments between *STARS* describes current
field status in ATA/ATAPI-5 working draft rev. C}
TIDEInfo = Record
Config : Word; {0: General configuration bit-significant information}
Cyls : Word; {1: Number of logical cylinders}
Specific : Word; {2: Vendor-specific configuration}
Heads : Word; {3: Number of logical heads}
BPT : Word; {4: *RETIRED* Number of unformatted bytes per track}
BPS : Word; {5: *RETIRED* Number of unformatted bytes per sector}
SPT : Word; {6: Number of logical sectors per logical track}
Vendor : Array [0..2] of Word; {7-9: Vendor specific}
Serial : Array [1..20] of Char; {10-19: Serial number. 20 ASCii characters, 0000H=not specified}
BufType : Word; {20: *RETIRED* Buffer type}
BufSize : Word; {21: *RETIRED* Buffer size in 512 byte increments. 0000H=not specified}
ECC : Word; {22: *OBSOLETE* Number of ECC bytes avail on read/write long cmds. 0000H=not spec.}
Revision : Array [1..8] of Char; {23-26: Firmware revision. 8 ASCii characters. 0000H=not specified}
Model : Array [1..40] of Char; {27-46: Model number. 40 ASCii characters. 0000H=not specified}
Features : Word; {47: Features information}
DwordIO : Word; {48: *RESERVED* 0001H=Can perform doubleword I/O}
Capabil : Word; {49: Capabilities}
Capabil2 : Word; {50: Capabilities}
PIO : Word; {51: PIO data transfer information}
DMA : Word; {52: *RETIRED* DMA data transfer information}
ExtValid : Word; {53: Extended data validation information}
CurrCyls : Word; {54: Number of current logical cylinders}
CurrHeads : Word; {55: Number of current logical heads}
CurrSect : Word; {56: Number of current logical sectors per track}
Capacity : LongInt; {57-58: Current capacity in sectors}
BlockMode : Word; {59: Multiple sectors transfer information}
LBACapacity : LongInt; {60-61: Total number of user addressable sectors. LBA mode only}
SingleDMA : Word; {62: *RETIRED* Single word DMA transfer information}
MultiDMA : Word; {63: Multiword DMA transfer information}
AdvancedPIO : Word; {64: Advanced PIO Transfer information}
MinDMACycle : Word; {65: Minimum Multiword DMA Transfer Cycle Time Per Word in nsecs}
RecDMACycle : Word; {66: Manufacturer Recommended Multiword DMA Transfer Cycle Time}
MinPIOCycle : Word; {67: Minimum PIO Transfer Cycle Time Without Flow Control in nsecs}
MinIORDYPIOCycle : Word; {68: Minimum PIO Transfer Cycle Time With IORDY Flow Control in nsecs}
ReservedOQ : Array [0..1] of Word; {69-70: Reserved for overlap & queuing}
ReservedIPD : Array [0..3] of Word; {71-74: Reserved for IDENTIFY PACKET DEVICE}
QueueDepth : Word; {75: Queue depth}
Reserved : Array [0..3] of Word; {76-79: Reserved}
MajorVer : Word; {80: Major version of supported standard}
MinorVer : Word; {81: Minor version of supported standard}
CommandSupp : Word; {82: Command set supported. If words 82 and 83 = 0000 or ffffh -> field not supported}
CommandSupp2 : Word; {83: Command set supported}
CommandSupp3 : Word; {84: Command set supported. If 82,83 and 84 = 0000 or ffffh -> field not supported}
CommandEn : Word; {85: Command set/feature enabled. If 85,86 and 87 = 0000 or ffffh -> not supported}
CommandEn2 : Word; {86: Command set/feature enabled. If 85,86 and 87 = 0000 or ffffh -> not supported}
CommandDef : Word; {87: Command set/feature default. If 85,86 and 87 = 0000 or ffffh -> not supported}
UltraDMA : Word; {88: UltraDMA modes supported/selected}
EraseTime : Word; {89: Time required for security erase unit completion}
EnhEraseTime : Word; {90: Time required for Enhanced security erase unit completion}
APMValue : Word; {91: Current advanced power management value}
MasterPass : Word; {92: Master password revision code}
ResetResult : Word; {93: Hardware reset result}
Reserved2 : Array [94..126] of Word; {94-126: Reserved}
Removable : Word; {127: Removable media status notification set support}
Security : Word; {128: Security status}
Vendor2 : Array [129..159] of Word; {129-159: Vendor specific}
Reserved3 : Array [160..254] of Word; {160-254: Reserved}
Integrity : Word; {255: Entegrity word - checksum & signature}
end;
Sector = Array [0..511] of Byte;
PByte = ^Byte;
PIDEDrive = ^TIDEDrive;
TIDEDrive = Object
BasePort : Word;
DiskNo : Byte;
UnitNo : Byte;
DiskMode : Word;
IDEInfo : tIDEInfo;
Features : Word;
InternalConfiguration : Pointer;
constructor Init(Port : Word; DrvNo : byte; Mode : byte);
function GetModel : String; virtual;
function GetType : String; virtual;
function GetIDEInfo : Boolean; virtual;
function GetIDEDefaultSize : LongInt; virtual;
function GetIDECurrentSize : LongInt; virtual;
procedure DetectFeatures; virtual;
function IsLBA : Boolean; virtual;
function IsDMA : Boolean; virtual;
function IsBlockMode : Boolean; virtual;
function IsPowerManagement : Boolean; virtual;
function SetFeatures(Feature, Value: Byte) : Byte; virtual;
function SetReadAhead(State : Boolean) : Boolean; virtual;
function SetWriteCache(State : Boolean) : Boolean; virtual;
function SetRetries(State : Boolean) : Boolean; virtual;
function SetECC(State : Boolean) : Boolean; virtual;
function SetDefectsReassignment(State : Boolean) : Boolean;
function SetTransferMode(Mode : Byte) : Boolean; virtual;
function SetMultipleMode(BlockSize : Byte) : Byte; virtual;
function GetPowerMode : Integer; virtual;
function GetBufferSize : Word; virtual;
function InSector(var Data): Boolean; virtual;
function OutSector(var Data): Boolean; virtual;
function ReadInternalConfiguration(var Data): Boolean; virtual;
function SetInternalConfiguration(var Data; Save : Boolean): Boolean;
end;
implementation
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
constructor TIDEDrive.Init;
begin
BasePort := Port; {170h/1F0h}
DiskNo := DrvNo; {Master/Slave}
UnitNo := $A0 + (DiskNo SHL 4);
GetIDEInfo;
end;
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
function TIDEDrive.GetIDEInfo;
var
Ticks : LongInt;
InfoArray : Array [0..255] of Word absolute IDEInfo;
i : Word;
F : File;
begin
GetIDEInfo := False;
FillChar(InfoArray, SizeOf(InfoArray), 0);
{Port[$3F6] := 2;} {Disable interrupt in control reg.}
Port[BasePort+6] := $A0 + (DiskNo SHL 4);
Ticks := BIOSTimer;
While (Port[BasePort+7] and $80 <> 0)and(BIOSTimer - Ticks <= 3) do ;
If Port[BasePort+7] and $80 <> 0 Then Exit;
Port[BasePort+6] := $A0 + (DiskNo SHL 4);
Port[BasePort+7] := $EC; {Identify drive command}
Ticks := BIOSTimer;
While(Port[BasePort+7] <> $58) and (BIOSTimer - Ticks <= 3) do ;
If Port[BasePort+7] <> $58 Then Exit;
For I := 0 to 255 do InfoArray[I] := PortW[BasePort];
for i := 9 to 19 do InfoArray[I] := Swap(InfoArray[I]); {Correct Serial}
for i := 23 to 46 do InfoArray[I] := Swap(InfoArray[I]); {Model & Frirmware}
GetIDEInfo := True;
end;
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
function TIDEDrive.GetType : String;
function GetPortNumber(PortAddr : Word) : Byte;
begin
Case PortAddr of
$1F0 : GetPortNumber := 0;
$170 : GetPortNumber := 1;
$1E8 : GetPortNumber := 2;
$168 : GetPortNumber := 3;
end;
end;
begin
If BasePort = 0 Then GetType := 'Non-IDE Drive'
Else GetType := 'IDE '+Channel[GetPortNumber(BasePort)]+'/'+Disk[DiskNo];
end;
function TIDEDrive.GetModel : String;
begin
If IDEInfo.Model <> '' Then GetModel := RTrim(IDEInfo.Model)
Else GetModel := 'Unknown';
end;
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
procedure TIDEDrive.DetectFeatures;
begin
Features := 0;
If (IDEInfo.Capabil and $0100) <> 0 Then Features := Features or feDMA;
If (IDEInfo.Capabil and $0200) <> 0 Then Features := Features or feLBA;
If (IDEInfo.BlockMode and $0100) <> 0 Then Features := Features or feBlockMode;
If GetPowerMode <> -1 Then Features := Features or fePowerManagement;
end;
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
function TIDEDrive.IsLBA : Boolean;
begin
IsLBA := (Features and feLBA) <> 0;
end;
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
function TIDEDrive.IsDMA : Boolean;
begin
IsDMA := (Features and feDMA) <> 0;
end;
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
function TIDEDrive.IsBlockMode : Boolean;
begin
IsBlockMode := (Features and feBlockMode) <> 0;
end;
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
function TIDEDrive.IsPowerManagement : Boolean;
begin
IsPowerManagement := (Features and fePowerManagement) <> 0;
end;
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
function TIDEDrive.GetIDEDefaultSize : LongInt;
{Size in MBytes}
begin
GetIDEDefaultSize := LongInt(IDEInfo.Heads)*LongInt(IDEInfo.SPT)*LongInt(IDEInfo.Cyls) div 2048;
end;
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
function TIDEDrive.GetIDECurrentSize : LongInt;
{Size in MBytes}
begin
GetIDECurrentSize := LongInt(IDEInfo.CurrHeads)*LongInt(IDEInfo.CurrSect)*LongInt(IDEInfo.CurrCyls) div 2048;
end;
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
function TIDEDrive.SetFeatures(Feature, Value: Byte) : Byte; assembler;
{
9.22 Set features
This command is used by the host to establish the following parameters which
affect the execution of certain drive features as shown in table 12.
Table 12 - Set feature register definitions
+=====-=============================================================+
| 01h | Enable 8-bit data transfers (see 6.3.5) |
| 02h | Enable write cache * |
| 03h | Set transfer mode based on value in sector count register |
| 33h | Disable retry * |
| 44h | Vendor unique length of ECC on read long/write long commands|
| 54h | Set cache segments to sector count register value * |
| 55h | Disable read look-ahead feature |
| 66h | Disable reverting to power on defaults (see 9.22) |
| 77h | Disable ECC * |
| 81h | Disable 8-bit data transfers (see 6.3.5) |
| 82h | Disable write cache * |
| 88h | Enable ECC * |
| 99h | Enable retries * |
| AAh | Enable read look-ahead feature |
| ABh | Set maximum prefetch using sector count register value * |
| BBh | 4 bytes of ECC apply on read long/write long commands |
| CCh | Enable reverting to power on defaults (see 9.22) |
|-----+-------------------------------------------------------------|
| | *These commands are vendor-specified |
+===================================================================+
See 10.3 for protocol. If the value in the register is not supported or is
invalid, the drive posts an Aborted Command error.
At power on, or after a hardware reset, the default mode is the same as that
represented by values greater than 80h. A setting of 66h allows settings of
greater than 80h which may have been modified since power on to remain at the
same setting after a software reset.
A host can choose the transfer mechanism by Set Transfer Mode and specifying
a value in the Sector Count Register. The upper 5 bits define the type of
transfer and the low order 3 bits encode the mode value.
Block transfer (default) 00000 000
Single word DMA mode x 00010 0xx
Multiword DMA mode 0 00100 000
See vendor specification for the default mode of the commands which are
vendor-specified.
| 1 | Set features | O | EFh | y | | | | D |
}
asm
les di,Self
mov dx,es:[di].BasePort
add dx,6 {1x6}
mov al,es:[di].DiskNo
shl al,4
or al,0A0h
out dx,al
sub dx,5 {1x1}
mov al,Feature
out dx,al
mov al,Value
inc dx {1x2}
out dx,al
add dx,5 {1x7}
mov al,0EFh
out dx,al
mov cx,0F000h
@1:
in al,dx
test al,80h
jz @2
loop @1
@2:
sub dx,6 {1x1}
in al,dx
end;
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
function TIDEDrive.SetReadAhead(State : Boolean) : Boolean;
begin
If State = ON
Then SetReadAhead := SetFeatures($AA,0) = 0
Else SetReadAhead := SetFeatures($55,0) = 0;
end;
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
function TIDEDrive.SetWriteCache(State : Boolean) : Boolean;
begin
If State = ON
Then SetWriteCache := SetFeatures($02,0) = 0
Else SetWriteCache := SetFeatures($82,0) = 0;
end;
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
function TIDEDrive.SetRetries(State : Boolean) : Boolean;
begin
If State = ON
Then SetRetries := SetFeatures($99,0) = 0
Else SetRetries := SetFeatures($33,0) = 0;
end;
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
function TIDEDrive.SetECC(State : Boolean) : Boolean;
begin
If State = ON
Then SetECC := SetFeatures($88,0) = 0
Else SetECC := SetFeatures($77,0) = 0;
end;
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
function TIDEDrive.SetDefectsReassignment(State : Boolean) : Boolean;
begin
If State = ON
Then SetDefectsReassignment := SetFeatures($04,0) = 0
Else SetDefectsReassignment := SetFeatures($84,0) = 0;
end;
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
function TIDEDrive.SetTransferMode(Mode : Byte) : Boolean;
begin
SetTransferMode := SetFeatures($03,Mode) = 0;
end;
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
function TIDEDrive.SetMultipleMode(BlockSize : Byte) : Byte; assembler;
asm
les di,Self
mov dx,es:[di].BasePort {1x0}
add dx,6 {1x6}
mov al,es:[di].DiskNo
shl al,4
or al,0A0h
out dx,al
sub dx,4 {1x2}
mov al,BlockSize
out dx,al
add dx,5 {1x7}
mov al,0C6h
out dx,al
mov cx,1000
@1:
in al,dx
test al,80h
jz @2
loop @1
@2:
sub dx,6 {1x1}
in al,dx
end;
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
function TIDEDrive.GetPowerMode : Integer; assembler;
asm
les di,Self
mov dx,es:[di].BasePort
add dx,6 {1x6}
mov al,es:[di].DiskNo
shl al,4
or al,0A0h
out dx,al
inc dx {1x7}
mov al,098h {or E5}
out dx,al
mov cx,0F000h
@1:
in al,dx
test al,80h
jz @2
loop @1
@2:
sub dx,6 {1x1}
in al,dx
test al,4
jnz @NotSupported
inc dx {1x2}
in al,dx
xor ah,ah
cmp al,00h
je @Exit
cmp al,80h
je @Exit
cmp al,0FFh
je @Exit
@NotSupported:
mov ax,-1
@Exit:
end;
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
function TIDEDrive.GetBufferSize : Word;
{Buffer size in KB}
begin
GetBufferSize := IDEInfo.BufSize shr 1;
end;
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
function TIDEDrive.InSector(var Data): Boolean;
var
Start : LongInt;
i : Word;
D : Array [0..255] of Word absolute Data;
begin
InSector := False;
Start := BIOSTimer;
While Port[BasePort+7] and (hdcBSY or hdcDRQ) <> hdcDRQ do
if BIOSTimer-Start > IODelay Then Exit;
for i := 0 to 255 do D[i] := PortW[BasePort];
InSector := True;
end;
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
function TIDEDrive.OutSector(var Data): Boolean;
var
Start: LongInt;
i : Word;
D : Array [0..255] of Word absolute Data;
begin
OutSector := False;
If (Port[BasePort+7] and hdcERR) <> 0 Then Exit;
Start := BIOSTimer;
While (Port[BasePort+7] and hdcBSY) <> 0 do
if BIOSTimer-Start > IODelay Then Exit;
for i := 0 to 255 do PortW[BasePort] := D[i];
If (Port[BasePort+7] and hdcERR) <> 0 Then Exit;
OutSector := True;
end;
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
function TIDEDrive.ReadInternalConfiguration(var Data): Boolean;
var
Start: LongInt;
begin
ReadInternalConfiguration := False;
Start := BIOSTimer;
while Port[BasePort+7] and hdcBSY <> 0 do
if BIOSTimer-Start > IODelay then Exit;
{Port[$3F6] := nIEN;}
Start := BIOSTimer;
while Port[BasePort+7] and hdcDRDY = 0 do
if BIOSTimer-Start > IODelay then Exit;
Port[BasePort+2] := $01; {Read configuration subcode}
Port[BasePort+3] := $FF; {Access password}
Port[BasePort+4] := $FF;
Port[BasePort+5] := $3F;
Port[BasePort+6] := UnitNo;
Port[BasePort+7] := $F0; {Command code}
ReadInternalConfiguration := InSector(Sector(Data))
end;
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
function TIDEDrive.SetInternalConfiguration(var Data; Save : Boolean): Boolean;
var
Start: LongInt;
begin
SetInternalConfiguration := False;
Start := BIOSTimer;
while Port[BasePort+7] and hdcBSY <> 0 do
if BIOSTimer-Start > IODelay then Exit;
{Port[$3F6] := nIEN;}
Start := BIOSTimer;
while Port[BasePort+7] and hdcDRDY = 0 do
if BIOSTimer-Start > IODelay then Exit;
{Set/Save configuration subcode. Set = FEh, Set & save to disk = FFh}
If Save
Then Port[BasePort+2] := $FF
Else Port[BasePort+2] := $FE;
Port[BasePort+3] := $FF; {Access password}
Port[BasePort+4] := $FF;
Port[BasePort+5] := $3F;
Port[BasePort+6] := UnitNo;
Port[BasePort+7] := $F0; {Command code}
SetInternalConfiguration := OutSector(Data)
end;
{ÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ}
END.