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
powerpc
include
mpc8xx
cpm.h
1
/*
2
* cpm.h
3
*
4
* This include file contains definitions pertaining
5
* to the Communications Processor Module (CPM) on the MPC8xx.
6
*
7
* Copyright (c) 1999, National Research Council of Canada
8
*
9
* The license and distribution terms for this file may be
10
* found in the file LICENSE in this distribution or at
11
* http://www.rtems.org/license/LICENSE.
12
*/
13
14
#ifndef _MPC8XX_CPM_H
15
#define _MPC8XX_CPM_H
16
17
#ifdef __cplusplus
18
extern
"C"
{
19
#endif
20
21
/* Functions */
22
23
void
m8xx_cp_execute_cmd( uint16_t command );
24
void
*m8xx_dpram_allocate(
unsigned
int
byte_count );
25
26
#define m8xx_bd_allocate(count) \
27
m8xx_dpram_allocate( (count) * sizeof(m8xxBufferDescriptor_t) )
28
#define m8xx_RISC_timer_table_allocate(count) \
29
m8xx_dpram_allocate( (count) * 4 )
30
31
#ifdef __cplusplus
32
}
33
#endif
34
35
#endif
36
/* end of include file */
Generated by
1.8.15