cache.h 722 B

12345678910111213141516171819202122232425
  1. /*
  2. * Copyright (c) 2011 The Chromium OS Authors.
  3. *
  4. * SPDX-License-Identifier: GPL-2.0+
  5. */
  6. #ifndef __SANDBOX_CACHE_H__
  7. #define __SANDBOX_CACHE_H__
  8. /*
  9. * For native compilation of the sandbox we should still align
  10. * the contents of stack buffers to something reasonable. The
  11. * GCC macro __BIGGEST_ALIGNMENT__ is defined to be the maximum
  12. * required alignment for any basic type. This seems reasonable.
  13. * This is however GCC specific so if we don't have that available
  14. * assume that 16 is large enough.
  15. */
  16. #ifdef __BIGGEST_ALIGNMENT__
  17. #define ARCH_DMA_MINALIGN __BIGGEST_ALIGNMENT__
  18. #else
  19. #define ARCH_DMA_MINALIGN 16
  20. #endif
  21. #define CONFIG_SYS_CACHELINE_SIZE ARCH_DMA_MINALIGN
  22. #endif /* __SANDBOX_CACHE_H__ */