summaryrefslogblamecommitdiffstats
path: root/private/ntos/ndis/madge/driver/sys_mem.c
blob: f72beb7bca0a098cfeadc1aa8b0fe867244a950c (plain) (tree)
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
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925




























































































































































































































































































































































































































































































































































































































































































































































































































































































































































                                                                                
/****************************************************************************
*
* SYS_MEM.C
*
* FastMAC Plus based NDIS3 miniport driver. This module contains helper 
* routines used by the FTK to perform I/O access to adapters.
*                                                                         
* Copyright (c) Madge Networks Ltd 1991-1994                                    
*    
* COMPANY CONFIDENTIAL
*          
* Created:             MF
* Major modifications: PBA 21/06/1994
*                                                                           
****************************************************************************/

#include <ndis.h>   

#include "ftk_defs.h"  
#include "ftk_extr.h" 

#include "ndismod.h"

/*--------------------------------------------------------------------------
|
| Note: These I/O routines are more involved that I would have liked for
| two reasons. We cannot use uncooked raw I/O routines because our
| EISA adapters use two ranges of I/O locations which could have some 
| other device in between them. Also we cannot turn these functions into
| macros because the FTK expects sys_ins{b|w} to return a value but the
| Ndis take a pointer to a memory cell for the value read.
|
--------------------------------------------------------------------------*/

/***************************************************************************
*
* Function    - sys_insw
*
* Parameters  - adapter_handle -> FTK adapter handle.
*               input_location -> I/O location to be read.
*
* Purpose     - Read a word from an I/O location.
*
* Returns     - The word read.
*
***************************************************************************/
									 
WORD 
sys_insw(
    ADAPTER_HANDLE adapter_handle,
    WORD           input_location
    )
{
    PMADGE_ADAPTER ndisAdap;
    ULONG          port;
    WORD           word_data;

#ifdef _M_IX86

    NdisRawReadPortUshort((ULONG) input_location, &word_data);

#else

    ndisAdap = PMADGE_ADAPTER_FROM_ADAPTER_HANDLE(adapter_handle);
    port     = ((UINT) input_location <= ndisAdap->IORange1End)
                   ? (ULONG) ndisAdap->MappedIOLocation1 + 
                         ((UINT) input_location - ndisAdap->IoLocation1)
                   : (ULONG) ndisAdap->MappedIOLocation2 + 
                         ((UINT) input_location - ndisAdap->IoLocation2);

    NdisRawReadPortUshort(port, &word_data);

#endif

    return word_data;
}

    
/***************************************************************************
*
* Function    - sys_insb
*
* Parameters  - adapter_handle -> FTK adapter handle.
*               input_location -> I/O location to be read.
*
* Purpose     - Read a byte from an I/O location.
*
* Returns     - The byte read.
*
***************************************************************************/

BYTE 
sys_insb(
    ADAPTER_HANDLE adapter_handle,
    WORD           input_location
    )
{
    PMADGE_ADAPTER ndisAdap;
    ULONG          port;
    BYTE           byte_data;
    
#ifdef _M_IX86

    NdisRawReadPortUchar((ULONG) input_location, &byte_data);

#else

    ndisAdap = PMADGE_ADAPTER_FROM_ADAPTER_HANDLE(adapter_handle);
    port     = ((UINT) input_location <= ndisAdap->IORange1End)
                   ? (ULONG) ndisAdap->MappedIOLocation1 + 
                         ((UINT) input_location - ndisAdap->IoLocation1)
                   : (ULONG) ndisAdap->MappedIOLocation2 + 
                         ((UINT) input_location - ndisAdap->IoLocation2);

    NdisRawReadPortUchar(port, &byte_data);

#endif

    return byte_data;
}

    
/***************************************************************************
*
* Function    - sys_outsw
*
* Parameters  - adapter_handle  -> FTK adapter handle.
*               output_location -> I/O location to be written.
*               output_word     -> The word to be written.
*
* Purpose     - Write a word to an I/O location.
*
* Returns     - Nothing.
*
***************************************************************************/

