summaryrefslogtreecommitdiffstats
path: root/private/ntos/inc/jnsndma.h
blob: 63aeb550318004730a19d8a5eddf9371b714d150 (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
/*++


Copyright (c) 1992  Digital Equipment Corporation

Module Name:

    jnsndma.h

Abstract:

    This module is the header file that describes the dma structures
    for the Jensen systems.

Author:


    Jeff McLeman (mcleman) 13-Jul-1992

Revision History:

    16-Jul-1992 Jeff McLeman (mcleman)
      QUASI_VIRTUAL_ADDRESS should be a PVOID

--*/

#ifndef _JENSENDMA_
#define _JENSENDMA_


//
// Define translation table entry structure.
//

typedef volatile struct _TRANSLATION_ENTRY {
    PVOID VirtualAddress;
    ULONG PhysicalAddress;
    ULONG Index;
} TRANSLATION_ENTRY, *PTRANSLATION_ENTRY;

//
// Define QUASI_VIRTUAL_ADDRESS
//
typedef PVOID QUASI_VIRTUAL_ADDRESS;


#endif // _JENSENDMA_