2 * pc300_tty.c Cyclades-PC300(tm) TTY Driver.
4 * Author: Regina Kodato <reginak@cyclades.com>
6 * Copyright: (c) 1999-2002 Cyclades Corp.
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version
11 * 2 of the License, or (at your option) any later version.
13 * $Log: pc300_tty.c,v $
14 * Revision 3.7 2002/03/07 14:17:09 henrique
17 * Revision 3.6 2001/12/10 12:29:42 regina
20 * Revision 3.5 2001/10/31 11:20:05 regina
21 * automatic pppd starts
23 * Revision 3.4 2001/08/06 12:01:51 regina
24 * problem in DSR_DE bit
26 * Revision 3.3 2001/07/26 22:58:41 regina
29 * Revision 3.2 2001/07/12 13:11:20 regina
30 * bug fix - DCD-OFF in pc300 tty driver
32 * DMA transmission bug fix
34 * Revision 3.1 2001/06/22 13:13:02 regina
35 * MLPPP implementation
39 #include <linux/module.h>
40 #include <linux/kernel.h>
41 #include <linux/errno.h>
42 #include <linux/string.h>
43 #include <linux/init.h>
44 #include <linux/netdevice.h>
45 #include <linux/spinlock.h>
46 #include <linux/slab.h>
48 #include <linux/skbuff.h>
50 #include <linux/tty.h>
51 #include <linux/tty_flip.h>
52 #include <linux/serial.h>
55 #include <asm/uaccess.h>
59 /* defines and macros */
60 /* TTY Global definitions */
61 #define CPC_TTY_NPORTS 8 /* maximum number of the sync tty connections */
62 #define CPC_TTY_MAJOR CYCLADES_MAJOR
63 #define CPC_TTY_MINOR_START 240 /* minor of the first PC300 interface */
65 #define CPC_TTY_MAX_MTU 2000
67 /* tty interface state */
68 #define CPC_TTY_ST_IDLE 0
69 #define CPC_TTY_ST_INIT 1 /* configured with MLPPP and up */
70 #define CPC_TTY_ST_OPEN 2 /* opened by application */
72 #define CPC_TTY_LOCK(card,flags)\
74 spin_lock_irqsave(&card->card_lock, flags); \
77 #define CPC_TTY_UNLOCK(card,flags) \
79 spin_unlock_irqrestore(&card->card_lock, flags); \
82 //#define CPC_TTY_DBG(format,a...) printk(format,##a)
83 #define CPC_TTY_DBG(format,a...)
86 typedef struct _st_cpc_rx_buf
{
87 struct _st_cpc_rx_buf
*next
;
89 unsigned char data
[1];
92 struct st_cpc_rx_list
{
97 typedef struct _st_cpc_tty_area
{
98 int state
; /* state of the TTY interface */
100 unsigned int tty_minor
; /* minor this interface */
101 volatile struct st_cpc_rx_list buf_rx
; /* ptr. to reception buffer */
102 unsigned char* buf_tx
; /* ptr. to transmission buffer */
103 pc300dev_t
* pc300dev
; /* ptr. to info struct in PC300 driver */
104 unsigned char name
[20]; /* interf. name + "-tty" */
105 struct tty_struct
*tty
;
106 struct work_struct tty_tx_work
; /* tx work - tx interrupt */
107 struct work_struct tty_rx_work
; /* rx work - rx interrupt */
110 /* TTY data structures */
111 static struct tty_driver serial_drv
;
113 /* local variables */
114 static st_cpc_tty_area cpc_tty_area
[CPC_TTY_NPORTS
];
116 static int cpc_tty_cnt
= 0; /* number of intrfaces configured with MLPPP */
117 static int cpc_tty_unreg_flag
= 0;
119 /* TTY functions prototype */
120 static int cpc_tty_open(struct tty_struct
*tty
, struct file
*flip
);
121 static void cpc_tty_close(struct tty_struct
*tty
, struct file
*flip
);
122 static int cpc_tty_write(struct tty_struct
*tty
, const unsigned char *buf
, int count
);
123 static int cpc_tty_write_room(struct tty_struct
*tty
);
124 static int cpc_tty_chars_in_buffer(struct tty_struct
*tty
);
125 static void cpc_tty_flush_buffer(struct tty_struct
*tty
);
126 static void cpc_tty_hangup(struct tty_struct
*tty
);
127 static void cpc_tty_rx_work(struct work_struct
*work
);
128 static void cpc_tty_tx_work(struct work_struct
*work
);
129 static int cpc_tty_send_to_card(pc300dev_t
*dev
,void *buf
, int len
);
130 static void cpc_tty_trace(pc300dev_t
*dev
, char* buf
, int len
, char rxtx
);
131 static void cpc_tty_signal_off(pc300dev_t
*pc300dev
, unsigned char);
132 static void cpc_tty_signal_on(pc300dev_t
*pc300dev
, unsigned char);
134 static int pc300_tiocmset(struct tty_struct
*, unsigned int, unsigned int);
135 static int pc300_tiocmget(struct tty_struct
*);
137 /* functions called by PC300 driver */
138 void cpc_tty_init(pc300dev_t
*dev
);
139 void cpc_tty_unregister_service(pc300dev_t
*pc300dev
);
140 void cpc_tty_receive(pc300dev_t
*pc300dev
);
141 void cpc_tty_trigger_poll(pc300dev_t
*pc300dev
);
142 void cpc_tty_reset_var(void);
145 * PC300 TTY clear "signal"
147 static void cpc_tty_signal_off(pc300dev_t
*pc300dev
, unsigned char signal
)
149 pc300ch_t
*pc300chan
= (pc300ch_t
*)pc300dev
->chan
;
150 pc300_t
*card
= (pc300_t
*) pc300chan
->card
;
151 int ch
= pc300chan
->channel
;
154 CPC_TTY_DBG("%s-tty: Clear signal %x\n",
155 pc300dev
->dev
->name
, signal
);
156 CPC_TTY_LOCK(card
, flags
);
157 cpc_writeb(card
->hw
.scabase
+ M_REG(CTL
,ch
),
158 cpc_readb(card
->hw
.scabase
+M_REG(CTL
,ch
))& signal
);
159 CPC_TTY_UNLOCK(card
,flags
);
163 * PC300 TTY set "signal" to ON
165 static void cpc_tty_signal_on(pc300dev_t
*pc300dev
, unsigned char signal
)
167 pc300ch_t
*pc300chan
= (pc300ch_t
*)pc300dev
->chan
;
168 pc300_t
*card
= (pc300_t
*) pc300chan
->card
;
169 int ch
= pc300chan
->channel
;
172 CPC_TTY_DBG("%s-tty: Set signal %x\n",
173 pc300dev
->dev
->name
, signal
);
174 CPC_TTY_LOCK(card
, flags
);
175 cpc_writeb(card
->hw
.scabase
+ M_REG(CTL
,ch
),
176 cpc_readb(card
->hw
.scabase
+M_REG(CTL
,ch
))& ~signal
);
177 CPC_TTY_UNLOCK(card
,flags
);
181 static const struct tty_operations pc300_ops
= {
182 .open
= cpc_tty_open
,
183 .close
= cpc_tty_close
,
184 .write
= cpc_tty_write
,
185 .write_room
= cpc_tty_write_room
,
186 .chars_in_buffer
= cpc_tty_chars_in_buffer
,
187 .tiocmset
= pc300_tiocmset
,
188 .tiocmget
= pc300_tiocmget
,
189 .flush_buffer
= cpc_tty_flush_buffer
,
190 .hangup
= cpc_tty_hangup
,
195 * PC300 TTY initialization routine
197 * This routine is called by the PC300 driver during board configuration
198 * (ioctl=SIOCSP300CONF). At this point the adapter is completely
200 * o verify kernel version (only 2.4.x)
201 * o register TTY driver
202 * o init cpc_tty_area struct
204 void cpc_tty_init(pc300dev_t
*pc300dev
)
208 st_cpc_tty_area
* cpc_tty
;
210 /* hdlcX - X=interface number */
211 port
= pc300dev
->dev
->name
[4] - '0';
212 if (port
>= CPC_TTY_NPORTS
) {
213 printk("%s-tty: invalid interface selected (0-%i): %li",
215 CPC_TTY_NPORTS
-1,port
);
219 if (cpc_tty_cnt
== 0) { /* first TTY connection -> register driver */
220 CPC_TTY_DBG("%s-tty: driver init, major:%i, minor range:%i=%i\n",
222 CPC_TTY_MAJOR
, CPC_TTY_MINOR_START
,
223 CPC_TTY_MINOR_START
+CPC_TTY_NPORTS
);
224 /* initialize tty driver struct */
225 memset(&serial_drv
,0,sizeof(struct tty_driver
));
226 serial_drv
.magic
= TTY_DRIVER_MAGIC
;
227 serial_drv
.owner
= THIS_MODULE
;
228 serial_drv
.driver_name
= "pc300_tty";
229 serial_drv
.name
= "ttyCP";
230 serial_drv
.major
= CPC_TTY_MAJOR
;
231 serial_drv
.minor_start
= CPC_TTY_MINOR_START
;
232 serial_drv
.num
= CPC_TTY_NPORTS
;
233 serial_drv
.type
= TTY_DRIVER_TYPE_SERIAL
;
234 serial_drv
.subtype
= SERIAL_TYPE_NORMAL
;
236 serial_drv
.init_termios
= tty_std_termios
;
237 serial_drv
.init_termios
.c_cflag
= B9600
|CS8
|CREAD
|HUPCL
|CLOCAL
;
238 serial_drv
.flags
= TTY_DRIVER_REAL_RAW
;
240 /* interface routines from the upper tty layer to the tty driver */
241 tty_set_operations(&serial_drv
, &pc300_ops
);
243 /* register the TTY driver */
244 if (tty_register_driver(&serial_drv
)) {
245 printk("%s-tty: Failed to register serial driver! ",
246 pc300dev
->dev
->name
);
250 memset((void *)cpc_tty_area
, 0,
251 sizeof(st_cpc_tty_area
) * CPC_TTY_NPORTS
);
254 cpc_tty
= &cpc_tty_area
[port
];
256 if (cpc_tty
->state
!= CPC_TTY_ST_IDLE
) {
257 CPC_TTY_DBG("%s-tty: TTY port %i, already in use.\n",
258 pc300dev
->dev
->name
, port
);
263 cpc_tty
->state
= CPC_TTY_ST_INIT
;
264 cpc_tty
->num_open
= 0;
265 cpc_tty
->tty_minor
= port
+ CPC_TTY_MINOR_START
;
266 cpc_tty
->pc300dev
= pc300dev
;
268 INIT_WORK(&cpc_tty
->tty_tx_work
, cpc_tty_tx_work
);
269 INIT_WORK(&cpc_tty
->tty_rx_work
, cpc_tty_rx_work
);
271 cpc_tty
->buf_rx
.first
= cpc_tty
->buf_rx
.last
= NULL
;
273 pc300dev
->cpc_tty
= (void *)cpc_tty
;
275 aux
= strlen(pc300dev
->dev
->name
);
276 memcpy(cpc_tty
->name
, pc300dev
->dev
->name
, aux
);
277 memcpy(&cpc_tty
->name
[aux
], "-tty", 5);
279 cpc_open(pc300dev
->dev
);
280 cpc_tty_signal_off(pc300dev
, CTL_DTR
);
282 CPC_TTY_DBG("%s: Initializing TTY Sync Driver, tty major#%d minor#%i\n",
283 cpc_tty
->name
,CPC_TTY_MAJOR
,cpc_tty
->tty_minor
);
288 * PC300 TTY OPEN routine
290 * This routine is called by the tty driver to open the interface
292 * o allocate buffer to Rx and Tx
294 static int cpc_tty_open(struct tty_struct
*tty
, struct file
*flip
)
297 st_cpc_tty_area
*cpc_tty
;
305 if ((port
< 0) || (port
>= CPC_TTY_NPORTS
)){
306 CPC_TTY_DBG("pc300_tty: open invalid port %d\n", port
);
310 cpc_tty
= &cpc_tty_area
[port
];
312 if (cpc_tty
->state
== CPC_TTY_ST_IDLE
){
313 CPC_TTY_DBG("%s: open - invalid interface, port=%d\n",
314 cpc_tty
->name
, tty
->index
);
318 if (cpc_tty
->num_open
== 0) { /* first open of this tty */
319 if (!cpc_tty_area
[port
].buf_tx
){
320 cpc_tty_area
[port
].buf_tx
= kmalloc(CPC_TTY_MAX_MTU
,GFP_KERNEL
);
321 if (!cpc_tty_area
[port
].buf_tx
) {
322 CPC_TTY_DBG("%s: error in memory allocation\n",cpc_tty
->name
);
327 if (cpc_tty_area
[port
].buf_rx
.first
) {
329 while (cpc_tty_area
[port
].buf_rx
.first
) {
330 aux
= (unsigned char *)cpc_tty_area
[port
].buf_rx
.first
;
331 cpc_tty_area
[port
].buf_rx
.first
= cpc_tty_area
[port
].buf_rx
.first
->next
;
334 cpc_tty_area
[port
].buf_rx
.first
= NULL
;
335 cpc_tty_area
[port
].buf_rx
.last
= NULL
;
338 cpc_tty_area
[port
].state
= CPC_TTY_ST_OPEN
;
339 cpc_tty_area
[port
].tty
= tty
;
340 tty
->driver_data
= &cpc_tty_area
[port
];
342 cpc_tty_signal_on(cpc_tty
->pc300dev
, CTL_DTR
);
347 CPC_TTY_DBG("%s: opening TTY driver\n", cpc_tty
->name
);
349 /* avisar driver PC300 */
354 * PC300 TTY CLOSE routine
356 * This routine is called by the tty driver to close the interface
357 * o call close channel in PC300 driver (cpc_closech)
358 * o free Rx and Tx buffers
361 static void cpc_tty_close(struct tty_struct
*tty
, struct file
*flip
)
363 st_cpc_tty_area
*cpc_tty
;
367 if (!tty
|| !tty
->driver_data
) {
368 CPC_TTY_DBG("hdlx-tty: no TTY in close\n");
372 cpc_tty
= (st_cpc_tty_area
*) tty
->driver_data
;
374 if ((cpc_tty
->tty
!= tty
)|| (cpc_tty
->state
!= CPC_TTY_ST_OPEN
)) {
375 CPC_TTY_DBG("%s: TTY is not opened\n",cpc_tty
->name
);
379 if (!cpc_tty
->num_open
) {
380 CPC_TTY_DBG("%s: TTY is closed\n",cpc_tty
->name
);
384 if (--cpc_tty
->num_open
> 0) {
385 CPC_TTY_DBG("%s: TTY closed\n",cpc_tty
->name
);
389 cpc_tty_signal_off(cpc_tty
->pc300dev
, CTL_DTR
);
391 CPC_TTY_LOCK(cpc_tty
->pc300dev
->chan
->card
, flags
); /* lock irq */
393 cpc_tty
->state
= CPC_TTY_ST_INIT
;
394 CPC_TTY_UNLOCK(cpc_tty
->pc300dev
->chan
->card
, flags
); /* unlock irq */
396 if (cpc_tty
->buf_rx
.first
) {
398 while (cpc_tty
->buf_rx
.first
) {
399 aux
= (unsigned char *)cpc_tty
->buf_rx
.first
;
400 cpc_tty
->buf_rx
.first
= cpc_tty
->buf_rx
.first
->next
;
403 cpc_tty
->buf_rx
.first
= NULL
;
404 cpc_tty
->buf_rx
.last
= NULL
;
407 kfree(cpc_tty
->buf_tx
);
408 cpc_tty
->buf_tx
= NULL
;
410 CPC_TTY_DBG("%s: TTY closed\n",cpc_tty
->name
);
412 if (!serial_drv
.refcount
&& cpc_tty_unreg_flag
) {
413 cpc_tty_unreg_flag
= 0;
414 CPC_TTY_DBG("%s: unregister the tty driver\n", cpc_tty
->name
);
415 if ((res
=tty_unregister_driver(&serial_drv
))) {
416 CPC_TTY_DBG("%s: ERROR ->unregister the tty driver error=%d\n",
424 * PC300 TTY WRITE routine
426 * This routine is called by the tty driver to write a series of characters
427 * to the tty device. The characters may come from user or kernel space.
428 * o verify the DCD signal
429 * o send characters to board and start the transmission
431 static int cpc_tty_write(struct tty_struct
*tty
, const unsigned char *buf
, int count
)
433 st_cpc_tty_area
*cpc_tty
;
434 pc300ch_t
*pc300chan
;
438 struct net_device_stats
*stats
;
440 if (!tty
|| !tty
->driver_data
) {
441 CPC_TTY_DBG("hdlcX-tty: no TTY in write\n");
445 cpc_tty
= (st_cpc_tty_area
*) tty
->driver_data
;
447 if ((cpc_tty
->tty
!= tty
) || (cpc_tty
->state
!= CPC_TTY_ST_OPEN
)) {
448 CPC_TTY_DBG("%s: TTY is not opened\n", cpc_tty
->name
);
452 if (count
> CPC_TTY_MAX_MTU
) {
453 CPC_TTY_DBG("%s: count is invalid\n",cpc_tty
->name
);
454 return -EINVAL
; /* frame too big */
457 CPC_TTY_DBG("%s: cpc_tty_write data len=%i\n",cpc_tty
->name
,count
);
459 pc300chan
= (pc300ch_t
*)((pc300dev_t
*)cpc_tty
->pc300dev
)->chan
;
460 stats
= &cpc_tty
->pc300dev
->dev
->stats
;
461 card
= (pc300_t
*) pc300chan
->card
;
462 ch
= pc300chan
->channel
;
464 /* verify DCD signal*/
465 if (cpc_readb(card
->hw
.scabase
+ M_REG(ST3
,ch
)) & ST3_DCD
) {
467 CPC_TTY_DBG("%s : DCD is OFF\n", cpc_tty
->name
);
469 stats
->tx_carrier_errors
++;
470 CPC_TTY_LOCK(card
, flags
);
471 cpc_writeb(card
->hw
.scabase
+ M_REG(CMD
, ch
), CMD_TX_BUF_CLR
);
473 if (card
->hw
.type
== PC300_TE
) {
474 cpc_writeb(card
->hw
.falcbase
+ card
->hw
.cpld_reg2
,
475 cpc_readb(card
->hw
.falcbase
+ card
->hw
.cpld_reg2
) &
476 ~(CPLD_REG2_FALC_LED1
<< (2 *ch
)));
479 CPC_TTY_UNLOCK(card
, flags
);
484 if (cpc_tty_send_to_card(cpc_tty
->pc300dev
, (void*)buf
, count
)) {
486 CPC_TTY_DBG("%s: trasmition error\n", cpc_tty
->name
);
493 * PC300 TTY Write Room routine
495 * This routine returns the numbers of characteres the tty driver will accept
496 * for queuing to be written.
499 static int cpc_tty_write_room(struct tty_struct
*tty
)
501 st_cpc_tty_area
*cpc_tty
;
503 if (!tty
|| !tty
->driver_data
) {
504 CPC_TTY_DBG("hdlcX-tty: no TTY to write room\n");
508 cpc_tty
= (st_cpc_tty_area
*) tty
->driver_data
;
510 if ((cpc_tty
->tty
!= tty
) || (cpc_tty
->state
!= CPC_TTY_ST_OPEN
)) {
511 CPC_TTY_DBG("%s: TTY is not opened\n",cpc_tty
->name
);
515 CPC_TTY_DBG("%s: write room\n",cpc_tty
->name
);
517 return CPC_TTY_MAX_MTU
;
521 * PC300 TTY chars in buffer routine
523 * This routine returns the chars number in the transmission buffer
526 static int cpc_tty_chars_in_buffer(struct tty_struct
*tty
)
528 st_cpc_tty_area
*cpc_tty
;
530 if (!tty
|| !tty
->driver_data
) {
531 CPC_TTY_DBG("hdlcX-tty: no TTY to chars in buffer\n");
535 cpc_tty
= (st_cpc_tty_area
*) tty
->driver_data
;
537 if ((cpc_tty
->tty
!= tty
) || (cpc_tty
->state
!= CPC_TTY_ST_OPEN
)) {
538 CPC_TTY_DBG("%s: TTY is not opened\n",cpc_tty
->name
);
545 static int pc300_tiocmset(struct tty_struct
*tty
,
546 unsigned int set
, unsigned int clear
)
548 st_cpc_tty_area
*cpc_tty
;
550 CPC_TTY_DBG("%s: set:%x clear:%x\n", __func__
, set
, clear
);
552 if (!tty
|| !tty
->driver_data
) {
553 CPC_TTY_DBG("hdlcX-tty: no TTY to chars in buffer\n");
557 cpc_tty
= (st_cpc_tty_area
*) tty
->driver_data
;
560 cpc_tty_signal_on(cpc_tty
->pc300dev
, CTL_RTS
);
562 cpc_tty_signal_on(cpc_tty
->pc300dev
, CTL_DTR
);
564 if (clear
& TIOCM_RTS
)
565 cpc_tty_signal_off(cpc_tty
->pc300dev
, CTL_RTS
);
566 if (clear
& TIOCM_DTR
)
567 cpc_tty_signal_off(cpc_tty
->pc300dev
, CTL_DTR
);
572 static int pc300_tiocmget(struct tty_struct
*tty
)
575 unsigned char status
;
577 st_cpc_tty_area
*cpc_tty
= (st_cpc_tty_area
*) tty
->driver_data
;
578 pc300dev_t
*pc300dev
= cpc_tty
->pc300dev
;
579 pc300ch_t
*pc300chan
= (pc300ch_t
*)pc300dev
->chan
;
580 pc300_t
*card
= (pc300_t
*) pc300chan
->card
;
581 int ch
= pc300chan
->channel
;
583 cpc_tty
= (st_cpc_tty_area
*) tty
->driver_data
;
585 CPC_TTY_DBG("%s-tty: tiocmget\n",
586 ((struct net_device
*)(pc300dev
->hdlc
))->name
);
588 CPC_TTY_LOCK(card
, flags
);
589 status
= cpc_readb(card
->hw
.scabase
+M_REG(CTL
,ch
));
590 CPC_TTY_UNLOCK(card
,flags
);
592 result
= ((status
& CTL_DTR
) ? TIOCM_DTR
: 0) |
593 ((status
& CTL_RTS
) ? TIOCM_RTS
: 0);
599 * PC300 TTY Flush Buffer routine
601 * This routine resets the transmission buffer
603 static void cpc_tty_flush_buffer(struct tty_struct
*tty
)
605 st_cpc_tty_area
*cpc_tty
;
607 if (!tty
|| !tty
->driver_data
) {
608 CPC_TTY_DBG("hdlcX-tty: no TTY to flush buffer\n");
612 cpc_tty
= (st_cpc_tty_area
*) tty
->driver_data
;
614 if ((cpc_tty
->tty
!= tty
) || (cpc_tty
->state
!= CPC_TTY_ST_OPEN
)) {
615 CPC_TTY_DBG("%s: TTY is not opened\n",cpc_tty
->name
);
619 CPC_TTY_DBG("%s: call wake_up_interruptible\n",cpc_tty
->name
);
626 * PC300 TTY Hangup routine
628 * This routine is called by the tty driver to hangup the interface
632 static void cpc_tty_hangup(struct tty_struct
*tty
)
634 st_cpc_tty_area
*cpc_tty
;
637 if (!tty
|| !tty
->driver_data
) {
638 CPC_TTY_DBG("hdlcX-tty: no TTY to hangup\n");
642 cpc_tty
= (st_cpc_tty_area
*) tty
->driver_data
;
644 if ((cpc_tty
->tty
!= tty
) || (cpc_tty
->state
!= CPC_TTY_ST_OPEN
)) {
645 CPC_TTY_DBG("%s: TTY is not opened\n",cpc_tty
->name
);
648 if (!serial_drv
.refcount
&& cpc_tty_unreg_flag
) {
649 cpc_tty_unreg_flag
= 0;
650 CPC_TTY_DBG("%s: unregister the tty driver\n", cpc_tty
->name
);
651 if ((res
=tty_unregister_driver(&serial_drv
))) {
652 CPC_TTY_DBG("%s: ERROR ->unregister the tty driver error=%d\n",
656 cpc_tty_signal_off(cpc_tty
->pc300dev
, CTL_DTR
);
660 * PC300 TTY RX work routine
661 * This routine treats RX work
662 * o verify read buffer
663 * o call the line disc. read
666 static void cpc_tty_rx_work(struct work_struct
*work
)
668 st_cpc_tty_area
*cpc_tty
;
671 volatile st_cpc_rx_buf
*buf
;
672 char flags
=0,flg_rx
=1;
673 struct tty_ldisc
*ld
;
675 if (cpc_tty_cnt
== 0) return;
677 for (i
=0; (i
< 4) && flg_rx
; i
++) {
680 cpc_tty
= container_of(work
, st_cpc_tty_area
, tty_rx_work
);
681 port
= cpc_tty
- cpc_tty_area
;
683 for (j
=0; j
< CPC_TTY_NPORTS
; j
++) {
684 cpc_tty
= &cpc_tty_area
[port
];
686 if ((buf
=cpc_tty
->buf_rx
.first
) != NULL
) {
688 ld
= tty_ldisc_ref(cpc_tty
->tty
);
690 if (ld
->ops
->receive_buf
) {
691 CPC_TTY_DBG("%s: call line disc. receive_buf\n",cpc_tty
->name
);
692 ld
->ops
->receive_buf(cpc_tty
->tty
, (char *)(buf
->data
), &flags
, buf
->size
);
697 cpc_tty
->buf_rx
.first
= cpc_tty
->buf_rx
.first
->next
;
699 buf
= cpc_tty
->buf_rx
.first
;
702 if (++port
== CPC_TTY_NPORTS
) port
= 0;
708 * PC300 TTY RX work routine
710 * This routine treats RX interrupt.
711 * o read all frames in card
712 * o verify the frame size
713 * o read the frame in rx buffer
715 static void cpc_tty_rx_disc_frame(pc300ch_t
*pc300chan
)
717 volatile pcsca_bd_t __iomem
* ptdescr
;
718 volatile unsigned char status
;
719 pc300_t
*card
= (pc300_t
*)pc300chan
->card
;
720 int ch
= pc300chan
->channel
;
723 ptdescr
= (pcsca_bd_t __iomem
*)(card
->hw
.rambase
+
724 RX_BD_ADDR(ch
, pc300chan
->rx_first_bd
));
725 while (pc300chan
->rx_first_bd
!= pc300chan
->rx_last_bd
) {
726 status
= cpc_readb(&ptdescr
->status
);
727 cpc_writeb(&ptdescr
->status
, 0);
728 cpc_writeb(&ptdescr
->len
, 0);
729 pc300chan
->rx_first_bd
= (pc300chan
->rx_first_bd
+ 1) &
731 if (status
& DST_EOM
) {
732 break; /* end of message */
734 ptdescr
= (pcsca_bd_t __iomem
*)(card
->hw
.rambase
+ cpc_readl(&ptdescr
->next
));
738 void cpc_tty_receive(pc300dev_t
*pc300dev
)
740 st_cpc_tty_area
*cpc_tty
;
741 pc300ch_t
*pc300chan
= (pc300ch_t
*)pc300dev
->chan
;
742 pc300_t
*card
= (pc300_t
*)pc300chan
->card
;
743 int ch
= pc300chan
->channel
;
744 volatile pcsca_bd_t __iomem
* ptdescr
;
745 struct net_device_stats
*stats
= &pc300dev
->dev
->stats
;
747 volatile unsigned char status
;
748 unsigned short first_bd
= pc300chan
->rx_first_bd
;
749 st_cpc_rx_buf
*new = NULL
;
750 unsigned char dsr_rx
;
752 if (pc300dev
->cpc_tty
== NULL
) {
756 dsr_rx
= cpc_readb(card
->hw
.scabase
+ DSR_RX(ch
));
758 cpc_tty
= (st_cpc_tty_area
*)pc300dev
->cpc_tty
;
762 ptdescr
= (pcsca_bd_t __iomem
*)(card
->hw
.rambase
+ RX_BD_ADDR(ch
, first_bd
));
763 while ((status
= cpc_readb(&ptdescr
->status
)) & DST_OSB
) {
764 rx_len
+= cpc_readw(&ptdescr
->len
);
765 first_bd
= (first_bd
+ 1) & (N_DMA_RX_BUF
- 1);
766 if (status
& DST_EOM
) {
769 ptdescr
= (pcsca_bd_t __iomem
*)(card
->hw
.rambase
+cpc_readl(&ptdescr
->next
));
773 if (dsr_rx
& DSR_BOF
) {
775 cpc_writel(card
->hw
.scabase
+ DRX_REG(EDAL
, ch
),
776 RX_BD_ADDR(ch
, pc300chan
->rx_last_bd
));
782 if (rx_len
> CPC_TTY_MAX_MTU
) {
783 /* Free RX descriptors */
784 CPC_TTY_DBG("%s: frame size is invalid.\n",cpc_tty
->name
);
786 stats
->rx_frame_errors
++;
787 cpc_tty_rx_disc_frame(pc300chan
);
791 new = kmalloc(rx_len
+ sizeof(st_cpc_rx_buf
), GFP_ATOMIC
);
793 cpc_tty_rx_disc_frame(pc300chan
);
798 ptdescr
= (pcsca_bd_t __iomem
*)(card
->hw
.rambase
+
799 RX_BD_ADDR(ch
, pc300chan
->rx_first_bd
));
801 rx_len
= 0; /* counter frame size */
803 while ((status
= cpc_readb(&ptdescr
->status
)) & DST_OSB
) {
804 rx_aux
= cpc_readw(&ptdescr
->len
);
805 if ((status
& (DST_OVR
| DST_CRC
| DST_RBIT
| DST_SHRT
| DST_ABT
))
806 || (rx_aux
> BD_DEF_LEN
)) {
807 CPC_TTY_DBG("%s: reception error\n", cpc_tty
->name
);
809 if (status
& DST_OVR
) {
810 stats
->rx_fifo_errors
++;
812 if (status
& DST_CRC
) {
813 stats
->rx_crc_errors
++;
815 if ((status
& (DST_RBIT
| DST_SHRT
| DST_ABT
)) ||
816 (rx_aux
> BD_DEF_LEN
)) {
817 stats
->rx_frame_errors
++;
819 /* discard remainig descriptors used by the bad frame */
820 CPC_TTY_DBG("%s: reception error - discard descriptors",
822 cpc_tty_rx_disc_frame(pc300chan
);
826 break; /* read next frame - while(1) */
829 if (cpc_tty
->state
!= CPC_TTY_ST_OPEN
) {
830 /* Free RX descriptors */
831 cpc_tty_rx_disc_frame(pc300chan
);
836 break; /* read next frame - while(1) */
839 /* read the segment of the frame */
841 memcpy_fromio((new->data
+ rx_len
),
842 (void __iomem
*)(card
->hw
.rambase
+
843 cpc_readl(&ptdescr
->ptbuf
)), rx_aux
);
846 cpc_writeb(&ptdescr
->status
,0);
847 cpc_writeb(&ptdescr
->len
, 0);
848 pc300chan
->rx_first_bd
= (pc300chan
->rx_first_bd
+ 1) &
850 if (status
& DST_EOM
)break;
852 ptdescr
= (pcsca_bd_t __iomem
*) (card
->hw
.rambase
+
853 cpc_readl(&ptdescr
->next
));
856 pc300chan
->rx_last_bd
= (pc300chan
->rx_first_bd
- 1) &
858 if (!(dsr_rx
& DSR_BOF
)) {
860 cpc_writel(card
->hw
.scabase
+ DRX_REG(EDAL
, ch
),
861 RX_BD_ADDR(ch
, pc300chan
->rx_last_bd
));
864 stats
->rx_bytes
+= rx_len
;
866 if (pc300dev
->trace_on
) {
867 cpc_tty_trace(pc300dev
, new->data
,rx_len
, 'R');
871 if (cpc_tty
->buf_rx
.first
== NULL
) {
872 cpc_tty
->buf_rx
.first
= new;
873 cpc_tty
->buf_rx
.last
= new;
875 cpc_tty
->buf_rx
.last
->next
= new;
876 cpc_tty
->buf_rx
.last
= new;
878 schedule_work(&(cpc_tty
->tty_rx_work
));
885 * PC300 TTY TX work routine
887 * This routine treats TX interrupt.
888 * o if need call line discipline wakeup
889 * o call wake_up_interruptible
891 static void cpc_tty_tx_work(struct work_struct
*work
)
893 st_cpc_tty_area
*cpc_tty
=
894 container_of(work
, st_cpc_tty_area
, tty_tx_work
);
895 struct tty_struct
*tty
;
897 CPC_TTY_DBG("%s: cpc_tty_tx_work init\n",cpc_tty
->name
);
899 if ((tty
= cpc_tty
->tty
) == NULL
) {
900 CPC_TTY_DBG("%s: the interface is not opened\n",cpc_tty
->name
);
907 * PC300 TTY send to card routine
909 * This routine send data to card.
910 * o clear descriptors
911 * o write data to DMA buffers
912 * o start the transmission
914 static int cpc_tty_send_to_card(pc300dev_t
*dev
,void* buf
, int len
)
916 pc300ch_t
*chan
= (pc300ch_t
*)dev
->chan
;
917 pc300_t
*card
= (pc300_t
*)chan
->card
;
918 int ch
= chan
->channel
;
919 struct net_device_stats
*stats
= &dev
->dev
->stats
;
921 volatile pcsca_bd_t __iomem
*ptdescr
;
924 int nbuf
= ((len
- 1)/BD_DEF_LEN
) + 1;
925 unsigned char *pdata
=buf
;
927 CPC_TTY_DBG("%s:cpc_tty_send_to_cars len=%i",
928 (st_cpc_tty_area
*)dev
->cpc_tty
->name
,len
);
930 if (nbuf
>= card
->chan
[ch
].nfree_tx_bd
) {
934 /* write buffer to DMA buffers */
935 CPC_TTY_DBG("%s: call dma_buf_write\n",
936 (st_cpc_tty_area
*)dev
->cpc_tty
->name
);
937 for (i
= 0 ; i
< nbuf
; i
++) {
938 ptdescr
= (pcsca_bd_t __iomem
*)(card
->hw
.rambase
+
939 TX_BD_ADDR(ch
, card
->chan
[ch
].tx_next_bd
));
940 nchar
= (BD_DEF_LEN
> tosend
) ? tosend
: BD_DEF_LEN
;
941 if (cpc_readb(&ptdescr
->status
) & DST_OSB
) {
942 memcpy_toio((void __iomem
*)(card
->hw
.rambase
+
943 cpc_readl(&ptdescr
->ptbuf
)),
944 &pdata
[len
- tosend
],
946 card
->chan
[ch
].nfree_tx_bd
--;
947 if ((i
+ 1) == nbuf
) {
948 /* This must be the last BD to be used */
949 cpc_writeb(&ptdescr
->status
, DST_EOM
);
951 cpc_writeb(&ptdescr
->status
, 0);
953 cpc_writew(&ptdescr
->len
, nchar
);
955 CPC_TTY_DBG("%s: error in dma_buf_write\n",
956 (st_cpc_tty_area
*)dev
->cpc_tty
->name
);
961 card
->chan
[ch
].tx_next_bd
=
962 (card
->chan
[ch
].tx_next_bd
+ 1) & (N_DMA_TX_BUF
- 1);
966 cpc_tty_trace(dev
, buf
, len
,'T');
969 /* start transmission */
970 CPC_TTY_DBG("%s: start transmission\n",
971 (st_cpc_tty_area
*)dev
->cpc_tty
->name
);
973 CPC_TTY_LOCK(card
, flags
);
974 cpc_writeb(card
->hw
.scabase
+ DTX_REG(EDAL
, ch
),
975 TX_BD_ADDR(ch
, chan
->tx_next_bd
));
976 cpc_writeb(card
->hw
.scabase
+ M_REG(CMD
, ch
), CMD_TX_ENA
);
977 cpc_writeb(card
->hw
.scabase
+ DSR_TX(ch
), DSR_DE
);
979 if (card
->hw
.type
== PC300_TE
) {
980 cpc_writeb(card
->hw
.falcbase
+ card
->hw
.cpld_reg2
,
981 cpc_readb(card
->hw
.falcbase
+ card
->hw
.cpld_reg2
) |
982 (CPLD_REG2_FALC_LED1
<< (2 * ch
)));
984 CPC_TTY_UNLOCK(card
, flags
);
989 * PC300 TTY trace routine
991 * This routine send trace of connection to application.
992 * o clear descriptors
993 * o write data to DMA buffers
994 * o start the transmission
997 static void cpc_tty_trace(pc300dev_t
*dev
, char* buf
, int len
, char rxtx
)
1001 if ((skb
= dev_alloc_skb(10 + len
)) == NULL
) {
1003 CPC_TTY_DBG("%s: tty_trace - out of memory\n", dev
->dev
->name
);
1007 skb_put (skb
, 10 + len
);
1008 skb
->dev
= dev
->dev
;
1009 skb
->protocol
= htons(ETH_P_CUST
);
1010 skb_reset_mac_header(skb
);
1011 skb
->pkt_type
= PACKET_HOST
;
1012 skb
->len
= 10 + len
;
1014 skb_copy_to_linear_data(skb
, dev
->dev
->name
, 5);
1016 skb
->data
[6] = rxtx
;
1020 skb_copy_to_linear_data_offset(skb
, 10, buf
, len
);
1025 * PC300 TTY unregister service routine
1027 * This routine unregister one interface.
1029 void cpc_tty_unregister_service(pc300dev_t
*pc300dev
)
1031 st_cpc_tty_area
*cpc_tty
;
1035 if ((cpc_tty
= (st_cpc_tty_area
*) pc300dev
->cpc_tty
) == NULL
) {
1036 CPC_TTY_DBG("%s: interface is not TTY\n", pc300dev
->dev
->name
);
1039 CPC_TTY_DBG("%s: cpc_tty_unregister_service", cpc_tty
->name
);
1041 if (cpc_tty
->pc300dev
!= pc300dev
) {
1042 CPC_TTY_DBG("%s: invalid tty ptr=%s\n",
1043 pc300dev
->dev
->name
, cpc_tty
->name
);
1047 if (--cpc_tty_cnt
== 0) {
1048 if (serial_drv
.refcount
) {
1049 CPC_TTY_DBG("%s: unregister is not possible, refcount=%d",
1050 cpc_tty
->name
, serial_drv
.refcount
);
1052 cpc_tty_unreg_flag
= 1;
1055 CPC_TTY_DBG("%s: unregister the tty driver\n", cpc_tty
->name
);
1056 if ((res
=tty_unregister_driver(&serial_drv
))) {
1057 CPC_TTY_DBG("%s: ERROR ->unregister the tty driver error=%d\n",
1062 CPC_TTY_LOCK(pc300dev
->chan
->card
,flags
);
1063 cpc_tty
->tty
= NULL
;
1064 CPC_TTY_UNLOCK(pc300dev
->chan
->card
, flags
);
1065 cpc_tty
->tty_minor
= 0;
1066 cpc_tty
->state
= CPC_TTY_ST_IDLE
;
1070 * PC300 TTY trigger poll routine
1071 * This routine is called by pc300driver to treats Tx interrupt.
1073 void cpc_tty_trigger_poll(pc300dev_t
*pc300dev
)
1075 st_cpc_tty_area
*cpc_tty
= (st_cpc_tty_area
*)pc300dev
->cpc_tty
;
1079 schedule_work(&(cpc_tty
->tty_tx_work
));
1083 * PC300 TTY reset var routine
1084 * This routine is called by pc300driver to init the TTY area.
1087 void cpc_tty_reset_var(void)
1091 CPC_TTY_DBG("hdlcX-tty: reset variables\n");
1092 /* reset the tty_driver structure - serial_drv */
1093 memset(&serial_drv
, 0, sizeof(struct tty_driver
));
1094 for (i
=0; i
< CPC_TTY_NPORTS
; i
++){
1095 memset(&cpc_tty_area
[i
],0, sizeof(st_cpc_tty_area
));