Bernd Schmidt | 29440a2 | 2007-07-12 16:25:29 +0800 | [diff] [blame] | 1 | /* |
| 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 Getz | 3bebca2 | 2007-10-10 23:55:26 +0800 | [diff] [blame] | 26 | #include <asm/cplb.h> |
Bernd Schmidt | 29440a2 | 2007-07-12 16:25:29 +0800 | [diff] [blame] | 27 | #include <asm/cplbinit.h> |
| 28 | |
Mike Frysinger | a086ee2 | 2008-04-25 02:04:05 +0800 | [diff] [blame^] | 29 | #ifdef CONFIG_MAX_MEM_SIZE |
| 30 | # define CPLB_MEM CONFIG_MAX_MEM_SIZE |
| 31 | #else |
| 32 | # define CPLB_MEM CONFIG_MEM_SIZE |
| 33 | #endif |
| 34 | |
Mike Frysinger | 0e184c6 | 2008-04-23 08:23:51 +0800 | [diff] [blame] | 35 | /* |
| 36 | * Number of required data CPLB switchtable entries |
| 37 | * MEMSIZE / 4 (we mostly install 4M page size CPLBs |
| 38 | * approx 16 for smaller 1MB page size CPLBs for allignment purposes |
| 39 | * 1 for L1 Data Memory |
| 40 | * possibly 1 for L2 Data Memory |
| 41 | * 1 for CONFIG_DEBUG_HUNT_FOR_ZERO |
| 42 | * 1 for ASYNC Memory |
| 43 | */ |
Mike Frysinger | a086ee2 | 2008-04-25 02:04:05 +0800 | [diff] [blame^] | 44 | #define MAX_SWITCH_D_CPLBS (((CPLB_MEM / 4) + 16 + 1 + 1 + 1 \ |
Mike Frysinger | 0e184c6 | 2008-04-23 08:23:51 +0800 | [diff] [blame] | 45 | + ASYNC_MEMORY_CPLB_COVERAGE) * 2) |
| 46 | |
| 47 | /* |
| 48 | * Number of required instruction CPLB switchtable entries |
| 49 | * MEMSIZE / 4 (we mostly install 4M page size CPLBs |
| 50 | * approx 12 for smaller 1MB page size CPLBs for allignment purposes |
| 51 | * 1 for L1 Instruction Memory |
| 52 | * possibly 1 for L2 Instruction Memory |
| 53 | * 1 for CONFIG_DEBUG_HUNT_FOR_ZERO |
| 54 | */ |
Mike Frysinger | a086ee2 | 2008-04-25 02:04:05 +0800 | [diff] [blame^] | 55 | #define MAX_SWITCH_I_CPLBS (((CPLB_MEM / 4) + 12 + 1 + 1 + 1) * 2) |
Mike Frysinger | 0e184c6 | 2008-04-23 08:23:51 +0800 | [diff] [blame] | 56 | |
| 57 | |
Mike Frysinger | 81a487a | 2007-11-21 15:55:45 +0800 | [diff] [blame] | 58 | u_long icplb_table[MAX_CPLBS + 1]; |
| 59 | u_long dcplb_table[MAX_CPLBS + 1]; |
Bernd Schmidt | 29440a2 | 2007-07-12 16:25:29 +0800 | [diff] [blame] | 60 | |
| 61 | #ifdef CONFIG_CPLB_SWITCH_TAB_L1 |
Mike Frysinger | 81a487a | 2007-11-21 15:55:45 +0800 | [diff] [blame] | 62 | # define PDT_ATTR __attribute__((l1_data)) |
Bernd Schmidt | 29440a2 | 2007-07-12 16:25:29 +0800 | [diff] [blame] | 63 | #else |
Mike Frysinger | 81a487a | 2007-11-21 15:55:45 +0800 | [diff] [blame] | 64 | # define PDT_ATTR |
| 65 | #endif |
Bernd Schmidt | 29440a2 | 2007-07-12 16:25:29 +0800 | [diff] [blame] | 66 | |
Mike Frysinger | 81a487a | 2007-11-21 15:55:45 +0800 | [diff] [blame] | 67 | u_long ipdt_table[MAX_SWITCH_I_CPLBS + 1] PDT_ATTR; |
| 68 | u_long dpdt_table[MAX_SWITCH_D_CPLBS + 1] PDT_ATTR; |
Bernd Schmidt | 29440a2 | 2007-07-12 16:25:29 +0800 | [diff] [blame] | 69 | |
| 70 | #ifdef CONFIG_CPLB_INFO |
Mike Frysinger | 81a487a | 2007-11-21 15:55:45 +0800 | [diff] [blame] | 71 | u_long ipdt_swapcount_table[MAX_SWITCH_I_CPLBS] PDT_ATTR; |
| 72 | u_long dpdt_swapcount_table[MAX_SWITCH_D_CPLBS] PDT_ATTR; |
| 73 | #endif |
Bernd Schmidt | 29440a2 | 2007-07-12 16:25:29 +0800 | [diff] [blame] | 74 | |
| 75 | struct s_cplb { |
| 76 | struct cplb_tab init_i; |
| 77 | struct cplb_tab init_d; |
| 78 | struct cplb_tab switch_i; |
| 79 | struct cplb_tab switch_d; |
| 80 | }; |
| 81 | |
Robin Getz | 3bebca2 | 2007-10-10 23:55:26 +0800 | [diff] [blame] | 82 | #if defined(CONFIG_BFIN_DCACHE) || defined(CONFIG_BFIN_ICACHE) |
Bernd Schmidt | 29440a2 | 2007-07-12 16:25:29 +0800 | [diff] [blame] | 83 | static struct cplb_desc cplb_data[] = { |
| 84 | { |
| 85 | .start = 0, |
| 86 | .end = SIZE_1K, |
| 87 | .psize = SIZE_1K, |
| 88 | .attr = INITIAL_T | SWITCH_T | I_CPLB | D_CPLB, |
| 89 | .i_conf = SDRAM_OOPS, |
| 90 | .d_conf = SDRAM_OOPS, |
| 91 | #if defined(CONFIG_DEBUG_HUNT_FOR_ZERO) |
| 92 | .valid = 1, |
| 93 | #else |
| 94 | .valid = 0, |
| 95 | #endif |
Mike Frysinger | c3a9f43 | 2007-11-21 16:12:12 +0800 | [diff] [blame] | 96 | .name = "Zero Pointer Guard Page", |
Bernd Schmidt | 29440a2 | 2007-07-12 16:25:29 +0800 | [diff] [blame] | 97 | }, |
| 98 | { |
| 99 | .start = L1_CODE_START, |
| 100 | .end = L1_CODE_START + L1_CODE_LENGTH, |
| 101 | .psize = SIZE_4M, |
| 102 | .attr = INITIAL_T | SWITCH_T | I_CPLB, |
| 103 | .i_conf = L1_IMEMORY, |
| 104 | .d_conf = 0, |
| 105 | .valid = 1, |
| 106 | .name = "L1 I-Memory", |
| 107 | }, |
| 108 | { |
| 109 | .start = L1_DATA_A_START, |
| 110 | .end = L1_DATA_B_START + L1_DATA_B_LENGTH, |
| 111 | .psize = SIZE_4M, |
| 112 | .attr = INITIAL_T | SWITCH_T | D_CPLB, |
| 113 | .i_conf = 0, |
| 114 | .d_conf = L1_DMEMORY, |
| 115 | #if ((L1_DATA_A_LENGTH > 0) || (L1_DATA_B_LENGTH > 0)) |
| 116 | .valid = 1, |
| 117 | #else |
| 118 | .valid = 0, |
| 119 | #endif |
| 120 | .name = "L1 D-Memory", |
| 121 | }, |
| 122 | { |
| 123 | .start = 0, |
| 124 | .end = 0, /* dynamic */ |
| 125 | .psize = 0, |
| 126 | .attr = INITIAL_T | SWITCH_T | I_CPLB | D_CPLB, |
Mike Frysinger | c3a9f43 | 2007-11-21 16:12:12 +0800 | [diff] [blame] | 127 | .i_conf = SDRAM_IGENERIC, |
| 128 | .d_conf = SDRAM_DGENERIC, |
Bernd Schmidt | 29440a2 | 2007-07-12 16:25:29 +0800 | [diff] [blame] | 129 | .valid = 1, |
Mike Frysinger | c3a9f43 | 2007-11-21 16:12:12 +0800 | [diff] [blame] | 130 | .name = "Kernel Memory", |
Bernd Schmidt | 29440a2 | 2007-07-12 16:25:29 +0800 | [diff] [blame] | 131 | }, |
| 132 | { |
| 133 | .start = 0, /* dynamic */ |
| 134 | .end = 0, /* dynamic */ |
| 135 | .psize = 0, |
| 136 | .attr = INITIAL_T | SWITCH_T | D_CPLB, |
Mike Frysinger | c3a9f43 | 2007-11-21 16:12:12 +0800 | [diff] [blame] | 137 | .i_conf = SDRAM_IGENERIC, |
| 138 | .d_conf = SDRAM_DNON_CHBL, |
Bernd Schmidt | 29440a2 | 2007-07-12 16:25:29 +0800 | [diff] [blame] | 139 | .valid = 1, |
Mike Frysinger | c3a9f43 | 2007-11-21 16:12:12 +0800 | [diff] [blame] | 140 | .name = "uClinux MTD Memory", |
Bernd Schmidt | 29440a2 | 2007-07-12 16:25:29 +0800 | [diff] [blame] | 141 | }, |
| 142 | { |
| 143 | .start = 0, /* dynamic */ |
| 144 | .end = 0, /* dynamic */ |
| 145 | .psize = SIZE_1M, |
| 146 | .attr = INITIAL_T | SWITCH_T | D_CPLB, |
| 147 | .d_conf = SDRAM_DNON_CHBL, |
| 148 | .valid = 1, |
Mike Frysinger | c3a9f43 | 2007-11-21 16:12:12 +0800 | [diff] [blame] | 149 | .name = "Uncached DMA Zone", |
Bernd Schmidt | 29440a2 | 2007-07-12 16:25:29 +0800 | [diff] [blame] | 150 | }, |
| 151 | { |
| 152 | .start = 0, /* dynamic */ |
| 153 | .end = 0, /* dynamic */ |
| 154 | .psize = 0, |
| 155 | .attr = SWITCH_T | D_CPLB, |
| 156 | .i_conf = 0, /* dynamic */ |
| 157 | .d_conf = 0, /* dynamic */ |
| 158 | .valid = 1, |
Mike Frysinger | c3a9f43 | 2007-11-21 16:12:12 +0800 | [diff] [blame] | 159 | .name = "Reserved Memory", |
Bernd Schmidt | 29440a2 | 2007-07-12 16:25:29 +0800 | [diff] [blame] | 160 | }, |
| 161 | { |
| 162 | .start = ASYNC_BANK0_BASE, |
| 163 | .end = ASYNC_BANK3_BASE + ASYNC_BANK3_SIZE, |
| 164 | .psize = 0, |
| 165 | .attr = SWITCH_T | D_CPLB, |
| 166 | .d_conf = SDRAM_EBIU, |
| 167 | .valid = 1, |
Mike Frysinger | c3a9f43 | 2007-11-21 16:12:12 +0800 | [diff] [blame] | 168 | .name = "Asynchronous Memory Banks", |
Bernd Schmidt | 29440a2 | 2007-07-12 16:25:29 +0800 | [diff] [blame] | 169 | }, |
| 170 | { |
Mike Frysinger | c3a9f43 | 2007-11-21 16:12:12 +0800 | [diff] [blame] | 171 | #ifdef L2_START |
| 172 | .start = L2_START, |
| 173 | .end = L2_START + L2_LENGTH, |
Bernd Schmidt | 29440a2 | 2007-07-12 16:25:29 +0800 | [diff] [blame] | 174 | .psize = SIZE_1M, |
Mike Frysinger | c3a9f43 | 2007-11-21 16:12:12 +0800 | [diff] [blame] | 175 | .attr = SWITCH_T | I_CPLB | D_CPLB, |
Bernd Schmidt | 29440a2 | 2007-07-12 16:25:29 +0800 | [diff] [blame] | 176 | .i_conf = L2_MEMORY, |
| 177 | .d_conf = L2_MEMORY, |
| 178 | .valid = 1, |
| 179 | #else |
| 180 | .valid = 0, |
| 181 | #endif |
| 182 | .name = "L2 Memory", |
Mike Frysinger | c3a9f43 | 2007-11-21 16:12:12 +0800 | [diff] [blame] | 183 | }, |
| 184 | { |
| 185 | .start = BOOT_ROM_START, |
| 186 | .end = BOOT_ROM_START + BOOT_ROM_LENGTH, |
| 187 | .psize = SIZE_1M, |
| 188 | .attr = SWITCH_T | I_CPLB | D_CPLB, |
| 189 | .i_conf = SDRAM_IGENERIC, |
| 190 | .d_conf = SDRAM_DGENERIC, |
| 191 | .valid = 1, |
| 192 | .name = "On-Chip BootROM", |
| 193 | }, |
Bernd Schmidt | 29440a2 | 2007-07-12 16:25:29 +0800 | [diff] [blame] | 194 | }; |
| 195 | |
| 196 | static u16 __init lock_kernel_check(u32 start, u32 end) |
| 197 | { |
Robin Getz | 6a3f0b4 | 2007-11-15 15:10:48 +0800 | [diff] [blame] | 198 | if ((end <= (u32) _end && end >= (u32)_stext) || |
| 199 | (start <= (u32) _end && start >= (u32)_stext)) |
Bernd Schmidt | 29440a2 | 2007-07-12 16:25:29 +0800 | [diff] [blame] | 200 | return IN_KERNEL; |
| 201 | return 0; |
| 202 | } |
| 203 | |
| 204 | static unsigned short __init |
| 205 | fill_cplbtab(struct cplb_tab *table, |
| 206 | unsigned long start, unsigned long end, |
| 207 | unsigned long block_size, unsigned long cplb_data) |
| 208 | { |
| 209 | int i; |
| 210 | |
| 211 | switch (block_size) { |
| 212 | case SIZE_4M: |
| 213 | i = 3; |
| 214 | break; |
| 215 | case SIZE_1M: |
| 216 | i = 2; |
| 217 | break; |
| 218 | case SIZE_4K: |
| 219 | i = 1; |
| 220 | break; |
| 221 | case SIZE_1K: |
| 222 | default: |
| 223 | i = 0; |
| 224 | break; |
| 225 | } |
| 226 | |
| 227 | cplb_data = (cplb_data & ~(3 << 16)) | (i << 16); |
| 228 | |
| 229 | while ((start < end) && (table->pos < table->size)) { |
| 230 | |
| 231 | table->tab[table->pos++] = start; |
| 232 | |
| 233 | if (lock_kernel_check(start, start + block_size) == IN_KERNEL) |
| 234 | table->tab[table->pos++] = |
| 235 | cplb_data | CPLB_LOCK | CPLB_DIRTY; |
| 236 | else |
| 237 | table->tab[table->pos++] = cplb_data; |
| 238 | |
| 239 | start += block_size; |
| 240 | } |
| 241 | return 0; |
| 242 | } |
| 243 | |
| 244 | static unsigned short __init |
| 245 | close_cplbtab(struct cplb_tab *table) |
| 246 | { |
| 247 | |
| 248 | while (table->pos < table->size) { |
| 249 | |
| 250 | table->tab[table->pos++] = 0; |
| 251 | table->tab[table->pos++] = 0; /* !CPLB_VALID */ |
| 252 | } |
| 253 | return 0; |
| 254 | } |
| 255 | |
| 256 | /* helper function */ |
| 257 | static void __fill_code_cplbtab(struct cplb_tab *t, int i, u32 a_start, u32 a_end) |
| 258 | { |
| 259 | if (cplb_data[i].psize) { |
| 260 | fill_cplbtab(t, |
| 261 | cplb_data[i].start, |
| 262 | cplb_data[i].end, |
| 263 | cplb_data[i].psize, |
| 264 | cplb_data[i].i_conf); |
| 265 | } else { |
Robin Getz | 3bebca2 | 2007-10-10 23:55:26 +0800 | [diff] [blame] | 266 | #if defined(CONFIG_BFIN_ICACHE) |
Mike Frysinger | 1aafd90 | 2007-07-25 11:19:14 +0800 | [diff] [blame] | 267 | if (ANOMALY_05000263 && i == SDRAM_KERN) { |
Bernd Schmidt | 29440a2 | 2007-07-12 16:25:29 +0800 | [diff] [blame] | 268 | fill_cplbtab(t, |
| 269 | cplb_data[i].start, |
| 270 | cplb_data[i].end, |
| 271 | SIZE_4M, |
| 272 | cplb_data[i].i_conf); |
| 273 | } else |
| 274 | #endif |
| 275 | { |
| 276 | fill_cplbtab(t, |
| 277 | cplb_data[i].start, |
| 278 | a_start, |
| 279 | SIZE_1M, |
| 280 | cplb_data[i].i_conf); |
| 281 | fill_cplbtab(t, |
| 282 | a_start, |
| 283 | a_end, |
| 284 | SIZE_4M, |
| 285 | cplb_data[i].i_conf); |
| 286 | fill_cplbtab(t, a_end, |
| 287 | cplb_data[i].end, |
| 288 | SIZE_1M, |
| 289 | cplb_data[i].i_conf); |
| 290 | } |
| 291 | } |
| 292 | } |
| 293 | |
| 294 | static void __fill_data_cplbtab(struct cplb_tab *t, int i, u32 a_start, u32 a_end) |
| 295 | { |
| 296 | if (cplb_data[i].psize) { |
| 297 | fill_cplbtab(t, |
| 298 | cplb_data[i].start, |
| 299 | cplb_data[i].end, |
| 300 | cplb_data[i].psize, |
| 301 | cplb_data[i].d_conf); |
| 302 | } else { |
| 303 | fill_cplbtab(t, |
| 304 | cplb_data[i].start, |
| 305 | a_start, SIZE_1M, |
| 306 | cplb_data[i].d_conf); |
| 307 | fill_cplbtab(t, a_start, |
| 308 | a_end, SIZE_4M, |
| 309 | cplb_data[i].d_conf); |
| 310 | fill_cplbtab(t, a_end, |
| 311 | cplb_data[i].end, |
| 312 | SIZE_1M, |
| 313 | cplb_data[i].d_conf); |
| 314 | } |
| 315 | } |
| 316 | |
| 317 | void __init generate_cpl_tables(void) |
| 318 | { |
| 319 | |
| 320 | u16 i, j, process; |
| 321 | u32 a_start, a_end, as, ae, as_1m; |
| 322 | |
| 323 | struct cplb_tab *t_i = NULL; |
| 324 | struct cplb_tab *t_d = NULL; |
| 325 | struct s_cplb cplb; |
| 326 | |
Mike Frysinger | 8cab028 | 2008-04-24 05:13:10 +0800 | [diff] [blame] | 327 | printk(KERN_INFO "NOMPU: setting up cplb tables for global access\n"); |
| 328 | |
Bernd Schmidt | 29440a2 | 2007-07-12 16:25:29 +0800 | [diff] [blame] | 329 | cplb.init_i.size = MAX_CPLBS; |
| 330 | cplb.init_d.size = MAX_CPLBS; |
| 331 | cplb.switch_i.size = MAX_SWITCH_I_CPLBS; |
| 332 | cplb.switch_d.size = MAX_SWITCH_D_CPLBS; |
| 333 | |
| 334 | cplb.init_i.pos = 0; |
| 335 | cplb.init_d.pos = 0; |
| 336 | cplb.switch_i.pos = 0; |
| 337 | cplb.switch_d.pos = 0; |
| 338 | |
| 339 | cplb.init_i.tab = icplb_table; |
| 340 | cplb.init_d.tab = dcplb_table; |
| 341 | cplb.switch_i.tab = ipdt_table; |
| 342 | cplb.switch_d.tab = dpdt_table; |
| 343 | |
| 344 | cplb_data[SDRAM_KERN].end = memory_end; |
| 345 | |
| 346 | #ifdef CONFIG_MTD_UCLINUX |
| 347 | cplb_data[SDRAM_RAM_MTD].start = memory_mtd_start; |
| 348 | cplb_data[SDRAM_RAM_MTD].end = memory_mtd_start + mtd_size; |
| 349 | cplb_data[SDRAM_RAM_MTD].valid = mtd_size > 0; |
| 350 | # if defined(CONFIG_ROMFS_FS) |
| 351 | cplb_data[SDRAM_RAM_MTD].attr |= I_CPLB; |
| 352 | |
| 353 | /* |
| 354 | * The ROMFS_FS size is often not multiple of 1MB. |
| 355 | * This can cause multiple CPLB sets covering the same memory area. |
| 356 | * This will then cause multiple CPLB hit exceptions. |
| 357 | * Workaround: We ensure a contiguous memory area by extending the kernel |
| 358 | * memory section over the mtd section. |
| 359 | * For ROMFS_FS memory must be covered with ICPLBs anyways. |
| 360 | * So there is no difference between kernel and mtd memory setup. |
| 361 | */ |
| 362 | |
| 363 | cplb_data[SDRAM_KERN].end = memory_mtd_start + mtd_size;; |
| 364 | cplb_data[SDRAM_RAM_MTD].valid = 0; |
| 365 | |
| 366 | # endif |
| 367 | #else |
| 368 | cplb_data[SDRAM_RAM_MTD].valid = 0; |
| 369 | #endif |
| 370 | |
| 371 | cplb_data[SDRAM_DMAZ].start = _ramend - DMA_UNCACHED_REGION; |
| 372 | cplb_data[SDRAM_DMAZ].end = _ramend; |
| 373 | |
| 374 | cplb_data[RES_MEM].start = _ramend; |
| 375 | cplb_data[RES_MEM].end = physical_mem_end; |
| 376 | |
| 377 | if (reserved_mem_dcache_on) |
| 378 | cplb_data[RES_MEM].d_conf = SDRAM_DGENERIC; |
| 379 | else |
| 380 | cplb_data[RES_MEM].d_conf = SDRAM_DNON_CHBL; |
| 381 | |
| 382 | if (reserved_mem_icache_on) |
| 383 | cplb_data[RES_MEM].i_conf = SDRAM_IGENERIC; |
| 384 | else |
| 385 | cplb_data[RES_MEM].i_conf = SDRAM_INON_CHBL; |
| 386 | |
Mike Frysinger | c3a9f43 | 2007-11-21 16:12:12 +0800 | [diff] [blame] | 387 | for (i = ZERO_P; i < ARRAY_SIZE(cplb_data); ++i) { |
Bernd Schmidt | 29440a2 | 2007-07-12 16:25:29 +0800 | [diff] [blame] | 388 | if (!cplb_data[i].valid) |
| 389 | continue; |
| 390 | |
| 391 | as_1m = cplb_data[i].start % SIZE_1M; |
| 392 | |
| 393 | /* We need to make sure all sections are properly 1M aligned |
| 394 | * However between Kernel Memory and the Kernel mtd section, depending on the |
| 395 | * rootfs size, there can be overlapping memory areas. |
| 396 | */ |
| 397 | |
| 398 | if (as_1m && i != L1I_MEM && i != L1D_MEM) { |
| 399 | #ifdef CONFIG_MTD_UCLINUX |
| 400 | if (i == SDRAM_RAM_MTD) { |
| 401 | if ((cplb_data[SDRAM_KERN].end + 1) > cplb_data[SDRAM_RAM_MTD].start) |
| 402 | cplb_data[SDRAM_RAM_MTD].start = (cplb_data[i].start & (-2*SIZE_1M)) + SIZE_1M; |
| 403 | else |
| 404 | cplb_data[SDRAM_RAM_MTD].start = (cplb_data[i].start & (-2*SIZE_1M)); |
| 405 | } else |
| 406 | #endif |
| 407 | printk(KERN_WARNING "Unaligned Start of %s at 0x%X\n", |
| 408 | cplb_data[i].name, cplb_data[i].start); |
| 409 | } |
| 410 | |
| 411 | as = cplb_data[i].start % SIZE_4M; |
| 412 | ae = cplb_data[i].end % SIZE_4M; |
| 413 | |
| 414 | if (as) |
| 415 | a_start = cplb_data[i].start + (SIZE_4M - (as)); |
| 416 | else |
| 417 | a_start = cplb_data[i].start; |
| 418 | |
| 419 | a_end = cplb_data[i].end - ae; |
| 420 | |
| 421 | for (j = INITIAL_T; j <= SWITCH_T; j++) { |
| 422 | |
| 423 | switch (j) { |
| 424 | case INITIAL_T: |
| 425 | if (cplb_data[i].attr & INITIAL_T) { |
| 426 | t_i = &cplb.init_i; |
| 427 | t_d = &cplb.init_d; |
| 428 | process = 1; |
| 429 | } else |
| 430 | process = 0; |
| 431 | break; |
| 432 | case SWITCH_T: |
| 433 | if (cplb_data[i].attr & SWITCH_T) { |
| 434 | t_i = &cplb.switch_i; |
| 435 | t_d = &cplb.switch_d; |
| 436 | process = 1; |
| 437 | } else |
| 438 | process = 0; |
| 439 | break; |
| 440 | default: |
| 441 | process = 0; |
| 442 | break; |
| 443 | } |
| 444 | |
| 445 | if (!process) |
| 446 | continue; |
| 447 | if (cplb_data[i].attr & I_CPLB) |
| 448 | __fill_code_cplbtab(t_i, i, a_start, a_end); |
| 449 | |
| 450 | if (cplb_data[i].attr & D_CPLB) |
| 451 | __fill_data_cplbtab(t_d, i, a_start, a_end); |
| 452 | } |
| 453 | } |
| 454 | |
| 455 | /* close tables */ |
| 456 | |
| 457 | close_cplbtab(&cplb.init_i); |
| 458 | close_cplbtab(&cplb.init_d); |
| 459 | |
| 460 | cplb.init_i.tab[cplb.init_i.pos] = -1; |
| 461 | cplb.init_d.tab[cplb.init_d.pos] = -1; |
| 462 | cplb.switch_i.tab[cplb.switch_i.pos] = -1; |
| 463 | cplb.switch_d.tab[cplb.switch_d.pos] = -1; |
| 464 | |
| 465 | } |
| 466 | |
| 467 | #endif |
| 468 | |