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

嵌入式Linux

开发平台:

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 _LANGUAGE_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
  23. /*
  24.  * Flag definitions
  25.  */
  26. #define MIPS_CACHE_NOT_PRESENT 0x00000001
  27. #if defined(CONFIG_CPU_R3000) || defined(CONFIG_CPU_R6000)
  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 */