Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 163425
b: refs/heads/master
c: 79f1c9d
h: refs/heads/master
i:
  163423: 5f2c9df
v: v3
  • Loading branch information
Paul Mundt committed Aug 15, 2009
1 parent cb8fe97 commit 375a0fb
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 11 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: a58e1a2ab4f6334c50dfbda83d3a5c6e0b2b4bee
refs/heads/master: 79f1c9da5e5fc5f4705836d8c1cee2213fc80640
25 changes: 15 additions & 10 deletions trunk/arch/sh/mm/cache-sh3.c
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
* SIZE: Size of the region.
*/

void __flush_wback_region(void *start, int size)
static void sh3__flush_wback_region(void *start, int size)
{
unsigned long v, j;
unsigned long begin, end;
Expand Down Expand Up @@ -71,7 +71,7 @@ void __flush_wback_region(void *start, int size)
* START: Virtual Address (U0, P1, or P3)
* SIZE: Size of the region.
*/
void __flush_purge_region(void *start, int size)
static void sh3__flush_purge_region(void *start, int size)
{
unsigned long v;
unsigned long begin, end;
Expand All @@ -90,11 +90,16 @@ void __flush_purge_region(void *start, int size)
}
}

/*
* No write back please
*
* Except I don't think there's any way to avoid the writeback. So we
* just alias it to __flush_purge_region(). dwmw2.
*/
void __flush_invalidate_region(void *start, int size)
__attribute__((alias("__flush_purge_region")));
void __init sh3_cache_init(void)
{
__flush_wback_region = sh3__flush_wback_region;
__flush_purge_region = sh3__flush_purge_region;

/*
* No write back please
*
* Except I don't think there's any way to avoid the writeback.
* So we just alias it to sh3__flush_purge_region(). dwmw2.
*/
__flush_invalidate_region = sh3__flush_purge_region;
}
6 changes: 6 additions & 0 deletions trunk/arch/sh/mm/cache.c
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,12 @@ void __init cpu_cache_init(void)
sh2a_cache_init();
}

if (boot_cpu_data.family == CPU_FAMILY_SH3) {
extern void __weak sh3_cache_init(void);

sh3_cache_init();
}

if ((boot_cpu_data.family == CPU_FAMILY_SH4) ||
(boot_cpu_data.family == CPU_FAMILY_SH4A) ||
(boot_cpu_data.family == CPU_FAMILY_SH4AL_DSP)) {
Expand Down

0 comments on commit 375a0fb

Please sign in to comment.