blob: 0dfb54ef4dda75e49be553569ce10f0af61e4894 [file] [log] [blame]
Anton Staaf72d4dd42011-10-17 16:46:11 -07001/*
2 * Copyright (c) 2011 The Chromium OS Authors.
Anton Staaf72d4dd42011-10-17 16:46:11 -07003 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02004 * SPDX-License-Identifier: GPL-2.0+
Anton Staaf72d4dd42011-10-17 16:46:11 -07005 */
6
7#ifndef __MIPS_CACHE_H__
8#define __MIPS_CACHE_H__
9
10/*
11 * The maximum L1 data cache line size on MIPS seems to be 128 bytes. We use
12 * that as a default for aligning DMA buffers unless the board config has
13 * specified another cache line size.
14 */
15#ifdef CONFIG_SYS_CACHELINE_SIZE
16#define ARCH_DMA_MINALIGN CONFIG_SYS_CACHELINE_SIZE
17#else
18#define ARCH_DMA_MINALIGN 128
19#endif
20
21#endif /* __MIPS_CACHE_H__ */