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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* $Id$
  2.  *
  3.  * This file is subject to the terms and conditions of the GNU General Public
  4.  * License.  See the file "COPYING" in the main directory of this archive
  5.  * for more details.
  6.  *
  7.  * SGI specific setup.
  8.  *
  9.  * Copyright (C) 1995-1997,1999,2001-2002 Silicon Graphics, Inc.  All rights reserved.
  10.  * Copyright (C) 1999 Ralf Baechle (ralf@gnu.org)
  11.  */
  12. #ifndef _ASM_IA64_SN_ARCH_H
  13. #define _ASM_IA64_SN_ARCH_H
  14. #include <linux/config.h>
  15. #include <linux/threads.h>
  16. #include <linux/mmzone.h>
  17. #include <asm/sn/types.h>
  18. #if defined(CONFIG_IA64_SGI_SN1) 
  19. #include <asm/sn/sn1/arch.h>
  20. #elif defined(CONFIG_IA64_SGI_SN2)
  21. #include <asm/sn/sn2/arch.h>
  22. #endif
  23. #if defined(CONFIG_IA64_SGI_SN1) 
  24. typedef u64 bdrkreg_t;
  25. #elif defined(CONFIG_IA64_SGI_SN2)
  26. typedef u64 shubreg_t;
  27. #endif
  28. typedef u64 hubreg_t;
  29. typedef u64 mmr_t;
  30. typedef u64 nic_t;
  31. #define CNODE_TO_CPU_BASE(_cnode) (NODEPDA(_cnode)->node_first_cpu)
  32. #define NASID_TO_COMPACT_NODEID(nasid)  (nasid_to_cnodeid(nasid))
  33. #define COMPACT_TO_NASID_NODEID(cnode)  (cnodeid_to_nasid(cnode))
  34. #define INVALID_NASID ((nasid_t)-1)
  35. #define INVALID_CNODEID ((cnodeid_t)-1)
  36. #define INVALID_PNODEID ((pnodeid_t)-1)
  37. #define INVALID_MODULE ((moduleid_t)-1)
  38. #define INVALID_PARTID ((partid_t)-1)
  39. extern cpuid_t cnodetocpu(cnodeid_t);
  40. void   sn_flush_all_caches(long addr, long bytes);
  41. extern int     is_fine_dirmode(void);
  42. #endif /* _ASM_IA64_SN_ARCH_H */