blob: 669c362a52a563ab6f7dfcf43188b8559644b69d [file] [log] [blame]
Anton Staaf72d4dd42011-10-17 16:46:11 -07001/*
2 * Copyright (c) 2011 The Chromium OS Authors.
Anton Staaf72d4dd42011-10-17 16:46:11 -07003 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02004 * SPDX-License-Identifier: GPL-2.0+
Anton Staaf72d4dd42011-10-17 16:46:11 -07005 */
6
7#ifndef __MIPS_CACHE_H__
8#define __MIPS_CACHE_H__
9
Daniel Schwierzeckf53830e2016-01-09 17:32:50 +010010#define L1_CACHE_SHIFT CONFIG_MIPS_L1_CACHE_SHIFT
11#define L1_CACHE_BYTES (1 << L1_CACHE_SHIFT)
12
13#define ARCH_DMA_MINALIGN (L1_CACHE_BYTES)
Anton Staaf72d4dd42011-10-17 16:46:11 -070014
Paul Burton37228622016-05-27 14:28:05 +010015/*
16 * CONFIG_SYS_CACHELINE_SIZE is still used in various drivers primarily for
17 * DMA buffer alignment. Satisfy those drivers by providing it as a synonym
18 * of ARCH_DMA_MINALIGN for now.
19 */
20#define CONFIG_SYS_CACHELINE_SIZE ARCH_DMA_MINALIGN
21
Paul Burton8cb48172016-09-21 11:18:48 +010022/**
23 * mips_cache_probe() - Probe the properties of the caches
24 *
25 * Call this to probe the properties such as line sizes of the caches
26 * present in the system, if any. This must be done before cache maintenance
27 * functions such as flush_cache may be called.
28 */
29void mips_cache_probe(void);
30
Anton Staaf72d4dd42011-10-17 16:46:11 -070031#endif /* __MIPS_CACHE_H__ */