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

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.  * Copyright (C) 1992 - 1997, 2000-2002 Silicon Graphics, Inc. All rights reserved.
  8.  */
  9. #ifndef _ASM_IA64_SN_SN1_ADDRS_H
  10. #define _ASM_IA64_SN_SN1_ADDRS_H
  11. #include <linux/config.h>
  12. #ifdef CONFIG_IA64_SGI_SN1
  13. /*
  14.  * SN1 (on a TRex) Address map
  15.  *
  16.  * This file contains a set of definitions and macros which are used
  17.  * to reference into the major address spaces (CAC, HSPEC, IO, MSPEC,
  18.  * and UNCAC) used by the SN1 architecture.  It also contains addresses
  19.  * for "major" statically locatable PROM/Kernel data structures, such as
  20.  * the partition table, the configuration data structure, etc.
  21.  * We make an implicit assumption that the processor using this file
  22.  * follows the R12K's provisions for specifying uncached attributes;
  23.  * should this change, the base registers may very well become processor-
  24.  * dependent.
  25.  *
  26.  * For more information on the address spaces, see the "Local Resources"
  27.  * chapter of the Hub specification.
  28.  *
  29.  * NOTE: This header file is included both by C and by assembler source
  30.  *  files.  Please bracket any language-dependent definitions
  31.  *  appropriately.
  32.  */
  33. /*
  34.  * Some of the macros here need to be casted to appropriate types when used
  35.  * from C.  They definitely must not be casted from assembly language so we
  36.  * use some new ANSI preprocessor stuff to paste these on where needed.
  37.  */
  38. #define CAC_BASE                0xe000000000000000
  39. #define HSPEC_BASE              0xc0000b0000000000
  40. #define HSPEC_SWIZ_BASE         0xc000030000000000
  41. #define IO_BASE                 0xc0000a0000000000
  42. #define IO_SWIZ_BASE            0xc000020000000000
  43. #define MSPEC_BASE              0xc000090000000000
  44. #define UNCAC_BASE              0xc000000000000000
  45. #define TO_PHYS_MASK 0x000000ffffffffff
  46. #define TO_PHYS(x) (       ((x) & TO_PHYS_MASK))
  47. #define TO_CAC(x) (CAC_BASE   | ((x) & TO_PHYS_MASK))
  48. #define TO_UNCAC(x) (UNCAC_BASE | ((x) & TO_PHYS_MASK))
  49. #define TO_MSPEC(x) (MSPEC_BASE | ((x) & TO_PHYS_MASK))
  50. #define TO_HSPEC(x) (HSPEC_BASE | ((x) & TO_PHYS_MASK))
  51. /*
  52.  * The following couple of definitions will eventually need to be variables,
  53.  * since the amount of address space assigned to each node depends on
  54.  * whether the system is running in N-mode (more nodes with less memory)
  55.  * or M-mode (fewer nodes with more memory).  We expect that it will
  56.  * be a while before we need to make this decision dynamically, though,
  57.  * so for now we just use defines bracketed by an ifdef.
  58.  */
  59. #if defined(N_MODE)
  60. #define NODE_SIZE_BITS 32
  61. #define BWIN_SIZE_BITS 28
  62. #define NASID_BITS 8
  63. #define NASID_BITMASK (0xffLL)
  64. #define NASID_SHFT 32
  65. #define NASID_META_BITS 1
  66. #define NASID_LOCAL_BITS 7
  67. #define BDDIR_UPPER_MASK (UINT64_CAST 0x1ffffff << 4)
  68. #define BDECC_UPPER_MASK (UINT64_CAST 0x1fffffff )
  69. #else /* !defined(N_MODE), assume that M-mode is desired */
  70. #define NODE_SIZE_BITS 33
  71. #define BWIN_SIZE_BITS 29
  72. #define NASID_BITMASK (0x7fLL)
  73. #define NASID_BITS 7
  74. #define NASID_SHFT 33
  75. #define NASID_META_BITS 0
  76. #define NASID_LOCAL_BITS 7
  77. #define BDDIR_UPPER_MASK (UINT64_CAST 0x3ffffff << 4)
  78. #define BDECC_UPPER_MASK (UINT64_CAST 0x3fffffff)
  79. #endif /* defined(N_MODE) */
  80. #define NODE_ADDRSPACE_SIZE (UINT64_CAST 1 << NODE_SIZE_BITS)
  81. #define NASID_MASK (UINT64_CAST NASID_BITMASK << NASID_SHFT)
  82. #define NASID_GET(_pa) (int) ((UINT64_CAST (_pa) >>
  83. NASID_SHFT) & NASID_BITMASK)
  84. #ifndef __ASSEMBLY__
  85. #define NODE_SWIN_BASE(nasid, widget)
  86. ((widget == 0) ? NODE_BWIN_BASE((nasid), SWIN0_BIGWIN)
  87. : RAW_NODE_SWIN_BASE(nasid, widget))
  88. #else
  89. #define NODE_SWIN_BASE(nasid, widget) 
  90.      (NODE_IO_BASE(nasid) + (UINT64_CAST (widget) << SWIN_SIZE_BITS))
  91. #endif /* __ASSEMBLY__ */
  92. /*
  93.  * The following definitions pertain to the IO special address
  94.  * space.  They define the location of the big and little windows
  95.  * of any given node.
  96.  */
  97. #define BWIN_INDEX_BITS 3
  98. #define BWIN_SIZE (UINT64_CAST 1 << BWIN_SIZE_BITS)
  99. #define BWIN_SIZEMASK (BWIN_SIZE - 1)
  100. #define BWIN_WIDGET_MASK 0x7
  101. #define NODE_BWIN_BASE0(nasid) (NODE_IO_BASE(nasid) + BWIN_SIZE)
  102. #define NODE_BWIN_BASE(nasid, bigwin) (NODE_BWIN_BASE0(nasid) + 
  103. (UINT64_CAST (bigwin) << BWIN_SIZE_BITS))
  104. #define BWIN_WIDGETADDR(addr) ((addr) & BWIN_SIZEMASK)
  105. #define BWIN_WINDOWNUM(addr) (((addr) >> BWIN_SIZE_BITS) & BWIN_WIDGET_MASK)
  106. /*
  107.  * Verify if addr belongs to large window address of node with "nasid"
  108.  *
  109.  *
  110.  * NOTE: "addr" is expected to be XKPHYS address, and NOT physical
  111.  * address
  112.  *
  113.  *
  114.  */
  115. #define NODE_BWIN_ADDR(nasid, addr)
  116. (((addr) >= NODE_BWIN_BASE0(nasid)) && 
  117.  ((addr) < (NODE_BWIN_BASE(nasid, HUB_NUM_BIG_WINDOW) + 
  118. BWIN_SIZE)))
  119. /*
  120.  * The following define the major position-independent aliases used
  121.  * in SN1.
  122.  * CALIAS -- Varies in size, points to the first n bytes of memory
  123.  *    on the reader's node.
  124.  */
  125. #define CALIAS_BASE CAC_BASE
  126. #define BRIDGE_REG_PTR(_base, _off) ((volatile bridgereg_t *) 
  127. ((__psunsigned_t)(_base) + (__psunsigned_t)(_off)))
  128. #define SN0_WIDGET_BASE(_nasid, _wid) (NODE_SWIN_BASE((_nasid), (_wid)))
  129. /*
  130.  * needed by symmon so it needs to be outside #if PROM
  131.  * (see also POD_ELSCSIZE)
  132.  */
  133. #define IP27PROM_ELSC_BASE_A PHYS_TO_K0(0x020e0000)
  134. #define IP27PROM_ELSC_BASE_B PHYS_TO_K0(0x020e0800)
  135. #define IP27PROM_ELSC_BASE_C PHYS_TO_K0(0x020e1000)
  136. #define IP27PROM_ELSC_BASE_D PHYS_TO_K0(0x020e1800)
  137. #define IP27PROM_ELSC_SHFT 11
  138. #define IP27PROM_ELSC_SIZE (1 << IP27PROM_ELSC_SHFT)
  139. #define FREEMEM_BASE PHYS_TO_K0(0x4000000)
  140. #define IO6PROM_STACK_SHFT 14 /* stack per cpu */
  141. #define IO6PROM_STACK_SIZE (1 << IO6PROM_STACK_SHFT)
  142. #define KL_UART_BASE LOCAL_HSPEC(HSPEC_UART_0) /* base of UART regs */
  143. #define KL_UART_CMD LOCAL_HSPEC(HSPEC_UART_0) /* UART command reg */
  144. #define KL_UART_DATA LOCAL_HSPEC(HSPEC_UART_1) /* UART data reg */
  145. #if !__ASSEMBLY__
  146. /* Address 0x400 to 0x1000 ualias points to cache error eframe + misc
  147.  * CACHE_ERR_SP_PTR could either contain an address to the stack, or
  148.  * the stack could start at CACHE_ERR_SP_PTR
  149.  */
  150. #define CACHE_ERR_EFRAME 0x400
  151. #define CACHE_ERR_ECCFRAME (CACHE_ERR_EFRAME + EF_SIZE)
  152. #define CACHE_ERR_SP_PTR (0x1000 - 32) /* why -32? TBD */
  153. #define CACHE_ERR_IBASE_PTR (0x1000 - 40)
  154. #define CACHE_ERR_SP (CACHE_ERR_SP_PTR - 16)
  155. #define CACHE_ERR_AREA_SIZE (ARCS_SPB_OFFSET - CACHE_ERR_EFRAME)
  156. #endif /* !__ASSEMBLY__ */
  157. #define _ARCSPROM
  158. #ifdef _STANDALONE
  159. /*
  160.  * The PROM needs to pass the device base address and the
  161.  * device pci cfg space address to the device drivers during
  162.  * install. The COMPONENT->Key field is used for this purpose.
  163.  * Macros needed by SN1 device drivers to convert the
  164.  * COMPONENT->Key field to the respective base address.
  165.  * Key field looks as follows:
  166.  *
  167.  *  +----------------------------------------------------+
  168.  *  |devnasid | widget  |pciid |hubwidid|hstnasid | adap |
  169.  *  |   2     |   1     |  1   |   1    |    2    |   1  |
  170.  *  +----------------------------------------------------+
  171.  *  |         |         |      |        |         |      |
  172.  *  64        48        40     32       24        8      0
  173.  *
  174.  * These are used by standalone drivers till the io infrastructure
  175.  * is in place.
  176.  */
  177. #ifndef __ASSEMBLY__
  178. #define uchar unsigned char
  179. #define KEY_DEVNASID_SHFT  48
  180. #define KEY_WIDID_SHFT    40
  181. #define KEY_PCIID_SHFT    32
  182. #define KEY_HUBWID_SHFT    24
  183. #define KEY_HSTNASID_SHFT  8
  184. #define MK_SN0_KEY(nasid, widid, pciid) 
  185. ((((__psunsigned_t)nasid)<< KEY_DEVNASID_SHFT |
  186. ((__psunsigned_t)widid) << KEY_WIDID_SHFT) |
  187. ((__psunsigned_t)pciid) << KEY_PCIID_SHFT)
  188. #define ADD_HUBWID_KEY(key,hubwid)
  189. (key|=((__psunsigned_t)hubwid << KEY_HUBWID_SHFT))
  190. #define ADD_HSTNASID_KEY(key,hstnasid)
  191. (key|=((__psunsigned_t)hstnasid << KEY_HSTNASID_SHFT))
  192. #define GET_DEVNASID_FROM_KEY(key) ((short)(key >> KEY_DEVNASID_SHFT))
  193. #define GET_WIDID_FROM_KEY(key) ((uchar)(key >> KEY_WIDID_SHFT))
  194. #define GET_PCIID_FROM_KEY(key) ((uchar)(key >> KEY_PCIID_SHFT))
  195. #define GET_HUBWID_FROM_KEY(key) ((uchar)(key >> KEY_HUBWID_SHFT))
  196. #define GET_HSTNASID_FROM_KEY(key) ((short)(key >> KEY_HSTNASID_SHFT))
  197. #define PCI_64_TARGID_SHFT 60
  198. #define GET_PCIBASE_FROM_KEY(key)  (NODE_SWIN_BASE(GET_DEVNASID_FROM_KEY(key),
  199. GET_WIDID_FROM_KEY(key))
  200. | BRIDGE_DEVIO(GET_PCIID_FROM_KEY(key)))
  201. #define GET_PCICFGBASE_FROM_KEY(key) 
  202. (NODE_SWIN_BASE(GET_DEVNASID_FROM_KEY(key),
  203.       GET_WIDID_FROM_KEY(key))
  204. | BRIDGE_TYPE0_CFG_DEV(GET_PCIID_FROM_KEY(key)))
  205. #define GET_WIDBASE_FROM_KEY(key) 
  206.                         (NODE_SWIN_BASE(GET_DEVNASID_FROM_KEY(key),
  207.                               GET_WIDID_FROM_KEY(key)))
  208. #define PUT_INSTALL_STATUS(c,s) c->Revision = s
  209. #define GET_INSTALL_STATUS(c) c->Revision
  210. #endif /* __ASSEMBLY__ */
  211. #endif /* _STANDALONE */
  212. #endif /* CONFIG_IA64_SGI_SN1 */
  213. #endif /* _ASM_IA64_SN_SN1_ADDRS_H */