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

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. /* In general, this file is organized in a hierarchy from lower-level
  10.  * to higher-level layers, as follows:
  11.  *
  12.  * UART routines
  13.  * Bedrock/L1 "PPP-like" protocol implementation
  14.  * System controller "message" interface (allows multiplexing
  15.  * of various kinds of requests and responses with
  16.  * console I/O)
  17.  * Console interface:
  18.  *   "l1_cons", the glue that allows the L1 to act
  19.  * as the system console for the stdio libraries
  20.  *
  21.  * Routines making use of the system controller "message"-style interface
  22.  * can be found in l1_command.c.
  23.  */
  24. #include <linux/types.h>
  25. #include <linux/config.h>
  26. #include <linux/slab.h>
  27. #include <linux/spinlock.h>
  28. #include <linux/delay.h>
  29. #include <asm/sn/sgi.h>
  30. #include <asm/sn/io.h>
  31. #include <asm/sn/iograph.h>
  32. #include <asm/sn/invent.h>
  33. #include <asm/sn/hcl.h>
  34. #include <asm/sn/hcl_util.h>
  35. #include <asm/sn/labelcl.h>
  36. #include <asm/sn/eeprom.h>
  37. #include <asm/sn/router.h>
  38. #include <asm/sn/module.h>
  39. #include <asm/sn/ksys/l1.h>
  40. #include <asm/sn/nodepda.h>
  41. #include <asm/sn/clksupport.h>
  42. #include <asm/sn/sn_sal.h>
  43. #include <asm/sn/sn_cpuid.h>
  44. #include <asm/sn/uart16550.h>
  45. #include <asm/sn/simulator.h>
  46. #if defined(CONFIG_IA64_SGI_SN2)
  47. #define USE_SAL_CONSOLE_IO 1 /* DON'T un-def this for the simulator... */
  48. #endif
  49. /* Make all console writes atomic */
  50. #define SYNC_CONSOLE_WRITE 1
  51. /*********************************************************************
  52.  * Hardware-level (UART) driver routines.
  53.  */
  54. /* macros for reading/writing registers */
  55. #define LD(x) (*(volatile uint64_t *)(x))
  56. #define SD(x, v)         (LD(x) = (uint64_t) (v))
  57. /* location of uart receive/xmit data register */
  58. #if defined(CONFIG_IA64_SGI_SN1)
  59. #define L1_UART_BASE(n) ((ulong)REMOTE_HSPEC_ADDR((n), 0x00000080))
  60. #define LOCK_HUB REMOTE_HUB_ADDR
  61. #elif defined(CONFIG_IA64_SGI_SN2)
  62. #define L1_UART_BASE(n) ((ulong)REMOTE_HUB((n), SH_JUNK_BUS_UART0))
  63. #define LOCK_HUB REMOTE_HUB
  64. typedef u64 rtc_time_t;
  65. #endif
  66. #define ADDR_L1_REG(n, r) ( L1_UART_BASE(n) | ( (r) << 3 ) )
  67. #define READ_L1_UART_REG(n, r) ( LD(ADDR_L1_REG((n), (r))) )
  68. #define WRITE_L1_UART_REG(n, r, v) ( SD(ADDR_L1_REG((n), (r)), (v)) )
  69. /* upper layer interface calling methods */
  70. #define SERIAL_INTERRUPT_MODE 0
  71. #define SERIAL_POLLED_MODE 1
  72. /* UART-related #defines */
  73. #define UART_BAUD_RATE 57600
  74. #define UART_FIFO_DEPTH 16
  75. #define UART_DELAY_SPAN 10
  76. #define UART_PUTC_TIMEOUT 50000
  77. #define UART_INIT_TIMEOUT 100000
  78. /* error codes */
  79. #define UART_SUCCESS   0
  80. #define UART_TIMEOUT (-1)
  81. #define UART_LINK (-2)
  82. #define UART_NO_CHAR (-3)
  83. #define UART_VECTOR (-4)
  84. #define UART_DELAY(x) udelay(x)
  85. /* Some debug counters */
  86. #define L1C_INTERRUPTS 0
  87. #define L1C_OUR_R_INTERRUPTS 1
  88. #define L1C_OUR_X_INTERRUPTS 2
  89. #define L1C_SEND_CALLUPS 3
  90. #define L1C_RECEIVE_CALLUPS 4
  91. #define L1C_SET_BAUD 5
  92. #define L1C_ALREADY_LOCKED L1C_SET_BAUD
  93. #define L1C_R_IRQ 6
  94. #define L1C_R_IRQ_RET 7
  95. #define L1C_LOCK_TIMEOUTS 8
  96. #define L1C_LOCK_COUNTER 9
  97. #define L1C_UNLOCK_COUNTER 10
  98. #define L1C_REC_STALLS 11
  99. #define L1C_CONNECT_CALLS 12
  100. #define L1C_SIZE L1C_CONNECT_CALLS /* Set to the last one */
  101. uint64_t L1_collectibles[L1C_SIZE + 1];
  102. /*
  103.  * Some macros for handling Endian-ness
  104.  */
  105. #define COPY_INT_TO_BUFFER(_b, _i, _n)
  106. {
  107. _b[_i++] = (_n >> 24) & 0xff;
  108. _b[_i++] = (_n >> 16) & 0xff;
  109. _b[_i++] = (_n >>  8) & 0xff;
  110. _b[_i++] =  _n        & 0xff;
  111. }
  112. #define COPY_BUFFER_TO_INT(_b, _i, _n)
  113. {
  114. _n  = (_b[_i++] << 24) & 0xff;
  115. _n |= (_b[_i++] << 16) & 0xff;
  116. _n |= (_b[_i++] <<  8) & 0xff;
  117. _n |=  _b[_i++]        & 0xff;
  118. }
  119. #define COPY_BUFFER_TO_BUFFER(_b, _i, _bn)
  120. {
  121.     char *_xyz = (char *)_bn;
  122.     _xyz[3] = _b[_i++];
  123.     _xyz[2] = _b[_i++];
  124.     _xyz[1] = _b[_i++];
  125.     _xyz[0] = _b[_i++];
  126. }
  127. void snia_kmem_free(void *where, int size);
  128. #define ALREADY_LOCKED 1
  129. #define NOT_LOCKED 0
  130. static int early_l1_serial_out(nasid_t, char *, int, int /* defines above*/ );
  131. #define BCOPY(x,y,z) memcpy(y,x,z)
  132. uint8_t L1_interrupts_connected; /* Non-zero when we are in interrupt mode */
  133. /*
  134.  * Console locking defines and functions.
  135.  *
  136.  */
  137. uint8_t L1_cons_is_inited = 0; /* non-zero when console is init'd */
  138. nasid_t Master_console_nasid = (nasid_t)-1;
  139. extern nasid_t console_nasid;
  140. #if defined(CONFIG_IA64_SGI_SN1)
  141. u64 ia64_sn_get_console_nasid(void);
  142. #endif
  143. inline nasid_t
  144. get_master_nasid(void)
  145. {
  146. #if defined(CONFIG_IA64_SGI_SN1)
  147. nasid_t nasid = Master_console_nasid;
  148. if ( nasid == (nasid_t)-1 ) {
  149. nasid = (nasid_t)ia64_sn_get_console_nasid();
  150. if ( (nasid < 0) || (nasid >= MAX_NASIDS) ) {
  151. /* Out of bounds, use local */
  152. console_nasid = nasid = get_nasid();
  153. }
  154. else {
  155. /* Got a valid nasid, set the console_nasid */
  156. char xx[100];
  157. /* zzzzzz - force nasid to 0 for now */
  158. sprintf(xx, "Master console is set to nasid %d (%d)n", 0, (int)nasid);
  159. nasid = 0;
  160. /* end zzzzzz */
  161. xx[99] = (char)0;
  162. early_l1_serial_out(nasid, xx, strlen(xx), NOT_LOCKED);
  163. Master_console_nasid = console_nasid = nasid;
  164. }
  165. }
  166. return(nasid);
  167. #else
  168. return((nasid_t)0);
  169. #endif /* CONFIG_IA64_SGI_SN1 */
  170. }
  171. #if defined(CONFIG_IA64_SGI_SN1)
  172. #define HUB_LOCK 16
  173. #define PRIMARY_LOCK_TIMEOUT    10000000
  174. #define HUB_LOCK_REG(n)         LOCK_HUB(n, MD_PERF_CNT0)
  175. #define SET_BITS(reg, bits)     SD(reg, LD(reg) |  (bits))
  176. #define CLR_BITS(reg, bits)     SD(reg, LD(reg) & ~(bits))
  177. #define TST_BITS(reg, bits)     ((LD(reg) & (bits)) != 0)
  178. #define HUB_TEST_AND_SET(n) LD(LOCK_HUB(n,LB_SCRATCH_REG3_RZ))
  179. #define HUB_CLEAR(n) SD(LOCK_HUB(n,LB_SCRATCH_REG3),0)
  180. #define RTC_TIME_MAX ((rtc_time_t) ~0ULL)
  181. /*
  182.  * primary_lock
  183.  *
  184.  *   Allows CPU's 0-3  to mutually exclude the hub from one another by
  185.  *   obtaining a blocking lock.  Does nothing if only one CPU is active.
  186.  *
  187.  *   This lock should be held just long enough to set or clear a global
  188.  *   lock bit.  After a relatively short timeout period, this routine
  189.  *   figures something is wrong, and steals the lock. It does not set
  190.  *   any other CPU to "dead".
  191.  */
  192. inline void
  193. primary_lock(nasid_t nasid)
  194. {
  195. rtc_time_t          expire;
  196. expire = rtc_time() + PRIMARY_LOCK_TIMEOUT;
  197. while (HUB_TEST_AND_SET(nasid)) {
  198. if (rtc_time() > expire) {
  199. HUB_CLEAR(nasid);
  200. }
  201. }
  202. }
  203. /*
  204.  * primary_unlock (internal)
  205.  *
  206.  *   Counterpart to primary_lock
  207.  */
  208. inline void
  209. primary_unlock(nasid_t nasid)
  210. {
  211. HUB_CLEAR(nasid);
  212. }
  213. /*
  214.  * hub_unlock
  215.  *
  216.  *   Counterpart to hub_lock_timeout and hub_lock
  217.  */
  218. inline void
  219. hub_unlock(nasid_t nasid, int level)
  220. {
  221. uint64_t mask = 1ULL << level;
  222. primary_lock(nasid);
  223. CLR_BITS(HUB_LOCK_REG(nasid), mask);
  224. primary_unlock(nasid);
  225. }
  226. /*
  227.  * hub_lock_timeout
  228.  *
  229.  *   Uses primary_lock to implement multiple lock levels.
  230.  *
  231.  *   There are 20 lock levels from 0 to 19 (limited by the number of bits
  232.  *   in HUB_LOCK_REG).  To prevent deadlock, multiple locks should be
  233.  *   obtained in order of increasingly higher level, and released in the
  234.  *   reverse order.
  235.  *
  236.  *   A timeout value of 0 may be used for no timeout.
  237.  *
  238.  *   Returns 0 if successful, -1 if lock times out.
  239.  */
  240. inline int
  241. hub_lock_timeout(nasid_t nasid, int level, rtc_time_t timeout)
  242. {
  243. uint64_t mask = 1ULL << level;
  244. rtc_time_t expire = (timeout ?  rtc_time() + timeout : RTC_TIME_MAX);
  245. int done    = 0;
  246. while (! done) {
  247. while (TST_BITS(HUB_LOCK_REG(nasid), mask)) {
  248. if (rtc_time() > expire)
  249. return -1;
  250. }
  251. primary_lock(nasid);
  252. if (! TST_BITS(HUB_LOCK_REG(nasid), mask)) {
  253. SET_BITS(HUB_LOCK_REG(nasid), mask);
  254. done = 1;
  255. }
  256. primary_unlock(nasid);
  257. }
  258. return 0;
  259. }
  260. #define LOCK_TIMEOUT (0x1500000 * 1) /* 0x1500000 is ~30 sec */
  261. void
  262. lock_console(nasid_t nasid)
  263. {
  264. int ret;
  265. /* If we already have it locked, just return */
  266. L1_collectibles[L1C_LOCK_COUNTER]++;
  267. ret = hub_lock_timeout(nasid, HUB_LOCK, (rtc_time_t)LOCK_TIMEOUT);
  268. if ( ret != 0 ) {
  269. L1_collectibles[L1C_LOCK_TIMEOUTS]++;
  270. /* timeout */
  271. hub_unlock(nasid, HUB_LOCK);
  272. /* If the 2nd lock fails, just pile ahead.... */
  273. hub_lock_timeout(nasid, HUB_LOCK, (rtc_time_t)LOCK_TIMEOUT);
  274. L1_collectibles[L1C_LOCK_TIMEOUTS]++;
  275. }
  276. }
  277. inline void
  278. unlock_console(nasid_t nasid)
  279. {
  280. L1_collectibles[L1C_UNLOCK_COUNTER]++;
  281. hub_unlock(nasid, HUB_LOCK);
  282. }
  283. #else /* SN2 */
  284. inline void lock_console(nasid_t n) {}
  285. inline void unlock_console(nasid_t n) {}
  286. #endif /* CONFIG_IA64_SGI_SN1 */
  287. int 
  288. get_L1_baud(void)
  289. {
  290.     return UART_BAUD_RATE;
  291. }
  292. /* uart driver functions */
  293. static inline void
  294. uart_delay( rtc_time_t delay_span )
  295. {
  296.     UART_DELAY( delay_span );
  297. }
  298. #define UART_PUTC_READY(n)      (READ_L1_UART_REG((n), REG_LSR) & LSR_XHRE)
  299. static int
  300. uart_putc( l1sc_t *sc ) 
  301. {
  302.     WRITE_L1_UART_REG( sc->nasid, REG_DAT, sc->send[sc->sent] );
  303.     return UART_SUCCESS;
  304. }
  305. static int
  306. uart_getc( l1sc_t *sc )
  307. {
  308.     u_char lsr_reg = 0;
  309.     nasid_t nasid = sc->nasid;
  310.     if( (lsr_reg = READ_L1_UART_REG( nasid, REG_LSR )) & 
  311. (LSR_RCA | LSR_PARERR | LSR_FRMERR) ) 
  312.     {
  313. if( lsr_reg & LSR_RCA ) 
  314.     return( (u_char)READ_L1_UART_REG( nasid, REG_DAT ) );
  315. else if( lsr_reg & (LSR_PARERR | LSR_FRMERR) ) {
  316.     return UART_LINK;
  317. }
  318.     }
  319.     return UART_NO_CHAR;
  320. }
  321. #define PROM_SER_CLK_SPEED 12000000
  322. #define PROM_SER_DIVISOR(x) (PROM_SER_CLK_SPEED / ((x) * 16))
  323. static void
  324. uart_init( l1sc_t *sc, int baud )
  325. {
  326.     rtc_time_t expire;
  327.     int clkdiv;
  328.     nasid_t nasid;
  329.     clkdiv = PROM_SER_DIVISOR(baud);
  330.     expire = rtc_time() + UART_INIT_TIMEOUT;
  331.     nasid = sc->nasid;
  332.     
  333.     /* make sure the transmit FIFO is empty */
  334.     while( !(READ_L1_UART_REG( nasid, REG_LSR ) & LSR_XSRE) ) {
  335. uart_delay( UART_DELAY_SPAN );
  336. if( rtc_time() > expire ) {
  337.     break;
  338. }
  339.     }
  340.     if ( sc->uart == BRL1_LOCALHUB_UART )
  341. lock_console(nasid);
  342.     /* Setup for the proper baud rate */
  343.     WRITE_L1_UART_REG( nasid, REG_LCR, LCR_DLAB );
  344. uart_delay( UART_DELAY_SPAN );
  345.     WRITE_L1_UART_REG( nasid, REG_DLH, (clkdiv >> 8) & 0xff );
  346. uart_delay( UART_DELAY_SPAN );
  347.     WRITE_L1_UART_REG( nasid, REG_DLL, clkdiv & 0xff );
  348. uart_delay( UART_DELAY_SPAN );
  349.     /* set operating parameters and set DLAB to 0 */
  350.     /* 8bit, one stop, clear request to send, auto flow control */
  351.     WRITE_L1_UART_REG( nasid, REG_LCR, LCR_BITS8 | LCR_STOP1 );
  352. uart_delay( UART_DELAY_SPAN );
  353.     WRITE_L1_UART_REG( nasid, REG_MCR, MCR_RTS | MCR_AFE );
  354. uart_delay( UART_DELAY_SPAN );
  355.     /* disable interrupts */
  356.     WRITE_L1_UART_REG( nasid, REG_ICR, 0x0 );
  357. uart_delay( UART_DELAY_SPAN );
  358.     /* enable FIFO mode and reset both FIFOs, trigger on 1 */
  359.     WRITE_L1_UART_REG( nasid, REG_FCR, FCR_FIFOEN );
  360. uart_delay( UART_DELAY_SPAN );
  361.     WRITE_L1_UART_REG( nasid, REG_FCR, FCR_FIFOEN | FCR_RxFIFO | FCR_TxFIFO | RxLVL0);
  362.     if ( sc->uart == BRL1_LOCALHUB_UART )
  363. unlock_console(nasid);
  364. }
  365. /* This requires the console lock */
  366. #if defined(CONFIG_IA64_SGI_SN1)
  367. static void
  368. uart_intr_enable( l1sc_t *sc, u_char mask )
  369. {
  370.     u_char lcr_reg, icr_reg;
  371.     nasid_t nasid = sc->nasid;
  372.     if ( sc->uart == BRL1_LOCALHUB_UART )
  373. lock_console(nasid);
  374.     /* make sure that the DLAB bit in the LCR register is 0
  375.      */
  376.     lcr_reg = READ_L1_UART_REG( nasid, REG_LCR );
  377.     lcr_reg &= ~(LCR_DLAB);
  378.     WRITE_L1_UART_REG( nasid, REG_LCR, lcr_reg );
  379.     /* enable indicated interrupts
  380.      */
  381.     icr_reg = READ_L1_UART_REG( nasid, REG_ICR );
  382.     icr_reg |= mask;
  383.     WRITE_L1_UART_REG( nasid, REG_ICR, icr_reg /*(ICR_RIEN | ICR_TIEN)*/ );
  384.     if ( sc->uart == BRL1_LOCALHUB_UART )
  385. unlock_console(nasid);
  386. }
  387. /* This requires the console lock */
  388. static void
  389. uart_intr_disable( l1sc_t *sc, u_char mask )
  390. {
  391.     u_char lcr_reg, icr_reg;
  392.     nasid_t nasid = sc->nasid;
  393.     if ( sc->uart == BRL1_LOCALHUB_UART )
  394. lock_console(nasid);
  395.     /* make sure that the DLAB bit in the LCR register is 0
  396.      */
  397.     lcr_reg = READ_L1_UART_REG( nasid, REG_LCR );
  398.     lcr_reg &= ~(LCR_DLAB);
  399.     WRITE_L1_UART_REG( nasid, REG_LCR, lcr_reg );
  400.     /* enable indicated interrupts
  401.      */
  402.     icr_reg = READ_L1_UART_REG( nasid, REG_ICR );
  403.     icr_reg &= mask;
  404.     WRITE_L1_UART_REG( nasid, REG_ICR, icr_reg /*(ICR_RIEN | ICR_TIEN)*/ );
  405.     if ( sc->uart == BRL1_LOCALHUB_UART )
  406. unlock_console(nasid);
  407. }
  408. #endif /* CONFIG_IA64_SGI_SN1 */
  409. #define uart_enable_xmit_intr(sc) 
  410. uart_intr_enable((sc), ICR_TIEN)
  411. #define uart_disable_xmit_intr(sc) 
  412.         uart_intr_disable((sc), ~(ICR_TIEN))
  413. #define uart_enable_recv_intr(sc) 
  414.         uart_intr_enable((sc), ICR_RIEN)
  415. #define uart_disable_recv_intr(sc) 
  416.         uart_intr_disable((sc), ~(ICR_RIEN))
  417. /*********************************************************************
  418.  * Routines for accessing a remote (router) UART
  419.  */
  420. #define READ_RTR_L1_UART_REG(p, n, r, v)
  421.     {
  422. if( vector_read_node( (p), (n), 0,
  423.       RR_JBUS1(r), (v) ) ) {
  424.     return UART_VECTOR;
  425. }
  426.     }
  427. #define WRITE_RTR_L1_UART_REG(p, n, r, v)
  428.     {
  429. if( vector_write_node( (p), (n), 0,
  430.        RR_JBUS1(r), (v) ) ) {
  431.     return UART_VECTOR;
  432. }
  433.     }
  434. #define RTR_UART_PUTC_TIMEOUT UART_PUTC_TIMEOUT*10
  435. #define RTR_UART_DELAY_SPAN UART_DELAY_SPAN
  436. #define RTR_UART_INIT_TIMEOUT UART_INIT_TIMEOUT*10
  437. static int
  438. rtr_uart_putc( l1sc_t *sc )
  439. {
  440.     uint64_t regval, c;
  441.     nasid_t nasid = sc->nasid;
  442.     net_vec_t path = sc->uart;
  443.     rtc_time_t expire = rtc_time() + RTR_UART_PUTC_TIMEOUT;
  444.     c = (sc->send[sc->sent] & 0xffULL);
  445.     
  446.     while( 1 ) 
  447.     {
  448.         /* Check for "tx hold reg empty" bit. */
  449. READ_RTR_L1_UART_REG( path, nasid, REG_LSR, &regval );
  450. if( regval & LSR_XHRE )
  451. {
  452.     WRITE_RTR_L1_UART_REG( path, nasid, REG_DAT, c );
  453.     return UART_SUCCESS;
  454. }
  455. if( rtc_time() >= expire ) 
  456. {
  457.     return UART_TIMEOUT;
  458. }
  459. uart_delay( RTR_UART_DELAY_SPAN );
  460.     }
  461. }
  462. static int
  463. rtr_uart_getc( l1sc_t *sc )
  464. {
  465.     uint64_t regval;
  466.     nasid_t nasid = sc->nasid;
  467.     net_vec_t path = sc->uart;
  468.     READ_RTR_L1_UART_REG( path, nasid, REG_LSR, &regval );
  469.     if( regval & (LSR_RCA | LSR_PARERR | LSR_FRMERR) )
  470.     {
  471. if( regval & LSR_RCA )
  472. {
  473.     READ_RTR_L1_UART_REG( path, nasid, REG_DAT, &regval );
  474.     return( (int)regval );
  475. }
  476. else
  477. {
  478.     return UART_LINK;
  479. }
  480.     }
  481.     return UART_NO_CHAR;
  482. }
  483. static int
  484. rtr_uart_init( l1sc_t *sc, int baud )
  485. {
  486.     rtc_time_t expire;
  487.     int clkdiv;
  488.     nasid_t nasid;
  489.     net_vec_t path;
  490.     uint64_t regval;
  491.     clkdiv = PROM_SER_DIVISOR(baud);
  492.     expire = rtc_time() + RTR_UART_INIT_TIMEOUT;
  493.     nasid = sc->nasid;
  494.     path = sc->uart;
  495.     /* make sure the transmit FIFO is empty */
  496.     while(1) {
  497. READ_RTR_L1_UART_REG( path, nasid, REG_LSR, &regval );
  498. if( regval & LSR_XSRE ) {
  499.     break;
  500. }
  501. if( rtc_time() > expire ) {
  502.     break;
  503. }
  504. uart_delay( RTR_UART_DELAY_SPAN );
  505.     }
  506.     WRITE_RTR_L1_UART_REG( path, nasid, REG_LCR, LCR_DLAB  );
  507. uart_delay( UART_DELAY_SPAN );
  508.     WRITE_RTR_L1_UART_REG( path, nasid, REG_DLH, (clkdiv >> 8) & 0xff  );
  509. uart_delay( UART_DELAY_SPAN );
  510.     WRITE_RTR_L1_UART_REG( path, nasid, REG_DLL, clkdiv & 0xff  );
  511. uart_delay( UART_DELAY_SPAN );
  512.     /* set operating parameters and set DLAB to 0 */
  513.     WRITE_RTR_L1_UART_REG( path, nasid, REG_LCR, LCR_BITS8 | LCR_STOP1  );
  514. uart_delay( UART_DELAY_SPAN );
  515.     WRITE_RTR_L1_UART_REG( path, nasid, REG_MCR, MCR_RTS | MCR_AFE  );
  516. uart_delay( UART_DELAY_SPAN );
  517.     /* disable interrupts */
  518.     WRITE_RTR_L1_UART_REG( path, nasid, REG_ICR, 0x0  );
  519. uart_delay( UART_DELAY_SPAN );
  520.     /* enable FIFO mode and reset both FIFOs */
  521.     WRITE_RTR_L1_UART_REG( path, nasid, REG_FCR, FCR_FIFOEN  );
  522. uart_delay( UART_DELAY_SPAN );
  523.     WRITE_RTR_L1_UART_REG( path, nasid, REG_FCR,
  524. FCR_FIFOEN | FCR_RxFIFO | FCR_TxFIFO );
  525.     return 0;
  526. }
  527. /*********************************************************************
  528.  * locking macros 
  529.  */
  530. #define L1SC_SEND_LOCK(l,p)   { if ((l)->uart == BRL1_LOCALHUB_UART) spin_lock_irqsave(&((l)->send_lock),p); }
  531. #define L1SC_SEND_UNLOCK(l,p) { if ((l)->uart == BRL1_LOCALHUB_UART) spin_unlock_irqrestore(&((l)->send_lock), p); }
  532. #define L1SC_RECV_LOCK(l,p)   { if ((l)->uart == BRL1_LOCALHUB_UART) spin_lock_irqsave(&((l)->recv_lock), p); } 
  533. #define L1SC_RECV_UNLOCK(l,p) { if ((l)->uart == BRL1_LOCALHUB_UART) spin_unlock_irqrestore(&((l)->recv_lock), p); }
  534. /*********************************************************************
  535.  * subchannel manipulation 
  536.  *
  537.  * The SUBCH_[UN]LOCK macros are used to arbitrate subchannel
  538.  * allocation.  SUBCH_DATA_[UN]LOCK control access to data structures
  539.  * associated with particular subchannels (e.g., receive queues).
  540.  *
  541.  */
  542. #define SUBCH_LOCK(sc, p) spin_lock_irqsave( &((sc)->subch_lock), p )
  543. #define SUBCH_UNLOCK(sc, p) spin_unlock_irqrestore( &((sc)->subch_lock), p )
  544. #define SUBCH_DATA_LOCK(sbch, p)  spin_lock_irqsave( &((sbch)->data_lock), p )
  545. #define SUBCH_DATA_UNLOCK(sbch, p) spin_unlock_irqrestore( &((sbch)->data_lock), p )
  546. /*
  547.  * set a function to be called for subchannel ch in the event of
  548.  * a transmission low-water interrupt from the uart
  549.  */
  550. void
  551. subch_set_tx_notify( l1sc_t *sc, int ch, brl1_notif_t func )
  552. {
  553.     unsigned long pl = 0;
  554.     L1SC_SEND_LOCK( sc, pl );
  555. #if !defined(SYNC_CONSOLE_WRITE)
  556.     if ( func && !sc->send_in_use )
  557. uart_enable_xmit_intr( sc );
  558. #endif
  559.     sc->subch[ch].tx_notify = func;
  560.     L1SC_SEND_UNLOCK(sc, pl );
  561. }
  562. /*
  563.  * set a function to be called for subchannel ch when data is received
  564.  */
  565. void
  566. subch_set_rx_notify( l1sc_t *sc, int ch, brl1_notif_t func )
  567. {
  568.     unsigned long pl = 0;
  569.     brl1_sch_t *subch = &(sc->subch[ch]);
  570.     SUBCH_DATA_LOCK( subch, pl );
  571.     sc->subch[ch].rx_notify = func;
  572.     SUBCH_DATA_UNLOCK( subch, pl );
  573. }
  574. /*********************************************************************
  575.  * Queue manipulation macros
  576.  *
  577.  *
  578.  */
  579. #define NEXT(p)         (((p) + 1) & (BRL1_QSIZE-1)) /* assume power of 2 */
  580. #define cq_init(q)      bzero((q), sizeof (*(q)))
  581. #define cq_empty(q)     ((q)->ipos == (q)->opos)
  582. #define cq_full(q)      (NEXT((q)->ipos) == (q)->opos)
  583. #define cq_used(q)      ((q)->opos <= (q)->ipos ?                       
  584.                          (q)->ipos - (q)->opos :                        
  585.                          BRL1_QSIZE + (q)->ipos - (q)->opos)
  586. #define cq_room(q)      ((q)->opos <= (q)->ipos ?                       
  587.                          BRL1_QSIZE - 1 + (q)->opos - (q)->ipos :       
  588.                          (q)->opos - (q)->ipos - 1)
  589. #define cq_add(q, c)    ((q)->buf[(q)->ipos] = (u_char) (c),            
  590.                          (q)->ipos = NEXT((q)->ipos))
  591. #define cq_rem(q, c)    ((c) = (q)->buf[(q)->opos],                     
  592.                          (q)->opos = NEXT((q)->opos))
  593. #define cq_discard(q) ((q)->opos = NEXT((q)->opos))
  594. #define cq_tent_full(q) (NEXT((q)->tent_next) == (q)->opos)
  595. #define cq_tent_len(q) ((q)->ipos <= (q)->tent_next ?
  596.  (q)->tent_next - (q)->ipos :
  597.  BRL1_QSIZE + (q)->tent_next - (q)->ipos)
  598. #define cq_tent_add(q, c)
  599. ((q)->buf[(q)->tent_next] = (u_char) (c),
  600.  (q)->tent_next = NEXT((q)->tent_next))
  601. #define cq_commit_tent(q)
  602. ((q)->ipos = (q)->tent_next)
  603. #define cq_discard_tent(q)
  604. ((q)->tent_next = (q)->ipos)
  605. /*********************************************************************
  606.  * CRC-16 (for checking bedrock/L1 packets).
  607.  *
  608.  * These are based on RFC 1662 ("PPP in HDLC-like framing").
  609.  */
  610. static unsigned short fcstab[256] = {
  611.       0x0000, 0x1189, 0x2312, 0x329b, 0x4624, 0x57ad, 0x6536, 0x74bf,
  612.       0x8c48, 0x9dc1, 0xaf5a, 0xbed3, 0xca6c, 0xdbe5, 0xe97e, 0xf8f7,
  613.       0x1081, 0x0108, 0x3393, 0x221a, 0x56a5, 0x472c, 0x75b7, 0x643e,
  614.       0x9cc9, 0x8d40, 0xbfdb, 0xae52, 0xdaed, 0xcb64, 0xf9ff, 0xe876,
  615.       0x2102, 0x308b, 0x0210, 0x1399, 0x6726, 0x76af, 0x4434, 0x55bd,
  616.       0xad4a, 0xbcc3, 0x8e58, 0x9fd1, 0xeb6e, 0xfae7, 0xc87c, 0xd9f5,
  617.       0x3183, 0x200a, 0x1291, 0x0318, 0x77a7, 0x662e, 0x54b5, 0x453c,
  618.       0xbdcb, 0xac42, 0x9ed9, 0x8f50, 0xfbef, 0xea66, 0xd8fd, 0xc974,
  619.       0x4204, 0x538d, 0x6116, 0x709f, 0x0420, 0x15a9, 0x2732, 0x36bb,
  620.       0xce4c, 0xdfc5, 0xed5e, 0xfcd7, 0x8868, 0x99e1, 0xab7a, 0xbaf3,
  621.       0x5285, 0x430c, 0x7197, 0x601e, 0x14a1, 0x0528, 0x37b3, 0x263a,
  622.       0xdecd, 0xcf44, 0xfddf, 0xec56, 0x98e9, 0x8960, 0xbbfb, 0xaa72,
  623.       0x6306, 0x728f, 0x4014, 0x519d, 0x2522, 0x34ab, 0x0630, 0x17b9,
  624.       0xef4e, 0xfec7, 0xcc5c, 0xddd5, 0xa96a, 0xb8e3, 0x8a78, 0x9bf1,
  625.       0x7387, 0x620e, 0x5095, 0x411c, 0x35a3, 0x242a, 0x16b1, 0x0738,
  626.       0xffcf, 0xee46, 0xdcdd, 0xcd54, 0xb9eb, 0xa862, 0x9af9, 0x8b70,
  627.       0x8408, 0x9581, 0xa71a, 0xb693, 0xc22c, 0xd3a5, 0xe13e, 0xf0b7,
  628.       0x0840, 0x19c9, 0x2b52, 0x3adb, 0x4e64, 0x5fed, 0x6d76, 0x7cff,
  629.       0x9489, 0x8500, 0xb79b, 0xa612, 0xd2ad, 0xc324, 0xf1bf, 0xe036,
  630.       0x18c1, 0x0948, 0x3bd3, 0x2a5a, 0x5ee5, 0x4f6c, 0x7df7, 0x6c7e,
  631.       0xa50a, 0xb483, 0x8618, 0x9791, 0xe32e, 0xf2a7, 0xc03c, 0xd1b5,
  632.       0x2942, 0x38cb, 0x0a50, 0x1bd9, 0x6f66, 0x7eef, 0x4c74, 0x5dfd,
  633.       0xb58b, 0xa402, 0x9699, 0x8710, 0xf3af, 0xe226, 0xd0bd, 0xc134,
  634.       0x39c3, 0x284a, 0x1ad1, 0x0b58, 0x7fe7, 0x6e6e, 0x5cf5, 0x4d7c,
  635.       0xc60c, 0xd785, 0xe51e, 0xf497, 0x8028, 0x91a1, 0xa33a, 0xb2b3,
  636.       0x4a44, 0x5bcd, 0x6956, 0x78df, 0x0c60, 0x1de9, 0x2f72, 0x3efb,
  637.       0xd68d, 0xc704, 0xf59f, 0xe416, 0x90a9, 0x8120, 0xb3bb, 0xa232,
  638.       0x5ac5, 0x4b4c, 0x79d7, 0x685e, 0x1ce1, 0x0d68, 0x3ff3, 0x2e7a,
  639.       0xe70e, 0xf687, 0xc41c, 0xd595, 0xa12a, 0xb0a3, 0x8238, 0x93b1,
  640.       0x6b46, 0x7acf, 0x4854, 0x59dd, 0x2d62, 0x3ceb, 0x0e70, 0x1ff9,
  641.       0xf78f, 0xe606, 0xd49d, 0xc514, 0xb1ab, 0xa022, 0x92b9, 0x8330,
  642.       0x7bc7, 0x6a4e, 0x58d5, 0x495c, 0x3de3, 0x2c6a, 0x1ef1, 0x0f78
  643. };
  644. #define INIT_CRC 0xFFFF /* initial CRC value   */
  645. #define GOOD_CRC 0xF0B8 /* "good" final CRC value */
  646. static unsigned short crc16_calc( unsigned short crc, u_char c )
  647. {
  648.     return( (crc >> 8) ^ fcstab[(crc ^ c) & 0xff] );
  649. }
  650. /***********************************************************************
  651.  * The following functions implement the PPP-like bedrock/L1 protocol
  652.  * layer.
  653.  *
  654.  */
  655. #define BRL1_FLAG_CH 0x7e
  656. #define BRL1_ESC_CH 0x7d
  657. #define BRL1_XOR_CH 0x20
  658. /* L1<->Bedrock packet types */
  659. #define BRL1_REQUEST    0x00
  660. #define BRL1_RESPONSE   0x20
  661. #define BRL1_EVENT      0x40
  662. #define BRL1_PKT_TYPE_MASK      0xE0
  663. #define BRL1_SUBCH_MASK         0x1F
  664. #define PKT_TYPE(tsb)   ((tsb) & BRL1_PKT_TYPE_MASK)
  665. #define SUBCH(tsb) ((tsb) & BRL1_SUBCH_MASK)
  666. /* timeouts */
  667. #define BRL1_INIT_TIMEOUT 500000
  668. /*
  669.  * brl1_discard_packet is a dummy "receive callback" used to get rid
  670.  * of packets we don't want
  671.  */
  672. void brl1_discard_packet( int dummy0, void *dummy1, struct pt_regs *dummy2, l1sc_t *sc, int ch )
  673. {
  674.     unsigned long pl = 0;
  675.     brl1_sch_t *subch = &sc->subch[ch];
  676.     sc_cq_t *q = subch->iqp;
  677.     SUBCH_DATA_LOCK( subch, pl );
  678.     q->opos = q->ipos;
  679.     atomic_set(&(subch->packet_arrived), 0);
  680.     SUBCH_DATA_UNLOCK( subch, pl );
  681. }
  682. /*
  683.  * brl1_send_chars sends the send buffer in the l1sc_t structure
  684.  * out through the uart.  Assumes that the caller has locked the
  685.  * UART (or send buffer in the kernel).
  686.  *
  687.  * This routine doesn't block-- if you want it to, call it in
  688.  * a loop.
  689.  */
  690. static int
  691. brl1_send_chars( l1sc_t *sc )
  692. {
  693.     /* We track the depth of the C brick's UART's
  694.      * fifo in software, and only check if the UART is accepting
  695.      * characters when our count indicates that the fifo should
  696.      * be full.
  697.      *
  698.      * For remote (router) UARTs, we check with the UART before sending every
  699.      * character.
  700.      */
  701.     if( sc->uart == BRL1_LOCALHUB_UART ) {
  702. if( !(sc->fifo_space) && UART_PUTC_READY( sc->nasid ) )
  703.     sc->fifo_space = UART_FIFO_DEPTH;
  704. while( (sc->sent < sc->send_len) && (sc->fifo_space) ) {
  705.     uart_putc( sc );
  706.     sc->fifo_space--;
  707.     sc->sent++;
  708. }
  709.     }
  710.     else {
  711. /* remote (router) UARTs */
  712. int result;
  713. int tries = 0;
  714. while( sc->sent < sc->send_len ) {
  715.     result = sc->putc_f( sc );
  716.     if( result >= 0 ) {
  717. (sc->sent)++;
  718. continue;
  719.     }
  720.     if( result == UART_TIMEOUT ) {
  721. tries++;
  722. /* send this character in TIMEOUT_RETRIES... */
  723. if( tries < 30 /* TIMEOUT_RETRIES */ ) {
  724.     continue;
  725. }
  726. /* ...or else... */
  727. else {
  728.     /* ...drop the packet. */
  729.     sc->sent = sc->send_len;
  730.     return sc->send_len;
  731. }
  732.     }
  733.     if( result < 0 ) {
  734. return result;
  735.     }
  736. }
  737.     }
  738.     return sc->sent;
  739. }
  740. /* brl1_send formats up a packet and (at least begins to) send it
  741.  * to the uart.  If the send buffer is in use when this routine obtains
  742.  * the lock, it will behave differently depending on the "wait" parameter.
  743.  * For wait == 0 (most I/O), it will return 0 (as in "zero bytes sent"),
  744.  * hopefully encouraging the caller to back off (unlock any high-level 
  745.  * spinlocks) and allow the buffer some time to drain.  For wait==1 (high-
  746.  * priority I/O along the lines of kernel error messages), we will flush
  747.  * the current contents of the send buffer and beat on the uart
  748.  * until our message has been completely transmitted.
  749.  */
  750. static int
  751. brl1_send( l1sc_t *sc, char *msg, int len, u_char type_and_subch, int wait )
  752. {
  753.     unsigned long pl = 0;
  754.     int index;
  755.     int pkt_len = 0;
  756.     unsigned short crc = INIT_CRC;
  757.     char *send_ptr = sc->send;
  758.     if( sc->send_in_use && !(wait) ) {
  759. /* We are in the middle of sending, but can wait until done */
  760. return 0;
  761.     }
  762.     else if( sc->send_in_use ) {
  763. /* buffer's in use, but we're synchronous I/O, so we're going
  764.  * to send whatever's in there right now and take the buffer
  765.  */
  766. int counter = 0;
  767. if ( sc->uart == BRL1_LOCALHUB_UART )
  768. lock_console(sc->nasid);
  769. L1SC_SEND_LOCK(sc, pl);
  770. while( sc->sent < sc->send_len ) {
  771. brl1_send_chars( sc );
  772. if ( counter++ > 0xfffff ) {
  773. char *str = "Looping waiting for uart to clear (1)n";
  774. early_l1_serial_out(sc->nasid, str, strlen(str), ALREADY_LOCKED);
  775. break;
  776. }
  777. }
  778.     }
  779.     else {
  780. if ( sc->uart == BRL1_LOCALHUB_UART )
  781. lock_console(sc->nasid);
  782. L1SC_SEND_LOCK(sc, pl);
  783. sc->send_in_use = 1;
  784.     }
  785.     *send_ptr++ = BRL1_FLAG_CH;
  786.     *send_ptr++ = type_and_subch;
  787.     pkt_len += 2;
  788.     crc = crc16_calc( crc, type_and_subch );
  789.     /* limit number of characters accepted to max payload size */
  790.     if( len > (BRL1_QSIZE - 1) )
  791. len = (BRL1_QSIZE - 1);
  792.     /* copy in the message buffer (inserting PPP 
  793.      * framing info where necessary)
  794.      */
  795.     for( index = 0; index < len; index++ ) {
  796. switch( *msg ) {
  797.     
  798.   case BRL1_FLAG_CH:
  799.     *send_ptr++ = BRL1_ESC_CH;
  800.     *send_ptr++ = (*msg) ^ BRL1_XOR_CH;
  801.     pkt_len += 2;
  802.     break;
  803.     
  804.   case BRL1_ESC_CH:
  805.     *send_ptr++ = BRL1_ESC_CH;
  806.     *send_ptr++ = (*msg) ^ BRL1_XOR_CH;
  807.     pkt_len += 2;
  808.     break;
  809.     
  810.   default:
  811.     *send_ptr++ = *msg;
  812.     pkt_len++;
  813. }
  814. crc = crc16_calc( crc, *msg );
  815. msg++;
  816.     }
  817.     crc ^= 0xffff;
  818.     for( index = 0; index < sizeof(crc); index++ ) {
  819. char crc_char = (char)(crc & 0x00FF);
  820. if( (crc_char == BRL1_ESC_CH) || (crc_char == BRL1_FLAG_CH) ) {
  821.     *send_ptr++ = BRL1_ESC_CH;
  822.     pkt_len++;
  823.     crc_char ^= BRL1_XOR_CH;
  824. }
  825. *send_ptr++ = crc_char;
  826. pkt_len++;
  827. crc >>= 8;
  828.     }
  829.     
  830.     *send_ptr++ = BRL1_FLAG_CH;
  831.     pkt_len++;
  832.     sc->send_len = pkt_len;
  833.     sc->sent = 0;
  834.     {
  835. int counter = 0;
  836. do {
  837. brl1_send_chars( sc );
  838. if ( counter++ > 0xfffff ) {
  839. char *str = "Looping waiting for uart to clear (2)n";
  840. early_l1_serial_out(sc->nasid, str, strlen(str), ALREADY_LOCKED);
  841. break;
  842. }
  843. } while( (sc->sent < sc->send_len) && wait );
  844.     }
  845.     if ( sc->uart == BRL1_LOCALHUB_UART )
  846. unlock_console(sc->nasid);
  847.     if( sc->sent == sc->send_len ) {
  848. /* success! release the send buffer and call the callup */
  849. #if !defined(SYNC_CONSOLE_WRITE)
  850. brl1_notif_t callup;
  851. #endif
  852. sc->send_in_use = 0;
  853. /* call any upper layer that's asked for notification */
  854. #if defined(XX_SYNC_CONSOLE_WRITE)
  855. /*
  856.  * This is probably not a good idea - since the l1_ write func can be called multiple
  857.  * time within the callup function.
  858.  */
  859. callup = subch->tx_notify;
  860. if( callup && (SUBCH(type_and_subch) == SC_CONS_SYSTEM) ) {
  861. L1_collectibles[L1C_SEND_CALLUPS]++;
  862. (*callup)(sc->subch[SUBCH(type_and_subch)].irq_frame.bf_irq,
  863. sc->subch[SUBCH(type_and_subch)].irq_frame.bf_dev_id,
  864. sc->subch[SUBCH(type_and_subch)].irq_frame.bf_regs, sc, SUBCH(type_and_subch));
  865. }
  866. #endif /* SYNC_CONSOLE_WRITE */
  867.     }
  868. #if !defined(SYNC_CONSOLE_WRITE)
  869.     else if ( !wait ) {
  870. /* enable low-water interrupts so buffer will be drained */
  871. uart_enable_xmit_intr(sc);
  872.     }
  873. #endif
  874.     L1SC_SEND_UNLOCK(sc, pl);
  875.     return len;
  876. }
  877. /* brl1_send_cont is intended to be called as an interrupt service
  878.  * routine.  It sends until the UART won't accept any more characters,
  879.  * or until an error is encountered (in which case we surrender the
  880.  * send buffer and give up trying to send the packet).  Once the
  881.  * last character in the packet has been sent, this routine releases
  882.  * the send buffer and calls any previously-registered "low-water"
  883.  * output routines.
  884.  */
  885. #if !defined(SYNC_CONSOLE_WRITE)
  886. int
  887. brl1_send_cont( l1sc_t *sc )
  888. {
  889.     unsigned long pl = 0;
  890.     int done = 0;
  891.     brl1_notif_t callups[BRL1_NUM_SUBCHANS];
  892.     brl1_notif_t *callup;
  893.     brl1_sch_t *subch;
  894.     int index;
  895.     /*
  896.      * I'm not sure how I think this is to be handled - whether the lock is held
  897.      * over the interrupt - but it seems like it is a bad idea....
  898.      */
  899.     if ( sc->uart == BRL1_LOCALHUB_UART )
  900. lock_console(sc->nasid);
  901.     L1SC_SEND_LOCK(sc, pl);
  902.     brl1_send_chars( sc );
  903.     done = (sc->sent == sc->send_len);
  904.     if( done ) {
  905. sc->send_in_use = 0;
  906. #if !defined(SYNC_CONSOLE_WRITE)
  907. uart_disable_xmit_intr(sc);
  908. #endif
  909.     }
  910.     if ( sc->uart == BRL1_LOCALHUB_UART )
  911. unlock_console(sc->nasid);
  912.     /* Release the lock */
  913.     L1SC_SEND_UNLOCK(sc, pl);
  914.     return 0;
  915. }
  916. #endif /* SYNC_CONSOLE_WRITE */
  917. /* internal function -- used by brl1_receive to read a character 
  918.  * from the uart and check whether errors occurred in the process.
  919.  */
  920. static int
  921. read_uart( l1sc_t *sc, int *c, int *result )
  922. {
  923.     *c = sc->getc_f( sc );
  924.     /* no character is available */
  925.     if( *c == UART_NO_CHAR ) {
  926. *result = BRL1_NO_MESSAGE;
  927. return 0;
  928.     }
  929.     /* some error in UART */
  930.     if( *c < 0 ) {
  931. *result = BRL1_LINK;
  932. return 0;
  933.     }
  934.     /* everything's fine */
  935.     *result = BRL1_VALID;
  936.     return 1;
  937. }
  938. /*
  939.  * brl1_receive
  940.  *
  941.  * This function reads a Bedrock-L1 protocol packet into the l1sc_t
  942.  * response buffer.
  943.  *
  944.  * The operation of this function can be expressed as a finite state
  945.  * machine:
  946.  *
  947. START STATE INPUT TRANSITION
  948. ==========================================================
  949. BRL1_IDLE (reset or error) flag BRL1_FLAG
  950. other BRL1_IDLE@
  951. BRL1_FLAG (saw a flag (0x7e)) flag BRL1_FLAG
  952. escape BRL1_IDLE@
  953. header byte BRL1_HDR
  954. other BRL1_IDLE@
  955. BRL1_HDR (saw a type/subch byte)(see below) BRL1_BODY
  956. BRL1_HDR
  957. BRL1_BODY (reading packet body) flag BRL1_FLAG
  958. escape BRL1_ESC
  959. other BRL1_BODY
  960. BRL1_ESC (saw an escape (0x7d)) flag BRL1_FLAG@
  961. escape BRL1_IDLE@
  962. other BRL1_BODY
  963. ==========================================================
  964. "@" denotes an error transition.
  965.  * The BRL1_HDR state is a transient state which doesn't read input,
  966.  * but just provides a way in to code which decides to whom an
  967.  * incoming packet should be directed.
  968.  *
  969.  * brl1_receive can be used to poll for input from the L1, or as 
  970.  * an interrupt service routine.  It reads as much data as is
  971.  * ready from the junk bus UART and places into the appropriate
  972.  * input queues according to subchannel.  The header byte is
  973.  * stripped from console-type data, but is retained for message-
  974.  * type data (L1 responses).  A length byte will also be
  975.  * prepended to message-type packets.
  976.  *
  977.  * This routine is non-blocking; if the caller needs to block
  978.  * for input, it must call brl1_receive in a loop.
  979.  *
  980.  * brl1_receive returns when there is no more input, the queue
  981.  * for the current incoming message is full, or there is an
  982.  * error (parity error, bad header, bad CRC, etc.).
  983.  */
  984. #define STATE_SET(l,s) ((l)->brl1_state = (s))
  985. #define STATE_GET(l) ((l)->brl1_state)
  986. #define LAST_HDR_SET(l,h) ((l)->brl1_last_hdr = (h))
  987. #define LAST_HDR_GET(l) ((l)->brl1_last_hdr)
  988. #define VALID_HDR(c)
  989.     ( SUBCH((c)) <= SC_CONS_SYSTEM
  990. ? PKT_TYPE((c)) == BRL1_REQUEST
  991. : ( PKT_TYPE((c)) == BRL1_RESPONSE ||
  992.     PKT_TYPE((c)) == BRL1_EVENT ) )
  993. #define IS_TTY_PKT(l) ( SUBCH(LAST_HDR_GET(l)) <= SC_CONS_SYSTEM ? 1 : 0 )
  994. int
  995. brl1_receive( l1sc_t *sc, int mode )
  996. {
  997.     int result; /* value to be returned by brl1_receive */
  998.     int c; /* most-recently-read character       */
  999.     int done; /* set done to break out of recv loop */
  1000.     unsigned long pl = 0, cpl = 0;
  1001.     sc_cq_t *q; /* pointer to queue we're working with */
  1002.     result = BRL1_NO_MESSAGE;
  1003.     L1SC_RECV_LOCK(sc, cpl);
  1004.     done = 0;
  1005.     while( !done )
  1006.     {
  1007. switch( STATE_GET(sc) )
  1008. {
  1009.   case BRL1_IDLE:
  1010.     /* Initial or error state.  Waiting for a flag character
  1011.              * to resynchronize with the L1.
  1012.              */
  1013.     if( !read_uart( sc, &c, &result ) ) {
  1014. /* error reading uart */
  1015. done = 1;
  1016. continue;
  1017.     }
  1018.     
  1019.     if( c == BRL1_FLAG_CH ) {
  1020. /* saw a flag character */
  1021. STATE_SET( sc, BRL1_FLAG );
  1022. continue;
  1023.     }
  1024.     break;
  1025.     
  1026.   case BRL1_FLAG:
  1027.     /* One or more flag characters have been read; look for
  1028.      * the beginning of a packet (header byte).
  1029.      */
  1030.     
  1031.     if( !read_uart( sc, &c, &result ) ) {
  1032. /* error reading uart */
  1033. if( c != UART_NO_CHAR )
  1034.     STATE_SET( sc, BRL1_IDLE );
  1035. done = 1;
  1036. continue;
  1037.     }
  1038.     
  1039.     if( c == BRL1_FLAG_CH ) {
  1040. /* multiple flags are OK */
  1041. continue;
  1042.     }
  1043.     if( !VALID_HDR( c ) ) {
  1044. /* if c isn't a flag it should have been
  1045.  * a valid header, so we have an error
  1046.  */
  1047. result = BRL1_PROTOCOL;
  1048. STATE_SET( sc, BRL1_IDLE );
  1049. done = 1;
  1050. continue;
  1051.     }
  1052.     /* we have a valid header byte */
  1053.     LAST_HDR_SET( sc, c );
  1054.     STATE_SET( sc, BRL1_HDR );
  1055.     break; 
  1056.   case BRL1_HDR:
  1057.     /* A header byte has been read. Do some bookkeeping. */
  1058.     q = sc->subch[ SUBCH( LAST_HDR_GET(sc) ) ].iqp;
  1059.     ASSERT(q);
  1060.     
  1061.     if( !IS_TTY_PKT(sc) ) {
  1062. /* if this is an event or command response rather
  1063.  * than console I/O, we need to reserve a couple
  1064.  * of extra spaces in the queue for the header
  1065.  * byte and a length byte; if we can't, stay in
  1066.  * the BRL1_HDR state.
  1067.  */
  1068. if( cq_room( q ) < 2 ) {
  1069.     result = BRL1_FULL_Q;
  1070.     done = 1;
  1071.     continue;
  1072. }
  1073. cq_tent_add( q, 0 ); /* reserve length byte */
  1074. cq_tent_add( q, LAST_HDR_GET( sc ) ); /* record header byte  */
  1075.     }
  1076.     STATE_SET( sc, BRL1_BODY );
  1077.     break;
  1078.   case BRL1_BODY:
  1079.     /* A header byte has been read.  We are now attempting
  1080.      * to receive the packet body.
  1081.      */
  1082.     q = sc->subch[ SUBCH( LAST_HDR_GET(sc) ) ].iqp;
  1083.     ASSERT(q);
  1084.     /* if the queue we want to write into is full, don't read from
  1085.      * the uart (this provides backpressure to the L1 side)
  1086.      */
  1087.     if( cq_tent_full( q ) ) {
  1088. result = BRL1_FULL_Q;
  1089. done = 1;
  1090. continue;
  1091.     }
  1092.     
  1093.     if( !read_uart( sc, &c, &result ) ) {
  1094. /* error reading uart */
  1095. if( c != UART_NO_CHAR )
  1096.     STATE_SET( sc, BRL1_IDLE );
  1097. done = 1;
  1098. continue;
  1099.     }
  1100.     if( c == BRL1_ESC_CH ) {
  1101. /* prepare to unescape the next character */
  1102. STATE_SET( sc, BRL1_ESC );
  1103. continue;
  1104.     }
  1105.     
  1106.     if( c == BRL1_FLAG_CH ) {
  1107. /* flag signifies the end of a packet */
  1108. unsigned short crc; /* holds the crc as we calculate it */
  1109. int i; /* index variable */
  1110. brl1_sch_t *subch;      /* subchannel for received packet */
  1111. brl1_notif_t callup; /* "data ready" callup */
  1112. /* whatever else may happen, we've seen a flag and we're
  1113.  * starting a new packet
  1114.  */
  1115. STATE_SET( sc, BRL1_FLAG );
  1116. /* if the packet body has less than 2 characters,
  1117.  * it can't be a well-formed packet.  Discard it.
  1118.  */
  1119. if( cq_tent_len( q ) < /* 2 + possible length byte */
  1120.     (2 + (IS_TTY_PKT(sc) ? 0 : 1)) )
  1121. {
  1122.     result = BRL1_PROTOCOL;
  1123.     cq_discard_tent( q );
  1124.     STATE_SET( sc, BRL1_FLAG );
  1125.     done = 1;
  1126.     continue;
  1127. }
  1128. /* check CRC */
  1129. /* accumulate CRC, starting with the header byte and
  1130.  * ending with the transmitted CRC.  This should
  1131.  * result in a known good value.
  1132.  */
  1133. crc = crc16_calc( INIT_CRC, LAST_HDR_GET(sc) );
  1134. for( i = (q->ipos + (IS_TTY_PKT(sc) ? 0 : 2)) % BRL1_QSIZE;
  1135.      i != q->tent_next;
  1136.      i = (i + 1) % BRL1_QSIZE )
  1137. {
  1138.     crc = crc16_calc( crc, q->buf[i] );
  1139. }
  1140. /* verify the caclulated crc against the "good" crc value;
  1141.  * if we fail, discard the bad packet and return an error.
  1142.  */
  1143. if( crc != (unsigned short)GOOD_CRC ) {
  1144.     result = BRL1_CRC;
  1145.     cq_discard_tent( q );
  1146.     STATE_SET( sc, BRL1_FLAG );
  1147.     done = 1;
  1148.     continue;
  1149. }
  1150. /* so the crc check was ok.  Now we discard the CRC
  1151.  * from the end of the received bytes.
  1152.  */
  1153. q->tent_next += (BRL1_QSIZE - 2);
  1154. q->tent_next %= BRL1_QSIZE;
  1155. /* get the subchannel and lock it */
  1156. subch = &(sc->subch[SUBCH( LAST_HDR_GET(sc) )]);
  1157. SUBCH_DATA_LOCK( subch, pl );
  1158. /* if this isn't a console packet, we need to record
  1159.  * a length byte
  1160.  */
  1161. if( !IS_TTY_PKT(sc) ) {
  1162.     q->buf[q->ipos] = cq_tent_len( q ) - 1;
  1163. }
  1164. /* record packet for posterity */
  1165. cq_commit_tent( q );
  1166. result = BRL1_VALID;
  1167. /* notify subchannel owner that there's something
  1168.  * on the queue for them
  1169.  */
  1170. atomic_inc(&(subch->packet_arrived));
  1171. callup = subch->rx_notify;
  1172. SUBCH_DATA_UNLOCK( subch, pl );
  1173. if( callup && (mode == SERIAL_INTERRUPT_MODE) ) {
  1174.     L1SC_RECV_UNLOCK( sc, cpl );
  1175.     L1_collectibles[L1C_RECEIVE_CALLUPS]++;
  1176.     (*callup)( sc->subch[SUBCH(LAST_HDR_GET(sc))].irq_frame.bf_irq,
  1177. sc->subch[SUBCH(LAST_HDR_GET(sc))].irq_frame.bf_dev_id,
  1178. sc->subch[SUBCH(LAST_HDR_GET(sc))].irq_frame.bf_regs,
  1179. sc, SUBCH(LAST_HDR_GET(sc)) );
  1180.     L1SC_RECV_LOCK( sc, cpl );
  1181. }
  1182. continue; /* go back for more! */
  1183.     }
  1184.     
  1185.     /* none of the special cases applied; we've got a normal
  1186.      * body character
  1187.      */
  1188.     cq_tent_add( q, c );
  1189.     break;
  1190.   case BRL1_ESC:
  1191.     /* saw an escape character.  The next character will need
  1192.      * to be unescaped.
  1193.      */
  1194.     q = sc->subch[ SUBCH( LAST_HDR_GET(sc) ) ].iqp;
  1195.     ASSERT(q);
  1196.     /* if the queue we want to write into is full, don't read from
  1197.      * the uart (this provides backpressure to the L1 side)
  1198.      */
  1199.     if( cq_tent_full( q ) ) {
  1200. result = BRL1_FULL_Q;
  1201. done = 1;
  1202. continue;
  1203.     }
  1204.     
  1205.     if( !read_uart( sc, &c, &result ) ) {
  1206. /* error reading uart */
  1207. if( c != UART_NO_CHAR ) {
  1208.     cq_discard_tent( q );
  1209.     STATE_SET( sc, BRL1_IDLE );
  1210. }
  1211. done = 1;
  1212. continue;
  1213.     }
  1214.     
  1215.     if( c == BRL1_FLAG_CH ) {
  1216. /* flag after escape is an error */
  1217. STATE_SET( sc, BRL1_FLAG );
  1218. cq_discard_tent( q );
  1219. result = BRL1_PROTOCOL;
  1220. done = 1;
  1221. continue;
  1222.     }
  1223.     if( c == BRL1_ESC_CH ) {
  1224. /* two consecutive escapes is an error */
  1225. STATE_SET( sc, BRL1_IDLE );
  1226. cq_discard_tent( q );
  1227. result = BRL1_PROTOCOL;
  1228. done = 1;
  1229. continue;
  1230.     }
  1231.     
  1232.     /* otherwise, we've got a character that needs
  1233.      * to be unescaped
  1234.      */
  1235.     cq_tent_add( q, (c ^ BRL1_XOR_CH) );
  1236.     STATE_SET( sc, BRL1_BODY );
  1237.     break;
  1238. } /* end of switch( STATE_GET(sc) ) */
  1239.     } /* end of while(!done) */
  1240.     L1SC_RECV_UNLOCK( sc, cpl );
  1241.     return result;
  1242. }     
  1243. /* brl1_init initializes the Bedrock/L1 protocol layer.  This includes
  1244.  * zeroing out the send and receive state information.
  1245.  */
  1246. void
  1247. brl1_init( l1sc_t *sc, nasid_t nasid, net_vec_t uart )
  1248. {
  1249.     int i;
  1250.     brl1_sch_t *subch;
  1251.     bzero( sc, sizeof( *sc ) );
  1252.     sc->nasid = nasid;
  1253.     sc->uart = uart;
  1254.     sc->getc_f = (uart == BRL1_LOCALHUB_UART ? uart_getc : rtr_uart_getc);
  1255.     sc->putc_f = (uart == BRL1_LOCALHUB_UART ? uart_putc : rtr_uart_putc);
  1256.     sc->sol = 1;
  1257.     subch = sc->subch;
  1258.     /* initialize L1 subchannels
  1259.      */
  1260.     /* assign processor TTY channels */
  1261.     for( i = 0; i < CPUS_PER_NODE; i++, subch++ ) {
  1262. subch->use = BRL1_SUBCH_RSVD;
  1263. subch->packet_arrived = ATOMIC_INIT(0);
  1264. spin_lock_init( &(subch->data_lock) );
  1265. sv_init( &(subch->arrive_sv), &(subch->data_lock), SV_MON_SPIN | SV_ORDER_FIFO /* | SV_INTS */ );
  1266. subch->tx_notify = NULL;
  1267. /* (for now, drop elscuart packets in the kernel) */
  1268. subch->rx_notify = brl1_discard_packet;
  1269. subch->iqp = &sc->garbage_q;
  1270.     }
  1271.     /* assign system TTY channel (first free subchannel after each
  1272.      * processor's individual TTY channel has been assigned)
  1273.      */
  1274.     subch->use = BRL1_SUBCH_RSVD;
  1275.     subch->packet_arrived = ATOMIC_INIT(0);
  1276.     spin_lock_init( &(subch->data_lock) );
  1277.     sv_init( &(subch->arrive_sv), &subch->data_lock, SV_MON_SPIN | SV_ORDER_FIFO /* | SV_INTS */ );
  1278.     subch->tx_notify = NULL;
  1279.     if( sc->uart == BRL1_LOCALHUB_UART ) {
  1280. subch->iqp = snia_kmem_zalloc_node( sizeof(sc_cq_t), KM_NOSLEEP, NASID_TO_COMPACT_NODEID(nasid) );
  1281. ASSERT( subch->iqp );
  1282. cq_init( subch->iqp );
  1283. subch->rx_notify = NULL;
  1284.     }
  1285.     else {
  1286. /* we shouldn't be getting console input from remote UARTs */
  1287. subch->iqp = &sc->garbage_q;
  1288. subch->rx_notify = brl1_discard_packet;
  1289.     }
  1290.     subch++; i++;
  1291.     /* "reserved" subchannels (0x05-0x0F); for now, throw away
  1292.      * incoming packets
  1293.      */
  1294.     for( ; i < 0x10; i++, subch++ ) {
  1295. subch->use = BRL1_SUBCH_FREE;
  1296. subch->packet_arrived = ATOMIC_INIT(0);
  1297. subch->tx_notify = NULL;
  1298. subch->rx_notify = brl1_discard_packet;
  1299. subch->iqp = &sc->garbage_q;
  1300.     }
  1301.     /* remaining subchannels are free */
  1302.     for( ; i < BRL1_NUM_SUBCHANS; i++, subch++ ) {
  1303. subch->use = BRL1_SUBCH_FREE;
  1304. subch->packet_arrived = ATOMIC_INIT(0);
  1305. subch->tx_notify = NULL;
  1306. subch->rx_notify = brl1_discard_packet;
  1307. subch->iqp = &sc->garbage_q;
  1308.     }
  1309.     /* initialize synchronization structures
  1310.      */
  1311.     spin_lock_init( &(sc->subch_lock) );
  1312.     spin_lock_init( &(sc->send_lock) );
  1313.     spin_lock_init( &(sc->recv_lock) );
  1314.     if( sc->uart == BRL1_LOCALHUB_UART ) {
  1315. uart_init( sc, UART_BAUD_RATE );
  1316.     }
  1317.     else {
  1318. rtr_uart_init( sc, UART_BAUD_RATE );
  1319.     }
  1320.     /* Set up remaining fields using L1 command functions-- elsc_module_get
  1321.      * to read the module id, elsc_debug_get to see whether or not we're
  1322.      * in verbose mode.
  1323.      */
  1324.     {
  1325. extern int elsc_module_get(l1sc_t *);
  1326. sc->modid = elsc_module_get( sc );
  1327. sc->modid = (sc->modid < 0 ? INVALID_MODULE : sc->modid);
  1328. sc->verbose = 1;
  1329.     }
  1330. }
  1331. /*********************************************************************
  1332.  * These are interrupt-related functions used in the kernel to service
  1333.  * the L1.
  1334.  */
  1335. /*
  1336.  * brl1_intrd is the function which is called on a console interrupt.
  1337.  */
  1338. #if defined(CONFIG_IA64_SGI_SN1)
  1339. static void
  1340. brl1_intrd(int irq, void *dev_id, struct pt_regs *stuff)
  1341. {
  1342.     u_char isr_reg;
  1343.     l1sc_t *sc = get_elsc();
  1344.     int ret;
  1345.     L1_collectibles[L1C_INTERRUPTS]++;
  1346.     isr_reg = READ_L1_UART_REG(sc->nasid, REG_ISR);
  1347.     /* Save for callup args in console */
  1348.     sc->subch[SC_CONS_SYSTEM].irq_frame.bf_irq = irq;
  1349.     sc->subch[SC_CONS_SYSTEM].irq_frame.bf_dev_id = dev_id;
  1350.     sc->subch[SC_CONS_SYSTEM].irq_frame.bf_regs = stuff;
  1351. #if defined(SYNC_CONSOLE_WRITE)
  1352.     while( isr_reg & ISR_RxRDY )
  1353. #else
  1354.     while( isr_reg & (ISR_RxRDY | ISR_TxRDY) )
  1355. #endif
  1356.     {
  1357. if( isr_reg & ISR_RxRDY ) {
  1358.     L1_collectibles[L1C_OUR_R_INTERRUPTS]++;
  1359.     ret = brl1_receive(sc, SERIAL_INTERRUPT_MODE);
  1360.     if ( (ret != BRL1_VALID) && (ret != BRL1_NO_MESSAGE) && (ret != BRL1_PROTOCOL) && (ret != BRL1_CRC) )
  1361. L1_collectibles[L1C_REC_STALLS] = ret;
  1362. }
  1363. #if !defined(SYNC_CONSOLE_WRITE)
  1364. if( (isr_reg & ISR_TxRDY) || (sc->send_in_use && UART_PUTC_READY(sc->nasid)) ) {
  1365.     L1_collectibles[L1C_OUR_X_INTERRUPTS]++;
  1366.     brl1_send_cont(sc);
  1367. }
  1368. #endif /* SYNC_CONSOLE_WRITE */
  1369. isr_reg = READ_L1_UART_REG(sc->nasid, REG_ISR);
  1370.     }
  1371. }
  1372. #endif /* CONFIG_IA64_SGI_SN1 */
  1373. /*
  1374.  * Install a callback function for the system console subchannel 
  1375.  * to allow an upper layer to be notified when the send buffer 
  1376.  * has been emptied.
  1377.  */
  1378. static inline void
  1379. l1_tx_notif( brl1_notif_t func )
  1380. {
  1381. subch_set_tx_notify( &NODEPDA(NASID_TO_COMPACT_NODEID(get_master_nasid()))->module->elsc,
  1382. SC_CONS_SYSTEM, func );
  1383. }
  1384. /*
  1385.  * Install a callback function for the system console subchannel
  1386.  * to allow an upper layer to be notified when a packet has been
  1387.  * received.
  1388.  */
  1389. static inline void
  1390. l1_rx_notif( brl1_notif_t func )
  1391. {
  1392. subch_set_rx_notify( &NODEPDA(NASID_TO_COMPACT_NODEID(get_master_nasid()))->module->elsc,
  1393. SC_CONS_SYSTEM, func );
  1394. }
  1395. /* brl1_intr is called directly from the uart interrupt; after it runs, the
  1396.  * interrupt "daemon" xthread is signalled to continue.
  1397.  */
  1398. void
  1399. brl1_intr( void )
  1400. {
  1401. }
  1402. #define BRL1_INTERRUPT_LEVEL 65 /* linux request_irq() value */
  1403. /* Return the current interrupt level */
  1404. //#define CONSOLE_POLLING_ALSO
  1405. int
  1406. l1_get_intr_value( void )
  1407. {
  1408. #if defined(USE_SAL_CONSOLE_IO)
  1409. return(0);
  1410. #else
  1411. #if defined(CONSOLE_POLLING_ALSO)
  1412. return(0);
  1413. #else
  1414. return(BRL1_INTERRUPT_LEVEL);
  1415. #endif /* CONSOLE_POLLING_ALSO */
  1416. #endif /* USE_SAL_CONSOLE_IO */
  1417. }
  1418. /* Disconnect the callup functions - throw away interrupts */
  1419. void
  1420. l1_unconnect_intr(void)
  1421. {
  1422. #if !defined(USE_SAL_CONSOLE_IO)
  1423. /* UnRegister the upper-level callup functions */
  1424. l1_rx_notif((brl1_notif_t)NULL);
  1425. l1_tx_notif((brl1_notif_t)NULL);
  1426. /* We do NOT unregister the interrupts */
  1427. #endif /* !USE_SAL_CONSOLE_IO */
  1428. }
  1429. /* Set up uart interrupt handling for this node's uart */
  1430. void
  1431. l1_connect_intr(void *rx_notify, void *tx_notify)
  1432. {
  1433. #if defined(USE_SAL_CONSOLE_IO)
  1434. #if 0
  1435. // Will need code here for sn2 - something like this
  1436. console_nodepda = NODEPDA(NASID_TO_COMPACT_NODEID(get_master_nasid());
  1437. intr_connect_level(console_nodepda->node_first_cpu,
  1438.                                 SGI_UART_VECTOR, INTPEND0_MAXMASK,
  1439.                                 dummy_intr_func);
  1440. request_irq(SGI_UART_VECTOR | (console_nodepda->node_first_cpu << 8),
  1441.                                 intr_func, SA_INTERRUPT | SA_SHIRQ,
  1442.                                 "l1_protocol_driver", (void *)sc);
  1443. #endif
  1444. #else
  1445. l1sc_t *sc;
  1446. nasid_t nasid;
  1447. #if defined(CONFIG_IA64_SGI_SN1)
  1448. int tmp;
  1449. #endif
  1450. nodepda_t *console_nodepda;
  1451. int intr_connect_level(cpuid_t, int, ilvl_t, intr_func_t);
  1452. if ( L1_interrupts_connected ) {
  1453. /* Interrupts are connected, so just register the callups */
  1454. l1_rx_notif((brl1_notif_t)rx_notify);
  1455. l1_tx_notif((brl1_notif_t)tx_notify);
  1456. L1_collectibles[L1C_CONNECT_CALLS]++;
  1457. return;
  1458. }
  1459. else
  1460. L1_interrupts_connected = 1;
  1461. nasid = get_master_nasid();
  1462. console_nodepda = NODEPDA(NASID_TO_COMPACT_NODEID(nasid));
  1463. sc = &console_nodepda->module->elsc;
  1464. sc->intr_cpu = console_nodepda->node_first_cpu;
  1465. #if defined(CONFIG_IA64_SGI_SN1)
  1466. if ( intr_connect_level(sc->intr_cpu, UART_INTR, INTPEND0_MAXMASK, (intr_func_t)brl1_intr) ) {
  1467. L1_interrupts_connected = 0; /* FAILS !! */
  1468. }
  1469. else {
  1470. void synergy_intr_connect(int, int);
  1471. synergy_intr_connect(UART_INTR, sc->intr_cpu);
  1472. L1_collectibles[L1C_R_IRQ]++;
  1473. tmp = request_irq(BRL1_INTERRUPT_LEVEL, brl1_intrd, SA_INTERRUPT | SA_SHIRQ, "l1_protocol_driver", (void *)sc);
  1474. L1_collectibles[L1C_R_IRQ_RET] = (uint64_t)tmp;
  1475. if ( tmp ) {
  1476. L1_interrupts_connected = 0; /* FAILS !! */
  1477. }
  1478. else {
  1479. /* Register the upper-level callup functions */
  1480. l1_rx_notif((brl1_notif_t)rx_notify);
  1481. l1_tx_notif((brl1_notif_t)tx_notify);
  1482. /* Set the uarts the way we like it */
  1483. uart_enable_recv_intr( sc );
  1484. uart_disable_xmit_intr( sc );
  1485. }
  1486. }
  1487. #endif /* CONFIG_IA64_SGI_SN1 */
  1488. #endif /* USE_SAL_CONSOLE_IO */
  1489. }
  1490. /* These are functions to use from serial_in/out when in protocol
  1491.  * mode to send and receive uart control regs. These are external
  1492.  * interfaces into the protocol driver.
  1493.  */
  1494. void
  1495. l1_control_out(int offset, int value)
  1496. {
  1497. #if defined(USE_SAL_CONSOLE_IO)
  1498. /* quietly ignore unless simulator */
  1499. if ( IS_RUNNING_ON_SIMULATOR() ) {
  1500. extern u64 master_node_bedrock_address;
  1501. if ( master_node_bedrock_address != (u64)0 ) {
  1502. writeb(value, (unsigned long)master_node_bedrock_address +
  1503. (offset<< 3));
  1504. }
  1505. return;
  1506. }
  1507. #else
  1508. nasid_t nasid = get_master_nasid();
  1509. WRITE_L1_UART_REG(nasid, offset, value); 
  1510. #endif
  1511. }
  1512. /* Console input exported interface. Return a register value.  */
  1513. int
  1514. l1_control_in_polled(int offset)
  1515. {
  1516. static int l1_control_in_local(int, int);
  1517. return(l1_control_in_local(offset, SERIAL_POLLED_MODE));
  1518. }
  1519. int
  1520. l1_control_in(int offset)
  1521. {
  1522. static int l1_control_in_local(int, int);
  1523. return(l1_control_in_local(offset, SERIAL_INTERRUPT_MODE));
  1524. }
  1525. static int
  1526. l1_control_in_local(int offset, int mode)
  1527. {
  1528. #if defined(USE_SAL_CONSOLE_IO)
  1529. int sal_call_status = 0, input;
  1530. int ret = 0;
  1531. if ( offset == REG_LSR ) {
  1532. ret = (LSR_XHRE | LSR_XSRE); /* can send anytime */
  1533. sal_call_status = ia64_sn_console_check(&input);
  1534. if ( !sal_call_status && input ) {
  1535. /* input pending */
  1536. ret |= LSR_RCA;
  1537. }
  1538. }
  1539. /* If the sal call failed, do it the old-fashioned way */
  1540. if ( sal_call_status ) {
  1541. if ( IS_RUNNING_ON_SIMULATOR() ) {
  1542. extern u64 master_node_bedrock_address;
  1543. ret = readb((unsigned long)master_node_bedrock_address +
  1544. (offset<< 3));
  1545. }
  1546. else {
  1547. #endif /* USE_SAL_CONSOLE_IO */
  1548. nasid_t nasid;
  1549. int ret, input;
  1550. static int l1_poll(l1sc_t *, int);
  1551. nasid = get_master_nasid();
  1552. ret = READ_L1_UART_REG(nasid, offset); 
  1553. if ( offset == REG_LSR ) {
  1554. ret |= (LSR_XHRE | LSR_XSRE); /* can send anytime */
  1555. if ( L1_cons_is_inited ) {
  1556. if ( NODEPDA(NASID_TO_COMPACT_NODEID(nasid))->module != (module_t *)0 ) {
  1557. input = l1_poll(&NODEPDA(NASID_TO_COMPACT_NODEID(nasid))->module->elsc, mode);
  1558. if ( input ) {
  1559. ret |= LSR_RCA;
  1560. }
  1561. }
  1562. }
  1563. }
  1564. #if defined(USE_SAL_CONSOLE_IO)
  1565. }
  1566. }
  1567. #endif
  1568. return(ret);
  1569. }
  1570. /*
  1571.  * Console input exported interface. Return a character (if one is available)
  1572.  */
  1573. int
  1574. l1_serial_in_polled(void)
  1575. {
  1576. static int l1_serial_in_local(int mode);
  1577. return(l1_serial_in_local(SERIAL_POLLED_MODE));
  1578. }
  1579. int
  1580. l1_serial_in(void)
  1581. {
  1582. static int l1_serial_in_local(int mode);
  1583. return(l1_serial_in_local(SERIAL_INTERRUPT_MODE));
  1584. }
  1585. static int
  1586. l1_serial_in_local(int mode)
  1587. {
  1588. #if defined(USE_SAL_CONSOLE_IO)
  1589. int sal_call_status;
  1590. int ch;
  1591. sal_call_status = ia64_sn_console_getc(&ch);
  1592. if ( !sal_call_status ) {
  1593. return(ch);
  1594. }
  1595. else {
  1596. /* If the sal called failed - do it the old-fashioned way */
  1597. if ( IS_RUNNING_ON_SIMULATOR() ) {
  1598. extern u64 master_node_bedrock_address;
  1599. return(readb((unsigned long)master_node_bedrock_address + (REG_DAT<< 3)));
  1600. }
  1601. else {
  1602. #endif /* USE_SAL_CONSOLE_IO */
  1603. nasid_t nasid;
  1604. l1sc_t *sc;
  1605. int value;
  1606. static int l1_getc( l1sc_t *, int );
  1607. static inline l1sc_t *early_sc_init(nasid_t);
  1608. nasid = get_master_nasid();
  1609. sc = early_sc_init(nasid);
  1610. if ( L1_cons_is_inited ) {
  1611. if ( NODEPDA(NASID_TO_COMPACT_NODEID(nasid))->module != (module_t *)0 ) {
  1612. sc = &NODEPDA(NASID_TO_COMPACT_NODEID(nasid))->module->elsc;
  1613. }
  1614. }
  1615. value = l1_getc(sc, mode);
  1616. return(value);
  1617. #if defined(USE_SAL_CONSOLE_IO)
  1618. }
  1619. }
  1620. #endif
  1621. }
  1622. /* Console output exported interface. Write message to the console.  */
  1623. int
  1624. l1_serial_out( char *str, int len )
  1625. {
  1626. #if defined(USE_SAL_CONSOLE_IO)
  1627. int sal_call_status = 0;
  1628. int counter = len;
  1629. /* Attempt to write things out thru the sal */
  1630. while ( counter > 0 ) {
  1631. if ( (sal_call_status = ia64_sn_console_putc(*str)) ) {
  1632. break;
  1633. }
  1634. counter--;
  1635. str++;
  1636. }
  1637. if ( sal_call_status ) {
  1638. /* If the sal called failed - do it the old-fashioned way */
  1639. if ( IS_RUNNING_ON_SIMULATOR() ) {
  1640. extern u64 master_node_bedrock_address;
  1641.                         if (!master_node_bedrock_address)
  1642.                                 early_sn_setup();
  1643. if ( master_node_bedrock_address != (u64)0 ) {
  1644. #ifdef FLAG_DIRECT_CONSOLE_WRITES
  1645. /* This is an easy way to pre-pend the output to know whether the output
  1646.  * was done via sal or directly */
  1647. writeb('[', (unsigned long)master_node_bedrock_address + (REG_DAT<< 3));
  1648. writeb('+', (unsigned long)master_node_bedrock_address + (REG_DAT<< 3));
  1649. writeb(']', (unsigned long)master_node_bedrock_address + (REG_DAT<< 3));
  1650. writeb(' ', (unsigned long)master_node_bedrock_address + (REG_DAT<< 3));
  1651. #endif /* FLAG_DIRECT_CONSOLE_WRITES */
  1652. while ( counter > 0 ) {
  1653. writeb(*str, (unsigned long)master_node_bedrock_address + (REG_DAT<< 3));
  1654. counter--;
  1655. str++;
  1656. }
  1657. }
  1658. }
  1659. else {
  1660. #endif /* USE_SAL_CONSOLE_IO */
  1661. nasid_t nasid = get_master_nasid();
  1662. int l1_write(l1sc_t *, char *, int, int);
  1663. if ( L1_cons_is_inited ) {
  1664. if ( NODEPDA(NASID_TO_COMPACT_NODEID(nasid))->module != (module_t *)0 )
  1665. return(l1_write(&NODEPDA(NASID_TO_COMPACT_NODEID(nasid))->module->elsc, str, len,
  1666. #if defined(SYNC_CONSOLE_WRITE)
  1667. 1
  1668. #else
  1669. !L1_interrupts_connected
  1670. #endif
  1671. ));
  1672. }
  1673. return(early_l1_serial_out(nasid, str, len, NOT_LOCKED));
  1674. #if defined(USE_SAL_CONSOLE_IO)
  1675. }
  1676. }
  1677. return((counter <= 0) ? 0 : (len - counter));
  1678. #endif
  1679. }
  1680. /*
  1681.  * These are the 'early' functions - when we need to do things before we have
  1682.  * all the structs setup.
  1683.  */
  1684. static l1sc_t Early_console; /* fake l1sc_t */
  1685. static int Early_console_inited = 0;
  1686. static void
  1687. early_brl1_init( l1sc_t *sc, nasid_t nasid, net_vec_t uart )
  1688. {
  1689.     int i;
  1690.     brl1_sch_t *subch;
  1691.     bzero( sc, sizeof( *sc ) );
  1692.     sc->nasid = nasid;
  1693.     sc->uart = uart;
  1694.     sc->getc_f = (uart == BRL1_LOCALHUB_UART ? uart_getc : rtr_uart_getc);
  1695.     sc->putc_f = (uart == BRL1_LOCALHUB_UART ? uart_putc : rtr_uart_putc);
  1696.     sc->sol = 1;
  1697.     subch = sc->subch;
  1698.     /* initialize L1 subchannels
  1699.      */
  1700.     /* assign processor TTY channels */
  1701.     for( i = 0; i < CPUS_PER_NODE; i++, subch++ ) {
  1702. subch->use = BRL1_SUBCH_RSVD;
  1703. subch->packet_arrived = ATOMIC_INIT(0);
  1704. subch->tx_notify = NULL;
  1705. subch->rx_notify = NULL;
  1706. subch->iqp = &sc->garbage_q;
  1707.     }
  1708.     /* assign system TTY channel (first free subchannel after each
  1709.      * processor's individual TTY channel has been assigned)
  1710.      */
  1711.     subch->use = BRL1_SUBCH_RSVD;
  1712.     subch->packet_arrived = ATOMIC_INIT(0);
  1713.     subch->tx_notify = NULL;
  1714.     subch->rx_notify = NULL;
  1715.     if( sc->uart == BRL1_LOCALHUB_UART ) {
  1716. static sc_cq_t x_iqp;
  1717. subch->iqp = &x_iqp;
  1718. ASSERT( subch->iqp );
  1719. cq_init( subch->iqp );
  1720.     }
  1721.     else {
  1722. /* we shouldn't be getting console input from remote UARTs */
  1723. subch->iqp = &sc->garbage_q;
  1724.     }
  1725.     subch++; i++;
  1726.     /* "reserved" subchannels (0x05-0x0F); for now, throw away
  1727.      * incoming packets
  1728.      */
  1729.     for( ; i < 0x10; i++, subch++ ) {
  1730. subch->use = BRL1_SUBCH_FREE;
  1731. subch->packet_arrived = ATOMIC_INIT(0);
  1732. subch->tx_notify = NULL;
  1733. subch->rx_notify = NULL;
  1734. subch->iqp = &sc->garbage_q;
  1735.     }
  1736.     /* remaining subchannels are free */
  1737.     for( ; i < BRL1_NUM_SUBCHANS; i++, subch++ ) {
  1738. subch->use = BRL1_SUBCH_FREE;
  1739. subch->packet_arrived = ATOMIC_INIT(0);
  1740. subch->tx_notify = NULL;
  1741. subch->rx_notify = NULL;
  1742. subch->iqp = &sc->garbage_q;
  1743.     }
  1744. }
  1745. static inline l1sc_t *
  1746. early_sc_init(nasid_t nasid)
  1747. {
  1748. /* This is for early I/O */
  1749. if ( Early_console_inited == 0 ) {
  1750.      early_brl1_init(&Early_console, nasid,  BRL1_LOCALHUB_UART);
  1751. Early_console_inited = 1;
  1752. }
  1753. return(&Early_console);
  1754. }
  1755. #define PUTCHAR(ch) 
  1756.     { 
  1757.         while( (!(READ_L1_UART_REG( nasid, REG_LSR ) & LSR_XHRE)) || 
  1758.                 (!(READ_L1_UART_REG( nasid, REG_MSR ) & MSR_CTS)) ); 
  1759.         WRITE_L1_UART_REG( nasid, REG_DAT, (ch) ); 
  1760.     }
  1761. static int
  1762. early_l1_serial_out( nasid_t nasid, char *str, int len, int lock_state )
  1763. {
  1764. int ret, sent = 0;
  1765. char *msg = str;
  1766. static int early_l1_send( nasid_t nasid, char *str, int len, int lock_state );
  1767. while ( sent < len ) {
  1768. ret = early_l1_send(nasid, msg, len - sent, lock_state);
  1769. sent += ret;
  1770. msg += ret;
  1771. }
  1772. return(len);
  1773. }
  1774. static inline int
  1775. early_l1_send( nasid_t nasid, char *str, int len, int lock_state )
  1776. {
  1777.     int sent;
  1778.     char crc_char;
  1779.     unsigned short crc = INIT_CRC;
  1780.     if( len > (BRL1_QSIZE - 1) )
  1781. len = (BRL1_QSIZE - 1);
  1782.     sent = len;
  1783.     if ( lock_state == NOT_LOCKED )
  1784.      lock_console(nasid);
  1785.     PUTCHAR( BRL1_FLAG_CH );
  1786.     PUTCHAR( BRL1_EVENT | SC_CONS_SYSTEM );
  1787.     crc = crc16_calc( crc, (BRL1_EVENT | SC_CONS_SYSTEM) );
  1788.     while( len ) {
  1789. if( (*str == BRL1_FLAG_CH) || (*str == BRL1_ESC_CH) ) {
  1790.     PUTCHAR( BRL1_ESC_CH );
  1791.     PUTCHAR( (*str) ^ BRL1_XOR_CH );
  1792. }
  1793. else {
  1794.     PUTCHAR( *str );
  1795. }
  1796. crc = crc16_calc( crc, *str );
  1797. str++; len--;
  1798.     }
  1799.     
  1800.     crc ^= 0xffff;
  1801.     crc_char = crc & 0xff;
  1802.     if( (crc_char == BRL1_ESC_CH) || (crc_char == BRL1_FLAG_CH) ) {
  1803. crc_char ^= BRL1_XOR_CH;
  1804. PUTCHAR( BRL1_ESC_CH );
  1805.     }
  1806.     PUTCHAR( crc_char );
  1807.     crc_char = (crc >> 8) & 0xff;
  1808.     if( (crc_char == BRL1_ESC_CH) || (crc_char == BRL1_FLAG_CH) ) {
  1809. crc_char ^= BRL1_XOR_CH;
  1810. PUTCHAR( BRL1_ESC_CH );
  1811.     }
  1812.     PUTCHAR( crc_char );
  1813.     PUTCHAR( BRL1_FLAG_CH );
  1814.     if ( lock_state == NOT_LOCKED )
  1815.      unlock_console(nasid);
  1816.     return sent;
  1817. }
  1818. /*********************************************************************
  1819.  * l1_cons functions
  1820.  *
  1821.  * These allow the L1 to act as the system console.  They're intended
  1822.  * to abstract away most of the br/l1 internal details from the
  1823.  * _L1_cons_* functions (in the prom-- see "l1_console.c") and
  1824.  * l1_* functions (in the kernel-- see "sio_l1.c") that they support.
  1825.  *
  1826.  */
  1827. static int
  1828. l1_poll( l1sc_t *sc, int mode )
  1829. {
  1830.     int ret;
  1831.     /* in case this gets called before the l1sc_t structure for the module_t
  1832.      * struct for this node is initialized (i.e., if we're called with a
  1833.      * zero l1sc_t pointer)...
  1834.      */
  1835.     if( !sc ) {
  1836. return 0;
  1837.     }
  1838.     if( atomic_read(&sc->subch[SC_CONS_SYSTEM].packet_arrived) ) {
  1839. return 1;
  1840.     }
  1841.     ret = brl1_receive( sc, mode );
  1842.     if ( (ret != BRL1_VALID) && (ret != BRL1_NO_MESSAGE) && (ret != BRL1_PROTOCOL) && (ret != BRL1_CRC) )
  1843. L1_collectibles[L1C_REC_STALLS] = ret;
  1844.     if( atomic_read(&sc->subch[SC_CONS_SYSTEM].packet_arrived) ) {
  1845. return 1;
  1846.     }
  1847.     return 0;
  1848. }
  1849. /* pull a character off of the system console queue (if one is available)
  1850.  */
  1851. static int
  1852. l1_getc( l1sc_t *sc, int mode )
  1853. {
  1854.     unsigned long pl = 0;
  1855.     int c;
  1856.     brl1_sch_t *subch = &(sc->subch[SC_CONS_SYSTEM]);
  1857.     sc_cq_t *q = subch->iqp;
  1858.     if( !l1_poll( sc, mode ) ) {
  1859. return 0;
  1860.     }
  1861.     SUBCH_DATA_LOCK( subch, pl );
  1862.     if( cq_empty( q ) ) {
  1863. atomic_set(&subch->packet_arrived, 0);
  1864. SUBCH_DATA_UNLOCK( subch, pl );
  1865. return 0;
  1866.     }
  1867.     cq_rem( q, c );
  1868.     if( cq_empty( q ) )
  1869. atomic_set(&subch->packet_arrived, 0);
  1870.     SUBCH_DATA_UNLOCK( subch, pl );
  1871.     return c;
  1872. }
  1873. /*
  1874.  * Write a message to the L1 on the system console subchannel.
  1875.  *
  1876.  * Danger: don't use a non-zero value for the wait parameter unless you're
  1877.  * someone important (like a kernel error message).
  1878.  */
  1879. int
  1880. l1_write( l1sc_t *sc, char *msg, int len, int wait )
  1881. {
  1882. int sent = 0, ret = 0;
  1883. if ( wait ) {
  1884. while ( sent < len ) {
  1885. ret = brl1_send( sc, msg, len - sent, (SC_CONS_SYSTEM | BRL1_EVENT), wait );
  1886. sent += ret;
  1887. msg += ret;
  1888. }
  1889. ret = len;
  1890. }
  1891. else {
  1892. ret = brl1_send( sc, msg, len, (SC_CONS_SYSTEM | BRL1_EVENT), wait );
  1893. }
  1894. return(ret);
  1895. }
  1896. /* initialize the system console subchannel
  1897.  */
  1898. void
  1899. l1_init(void)
  1900. {
  1901. /* All we do now is remember that we have been called */
  1902. L1_cons_is_inited = 1;
  1903. }
  1904. /*********************************************************************
  1905.  * The following functions and definitions implement the "message"-
  1906.  * style interface to the L1 system controller.
  1907.  *
  1908.  * Note that throughout this file, "sc" generally stands for "system
  1909.  * controller", while "subchannels" tend to be represented by
  1910.  * variables with names like subch or ch.
  1911.  *
  1912.  */
  1913. #ifdef L1_DEBUG
  1914. #define L1_DBG_PRF(x) printf x
  1915. #else
  1916. #define L1_DBG_PRF(x)
  1917. #endif
  1918. /*
  1919.  * sc_data_ready is called to signal threads that are blocked on l1 input.
  1920.  */
  1921. void
  1922. sc_data_ready( int dummy0, void *dummy1, struct pt_regs *dummy2, l1sc_t *sc, int ch )
  1923. {
  1924.     unsigned long pl = 0;
  1925.     brl1_sch_t *subch = &(sc->subch[ch]);
  1926.     SUBCH_DATA_LOCK( subch, pl );
  1927.     sv_signal( &(subch->arrive_sv) );
  1928.     SUBCH_DATA_UNLOCK( subch, pl );
  1929. }
  1930. /* sc_open reserves a subchannel to send a request to the L1 (the
  1931.  * L1's response will arrive on the same channel).  The number
  1932.  * returned by sc_open is the system controller subchannel
  1933.  * acquired.
  1934.  */
  1935. int
  1936. sc_open( l1sc_t *sc, uint target )
  1937. {
  1938.     /* The kernel version implements a locking scheme to arbitrate
  1939.      * subchannel assignment.
  1940.      */
  1941.     int ch;
  1942.     unsigned long pl = 0;
  1943.     brl1_sch_t *subch;
  1944.     SUBCH_LOCK( sc, pl );
  1945.     /* Look for a free subchannel. Subchannels 0-15 are reserved
  1946.      * for other purposes.
  1947.      */
  1948.     for( subch = &(sc->subch[BRL1_CMD_SUBCH]), ch = BRL1_CMD_SUBCH; 
  1949. ch < BRL1_NUM_SUBCHANS; subch++, ch++ ) {
  1950.         if( subch->use == BRL1_SUBCH_FREE )
  1951.             break;
  1952.     }
  1953.     if( ch == BRL1_NUM_SUBCHANS ) {
  1954.         /* there were no subchannels available! */
  1955.         SUBCH_UNLOCK( sc, pl );
  1956.         return SC_NSUBCH;
  1957.     }
  1958.     subch->use = BRL1_SUBCH_RSVD;
  1959.     SUBCH_UNLOCK( sc, pl );
  1960.     atomic_set(&subch->packet_arrived, 0);
  1961.     subch->target = target;
  1962.     spin_lock_init( &(subch->data_lock) );
  1963.     sv_init( &(subch->arrive_sv), &(subch->data_lock), SV_MON_SPIN | SV_ORDER_FIFO /* | SV_INTS */);
  1964.     subch->tx_notify = NULL;
  1965.     subch->rx_notify = sc_data_ready;
  1966.     subch->iqp = snia_kmem_zalloc_node( sizeof(sc_cq_t), KM_NOSLEEP,
  1967.    NASID_TO_COMPACT_NODEID(sc->nasid) );
  1968.     ASSERT( subch->iqp );
  1969.     cq_init( subch->iqp );
  1970.     return ch;
  1971. }
  1972. /* sc_close frees a Bedrock<->L1 subchannel.
  1973.  */
  1974. int
  1975. sc_close( l1sc_t *sc, int ch )
  1976. {
  1977.     unsigned long pl = 0;
  1978.     brl1_sch_t *subch;
  1979.     SUBCH_LOCK( sc, pl );
  1980.     subch = &(sc->subch[ch]);
  1981.     if( subch->use != BRL1_SUBCH_RSVD ) {
  1982.         /* we're trying to close a subchannel that's not open */
  1983. SUBCH_UNLOCK( sc, pl );
  1984.         return SC_NOPEN;
  1985.     }
  1986.     atomic_set(&subch->packet_arrived, 0);
  1987.     subch->use = BRL1_SUBCH_FREE;
  1988.     sv_broadcast( &(subch->arrive_sv) );
  1989.     sv_destroy( &(subch->arrive_sv) );
  1990.     spin_lock_destroy( &(subch->data_lock) );
  1991.     ASSERT( subch->iqp && (subch->iqp != &sc->garbage_q) );
  1992.     snia_kmem_free( subch->iqp, sizeof(sc_cq_t) );
  1993.     subch->iqp = &sc->garbage_q;
  1994.     subch->tx_notify = NULL;
  1995.     subch->rx_notify = brl1_discard_packet;
  1996.     SUBCH_UNLOCK( sc, pl );
  1997.     return SC_SUCCESS;
  1998. }
  1999. /* sc_construct_msg builds a bedrock-to-L1 request in the supplied
  2000.  * buffer.  Returns the length of the message.  The
  2001.  * safest course when passing a buffer to be filled in is to use
  2002.  * BRL1_QSIZE as the buffer size.
  2003.  *
  2004.  * Command arguments are passed as type/argument pairs, i.e., to
  2005.  * pass the number 5 as an argument to an L1 command, call
  2006.  * sc_construct_msg as follows:
  2007.  *
  2008.  *    char msg[BRL1_QSIZE];
  2009.  *    msg_len = sc_construct_msg( msg,
  2010.  *   BRL1_QSIZE,
  2011.  *   target_component,
  2012.  *                                L1_ADDR_TASK_BOGUSTASK,
  2013.  *                                L1_BOGUSTASK_REQ_BOGUSREQ,
  2014.  *                                2,
  2015.  *                                L1_ARG_INT, 5 );
  2016.  *
  2017.  * To pass an additional ASCII argument, you'd do the following:
  2018.  *
  2019.  *    char *str;
  2020.  *    ... str points to a null-terminated ascii string ...
  2021.  *    msg_len = sc_construct_msg( msg,
  2022.  *                                BRL1_QSIZE,
  2023.  *   target_component,
  2024.  *                                L1_ADDR_TASK_BOGUSTASK,
  2025.  *                                L1_BOGUSTASK_REQ_BOGUSREQ,
  2026.  *                                4,
  2027.  *                                L1_ARG_INT, 5,
  2028.  *                                L1_ARG_ASCII, str );
  2029.  *
  2030.  * Finally, arbitrary data of unknown type is passed using the argtype
  2031.  * code L1_ARG_UNKNOWN, a data length, and a buffer pointer, e.g.
  2032.  *
  2033.  *    msg_len = sc_construct_msg( msg,
  2034.  *                                BRL1_QSIZE,
  2035.  *   target_component,
  2036.  *                                L1_ADDR_TASK_BOGUSTASK,
  2037.  *                                L1_BOGUSTASK_REQ_BOGUSREQ,
  2038.  *                                3,
  2039.  *                                L1_ARG_UNKNOWN, 32, bufptr );
  2040.  *
  2041.  * ...passes 32 bytes of data starting at bufptr.  Note that no string or
  2042.  * "unknown"-type argument should be long enough to overflow the message
  2043.  * buffer.
  2044.  *
  2045.  * To construct a message for an L1 command that requires no arguments,
  2046.  * you'd use the following:
  2047.  *
  2048.  *    msg_len = sc_construct_msg( msg,
  2049.  *                                BRL1_QSIZE,
  2050.  *   target_component,
  2051.  *                                L1_ADDR_TASK_BOGUSTASK,
  2052.  *                                L1_BOGUSTASK_REQ_BOGUSREQ,
  2053.  *                                0 );
  2054.  *
  2055.  * The final 0 means "no varargs".  Notice that this parameter is used to hold
  2056.  * the number of additional arguments to sc_construct_msg, _not_ the actual
  2057.  * number of arguments used by the L1 command (so 2 per L1_ARG_[INT,ASCII]
  2058.  * type argument, and 3 per L1_ARG_UNKOWN type argument).  A call to construct
  2059.  * an L1 command which required three integer arguments and two arguments of
  2060.  * some arbitrary (unknown) type would pass 12 as the value for this parameter.
  2061.  *
  2062.  * ENDIANNESS WARNING: The following code does a lot of copying back-and-forth
  2063.  * between byte arrays and four-byte big-endian integers.  Depending on the
  2064.  * system controller connection and endianness of future architectures, some
  2065.  * rewriting might be necessary.
  2066.  */
  2067. int
  2068. sc_construct_msg( l1sc_t  *sc, /* system controller struct */
  2069.   int    ch,           /* subchannel for this message */
  2070.   char    *msg,          /* message buffer */
  2071.   int      msg_len,      /* size of message buffer */
  2072.                   l1addr_t addr_task,    /* target system controller task */
  2073.                   short    req_code,     /* 16-bit request code */
  2074.                   int      req_nargs,    /* # of arguments (varargs) passed */
  2075.                   ... )                 /* any additional parameters */
  2076. {
  2077.     uint32_t buf32;   /* 32-bit buffer used to bounce things around */
  2078.     void *bufptr;       /* used to hold command argument addresses */
  2079.     va_list al;         /* variable argument list */
  2080.     int index;          /* current index into msg buffer */
  2081.     int argno;          /* current position in varargs list */
  2082.     int l1_argno;       /* running total of arguments to l1 */
  2083.     int l1_arg_t;       /* argument type/length */
  2084.     int l1_argno_byte;  /* offset of argument count byte */
  2085.     index = argno = 0;
  2086.     /* set up destination address */
  2087.     if( (msg_len -= sizeof( buf32 )) < 0 )
  2088. return -1;
  2089.     L1_ADDRESS_TO_TASK( &buf32, sc->subch[ch].target, addr_task );
  2090.     COPY_INT_TO_BUFFER(msg, index, buf32);
  2091.     /* copy request code */
  2092.     if( (msg_len -= 2) < 0 )
  2093. return( -1 );
  2094.     msg[index++] = ((req_code >> 8) & 0xff);
  2095.     msg[index++] = (req_code & 0xff);
  2096.     if( !req_nargs ) {
  2097.         return index;
  2098.     }
  2099.     /* reserve a byte for the argument count */
  2100.     if( (msg_len -= 1) < 0 )
  2101. return( -1 );
  2102.     l1_argno_byte = index++;
  2103.     l1_argno = 0;
  2104.     /* copy additional arguments */
  2105.     va_start( al, req_nargs );
  2106.     while( argno < req_nargs ) {
  2107.         l1_argno++;
  2108.         l1_arg_t = va_arg( al, int ); argno++;
  2109.         switch( l1_arg_t )
  2110.         {
  2111.           case L1_ARG_INT:
  2112.     if( (msg_len -= (sizeof( buf32 ) + 1)) < 0 )
  2113. return( -1 );
  2114.             msg[index++] = L1_ARG_INT;
  2115.             buf32 = (unsigned)va_arg( al, int ); argno++;
  2116.     COPY_INT_TO_BUFFER(msg, index, buf32);
  2117.             break;
  2118.           case L1_ARG_ASCII:
  2119.             bufptr = va_arg( al, char* ); argno++;
  2120.     if( (msg_len -= (strlen( bufptr ) + 2)) < 0 )
  2121. return( -1 );
  2122.             msg[index++] = L1_ARG_ASCII;
  2123.             strcpy( (char *)&(msg[index]), (char *)bufptr );
  2124.             index += (strlen( bufptr ) + 1); /* include terminating null */
  2125.             break;
  2126.   case L1_ARG_UNKNOWN:
  2127.               {
  2128.                   int arglen;
  2129.   
  2130.                   arglen = va_arg( al, int ); argno++;
  2131.                   bufptr = va_arg( al, void* ); argno++;
  2132.   if( (msg_len -= (arglen + 1)) < 0 )
  2133.       return( -1 );
  2134.                   msg[index++] = L1_ARG_UNKNOWN | arglen;
  2135.                   BCOPY( bufptr, &(msg[index]), arglen  );
  2136.                   index += arglen;
  2137.   break;
  2138.               }
  2139.   
  2140.   default: /* unhandled argument type */
  2141.     return -1;
  2142.         }
  2143.     }
  2144.     va_end( al );
  2145.     msg[l1_argno_byte] = l1_argno;
  2146.     return index;
  2147. }
  2148. /* sc_interpret_resp verifies an L1 response to a bedrock request, and
  2149.  * breaks the response data up into the constituent parts.  If the
  2150.  * response message indicates error, or if a mismatch is found in the
  2151.  * expected number and type of arguments, an error is returned.  The
  2152.  * arguments to this function work very much like the arguments to
  2153.  * sc_construct_msg, above, except that L1_ARG_INTs must be followed
  2154.  * by a _pointer_ to an integer that can be filled in by this function.
  2155.  */
  2156. int
  2157. sc_interpret_resp( char *resp,          /* buffer received from L1 */
  2158.                    int   resp_nargs,    /* number of _varargs_ passed in */
  2159.                    ... )
  2160. {
  2161.     uint32_t buf32;   /* 32-bit buffer used to bounce things around */
  2162.     void *bufptr;       /* used to hold response field addresses */
  2163.     va_list al;         /* variable argument list */
  2164.     int index;          /* current index into response buffer */
  2165.     int argno;          /* current position in varargs list */
  2166.     int l1_fldno;       /* number of resp fields received from l1 */
  2167.     int l1_fld_t;       /* field type/length */
  2168.     index = argno = 0;
  2169. #if defined(L1_DEBUG)
  2170. #define DUMP_RESP   
  2171.     {   
  2172. int ix;   
  2173.         char outbuf[512];   
  2174.         sprintf( outbuf, "sc_interpret_resp error line %d: ", __LINE__ ); 
  2175. for( ix = 0; ix < 16; ix++ ) {   
  2176.     sprintf( &outbuf[strlen(outbuf)], "%x ", resp[ix] );   
  2177. }   
  2178. printk( "%sn", outbuf );   
  2179.     }
  2180. #else
  2181. #define DUMP_RESP
  2182. #endif /* L1_DEBUG */
  2183.     /* check response code */
  2184.     COPY_BUFFER_TO_INT(resp, index, buf32);
  2185.     if( buf32 != L1_RESP_OK ) {
  2186. DUMP_RESP;
  2187.         return buf32;
  2188.     }
  2189.     /* get number of response fields */
  2190.     l1_fldno = resp[index++];
  2191.     va_start( al, resp_nargs );
  2192.     /* copy out response fields */
  2193.     while( argno < resp_nargs ) {
  2194.         l1_fldno--;
  2195.         l1_fld_t = va_arg( al, int ); argno++;
  2196.         switch( l1_fld_t )
  2197.         {
  2198.           case L1_ARG_INT:
  2199.             if( resp[index++] != L1_ARG_INT ) {
  2200.                 /* type mismatch */
  2201. va_end( al );
  2202. DUMP_RESP;
  2203. return -1;
  2204.             }
  2205.             bufptr = va_arg( al, int* ); argno++;
  2206.     COPY_BUFFER_TO_BUFFER(resp, index, bufptr);
  2207.             break;
  2208.           case L1_ARG_ASCII:
  2209.             if( resp[index++] != L1_ARG_ASCII ) {
  2210.                 /* type mismatch */
  2211. va_end( al );
  2212. DUMP_RESP;
  2213.                 return -1;
  2214.             }
  2215.             bufptr = va_arg( al, char* ); argno++;
  2216.             strcpy( (char *)bufptr, (char *)&(resp[index]) );
  2217.             /* include terminating null */
  2218.             index += (strlen( &(resp[index]) ) + 1);
  2219.             break;
  2220.           default:
  2221.     if( (l1_fld_t & L1_ARG_UNKNOWN) == L1_ARG_UNKNOWN )
  2222.     {
  2223. int *arglen;
  2224. arglen = va_arg( al, int* ); argno++;
  2225. bufptr = va_arg( al, void* ); argno++;
  2226. *arglen = ((resp[index++] & ~L1_ARG_UNKNOWN) & 0xff);
  2227. BCOPY( &(resp[index]), bufptr, *arglen  );
  2228. index += (*arglen);
  2229.     }
  2230.     
  2231.     else {
  2232. /* unhandled type */
  2233. va_end( al );
  2234. DUMP_RESP;
  2235. return -1;
  2236.     }
  2237.         }
  2238.     }
  2239.     va_end( al );
  2240.   
  2241.     if( (l1_fldno != 0) || (argno != resp_nargs) ) {
  2242.         /* wrong number of arguments */
  2243. DUMP_RESP;
  2244.         return -1;
  2245.     }
  2246.     return 0;
  2247. }
  2248. /* sc_send takes as arguments a system controller struct, a
  2249.  * buffer which contains a Bedrock<->L1 "request" message,
  2250.  * the message length, and the subchannel (presumably obtained
  2251.  * from an earlier invocation of sc_open) over which the
  2252.  * message is to be sent.  The final argument ("wait") indicates
  2253.  * whether the send is to be performed synchronously or not.
  2254.  *
  2255.  * sc_send returns either zero or an error value.  Synchronous sends 
  2256.  * (wait != 0) will not return until the data has actually been sent
  2257.  * to the UART.  Synchronous sends generally receive privileged
  2258.  * treatment.  The intent is that they be used sparingly, for such
  2259.  * purposes as kernel printf's (the "ducons" routines).  Run-of-the-mill
  2260.  * console output and L1 requests should NOT use a non-zero value
  2261.  * for wait.
  2262.  */
  2263. int
  2264. sc_send( l1sc_t *sc, int ch, char *msg, int len, int wait )
  2265. {
  2266.     char type_and_subch;
  2267.     int result;
  2268.     if( (ch < 0) || ( ch >= BRL1_NUM_SUBCHANS) ) {
  2269.         return SC_BADSUBCH;
  2270.     }
  2271.     /* Verify that this is an open subchannel
  2272.      */
  2273.     if( sc->subch[ch].use == BRL1_SUBCH_FREE ) {
  2274.         return SC_NOPEN;
  2275.     }
  2276.     type_and_subch = (BRL1_REQUEST | ((u_char)ch));
  2277.     result = brl1_send( sc, msg, len, type_and_subch, wait );
  2278.     /* If we sent as much as we asked to, return "ok". */
  2279.     if( result == len )
  2280. return( SC_SUCCESS );
  2281.     /* Or, if we sent less, than either the UART is busy or
  2282.      * we're trying to send too large a packet anyway.
  2283.      */
  2284.     else if( result >= 0 && result < len )
  2285. return( SC_BUSY );
  2286.     /* Or, if something else went wrong (result < 0), then
  2287.      * return that error value.
  2288.      */
  2289.     else
  2290. return( result );
  2291. }
  2292. /* subch_pull_msg pulls a message off the receive queue for subch
  2293.  * and places it the buffer pointed to by msg.  This routine should only
  2294.  * be called when the caller already knows a message is available on the
  2295.  * receive queue (and, in the kernel, only when the subchannel data lock
  2296.  * is held by the caller).
  2297.  */
  2298. static void
  2299. subch_pull_msg( brl1_sch_t *subch, char *msg, int *len )
  2300. {
  2301.     sc_cq_t *q;         /* receive queue */
  2302.     int before_wrap,    /* packet may be split into two different       */
  2303.         after_wrap;     /*   pieces to acommodate queue wraparound      */
  2304.     /* pull message off the receive queue */
  2305.     q = subch->iqp;
  2306.     cq_rem( q, *len );   /* remove length byte and store */
  2307.     cq_discard( q );     /* remove type/subch byte and discard */
  2308.     if ( *len > 0 )
  2309. (*len)--;        /* don't count type/subch byte in length returned */
  2310.     if( (q->opos + (*len)) > BRL1_QSIZE ) {
  2311.         before_wrap = BRL1_QSIZE - q->opos;
  2312.         after_wrap = (*len) - before_wrap;
  2313.     }
  2314.     else {
  2315.         before_wrap = (*len);
  2316.         after_wrap = 0;
  2317.     }
  2318.     BCOPY( q->buf + q->opos, msg, before_wrap  );
  2319.     if( after_wrap ) {
  2320.         BCOPY( q->buf, msg + before_wrap, after_wrap  );
  2321. q->opos = after_wrap;
  2322.     }
  2323.     else {
  2324. q->opos = ((q->opos + before_wrap) & (BRL1_QSIZE - 1));
  2325.     }
  2326.     atomic_dec(&(subch->packet_arrived));
  2327. }
  2328. /* sc_recv_poll can be called as a blocking or non-blocking function;
  2329.  * it attempts to pull a message off of the subchannel specified
  2330.  * in the argument list (ch).
  2331.  *
  2332.  * The "block" argument, if non-zero, is interpreted as a timeout
  2333.  * delay (to avoid permanent waiting).
  2334.  */
  2335. int
  2336. sc_recv_poll( l1sc_t *sc, int ch, char *msg, int *len, uint64_t block )
  2337. {
  2338.     int is_msg = 0;
  2339.     unsigned long pl = 0;
  2340.     brl1_sch_t *subch = &(sc->subch[ch]);
  2341.     rtc_time_t exp_time = rtc_time() + block;
  2342.     /* sanity check-- make sure this is an open subchannel */
  2343.     if( subch->use == BRL1_SUBCH_FREE )
  2344. return( SC_NOPEN );
  2345.     do {
  2346.         /* kick the next lower layer and see if it pulls anything in
  2347.          */
  2348. brl1_receive( sc, SERIAL_POLLED_MODE );
  2349. is_msg = atomic_read(&subch->packet_arrived);
  2350.     } while( block && !is_msg && (rtc_time() < exp_time) );
  2351.     if( !is_msg ) {
  2352. /* no message and we didn't care to wait for one */
  2353. return( SC_NMSG );
  2354.     }
  2355.     SUBCH_DATA_LOCK( subch, pl );
  2356.     subch_pull_msg( subch, msg, len );
  2357.     SUBCH_DATA_UNLOCK( subch, pl );
  2358.     return( SC_SUCCESS );
  2359. }
  2360.     
  2361. /* Like sc_recv_poll, sc_recv_intr can be called in either a blocking
  2362.  * or non-blocking mode.  Rather than polling until an appointed timeout,
  2363.  * however, sc_recv_intr sleeps on a syncrhonization variable until a
  2364.  * signal from the lower layer tells us that a packet has arrived.
  2365.  *
  2366.  * sc_recv_intr can't be used with remote (router) L1s.
  2367.  */
  2368. int
  2369. sc_recv_intr( l1sc_t *sc, int ch, char *msg, int *len, uint64_t block )
  2370. {
  2371.     int is_msg = 0;
  2372.     unsigned long pl = 0;
  2373.     brl1_sch_t *subch = &(sc->subch[ch]);
  2374.     do {
  2375. SUBCH_DATA_LOCK(subch, pl);
  2376. is_msg = atomic_read(&subch->packet_arrived);
  2377. if( !is_msg && block ) {
  2378.     /* wake me when you've got something */
  2379.     subch->rx_notify = sc_data_ready;
  2380.     sv_wait( &(subch->arrive_sv), 0, 0);
  2381.     if( subch->use == BRL1_SUBCH_FREE ) {
  2382. /* oops-- somebody closed our subchannel while we were
  2383.  * sleeping!
  2384.  */
  2385. /* no need to unlock since the channel's closed anyhow */
  2386. return( SC_NOPEN );
  2387.     }
  2388. }
  2389.     } while( !is_msg && block );
  2390.     if( !is_msg ) {
  2391. /* no message and we didn't care to wait for one */
  2392. SUBCH_DATA_UNLOCK( subch, pl );
  2393. return( SC_NMSG );
  2394.     }
  2395.     subch_pull_msg( subch, msg, len );
  2396.     SUBCH_DATA_UNLOCK( subch, pl );
  2397.     return( SC_SUCCESS );
  2398. }
  2399. /* sc_command implements a (blocking) combination of sc_send and sc_recv.
  2400.  * It is intended to be the SN1 equivalent of SN0's "elsc_command", which
  2401.  * issued a system controller command and then waited for a response from
  2402.  * the system controller before returning.
  2403.  *
  2404.  * cmd points to the outgoing command; resp points to the buffer in
  2405.  * which the response is to be stored.  Both buffers are assumed to
  2406.  * be the same length; if there is any doubt as to whether the
  2407.  * response buffer is long enough to hold the L1's response, then
  2408.  * make it BRL1_QSIZE bytes-- no Bedrock<->L1 message can be any
  2409.  * bigger.
  2410.  *
  2411.  * Be careful using the same buffer for both cmd and resp; it could get
  2412.  * hairy if there were ever an L1 command reqeuest that spanned multiple
  2413.  * packets.  (On the other hand, that would require some additional
  2414.  * rewriting of the L1 command interface anyway.)
  2415.  */
  2416. #define __RETRIES 50
  2417. #define __WAIT_SEND 1 // ( sc->uart != BRL1_LOCALHUB_UART )
  2418. #define __WAIT_RECV 10000000
  2419. int
  2420. sc_command( l1sc_t *sc, int ch, char *cmd, char *resp, int *len )
  2421. {
  2422.     int result;
  2423.     int retries;
  2424.     if ( IS_RUNNING_ON_SIMULATOR() )
  2425.      return SC_NMSG;
  2426.     retries = __RETRIES;
  2427.     while( (result = sc_send( sc, ch, cmd, *len, __WAIT_SEND )) < 0 ) {
  2428. if( result == SC_BUSY ) {
  2429.     retries--;
  2430.     if( retries <= 0 )
  2431. return result;
  2432.     uart_delay(500);
  2433. }
  2434. else {
  2435.     return result;
  2436. }
  2437.     }
  2438.     
  2439.     /* block on sc_recv_* */
  2440.     if( (sc->uart == BRL1_LOCALHUB_UART) && L1_interrupts_connected ) {
  2441. return( sc_recv_intr( sc, ch, resp, len, __WAIT_RECV ) );
  2442.     }
  2443.     else {
  2444. return( sc_recv_poll( sc, ch, resp, len, __WAIT_RECV ) );
  2445.     }
  2446. }
  2447. /* sc_command_kern is a knuckle-dragging, no-patience version of sc_command
  2448.  * used in situations where the kernel has a command that shouldn't be
  2449.  * delayed until the send buffer clears.  sc_command should be used instead
  2450.  * under most circumstances.
  2451.  */
  2452. int
  2453. sc_command_kern( l1sc_t *sc, int ch, char *cmd, char *resp, int *len )
  2454. {
  2455.     int result;
  2456.     if ( IS_RUNNING_ON_SIMULATOR() )
  2457.      return SC_NMSG;
  2458.     if( (result = sc_send( sc, ch, cmd, *len, 1 )) < 0 ) {
  2459. return result;
  2460.     }
  2461.     return( sc_recv_poll( sc, ch, resp, len, __WAIT_RECV ) );
  2462. }
  2463. /* sc_poll checks the queue corresponding to the given
  2464.  * subchannel to see if there's anything available.  If
  2465.  * not, it kicks the brl1 layer and then checks again.
  2466.  *
  2467.  * Returns 1 if input is available on the given queue,
  2468.  * 0 otherwise.
  2469.  */
  2470. int
  2471. sc_poll( l1sc_t *sc, int ch )
  2472. {
  2473.     brl1_sch_t *subch = &(sc->subch[ch]);
  2474.     if( atomic_read(&subch->packet_arrived) )
  2475. return 1;
  2476.     brl1_receive( sc, SERIAL_POLLED_MODE );
  2477.     if( atomic_read(&subch->packet_arrived) )
  2478. return 1;
  2479.     return 0;
  2480. }
  2481. /* for now, sc_init just calls brl1_init */
  2482. void
  2483. sc_init( l1sc_t *sc, nasid_t nasid, net_vec_t uart )
  2484. {
  2485.     if ( !IS_RUNNING_ON_SIMULATOR() )
  2486.      brl1_init( sc, nasid, uart );
  2487. }
  2488. /* sc_dispatch_env_event handles events sent from the system control
  2489.  * network's environmental monitor tasks.
  2490.  */
  2491. #if defined(LINUX_KERNEL_THREADS)
  2492. static void
  2493. sc_dispatch_env_event( uint code, int argc, char *args, int maxlen )
  2494. {
  2495.     int j, i = 0;
  2496.     uint32_t ESPcode;
  2497.     switch( code ) {
  2498. /* for now, all codes do the same thing: grab two arguments
  2499.  * and print a cmn_err_tag message */
  2500.       default:
  2501. /* check number of arguments */
  2502. if( argc != 2 ) {
  2503.     L1_DBG_PRF(( "sc_dispatch_env_event: "
  2504.  "expected 2 arguments, got %dn", argc ));
  2505.     return;
  2506. }
  2507. /* get ESP code (integer argument) */
  2508. if( args[i++] != L1_ARG_INT ) {
  2509.     L1_DBG_PRF(( "sc_dispatch_env_event: "
  2510.  "expected integer argumentn" ));
  2511.     return;
  2512. }
  2513. /* WARNING: highly endian */
  2514. COPY_BUFFER_TO_INT(args, i, ESPcode);
  2515. /* verify string argument */
  2516. if( args[i++] != L1_ARG_ASCII ) {
  2517.     L1_DBG_PRF(( "sc_dispatch_env_event: "
  2518.  "expected an ASCII stringn" ));
  2519.     return;
  2520. }
  2521. for( j = i; j < maxlen; j++ ) {
  2522.     if( args[j] == '' ) break; /* found string termination */
  2523. }
  2524. if( j == maxlen ) {
  2525.     j--;
  2526.     L1_DBG_PRF(( "sc_dispatch_env_event: "
  2527.  "message too long-- truncatingn" ));
  2528. }
  2529. /* strip out trailing cr/lf */
  2530. for( ; 
  2531.      j > 1 && ((args[j-1] == 0xd) || (args[j-1] == 0xa)); 
  2532.      j-- );
  2533. args[j] = '';
  2534. /* strip out leading cr/lf */
  2535. for( ;
  2536.      i < j && ((args[i] == 0xd) || (args[i] == 0xa));
  2537.      i++ );
  2538.     }
  2539. }
  2540. /* sc_event waits for events to arrive from the system controller, and
  2541.  * prints appropriate messages to the syslog.
  2542.  */
  2543. static void
  2544. sc_event( l1sc_t *sc, int ch )
  2545. {
  2546.     char event[BRL1_QSIZE];
  2547.     int i;
  2548.     int result;
  2549.     int event_len;
  2550.     uint32_t ev_src;
  2551.     uint32_t ev_code;
  2552.     int ev_argc;
  2553.     while(1) {
  2554. bzero( event, BRL1_QSIZE );
  2555. /*
  2556.  * wait for an event 
  2557.  */
  2558. result = sc_recv_intr( sc, ch, event, &event_len, 1 );
  2559. if( result != SC_SUCCESS ) {
  2560.     printk(KERN_WARNING  "Error receiving sysctl event on nasid %dn",
  2561.      sc->nasid );
  2562. }
  2563. else {
  2564.     /*
  2565.      * an event arrived; break it down into useful pieces
  2566.      */
  2567. #if defined(L1_DEBUG) && 0
  2568.     int ix;
  2569.     printf( "Event packet received:n" );
  2570.     for (ix = 0; ix < 64; ix++) {
  2571. printf( "%x%x ", ((event[ix] >> 4) & ((uint64_t)0xf)),
  2572. (event[ix] & ((uint64_t)0xf)) );
  2573. if( (ix % 16) == 0xf ) printf( "n" );
  2574.     }
  2575. #endif /* L1_DEBUG */
  2576.     i = 0;
  2577.     /* get event source */
  2578.     COPY_BUFFER_TO_INT(event, i, ev_src);
  2579.     COPY_BUFFER_TO_INT(event, i, ev_code);
  2580.     /* get arg count */
  2581.     ev_argc = (event[i++] & 0xffUL);
  2582.     
  2583.     /* dispatch events by task */
  2584.     switch( (ev_src & L1_ADDR_TASK_MASK) >> L1_ADDR_TASK_SHFT )
  2585.     {
  2586.       case L1_ADDR_TASK_ENV: /* environmental monitor event */
  2587. sc_dispatch_env_event( ev_code, ev_argc, &(event[i]), 
  2588.        BRL1_QSIZE - i );
  2589. break;
  2590.       default: /* unhandled task type */
  2591. L1_DBG_PRF(( "Unhandled event type received from system "
  2592.      "controllers: source task %xn",
  2593.      (ev_src & L1_ADDR_TASK_MASK) >> L1_ADDR_TASK_SHFT
  2594.    ));
  2595.     }
  2596. }
  2597.     }
  2598. }
  2599. /* sc_listen sets up a service thread to listen for incoming events.
  2600.  */
  2601. void
  2602. sc_listen( l1sc_t *sc )
  2603. {
  2604.     int result;
  2605.     unsigned long pl = 0;
  2606.     brl1_sch_t *subch;
  2607.     char        msg[BRL1_QSIZE];
  2608.     int         len;    /* length of message being sent */
  2609.     int         ch;     /* system controller subchannel used */
  2610.     extern int msc_shutdown_pri;
  2611.     /* grab the designated "event subchannel" */
  2612.     SUBCH_LOCK( sc, pl );
  2613.     subch = &(sc->subch[BRL1_EVENT_SUBCH]);
  2614.     if( subch->use != BRL1_SUBCH_FREE ) {
  2615. SUBCH_UNLOCK( sc, pl );
  2616. printk(KERN_WARNING  "sysctl event subchannel in use! "
  2617.  "Not monitoring sysctl events.n" );
  2618. return;
  2619.     }
  2620.     subch->use = BRL1_SUBCH_RSVD;
  2621.     SUBCH_UNLOCK( sc, pl );
  2622.     atomic_set(&subch->packet_arrived, 0);
  2623.     subch->target = BRL1_LOCALHUB_UART;
  2624.     spin_lock_init( &(subch->data_lock) );
  2625.     sv_init( &(subch->arrive_sv), &(subch->data_lock), SV_MON_SPIN | SV_ORDER_FIFO /* | SV_INTS */);
  2626.     subch->tx_notify = NULL;
  2627.     subch->rx_notify = sc_data_ready;
  2628.     subch->iqp = snia_kmem_zalloc_node( sizeof(sc_cq_t), KM_NOSLEEP,
  2629.    NASID_TO_COMPACT_NODEID(sc->nasid) );
  2630.     ASSERT( subch->iqp );
  2631.     cq_init( subch->iqp );
  2632.     /* set up a thread to listen for events */
  2633.     sthread_create( "sysctl event handler", 0, 0, 0, msc_shutdown_pri,
  2634.     KT_PS, (st_func_t *) sc_event,
  2635.     (void *)sc, (void *)(uint64_t)BRL1_EVENT_SUBCH, 0, 0 );
  2636.     /* signal the L1 to begin sending events */
  2637.     bzero( msg, BRL1_QSIZE );
  2638.     ch = sc_open( sc, L1_ADDR_LOCAL );
  2639.     if( (len = sc_construct_msg( sc, ch, msg, BRL1_QSIZE,
  2640.  L1_ADDR_TASK_GENERAL,
  2641.  L1_REQ_EVENT_SUBCH, 2,
  2642.  L1_ARG_INT, BRL1_EVENT_SUBCH )) < 0 )
  2643.     {
  2644. sc_close( sc, ch );
  2645. L1_DBG_PRF(( "Failure in sc_construct_msg (%d)n", len ));
  2646. goto err_return;
  2647.     }
  2648.     result = sc_command_kern( sc, ch, msg, msg, &len );
  2649.     if( result < 0 )
  2650.     {
  2651. sc_close( sc, ch );
  2652. L1_DBG_PRF(( "Failure in sc_command_kern (%d)n", result ));
  2653. goto err_return;
  2654.     }
  2655.     sc_close( sc, ch );
  2656.     result = sc_interpret_resp( msg, 0 );
  2657.     if( result < 0 )
  2658.     {
  2659. L1_DBG_PRF(( "Failure in sc_interpret_resp (%d)n", result ));
  2660. goto err_return;
  2661.     }
  2662.     /* everything went fine; just return */
  2663.     return;
  2664. err_return:
  2665.     /* there was a problem; complain */
  2666.     printk(KERN_WARNING  "failed to set sysctl event-monitoring subchannel.  "
  2667.      "Sysctl events will not be monitored.n" );
  2668. }
  2669. #endif /* LINUX_KERNEL_THREADS */