summaryrefslogtreecommitdiffstats
path: root/private/ntos/miniport/trantor/source/portio.c
blob: b4726ad225704844e3e19ad540328cda0e2ca95a (plain) (blame)
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
//-------------------------------------------------------------------------
//
//  File: PORTIO.C 
//
//  Contains generic port access routines for I/O cards.
//
//  Revisions:
//      02-24-93 KJB First.
//      03-22-93 KJB Reorged for stub function library.
//      03-25-93  JAP   Fixed up typedef and prototype inconsistencies
//      04-05-93 KJB Added functions for word io.  Changed PUCHAR to
//                   PBASE_REGISTER.
//
//-------------------------------------------------------------------------

#include CARDTXXX_H

//
//  PortIOSet
//
//  This routine sets a mask on a certain port.  It or's the mask with
//  the value currently at the port.  Works only for ports where all bits
//  are readable and writable.
//
VOID PortIOSet(PBASE_REGISTER baseIoAddress, UCHAR mask)
{
    UCHAR tmp;

    PortIOGet(baseIoAddress,&tmp);
    tmp = tmp | mask;
    PortIOPut(baseIoAddress,tmp);
}
VOID PortIOSetWord(PBASE_REGISTER baseIoAddress, USHORT mask)
{
    USHORT tmp;

    PortIOGetWord(baseIoAddress,&tmp);
    tmp = tmp | mask;
    PortIOPutWord(baseIoAddress,tmp);
}

//
//  PortIOClear
//
//  This routine clears a mask on a certain port.  It and's the inverse with
//  the value currently at the port.  Works only for ports where all bits
//  are readable and writable.
//
VOID PortIOClear(PBASE_REGISTER baseIoAddress, UCHAR mask)
{
    UCHAR tmp;

    PortIOGet(baseIoAddress,&tmp);
    tmp = tmp & (0xff ^ mask);
    PortIOPut(baseIoAddress,tmp);
}
VOID PortIOClearWord(PBASE_REGISTER baseIoAddress, USHORT mask)
{
    USHORT tmp;

    PortIOGetWord(baseIoAddress,&tmp);
    tmp = tmp & (0xff ^ mask);
    PortIOPutWord(baseIoAddress,tmp);
}

//
//  PortIOTest
//
//  This routine clears a mask on a certain port.  It and's the mask with
//  the value currently at the port.  This result is returned.
//
BOOLEAN PortIOTest(PBASE_REGISTER baseIoAddress, UCHAR mask)
{
    UCHAR tmp;

    PortIOGet(baseIoAddress,&tmp);
    return (tmp & mask);
}
BOOLEAN PortIOTestWord(PBASE_REGISTER baseIoAddress, USHORT theval)
{
    USHORT tmpw;

    PortIOGetWord(baseIoAddress, &tmpw);
    return tmpw & theval;
}