blob: fe6d45987bf32dde88c3e346c3b772c07ba1fae0 [file] [log] [blame]
Jean-Christophe PLAGNIOL-VILLARDb3acb6c2009-04-05 13:06:31 +02001/*
2 * (C) Copyright 2002
3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (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, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23
24#include <common.h>
25#include <asm/system.h>
26
27#if !(defined(CONFIG_SYS_NO_ICACHE) && defined(CONFIG_SYS_NO_DCACHE))
Heiko Schocher880eff52010-09-17 13:10:29 +020028
29#if defined(CONFIG_SYS_ARM_CACHE_WRITETHROUGH)
30#define CACHE_SETUP 0x1a
31#else
32#define CACHE_SETUP 0x1e
33#endif
34
35DECLARE_GLOBAL_DATA_PTR;
36
Jean-Christophe PLAGNIOL-VILLARDb3acb6c2009-04-05 13:06:31 +020037static void cp_delay (void)
38{
39 volatile int i;
40
41 /* copro seems to need some delay between reading and writing */
42 for (i = 0; i < 100; i++)
43 nop();
Heiko Schocher880eff52010-09-17 13:10:29 +020044 asm volatile("" : : : "memory");
45}
46
Heiko Schocherf1d2b312010-09-17 13:10:39 +020047#if !defined(CONFIG_SYS_ARM_WITHOUT_RELOC)
48static inline void dram_bank_mmu_setup(int bank)
49{
50 u32 *page_table = (u32 *)gd->tlb_addr;
51 bd_t *bd = gd->bd;
52 int i;
53
54 debug("%s: bank: %d\n", __func__, bank);
55 for (i = bd->bi_dram[bank].start >> 20;
56 i < (bd->bi_dram[bank].start + bd->bi_dram[bank].size) >> 20;
57 i++) {
58 page_table[i] = i << 20 | (3 << 10) | CACHE_SETUP;
59 }
60}
61#endif
62
63/* to activate the MMU we need to set up virtual memory: use 1M areas */
Heiko Schocher880eff52010-09-17 13:10:29 +020064static inline void mmu_setup(void)
65{
Heiko Schocherf1d2b312010-09-17 13:10:39 +020066#if !defined(CONFIG_SYS_ARM_WITHOUT_RELOC)
67 u32 *page_table = (u32 *)gd->tlb_addr;
68#else
Heiko Schocher880eff52010-09-17 13:10:29 +020069 static u32 __attribute__((aligned(16384))) page_table[4096];
70 bd_t *bd = gd->bd;
Heiko Schocherf1d2b312010-09-17 13:10:39 +020071 int j;
72#endif
73 int i;
Heiko Schocher880eff52010-09-17 13:10:29 +020074 u32 reg;
75
76 /* Set up an identity-mapping for all 4GB, rw for everyone */
77 for (i = 0; i < 4096; i++)
78 page_table[i] = i << 20 | (3 << 10) | 0x12;
Heiko Schocherf1d2b312010-09-17 13:10:39 +020079
80#if !defined(CONFIG_SYS_ARM_WITHOUT_RELOC)
81 for (i = 0; i < CONFIG_NR_DRAM_BANKS; i++) {
82 dram_bank_mmu_setup(i);
83 }
84#else
Heiko Schocher880eff52010-09-17 13:10:29 +020085 /* Then, enable cacheable and bufferable for RAM only */
86 for (j = 0; j < CONFIG_NR_DRAM_BANKS; j++) {
87 for (i = bd->bi_dram[j].start >> 20;
88 i < (bd->bi_dram[j].start + bd->bi_dram[j].size) >> 20;
89 i++) {
90 page_table[i] = i << 20 | (3 << 10) | CACHE_SETUP;
91 }
92 }
Heiko Schocherf1d2b312010-09-17 13:10:39 +020093#endif
Heiko Schocher880eff52010-09-17 13:10:29 +020094
95 /* Copy the page table address to cp15 */
96 asm volatile("mcr p15, 0, %0, c2, c0, 0"
97 : : "r" (page_table) : "memory");
98 /* Set the access control to all-supervisor */
99 asm volatile("mcr p15, 0, %0, c3, c0, 0"
100 : : "r" (~0));
101 /* and enable the mmu */
102 reg = get_cr(); /* get control reg. */
103 cp_delay();
104 set_cr(reg | CR_M);
Jean-Christophe PLAGNIOL-VILLARDb3acb6c2009-04-05 13:06:31 +0200105}
106
107/* cache_bit must be either CR_I or CR_C */
108static void cache_enable(uint32_t cache_bit)
109{
110 uint32_t reg;
111
Heiko Schocher880eff52010-09-17 13:10:29 +0200112 /* The data cache is not active unless the mmu is enabled too */
113 if (cache_bit == CR_C)
114 mmu_setup();
Jean-Christophe PLAGNIOL-VILLARDb3acb6c2009-04-05 13:06:31 +0200115 reg = get_cr(); /* get control reg. */
116 cp_delay();
117 set_cr(reg | cache_bit);
118}
119
120/* cache_bit must be either CR_I or CR_C */
121static void cache_disable(uint32_t cache_bit)
122{
123 uint32_t reg;
124
Heiko Schocher880eff52010-09-17 13:10:29 +0200125 if (cache_bit == CR_C) {
Heiko Schocherf1d2b312010-09-17 13:10:39 +0200126 /* if cache isn;t enabled no need to disable */
127 reg = get_cr();
128 if ((reg & CR_C) != CR_C)
129 return;
Heiko Schocher880eff52010-09-17 13:10:29 +0200130 /* if disabling data cache, disable mmu too */
131 cache_bit |= CR_M;
132 flush_cache(0, ~0);
133 }
Jean-Christophe PLAGNIOL-VILLARDb3acb6c2009-04-05 13:06:31 +0200134 reg = get_cr();
135 cp_delay();
136 set_cr(reg & ~cache_bit);
137}
138#endif
139
140#ifdef CONFIG_SYS_NO_ICACHE
141void icache_enable (void)
142{
143 return;
144}
145
146void icache_disable (void)
147{
148 return;
149}
150
151int icache_status (void)
152{
153 return 0; /* always off */
154}
155#else
156void icache_enable(void)
157{
158 cache_enable(CR_I);
159}
160
161void icache_disable(void)
162{
163 cache_disable(CR_I);
164}
165
166int icache_status(void)
167{
168 return (get_cr() & CR_I) != 0;
169}
170#endif
171
172#ifdef CONFIG_SYS_NO_DCACHE
173void dcache_enable (void)
174{
175 return;
176}
177
178void dcache_disable (void)
179{
180 return;
181}
182
183int dcache_status (void)
184{
185 return 0; /* always off */
186}
187#else
188void dcache_enable(void)
189{
190 cache_enable(CR_C);
191}
192
193void dcache_disable(void)
194{
195 cache_disable(CR_C);
196}
197
198int dcache_status(void)
199{
200 return (get_cr() & CR_C) != 0;
201}
202#endif