blob: 4f6778c720dbfdac4d493999c13a7a09585bd713 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Kumar Gala44a23cf2008-01-16 22:33:22 -06002/*
Kumar Galaebc73942011-02-03 20:21:42 -06003 * Copyright 2008-2011 Freescale Semiconductor, Inc.
Kumar Gala44a23cf2008-01-16 22:33:22 -06004 *
5 * (C) Copyright 2000
6 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
Kumar Gala44a23cf2008-01-16 22:33:22 -06007 */
8
9#include <common.h>
Ovidiu Panait2fd81be2022-01-01 19:13:29 +020010#include <init.h>
Simon Glasscd93d622020-05-10 11:40:13 -060011#include <asm/bitops.h>
Simon Glass401d1c42020-10-30 21:38:53 -060012#include <asm/global_data.h>
Kumar Gala44a23cf2008-01-16 22:33:22 -060013#include <asm/processor.h>
14#include <asm/mmu.h>
Kumar Galaecf5b982008-12-16 14:59:20 -060015#ifdef CONFIG_ADDR_MAP
16#include <addr_map.h>
17#endif
18
Fabio Estevam2d2f4902015-11-05 12:43:40 -020019#include <linux/log2.h>
20
Kumar Galaecf5b982008-12-16 14:59:20 -060021DECLARE_GLOBAL_DATA_PTR;
Kumar Gala44a23cf2008-01-16 22:33:22 -060022
Kumar Galab2eec282009-09-11 12:32:01 -050023void invalidate_tlb(u8 tlb)
24{
25 if (tlb == 0)
26 mtspr(MMUCSR0, 0x4);
27 if (tlb == 1)
28 mtspr(MMUCSR0, 0x2);
29}
30
Alexander Graffa08d392014-04-11 17:09:45 +020031__weak void init_tlbs(void)
Kumar Galab2eec282009-09-11 12:32:01 -050032{
33 int i;
34
35 for (i = 0; i < num_tlb_entries; i++) {
36 write_tlb(tlb_table[i].mas0,
37 tlb_table[i].mas1,
38 tlb_table[i].mas2,
39 tlb_table[i].mas3,
40 tlb_table[i].mas7);
41 }
42
43 return ;
44}
45
Ying Zhang0151d992013-08-16 15:16:10 +080046#if !defined(CONFIG_NAND_SPL) && \
Tom Rinib35316f2022-05-13 12:26:35 -040047 (!defined(CONFIG_SPL_BUILD) || !CONFIG_IS_ENABLED(INIT_MINIMAL))
Becky Bruce4e63df32010-06-17 11:37:21 -050048void read_tlbcam_entry(int idx, u32 *valid, u32 *tsize, unsigned long *epn,
49 phys_addr_t *rpn)
50{
51 u32 _mas1;
52
53 mtspr(MAS0, FSL_BOOKE_MAS0(1, idx, 0));
54 asm volatile("tlbre;isync");
55 _mas1 = mfspr(MAS1);
56
57 *valid = (_mas1 & MAS1_VALID);
Scott Wood31d084d2013-01-18 15:45:58 +000058 *tsize = (_mas1 >> 7) & 0x1f;
Becky Bruce4e63df32010-06-17 11:37:21 -050059 *epn = mfspr(MAS2) & MAS2_EPN;
60 *rpn = mfspr(MAS3) & MAS3_RPN;
61#ifdef CONFIG_ENABLE_36BIT_PHYS
62 *rpn |= ((u64)mfspr(MAS7)) << 32;
63#endif
64}
65
Becky Bruce70e02bc2010-06-17 11:37:22 -050066void print_tlbcam(void)
67{
68 int i;
69 unsigned int num_cam = mfspr(SPRN_TLB1CFG) & 0xfff;
70
71 /* walk all the entries */
72 printf("TLBCAM entries\n");
73 for (i = 0; i < num_cam; i++) {
74 unsigned long epn;
75 u32 tsize, valid;
76 phys_addr_t rpn;
77
78 read_tlbcam_entry(i, &valid, &tsize, &epn, &rpn);
79 printf("entry %02d: V: %d EPN 0x%08x RPN 0x%08llx size:",
80 i, (valid == 0) ? 0 : 1, (unsigned int)epn,
81 (unsigned long long)rpn);
82 print_size(TSIZE_TO_BYTES(tsize), "\n");
83 }
84}
85
Kumar Gala94e94112009-11-12 10:26:16 -060086static inline void use_tlb_cam(u8 idx)
87{
88 int i = idx / 32;
89 int bit = idx % 32;
90
Simon Glass7c80c6c2012-12-13 20:48:52 +000091 gd->arch.used_tlb_cams[i] |= (1 << bit);
Kumar Gala94e94112009-11-12 10:26:16 -060092}
93
94static inline void free_tlb_cam(u8 idx)
95{
96 int i = idx / 32;
97 int bit = idx % 32;
98
Simon Glass7c80c6c2012-12-13 20:48:52 +000099 gd->arch.used_tlb_cams[i] &= ~(1 << bit);
Kumar Gala94e94112009-11-12 10:26:16 -0600100}
101
102void init_used_tlb_cams(void)
103{
104 int i;
105 unsigned int num_cam = mfspr(SPRN_TLB1CFG) & 0xfff;
106
107 for (i = 0; i < ((CONFIG_SYS_NUM_TLBCAMS+31)/32); i++)
Simon Glass7c80c6c2012-12-13 20:48:52 +0000108 gd->arch.used_tlb_cams[i] = 0;
Kumar Gala94e94112009-11-12 10:26:16 -0600109
110 /* walk all the entries */
111 for (i = 0; i < num_cam; i++) {
Kumar Gala94e94112009-11-12 10:26:16 -0600112 mtspr(MAS0, FSL_BOOKE_MAS0(1, i, 0));
Kumar Gala94e94112009-11-12 10:26:16 -0600113 asm volatile("tlbre;isync");
Becky Bruce4e63df32010-06-17 11:37:21 -0500114 if (mfspr(MAS1) & MAS1_VALID)
Kumar Gala94e94112009-11-12 10:26:16 -0600115 use_tlb_cam(i);
116 }
117}
118
119int find_free_tlbcam(void)
120{
121 int i;
122 u32 idx;
123
124 for (i = 0; i < ((CONFIG_SYS_NUM_TLBCAMS+31)/32); i++) {
Simon Glass7c80c6c2012-12-13 20:48:52 +0000125 idx = ffz(gd->arch.used_tlb_cams[i]);
Kumar Gala94e94112009-11-12 10:26:16 -0600126
127 if (idx != 32)
128 break;
129 }
130
131 idx += i * 32;
132
133 if (idx >= CONFIG_SYS_NUM_TLBCAMS)
134 return -1;
135
136 return idx;
137}
138
Kumar Gala44a23cf2008-01-16 22:33:22 -0600139void set_tlb(u8 tlb, u32 epn, u64 rpn,
140 u8 perms, u8 wimge,
141 u8 ts, u8 esel, u8 tsize, u8 iprot)
142{
143 u32 _mas0, _mas1, _mas2, _mas3, _mas7;
144
Kumar Gala94e94112009-11-12 10:26:16 -0600145 if (tlb == 1)
146 use_tlb_cam(esel);
147
Scott Wood31d084d2013-01-18 15:45:58 +0000148 if ((mfspr(SPRN_MMUCFG) & MMUCFG_MAVN) == MMUCFG_MAVN_V1 &&
149 tsize & 1) {
150 printf("%s: bad tsize %d on entry %d at 0x%08x\n",
151 __func__, tsize, tlb, epn);
152 return;
153 }
154
Kumar Gala44a23cf2008-01-16 22:33:22 -0600155 _mas0 = FSL_BOOKE_MAS0(tlb, esel, 0);
156 _mas1 = FSL_BOOKE_MAS1(1, iprot, 0, ts, tsize);
157 _mas2 = FSL_BOOKE_MAS2(epn, wimge);
158 _mas3 = FSL_BOOKE_MAS3(rpn, 0, perms);
Kumar Galad30f9042009-09-11 11:27:00 -0500159 _mas7 = FSL_BOOKE_MAS7(rpn);
Kumar Gala44a23cf2008-01-16 22:33:22 -0600160
Kumar Galad30f9042009-09-11 11:27:00 -0500161 write_tlb(_mas0, _mas1, _mas2, _mas3, _mas7);
Kumar Galaecf5b982008-12-16 14:59:20 -0600162
163#ifdef CONFIG_ADDR_MAP
164 if ((tlb == 1) && (gd->flags & GD_FLG_RELOC))
Becky Bruce4e63df32010-06-17 11:37:21 -0500165 addrmap_set_entry(epn, rpn, TSIZE_TO_BYTES(tsize), esel);
Kumar Galaecf5b982008-12-16 14:59:20 -0600166#endif
Kumar Gala44a23cf2008-01-16 22:33:22 -0600167}
168
169void disable_tlb(u8 esel)
170{
Kumar Gala3d6d9c32011-11-09 09:59:32 -0600171 u32 _mas0, _mas1, _mas2, _mas3;
Kumar Gala44a23cf2008-01-16 22:33:22 -0600172
Kumar Gala94e94112009-11-12 10:26:16 -0600173 free_tlb_cam(esel);
174
Kumar Gala44a23cf2008-01-16 22:33:22 -0600175 _mas0 = FSL_BOOKE_MAS0(1, esel, 0);
176 _mas1 = 0;
177 _mas2 = 0;
178 _mas3 = 0;
Kumar Gala44a23cf2008-01-16 22:33:22 -0600179
180 mtspr(MAS0, _mas0);
181 mtspr(MAS1, _mas1);
182 mtspr(MAS2, _mas2);
183 mtspr(MAS3, _mas3);
184#ifdef CONFIG_ENABLE_36BIT_PHYS
Kumar Gala3d6d9c32011-11-09 09:59:32 -0600185 mtspr(MAS7, 0);
Kumar Gala44a23cf2008-01-16 22:33:22 -0600186#endif
187 asm volatile("isync;msync;tlbwe;isync");
Kumar Galaecf5b982008-12-16 14:59:20 -0600188
189#ifdef CONFIG_ADDR_MAP
190 if (gd->flags & GD_FLG_RELOC)
191 addrmap_set_entry(0, 0, 0, esel);
192#endif
Kumar Gala44a23cf2008-01-16 22:33:22 -0600193}
194
Kumar Galac2287af2009-09-03 08:20:24 -0500195static void tlbsx (const volatile unsigned *addr)
196{
197 __asm__ __volatile__ ("tlbsx 0,%0" : : "r" (addr), "m" (*addr));
198}
199
200/* return -1 if we didn't find anything */
201int find_tlb_idx(void *addr, u8 tlbsel)
202{
203 u32 _mas0, _mas1;
204
205 /* zero out Search PID, AS */
206 mtspr(MAS6, 0);
207
208 tlbsx(addr);
209
210 _mas0 = mfspr(MAS0);
211 _mas1 = mfspr(MAS1);
212
213 /* we found something, and its in the TLB we expect */
214 if ((MAS1_VALID & _mas1) &&
215 (MAS0_TLBSEL(tlbsel) == (_mas0 & MAS0_TLBSEL_MSK))) {
216 return ((_mas0 & MAS0_ESEL_MSK) >> 16);
217 }
218
219 return -1;
220}
221
Kumar Galaecf5b982008-12-16 14:59:20 -0600222#ifdef CONFIG_ADDR_MAP
Ovidiu Panait1b212bb2022-01-01 19:13:28 +0200223int init_addr_map(void)
Kumar Galaecf5b982008-12-16 14:59:20 -0600224{
225 int i;
Kumar Galacdbdbe62009-11-13 08:52:21 -0600226 unsigned int num_cam = mfspr(SPRN_TLB1CFG) & 0xfff;
Kumar Galaecf5b982008-12-16 14:59:20 -0600227
Kumar Galae393e2e2009-08-14 16:43:22 -0500228 /* walk all the entries */
Kumar Galacdbdbe62009-11-13 08:52:21 -0600229 for (i = 0; i < num_cam; i++) {
Kumar Galae393e2e2009-08-14 16:43:22 -0500230 unsigned long epn;
Becky Bruce4e63df32010-06-17 11:37:21 -0500231 u32 tsize, valid;
Kumar Galae393e2e2009-08-14 16:43:22 -0500232 phys_addr_t rpn;
233
Becky Bruce4e63df32010-06-17 11:37:21 -0500234 read_tlbcam_entry(i, &valid, &tsize, &epn, &rpn);
235 if (valid & MAS1_VALID)
236 addrmap_set_entry(epn, rpn, TSIZE_TO_BYTES(tsize), i);
Kumar Galaecf5b982008-12-16 14:59:20 -0600237 }
238
Ovidiu Panait1b212bb2022-01-01 19:13:28 +0200239 return 0;
Kumar Galaecf5b982008-12-16 14:59:20 -0600240}
241#endif
242
Alexander Graff29f8042014-04-11 17:09:43 +0200243uint64_t tlb_map_range(ulong v_addr, phys_addr_t p_addr, uint64_t size,
244 enum tlb_map_type map_type)
Kumar Gala6fb1b732008-06-09 11:07:46 -0500245{
Kumar Gala355f4f82009-11-13 09:04:19 -0600246 int i;
Kumar Gala6fb1b732008-06-09 11:07:46 -0500247 unsigned int tlb_size;
Alexander Graff29f8042014-04-11 17:09:43 +0200248 unsigned int wimge;
249 unsigned int perm;
Scott Wood31d084d2013-01-18 15:45:58 +0000250 unsigned int max_cam, tsize_mask;
Kumar Gala6fb1b732008-06-09 11:07:46 -0500251
Alexander Graff29f8042014-04-11 17:09:43 +0200252 if (map_type == TLB_MAP_RAM) {
253 perm = MAS3_SX|MAS3_SW|MAS3_SR;
254 wimge = MAS2_M;
Becky Bruce6b1ef2a2010-12-17 17:17:55 -0600255#ifdef CONFIG_SYS_PPC_DDR_WIMGE
Alexander Graff29f8042014-04-11 17:09:43 +0200256 wimge = CONFIG_SYS_PPC_DDR_WIMGE;
Becky Bruce6b1ef2a2010-12-17 17:17:55 -0600257#endif
Alexander Graff29f8042014-04-11 17:09:43 +0200258 } else {
259 perm = MAS3_SW|MAS3_SR;
260 wimge = MAS2_I|MAS2_G;
261 }
262
Kumar Gala50cf3d12011-10-31 22:13:26 -0500263 if ((mfspr(SPRN_MMUCFG) & MMUCFG_MAVN) == MMUCFG_MAVN_V1) {
264 /* Convert (4^max) kB to (2^max) bytes */
265 max_cam = ((mfspr(SPRN_TLB1CFG) >> 16) & 0xf) * 2 + 10;
Scott Wood31d084d2013-01-18 15:45:58 +0000266 tsize_mask = ~1U;
Kumar Gala50cf3d12011-10-31 22:13:26 -0500267 } else {
268 /* Convert (2^max) kB to (2^max) bytes */
269 max_cam = __ilog2(mfspr(SPRN_TLB1PS)) + 10;
Scott Wood31d084d2013-01-18 15:45:58 +0000270 tsize_mask = ~0U;
Kumar Gala50cf3d12011-10-31 22:13:26 -0500271 }
Kumar Gala6fb1b732008-06-09 11:07:46 -0500272
Kumar Gala355f4f82009-11-13 09:04:19 -0600273 for (i = 0; size && i < 8; i++) {
Alexander Graff29f8042014-04-11 17:09:43 +0200274 int tlb_index = find_free_tlbcam();
Scott Wood31d084d2013-01-18 15:45:58 +0000275 u32 camsize = __ilog2_u64(size) & tsize_mask;
Alexander Graff29f8042014-04-11 17:09:43 +0200276 u32 align = __ilog2(v_addr) & tsize_mask;
Kumar Galaf8523cb2009-02-06 09:56:35 -0600277
Alexander Graff29f8042014-04-11 17:09:43 +0200278 if (tlb_index == -1)
Kumar Gala355f4f82009-11-13 09:04:19 -0600279 break;
280
Kumar Galaf8523cb2009-02-06 09:56:35 -0600281 if (align == -2) align = max_cam;
282 if (camsize > align)
283 camsize = align;
284
285 if (camsize > max_cam)
286 camsize = max_cam;
287
Scott Wood31d084d2013-01-18 15:45:58 +0000288 tlb_size = camsize - 10;
Kumar Galaf8523cb2009-02-06 09:56:35 -0600289
Alexander Graff29f8042014-04-11 17:09:43 +0200290 set_tlb(1, v_addr, p_addr, perm, wimge,
291 0, tlb_index, tlb_size, 1);
Kumar Gala6fb1b732008-06-09 11:07:46 -0500292
Kumar Galaf8523cb2009-02-06 09:56:35 -0600293 size -= 1ULL << camsize;
Alexander Graff29f8042014-04-11 17:09:43 +0200294 v_addr += 1UL << camsize;
York Sunc02ce6e2010-09-28 15:20:32 -0700295 p_addr += 1UL << camsize;
Kumar Gala6fb1b732008-06-09 11:07:46 -0500296 }
297
Alexander Graff29f8042014-04-11 17:09:43 +0200298 return size;
299}
300
301unsigned int setup_ddr_tlbs_phys(phys_addr_t p_addr,
302 unsigned int memsize_in_meg)
303{
304 unsigned int ram_tlb_address = (unsigned int)CONFIG_SYS_DDR_SDRAM_BASE;
305 u64 memsize = (u64)memsize_in_meg << 20;
York Sun0ccee4e2014-12-02 11:21:09 -0800306 u64 size;
Alexander Graff29f8042014-04-11 17:09:43 +0200307
York Sun0ccee4e2014-12-02 11:21:09 -0800308 size = min(memsize, (u64)CONFIG_MAX_MEM_MAPPED);
309 size = tlb_map_range(ram_tlb_address, p_addr, size, TLB_MAP_RAM);
Alexander Graff29f8042014-04-11 17:09:43 +0200310
York Sun0ccee4e2014-12-02 11:21:09 -0800311 if (size || memsize > CONFIG_MAX_MEM_MAPPED) {
312 print_size(memsize > CONFIG_MAX_MEM_MAPPED ?
313 memsize - CONFIG_MAX_MEM_MAPPED + size : size,
314 " left unmapped\n");
315 }
Alexander Graff29f8042014-04-11 17:09:43 +0200316
Kumar Gala6fb1b732008-06-09 11:07:46 -0500317 return memsize_in_meg;
318}
York Sunc02ce6e2010-09-28 15:20:32 -0700319
320unsigned int setup_ddr_tlbs(unsigned int memsize_in_meg)
321{
322 return
323 setup_ddr_tlbs_phys(CONFIG_SYS_DDR_SDRAM_BASE, memsize_in_meg);
324}
Becky Bruce9cdfe282011-07-18 18:49:15 -0500325
326/* Invalidate the DDR TLBs for the requested size */
327void clear_ddr_tlbs_phys(phys_addr_t p_addr, unsigned int memsize_in_meg)
328{
329 u32 vstart = CONFIG_SYS_DDR_SDRAM_BASE;
330 unsigned long epn;
331 u32 tsize, valid, ptr;
332 phys_addr_t rpn = 0;
333 int ddr_esel;
334 u64 memsize = (u64)memsize_in_meg << 20;
335
336 ptr = vstart;
337
338 while (ptr < (vstart + memsize)) {
339 ddr_esel = find_tlb_idx((void *)ptr, 1);
340 if (ddr_esel != -1) {
341 read_tlbcam_entry(ddr_esel, &valid, &tsize, &epn, &rpn);
342 disable_tlb(ddr_esel);
343 }
344 ptr += TSIZE_TO_BYTES(tsize);
345 }
346}
347
348void clear_ddr_tlbs(unsigned int memsize_in_meg)
349{
350 clear_ddr_tlbs_phys(CONFIG_SYS_DDR_SDRAM_BASE, memsize_in_meg);
351}
352
353
Scott Woodc97cd1b2012-09-20 19:02:18 -0500354#endif /* not SPL */