cache.h 715 B

123456789101112131415161718192021222324252627282930313233343536
  1. /*
  2. * Copyright (c) 2011 The Chromium OS Authors.
  3. *
  4. * SPDX-License-Identifier: GPL-2.0+
  5. */
  6. #ifndef __X86_CACHE_H__
  7. #define __X86_CACHE_H__
  8. /*
  9. * If CONFIG_SYS_CACHELINE_SIZE is defined use it for DMA alignment. Otherwise
  10. * use 64-bytes, a safe default for x86.
  11. */
  12. #ifndef CONFIG_SYS_CACHELINE_SIZE
  13. #define CONFIG_SYS_CACHELINE_SIZE 64
  14. #endif
  15. #define ARCH_DMA_MINALIGN CONFIG_SYS_CACHELINE_SIZE
  16. static inline void wbinvd(void)
  17. {
  18. asm volatile ("wbinvd" : : : "memory");
  19. }
  20. static inline void invd(void)
  21. {
  22. asm volatile("invd" : : : "memory");
  23. }
  24. /* Enable caches and write buffer */
  25. void enable_caches(void);
  26. /* Disable caches and write buffer */
  27. void disable_caches(void);
  28. #endif /* __X86_CACHE_H__ */