blob: d26d9fb18d0e1b6573b2d8a8c3019ba7c59565ee [file] [log] [blame]
Alexey Brodkin544c5f52014-02-04 12:56:13 +04001/*
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 Brodkindff5df22015-12-14 17:14:46 +030012/*
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 Brodkin544c5f52014-02-04 12:56:13 +040019
Alexey Brodkine41a3d52015-01-13 18:35:46 +030020#if defined(ARC_MMU_ABSENT)
21#define CONFIG_ARC_MMU_VER 0
22#elif defined(CONFIG_ARC_MMU_V2)
Alexey Brodkinf431e262015-02-03 13:58:11 +030023#define CONFIG_ARC_MMU_VER 2
24#elif defined(CONFIG_ARC_MMU_V3)
25#define CONFIG_ARC_MMU_VER 3
Alexey Brodkine41a3d52015-01-13 18:35:46 +030026#elif defined(CONFIG_ARC_MMU_V4)
27#define CONFIG_ARC_MMU_VER 4
Alexey Brodkinf431e262015-02-03 13:58:11 +030028#endif
29
Alexey Brodkin275583e2015-03-30 13:36:04 +030030#ifndef __ASSEMBLY__
31
Alexey Brodkin9f916ee2015-05-18 16:56:26 +030032void cache_init(void);
Alexey Brodkin275583e2015-03-30 13:36:04 +030033
34#endif /* __ASSEMBLY__ */
35
Alexey Brodkin544c5f52014-02-04 12:56:13 +040036#endif /* __ASM_ARC_CACHE_H */