void 
sys_outsw(
    ADAPTER_HANDLE adapter_handle,
    WORD           output_location,
    WORD           output_word
    )
{
    PMADGE_ADAPTER ndisAdap;
    ULONG          port;

#ifdef _M_IX86

    NdisRawWritePortUshort((ULONG) output_location, output_word);

#else

    ndisAdap = PMADGE_ADAPTER_FROM_ADAPTER_HANDLE(adapter_handle);
    port     = ((UINT) output_location <= ndisAdap->IORange1End)
                   ? (ULONG) ndisAdap->MappedIOLocation1 + 
                         ((UINT) output_location - ndisAdap->IoLocation1)
                   : (ULONG) ndisAdap->MappedIOLocation2 + 
                         ((UINT) output_location - ndisAdap->IoLocation2);
    
    NdisRawWritePortUshort(port, output_word);

#endif
}
    

/***************************************************************************
*
* Function    - sys_outsb
*
* Parameters  - adapter_handle  -> FTK adapter handle.
*               output_location -> I/O location to be written.
*               output_byte     -> The byte to be written.
*
* Purpose     - Write a byte to an I/O location.
*
* Returns     - Nothing.
*
***************************************************************************/

void 
sys_outsb(
    ADAPTER_HANDLE adapter_handle,
    WORD           output_location,
    BYTE           output_byte
    )
{
    PMADGE_ADAPTER ndisAdap;
    ULONG          port;

#ifdef _M_IX86

    NdisRawWritePortUchar((ULONG) output_location, output_byte);

#else

    ndisAdap = PMADGE_ADAPTER_FROM_ADAPTER_HANDLE(adapter_handle);
    port     = ((UINT) output_location <= ndisAdap->IORange1End)
                   ? (ULONG) ndisAdap->MappedIOLocation1 + 
                         ((UINT) output_location - ndisAdap->IoLocation1)
                   : (ULONG) ndisAdap->MappedIOLocation2 + 
                         ((UINT) output_location - ndisAdap->IoLocation2);

    NdisRawWritePortUchar(port,	output_byte);

#endif
}


/***************************************************************************
*
* Function    - sys_rep_insw
*
* Parameters  - adapter_handle      -> FTK adapter handle.
*               output_location     -> I/O location to be read.
*               destination_address -> Destination for the data read.
*               length_in_words     -> Number of words to read.
*
* Purpose     - Read a number of words from an I/O location.
*
* Returns     - Nothing.
*
***************************************************************************/

void 
sys_rep_insw( 
    ADAPTER_HANDLE   adapter_handle, 
    WORD             input_location,
    BYTE           * destination_address,
    WORD             length_in_words
    )
{
    PMADGE_ADAPTER ndisAdap;
    ULONG          port;

#ifdef _M_IX86

    NdisRawReadPortBufferUshort(
        (ULONG) input_location,
        (USHORT *) destination_address,
        (ULONG) length_in_words
        );

#else

    ndisAdap = PMADGE_ADAPTER_FROM_ADAPTER_HANDLE(adapter_handle);
    port     = ((UINT) input_location <= ndisAdap->IORange1End)
                   ? (ULONG) ndisAdap->MappedIOLocation1 + 
                         ((UINT) input_location - ndisAdap->IoLocation1)
                   : (ULONG) ndisAdap->MappedIOLocation2 + 
                         ((UINT) input_location - ndisAdap->IoLocation2);

    NdisRawReadPortBufferUshort(
        port,
        (USHORT *) destination_address,
	(ULONG) length_in_words
        ); 

#endif
}


/***************************************************************************
*
* Function    - sys_rep_outsw
*
* Parameters  - adapter_handle      -> FTK adapter handle.
*               output_location     -> I/O location to be written.
*               source_address      -> Address of the data to be written.
*               length_in_words     -> Number of words to read.
*
* Purpose     - Write a number of words to an I/O location.
*
* Returns     - Nothing.
*
***************************************************************************/

