@ -1,5 +1,10 @@
/ * cache. S - l o w l e v e l c a c h e h a n d l i n g r o u t i n e s
* Copyright ( C ) 2 0 0 3 - 2 0 0 7 A n a l o g D e v i c e s I n c .
/ *
* Blackfin c a c h e c o n t r o l c o d e
*
* Copyright 2 0 0 3 - 2 0 0 8 A n a l o g D e v i c e s I n c .
*
* Enter b u g s a t h t t p : / / b l a c k f i n . u c l i n u x . o r g /
*
* Licensed u n d e r t h e G P L - 2 o r l a t e r .
* /
@ -8,54 +13,75 @@
# include < a s m / b l a c k f i n . h >
.text
.align 2
ENTRY( _ b l a c k f i n _ i c a c h e _ f l u s h _ r a n g e )
R2 = - 3 2 ;
R2 = R 0 & R 2 ;
P0 = R 2 ;
P1 = R 1 ;
CSYNC;
/ * Since a l l L 1 c a c h e s w o r k t h e s a m e w a y , w e u s e t h e s a m e m e t h o d f o r f l u s h i n g
* them. O n l y t h e a c t u a l f l u s h i n s t r u c t i o n d i f f e r s . W e w r i t e t h i s i n a s m a s
* GCC c a n b e h a r d t o c o a x i n t o w r i t i n g n i c e h a r d w a r e l o o p s .
*
* Also, w e a s s u m e t h e f o l l o w i n g r e g i s t e r s e t u p :
* R0 = s t a r t a d d r e s s
* R1 = e n d a d d r e s s
* /
.macro do_flush flushins : req o p t f l u s h i n s o p t n o p i n s l a b e l
R2 = - L 1 _ C A C H E _ B Y T E S ;
/* start = (start & -L1_CACHE_BYTES) */
R0 = R 0 & R 2 ;
/* end = ((end - 1) & -L1_CACHE_BYTES) + L1_CACHE_BYTES; */
R1 + = - 1 ;
R1 = R 1 & R 2 ;
R1 + = L 1 _ C A C H E _ B Y T E S ;
/* count = (end - start) >> L1_CACHE_SHIFT */
R2 = R 1 - R 0 ;
R2 > > = L 1 _ C A C H E _ S H I F T ;
P1 = R 2 ;
.ifnb \ label
\ label :
.endif
P0 = R 0 ;
LSETUP ( 1 f , 2 f ) L C 1 = P 1 ;
1 :
IFLUSH[ P 0 + + ] ;
CC = P 0 < P 1 ( i u ) ;
IF C C J U M P 1 b ( b p ) ;
IFLUSH[ P 0 ] ;
SSYNC;
.ifnb \ optflushins
\ optflushins [ P 0 ] ;
.endif
# if A N O M A L Y _ 0 5 0 0 0 4 4 3
.ifb \ optnopins
2 :
.endif
\ flushins [ P 0 + + ] ;
.ifnb \ optnopins
2 : \ optnopins;
.endif
# else
2 : \ flushins [ P 0 + + ] ;
# endif
RTS;
.endm
/* Invalidate all instruction cache lines assocoiated with this memory area */
ENTRY( _ b l a c k f i n _ i c a c h e _ f l u s h _ r a n g e )
do_ f l u s h I F L U S H , , n o p
ENDPROC( _ b l a c k f i n _ i c a c h e _ f l u s h _ r a n g e )
ENTRY( _ b l a c k f i n _ d c a c h e _ f l u s h _ r a n g e )
R2 = - 3 2 ;
R2 = R 0 & R 2 ;
P0 = R 2 ;
P1 = R 1 ;
CSYNC;
1 :
FLUSH[ P 0 + + ] ;
CC = P 0 < P 1 ( i u ) ;
IF C C J U M P 1 b ( b p ) ;
FLUSH[ P 0 ] ;
SSYNC;
RTS;
ENDPROC( _ b l a c k f i n _ d c a c h e _ f l u s h _ r a n g e )
/* Flush all cache lines assocoiated with this area of memory. */
ENTRY( _ b l a c k f i n _ i c a c h e _ d c a c h e _ f l u s h _ r a n g e )
do_ f l u s h F L U S H , I F L U S H
ENDPROC( _ b l a c k f i n _ i c a c h e _ d c a c h e _ f l u s h _ r a n g e )
/ * Throw a w a y a l l D - c a c h e d d a t a i n s p e c i f i e d r e g i o n w i t h o u t a n y o b l i g a t i o n t o
* write t h e m b a c k . S i n c e t h e B l a c k f i n I S A d o e s n o t h a v e a n " i n v a l i d a t e "
* instruction, w e u s e f l u s h / i n v a l i d a t e . P e r h a p s a s a s p e e d o p t i m i z a t i o n w e
* could b a n g o n t h e D T E S T M M R s . . .
* /
ENTRY( _ b l a c k f i n _ d c a c h e _ f l u s h _ i n v a l i d a t e _ r a n g e )
R2 = - 3 2 ;
R2 = R 0 & R 2 ;
P0 = R 2 ;
P1 = R 1 ;
CSYNC;
1 :
FLUSHINV[ P 0 + + ] ;
CC = P 0 < P 1 ( i u ) ;
IF C C J U M P 1 b ( b p ) ;
/ *
* If t h e d a t a c r o s s e s a c a c h e l i n e , t h e n w e ' l l b e p o i n t i n g t o
* the l a s t c a c h e l i n e , b u t w o n ' t h a v e f l u s h e d / i n v a l i d a t e d i t y e t , s o d o
* one m o r e .
* /
FLUSHINV[ P 0 ] ;
SSYNC;
RTS;
do_ f l u s h F L U S H I N V
ENDPROC( _ b l a c k f i n _ d c a c h e _ f l u s h _ i n v a l i d a t e _ r a n g e )
/* Flush all data cache lines assocoiated with this memory area */
ENTRY( _ b l a c k f i n _ d c a c h e _ f l u s h _ r a n g e )
do_ f l u s h F L U S H , , , . L d f r
ENDPROC( _ b l a c k f i n _ d c a c h e _ f l u s h _ r a n g e )