1 /* $Id: lmc_media.c,v 1.13 2000/04/11 05:25:26 asj Exp $ */
3 #include <linux/config.h>
4 #include <linux/kernel.h>
5 #include <linux/string.h>
6 #include <linux/timer.h>
7 #include <linux/ptrace.h>
8 #include <linux/errno.h>
9 #include <linux/ioport.h>
10 #include <linux/slab.h>
11 #include <linux/interrupt.h>
12 #include <linux/pci.h>
14 #include <linux/if_arp.h>
15 #include <linux/netdevice.h>
16 #include <linux/etherdevice.h>
17 #include <linux/skbuff.h>
18 #include <linux/inet.h>
19 #include <linux/bitops.h>
21 #include <net/syncppp.h>
23 #include <asm/processor.h> /* Processor type for cache alignment. */
27 #include <asm/uaccess.h>
31 #include "lmc_ioctl.h"
32 #include "lmc_debug.h"
34 #define CONFIG_LMC_IGNORE_HARDWARE_HANDSHAKE 1
37 * Copyright (c) 1997-2000 LAN Media Corporation (LMC)
38 * All rights reserved. www.lanmedia.com
40 * This code is written by:
41 * Andrew Stanley-Jones (asj@cban.com)
42 * Rob Braun (bbraun@vix.com),
43 * Michael Graff (explorer@vix.com) and
44 * Matt Thomas (matt@3am-software.com).
46 * This software may be used and distributed according to the terms
47 * of the GNU General Public License version 2, incorporated herein by reference.
51 * For lack of a better place, put the SSI cable stuff here.
53 char *lmc_t1_cables
[] = {
54 "V.10/RS423", "EIA530A", "reserved", "X.21", "V.35",
55 "EIA449/EIA530/V.36", "V.28/EIA232", "none", NULL
59 * protocol independent method.
61 static void lmc_set_protocol (lmc_softc_t
* const, lmc_ctl_t
*);
64 * media independent methods to check on media status, link, light LEDs,
67 static void lmc_ds3_init (lmc_softc_t
* const);
68 static void lmc_ds3_default (lmc_softc_t
* const);
69 static void lmc_ds3_set_status (lmc_softc_t
* const, lmc_ctl_t
*);
70 static void lmc_ds3_set_100ft (lmc_softc_t
* const, int);
71 static int lmc_ds3_get_link_status (lmc_softc_t
* const);
72 static void lmc_ds3_set_crc_length (lmc_softc_t
* const, int);
73 static void lmc_ds3_set_scram (lmc_softc_t
* const, int);
74 static void lmc_ds3_watchdog (lmc_softc_t
* const);
76 static void lmc_hssi_init (lmc_softc_t
* const);
77 static void lmc_hssi_default (lmc_softc_t
* const);
78 static void lmc_hssi_set_status (lmc_softc_t
* const, lmc_ctl_t
*);
79 static void lmc_hssi_set_clock (lmc_softc_t
* const, int);
80 static int lmc_hssi_get_link_status (lmc_softc_t
* const);
81 static void lmc_hssi_set_link_status (lmc_softc_t
* const, int);
82 static void lmc_hssi_set_crc_length (lmc_softc_t
* const, int);
83 static void lmc_hssi_watchdog (lmc_softc_t
* const);
85 static void lmc_ssi_init (lmc_softc_t
* const);
86 static void lmc_ssi_default (lmc_softc_t
* const);
87 static void lmc_ssi_set_status (lmc_softc_t
* const, lmc_ctl_t
*);
88 static void lmc_ssi_set_clock (lmc_softc_t
* const, int);
89 static void lmc_ssi_set_speed (lmc_softc_t
* const, lmc_ctl_t
*);
90 static int lmc_ssi_get_link_status (lmc_softc_t
* const);
91 static void lmc_ssi_set_link_status (lmc_softc_t
* const, int);
92 static void lmc_ssi_set_crc_length (lmc_softc_t
* const, int);
93 static void lmc_ssi_watchdog (lmc_softc_t
* const);
95 static void lmc_t1_init (lmc_softc_t
* const);
96 static void lmc_t1_default (lmc_softc_t
* const);
97 static void lmc_t1_set_status (lmc_softc_t
* const, lmc_ctl_t
*);
98 static int lmc_t1_get_link_status (lmc_softc_t
* const);
99 static void lmc_t1_set_circuit_type (lmc_softc_t
* const, int);
100 static void lmc_t1_set_crc_length (lmc_softc_t
* const, int);
101 static void lmc_t1_set_clock (lmc_softc_t
* const, int);
102 static void lmc_t1_watchdog (lmc_softc_t
* const);
104 static void lmc_dummy_set_1 (lmc_softc_t
* const, int);
105 static void lmc_dummy_set2_1 (lmc_softc_t
* const, lmc_ctl_t
*);
107 static inline void write_av9110_bit (lmc_softc_t
*, int);
108 static void write_av9110 (lmc_softc_t
*, u_int32_t
, u_int32_t
, u_int32_t
,
109 u_int32_t
, u_int32_t
);
111 lmc_media_t lmc_ds3_media
= {
112 lmc_ds3_init
, /* special media init stuff */
113 lmc_ds3_default
, /* reset to default state */
114 lmc_ds3_set_status
, /* reset status to state provided */
115 lmc_dummy_set_1
, /* set clock source */
116 lmc_dummy_set2_1
, /* set line speed */
117 lmc_ds3_set_100ft
, /* set cable length */
118 lmc_ds3_set_scram
, /* set scrambler */
119 lmc_ds3_get_link_status
, /* get link status */
120 lmc_dummy_set_1
, /* set link status */
121 lmc_ds3_set_crc_length
, /* set CRC length */
122 lmc_dummy_set_1
, /* set T1 or E1 circuit type */
126 lmc_media_t lmc_hssi_media
= {
127 lmc_hssi_init
, /* special media init stuff */
128 lmc_hssi_default
, /* reset to default state */
129 lmc_hssi_set_status
, /* reset status to state provided */
130 lmc_hssi_set_clock
, /* set clock source */
131 lmc_dummy_set2_1
, /* set line speed */
132 lmc_dummy_set_1
, /* set cable length */
133 lmc_dummy_set_1
, /* set scrambler */
134 lmc_hssi_get_link_status
, /* get link status */
135 lmc_hssi_set_link_status
, /* set link status */
136 lmc_hssi_set_crc_length
, /* set CRC length */
137 lmc_dummy_set_1
, /* set T1 or E1 circuit type */
141 lmc_media_t lmc_ssi_media
= { lmc_ssi_init
, /* special media init stuff */
142 lmc_ssi_default
, /* reset to default state */
143 lmc_ssi_set_status
, /* reset status to state provided */
144 lmc_ssi_set_clock
, /* set clock source */
145 lmc_ssi_set_speed
, /* set line speed */
146 lmc_dummy_set_1
, /* set cable length */
147 lmc_dummy_set_1
, /* set scrambler */
148 lmc_ssi_get_link_status
, /* get link status */
149 lmc_ssi_set_link_status
, /* set link status */
150 lmc_ssi_set_crc_length
, /* set CRC length */
151 lmc_dummy_set_1
, /* set T1 or E1 circuit type */
155 lmc_media_t lmc_t1_media
= {
156 lmc_t1_init
, /* special media init stuff */
157 lmc_t1_default
, /* reset to default state */
158 lmc_t1_set_status
, /* reset status to state provided */
159 lmc_t1_set_clock
, /* set clock source */
160 lmc_dummy_set2_1
, /* set line speed */
161 lmc_dummy_set_1
, /* set cable length */
162 lmc_dummy_set_1
, /* set scrambler */
163 lmc_t1_get_link_status
, /* get link status */
164 lmc_dummy_set_1
, /* set link status */
165 lmc_t1_set_crc_length
, /* set CRC length */
166 lmc_t1_set_circuit_type
, /* set T1 or E1 circuit type */
171 lmc_dummy_set_1 (lmc_softc_t
* const sc
, int a
)
176 lmc_dummy_set2_1 (lmc_softc_t
* const sc
, lmc_ctl_t
* a
)
185 lmc_hssi_init (lmc_softc_t
* const sc
)
187 sc
->ictl
.cardtype
= LMC_CTL_CARDTYPE_LMC5200
;
189 lmc_gpio_mkoutput (sc
, LMC_GEP_HSSI_CLOCK
);
193 lmc_hssi_default (lmc_softc_t
* const sc
)
195 sc
->lmc_miireg16
= LMC_MII16_LED_ALL
;
197 sc
->lmc_media
->set_link_status (sc
, LMC_LINK_DOWN
);
198 sc
->lmc_media
->set_clock_source (sc
, LMC_CTL_CLOCK_SOURCE_EXT
);
199 sc
->lmc_media
->set_crc_length (sc
, LMC_CTL_CRC_LENGTH_16
);
203 * Given a user provided state, set ourselves up to match it. This will
204 * always reset the card if needed.
207 lmc_hssi_set_status (lmc_softc_t
* const sc
, lmc_ctl_t
* ctl
)
211 sc
->lmc_media
->set_clock_source (sc
, sc
->ictl
.clock_source
);
212 lmc_set_protocol (sc
, NULL
);
218 * check for change in clock source
220 if (ctl
->clock_source
&& !sc
->ictl
.clock_source
)
222 sc
->lmc_media
->set_clock_source (sc
, LMC_CTL_CLOCK_SOURCE_INT
);
223 sc
->lmc_timing
= LMC_CTL_CLOCK_SOURCE_INT
;
225 else if (!ctl
->clock_source
&& sc
->ictl
.clock_source
)
227 sc
->lmc_timing
= LMC_CTL_CLOCK_SOURCE_EXT
;
228 sc
->lmc_media
->set_clock_source (sc
, LMC_CTL_CLOCK_SOURCE_EXT
);
231 lmc_set_protocol (sc
, ctl
);
235 * 1 == internal, 0 == external
238 lmc_hssi_set_clock (lmc_softc_t
* const sc
, int ie
)
241 old
= sc
->ictl
.clock_source
;
242 if (ie
== LMC_CTL_CLOCK_SOURCE_EXT
)
244 sc
->lmc_gpio
|= LMC_GEP_HSSI_CLOCK
;
245 LMC_CSR_WRITE (sc
, csr_gp
, sc
->lmc_gpio
);
246 sc
->ictl
.clock_source
= LMC_CTL_CLOCK_SOURCE_EXT
;
248 printk (LMC_PRINTF_FMT
": clock external\n", LMC_PRINTF_ARGS
);
252 sc
->lmc_gpio
&= ~(LMC_GEP_HSSI_CLOCK
);
253 LMC_CSR_WRITE (sc
, csr_gp
, sc
->lmc_gpio
);
254 sc
->ictl
.clock_source
= LMC_CTL_CLOCK_SOURCE_INT
;
256 printk (LMC_PRINTF_FMT
": clock internal\n", LMC_PRINTF_ARGS
);
261 * return hardware link status.
262 * 0 == link is down, 1 == link is up.
265 lmc_hssi_get_link_status (lmc_softc_t
* const sc
)
268 * We're using the same code as SSI since
269 * they're practically the same
271 return lmc_ssi_get_link_status(sc
);
275 lmc_hssi_set_link_status (lmc_softc_t
* const sc
, int state
)
277 if (state
== LMC_LINK_UP
)
278 sc
->lmc_miireg16
|= LMC_MII16_HSSI_TA
;
280 sc
->lmc_miireg16
&= ~LMC_MII16_HSSI_TA
;
282 lmc_mii_writereg (sc
, 0, 16, sc
->lmc_miireg16
);
286 * 0 == 16bit, 1 == 32bit
289 lmc_hssi_set_crc_length (lmc_softc_t
* const sc
, int state
)
291 if (state
== LMC_CTL_CRC_LENGTH_32
)
294 sc
->lmc_miireg16
|= LMC_MII16_HSSI_CRC
;
295 sc
->ictl
.crc_length
= LMC_CTL_CRC_LENGTH_32
;
300 sc
->lmc_miireg16
&= ~LMC_MII16_HSSI_CRC
;
301 sc
->ictl
.crc_length
= LMC_CTL_CRC_LENGTH_16
;
304 lmc_mii_writereg (sc
, 0, 16, sc
->lmc_miireg16
);
308 lmc_hssi_watchdog (lmc_softc_t
* const sc
)
321 lmc_ds3_set_100ft (lmc_softc_t
* const sc
, int ie
)
323 if (ie
== LMC_CTL_CABLE_LENGTH_GT_100FT
)
325 sc
->lmc_miireg16
&= ~LMC_MII16_DS3_ZERO
;
326 sc
->ictl
.cable_length
= LMC_CTL_CABLE_LENGTH_GT_100FT
;
328 else if (ie
== LMC_CTL_CABLE_LENGTH_LT_100FT
)
330 sc
->lmc_miireg16
|= LMC_MII16_DS3_ZERO
;
331 sc
->ictl
.cable_length
= LMC_CTL_CABLE_LENGTH_LT_100FT
;
333 lmc_mii_writereg (sc
, 0, 16, sc
->lmc_miireg16
);
337 lmc_ds3_default (lmc_softc_t
* const sc
)
339 sc
->lmc_miireg16
= LMC_MII16_LED_ALL
;
341 sc
->lmc_media
->set_link_status (sc
, LMC_LINK_DOWN
);
342 sc
->lmc_media
->set_cable_length (sc
, LMC_CTL_CABLE_LENGTH_LT_100FT
);
343 sc
->lmc_media
->set_scrambler (sc
, LMC_CTL_OFF
);
344 sc
->lmc_media
->set_crc_length (sc
, LMC_CTL_CRC_LENGTH_16
);
348 * Given a user provided state, set ourselves up to match it. This will
349 * always reset the card if needed.
352 lmc_ds3_set_status (lmc_softc_t
* const sc
, lmc_ctl_t
* ctl
)
356 sc
->lmc_media
->set_cable_length (sc
, sc
->ictl
.cable_length
);
357 sc
->lmc_media
->set_scrambler (sc
, sc
->ictl
.scrambler_onoff
);
358 lmc_set_protocol (sc
, NULL
);
364 * check for change in cable length setting
366 if (ctl
->cable_length
&& !sc
->ictl
.cable_length
)
367 lmc_ds3_set_100ft (sc
, LMC_CTL_CABLE_LENGTH_GT_100FT
);
368 else if (!ctl
->cable_length
&& sc
->ictl
.cable_length
)
369 lmc_ds3_set_100ft (sc
, LMC_CTL_CABLE_LENGTH_LT_100FT
);
372 * Check for change in scrambler setting (requires reset)
374 if (ctl
->scrambler_onoff
&& !sc
->ictl
.scrambler_onoff
)
375 lmc_ds3_set_scram (sc
, LMC_CTL_ON
);
376 else if (!ctl
->scrambler_onoff
&& sc
->ictl
.scrambler_onoff
)
377 lmc_ds3_set_scram (sc
, LMC_CTL_OFF
);
379 lmc_set_protocol (sc
, ctl
);
383 lmc_ds3_init (lmc_softc_t
* const sc
)
387 sc
->ictl
.cardtype
= LMC_CTL_CARDTYPE_LMC5245
;
389 /* writes zeros everywhere */
390 for (i
= 0; i
< 21; i
++)
392 lmc_mii_writereg (sc
, 0, 17, i
);
393 lmc_mii_writereg (sc
, 0, 18, 0);
396 /* set some essential bits */
397 lmc_mii_writereg (sc
, 0, 17, 1);
398 lmc_mii_writereg (sc
, 0, 18, 0x25); /* ser, xtx */
400 lmc_mii_writereg (sc
, 0, 17, 5);
401 lmc_mii_writereg (sc
, 0, 18, 0x80); /* emode */
403 lmc_mii_writereg (sc
, 0, 17, 14);
404 lmc_mii_writereg (sc
, 0, 18, 0x30); /* rcgen, tcgen */
406 /* clear counters and latched bits */
407 for (i
= 0; i
< 21; i
++)
409 lmc_mii_writereg (sc
, 0, 17, i
);
410 lmc_mii_readreg (sc
, 0, 18);
415 * 1 == DS3 payload scrambled, 0 == not scrambled
418 lmc_ds3_set_scram (lmc_softc_t
* const sc
, int ie
)
420 if (ie
== LMC_CTL_ON
)
422 sc
->lmc_miireg16
|= LMC_MII16_DS3_SCRAM
;
423 sc
->ictl
.scrambler_onoff
= LMC_CTL_ON
;
427 sc
->lmc_miireg16
&= ~LMC_MII16_DS3_SCRAM
;
428 sc
->ictl
.scrambler_onoff
= LMC_CTL_OFF
;
430 lmc_mii_writereg (sc
, 0, 16, sc
->lmc_miireg16
);
434 * return hardware link status.
435 * 0 == link is down, 1 == link is up.
438 lmc_ds3_get_link_status (lmc_softc_t
* const sc
)
440 u_int16_t link_status
, link_status_11
;
443 lmc_mii_writereg (sc
, 0, 17, 7);
444 link_status
= lmc_mii_readreg (sc
, 0, 18);
446 /* LMC5245 (DS3) & LMC1200 (DS1) LED definitions
447 * led0 yellow = far-end adapter is in Red alarm condition
448 * led1 blue = received an Alarm Indication signal
450 * led2 Green = power to adapter, Gate Array loaded & driver
452 * led3 red = Loss of Signal (LOS) or out of frame (OOF)
453 * conditions detected on T3 receive signal
456 lmc_led_on(sc
, LMC_DS3_LED2
);
458 if ((link_status
& LMC_FRAMER_REG0_DLOS
) ||
459 (link_status
& LMC_FRAMER_REG0_OOFS
)){
461 if(sc
->last_led_err
[3] != 1){
463 lmc_mii_writereg (sc
, 0, 17, 01); /* Turn on Xbit error as our cisco does */
464 r1
= lmc_mii_readreg (sc
, 0, 18);
466 lmc_mii_writereg(sc
, 0, 18, r1
);
467 printk(KERN_WARNING
"%s: Red Alarm - Loss of Signal or Loss of Framing\n", sc
->name
);
469 lmc_led_on(sc
, LMC_DS3_LED3
); /* turn on red LED */
470 sc
->last_led_err
[3] = 1;
473 lmc_led_off(sc
, LMC_DS3_LED3
); /* turn on red LED */
474 if(sc
->last_led_err
[3] == 1){
476 lmc_mii_writereg (sc
, 0, 17, 01); /* Turn off Xbit error */
477 r1
= lmc_mii_readreg (sc
, 0, 18);
479 lmc_mii_writereg(sc
, 0, 18, r1
);
481 sc
->last_led_err
[3] = 0;
484 lmc_mii_writereg(sc
, 0, 17, 0x10);
485 link_status_11
= lmc_mii_readreg(sc
, 0, 18);
486 if((link_status
& LMC_FRAMER_REG0_AIS
) ||
487 (link_status_11
& LMC_FRAMER_REG10_XBIT
)) {
489 if(sc
->last_led_err
[0] != 1){
490 printk(KERN_WARNING
"%s: AIS Alarm or XBit Error\n", sc
->name
);
491 printk(KERN_WARNING
"%s: Remote end has loss of signal or framing\n", sc
->name
);
493 lmc_led_on(sc
, LMC_DS3_LED0
);
494 sc
->last_led_err
[0] = 1;
497 lmc_led_off(sc
, LMC_DS3_LED0
);
498 sc
->last_led_err
[0] = 0;
501 lmc_mii_writereg (sc
, 0, 17, 9);
502 link_status
= lmc_mii_readreg (sc
, 0, 18);
504 if(link_status
& LMC_FRAMER_REG9_RBLUE
){
506 if(sc
->last_led_err
[1] != 1){
507 printk(KERN_WARNING
"%s: Blue Alarm - Receiving all 1's\n", sc
->name
);
509 lmc_led_on(sc
, LMC_DS3_LED1
);
510 sc
->last_led_err
[1] = 1;
513 lmc_led_off(sc
, LMC_DS3_LED1
);
514 sc
->last_led_err
[1] = 0;
521 * 0 == 16bit, 1 == 32bit
524 lmc_ds3_set_crc_length (lmc_softc_t
* const sc
, int state
)
526 if (state
== LMC_CTL_CRC_LENGTH_32
)
529 sc
->lmc_miireg16
|= LMC_MII16_DS3_CRC
;
530 sc
->ictl
.crc_length
= LMC_CTL_CRC_LENGTH_32
;
535 sc
->lmc_miireg16
&= ~LMC_MII16_DS3_CRC
;
536 sc
->ictl
.crc_length
= LMC_CTL_CRC_LENGTH_16
;
539 lmc_mii_writereg (sc
, 0, 16, sc
->lmc_miireg16
);
543 lmc_ds3_watchdog (lmc_softc_t
* const sc
)
554 lmc_ssi_init (lmc_softc_t
* const sc
)
559 sc
->ictl
.cardtype
= LMC_CTL_CARDTYPE_LMC1000
;
561 mii17
= lmc_mii_readreg (sc
, 0, 17);
563 cable
= (mii17
& LMC_MII17_SSI_CABLE_MASK
) >> LMC_MII17_SSI_CABLE_SHIFT
;
564 sc
->ictl
.cable_type
= cable
;
566 lmc_gpio_mkoutput (sc
, LMC_GEP_SSI_TXCLOCK
);
570 lmc_ssi_default (lmc_softc_t
* const sc
)
572 sc
->lmc_miireg16
= LMC_MII16_LED_ALL
;
575 * make TXCLOCK always be an output
577 lmc_gpio_mkoutput (sc
, LMC_GEP_SSI_TXCLOCK
);
579 sc
->lmc_media
->set_link_status (sc
, LMC_LINK_DOWN
);
580 sc
->lmc_media
->set_clock_source (sc
, LMC_CTL_CLOCK_SOURCE_EXT
);
581 sc
->lmc_media
->set_speed (sc
, NULL
);
582 sc
->lmc_media
->set_crc_length (sc
, LMC_CTL_CRC_LENGTH_16
);
586 * Given a user provided state, set ourselves up to match it. This will
587 * always reset the card if needed.
590 lmc_ssi_set_status (lmc_softc_t
* const sc
, lmc_ctl_t
* ctl
)
594 sc
->lmc_media
->set_clock_source (sc
, sc
->ictl
.clock_source
);
595 sc
->lmc_media
->set_speed (sc
, &sc
->ictl
);
596 lmc_set_protocol (sc
, NULL
);
602 * check for change in clock source
604 if (ctl
->clock_source
== LMC_CTL_CLOCK_SOURCE_INT
605 && sc
->ictl
.clock_source
== LMC_CTL_CLOCK_SOURCE_EXT
)
607 sc
->lmc_media
->set_clock_source (sc
, LMC_CTL_CLOCK_SOURCE_INT
);
608 sc
->lmc_timing
= LMC_CTL_CLOCK_SOURCE_INT
;
610 else if (ctl
->clock_source
== LMC_CTL_CLOCK_SOURCE_EXT
611 && sc
->ictl
.clock_source
== LMC_CTL_CLOCK_SOURCE_INT
)
613 sc
->lmc_media
->set_clock_source (sc
, LMC_CTL_CLOCK_SOURCE_EXT
);
614 sc
->lmc_timing
= LMC_CTL_CLOCK_SOURCE_EXT
;
617 if (ctl
->clock_rate
!= sc
->ictl
.clock_rate
)
618 sc
->lmc_media
->set_speed (sc
, ctl
);
620 lmc_set_protocol (sc
, ctl
);
624 * 1 == internal, 0 == external
627 lmc_ssi_set_clock (lmc_softc_t
* const sc
, int ie
)
631 if (ie
== LMC_CTL_CLOCK_SOURCE_EXT
)
633 sc
->lmc_gpio
&= ~(LMC_GEP_SSI_TXCLOCK
);
634 LMC_CSR_WRITE (sc
, csr_gp
, sc
->lmc_gpio
);
635 sc
->ictl
.clock_source
= LMC_CTL_CLOCK_SOURCE_EXT
;
637 printk (LMC_PRINTF_FMT
": clock external\n", LMC_PRINTF_ARGS
);
641 sc
->lmc_gpio
|= LMC_GEP_SSI_TXCLOCK
;
642 LMC_CSR_WRITE (sc
, csr_gp
, sc
->lmc_gpio
);
643 sc
->ictl
.clock_source
= LMC_CTL_CLOCK_SOURCE_INT
;
645 printk (LMC_PRINTF_FMT
": clock internal\n", LMC_PRINTF_ARGS
);
650 lmc_ssi_set_speed (lmc_softc_t
* const sc
, lmc_ctl_t
* ctl
)
652 lmc_ctl_t
*ictl
= &sc
->ictl
;
655 /* original settings for clock rate of:
656 * 100 Khz (8,25,0,0,2) were incorrect
657 * they should have been 80,125,1,3,3
658 * There are 17 param combinations to produce this freq.
659 * For 1.5 Mhz use 120,100,1,1,2 (226 param. combinations)
663 av
= &ictl
->cardspec
.ssi
;
664 ictl
->clock_rate
= 1500000;
665 av
->f
= ictl
->clock_rate
;
672 write_av9110 (sc
, av
->n
, av
->m
, av
->v
, av
->x
, av
->r
);
676 av
= &ctl
->cardspec
.ssi
;
681 ictl
->clock_rate
= av
->f
; /* really, this is the rate we are */
682 ictl
->cardspec
.ssi
= *av
;
684 write_av9110 (sc
, av
->n
, av
->m
, av
->v
, av
->x
, av
->r
);
688 * return hardware link status.
689 * 0 == link is down, 1 == link is up.
692 lmc_ssi_get_link_status (lmc_softc_t
* const sc
)
694 u_int16_t link_status
;
700 * missing CTS? Hmm. If we require CTS on, we may never get the
701 * link to come up, so omit it in this test.
703 * Also, it seems that with a loopback cable, DCD isn't asserted,
704 * so just check for things like this:
705 * DSR _must_ be asserted.
706 * One of DCD or CTS must be asserted.
709 /* LMC 1000 (SSI) LED definitions
710 * led0 Green = power to adapter, Gate Array loaded &
712 * led1 Green = DSR and DTR and RTS and CTS are set
713 * led2 Green = Cable detected
714 * led3 red = No timing is available from the
715 * cable or the on-board frequency
719 link_status
= lmc_mii_readreg (sc
, 0, 16);
721 /* Is the transmit clock still available */
722 ticks
= LMC_CSR_READ (sc
, csr_gp_timer
);
723 ticks
= 0x0000ffff - (ticks
& 0x0000ffff);
725 lmc_led_on (sc
, LMC_MII16_LED0
);
727 /* ====== transmit clock determination ===== */
728 if (sc
->lmc_timing
== LMC_CTL_CLOCK_SOURCE_INT
) {
729 lmc_led_off(sc
, LMC_MII16_LED3
);
731 else if (ticks
== 0 ) { /* no clock found ? */
733 if(sc
->last_led_err
[3] != 1){
734 sc
->stats
.tx_lossOfClockCnt
++;
735 printk(KERN_WARNING
"%s: Lost Clock, Link Down\n", sc
->name
);
737 sc
->last_led_err
[3] = 1;
738 lmc_led_on (sc
, LMC_MII16_LED3
); /* turn ON red LED */
741 if(sc
->last_led_err
[3] == 1)
742 printk(KERN_WARNING
"%s: Clock Returned\n", sc
->name
);
743 sc
->last_led_err
[3] = 0;
744 lmc_led_off (sc
, LMC_MII16_LED3
); /* turn OFF red LED */
747 if ((link_status
& LMC_MII16_SSI_DSR
) == 0) { /* Also HSSI CA */
752 #ifdef CONFIG_LMC_IGNORE_HARDWARE_HANDSHAKE
753 if ((link_status
& (LMC_MII16_SSI_CTS
| LMC_MII16_SSI_DCD
)) == 0){
760 if(sc
->last_led_err
[1] != 1)
761 printk(KERN_WARNING
"%s: DSR not asserted\n", sc
->name
);
762 sc
->last_led_err
[1] = 1;
763 lmc_led_off(sc
, LMC_MII16_LED1
);
766 if(sc
->last_led_err
[1] != 0)
767 printk(KERN_WARNING
"%s: DSR now asserted\n", sc
->name
);
768 sc
->last_led_err
[1] = 0;
769 lmc_led_on(sc
, LMC_MII16_LED1
);
773 lmc_led_on(sc
, LMC_MII16_LED2
); /* Over all good status? */
780 lmc_ssi_set_link_status (lmc_softc_t
* const sc
, int state
)
782 if (state
== LMC_LINK_UP
)
784 sc
->lmc_miireg16
|= (LMC_MII16_SSI_DTR
| LMC_MII16_SSI_RTS
);
785 printk (LMC_PRINTF_FMT
": asserting DTR and RTS\n", LMC_PRINTF_ARGS
);
789 sc
->lmc_miireg16
&= ~(LMC_MII16_SSI_DTR
| LMC_MII16_SSI_RTS
);
790 printk (LMC_PRINTF_FMT
": deasserting DTR and RTS\n", LMC_PRINTF_ARGS
);
793 lmc_mii_writereg (sc
, 0, 16, sc
->lmc_miireg16
);
798 * 0 == 16bit, 1 == 32bit
801 lmc_ssi_set_crc_length (lmc_softc_t
* const sc
, int state
)
803 if (state
== LMC_CTL_CRC_LENGTH_32
)
806 sc
->lmc_miireg16
|= LMC_MII16_SSI_CRC
;
807 sc
->ictl
.crc_length
= LMC_CTL_CRC_LENGTH_32
;
808 sc
->lmc_crcSize
= LMC_CTL_CRC_BYTESIZE_4
;
814 sc
->lmc_miireg16
&= ~LMC_MII16_SSI_CRC
;
815 sc
->ictl
.crc_length
= LMC_CTL_CRC_LENGTH_16
;
816 sc
->lmc_crcSize
= LMC_CTL_CRC_BYTESIZE_2
;
819 lmc_mii_writereg (sc
, 0, 16, sc
->lmc_miireg16
);
823 * These are bits to program the ssi frequency generator
826 write_av9110_bit (lmc_softc_t
* sc
, int c
)
829 * set the data bit as we need it.
831 sc
->lmc_gpio
&= ~(LMC_GEP_CLK
);
833 sc
->lmc_gpio
|= LMC_GEP_DATA
;
835 sc
->lmc_gpio
&= ~(LMC_GEP_DATA
);
836 LMC_CSR_WRITE (sc
, csr_gp
, sc
->lmc_gpio
);
839 * set the clock to high
841 sc
->lmc_gpio
|= LMC_GEP_CLK
;
842 LMC_CSR_WRITE (sc
, csr_gp
, sc
->lmc_gpio
);
845 * set the clock to low again.
847 sc
->lmc_gpio
&= ~(LMC_GEP_CLK
);
848 LMC_CSR_WRITE (sc
, csr_gp
, sc
->lmc_gpio
);
852 write_av9110 (lmc_softc_t
* sc
, u_int32_t n
, u_int32_t m
, u_int32_t v
,
853 u_int32_t x
, u_int32_t r
)
858 printk (LMC_PRINTF_FMT
": speed %u, %d %d %d %d %d\n",
859 LMC_PRINTF_ARGS
, sc
->ictl
.clock_rate
, n
, m
, v
, x
, r
);
862 sc
->lmc_gpio
|= LMC_GEP_SSI_GENERATOR
;
863 sc
->lmc_gpio
&= ~(LMC_GEP_DATA
| LMC_GEP_CLK
);
864 LMC_CSR_WRITE (sc
, csr_gp
, sc
->lmc_gpio
);
867 * Set the TXCLOCK, GENERATOR, SERIAL, and SERIALCLK
870 lmc_gpio_mkoutput (sc
, (LMC_GEP_DATA
| LMC_GEP_CLK
871 | LMC_GEP_SSI_GENERATOR
));
873 sc
->lmc_gpio
&= ~(LMC_GEP_SSI_GENERATOR
);
874 LMC_CSR_WRITE (sc
, csr_gp
, sc
->lmc_gpio
);
877 * a shifting we will go...
879 for (i
= 0; i
< 7; i
++)
880 write_av9110_bit (sc
, n
>> i
);
881 for (i
= 0; i
< 7; i
++)
882 write_av9110_bit (sc
, m
>> i
);
883 for (i
= 0; i
< 1; i
++)
884 write_av9110_bit (sc
, v
>> i
);
885 for (i
= 0; i
< 2; i
++)
886 write_av9110_bit (sc
, x
>> i
);
887 for (i
= 0; i
< 2; i
++)
888 write_av9110_bit (sc
, r
>> i
);
889 for (i
= 0; i
< 5; i
++)
890 write_av9110_bit (sc
, 0x17 >> i
);
893 * stop driving serial-related signals
895 lmc_gpio_mkinput (sc
,
896 (LMC_GEP_DATA
| LMC_GEP_CLK
897 | LMC_GEP_SSI_GENERATOR
));
901 lmc_ssi_watchdog (lmc_softc_t
* const sc
)
906 unsigned short dtr
:1, dsr
:1, rts
:1, cable
:3, crc
:1, led0
:1, led1
:1,
907 led2
:1, led3
:1, fifo
:1, ll
:1, rl
:1, tm
:1, loop
:1;
909 struct ssicsr2
*ssicsr
;
910 mii17
= lmc_mii_readreg (sc
, 0, 17);
911 ssicsr
= (struct ssicsr2
*) &mii17
;
912 if (ssicsr
->cable
== 7)
914 lmc_led_off (sc
, LMC_MII16_LED2
);
918 lmc_led_on (sc
, LMC_MII16_LED2
);
928 * The framer regs are multiplexed through MII regs 17 & 18
929 * write the register address to MII reg 17 and the * data to MII reg 18. */
931 lmc_t1_write (lmc_softc_t
* const sc
, int a
, int d
)
933 lmc_mii_writereg (sc
, 0, 17, a
);
934 lmc_mii_writereg (sc
, 0, 18, d
);
939 lmc_t1_read (lmc_softc_t * const sc, int a)
941 lmc_mii_writereg (sc, 0, 17, a);
942 return lmc_mii_readreg (sc, 0, 18);
948 lmc_t1_init (lmc_softc_t
* const sc
)
953 sc
->ictl
.cardtype
= LMC_CTL_CARDTYPE_LMC1200
;
954 mii16
= lmc_mii_readreg (sc
, 0, 16);
957 mii16
&= ~LMC_MII16_T1_RST
;
958 lmc_mii_writereg (sc
, 0, 16, mii16
| LMC_MII16_T1_RST
);
959 lmc_mii_writereg (sc
, 0, 16, mii16
);
961 /* set T1 or E1 line. Uses sc->lmcmii16 reg in function so update it */
962 sc
->lmc_miireg16
= mii16
;
963 lmc_t1_set_circuit_type(sc
, LMC_CTL_CIRCUIT_TYPE_T1
);
964 mii16
= sc
->lmc_miireg16
;
966 lmc_t1_write (sc
, 0x01, 0x1B); /* CR0 - primary control */
967 lmc_t1_write (sc
, 0x02, 0x42); /* JAT_CR - jitter atten config */
968 lmc_t1_write (sc
, 0x14, 0x00); /* LOOP - loopback config */
969 lmc_t1_write (sc
, 0x15, 0x00); /* DL3_TS - external data link timeslot */
970 lmc_t1_write (sc
, 0x18, 0xFF); /* PIO - programmable I/O */
971 lmc_t1_write (sc
, 0x19, 0x30); /* POE - programmable OE */
972 lmc_t1_write (sc
, 0x1A, 0x0F); /* CMUX - clock input mux */
973 lmc_t1_write (sc
, 0x20, 0x41); /* LIU_CR - RX LIU config */
974 lmc_t1_write (sc
, 0x22, 0x76); /* RLIU_CR - RX LIU config */
975 lmc_t1_write (sc
, 0x40, 0x03); /* RCR0 - RX config */
976 lmc_t1_write (sc
, 0x45, 0x00); /* RALM - RX alarm config */
977 lmc_t1_write (sc
, 0x46, 0x05); /* LATCH - RX alarm/err/cntr latch */
978 lmc_t1_write (sc
, 0x68, 0x40); /* TLIU_CR - TX LIU config */
979 lmc_t1_write (sc
, 0x70, 0x0D); /* TCR0 - TX framer config */
980 lmc_t1_write (sc
, 0x71, 0x05); /* TCR1 - TX config */
981 lmc_t1_write (sc
, 0x72, 0x0B); /* TFRM - TX frame format */
982 lmc_t1_write (sc
, 0x73, 0x00); /* TERROR - TX error insert */
983 lmc_t1_write (sc
, 0x74, 0x00); /* TMAN - TX manual Sa/FEBE config */
984 lmc_t1_write (sc
, 0x75, 0x00); /* TALM - TX alarm signal config */
985 lmc_t1_write (sc
, 0x76, 0x00); /* TPATT - TX test pattern config */
986 lmc_t1_write (sc
, 0x77, 0x00); /* TLB - TX inband loopback config */
987 lmc_t1_write (sc
, 0x90, 0x05); /* CLAD_CR - clock rate adapter config */
988 lmc_t1_write (sc
, 0x91, 0x05); /* CSEL - clad freq sel */
989 lmc_t1_write (sc
, 0xA6, 0x00); /* DL1_CTL - DL1 control */
990 lmc_t1_write (sc
, 0xB1, 0x00); /* DL2_CTL - DL2 control */
991 lmc_t1_write (sc
, 0xD0, 0x47); /* SBI_CR - sys bus iface config */
992 lmc_t1_write (sc
, 0xD1, 0x70); /* RSB_CR - RX sys bus config */
993 lmc_t1_write (sc
, 0xD4, 0x30); /* TSB_CR - TX sys bus config */
994 for (i
= 0; i
< 32; i
++)
996 lmc_t1_write (sc
, 0x0E0 + i
, 0x00); /* SBCn - sys bus per-channel ctl */
997 lmc_t1_write (sc
, 0x100 + i
, 0x00); /* TPCn - TX per-channel ctl */
998 lmc_t1_write (sc
, 0x180 + i
, 0x00); /* RPCn - RX per-channel ctl */
1000 for (i
= 1; i
< 25; i
++)
1002 lmc_t1_write (sc
, 0x0E0 + i
, 0x0D); /* SBCn - sys bus per-channel ctl */
1005 mii16
|= LMC_MII16_T1_XOE
;
1006 lmc_mii_writereg (sc
, 0, 16, mii16
);
1007 sc
->lmc_miireg16
= mii16
;
1011 lmc_t1_default (lmc_softc_t
* const sc
)
1013 sc
->lmc_miireg16
= LMC_MII16_LED_ALL
;
1014 sc
->lmc_media
->set_link_status (sc
, LMC_LINK_DOWN
);
1015 sc
->lmc_media
->set_circuit_type (sc
, LMC_CTL_CIRCUIT_TYPE_T1
);
1016 sc
->lmc_media
->set_crc_length (sc
, LMC_CTL_CRC_LENGTH_16
);
1017 /* Right now we can only clock from out internal source */
1018 sc
->ictl
.clock_source
= LMC_CTL_CLOCK_SOURCE_INT
;
1020 /* * Given a user provided state, set ourselves up to match it. This will * always reset the card if needed.
1023 lmc_t1_set_status (lmc_softc_t
* const sc
, lmc_ctl_t
* ctl
)
1027 sc
->lmc_media
->set_circuit_type (sc
, sc
->ictl
.circuit_type
);
1028 lmc_set_protocol (sc
, NULL
);
1033 * check for change in circuit type */
1034 if (ctl
->circuit_type
== LMC_CTL_CIRCUIT_TYPE_T1
1035 && sc
->ictl
.circuit_type
==
1036 LMC_CTL_CIRCUIT_TYPE_E1
) sc
->lmc_media
->set_circuit_type (sc
,
1037 LMC_CTL_CIRCUIT_TYPE_E1
);
1038 else if (ctl
->circuit_type
== LMC_CTL_CIRCUIT_TYPE_E1
1039 && sc
->ictl
.circuit_type
== LMC_CTL_CIRCUIT_TYPE_T1
)
1040 sc
->lmc_media
->set_circuit_type (sc
, LMC_CTL_CIRCUIT_TYPE_T1
);
1041 lmc_set_protocol (sc
, ctl
);
1044 * return hardware link status.
1045 * 0 == link is down, 1 == link is up.
1047 lmc_t1_get_link_status (lmc_softc_t
* const sc
)
1049 u_int16_t link_status
;
1052 /* LMC5245 (DS3) & LMC1200 (DS1) LED definitions
1053 * led0 yellow = far-end adapter is in Red alarm condition
1054 * led1 blue = received an Alarm Indication signal
1055 * (upstream failure)
1056 * led2 Green = power to adapter, Gate Array loaded & driver
1058 * led3 red = Loss of Signal (LOS) or out of frame (OOF)
1059 * conditions detected on T3 receive signal
1061 lmc_trace(sc
->lmc_device
, "lmc_t1_get_link_status in");
1062 lmc_led_on(sc
, LMC_DS3_LED2
);
1064 lmc_mii_writereg (sc
, 0, 17, T1FRAMER_ALARM1_STATUS
);
1065 link_status
= lmc_mii_readreg (sc
, 0, 18);
1068 if (link_status
& T1F_RAIS
) { /* turn on blue LED */
1070 if(sc
->last_led_err
[1] != 1){
1071 printk(KERN_WARNING
"%s: Receive AIS/Blue Alarm. Far end in RED alarm\n", sc
->name
);
1073 lmc_led_on(sc
, LMC_DS3_LED1
);
1074 sc
->last_led_err
[1] = 1;
1077 if(sc
->last_led_err
[1] != 0){
1078 printk(KERN_WARNING
"%s: End AIS/Blue Alarm\n", sc
->name
);
1080 lmc_led_off (sc
, LMC_DS3_LED1
);
1081 sc
->last_led_err
[1] = 0;
1085 * Yellow Alarm is nasty evil stuff, looks at data patterns
1086 * inside the channel and confuses it with HDLC framing
1087 * ignore all yellow alarms.
1089 * Do listen to MultiFrame Yellow alarm which while implemented
1090 * different ways isn't in the channel and hence somewhat
1094 if (link_status
& T1F_RMYEL
) {
1096 if(sc
->last_led_err
[0] != 1){
1097 printk(KERN_WARNING
"%s: Receive Yellow AIS Alarm\n", sc
->name
);
1099 lmc_led_on(sc
, LMC_DS3_LED0
);
1100 sc
->last_led_err
[0] = 1;
1103 if(sc
->last_led_err
[0] != 0){
1104 printk(KERN_WARNING
"%s: End of Yellow AIS Alarm\n", sc
->name
);
1106 lmc_led_off(sc
, LMC_DS3_LED0
);
1107 sc
->last_led_err
[0] = 0;
1111 * Loss of signal and los of frame
1112 * Use the green bit to identify which one lit the led
1114 if(link_status
& T1F_RLOF
){
1116 if(sc
->last_led_err
[3] != 1){
1117 printk(KERN_WARNING
"%s: Local Red Alarm: Loss of Framing\n", sc
->name
);
1119 lmc_led_on(sc
, LMC_DS3_LED3
);
1120 sc
->last_led_err
[3] = 1;
1124 if(sc
->last_led_err
[3] != 0){
1125 printk(KERN_WARNING
"%s: End Red Alarm (LOF)\n", sc
->name
);
1127 if( ! (link_status
& T1F_RLOS
))
1128 lmc_led_off(sc
, LMC_DS3_LED3
);
1129 sc
->last_led_err
[3] = 0;
1132 if(link_status
& T1F_RLOS
){
1134 if(sc
->last_led_err
[2] != 1){
1135 printk(KERN_WARNING
"%s: Local Red Alarm: Loss of Signal\n", sc
->name
);
1137 lmc_led_on(sc
, LMC_DS3_LED3
);
1138 sc
->last_led_err
[2] = 1;
1142 if(sc
->last_led_err
[2] != 0){
1143 printk(KERN_WARNING
"%s: End Red Alarm (LOS)\n", sc
->name
);
1145 if( ! (link_status
& T1F_RLOF
))
1146 lmc_led_off(sc
, LMC_DS3_LED3
);
1147 sc
->last_led_err
[2] = 0;
1150 sc
->lmc_xinfo
.t1_alarm1_status
= link_status
;
1152 lmc_mii_writereg (sc
, 0, 17, T1FRAMER_ALARM2_STATUS
);
1153 sc
->lmc_xinfo
.t1_alarm2_status
= lmc_mii_readreg (sc
, 0, 18);
1156 lmc_trace(sc
->lmc_device
, "lmc_t1_get_link_status out");
1162 * 1 == T1 Circuit Type , 0 == E1 Circuit Type
1165 lmc_t1_set_circuit_type (lmc_softc_t
* const sc
, int ie
)
1167 if (ie
== LMC_CTL_CIRCUIT_TYPE_T1
) {
1168 sc
->lmc_miireg16
|= LMC_MII16_T1_Z
;
1169 sc
->ictl
.circuit_type
= LMC_CTL_CIRCUIT_TYPE_T1
;
1170 printk(KERN_INFO
"%s: In T1 Mode\n", sc
->name
);
1173 sc
->lmc_miireg16
&= ~LMC_MII16_T1_Z
;
1174 sc
->ictl
.circuit_type
= LMC_CTL_CIRCUIT_TYPE_E1
;
1175 printk(KERN_INFO
"%s: In E1 Mode\n", sc
->name
);
1178 lmc_mii_writereg (sc
, 0, 16, sc
->lmc_miireg16
);
1183 * 0 == 16bit, 1 == 32bit */
1185 lmc_t1_set_crc_length (lmc_softc_t
* const sc
, int state
)
1187 if (state
== LMC_CTL_CRC_LENGTH_32
)
1190 sc
->lmc_miireg16
|= LMC_MII16_T1_CRC
;
1191 sc
->ictl
.crc_length
= LMC_CTL_CRC_LENGTH_32
;
1192 sc
->lmc_crcSize
= LMC_CTL_CRC_BYTESIZE_4
;
1197 /* 16 bit */ sc
->lmc_miireg16
&= ~LMC_MII16_T1_CRC
;
1198 sc
->ictl
.crc_length
= LMC_CTL_CRC_LENGTH_16
;
1199 sc
->lmc_crcSize
= LMC_CTL_CRC_BYTESIZE_2
;
1203 lmc_mii_writereg (sc
, 0, 16, sc
->lmc_miireg16
);
1207 * 1 == internal, 0 == external
1210 lmc_t1_set_clock (lmc_softc_t
* const sc
, int ie
)
1214 if (ie
== LMC_CTL_CLOCK_SOURCE_EXT
)
1216 sc
->lmc_gpio
&= ~(LMC_GEP_SSI_TXCLOCK
);
1217 LMC_CSR_WRITE (sc
, csr_gp
, sc
->lmc_gpio
);
1218 sc
->ictl
.clock_source
= LMC_CTL_CLOCK_SOURCE_EXT
;
1220 printk (LMC_PRINTF_FMT
": clock external\n", LMC_PRINTF_ARGS
);
1224 sc
->lmc_gpio
|= LMC_GEP_SSI_TXCLOCK
;
1225 LMC_CSR_WRITE (sc
, csr_gp
, sc
->lmc_gpio
);
1226 sc
->ictl
.clock_source
= LMC_CTL_CLOCK_SOURCE_INT
;
1228 printk (LMC_PRINTF_FMT
": clock internal\n", LMC_PRINTF_ARGS
);
1233 lmc_t1_watchdog (lmc_softc_t
* const sc
)
1238 lmc_set_protocol (lmc_softc_t
* const sc
, lmc_ctl_t
* ctl
)
1242 sc
->ictl
.keepalive_onoff
= LMC_CTL_ON
;