void 
sys_rep_outsw(
    ADAPTER_HANDLE   adapter_handle, 
    WORD             input_location,
    BYTE           * source_address,
    WORD             length_in_words
    )
{
    PMADGE_ADAPTER ndisAdap;
    ULONG          port;

#ifdef _M_IX86

    NdisRawWritePortBufferUshort(
        (ULONG) input_location,
        (USHORT *) source_address,
        (ULONG) length_in_words
        );

#else

    ndisAdap = PMADGE_ADAPTER_FROM_ADAPTER_HANDLE(adapter_handle);
    port     = ((UINT) input_location <= ndisAdap->IORange1End)
                   ? (ULONG) ndisAdap->MappedIOLocation1 + 
                         ((UINT) input_location - ndisAdap->IoLocation1)
                   : (ULONG) ndisAdap->MappedIOLocation2 + 
                         ((UINT) input_location - ndisAdap->IoLocation2);
    
    NdisRawWritePortBufferUshort(
	port,
	(USHORT *) source_address,
	(ULONG) length_in_words
        ); 

#endif
}


/***************************************************************************
*
* Function    - sys_rep_swap_insw
*
* Parameters  - adapter_handle      -> FTK adapter handle.
*               output_location     -> I/O location to be read.
*               destination_address -> Destination for the data read.
*               length_in_words     -> Number of words to read.
*
* Purpose     - Read a number of byte swapped words from an I/O location.
*
* Returns     - Nothing.
*
***************************************************************************/

void 
sys_rep_swap_insw( 
    ADAPTER_HANDLE   adapter_handle, 
    WORD             input_location,
    BYTE           * destination_address,
    WORD             length_in_words
    )
{
    PMADGE_ADAPTER   ndisAdap;
    ULONG            port;
    USHORT           word_data;
    WORD           * ptr;

    ptr = (WORD *) destination_address;

#ifdef _M_IX86

    while (length_in_words > 0)
    {
        NdisRawReadPortUshort((ULONG) input_location, &word_data);
        *ptr = ((WORD) word_data << 8) | ((WORD) word_data >> 8);

        ptr++;
        length_in_words--;
    }

#else

    ndisAdap = PMADGE_ADAPTER_FROM_ADAPTER_HANDLE(adapter_handle);
    port     = ((UINT) input_location <= ndisAdap->IORange1End)
                   ? (ULONG) ndisAdap->MappedIOLocation1 + 
                         ((UINT) input_location - ndisAdap->IoLocation1)
                   : (ULONG) ndisAdap->MappedIOLocation2 + 
                         ((UINT) input_location - ndisAdap->IoLocation2);

    while (length_in_words > 0)
    {
        NdisRawReadPortUshort(port, &word_data);
        *ptr = ((WORD) word_data << 8) | ((WORD) word_data >> 8);

        ptr++;
        length_in_words--;
    }


#endif
}


/***************************************************************************
*
* Function    - sys_rep_swap_outsw
*
* Parameters  - adapter_handle      -> FTK adapter handle.
*               output_location     -> I/O location to be written.
*               source_address      -> Address of the data to be written.
*               length_in_words     -> Number of words to read.
*
* Purpose     - Write a number of byte swapped words to an I/O location.
*
* Returns     - Nothing.
*
***************************************************************************/

void 
sys_rep_swap_outsw(
    ADAPTER_HANDLE   adapter_handle, 
    WORD             input_location,
    BYTE           * source_address,
    WORD             length_in_words
    )
{
    PMADGE_ADAPTER   ndisAdap;
    ULONG            port;
    USHORT           word_data;
    WORD           * ptr;

    ptr = (WORD *) source_address;

#ifdef _M_IX86

    while (length_in_words > 0)
    {
        word_data = (USHORT) (*ptr << 8) | (*ptr >> 8);
        NdisRawWritePortUshort((ULONG) input_location, word_data);

        ptr++;
        length_in_words--;
    }

#else

    ndisAdap = PMADGE_ADAPTER_FROM_ADAPTER_HANDLE(adapter_handle);
    port     = ((UINT) input_location <= ndisAdap->IORange1End)
                   ? (ULONG) ndisAdap->MappedIOLocation1 + 
                         ((UINT) input_location - ndisAdap->IoLocation1)
                   : (ULONG) ndisAdap->MappedIOLocation2 + 
                         ((UINT) input_location - ndisAdap->IoLocation2);

    while (length_in_words > 0)
    {
        word_data = (USHORT) (*ptr << 8) | (*ptr >> 8);
        NdisRawWritePortUshort(port, word_data);

        ptr++;
        length_in_words--;
    }

#endif
}


