blob: 269d2a3530a686a60baf9f2d333a7e5645fa1370 [file] [log] [blame]
Bernd Schmidtb97b8a92008-01-27 18:39:16 +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>
26#include <asm/cplb.h>
27#include <asm/cplbinit.h>
28
Mike Frysingerc6059992008-02-02 12:28:23 +080029#if ANOMALY_05000263
30# error the MPU will not function safely while Anomaly 05000263 applies
31#endif
32
Graf Yangb8a98982008-11-18 17:48:22 +080033struct cplb_entry icplb_tbl[NR_CPUS][MAX_CPLBS];
34struct cplb_entry dcplb_tbl[NR_CPUS][MAX_CPLBS];
Bernd Schmidtb97b8a92008-01-27 18:39:16 +080035
36int first_switched_icplb, first_switched_dcplb;
37int first_mask_dcplb;
38
Graf Yangb8a98982008-11-18 17:48:22 +080039void __init generate_cplb_tables_cpu(unsigned int cpu)
Bernd Schmidtb97b8a92008-01-27 18:39:16 +080040{
41 int i_d, i_i;
42 unsigned long addr;
43 unsigned long d_data, i_data;
44 unsigned long d_cache = 0, i_cache = 0;
45
Mike Frysinger8cab0282008-04-24 05:13:10 +080046 printk(KERN_INFO "MPU: setting up cplb tables with memory protection\n");
47
Bernd Schmidtb97b8a92008-01-27 18:39:16 +080048#ifdef CONFIG_BFIN_ICACHE
49 i_cache = CPLB_L1_CHBL | ANOMALY_05000158_WORKAROUND;
50#endif
51
52#ifdef CONFIG_BFIN_DCACHE
53 d_cache = CPLB_L1_CHBL;
Bernd Schmidtdbfe44f2008-04-23 07:11:55 +080054#ifdef CONFIG_BFIN_WT
Bernd Schmidtb97b8a92008-01-27 18:39:16 +080055 d_cache |= CPLB_L1_AOW | CPLB_WT;
56#endif
57#endif
Graf Yangb8a98982008-11-18 17:48:22 +080058
Bernd Schmidtb97b8a92008-01-27 18:39:16 +080059 i_d = i_i = 0;
60
61 /* Set up the zero page. */
Graf Yangb8a98982008-11-18 17:48:22 +080062 dcplb_tbl[cpu][i_d].addr = 0;
63 dcplb_tbl[cpu][i_d++].data = SDRAM_OOPS | PAGE_SIZE_1KB;
Bernd Schmidtb97b8a92008-01-27 18:39:16 +080064
65#if 0
Graf Yangb8a98982008-11-18 17:48:22 +080066 icplb_tbl[cpu][i_i].addr = 0;
67 icplb_tbl[cpu][i_i++].data = i_cache | CPLB_USER_RD | PAGE_SIZE_4KB;
Bernd Schmidtb97b8a92008-01-27 18:39:16 +080068#endif
69
70 /* Cover kernel memory with 4M pages. */
71 addr = 0;
72 d_data = d_cache | CPLB_SUPV_WR | CPLB_VALID | PAGE_SIZE_4MB | CPLB_DIRTY;
73 i_data = i_cache | CPLB_VALID | CPLB_PORTPRIO | PAGE_SIZE_4MB;
74
75 for (; addr < memory_start; addr += 4 * 1024 * 1024) {
Graf Yangb8a98982008-11-18 17:48:22 +080076 dcplb_tbl[cpu][i_d].addr = addr;
77 dcplb_tbl[cpu][i_d++].data = d_data;
78 icplb_tbl[cpu][i_i].addr = addr;
79 icplb_tbl[cpu][i_i++].data = i_data | (addr == 0 ? CPLB_USER_RD : 0);
Bernd Schmidtb97b8a92008-01-27 18:39:16 +080080 }
81
82 /* Cover L1 memory. One 4M area for code and data each is enough. */
83#if L1_DATA_A_LENGTH > 0 || L1_DATA_B_LENGTH > 0
Graf Yangb8a98982008-11-18 17:48:22 +080084 dcplb_tbl[cpu][i_d].addr = get_l1_data_a_start_cpu(cpu);
85 dcplb_tbl[cpu][i_d++].data = L1_DMEMORY | PAGE_SIZE_4MB;
Bernd Schmidtb97b8a92008-01-27 18:39:16 +080086#endif
Sonic Zhangf099f392008-10-09 14:11:57 +080087#if L1_CODE_LENGTH > 0
Graf Yangb8a98982008-11-18 17:48:22 +080088 icplb_tbl[cpu][i_i].addr = get_l1_code_start_cpu(cpu);
89 icplb_tbl[cpu][i_i++].data = L1_IMEMORY | PAGE_SIZE_4MB;
Sonic Zhangf099f392008-10-09 14:11:57 +080090#endif
91
92 /* Cover L2 memory */
93#if L2_LENGTH > 0
Graf Yangb8a98982008-11-18 17:48:22 +080094 dcplb_tbl[cpu][i_d].addr = L2_START;
95 dcplb_tbl[cpu][i_d++].data = L2_DMEMORY | PAGE_SIZE_1MB;
96 icplb_tbl[cpu][i_i].addr = L2_START;
97 icplb_tbl[cpu][i_i++].data = L2_IMEMORY | PAGE_SIZE_1MB;
Sonic Zhangf099f392008-10-09 14:11:57 +080098#endif
Bernd Schmidtb97b8a92008-01-27 18:39:16 +080099
100 first_mask_dcplb = i_d;
101 first_switched_dcplb = i_d + (1 << page_mask_order);
102 first_switched_icplb = i_i;
103
104 while (i_d < MAX_CPLBS)
Graf Yangb8a98982008-11-18 17:48:22 +0800105 dcplb_tbl[cpu][i_d++].data = 0;
Bernd Schmidtb97b8a92008-01-27 18:39:16 +0800106 while (i_i < MAX_CPLBS)
Graf Yangb8a98982008-11-18 17:48:22 +0800107 icplb_tbl[cpu][i_i++].data = 0;
Bernd Schmidtb97b8a92008-01-27 18:39:16 +0800108}