2 * Blackfin CPLB initialization
4 * Copyright 2004-2007 Analog Devices Inc.
6 * Bugs: Enter bugs at http://blackfin.uclinux.org/
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.
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.
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
23 #include <linux/module.h>
25 #include <asm/blackfin.h>
26 #include <asm/cplbinit.h>
28 u_long icplb_table[MAX_CPLBS+1];
29 u_long dcplb_table[MAX_CPLBS+1];
31 #ifdef CONFIG_CPLB_SWITCH_TAB_L1
32 u_long ipdt_table[MAX_SWITCH_I_CPLBS+1]__attribute__((l1_data));
33 u_long dpdt_table[MAX_SWITCH_D_CPLBS+1]__attribute__((l1_data));
35 #ifdef CONFIG_CPLB_INFO
36 u_long ipdt_swapcount_table[MAX_SWITCH_I_CPLBS]__attribute__((l1_data));
37 u_long dpdt_swapcount_table[MAX_SWITCH_D_CPLBS]__attribute__((l1_data));
38 #endif /* CONFIG_CPLB_INFO */
42 u_long ipdt_table[MAX_SWITCH_I_CPLBS+1];
43 u_long dpdt_table[MAX_SWITCH_D_CPLBS+1];
45 #ifdef CONFIG_CPLB_INFO
46 u_long ipdt_swapcount_table[MAX_SWITCH_I_CPLBS];
47 u_long dpdt_swapcount_table[MAX_SWITCH_D_CPLBS];
48 #endif /* CONFIG_CPLB_INFO */
50 #endif /*CONFIG_CPLB_SWITCH_TAB_L1*/
53 struct cplb_tab init_i;
54 struct cplb_tab init_d;
55 struct cplb_tab switch_i;
56 struct cplb_tab switch_d;
59 #if defined(CONFIG_BLKFIN_DCACHE) || defined(CONFIG_BLKFIN_CACHE)
60 static struct cplb_desc cplb_data[] = {
65 .attr = INITIAL_T | SWITCH_T | I_CPLB | D_CPLB,
68 #if defined(CONFIG_DEBUG_HUNT_FOR_ZERO)
73 .name = "ZERO Pointer Saveguard",
76 .start = L1_CODE_START,
77 .end = L1_CODE_START + L1_CODE_LENGTH,
79 .attr = INITIAL_T | SWITCH_T | I_CPLB,
83 .name = "L1 I-Memory",
86 .start = L1_DATA_A_START,
87 .end = L1_DATA_B_START + L1_DATA_B_LENGTH,
89 .attr = INITIAL_T | SWITCH_T | D_CPLB,
92 #if ((L1_DATA_A_LENGTH > 0) || (L1_DATA_B_LENGTH > 0))
97 .name = "L1 D-Memory",
101 .end = 0, /* dynamic */
103 .attr = INITIAL_T | SWITCH_T | I_CPLB | D_CPLB,
104 .i_conf = SDRAM_IGENERIC,
105 .d_conf = SDRAM_DGENERIC,
107 .name = "SDRAM Kernel",
110 .start = 0, /* dynamic */
111 .end = 0, /* dynamic */
113 .attr = INITIAL_T | SWITCH_T | D_CPLB,
114 .i_conf = SDRAM_IGENERIC,
115 .d_conf = SDRAM_DNON_CHBL,
117 .name = "SDRAM RAM MTD",
120 .start = 0, /* dynamic */
121 .end = 0, /* dynamic */
123 .attr = INITIAL_T | SWITCH_T | D_CPLB,
124 .d_conf = SDRAM_DNON_CHBL,
126 .name = "SDRAM Uncached DMA ZONE",
129 .start = 0, /* dynamic */
130 .end = 0, /* dynamic */
132 .attr = SWITCH_T | D_CPLB,
133 .i_conf = 0, /* dynamic */
134 .d_conf = 0, /* dynamic */
136 .name = "SDRAM Reserved Memory",
139 .start = ASYNC_BANK0_BASE,
140 .end = ASYNC_BANK3_BASE + ASYNC_BANK3_SIZE,
142 .attr = SWITCH_T | D_CPLB,
143 .d_conf = SDRAM_EBIU,
145 .name = "ASYNC Memory",
148 #if defined(CONFIG_BF561)
152 .attr = SWITCH_T | D_CPLB,
163 static u16 __init lock_kernel_check(u32 start, u32 end)
165 if ((start <= (u32) _stext && end >= (u32) _end)
166 || (start >= (u32) _stext && end <= (u32) _end))
171 static unsigned short __init
172 fill_cplbtab(struct cplb_tab *table,
173 unsigned long start, unsigned long end,
174 unsigned long block_size, unsigned long cplb_data)
178 switch (block_size) {
194 cplb_data = (cplb_data & ~(3 << 16)) | (i << 16);
196 while ((start < end) && (table->pos < table->size)) {
198 table->tab[table->pos++] = start;
200 if (lock_kernel_check(start, start + block_size) == IN_KERNEL)
201 table->tab[table->pos++] =
202 cplb_data | CPLB_LOCK | CPLB_DIRTY;
204 table->tab[table->pos++] = cplb_data;
211 static unsigned short __init
212 close_cplbtab(struct cplb_tab *table)
215 while (table->pos < table->size) {
217 table->tab[table->pos++] = 0;
218 table->tab[table->pos++] = 0; /* !CPLB_VALID */
223 /* helper function */
224 static void __fill_code_cplbtab(struct cplb_tab *t, int i, u32 a_start, u32 a_end)
226 if (cplb_data[i].psize) {
231 cplb_data[i].i_conf);
233 #if (defined(CONFIG_BLKFIN_CACHE) && defined(ANOMALY_05000263))
234 if (i == SDRAM_KERN) {
239 cplb_data[i].i_conf);
247 cplb_data[i].i_conf);
252 cplb_data[i].i_conf);
253 fill_cplbtab(t, a_end,
256 cplb_data[i].i_conf);
261 static void __fill_data_cplbtab(struct cplb_tab *t, int i, u32 a_start, u32 a_end)
263 if (cplb_data[i].psize) {
268 cplb_data[i].d_conf);
273 cplb_data[i].d_conf);
274 fill_cplbtab(t, a_start,
276 cplb_data[i].d_conf);
277 fill_cplbtab(t, a_end,
280 cplb_data[i].d_conf);
284 void __init generate_cpl_tables(void)
288 u32 a_start, a_end, as, ae, as_1m;
290 struct cplb_tab *t_i = NULL;
291 struct cplb_tab *t_d = NULL;
294 cplb.init_i.size = MAX_CPLBS;
295 cplb.init_d.size = MAX_CPLBS;
296 cplb.switch_i.size = MAX_SWITCH_I_CPLBS;
297 cplb.switch_d.size = MAX_SWITCH_D_CPLBS;
301 cplb.switch_i.pos = 0;
302 cplb.switch_d.pos = 0;
304 cplb.init_i.tab = icplb_table;
305 cplb.init_d.tab = dcplb_table;
306 cplb.switch_i.tab = ipdt_table;
307 cplb.switch_d.tab = dpdt_table;
309 cplb_data[SDRAM_KERN].end = memory_end;
311 #ifdef CONFIG_MTD_UCLINUX
312 cplb_data[SDRAM_RAM_MTD].start = memory_mtd_start;
313 cplb_data[SDRAM_RAM_MTD].end = memory_mtd_start + mtd_size;
314 cplb_data[SDRAM_RAM_MTD].valid = mtd_size > 0;
315 # if defined(CONFIG_ROMFS_FS)
316 cplb_data[SDRAM_RAM_MTD].attr |= I_CPLB;
319 * The ROMFS_FS size is often not multiple of 1MB.
320 * This can cause multiple CPLB sets covering the same memory area.
321 * This will then cause multiple CPLB hit exceptions.
322 * Workaround: We ensure a contiguous memory area by extending the kernel
323 * memory section over the mtd section.
324 * For ROMFS_FS memory must be covered with ICPLBs anyways.
325 * So there is no difference between kernel and mtd memory setup.
328 cplb_data[SDRAM_KERN].end = memory_mtd_start + mtd_size;;
329 cplb_data[SDRAM_RAM_MTD].valid = 0;
333 cplb_data[SDRAM_RAM_MTD].valid = 0;
336 cplb_data[SDRAM_DMAZ].start = _ramend - DMA_UNCACHED_REGION;
337 cplb_data[SDRAM_DMAZ].end = _ramend;
339 cplb_data[RES_MEM].start = _ramend;
340 cplb_data[RES_MEM].end = physical_mem_end;
342 if (reserved_mem_dcache_on)
343 cplb_data[RES_MEM].d_conf = SDRAM_DGENERIC;
345 cplb_data[RES_MEM].d_conf = SDRAM_DNON_CHBL;
347 if (reserved_mem_icache_on)
348 cplb_data[RES_MEM].i_conf = SDRAM_IGENERIC;
350 cplb_data[RES_MEM].i_conf = SDRAM_INON_CHBL;
352 for (i = ZERO_P; i <= L2_MEM; i++) {
353 if (!cplb_data[i].valid)
356 as_1m = cplb_data[i].start % SIZE_1M;
358 /* We need to make sure all sections are properly 1M aligned
359 * However between Kernel Memory and the Kernel mtd section, depending on the
360 * rootfs size, there can be overlapping memory areas.
363 if (as_1m && i != L1I_MEM && i != L1D_MEM) {
364 #ifdef CONFIG_MTD_UCLINUX
365 if (i == SDRAM_RAM_MTD) {
366 if ((cplb_data[SDRAM_KERN].end + 1) > cplb_data[SDRAM_RAM_MTD].start)
367 cplb_data[SDRAM_RAM_MTD].start = (cplb_data[i].start & (-2*SIZE_1M)) + SIZE_1M;
369 cplb_data[SDRAM_RAM_MTD].start = (cplb_data[i].start & (-2*SIZE_1M));
372 printk(KERN_WARNING "Unaligned Start of %s at 0x%X\n",
373 cplb_data[i].name, cplb_data[i].start);
376 as = cplb_data[i].start % SIZE_4M;
377 ae = cplb_data[i].end % SIZE_4M;
380 a_start = cplb_data[i].start + (SIZE_4M - (as));
382 a_start = cplb_data[i].start;
384 a_end = cplb_data[i].end - ae;
386 for (j = INITIAL_T; j <= SWITCH_T; j++) {
390 if (cplb_data[i].attr & INITIAL_T) {
398 if (cplb_data[i].attr & SWITCH_T) {
399 t_i = &cplb.switch_i;
400 t_d = &cplb.switch_d;
412 if (cplb_data[i].attr & I_CPLB)
413 __fill_code_cplbtab(t_i, i, a_start, a_end);
415 if (cplb_data[i].attr & D_CPLB)
416 __fill_data_cplbtab(t_d, i, a_start, a_end);
422 close_cplbtab(&cplb.init_i);
423 close_cplbtab(&cplb.init_d);
425 cplb.init_i.tab[cplb.init_i.pos] = -1;
426 cplb.init_d.tab[cplb.init_d.pos] = -1;
427 cplb.switch_i.tab[cplb.switch_i.pos] = -1;
428 cplb.switch_d.tab[cplb.switch_d.pos] = -1;