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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  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.  * Copyright (c) 2001-2002 Silicon Graphics, Inc.  All rights reserved.
  8.  */
  9. #ifndef _ASM_IA64_SN_SN2_ADDRS_H
  10. #define _ASM_IA64_SN_SN2_ADDRS_H
  11. /* McKinley Address Format:
  12.  *
  13.  *   4 4       3 3  3 3
  14.  *   9 8       8 7  6 5             0
  15.  *  +-+---------+----+--------------+
  16.  *  |0| Node ID | AS | Node Offset  |
  17.  *  +-+---------+----+--------------+
  18.  *
  19.  *   Node ID: If bit 38 = 1, is ICE, else is SHUB
  20.  *   AS: Address Space Identifier. Used only if bit 38 = 0.
  21.  *     b'00: Local Resources and MMR space
  22.  *           bit 35
  23.  *               0: Local resources space
  24.  *                  node id:
  25.  *                        0: IA64/NT compatibility space
  26.  *                        2: Local MMR Space
  27.  *                        4: Local memory, regardless of local node id
  28.  *               1: Global MMR space
  29.  *     b'01: GET space.
  30.  *     b'10: AMO space.
  31.  *     b'11: Cacheable memory space.
  32.  *
  33.  *   NodeOffset: byte offset
  34.  */
  35. #ifndef __ASSEMBLY__
  36. typedef union ia64_sn2_pa {
  37. struct {
  38. unsigned long off  : 36;
  39. unsigned long as   : 2;
  40. unsigned long nasid: 11;
  41. unsigned long fill : 15;
  42. } f;
  43. unsigned long l;
  44. void *p;
  45. } ia64_sn2_pa_t;
  46. #endif
  47. #define TO_PHYS_MASK 0x0001ffcfffffffff /* Note - clear AS bits */
  48. /* Regions determined by AS */
  49. #define LOCAL_MMR_SPACE 0xc000008000000000 /* Local MMR space */
  50. #define LOCAL_MEM_SPACE 0xc000010000000000 /* Local Memory space */
  51. #define GLOBAL_MMR_SPACE 0xc000000800000000 /* Global MMR space */
  52. #define GET_SPACE 0xc000001000000000 /* GET space */
  53. #define AMO_SPACE 0xc000002000000000 /* AMO space */
  54. #define CACHEABLE_MEM_SPACE 0xe000003000000000 /* Cacheable memory space */
  55. #define UNCACHED                0xc000000000000000      /* UnCacheable memory space */
  56. /* SN2 address macros */
  57. #define NID_SHFT 38
  58. #define LOCAL_MMR_ADDR(a) (UNCACHED | LOCAL_MMR_SPACE | (a))
  59. #define LOCAL_MEM_ADDR(a) (LOCAL_MEM_SPACE | (a))
  60. #define REMOTE_ADDR(n,a) ((((unsigned long)(n))<<NID_SHFT) | (a))
  61. #define GLOBAL_MMR_ADDR(n,a) (UNCACHED | GLOBAL_MMR_SPACE | REMOTE_ADDR(n,a))
  62. #define GET_ADDR(n,a) (GET_SPACE | REMOTE_ADDR(n,a))
  63. #define AMO_ADDR(n,a) (UNCACHED | AMO_SPACE | REMOTE_ADDR(n,a))
  64. #define GLOBAL_MEM_ADDR(n,a) (CACHEABLE_MEM_SPACE | REMOTE_ADDR(n,a))
  65. /* non-II mmr's start at top of big window space (4G) */
  66. #define BWIN_TOP 0x0000000100000000
  67. /*
  68.  * general address defines - for code common to SN0/SN1/SN2
  69.  */
  70. #define CAC_BASE CACHEABLE_MEM_SPACE /* cacheable memory space */
  71. #define IO_BASE (UNCACHED | GLOBAL_MMR_SPACE) /* lower 4G maps II's XIO space */
  72. #define AMO_BASE (UNCACHED | AMO_SPACE) /* fetch & op space */
  73. #define MSPEC_BASE AMO_BASE /* fetch & op space */
  74. #define UNCAC_BASE (UNCACHED | CACHEABLE_MEM_SPACE) /* uncached global memory */
  75. #define GET_BASE GET_SPACE /* momentarily coherent remote mem. */
  76. #define CALIAS_BASE             LOCAL_CACHEABLE_BASE /* cached node-local memory */
  77. #define UALIAS_BASE             (UNCACHED | LOCAL_CACHEABLE_BASE) /* uncached node-local memory */
  78. #define TO_PHYS(x)              (              ((x) & TO_PHYS_MASK))
  79. #define TO_CAC(x)               (CAC_BASE    | ((x) & TO_PHYS_MASK))
  80. #define TO_UNCAC(x)             (UNCAC_BASE  | ((x) & TO_PHYS_MASK))
  81. #define TO_MSPEC(x)             (MSPEC_BASE  | ((x) & TO_PHYS_MASK))
  82. #define TO_GET(x) (GET_BASE    | ((x) & TO_PHYS_MASK))
  83. #define TO_CALIAS(x)            (CALIAS_BASE | TO_NODE_ADDRSPACE(x))
  84. #define TO_UALIAS(x)            (UALIAS_BASE | TO_NODE_ADDRSPACE(x))
  85. #define NODE_SIZE_BITS 36 /* node offset : bits <35:0> */
  86. #define BWIN_SIZE_BITS 29 /* big window size: 512M */
  87. #define NASID_BITS 11 /* bits <48:38> */
  88. #define NASID_BITMASK (0x7ffULL)
  89. #define NASID_SHFT NID_SHFT
  90. #define NASID_META_BITS 0 /* ???? */
  91. #define NASID_LOCAL_BITS 7 /* same router as SN1 */
  92. #define NODE_ADDRSPACE_SIZE     (UINT64_CAST 1 << NODE_SIZE_BITS)
  93. #define NASID_MASK              (UINT64_CAST NASID_BITMASK << NASID_SHFT)
  94. #define NASID_GET(_pa)          (int) ((UINT64_CAST (_pa) >>            
  95.                                         NASID_SHFT) & NASID_BITMASK)
  96. #ifdef __IA64
  97. #define PHYS_TO_DMA(x)          ( ((x & NASID_MASK) >> 2) |             
  98.                                   (x & (NODE_ADDRSPACE_SIZE - 1)) )
  99. #else
  100. #define PHYS_TO_DMA(x)          ( (x) )
  101. #endif
  102. #define CHANGE_NASID(n,x) ({ia64_sn2_pa_t _v; _v.l = (long) (x); _v.f.nasid = n; _v.p;})
  103. #ifndef __ASSEMBLY__
  104. #define NODE_SWIN_BASE(nasid, widget)                                   
  105.         ((widget == 0) ? NODE_BWIN_BASE((nasid), SWIN0_BIGWIN)          
  106.         : RAW_NODE_SWIN_BASE(nasid, widget))
  107. #else
  108. #define NODE_SWIN_BASE(nasid, widget) 
  109.      (NODE_IO_BASE(nasid) + (UINT64_CAST (widget) << SWIN_SIZE_BITS))
  110. #define LOCAL_SWIN_BASE(widget) 
  111. (UNCACHED | LOCAL_MMR_SPACE | ((UINT64_CAST (widget) << SWIN_SIZE_BITS)))
  112. #endif /* __ASSEMBLY__ */
  113. /*
  114.  * The following definitions pertain to the IO special address
  115.  * space.  They define the location of the big and little windows
  116.  * of any given node.
  117.  */
  118. #define BWIN_INDEX_BITS         3
  119. #define BWIN_SIZE               (UINT64_CAST 1 << BWIN_SIZE_BITS)
  120. #define BWIN_SIZEMASK           (BWIN_SIZE - 1)
  121. #define BWIN_WIDGET_MASK        0x7
  122. #define NODE_BWIN_BASE0(nasid)  (NODE_IO_BASE(nasid) + BWIN_SIZE)
  123. #define NODE_BWIN_BASE(nasid, bigwin)   (NODE_BWIN_BASE0(nasid) +       
  124.                         (UINT64_CAST (bigwin) << BWIN_SIZE_BITS))
  125. #define BWIN_WIDGETADDR(addr)   ((addr) & BWIN_SIZEMASK)
  126. #define BWIN_WINDOWNUM(addr)    (((addr) >> BWIN_SIZE_BITS) & BWIN_WIDGET_MASK)
  127. /*
  128.  * Verify if addr belongs to large window address of node with "nasid"
  129.  *
  130.  *
  131.  * NOTE: "addr" is expected to be XKPHYS address, and NOT physical
  132.  * address
  133.  *
  134.  *
  135.  */
  136. #define NODE_BWIN_ADDR(nasid, addr)     
  137.                 (((addr) >= NODE_BWIN_BASE0(nasid)) && 
  138.                  ((addr) < (NODE_BWIN_BASE(nasid, HUB_NUM_BIG_WINDOW) + 
  139.                                 BWIN_SIZE)))
  140. #endif /* _ASM_IA64_SN_SN2_ADDRS_H */