2009-01-20 09:15:18 +03:00
/ *
* linux/ a r c h / a r m / m m / p r o c - m o h a w k . S : M M U f u n c t i o n s f o r M a r v e l l P J 1 c o r e
*
* PJ1 ( c o d e n a m e M o h a w k ) i s a h y b r i d o f t h e x s c a l e 3 a n d M a r v e l l ' s o w n c o r e .
*
* Heavily b a s e d o n p r o c - a r m 9 2 6 . S a n d p r o c - x s c3 . S
*
* This p r o g r a m i s f r e e s o f t w a r e ; you can redistribute it and/or modify
* it u n d e r t h e t e r m s o f t h e G N U G e n e r a l P u b l i c L i c e n s e a s p u b l i s h e d b y
* the F r e e S o f t w a r e F o u n d a t i o n ; either version 2 of the License, or
* ( at y o u r o p t i o n ) a n y l a t e r v e r s i o n .
*
* This p r o g r a m i s d i s t r i b u t e d i n t h e h o p e t h a t i t w i l l b e u s e f u l ,
* but W I T H O U T A N Y W A R R A N T Y ; without even the implied warranty of
* MERCHANTABILITY o r F I T N E S S F O R A P A R T I C U L A R P U R P O S E . S e e t h e
* GNU G e n e r a l P u b l i c L i c e n s e f o r m o r e d e t a i l s .
*
* You s h o u l d h a v e r e c e i v e d a c o p y o f t h e G N U G e n e r a l P u b l i c L i c e n s e
* along w i t h t h i s p r o g r a m ; if not, write to the Free Software
* Foundation, I n c . , 5 9 T e m p l e P l a c e , S u i t e 3 3 0 , B o s t o n , M A 0 2 1 1 1 - 1 3 0 7 U S A
* /
# include < l i n u x / l i n k a g e . h >
# include < l i n u x / i n i t . h >
# include < a s m / a s s e m b l e r . h >
# include < a s m / h w c a p . h >
# include < a s m / p g t a b l e - h w d e f . h >
# include < a s m / p g t a b l e . h >
# include < a s m / p a g e . h >
# include < a s m / p t r a c e . h >
# include " p r o c - m a c r o s . S "
/ *
* This i s t h e m a x i m u m s i z e o f a n a r e a w h i c h w i l l b e f l u s h e d . I f t h e
* area i s l a r g e r t h a n t h i s , t h e n w e f l u s h t h e w h o l e c a c h e .
* /
# define C A C H E _ D L I M I T 3 2 7 6 8
/ *
* The c a c h e l i n e s i z e o f t h e L 1 D c a c h e .
* /
# define C A C H E _ D L I N E S I Z E 3 2
/ *
* cpu_ m o h a w k _ p r o c _ i n i t ( )
* /
ENTRY( c p u _ m o h a w k _ p r o c _ i n i t )
2014-06-30 19:29:12 +04:00
ret l r
2009-01-20 09:15:18 +03:00
/ *
* cpu_ m o h a w k _ p r o c _ f i n ( )
* /
ENTRY( c p u _ m o h a w k _ p r o c _ f i n )
mrc p15 , 0 , r0 , c1 , c0 , 0 @ ctrl register
bic r0 , r0 , #0x1800 @ ...iz...........
bic r0 , r0 , #0x0006 @ .............ca.
mcr p15 , 0 , r0 , c1 , c0 , 0 @ disable caches
2014-06-30 19:29:12 +04:00
ret l r
2009-01-20 09:15:18 +03:00
/ *
* cpu_ m o h a w k _ r e s e t ( l o c )
*
* Perform a s o f t r e s e t o f t h e s y s t e m . P u t t h e C P U i n t o t h e
* same s t a t e a s i t w o u l d b e i f i t h a d b e e n r e s e t , a n d b r a n c h
* to w h a t w o u l d b e t h e r e s e t v e c t o r .
*
* loc : location t o j u m p t o f o r s o f t r e s e t
*
* ( same a s a r m 9 2 6 )
* /
.align 5
2011-11-15 17:25:04 +04:00
.pushsection .idmap .text , " ax"
2009-01-20 09:15:18 +03:00
ENTRY( c p u _ m o h a w k _ r e s e t )
mov i p , #0
mcr p15 , 0 , i p , c7 , c7 , 0 @ invalidate I,D caches
mcr p15 , 0 , i p , c7 , c10 , 4 @ drain WB
mcr p15 , 0 , i p , c8 , c7 , 0 @ invalidate I & D TLBs
mrc p15 , 0 , i p , c1 , c0 , 0 @ ctrl register
bic i p , i p , #0x0007 @ .............cam
bic i p , i p , #0x1100 @ ...i...s........
mcr p15 , 0 , i p , c1 , c0 , 0 @ ctrl register
2014-06-30 19:29:12 +04:00
ret r0
2011-11-15 17:25:04 +04:00
ENDPROC( c p u _ m o h a w k _ r e s e t )
.popsection
2009-01-20 09:15:18 +03:00
/ *
* cpu_ m o h a w k _ d o _ i d l e ( )
*
* Called w i t h I R Q s d i s a b l e d
* /
.align 5
ENTRY( c p u _ m o h a w k _ d o _ i d l e )
mov r0 , #0
mcr p15 , 0 , r0 , c7 , c10 , 4 @ drain write buffer
mcr p15 , 0 , r0 , c7 , c0 , 4 @ wait for interrupt
2014-06-30 19:29:12 +04:00
ret l r
2009-01-20 09:15:18 +03:00
2011-06-23 20:22:29 +04:00
/ *
* flush_ i c a c h e _ a l l ( )
*
* Unconditionally c l e a n a n d i n v a l i d a t e t h e e n t i r e i c a c h e .
* /
ENTRY( m o h a w k _ f l u s h _ i c a c h e _ a l l )
mov r0 , #0
mcr p15 , 0 , r0 , c7 , c5 , 0 @ invalidate I cache
2014-06-30 19:29:12 +04:00
ret l r
2011-06-23 20:22:29 +04:00
ENDPROC( m o h a w k _ f l u s h _ i c a c h e _ a l l )
2009-01-20 09:15:18 +03:00
/ *
* flush_ u s e r _ c a c h e _ a l l ( )
*
* Clean a n d i n v a l i d a t e a l l c a c h e e n t r i e s i n a p a r t i c u l a r
* address s p a c e .
* /
ENTRY( m o h a w k _ f l u s h _ u s e r _ c a c h e _ a l l )
/* FALLTHROUGH */
/ *
* flush_ k e r n _ c a c h e _ a l l ( )
*
* Clean a n d i n v a l i d a t e t h e e n t i r e c a c h e .
* /
ENTRY( m o h a w k _ f l u s h _ k e r n _ c a c h e _ a l l )
mov r2 , #V M _ E X E C
mov i p , #0
__flush_whole_cache :
mcr p15 , 0 , i p , c7 , c14 , 0 @ clean & invalidate all D cache
tst r2 , #V M _ E X E C
mcrne p15 , 0 , i p , c7 , c5 , 0 @ invalidate I cache
mcrne p15 , 0 , i p , c7 , c10 , 0 @ drain write buffer
2014-06-30 19:29:12 +04:00
ret l r
2009-01-20 09:15:18 +03:00
/ *
* flush_ u s e r _ c a c h e _ r a n g e ( s t a r t , e n d , f l a g s )
*
* Clean a n d i n v a l i d a t e a r a n g e o f c a c h e e n t r i e s i n t h e
* specified a d d r e s s r a n g e .
*
* - start - s t a r t a d d r e s s ( i n c l u s i v e )
* - end - e n d a d d r e s s ( e x c l u s i v e )
* - flags - v m _ f l a g s d e s c r i b i n g a d d r e s s s p a c e
*
* ( same a s a r m 9 2 6 )
* /
ENTRY( m o h a w k _ f l u s h _ u s e r _ c a c h e _ r a n g e )
mov i p , #0
sub r3 , r1 , r0 @ calculate total size
cmp r3 , #C A C H E _ D L I M I T
bgt _ _ f l u s h _ w h o l e _ c a c h e
1 : tst r2 , #V M _ E X E C
mcr p15 , 0 , r0 , c7 , c14 , 1 @ clean and invalidate D entry
mcrne p15 , 0 , r0 , c7 , c5 , 1 @ invalidate I entry
add r0 , r0 , #C A C H E _ D L I N E S I Z E
mcr p15 , 0 , r0 , c7 , c14 , 1 @ clean and invalidate D entry
mcrne p15 , 0 , r0 , c7 , c5 , 1 @ invalidate I entry
add r0 , r0 , #C A C H E _ D L I N E S I Z E
cmp r0 , r1
blo 1 b
tst r2 , #V M _ E X E C
mcrne p15 , 0 , i p , c7 , c10 , 4 @ drain WB
2014-06-30 19:29:12 +04:00
ret l r
2009-01-20 09:15:18 +03:00
/ *
* coherent_ k e r n _ r a n g e ( s t a r t , e n d )
*
* Ensure c o h e r e n c y b e t w e e n t h e I c a c h e a n d t h e D c a c h e i n t h e
* region d e s c r i b e d b y s t a r t , e n d . I f y o u h a v e n o n - s n o o p i n g
* Harvard c a c h e s , y o u n e e d t o i m p l e m e n t t h i s f u n c t i o n .
*
* - start - v i r t u a l s t a r t a d d r e s s
* - end - v i r t u a l e n d a d d r e s s
* /
ENTRY( m o h a w k _ c o h e r e n t _ k e r n _ r a n g e )
/* FALLTHROUGH */
/ *
* coherent_ u s e r _ r a n g e ( s t a r t , e n d )
*
* Ensure c o h e r e n c y b e t w e e n t h e I c a c h e a n d t h e D c a c h e i n t h e
* region d e s c r i b e d b y s t a r t , e n d . I f y o u h a v e n o n - s n o o p i n g
* Harvard c a c h e s , y o u n e e d t o i m p l e m e n t t h i s f u n c t i o n .
*
* - start - v i r t u a l s t a r t a d d r e s s
* - end - v i r t u a l e n d a d d r e s s
*
* ( same a s a r m 9 2 6 )
* /
ENTRY( m o h a w k _ c o h e r e n t _ u s e r _ r a n g e )
bic r0 , r0 , #C A C H E _ D L I N E S I Z E - 1
1 : mcr p15 , 0 , r0 , c7 , c10 , 1 @ clean D entry
mcr p15 , 0 , r0 , c7 , c5 , 1 @ invalidate I entry
add r0 , r0 , #C A C H E _ D L I N E S I Z E
cmp r0 , r1
blo 1 b
mcr p15 , 0 , r0 , c7 , c10 , 4 @ drain WB
2012-04-27 16:08:53 +04:00
mov r0 , #0
2014-06-30 19:29:12 +04:00
ret l r
2009-01-20 09:15:18 +03:00
/ *
2009-11-26 15:56:21 +03:00
* flush_ k e r n _ d c a c h e _ a r e a ( v o i d * a d d r , s i z e _ t s i z e )
2009-01-20 09:15:18 +03:00
*
* Ensure n o D c a c h e a l i a s i n g o c c u r s , e i t h e r w i t h i t s e l f o r
* the I c a c h e
*
2009-11-26 15:56:21 +03:00
* - addr - k e r n e l a d d r e s s
* - size - r e g i o n s i z e
2009-01-20 09:15:18 +03:00
* /
2009-11-26 15:56:21 +03:00
ENTRY( m o h a w k _ f l u s h _ k e r n _ d c a c h e _ a r e a )
add r1 , r0 , r1
2009-01-20 09:15:18 +03:00
1 : mcr p15 , 0 , r0 , c7 , c14 , 1 @ clean+invalidate D entry
add r0 , r0 , #C A C H E _ D L I N E S I Z E
cmp r0 , r1
blo 1 b
mov r0 , #0
mcr p15 , 0 , r0 , c7 , c5 , 0 @ invalidate I cache
mcr p15 , 0 , r0 , c7 , c10 , 4 @ drain WB
2014-06-30 19:29:12 +04:00
ret l r
2009-01-20 09:15:18 +03:00
/ *
* dma_ i n v _ r a n g e ( s t a r t , e n d )
*
* Invalidate ( d i s c a r d ) t h e s p e c i f i e d v i r t u a l a d d r e s s r a n g e .
* May n o t w r i t e b a c k a n y e n t r i e s . I f ' s t a r t ' o r ' e n d '
* are n o t c a c h e l i n e a l i g n e d , t h o s e l i n e s m u s t b e w r i t t e n
* back.
*
* - start - v i r t u a l s t a r t a d d r e s s
* - end - v i r t u a l e n d a d d r e s s
*
* ( same a s v4 w b )
* /
2009-11-26 19:24:19 +03:00
mohawk_dma_inv_range :
2009-01-20 09:15:18 +03:00
tst r0 , #C A C H E _ D L I N E S I Z E - 1
mcrne p15 , 0 , r0 , c7 , c10 , 1 @ clean D entry
tst r1 , #C A C H E _ D L I N E S I Z E - 1
mcrne p15 , 0 , r1 , c7 , c10 , 1 @ clean D entry
bic r0 , r0 , #C A C H E _ D L I N E S I Z E - 1
1 : mcr p15 , 0 , r0 , c7 , c6 , 1 @ invalidate D entry
add r0 , r0 , #C A C H E _ D L I N E S I Z E
cmp r0 , r1
blo 1 b
mcr p15 , 0 , r0 , c7 , c10 , 4 @ drain WB
2014-06-30 19:29:12 +04:00
ret l r
2009-01-20 09:15:18 +03:00
/ *
* dma_ c l e a n _ r a n g e ( s t a r t , e n d )
*
* Clean t h e s p e c i f i e d v i r t u a l a d d r e s s r a n g e .
*
* - start - v i r t u a l s t a r t a d d r e s s
* - end - v i r t u a l e n d a d d r e s s
*
* ( same a s v4 w b )
* /
2009-11-26 19:24:19 +03:00
mohawk_dma_clean_range :
2009-01-20 09:15:18 +03:00
bic r0 , r0 , #C A C H E _ D L I N E S I Z E - 1
1 : mcr p15 , 0 , r0 , c7 , c10 , 1 @ clean D entry
add r0 , r0 , #C A C H E _ D L I N E S I Z E
cmp r0 , r1
blo 1 b
mcr p15 , 0 , r0 , c7 , c10 , 4 @ drain WB
2014-06-30 19:29:12 +04:00
ret l r
2009-01-20 09:15:18 +03:00
/ *
* dma_ f l u s h _ r a n g e ( s t a r t , e n d )
*
* Clean a n d i n v a l i d a t e t h e s p e c i f i e d v i r t u a l a d d r e s s r a n g e .
*
* - start - v i r t u a l s t a r t a d d r e s s
* - end - v i r t u a l e n d a d d r e s s
* /
ENTRY( m o h a w k _ d m a _ f l u s h _ r a n g e )
bic r0 , r0 , #C A C H E _ D L I N E S I Z E - 1
1 :
mcr p15 , 0 , r0 , c7 , c14 , 1 @ clean+invalidate D entry
add r0 , r0 , #C A C H E _ D L I N E S I Z E
cmp r0 , r1
blo 1 b
mcr p15 , 0 , r0 , c7 , c10 , 4 @ drain WB
2014-06-30 19:29:12 +04:00
ret l r
2009-01-20 09:15:18 +03:00
2009-11-26 19:19:58 +03:00
/ *
* dma_ m a p _ a r e a ( s t a r t , s i z e , d i r )
* - start - k e r n e l v i r t u a l s t a r t a d d r e s s
* - size - s i z e o f r e g i o n
* - dir - D M A d i r e c t i o n
* /
ENTRY( m o h a w k _ d m a _ m a p _ a r e a )
add r1 , r1 , r0
cmp r2 , #D M A _ T O _ D E V I C E
beq m o h a w k _ d m a _ c l e a n _ r a n g e
bcs m o h a w k _ d m a _ i n v _ r a n g e
b m o h a w k _ d m a _ f l u s h _ r a n g e
ENDPROC( m o h a w k _ d m a _ m a p _ a r e a )
/ *
* dma_ u n m a p _ a r e a ( s t a r t , s i z e , d i r )
* - start - k e r n e l v i r t u a l s t a r t a d d r e s s
* - size - s i z e o f r e g i o n
* - dir - D M A d i r e c t i o n
* /
ENTRY( m o h a w k _ d m a _ u n m a p _ a r e a )
2014-06-30 19:29:12 +04:00
ret l r
2009-11-26 19:19:58 +03:00
ENDPROC( m o h a w k _ d m a _ u n m a p _ a r e a )
2012-09-06 17:05:13 +04:00
.globl mohawk_flush_kern_cache_louis
.equ mohawk_ f l u s h _ k e r n _ c a c h e _ l o u i s , m o h a w k _ f l u s h _ k e r n _ c a c h e _ a l l
2011-06-23 20:22:29 +04:00
@ define struct cpu_cache_fns (see <asm/cacheflush.h> and proc-macros.S)
define_ c a c h e _ f u n c t i o n s m o h a w k
2009-01-20 09:15:18 +03:00
ENTRY( c p u _ m o h a w k _ d c a c h e _ c l e a n _ a r e a )
1 : mcr p15 , 0 , r0 , c7 , c10 , 1 @ clean D entry
add r0 , r0 , #C A C H E _ D L I N E S I Z E
subs r1 , r1 , #C A C H E _ D L I N E S I Z E
bhi 1 b
mcr p15 , 0 , r0 , c7 , c10 , 4 @ drain WB
2014-06-30 19:29:12 +04:00
ret l r
2009-01-20 09:15:18 +03:00
/ *
* cpu_ m o h a w k _ s w i t c h _ m m ( p g d )
*
* Set t h e t r a n s l a t i o n b a s e p o i n t e r t o b e a s d e s c r i b e d b y p g d .
*
* pgd : new p a g e t a b l e s
* /
.align 5
ENTRY( c p u _ m o h a w k _ s w i t c h _ m m )
mov i p , #0
mcr p15 , 0 , i p , c7 , c14 , 0 @ clean & invalidate all D cache
mcr p15 , 0 , i p , c7 , c5 , 0 @ invalidate I cache
mcr p15 , 0 , i p , c7 , c10 , 4 @ drain WB
orr r0 , r0 , #0x18 @ cache the page table in L2
mcr p15 , 0 , r0 , c2 , c0 , 0 @ load page table pointer
mcr p15 , 0 , i p , c8 , c7 , 0 @ invalidate I & D TLBs
2014-06-30 19:29:12 +04:00
ret l r
2009-01-20 09:15:18 +03:00
/ *
* cpu_ m o h a w k _ s e t _ p t e _ e x t ( p t e p , p t e , e x t )
*
* Set a P T E a n d f l u s h i t o u t
* /
.align 5
ENTRY( c p u _ m o h a w k _ s e t _ p t e _ e x t )
2014-04-16 11:54:02 +04:00
# ifdef C O N F I G _ M M U
2009-01-20 09:15:18 +03:00
armv3 _ s e t _ p t e _ e x t
mov r0 , r0
mcr p15 , 0 , r0 , c7 , c10 , 1 @ clean D entry
mcr p15 , 0 , r0 , c7 , c10 , 4 @ drain WB
2014-06-30 19:29:12 +04:00
ret l r
2014-04-16 11:54:02 +04:00
# endif
2009-01-20 09:15:18 +03:00
2012-05-07 07:23:58 +04:00
.globl cpu_mohawk_suspend_size
.equ cpu_ m o h a w k _ s u s p e n d _ s i z e , 4 * 6
2013-04-08 14:44:57 +04:00
# ifdef C O N F I G _ A R M _ C P U _ S U S P E N D
2012-05-07 07:23:58 +04:00
ENTRY( c p u _ m o h a w k _ d o _ s u s p e n d )
stmfd s p ! , { r4 - r9 , l r }
mrc p14 , 0 , r4 , c6 , c0 , 0 @ clock configuration, for turbo mode
mrc p15 , 0 , r5 , c15 , c1 , 0 @ CP access reg
mrc p15 , 0 , r6 , c13 , c0 , 0 @ PID
mrc p15 , 0 , r7 , c3 , c0 , 0 @ domain ID
mrc p15 , 0 , r8 , c1 , c0 , 1 @ auxiliary control reg
mrc p15 , 0 , r9 , c1 , c0 , 0 @ control reg
bic r4 , r4 , #2 @ clear frequency change bit
stmia r0 , { r4 - r9 } @ store cp regs
ldmia s p ! , { r4 - r9 , p c }
ENDPROC( c p u _ m o h a w k _ d o _ s u s p e n d )
ENTRY( c p u _ m o h a w k _ d o _ r e s u m e )
ldmia r0 , { r4 - r9 } @ load cp regs
mov i p , #0
mcr p15 , 0 , i p , c7 , c7 , 0 @ invalidate I & D caches, BTB
mcr p15 , 0 , i p , c7 , c10 , 4 @ drain write (&fill) buffer
mcr p15 , 0 , i p , c7 , c5 , 4 @ flush prefetch buffer
mcr p15 , 0 , i p , c8 , c7 , 0 @ invalidate I & D TLBs
mcr p14 , 0 , r4 , c6 , c0 , 0 @ clock configuration, turbo mode.
mcr p15 , 0 , r5 , c15 , c1 , 0 @ CP access reg
mcr p15 , 0 , r6 , c13 , c0 , 0 @ PID
mcr p15 , 0 , r7 , c3 , c0 , 0 @ domain ID
orr r1 , r1 , #0x18 @ cache the page table in L2
mcr p15 , 0 , r1 , c2 , c0 , 0 @ translation table base addr
mcr p15 , 0 , r8 , c1 , c0 , 1 @ auxiliary control reg
mov r0 , r9 @ control register
b c p u _ r e s u m e _ m m u
ENDPROC( c p u _ m o h a w k _ d o _ r e s u m e )
# endif
2009-01-20 09:15:18 +03:00
.type _ _ mohawk_ s e t u p , #f u n c t i o n
__mohawk_setup :
mov r0 , #0
mcr p15 , 0 , r0 , c7 , c7 @ invalidate I,D caches
mcr p15 , 0 , r0 , c7 , c10 , 4 @ drain write buffer
mcr p15 , 0 , r0 , c8 , c7 @ invalidate I,D TLBs
orr r4 , r4 , #0x18 @ cache the page table in L2
mcr p15 , 0 , r4 , c2 , c0 , 0 @ load page table pointer
mov r0 , #0 @ don't allow CP access
mcr p15 , 0 , r0 , c15 , c1 , 0 @ write CP access register
adr r5 , m o h a w k _ c r v a l
ldmia r5 , { r5 , r6 }
mrc p15 , 0 , r0 , c1 , c0 @ get control register
bic r0 , r0 , r5
orr r0 , r0 , r6
2014-06-30 19:29:12 +04:00
ret l r
2009-01-20 09:15:18 +03:00
.size _ _ mohawk_ s e t u p , . - _ _ m o h a w k _ s e t u p
/ *
* R
* .RVI ZFRS BLDP W C A M
* .011 1001 . .00 0101
*
* /
.type mohawk_ c r v a l , #o b j e c t
mohawk_crval :
crval c l e a r =0x00007f3f , m m u s e t =0x00003905 , u c s e t =0x00001134
_ _ INITDATA
2011-06-23 20:22:29 +04:00
@ define struct processor (see <asm/proc-fns.h> and proc-macros.S)
define_ p r o c e s s o r _ f u n c t i o n s m o h a w k , d a b o r t =v5t_early_abort , p a b o r t =legacy_pabort
2009-01-20 09:15:18 +03:00
.section " .rodata "
2011-06-23 20:22:29 +04:00
string c p u _ a r c h _ n a m e , " a r m v5 t e "
string c p u _ e l f _ n a m e , " v5 "
string c p u _ m o h a w k _ n a m e , " M a r v e l l 8 8 S V 3 3 1 x "
2009-01-20 09:15:18 +03:00
.align
2015-03-18 09:29:32 +03:00
.section " .proc .info .init " , # alloc
2009-01-20 09:15:18 +03:00
.type _ _ 8 8 sv3 3 1 x _ p r o c _ i n f o ,#o b j e c t
__88sv331x_proc_info :
.long 0x56158000 @ Marvell 88SV331x (MOHAWK)
.long 0xfffff000
.long PMD_TYPE_SECT | \
PMD_ S E C T _ B U F F E R A B L E | \
PMD_ S E C T _ C A C H E A B L E | \
PMD_ B I T 4 | \
PMD_ S E C T _ A P _ W R I T E | \
PMD_ S E C T _ A P _ R E A D
.long PMD_TYPE_SECT | \
PMD_ B I T 4 | \
PMD_ S E C T _ A P _ W R I T E | \
PMD_ S E C T _ A P _ R E A D
2015-03-18 09:29:32 +03:00
initfn _ _ m o h a w k _ s e t u p , _ _ 8 8 s v33 1 x _ p r o c _ i n f o
2009-01-20 09:15:18 +03:00
.long cpu_arch_name
.long cpu_elf_name
.long HWCAP_ S W P | H W C A P _ H A L F | H W C A P _ T H U M B | H W C A P _ F A S T _ M U L T | H W C A P _ E D S P
.long cpu_mohawk_name
.long mohawk_processor_functions
.long v4wbi_tlb_fns
.long v4wb_user_fns
.long mohawk_cache_fns
.size _ _ 8 8 sv3 3 1 x _ p r o c _ i n f o , . - _ _ 8 8 s v33 1 x _ p r o c _ i n f o