cache.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:3k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * include/asm-parisc/cache.h
  3.  */
  4. #ifndef __ARCH_PARISC_CACHE_H
  5. #define __ARCH_PARISC_CACHE_H
  6. #include <linux/config.h>
  7. #ifndef __ASSEMBLY__
  8. /*
  9.  * PA 2.0 processors have 64-byte cachelines; PA 1.1 processors have
  10.  * 32-byte cachelines.  The default configuration is not for SMP anyway,
  11.  * so if you're building for SMP, you should select the appropriate
  12.  * processor type.  There is a potential livelock danger when running
  13.  * a machine with this value set too small, but it's more probable you'll
  14.  * just ruin performance.
  15.  */
  16. #ifdef CONFIG_PA20
  17. #define L1_CACHE_BYTES 64
  18. #else
  19. #define L1_CACHE_BYTES 32
  20. #endif
  21. #define L1_CACHE_ALIGN(x)       (((x)+(L1_CACHE_BYTES-1))&~(L1_CACHE_BYTES-1))
  22. #define SMP_CACHE_BYTES L1_CACHE_BYTES
  23. #define __cacheline_aligned __attribute__((__aligned__(L1_CACHE_BYTES)))
  24. extern void flush_data_cache_local(void);  /* flushes local data-cache only */
  25. extern void flush_instruction_cache_local(void); /* flushes local code-cache only */
  26. #ifdef CONFIG_SMP
  27. extern void flush_data_cache(void); /* flushes data-cache only (all processors) */
  28. #else
  29. #define flush_data_cache flush_data_cache_local
  30. #define flush_instruction_cache flush_instruction_cache_local
  31. #endif
  32. extern void cache_init(void); /* initializes cache-flushing */
  33. extern void flush_all_caches(void);     /* flush everything (tlb & cache) */
  34. extern int get_cache_info(char *);
  35. extern void flush_user_icache_range_asm(unsigned long, unsigned long);
  36. extern void flush_kernel_icache_range_asm(unsigned long, unsigned long);
  37. extern void flush_user_dcache_range_asm(unsigned long, unsigned long);
  38. extern void flush_kernel_dcache_range_asm(unsigned long, unsigned long);
  39. extern void flush_kernel_dcache_page(void *);
  40. extern void flush_kernel_icache_page(void *);
  41. extern void disable_sr_hashing(void);   /* turns off space register hashing */
  42. extern void disable_sr_hashing_asm(int); /* low level support for above */
  43. extern void free_sid(unsigned long);
  44. unsigned long alloc_sid(void);
  45. struct seq_file;
  46. extern void show_cache_info(struct seq_file *m);
  47. extern int split_tlb;
  48. extern int dcache_stride;
  49. extern int icache_stride;
  50. extern struct pdc_cache_info cache_info;
  51. #define pdtlb(addr)         asm volatile("pdtlb 0(%%sr1,%0)" : : "r" (addr));
  52. #define pitlb(addr)         asm volatile("pitlb 0(%%sr1,%0)" : : "r" (addr));
  53. #define pdtlb_kernel(addr)  asm volatile("pdtlb 0(%0)" : : "r" (addr));
  54. #endif /* ! __ASSEMBLY__ */
  55. /* Classes of processor wrt: disabling space register hashing */
  56. #define SRHASH_PCXST    0   /* pcxs, pcxt, pcxt_ */
  57. #define SRHASH_PCXL     1   /* pcxl */
  58. #define SRHASH_PA20     2   /* pcxu, pcxu_, pcxw, pcxw_ */
  59. #endif