b.liu | e958203 | 2025-04-17 19:18:16 +0800 | [diff] [blame^] | 1 | /* |
| 2 | * (C) Copyright 2008, |
| 3 | * Daniel Hellstrom, Gaisler Research, daniel@gaisler.com. |
| 4 | * |
| 5 | * SPDX-License-Identifier: GPL-2.0+ |
| 6 | */ |
| 7 | |
| 8 | #ifndef __SPARC_CACHE_H__ |
| 9 | #define __SPARC_CACHE_H__ |
| 10 | |
| 11 | #include <asm/processor.h> |
| 12 | |
| 13 | /* |
| 14 | * If CONFIG_SYS_CACHELINE_SIZE is defined use it for DMA alignment. Otherwise |
| 15 | * use 32-bytes, the cacheline size for Sparc. |
| 16 | */ |
| 17 | #ifdef CONFIG_SYS_CACHELINE_SIZE |
| 18 | #define ARCH_DMA_MINALIGN CONFIG_SYS_CACHELINE_SIZE |
| 19 | #else |
| 20 | #define ARCH_DMA_MINALIGN 32 |
| 21 | #endif |
| 22 | |
| 23 | #endif |