2005-06-24 07:01:24 +02:00
|
|
|
/*
|
|
|
|
* arch/xtensa/mm/misc.S
|
|
|
|
*
|
|
|
|
* Miscellaneous assembly functions.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2001 - 2005 Tensilica Inc.
|
|
|
|
*
|
|
|
|
* Chris Zankel <chris@zankel.net>
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Note: we might want to implement some of the loops as zero-overhead-loops,
|
|
|
|
* where applicable and if supported by the processor.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/linkage.h>
|
|
|
|
#include <asm/page.h>
|
|
|
|
#include <asm/pgtable.h>
|
2006-12-10 11:18:48 +01:00
|
|
|
#include <asm/asmmacro.h>
|
|
|
|
#include <asm/cacheasm.h>
|
2005-06-24 07:01:24 +02:00
|
|
|
|
|
|
|
/* clear_page (page) */
|
|
|
|
|
|
|
|
ENTRY(clear_page)
|
|
|
|
entry a1, 16
|
|
|
|
addi a4, a2, PAGE_SIZE
|
|
|
|
movi a3, 0
|
|
|
|
|
|
|
|
1: s32i a3, a2, 0
|
|
|
|
s32i a3, a2, 4
|
|
|
|
s32i a3, a2, 8
|
|
|
|
s32i a3, a2, 12
|
|
|
|
s32i a3, a2, 16
|
|
|
|
s32i a3, a2, 20
|
|
|
|
s32i a3, a2, 24
|
|
|
|
s32i a3, a2, 28
|
|
|
|
addi a2, a2, 32
|
|
|
|
blt a2, a4, 1b
|
|
|
|
|
|
|
|
retw
|
|
|
|
|
|
|
|
/*
|
|
|
|
* copy_page (void *to, void *from)
|
|
|
|
* a2 a3
|
|
|
|
*/
|
|
|
|
|
|
|
|
ENTRY(copy_page)
|
|
|
|
entry a1, 16
|
|
|
|
addi a4, a2, PAGE_SIZE
|
|
|
|
|
|
|
|
1: l32i a5, a3, 0
|
|
|
|
l32i a6, a3, 4
|
|
|
|
l32i a7, a3, 8
|
|
|
|
s32i a5, a2, 0
|
|
|
|
s32i a6, a2, 4
|
|
|
|
s32i a7, a2, 8
|
|
|
|
l32i a5, a3, 12
|
|
|
|
l32i a6, a3, 16
|
|
|
|
l32i a7, a3, 20
|
|
|
|
s32i a5, a2, 12
|
|
|
|
s32i a6, a2, 16
|
|
|
|
s32i a7, a2, 20
|
|
|
|
l32i a5, a3, 24
|
|
|
|
l32i a6, a3, 28
|
|
|
|
s32i a5, a2, 24
|
|
|
|
s32i a6, a2, 28
|
|
|
|
addi a2, a2, 32
|
|
|
|
addi a3, a3, 32
|
|
|
|
blt a2, a4, 1b
|
|
|
|
|
|
|
|
retw
|
|
|
|
|
|
|
|
/*
|
2006-12-10 11:18:48 +01:00
|
|
|
* void __invalidate_icache_page(ulong start)
|
2005-06-24 07:01:24 +02:00
|
|
|
*/
|
|
|
|
|
2006-12-10 11:18:48 +01:00
|
|
|
ENTRY(__invalidate_icache_page)
|
2005-06-24 07:01:24 +02:00
|
|
|
entry sp, 16
|
|
|
|
|
2006-12-10 11:18:48 +01:00
|
|
|
___invalidate_icache_page a2 a3
|
|
|
|
isync
|
2005-06-24 07:01:24 +02:00
|
|
|
|
|
|
|
retw
|
|
|
|
|
|
|
|
/*
|
2006-12-10 11:18:48 +01:00
|
|
|
* void __invalidate_dcache_page(ulong start)
|
2005-06-24 07:01:24 +02:00
|
|
|
*/
|
|
|
|
|
2006-12-10 11:18:48 +01:00
|
|
|
ENTRY(__invalidate_dcache_page)
|
2005-06-24 07:01:24 +02:00
|
|
|
entry sp, 16
|
|
|
|
|
2006-12-10 11:18:48 +01:00
|
|
|
___invalidate_dcache_page a2 a3
|
|
|
|
dsync
|
2005-06-24 07:01:24 +02:00
|
|
|
|
|
|
|
retw
|
|
|
|
|
|
|
|
/*
|
2006-12-10 11:18:48 +01:00
|
|
|
* void __flush_invalidate_dcache_page(ulong start)
|
2005-06-24 07:01:24 +02:00
|
|
|
*/
|
|
|
|
|
2006-12-10 11:18:48 +01:00
|
|
|
ENTRY(__flush_invalidate_dcache_page)
|
2005-06-24 07:01:24 +02:00
|
|
|
entry sp, 16
|
|
|
|
|
2006-12-10 11:18:48 +01:00
|
|
|
___flush_invalidate_dcache_page a2 a3
|
2005-06-24 07:01:24 +02:00
|
|
|
|
2006-12-10 11:18:48 +01:00
|
|
|
dsync
|
2005-06-24 07:01:24 +02:00
|
|
|
retw
|
|
|
|
|
|
|
|
/*
|
2006-12-10 11:18:48 +01:00
|
|
|
* void __flush_dcache_page(ulong start)
|
2005-06-24 07:01:24 +02:00
|
|
|
*/
|
|
|
|
|
2006-12-10 11:18:48 +01:00
|
|
|
ENTRY(__flush_dcache_page)
|
2005-06-24 07:01:24 +02:00
|
|
|
entry sp, 16
|
|
|
|
|
2006-12-10 11:18:48 +01:00
|
|
|
___flush_dcache_page a2 a3
|
2005-06-24 07:01:24 +02:00
|
|
|
|
2006-12-10 11:18:48 +01:00
|
|
|
dsync
|
2005-06-24 07:01:24 +02:00
|
|
|
retw
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
2006-12-10 11:18:48 +01:00
|
|
|
* void __invalidate_icache_range(ulong start, ulong size)
|
2005-06-24 07:01:24 +02:00
|
|
|
*/
|
|
|
|
|
2006-12-10 11:18:48 +01:00
|
|
|
ENTRY(__invalidate_icache_range)
|
2005-06-24 07:01:24 +02:00
|
|
|
entry sp, 16
|
2006-12-10 11:18:48 +01:00
|
|
|
|
|
|
|
___invalidate_icache_range a2 a3 a4
|
|
|
|
isync
|
|
|
|
|
2005-06-24 07:01:24 +02:00
|
|
|
retw
|
|
|
|
|
|
|
|
/*
|
|
|
|
* void __flush_invalidate_dcache_range(ulong start, ulong size)
|
|
|
|
*/
|
|
|
|
|
|
|
|
ENTRY(__flush_invalidate_dcache_range)
|
|
|
|
entry sp, 16
|
|
|
|
|
2006-12-10 11:18:48 +01:00
|
|
|
___flush_invalidate_dcache_range a2 a3 a4
|
|
|
|
dsync
|
2005-06-24 07:01:24 +02:00
|
|
|
|
|
|
|
retw
|
|
|
|
|
|
|
|
/*
|
2006-12-10 11:18:48 +01:00
|
|
|
* void _flush_dcache_range(ulong start, ulong size)
|
2005-06-24 07:01:24 +02:00
|
|
|
*/
|
|
|
|
|
2006-12-10 11:18:48 +01:00
|
|
|
ENTRY(__flush_dcache_range)
|
2005-06-24 07:01:24 +02:00
|
|
|
entry sp, 16
|
|
|
|
|
2006-12-10 11:18:48 +01:00
|
|
|
___flush_dcache_range a2 a3 a4
|
2005-06-24 07:01:24 +02:00
|
|
|
dsync
|
|
|
|
|
|
|
|
retw
|
|
|
|
|
2006-12-10 11:18:48 +01:00
|
|
|
/*
|
|
|
|
* void _invalidate_dcache_range(ulong start, ulong size)
|
|
|
|
*/
|
2005-06-24 07:01:24 +02:00
|
|
|
|
2006-12-10 11:18:48 +01:00
|
|
|
ENTRY(__invalidate_dcache_range)
|
2005-06-24 07:01:24 +02:00
|
|
|
entry sp, 16
|
|
|
|
|
2006-12-10 11:18:48 +01:00
|
|
|
___invalidate_dcache_range a2 a3 a4
|
2005-06-24 07:01:24 +02:00
|
|
|
|
|
|
|
|
|
|
|
retw
|
|
|
|
|
2006-12-10 11:18:48 +01:00
|
|
|
/*
|
|
|
|
* void _invalidate_icache_all(void)
|
|
|
|
*/
|
2005-06-24 07:01:24 +02:00
|
|
|
|
2006-12-10 11:18:48 +01:00
|
|
|
ENTRY(__invalidate_icache_all)
|
2005-06-24 07:01:24 +02:00
|
|
|
entry sp, 16
|
|
|
|
|
2006-12-10 11:18:48 +01:00
|
|
|
___invalidate_icache_all a2 a3
|
|
|
|
isync
|
2005-06-24 07:01:24 +02:00
|
|
|
|
|
|
|
retw
|
|
|
|
|
|
|
|
/*
|
2006-12-10 11:18:48 +01:00
|
|
|
* void _flush_invalidate_dcache_all(void)
|
2005-06-24 07:01:24 +02:00
|
|
|
*/
|
|
|
|
|
2006-12-10 11:18:48 +01:00
|
|
|
ENTRY(__flush_invalidate_dcache_all)
|
2005-06-24 07:01:24 +02:00
|
|
|
entry sp, 16
|
|
|
|
|
2006-12-10 11:18:48 +01:00
|
|
|
___flush_invalidate_dcache_all a2 a3
|
|
|
|
dsync
|
2005-06-24 07:01:24 +02:00
|
|
|
|
|
|
|
retw
|
|
|
|
|
2006-12-10 11:18:48 +01:00
|
|
|
/*
|
|
|
|
* void _invalidate_dcache_all(void)
|
|
|
|
*/
|
2005-06-24 07:01:24 +02:00
|
|
|
|
2006-12-10 11:18:48 +01:00
|
|
|
ENTRY(__invalidate_dcache_all)
|
2005-06-24 07:01:24 +02:00
|
|
|
entry sp, 16
|
|
|
|
|
2006-12-10 11:18:48 +01:00
|
|
|
___invalidate_dcache_all a2 a3
|
|
|
|
dsync
|
2005-06-24 07:01:24 +02:00
|
|
|
|
|
|
|
retw
|
|
|
|
|