blob: 1f63127bdc8af38269e0ab2ab9487dc1292641b9 [file] [log] [blame]
Prafulla Wadaskare565fda2009-06-20 11:01:52 +02001/*
2 * (C) Copyright 2009
3 * Marvell Semiconductor <www.marvell.com>
4 * Written-by: Prafulla Wadaskar <prafulla@marvell.com>
5 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02006 * SPDX-License-Identifier: GPL-2.0+
Prafulla Wadaskare565fda2009-06-20 11:01:52 +02007 */
8
9#ifndef _ASM_CACHE_H
10#define _ASM_CACHE_H
11
12#include <asm/system.h>
13
David Feng85fd5f12013-12-14 11:47:35 +080014#ifndef CONFIG_ARM64
15
Prafulla Wadaskare565fda2009-06-20 11:01:52 +020016/*
17 * Invalidate L2 Cache using co-proc instruction
18 */
Albert ARIBAUDa3823222015-10-23 18:06:40 +020019#ifdef CONFIG_SYS_THUMB_BUILD
20void invalidate_l2_cache(void);
21#else
Prafulla Wadaskare565fda2009-06-20 11:01:52 +020022static inline void invalidate_l2_cache(void)
23{
24 unsigned int val=0;
25
26 asm volatile("mcr p15, 1, %0, c15, c11, 0 @ invl l2 cache"
27 : : "r" (val) : "cc");
28 isb();
29}
Albert ARIBAUDa3823222015-10-23 18:06:40 +020030#endif
Kim, Heung Jun3b5ac952009-06-20 11:02:17 +020031
32void l2_cache_enable(void);
33void l2_cache_disable(void);
Vincent Stehlé313fe562013-03-04 20:04:43 +000034void set_section_dcache(int section, enum dcache_option option);
Kim, Heung Jun3b5ac952009-06-20 11:02:17 +020035
Jeroen Hofsteed7460772014-06-23 22:07:04 +020036void arm_init_before_mmu(void);
37void arm_init_domains(void);
38void cpu_cache_initialization(void);
R Sricharan08716072013-03-04 20:04:44 +000039void dram_bank_mmu_setup(int bank);
David Feng85fd5f12013-12-14 11:47:35 +080040
41#endif
42
Anton Staaf13b6b592011-10-17 16:46:03 -070043/*
44 * The current upper bound for ARM L1 data cache line sizes is 64 bytes. We
45 * use that value for aligning DMA buffers unless the board config has specified
46 * an alternate cache line size.
47 */
48#ifdef CONFIG_SYS_CACHELINE_SIZE
49#define ARCH_DMA_MINALIGN CONFIG_SYS_CACHELINE_SIZE
50#else
51#define ARCH_DMA_MINALIGN 64
52#endif
53
Prafulla Wadaskare565fda2009-06-20 11:01:52 +020054#endif /* _ASM_CACHE_H */