Rev 3228 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 3228 | Rev 3230 | ||
---|---|---|---|
Line 47... | Line 47... | ||
47 | #endif |
47 | #endif |
48 | 48 | ||
49 | #define TLB_WIRED 1 |
49 | #define TLB_WIRED 1 |
50 | #define TLB_KSTACK_WIRED_INDEX 0 |
50 | #define TLB_KSTACK_WIRED_INDEX 0 |
51 | 51 | ||
- | 52 | #define TLB_PAGE_MASK_4K (0x000 << 13) |
|
52 | #define TLB_PAGE_MASK_16K (0x3 << 13) |
53 | #define TLB_PAGE_MASK_16K (0x003 << 13) |
- | 54 | #define TLB_PAGE_MASK_64K (0x00f << 13) |
|
- | 55 | #define TLB_PAGE_MASK_256K (0x03f << 13) |
|
- | 56 | #define TLB_PAGE_MASK_1M (0x0ff << 13) |
|
- | 57 | #define TLB_PAGE_MASK_4M (0x3ff << 13) |
|
- | 58 | #define TLB_PAGE_MASK_16M (0xfff << 13) |
|
53 | 59 | ||
54 | #define PAGE_UNCACHED 2 |
60 | #define PAGE_UNCACHED 2 |
55 | #define PAGE_CACHEABLE_EXC_WRITE 5 |
61 | #define PAGE_CACHEABLE_EXC_WRITE 5 |
56 | 62 | ||
57 | typedef union { |
63 | typedef union { |