Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Anton staaf | cceea66 | 2011-10-25 10:48:03 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2011 The Chromium OS Authors. |
Anton staaf | cceea66 | 2011-10-25 10:48:03 +0000 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #ifndef __SANDBOX_CACHE_H__ |
| 7 | #define __SANDBOX_CACHE_H__ |
| 8 | |
| 9 | /* |
| 10 | * For native compilation of the sandbox we should still align |
| 11 | * the contents of stack buffers to something reasonable. The |
| 12 | * GCC macro __BIGGEST_ALIGNMENT__ is defined to be the maximum |
| 13 | * required alignment for any basic type. This seems reasonable. |
Tom Rini | 699946a | 2016-03-05 14:07:44 -0500 | [diff] [blame] | 14 | * This is however GCC specific so if we don't have that available |
| 15 | * assume that 16 is large enough. |
Anton staaf | cceea66 | 2011-10-25 10:48:03 +0000 | [diff] [blame] | 16 | */ |
Tom Rini | 699946a | 2016-03-05 14:07:44 -0500 | [diff] [blame] | 17 | #ifdef __BIGGEST_ALIGNMENT__ |
Anton staaf | cceea66 | 2011-10-25 10:48:03 +0000 | [diff] [blame] | 18 | #define ARCH_DMA_MINALIGN __BIGGEST_ALIGNMENT__ |
Tom Rini | 699946a | 2016-03-05 14:07:44 -0500 | [diff] [blame] | 19 | #else |
| 20 | #define ARCH_DMA_MINALIGN 16 |
| 21 | #endif |
Tom Rini | 690d8a9 | 2016-03-15 13:20:23 -0400 | [diff] [blame] | 22 | #define CONFIG_SYS_CACHELINE_SIZE ARCH_DMA_MINALIGN |
Anton staaf | cceea66 | 2011-10-25 10:48:03 +0000 | [diff] [blame] | 23 | |
| 24 | #endif /* __SANDBOX_CACHE_H__ */ |