/***************************************************************************
*
* Function    - sys_rep_insd
*
* Parameters  - adapter_handle      -> FTK adapter handle.
*               output_location     -> I/O location to be read.
*               destination_address -> Destination for the data read.
*               length_in_dwords    -> Number of dwords to read.
*
* Purpose     - Read a number of dwords from an I/O location.
*
* Returns     - Nothing.
*
***************************************************************************/

void 
sys_rep_insd( 
    ADAPTER_HANDLE   adapter_handle, 
    WORD             input_location,
    BYTE           * destination_address,
    WORD             length_in_dwords
    )
{
    PMADGE_ADAPTER ndisAdap;
    ULONG          port;

#ifdef _M_IX86

    NdisRawReadPortBufferUlong(
        (ULONG) input_location,
        (USHORT *) destination_address,
        (ULONG) length_in_dwords
        );

#else

    ndisAdap = PMADGE_ADAPTER_FROM_ADAPTER_HANDLE(adapter_handle);
    port     = ((UINT) input_location <= ndisAdap->IORange1End)
                   ? (ULONG) ndisAdap->MappedIOLocation1 + 
                         ((UINT) input_location - ndisAdap->IoLocation1)
                   : (ULONG) ndisAdap->MappedIOLocation2 + 
                         ((UINT) input_location - ndisAdap->IoLocation2);

    NdisRawReadPortBufferUlong(
        port,
        (ULONG *) destination_address,
	(ULONG) length_in_dwords
        ); 

#endif
}


/***************************************************************************
*
* Function    - sys_rep_outsd
*
* Parameters  - adapter_handle      -> FTK adapter handle.
*               output_location     -> I/O location to be written.
*               source_address      -> Address of the data to be written.
*               length_in_dwords    -> Number of dwords to read.
*
* Purpose     - Write a number of dwords to an I/O location.
*
* Returns     - Nothing.
*
***************************************************************************/

void 
sys_rep_outsd(
    ADAPTER_HANDLE   adapter_handle, 
    WORD             input_location,
    BYTE           * source_address,
    WORD             length_in_dwords
    )
{
    PMADGE_ADAPTER ndisAdap;
    ULONG          port;

#ifdef _M_IX86

    NdisRawWritePortBufferUlong(
        (ULONG) input_location,
        (USHORT *) source_address,
        (ULONG) length_in_dwords
        );

#else

    ndisAdap = PMADGE_ADAPTER_FROM_ADAPTER_HANDLE(adapter_handle);
    port     = ((UINT) input_location <= ndisAdap->IORange1End)
                   ? (ULONG) ndisAdap->MappedIOLocation1 + 
                         ((UINT) input_location - ndisAdap->IoLocation1)
                   : (ULONG) ndisAdap->MappedIOLocation2 + 
                         ((UINT) input_location - ndisAdap->IoLocation2);
    
    NdisRawWritePortBufferUlong(
	port,
	(ULONG *) source_address,
	(ULONG) length_in_dwords
        ); 

#endif
}

/***************************************************************************
*
* Function    - sys_sync_with_interrupt
*
* Parameter   - adapter_handle -> FTK adapter handle.
*               f              -> Function to call.
*               ptr            -> Argument for f.
*
* Purpose     - Call a function in such as way that its execution will
*               never overlap with the ISR.
*
* Returns     - The return value from *f.
*
***************************************************************************/

WBOOLEAN 
sys_sync_with_interrupt(
    ADAPTER_HANDLE   adapter_handle,
    WBOOLEAN         (*f)(void *),
    void           * ptr
    )
{
    PMADGE_ADAPTER ndisAdap;

    ndisAdap = PMADGE_ADAPTER_FROM_ADAPTER_HANDLE(adapter_handle);

    return NdisMSynchronizeWithInterrupt(
               &ndisAdap->Interrupt,
               (void *) f,
               ptr
               );
}


/***************************************************************************
*
* Function    - sys_rep_movsd_to
*
* Parameter   - adapter_handle -> FTK adapter handle.
*               SourcePtr      -> Pointer to the source data. 
*               DestPtr        -> pointer to the destination.
*               TransferSize   -> Number of bytes to transfer.
*
* Purpose     - Transfer data to a memory mapped device. Although bytes
*               are given as the transfer size a whole number of
*               DWORDS are transferred.
*               
* Returns     - Nothing.
*
***************************************************************************/

