RTEMS
5.1
Main Page
Related Pages
Modules
+
Data Structures
Data Structures
Data Structure Index
Class Hierarchy
+
Data Fields
+
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Files
File List
+
Globals
+
All
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Functions
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
x
z
+
Variables
_
a
b
c
d
e
f
g
i
l
m
n
o
p
r
s
t
v
w
+
Typedefs
a
b
c
d
e
f
g
h
i
l
m
o
p
q
r
s
t
u
v
w
x
+
Enumerations
a
b
c
e
h
i
l
m
o
p
q
r
s
t
w
+
Enumerator
a
c
d
h
i
l
m
p
r
s
t
w
+
Macros
_
a
b
c
d
e
f
g
h
i
k
l
m
n
o
p
q
r
s
t
u
v
w
x
•
All
Data Structures
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Modules
Pages
bsps
include
grlib
grpci.h
1
#ifndef __GRPCI_H__
2
#define __GRPCI_H__
3
4
#ifdef __cplusplus
5
extern
"C"
{
6
#endif
7
8
/* Register the GRPCI driver to the Driver Manager */
9
extern
void
grpci_register_drv(
void
);
10
11
/* Transfer data using GRPCI DMA unit from AMBA to PCI space. Blocks until
12
* operation completes.
13
*/
14
int
grpci_dma_to_pci(
15
unsigned
int
ahb_addr,
16
unsigned
int
pci_addr,
17
unsigned
int
len);
18
19
/* Transfer data using GRPCI DMA unit from PCI to AMBA space. Blocks until
20
* operation completes.
21
*/
22
int
grpci_dma_from_pci(
23
unsigned
int
ahb_addr,
24
unsigned
int
pci_addr,
25
unsigned
int
len);
26
27
#ifdef __cplusplus
28
}
29
#endif
30
31
#endif
Generated by
1.8.15