blob: 959b510c5ffb83da7653625a9e4a4cd3122f5555 [file] [log] [blame]
Bernd Schmidt29440a22007-07-12 16:25:29 +08001/*
2 * Blackfin CPLB initialization
3 *
4 * Copyright 2004-2007 Analog Devices Inc.
5 *
6 * Bugs: Enter bugs at http://blackfin.uclinux.org/
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, see the file COPYING, or write
20 * to the Free Software Foundation, Inc.,
21 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
22 */
23#include <linux/module.h>
24
25#include <asm/blackfin.h>
Robin Getz3bebca22007-10-10 23:55:26 +080026#include <asm/cplb.h>
Bernd Schmidt29440a22007-07-12 16:25:29 +080027#include <asm/cplbinit.h>
28
Mike Frysinger81a487a2007-11-21 15:55:45 +080029u_long icplb_table[MAX_CPLBS + 1];
30u_long dcplb_table[MAX_CPLBS + 1];
Bernd Schmidt29440a22007-07-12 16:25:29 +080031
32#ifdef CONFIG_CPLB_SWITCH_TAB_L1
Mike Frysinger81a487a2007-11-21 15:55:45 +080033# define PDT_ATTR __attribute__((l1_data))
Bernd Schmidt29440a22007-07-12 16:25:29 +080034#else
Mike Frysinger81a487a2007-11-21 15:55:45 +080035# define PDT_ATTR
36#endif
Bernd Schmidt29440a22007-07-12 16:25:29 +080037
Mike Frysinger81a487a2007-11-21 15:55:45 +080038u_long ipdt_table[MAX_SWITCH_I_CPLBS + 1] PDT_ATTR;
39u_long dpdt_table[MAX_SWITCH_D_CPLBS + 1] PDT_ATTR;
Bernd Schmidt29440a22007-07-12 16:25:29 +080040
41#ifdef CONFIG_CPLB_INFO
Mike Frysinger81a487a2007-11-21 15:55:45 +080042u_long ipdt_swapcount_table[MAX_SWITCH_I_CPLBS] PDT_ATTR;
43u_long dpdt_swapcount_table[MAX_SWITCH_D_CPLBS] PDT_ATTR;
44#endif
Bernd Schmidt29440a22007-07-12 16:25:29 +080045
46struct s_cplb {
47 struct cplb_tab init_i;
48 struct cplb_tab init_d;
49 struct cplb_tab switch_i;
50 struct cplb_tab switch_d;
51};
52
Robin Getz3bebca22007-10-10 23:55:26 +080053#if defined(CONFIG_BFIN_DCACHE) || defined(CONFIG_BFIN_ICACHE)
Bernd Schmidt29440a22007-07-12 16:25:29 +080054static struct cplb_desc cplb_data[] = {
55 {
56 .start = 0,
57 .end = SIZE_1K,
58 .psize = SIZE_1K,
59 .attr = INITIAL_T | SWITCH_T | I_CPLB | D_CPLB,
60 .i_conf = SDRAM_OOPS,
61 .d_conf = SDRAM_OOPS,
62#if defined(CONFIG_DEBUG_HUNT_FOR_ZERO)
63 .valid = 1,
64#else
65 .valid = 0,
66#endif
67 .name = "ZERO Pointer Saveguard",
68 },
69 {
70 .start = L1_CODE_START,
71 .end = L1_CODE_START + L1_CODE_LENGTH,
72 .psize = SIZE_4M,
73 .attr = INITIAL_T | SWITCH_T | I_CPLB,
74 .i_conf = L1_IMEMORY,
75 .d_conf = 0,
76 .valid = 1,
77 .name = "L1 I-Memory",
78 },
79 {
80 .start = L1_DATA_A_START,
81 .end = L1_DATA_B_START + L1_DATA_B_LENGTH,
82 .psize = SIZE_4M,
83 .attr = INITIAL_T | SWITCH_T | D_CPLB,
84 .i_conf = 0,
85 .d_conf = L1_DMEMORY,
86#if ((L1_DATA_A_LENGTH > 0) || (L1_DATA_B_LENGTH > 0))
87 .valid = 1,
88#else
89 .valid = 0,
90#endif
91 .name = "L1 D-Memory",
92 },
93 {
94 .start = 0,
95 .end = 0, /* dynamic */
96 .psize = 0,
97 .attr = INITIAL_T | SWITCH_T | I_CPLB | D_CPLB,
98 .i_conf = SDRAM_IGENERIC,
99 .d_conf = SDRAM_DGENERIC,
100 .valid = 1,
101 .name = "SDRAM Kernel",
102 },
103 {
104 .start = 0, /* dynamic */
105 .end = 0, /* dynamic */
106 .psize = 0,
107 .attr = INITIAL_T | SWITCH_T | D_CPLB,
108 .i_conf = SDRAM_IGENERIC,
109 .d_conf = SDRAM_DNON_CHBL,
110 .valid = 1,
111 .name = "SDRAM RAM MTD",
112 },
113 {
114 .start = 0, /* dynamic */
115 .end = 0, /* dynamic */
116 .psize = SIZE_1M,
117 .attr = INITIAL_T | SWITCH_T | D_CPLB,
118 .d_conf = SDRAM_DNON_CHBL,
119 .valid = 1,
120 .name = "SDRAM Uncached DMA ZONE",
121 },
122 {
123 .start = 0, /* dynamic */
124 .end = 0, /* dynamic */
125 .psize = 0,
126 .attr = SWITCH_T | D_CPLB,
127 .i_conf = 0, /* dynamic */
128 .d_conf = 0, /* dynamic */
129 .valid = 1,
130 .name = "SDRAM Reserved Memory",
131 },
132 {
133 .start = ASYNC_BANK0_BASE,
134 .end = ASYNC_BANK3_BASE + ASYNC_BANK3_SIZE,
135 .psize = 0,
136 .attr = SWITCH_T | D_CPLB,
137 .d_conf = SDRAM_EBIU,
138 .valid = 1,
139 .name = "ASYNC Memory",
140 },
141 {
142#if defined(CONFIG_BF561)
143 .start = L2_SRAM,
144 .end = L2_SRAM_END,
145 .psize = SIZE_1M,
146 .attr = SWITCH_T | D_CPLB,
147 .i_conf = L2_MEMORY,
148 .d_conf = L2_MEMORY,
149 .valid = 1,
150#else
151 .valid = 0,
152#endif
153 .name = "L2 Memory",
154 }
155};
156
157static u16 __init lock_kernel_check(u32 start, u32 end)
158{
Robin Getz6a3f0b42007-11-15 15:10:48 +0800159 if ((end <= (u32) _end && end >= (u32)_stext) ||
160 (start <= (u32) _end && start >= (u32)_stext))
Bernd Schmidt29440a22007-07-12 16:25:29 +0800161 return IN_KERNEL;
162 return 0;
163}
164
165static unsigned short __init
166fill_cplbtab(struct cplb_tab *table,
167 unsigned long start, unsigned long end,
168 unsigned long block_size, unsigned long cplb_data)
169{
170 int i;
171
172 switch (block_size) {
173 case SIZE_4M:
174 i = 3;
175 break;
176 case SIZE_1M:
177 i = 2;
178 break;
179 case SIZE_4K:
180 i = 1;
181 break;
182 case SIZE_1K:
183 default:
184 i = 0;
185 break;
186 }
187
188 cplb_data = (cplb_data & ~(3 << 16)) | (i << 16);
189
190 while ((start < end) && (table->pos < table->size)) {
191
192 table->tab[table->pos++] = start;
193
194 if (lock_kernel_check(start, start + block_size) == IN_KERNEL)
195 table->tab[table->pos++] =
196 cplb_data | CPLB_LOCK | CPLB_DIRTY;
197 else
198 table->tab[table->pos++] = cplb_data;
199
200 start += block_size;
201 }
202 return 0;
203}
204
205static unsigned short __init
206close_cplbtab(struct cplb_tab *table)
207{
208
209 while (table->pos < table->size) {
210
211 table->tab[table->pos++] = 0;
212 table->tab[table->pos++] = 0; /* !CPLB_VALID */
213 }
214 return 0;
215}
216
217/* helper function */
218static void __fill_code_cplbtab(struct cplb_tab *t, int i, u32 a_start, u32 a_end)
219{
220 if (cplb_data[i].psize) {
221 fill_cplbtab(t,
222 cplb_data[i].start,
223 cplb_data[i].end,
224 cplb_data[i].psize,
225 cplb_data[i].i_conf);
226 } else {
Robin Getz3bebca22007-10-10 23:55:26 +0800227#if defined(CONFIG_BFIN_ICACHE)
Mike Frysinger1aafd902007-07-25 11:19:14 +0800228 if (ANOMALY_05000263 && i == SDRAM_KERN) {
Bernd Schmidt29440a22007-07-12 16:25:29 +0800229 fill_cplbtab(t,
230 cplb_data[i].start,
231 cplb_data[i].end,
232 SIZE_4M,
233 cplb_data[i].i_conf);
234 } else
235#endif
236 {
237 fill_cplbtab(t,
238 cplb_data[i].start,
239 a_start,
240 SIZE_1M,
241 cplb_data[i].i_conf);
242 fill_cplbtab(t,
243 a_start,
244 a_end,
245 SIZE_4M,
246 cplb_data[i].i_conf);
247 fill_cplbtab(t, a_end,
248 cplb_data[i].end,
249 SIZE_1M,
250 cplb_data[i].i_conf);
251 }
252 }
253}
254
255static void __fill_data_cplbtab(struct cplb_tab *t, int i, u32 a_start, u32 a_end)
256{
257 if (cplb_data[i].psize) {
258 fill_cplbtab(t,
259 cplb_data[i].start,
260 cplb_data[i].end,
261 cplb_data[i].psize,
262 cplb_data[i].d_conf);
263 } else {
264 fill_cplbtab(t,
265 cplb_data[i].start,
266 a_start, SIZE_1M,
267 cplb_data[i].d_conf);
268 fill_cplbtab(t, a_start,
269 a_end, SIZE_4M,
270 cplb_data[i].d_conf);
271 fill_cplbtab(t, a_end,
272 cplb_data[i].end,
273 SIZE_1M,
274 cplb_data[i].d_conf);
275 }
276}
277
278void __init generate_cpl_tables(void)
279{
280
281 u16 i, j, process;
282 u32 a_start, a_end, as, ae, as_1m;
283
284 struct cplb_tab *t_i = NULL;
285 struct cplb_tab *t_d = NULL;
286 struct s_cplb cplb;
287
288 cplb.init_i.size = MAX_CPLBS;
289 cplb.init_d.size = MAX_CPLBS;
290 cplb.switch_i.size = MAX_SWITCH_I_CPLBS;
291 cplb.switch_d.size = MAX_SWITCH_D_CPLBS;
292
293 cplb.init_i.pos = 0;
294 cplb.init_d.pos = 0;
295 cplb.switch_i.pos = 0;
296 cplb.switch_d.pos = 0;
297
298 cplb.init_i.tab = icplb_table;
299 cplb.init_d.tab = dcplb_table;
300 cplb.switch_i.tab = ipdt_table;
301 cplb.switch_d.tab = dpdt_table;
302
303 cplb_data[SDRAM_KERN].end = memory_end;
304
305#ifdef CONFIG_MTD_UCLINUX
306 cplb_data[SDRAM_RAM_MTD].start = memory_mtd_start;
307 cplb_data[SDRAM_RAM_MTD].end = memory_mtd_start + mtd_size;
308 cplb_data[SDRAM_RAM_MTD].valid = mtd_size > 0;
309# if defined(CONFIG_ROMFS_FS)
310 cplb_data[SDRAM_RAM_MTD].attr |= I_CPLB;
311
312 /*
313 * The ROMFS_FS size is often not multiple of 1MB.
314 * This can cause multiple CPLB sets covering the same memory area.
315 * This will then cause multiple CPLB hit exceptions.
316 * Workaround: We ensure a contiguous memory area by extending the kernel
317 * memory section over the mtd section.
318 * For ROMFS_FS memory must be covered with ICPLBs anyways.
319 * So there is no difference between kernel and mtd memory setup.
320 */
321
322 cplb_data[SDRAM_KERN].end = memory_mtd_start + mtd_size;;
323 cplb_data[SDRAM_RAM_MTD].valid = 0;
324
325# endif
326#else
327 cplb_data[SDRAM_RAM_MTD].valid = 0;
328#endif
329
330 cplb_data[SDRAM_DMAZ].start = _ramend - DMA_UNCACHED_REGION;
331 cplb_data[SDRAM_DMAZ].end = _ramend;
332
333 cplb_data[RES_MEM].start = _ramend;
334 cplb_data[RES_MEM].end = physical_mem_end;
335
336 if (reserved_mem_dcache_on)
337 cplb_data[RES_MEM].d_conf = SDRAM_DGENERIC;
338 else
339 cplb_data[RES_MEM].d_conf = SDRAM_DNON_CHBL;
340
341 if (reserved_mem_icache_on)
342 cplb_data[RES_MEM].i_conf = SDRAM_IGENERIC;
343 else
344 cplb_data[RES_MEM].i_conf = SDRAM_INON_CHBL;
345
346 for (i = ZERO_P; i <= L2_MEM; i++) {
347 if (!cplb_data[i].valid)
348 continue;
349
350 as_1m = cplb_data[i].start % SIZE_1M;
351
352 /* We need to make sure all sections are properly 1M aligned
353 * However between Kernel Memory and the Kernel mtd section, depending on the
354 * rootfs size, there can be overlapping memory areas.
355 */
356
357 if (as_1m && i != L1I_MEM && i != L1D_MEM) {
358#ifdef CONFIG_MTD_UCLINUX
359 if (i == SDRAM_RAM_MTD) {
360 if ((cplb_data[SDRAM_KERN].end + 1) > cplb_data[SDRAM_RAM_MTD].start)
361 cplb_data[SDRAM_RAM_MTD].start = (cplb_data[i].start & (-2*SIZE_1M)) + SIZE_1M;
362 else
363 cplb_data[SDRAM_RAM_MTD].start = (cplb_data[i].start & (-2*SIZE_1M));
364 } else
365#endif
366 printk(KERN_WARNING "Unaligned Start of %s at 0x%X\n",
367 cplb_data[i].name, cplb_data[i].start);
368 }
369
370 as = cplb_data[i].start % SIZE_4M;
371 ae = cplb_data[i].end % SIZE_4M;
372
373 if (as)
374 a_start = cplb_data[i].start + (SIZE_4M - (as));
375 else
376 a_start = cplb_data[i].start;
377
378 a_end = cplb_data[i].end - ae;
379
380 for (j = INITIAL_T; j <= SWITCH_T; j++) {
381
382 switch (j) {
383 case INITIAL_T:
384 if (cplb_data[i].attr & INITIAL_T) {
385 t_i = &cplb.init_i;
386 t_d = &cplb.init_d;
387 process = 1;
388 } else
389 process = 0;
390 break;
391 case SWITCH_T:
392 if (cplb_data[i].attr & SWITCH_T) {
393 t_i = &cplb.switch_i;
394 t_d = &cplb.switch_d;
395 process = 1;
396 } else
397 process = 0;
398 break;
399 default:
400 process = 0;
401 break;
402 }
403
404 if (!process)
405 continue;
406 if (cplb_data[i].attr & I_CPLB)
407 __fill_code_cplbtab(t_i, i, a_start, a_end);
408
409 if (cplb_data[i].attr & D_CPLB)
410 __fill_data_cplbtab(t_d, i, a_start, a_end);
411 }
412 }
413
414/* close tables */
415
416 close_cplbtab(&cplb.init_i);
417 close_cplbtab(&cplb.init_d);
418
419 cplb.init_i.tab[cplb.init_i.pos] = -1;
420 cplb.init_d.tab[cplb.init_d.pos] = -1;
421 cplb.switch_i.tab[cplb.switch_i.pos] = -1;
422 cplb.switch_d.tab[cplb.switch_d.pos] = -1;
423
424}
425
426#endif
427