2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2014-02-04 08:56:13 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2013-2014 Synopsys, Inc. All rights reserved.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ASM_ARC_CACHE_H
|
|
|
|
#define __ASM_ARC_CACHE_H
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
2015-12-14 14:14:46 +00:00
|
|
|
/*
|
|
|
|
* As of today we may handle any L1 cache line length right in software.
|
|
|
|
* For that essentially cache line length is a variable not constant.
|
|
|
|
* And to satisfy users of ARCH_DMA_MINALIGN we just use largest line length
|
|
|
|
* that may exist in either L1 or L2 (AKA SLC) caches on ARC.
|
|
|
|
*/
|
|
|
|
#define ARCH_DMA_MINALIGN 128
|
2014-02-04 08:56:13 +00:00
|
|
|
|
2019-01-22 16:37:15 +00:00
|
|
|
/* CONFIG_SYS_CACHELINE_SIZE is used a lot in drivers */
|
|
|
|
#define CONFIG_SYS_CACHELINE_SIZE ARCH_DMA_MINALIGN
|
|
|
|
|
2015-01-13 15:35:46 +00:00
|
|
|
#if defined(ARC_MMU_ABSENT)
|
|
|
|
#define CONFIG_ARC_MMU_VER 0
|
|
|
|
#elif defined(CONFIG_ARC_MMU_V2)
|
2015-02-03 10:58:11 +00:00
|
|
|
#define CONFIG_ARC_MMU_VER 2
|
|
|
|
#elif defined(CONFIG_ARC_MMU_V3)
|
|
|
|
#define CONFIG_ARC_MMU_VER 3
|
2015-01-13 15:35:46 +00:00
|
|
|
#elif defined(CONFIG_ARC_MMU_V4)
|
|
|
|
#define CONFIG_ARC_MMU_VER 4
|
2015-02-03 10:58:11 +00:00
|
|
|
#endif
|
|
|
|
|
2015-03-30 10:36:04 +00:00
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
|
2015-05-18 13:56:26 +00:00
|
|
|
void cache_init(void);
|
2018-03-21 12:58:50 +00:00
|
|
|
void flush_n_invalidate_dcache_all(void);
|
2018-03-21 12:59:02 +00:00
|
|
|
void sync_n_cleanup_cache_all(void);
|
2015-03-30 10:36:04 +00:00
|
|
|
|
2018-03-21 12:58:59 +00:00
|
|
|
static const inline int is_ioc_enabled(void)
|
|
|
|
{
|
|
|
|
return IS_ENABLED(CONFIG_ARC_DBG_IOC_ENABLE);
|
|
|
|
}
|
|
|
|
|
2015-03-30 10:36:04 +00:00
|
|
|
#endif /* __ASSEMBLY__ */
|
|
|
|
|
2014-02-04 08:56:13 +00:00
|
|
|
#endif /* __ASM_ARC_CACHE_H */
|