2022-06-07 16:11:14 +02:00
// SPDX-License-Identifier: GPL-2.0-only
2008-06-22 22:45:04 +02:00
/*
* arch / arm / mm / cache - feroceon - l2 . c - Feroceon L2 cache controller support
*
* Copyright ( C ) 2008 Marvell Semiconductor
*
* References :
* - Unified Layer 2 Cache for Feroceon CPU Cores ,
* Document ID MV - S104858 - 00 , Rev . A , October 23 2007.
*/
# include <linux/init.h>
2014-02-22 20:14:52 +01:00
# include <linux/of.h>
# include <linux/of_address.h>
2010-12-16 14:56:34 -05:00
# include <linux/highmem.h>
2014-02-22 20:14:52 +01:00
# include <linux/io.h>
2008-06-22 22:45:04 +02:00
# include <asm/cacheflush.h>
2012-03-28 18:30:01 +01:00
# include <asm/cp15.h>
2014-02-22 20:14:51 +01:00
# include <asm/hardware/cache-feroceon-l2.h>
2008-06-22 22:45:04 +02:00
2014-02-22 20:14:52 +01:00
# define L2_WRITETHROUGH_KIRKWOOD BIT(4)
2008-06-22 22:45:04 +02:00
/*
* Low - level cache maintenance operations .
*
* As well as the regular ' clean / invalidate / flush L2 cache line by
* MVA ' instructions , the Feroceon L2 cache controller also features
* ' clean / invalidate L2 range by MVA ' operations .
*
* Cache range operations are initiated by writing the start and
* end addresses to successive cp15 registers , and process every
* cache line whose first byte address lies in the inclusive range
* [ start : end ] .
*
* The cache range operations stall the CPU pipeline until completion .
*
* The range operations require two successive cp15 writes , in
* between which we don ' t want to be preempted .
*/
2008-09-12 16:11:51 -04:00
2010-12-16 14:56:34 -05:00
static inline unsigned long l2_get_va ( unsigned long paddr )
2008-09-12 16:11:51 -04:00
{
# ifdef CONFIG_HIGHMEM
/*
* Because range ops can ' t be done on physical addresses ,
* we simply install a virtual mapping for it only for the
* TLB lookup to occur , hence no need to flush the untouched
2010-12-16 14:56:34 -05:00
* memory mapping afterwards ( note : a cache flush may happen
* in some circumstances depending on the path taken in kunmap_atomic ) .
2008-09-12 16:11:51 -04:00
*/
2010-12-16 14:56:34 -05:00
void * vaddr = kmap_atomic_pfn ( paddr > > PAGE_SHIFT ) ;
return ( unsigned long ) vaddr + ( paddr & ~ PAGE_MASK ) ;
2008-09-12 16:11:51 -04:00
# else
return __phys_to_virt ( paddr ) ;
# endif
}
2010-12-16 14:56:34 -05:00
static inline void l2_put_va ( unsigned long vaddr )
{
# ifdef CONFIG_HIGHMEM
kunmap_atomic ( ( void * ) vaddr ) ;
# endif
}
2008-06-22 22:45:04 +02:00
static inline void l2_clean_pa ( unsigned long addr )
{
__asm__ ( " mcr p15, 1, %0, c15, c9, 3 " : : " r " ( addr ) ) ;
}
2008-09-12 16:11:51 -04:00
static inline void l2_clean_pa_range ( unsigned long start , unsigned long end )
2008-06-22 22:45:04 +02:00
{
2008-09-12 16:11:51 -04:00
unsigned long va_start , va_end , flags ;
2008-06-22 22:45:04 +02:00
/*
* Make sure ' start ' and ' end ' reference the same page , as
* L2 is PIPT and range operations only do a TLB lookup on
* the start address .
*/
2008-09-11 15:14:59 -04:00
BUG_ON ( ( start ^ end ) > > PAGE_SHIFT ) ;
2008-06-22 22:45:04 +02:00
2010-12-16 14:56:34 -05:00
va_start = l2_get_va ( start ) ;
2008-09-12 16:11:51 -04:00
va_end = va_start + ( end - start ) ;
2010-12-16 14:56:34 -05:00
raw_local_irq_save ( flags ) ;
2008-09-11 15:14:59 -04:00
__asm__ ( " mcr p15, 1, %0, c15, c9, 4 \n \t "
" mcr p15, 1, %1, c15, c9, 5 "
2008-09-12 16:11:51 -04:00
: : " r " ( va_start ) , " r " ( va_end ) ) ;
2008-06-22 22:45:04 +02:00
raw_local_irq_restore ( flags ) ;
2010-12-16 14:56:34 -05:00
l2_put_va ( va_start ) ;
2008-06-22 22:45:04 +02:00
}
static inline void l2_clean_inv_pa ( unsigned long addr )
{
__asm__ ( " mcr p15, 1, %0, c15, c10, 3 " : : " r " ( addr ) ) ;
}
static inline void l2_inv_pa ( unsigned long addr )
{
__asm__ ( " mcr p15, 1, %0, c15, c11, 3 " : : " r " ( addr ) ) ;
}
2008-09-12 16:11:51 -04:00
static inline void l2_inv_pa_range ( unsigned long start , unsigned long end )
2008-06-22 22:45:04 +02:00
{
2008-09-12 16:11:51 -04:00
unsigned long va_start , va_end , flags ;
2008-06-22 22:45:04 +02:00
/*
* Make sure ' start ' and ' end ' reference the same page , as
* L2 is PIPT and range operations only do a TLB lookup on
* the start address .
*/
2008-09-11 15:14:59 -04:00
BUG_ON ( ( start ^ end ) > > PAGE_SHIFT ) ;
2008-06-22 22:45:04 +02:00
2010-12-16 14:56:34 -05:00
va_start = l2_get_va ( start ) ;
2008-09-12 16:11:51 -04:00
va_end = va_start + ( end - start ) ;
2010-12-16 14:56:34 -05:00
raw_local_irq_save ( flags ) ;
2008-09-11 15:14:59 -04:00
__asm__ ( " mcr p15, 1, %0, c15, c11, 4 \n \t "
" mcr p15, 1, %1, c15, c11, 5 "
2008-09-12 16:11:51 -04:00
: : " r " ( va_start ) , " r " ( va_end ) ) ;
2008-06-22 22:45:04 +02:00
raw_local_irq_restore ( flags ) ;
2010-12-16 14:56:34 -05:00
l2_put_va ( va_start ) ;
2008-06-22 22:45:04 +02:00
}
2009-03-27 18:42:19 +01:00
static inline void l2_inv_all ( void )
{
__asm__ ( " mcr p15, 1, %0, c15, c11, 0 " : : " r " ( 0 ) ) ;
}
2008-06-22 22:45:04 +02:00
/*
* Linux primitives .
*
* Note that the end addresses passed to Linux primitives are
* noninclusive , while the hardware cache range operations use
* inclusive start and end addresses .
*/
# define CACHE_LINE_SIZE 32
# define MAX_RANGE_SIZE 1024
static int l2_wt_override ;
static unsigned long calc_range_end ( unsigned long start , unsigned long end )
{
unsigned long range_end ;
BUG_ON ( start & ( CACHE_LINE_SIZE - 1 ) ) ;
BUG_ON ( end & ( CACHE_LINE_SIZE - 1 ) ) ;
/*
* Try to process all cache lines between ' start ' and ' end ' .
*/
range_end = end ;
/*
* Limit the number of cache lines processed at once ,
* since cache range operations stall the CPU pipeline
* until completion .
*/
if ( range_end > start + MAX_RANGE_SIZE )
range_end = start + MAX_RANGE_SIZE ;
/*
* Cache range operations can ' t straddle a page boundary .
*/
if ( range_end > ( start | ( PAGE_SIZE - 1 ) ) + 1 )
range_end = ( start | ( PAGE_SIZE - 1 ) ) + 1 ;
return range_end ;
}
static void feroceon_l2_inv_range ( unsigned long start , unsigned long end )
{
/*
* Clean and invalidate partial first cache line .
*/
if ( start & ( CACHE_LINE_SIZE - 1 ) ) {
l2_clean_inv_pa ( start & ~ ( CACHE_LINE_SIZE - 1 ) ) ;
start = ( start | ( CACHE_LINE_SIZE - 1 ) ) + 1 ;
}
/*
* Clean and invalidate partial last cache line .
*/
2008-11-08 21:15:53 +01:00
if ( start < end & & end & ( CACHE_LINE_SIZE - 1 ) ) {
2008-06-22 22:45:04 +02:00
l2_clean_inv_pa ( end & ~ ( CACHE_LINE_SIZE - 1 ) ) ;
end & = ~ ( CACHE_LINE_SIZE - 1 ) ;
}
/*
* Invalidate all full cache lines between ' start ' and ' end ' .
*/
2008-11-08 21:15:53 +01:00
while ( start < end ) {
2008-06-22 22:45:04 +02:00
unsigned long range_end = calc_range_end ( start , end ) ;
l2_inv_pa_range ( start , range_end - CACHE_LINE_SIZE ) ;
start = range_end ;
}
dsb ( ) ;
}
static void feroceon_l2_clean_range ( unsigned long start , unsigned long end )
{
/*
* If L2 is forced to WT , the L2 will always be clean and we
* don ' t need to do anything here .
*/
if ( ! l2_wt_override ) {
start & = ~ ( CACHE_LINE_SIZE - 1 ) ;
end = ( end + CACHE_LINE_SIZE - 1 ) & ~ ( CACHE_LINE_SIZE - 1 ) ;
while ( start ! = end ) {
unsigned long range_end = calc_range_end ( start , end ) ;
l2_clean_pa_range ( start , range_end - CACHE_LINE_SIZE ) ;
start = range_end ;
}
}
dsb ( ) ;
}
static void feroceon_l2_flush_range ( unsigned long start , unsigned long end )
{
start & = ~ ( CACHE_LINE_SIZE - 1 ) ;
end = ( end + CACHE_LINE_SIZE - 1 ) & ~ ( CACHE_LINE_SIZE - 1 ) ;
while ( start ! = end ) {
unsigned long range_end = calc_range_end ( start , end ) ;
if ( ! l2_wt_override )
l2_clean_pa_range ( start , range_end - CACHE_LINE_SIZE ) ;
l2_inv_pa_range ( start , range_end - CACHE_LINE_SIZE ) ;
start = range_end ;
}
dsb ( ) ;
}
/*
* Routines to disable and re - enable the D - cache and I - cache at run
* time . These are necessary because the L2 cache can only be enabled
* or disabled while the L1 Dcache and Icache are both disabled .
*/
2008-09-11 15:14:59 -04:00
static int __init flush_and_disable_dcache ( void )
2008-06-22 22:45:04 +02:00
{
u32 cr ;
cr = get_cr ( ) ;
if ( cr & CR_C ) {
unsigned long flags ;
raw_local_irq_save ( flags ) ;
flush_cache_all ( ) ;
set_cr ( cr & ~ CR_C ) ;
raw_local_irq_restore ( flags ) ;
2008-09-11 15:14:59 -04:00
return 1 ;
2008-06-22 22:45:04 +02:00
}
2008-09-11 15:14:59 -04:00
return 0 ;
2008-06-22 22:45:04 +02:00
}
static void __init enable_dcache ( void )
{
u32 cr ;
cr = get_cr ( ) ;
2008-09-11 15:14:59 -04:00
set_cr ( cr | CR_C ) ;
2008-06-22 22:45:04 +02:00
}
static void __init __invalidate_icache ( void )
{
2009-03-27 14:22:26 -04:00
__asm__ ( " mcr p15, 0, %0, c7, c5, 0 " : : " r " ( 0 ) ) ;
2008-06-22 22:45:04 +02:00
}
2008-09-11 15:14:59 -04:00
static int __init invalidate_and_disable_icache ( void )
2008-06-22 22:45:04 +02:00
{
u32 cr ;
cr = get_cr ( ) ;
if ( cr & CR_I ) {
set_cr ( cr & ~ CR_I ) ;
__invalidate_icache ( ) ;
2008-09-11 15:14:59 -04:00
return 1 ;
2008-06-22 22:45:04 +02:00
}
2008-09-11 15:14:59 -04:00
return 0 ;
2008-06-22 22:45:04 +02:00
}
static void __init enable_icache ( void )
{
u32 cr ;
cr = get_cr ( ) ;
2008-09-11 15:14:59 -04:00
set_cr ( cr | CR_I ) ;
2008-06-22 22:45:04 +02:00
}
static inline u32 read_extra_features ( void )
{
u32 u ;
__asm__ ( " mrc p15, 1, %0, c15, c1, 0 " : " =r " ( u ) ) ;
return u ;
}
static inline void write_extra_features ( u32 u )
{
__asm__ ( " mcr p15, 1, %0, c15, c1, 0 " : : " r " ( u ) ) ;
}
static void __init disable_l2_prefetch ( void )
{
u32 u ;
/*
* Read the CPU Extra Features register and verify that the
* Disable L2 Prefetch bit is set .
*/
u = read_extra_features ( ) ;
if ( ! ( u & 0x01000000 ) ) {
2014-10-28 11:26:42 +00:00
pr_info ( " Feroceon L2: Disabling L2 prefetch. \n " ) ;
2008-06-22 22:45:04 +02:00
write_extra_features ( u | 0x01000000 ) ;
}
}
static void __init enable_l2 ( void )
{
u32 u ;
u = read_extra_features ( ) ;
if ( ! ( u & 0x00400000 ) ) {
2008-09-11 15:14:59 -04:00
int i , d ;
2014-10-28 11:26:42 +00:00
pr_info ( " Feroceon L2: Enabling L2 \n " ) ;
2008-06-22 22:45:04 +02:00
2008-09-11 15:14:59 -04:00
d = flush_and_disable_dcache ( ) ;
i = invalidate_and_disable_icache ( ) ;
2009-03-27 18:42:19 +01:00
l2_inv_all ( ) ;
2008-06-22 22:45:04 +02:00
write_extra_features ( u | 0x00400000 ) ;
2008-09-11 15:14:59 -04:00
if ( i )
enable_icache ( ) ;
if ( d )
enable_dcache ( ) ;
2014-01-31 19:49:24 +01:00
} else
pr_err ( FW_BUG
" Feroceon L2: bootloader left the L2 cache on! \n " ) ;
2008-06-22 22:45:04 +02:00
}
void __init feroceon_l2_init ( int __l2_wt_override )
{
l2_wt_override = __l2_wt_override ;
disable_l2_prefetch ( ) ;
outer_cache . inv_range = feroceon_l2_inv_range ;
outer_cache . clean_range = feroceon_l2_clean_range ;
outer_cache . flush_range = feroceon_l2_flush_range ;
enable_l2 ( ) ;
2014-10-28 11:26:42 +00:00
pr_info ( " Feroceon L2: Cache support initialised%s. \n " ,
2008-06-22 22:45:04 +02:00
l2_wt_override ? " , in WT override mode " : " " ) ;
}
2014-02-22 20:14:52 +01:00
# ifdef CONFIG_OF
static const struct of_device_id feroceon_ids [ ] __initconst = {
{ . compatible = " marvell,kirkwood-cache " } ,
{ . compatible = " marvell,feroceon-cache " } ,
{ }
} ;
int __init feroceon_of_init ( void )
{
struct device_node * node ;
void __iomem * base ;
bool l2_wt_override = false ;
# if defined(CONFIG_CACHE_FEROCEON_L2_WRITETHROUGH)
l2_wt_override = true ;
# endif
node = of_find_matching_node ( NULL , feroceon_ids ) ;
if ( node & & of_device_is_compatible ( node , " marvell,kirkwood-cache " ) ) {
2015-08-17 03:45:35 +01:00
base = of_iomap ( node , 0 ) ;
2014-02-22 20:14:52 +01:00
if ( ! base )
return - ENOMEM ;
if ( l2_wt_override )
writel ( readl ( base ) | L2_WRITETHROUGH_KIRKWOOD , base ) ;
else
writel ( readl ( base ) & ~ L2_WRITETHROUGH_KIRKWOOD , base ) ;
}
feroceon_l2_init ( l2_wt_override ) ;
return 0 ;
}
# endif