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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * This file is subject to the terms and conditions of the GNU General Public
  3.  * License.  See the file "COPYING" in the main directory of this archive
  4.  * for more details.
  5.  *
  6.  * Derived from IRIX <sys/SN/SN0/addrs.h>, revision 1.126.
  7.  *
  8.  * Copyright (C) 1992 - 1997, 1999 Silicon Graphics, Inc.
  9.  * Copyright (C) 1999 by Ralf Baechle
  10.  */
  11. #ifndef _ASM_SN_SN0_ADDRS_H
  12. #define _ASM_SN_SN0_ADDRS_H
  13. #include <linux/config.h>
  14. /*
  15.  * SN0 (on a T5) Address map
  16.  *
  17.  * This file contains a set of definitions and macros which are used
  18.  * to reference into the major address spaces (CAC, HSPEC, IO, MSPEC,
  19.  * and UNCAC) used by the SN0 architecture.  It also contains addresses
  20.  * for "major" statically locatable PROM/Kernel data structures, such as
  21.  * the partition table, the configuration data structure, etc.
  22.  * We make an implicit assumption that the processor using this file
  23.  * follows the R10K's provisions for specifying uncached attributes;
  24.  * should this change, the base registers may very well become processor-
  25.  * dependent.
  26.  *
  27.  * For more information on the address spaces, see the "Local Resources"
  28.  * chapter of the Hub specification.
  29.  *
  30.  * NOTE: This header file is included both by C and by assembler source
  31.  *  files.  Please bracket any language-dependent definitions
  32.  *  appropriately.
  33.  */
  34. /*
  35.  * Some of the macros here need to be casted to appropriate types when used
  36.  * from C.  They definitely must not be casted from assembly language so we
  37.  * use some new ANSI preprocessor stuff to paste these on where needed.
  38.  */
  39. #define CAC_BASE 0xa800000000000000
  40. #define HSPEC_BASE 0x9000000000000000
  41. #define IO_BASE 0x9200000000000000
  42. #define MSPEC_BASE 0x9400000000000000
  43. #define UNCAC_BASE 0x9600000000000000
  44. #define TO_PHYS(x) (       ((x) & TO_PHYS_MASK))
  45. #define TO_CAC(x) (CAC_BASE   | ((x) & TO_PHYS_MASK))
  46. #define TO_UNCAC(x) (UNCAC_BASE | ((x) & TO_PHYS_MASK))
  47. #define TO_MSPEC(x) (MSPEC_BASE | ((x) & TO_PHYS_MASK))
  48. #define TO_HSPEC(x) (HSPEC_BASE | ((x) & TO_PHYS_MASK))
  49. /*
  50.  * The following couple of definitions will eventually need to be variables,
  51.  * since the amount of address space assigned to each node depends on
  52.  * whether the system is running in N-mode (more nodes with less memory)
  53.  * or M-mode (fewer nodes with more memory).  We expect that it will
  54.  * be a while before we need to make this decision dynamically, though,
  55.  * so for now we just use defines bracketed by an ifdef.
  56.  */
  57. #ifdef CONFIG_SGI_SN0_N_MODE
  58. #define NODE_SIZE_BITS 31
  59. #define BWIN_SIZE_BITS 28
  60. #define NASID_BITS 9
  61. #define NASID_BITMASK (0x1ffLL)
  62. #define NASID_SHFT 31
  63. #define NASID_META_BITS 5
  64. #define NASID_LOCAL_BITS 4
  65. #define BDDIR_UPPER_MASK (UINT64_CAST 0x7ffff << 10)
  66. #define BDECC_UPPER_MASK (UINT64_CAST 0x3ffffff << 3)
  67. #else /* !defined(CONFIG_SGI_SN0_N_MODE), assume that M-mode is desired */
  68. #define NODE_SIZE_BITS 32
  69. #define BWIN_SIZE_BITS 29
  70. #define NASID_BITMASK (0xffLL)
  71. #define NASID_BITS 8
  72. #define NASID_SHFT 32
  73. #define NASID_META_BITS 4
  74. #define NASID_LOCAL_BITS 4
  75. #define BDDIR_UPPER_MASK (UINT64_CAST 0xfffff << 10)
  76. #define BDECC_UPPER_MASK (UINT64_CAST 0x7ffffff << 3)
  77. #endif /* !defined(CONFIG_SGI_SN0_N_MODE) */
  78. #define NODE_ADDRSPACE_SIZE (UINT64_CAST 1 << NODE_SIZE_BITS)
  79. #define NASID_MASK (UINT64_CAST NASID_BITMASK << NASID_SHFT)
  80. #define NASID_GET(_pa) (int) ((UINT64_CAST (_pa) >>
  81. NASID_SHFT) & NASID_BITMASK)
  82. #if _LANGUAGE_C && !defined(_STANDALONE)
  83. #define NODE_SWIN_BASE(nasid, widget)
  84. ((widget == 0) ? NODE_BWIN_BASE((nasid), SWIN0_BIGWIN)
  85. : RAW_NODE_SWIN_BASE(nasid, widget))
  86. #else
  87. #define NODE_SWIN_BASE(nasid, widget) 
  88.      (NODE_IO_BASE(nasid) + (UINT64_CAST (widget) << SWIN_SIZE_BITS))
  89. #endif /* _LANGUAGE_C */
  90. /*
  91.  * The following definitions pertain to the IO special address
  92.  * space.  They define the location of the big and little windows
  93.  * of any given node.
  94.  */
  95. #define BWIN_INDEX_BITS 3
  96. #define BWIN_SIZE (UINT64_CAST 1 << BWIN_SIZE_BITS)
  97. #define BWIN_SIZEMASK (BWIN_SIZE - 1)
  98. #define BWIN_WIDGET_MASK 0x7
  99. #define NODE_BWIN_BASE0(nasid) (NODE_IO_BASE(nasid) + BWIN_SIZE)
  100. #define NODE_BWIN_BASE(nasid, bigwin) (NODE_BWIN_BASE0(nasid) + 
  101. (UINT64_CAST (bigwin) << BWIN_SIZE_BITS))
  102. #define BWIN_WIDGETADDR(addr) ((addr) & BWIN_SIZEMASK)
  103. #define BWIN_WINDOWNUM(addr) (((addr) >> BWIN_SIZE_BITS) & BWIN_WIDGET_MASK)
  104. /*
  105.  * Verify if addr belongs to large window address of node with "nasid"
  106.  *
  107.  *
  108.  * NOTE: "addr" is expected to be XKPHYS address, and NOT physical
  109.  * address
  110.  *
  111.  *
  112.  */
  113. #define NODE_BWIN_ADDR(nasid, addr)
  114. (((addr) >= NODE_BWIN_BASE0(nasid)) && 
  115.  ((addr) < (NODE_BWIN_BASE(nasid, HUB_NUM_BIG_WINDOW) + 
  116. BWIN_SIZE)))
  117. /*
  118.  * The following define the major position-independent aliases used
  119.  * in SN0.
  120.  * CALIAS -- Varies in size, points to the first n bytes of memory
  121.  *    on the reader's node.
  122.  */
  123. #define CALIAS_BASE CAC_BASE
  124. #define BRIDGE_REG_PTR(_base, _off) ((volatile bridgereg_t *) 
  125. ((__psunsigned_t)(_base) + (__psunsigned_t)(_off)))
  126. #define SN0_WIDGET_BASE(_nasid, _wid) (NODE_SWIN_BASE((_nasid), (_wid)))
  127. /* Turn on sable logging for the processors whose bits are set. */
  128. #ifdef SABLE
  129. #define SABLE_LOG_TRIGGER(_map)
  130. *((volatile hubreg_t *)(IO_BASE + 0x17ffff0)) = (_map)
  131. #else
  132. #define SABLE_LOG_TRIGGER(_map)
  133. #endif /* SABLE */
  134. #if _LANGUAGE_C
  135. #define KERN_NMI_ADDR(nasid, slice)
  136.                     TO_NODE_UNCAC((nasid), IP27_NMI_KREGS_OFFSET + 
  137.   (IP27_NMI_KREGS_CPU_SIZE * (slice)))
  138. #endif /* _LANGUAGE_C */
  139. #ifdef PROM
  140. #define MISC_PROM_BASE PHYS_TO_K0(0x01300000)
  141. #define MISC_PROM_SIZE 0x200000
  142. #define DIAG_BASE PHYS_TO_K0(0x01500000)
  143. #define DIAG_SIZE 0x300000
  144. #define ROUTE_BASE PHYS_TO_K0(0x01800000)
  145. #define ROUTE_SIZE 0x200000
  146. #define IP27PROM_FLASH_HDR PHYS_TO_K0(0x01300000)
  147. #define IP27PROM_FLASH_DATA PHYS_TO_K0(0x01301000)
  148. #define IP27PROM_CORP_MAX 32
  149. #define IP27PROM_CORP PHYS_TO_K0(0x01800000)
  150. #define IP27PROM_CORP_SIZE 0x10000
  151. #define IP27PROM_CORP_STK PHYS_TO_K0(0x01810000)
  152. #define IP27PROM_CORP_STKSIZE 0x2000
  153. #define IP27PROM_DECOMP_BUF PHYS_TO_K0(0x01900000)
  154. #define IP27PROM_DECOMP_SIZE 0xfff00
  155. #define IP27PROM_BASE PHYS_TO_K0(0x01a00000)
  156. #define IP27PROM_BASE_MAPPED (K2BASE | 0x1fc00000)
  157. #define IP27PROM_SIZE_MAX 0x100000
  158. #define IP27PROM_PCFG PHYS_TO_K0(0x01b00000)
  159. #define IP27PROM_PCFG_SIZE 0xd0000
  160. #define IP27PROM_ERRDMP PHYS_TO_K1(0x01bd0000)
  161. #define IP27PROM_ERRDMP_SIZE 0xf000
  162. #define IP27PROM_INIT_START PHYS_TO_K1(0x01bd0000)
  163. #define IP27PROM_CONSOLE PHYS_TO_K1(0x01bdf000)
  164. #define IP27PROM_CONSOLE_SIZE 0x200
  165. #define IP27PROM_NETUART PHYS_TO_K1(0x01bdf200)
  166. #define IP27PROM_NETUART_SIZE 0x100
  167. #define IP27PROM_UNUSED1 PHYS_TO_K1(0x01bdf300)
  168. #define IP27PROM_UNUSED1_SIZE 0x500
  169. #define IP27PROM_ELSC_BASE_A PHYS_TO_K0(0x01bdf800)
  170. #define IP27PROM_ELSC_BASE_B PHYS_TO_K0(0x01bdfc00)
  171. #define IP27PROM_STACK_A PHYS_TO_K0(0x01be0000)
  172. #define IP27PROM_STACK_B PHYS_TO_K0(0x01bf0000)
  173. #define IP27PROM_STACK_SHFT 16
  174. #define IP27PROM_STACK_SIZE (1 << IP27PROM_STACK_SHFT)
  175. #define IP27PROM_INIT_END PHYS_TO_K0(0x01c00000)
  176. #define SLAVESTACK_BASE PHYS_TO_K0(0x01580000)
  177. #define SLAVESTACK_SIZE 0x40000
  178. #define ENETBUFS_BASE PHYS_TO_K0(0x01f80000)
  179. #define ENETBUFS_SIZE 0x20000
  180. #define IO6PROM_BASE PHYS_TO_K0(0x01c00000)
  181. #define IO6PROM_SIZE 0x400000
  182. #define IO6PROM_BASE_MAPPED (K2BASE | 0x11c00000)
  183. #define IO6DPROM_BASE PHYS_TO_K0(0x01c00000)
  184. #define IO6DPROM_SIZE 0x200000
  185. #define NODEBUGUNIX_ADDR PHYS_TO_K0(0x00019000)
  186. #define DEBUGUNIX_ADDR PHYS_TO_K0(0x00100000)
  187. #define IP27PROM_INT_LAUNCH 10 /* and 11 */
  188. #define IP27PROM_INT_NETUART 12 /* through 17 */
  189. #endif /* PROM */
  190. /*
  191.  * needed by symmon so it needs to be outside #if PROM
  192.  */
  193. #define IP27PROM_ELSC_SHFT 10
  194. #define IP27PROM_ELSC_SIZE (1 << IP27PROM_ELSC_SHFT)
  195. /*
  196.  * This address is used by IO6PROM to build MemoryDescriptors of
  197.  * free memory. This address is important since unix gets loaded
  198.  * at this address, and this memory has to be FREE if unix is to
  199.  * be loaded.
  200.  */
  201. #define FREEMEM_BASE PHYS_TO_K0(0x2000000)
  202. #define IO6PROM_STACK_SHFT 14 /* stack per cpu */
  203. #define IO6PROM_STACK_SIZE (1 << IO6PROM_STACK_SHFT)
  204. /*
  205.  * IP27 PROM vectors
  206.  */
  207. #define IP27PROM_ENTRY PHYS_TO_COMPATK1(0x1fc00000)
  208. #define IP27PROM_RESTART PHYS_TO_COMPATK1(0x1fc00008)
  209. #define IP27PROM_SLAVELOOP PHYS_TO_COMPATK1(0x1fc00010)
  210. #define IP27PROM_PODMODE PHYS_TO_COMPATK1(0x1fc00018)
  211. #define IP27PROM_IOC3UARTPOD PHYS_TO_COMPATK1(0x1fc00020)
  212. #define IP27PROM_FLASHLEDS PHYS_TO_COMPATK1(0x1fc00028)
  213. #define IP27PROM_REPOD PHYS_TO_COMPATK1(0x1fc00030)
  214. #define IP27PROM_LAUNCHSLAVE PHYS_TO_COMPATK1(0x1fc00038)
  215. #define IP27PROM_WAITSLAVE PHYS_TO_COMPATK1(0x1fc00040)
  216. #define IP27PROM_POLLSLAVE PHYS_TO_COMPATK1(0x1fc00048)
  217. #define KL_UART_BASE LOCAL_HUB_ADDR(MD_UREG0_0) /* base of UART regs */
  218. #define KL_UART_CMD LOCAL_HUB_ADDR(MD_UREG0_0) /* UART command reg */
  219. #define KL_UART_DATA LOCAL_HUB_ADDR(MD_UREG0_1) /* UART data reg */
  220. #define KL_I2C_REG MD_UREG0_0 /* I2C reg */
  221. #if !_LANGUAGE_ASSEMBLY
  222. /* Address 0x400 to 0x1000 ualias points to cache error eframe + misc
  223.  * CACHE_ERR_SP_PTR could either contain an address to the stack, or
  224.  * the stack could start at CACHE_ERR_SP_PTR
  225.  */
  226. #if defined (HUB_ERR_STS_WAR)
  227. #define CACHE_ERR_EFRAME 0x480
  228. #else /* HUB_ERR_STS_WAR */
  229. #define CACHE_ERR_EFRAME 0x400
  230. #endif /* HUB_ERR_STS_WAR */
  231. #define CACHE_ERR_ECCFRAME (CACHE_ERR_EFRAME + EF_SIZE)
  232. #define CACHE_ERR_SP_PTR (0x1000 - 32) /* why -32? TBD */
  233. #define CACHE_ERR_IBASE_PTR (0x1000 - 40)
  234. #define CACHE_ERR_SP (CACHE_ERR_SP_PTR - 16)
  235. #define CACHE_ERR_AREA_SIZE (ARCS_SPB_OFFSET - CACHE_ERR_EFRAME)
  236. #endif /* !_LANGUAGE_ASSEMBLY */
  237. #define _ARCSPROM
  238. #ifdef _STANDALONE
  239. /*
  240.  * The PROM needs to pass the device base address and the
  241.  * device pci cfg space address to the device drivers during
  242.  * install. The COMPONENT->Key field is used for this purpose.
  243.  * Macros needed by SN0 device drivers to convert the
  244.  * COMPONENT->Key field to the respective base address.
  245.  * Key field looks as follows:
  246.  *
  247.  *  +----------------------------------------------------+
  248.  *  |devnasid | widget  |pciid |hubwidid|hstnasid | adap |
  249.  *  |   2     |   1     |  1   |   1    |    2    |   1  |
  250.  *  +----------------------------------------------------+
  251.  *  |         |         |      |        |         |      |
  252.  *  64        48        40     32       24        8      0
  253.  *
  254.  * These are used by standalone drivers till the io infrastructure
  255.  * is in place.
  256.  */
  257. #if _LANGUAGE_C
  258. #define uchar unsigned char
  259. #define KEY_DEVNASID_SHFT  48
  260. #define KEY_WIDID_SHFT    40
  261. #define KEY_PCIID_SHFT    32
  262. #define KEY_HUBWID_SHFT    24
  263. #define KEY_HSTNASID_SHFT  8
  264. #define MK_SN0_KEY(nasid, widid, pciid) 
  265. ((((__psunsigned_t)nasid)<< KEY_DEVNASID_SHFT |
  266. ((__psunsigned_t)widid) << KEY_WIDID_SHFT) |
  267. ((__psunsigned_t)pciid) << KEY_PCIID_SHFT)
  268. #define ADD_HUBWID_KEY(key,hubwid)
  269. (key|=((__psunsigned_t)hubwid << KEY_HUBWID_SHFT))
  270. #define ADD_HSTNASID_KEY(key,hstnasid)
  271. (key|=((__psunsigned_t)hstnasid << KEY_HSTNASID_SHFT))
  272. #define GET_DEVNASID_FROM_KEY(key) ((short)(key >> KEY_DEVNASID_SHFT))
  273. #define GET_WIDID_FROM_KEY(key) ((uchar)(key >> KEY_WIDID_SHFT))
  274. #define GET_PCIID_FROM_KEY(key) ((uchar)(key >> KEY_PCIID_SHFT))
  275. #define GET_HUBWID_FROM_KEY(key) ((uchar)(key >> KEY_HUBWID_SHFT))
  276. #define GET_HSTNASID_FROM_KEY(key) ((short)(key >> KEY_HSTNASID_SHFT))
  277. #define PCI_64_TARGID_SHFT 60
  278. #define GET_PCIBASE_FROM_KEY(key)  (NODE_SWIN_BASE(GET_DEVNASID_FROM_KEY(key),
  279. GET_WIDID_FROM_KEY(key))
  280. | BRIDGE_DEVIO(GET_PCIID_FROM_KEY(key)))
  281. #define GET_PCICFGBASE_FROM_KEY(key) 
  282. (NODE_SWIN_BASE(GET_DEVNASID_FROM_KEY(key),
  283.       GET_WIDID_FROM_KEY(key))
  284. | BRIDGE_TYPE0_CFG_DEV(GET_PCIID_FROM_KEY(key)))
  285. #define GET_WIDBASE_FROM_KEY(key) 
  286.                         (NODE_SWIN_BASE(GET_DEVNASID_FROM_KEY(key),
  287.                               GET_WIDID_FROM_KEY(key)))
  288. #define PUT_INSTALL_STATUS(c,s) c->Revision = s
  289. #define GET_INSTALL_STATUS(c) c->Revision
  290. #endif /* LANGUAGE_C */
  291. #endif /* _STANDALONE */
  292. #if defined (HUB_ERR_STS_WAR)
  293. #define ERR_STS_WAR_REGISTER IIO_IIBUSERR
  294. #define ERR_STS_WAR_ADDR LOCAL_HUB_ADDR(IIO_IIBUSERR)
  295. #define ERR_STS_WAR_PHYSADDR TO_PHYS((__psunsigned_t)ERR_STS_WAR_ADDR)
  296. /* Used to match addr in error reg. */
  297. #define OLD_ERR_STS_WAR_OFFSET ((MD_MEM_BANKS * MD_BANK_SIZE) - 0x100)
  298. #endif /* HUB_ERR_STS_WAR */
  299. #endif /* _ASM_SN_SN0_ADDRS_H */