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