prefetch.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:2k
源码类别:

嵌入式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 <linux/types.h>
  12. #include <asm/processor.h>
  13. #include <asm/cache.h>
  14. /*
  15. prefetch(x) attempts to pre-emptively get the memory pointed to
  16. by address "x" into the CPU L1 cache. 
  17. prefetch(x) should not cause any kind of exception, prefetch(0) is
  18. specifically ok.
  19. prefetch() should be defined by the architecture, if not, the 
  20. #define below provides a no-op define.
  21. There are 3 prefetch() macros:
  22. prefetch(x)   - prefetches the cacheline at "x" for read
  23. prefetchw(x) - prefetches the cacheline at "x" for write
  24. spin_lock_prefetch(x) - prefectches the spinlock *x for taking
  25. there is also PREFETCH_STRIDE which is the architecure-prefered 
  26. "lookahead" size for prefetching streamed operations.
  27. */
  28. /*
  29.  * These cannot be do{}while(0) macros. See the mental gymnastics in
  30.  * the loop macro.
  31.  */
  32.  
  33. #ifndef ARCH_HAS_PREFETCH
  34. static inline void prefetch(const void *x) {;}
  35. #endif
  36. #ifndef ARCH_HAS_PREFETCHW
  37. static inline void prefetchw(const void *x) {;}
  38. #endif
  39. #ifndef ARCH_HAS_SPINLOCK_PREFETCH
  40. #define spin_lock_prefetch(x) prefetchw(x)
  41. #endif
  42. #ifndef PREFETCH_STRIDE
  43. #define PREFETCH_STRIDE (4*L1_CACHE_BYTES)
  44. #endif
  45. static inline void prefetch_range(void *addr, size_t len)
  46. {
  47. #ifdef ARCH_HAS_PREFETCH
  48. char *cp;
  49. char *end = addr + len;
  50. for (cp = addr; cp < end; cp += PREFETCH_STRIDE)
  51. prefetch(cp);
  52. #endif
  53. }
  54. #endif