Skip to content
Snippets Groups Projects
Commit bf4ea7ed authored by Stefan Roese's avatar Stefan Roese Committed by Bin Meng
Browse files

x86: cache.h: Add default for CONFIG_SYS_CACHELINE_SIZE


Don't just define ARCH_DMA_MINALIGN but also CONFIG_SYS_CACHELINE_SIZE
if it's undefined. This is needed for the xhci driver to compile.

Signed-off-by: default avatarStefan Roese <sr@denx.de>
Cc: Simon Glass <sjg@chromium.org>
Cc: Bin Meng <bmeng.cn@gmail.com>
Reviewed-by: default avatarBin Meng <bmeng.cn@gmail.com>
parent 37b4a909
No related branches found
No related tags found
No related merge requests found
...@@ -11,12 +11,12 @@ ...@@ -11,12 +11,12 @@
* If CONFIG_SYS_CACHELINE_SIZE is defined use it for DMA alignment. Otherwise * If CONFIG_SYS_CACHELINE_SIZE is defined use it for DMA alignment. Otherwise
* use 64-bytes, a safe default for x86. * use 64-bytes, a safe default for x86.
*/ */
#ifdef CONFIG_SYS_CACHELINE_SIZE #ifndef CONFIG_SYS_CACHELINE_SIZE
#define ARCH_DMA_MINALIGN CONFIG_SYS_CACHELINE_SIZE #define CONFIG_SYS_CACHELINE_SIZE 64
#else
#define ARCH_DMA_MINALIGN 64
#endif #endif
#define ARCH_DMA_MINALIGN CONFIG_SYS_CACHELINE_SIZE
static inline void wbinvd(void) static inline void wbinvd(void)
{ {
asm volatile ("wbinvd" : : : "memory"); asm volatile ("wbinvd" : : : "memory");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment