2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* arch/sh/mm/cache-sh4.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 1999, 2000, 2002 Niibe Yutaka
|
2009-09-09 07:06:39 +00:00
|
|
|
* Copyright (C) 2001 - 2009 Paul Mundt
|
2005-04-16 22:20:36 +00:00
|
|
|
* Copyright (C) 2003 Richard Curnow
|
2008-07-02 06:17:11 +00:00
|
|
|
* Copyright (c) 2007 STMicroelectronics (R&D) Ltd.
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
|
|
* License. See the file "COPYING" in the main directory of this archive
|
|
|
|
* for more details.
|
|
|
|
*/
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/mm.h>
|
2006-11-21 02:09:41 +00:00
|
|
|
#include <linux/io.h>
|
|
|
|
#include <linux/mutex.h>
|
2009-07-22 10:20:49 +00:00
|
|
|
#include <linux/fs.h>
|
2009-09-09 07:06:39 +00:00
|
|
|
#include <linux/highmem.h>
|
|
|
|
#include <asm/pgtable.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <asm/mmu_context.h>
|
|
|
|
#include <asm/cacheflush.h>
|
|
|
|
|
2006-09-27 09:30:07 +00:00
|
|
|
/*
|
|
|
|
* The maximum number of pages we support up to when doing ranged dcache
|
|
|
|
* flushing. Anything exceeding this will simply flush the dcache in its
|
|
|
|
* entirety.
|
|
|
|
*/
|
2008-07-02 06:17:11 +00:00
|
|
|
#define MAX_ICACHE_PAGES 32
|
2006-09-27 09:30:07 +00:00
|
|
|
|
2009-10-16 05:15:38 +00:00
|
|
|
static void __flush_cache_one(unsigned long addr, unsigned long phys,
|
2006-09-27 02:29:55 +00:00
|
|
|
unsigned long exec_offset);
|
2006-09-27 05:09:26 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* Write back the range of D-cache, and purge the I-cache.
|
|
|
|
*
|
2008-07-02 06:17:11 +00:00
|
|
|
* Called from kernel/module.c:sys_init_module and routine for a.out format,
|
|
|
|
* signal handler code and kprobes code
|
2005-04-16 22:20:36 +00:00
|
|
|
*/
|
2009-10-06 21:22:21 +00:00
|
|
|
static void __uses_jump_to_uncached sh4_flush_icache_range(void *args)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2009-08-21 08:23:14 +00:00
|
|
|
struct flusher_data *data = args;
|
|
|
|
unsigned long start, end;
|
2009-09-01 12:12:55 +00:00
|
|
|
unsigned long flags, v;
|
2005-04-16 22:20:36 +00:00
|
|
|
int i;
|
|
|
|
|
2009-08-21 08:23:14 +00:00
|
|
|
start = data->addr1;
|
|
|
|
end = data->addr2;
|
|
|
|
|
2009-09-09 04:19:46 +00:00
|
|
|
/* If there are too many pages then just blow away the caches */
|
|
|
|
if (((end - start) >> PAGE_SHIFT) >= MAX_ICACHE_PAGES) {
|
|
|
|
local_flush_cache_all(NULL);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Selectively flush d-cache then invalidate the i-cache.
|
|
|
|
* This is inefficient, so only use this for small ranges.
|
|
|
|
*/
|
|
|
|
start &= ~(L1_CACHE_BYTES-1);
|
|
|
|
end += L1_CACHE_BYTES-1;
|
|
|
|
end &= ~(L1_CACHE_BYTES-1);
|
2009-09-01 12:12:55 +00:00
|
|
|
|
2009-09-09 04:19:46 +00:00
|
|
|
local_irq_save(flags);
|
|
|
|
jump_to_uncached();
|
2009-09-01 12:12:55 +00:00
|
|
|
|
2009-09-09 04:19:46 +00:00
|
|
|
for (v = start; v < end; v += L1_CACHE_BYTES) {
|
|
|
|
unsigned long icacheaddr;
|
2009-11-05 23:14:39 +00:00
|
|
|
int j, n;
|
2009-09-01 12:12:55 +00:00
|
|
|
|
2009-09-09 04:19:46 +00:00
|
|
|
__ocbwb(v);
|
2009-09-01 12:12:55 +00:00
|
|
|
|
2009-09-09 04:19:46 +00:00
|
|
|
icacheaddr = CACHE_IC_ADDRESS_ARRAY | (v &
|
|
|
|
cpu_data->icache.entry_mask);
|
2008-07-02 06:17:11 +00:00
|
|
|
|
2009-09-09 04:19:46 +00:00
|
|
|
/* Clear i-cache line valid-bit */
|
2009-11-05 23:14:39 +00:00
|
|
|
n = boot_cpu_data.icache.n_aliases;
|
2009-09-09 04:19:46 +00:00
|
|
|
for (i = 0; i < cpu_data->icache.ways; i++) {
|
2009-11-05 23:14:39 +00:00
|
|
|
for (j = 0; j < n; j++)
|
|
|
|
__raw_writel(0, icacheaddr + (j * PAGE_SIZE));
|
2009-09-09 04:19:46 +00:00
|
|
|
icacheaddr += cpu_data->icache.way_incr;
|
|
|
|
}
|
2008-07-02 06:17:11 +00:00
|
|
|
}
|
2009-09-09 04:19:46 +00:00
|
|
|
|
|
|
|
back_to_cached();
|
|
|
|
local_irq_restore(flags);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2009-10-16 05:15:38 +00:00
|
|
|
static inline void flush_cache_one(unsigned long start, unsigned long phys)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2009-09-01 12:12:55 +00:00
|
|
|
unsigned long flags, exec_offset = 0;
|
2006-09-27 09:37:30 +00:00
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/*
|
2009-10-06 21:22:25 +00:00
|
|
|
* All types of SH-4 require PC to be uncached to operate on the I-cache.
|
|
|
|
* Some types of SH-4 require PC to be uncached to operate on the D-cache.
|
2005-04-16 22:20:36 +00:00
|
|
|
*/
|
2007-09-21 09:05:20 +00:00
|
|
|
if ((boot_cpu_data.flags & CPU_HAS_P2_FLUSH_BUG) ||
|
2006-09-27 09:37:30 +00:00
|
|
|
(start < CACHE_OC_ADDRESS_ARRAY))
|
2009-10-06 21:22:25 +00:00
|
|
|
exec_offset = cached_to_uncached;
|
2006-09-27 09:37:30 +00:00
|
|
|
|
2009-09-01 12:12:55 +00:00
|
|
|
local_irq_save(flags);
|
2009-10-29 21:53:30 +00:00
|
|
|
__flush_cache_one(start | SH_CACHE_ASSOC, phys, exec_offset);
|
2009-09-01 12:12:55 +00:00
|
|
|
local_irq_restore(flags);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Write back & invalidate the D-cache of the page.
|
|
|
|
* (To avoid "alias" issues)
|
|
|
|
*/
|
2009-08-27 02:31:16 +00:00
|
|
|
static void sh4_flush_dcache_page(void *arg)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2009-08-27 02:31:16 +00:00
|
|
|
struct page *page = arg;
|
2009-08-20 06:24:41 +00:00
|
|
|
#ifndef CONFIG_SMP
|
2009-07-22 10:20:49 +00:00
|
|
|
struct address_space *mapping = page_mapping(page);
|
|
|
|
|
|
|
|
if (mapping && !mapping_mapped(mapping))
|
|
|
|
set_bit(PG_dcache_dirty, &page->flags);
|
|
|
|
else
|
|
|
|
#endif
|
|
|
|
{
|
2009-09-09 05:10:28 +00:00
|
|
|
unsigned long phys = page_to_phys(page);
|
2006-09-27 05:09:26 +00:00
|
|
|
unsigned long addr = CACHE_OC_ADDRESS_ARRAY;
|
|
|
|
int i, n;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/* Loop all the D-cache */
|
2007-09-21 09:05:20 +00:00
|
|
|
n = boot_cpu_data.dcache.n_aliases;
|
2009-10-16 06:14:50 +00:00
|
|
|
for (i = 0; i <= n; i++, addr += PAGE_SIZE)
|
2009-10-16 05:15:38 +00:00
|
|
|
flush_cache_one(addr, phys);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2006-09-27 05:05:52 +00:00
|
|
|
|
|
|
|
wmb();
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2006-09-27 09:30:07 +00:00
|
|
|
/* TODO: Selective icache invalidation through IC address array.. */
|
2008-09-05 09:00:29 +00:00
|
|
|
static void __uses_jump_to_uncached flush_icache_all(void)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2009-09-01 12:12:55 +00:00
|
|
|
unsigned long flags, ccr;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2009-09-01 12:12:55 +00:00
|
|
|
local_irq_save(flags);
|
2007-11-30 08:06:36 +00:00
|
|
|
jump_to_uncached();
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/* Flush I-cache */
|
|
|
|
ccr = ctrl_inl(CCR);
|
|
|
|
ccr |= CCR_CACHE_ICI;
|
|
|
|
ctrl_outl(ccr, CCR);
|
|
|
|
|
2006-09-27 05:57:44 +00:00
|
|
|
/*
|
2007-11-30 08:06:36 +00:00
|
|
|
* back_to_cached() will take care of the barrier for us, don't add
|
2006-09-27 05:57:44 +00:00
|
|
|
* another one!
|
|
|
|
*/
|
2009-09-01 12:12:55 +00:00
|
|
|
|
2007-11-30 08:06:36 +00:00
|
|
|
back_to_cached();
|
2009-09-01 12:12:55 +00:00
|
|
|
local_irq_restore(flags);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2009-09-09 05:22:15 +00:00
|
|
|
static void flush_dcache_all(void)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2009-09-09 05:22:15 +00:00
|
|
|
unsigned long addr, end_addr, entry_offset;
|
|
|
|
|
|
|
|
end_addr = CACHE_OC_ADDRESS_ARRAY +
|
|
|
|
(current_cpu_data.dcache.sets <<
|
|
|
|
current_cpu_data.dcache.entry_shift) *
|
|
|
|
current_cpu_data.dcache.ways;
|
|
|
|
|
|
|
|
entry_offset = 1 << current_cpu_data.dcache.entry_shift;
|
|
|
|
|
|
|
|
for (addr = CACHE_OC_ADDRESS_ARRAY; addr < end_addr; ) {
|
|
|
|
__raw_writel(0, addr); addr += entry_offset;
|
|
|
|
__raw_writel(0, addr); addr += entry_offset;
|
|
|
|
__raw_writel(0, addr); addr += entry_offset;
|
|
|
|
__raw_writel(0, addr); addr += entry_offset;
|
|
|
|
__raw_writel(0, addr); addr += entry_offset;
|
|
|
|
__raw_writel(0, addr); addr += entry_offset;
|
|
|
|
__raw_writel(0, addr); addr += entry_offset;
|
|
|
|
__raw_writel(0, addr); addr += entry_offset;
|
|
|
|
}
|
2006-09-27 02:29:55 +00:00
|
|
|
}
|
|
|
|
|
2009-08-21 08:23:14 +00:00
|
|
|
static void sh4_flush_cache_all(void *unused)
|
2006-09-27 02:29:55 +00:00
|
|
|
{
|
|
|
|
flush_dcache_all();
|
2005-04-16 22:20:36 +00:00
|
|
|
flush_icache_all();
|
|
|
|
}
|
|
|
|
|
2006-09-27 09:30:07 +00:00
|
|
|
/*
|
|
|
|
* Note : (RPC) since the caches are physically tagged, the only point
|
|
|
|
* of flush_cache_mm for SH-4 is to get rid of aliases from the
|
|
|
|
* D-cache. The assumption elsewhere, e.g. flush_cache_range, is that
|
|
|
|
* lines can stay resident so long as the virtual address they were
|
|
|
|
* accessed with (hence cache set) is in accord with the physical
|
sh: sh4_flush_cache_mm() optimizations.
The i-cache flush in the case of VM_EXEC was added way back when as a
sanity measure, and in practice we only care about evicting aliases from
the d-cache. As a result, it's possible to drop the i-cache flush
completely here.
After careful profiling it's also come up that all of the work associated
with hunting down aliases and doing ranged flushing ends up generating
more overhead than simply blasting away the entire dcache, particularly
if there are many mm's that need to be iterated over. As a result of
that, just move back to flush_dcache_all() in these cases, which restores
the old behaviour, and vastly simplifies the path.
Additionally, on platforms without aliases at all, this can simply be
nopped out. Presently we have the alias check in the SH-4 specific
version, but this is true for all of the platforms, so move the check up
to a generic location. This cuts down quite a bit on superfluous cacheop
IPIs.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
2009-09-09 05:04:06 +00:00
|
|
|
* address (i.e. tag). It's no different here.
|
2006-09-27 09:30:07 +00:00
|
|
|
*
|
|
|
|
* Caller takes mm->mmap_sem.
|
|
|
|
*/
|
2009-08-21 08:23:14 +00:00
|
|
|
static void sh4_flush_cache_mm(void *arg)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2009-08-21 08:23:14 +00:00
|
|
|
struct mm_struct *mm = arg;
|
|
|
|
|
2009-08-14 17:21:16 +00:00
|
|
|
if (cpu_context(smp_processor_id(), mm) == NO_CONTEXT)
|
|
|
|
return;
|
|
|
|
|
sh: sh4_flush_cache_mm() optimizations.
The i-cache flush in the case of VM_EXEC was added way back when as a
sanity measure, and in practice we only care about evicting aliases from
the d-cache. As a result, it's possible to drop the i-cache flush
completely here.
After careful profiling it's also come up that all of the work associated
with hunting down aliases and doing ranged flushing ends up generating
more overhead than simply blasting away the entire dcache, particularly
if there are many mm's that need to be iterated over. As a result of
that, just move back to flush_dcache_all() in these cases, which restores
the old behaviour, and vastly simplifies the path.
Additionally, on platforms without aliases at all, this can simply be
nopped out. Presently we have the alias check in the SH-4 specific
version, but this is true for all of the platforms, so move the check up
to a generic location. This cuts down quite a bit on superfluous cacheop
IPIs.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
2009-09-09 05:04:06 +00:00
|
|
|
flush_dcache_all();
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Write back and invalidate I/D-caches for the page.
|
|
|
|
*
|
|
|
|
* ADDR: Virtual Address (U0 address)
|
|
|
|
* PFN: Physical page number
|
|
|
|
*/
|
2009-08-21 08:23:14 +00:00
|
|
|
static void sh4_flush_cache_page(void *args)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2009-08-21 08:23:14 +00:00
|
|
|
struct flusher_data *data = args;
|
|
|
|
struct vm_area_struct *vma;
|
2009-09-09 07:06:39 +00:00
|
|
|
struct page *page;
|
2009-08-21 08:23:14 +00:00
|
|
|
unsigned long address, pfn, phys;
|
2009-09-09 07:06:39 +00:00
|
|
|
int map_coherent = 0;
|
|
|
|
pgd_t *pgd;
|
|
|
|
pud_t *pud;
|
|
|
|
pmd_t *pmd;
|
|
|
|
pte_t *pte;
|
|
|
|
void *vaddr;
|
2006-09-27 05:09:26 +00:00
|
|
|
|
2009-08-21 08:23:14 +00:00
|
|
|
vma = data->vma;
|
2009-10-16 06:14:50 +00:00
|
|
|
address = data->addr1 & PAGE_MASK;
|
2009-08-21 08:23:14 +00:00
|
|
|
pfn = data->addr2;
|
|
|
|
phys = pfn << PAGE_SHIFT;
|
2009-09-09 07:06:39 +00:00
|
|
|
page = pfn_to_page(pfn);
|
2009-08-21 08:23:14 +00:00
|
|
|
|
2009-08-14 17:21:16 +00:00
|
|
|
if (cpu_context(smp_processor_id(), vma->vm_mm) == NO_CONTEXT)
|
|
|
|
return;
|
|
|
|
|
2009-09-09 07:06:39 +00:00
|
|
|
pgd = pgd_offset(vma->vm_mm, address);
|
|
|
|
pud = pud_offset(pgd, address);
|
|
|
|
pmd = pmd_offset(pud, address);
|
|
|
|
pte = pte_offset_kernel(pmd, address);
|
|
|
|
|
|
|
|
/* If the page isn't present, there is nothing to do here. */
|
|
|
|
if (!(pte_val(*pte) & _PAGE_PRESENT))
|
|
|
|
return;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2009-09-09 07:06:39 +00:00
|
|
|
if ((vma->vm_mm == current->active_mm))
|
|
|
|
vaddr = NULL;
|
|
|
|
else {
|
2006-09-27 05:09:26 +00:00
|
|
|
/*
|
2009-09-09 07:06:39 +00:00
|
|
|
* Use kmap_coherent or kmap_atomic to do flushes for
|
|
|
|
* another ASID than the current one.
|
2006-09-27 05:09:26 +00:00
|
|
|
*/
|
2009-09-09 07:06:39 +00:00
|
|
|
map_coherent = (current_cpu_data.dcache.n_aliases &&
|
|
|
|
!test_bit(PG_dcache_dirty, &page->flags) &&
|
|
|
|
page_mapped(page));
|
|
|
|
if (map_coherent)
|
|
|
|
vaddr = kmap_coherent(page, address);
|
|
|
|
else
|
|
|
|
vaddr = kmap_atomic(page, KM_USER0);
|
|
|
|
|
|
|
|
address = (unsigned long)vaddr;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pages_do_alias(address, phys))
|
2009-10-16 06:14:50 +00:00
|
|
|
flush_cache_one(CACHE_OC_ADDRESS_ARRAY |
|
2009-09-09 07:06:39 +00:00
|
|
|
(address & shm_align_mask), phys);
|
|
|
|
|
|
|
|
if (vma->vm_flags & VM_EXEC)
|
|
|
|
flush_icache_all();
|
|
|
|
|
|
|
|
if (vaddr) {
|
|
|
|
if (map_coherent)
|
|
|
|
kunmap_coherent(vaddr);
|
|
|
|
else
|
|
|
|
kunmap_atomic(vaddr, KM_USER0);
|
2006-09-27 05:09:26 +00:00
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Write back and invalidate D-caches.
|
|
|
|
*
|
|
|
|
* START, END: Virtual Address (U0 address)
|
|
|
|
*
|
|
|
|
* NOTE: We need to flush the _physical_ page entry.
|
|
|
|
* Flushing the cache lines for U0 only isn't enough.
|
|
|
|
* We need to flush for P1 too, which may contain aliases.
|
|
|
|
*/
|
2009-08-21 08:23:14 +00:00
|
|
|
static void sh4_flush_cache_range(void *args)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2009-08-21 08:23:14 +00:00
|
|
|
struct flusher_data *data = args;
|
|
|
|
struct vm_area_struct *vma;
|
|
|
|
unsigned long start, end;
|
|
|
|
|
|
|
|
vma = data->vma;
|
|
|
|
start = data->addr1;
|
|
|
|
end = data->addr2;
|
|
|
|
|
2009-08-14 17:21:16 +00:00
|
|
|
if (cpu_context(smp_processor_id(), vma->vm_mm) == NO_CONTEXT)
|
|
|
|
return;
|
|
|
|
|
2006-09-27 05:09:26 +00:00
|
|
|
/*
|
|
|
|
* If cache is only 4k-per-way, there are never any 'aliases'. Since
|
|
|
|
* the cache is physically tagged, the data can just be left in there.
|
|
|
|
*/
|
2007-09-21 09:05:20 +00:00
|
|
|
if (boot_cpu_data.dcache.n_aliases == 0)
|
2006-09-27 05:09:26 +00:00
|
|
|
return;
|
|
|
|
|
sh: sh4_flush_cache_mm() optimizations.
The i-cache flush in the case of VM_EXEC was added way back when as a
sanity measure, and in practice we only care about evicting aliases from
the d-cache. As a result, it's possible to drop the i-cache flush
completely here.
After careful profiling it's also come up that all of the work associated
with hunting down aliases and doing ranged flushing ends up generating
more overhead than simply blasting away the entire dcache, particularly
if there are many mm's that need to be iterated over. As a result of
that, just move back to flush_dcache_all() in these cases, which restores
the old behaviour, and vastly simplifies the path.
Additionally, on platforms without aliases at all, this can simply be
nopped out. Presently we have the alias check in the SH-4 specific
version, but this is true for all of the platforms, so move the check up
to a generic location. This cuts down quite a bit on superfluous cacheop
IPIs.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
2009-09-09 05:04:06 +00:00
|
|
|
flush_dcache_all();
|
2006-09-27 05:09:26 +00:00
|
|
|
|
sh: sh4_flush_cache_mm() optimizations.
The i-cache flush in the case of VM_EXEC was added way back when as a
sanity measure, and in practice we only care about evicting aliases from
the d-cache. As a result, it's possible to drop the i-cache flush
completely here.
After careful profiling it's also come up that all of the work associated
with hunting down aliases and doing ranged flushing ends up generating
more overhead than simply blasting away the entire dcache, particularly
if there are many mm's that need to be iterated over. As a result of
that, just move back to flush_dcache_all() in these cases, which restores
the old behaviour, and vastly simplifies the path.
Additionally, on platforms without aliases at all, this can simply be
nopped out. Presently we have the alias check in the SH-4 specific
version, but this is true for all of the platforms, so move the check up
to a generic location. This cuts down quite a bit on superfluous cacheop
IPIs.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
2009-09-09 05:04:06 +00:00
|
|
|
if (vma->vm_flags & VM_EXEC)
|
2005-04-16 22:20:36 +00:00
|
|
|
flush_icache_all();
|
|
|
|
}
|
|
|
|
|
2006-09-27 05:09:26 +00:00
|
|
|
/**
|
2009-10-16 05:15:38 +00:00
|
|
|
* __flush_cache_one
|
2006-09-27 05:09:26 +00:00
|
|
|
*
|
|
|
|
* @addr: address in memory mapped cache array
|
|
|
|
* @phys: P1 address to flush (has to match tags if addr has 'A' bit
|
|
|
|
* set i.e. associative write)
|
|
|
|
* @exec_offset: set to 0x20000000 if flush has to be executed from P2
|
|
|
|
* region else 0x0
|
|
|
|
*
|
|
|
|
* The offset into the cache array implied by 'addr' selects the
|
|
|
|
* 'colour' of the virtual address range that will be flushed. The
|
|
|
|
* operation (purge/write-back) is selected by the lower 2 bits of
|
|
|
|
* 'phys'.
|
|
|
|
*/
|
2009-10-16 05:15:38 +00:00
|
|
|
static void __flush_cache_one(unsigned long addr, unsigned long phys,
|
2006-09-27 05:09:26 +00:00
|
|
|
unsigned long exec_offset)
|
|
|
|
{
|
|
|
|
int way_count;
|
|
|
|
unsigned long base_addr = addr;
|
|
|
|
struct cache_info *dcache;
|
|
|
|
unsigned long way_incr;
|
|
|
|
unsigned long a, ea, p;
|
|
|
|
unsigned long temp_pc;
|
|
|
|
|
2007-09-21 09:05:20 +00:00
|
|
|
dcache = &boot_cpu_data.dcache;
|
2006-09-27 05:09:26 +00:00
|
|
|
/* Write this way for better assembly. */
|
|
|
|
way_count = dcache->ways;
|
|
|
|
way_incr = dcache->way_incr;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Apply exec_offset (i.e. branch to P2 if required.).
|
|
|
|
*
|
|
|
|
* FIXME:
|
|
|
|
*
|
|
|
|
* If I write "=r" for the (temp_pc), it puts this in r6 hence
|
|
|
|
* trashing exec_offset before it's been added on - why? Hence
|
|
|
|
* "=&r" as a 'workaround'
|
|
|
|
*/
|
|
|
|
asm volatile("mov.l 1f, %0\n\t"
|
|
|
|
"add %1, %0\n\t"
|
|
|
|
"jmp @%0\n\t"
|
|
|
|
"nop\n\t"
|
|
|
|
".balign 4\n\t"
|
|
|
|
"1: .long 2f\n\t"
|
|
|
|
"2:\n" : "=&r" (temp_pc) : "r" (exec_offset));
|
|
|
|
|
|
|
|
/*
|
|
|
|
* We know there will be >=1 iteration, so write as do-while to avoid
|
|
|
|
* pointless nead-of-loop check for 0 iterations.
|
|
|
|
*/
|
|
|
|
do {
|
|
|
|
ea = base_addr + PAGE_SIZE;
|
|
|
|
a = base_addr;
|
|
|
|
p = phys;
|
|
|
|
|
|
|
|
do {
|
|
|
|
*(volatile unsigned long *)a = p;
|
|
|
|
/*
|
|
|
|
* Next line: intentionally not p+32, saves an add, p
|
|
|
|
* will do since only the cache tag bits need to
|
|
|
|
* match.
|
|
|
|
*/
|
|
|
|
*(volatile unsigned long *)(a+32) = p;
|
|
|
|
a += 64;
|
|
|
|
p += 64;
|
|
|
|
} while (a < ea);
|
|
|
|
|
|
|
|
base_addr += way_incr;
|
|
|
|
} while (--way_count != 0);
|
|
|
|
}
|
|
|
|
|
2009-08-15 03:29:49 +00:00
|
|
|
extern void __weak sh4__flush_region_init(void);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* SH-4 has virtually indexed and physically tagged cache.
|
|
|
|
*/
|
|
|
|
void __init sh4_cache_init(void)
|
|
|
|
{
|
|
|
|
printk("PVR=%08x CVR=%08x PRR=%08x\n",
|
|
|
|
ctrl_inl(CCN_PVR),
|
|
|
|
ctrl_inl(CCN_CVR),
|
|
|
|
ctrl_inl(CCN_PRR));
|
|
|
|
|
2009-08-21 08:23:14 +00:00
|
|
|
local_flush_icache_range = sh4_flush_icache_range;
|
|
|
|
local_flush_dcache_page = sh4_flush_dcache_page;
|
|
|
|
local_flush_cache_all = sh4_flush_cache_all;
|
|
|
|
local_flush_cache_mm = sh4_flush_cache_mm;
|
|
|
|
local_flush_cache_dup_mm = sh4_flush_cache_mm;
|
|
|
|
local_flush_cache_page = sh4_flush_cache_page;
|
|
|
|
local_flush_cache_range = sh4_flush_cache_range;
|
2009-08-15 03:29:49 +00:00
|
|
|
|
|
|
|
sh4__flush_region_init();
|
|
|
|
}
|