diff options
author | Kevin Cernekee <cernekee@gmail.com> | 2009-04-23 20:36:53 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2009-06-17 06:06:24 -0400 |
commit | 605b7ef7b79cee8e36ae5c48700e1a1eec74d38a (patch) | |
tree | 81b17230afc77fad0cb07728448ea2427e97069d | |
parent | 3807ef3f61e094c9417d1a12f18d6b3c8e27d96f (diff) |
MIPS: Support 64-byte D-cache line size
Signed-off-by: Kevin Cernekee <cernekee@gmail.com>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
-rw-r--r-- | arch/mips/include/asm/r4kcache.h | 1 | ||||
-rw-r--r-- | arch/mips/mm/c-r4k.c | 12 |
2 files changed, 13 insertions, 0 deletions
diff --git a/arch/mips/include/asm/r4kcache.h b/arch/mips/include/asm/r4kcache.h index 4c140db36786..387bf59f1e37 100644 --- a/arch/mips/include/asm/r4kcache.h +++ b/arch/mips/include/asm/r4kcache.h | |||
@@ -399,6 +399,7 @@ __BUILD_BLAST_CACHE(s, scache, Index_Writeback_Inv_SD, Hit_Writeback_Inv_SD, 16) | |||
399 | __BUILD_BLAST_CACHE(d, dcache, Index_Writeback_Inv_D, Hit_Writeback_Inv_D, 32) | 399 | __BUILD_BLAST_CACHE(d, dcache, Index_Writeback_Inv_D, Hit_Writeback_Inv_D, 32) |
400 | __BUILD_BLAST_CACHE(i, icache, Index_Invalidate_I, Hit_Invalidate_I, 32) | 400 | __BUILD_BLAST_CACHE(i, icache, Index_Invalidate_I, Hit_Invalidate_I, 32) |
401 | __BUILD_BLAST_CACHE(s, scache, Index_Writeback_Inv_SD, Hit_Writeback_Inv_SD, 32) | 401 | __BUILD_BLAST_CACHE(s, scache, Index_Writeback_Inv_SD, Hit_Writeback_Inv_SD, 32) |
402 | __BUILD_BLAST_CACHE(d, dcache, Index_Writeback_Inv_D, Hit_Writeback_Inv_D, 64) | ||
402 | __BUILD_BLAST_CACHE(i, icache, Index_Invalidate_I, Hit_Invalidate_I, 64) | 403 | __BUILD_BLAST_CACHE(i, icache, Index_Invalidate_I, Hit_Invalidate_I, 64) |
403 | __BUILD_BLAST_CACHE(s, scache, Index_Writeback_Inv_SD, Hit_Writeback_Inv_SD, 64) | 404 | __BUILD_BLAST_CACHE(s, scache, Index_Writeback_Inv_SD, Hit_Writeback_Inv_SD, 64) |
404 | __BUILD_BLAST_CACHE(s, scache, Index_Writeback_Inv_SD, Hit_Writeback_Inv_SD, 128) | 405 | __BUILD_BLAST_CACHE(s, scache, Index_Writeback_Inv_SD, Hit_Writeback_Inv_SD, 128) |
diff --git a/arch/mips/mm/c-r4k.c b/arch/mips/mm/c-r4k.c index 171951d2305b..71fe4cb778cd 100644 --- a/arch/mips/mm/c-r4k.c +++ b/arch/mips/mm/c-r4k.c | |||
@@ -100,6 +100,12 @@ static inline void r4k_blast_dcache_page_dc32(unsigned long addr) | |||
100 | blast_dcache32_page(addr); | 100 | blast_dcache32_page(addr); |
101 | } | 101 | } |
102 | 102 | ||
103 | static inline void r4k_blast_dcache_page_dc64(unsigned long addr) | ||
104 | { | ||
105 | R4600_HIT_CACHEOP_WAR_IMPL; | ||
106 | blast_dcache64_page(addr); | ||
107 | } | ||
108 | |||
103 | static void __cpuinit r4k_blast_dcache_page_setup(void) | 109 | static void __cpuinit r4k_blast_dcache_page_setup(void) |
104 | { | 110 | { |
105 | unsigned long dc_lsize = cpu_dcache_line_size(); | 111 | unsigned long dc_lsize = cpu_dcache_line_size(); |
@@ -110,6 +116,8 @@ static void __cpuinit r4k_blast_dcache_page_setup(void) | |||
110 | r4k_blast_dcache_page = blast_dcache16_page; | 116 | r4k_blast_dcache_page = blast_dcache16_page; |
111 | else if (dc_lsize == 32) | 117 | else if (dc_lsize == 32) |
112 | r4k_blast_dcache_page = r4k_blast_dcache_page_dc32; | 118 | r4k_blast_dcache_page = r4k_blast_dcache_page_dc32; |
119 | else if (dc_lsize == 64) | ||
120 | r4k_blast_dcache_page = r4k_blast_dcache_page_dc64; | ||
113 | } | 121 | } |
114 | 122 | ||
115 | static void (* r4k_blast_dcache_page_indexed)(unsigned long addr); | 123 | static void (* r4k_blast_dcache_page_indexed)(unsigned long addr); |
@@ -124,6 +132,8 @@ static void __cpuinit r4k_blast_dcache_page_indexed_setup(void) | |||
124 | r4k_blast_dcache_page_indexed = blast_dcache16_page_indexed; | 132 | r4k_blast_dcache_page_indexed = blast_dcache16_page_indexed; |
125 | else if (dc_lsize == 32) | 133 | else if (dc_lsize == 32) |
126 | r4k_blast_dcache_page_indexed = blast_dcache32_page_indexed; | 134 | r4k_blast_dcache_page_indexed = blast_dcache32_page_indexed; |
135 | else if (dc_lsize == 64) | ||
136 | r4k_blast_dcache_page_indexed = blast_dcache64_page_indexed; | ||
127 | } | 137 | } |
128 | 138 | ||
129 | static void (* r4k_blast_dcache)(void); | 139 | static void (* r4k_blast_dcache)(void); |
@@ -138,6 +148,8 @@ static void __cpuinit r4k_blast_dcache_setup(void) | |||
138 | r4k_blast_dcache = blast_dcache16; | 148 | r4k_blast_dcache = blast_dcache16; |
139 | else if (dc_lsize == 32) | 149 | else if (dc_lsize == 32) |
140 | r4k_blast_dcache = blast_dcache32; | 150 | r4k_blast_dcache = blast_dcache32; |
151 | else if (dc_lsize == 64) | ||
152 | r4k_blast_dcache = blast_dcache64; | ||
141 | } | 153 | } |
142 | 154 | ||
143 | /* force code alignment (used for TX49XX_ICACHE_INDEX_INV_WAR) */ | 155 | /* force code alignment (used for TX49XX_ICACHE_INDEX_INV_WAR) */ |