4 * http://www.dave-tech.it
5 * http://www.wawnet.biz
6 * mailto:info@wawnet.biz
8 * See file CREDITS for list of people who contributed to this
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License as
13 * published by the Free Software Foundation; either version 2 of
14 * the License, or (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
29 #include <asm/hardware.h>
31 static void s3c44b0_flush_cache(void)
35 for(i=0x10002000;i<0x10004800;i+=16)
41 void icache_enable (void)
45 s3c44b0_flush_cache();
49 Non-cacheable area (everything outside RAM)
50 0x0000:0000 - 0x0C00:0000
52 NCACHBE0 = 0xC0000000;
53 NCACHBE1 = 0x00000000;
59 reg |= 0x00000006; /* 8kB */
63 void icache_disable (void)
68 reg &= ~0x00000006; /* 8kB */
72 int icache_status (void)
77 void dcache_enable (void)
82 void dcache_disable (void)
87 int dcache_status (void)
89 return dcache_status();