Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Anton Staaf | 3620f86 | 2011-10-17 16:46:12 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2011 The Chromium OS Authors. |
Anton Staaf | 3620f86 | 2011-10-17 16:46:12 -0700 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #ifndef __X86_CACHE_H__ |
| 7 | #define __X86_CACHE_H__ |
| 8 | |
| 9 | /* |
| 10 | * If CONFIG_SYS_CACHELINE_SIZE is defined use it for DMA alignment. Otherwise |
| 11 | * use 64-bytes, a safe default for x86. |
| 12 | */ |
Stefan Roese | bf4ea7e | 2016-07-18 12:53:31 +0200 | [diff] [blame] | 13 | #ifndef CONFIG_SYS_CACHELINE_SIZE |
| 14 | #define CONFIG_SYS_CACHELINE_SIZE 64 |
Anton Staaf | 3620f86 | 2011-10-17 16:46:12 -0700 | [diff] [blame] | 15 | #endif |
| 16 | |
Stefan Roese | bf4ea7e | 2016-07-18 12:53:31 +0200 | [diff] [blame] | 17 | #define ARCH_DMA_MINALIGN CONFIG_SYS_CACHELINE_SIZE |
| 18 | |
Stefan Reinauer | 095593c | 2012-12-02 04:49:50 +0000 | [diff] [blame] | 19 | static inline void wbinvd(void) |
| 20 | { |
| 21 | asm volatile ("wbinvd" : : : "memory"); |
| 22 | } |
| 23 | |
| 24 | static inline void invd(void) |
| 25 | { |
| 26 | asm volatile("invd" : : : "memory"); |
| 27 | } |
| 28 | |
| 29 | /* Enable caches and write buffer */ |
| 30 | void enable_caches(void); |
| 31 | |
| 32 | /* Disable caches and write buffer */ |
| 33 | void disable_caches(void); |
| 34 | |
Anton Staaf | 3620f86 | 2011-10-17 16:46:12 -0700 | [diff] [blame] | 35 | #endif /* __X86_CACHE_H__ */ |