void 
sys_rep_movsd_to(                            
    ADAPTER_HANDLE adapter_handle,
    DWORD          SourcePtr,              
    DWORD          DestPtr,                
    WORD           TransferSize                     
    )
{
    NdisMoveToMappedMemory(
        (VOID *) DestPtr,
        (VOID *) SourcePtr,
        (ULONG) TransferSize
        );
}


/***************************************************************************
*
* Function    - sys_rep_movsd_from
*
* Parameter   - adapter_handle -> FTK adapter handle.
*               SourcePtr      -> Pointer to the source data. 
*               DestPtr        -> pointer to the destination.
*               TransferSize   -> Number of bytes to transfer.
*
* Purpose     - Transfer data from a memory mapped device. Although bytes
*               are given as the transfer size a whole number of
*               DWORDS are transferred.
*               
* Returns     - Nothing.
*
***************************************************************************/

void 
sys_rep_movsd_from(                            
    ADAPTER_HANDLE adapter_handle,
    DWORD          SourcePtr,              
    DWORD          DestPtr,                
    WORD           TransferSize                     
    )
{
    NdisMoveFromMappedMemory(
        (VOID *) DestPtr,
        (VOID *) SourcePtr,
        (ULONG) TransferSize
        );
}


/***************************************************************************
*
* Function    - sys_movsd_to
*
* Parameter   - adapter_handle -> FTK adapter handle.
*               SourcePtr      -> Pointer to the source data. 
*               DestPtr        -> pointer to the destination.
*
* Purpose     - Transfer a DWORD of data to a memory mapped device.
*               
* Returns     - Nothing.
*
***************************************************************************/

void 
sys_movsd_to(                            
    ADAPTER_HANDLE adapter_handle,
    DWORD          SourcePtr,              
    DWORD          DestPtr                
    )
{
    *((DWORD *) DestPtr) = *((DWORD *) SourcePtr);
}                


/***************************************************************************
*
* Function    - sys_movsd_from
*
* Parameter   - adapter_handle -> FTK adapter handle.
*               SourcePtr      -> Pointer to the source data. 
*               DestPtr        -> pointer to the destination.
*
* Purpose     - Transfer a DWORD of data from a memory mapped device.
*               
* Returns     - Nothing.
*
***************************************************************************/

void 
sys_movsd_from(                            
    ADAPTER_HANDLE adapter_handle,
    DWORD          SourcePtr,              
    DWORD          DestPtr                
    )
{
    *((DWORD *) DestPtr) = *((DWORD *) SourcePtr);
}                


/***************************************************************************
*
* Function    - sys_pci_read_config_dword
*
* Parameter   - adapter_handle -> FTK adapter handle.
*               index          -> Offset into the configuration space from
*                                 which to read.
*               dword_ptr      -> Buffer for the data read.
*
* Purpose     - Read a DWORD from PCI configuration space.
*               
* Returns     - TRUE on success.
*
***************************************************************************/

WBOOLEAN 
sys_pci_read_config_dword(                            
    ADAPTER_HANDLE   adapter_handle,
    WORD             index,
    DWORD          * dword_ptr
    )
{
    PMADGE_ADAPTER ndisAdap;

    ndisAdap = PMADGE_ADAPTER_FROM_ADAPTER_HANDLE(adapter_handle);

    NdisReadPciSlotInformation(
        ndisAdap->UsedInISR.MiniportHandle,
        (ULONG) adapter_record[adapter_handle]->pci_handle,
        index,
        (void *) dword_ptr,
        4
        );

    return TRUE;
}


/***************************************************************************
*
* Function    - sys_pci_read_config_word
*
* Parameter   - adapter_handle -> FTK adapter handle.
*               index          -> Offset into the configuration space from
*                                 which to read.
*               word_ptr       -> Buffer for the data read.
*
* Purpose     - Read a WORD from PCI configuration space.
*               
* Returns     - TRUE on success.
*
***************************************************************************/

