cache.h 559 B

1234567891011121314151617181920
  1. #ifndef _ASM_X86_CACHE_H
  2. #define _ASM_X86_CACHE_H
  3. /* L1 cache line size */
  4. #define L1_CACHE_SHIFT (CONFIG_X86_L1_CACHE_SHIFT)
  5. #define L1_CACHE_BYTES (1 << L1_CACHE_SHIFT)
  6. #define __read_mostly __attribute__((__section__(".data.read_mostly")))
  7. #ifdef CONFIG_X86_VSMP
  8. /* vSMP Internode cacheline shift */
  9. #define INTERNODE_CACHE_SHIFT (12)
  10. #ifdef CONFIG_SMP
  11. #define __cacheline_aligned_in_smp \
  12. __attribute__((__aligned__(1 << (INTERNODE_CACHE_SHIFT)))) \
  13. __attribute__((__section__(".data.page_aligned")))
  14. #endif
  15. #endif
  16. #endif /* _ASM_X86_CACHE_H */