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
);
144 * PC300 TTY clear "signal"
146 static void cpc_tty_signal_off(pc300dev_t
*pc300dev
, unsigned char signal
)
148 pc300ch_t
*pc300chan
= (pc300ch_t
*)pc300dev
->chan
;
149 pc300_t
*card
= (pc300_t
*) pc300chan
->card
;
150 int ch
= pc300chan
->channel
;
153 CPC_TTY_DBG("%s-tty: Clear signal %x\n",
154 pc300dev
->dev
->name
, signal
);
155 CPC_TTY_LOCK(card
, flags
);
156 cpc_writeb(card
->hw
.scabase
+ M_REG(CTL
,ch
),
157 cpc_readb(card
->hw
.scabase
+M_REG(CTL
,ch
))& signal
);
158 CPC_TTY_UNLOCK(card
,flags
);
162 * PC300 TTY set "signal" to ON
164 static void cpc_tty_signal_on(pc300dev_t
*pc300dev
, unsigned char signal
)
166 pc300ch_t
*pc300chan
= (pc300ch_t
*)pc300dev
->chan
;
167 pc300_t
*card
= (pc300_t
*) pc300chan
->card
;
168 int ch
= pc300chan
->channel
;
171 CPC_TTY_DBG("%s-tty: Set signal %x\n",
172 pc300dev
->dev
->name
, signal
);
173 CPC_TTY_LOCK(card
, flags
);
174 cpc_writeb(card
->hw
.scabase
+ M_REG(CTL
,ch
),
175 cpc_readb(card
->hw
.scabase
+M_REG(CTL
,ch
))& ~signal
);
176 CPC_TTY_UNLOCK(card
,flags
);
180 static const struct tty_operations pc300_ops
= {
181 .open
= cpc_tty_open
,
182 .close
= cpc_tty_close
,
183 .write
= cpc_tty_write
,
184 .write_room
= cpc_tty_write_room
,
185 .chars_in_buffer
= cpc_tty_chars_in_buffer
,
186 .tiocmset
= pc300_tiocmset
,
187 .tiocmget
= pc300_tiocmget
,
188 .flush_buffer
= cpc_tty_flush_buffer
,
189 .hangup
= cpc_tty_hangup
,
194 * PC300 TTY initialization routine
196 * This routine is called by the PC300 driver during board configuration
197 * (ioctl=SIOCSP300CONF). At this point the adapter is completely
199 * o verify kernel version (only 2.4.x)
200 * o register TTY driver
201 * o init cpc_tty_area struct
203 void cpc_tty_init(pc300dev_t
*pc300dev
)
207 st_cpc_tty_area
* cpc_tty
;
209 /* hdlcX - X=interface number */
210 port
= pc300dev
->dev
->name
[4] - '0';
211 if (port
>= CPC_TTY_NPORTS
) {
212 printk("%s-tty: invalid interface selected (0-%i): %li",
214 CPC_TTY_NPORTS
-1,port
);
218 if (cpc_tty_cnt
== 0) { /* first TTY connection -> register driver */
219 CPC_TTY_DBG("%s-tty: driver init, major:%i, minor range:%i=%i\n",
221 CPC_TTY_MAJOR
, CPC_TTY_MINOR_START
,
222 CPC_TTY_MINOR_START
+CPC_TTY_NPORTS
);
223 /* initialize tty driver struct */
224 memset(&serial_drv
,0,sizeof(struct tty_driver
));
225 serial_drv
.magic
= TTY_DRIVER_MAGIC
;
226 serial_drv
.owner
= THIS_MODULE
;
227 serial_drv
.driver_name
= "pc300_tty";
228 serial_drv
.name
= "ttyCP";
229 serial_drv
.major
= CPC_TTY_MAJOR
;
230 serial_drv
.minor_start
= CPC_TTY_MINOR_START
;
231 serial_drv
.num
= CPC_TTY_NPORTS
;
232 serial_drv
.type
= TTY_DRIVER_TYPE_SERIAL
;
233 serial_drv
.subtype
= SERIAL_TYPE_NORMAL
;
235 serial_drv
.init_termios
= tty_std_termios
;
236 serial_drv
.init_termios
.c_cflag
= B9600
|CS8
|CREAD
|HUPCL
|CLOCAL
;
237 serial_drv
.flags
= TTY_DRIVER_REAL_RAW
;
239 /* interface routines from the upper tty layer to the tty driver */
240 tty_set_operations(&serial_drv
, &pc300_ops
);
242 /* register the TTY driver */
243 if (tty_register_driver(&serial_drv
)) {
244 printk("%s-tty: Failed to register serial driver! ",
245 pc300dev
->dev
->name
);
249 memset((void *)cpc_tty_area
, 0,
250 sizeof(st_cpc_tty_area
) * CPC_TTY_NPORTS
);
253 cpc_tty
= &cpc_tty_area
[port
];
255 if (cpc_tty
->state
!= CPC_TTY_ST_IDLE
) {
256 CPC_TTY_DBG("%s-tty: TTY port %i, already in use.\n",
257 pc300dev
->dev
->name
, port
);
262 cpc_tty
->state
= CPC_TTY_ST_INIT
;
263 cpc_tty
->num_open
= 0;
264 cpc_tty
->tty_minor
= port
+ CPC_TTY_MINOR_START
;
265 cpc_tty
->pc300dev
= pc300dev
;
267 INIT_WORK(&cpc_tty
->tty_tx_work
, cpc_tty_tx_work
);
268 INIT_WORK(&cpc_tty
->tty_rx_work
, cpc_tty_rx_work
);
270 cpc_tty
->buf_rx
.first
= cpc_tty
->buf_rx
.last
= NULL
;
272 pc300dev
->cpc_tty
= (void *)cpc_tty
;
274 aux
= strlen(pc300dev
->dev
->name
);
275 memcpy(cpc_tty
->name
, pc300dev
->dev
->name
, aux
);
276 memcpy(&cpc_tty
->name
[aux
], "-tty", 5);
278 cpc_open(pc300dev
->dev
);
279 cpc_tty_signal_off(pc300dev
, CTL_DTR
);
281 CPC_TTY_DBG("%s: Initializing TTY Sync Driver, tty major#%d minor#%i\n",
282 cpc_tty
->name
,CPC_TTY_MAJOR
,cpc_tty
->tty_minor
);
287 * PC300 TTY OPEN routine
289 * This routine is called by the tty driver to open the interface
291 * o allocate buffer to Rx and Tx
293 static int cpc_tty_open(struct tty_struct
*tty
, struct file
*flip
)
296 st_cpc_tty_area
*cpc_tty
;
304 if ((port
< 0) || (port
>= CPC_TTY_NPORTS
)){
305 CPC_TTY_DBG("pc300_tty: open invalid port %d\n", port
);
309 cpc_tty
= &cpc_tty_area
[port
];
311 if (cpc_tty
->state
== CPC_TTY_ST_IDLE
){
312 CPC_TTY_DBG("%s: open - invalid interface, port=%d\n",
313 cpc_tty
->name
, tty
->index
);
317 if (cpc_tty
->num_open
== 0) { /* first open of this tty */
318 if (!cpc_tty_area
[port
].buf_tx
){
319 cpc_tty_area
[port
].buf_tx
= kmalloc(CPC_TTY_MAX_MTU
,GFP_KERNEL
);
320 if (!cpc_tty_area
[port
].buf_tx
) {
321 CPC_TTY_DBG("%s: error in memory allocation\n",cpc_tty
->name
);
326 if (cpc_tty_area
[port
].buf_rx
.first
) {
328 while (cpc_tty_area
[port
].buf_rx
.first
) {
329 aux
= (unsigned char *)cpc_tty_area
[port
].buf_rx
.first
;
330 cpc_tty_area
[port
].buf_rx
.first
= cpc_tty_area
[port
].buf_rx
.first
->next
;
333 cpc_tty_area
[port
].buf_rx
.first
= NULL
;
334 cpc_tty_area
[port
].buf_rx
.last
= NULL
;
337 cpc_tty_area
[port
].state
= CPC_TTY_ST_OPEN
;
338 cpc_tty_area
[port
].tty
= tty
;
339 tty
->driver_data
= &cpc_tty_area
[port
];
341 cpc_tty_signal_on(cpc_tty
->pc300dev
, CTL_DTR
);
346 CPC_TTY_DBG("%s: opening TTY driver\n", cpc_tty
->name
);
348 /* avisar driver PC300 */
353 * PC300 TTY CLOSE routine
355 * This routine is called by the tty driver to close the interface
356 * o call close channel in PC300 driver (cpc_closech)
357 * o free Rx and Tx buffers
360 static void cpc_tty_close(struct tty_struct
*tty
, struct file
*flip
)
362 st_cpc_tty_area
*cpc_tty
;
366 if (!tty
|| !tty
->driver_data
) {
367 CPC_TTY_DBG("hdlx-tty: no TTY in close\n");
371 cpc_tty
= (st_cpc_tty_area
*) tty
->driver_data
;
373 if ((cpc_tty
->tty
!= tty
)|| (cpc_tty
->state
!= CPC_TTY_ST_OPEN
)) {
374 CPC_TTY_DBG("%s: TTY is not opened\n",cpc_tty
->name
);
378 if (!cpc_tty
->num_open
) {
379 CPC_TTY_DBG("%s: TTY is closed\n",cpc_tty
->name
);
383 if (--cpc_tty
->num_open
> 0) {
384 CPC_TTY_DBG("%s: TTY closed\n",cpc_tty
->name
);
388 cpc_tty_signal_off(cpc_tty
->pc300dev
, CTL_DTR
);
390 CPC_TTY_LOCK(cpc_tty
->pc300dev
->chan
->card
, flags
); /* lock irq */
392 cpc_tty
->state
= CPC_TTY_ST_INIT
;
393 CPC_TTY_UNLOCK(cpc_tty
->pc300dev
->chan
->card
, flags
); /* unlock irq */
395 if (cpc_tty
->buf_rx
.first
) {
397 while (cpc_tty
->buf_rx
.first
) {
398 aux
= (unsigned char *)cpc_tty
->buf_rx
.first
;
399 cpc_tty
->buf_rx
.first
= cpc_tty
->buf_rx
.first
->next
;
402 cpc_tty
->buf_rx
.first
= NULL
;
403 cpc_tty
->buf_rx
.last
= NULL
;
406 kfree(cpc_tty
->buf_tx
);
407 cpc_tty
->buf_tx
= NULL
;
409 CPC_TTY_DBG("%s: TTY closed\n",cpc_tty
->name
);
411 if (!serial_drv
.refcount
&& cpc_tty_unreg_flag
) {
412 cpc_tty_unreg_flag
= 0;
413 CPC_TTY_DBG("%s: unregister the tty driver\n", cpc_tty
->name
);
414 if ((res
=tty_unregister_driver(&serial_drv
))) {
415 CPC_TTY_DBG("%s: ERROR ->unregister the tty driver error=%d\n",
423 * PC300 TTY WRITE routine
425 * This routine is called by the tty driver to write a series of characters
426 * to the tty device. The characters may come from user or kernel space.
427 * o verify the DCD signal
428 * o send characters to board and start the transmission
430 static int cpc_tty_write(struct tty_struct
*tty
, const unsigned char *buf
, int count
)
432 st_cpc_tty_area
*cpc_tty
;
433 pc300ch_t
*pc300chan
;
437 struct net_device_stats
*stats
;
439 if (!tty
|| !tty
->driver_data
) {
440 CPC_TTY_DBG("hdlcX-tty: no TTY in write\n");
444 cpc_tty
= (st_cpc_tty_area
*) tty
->driver_data
;
446 if ((cpc_tty
->tty
!= tty
) || (cpc_tty
->state
!= CPC_TTY_ST_OPEN
)) {
447 CPC_TTY_DBG("%s: TTY is not opened\n", cpc_tty
->name
);
451 if (count
> CPC_TTY_MAX_MTU
) {
452 CPC_TTY_DBG("%s: count is invalid\n",cpc_tty
->name
);
453 return -EINVAL
; /* frame too big */
456 CPC_TTY_DBG("%s: cpc_tty_write data len=%i\n",cpc_tty
->name
,count
);
458 pc300chan
= (pc300ch_t
*)((pc300dev_t
*)cpc_tty
->pc300dev
)->chan
;
459 stats
= &cpc_tty
->pc300dev
->dev
->stats
;
460 card
= (pc300_t
*) pc300chan
->card
;
461 ch
= pc300chan
->channel
;
463 /* verify DCD signal*/
464 if (cpc_readb(card
->hw
.scabase
+ M_REG(ST3
,ch
)) & ST3_DCD
) {
466 CPC_TTY_DBG("%s : DCD is OFF\n", cpc_tty
->name
);
468 stats
->tx_carrier_errors
++;
469 CPC_TTY_LOCK(card
, flags
);
470 cpc_writeb(card
->hw
.scabase
+ M_REG(CMD
, ch
), CMD_TX_BUF_CLR
);
472 if (card
->hw
.type
== PC300_TE
) {
473 cpc_writeb(card
->hw
.falcbase
+ card
->hw
.cpld_reg2
,
474 cpc_readb(card
->hw
.falcbase
+ card
->hw
.cpld_reg2
) &
475 ~(CPLD_REG2_FALC_LED1
<< (2 *ch
)));
478 CPC_TTY_UNLOCK(card
, flags
);
483 if (cpc_tty_send_to_card(cpc_tty
->pc300dev
, (void*)buf
, count
)) {
485 CPC_TTY_DBG("%s: trasmition error\n", cpc_tty
->name
);
492 * PC300 TTY Write Room routine
494 * This routine returns the numbers of characteres the tty driver will accept
495 * for queuing to be written.
498 static int cpc_tty_write_room(struct tty_struct
*tty
)
500 st_cpc_tty_area
*cpc_tty
;
502 if (!tty
|| !tty
->driver_data
) {
503 CPC_TTY_DBG("hdlcX-tty: no TTY to write room\n");
507 cpc_tty
= (st_cpc_tty_area
*) tty
->driver_data
;
509 if ((cpc_tty
->tty
!= tty
) || (cpc_tty
->state
!= CPC_TTY_ST_OPEN
)) {
510 CPC_TTY_DBG("%s: TTY is not opened\n",cpc_tty
->name
);
514 CPC_TTY_DBG("%s: write room\n",cpc_tty
->name
);
516 return CPC_TTY_MAX_MTU
;
520 * PC300 TTY chars in buffer routine
522 * This routine returns the chars number in the transmission buffer
525 static int cpc_tty_chars_in_buffer(struct tty_struct
*tty
)
527 st_cpc_tty_area
*cpc_tty
;
529 if (!tty
|| !tty
->driver_data
) {
530 CPC_TTY_DBG("hdlcX-tty: no TTY to chars in buffer\n");
534 cpc_tty
= (st_cpc_tty_area
*) tty
->driver_data
;
536 if ((cpc_tty
->tty
!= tty
) || (cpc_tty
->state
!= CPC_TTY_ST_OPEN
)) {
537 CPC_TTY_DBG("%s: TTY is not opened\n",cpc_tty
->name
);
544 static int pc300_tiocmset(struct tty_struct
*tty
,
545 unsigned int set
, unsigned int clear
)
547 st_cpc_tty_area
*cpc_tty
;
549 CPC_TTY_DBG("%s: set:%x clear:%x\n", __func__
, set
, clear
);
551 if (!tty
|| !tty
->driver_data
) {
552 CPC_TTY_DBG("hdlcX-tty: no TTY to chars in buffer\n");
556 cpc_tty
= (st_cpc_tty_area
*) tty
->driver_data
;
559 cpc_tty_signal_on(cpc_tty
->pc300dev
, CTL_RTS
);
561 cpc_tty_signal_on(cpc_tty
->pc300dev
, CTL_DTR
);
563 if (clear
& TIOCM_RTS
)
564 cpc_tty_signal_off(cpc_tty
->pc300dev
, CTL_RTS
);
565 if (clear
& TIOCM_DTR
)
566 cpc_tty_signal_off(cpc_tty
->pc300dev
, CTL_DTR
);
571 static int pc300_tiocmget(struct tty_struct
*tty
)
574 unsigned char status
;
576 st_cpc_tty_area
*cpc_tty
= (st_cpc_tty_area
*) tty
->driver_data
;
577 pc300dev_t
*pc300dev
= cpc_tty
->pc300dev
;
578 pc300ch_t
*pc300chan
= (pc300ch_t
*)pc300dev
->chan
;
579 pc300_t
*card
= (pc300_t
*) pc300chan
->card
;
580 int ch
= pc300chan
->channel
;
582 cpc_tty
= (st_cpc_tty_area
*) tty
->driver_data
;
584 CPC_TTY_DBG("%s-tty: tiocmget\n",
585 ((struct net_device
*)(pc300dev
->hdlc
))->name
);
587 CPC_TTY_LOCK(card
, flags
);
588 status
= cpc_readb(card
->hw
.scabase
+M_REG(CTL
,ch
));
589 CPC_TTY_UNLOCK(card
,flags
);
591 result
= ((status
& CTL_DTR
) ? TIOCM_DTR
: 0) |
592 ((status
& CTL_RTS
) ? TIOCM_RTS
: 0);
598 * PC300 TTY Flush Buffer routine
600 * This routine resets the transmission buffer
602 static void cpc_tty_flush_buffer(struct tty_struct
*tty
)
604 st_cpc_tty_area
*cpc_tty
;
606 if (!tty
|| !tty
->driver_data
) {
607 CPC_TTY_DBG("hdlcX-tty: no TTY to flush buffer\n");
611 cpc_tty
= (st_cpc_tty_area
*) tty
->driver_data
;
613 if ((cpc_tty
->tty
!= tty
) || (cpc_tty
->state
!= CPC_TTY_ST_OPEN
)) {
614 CPC_TTY_DBG("%s: TTY is not opened\n",cpc_tty
->name
);
618 CPC_TTY_DBG("%s: call wake_up_interruptible\n",cpc_tty
->name
);
625 * PC300 TTY Hangup routine
627 * This routine is called by the tty driver to hangup the interface
631 static void cpc_tty_hangup(struct tty_struct
*tty
)
633 st_cpc_tty_area
*cpc_tty
;
636 if (!tty
|| !tty
->driver_data
) {
637 CPC_TTY_DBG("hdlcX-tty: no TTY to hangup\n");
641 cpc_tty
= (st_cpc_tty_area
*) tty
->driver_data
;
643 if ((cpc_tty
->tty
!= tty
) || (cpc_tty
->state
!= CPC_TTY_ST_OPEN
)) {
644 CPC_TTY_DBG("%s: TTY is not opened\n",cpc_tty
->name
);
647 if (!serial_drv
.refcount
&& cpc_tty_unreg_flag
) {
648 cpc_tty_unreg_flag
= 0;
649 CPC_TTY_DBG("%s: unregister the tty driver\n", cpc_tty
->name
);
650 if ((res
=tty_unregister_driver(&serial_drv
))) {
651 CPC_TTY_DBG("%s: ERROR ->unregister the tty driver error=%d\n",
655 cpc_tty_signal_off(cpc_tty
->pc300dev
, CTL_DTR
);
659 * PC300 TTY RX work routine
660 * This routine treats RX work
661 * o verify read buffer
662 * o call the line disc. read
665 static void cpc_tty_rx_work(struct work_struct
*work
)
667 st_cpc_tty_area
*cpc_tty
;
670 volatile st_cpc_rx_buf
*buf
;
671 char flags
=0,flg_rx
=1;
672 struct tty_ldisc
*ld
;
674 if (cpc_tty_cnt
== 0) return;
676 for (i
=0; (i
< 4) && flg_rx
; i
++) {
679 cpc_tty
= container_of(work
, st_cpc_tty_area
, tty_rx_work
);
680 port
= cpc_tty
- cpc_tty_area
;
682 for (j
=0; j
< CPC_TTY_NPORTS
; j
++) {
683 cpc_tty
= &cpc_tty_area
[port
];
685 if ((buf
=cpc_tty
->buf_rx
.first
) != NULL
) {
687 ld
= tty_ldisc_ref(cpc_tty
->tty
);
689 if (ld
->ops
->receive_buf
) {
690 CPC_TTY_DBG("%s: call line disc. receive_buf\n",cpc_tty
->name
);
691 ld
->ops
->receive_buf(cpc_tty
->tty
, (char *)(buf
->data
), &flags
, buf
->size
);
696 cpc_tty
->buf_rx
.first
= cpc_tty
->buf_rx
.first
->next
;
698 buf
= cpc_tty
->buf_rx
.first
;
701 if (++port
== CPC_TTY_NPORTS
) port
= 0;
707 * PC300 TTY RX work routine
709 * This routine treats RX interrupt.
710 * o read all frames in card
711 * o verify the frame size
712 * o read the frame in rx buffer
714 static void cpc_tty_rx_disc_frame(pc300ch_t
*pc300chan
)
716 volatile pcsca_bd_t __iomem
* ptdescr
;
717 volatile unsigned char status
;
718 pc300_t
*card
= (pc300_t
*)pc300chan
->card
;
719 int ch
= pc300chan
->channel
;
722 ptdescr
= (pcsca_bd_t __iomem
*)(card
->hw
.rambase
+
723 RX_BD_ADDR(ch
, pc300chan
->rx_first_bd
));
724 while (pc300chan
->rx_first_bd
!= pc300chan
->rx_last_bd
) {
725 status
= cpc_readb(&ptdescr
->status
);
726 cpc_writeb(&ptdescr
->status
, 0);
727 cpc_writeb(&ptdescr
->len
, 0);
728 pc300chan
->rx_first_bd
= (pc300chan
->rx_first_bd
+ 1) &
730 if (status
& DST_EOM
) {
731 break; /* end of message */
733 ptdescr
= (pcsca_bd_t __iomem
*)(card
->hw
.rambase
+ cpc_readl(&ptdescr
->next
));
737 void cpc_tty_receive(pc300dev_t
*pc300dev
)
739 st_cpc_tty_area
*cpc_tty
;
740 pc300ch_t
*pc300chan
= (pc300ch_t
*)pc300dev
->chan
;
741 pc300_t
*card
= (pc300_t
*)pc300chan
->card
;
742 int ch
= pc300chan
->channel
;
743 volatile pcsca_bd_t __iomem
* ptdescr
;
744 struct net_device_stats
*stats
= &pc300dev
->dev
->stats
;
746 volatile unsigned char status
;
747 unsigned short first_bd
= pc300chan
->rx_first_bd
;
748 st_cpc_rx_buf
*new = NULL
;
749 unsigned char dsr_rx
;
751 if (pc300dev
->cpc_tty
== NULL
) {
755 dsr_rx
= cpc_readb(card
->hw
.scabase
+ DSR_RX(ch
));
757 cpc_tty
= pc300dev
->cpc_tty
;
761 ptdescr
= (pcsca_bd_t __iomem
*)(card
->hw
.rambase
+ RX_BD_ADDR(ch
, first_bd
));
762 while ((status
= cpc_readb(&ptdescr
->status
)) & DST_OSB
) {
763 rx_len
+= cpc_readw(&ptdescr
->len
);
764 first_bd
= (first_bd
+ 1) & (N_DMA_RX_BUF
- 1);
765 if (status
& DST_EOM
) {
768 ptdescr
= (pcsca_bd_t __iomem
*)(card
->hw
.rambase
+cpc_readl(&ptdescr
->next
));
772 if (dsr_rx
& DSR_BOF
) {
774 cpc_writel(card
->hw
.scabase
+ DRX_REG(EDAL
, ch
),
775 RX_BD_ADDR(ch
, pc300chan
->rx_last_bd
));
781 if (rx_len
> CPC_TTY_MAX_MTU
) {
782 /* Free RX descriptors */
783 CPC_TTY_DBG("%s: frame size is invalid.\n",cpc_tty
->name
);
785 stats
->rx_frame_errors
++;
786 cpc_tty_rx_disc_frame(pc300chan
);
790 new = kmalloc(rx_len
+ sizeof(st_cpc_rx_buf
), GFP_ATOMIC
);
792 cpc_tty_rx_disc_frame(pc300chan
);
797 ptdescr
= (pcsca_bd_t __iomem
*)(card
->hw
.rambase
+
798 RX_BD_ADDR(ch
, pc300chan
->rx_first_bd
));
800 rx_len
= 0; /* counter frame size */
802 while ((status
= cpc_readb(&ptdescr
->status
)) & DST_OSB
) {
803 rx_aux
= cpc_readw(&ptdescr
->len
);
804 if ((status
& (DST_OVR
| DST_CRC
| DST_RBIT
| DST_SHRT
| DST_ABT
))
805 || (rx_aux
> BD_DEF_LEN
)) {
806 CPC_TTY_DBG("%s: reception error\n", cpc_tty
->name
);
808 if (status
& DST_OVR
) {
809 stats
->rx_fifo_errors
++;
811 if (status
& DST_CRC
) {
812 stats
->rx_crc_errors
++;
814 if ((status
& (DST_RBIT
| DST_SHRT
| DST_ABT
)) ||
815 (rx_aux
> BD_DEF_LEN
)) {
816 stats
->rx_frame_errors
++;
818 /* discard remainig descriptors used by the bad frame */
819 CPC_TTY_DBG("%s: reception error - discard descriptors",
821 cpc_tty_rx_disc_frame(pc300chan
);
825 break; /* read next frame - while(1) */
828 if (cpc_tty
->state
!= CPC_TTY_ST_OPEN
) {
829 /* Free RX descriptors */
830 cpc_tty_rx_disc_frame(pc300chan
);
835 break; /* read next frame - while(1) */
838 /* read the segment of the frame */
840 memcpy_fromio((new->data
+ rx_len
),
841 (void __iomem
*)(card
->hw
.rambase
+
842 cpc_readl(&ptdescr
->ptbuf
)), rx_aux
);
845 cpc_writeb(&ptdescr
->status
,0);
846 cpc_writeb(&ptdescr
->len
, 0);
847 pc300chan
->rx_first_bd
= (pc300chan
->rx_first_bd
+ 1) &
849 if (status
& DST_EOM
)break;
851 ptdescr
= (pcsca_bd_t __iomem
*) (card
->hw
.rambase
+
852 cpc_readl(&ptdescr
->next
));
855 pc300chan
->rx_last_bd
= (pc300chan
->rx_first_bd
- 1) &
857 if (!(dsr_rx
& DSR_BOF
)) {
859 cpc_writel(card
->hw
.scabase
+ DRX_REG(EDAL
, ch
),
860 RX_BD_ADDR(ch
, pc300chan
->rx_last_bd
));
863 stats
->rx_bytes
+= rx_len
;
865 if (pc300dev
->trace_on
) {
866 cpc_tty_trace(pc300dev
, new->data
,rx_len
, 'R');
870 if (cpc_tty
->buf_rx
.first
== NULL
) {
871 cpc_tty
->buf_rx
.first
= new;
872 cpc_tty
->buf_rx
.last
= new;
874 cpc_tty
->buf_rx
.last
->next
= new;
875 cpc_tty
->buf_rx
.last
= new;
877 schedule_work(&(cpc_tty
->tty_rx_work
));
884 * PC300 TTY TX work routine
886 * This routine treats TX interrupt.
887 * o if need call line discipline wakeup
888 * o call wake_up_interruptible
890 static void cpc_tty_tx_work(struct work_struct
*work
)
892 st_cpc_tty_area
*cpc_tty
=
893 container_of(work
, st_cpc_tty_area
, tty_tx_work
);
894 struct tty_struct
*tty
;
896 CPC_TTY_DBG("%s: cpc_tty_tx_work init\n",cpc_tty
->name
);
898 if ((tty
= cpc_tty
->tty
) == NULL
) {
899 CPC_TTY_DBG("%s: the interface is not opened\n",cpc_tty
->name
);
906 * PC300 TTY send to card routine
908 * This routine send data to card.
909 * o clear descriptors
910 * o write data to DMA buffers
911 * o start the transmission
913 static int cpc_tty_send_to_card(pc300dev_t
*dev
,void* buf
, int len
)
915 pc300ch_t
*chan
= (pc300ch_t
*)dev
->chan
;
916 pc300_t
*card
= (pc300_t
*)chan
->card
;
917 int ch
= chan
->channel
;
918 struct net_device_stats
*stats
= &dev
->dev
->stats
;
920 volatile pcsca_bd_t __iomem
*ptdescr
;
923 int nbuf
= ((len
- 1)/BD_DEF_LEN
) + 1;
924 unsigned char *pdata
=buf
;
926 CPC_TTY_DBG("%s:cpc_tty_send_to_cars len=%i",
927 (st_cpc_tty_area
*)dev
->cpc_tty
->name
,len
);
929 if (nbuf
>= card
->chan
[ch
].nfree_tx_bd
) {
933 /* write buffer to DMA buffers */
934 CPC_TTY_DBG("%s: call dma_buf_write\n",
935 (st_cpc_tty_area
*)dev
->cpc_tty
->name
);
936 for (i
= 0 ; i
< nbuf
; i
++) {
937 ptdescr
= (pcsca_bd_t __iomem
*)(card
->hw
.rambase
+
938 TX_BD_ADDR(ch
, card
->chan
[ch
].tx_next_bd
));
939 nchar
= (BD_DEF_LEN
> tosend
) ? tosend
: BD_DEF_LEN
;
940 if (cpc_readb(&ptdescr
->status
) & DST_OSB
) {
941 memcpy_toio((void __iomem
*)(card
->hw
.rambase
+
942 cpc_readl(&ptdescr
->ptbuf
)),
943 &pdata
[len
- tosend
],
945 card
->chan
[ch
].nfree_tx_bd
--;
946 if ((i
+ 1) == nbuf
) {
947 /* This must be the last BD to be used */
948 cpc_writeb(&ptdescr
->status
, DST_EOM
);
950 cpc_writeb(&ptdescr
->status
, 0);
952 cpc_writew(&ptdescr
->len
, nchar
);
954 CPC_TTY_DBG("%s: error in dma_buf_write\n",
955 (st_cpc_tty_area
*)dev
->cpc_tty
->name
);
960 card
->chan
[ch
].tx_next_bd
=
961 (card
->chan
[ch
].tx_next_bd
+ 1) & (N_DMA_TX_BUF
- 1);
965 cpc_tty_trace(dev
, buf
, len
,'T');
968 /* start transmission */
969 CPC_TTY_DBG("%s: start transmission\n",
970 (st_cpc_tty_area
*)dev
->cpc_tty
->name
);
972 CPC_TTY_LOCK(card
, flags
);
973 cpc_writeb(card
->hw
.scabase
+ DTX_REG(EDAL
, ch
),
974 TX_BD_ADDR(ch
, chan
->tx_next_bd
));
975 cpc_writeb(card
->hw
.scabase
+ M_REG(CMD
, ch
), CMD_TX_ENA
);
976 cpc_writeb(card
->hw
.scabase
+ DSR_TX(ch
), DSR_DE
);
978 if (card
->hw
.type
== PC300_TE
) {
979 cpc_writeb(card
->hw
.falcbase
+ card
->hw
.cpld_reg2
,
980 cpc_readb(card
->hw
.falcbase
+ card
->hw
.cpld_reg2
) |
981 (CPLD_REG2_FALC_LED1
<< (2 * ch
)));
983 CPC_TTY_UNLOCK(card
, flags
);
988 * PC300 TTY trace routine
990 * This routine send trace of connection to application.
991 * o clear descriptors
992 * o write data to DMA buffers
993 * o start the transmission
996 static void cpc_tty_trace(pc300dev_t
*dev
, char* buf
, int len
, char rxtx
)
1000 if ((skb
= dev_alloc_skb(10 + len
)) == NULL
) {
1002 CPC_TTY_DBG("%s: tty_trace - out of memory\n", dev
->dev
->name
);
1006 skb_put (skb
, 10 + len
);
1007 skb
->dev
= dev
->dev
;
1008 skb
->protocol
= htons(ETH_P_CUST
);
1009 skb_reset_mac_header(skb
);
1010 skb
->pkt_type
= PACKET_HOST
;
1011 skb
->len
= 10 + len
;
1013 skb_copy_to_linear_data(skb
, dev
->dev
->name
, 5);
1015 skb
->data
[6] = rxtx
;
1019 skb_copy_to_linear_data_offset(skb
, 10, buf
, len
);
1024 * PC300 TTY unregister service routine
1026 * This routine unregister one interface.
1028 void cpc_tty_unregister_service(pc300dev_t
*pc300dev
)
1030 st_cpc_tty_area
*cpc_tty
;
1034 if ((cpc_tty
= (st_cpc_tty_area
*) pc300dev
->cpc_tty
) == NULL
) {
1035 CPC_TTY_DBG("%s: interface is not TTY\n", pc300dev
->dev
->name
);
1038 CPC_TTY_DBG("%s: cpc_tty_unregister_service", cpc_tty
->name
);
1040 if (cpc_tty
->pc300dev
!= pc300dev
) {
1041 CPC_TTY_DBG("%s: invalid tty ptr=%s\n",
1042 pc300dev
->dev
->name
, cpc_tty
->name
);
1046 if (--cpc_tty_cnt
== 0) {
1047 if (serial_drv
.refcount
) {
1048 CPC_TTY_DBG("%s: unregister is not possible, refcount=%d",
1049 cpc_tty
->name
, serial_drv
.refcount
);
1051 cpc_tty_unreg_flag
= 1;
1054 CPC_TTY_DBG("%s: unregister the tty driver\n", cpc_tty
->name
);
1055 if ((res
=tty_unregister_driver(&serial_drv
))) {
1056 CPC_TTY_DBG("%s: ERROR ->unregister the tty driver error=%d\n",
1061 CPC_TTY_LOCK(pc300dev
->chan
->card
,flags
);
1062 cpc_tty
->tty
= NULL
;
1063 CPC_TTY_UNLOCK(pc300dev
->chan
->card
, flags
);
1064 cpc_tty
->tty_minor
= 0;
1065 cpc_tty
->state
= CPC_TTY_ST_IDLE
;
1069 * PC300 TTY trigger poll routine
1070 * This routine is called by pc300driver to treats Tx interrupt.
1072 void cpc_tty_trigger_poll(pc300dev_t
*pc300dev
)
1074 st_cpc_tty_area
*cpc_tty
= (st_cpc_tty_area
*)pc300dev
->cpc_tty
;
1078 schedule_work(&(cpc_tty
->tty_tx_work
));