WBOOLEAN 
sys_pci_read_config_word(                            
    ADAPTER_HANDLE   adapter_handle,
    WORD             index,
    WORD           * word_ptr
    )
{
    PMADGE_ADAPTER ndisAdap;

    ndisAdap = PMADGE_ADAPTER_FROM_ADAPTER_HANDLE(adapter_handle);

    NdisReadPciSlotInformation(
        ndisAdap->UsedInISR.MiniportHandle,
        (ULONG) adapter_record[adapter_handle]->pci_handle,
        index,
        (void *) word_ptr,
        2
        );

    return TRUE;
}


/***************************************************************************
*
* Function    - sys_pci_read_config_byte
*
* Parameter   - adapter_handle -> FTK adapter handle.
*               index          -> Offset into the configuration space from
*                                 which to read.
*               byte_ptr       -> Buffer for the data read.
*
* Purpose     - Read a BYTE from PCI configuration space.
*               
* Returns     - TRUE on success.
*
***************************************************************************/

WBOOLEAN 
sys_pci_read_config_byte(                            
    ADAPTER_HANDLE   adapter_handle,
    WORD             index,
    BYTE           * byte_ptr
    )
{
    PMADGE_ADAPTER ndisAdap;

    ndisAdap = PMADGE_ADAPTER_FROM_ADAPTER_HANDLE(adapter_handle);

    NdisReadPciSlotInformation(
        ndisAdap->UsedInISR.MiniportHandle,
        (ULONG) adapter_record[adapter_handle]->pci_handle,
        index,
        (void *) byte_ptr,
        1
        );

    return TRUE;
}


/***************************************************************************
*
* Function    - sys_pci_write_config_dword
*
* Parameter   - adapter_handle -> FTK adapter handle.
*               index          -> Offset into the configuration space to
*                                 which to write.
*               dword          -> Data to write.
*
* Purpose     - Write a DWORD to PCI configuration space.
*               
* Returns     - TRUE on success.
*
***************************************************************************/

WBOOLEAN 
sys_pci_write_config_dword(                            
    ADAPTER_HANDLE adapter_handle,
    WORD           index,
    DWORD          dword
    )
{
    PMADGE_ADAPTER ndisAdap;

    ndisAdap = PMADGE_ADAPTER_FROM_ADAPTER_HANDLE(adapter_handle);

    NdisWritePciSlotInformation(
        ndisAdap->UsedInISR.MiniportHandle,
        (ULONG) adapter_record[adapter_handle]->pci_handle,
        index,
        (void *) &dword,
        4
        );

    return TRUE;
}


/***************************************************************************
*
* Function    - sys_pci_write_config_word
*
* Parameter   - adapter_handle -> FTK adapter handle.
*               index          -> Offset into the configuration space to
*                                 which to write.
*               word           -> Data to write.
*
* Purpose     - Write a WORD to PCI configuration space.
*               
* Returns     - TRUE on success.
*
***************************************************************************/

WBOOLEAN 
sys_pci_write_config_word(                            
    ADAPTER_HANDLE adapter_handle,
    WORD           index,
    WORD           word
    )
{
    PMADGE_ADAPTER ndisAdap;

    ndisAdap = PMADGE_ADAPTER_FROM_ADAPTER_HANDLE(adapter_handle);

    NdisWritePciSlotInformation(
        ndisAdap->UsedInISR.MiniportHandle,
        (ULONG) adapter_record[adapter_handle]->pci_handle,
        index,
        (void *) &word,
        2
        );

    return TRUE;
}


/***************************************************************************
*
* Function    - sys_pci_write_config_byte
*
* Parameter   - adapter_handle -> FTK adapter handle.
*               index          -> Offset into the configuration space to
*                                 which to write.
*               byte           -> Data to write.
*
* Purpose     - Write a BYTE to PCI configuration space.
*               
* Returns     - TRUE on success.
*
***************************************************************************/

WBOOLEAN 
sys_pci_write_config_byte(                            
    ADAPTER_HANDLE adapter_handle,
    WORD           index,
    BYTE           byte
    )
{
    PMADGE_ADAPTER ndisAdap;

    ndisAdap = PMADGE_ADAPTER_FROM_ADAPTER_HANDLE(adapter_handle);

    NdisWritePciSlotInformation(
        ndisAdap->UsedInISR.MiniportHandle,
        (ULONG) adapter_record[adapter_handle]->pci_handle,
        index,
        (void *) &byte,
        1
        );

    return TRUE;
}

/******** End of SYS_MEM.C ************************************************/