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

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_SN_KSYS_L1_H
  10. #define _ASM_SN_KSYS_L1_H
  11. #include <asm/sn/vector.h>
  12. #include <asm/sn/addrs.h>
  13. #include <asm/atomic.h>
  14. #include <asm/sn/sv.h>
  15. #define BRL1_QSIZE 128 /* power of 2 is more efficient */
  16. #define BRL1_BUFSZ 264 /* needs to be large enough
  17.  * to hold 2 flags, escaped
  18.  * CRC, type/subchannel byte,
  19.  * and escaped payload
  20.  */
  21. #define BRL1_IQS          32
  22. #define BRL1_OQS          4
  23. typedef struct sc_cq_s {
  24.     u_char              buf[BRL1_QSIZE];
  25.     int                 ipos, opos, tent_next;
  26. } sc_cq_t;
  27. /* An l1sc_t struct can be associated with the local (C-brick) L1 or an L1
  28.  * on an R-brick.  In the R-brick case, the l1sc_t records a vector path
  29.  * to the R-brick's junk bus UART.  In the C-brick case, we just use the
  30.  * following flag to denote the local uart.
  31.  *
  32.  * This value can't be confused with a network vector because the least-
  33.  * significant nibble of a network vector cannot be greater than 8.
  34.  */
  35. #define BRL1_LOCALHUB_UART ((net_vec_t)0xf)
  36. /* L1<->Bedrock reserved subchannels */
  37. /* console channels */
  38. #define SC_CONS_CPU0    0x00
  39. #define SC_CONS_CPU1    0x01
  40. #define SC_CONS_CPU2    0x02
  41. #define SC_CONS_CPU3    0x03
  42. #define L1_ELSCUART_SUBCH(p) (p)
  43. #define L1_ELSCUART_CPU(ch) (ch)
  44. #define SC_CONS_SYSTEM  CPUS_PER_NODE
  45. /* mapping subchannels to queues */
  46. #define MAP_IQ(s)       (s)
  47. #define MAP_OQ(s)       (s)
  48.      
  49. #define BRL1_NUM_SUBCHANS 32
  50. #define BRL1_CMD_SUBCH   16
  51. #define BRL1_EVENT_SUBCH  (BRL1_NUM_SUBCHANS - 1)
  52. #define BRL1_SUBCH_RSVD   0
  53. #define BRL1_SUBCH_FREE   (-1)
  54. /* constants for L1 hwgraph vertex info */
  55. #define CBRICK_L1 (__psint_t)1
  56. #define IOBRICK_L1 (__psint_t)2
  57. #define RBRICK_L1 (__psint_t)3
  58. struct l1sc_s;     
  59. /* Saved off interrupt frame */
  60. typedef struct brl1_intr_frame {
  61. int bf_irq; /* irq received */
  62. void *bf_dev_id; /* device information */
  63. struct pt_regs *bf_regs; /* register frame */
  64. } brl1_intr_frame_t;
  65. typedef void (*brl1_notif_t)(int, void *, struct pt_regs *, struct l1sc_s *, int);
  66. typedef int  (*brl1_uartf_t)(struct l1sc_s *);
  67. /* structure for controlling a subchannel */
  68. typedef struct brl1_sch_s {
  69.     int use; /* if this subchannel is free,
  70.  * use == BRL1_SUBCH_FREE */
  71.     uint target; /* type, rack and slot of component to
  72.  * which this subchannel is directed */
  73.     atomic_t packet_arrived; /* true if packet arrived on
  74.  * this subchannel */
  75.     sc_cq_t * iqp; /* input queue for this subchannel */
  76.     sv_t arrive_sv; /* used to wait for a packet */
  77.     spinlock_t data_lock; /* synchronize access to input queues and
  78.  * other fields of the brl1_sch_s struct */
  79.     brl1_notif_t tx_notify;     /* notify higher layer that transmission may 
  80.  * continue */
  81.     brl1_notif_t rx_notify; /* notify higher layer that a packet has been
  82.  * received */
  83.     brl1_intr_frame_t irq_frame; /* saved off irq information */
  84. } brl1_sch_t;
  85. /* br<->l1 protocol states */
  86. #define BRL1_IDLE 0
  87. #define BRL1_FLAG 1
  88. #define BRL1_HDR 2
  89. #define BRL1_BODY 3
  90. #define BRL1_ESC 4
  91. #define BRL1_RESET 7
  92. #ifndef __ASSEMBLY__
  93. /*
  94.  * l1sc_t structure-- tracks protocol state, open subchannels, etc.
  95.  */
  96. typedef struct l1sc_s {
  97.     nasid_t  nasid; /* nasid with which this instance
  98.  * of the structure is associated */
  99.     moduleid_t  modid;         /* module id of this brick */
  100.     u_char  verbose; /* non-zero if elscuart routines should
  101.  * prefix output */
  102.     net_vec_t    uart; /* vector path to UART, or BRL1_LOCALUART */
  103.     int  sent; /* number of characters sent */
  104.     int  send_len; /* number of characters in send buf */
  105.     brl1_uartf_t putc_f; /* pointer to UART putc function */
  106.     brl1_uartf_t getc_f; /* pointer to UART getc function */
  107.     spinlock_t   send_lock;     /* arbitrates send synchronization */
  108.     spinlock_t   recv_lock;     /* arbitrates uart receive access */
  109.     spinlock_t  subch_lock; /* arbitrates subchannel allocation */
  110.     cpuid_t  intr_cpu; /* cpu that receives L1 interrupts */
  111.     u_char  send_in_use; /* non-zero if send buffer contains an
  112.  * unsent or partially-sent  packet */
  113.     u_char  fifo_space; /* current depth of UART send FIFO */
  114.     u_char  brl1_state; /* current state of the receive side */
  115.     u_char  brl1_last_hdr; /* last header byte received */
  116.     char  send[BRL1_BUFSZ]; /* send buffer */
  117.     int  sol; /* "start of line" (see elscuart routines) */
  118.     int  cons_listen; /* non-zero if the elscuart interface should
  119.  * also check the system console subchannel */
  120.     brl1_sch_t  subch[BRL1_NUM_SUBCHANS];
  121.      /* subchannels provided by link */
  122.     sc_cq_t  garbage_q; /* a place to put unsolicited packets */
  123.     sc_cq_t  oq[BRL1_OQS]; /* elscuart output queues */
  124. } l1sc_t;
  125. /* error codes */
  126. #define BRL1_VALID   0
  127. #define BRL1_FULL_Q (-1)
  128. #define BRL1_CRC (-2)
  129. #define BRL1_PROTOCOL (-3)
  130. #define BRL1_NO_MESSAGE (-4)
  131. #define BRL1_LINK (-5)
  132. #define BRL1_BUSY (-6)
  133. #define SC_SUCCESS      BRL1_VALID
  134. #define SC_NMSG         BRL1_NO_MESSAGE
  135. #define SC_BUSY         BRL1_BUSY
  136. #define SC_NOPEN        (-7)
  137. #define SC_BADSUBCH     (-8)
  138. #define SC_TIMEDOUT (-9)
  139. #define SC_NSUBCH (-10)
  140. /* L1 Target Addresses */
  141. /*
  142.  * L1 commands and responses use source/target addresses that are
  143.  * 32 bits long.  These are broken up into multiple bitfields that
  144.  * specify the type of the target controller (could actually be L2
  145.  * L3, not just L1), the rack and bay of the target, and the task
  146.  * id (L1 functionality is divided into several independent "tasks"
  147.  * that can each receive command requests and transmit responses)
  148.  */
  149. #define L1_ADDR_TYPE_SHFT 28
  150. #define L1_ADDR_TYPE_MASK 0xF0000000
  151. #define L1_ADDR_TYPE_L1 0x00 /* L1 system controller */
  152. #define L1_ADDR_TYPE_L2 0x01 /* L2 system controller */
  153. #define L1_ADDR_TYPE_L3 0x02 /* L3 system controller */
  154. #define L1_ADDR_TYPE_CBRICK 0x03 /* attached C brick */
  155. #define L1_ADDR_TYPE_IOBRICK 0x04 /* attached I/O brick */
  156. #define L1_ADDR_RACK_SHFT 18
  157. #define L1_ADDR_RACK_MASK 0x0FFC0000
  158. #define L1_ADDR_RACK_LOCAL 0x3ff /* local brick's rack */
  159. #define L1_ADDR_BAY_SHFT 12
  160. #define L1_ADDR_BAY_MASK 0x0003F000
  161. #define L1_ADDR_BAY_LOCAL 0x3f /* local brick's bay */
  162. #define L1_ADDR_TASK_SHFT 0
  163. #define L1_ADDR_TASK_MASK 0x0000001F
  164. #define L1_ADDR_TASK_INVALID 0x00 /* invalid task  */
  165. #define L1_ADDR_TASK_IROUTER 0x01 /* iRouter */
  166. #define L1_ADDR_TASK_SYS_MGMT 0x02 /* system management port */
  167. #define L1_ADDR_TASK_CMD 0x03 /* command interpreter */
  168. #define L1_ADDR_TASK_ENV 0x04 /* environmental monitor */
  169. #define L1_ADDR_TASK_BEDROCK 0x05 /* bedrock */
  170. #define L1_ADDR_TASK_GENERAL 0x06 /* general requests */
  171. #define L1_ADDR_LOCAL
  172.     (L1_ADDR_TYPE_L1 << L1_ADDR_TYPE_SHFT) |
  173.     (L1_ADDR_RACK_LOCAL << L1_ADDR_RACK_SHFT) |
  174.     (L1_ADDR_BAY_LOCAL << L1_ADDR_BAY_SHFT)
  175. #define L1_ADDR_LOCALIO
  176.     (L1_ADDR_TYPE_IOBRICK << L1_ADDR_TYPE_SHFT) |
  177.     (L1_ADDR_RACK_LOCAL << L1_ADDR_RACK_SHFT) |
  178.     (L1_ADDR_BAY_LOCAL << L1_ADDR_BAY_SHFT)
  179. #define L1_ADDR_LOCAL_SHFT L1_ADDR_BAY_SHFT
  180. /* response argument types */
  181. #define L1_ARG_INT 0x00 /* 4-byte integer (big-endian) */
  182. #define L1_ARG_ASCII 0x01 /* null-terminated ASCII string */
  183. #define L1_ARG_UNKNOWN 0x80 /* unknown data type.  The low
  184.  * 7 bits will contain the data
  185.  * length. */
  186. /* response codes */
  187. #define L1_RESP_OK     0 /* no problems encountered      */
  188. #define L1_RESP_IROUTER (-  1) /* iRouter error         */
  189. #define L1_RESP_ARGC (-100) /* arg count mismatch         */
  190. #define L1_RESP_REQC (-101) /* bad request code         */
  191. #define L1_RESP_NAVAIL (-104) /* requested data not available */
  192. #define L1_RESP_ARGVAL (-105)  /* arg value out of range       */
  193. #define L1_RESP_INVAL   (-107)  /* requested data invalid       */
  194. /* L1 general requests */
  195. /* request codes */
  196. #define L1_REQ_RDBG 0x0001 /* read debug switches */
  197. #define L1_REQ_RRACK 0x0002 /* read brick rack & bay */
  198. #define L1_REQ_RRBT 0x0003  /* read brick rack, bay & type */
  199. #define L1_REQ_SER_NUM 0x0004  /* read brick serial number */
  200. #define L1_REQ_FW_REV 0x0005  /* read L1 firmware revision */
  201. #define L1_REQ_EEPROM 0x0006  /* read EEPROM info */
  202. #define L1_REQ_EEPROM_FMT 0x0007  /* get EEPROM data format & size */
  203. #define L1_REQ_SYS_SERIAL 0x0008 /* read system serial number */
  204. #define L1_REQ_PARTITION_GET 0x0009 /* read partition id */
  205. #define L1_REQ_PORTSPEED 0x000a /* get ioport speed */
  206. #define L1_REQ_CONS_SUBCH 0x1002  /* select this node's console 
  207.    subchannel */
  208. #define L1_REQ_CONS_NODE 0x1003  /* volunteer to be the master 
  209.    (console-hosting) node */
  210. #define L1_REQ_DISP1 0x1004  /* write line 1 of L1 display */
  211. #define L1_REQ_DISP2 0x1005  /* write line 2 of L1 display */
  212. #define L1_REQ_PARTITION_SET 0x1006 /* set partition id */
  213. #define L1_REQ_EVENT_SUBCH 0x1007 /* set the subchannel for system
  214.    controller event transmission */
  215. #define L1_REQ_RESET 0x2000 /* request a full system reset */
  216. #define L1_REQ_PCI_UP 0x2001  /* power up pci slot or bus */
  217. #define L1_REQ_PCI_DOWN 0x2002  /* power down pci slot or bus */
  218. #define L1_REQ_PCI_RESET 0x2003  /* reset pci bus or slot */
  219. /* L1 command interpreter requests */
  220. /* request codes */
  221. #define L1_REQ_EXEC_CMD 0x0000 /* interpret and execute an ASCII
  222.    command string */
  223. /* brick type response codes */
  224. #define L1_BRICKTYPE_C 0x43
  225. #define L1_BRICKTYPE_I 0x49
  226. #define L1_BRICKTYPE_P 0x50
  227. #define L1_BRICKTYPE_R  0x52
  228. #define L1_BRICKTYPE_X  0x58
  229. /* EEPROM codes (for the "read EEPROM" request) */
  230. /* c brick */
  231. #define L1_EEP_NODE 0x00 /* node board */
  232. #define L1_EEP_PIMM0 0x01
  233. #define L1_EEP_PIMM(x) (L1_EEP_PIMM0+(x))
  234. #define L1_EEP_DIMM0 0x03
  235. #define L1_EEP_DIMM(x) (L1_EEP_DIMM0+(x))
  236. /* other brick types */
  237. #define L1_EEP_POWER 0x00 /* power board */
  238. #define L1_EEP_LOGIC 0x01 /* logic board */
  239. /* info area types */
  240. #define L1_EEP_CHASSIS 1 /* chassis info area */
  241. #define L1_EEP_BOARD 2 /* board info area */
  242. #define L1_EEP_IUSE 3 /* internal use area */
  243. #define L1_EEP_SPD 4 /* serial presence detect record */
  244. typedef uint32_t l1addr_t;
  245. #define L1_BUILD_ADDR(addr,at,r,s,t)
  246.     (*(l1addr_t *)(addr) = ((l1addr_t)(at) << L1_ADDR_TYPE_SHFT) |
  247.      ((l1addr_t)(r)  << L1_ADDR_RACK_SHFT) |
  248.      ((l1addr_t)(s)  << L1_ADDR_BAY_SHFT) |
  249.      ((l1addr_t)(t)  << L1_ADDR_TASK_SHFT))
  250. #define L1_ADDRESS_TO_TASK(addr,trb,tsk)
  251.     (*(l1addr_t *)(addr) = (l1addr_t)(trb) |
  252.           ((l1addr_t)(tsk) << L1_ADDR_TASK_SHFT))
  253. #define L1_DISPLAY_LINE_LENGTH 12 /* L1 display characters/line */
  254. #ifdef L1_DISP_2LINES
  255. #define L1_DISPLAY_LINES 2 /* number of L1 display lines */
  256. #else
  257. #define L1_DISPLAY_LINES 1 /* number of L1 display lines available
  258.  * to system software */
  259. #endif
  260. #define SC_EVENT_CLASS_MASK ((unsigned short)0xff00)
  261. #define bzero(d, n) memset((d), 0, (n))
  262. /* public interfaces to L1 system controller */
  263. int sc_open( l1sc_t *sc, uint target );
  264. int sc_close( l1sc_t *sc, int ch );
  265. int sc_construct_msg( l1sc_t *sc, int ch, 
  266.   char *msg, int msg_len,
  267.   uint addr_task, short req_code,
  268.   int req_nargs, ... );
  269. int sc_interpret_resp( char *resp, int resp_nargs, ... );
  270. int sc_send( l1sc_t *sc, int ch, char *msg, int len, int wait );
  271. int sc_recv( l1sc_t *sc, int ch, char *msg, int *len, uint64_t block );
  272. int sc_command( l1sc_t *sc, int ch, char *cmd, char *resp, int *len );
  273. int sc_command_kern( l1sc_t *sc, int ch, char *cmd, char *resp, int *len );
  274. int sc_poll( l1sc_t *sc, int ch );
  275. void sc_init( l1sc_t *sc, nasid_t nasid, net_vec_t uart );
  276. void sc_intr_enable( l1sc_t *sc );
  277. int elsc_rack_bay_get(l1sc_t *e, uint *rack, uint *bay);
  278. int elsc_rack_bay_type_get(l1sc_t *e, uint *rack, 
  279.        uint *bay, uint *brick_type);
  280. int elsc_cons_subch(l1sc_t *e, uint ch);
  281. int elsc_cons_node(l1sc_t *e);
  282. int elsc_display_line(l1sc_t *e, char *line, int lnum);
  283. extern l1sc_t *get_elsc( void );
  284. #define get_l1sc get_elsc
  285. #define get_master_l1sc get_l1sc
  286. int router_module_get( nasid_t nasid, net_vec_t path );
  287. int iobrick_rack_bay_type_get( l1sc_t *sc, uint *rack,
  288.    uint *bay, uint *brick_type );
  289. int iobrick_module_get( l1sc_t *sc );
  290. int iobrick_pci_slot_pwr( l1sc_t *sc, int bus, int slot, int up );
  291. int iobrick_pci_bus_pwr( l1sc_t *sc, int bus, int up );
  292. int iobrick_sc_version( l1sc_t *sc, char *result );
  293. #endif /* !__ASSEMBLY__ */
  294. #endif /* _ASM_SN_KSYS_L1_H */