blob: c6ff947f9d377ff30ec60a343deec485bc4390ae [file] [log] [blame]
Bernd Schmidt29440a22007-07-12 16:25:29 +08001/*
2 * Copyright 2004-2007 Analog Devices Inc.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, see the file COPYING, or write
16 * to the Free Software Foundation, Inc.,
17 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19
20#include <linux/cpu.h>
21
22#include <asm/cacheflush.h>
23#include <asm/blackfin.h>
Robin Getz3bebca22007-10-10 23:55:26 +080024#include <asm/cplb.h>
Bernd Schmidt29440a22007-07-12 16:25:29 +080025#include <asm/cplbinit.h>
26
Robin Getz3bebca22007-10-10 23:55:26 +080027#if defined(CONFIG_BFIN_ICACHE)
Bernd Schmidtdbdf20d2009-01-07 23:14:38 +080028void __cpuinit bfin_icache_init(struct cplb_entry *icplb_tbl)
Bernd Schmidt29440a22007-07-12 16:25:29 +080029{
Bernd Schmidt29440a22007-07-12 16:25:29 +080030 unsigned long ctrl;
31 int i;
32
Bernd Schmidtdbdf20d2009-01-07 23:14:38 +080033 SSYNC();
Bernd Schmidt29440a22007-07-12 16:25:29 +080034 for (i = 0; i < MAX_CPLBS; i++) {
Bernd Schmidtdbdf20d2009-01-07 23:14:38 +080035 bfin_write32(ICPLB_ADDR0 + i * 4, icplb_tbl[i].addr);
36 bfin_write32(ICPLB_DATA0 + i * 4, icplb_tbl[i].data);
Bernd Schmidt29440a22007-07-12 16:25:29 +080037 }
38 ctrl = bfin_read_IMEM_CONTROL();
39 ctrl |= IMC | ENICPLB;
40 bfin_write_IMEM_CONTROL(ctrl);
Michael Hennerich96a5c6f2008-01-22 19:23:50 +080041 SSYNC();
Bernd Schmidt29440a22007-07-12 16:25:29 +080042}
43#endif
44
Robin Getz3bebca22007-10-10 23:55:26 +080045#if defined(CONFIG_BFIN_DCACHE)
Bernd Schmidtdbdf20d2009-01-07 23:14:38 +080046void __cpuinit bfin_dcache_init(struct cplb_entry *dcplb_tbl)
Bernd Schmidt29440a22007-07-12 16:25:29 +080047{
Bernd Schmidt29440a22007-07-12 16:25:29 +080048 unsigned long ctrl;
49 int i;
50
Bernd Schmidtdbdf20d2009-01-07 23:14:38 +080051 SSYNC();
Bernd Schmidt29440a22007-07-12 16:25:29 +080052 for (i = 0; i < MAX_CPLBS; i++) {
Bernd Schmidtdbdf20d2009-01-07 23:14:38 +080053 bfin_write32(DCPLB_ADDR0 + i * 4, dcplb_tbl[i].addr);
54 bfin_write32(DCPLB_DATA0 + i * 4, dcplb_tbl[i].data);
Bernd Schmidt29440a22007-07-12 16:25:29 +080055 }
Bernd Schmidtdbdf20d2009-01-07 23:14:38 +080056
Bernd Schmidt29440a22007-07-12 16:25:29 +080057 ctrl = bfin_read_DMEM_CONTROL();
58 ctrl |= DMEM_CNTR;
59 bfin_write_DMEM_CONTROL(ctrl);
Michael Hennerich96a5c6f2008-01-22 19:23:50 +080060 SSYNC();
Bernd Schmidt29440a22007-07-12 16:25:29 +080061}
62#endif