Anton Staaf | 72d4dd4 | 2011-10-17 16:46:11 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2011 The Chromium OS Authors. |
Anton Staaf | 72d4dd4 | 2011-10-17 16:46:11 -0700 | [diff] [blame] | 3 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 4 | * SPDX-License-Identifier: GPL-2.0+ |
Anton Staaf | 72d4dd4 | 2011-10-17 16:46:11 -0700 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #ifndef __MIPS_CACHE_H__ |
| 8 | #define __MIPS_CACHE_H__ |
| 9 | |
Daniel Schwierzeck | f53830e | 2016-01-09 17:32:50 +0100 | [diff] [blame] | 10 | #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 Staaf | 72d4dd4 | 2011-10-17 16:46:11 -0700 | [diff] [blame] | 14 | |
Paul Burton | 3722862 | 2016-05-27 14:28:05 +0100 | [diff] [blame] | 15 | /* |
| 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 | |
Marek Vasut | e7e0469 | 2016-11-25 23:32:22 +0100 | [diff] [blame] | 22 | #ifndef __ASSEMBLY__ |
Paul Burton | 8cb4817 | 2016-09-21 11:18:48 +0100 | [diff] [blame] | 23 | /** |
| 24 | * mips_cache_probe() - Probe the properties of the caches |
| 25 | * |
| 26 | * Call this to probe the properties such as line sizes of the caches |
| 27 | * present in the system, if any. This must be done before cache maintenance |
| 28 | * functions such as flush_cache may be called. |
| 29 | */ |
| 30 | void mips_cache_probe(void); |
Marek Vasut | e7e0469 | 2016-11-25 23:32:22 +0100 | [diff] [blame] | 31 | #endif |
Paul Burton | 8cb4817 | 2016-09-21 11:18:48 +0100 | [diff] [blame] | 32 | |
Anton Staaf | 72d4dd4 | 2011-10-17 16:46:11 -0700 | [diff] [blame] | 33 | #endif /* __MIPS_CACHE_H__ */ |