Subversion Repositories HelenOS-historic

Rev

Rev 1269 | Rev 1702 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1269 Rev 1374
Line 27... Line 27...
27
 */
27
 */
28
 
28
 
29
#ifndef __ppc32_TLB_H__
29
#ifndef __ppc32_TLB_H__
30
#define __ppc32_TLB_H__
30
#define __ppc32_TLB_H__
31
 
31
 
32
#include <arch/exception.h>
-
 
33
#include <typedefs.h>
-
 
34
 
-
 
35
#define PHT_BITS    16
-
 
36
#define PHT_ORDER   4
-
 
37
 
-
 
38
typedef struct {
-
 
39
    unsigned v : 1;          /**< Valid */
-
 
40
    unsigned vsid : 24;      /**< Virtual Segment ID */
-
 
41
    unsigned h : 1;          /**< Primary/secondary hash */
-
 
42
    unsigned api : 6;        /**< Abbreviated Page Index */
-
 
43
    unsigned rpn : 20;       /**< Real Page Number */
-
 
44
    unsigned reserved0 : 3;
-
 
45
    unsigned r : 1;          /**< Reference */
-
 
46
    unsigned c : 1;          /**< Change */
-
 
47
    unsigned wimg : 4;       /**< Access control */
-
 
48
    unsigned reserved1 : 1;
-
 
49
    unsigned pp : 2;         /**< Page protection */
-
 
50
} phte_t;
-
 
51
 
-
 
52
extern void pht_refill(bool data, istate_t *istate);
-
 
53
 
32
 
54
#endif
33
#endif