blob: c39b66dd7da633352d6ef0e8fd81d6520814d714 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Anton Staafee729af2011-10-17 16:46:10 -07002/*
3 * Copyright (c) 2011 The Chromium OS Authors.
Anton Staafee729af2011-10-17 16:46:10 -07004 */
5
6#ifndef __MICROBLAZE_CACHE_H__
7#define __MICROBLAZE_CACHE_H__
8
9/*
10 * The microblaze can have either a 4 or 16 byte cacheline depending on whether
11 * you are using OPB(4) or CacheLink(16). If the board config has not specified
12 * a cacheline size we assume the larger value of 16 bytes for DMA buffer
13 * alignment.
14 */
15#ifdef CONFIG_SYS_CACHELINE_SIZE
16#define ARCH_DMA_MINALIGN CONFIG_SYS_CACHELINE_SIZE
17#else
18#define ARCH_DMA_MINALIGN 16
19#endif
20
Ovidiu Panaitb1951342022-05-31 21:14:30 +030021/**
22 * flush_cache_all - flush the entire instruction/data caches
23 */
24void flush_cache_all(void);
25
Anton Staafee729af2011-10-17 16:46:10 -070026#endif /* __MICROBLAZE_CACHE_H__ */