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

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