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

嵌入式Linux

开发平台:

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 Silcon Graphics, Inc.
  10.  * Copyright (C) 1999 Ralf Baechle (ralf@gnu.org)
  11.  */
  12. #ifndef _ASM_SN_ARCH_H
  13. #define _ASM_SN_ARCH_H
  14. #include <linux/types.h>
  15. #include <linux/config.h>
  16. #include <asm/sn/types.h>
  17. #if defined(CONFIG_IA64_SGI_SN1) || defined(CONFIG_SGI_IP37) || defined(CONFIG_IA64_GENERIC)
  18. #include <asm/sn/sn1/arch.h>
  19. #endif
  20. #if defined(_LANGUAGE_C) || defined(_LANGUAGE_C_PLUS_PLUS)
  21. typedef u64 hubreg_t;
  22. typedef u64 nic_t;
  23. #if defined(CONFIG_SGI_IP35) || defined(CONFIG_IA64_SGI_SN1) || defined(CONFIG_IA64_GENERIC)
  24. typedef u64     bdrkreg_t;
  25. #endif /* CONFIG_SGI_xxxxx */
  26. #endif /* _LANGUAGE_C || _LANGUAGE_C_PLUS_PLUS */
  27. #if defined(CONFIG_SGI_IP35) || defined(CONFIG_IA64_SGI_SN1) || defined(CONFIG_IA64_GENERIC)
  28. #define CPUS_PER_NODE 4 /* CPUs on a single hub */
  29. #define CPUS_PER_NODE_SHFT 2 /* Bits to shift in the node number */
  30. #define CPUS_PER_SUBNODE 2 /* CPUs on a single hub PI */
  31. #endif
  32. #define CNODE_NUM_CPUS(_cnode) (NODEPDA(_cnode)->node_num_cpus)
  33. #define CNODE_TO_CPU_BASE(_cnode) (NODEPDA(_cnode)->node_first_cpu)
  34. #define makespnum(_nasid, _slice)
  35. (((_nasid) << CPUS_PER_NODE_SHFT) | (_slice))
  36. #if defined(CONFIG_SGI_IP35) || defined(CONFIG_IA64_SGI_SN1) || defined(CONFIG_IA64_GENERIC)
  37. /*
  38.  * There are 2 very similar macros for dealing with "slices". Make sure
  39.  * you use the right one. 
  40.  * Unfortunately, on all platforms except IP35 (currently), the 2 macros 
  41.  * are interchangible. 
  42.  *
  43.  * On IP35, there are 4 cpus per node. Each cpu is refered to by it's slice.
  44.  * The slices are numbered 0 thru 3. 
  45.  *
  46.  * There are also 2 PI interfaces per node. Each PI interface supports 2 cpus.
  47.  * The term "local slice" specifies the cpu number relative to the PI.
  48.  *
  49.  * The cpus on the node are numbered:
  50.  * slice localslice
  51.  *   0          0
  52.  *   1          1
  53.  *   2          0
  54.  *   3          1
  55.  *
  56.  * cputoslice - returns a number 0..3 that is the slice of the specified cpu.
  57.  * cputolocalslice - returns a number 0..1 that identifies the local slice of
  58.  * the cpu within it's PI interface.
  59.  */
  60. #ifdef LATER
  61. /* These are dummied up for now ..... */
  62. #define cputocnode(cpu)
  63.                (pdaindr[(cpu)].p_nodeid)
  64. #define cputonasid(cpu)
  65.                (pdaindr[(cpu)].p_nasid)
  66. #define cputoslice(cpu)
  67.                (ASSERT(pdaindr[(cpu)].pda), (pdaindr[(cpu)].pda->p_slice))
  68. #define cputolocalslice(cpu)
  69.                (ASSERT(pdaindr[(cpu)].pda), (LOCALCPU(pdaindr[(cpu)].pda->p_slice)))
  70. #define cputosubnode(cpu)
  71. (ASSERT(pdaindr[(cpu)].pda), (SUBNODE(pdaindr[(cpu)].pda->p_slice)))
  72. #else
  73. #define cputocnode(cpu) 0
  74. #define cputonasid(cpu) 0
  75. #define cputoslice(cpu) 0
  76. #define cputolocalslice(cpu) 0
  77. #define cputosubnode(cpu) 0
  78. #endif /* LATER */
  79. #endif /* CONFIG_SGI_IP35 */
  80. #if defined(_LANGUAGE_C) || defined(_LANGUAGE_C_PLUS_PLUS)
  81. #define INVALID_NASID (nasid_t)-1
  82. #define INVALID_CNODEID (cnodeid_t)-1
  83. #define INVALID_PNODEID (pnodeid_t)-1
  84. #define INVALID_MODULE (moduleid_t)-1
  85. #define INVALID_PARTID (partid_t)-1
  86. #if defined(CONFIG_SGI_IP35) || defined(CONFIG_IA64_SGI_SN1) || defined(CONFIG_IA64_GENERIC)
  87. extern int     get_slice(void);
  88. extern cpuid_t get_cnode_cpu(cnodeid_t);
  89. extern int get_cpu_slice(cpuid_t);
  90. extern cpuid_t cnodetocpu(cnodeid_t);
  91. // extern cpuid_t cnode_slice_to_cpuid(cnodeid_t, int);
  92. extern int cnode_exists(cnodeid_t cnode);
  93. extern cnodeid_t cpuid_to_compact_node[MAXCPUS];
  94. #endif /* CONFIG_IP35 */
  95. extern nasid_t get_nasid(void);
  96. extern cnodeid_t get_cpu_cnode(int);
  97. extern int get_cpu_slice(cpuid_t);
  98. /*
  99.  * NO ONE should access these arrays directly.  The only reason we refer to
  100.  * them here is to avoid the procedure call that would be required in the
  101.  * macros below.  (Really want private data members here :-)
  102.  */
  103. extern cnodeid_t nasid_to_compact_node[MAX_NASIDS];
  104. extern nasid_t compact_to_nasid_node[MAX_COMPACT_NODES];
  105. /*
  106.  * These macros are used by various parts of the kernel to convert
  107.  * between the three different kinds of node numbering.   At least some
  108.  * of them may change to procedure calls in the future, but the macros
  109.  * will continue to work.  Don't use the arrays above directly.
  110.  */
  111. #define NASID_TO_REGION(nnode)       
  112.     ((nnode) >> 
  113.      (is_fine_dirmode() ? NASID_TO_FINEREG_SHFT : NASID_TO_COARSEREG_SHFT))
  114. #ifndef __ia64
  115. extern cnodeid_t nasid_to_compact_node[MAX_NASIDS];
  116. extern nasid_t compact_to_nasid_node[MAX_COMPACT_NODES];
  117. extern cnodeid_t cpuid_to_compact_node[MAXCPUS];
  118. #if !defined(DEBUG)
  119. #define NASID_TO_COMPACT_NODEID(nnode) (nasid_to_compact_node[nnode])
  120. #define COMPACT_TO_NASID_NODEID(cnode) (compact_to_nasid_node[cnode])
  121. #define CPUID_TO_COMPACT_NODEID(cpu) (cpuid_to_compact_node[(cpu)])
  122. #else
  123. /*
  124.  * These functions can do type checking and fail if they need to return
  125.  * a bad nodeid, but they're not as fast so just use 'em for debug kernels.
  126.  */
  127. cnodeid_t nasid_to_compact_nodeid(nasid_t nasid);
  128. nasid_t compact_to_nasid_nodeid(cnodeid_t cnode);
  129. #define NASID_TO_COMPACT_NODEID(nnode) nasid_to_compact_nodeid(nnode)
  130. #define COMPACT_TO_NASID_NODEID(cnode) compact_to_nasid_nodeid(cnode)
  131. #define CPUID_TO_COMPACT_NODEID(cpu) (cpuid_to_compact_node[(cpu)])
  132. #endif
  133. #else
  134. /*
  135.  * IA64 specific nasid and cnode ids.
  136.  */
  137. #define NASID_TO_COMPACT_NODEID(nasid)  (nasid_to_cnodeid(nasid))
  138. #define COMPACT_TO_NASID_NODEID(cnode)  (cnodeid_to_nasid(cnode))
  139. #define CPUID_TO_COMPACT_NODEID(cpu)    (cpuid_to_cnodeid(cpu))
  140. #endif /* #ifndef __ia64 */
  141. extern int node_getlastslot(cnodeid_t);
  142. #endif /* _LANGUAGE_C || _LANGUAGE_C_PLUS_PLUS */
  143. #define SLOT_BITMASK     (MAX_MEM_SLOTS - 1)
  144. #define SLOT_SIZE (1LL<<SLOT_SHIFT)
  145. #define node_getnumslots(node) (MAX_MEM_SLOTS)
  146. #define NODE_MAX_MEM_SIZE SLOT_SIZE * MAX_MEM_SLOTS
  147. /*
  148.  * New stuff in here from Irix sys/pfdat.h.
  149.  */
  150. #define SLOT_PFNSHIFT (SLOT_SHIFT - PAGE_SHIFT)
  151. #define PFN_NASIDSHFT (NASID_SHFT - PAGE_SHIFT)
  152. #define mkpfn(nasid, off) (((pfn_t)(nasid) << PFN_NASIDSHFT) | (off))
  153. #define slot_getbasepfn(node,slot) 
  154. (mkpfn(COMPACT_TO_NASID_NODEID(node), slot<<SLOT_PFNSHIFT))
  155. #endif /* _ASM_SN_ARCH_H */