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
|
/*++
Copyright (c) 1997 - 1999 SCM Microsystems, Inc.
Module Name:
PscrRdWr.c
Abstract:
Hardware access functions for SCM PSCR smartcard reader
Author:
Andreas Straub
Environment:
Win 95 Sys... calls are resolved by Pscr95Wrap.asm functions and
Pscr95Wrap.h macros, resp.
NT 4.0 Sys... functions resolved by PscrNTWrap.c functions and
PscrNTWrap.h macros, resp.
Notes:
The file pscrrdwr.c was reviewed by LCA in June 2011 and per license is
acceptable for Microsoft use under Dealpoint ID 178449.
Revision History:
Andreas Straub 7/16/1997 1.00 Initial Version
Klaus Schuetz 9/20/1997 1.01 Timing changed
Andreas Straub 9/24/1997 1.02 Low Level error handling,
minor bugfixes, clanup
--*/
#include <PscrNT.h>
#include <PscrCmd.h>
#include <PscrRdWr.h>
VOID
PscrFlushInterface( PREADER_EXTENSION ReaderExtension )
/*++
PscrFlushInterface:
Read & discard data from the pcmcia interface
Arguments:
ReaderExtension context of call
Return Value:
void
--*/
{
UCHAR Status;
ULONG Length;
PPSCR_REGISTERS IOBase;
IOBase = ReaderExtension->IOBase;
Status = READ_PORT_UCHAR( &IOBase->CmdStatusReg );
if (( Status & PSCR_DATA_AVAIL_BIT ) && ( Status & PSCR_FREE_BIT )) {
// take control over
WRITE_PORT_UCHAR( &IOBase->CmdStatusReg, PSCR_HOST_CONTROL_BIT );
// get number of available bytes
Length = ((ULONG)READ_PORT_UCHAR( &IOBase->SizeMSReg )) << 8;
Length |= READ_PORT_UCHAR( &IOBase->SizeLSReg );
// perform a dummy read
while ( Length-- ) {
READ_PORT_UCHAR( &IOBase->DataReg );
}
WRITE_PORT_UCHAR( &IOBase->CmdStatusReg, CLEAR_BIT );
}
return;
}
NTSTATUS
PscrRead(
_In_ PREADER_EXTENSION ReaderExtension, // context of call
_Out_writes_bytes_(DataLen) PUCHAR pData, // ptr to data buffer
_In_ ULONG DataLen, // length of data
_Out_ PULONG pNBytes // number of bytes read
)
/*++
PscrRead:
wait until data available & transfer data from reader to host
Arguments:
ReaderExtension context of call
pData ptr to data buffer
DataLen length of data buffer
pNBytes number of bytes returned
Return Value:
STATUS_SUCCESS
STATUS_BUFFER_TOO_SMALL
STATUS_UNSUCCESSFUL
--*/
{
NTSTATUS NTStatus = STATUS_UNSUCCESSFUL;
ULONG NBytes = 0;
NTStatus = PscrReadDirect(
ReaderExtension,
pData,
DataLen,
&NBytes
);
if( NTStatus == STATUS_SUCCESS )
{
// error check
if( pData[ NBytes - 1 ] !=
PscrCalculateLRC( pData, (USHORT)( NBytes-1 )))
{
NTStatus = STATUS_CRC_ERROR;
}
else
{
USHORT ReaderStatus;
//
// Evaluation of reader errors. A reader error is indicated
// if the T1 length is 2 and the Nad indicates that this
// packet came from the reader
//
if( ( ( pData[ PSCR_NAD ] & 0x0F ) == 0x01 ) &&
( pData[ PSCR_LEN ] == 0x02 )
)
{
ReaderStatus = (( USHORT ) pData[3] ) << 8;
ReaderStatus |= (( USHORT ) pData[4] );
if( ( ReaderStatus != 0x9000 ) &&
( ReaderStatus != 0x9001 )
)
{
NBytes = 0;
if( ReaderStatus == PSCR_SW_PROTOCOL_ERROR )
{
NTStatus = STATUS_IO_TIMEOUT;
}
else if( ReaderStatus == PSCR_SW_NO_ICC )
{
NTStatus = STATUS_NO_MEDIA;
}
else
{
NTStatus = STATUS_UNSUCCESSFUL;
}
}
}
// check freeze data
if( ( NBytes == 9 ) &&
( pData[ PSCR_NAD ] == 0x21 ) &&
( pData[ PSCR_INF ] == TAG_FREEZE_EVENTS ))
{
UCHAR CardState;
CardState = pData[PSCR_INF + 2] == DEVICE_ICC1 ?
PSCR_ICC_PRESENT : PSCR_ICC_ABSENT;
if( ( ReaderExtension->CompletionRoutine != NULL ) &&
( ReaderExtension->TrackingContext != NULL ))
{
// Freeze Data read
ReaderExtension->RequestInterrupt = FALSE; // set in DPC/reset here
(ReaderExtension->CompletionRoutine)(
ReaderExtension->TrackingContext,
CardState,
FALSE
);
}
NBytes = 0;
if( CardState == PSCR_ICC_ABSENT )
{
NTStatus = STATUS_NO_MEDIA;
}
}
}
}
// write number of bytes received
*pNBytes = NBytes;
if( NBytes )
{
NTStatus = STATUS_SUCCESS;
}
return ( NTStatus );
}
NTSTATUS
PscrReadDirect(
PREADER_EXTENSION ReaderExtension,
_Out_writes_bytes_(DataLen) PUCHAR pData,
ULONG DataLen,
PULONG pNBytes
)
/*++
PscrReadDirect:
wait until data available & transfer data from reader to host
Arguments:
ReaderExtension context of call
pData ptr to data buffer
DataLen length of data buffer
pNBytes number of bytes returned
Return Value:
STATUS_SUCCESS
STATUS_BUFFER_TOO_SMALL
STATUS_UNSUCCESSFUL
--*/
{
NTSTATUS NTStatus = STATUS_UNSUCCESSFUL;
PPSCR_REGISTERS IOBase;
USHORT InDataLen;
ULONG Idx;
IOBase = ReaderExtension->IOBase;
// wait until interface is ready to transfer
InDataLen = 0;
if( NT_SUCCESS( NTStatus = PscrWait( ReaderExtension, PSCR_DATA_AVAIL_BIT | PSCR_FREE_BIT )))
{
// take control over
SysDelay( DELAY_PSCR_WAIT );
WRITE_PORT_UCHAR( &IOBase->CmdStatusReg, PSCR_HOST_CONTROL_BIT );
SysDelay( DELAY_PSCR_WAIT );
// get number of available bytes
InDataLen = ( READ_PORT_UCHAR( &IOBase->SizeMSReg ) << 8 );
InDataLen |= READ_PORT_UCHAR( &IOBase->SizeLSReg );
// check buffer size. if buffer to small, the data will be discarded
if( ( ULONG )InDataLen <= DataLen )
{
// read data
for (Idx = 0; Idx < InDataLen; Idx++) {
pData[ Idx ] = READ_PORT_UCHAR( &IOBase->DataReg );
if(( READ_PORT_UCHAR( &IOBase->CmdStatusReg )) == 0x02 )
{
Idx++;
break;
}
}
if( Idx < ( ULONG )InDataLen )
{
if(( InDataLen - Idx ) == 1 )
{
pData[ Idx ] = PscrCalculateLRC( pData, ( USHORT ) Idx );
}
else
{
InDataLen = 0;
NTStatus = STATUS_UNSUCCESSFUL;
}
}
}
else
{
// flush interface in case of wrong buffer size
do
{
READ_PORT_UCHAR( &IOBase->DataReg );
} while( --InDataLen );
NTStatus = STATUS_BUFFER_TOO_SMALL;
}
// clean up
WRITE_PORT_UCHAR( &IOBase->CmdStatusReg, CLEAR_BIT );
}
ReaderExtension->RequestPending = FALSE;
// write number of bytes received
if( InDataLen )
{
if( pNBytes != NULL )
{
( *pNBytes ) = ( ULONG ) InDataLen;
}
NTStatus = STATUS_SUCCESS;
}
return ( NTStatus );
}
NTSTATUS
PscrWrite(
PREADER_EXTENSION ReaderExtension,
PUCHAR pData,
ULONG DataLen,
PULONG pNBytes
)
/*++
PscrWrite:
calculates the LRC of the buffer & sends command to the reader
Arguments:
ReaderExtension context of call
pData ptr to data buffer
DataLen length of data buffer (exclusive LRC!)
pNBytes number of bytes written
Return Value:
return value of PscrWriteDirect
--*/
{
NTSTATUS NTStatus;
// Add the EDC field to the end of the data
pData[ DataLen ] = PscrCalculateLRC( pData, ( USHORT ) DataLen );
// Send buffer
NTStatus = PscrWriteDirect(
ReaderExtension,
pData,
DataLen + PSCR_EPILOGUE_LENGTH,
pNBytes
);
return( NTStatus );
}
NTSTATUS
PscrWriteDirect(
PREADER_EXTENSION ReaderExtension,
PUCHAR pData,
ULONG DataLen,
PULONG pNBytes
)
/*++
PscrWriteDirect:
sends command to the reader. The LRC / CRC must be calculated by caller!
Arguments:
ReaderExtension context of call
pData ptr to data buffer
DataLen length of data buffer (exclusive LRC!)
pNBytes number of bytes written
Return Value:
STATUS_SUCCESS
STATUS_DEVICE_BUSY
--*/
{
NTSTATUS NTStatus = STATUS_SUCCESS;
UCHAR Status;
PPSCR_REGISTERS IOBase;
IOBase = ReaderExtension->IOBase;
// in case of card change, there may be data available
Status = READ_PORT_UCHAR( &IOBase->CmdStatusReg );
if ( Status & PSCR_DATA_AVAIL_BIT ) {
NTStatus = STATUS_DEVICE_BUSY;
} else {
//
// wait until reader is ready
//
ReaderExtension->RequestPending = TRUE;
WRITE_PORT_UCHAR( &IOBase->CmdStatusReg, PSCR_HOST_CONTROL_BIT );
NTStatus = PscrWait( ReaderExtension, PSCR_FREE_BIT );
if ( NT_SUCCESS( NTStatus )) {
ULONG Idx;
// take control over
WRITE_PORT_UCHAR( &IOBase->CmdStatusReg, PSCR_HOST_CONTROL_BIT );
// write the buffer size
WRITE_PORT_UCHAR( &IOBase->SizeMSReg, ( UCHAR )( DataLen >> 8 ));
SysDelay( DELAY_WRITE_PSCR_REG );
WRITE_PORT_UCHAR( &IOBase->SizeLSReg, ( UCHAR )( DataLen & 0x00FF ));
SysDelay( DELAY_WRITE_PSCR_REG );
// write data
for (Idx = 0; Idx < DataLen; Idx++) {
WRITE_PORT_UCHAR( &IOBase->DataReg, pData[ Idx ] );
}
if ( pNBytes != NULL ) {
*pNBytes = DataLen;
}
}
// clean up
WRITE_PORT_UCHAR( &IOBase->CmdStatusReg, CLEAR_BIT );
}
return( NTStatus );
}
UCHAR
PscrCalculateLRC(
PUCHAR pData,
USHORT DataLen
)
/*++
PscrCalculateLRC:
calculates the XOR LRC of a buffer.
Arguments:
pData ptr to data buffer
DataLen length of range
Return Value:
LRC
--*/
{
UCHAR Lrc;
USHORT Idx;
//
// Calculate LRC by XORing all the bytes.
//
Lrc = pData[ 0 ];
for ( Idx = 1 ; Idx < DataLen; Idx++ ) {
Lrc ^= pData[ Idx ];
}
return( Lrc );
}
NTSTATUS
PscrWait(
PREADER_EXTENSION ReaderExtension,
UCHAR Mask
)
/*++
PscrWait:
Test the status port of the reader until ALL bits in the mask are set.
The maximum of time until DEVICE_BUSY is returned is approx.
MaxRetries * DELAY_PSCR_WAIT if MaxRetries != 0.
If MaxRetries = 0 the driver waits until the requested status is reported or the
user defines a timeout.
Arguments:
ReaderExtension context of call
Mask mask of bits to test the status register
Return Value:
STATUS_SUCCESS
STATUS_DEVICE_BUSY
--*/
{
NTSTATUS NTStatus;
PPSCR_REGISTERS IOBase;
ULONG Retries;
IOBase = ReaderExtension->IOBase;
NTStatus = STATUS_DEVICE_BUSY;
// wait until condition fulfilled or specified timeout expired
for ( Retries = 0; Retries < ReaderExtension->MaxRetries; Retries++) {
if (( (READ_PORT_UCHAR( &IOBase->CmdStatusReg )) == 0x01) &&
ReaderExtension->InvalidStatus) {
NTStatus = STATUS_CANCELLED;
break;
}
// test requested bits
if (( (READ_PORT_UCHAR( &IOBase->CmdStatusReg )) & Mask ) == Mask ) {
NTStatus = STATUS_SUCCESS;
break;
}
SysDelay( DELAY_PSCR_WAIT );
}
(void) READ_PORT_UCHAR( &IOBase->CmdStatusReg );
return NTStatus;
}
|