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

嵌入式Linux

开发平台:

Unix_Linux

  1. /******************************************************************************
  2.  *
  3.  * (C)Copyright 1998,1999 SysKonnect,
  4.  * a business unit of Schneider & Koch & Co. Datensysteme GmbH.
  5.  *
  6.  * See the file "skfddi.c" for further information.
  7.  *
  8.  * This program is free software; you can redistribute it and/or modify
  9.  * it under the terms of the GNU General Public License as published by
  10.  * the Free Software Foundation; either version 2 of the License, or
  11.  * (at your option) any later version.
  12.  *
  13.  * The information in this file is provided "AS IS" without warranty.
  14.  *
  15.  ******************************************************************************/
  16. /*
  17. PCM
  18. Physical Connection Management
  19. */
  20. /*
  21.  * Hardware independant state machine implemantation
  22.  * The following external SMT functions are referenced :
  23.  *
  24.  *  queue_event()
  25.  *  smt_timer_start()
  26.  *  smt_timer_stop()
  27.  *
  28.  *  The following external HW dependant functions are referenced :
  29.  *  sm_pm_control()
  30.  * sm_ph_linestate()
  31.  * sm_pm_ls_latch()
  32.  *
  33.  *  The following HW dependant events are required :
  34.  * PC_QLS
  35.  * PC_ILS
  36.  * PC_HLS
  37.  * PC_MLS
  38.  * PC_NSE
  39.  * PC_LEM
  40.  *
  41.  */
  42. #include "h/types.h"
  43. #include "h/fddi.h"
  44. #include "h/smc.h"
  45. #include "h/supern_2.h"
  46. #define KERNEL
  47. #include "h/smtstate.h"
  48. #ifndef lint
  49. static const char ID_sccs[] = "@(#)pcmplc.c 2.55 99/08/05 (C) SK " ;
  50. #endif
  51. #ifdef FDDI_MIB
  52. extern int snmp_fddi_trap(
  53. #ifdef ANSIC
  54. struct s_smc * smc, int  type, int  index
  55. #endif
  56. );
  57. #endif
  58. #ifdef CONCENTRATOR
  59. extern int plc_is_installed(
  60. #ifdef ANSIC
  61. struct s_smc *smc ,
  62. int p
  63. #endif
  64. ) ;
  65. #endif
  66. /*
  67.  * FSM Macros
  68.  */
  69. #define AFLAG (0x20)
  70. #define GO_STATE(x) (mib->fddiPORTPCMState = (x)|AFLAG)
  71. #define ACTIONS_DONE() (mib->fddiPORTPCMState &= ~AFLAG)
  72. #define ACTIONS(x) (x|AFLAG)
  73. /*
  74.  * PCM states
  75.  */
  76. #define PC0_OFF 0
  77. #define PC1_BREAK 1
  78. #define PC2_TRACE 2
  79. #define PC3_CONNECT 3
  80. #define PC4_NEXT 4
  81. #define PC5_SIGNAL 5
  82. #define PC6_JOIN 6
  83. #define PC7_VERIFY 7
  84. #define PC8_ACTIVE 8
  85. #define PC9_MAINT 9
  86. #ifdef DEBUG
  87. /*
  88.  * symbolic state names
  89.  */
  90. static const char * const pcm_states[] =  {
  91. "PC0_OFF","PC1_BREAK","PC2_TRACE","PC3_CONNECT","PC4_NEXT",
  92. "PC5_SIGNAL","PC6_JOIN","PC7_VERIFY","PC8_ACTIVE","PC9_MAINT"
  93. } ;
  94. /*
  95.  * symbolic event names
  96.  */
  97. static const char * const pcm_events[] = {
  98. "NONE","PC_START","PC_STOP","PC_LOOP","PC_JOIN","PC_SIGNAL",
  99. "PC_REJECT","PC_MAINT","PC_TRACE","PC_PDR",
  100. "PC_ENABLE","PC_DISABLE",
  101. "PC_QLS","PC_ILS","PC_MLS","PC_HLS","PC_LS_PDR","PC_LS_NONE",
  102. "PC_TIMEOUT_TB_MAX","PC_TIMEOUT_TB_MIN",
  103. "PC_TIMEOUT_C_MIN","PC_TIMEOUT_T_OUT",
  104. "PC_TIMEOUT_TL_MIN","PC_TIMEOUT_T_NEXT","PC_TIMEOUT_LCT",
  105. "PC_NSE","PC_LEM"
  106. } ;
  107. #endif
  108. #ifdef MOT_ELM
  109. /*
  110.  * PCL-S control register
  111.  * this register in the PLC-S controls the scrambling parameters
  112.  */
  113. #define PLCS_CONTROL_C_U 0
  114. #define PLCS_CONTROL_C_S (PL_C_SDOFF_ENABLE | PL_C_SDON_ENABLE | 
  115.  PL_C_CIPHER_ENABLE)
  116. #define PLCS_FASSERT_U 0
  117. #define PLCS_FASSERT_S 0xFd76 /* 52.0 us */
  118. #define PLCS_FDEASSERT_U 0
  119. #define PLCS_FDEASSERT_S 0
  120. #else /* nMOT_ELM */
  121. /*
  122.  * PCL-S control register
  123.  * this register in the PLC-S controls the scrambling parameters
  124.  * can be patched for ANSI compliance if standard changes
  125.  */
  126. static const u_char plcs_control_c_u[17] = "PLC_CNTRL_C_U=" ;
  127. static const u_char plcs_control_c_s[17] = "PLC_CNTRL_C_S=12" ;
  128. #define PLCS_CONTROL_C_U (plcs_control_c_u[14] | (plcs_control_c_u[15]<<8))
  129. #define PLCS_CONTROL_C_S (plcs_control_c_s[14] | (plcs_control_c_s[15]<<8))
  130. #endif /* nMOT_ELM */
  131. /*
  132.  * external vars
  133.  */
  134. /* struct definition see 'cmtdef.h' (also used by CFM) */
  135. #define PS_OFF 0
  136. #define PS_BIT3 1
  137. #define PS_BIT4 2
  138. #define PS_BIT7 3
  139. #define PS_LCT 4
  140. #define PS_BIT8 5
  141. #define PS_JOIN 6
  142. #define PS_ACTIVE 7
  143. #define LCT_LEM_MAX 255
  144. /*
  145.  * PLC timing parameter
  146.  */
  147. #define PLC_MS(m) ((int)((0x10000L-(m*100000L/2048))))
  148. #define SLOW_TL_MIN PLC_MS(6)
  149. #define SLOW_C_MIN PLC_MS(10)
  150. static const struct plt {
  151. int timer ; /* relative plc timer address */
  152. int para ; /* default timing parameters */
  153. } pltm[] = {
  154. { PL_C_MIN, SLOW_C_MIN }, /* min t. to remain Connect State */
  155. { PL_TL_MIN, SLOW_TL_MIN }, /* min t. to transmit a Line State */
  156. { PL_TB_MIN, TP_TB_MIN }, /* min break time */
  157. { PL_T_OUT, TP_T_OUT }, /* Signaling timeout */
  158. { PL_LC_LENGTH, TP_LC_LENGTH }, /* Link Confidence Test Time */
  159. { PL_T_SCRUB, TP_T_SCRUB }, /* Scrub Time == MAC TVX time ! */
  160. { PL_NS_MAX, TP_NS_MAX }, /* max t. that noise is tolerated */
  161. { 0,0 }
  162. } ;
  163. /*
  164.  * interrupt mask
  165.  */
  166. #ifdef SUPERNET_3
  167. /*
  168.  * Do we need the EBUF error during signaling, too, to detect SUPERNET_3
  169.  * PLL bug?
  170.  */
  171. static int plc_imsk_na = PL_PCM_CODE | PL_TRACE_PROP | PL_PCM_BREAK |
  172. PL_PCM_ENABLED | PL_SELF_TEST | PL_EBUF_ERR;
  173. #else /* SUPERNET_3 */
  174. /*
  175.  * We do NOT need the elasticity buffer error during signaling.
  176.  */
  177. static int plc_imsk_na = PL_PCM_CODE | PL_TRACE_PROP | PL_PCM_BREAK |
  178. PL_PCM_ENABLED | PL_SELF_TEST ;
  179. #endif /* SUPERNET_3 */
  180. static int plc_imsk_act = PL_PCM_CODE | PL_TRACE_PROP | PL_PCM_BREAK |
  181. PL_PCM_ENABLED | PL_SELF_TEST | PL_EBUF_ERR;
  182. /* external functions */
  183. void all_selection_criteria ();
  184. /* internal functions */
  185. static void pcm_fsm() ;
  186. static void pc_rcode_actions() ;
  187. static void pc_tcode_actions() ;
  188. static void reset_lem_struct() ;
  189. static void plc_init() ;
  190. static void sm_ph_lem_start() ;
  191. static void sm_ph_lem_stop() ;
  192. static void sm_ph_linestate() ;
  193. static void real_init_plc() ;
  194. /*
  195.  * SMT timer interface
  196.  *      start PCM timer 0
  197.  */
  198. static void start_pcm_timer0(smc,value,event,phy)
  199. struct s_smc *smc ;
  200. u_long value;
  201. int event;
  202. struct s_phy *phy;
  203. {
  204. phy->timer0_exp = FALSE ;       /* clear timer event flag */
  205. smt_timer_start(smc,&phy->pcm_timer0,value,
  206. EV_TOKEN(EVENT_PCM+phy->np,event)) ;
  207. }
  208. /*
  209.  * SMT timer interface
  210.  *      stop PCM timer 0
  211.  */
  212. static void stop_pcm_timer0(smc,phy)
  213. struct s_smc *smc ;
  214. struct s_phy *phy;
  215. {
  216. if (phy->pcm_timer0.tm_active)
  217. smt_timer_stop(smc,&phy->pcm_timer0) ;
  218. }
  219. /*
  220. init PCM state machine (called by driver)
  221. clear all PCM vars and flags
  222. */
  223. void pcm_init(smc)
  224. struct s_smc *smc ;
  225. {
  226. int i ;
  227. int np ;
  228. struct s_phy *phy ;
  229. struct fddi_mib_p *mib ;
  230. for (np = 0,phy = smc->y ; np < NUMPHYS ; np++,phy++) {
  231. /* Indicates the type of PHY being used */
  232. mib = phy->mib ;
  233. mib->fddiPORTPCMState = ACTIONS(PC0_OFF) ;
  234. phy->np = np ;
  235. switch (smc->s.sas) {
  236. #ifdef CONCENTRATOR
  237. case SMT_SAS :
  238. mib->fddiPORTMy_Type = (np == PS) ? TS : TM ;
  239. break ;
  240. case SMT_DAS :
  241. mib->fddiPORTMy_Type = (np == PA) ? TA :
  242. (np == PB) ? TB : TM ;
  243. break ;
  244. case SMT_NAC :
  245. mib->fddiPORTMy_Type = TM ;
  246. break;
  247. #else
  248. case SMT_SAS :
  249. mib->fddiPORTMy_Type = (np == PS) ? TS : TNONE ;
  250. mib->fddiPORTHardwarePresent = (np == PS) ? TRUE :
  251. FALSE ;
  252. #ifndef SUPERNET_3
  253. smc->y[PA].mib->fddiPORTPCMState = PC0_OFF ;
  254. #else
  255. smc->y[PB].mib->fddiPORTPCMState = PC0_OFF ;
  256. #endif
  257. break ;
  258. case SMT_DAS :
  259. mib->fddiPORTMy_Type = (np == PB) ? TB : TA ;
  260. break ;
  261. #endif
  262. }
  263. /*
  264.  * set PMD-type
  265.  */
  266. phy->pmd_scramble = 0 ;
  267. switch (phy->pmd_type[PMD_SK_PMD]) {
  268. case 'P' :
  269. mib->fddiPORTPMDClass = MIB_PMDCLASS_MULTI ;
  270. break ;
  271. case 'L' :
  272. mib->fddiPORTPMDClass = MIB_PMDCLASS_LCF ;
  273. break ;
  274. case 'D' :
  275. mib->fddiPORTPMDClass = MIB_PMDCLASS_TP ;
  276. break ;
  277. case 'S' :
  278. mib->fddiPORTPMDClass = MIB_PMDCLASS_TP ;
  279. phy->pmd_scramble = TRUE ;
  280. break ;
  281. case 'U' :
  282. mib->fddiPORTPMDClass = MIB_PMDCLASS_TP ;
  283. phy->pmd_scramble = TRUE ;
  284. break ;
  285. case '1' :
  286. mib->fddiPORTPMDClass = MIB_PMDCLASS_SINGLE1 ;
  287. break ;
  288. case '2' :
  289. mib->fddiPORTPMDClass = MIB_PMDCLASS_SINGLE2 ;
  290. break ;
  291. case '3' :
  292. mib->fddiPORTPMDClass = MIB_PMDCLASS_SINGLE2 ;
  293. break ;
  294. case '4' :
  295. mib->fddiPORTPMDClass = MIB_PMDCLASS_SINGLE1 ;
  296. break ;
  297. case 'H' :
  298. mib->fddiPORTPMDClass = MIB_PMDCLASS_UNKNOWN ;
  299. break ;
  300. case 'I' :
  301. mib->fddiPORTPMDClass = MIB_PMDCLASS_TP ;
  302. break ;
  303. case 'G' :
  304. mib->fddiPORTPMDClass = MIB_PMDCLASS_TP ;
  305. break ;
  306. default:
  307. mib->fddiPORTPMDClass = MIB_PMDCLASS_UNKNOWN ;
  308. break ;
  309. }
  310. /*
  311.  * A and B port can be on primary and secondary path
  312.  */
  313. switch (mib->fddiPORTMy_Type) {
  314. case TA :
  315. mib->fddiPORTAvailablePaths |= MIB_PATH_S ;
  316. mib->fddiPORTRequestedPaths[1] = MIB_P_PATH_LOCAL ;
  317. mib->fddiPORTRequestedPaths[2] =
  318. MIB_P_PATH_LOCAL |
  319. MIB_P_PATH_CON_ALTER |
  320. MIB_P_PATH_SEC_PREFER ;
  321. mib->fddiPORTRequestedPaths[3] =
  322. MIB_P_PATH_LOCAL |
  323. MIB_P_PATH_CON_ALTER |
  324. MIB_P_PATH_SEC_PREFER |
  325. MIB_P_PATH_THRU ;
  326. break ;
  327. case TB :
  328. mib->fddiPORTAvailablePaths |= MIB_PATH_S ;
  329. mib->fddiPORTRequestedPaths[1] = MIB_P_PATH_LOCAL ;
  330. mib->fddiPORTRequestedPaths[2] =
  331. MIB_P_PATH_LOCAL |
  332. MIB_P_PATH_PRIM_PREFER ;
  333. mib->fddiPORTRequestedPaths[3] =
  334. MIB_P_PATH_LOCAL |
  335. MIB_P_PATH_PRIM_PREFER |
  336. MIB_P_PATH_CON_PREFER |
  337. MIB_P_PATH_THRU ;
  338. break ;
  339. case TS :
  340. mib->fddiPORTAvailablePaths |= MIB_PATH_S ;
  341. mib->fddiPORTRequestedPaths[1] = MIB_P_PATH_LOCAL ;
  342. mib->fddiPORTRequestedPaths[2] =
  343. MIB_P_PATH_LOCAL |
  344. MIB_P_PATH_CON_ALTER |
  345. MIB_P_PATH_PRIM_PREFER ;
  346. mib->fddiPORTRequestedPaths[3] =
  347. MIB_P_PATH_LOCAL |
  348. MIB_P_PATH_CON_ALTER |
  349. MIB_P_PATH_PRIM_PREFER ;
  350. break ;
  351. case TM :
  352. mib->fddiPORTRequestedPaths[1] = MIB_P_PATH_LOCAL ;
  353. mib->fddiPORTRequestedPaths[2] =
  354. MIB_P_PATH_LOCAL |
  355. MIB_P_PATH_SEC_ALTER |
  356. MIB_P_PATH_PRIM_ALTER ;
  357. mib->fddiPORTRequestedPaths[3] = 0 ;
  358. break ;
  359. }
  360. phy->pc_lem_fail = FALSE ;
  361. mib->fddiPORTPCMStateX = mib->fddiPORTPCMState ;
  362. mib->fddiPORTLCTFail_Ct = 0 ;
  363. mib->fddiPORTBS_Flag = 0 ;
  364. mib->fddiPORTCurrentPath = MIB_PATH_ISOLATED ;
  365. mib->fddiPORTNeighborType = TNONE ;
  366. phy->ls_flag = 0 ;
  367. phy->rc_flag = 0 ;
  368. phy->tc_flag = 0 ;
  369. phy->td_flag = 0 ;
  370. if (np >= PM)
  371. phy->phy_name = '0' + np - PM ;
  372. else
  373. phy->phy_name = 'A' + np ;
  374. phy->wc_flag = FALSE ; /* set by SMT */
  375. memset((char *)&phy->lem,0,sizeof(struct lem_counter)) ;
  376. reset_lem_struct(phy) ;
  377. memset((char *)&phy->plc,0,sizeof(struct s_plc)) ;
  378. phy->plc.p_state = PS_OFF ;
  379. for (i = 0 ; i < NUMBITS ; i++) {
  380. phy->t_next[i] = 0 ;
  381. }
  382. }
  383. real_init_plc(smc) ;
  384. }
  385. void init_plc(smc)
  386. struct s_smc *smc ;
  387. {
  388. SK_UNUSED(smc) ;
  389. /*
  390.  * dummy
  391.  * this is an obsolete public entry point that has to remain
  392.  * for compat. It is used by various drivers.
  393.  * the work is now done in real_init_plc()
  394.  * which is called from pcm_init() ;
  395.  */
  396. }
  397. static void real_init_plc(smc)
  398. struct s_smc *smc ;
  399. {
  400. int p ;
  401. for (p = 0 ; p < NUMPHYS ; p++)
  402. plc_init(smc,p) ;
  403. }
  404. static void plc_init(smc,p)
  405. struct s_smc *smc ;
  406. int p;
  407. {
  408. int i ;
  409. #ifndef MOT_ELM
  410. int rev ; /* Revision of PLC-x */
  411. #endif /* MOT_ELM */
  412. /* transit PCM state machine to MAINT state */
  413. outpw(PLC(p,PL_CNTRL_B),0) ;
  414. outpw(PLC(p,PL_CNTRL_B),PL_PCM_STOP) ;
  415. outpw(PLC(p,PL_CNTRL_A),0) ;
  416. /*
  417.  * if PLC-S then set control register C
  418.  */
  419. #ifndef MOT_ELM
  420. rev = inpw(PLC(p,PL_STATUS_A)) & PLC_REV_MASK ;
  421. if (rev != PLC_REVISION_A)
  422. #endif /* MOT_ELM */
  423. {
  424. if (smc->y[p].pmd_scramble) {
  425. outpw(PLC(p,PL_CNTRL_C),PLCS_CONTROL_C_S) ;
  426. #ifdef MOT_ELM
  427. outpw(PLC(p,PL_T_FOT_ASS),PLCS_FASSERT_S) ;
  428. outpw(PLC(p,PL_T_FOT_DEASS),PLCS_FDEASSERT_S) ;
  429. #endif /* MOT_ELM */
  430. }
  431. else {
  432. outpw(PLC(p,PL_CNTRL_C),PLCS_CONTROL_C_U) ;
  433. #ifdef MOT_ELM
  434. outpw(PLC(p,PL_T_FOT_ASS),PLCS_FASSERT_U) ;
  435. outpw(PLC(p,PL_T_FOT_DEASS),PLCS_FDEASSERT_U) ;
  436. #endif /* MOT_ELM */
  437. }
  438. }
  439. /*
  440.  * set timer register
  441.  */
  442. for ( i = 0 ; pltm[i].timer; i++) /* set timer parameter reg */
  443. outpw(PLC(p,pltm[i].timer),pltm[i].para) ;
  444. (void)inpw(PLC(p,PL_INTR_EVENT)) ; /* clear interrupt event reg */
  445. plc_clear_irq(smc,p) ;
  446. outpw(PLC(p,PL_INTR_MASK),plc_imsk_na); /* enable non active irq's */
  447. /*
  448.  * if PCM is configured for class s, it will NOT go to the
  449.  * REMOVE state if offline (page 3-36;)
  450.  * in the concentrator, all inactive PHYS always must be in
  451.  * the remove state
  452.  * there's no real need to use this feature at all ..
  453.  */
  454. #ifndef CONCENTRATOR
  455. if ((smc->s.sas == SMT_SAS) && (p == PS)) {
  456. outpw(PLC(p,PL_CNTRL_B),PL_CLASS_S) ;
  457. }
  458. #endif
  459. }
  460. /*
  461.  * control PCM state machine
  462.  */
  463. static void plc_go_state(smc,p,state)
  464. struct s_smc *smc ;
  465. int p;
  466. int state;
  467. {
  468. HW_PTR port ;
  469. int val ;
  470. SK_UNUSED(smc) ;
  471. port = (HW_PTR) (PLC(p,PL_CNTRL_B)) ;
  472. val = inpw(port) & ~(PL_PCM_CNTRL | PL_MAINT) ;
  473. outpw(port,val) ;
  474. outpw(port,val | state) ;
  475. }
  476. /*
  477.  * read current line state (called by ECM & PCM)
  478.  */
  479. int sm_pm_get_ls(smc,phy)
  480. struct s_smc *smc ;
  481. int phy;
  482. {
  483. int state ;
  484. #ifdef CONCENTRATOR
  485. if (!plc_is_installed(smc,phy))
  486. return(PC_QLS) ;
  487. #endif
  488. state = inpw(PLC(phy,PL_STATUS_A)) & PL_LINE_ST ;
  489. switch(state) {
  490. case PL_L_QLS:
  491. state = PC_QLS ;
  492. break ;
  493. case PL_L_MLS:
  494. state = PC_MLS ;
  495. break ;
  496. case PL_L_HLS:
  497. state = PC_HLS ;
  498. break ;
  499. case PL_L_ILS4:
  500. case PL_L_ILS16:
  501. state = PC_ILS ;
  502. break ;
  503. case PL_L_ALS:
  504. state = PC_LS_PDR ;
  505. break ;
  506. default :
  507. state = PC_LS_NONE ;
  508. }
  509. return(state) ;
  510. }
  511. static int plc_send_bits(smc,phy,len)
  512. struct s_smc *smc ;
  513. struct s_phy *phy;
  514. int len;
  515. {
  516. int np = phy->np ; /* PHY index */
  517. int n ;
  518. int i ;
  519. SK_UNUSED(smc) ;
  520. /* create bit vector */
  521. for (i = len-1,n = 0 ; i >= 0 ; i--) {
  522. n = (n<<1) | phy->t_val[phy->bitn+i] ;
  523. }
  524. if (inpw(PLC(np,PL_STATUS_B)) & PL_PCM_SIGNAL) {
  525. #if 0
  526. printf("PL_PCM_SIGNAL is setn") ;
  527. #endif
  528. return(1) ;
  529. }
  530. /* write bit[n] & length = 1 to regs */
  531. outpw(PLC(np,PL_VECTOR_LEN),len-1) ; /* len=nr-1 */
  532. outpw(PLC(np,PL_XMIT_VECTOR),n) ;
  533. #ifdef DEBUG
  534. #if 1
  535. #ifdef DEBUG_BRD
  536. if (smc->debug.d_plc & 0x80)
  537. #else
  538. if (debug.d_plc & 0x80)
  539. #endif
  540. printf("SIGNALING bit %d .. %dn",phy->bitn,phy->bitn+len-1) ;
  541. #endif
  542. #endif
  543. return(0) ;
  544. }
  545. /*
  546.  * config plc muxes
  547.  */
  548. void plc_config_mux(smc,mux)
  549. struct s_smc *smc ;
  550. int mux ;
  551. {
  552. if (smc->s.sas != SMT_DAS)
  553. return ;
  554. if (mux == MUX_WRAPB) {
  555. SETMASK(PLC(PA,PL_CNTRL_B),PL_CONFIG_CNTRL,PL_CONFIG_CNTRL) ;
  556. SETMASK(PLC(PA,PL_CNTRL_A),PL_SC_REM_LOOP,PL_SC_REM_LOOP) ;
  557. }
  558. else {
  559. CLEAR(PLC(PA,PL_CNTRL_B),PL_CONFIG_CNTRL) ;
  560. CLEAR(PLC(PA,PL_CNTRL_A),PL_SC_REM_LOOP) ;
  561. }
  562. CLEAR(PLC(PB,PL_CNTRL_B),PL_CONFIG_CNTRL) ;
  563. CLEAR(PLC(PB,PL_CNTRL_A),PL_SC_REM_LOOP) ;
  564. }
  565. /*
  566. PCM state machine
  567. called by dispatcher  & fddi_init() (driver)
  568. do
  569. display state change
  570. process event
  571. until SM is stable
  572. */
  573. void pcm(smc,np,event)
  574. struct s_smc *smc ;
  575. const int np;
  576. int event;
  577. {
  578. int state ;
  579. int oldstate ;
  580. struct s_phy *phy ;
  581. struct fddi_mib_p *mib ;
  582. #ifndef CONCENTRATOR
  583. /*
  584.  * ignore 2nd PHY if SAS
  585.  */
  586. if ((np != PS) && (smc->s.sas == SMT_SAS))
  587. return ;
  588. #endif
  589. phy = &smc->y[np] ;
  590. mib = phy->mib ;
  591. oldstate = mib->fddiPORTPCMState ;
  592. do {
  593. DB_PCM("PCM %c: state %s",
  594. phy->phy_name,
  595. (mib->fddiPORTPCMState & AFLAG) ? "ACTIONS " : "") ;
  596. DB_PCM("%s, event %sn",
  597. pcm_states[mib->fddiPORTPCMState & ~AFLAG],
  598. pcm_events[event]) ;
  599. state = mib->fddiPORTPCMState ;
  600. pcm_fsm(smc,phy,event) ;
  601. event = 0 ;
  602. } while (state != mib->fddiPORTPCMState) ;
  603. /*
  604.  * because the PLC does the bit signaling for us,
  605.  * we're always in SIGNAL state
  606.  * the MIB want's to see CONNECT
  607.  * we therefore fake an entry in the MIB
  608.  */
  609. if (state == PC5_SIGNAL)
  610. mib->fddiPORTPCMStateX = PC3_CONNECT ;
  611. else
  612. mib->fddiPORTPCMStateX = state ;
  613. #ifndef SLIM_SMT
  614. /*
  615.  * path change
  616.  */
  617. if ( mib->fddiPORTPCMState != oldstate &&
  618. ((oldstate == PC8_ACTIVE) || (mib->fddiPORTPCMState == PC8_ACTIVE))) {
  619. smt_srf_event(smc,SMT_EVENT_PORT_PATH_CHANGE,
  620. (int) (INDEX_PORT+ phy->np),0) ;
  621. }
  622. #endif
  623. #ifdef FDDI_MIB
  624. /* check whether a snmp-trap has to be sent */
  625. if ( mib->fddiPORTPCMState != oldstate ) {
  626. /* a real state change took place */
  627. DB_SNMP ("PCM from %d to %dn", oldstate, mib->fddiPORTPCMState);
  628. if ( mib->fddiPORTPCMState == PC0_OFF ) {
  629. /* send first trap */
  630. snmp_fddi_trap (smc, 1, (int) mib->fddiPORTIndex );
  631. } else if ( oldstate == PC0_OFF ) {
  632. /* send second trap */
  633. snmp_fddi_trap (smc, 2, (int) mib->fddiPORTIndex );
  634. } else if ( mib->fddiPORTPCMState != PC2_TRACE &&
  635. oldstate == PC8_ACTIVE ) {
  636. /* send third trap */
  637. snmp_fddi_trap (smc, 3, (int) mib->fddiPORTIndex );
  638. } else if ( mib->fddiPORTPCMState == PC8_ACTIVE ) {
  639. /* send fourth trap */
  640. snmp_fddi_trap (smc, 4, (int) mib->fddiPORTIndex );
  641. }
  642. }
  643. #endif
  644. pcm_state_change(smc,np,state) ;
  645. }
  646. /*
  647.  * PCM state machine
  648.  */
  649. static void pcm_fsm(smc,phy,cmd)
  650. struct s_smc *smc ;
  651. struct s_phy *phy;
  652. int cmd;
  653. {
  654. int i ;
  655. int np = phy->np ; /* PHY index */
  656. struct s_plc *plc ;
  657. struct fddi_mib_p *mib ;
  658. #ifndef MOT_ELM
  659. u_short plc_rev ; /* Revision of the plc */
  660. #endif /* nMOT_ELM */
  661. plc = &phy->plc ;
  662. mib = phy->mib ;
  663. /*
  664.  * general transitions independant of state
  665.  */
  666. switch (cmd) {
  667. case PC_STOP :
  668. /*PC00-PC80*/
  669. if (mib->fddiPORTPCMState != PC9_MAINT) {
  670. GO_STATE(PC0_OFF) ;
  671. AIX_EVENT(smc, (u_long) FDDI_RING_STATUS, (u_long)
  672. FDDI_PORT_EVENT, (u_long) FDDI_PORT_STOP,
  673. smt_get_port_event_word(smc));
  674. }
  675. return ;
  676. case PC_START :
  677. /*PC01-PC81*/
  678. if (mib->fddiPORTPCMState != PC9_MAINT)
  679. GO_STATE(PC1_BREAK) ;
  680. return ;
  681. case PC_DISABLE :
  682. /* PC09-PC99 */
  683. GO_STATE(PC9_MAINT) ;
  684. AIX_EVENT(smc, (u_long) FDDI_RING_STATUS, (u_long)
  685. FDDI_PORT_EVENT, (u_long) FDDI_PORT_DISABLED,
  686. smt_get_port_event_word(smc));
  687. return ;
  688. case PC_TIMEOUT_LCT :
  689. /* if long or extended LCT */
  690. stop_pcm_timer0(smc,phy) ;
  691. CLEAR(PLC(np,PL_CNTRL_B),PL_LONG) ;
  692. /* end of LCT is indicate by PCM_CODE (initiate PCM event) */
  693. return ;
  694. }
  695. switch(mib->fddiPORTPCMState) {
  696. case ACTIONS(PC0_OFF) :
  697. stop_pcm_timer0(smc,phy) ;
  698. outpw(PLC(np,PL_CNTRL_A),0) ;
  699. CLEAR(PLC(np,PL_CNTRL_B),PL_PC_JOIN) ;
  700. CLEAR(PLC(np,PL_CNTRL_B),PL_LONG) ;
  701. sm_ph_lem_stop(smc,np) ; /* disable LEM */
  702. phy->cf_loop = FALSE ;
  703. phy->cf_join = FALSE ;
  704. queue_event(smc,EVENT_CFM,CF_JOIN+np) ;
  705. plc_go_state(smc,np,PL_PCM_STOP) ;
  706. mib->fddiPORTConnectState = PCM_DISABLED ;
  707. ACTIONS_DONE() ;
  708. break ;
  709. case PC0_OFF:
  710. /*PC09*/
  711. if (cmd == PC_MAINT) {
  712. GO_STATE(PC9_MAINT) ;
  713. break ;
  714. }
  715. break ;
  716. case ACTIONS(PC1_BREAK) :
  717. /* Stop the LCT timer if we came from Signal state */
  718. stop_pcm_timer0(smc,phy) ;
  719. ACTIONS_DONE() ;
  720. plc_go_state(smc,np,0) ;
  721. CLEAR(PLC(np,PL_CNTRL_B),PL_PC_JOIN) ;
  722. CLEAR(PLC(np,PL_CNTRL_B),PL_LONG) ;
  723. sm_ph_lem_stop(smc,np) ; /* disable LEM */
  724. /*
  725.  * if vector is already loaded, go to OFF to clear PCM_SIGNAL
  726.  */
  727. #if 0
  728. if (inpw(PLC(np,PL_STATUS_B)) & PL_PCM_SIGNAL) {
  729. plc_go_state(smc,np,PL_PCM_STOP) ;
  730. /* TB_MIN ? */
  731. }
  732. #endif
  733. /*
  734.  * Go to OFF state in any case.
  735.  */
  736. plc_go_state(smc,np,PL_PCM_STOP) ;
  737. if (mib->fddiPORTPC_Withhold == PC_WH_NONE)
  738. mib->fddiPORTConnectState = PCM_CONNECTING ;
  739. phy->cf_loop = FALSE ;
  740. phy->cf_join = FALSE ;
  741. queue_event(smc,EVENT_CFM,CF_JOIN+np) ;
  742. phy->ls_flag = FALSE ;
  743. phy->pc_mode = PM_NONE ; /* needed by CFM */
  744. phy->bitn = 0 ; /* bit signaling start bit */
  745. for (i = 0 ; i < 3 ; i++)
  746. pc_tcode_actions(smc,i,phy) ;
  747. /* Set the non-active interrupt mask register */
  748. outpw(PLC(np,PL_INTR_MASK),plc_imsk_na) ;
  749. /*
  750.  * If the LCT was stopped. There might be a
  751.  * PCM_CODE interrupt event present.
  752.  * This must be cleared.
  753.  */
  754. (void)inpw(PLC(np,PL_INTR_EVENT)) ;
  755. #ifndef MOT_ELM
  756. /* Get the plc revision for revision dependent code */
  757. plc_rev = inpw(PLC(np,PL_STATUS_A)) & PLC_REV_MASK ;
  758. if (plc_rev != PLC_REV_SN3)
  759. #endif /* MOT_ELM */
  760. {
  761. /*
  762.  * No supernet III PLC, so set Xmit verctor and
  763.  * length BEFORE starting the state machine.
  764.  */
  765. if (plc_send_bits(smc,phy,3)) {
  766. return ;
  767. }
  768. }
  769. /*
  770.  * Now give the Start command.
  771.  * - The start command shall be done before setting the bits
  772.  *   to be signaled. (In PLC-S description and PLCS in SN3.
  773.  * - The start command shall be issued AFTER setting the
  774.  *   XMIT vector and the XMIT length register.
  775.  *
  776.  * We do it exactly according this specs for the old PLC and
  777.  * the new PLCS inside the SN3.
  778.  * For the usual PLCS we try it the way it is done for the
  779.  * old PLC and set the XMIT registers again, if the PLC is
  780.  * not in SIGNAL state. This is done according to an PLCS
  781.  * errata workaround.
  782.  */
  783. plc_go_state(smc,np,PL_PCM_START) ;
  784. /*
  785.  * workaround for PLC-S eng. sample errata
  786.  */
  787. #ifdef MOT_ELM
  788. if (!(inpw(PLC(np,PL_STATUS_B)) & PL_PCM_SIGNAL))
  789. #else /* nMOT_ELM */
  790. if (((inpw(PLC(np,PL_STATUS_A)) & PLC_REV_MASK) !=
  791. PLC_REVISION_A) &&
  792. !(inpw(PLC(np,PL_STATUS_B)) & PL_PCM_SIGNAL))
  793. #endif /* nMOT_ELM */
  794. {
  795. /*
  796.  * Set register again (PLCS errata) or the first time
  797.  * (new SN3 PLCS).
  798.  */
  799. (void) plc_send_bits(smc,phy,3) ;
  800. }
  801. /*
  802.  * end of workaround
  803.  */
  804. GO_STATE(PC5_SIGNAL) ;
  805. plc->p_state = PS_BIT3 ;
  806. plc->p_bits = 3 ;
  807. plc->p_start = 0 ;
  808. break ;
  809. case PC1_BREAK :
  810. break ;
  811. case ACTIONS(PC2_TRACE) :
  812. plc_go_state(smc,np,PL_PCM_TRACE) ;
  813. ACTIONS_DONE() ;
  814. break ;
  815. case PC2_TRACE :
  816. break ;
  817. case PC3_CONNECT : /* these states are done by hardware */
  818. case PC4_NEXT :
  819. break ;
  820. case ACTIONS(PC5_SIGNAL) :
  821. ACTIONS_DONE() ;
  822. case PC5_SIGNAL :
  823. if ((cmd != PC_SIGNAL) && (cmd != PC_TIMEOUT_LCT))
  824. break ;
  825. switch (plc->p_state) {
  826. case PS_BIT3 :
  827. for (i = 0 ; i <= 2 ; i++)
  828. pc_rcode_actions(smc,i,phy) ;
  829. pc_tcode_actions(smc,3,phy) ;
  830. plc->p_state = PS_BIT4 ;
  831. plc->p_bits = 1 ;
  832. plc->p_start = 3 ;
  833. phy->bitn = 3 ;
  834. if (plc_send_bits(smc,phy,1)) {
  835. return ;
  836. }
  837. break ;
  838. case PS_BIT4 :
  839. pc_rcode_actions(smc,3,phy) ;
  840. for (i = 4 ; i <= 6 ; i++)
  841. pc_tcode_actions(smc,i,phy) ;
  842. plc->p_state = PS_BIT7 ;
  843. plc->p_bits = 3 ;
  844. plc->p_start = 4 ;
  845. phy->bitn = 4 ;
  846. if (plc_send_bits(smc,phy,3)) {
  847. return ;
  848. }
  849. break ;
  850. case PS_BIT7 :
  851. for (i = 3 ; i <= 6 ; i++)
  852. pc_rcode_actions(smc,i,phy) ;
  853. plc->p_state = PS_LCT ;
  854. plc->p_bits = 0 ;
  855. plc->p_start = 7 ;
  856. phy->bitn = 7 ;
  857. sm_ph_lem_start(smc,np,(int)smc->s.lct_short) ; /* enable LEM */
  858. /* start LCT */
  859. i = inpw(PLC(np,PL_CNTRL_B)) & ~PL_PC_LOOP ;
  860. outpw(PLC(np,PL_CNTRL_B),i) ; /* must be cleared */
  861. outpw(PLC(np,PL_CNTRL_B),i | PL_RLBP) ;
  862. break ;
  863. case PS_LCT :
  864. /* check for local LCT failure */
  865. pc_tcode_actions(smc,7,phy) ;
  866. /*
  867.  * set tval[7]
  868.  */
  869. plc->p_state = PS_BIT8 ;
  870. plc->p_bits = 1 ;
  871. plc->p_start = 7 ;
  872. phy->bitn = 7 ;
  873. if (plc_send_bits(smc,phy,1)) {
  874. return ;
  875. }
  876. break ;
  877. case PS_BIT8 :
  878. /* check for remote LCT failure */
  879. pc_rcode_actions(smc,7,phy) ;
  880. if (phy->t_val[7] || phy->r_val[7]) {
  881. plc_go_state(smc,np,PL_PCM_STOP) ;
  882. GO_STATE(PC1_BREAK) ;
  883. break ;
  884. }
  885. for (i = 8 ; i <= 9 ; i++)
  886. pc_tcode_actions(smc,i,phy) ;
  887. plc->p_state = PS_JOIN ;
  888. plc->p_bits = 2 ;
  889. plc->p_start = 8 ;
  890. phy->bitn = 8 ;
  891. if (plc_send_bits(smc,phy,2)) {
  892. return ;
  893. }
  894. break ;
  895. case PS_JOIN :
  896. for (i = 8 ; i <= 9 ; i++)
  897. pc_rcode_actions(smc,i,phy) ;
  898. plc->p_state = PS_ACTIVE ;
  899. GO_STATE(PC6_JOIN) ;
  900. break ;
  901. }
  902. break ;
  903. case ACTIONS(PC6_JOIN) :
  904. /*
  905.  * prevent mux error when going from WRAP_A to WRAP_B
  906.  */
  907. if (smc->s.sas == SMT_DAS && np == PB &&
  908. (smc->y[PA].pc_mode == PM_TREE ||
  909.  smc->y[PB].pc_mode == PM_TREE)) {
  910. SETMASK(PLC(np,PL_CNTRL_A),
  911. PL_SC_REM_LOOP,PL_SC_REM_LOOP) ;
  912. SETMASK(PLC(np,PL_CNTRL_B),
  913. PL_CONFIG_CNTRL,PL_CONFIG_CNTRL) ;
  914. }
  915. SETMASK(PLC(np,PL_CNTRL_B),PL_PC_JOIN,PL_PC_JOIN) ;
  916. SETMASK(PLC(np,PL_CNTRL_B),PL_PC_JOIN,PL_PC_JOIN) ;
  917. ACTIONS_DONE() ;
  918. cmd = 0 ;
  919. /* fall thru */
  920. case PC6_JOIN :
  921. switch (plc->p_state) {
  922. case PS_ACTIVE:
  923. /*PC88b*/
  924. if (!phy->cf_join) {
  925. phy->cf_join = TRUE ;
  926. queue_event(smc,EVENT_CFM,CF_JOIN+np) ; ;
  927. }
  928. if (cmd == PC_JOIN)
  929. GO_STATE(PC8_ACTIVE) ;
  930. /*PC82*/
  931. if (cmd == PC_TRACE) {
  932. GO_STATE(PC2_TRACE) ;
  933. break ;
  934. }
  935. break ;
  936. }
  937. break ;
  938. case PC7_VERIFY :
  939. break ;
  940. case ACTIONS(PC8_ACTIVE) :
  941. /*
  942.  * start LEM for SMT
  943.  */
  944. sm_ph_lem_start(smc,(int)phy->np,LCT_LEM_MAX) ;
  945. phy->tr_flag = FALSE ;
  946. mib->fddiPORTConnectState = PCM_ACTIVE ;
  947. /* Set the active interrupt mask register */
  948. outpw(PLC(np,PL_INTR_MASK),plc_imsk_act) ;
  949. ACTIONS_DONE() ;
  950. break ;
  951. case PC8_ACTIVE :
  952. /*PC81 is done by PL_TNE_EXPIRED irq */
  953. /*PC82*/
  954. if (cmd == PC_TRACE) {
  955. GO_STATE(PC2_TRACE) ;
  956. break ;
  957. }
  958. /*PC88c: is done by TRACE_PROP irq */
  959. break ;
  960. case ACTIONS(PC9_MAINT) :
  961. stop_pcm_timer0(smc,phy) ;
  962. CLEAR(PLC(np,PL_CNTRL_B),PL_PC_JOIN) ;
  963. CLEAR(PLC(np,PL_CNTRL_B),PL_LONG) ;
  964. CLEAR(PLC(np,PL_INTR_MASK),PL_LE_CTR) ; /* disable LEM int. */
  965. sm_ph_lem_stop(smc,np) ; /* disable LEM */
  966. phy->cf_loop = FALSE ;
  967. phy->cf_join = FALSE ;
  968. queue_event(smc,EVENT_CFM,CF_JOIN+np) ;
  969. plc_go_state(smc,np,PL_PCM_STOP) ;
  970. mib->fddiPORTConnectState = PCM_DISABLED ;
  971. SETMASK(PLC(np,PL_CNTRL_B),PL_MAINT,PL_MAINT) ;
  972. sm_ph_linestate(smc,np,(int) MIB2LS(mib->fddiPORTMaint_LS)) ;
  973. outpw(PLC(np,PL_CNTRL_A),PL_SC_BYPASS) ;
  974. ACTIONS_DONE() ;
  975. break ;
  976. case PC9_MAINT :
  977. DB_PCMN(1,"PCM %c : MAINTn",phy->phy_name,0) ;
  978. /*PC90*/
  979. if (cmd == PC_ENABLE) {
  980. GO_STATE(PC0_OFF) ;
  981. break ;
  982. }
  983. break ;
  984. default:
  985. SMT_PANIC(smc,SMT_E0118, SMT_E0118_MSG) ;
  986. break ;
  987. }
  988. }
  989. /*
  990.  * force line state on a PHY output (only in MAINT state)
  991.  */
  992. static void sm_ph_linestate(smc,phy,ls)
  993. struct s_smc *smc ;
  994. int phy;
  995. int ls;
  996. {
  997. int cntrl ;
  998. SK_UNUSED(smc) ;
  999. cntrl = (inpw(PLC(phy,PL_CNTRL_B)) & ~PL_MAINT_LS) |
  1000. PL_PCM_STOP | PL_MAINT ;
  1001. switch(ls) {
  1002. case PC_QLS:  /* Force Quiet */
  1003. cntrl |= PL_M_QUI0 ;
  1004. break ;
  1005. case PC_MLS:  /* Force Master */
  1006. cntrl |= PL_M_MASTR ;
  1007. break ;
  1008. case PC_HLS:  /* Force Halt */
  1009. cntrl |= PL_M_HALT ;
  1010. break ;
  1011. default :
  1012. case PC_ILS:  /* Force Idle */
  1013. cntrl |= PL_M_IDLE ;
  1014. break ;
  1015. case PC_LS_PDR:  /* Enable repeat filter */
  1016. cntrl |= PL_M_TPDR ;
  1017. break ;
  1018. }
  1019. outpw(PLC(phy,PL_CNTRL_B),cntrl) ;
  1020. }
  1021. static void reset_lem_struct(phy)
  1022. struct s_phy *phy;
  1023. {
  1024. struct lem_counter *lem = &phy->lem ;
  1025. phy->mib->fddiPORTLer_Estimate = 15 ;
  1026. lem->lem_float_ber = 15 * 100 ;
  1027. }
  1028. /*
  1029.  * link error monitor
  1030.  */
  1031. static void lem_evaluate(smc,phy)
  1032. struct s_smc *smc ;
  1033. struct s_phy *phy;
  1034. {
  1035. int ber ;
  1036. u_long errors ;
  1037. struct lem_counter *lem = &phy->lem ;
  1038. struct fddi_mib_p *mib ;
  1039. int cond ;
  1040. mib = phy->mib ;
  1041. if (!lem->lem_on)
  1042. return ;
  1043. errors = inpw(PLC(((int) phy->np),PL_LINK_ERR_CTR)) ;
  1044. lem->lem_errors += errors ;
  1045. mib->fddiPORTLem_Ct += errors ;
  1046. errors = lem->lem_errors ;
  1047. /*
  1048.  * calculation is called on a intervall of 8 seconds
  1049.  * -> this means, that one error in 8 sec. is one of 8*125*10E6
  1050.  * the same as BER = 10E-9
  1051.  * Please note:
  1052.  * -> 9 errors in 8 seconds mean:
  1053.  *    BER = 9 * 10E-9  and this is
  1054.  *     < 10E-8, so the limit of 10E-8 is not reached!
  1055.  */
  1056. if (!errors) ber = 15 ;
  1057. else if (errors <= 9) ber = 9 ;
  1058. else if (errors <= 99) ber = 8 ;
  1059. else if (errors <= 999) ber = 7 ;
  1060. else if (errors <= 9999) ber = 6 ;
  1061. else if (errors <= 99999) ber = 5 ;
  1062. else if (errors <= 999999) ber = 4 ;
  1063. else if (errors <= 9999999) ber = 3 ;
  1064. else if (errors <= 99999999) ber = 2 ;
  1065. else if (errors <= 999999999) ber = 1 ;
  1066. else ber = 0 ;
  1067. /*
  1068.  * weighted average
  1069.  */
  1070. ber *= 100 ;
  1071. lem->lem_float_ber = lem->lem_float_ber * 7 + ber * 3 ;
  1072. lem->lem_float_ber /= 10 ;
  1073. mib->fddiPORTLer_Estimate = lem->lem_float_ber / 100 ;
  1074. if (mib->fddiPORTLer_Estimate < 4) {
  1075. mib->fddiPORTLer_Estimate = 4 ;
  1076. }
  1077. if (lem->lem_errors) {
  1078. DB_PCMN(1,"LEM %c :n",phy->np == PB? 'B' : 'A',0) ;
  1079. DB_PCMN(1,"errors      : %ldn",lem->lem_errors,0) ;
  1080. DB_PCMN(1,"sum_errors  : %ldn",mib->fddiPORTLem_Ct,0) ;
  1081. DB_PCMN(1,"current BER : 10E-%dn",ber/100,0) ;
  1082. DB_PCMN(1,"float BER   : 10E-(%d/100)n",lem->lem_float_ber,0) ;
  1083. DB_PCMN(1,"avg. BER    : 10E-%dn",
  1084. mib->fddiPORTLer_Estimate,0) ;
  1085. }
  1086. lem->lem_errors = 0L ;
  1087. #ifndef SLIM_SMT
  1088. cond = (mib->fddiPORTLer_Estimate <= mib->fddiPORTLer_Alarm) ?
  1089. TRUE : FALSE ;
  1090. #ifdef SMT_EXT_CUTOFF
  1091. smt_ler_alarm_check(smc,phy,cond) ;
  1092. #endif /* nSMT_EXT_CUTOFF */
  1093. if (cond != mib->fddiPORTLerFlag) {
  1094. smt_srf_event(smc,SMT_COND_PORT_LER,
  1095. (int) (INDEX_PORT+ phy->np) ,cond) ;
  1096. }
  1097. #endif
  1098. if ( mib->fddiPORTLer_Estimate <= mib->fddiPORTLer_Cutoff) {
  1099. phy->pc_lem_fail = TRUE ; /* flag */
  1100. mib->fddiPORTLem_Reject_Ct++ ;
  1101. /*
  1102.  * "forgive 10e-2" if we cutoff so we can come
  1103.  * up again ..
  1104.  */
  1105. lem->lem_float_ber += 2*100 ;
  1106. /*PC81b*/
  1107. #ifdef CONCENTRATOR
  1108. DB_PCMN(1,"PCM: LER cutoff on port %d cutoff %dn",
  1109. phy->np, mib->fddiPORTLer_Cutoff) ;
  1110. #endif
  1111. #ifdef SMT_EXT_CUTOFF
  1112. smt_port_off_event(smc,phy->np);
  1113. #else /* nSMT_EXT_CUTOFF */
  1114. queue_event(smc,(int)(EVENT_PCM+phy->np),PC_START) ;
  1115. #endif /* nSMT_EXT_CUTOFF */
  1116. }
  1117. }
  1118. /*
  1119.  * called by SMT to calculate LEM bit error rate
  1120.  */
  1121. void sm_lem_evaluate(smc)
  1122. struct s_smc *smc ;
  1123. {
  1124. int np ;
  1125. for (np = 0 ; np < NUMPHYS ; np++)
  1126. lem_evaluate(smc,&smc->y[np]) ;
  1127. }
  1128. static void lem_check_lct(smc,phy)
  1129. struct s_smc *smc ;
  1130. struct s_phy *phy ;
  1131. {
  1132. struct lem_counter *lem = &phy->lem ;
  1133. struct fddi_mib_p *mib ;
  1134. int errors ;
  1135. mib = phy->mib ;
  1136. phy->pc_lem_fail = FALSE ; /* flag */
  1137. errors = inpw(PLC(((int)phy->np),PL_LINK_ERR_CTR)) ;
  1138. lem->lem_errors += errors ;
  1139. mib->fddiPORTLem_Ct += errors ;
  1140. if (lem->lem_errors) {
  1141. switch(phy->lc_test) {
  1142. case LC_SHORT:
  1143. if (lem->lem_errors >= smc->s.lct_short)
  1144. phy->pc_lem_fail = TRUE ;
  1145. break ;
  1146. case LC_MEDIUM:
  1147. if (lem->lem_errors >= smc->s.lct_medium)
  1148. phy->pc_lem_fail = TRUE ;
  1149. break ;
  1150. case LC_LONG:
  1151. if (lem->lem_errors >= smc->s.lct_long)
  1152. phy->pc_lem_fail = TRUE ;
  1153. break ;
  1154. case LC_EXTENDED:
  1155. if (lem->lem_errors >= smc->s.lct_extended)
  1156. phy->pc_lem_fail = TRUE ;
  1157. break ;
  1158. }
  1159. DB_PCMN(1," >>errors : %dn",lem->lem_errors,0) ;
  1160. }
  1161. if (phy->pc_lem_fail) {
  1162. mib->fddiPORTLCTFail_Ct++ ;
  1163. mib->fddiPORTLem_Reject_Ct++ ;
  1164. }
  1165. else
  1166. mib->fddiPORTLCTFail_Ct = 0 ;
  1167. }
  1168. /*
  1169.  * LEM functions
  1170.  */
  1171. static void sm_ph_lem_start(smc,np,threshold)
  1172. struct s_smc *smc ;
  1173. int np;
  1174. int threshold;
  1175. {
  1176. struct lem_counter *lem = &smc->y[np].lem ;
  1177. lem->lem_on = 1 ;
  1178. lem->lem_errors = 0L ;
  1179. /* Do NOT reset mib->fddiPORTLer_Estimate here. It is called too
  1180.  * often.
  1181.  */
  1182. outpw(PLC(np,PL_LE_THRESHOLD),threshold) ;
  1183. (void)inpw(PLC(np,PL_LINK_ERR_CTR)) ; /* clear error counter */
  1184. /* enable LE INT */
  1185. SETMASK(PLC(np,PL_INTR_MASK),PL_LE_CTR,PL_LE_CTR) ;
  1186. }
  1187. static void sm_ph_lem_stop(smc,np)
  1188. struct s_smc *smc ;
  1189. int np;
  1190. {
  1191. struct lem_counter *lem = &smc->y[np].lem ;
  1192. lem->lem_on = 0 ;
  1193. CLEAR(PLC(np,PL_INTR_MASK),PL_LE_CTR) ;
  1194. }
  1195. /* ARGSUSED */
  1196. void sm_pm_ls_latch(smc,phy,on_off)
  1197. struct s_smc *smc ;
  1198. int phy;
  1199. int on_off; /* en- or disable ident. ls */
  1200. {
  1201. SK_UNUSED(smc) ;
  1202. phy = phy ; on_off = on_off ;
  1203. }
  1204. /*
  1205.  * PCM pseudo code
  1206.  * receive actions are called AFTER the bit n is received,
  1207.  * i.e. if pc_rcode_actions(5) is called, bit 6 is the next bit to be received
  1208.  */
  1209. /*
  1210.  * PCM pseudo code 5.1 .. 6.1
  1211.  */
  1212. static void pc_rcode_actions(smc,bit,phy)
  1213. struct s_smc *smc ;
  1214. int bit;
  1215. struct s_phy *phy;
  1216. {
  1217. struct fddi_mib_p *mib ;
  1218. mib = phy->mib ;
  1219. DB_PCMN(1,"SIG rec %x %x: n", bit,phy->r_val[bit] ) ;
  1220. bit++ ;
  1221. switch(bit) {
  1222. case 0:
  1223. case 1:
  1224. case 2:
  1225. break ;
  1226. case 3 :
  1227. if (phy->r_val[1] == 0 && phy->r_val[2] == 0)
  1228. mib->fddiPORTNeighborType = TA ;
  1229. else if (phy->r_val[1] == 0 && phy->r_val[2] == 1)
  1230. mib->fddiPORTNeighborType = TB ;
  1231. else if (phy->r_val[1] == 1 && phy->r_val[2] == 0)
  1232. mib->fddiPORTNeighborType = TS ;
  1233. else if (phy->r_val[1] == 1 && phy->r_val[2] == 1)
  1234. mib->fddiPORTNeighborType = TM ;
  1235. break ;
  1236. case 4:
  1237. if (mib->fddiPORTMy_Type == TM &&
  1238. mib->fddiPORTNeighborType == TM) {
  1239. DB_PCMN(1,"PCM %c : E100 withhold M-Mn",
  1240. phy->phy_name,0) ;
  1241. mib->fddiPORTPC_Withhold = PC_WH_M_M ;
  1242. RS_SET(smc,RS_EVENT) ;
  1243. }
  1244. else if (phy->t_val[3] || phy->r_val[3]) {
  1245. mib->fddiPORTPC_Withhold = PC_WH_NONE ;
  1246. if (mib->fddiPORTMy_Type == TM ||
  1247.     mib->fddiPORTNeighborType == TM)
  1248. phy->pc_mode = PM_TREE ;
  1249. else
  1250. phy->pc_mode = PM_PEER ;
  1251. /* reevaluate the selection criteria (wc_flag) */
  1252. all_selection_criteria (smc);
  1253. if (phy->wc_flag) {
  1254. mib->fddiPORTPC_Withhold = PC_WH_PATH ;
  1255. }
  1256. }
  1257. else {
  1258. mib->fddiPORTPC_Withhold = PC_WH_OTHER ;
  1259. RS_SET(smc,RS_EVENT) ;
  1260. DB_PCMN(1,"PCM %c : E101 withhold othern",
  1261. phy->phy_name,0) ;
  1262. }
  1263. phy->twisted = ((mib->fddiPORTMy_Type != TS) &&
  1264. (mib->fddiPORTMy_Type != TM) &&
  1265. (mib->fddiPORTNeighborType ==
  1266. mib->fddiPORTMy_Type)) ;
  1267. if (phy->twisted) {
  1268. DB_PCMN(1,"PCM %c : E102 !!! TWISTED !!!n",
  1269. phy->phy_name,0) ;
  1270. }
  1271. break ;
  1272. case 5 :
  1273. break ;
  1274. case 6:
  1275. if (phy->t_val[4] || phy->r_val[4]) {
  1276. if ((phy->t_val[4] && phy->t_val[5]) ||
  1277.     (phy->r_val[4] && phy->r_val[5]) )
  1278. phy->lc_test = LC_EXTENDED ;
  1279. else
  1280. phy->lc_test = LC_LONG ;
  1281. }
  1282. else if (phy->t_val[5] || phy->r_val[5])
  1283. phy->lc_test = LC_MEDIUM ;
  1284. else
  1285. phy->lc_test = LC_SHORT ;
  1286. switch (phy->lc_test) {
  1287. case LC_SHORT : /* 50ms */
  1288. outpw(PLC((int)phy->np,PL_LC_LENGTH), TP_LC_LENGTH ) ;
  1289. phy->t_next[7] = smc->s.pcm_lc_short ;
  1290. break ;
  1291. case LC_MEDIUM : /* 500ms */
  1292. outpw(PLC((int)phy->np,PL_LC_LENGTH), TP_LC_LONGLN ) ;
  1293. phy->t_next[7] = smc->s.pcm_lc_medium ;
  1294. break ;
  1295. case LC_LONG :
  1296. SETMASK(PLC((int)phy->np,PL_CNTRL_B),PL_LONG,PL_LONG) ;
  1297. phy->t_next[7] = smc->s.pcm_lc_long ;
  1298. break ;
  1299. case LC_EXTENDED :
  1300. SETMASK(PLC((int)phy->np,PL_CNTRL_B),PL_LONG,PL_LONG) ;
  1301. phy->t_next[7] = smc->s.pcm_lc_extended ;
  1302. break ;
  1303. }
  1304. if (phy->t_next[7] > smc->s.pcm_lc_medium) {
  1305. start_pcm_timer0(smc,phy->t_next[7],PC_TIMEOUT_LCT,phy);
  1306. }
  1307. DB_PCMN(1,"LCT timer = %ld usn", phy->t_next[7], 0) ;
  1308. phy->t_next[9] = smc->s.pcm_t_next_9 ;
  1309. break ;
  1310. case 7:
  1311. if (phy->t_val[6]) {
  1312. phy->cf_loop = TRUE ;
  1313. }
  1314. phy->td_flag = TRUE ;
  1315. break ;
  1316. case 8:
  1317. if (phy->t_val[7] || phy->r_val[7]) {
  1318. DB_PCMN(1,"PCM %c : E103 LCT fail %sn",
  1319. phy->phy_name,phy->t_val[7]? "local":"remote") ;
  1320. queue_event(smc,(int)(EVENT_PCM+phy->np),PC_START) ;
  1321. }
  1322. break ;
  1323. case 9:
  1324. if (phy->t_val[8] || phy->r_val[8]) {
  1325. if (phy->t_val[8])
  1326. phy->cf_loop = TRUE ;
  1327. phy->td_flag = TRUE ;
  1328. }
  1329. break ;
  1330. case 10:
  1331. if (phy->r_val[9]) {
  1332. /* neighbor intends to have MAC on output */ ;
  1333. mib->fddiPORTMacIndicated.R_val = TRUE ;
  1334. }
  1335. else {
  1336. /* neighbor does not intend to have MAC on output */ ;
  1337. mib->fddiPORTMacIndicated.R_val = FALSE ;
  1338. }
  1339. break ;
  1340. }
  1341. }
  1342. /*
  1343.  * PCM pseudo code 5.1 .. 6.1
  1344.  */
  1345. static void pc_tcode_actions(smc,bit,phy)
  1346. struct s_smc *smc ;
  1347. const int bit;
  1348. struct s_phy *phy;
  1349. {
  1350. int np = phy->np ;
  1351. struct fddi_mib_p *mib ;
  1352. mib = phy->mib ;
  1353. switch(bit) {
  1354. case 0:
  1355. phy->t_val[0] = 0 ; /* no escape used */
  1356. break ;
  1357. case 1:
  1358. if (mib->fddiPORTMy_Type == TS || mib->fddiPORTMy_Type == TM)
  1359. phy->t_val[1] = 1 ;
  1360. else
  1361. phy->t_val[1] = 0 ;
  1362. break ;
  1363. case 2 :
  1364. if (mib->fddiPORTMy_Type == TB || mib->fddiPORTMy_Type == TM)
  1365. phy->t_val[2] = 1 ;
  1366. else
  1367. phy->t_val[2] = 0 ;
  1368. break ;
  1369. case 3:
  1370. {
  1371. int type,ne ;
  1372. int policy ;
  1373. type = mib->fddiPORTMy_Type ;
  1374. ne = mib->fddiPORTNeighborType ;
  1375. policy = smc->mib.fddiSMTConnectionPolicy ;
  1376. phy->t_val[3] = 1 ; /* Accept connection */
  1377. switch (type) {
  1378. case TA :
  1379. if (
  1380. ((policy & POLICY_AA) && ne == TA) ||
  1381. ((policy & POLICY_AB) && ne == TB) ||
  1382. ((policy & POLICY_AS) && ne == TS) ||
  1383. ((policy & POLICY_AM) && ne == TM) )
  1384. phy->t_val[3] = 0 ; /* Reject */
  1385. break ;
  1386. case TB :
  1387. if (
  1388. ((policy & POLICY_BA) && ne == TA) ||
  1389. ((policy & POLICY_BB) && ne == TB) ||
  1390. ((policy & POLICY_BS) && ne == TS) ||
  1391. ((policy & POLICY_BM) && ne == TM) )
  1392. phy->t_val[3] = 0 ; /* Reject */
  1393. break ;
  1394. case TS :
  1395. if (
  1396. ((policy & POLICY_SA) && ne == TA) ||
  1397. ((policy & POLICY_SB) && ne == TB) ||
  1398. ((policy & POLICY_SS) && ne == TS) ||
  1399. ((policy & POLICY_SM) && ne == TM) )
  1400. phy->t_val[3] = 0 ; /* Reject */
  1401. break ;
  1402. case TM :
  1403. if ( ne == TM ||
  1404. ((policy & POLICY_MA) && ne == TA) ||
  1405. ((policy & POLICY_MB) && ne == TB) ||
  1406. ((policy & POLICY_MS) && ne == TS) ||
  1407. ((policy & POLICY_MM) && ne == TM) )
  1408. phy->t_val[3] = 0 ; /* Reject */
  1409. break ;
  1410. }
  1411. #ifndef SLIM_SMT
  1412. /*
  1413.  * detect undesirable connection attempt event
  1414.  */
  1415. if ( (type == TA && ne == TA ) ||
  1416. (type == TA && ne == TS ) ||
  1417. (type == TB && ne == TB ) ||
  1418. (type == TB && ne == TS ) ||
  1419. (type == TS && ne == TA ) ||
  1420. (type == TS && ne == TB ) ) {
  1421. smt_srf_event(smc,SMT_EVENT_PORT_CONNECTION,
  1422. (int) (INDEX_PORT+ phy->np) ,0) ;
  1423. }
  1424. #endif
  1425. }
  1426. break ;
  1427. case 4:
  1428. if (mib->fddiPORTPC_Withhold == PC_WH_NONE) {
  1429. if (phy->pc_lem_fail) {
  1430. phy->t_val[4] = 1 ; /* long */
  1431. phy->t_val[5] = 0 ;
  1432. }
  1433. else {
  1434. phy->t_val[4] = 0 ;
  1435. if (mib->fddiPORTLCTFail_Ct > 0)
  1436. phy->t_val[5] = 1 ; /* medium */
  1437. else
  1438. phy->t_val[5] = 0 ; /* short */
  1439. /*
  1440.  * Implementers choice: use medium
  1441.  * instead of short when undesired
  1442.  * connection attempt is made.
  1443.  */
  1444. if (phy->wc_flag)
  1445. phy->t_val[5] = 1 ; /* medium */
  1446. }
  1447. mib->fddiPORTConnectState = PCM_CONNECTING ;
  1448. }
  1449. else {
  1450. mib->fddiPORTConnectState = PCM_STANDBY ;
  1451. phy->t_val[4] = 1 ; /* extended */
  1452. phy->t_val[5] = 1 ;
  1453. }
  1454. break ;
  1455. case 5:
  1456. break ;
  1457. case 6:
  1458. /* we do NOT have a MAC for LCT */
  1459. phy->t_val[6] = 0 ;
  1460. break ;
  1461. case 7:
  1462. phy->cf_loop = FALSE ;
  1463. lem_check_lct(smc,phy) ;
  1464. if (phy->pc_lem_fail) {
  1465. DB_PCMN(1,"PCM %c : E104 LCT failedn",
  1466. phy->phy_name,0) ;
  1467. phy->t_val[7] = 1 ;
  1468. }
  1469. else
  1470. phy->t_val[7] = 0 ;
  1471. break ;
  1472. case 8:
  1473. phy->t_val[8] = 0 ; /* Don't request MAC loopback */
  1474. break ;
  1475. case 9:
  1476. phy->cf_loop = 0 ;
  1477. if ((mib->fddiPORTPC_Withhold != PC_WH_NONE) ||
  1478.      ((smc->s.sas == SMT_DAS) && (phy->wc_flag))) {
  1479. queue_event(smc,EVENT_PCM+np,PC_START) ;
  1480. break ;
  1481. }
  1482. phy->t_val[9] = FALSE ;
  1483. switch (smc->s.sas) {
  1484. case SMT_DAS :
  1485. /*
  1486.  * MAC intended on output
  1487.  */
  1488. if (phy->pc_mode == PM_TREE) {
  1489. if ((np == PB) || ((np == PA) &&
  1490. (smc->y[PB].mib->fddiPORTConnectState !=
  1491. PCM_ACTIVE)))
  1492. phy->t_val[9] = TRUE ;
  1493. }
  1494. else {
  1495. if (np == PB)
  1496. phy->t_val[9] = TRUE ;
  1497. }
  1498. break ;
  1499. case SMT_SAS :
  1500. if (np == PS)
  1501. phy->t_val[9] = TRUE ;
  1502. break ;
  1503. #ifdef CONCENTRATOR
  1504. case SMT_NAC :
  1505. /*
  1506.  * MAC intended on output
  1507.  */
  1508. if (np == PB)
  1509. phy->t_val[9] = TRUE ;
  1510. break ;
  1511. #endif
  1512. }
  1513. mib->fddiPORTMacIndicated.T_val = phy->t_val[9] ;
  1514. break ;
  1515. }
  1516. DB_PCMN(1,"SIG snd %x %x: n", bit,phy->t_val[bit] ) ;
  1517. }
  1518. /*
  1519.  * return status twisted (called by SMT)
  1520.  */
  1521. int pcm_status_twisted(smc)
  1522. struct s_smc *smc ;
  1523. {
  1524. int twist = 0 ;
  1525. if (smc->s.sas != SMT_DAS)
  1526. return(0) ;
  1527. if (smc->y[PA].twisted && (smc->y[PA].mib->fddiPORTPCMState == PC8_ACTIVE))
  1528. twist |= 1 ;
  1529. if (smc->y[PB].twisted && (smc->y[PB].mib->fddiPORTPCMState == PC8_ACTIVE))
  1530. twist |= 2 ;
  1531. return(twist) ;
  1532. }
  1533. /*
  1534.  * return status (called by SMT)
  1535.  * type
  1536.  * state
  1537.  * remote phy type
  1538.  * remote mac yes/no
  1539.  */
  1540. void pcm_status_state(smc,np,type,state,remote,mac)
  1541. struct s_smc *smc ;
  1542. int np;
  1543. int *type;
  1544. int *state;
  1545. int *remote;
  1546. int *mac;
  1547. {
  1548. struct s_phy *phy = &smc->y[np] ;
  1549. struct fddi_mib_p *mib ;
  1550. mib = phy->mib ;
  1551. /* remote PHY type and MAC - set only if active */
  1552. *mac = 0 ;
  1553. *type = mib->fddiPORTMy_Type ; /* our PHY type */
  1554. *state = mib->fddiPORTConnectState ;
  1555. *remote = mib->fddiPORTNeighborType ;
  1556. switch(mib->fddiPORTPCMState) {
  1557. case PC8_ACTIVE :
  1558. *mac = mib->fddiPORTMacIndicated.R_val ;
  1559. break ;
  1560. }
  1561. }
  1562. /*
  1563.  * return rooted station status (called by SMT)
  1564.  */
  1565. int pcm_rooted_station(smc)
  1566. struct s_smc *smc ;
  1567. {
  1568. int n ;
  1569. for (n = 0 ; n < NUMPHYS ; n++) {
  1570. if (smc->y[n].mib->fddiPORTPCMState == PC8_ACTIVE &&
  1571.     smc->y[n].mib->fddiPORTNeighborType == TM)
  1572. return(0) ;
  1573. }
  1574. return(1) ;
  1575. }
  1576. /*
  1577.  * Interrupt actions for PLC & PCM events
  1578.  */
  1579. void plc_irq(smc,np,cmd)
  1580. struct s_smc *smc ;
  1581. int np; /* PHY index */
  1582. unsigned int cmd;
  1583. {
  1584. struct s_phy *phy = &smc->y[np] ;
  1585. struct s_plc *plc = &phy->plc ;
  1586. int n ;
  1587. #ifdef SUPERNET_3
  1588. int corr_mask ;
  1589. #endif /* SUPERNET_3 */
  1590. int i ;
  1591. if (np >= smc->s.numphys) {
  1592. plc->soft_err++ ;
  1593. return ;
  1594. }
  1595. if (cmd & PL_EBUF_ERR) { /* elastic buff. det. over-|underflow*/
  1596. /*
  1597.  * Check whether the SRF Condition occurred.
  1598.  */
  1599. if (!plc->ebuf_cont && phy->mib->fddiPORTPCMState == PC8_ACTIVE){
  1600. /*
  1601.  * This is the real Elasticity Error.
  1602.  * More than one in a row are treated as a
  1603.  * single one.
  1604.  * Only count this in the active state.
  1605.  */
  1606. phy->mib->fddiPORTEBError_Ct ++ ;
  1607. }
  1608. plc->ebuf_err++ ;
  1609. if (plc->ebuf_cont <= 1000) {
  1610. /*
  1611.  * Prevent counter from being wrapped after
  1612.  * hanging years in that interrupt.
  1613.  */
  1614. plc->ebuf_cont++ ; /* Ebuf continous error */
  1615. }
  1616. #ifdef SUPERNET_3
  1617. if (plc->ebuf_cont == 1000 &&
  1618. ((inpw(PLC(np,PL_STATUS_A)) & PLC_REV_MASK) ==
  1619. PLC_REV_SN3)) {
  1620. /*
  1621.  * This interrupt remeained high for at least
  1622.  * 1000 consecutive interrupt calls.
  1623.  *
  1624.  * This is caused by a hardware error of the
  1625.  * ORION part of the Supernet III chipset.
  1626.  *
  1627.  * Disable this bit from the mask.
  1628.  */
  1629. corr_mask = (plc_imsk_na & ~PL_EBUF_ERR) ;
  1630. outpw(PLC(np,PL_INTR_MASK),corr_mask);
  1631. /*
  1632.  * Disconnect from the ring.
  1633.  * Call the driver with the reset indication.
  1634.  */
  1635. queue_event(smc,EVENT_ECM,EC_DISCONNECT) ;
  1636. /*
  1637.  * Make an error log entry.
  1638.  */
  1639. SMT_ERR_LOG(smc,SMT_E0136, SMT_E0136_MSG) ;
  1640. /*
  1641.  * Indicate the Reset.
  1642.  */
  1643. drv_reset_indication(smc) ;
  1644. }
  1645. #endif /* SUPERNET_3 */
  1646. } else {
  1647. /* Reset the continous error variable */
  1648. plc->ebuf_cont = 0 ; /* reset Ebuf continous error */
  1649. }
  1650. if (cmd & PL_PHYINV) { /* physical layer invalid signal */
  1651. plc->phyinv++ ;
  1652. }
  1653. if (cmd & PL_VSYM_CTR) { /* violation symbol counter has incr.*/
  1654. plc->vsym_ctr++ ;
  1655. }
  1656. if (cmd & PL_MINI_CTR) { /* dep. on PLC_CNTRL_A's MINI_CTR_INT*/
  1657. plc->mini_ctr++ ;
  1658. }
  1659. if (cmd & PL_LE_CTR) { /* link error event counter */
  1660. int j ;
  1661. /*
  1662.  * note: PL_LINK_ERR_CTR MUST be read to clear it
  1663.  */
  1664. j = inpw(PLC(np,PL_LE_THRESHOLD)) ;
  1665. i = inpw(PLC(np,PL_LINK_ERR_CTR)) ;
  1666. if (i < j) {
  1667. /* wrapped around */
  1668. i += 256 ;
  1669. }
  1670. if (phy->lem.lem_on) {
  1671. /* Note: Lem errors shall only be counted when
  1672.  * link is ACTIVE or LCT is active.
  1673.  */
  1674. phy->lem.lem_errors += i ;
  1675. phy->mib->fddiPORTLem_Ct += i ;
  1676. }
  1677. }
  1678. if (cmd & PL_TPC_EXPIRED) { /* TPC timer reached zero */
  1679. if (plc->p_state == PS_LCT) {
  1680. /*
  1681.  * end of LCT
  1682.  */
  1683. ;
  1684. }
  1685. plc->tpc_exp++ ;
  1686. }
  1687. if (cmd & PL_LS_MATCH) { /* LS == LS in PLC_CNTRL_B's MATCH_LS*/
  1688. switch (inpw(PLC(np,PL_CNTRL_B)) & PL_MATCH_LS) {
  1689. case PL_I_IDLE : phy->curr_ls = PC_ILS ; break ;
  1690. case PL_I_HALT : phy->curr_ls = PC_HLS ; break ;
  1691. case PL_I_MASTR : phy->curr_ls = PC_MLS ; break ;
  1692. case PL_I_QUIET : phy->curr_ls = PC_QLS ; break ;
  1693. }
  1694. }
  1695. if (cmd & PL_PCM_BREAK) { /* PCM has entered the BREAK state */
  1696. int reason;
  1697. reason = inpw(PLC(np,PL_STATUS_B)) & PL_BREAK_REASON ;
  1698. switch (reason) {
  1699. case PL_B_PCS : plc->b_pcs++ ; break ;
  1700. case PL_B_TPC : plc->b_tpc++ ; break ;
  1701. case PL_B_TNE : plc->b_tne++ ; break ;
  1702. case PL_B_QLS : plc->b_qls++ ; break ;
  1703. case PL_B_ILS : plc->b_ils++ ; break ;
  1704. case PL_B_HLS : plc->b_hls++ ; break ;
  1705. }
  1706. /*jd 05-Aug-1999 changed: Bug #10419 */
  1707. DB_PCMN(1,"PLC %d: MDcF = %xn", np, smc->e.DisconnectFlag);
  1708. if (smc->e.DisconnectFlag == FALSE) {
  1709. DB_PCMN(1,"PLC %d: restart (reason %x)n", np, reason);
  1710. queue_event(smc,EVENT_PCM+np,PC_START) ;
  1711. }
  1712. else {
  1713. DB_PCMN(1,"PLC %d: NO!! restart (reason %x)n", np, reason);
  1714. }
  1715. return ;
  1716. }
  1717. /*
  1718.  * If both CODE & ENABLE are set ignore enable
  1719.  */
  1720. if (cmd & PL_PCM_CODE) { /* receive last sign.-bit | LCT complete */
  1721. queue_event(smc,EVENT_PCM+np,PC_SIGNAL) ;
  1722. n = inpw(PLC(np,PL_RCV_VECTOR)) ;
  1723. for (i = 0 ; i < plc->p_bits ; i++) {
  1724. phy->r_val[plc->p_start+i] = n & 1 ;
  1725. n >>= 1 ;
  1726. }
  1727. }
  1728. else if (cmd & PL_PCM_ENABLED) { /* asserted SC_JOIN, scrub.completed*/
  1729. queue_event(smc,EVENT_PCM+np,PC_JOIN) ;
  1730. }
  1731. if (cmd & PL_TRACE_PROP) { /* MLS while PC8_ACTIV || PC2_TRACE */
  1732. /*PC22b*/
  1733. if (!phy->tr_flag) {
  1734. DB_PCMN(1,"PCM : irq TRACE_PROP %d %dn",
  1735. np,smc->mib.fddiSMTECMState) ;
  1736. phy->tr_flag = TRUE ;
  1737. smc->e.trace_prop |= ENTITY_BIT(ENTITY_PHY(np)) ;
  1738. queue_event(smc,EVENT_ECM,EC_TRACE_PROP) ;
  1739. }
  1740. }
  1741. /*
  1742.  * filter PLC glitch ???
  1743.  * QLS || HLS only while in PC2_TRACE state
  1744.  */
  1745. if ((cmd & PL_SELF_TEST) && (phy->mib->fddiPORTPCMState == PC2_TRACE)) {
  1746. /*PC22a*/
  1747. if (smc->e.path_test == PT_PASSED) {
  1748. DB_PCMN(1,"PCM : state = %s %dn", get_pcmstate(smc,np),
  1749. phy->mib->fddiPORTPCMState) ;
  1750. smc->e.path_test = PT_PENDING ;
  1751. queue_event(smc,EVENT_ECM,EC_PATH_TEST) ;
  1752. }
  1753. }
  1754. if (cmd & PL_TNE_EXPIRED) { /* TNE: length of noise events */
  1755. /* break_required (TNE > NS_Max) */
  1756. if (phy->mib->fddiPORTPCMState == PC8_ACTIVE) {
  1757. if (!phy->tr_flag) {
  1758.    DB_PCMN(1,"PCM %c : PC81 %sn",phy->phy_name,"NSE");
  1759.    queue_event(smc,EVENT_PCM+np,PC_START) ;
  1760.    return ;
  1761. }
  1762. }
  1763. }
  1764. #if 0
  1765. if (cmd & PL_NP_ERR) { /* NP has requested to r/w an inv reg*/
  1766. /*
  1767.  * It's a bug by AMD
  1768.  */
  1769. plc->np_err++ ;
  1770. }
  1771. /* pin inactiv (GND) */
  1772. if (cmd & PL_PARITY_ERR) { /* p. error dedected on TX9-0 inp */
  1773. plc->parity_err++ ;
  1774. }
  1775. if (cmd & PL_LSDO) { /* carrier detected */
  1776. ;
  1777. }
  1778. #endif
  1779. }
  1780. void pcm_set_lct_short(smc,n)
  1781. struct s_smc *smc ;
  1782. int n ;
  1783. {
  1784. if (n <= 0 || n > 1000)
  1785. return ;
  1786. smc->s.lct_short = n ;
  1787. }
  1788. #ifdef DEBUG
  1789. /*
  1790.  * fill state struct
  1791.  */
  1792. void pcm_get_state(smc,state)
  1793. struct s_smc *smc ;
  1794. struct smt_state *state ;
  1795. {
  1796. struct s_phy *phy ;
  1797. struct pcm_state *pcs ;
  1798. int i ;
  1799. int ii ;
  1800. short rbits ;
  1801. short tbits ;
  1802. struct fddi_mib_p *mib ;
  1803. for (i = 0, phy = smc->y, pcs = state->pcm_state ; i < NUMPHYS ;
  1804. i++ , phy++, pcs++ ) {
  1805. mib = phy->mib ;
  1806. pcs->pcm_type = (u_char) mib->fddiPORTMy_Type ;
  1807. pcs->pcm_state = (u_char) mib->fddiPORTPCMState ;
  1808. pcs->pcm_mode = phy->pc_mode ;
  1809. pcs->pcm_neighbor = (u_char) mib->fddiPORTNeighborType ;
  1810. pcs->pcm_bsf = mib->fddiPORTBS_Flag ;
  1811. pcs->pcm_lsf = phy->ls_flag ;
  1812. pcs->pcm_lct_fail = (u_char) mib->fddiPORTLCTFail_Ct ;
  1813. pcs->pcm_ls_rx = LS2MIB(sm_pm_get_ls(smc,i)) ;
  1814. for (ii = 0, rbits = tbits = 0 ; ii < NUMBITS ; ii++) {
  1815. rbits <<= 1 ;
  1816. tbits <<= 1 ;
  1817. if (phy->r_val[NUMBITS-1-ii])
  1818. rbits |= 1 ;
  1819. if (phy->t_val[NUMBITS-1-ii])
  1820. tbits |= 1 ;
  1821. }
  1822. pcs->pcm_r_val = rbits ;
  1823. pcs->pcm_t_val = tbits ;
  1824. }
  1825. }
  1826. int get_pcm_state(smc,np)
  1827. struct s_smc *smc ;
  1828. int np;
  1829. {
  1830. int pcs ;
  1831. SK_UNUSED(smc) ;
  1832. switch (inpw(PLC(np,PL_STATUS_B)) & PL_PCM_STATE) {
  1833. case PL_PC0 : pcs = PC_STOP ; break ;
  1834. case PL_PC1 : pcs = PC_START ; break ;
  1835. case PL_PC2 : pcs = PC_TRACE ; break ;
  1836. case PL_PC3 : pcs = PC_SIGNAL ; break ;
  1837. case PL_PC4 : pcs = PC_SIGNAL ; break ;
  1838. case PL_PC5 : pcs = PC_SIGNAL ; break ;
  1839. case PL_PC6 : pcs = PC_JOIN ; break ;
  1840. case PL_PC7 : pcs = PC_JOIN ; break ;
  1841. case PL_PC8 : pcs = PC_ENABLE ; break ;
  1842. case PL_PC9 : pcs = PC_MAINT ; break ;
  1843. default : pcs = PC_DISABLE ;  break ;
  1844. }
  1845. return(pcs) ;
  1846. }
  1847. char *get_linestate(smc,np)
  1848. struct s_smc *smc ;
  1849. int np;
  1850. {
  1851. char *ls = "" ;
  1852. SK_UNUSED(smc) ;
  1853. switch (inpw(PLC(np,PL_STATUS_A)) & PL_LINE_ST) {
  1854. case PL_L_NLS : ls = "NOISE" ; break ;
  1855. case PL_L_ALS : ls = "ACTIV" ; break ;
  1856. case PL_L_UND : ls = "UNDEF" ; break ;
  1857. case PL_L_ILS4: ls = "ILS 4" ; break ;
  1858. case PL_L_QLS : ls = "QLS" ; break ;
  1859. case PL_L_MLS : ls = "MLS" ; break ;
  1860. case PL_L_HLS : ls = "HLS" ; break ;
  1861. case PL_L_ILS16:ls = "ILS16" ; break ;
  1862. #ifdef lint
  1863. default: ls = "unknown" ; break ;
  1864. #endif
  1865. }
  1866. return(ls) ;
  1867. }
  1868. char *get_pcmstate(smc,np)
  1869. struct s_smc *smc ;
  1870. int np;
  1871. {
  1872. char *pcs ;
  1873. SK_UNUSED(smc) ;
  1874. switch (inpw(PLC(np,PL_STATUS_B)) & PL_PCM_STATE) {
  1875. case PL_PC0 : pcs = "OFF" ; break ;
  1876. case PL_PC1 : pcs = "BREAK" ; break ;
  1877. case PL_PC2 : pcs = "TRACE" ; break ;
  1878. case PL_PC3 : pcs = "CONNECT"; break ;
  1879. case PL_PC4 : pcs = "NEXT" ; break ;
  1880. case PL_PC5 : pcs = "SIGNAL" ; break ;
  1881. case PL_PC6 : pcs = "JOIN" ; break ;
  1882. case PL_PC7 : pcs = "VERIFY" ; break ;
  1883. case PL_PC8 : pcs = "ACTIV" ; break ;
  1884. case PL_PC9 : pcs = "MAINT" ; break ;
  1885. default : pcs = "UNKNOWN" ;  break ;
  1886. }
  1887. return(pcs) ;
  1888. }
  1889. void list_phy(smc)
  1890. struct s_smc *smc ;
  1891. {
  1892. struct s_plc *plc ;
  1893. int np ;
  1894. for (np = 0 ; np < NUMPHYS ; np++) {
  1895. plc  = &smc->y[np].plc ;
  1896. printf("PHY %d:tERRORStttBREAK_REASONSttSTATES:n",np) ;
  1897. printf("tsoft_error: %ld ttPC_Start : %ldn",
  1898. plc->soft_err,plc->b_pcs);
  1899. printf("tparity_err: %ld ttTPC exp. : %ldttLine: %sn",
  1900. plc->parity_err,plc->b_tpc,get_linestate(smc,np)) ;
  1901. printf("tebuf_error: %ld ttTNE exp. : %ldn",
  1902. plc->ebuf_err,plc->b_tne) ;
  1903. printf("tphyinvalid: %ld ttQLS det. : %ldttPCM : %sn",
  1904. plc->phyinv,plc->b_qls,get_pcmstate(smc,np)) ;
  1905. printf("tviosym_ctr: %ld ttILS det. : %ldn",
  1906. plc->vsym_ctr,plc->b_ils)  ;
  1907. printf("tmingap_ctr: %ld ttHLS det. : %ldn",
  1908. plc->mini_ctr,plc->b_hls) ;
  1909. printf("tnodepr_err: %ldn",plc->np_err) ;
  1910. printf("tTPC_exp : %ldn",plc->tpc_exp) ;
  1911. printf("tLEM_err : %ldn",smc->y[np].lem.lem_errors) ;
  1912. }
  1913. }
  1914. #ifdef CONCENTRATOR
  1915. void pcm_lem_dump(smc)
  1916. struct s_smc *smc ;
  1917. {
  1918. int i ;
  1919. struct s_phy *phy ;
  1920. struct fddi_mib_p *mib ;
  1921. char *entostring() ;
  1922. printf("PHY errors BERn") ;
  1923. printf("----------------------n") ;
  1924. for (i = 0,phy = smc->y ; i < NUMPHYS ; i++,phy++) {
  1925. if (!plc_is_installed(smc,i))
  1926. continue ;
  1927. mib = phy->mib ;
  1928. printf("%st%ldt10E-%dn",
  1929. entostring(smc,ENTITY_PHY(i)),
  1930. mib->fddiPORTLem_Ct,
  1931. mib->fddiPORTLer_Estimate) ;
  1932. }
  1933. }
  1934. #endif
  1935. #endif