prefetch.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  *  Generic cache management functions. Everything is arch-specific,  
  3.  *  but this header exists to make sure the defines/functions can be
  4.  *  used in a generic way.
  5.  *
  6.  *  2000-11-13  Arjan van de Ven   <arjan@fenrus.demon.nl>
  7.  *
  8.  */
  9. #ifndef _LINUX_PREFETCH_H
  10. #define _LINUX_PREFETCH_H
  11. #include <asm/processor.h>
  12. #include <asm/cache.h>
  13. /*
  14. prefetch(x) attempts to pre-emptively get the memory pointed to
  15. by address "x" into the CPU L1 cache. 
  16. prefetch(x) should not cause any kind of exception, prefetch(0) is
  17. specifically ok.
  18. prefetch() should be defined by the architecture, if not, the 
  19. #define below provides a no-op define.
  20. There are 3 prefetch() macros:
  21. prefetch(x)   - prefetches the cacheline at "x" for read
  22. prefetchw(x) - prefetches the cacheline at "x" for write
  23. spin_lock_prefetch(x) - prefectches the spinlock *x for taking
  24. there is also PREFETCH_STRIDE which is the architecure-prefered 
  25. "lookahead" size for prefetching streamed operations.
  26. */
  27. /*
  28.  * These cannot be do{}while(0) macros. See the mental gymnastics in
  29.  * the loop macro.
  30.  */
  31.  
  32. #ifndef ARCH_HAS_PREFETCH
  33. #define ARCH_HAS_PREFETCH
  34. static inline void prefetch(const void *x) {;}
  35. #endif
  36. #ifndef ARCH_HAS_PREFETCHW
  37. #define ARCH_HAS_PREFETCHW
  38. static inline void prefetchw(const void *x) {;}
  39. #endif
  40. #ifndef ARCH_HAS_SPINLOCK_PREFETCH
  41. #define ARCH_HAS_SPINLOCK_PREFETCH
  42. #define spin_lock_prefetch(x) prefetchw(x)
  43. #endif
  44. #ifndef PREFETCH_STRIDE
  45. #define PREFETCH_STRIDE (4*L1_CACHE_BYTES)
  46. #endif
  47. #endif