Kumar Gala | 44a23cf | 2008-01-16 22:33:22 -0600 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2008 Freescale Semiconductor, Inc. |
| 3 | * |
| 4 | * (C) Copyright 2000 |
| 5 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 6 | * |
| 7 | * See file CREDITS for list of people who contributed to this |
| 8 | * project. |
| 9 | * |
| 10 | * This program is free software; you can redistribute it and/or |
| 11 | * modify it under the terms of the GNU General Public License as |
| 12 | * published by the Free Software Foundation; either version 2 of |
| 13 | * the License, or (at your option) any later version. |
| 14 | * |
| 15 | * This program is distributed in the hope that it will be useful, |
| 16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 18 | * GNU General Public License for more details. |
| 19 | * |
| 20 | * You should have received a copy of the GNU General Public License |
| 21 | * along with this program; if not, write to the Free Software |
| 22 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 23 | * MA 02111-1307 USA |
| 24 | */ |
| 25 | |
| 26 | #include <common.h> |
| 27 | #include <asm/processor.h> |
| 28 | #include <asm/mmu.h> |
Kumar Gala | ecf5b98 | 2008-12-16 14:59:20 -0600 | [diff] [blame] | 29 | #ifdef CONFIG_ADDR_MAP |
| 30 | #include <addr_map.h> |
| 31 | #endif |
| 32 | |
| 33 | DECLARE_GLOBAL_DATA_PTR; |
Kumar Gala | 44a23cf | 2008-01-16 22:33:22 -0600 | [diff] [blame] | 34 | |
| 35 | void set_tlb(u8 tlb, u32 epn, u64 rpn, |
| 36 | u8 perms, u8 wimge, |
| 37 | u8 ts, u8 esel, u8 tsize, u8 iprot) |
| 38 | { |
| 39 | u32 _mas0, _mas1, _mas2, _mas3, _mas7; |
| 40 | |
| 41 | _mas0 = FSL_BOOKE_MAS0(tlb, esel, 0); |
| 42 | _mas1 = FSL_BOOKE_MAS1(1, iprot, 0, ts, tsize); |
| 43 | _mas2 = FSL_BOOKE_MAS2(epn, wimge); |
| 44 | _mas3 = FSL_BOOKE_MAS3(rpn, 0, perms); |
| 45 | _mas7 = rpn >> 32; |
| 46 | |
| 47 | mtspr(MAS0, _mas0); |
| 48 | mtspr(MAS1, _mas1); |
| 49 | mtspr(MAS2, _mas2); |
| 50 | mtspr(MAS3, _mas3); |
| 51 | #ifdef CONFIG_ENABLE_36BIT_PHYS |
| 52 | mtspr(MAS7, _mas7); |
| 53 | #endif |
| 54 | asm volatile("isync;msync;tlbwe;isync"); |
Kumar Gala | ecf5b98 | 2008-12-16 14:59:20 -0600 | [diff] [blame] | 55 | |
| 56 | #ifdef CONFIG_ADDR_MAP |
| 57 | if ((tlb == 1) && (gd->flags & GD_FLG_RELOC)) |
| 58 | addrmap_set_entry(epn, rpn, (1UL << ((tsize * 2) + 10)), esel); |
| 59 | #endif |
Kumar Gala | 44a23cf | 2008-01-16 22:33:22 -0600 | [diff] [blame] | 60 | } |
| 61 | |
| 62 | void disable_tlb(u8 esel) |
| 63 | { |
| 64 | u32 _mas0, _mas1, _mas2, _mas3, _mas7; |
| 65 | |
| 66 | _mas0 = FSL_BOOKE_MAS0(1, esel, 0); |
| 67 | _mas1 = 0; |
| 68 | _mas2 = 0; |
| 69 | _mas3 = 0; |
| 70 | _mas7 = 0; |
| 71 | |
| 72 | mtspr(MAS0, _mas0); |
| 73 | mtspr(MAS1, _mas1); |
| 74 | mtspr(MAS2, _mas2); |
| 75 | mtspr(MAS3, _mas3); |
| 76 | #ifdef CONFIG_ENABLE_36BIT_PHYS |
| 77 | mtspr(MAS7, _mas7); |
| 78 | #endif |
| 79 | asm volatile("isync;msync;tlbwe;isync"); |
Kumar Gala | ecf5b98 | 2008-12-16 14:59:20 -0600 | [diff] [blame] | 80 | |
| 81 | #ifdef CONFIG_ADDR_MAP |
| 82 | if (gd->flags & GD_FLG_RELOC) |
| 83 | addrmap_set_entry(0, 0, 0, esel); |
| 84 | #endif |
Kumar Gala | 44a23cf | 2008-01-16 22:33:22 -0600 | [diff] [blame] | 85 | } |
| 86 | |
| 87 | void invalidate_tlb(u8 tlb) |
| 88 | { |
| 89 | if (tlb == 0) |
| 90 | mtspr(MMUCSR0, 0x4); |
| 91 | if (tlb == 1) |
| 92 | mtspr(MMUCSR0, 0x2); |
| 93 | } |
| 94 | |
| 95 | void init_tlbs(void) |
| 96 | { |
Kumar Gala | 44a23cf | 2008-01-16 22:33:22 -0600 | [diff] [blame] | 97 | int i; |
| 98 | |
| 99 | for (i = 0; i < num_tlb_entries; i++) { |
| 100 | set_tlb(tlb_table[i].tlb, tlb_table[i].epn, tlb_table[i].rpn, |
| 101 | tlb_table[i].perms, tlb_table[i].wimge, |
| 102 | tlb_table[i].ts, tlb_table[i].esel, tlb_table[i].tsize, |
| 103 | tlb_table[i].iprot); |
| 104 | } |
Kumar Gala | 44a23cf | 2008-01-16 22:33:22 -0600 | [diff] [blame] | 105 | |
| 106 | return ; |
| 107 | } |
Kumar Gala | 6fb1b73 | 2008-06-09 11:07:46 -0500 | [diff] [blame] | 108 | |
Kumar Gala | ecf5b98 | 2008-12-16 14:59:20 -0600 | [diff] [blame] | 109 | #ifdef CONFIG_ADDR_MAP |
| 110 | void init_addr_map(void) |
| 111 | { |
| 112 | int i; |
Kumar Gala | e393e2e | 2009-08-14 16:43:22 -0500 | [diff] [blame] | 113 | unsigned int max_cam = (mfspr(SPRN_TLB1CFG) >> 16) & 0xff; |
Kumar Gala | ecf5b98 | 2008-12-16 14:59:20 -0600 | [diff] [blame] | 114 | |
Kumar Gala | e393e2e | 2009-08-14 16:43:22 -0500 | [diff] [blame] | 115 | /* walk all the entries */ |
| 116 | for (i = 0; i < max_cam; i++) { |
| 117 | unsigned long epn; |
Wolfgang Denk | 963f2f6 | 2009-08-22 23:27:26 +0200 | [diff] [blame] | 118 | u32 tsize, _mas1; |
Kumar Gala | e393e2e | 2009-08-14 16:43:22 -0500 | [diff] [blame] | 119 | phys_addr_t rpn; |
| 120 | |
| 121 | mtspr(MAS0, FSL_BOOKE_MAS0(1, i, 0)); |
| 122 | |
| 123 | asm volatile("tlbre;isync"); |
| 124 | _mas1 = mfspr(MAS1); |
| 125 | |
| 126 | /* if the entry isn't valid skip it */ |
| 127 | if (!(_mas1 & MAS1_VALID)) |
Kumar Gala | ecf5b98 | 2008-12-16 14:59:20 -0600 | [diff] [blame] | 128 | continue; |
| 129 | |
Kumar Gala | e393e2e | 2009-08-14 16:43:22 -0500 | [diff] [blame] | 130 | tsize = (_mas1 >> 8) & 0xf; |
| 131 | epn = mfspr(MAS2) & MAS2_EPN; |
| 132 | rpn = mfspr(MAS3) & MAS3_RPN; |
| 133 | #ifdef CONFIG_ENABLE_36BIT_PHYS |
| 134 | rpn |= ((phys_addr_t)mfspr(MAS7)) << 32; |
| 135 | #endif |
| 136 | |
| 137 | addrmap_set_entry(epn, rpn, (1UL << ((tsize * 2) + 10)), i); |
Kumar Gala | ecf5b98 | 2008-12-16 14:59:20 -0600 | [diff] [blame] | 138 | } |
| 139 | |
| 140 | return ; |
| 141 | } |
| 142 | #endif |
| 143 | |
Haiying Wang | 9502643 | 2009-01-13 16:29:22 -0500 | [diff] [blame] | 144 | #ifndef CONFIG_SYS_DDR_TLB_START |
| 145 | #define CONFIG_SYS_DDR_TLB_START 8 |
| 146 | #endif |
| 147 | |
Kumar Gala | 6fb1b73 | 2008-06-09 11:07:46 -0500 | [diff] [blame] | 148 | unsigned int setup_ddr_tlbs(unsigned int memsize_in_meg) |
| 149 | { |
| 150 | unsigned int tlb_size; |
Kumar Gala | f8523cb | 2009-02-06 09:56:35 -0600 | [diff] [blame] | 151 | unsigned int ram_tlb_index = CONFIG_SYS_DDR_TLB_START; |
| 152 | unsigned int ram_tlb_address = (unsigned int)CONFIG_SYS_DDR_SDRAM_BASE; |
Fredrik Arnerup | 90d13b8 | 2009-06-02 16:27:10 -0500 | [diff] [blame] | 153 | unsigned int max_cam = (mfspr(SPRN_TLB1CFG) >> 16) & 0xf; |
Kumar Gala | f8523cb | 2009-02-06 09:56:35 -0600 | [diff] [blame] | 154 | u64 size, memsize = (u64)memsize_in_meg << 20; |
Kumar Gala | 6fb1b73 | 2008-06-09 11:07:46 -0500 | [diff] [blame] | 155 | |
Kumar Gala | f8523cb | 2009-02-06 09:56:35 -0600 | [diff] [blame] | 156 | size = min(memsize, CONFIG_MAX_MEM_MAPPED); |
Kumar Gala | 6fb1b73 | 2008-06-09 11:07:46 -0500 | [diff] [blame] | 157 | |
Kumar Gala | f8523cb | 2009-02-06 09:56:35 -0600 | [diff] [blame] | 158 | /* Convert (4^max) kB to (2^max) bytes */ |
| 159 | max_cam = max_cam * 2 + 10; |
Kumar Gala | 6fb1b73 | 2008-06-09 11:07:46 -0500 | [diff] [blame] | 160 | |
Kumar Gala | f8523cb | 2009-02-06 09:56:35 -0600 | [diff] [blame] | 161 | for (; size && ram_tlb_index < 16; ram_tlb_index++) { |
| 162 | u32 camsize = __ilog2_u64(size) & ~1U; |
| 163 | u32 align = __ilog2(ram_tlb_address) & ~1U; |
| 164 | |
| 165 | if (align == -2) align = max_cam; |
| 166 | if (camsize > align) |
| 167 | camsize = align; |
| 168 | |
| 169 | if (camsize > max_cam) |
| 170 | camsize = max_cam; |
| 171 | |
| 172 | tlb_size = (camsize - 10) / 2; |
| 173 | |
Kumar Gala | 6fb1b73 | 2008-06-09 11:07:46 -0500 | [diff] [blame] | 174 | set_tlb(1, ram_tlb_address, ram_tlb_address, |
| 175 | MAS3_SX|MAS3_SW|MAS3_SR, 0, |
| 176 | 0, ram_tlb_index, tlb_size, 1); |
| 177 | |
Kumar Gala | f8523cb | 2009-02-06 09:56:35 -0600 | [diff] [blame] | 178 | size -= 1ULL << camsize; |
| 179 | memsize -= 1ULL << camsize; |
| 180 | ram_tlb_address += 1UL << camsize; |
Kumar Gala | 6fb1b73 | 2008-06-09 11:07:46 -0500 | [diff] [blame] | 181 | } |
| 182 | |
Kumar Gala | f8523cb | 2009-02-06 09:56:35 -0600 | [diff] [blame] | 183 | if (memsize) |
Kumar Gala | d4b130d | 2009-06-11 23:40:34 -0500 | [diff] [blame] | 184 | print_size(memsize, " left unmapped\n"); |
Kumar Gala | f8523cb | 2009-02-06 09:56:35 -0600 | [diff] [blame] | 185 | |
Kumar Gala | 6fb1b73 | 2008-06-09 11:07:46 -0500 | [diff] [blame] | 186 | /* |
| 187 | * Confirm that the requested amount of memory was mapped. |
| 188 | */ |
| 189 | return memsize_in_meg; |
| 190 | } |