commit d1edce71135cc6d98c0a4b5729774542b676e769 Author: sophgo-forum-service <forum_service@sophgo.com> Date: Fri Mar 15 16:07:33 2024 +0800 [fix] recommend using ssh method to clone repo. [fix] fix sensor driver repo branch name.
25 lines
722 B
C
25 lines
722 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright (c) 2011 The Chromium OS Authors.
|
|
*/
|
|
|
|
#ifndef __SANDBOX_CACHE_H__
|
|
#define __SANDBOX_CACHE_H__
|
|
|
|
/*
|
|
* For native compilation of the sandbox we should still align
|
|
* the contents of stack buffers to something reasonable. The
|
|
* GCC macro __BIGGEST_ALIGNMENT__ is defined to be the maximum
|
|
* required alignment for any basic type. This seems reasonable.
|
|
* This is however GCC specific so if we don't have that available
|
|
* assume that 16 is large enough.
|
|
*/
|
|
#ifdef __BIGGEST_ALIGNMENT__
|
|
#define ARCH_DMA_MINALIGN __BIGGEST_ALIGNMENT__
|
|
#else
|
|
#define ARCH_DMA_MINALIGN 16
|
|
#endif
|
|
#define CONFIG_SYS_CACHELINE_SIZE ARCH_DMA_MINALIGN
|
|
|
|
#endif /* __SANDBOX_CACHE_H__ */
|