blob: 733cd80dc55978fe8bdbf23fd1fb24ecbbead725 [file] [log] [blame]
Masahiro Yamada95a1fec2016-08-10 16:08:37 +09001/*
2 * Copyright (C) 2016 Socionext Inc.
3 * Author: Masahiro Yamada <yamada.masahiro@socionext.com>
4 *
5 * SPDX-License-Identifier: GPL-2.0+
6 */
7
8#ifndef __CACHE_UNIPHIER_H
9#define __CACHE_UNIPHIER_H
10
11#include <linux/types.h>
12
13void uniphier_cache_prefetch_range(u32 start, u32 end, u32 ways);
14void uniphier_cache_touch_range(u32 start, u32 end, u32 ways);
15void uniphier_cache_touch_zero_range(u32 start, u32 end, u32 ways);
Masahiro Yamada6f579db2016-08-10 16:08:42 +090016void uniphier_cache_enable(void);
17void uniphier_cache_disable(void);
Masahiro Yamada95a1fec2016-08-10 16:08:37 +090018
19#endif /* __CACHE_UNIPHIER_H */