1 /*- 2 * Copyright (C) 2006 Semihalf, Marian Balakowicz <m8@semihalf.com> 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright 9 * notice, this list of conditions and the following disclaimer. 10 * 2. Redistributions in binary form must reproduce the above copyright 11 * notice, this list of conditions and the following disclaimer in the 12 * documentation and/or other materials provided with the distribution. 13 * 3. The name of the author may not be used to endorse or promote products 14 * derived from this software without specific prior written permission. 15 * 16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 17 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 18 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN 19 * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 20 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED 21 * TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 22 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF 23 * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING 24 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 25 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 26 * 27 * $FreeBSD$ 28 */ 29 30 #ifndef _MACHINE_TLB_H_ 31 #define _MACHINE_TLB_H_ 32 33 /* PowerPC E500 MAS registers */ 34 #define MAS0_TLBSEL(x) ((x << 28) & 0x10000000) 35 #define MAS0_ESEL(x) ((x << 16) & 0x000F0000) 36 37 #define MAS0_TLBSEL1 0x10000000 38 #define MAS0_TLBSEL0 0x00000000 39 #define MAS0_ESEL_TLB1MASK 0x000F0000 40 #define MAS0_ESEL_TLB0MASK 0x00030000 41 #define MAS0_ESEL_SHIFT 16 42 #define MAS0_NV_MASK 0x00000003 43 #define MAS0_NV_SHIFT 0 44 45 #define MAS1_VALID 0x80000000 46 #define MAS1_IPROT 0x40000000 47 #define MAS1_TID_MASK 0x00FF0000 48 #define MAS1_TID_SHIFT 16 49 #define MAS1_TS 0x00001000 50 #define MAS1_TSIZE_MASK 0x00000F00 51 #define MAS1_TSIZE_SHIFT 8 52 53 #define TLB_SIZE_4K 1 54 #define TLB_SIZE_16K 2 55 #define TLB_SIZE_64K 3 56 #define TLB_SIZE_256K 4 57 #define TLB_SIZE_1M 5 58 #define TLB_SIZE_4M 6 59 #define TLB_SIZE_16M 7 60 #define TLB_SIZE_64M 8 61 #define TLB_SIZE_256M 9 62 #define TLB_SIZE_1G 10 63 #define TLB_SIZE_4G 11 64 65 #define MAS2_EPN 0xFFFFF000 66 #define MAS2_EPN_SHIFT 12 67 #define MAS2_X0 0x00000040 68 #define MAS2_X1 0x00000020 69 #define MAS2_W 0x00000010 70 #define MAS2_I 0x00000008 71 #define MAS2_M 0x00000004 72 #define MAS2_G 0x00000002 73 #define MAS2_E 0x00000001 74 75 #define MAS3_RPN 0xFFFFF000 76 #define MAS3_RPN_SHIFT 12 77 #define MAS3_U0 0x00000200 78 #define MAS3_U1 0x00000100 79 #define MAS3_U2 0x00000080 80 #define MAS3_U3 0x00000040 81 #define MAS3_UX 0x00000020 82 #define MAS3_SX 0x00000010 83 #define MAS3_UW 0x00000008 84 #define MAS3_SW 0x00000004 85 #define MAS3_UR 0x00000002 86 #define MAS3_SR 0x00000001 87 88 #define MAS4_TLBSELD1 0x10000000 89 #define MAS4_TLBSELD0 0x00000000 90 #define MAS4_TIDSELD_MASK 0x00030000 91 #define MAS4_TIDSELD_SHIFT 16 92 #define MAS4_TSIZED_MASK 0x00000F00 93 #define MAS4_TSIZED_SHIFT 8 94 #define MAS4_X0D 0x00000040 95 #define MAS4_X1D 0x00000020 96 #define MAS4_WD 0x00000010 97 #define MAS4_ID 0x00000008 98 #define MAS4_MD 0x00000004 99 #define MAS4_GD 0x00000002 100 #define MAS4_ED 0x00000001 101 102 #define MAS6_SPID0_MASK 0x00FF0000 103 #define MAS6_SPID0_SHIFT 16 104 #define MAS6_SAS 0x00000001 105 106 #define MAS1_GETTID(mas1) (((mas1) & MAS1_TID_MASK) >> MAS1_TID_SHIFT) 107 108 #define MAS2_TLB0_ENTRY_IDX_MASK 0x0007f000 109 #define MAS2_TLB0_ENTRY_IDX_SHIFT 12 110 111 /* 112 * Maximum number of TLB1 entries used for a permanat 113 * mapping of kernel region (kernel image plus statically 114 * allocated data. 115 */ 116 #define KERNEL_REGION_MAX_TLB_ENTRIES 4 117 118 #define _TLB_ENTRY_IO (MAS2_I | MAS2_G) 119 #define _TLB_ENTRY_MEM (0) 120 121 #define KERNEL_TID 0 /* TLB TID to use for kernel translations */ 122 #define TID_KRESERVED 1 /* Number of TIDs reserved for kernel */ 123 #define TID_URESERVED 0 /* Number of TIDs reserve for user */ 124 #define TID_MIN (TID_KRESERVED + TID_URESERVED) 125 #define TID_MAX 255 126 127 #if !defined(LOCORE) 128 typedef struct tlb_entry { 129 u_int32_t mas1; 130 u_int32_t mas2; 131 u_int32_t mas3; 132 } tlb_entry_t; 133 134 typedef u_int8_t tlbtid_t; 135 struct pmap; 136 137 void tlb1_inval_entry(unsigned int); 138 void tlb1_init(vm_offset_t); 139 void tlb1_print_entries(void); 140 void tlb1_print_tlbentries(void); 141 142 #endif /* !LOCORE */ 143 144 #endif /* _MACHINE_TLB_H_ */ 145