Alexey Brodkin | 288aaac | 2014-02-04 12:56:13 +0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2013-2014 Synopsys, Inc. All rights reserved. |
| 3 | * |
| 4 | * SPDX-License-Identifier: GPL-2.0+ |
| 5 | */ |
| 6 | |
| 7 | #ifndef __ASM_ARC_CACHE_H |
| 8 | #define __ASM_ARC_CACHE_H |
| 9 | |
| 10 | #include <config.h> |
| 11 | |
Alexey Brodkin | 379b328 | 2015-12-14 17:14:46 +0300 | [diff] [blame] | 12 | /* |
| 13 | * As of today we may handle any L1 cache line length right in software. |
| 14 | * For that essentially cache line length is a variable not constant. |
| 15 | * And to satisfy users of ARCH_DMA_MINALIGN we just use largest line length |
| 16 | * that may exist in either L1 or L2 (AKA SLC) caches on ARC. |
| 17 | */ |
| 18 | #define ARCH_DMA_MINALIGN 128 |
Alexey Brodkin | 288aaac | 2014-02-04 12:56:13 +0400 | [diff] [blame] | 19 | |
Alexey Brodkin | f13606b | 2015-01-13 18:35:46 +0300 | [diff] [blame] | 20 | #if defined(ARC_MMU_ABSENT) |
| 21 | #define CONFIG_ARC_MMU_VER 0 |
| 22 | #elif defined(CONFIG_ARC_MMU_V2) |
Alexey Brodkin | 812980b | 2015-02-03 13:58:11 +0300 | [diff] [blame] | 23 | #define CONFIG_ARC_MMU_VER 2 |
| 24 | #elif defined(CONFIG_ARC_MMU_V3) |
| 25 | #define CONFIG_ARC_MMU_VER 3 |
Alexey Brodkin | f13606b | 2015-01-13 18:35:46 +0300 | [diff] [blame] | 26 | #elif defined(CONFIG_ARC_MMU_V4) |
| 27 | #define CONFIG_ARC_MMU_VER 4 |
Alexey Brodkin | 812980b | 2015-02-03 13:58:11 +0300 | [diff] [blame] | 28 | #endif |
| 29 | |
Alexey Brodkin | 6eb15e5 | 2015-03-30 13:36:04 +0300 | [diff] [blame] | 30 | #ifndef __ASSEMBLY__ |
| 31 | |
Alexey Brodkin | ef639e6 | 2015-05-18 16:56:26 +0300 | [diff] [blame] | 32 | void cache_init(void); |
Alexey Brodkin | 6eb15e5 | 2015-03-30 13:36:04 +0300 | [diff] [blame] | 33 | |
| 34 | #endif /* __ASSEMBLY__ */ |
| 35 | |
Alexey Brodkin | 288aaac | 2014-02-04 12:56:13 +0400 | [diff] [blame] | 36 | #endif /* __ASM_ARC_CACHE_H */ |