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
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2020-03-11 12:00:43 +00:00
|
|
|
/*
|
|
|
|
* We export SLC control functions to use them in platform configuration code.
|
|
|
|
* They maust not be used in any generic code!
|
|
|
|
*/
|
|
|
|
void slc_enable(void);
|
|
|
|
void slc_disable(void);
|
|
|
|
|
2015-03-30 10:36:04 +00:00
|
|
|
#endif /* __ASSEMBLY__ */
|
|
|
|
|
2014-02-04 08:56:13 +00:00
|
|
|
#endif /* __ASM_ARC_CACHE_H */
|