1 /* drivers/atm/idt77105.c - IDT77105 (PHY) driver */
3 /* Written 1999 by Greg Banks, NEC Australia <gnb@linuxfan.com>. Based on suni.c */
6 #include <linux/module.h>
7 #include <linux/kernel.h>
9 #include <linux/errno.h>
10 #include <linux/atmdev.h>
11 #include <linux/sonet.h>
12 #include <linux/delay.h>
13 #include <linux/timer.h>
14 #include <linux/init.h>
15 #include <linux/capability.h>
16 #include <linux/atm_idt77105.h>
17 #include <linux/spinlock.h>
18 #include <linux/slab.h>
19 #include <asm/system.h>
20 #include <asm/param.h>
21 #include <asm/uaccess.h>
28 #define DPRINTK(format,args...) printk(KERN_DEBUG format,##args)
30 #define DPRINTK(format,args...)
34 struct idt77105_priv
{
35 struct idt77105_stats stats
; /* link diagnostics */
36 struct atm_dev
*dev
; /* device back-pointer */
37 struct idt77105_priv
*next
;
39 unsigned char old_mcr
; /* storage of MCR reg while signal lost */
42 static DEFINE_SPINLOCK(idt77105_priv_lock
);
44 #define PRIV(dev) ((struct idt77105_priv *) dev->phy_data)
46 #define PUT(val,reg) dev->ops->phy_put(dev,val,IDT77105_##reg)
47 #define GET(reg) dev->ops->phy_get(dev,IDT77105_##reg)
49 static void idt77105_stats_timer_func(unsigned long);
50 static void idt77105_restart_timer_func(unsigned long);
53 static DEFINE_TIMER(stats_timer
, idt77105_stats_timer_func
, 0, 0);
54 static DEFINE_TIMER(restart_timer
, idt77105_restart_timer_func
, 0, 0);
55 static int start_timer
= 1;
56 static struct idt77105_priv
*idt77105_all
= NULL
;
59 * Retrieve the value of one of the IDT77105's counters.
60 * `counter' is one of the IDT77105_CTRSEL_* constants.
62 static u16
get_counter(struct atm_dev
*dev
, int counter
)
66 /* write the counter bit into PHY register 6 */
68 /* read the low 8 bits from register 4 */
70 /* read the high 8 bits from register 5 */
77 * Timer function called every second to gather statistics
78 * from the 77105. This is done because the h/w registers
79 * will overflow if not read at least once per second. The
80 * kernel's stats are much higher precision. Also, having
81 * a separate copy of the stats allows implementation of
82 * an ioctl which gathers the stats *without* zero'ing them.
84 static void idt77105_stats_timer_func(unsigned long dummy
)
86 struct idt77105_priv
*walk
;
88 struct idt77105_stats
*stats
;
90 DPRINTK("IDT77105 gathering statistics\n");
91 for (walk
= idt77105_all
; walk
; walk
= walk
->next
) {
95 stats
->symbol_errors
+= get_counter(dev
, IDT77105_CTRSEL_SEC
);
96 stats
->tx_cells
+= get_counter(dev
, IDT77105_CTRSEL_TCC
);
97 stats
->rx_cells
+= get_counter(dev
, IDT77105_CTRSEL_RCC
);
98 stats
->rx_hec_errors
+= get_counter(dev
, IDT77105_CTRSEL_RHEC
);
100 if (!start_timer
) mod_timer(&stats_timer
,jiffies
+IDT77105_STATS_TIMER_PERIOD
);
105 * A separate timer func which handles restarting PHY chips which
106 * have had the cable re-inserted after being pulled out. This is
107 * done by polling the Good Signal Bit in the Interrupt Status
108 * register every 5 seconds. The other technique (checking Good
109 * Signal Bit in the interrupt handler) cannot be used because PHY
110 * interrupts need to be disabled when the cable is pulled out
111 * to avoid lots of spurious cell error interrupts.
113 static void idt77105_restart_timer_func(unsigned long dummy
)
115 struct idt77105_priv
*walk
;
119 DPRINTK("IDT77105 checking for cable re-insertion\n");
120 for (walk
= idt77105_all
; walk
; walk
= walk
->next
) {
123 if (dev
->signal
!= ATM_PHY_SIG_LOST
)
126 istat
= GET(ISTAT
); /* side effect: clears all interrupt status bits */
127 if (istat
& IDT77105_ISTAT_GOODSIG
) {
128 /* Found signal again */
129 atm_dev_signal_change(dev
, ATM_PHY_SIG_FOUND
);
130 printk(KERN_NOTICE
"%s(itf %d): signal detected again\n",
131 dev
->type
,dev
->number
);
132 /* flush the receive FIFO */
133 PUT( GET(DIAG
) | IDT77105_DIAG_RFLUSH
, DIAG
);
134 /* re-enable interrupts */
135 PUT( walk
->old_mcr
,MCR
);
138 if (!start_timer
) mod_timer(&restart_timer
,jiffies
+IDT77105_RESTART_TIMER_PERIOD
);
142 static int fetch_stats(struct atm_dev
*dev
,struct idt77105_stats __user
*arg
,int zero
)
145 struct idt77105_stats stats
;
147 spin_lock_irqsave(&idt77105_priv_lock
, flags
);
148 memcpy(&stats
, &PRIV(dev
)->stats
, sizeof(struct idt77105_stats
));
150 memset(&PRIV(dev
)->stats
, 0, sizeof(struct idt77105_stats
));
151 spin_unlock_irqrestore(&idt77105_priv_lock
, flags
);
154 return copy_to_user(arg
, &stats
,
155 sizeof(struct idt77105_stats
)) ? -EFAULT
: 0;
159 static int set_loopback(struct atm_dev
*dev
,int mode
)
163 diag
= GET(DIAG
) & ~IDT77105_DIAG_LCMASK
;
168 diag
|= IDT77105_DIAG_LC_PHY_LOOPBACK
;
171 diag
|= IDT77105_DIAG_LC_LINE_LOOPBACK
;
177 printk(KERN_NOTICE
"%s(%d) Loopback mode is: %s\n", dev
->type
,
179 (mode
== ATM_LM_NONE
? "NONE" :
180 (mode
== ATM_LM_LOC_ATM
? "DIAG (local)" :
181 (mode
== IDT77105_DIAG_LC_LINE_LOOPBACK
? "LOOP (remote)" :
184 PRIV(dev
)->loop_mode
= mode
;
189 static int idt77105_ioctl(struct atm_dev
*dev
,unsigned int cmd
,void __user
*arg
)
191 printk(KERN_NOTICE
"%s(%d) idt77105_ioctl() called\n",dev
->type
,dev
->number
);
193 case IDT77105_GETSTATZ
:
194 if (!capable(CAP_NET_ADMIN
)) return -EPERM
;
196 case IDT77105_GETSTAT
:
197 return fetch_stats(dev
, arg
, cmd
== IDT77105_GETSTATZ
);
199 return set_loopback(dev
,(int)(unsigned long) arg
);
201 return put_user(PRIV(dev
)->loop_mode
,(int __user
*)arg
) ?
204 return put_user(ATM_LM_LOC_ATM
| ATM_LM_RMT_ATM
,
205 (int __user
*) arg
) ? -EFAULT
: 0;
213 static void idt77105_int(struct atm_dev
*dev
)
217 istat
= GET(ISTAT
); /* side effect: clears all interrupt status bits */
219 DPRINTK("IDT77105 generated an interrupt, istat=%02x\n", (unsigned)istat
);
221 if (istat
& IDT77105_ISTAT_RSCC
) {
222 /* Rx Signal Condition Change - line went up or down */
223 if (istat
& IDT77105_ISTAT_GOODSIG
) { /* signal detected again */
224 /* This should not happen (restart timer does it) but JIC */
225 atm_dev_signal_change(dev
, ATM_PHY_SIG_FOUND
);
226 } else { /* signal lost */
228 * Disable interrupts and stop all transmission and
229 * reception - the restart timer will restore these.
231 PRIV(dev
)->old_mcr
= GET(MCR
);
237 ) & ~IDT77105_MCR_EIP
, MCR
);
238 atm_dev_signal_change(dev
, ATM_PHY_SIG_LOST
);
239 printk(KERN_NOTICE
"%s(itf %d): signal lost\n",
240 dev
->type
,dev
->number
);
244 if (istat
& IDT77105_ISTAT_RFO
) {
245 /* Rx FIFO Overrun -- perform a FIFO flush */
246 PUT( GET(DIAG
) | IDT77105_DIAG_RFLUSH
, DIAG
);
247 printk(KERN_NOTICE
"%s(itf %d): receive FIFO overrun\n",
248 dev
->type
,dev
->number
);
251 if (istat
& (IDT77105_ISTAT_HECERR
| IDT77105_ISTAT_SCR
|
252 IDT77105_ISTAT_RSE
)) {
253 /* normally don't care - just report in stats */
254 printk(KERN_NOTICE
"%s(itf %d): received cell with error\n",
255 dev
->type
,dev
->number
);
261 static int idt77105_start(struct atm_dev
*dev
)
265 if (!(dev
->dev_data
= kmalloc(sizeof(struct idt77105_priv
),GFP_KERNEL
)))
267 PRIV(dev
)->dev
= dev
;
268 spin_lock_irqsave(&idt77105_priv_lock
, flags
);
269 PRIV(dev
)->next
= idt77105_all
;
270 idt77105_all
= PRIV(dev
);
271 spin_unlock_irqrestore(&idt77105_priv_lock
, flags
);
272 memset(&PRIV(dev
)->stats
,0,sizeof(struct idt77105_stats
));
274 /* initialise dev->signal from Good Signal Bit */
275 atm_dev_signal_change(dev
,
276 GET(ISTAT
) & IDT77105_ISTAT_GOODSIG
?
277 ATM_PHY_SIG_FOUND
: ATM_PHY_SIG_LOST
);
278 if (dev
->signal
== ATM_PHY_SIG_LOST
)
279 printk(KERN_WARNING
"%s(itf %d): no signal\n",dev
->type
,
282 /* initialise loop mode from hardware */
283 switch ( GET(DIAG
) & IDT77105_DIAG_LCMASK
) {
284 case IDT77105_DIAG_LC_NORMAL
:
285 PRIV(dev
)->loop_mode
= ATM_LM_NONE
;
287 case IDT77105_DIAG_LC_PHY_LOOPBACK
:
288 PRIV(dev
)->loop_mode
= ATM_LM_LOC_ATM
;
290 case IDT77105_DIAG_LC_LINE_LOOPBACK
:
291 PRIV(dev
)->loop_mode
= ATM_LM_RMT_ATM
;
295 /* enable interrupts, e.g. on loss of signal */
296 PRIV(dev
)->old_mcr
= GET(MCR
);
297 if (dev
->signal
== ATM_PHY_SIG_FOUND
) {
298 PRIV(dev
)->old_mcr
|= IDT77105_MCR_EIP
;
299 PUT(PRIV(dev
)->old_mcr
, MCR
);
303 idt77105_stats_timer_func(0); /* clear 77105 counters */
304 (void) fetch_stats(dev
,NULL
,1); /* clear kernel counters */
306 spin_lock_irqsave(&idt77105_priv_lock
, flags
);
310 init_timer(&stats_timer
);
311 stats_timer
.expires
= jiffies
+IDT77105_STATS_TIMER_PERIOD
;
312 stats_timer
.function
= idt77105_stats_timer_func
;
313 add_timer(&stats_timer
);
315 init_timer(&restart_timer
);
316 restart_timer
.expires
= jiffies
+IDT77105_RESTART_TIMER_PERIOD
;
317 restart_timer
.function
= idt77105_restart_timer_func
;
318 add_timer(&restart_timer
);
320 spin_unlock_irqrestore(&idt77105_priv_lock
, flags
);
325 static int idt77105_stop(struct atm_dev
*dev
)
327 struct idt77105_priv
*walk
, *prev
;
329 DPRINTK("%s(itf %d): stopping IDT77105\n",dev
->type
,dev
->number
);
331 /* disable interrupts */
332 PUT( GET(MCR
) & ~IDT77105_MCR_EIP
, MCR
);
334 /* detach private struct from atm_dev & free */
335 for (prev
= NULL
, walk
= idt77105_all
;
337 prev
= walk
, walk
= walk
->next
) {
338 if (walk
->dev
== dev
) {
340 prev
->next
= walk
->next
;
342 idt77105_all
= walk
->next
;
344 dev
->dev_data
= NULL
;
354 static const struct atmphy_ops idt77105_ops
= {
355 .start
= idt77105_start
,
356 .ioctl
= idt77105_ioctl
,
357 .interrupt
= idt77105_int
,
358 .stop
= idt77105_stop
,
362 int idt77105_init(struct atm_dev
*dev
)
364 dev
->phy
= &idt77105_ops
;
368 EXPORT_SYMBOL(idt77105_init
);
370 static void __exit
idt77105_exit(void)
372 /* turn off timers */
373 del_timer(&stats_timer
);
374 del_timer(&restart_timer
);
377 module_exit(idt77105_exit
);
379 MODULE_LICENSE("GPL");