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
mpc8260
mmu.h
1
/*
2
* mmu.h
3
*
4
* This include file contains definitions pertaining
5
* to the MMU 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 _MPC8260_MMU_H
15
#define _MPC8260_MMU_H
16
17
#ifdef __cplusplus
18
extern
"C"
{
19
#endif
20
21
/*
22
* The MMU_TLB_table is used to statically initialize the Table Lookaside
23
* Buffers in the MMU of an MPC8260.
24
*/
25
typedef
struct
{
26
uint32_t mmu_epn;
/* Effective Page Number */
27
uint32_t mmu_twc;
/* Tablewalk Control Register */
28
uint32_t mmu_rpn;
/* Real Page Number */
29
}
MMU_TLB_table_t
;
30
31
/*
32
* The MMU_TLB_table and its size, MMU_N_TLB_Table_Entries, must be
33
* supplied by the BSP.
34
*/
35
extern
MMU_TLB_table_t
MMU_TLB_table[];
/* MMU TLB table supplied by BSP */
36
extern
int
MMU_N_TLB_Table_Entries;
/* Number of entries in MMU TLB table */
37
38
/* Functions */
39
40
void
mmu_init(
void
);
41
42
#ifdef __cplusplus
43
}
44
#endif
45
46
#endif
47
/* end of include file */
MMU_TLB_table_t
Definition:
mmu.h:25
Generated by
1.8.15