2009-06-20 09:01:52 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2009
|
|
|
|
* Marvell Semiconductor <www.marvell.com>
|
|
|
|
* Written-by: Prafulla Wadaskar <prafulla@marvell.com>
|
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2009-06-20 09:01:52 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _ASM_CACHE_H
|
|
|
|
#define _ASM_CACHE_H
|
|
|
|
|
|
|
|
#include <asm/system.h>
|
|
|
|
|
2013-12-14 03:47:35 +00:00
|
|
|
#ifndef CONFIG_ARM64
|
|
|
|
|
2009-06-20 09:01:52 +00:00
|
|
|
/*
|
|
|
|
* Invalidate L2 Cache using co-proc instruction
|
|
|
|
*/
|
2017-03-18 13:01:44 +00:00
|
|
|
#if CONFIG_IS_ENABLED(SYS_THUMB_BUILD)
|
2015-10-23 16:06:40 +00:00
|
|
|
void invalidate_l2_cache(void);
|
|
|
|
#else
|
2009-06-20 09:01:52 +00:00
|
|
|
static inline void invalidate_l2_cache(void)
|
|
|
|
{
|
|
|
|
unsigned int val=0;
|
|
|
|
|
|
|
|
asm volatile("mcr p15, 1, %0, c15, c11, 0 @ invl l2 cache"
|
|
|
|
: : "r" (val) : "cc");
|
|
|
|
isb();
|
|
|
|
}
|
2015-10-23 16:06:40 +00:00
|
|
|
#endif
|
2009-06-20 09:02:17 +00:00
|
|
|
|
2016-06-20 01:43:01 +00:00
|
|
|
int check_cache_range(unsigned long start, unsigned long stop);
|
|
|
|
|
2009-06-20 09:02:17 +00:00
|
|
|
void l2_cache_enable(void);
|
|
|
|
void l2_cache_disable(void);
|
2013-03-04 20:04:43 +00:00
|
|
|
void set_section_dcache(int section, enum dcache_option option);
|
2009-06-20 09:02:17 +00:00
|
|
|
|
2014-06-23 20:07:04 +00:00
|
|
|
void arm_init_before_mmu(void);
|
|
|
|
void arm_init_domains(void);
|
|
|
|
void cpu_cache_initialization(void);
|
2013-03-04 20:04:44 +00:00
|
|
|
void dram_bank_mmu_setup(int bank);
|
2013-12-14 03:47:35 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2011-10-17 23:46:03 +00:00
|
|
|
/*
|
2016-08-22 12:22:17 +00:00
|
|
|
* The value of the largest data cache relevant to DMA operations shall be set
|
|
|
|
* for us in CONFIG_SYS_CACHELINE_SIZE. In some cases this may be a larger
|
|
|
|
* value than found in the L1 cache but this is OK to use in terms of
|
|
|
|
* alignment.
|
2011-10-17 23:46:03 +00:00
|
|
|
*/
|
|
|
|
#define ARCH_DMA_MINALIGN CONFIG_SYS_CACHELINE_SIZE
|
|
|
|
|
2009-06-20 09:01:52 +00:00
|
|
|
#endif /* _ASM_CACHE_H */
|