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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * This file is subject to the terms and conditions of the GNU General Public
  3.  * License.  See the file "COPYING" in the main directory of this archive
  4.  * for more details.
  5.  *
  6.  * Copyright (C) 1997, 98, 99, 2000 Ralf Baechle
  7.  * Copyright (C) 1999 Silicon Graphics, Inc.
  8.  */
  9. #ifndef _ASM_CACHE_H
  10. #define _ASM_CACHE_H
  11. #include <linux/config.h>
  12. #ifndef __ASSEMBLY__
  13. /*
  14.  * Descriptor for a cache
  15.  */
  16. struct cache_desc {
  17. int linesz;
  18. int sets;
  19. int ways;
  20. int flags; /* Details like write thru/back, coherent, etc. */
  21. };
  22. #endif /* !__ASSEMBLY__ */
  23. /*
  24.  * Flag definitions
  25.  */
  26. #define MIPS_CACHE_NOT_PRESENT 0x00000001
  27. #if defined(CONFIG_CPU_R3000) || defined(CONFIG_CPU_R6000) || defined(CONFIG_CPU_TX39XX)
  28. #define L1_CACHE_BYTES 16
  29. #else
  30. #define L1_CACHE_BYTES  32 /* A guess */
  31. #endif
  32. #define SMP_CACHE_BYTES L1_CACHE_BYTES
  33. #endif /* _ASM_CACHE_H */