Rev 3149 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 3149 | Rev 4341 | ||
|---|---|---|---|
| Line 37... | Line 37... | ||
| 37 | 37 | ||
| 38 | #include <arch/interrupt.h> |
38 | #include <arch/interrupt.h> |
| 39 | #include <arch/types.h> |
39 | #include <arch/types.h> |
| 40 | #include <typedefs.h> |
40 | #include <typedefs.h> |
| 41 | 41 | ||
| - | 42 | #define WIMG_GUARDED 0x01 |
|
| - | 43 | #define WIMG_COHERENT 0x02 |
|
| - | 44 | #define WIMG_NO_CACHE 0x04 |
|
| - | 45 | #define WIMG_WRITETHRU 0x08 |
|
| - | 46 | ||
| 42 | typedef struct { |
47 | typedef struct { |
| 43 | unsigned v : 1; /**< Valid */ |
48 | unsigned v : 1; /**< Valid */ |
| 44 | unsigned vsid : 24; /**< Virtual Segment ID */ |
49 | unsigned vsid : 24; /**< Virtual Segment ID */ |
| 45 | unsigned h : 1; /**< Primary/secondary hash */ |
50 | unsigned h : 1; /**< Primary/secondary hash */ |
| 46 | unsigned api : 6; /**< Abbreviated Page Index */ |
51 | unsigned api : 6; /**< Abbreviated Page Index */ |
| Line 51... | Line 56... | ||
| 51 | unsigned wimg : 4; /**< Access control */ |
56 | unsigned wimg : 4; /**< Access control */ |
| 52 | unsigned reserved1 : 1; |
57 | unsigned reserved1 : 1; |
| 53 | unsigned pp : 2; /**< Page protection */ |
58 | unsigned pp : 2; /**< Page protection */ |
| 54 | } phte_t; |
59 | } phte_t; |
| 55 | 60 | ||
| - | 61 | typedef struct { |
|
| - | 62 | unsigned v : 1; |
|
| - | 63 | unsigned vsid : 24; |
|
| 56 | extern void pht_refill(int n, istate_t *istate); |
64 | unsigned reserved0 : 1; |
| - | 65 | unsigned api : 6; |
|
| - | 66 | } ptehi_t; |
|
| - | 67 | ||
| - | 68 | typedef struct { |
|
| - | 69 | unsigned rpn : 20; |
|
| - | 70 | unsigned xpn : 3; |
|
| 57 | extern bool pht_real_refill(int n, istate_t *istate) __attribute__ ((section("K_UNMAPPED_TEXT_START"))); |
71 | unsigned reserved0 : 1; |
| - | 72 | unsigned c : 1; |
|
| - | 73 | unsigned wimg : 4; |
|
| - | 74 | unsigned x : 1; |
|
| - | 75 | unsigned pp : 2; |
|
| - | 76 | } ptelo_t; |
|
| - | 77 | ||
| 58 | extern void pht_init(void); |
78 | extern void pht_init(void); |
| - | 79 | extern void pht_refill(int n, istate_t *istate); |
|
| - | 80 | extern bool pht_refill_real(int n, istate_t *istate) __attribute__ ((section("K_UNMAPPED_TEXT_START"))); |
|
| - | 81 | extern void tlb_refill_real(int n, uint32_t tlbmiss, ptehi_t ptehi, ptelo_t ptelo, istate_t *istate) __attribute__ ((section("K_UNMAPPED_TEXT_START"))); |
|
| 59 | 82 | ||
| 60 | #endif |
83 | #endif |
| 61 | 84 | ||
| 62 | /** @} |
85 | /** @} |
| 63 | */ |
86 | */ |