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

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_ROUTER_H
  10. #define _ASM_IA64_SN_ROUTER_H
  11. /*
  12.  * Router Register definitions
  13.  *
  14.  * Macro argument _L always stands for a link number (1 to 8, inclusive).
  15.  */
  16. #ifndef __ASSEMBLY__
  17. #include <linux/devfs_fs_kernel.h>
  18. #include <asm/sn/vector.h>
  19. #include <asm/sn/slotnum.h>
  20. #include <asm/sn/arch.h>
  21. typedef uint64_t router_reg_t;
  22. #define MAX_ROUTERS 64
  23. #define MAX_ROUTER_PATH 80
  24. #define ROUTER_REG_CAST (volatile router_reg_t *)
  25. #define PS_UINT_CAST (__psunsigned_t)
  26. #define UINT64_CAST (uint64_t)
  27. typedef signed char port_no_t;  /* Type for router port number      */
  28. #else 
  29. #define ROUTERREG_CAST
  30. #define PS_UINT_CAST
  31. #define UINT64_CAST
  32. #endif /* __ASSEMBLY__ */
  33. #define MAX_ROUTER_PORTS (8)  /* Max. number of ports on a router */
  34. #define ALL_PORTS ((1 << MAX_ROUTER_PORTS) - 1) /* for 0 based references */
  35. #define PORT_INVALID (-1)  /* Invalid port number              */
  36. #define IS_META(_rp) ((_rp)->flags & PCFG_ROUTER_META)
  37. #define IS_REPEATER(_rp)((_rp)->flags & PCFG_ROUTER_REPEATER)
  38. /*
  39.  * RR_TURN makes a given number of clockwise turns (0 to 7) from an inport
  40.  * port to generate an output port.
  41.  *
  42.  * RR_DISTANCE returns the number of turns necessary (0 to 7) to go from
  43.  * an input port (_L1 = 1 to 8) to an output port ( _L2 = 1 to 8).
  44.  *
  45.  * These are written to work on unsigned data.
  46.  */
  47. #define RR_TURN(_L, count) ((_L) + (count) > MAX_ROUTER_PORTS ?
  48.  (_L) + (count) - MAX_ROUTER_PORTS :
  49.  (_L) + (count))
  50. #define RR_DISTANCE(_LS, _LD) ((_LD) >= (_LS) ?
  51.  (_LD) - (_LS) :
  52.  (_LD) + MAX_ROUTER_PORTS - (_LS))
  53. /* Router register addresses */
  54. #define RR_STATUS_REV_ID 0x00000 /* Status register and Revision ID  */
  55. #define RR_PORT_RESET 0x00008 /* Multiple port reset              */
  56. #define RR_PROT_CONF 0x00010 /* Inter-partition protection conf. */
  57. #define RR_GLOBAL_PORT_DEF 0x00018 /* Global Port definitions          */
  58. #define RR_GLOBAL_PARMS0 0x00020 /* Parameters shared by all 8 ports */
  59. #define RR_GLOBAL_PARMS1 0x00028 /* Parameters shared by all 8 ports */
  60. #define RR_DIAG_PARMS 0x00030 /* Parameters for diag. testing     */
  61. #define RR_DEBUG_ADDR 0x00038 /* Debug address select - debug port*/
  62. #define RR_LB_TO_L2 0x00040 /* Local Block to L2 cntrl intf reg */ 
  63. #define RR_L2_TO_LB 0x00048 /* L2 cntrl intf to Local Block reg */
  64. #define RR_JBUS_CONTROL 0x00050 /* read/write timing for JBUS intf  */
  65. #define RR_SCRATCH_REG0 0x00100 /* Scratch 0 is 64 bits */
  66. #define RR_SCRATCH_REG1 0x00108 /* Scratch 1 is 64 bits */
  67. #define RR_SCRATCH_REG2 0x00110 /* Scratch 2 is 64 bits */
  68. #define RR_SCRATCH_REG3 0x00118 /* Scratch 3 is 1 bit */
  69. #define RR_SCRATCH_REG4 0x00120 /* Scratch 4 is 1 bit */
  70. #define RR_JBUS0(_D) (((_D) & 0x7) << 3 | 0x00200) /* JBUS0 addresses   */
  71. #define RR_JBUS1(_D) (((_D) & 0x7) << 3 | 0x00240) /* JBUS1 addresses   */
  72. #define RR_SCRATCH_REG0_WZ 0x00500 /* Scratch 0 is 64 bits */
  73. #define RR_SCRATCH_REG1_WZ 0x00508 /* Scratch 1 is 64 bits */
  74. #define RR_SCRATCH_REG2_WZ 0x00510 /* Scratch 2 is 64 bits */
  75. #define RR_SCRATCH_REG3_SZ 0x00518 /* Scratch 3 is 1 bit */
  76. #define RR_SCRATCH_REG4_SZ 0x00520 /* Scratch 4 is 1 bit */
  77. #define RR_VECTOR_HW_BAR(context) (0x08000 | (context)<<3) /* barrier config registers */
  78. /* Port-specific registers (_L is the link number from 1 to 8) */
  79. #define RR_PORT_PARMS(_L) (((_L+1) & 0xe) << 15 | ((_L+1) & 0x1) << 11 | 0x0000) /* LLP parameters     */
  80. #define RR_STATUS_ERROR(_L) (((_L+1) & 0xe) << 15 | ((_L+1) & 0x1) << 11 | 0x0008) /* Port-related errs  */
  81. #define RR_CHANNEL_TEST(_L) (((_L+1) & 0xe) << 15 | ((_L+1) & 0x1) << 11 | 0x0010) /* Port LLP chan test */
  82. #define RR_RESET_MASK(_L) (((_L+1) & 0xe) << 15 | ((_L+1) & 0x1) << 11 | 0x0018) /* Remote reset mask  */
  83. #define RR_HISTOGRAM0(_L) (((_L+1) & 0xe) << 15 | ((_L+1) & 0x1) << 11 | 0x0020) /* Port usage histgrm */
  84. #define RR_HISTOGRAM1(_L) (((_L+1) & 0xe) << 15 | ((_L+1) & 0x1) << 11 | 0x0028) /* Port usage histgrm */
  85. #define RR_HISTOGRAM0_WC(_L) (((_L+1) & 0xe) << 15 | ((_L+1) & 0x1) << 11 | 0x0030) /* Port usage histgrm */
  86. #define RR_HISTOGRAM1_WC(_L) (((_L+1) & 0xe) << 15 | ((_L+1) & 0x1) << 11 | 0x0038) /* Port usage histgrm */
  87. #define RR_ERROR_CLEAR(_L) (((_L+1) & 0xe) << 15 | ((_L+1) & 0x1) << 11 | 0x0088) /* Read/clear errors  */
  88. #define RR_GLOBAL_TABLE0(_L) (((_L+1) & 0xe) << 15 | ((_L+1) & 0x1) << 11 | 0x0100) /* starting address of global table for this port */
  89. #define RR_GLOBAL_TABLE(_L, _x) (RR_GLOBAL_TABLE0(_L) + ((_x) << 3))
  90. #define RR_LOCAL_TABLE0(_L) (((_L+1) & 0xe) << 15 | ((_L+1) & 0x1) << 11 | 0x0200) /* starting address of local table for this port */
  91. #define RR_LOCAL_TABLE(_L, _x) (RR_LOCAL_TABLE0(_L) + ((_x) << 3))
  92. #define RR_META_ENTRIES 16
  93. #define RR_LOCAL_ENTRIES 128
  94. /*
  95.  * RR_STATUS_REV_ID mask and shift definitions
  96.  */
  97. #define RSRI_INPORT_SHFT 52
  98. #define RSRI_INPORT_MASK (UINT64_CAST 0xf << 52)
  99. #define RSRI_LINKWORKING_BIT(_L) (35 + 2 * (_L))
  100. #define RSRI_LINKWORKING(_L) (UINT64_CAST 1 << (35 + 2 * (_L)))
  101. #define RSRI_LINKRESETFAIL(_L) (UINT64_CAST 1 << (34 + 2 * (_L)))
  102. #define RSRI_LSTAT_SHFT(_L) (34 + 2 * (_L))
  103. #define RSRI_LSTAT_MASK(_L) (UINT64_CAST 0x3 << 34 + 2 * (_L))
  104. #define RSRI_LOCALSBERROR (UINT64_CAST 1 << 35)
  105. #define RSRI_LOCALSTUCK (UINT64_CAST 1 << 34)
  106. #define RSRI_LOCALBADVEC (UINT64_CAST 1 << 33)
  107. #define RSRI_LOCALTAILERR (UINT64_CAST 1 << 32)
  108. #define RSRI_LOCAL_SHFT  32
  109. #define RSRI_LOCAL_MASK (UINT64_CAST 0xf << 32)
  110. #define RSRI_CHIPREV_SHFT 28
  111. #define RSRI_CHIPREV_MASK (UINT64_CAST 0xf << 28)
  112. #define RSRI_CHIPID_SHFT 12
  113. #define RSRI_CHIPID_MASK (UINT64_CAST 0xffff << 12)
  114. #define RSRI_MFGID_SHFT 1
  115. #define RSRI_MFGID_MASK (UINT64_CAST 0x7ff << 1)
  116. #define RSRI_LSTAT_WENTDOWN 0
  117. #define RSRI_LSTAT_RESETFAIL 1
  118. #define RSRI_LSTAT_LINKUP 2
  119. #define RSRI_LSTAT_NOTUSED 3
  120. /*
  121.  * RR_PORT_RESET mask definitions
  122.  */
  123. #define RPRESET_WARM (UINT64_CAST 1 << 9)
  124. #define RPRESET_LINK(_L) (UINT64_CAST 1 << (_L))
  125. #define RPRESET_LOCAL (UINT64_CAST 1)
  126. /*
  127.  * RR_PROT_CONF mask and shift definitions
  128.  */
  129. #define RPCONF_DIRCMPDIS_SHFT 13
  130. #define RPCONF_DIRCMPDIS_MASK (UINT64_CAST 1 << 13)
  131. #define RPCONF_FORCELOCAL (UINT64_CAST 1 << 12)
  132. #define RPCONF_FLOCAL_SHFT 12
  133. #define RPCONF_METAID_SHFT 8
  134. #define RPCONF_METAID_MASK (UINT64_CAST 0xf << 8)
  135. #define RPCONF_RESETOK(_L) (UINT64_CAST 1 << ((_L) - 1))
  136. /*
  137.  * RR_GLOBAL_PORT_DEF mask and shift definitions
  138.  */
  139. #define RGPD_MGLBLNHBR_ID_SHFT 12 /* -global neighbor ID */
  140. #define RGPD_MGLBLNHBR_ID_MASK (UINT64_CAST 0xf << 12)
  141. #define RGPD_MGLBLNHBR_VLD_SHFT 11 /* -global neighbor Valid */
  142. #define RGPD_MGLBLNHBR_VLD_MASK (UINT64_CAST 0x1 << 11)
  143. #define RGPD_MGLBLPORT_SHFT 8 /* -global neighbor Port */
  144. #define RGPD_MGLBLPORT_MASK (UINT64_CAST 0x7 << 8)
  145. #define RGPD_PGLBLNHBR_ID_SHFT 4 /* +global neighbor ID */
  146. #define RGPD_PGLBLNHBR_ID_MASK (UINT64_CAST 0xf << 4)
  147. #define RGPD_PGLBLNHBR_VLD_SHFT 3 /* +global neighbor Valid */
  148. #define RGPD_PGLBLNHBR_VLD_MASK (UINT64_CAST 0x1 << 3)
  149. #define RGPD_PGLBLPORT_SHFT 0 /* +global neighbor Port */
  150. #define RGPD_PGLBLPORT_MASK (UINT64_CAST 0x7 << 0)
  151. #define GLBL_PARMS_REGS 2 /* Two Global Parms registers */
  152. /*
  153.  * RR_GLOBAL_PARMS0 mask and shift definitions
  154.  */
  155. #define RGPARM0_ARB_VALUE_SHFT 54 /* Local Block Arbitration State */
  156. #define RGPARM0_ARB_VALUE_MASK (UINT64_CAST 0x7 << 54)
  157. #define RGPARM0_ROTATEARB_SHFT 53 /* Rotate Local Block Arbitration */
  158. #define RGPARM0_ROTATEARB_MASK (UINT64_CAST 0x1 << 53)
  159. #define RGPARM0_FAIREN_SHFT 52 /* Fairness logic Enable */
  160. #define RGPARM0_FAIREN_MASK (UINT64_CAST 0x1 << 52)
  161. #define RGPARM0_LOCGNTTO_SHFT 40 /* Local grant timeout */
  162. #define RGPARM0_LOCGNTTO_MASK (UINT64_CAST 0xfff << 40)
  163. #define RGPARM0_DATELINE_SHFT 38 /* Dateline crossing router */
  164. #define RGPARM0_DATELINE_MASK (UINT64_CAST 0x1 << 38)
  165. #define RGPARM0_MAXRETRY_SHFT 28 /* Max retry count */
  166. #define RGPARM0_MAXRETRY_MASK (UINT64_CAST 0x3ff << 28)
  167. #define RGPARM0_URGWRAP_SHFT 20 /* Urgent wrap */
  168. #define RGPARM0_URGWRAP_MASK (UINT64_CAST 0xff << 20)
  169. #define RGPARM0_DEADLKTO_SHFT 16 /* Deadlock timeout */
  170. #define RGPARM0_DEADLKTO_MASK (UINT64_CAST 0xf << 16)
  171. #define RGPARM0_URGVAL_SHFT 12 /* Urgent value */
  172. #define RGPARM0_URGVAL_MASK (UINT64_CAST 0xf << 12)
  173. #define RGPARM0_VCHSELEN_SHFT 11 /* VCH_SEL_EN */
  174. #define RGPARM0_VCHSELEN_MASK (UINT64_CAST 0x1 << 11)
  175. #define RGPARM0_LOCURGTO_SHFT 9 /* Local urgent timeout */
  176. #define RGPARM0_LOCURGTO_MASK (UINT64_CAST 0x3 << 9)
  177. #define RGPARM0_TAILVAL_SHFT 5 /* Tail value */
  178. #define RGPARM0_TAILVAL_MASK (UINT64_CAST 0xf << 5)
  179. #define RGPARM0_CLOCK_SHFT 1 /* Global clock select */
  180. #define RGPARM0_CLOCK_MASK (UINT64_CAST 0xf << 1)
  181. #define RGPARM0_BYPEN_SHFT 0
  182. #define RGPARM0_BYPEN_MASK (UINT64_CAST 1) /* Bypass enable */
  183. /*
  184.  * RR_GLOBAL_PARMS1 shift and mask definitions
  185.  */
  186. #define RGPARM1_TTOWRAP_SHFT 12 /* Tail timeout wrap */
  187. #define RGPARM1_TTOWRAP_MASK (UINT64_CAST 0xfffff << 12)
  188. #define RGPARM1_AGERATE_SHFT 8 /* Age rate */
  189. #define RGPARM1_AGERATE_MASK (UINT64_CAST 0xf << 8)
  190. #define RGPARM1_JSWSTAT_SHFT 0 /* JTAG Sw Register bits */
  191. #define RGPARM1_JSWSTAT_MASK (UINT64_CAST 0xff << 0)
  192. /*
  193.  * RR_DIAG_PARMS mask and shift definitions
  194.  */
  195. #define RDPARM_ABSHISTOGRAM (UINT64_CAST 1 << 17) /* Absolute histgrm */
  196. #define RDPARM_DEADLOCKRESET (UINT64_CAST 1 << 16) /* Reset on deadlck */
  197. #define RDPARM_DISABLE(_L) (UINT64_CAST 1 << ((_L) +  7))
  198. #define RDPARM_SENDERROR(_L) (UINT64_CAST 1 << ((_L) -  1))
  199. /*
  200.  * RR_DEBUG_ADDR mask and shift definitions
  201.  */
  202. #define RDA_DATA_SHFT 10 /* Observed debug data */
  203. #define RDA_DATA_MASK (UINT64_CAST 0xffff << 10)
  204. #define RDA_ADDR_SHFT 0 /* debug address for data */
  205. #define RDA_ADDR_MASK (UINT64_CAST 0x3ff << 0)
  206. /*
  207.  * RR_LB_TO_L2 mask and shift definitions
  208.  */
  209. #define RLBTOL2_DATA_VLD_SHFT 32 /* data is valid for JTAG controller */
  210. #define RLBTOL2_DATA_VLD_MASK (UINT64_CAST 0x1 << 32)
  211. #define RLBTOL2_DATA_SHFT 0 /* data bits for JTAG controller */
  212. #define RLBTOL2_DATA_MASK (UINT64_CAST 0xffffffff)
  213. /*
  214.  * RR_L2_TO_LB mask and shift definitions
  215.  */
  216. #define RL2TOLB_DATA_VLD_SHFT 33 /* data is valid from JTAG controller */
  217. #define RL2TOLB_DATA_VLD_MASK (UINT64_CAST 0x1 << 33)
  218. #define RL2TOLB_PARITY_SHFT 32 /* sw implemented parity for data */
  219. #define RL2TOLB_PARITY_MASK (UINT64_CAST 0x1 << 32)
  220. #define RL2TOLB_DATA_SHFT 0 /* data bits from JTAG controller */
  221. #define RL2TOLB_DATA_MASK (UINT64_CAST 0xffffffff)
  222. /*
  223.  * RR_JBUS_CONTROL mask and shift definitions
  224.  */
  225. #define RJC_POS_BITS_SHFT 20 /* Router position bits */
  226. #define RJC_POS_BITS_MASK (UINT64_CAST 0xf << 20)
  227. #define RJC_RD_DATA_STROBE_SHFT 16 /* count when read data is strobed in */
  228. #define RJC_RD_DATA_STROBE_MASK (UINT64_CAST 0xf << 16)
  229. #define RJC_WE_OE_HOLD_SHFT 8 /* time OE or WE is held */
  230. #define RJC_WE_OE_HOLD_MASK (UINT64_CAST 0xff << 8)
  231. #define RJC_ADDR_SET_HLD_SHFT 0 /* time address driven around OE/WE */
  232. #define RJC_ADDR_SET_HLD_MASK (UINT64_CAST 0xff)
  233. /*
  234.  * RR_SCRATCH_REGx mask and shift definitions
  235.  *  note: these fields represent a software convention, and are not
  236.  *        understood/interpreted by the hardware. 
  237.  */
  238. #define RSCR0_BOOTED_SHFT 63
  239. #define RSCR0_BOOTED_MASK (UINT64_CAST 0x1 << RSCR0_BOOTED_SHFT)
  240. #define RSCR0_LOCALID_SHFT 56
  241. #define RSCR0_LOCALID_MASK (UINT64_CAST 0x7f << RSCR0_LOCALID_SHFT)
  242. #define RSCR0_UNUSED_SHFT 48
  243. #define RSCR0_UNUSED_MASK (UINT64_CAST 0xff << RSCR0_UNUSED_SHFT)
  244. #define RSCR0_NIC_SHFT 0
  245. #define RSCR0_NIC_MASK (UINT64_CAST 0xffffffffffff)
  246. #define RSCR1_MODID_SHFT 0
  247. #define RSCR1_MODID_MASK (UINT64_CAST 0xffff)
  248. /*
  249.  * RR_VECTOR_HW_BAR mask and shift definitions
  250.  */
  251. #define BAR_TX_SHFT 27 /* Barrier in trans(m)it when read */
  252. #define BAR_TX_MASK (UINT64_CAST 1 << BAR_TX_SHFT)
  253. #define BAR_VLD_SHFT 26 /* Valid Configuration */
  254. #define BAR_VLD_MASK (UINT64_CAST 1 << BAR_VLD_SHFT)
  255. #define BAR_SEQ_SHFT 24 /* Sequence number */
  256. #define BAR_SEQ_MASK (UINT64_CAST 3 << BAR_SEQ_SHFT)
  257. #define BAR_LEAFSTATE_SHFT 18 /* Leaf State */
  258. #define BAR_LEAFSTATE_MASK (UINT64_CAST 0x3f << BAR_LEAFSTATE_SHFT)
  259. #define BAR_PARENT_SHFT 14 /* Parent Port */
  260. #define BAR_PARENT_MASK (UINT64_CAST 0xf << BAR_PARENT_SHFT)
  261. #define BAR_CHILDREN_SHFT 6 /* Child Select port bits */
  262. #define BAR_CHILDREN_MASK (UINT64_CAST 0xff << BAR_CHILDREN_SHFT)
  263. #define BAR_LEAFCOUNT_SHFT 0 /* Leaf Count to trigger parent */
  264. #define BAR_LEAFCOUNT_MASK (UINT64_CAST 0x3f)
  265. /*
  266.  * RR_PORT_PARMS(_L) mask and shift definitions
  267.  */
  268. #define RPPARM_MIPRESETEN_SHFT 29 /* Message In Progress reset enable */
  269. #define RPPARM_MIPRESETEN_MASK (UINT64_CAST 0x1 << 29)
  270. #define RPPARM_UBAREN_SHFT 28 /* Enable user barrier requests */
  271. #define RPPARM_UBAREN_MASK (UINT64_CAST 0x1 << 28)
  272. #define RPPARM_OUTPDTO_SHFT 24 /* Output Port Deadlock TO value */
  273. #define RPPARM_OUTPDTO_MASK (UINT64_CAST 0xf << 24)
  274. #define RPPARM_PORTMATE_SHFT 21 /* Port Mate for the port */
  275. #define RPPARM_PORTMATE_MASK (UINT64_CAST 0x7 << 21)
  276. #define RPPARM_HISTEN_SHFT 20 /* Histogram counter enable */
  277. #define RPPARM_HISTEN_MASK (UINT64_CAST 0x1 << 20)
  278. #define RPPARM_HISTSEL_SHFT 18
  279. #define RPPARM_HISTSEL_MASK (UINT64_CAST 0x3 << 18)
  280. #define RPPARM_DAMQHS_SHFT 16
  281. #define RPPARM_DAMQHS_MASK (UINT64_CAST 0x3 << 16)
  282. #define RPPARM_NULLTO_SHFT 10
  283. #define RPPARM_NULLTO_MASK (UINT64_CAST 0x3f << 10)
  284. #define RPPARM_MAXBURST_SHFT 0
  285. #define RPPARM_MAXBURST_MASK (UINT64_CAST 0x3ff)
  286. /*
  287.  * NOTE: Normally the kernel tracks only UTILIZATION statistics.
  288.  * The other 2 should not be used, except during any experimentation
  289.  * with the router.
  290.  */
  291. #define RPPARM_HISTSEL_AGE 0 /* Histogram age characterization.  */
  292. #define RPPARM_HISTSEL_UTIL 1 /* Histogram link utilization      */
  293. #define RPPARM_HISTSEL_DAMQ 2 /* Histogram DAMQ characterization. */
  294. /*
  295.  * RR_STATUS_ERROR(_L) and RR_ERROR_CLEAR(_L) mask and shift definitions
  296.  */
  297. #define RSERR_POWERNOK (UINT64_CAST 1 << 38)
  298. #define RSERR_PORT_DEADLOCK     (UINT64_CAST 1 << 37)
  299. #define RSERR_WARMRESET         (UINT64_CAST 1 << 36)
  300. #define RSERR_LINKRESET         (UINT64_CAST 1 << 35)
  301. #define RSERR_RETRYTIMEOUT      (UINT64_CAST 1 << 34)
  302. #define RSERR_FIFOOVERFLOW (UINT64_CAST 1 << 33)
  303. #define RSERR_ILLEGALPORT (UINT64_CAST 1 << 32)
  304. #define RSERR_DEADLOCKTO_SHFT 28
  305. #define RSERR_DEADLOCKTO_MASK (UINT64_CAST 0xf << 28)
  306. #define RSERR_RECVTAILTO_SHFT 24
  307. #define RSERR_RECVTAILTO_MASK (UINT64_CAST 0xf << 24)
  308. #define RSERR_RETRYCNT_SHFT 16
  309. #define RSERR_RETRYCNT_MASK (UINT64_CAST 0xff << 16)
  310. #define RSERR_CBERRCNT_SHFT 8
  311. #define RSERR_CBERRCNT_MASK (UINT64_CAST 0xff << 8)
  312. #define RSERR_SNERRCNT_SHFT 0
  313. #define RSERR_SNERRCNT_MASK (UINT64_CAST 0xff << 0)
  314. #define PORT_STATUS_UP (1 << 0) /* Router link up */
  315. #define PORT_STATUS_FENCE (1 << 1) /* Router link fenced */
  316. #define PORT_STATUS_RESETFAIL (1 << 2) /* Router link didnot 
  317.  * come out of reset */
  318. #define PORT_STATUS_DISCFAIL (1 << 3) /* Router link failed after 
  319.  * out of reset but before
  320.  * router tables were
  321.  * programmed
  322.  */
  323. #define PORT_STATUS_KERNFAIL (1 << 4) /* Router link failed
  324.  * after reset and the 
  325.  * router tables were
  326.  * programmed
  327.  */
  328. #define PORT_STATUS_UNDEF (1 << 5) /* Unable to pinpoint
  329.  * why the router link
  330.  * went down
  331.  */
  332. #define PROBE_RESULT_BAD (-1) /* Set if any of the router
  333.  * links failed after reset
  334.  */
  335. #define PROBE_RESULT_GOOD (0) /* Set if all the router links
  336.  * which came out of reset 
  337.  * are up
  338.  */
  339. /* Should be enough for 256 CPUs */
  340. #define MAX_RTR_BREADTH 64 /* Max # of routers possible */
  341. /* Get the require set of bits in a var. corr to a sequence of bits  */
  342. #define GET_FIELD(var, fname) 
  343.         ((var) >> fname##_SHFT & fname##_MASK >> fname##_SHFT)
  344. /* Set the require set of bits in a var. corr to a sequence of bits  */
  345. #define SET_FIELD(var, fname, fval) 
  346.         ((var) = (var) & ~fname##_MASK | (uint64_t) (fval) << fname##_SHFT)
  347. #ifndef __ASSEMBLY__
  348. typedef struct router_map_ent_s {
  349. uint64_t nic;
  350. moduleid_t module;
  351. slotid_t slot;
  352. } router_map_ent_t;
  353. struct rr_status_error_fmt {
  354. uint64_t rserr_unused : 30,
  355. rserr_fifooverflow : 1,
  356. rserr_illegalport : 1,
  357. rserr_deadlockto : 4,
  358. rserr_recvtailto : 4,
  359. rserr_retrycnt : 8,
  360. rserr_cberrcnt : 8,
  361. rserr_snerrcnt : 8;
  362. };
  363. /*
  364.  * This type is used to store "absolute" counts of router events
  365.  */
  366. typedef int router_count_t;
  367. /* All utilizations are on a scale from 0 - 1023. */
  368. #define RP_BYPASS_UTIL 0
  369. #define RP_RCV_UTIL 1
  370. #define RP_SEND_UTIL 2
  371. #define RP_TOTAL_PKTS 3 /* Free running clock/packet counter */
  372. #define RP_NUM_UTILS 3
  373. #define RP_HIST_REGS 2
  374. #define RP_NUM_BUCKETS  4
  375. #define RP_HIST_TYPES 3
  376. #define RP_AGE0 0
  377. #define RP_AGE1 1
  378. #define RP_AGE2 2
  379. #define RP_AGE3 3
  380. #define RR_UTIL_SCALE 1024
  381. /*
  382.  * Router port-oriented information
  383.  */
  384. typedef struct router_port_info_s {
  385. router_reg_t rp_histograms[RP_HIST_REGS];/* Port usage info */
  386. router_reg_t rp_port_error; /* Port error info */
  387. router_count_t rp_retry_errors; /* Total retry errors */
  388. router_count_t rp_sn_errors; /* Total sn errors */
  389. router_count_t rp_cb_errors; /* Total cb errors */
  390. int rp_overflows; /* Total count overflows */
  391. int rp_excess_err; /* Port has excessive errors */
  392. ushort rp_util[RP_NUM_BUCKETS];/* Port utilization */
  393. } router_port_info_t;
  394. #define ROUTER_INFO_VERSION 7
  395. struct lboard_s;
  396. /*
  397.  * Router information
  398.  */
  399. typedef struct router_info_s {
  400. char ri_version; /* structure version     */
  401. cnodeid_t ri_cnode; /* cnode of its legal guardian hub  */
  402. nasid_t ri_nasid; /* Nasid of same      */
  403. char ri_ledcache; /* Last LED bitmap     */
  404. char ri_leds; /* Current LED bitmap     */
  405. char ri_portmask; /* Active port bitmap     */
  406. router_reg_t ri_stat_rev_id; /* Status rev ID value     */
  407. net_vec_t ri_vector; /* vector from guardian to router   */
  408. int ri_writeid; /* router's vector write ID     */
  409. int64_t ri_timebase; /* Time of first sample     */
  410. int64_t ri_timestamp; /* Time of last sample     */
  411. router_port_info_t ri_port[MAX_ROUTER_PORTS]; /* per port info      */
  412. moduleid_t ri_module; /* Which module are we in?     */
  413. slotid_t ri_slotnum; /* Which slot are we in?     */
  414. router_reg_t ri_glbl_parms[GLBL_PARMS_REGS];
  415. /* Global parms0&1 register contents*/
  416. devfs_handle_t ri_vertex; /* hardware graph vertex            */
  417. router_reg_t ri_prot_conf; /* protection config. register     */
  418. int64_t ri_per_minute; /* Ticks per minute     */
  419. /*
  420.  * Everything below here is for kernel use only and may change at
  421.  * at any time with or without a change in teh revision number
  422.  *
  423.  * Any pointers or things that come and go with DEBUG must go at
  424.    * the bottom of the structure, below the user stuff.
  425.  */
  426. char ri_hist_type;   /* histogram type     */
  427. devfs_handle_t ri_guardian; /* guardian node for the router     */
  428. int64_t ri_last_print; /* When did we last print     */
  429. char ri_print; /* Should we print      */
  430. char  ri_just_blink; /* Should we blink the LEDs         */
  431. #ifdef DEBUG
  432. int64_t ri_deltatime; /* Time it took to sample     */
  433. #endif
  434. spinlock_t ri_lock; /* Lock for access to router info   */
  435. net_vec_t *ri_vecarray; /* Pointer to array of vectors     */
  436. struct lboard_s *ri_brd; /* Pointer to board structure     */
  437. char * ri_name; /* This board's hwg path      */
  438.         unsigned char ri_port_maint[MAX_ROUTER_PORTS]; /* should we send a 
  439. message to availmon */
  440. } router_info_t;
  441. /* Router info location specifiers */
  442. #define RIP_PROMLOG 2 /* Router info in promlog */
  443. #define RIP_CONSOLE 4 /* Router info on console */
  444. #define ROUTER_INFO_PRINT(_rip,_where) (_rip->ri_print |= _where)
  445. /* Set the field used to check if a 
  446.  * router info can be printed
  447.  */
  448. #define IS_ROUTER_INFO_PRINTED(_rip,_where)
  449. (_rip->ri_print & _where)
  450. /* Was the router info printed to
  451.  * the given location (_where) ?
  452.  * Mainly used to prevent duplicate
  453.  * router error states.
  454.  */
  455. #define ROUTER_INFO_LOCK(_rip,_s) _s = mutex_spinlock(&(_rip->ri_lock))
  456. /* Take the lock on router info
  457.  * to gain exclusive access
  458.  */
  459. #define ROUTER_INFO_UNLOCK(_rip,_s) mutex_spinunlock(&(_rip->ri_lock),_s)
  460. /* Release the lock on router info */
  461. /* 
  462.  * Router info hanging in the nodepda 
  463.  */
  464. typedef struct nodepda_router_info_s {
  465. devfs_handle_t  router_vhdl; /* vertex handle of the router      */
  466. short router_port; /* port thru which we entered       */
  467. short router_portmask;
  468. moduleid_t router_module; /* module in which router is there  */
  469. slotid_t router_slot; /* router slot     */
  470. unsigned char router_type; /* kind of router      */
  471. net_vec_t router_vector; /* vector from the guardian node    */
  472. router_info_t *router_infop; /* info hanging off the hwg vertex  */
  473. struct nodepda_router_info_s *router_next;
  474.                                 /* pointer to next element      */
  475. } nodepda_router_info_t;
  476. #define ROUTER_NAME_SIZE 20 /* Max size of a router name */
  477. #define NORMAL_ROUTER_NAME "normal_router"
  478. #define NULL_ROUTER_NAME "null_router"
  479. #define META_ROUTER_NAME "meta_router"
  480. #define REPEATER_ROUTER_NAME "repeater_router"
  481. #define UNKNOWN_ROUTER_NAME "unknown_router" 
  482. /* The following definitions are needed by the router traversing
  483.  * code either using the hardware graph or using vector operations.
  484.  */
  485. /* Structure of the router queue element */
  486. typedef struct router_elt_s {
  487. union {
  488. /* queue element structure during router probing */
  489. struct {
  490. /* number-in-a-can (unique) for the router */
  491. nic_t nic;
  492. /* vector route from the master hub to 
  493.  * this router.
  494.  */
  495. net_vec_t vec;
  496. /* port status */
  497. uint64_t status;
  498. char port_status[MAX_ROUTER_PORTS + 1];
  499. } r_elt;
  500. /* queue element structure during router guardian 
  501.  * assignment
  502.  */
  503. struct {
  504. /* vertex handle for the router */
  505. devfs_handle_t vhdl;
  506. /* guardian for this router */
  507. devfs_handle_t guard;
  508. /* vector router from the guardian to the router */
  509. net_vec_t vec;
  510. } k_elt;
  511. } u;
  512.                         /* easy to use port status interpretation */
  513. } router_elt_t;
  514. /* structure of the router queue */
  515. typedef struct router_queue_s {
  516. char head; /* Point where a queue element is inserted */
  517. char tail; /* Point where a queue element is removed */
  518. int type;
  519. router_elt_t array[MAX_RTR_BREADTH];
  520.                         /* Entries for queue elements */
  521. } router_queue_t;
  522. #endif /* __ASSEMBLY__ */
  523. /*
  524.  * RR_HISTOGRAM(_L) mask and shift definitions
  525.  * There are two 64 bit histogram registers, so the following macros take
  526.  * into account dealing with an array of 4 32 bit values indexed by _x
  527.  */
  528. #define RHIST_BUCKET_SHFT(_x) (32 * ((_x) & 0x1))
  529. #define RHIST_BUCKET_MASK(_x) (UINT64_CAST 0xffffffff << RHIST_BUCKET_SHFT((_x) & 0x1))
  530. #define RHIST_GET_BUCKET(_x, _reg)
  531. ((RHIST_BUCKET_MASK(_x) & ((_reg)[(_x) >> 1])) >> RHIST_BUCKET_SHFT(_x))
  532. /*
  533.  * RR_RESET_MASK(_L) mask and shift definitions
  534.  */
  535. #define RRM_RESETOK(_L) (UINT64_CAST 1 << ((_L) - 1))
  536. #define RRM_RESETOK_ALL ALL_PORTS
  537. /*
  538.  * RR_META_TABLE(_x) and RR_LOCAL_TABLE(_x) mask and shift definitions
  539.  */
  540. #define RTABLE_SHFT(_L) (4 * ((_L) - 1))
  541. #define RTABLE_MASK(_L) (UINT64_CAST 0x7 << RTABLE_SHFT(_L))
  542. #define ROUTERINFO_STKSZ 4096
  543. #ifndef __ASSEMBLY__
  544. int router_reg_read(router_info_t *rip, int regno, router_reg_t *val);
  545. int router_reg_write(router_info_t *rip, int regno, router_reg_t val);
  546. int router_get_info(devfs_handle_t routerv, router_info_t *, int);
  547. int router_init(cnodeid_t cnode,int writeid, nodepda_router_info_t *npda_rip);
  548. int router_set_leds(router_info_t *rip);
  549. void router_print_state(router_info_t *rip, int level,
  550.    void (*pf)(int, char *, ...),int print_where);
  551. void capture_router_stats(router_info_t *rip);
  552. int  probe_routers(void);
  553. void  get_routername(unsigned char brd_type,char *rtrname);
  554. void  router_guardians_set(devfs_handle_t hwgraph_root);
  555. int  router_hist_reselect(router_info_t *, int64_t);
  556. #endif /* __ASSEMBLY__ */
  557. #endif /* _ASM_IA64_SN_ROUTER_H */