1 /*****************************************************************************/
3 * moxa.c -- MOXA Intellio family multiport serial driver.
5 * Copyright (C) 1999-2000 Moxa Technologies (support@moxa.com).
6 * Copyright (c) 2007 Jiri Slaby <jirislaby@gmail.com>
8 * This code is loosely based on the Linux serial driver, written by
9 * Linus Torvalds, Theodore T'so and others.
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
18 * MOXA Intellio Series Driver
24 #include <linux/module.h>
25 #include <linux/types.h>
27 #include <linux/ioport.h>
28 #include <linux/errno.h>
29 #include <linux/firmware.h>
30 #include <linux/signal.h>
31 #include <linux/sched.h>
32 #include <linux/timer.h>
33 #include <linux/interrupt.h>
34 #include <linux/tty.h>
35 #include <linux/tty_flip.h>
36 #include <linux/major.h>
37 #include <linux/string.h>
38 #include <linux/fcntl.h>
39 #include <linux/ptrace.h>
40 #include <linux/serial.h>
41 #include <linux/tty_driver.h>
42 #include <linux/delay.h>
43 #include <linux/pci.h>
44 #include <linux/init.h>
45 #include <linux/bitops.h>
47 #include <asm/system.h>
49 #include <asm/uaccess.h>
53 #define MOXA_VERSION "6.0k"
55 #define MOXA_FW_HDRLEN 32
59 #define MAX_BOARDS 4 /* Don't change this value */
60 #define MAX_PORTS_PER_BOARD 32 /* Don't change this value */
61 #define MAX_PORTS (MAX_BOARDS * MAX_PORTS_PER_BOARD)
63 #define MOXA_IS_320(brd) ((brd)->boardType == MOXA_BOARD_C320_ISA || \
64 (brd)->boardType == MOXA_BOARD_C320_PCI)
67 * Define the Moxa PCI vendor and device IDs.
69 #define MOXA_BUS_TYPE_ISA 0
70 #define MOXA_BUS_TYPE_PCI 1
73 MOXA_BOARD_C218_PCI
= 1,
80 static char *moxa_brdname
[] =
82 "C218 Turbo PCI series",
83 "C218 Turbo ISA series",
84 "C320 Turbo PCI series",
85 "C320 Turbo ISA series",
90 static struct pci_device_id moxa_pcibrds
[] = {
91 { PCI_DEVICE(PCI_VENDOR_ID_MOXA
, PCI_DEVICE_ID_MOXA_C218
),
92 .driver_data
= MOXA_BOARD_C218_PCI
},
93 { PCI_DEVICE(PCI_VENDOR_ID_MOXA
, PCI_DEVICE_ID_MOXA_C320
),
94 .driver_data
= MOXA_BOARD_C320_PCI
},
95 { PCI_DEVICE(PCI_VENDOR_ID_MOXA
, PCI_DEVICE_ID_MOXA_CP204J
),
96 .driver_data
= MOXA_BOARD_CP204J
},
99 MODULE_DEVICE_TABLE(pci
, moxa_pcibrds
);
100 #endif /* CONFIG_PCI */
104 static struct moxa_board_conf
{
111 struct moxa_port
*ports
;
113 void __iomem
*basemem
;
114 void __iomem
*intNdx
;
115 void __iomem
*intPend
;
116 void __iomem
*intTable
;
117 } moxa_boards
[MAX_BOARDS
];
119 struct mxser_mstatus
{
133 struct tty_port port
;
134 struct moxa_board_conf
*board
;
135 void __iomem
*tableAddr
;
139 unsigned long statusflags
;
141 u8 DCDState
; /* Protected by the port lock */
148 int rxcnt
[MAX_PORTS
];
149 int txcnt
[MAX_PORTS
];
157 #define SERIAL_DO_RESTART
159 #define WAKEUP_CHARS 256
161 static int ttymajor
= MOXAMAJOR
;
162 static struct mon_str moxaLog
;
163 static unsigned int moxaFuncTout
= HZ
/ 2;
164 static unsigned int moxaLowWaterChk
;
165 static DEFINE_MUTEX(moxa_openlock
);
166 static DEFINE_SPINLOCK(moxa_lock
);
168 static unsigned long baseaddr
[MAX_BOARDS
];
169 static unsigned int type
[MAX_BOARDS
];
170 static unsigned int numports
[MAX_BOARDS
];
172 MODULE_AUTHOR("William Chen");
173 MODULE_DESCRIPTION("MOXA Intellio Family Multiport Board Device Driver");
174 MODULE_LICENSE("GPL");
175 MODULE_FIRMWARE("c218tunx.cod");
176 MODULE_FIRMWARE("cp204unx.cod");
177 MODULE_FIRMWARE("c320tunx.cod");
179 module_param_array(type
, uint
, NULL
, 0);
180 MODULE_PARM_DESC(type
, "card type: C218=2, C320=4");
181 module_param_array(baseaddr
, ulong
, NULL
, 0);
182 MODULE_PARM_DESC(baseaddr
, "base address");
183 module_param_array(numports
, uint
, NULL
, 0);
184 MODULE_PARM_DESC(numports
, "numports (ignored for C218)");
186 module_param(ttymajor
, int, 0);
191 static int moxa_open(struct tty_struct
*, struct file
*);
192 static void moxa_close(struct tty_struct
*, struct file
*);
193 static int moxa_write(struct tty_struct
*, const unsigned char *, int);
194 static int moxa_write_room(struct tty_struct
*);
195 static void moxa_flush_buffer(struct tty_struct
*);
196 static int moxa_chars_in_buffer(struct tty_struct
*);
197 static void moxa_set_termios(struct tty_struct
*, struct ktermios
*);
198 static void moxa_stop(struct tty_struct
*);
199 static void moxa_start(struct tty_struct
*);
200 static void moxa_hangup(struct tty_struct
*);
201 static int moxa_tiocmget(struct tty_struct
*tty
, struct file
*file
);
202 static int moxa_tiocmset(struct tty_struct
*tty
, struct file
*file
,
203 unsigned int set
, unsigned int clear
);
204 static void moxa_poll(unsigned long);
205 static void moxa_set_tty_param(struct tty_struct
*, struct ktermios
*);
206 static void moxa_shutdown(struct tty_port
*);
207 static int moxa_carrier_raised(struct tty_port
*);
208 static void moxa_dtr_rts(struct tty_port
*, int);
210 * moxa board interface functions:
212 static void MoxaPortEnable(struct moxa_port
*);
213 static void MoxaPortDisable(struct moxa_port
*);
214 static int MoxaPortSetTermio(struct moxa_port
*, struct ktermios
*, speed_t
);
215 static int MoxaPortGetLineOut(struct moxa_port
*, int *, int *);
216 static void MoxaPortLineCtrl(struct moxa_port
*, int, int);
217 static void MoxaPortFlowCtrl(struct moxa_port
*, int, int, int, int, int);
218 static int MoxaPortLineStatus(struct moxa_port
*);
219 static void MoxaPortFlushData(struct moxa_port
*, int);
220 static int MoxaPortWriteData(struct tty_struct
*, const unsigned char *, int);
221 static int MoxaPortReadData(struct moxa_port
*);
222 static int MoxaPortTxQueue(struct moxa_port
*);
223 static int MoxaPortRxQueue(struct moxa_port
*);
224 static int MoxaPortTxFree(struct moxa_port
*);
225 static void MoxaPortTxDisable(struct moxa_port
*);
226 static void MoxaPortTxEnable(struct moxa_port
*);
227 static int moxa_get_serial_info(struct moxa_port
*, struct serial_struct __user
*);
228 static int moxa_set_serial_info(struct moxa_port
*, struct serial_struct __user
*);
229 static void MoxaSetFifo(struct moxa_port
*port
, int enable
);
235 static DEFINE_SPINLOCK(moxafunc_lock
);
237 static void moxa_wait_finish(void __iomem
*ofsAddr
)
239 unsigned long end
= jiffies
+ moxaFuncTout
;
241 while (readw(ofsAddr
+ FuncCode
) != 0)
242 if (time_after(jiffies
, end
))
244 if (readw(ofsAddr
+ FuncCode
) != 0 && printk_ratelimit())
245 printk(KERN_WARNING
"moxa function expired\n");
248 static void moxafunc(void __iomem
*ofsAddr
, u16 cmd
, u16 arg
)
251 spin_lock_irqsave(&moxafunc_lock
, flags
);
252 writew(arg
, ofsAddr
+ FuncArg
);
253 writew(cmd
, ofsAddr
+ FuncCode
);
254 moxa_wait_finish(ofsAddr
);
255 spin_unlock_irqrestore(&moxafunc_lock
, flags
);
258 static int moxafuncret(void __iomem
*ofsAddr
, u16 cmd
, u16 arg
)
262 spin_lock_irqsave(&moxafunc_lock
, flags
);
263 writew(arg
, ofsAddr
+ FuncArg
);
264 writew(cmd
, ofsAddr
+ FuncCode
);
265 moxa_wait_finish(ofsAddr
);
266 ret
= readw(ofsAddr
+ FuncArg
);
267 spin_unlock_irqrestore(&moxafunc_lock
, flags
);
271 static void moxa_low_water_check(void __iomem
*ofsAddr
)
273 u16 rptr
, wptr
, mask
, len
;
275 if (readb(ofsAddr
+ FlagStat
) & Xoff_state
) {
276 rptr
= readw(ofsAddr
+ RXrptr
);
277 wptr
= readw(ofsAddr
+ RXwptr
);
278 mask
= readw(ofsAddr
+ RX_mask
);
279 len
= (wptr
- rptr
) & mask
;
280 if (len
<= Low_water
)
281 moxafunc(ofsAddr
, FC_SendXon
, 0);
289 static int moxa_ioctl(struct tty_struct
*tty
, struct file
*file
,
290 unsigned int cmd
, unsigned long arg
)
292 struct moxa_port
*ch
= tty
->driver_data
;
293 void __user
*argp
= (void __user
*)arg
;
296 if (tty
->index
== MAX_PORTS
) {
297 if (cmd
!= MOXA_GETDATACOUNT
&& cmd
!= MOXA_GET_IOQUEUE
&&
298 cmd
!= MOXA_GETMSTATUS
)
304 case MOXA_GETDATACOUNT
:
305 moxaLog
.tick
= jiffies
;
306 if (copy_to_user(argp
, &moxaLog
, sizeof(moxaLog
)))
309 case MOXA_FLUSH_QUEUE
:
310 MoxaPortFlushData(ch
, arg
);
312 case MOXA_GET_IOQUEUE
: {
313 struct moxaq_str __user
*argm
= argp
;
314 struct moxaq_str tmp
;
318 for (i
= 0; i
< MAX_BOARDS
; i
++) {
319 p
= moxa_boards
[i
].ports
;
320 for (j
= 0; j
< MAX_PORTS_PER_BOARD
; j
++, p
++, argm
++) {
321 memset(&tmp
, 0, sizeof(tmp
));
322 spin_lock_bh(&moxa_lock
);
323 if (moxa_boards
[i
].ready
) {
324 tmp
.inq
= MoxaPortRxQueue(p
);
325 tmp
.outq
= MoxaPortTxQueue(p
);
327 spin_unlock_bh(&moxa_lock
);
328 if (copy_to_user(argm
, &tmp
, sizeof(tmp
)))
333 } case MOXA_GET_OQUEUE
:
334 status
= MoxaPortTxQueue(ch
);
335 ret
= put_user(status
, (unsigned long __user
*)argp
);
337 case MOXA_GET_IQUEUE
:
338 status
= MoxaPortRxQueue(ch
);
339 ret
= put_user(status
, (unsigned long __user
*)argp
);
341 case MOXA_GETMSTATUS
: {
342 struct mxser_mstatus __user
*argm
= argp
;
343 struct mxser_mstatus tmp
;
347 for (i
= 0; i
< MAX_BOARDS
; i
++) {
348 p
= moxa_boards
[i
].ports
;
349 for (j
= 0; j
< MAX_PORTS_PER_BOARD
; j
++, p
++, argm
++) {
350 struct tty_struct
*ttyp
;
351 memset(&tmp
, 0, sizeof(tmp
));
352 spin_lock_bh(&moxa_lock
);
353 if (!moxa_boards
[i
].ready
) {
354 spin_unlock_bh(&moxa_lock
);
358 status
= MoxaPortLineStatus(p
);
359 spin_unlock_bh(&moxa_lock
);
368 ttyp
= tty_port_tty_get(&p
->port
);
369 if (!ttyp
|| !ttyp
->termios
)
370 tmp
.cflag
= p
->cflag
;
372 tmp
.cflag
= ttyp
->termios
->c_cflag
;
375 if (copy_to_user(argm
, &tmp
, sizeof(tmp
)))
382 mutex_lock(&ch
->port
.mutex
);
383 ret
= moxa_get_serial_info(ch
, argp
);
384 mutex_unlock(&ch
->port
.mutex
);
387 mutex_lock(&ch
->port
.mutex
);
388 ret
= moxa_set_serial_info(ch
, argp
);
389 mutex_unlock(&ch
->port
.mutex
);
397 static int moxa_break_ctl(struct tty_struct
*tty
, int state
)
399 struct moxa_port
*port
= tty
->driver_data
;
401 moxafunc(port
->tableAddr
, state
? FC_SendBreak
: FC_StopBreak
,
406 static const struct tty_operations moxa_ops
= {
410 .write_room
= moxa_write_room
,
411 .flush_buffer
= moxa_flush_buffer
,
412 .chars_in_buffer
= moxa_chars_in_buffer
,
414 .set_termios
= moxa_set_termios
,
417 .hangup
= moxa_hangup
,
418 .break_ctl
= moxa_break_ctl
,
419 .tiocmget
= moxa_tiocmget
,
420 .tiocmset
= moxa_tiocmset
,
423 static const struct tty_port_operations moxa_port_ops
= {
424 .carrier_raised
= moxa_carrier_raised
,
425 .dtr_rts
= moxa_dtr_rts
,
426 .shutdown
= moxa_shutdown
,
429 static struct tty_driver
*moxaDriver
;
430 static DEFINE_TIMER(moxaTimer
, moxa_poll
, 0, 0);
436 static int moxa_check_fw_model(struct moxa_board_conf
*brd
, u8 model
)
438 switch (brd
->boardType
) {
439 case MOXA_BOARD_C218_ISA
:
440 case MOXA_BOARD_C218_PCI
:
444 case MOXA_BOARD_CP204J
:
458 static int moxa_check_fw(const void *ptr
)
460 const __le16
*lptr
= ptr
;
462 if (*lptr
!= cpu_to_le16(0x7980))
468 static int moxa_load_bios(struct moxa_board_conf
*brd
, const u8
*buf
,
471 void __iomem
*baseAddr
= brd
->basemem
;
474 writeb(HW_reset
, baseAddr
+ Control_reg
); /* reset */
476 memset_io(baseAddr
, 0, 4096);
477 memcpy_toio(baseAddr
, buf
, len
); /* download BIOS */
478 writeb(0, baseAddr
+ Control_reg
); /* restart */
482 switch (brd
->boardType
) {
483 case MOXA_BOARD_C218_ISA
:
484 case MOXA_BOARD_C218_PCI
:
485 tmp
= readw(baseAddr
+ C218_key
);
486 if (tmp
!= C218_KeyCode
)
489 case MOXA_BOARD_CP204J
:
490 tmp
= readw(baseAddr
+ C218_key
);
491 if (tmp
!= CP204J_KeyCode
)
495 tmp
= readw(baseAddr
+ C320_key
);
496 if (tmp
!= C320_KeyCode
)
498 tmp
= readw(baseAddr
+ C320_status
);
499 if (tmp
!= STS_init
) {
500 printk(KERN_ERR
"MOXA: bios upload failed -- CPU/Basic "
501 "module not found\n");
509 printk(KERN_ERR
"MOXA: bios upload failed -- board not found\n");
513 static int moxa_load_320b(struct moxa_board_conf
*brd
, const u8
*ptr
,
516 void __iomem
*baseAddr
= brd
->basemem
;
519 printk(KERN_ERR
"MOXA: invalid 320 bios -- too short\n");
523 writew(len
- 7168 - 2, baseAddr
+ C320bapi_len
);
524 writeb(1, baseAddr
+ Control_reg
); /* Select Page 1 */
525 memcpy_toio(baseAddr
+ DynPage_addr
, ptr
, 7168);
526 writeb(2, baseAddr
+ Control_reg
); /* Select Page 2 */
527 memcpy_toio(baseAddr
+ DynPage_addr
, ptr
+ 7168, len
- 7168);
532 static int moxa_real_load_code(struct moxa_board_conf
*brd
, const void *ptr
,
535 void __iomem
*baseAddr
= brd
->basemem
;
536 const __le16
*uptr
= ptr
;
537 size_t wlen
, len2
, j
;
538 unsigned long key
, loadbuf
, loadlen
, checksum
, checksum_ok
;
539 unsigned int i
, retry
;
542 keycode
= (brd
->boardType
== MOXA_BOARD_CP204J
) ? CP204J_KeyCode
:
545 switch (brd
->boardType
) {
546 case MOXA_BOARD_CP204J
:
547 case MOXA_BOARD_C218_ISA
:
548 case MOXA_BOARD_C218_PCI
:
550 loadbuf
= C218_LoadBuf
;
551 loadlen
= C218DLoad_len
;
552 checksum
= C218check_sum
;
553 checksum_ok
= C218chksum_ok
;
557 keycode
= C320_KeyCode
;
558 loadbuf
= C320_LoadBuf
;
559 loadlen
= C320DLoad_len
;
560 checksum
= C320check_sum
;
561 checksum_ok
= C320chksum_ok
;
567 for (i
= 0; i
< wlen
; i
++)
568 usum
+= le16_to_cpu(uptr
[i
]);
574 len2
= (wlen
> 2048) ? 2048 : wlen
;
576 memcpy_toio(baseAddr
+ loadbuf
, ptr
+ j
, len2
<< 1);
579 writew(len2
, baseAddr
+ loadlen
);
580 writew(0, baseAddr
+ key
);
581 for (i
= 0; i
< 100; i
++) {
582 if (readw(baseAddr
+ key
) == keycode
)
586 if (readw(baseAddr
+ key
) != keycode
)
589 writew(0, baseAddr
+ loadlen
);
590 writew(usum
, baseAddr
+ checksum
);
591 writew(0, baseAddr
+ key
);
592 for (i
= 0; i
< 100; i
++) {
593 if (readw(baseAddr
+ key
) == keycode
)
598 } while ((readb(baseAddr
+ checksum_ok
) != 1) && (retry
< 3));
599 if (readb(baseAddr
+ checksum_ok
) != 1)
602 writew(0, baseAddr
+ key
);
603 for (i
= 0; i
< 600; i
++) {
604 if (readw(baseAddr
+ Magic_no
) == Magic_code
)
608 if (readw(baseAddr
+ Magic_no
) != Magic_code
)
611 if (MOXA_IS_320(brd
)) {
612 if (brd
->busType
== MOXA_BUS_TYPE_PCI
) { /* ASIC board */
613 writew(0x3800, baseAddr
+ TMS320_PORT1
);
614 writew(0x3900, baseAddr
+ TMS320_PORT2
);
615 writew(28499, baseAddr
+ TMS320_CLOCK
);
617 writew(0x3200, baseAddr
+ TMS320_PORT1
);
618 writew(0x3400, baseAddr
+ TMS320_PORT2
);
619 writew(19999, baseAddr
+ TMS320_CLOCK
);
622 writew(1, baseAddr
+ Disable_IRQ
);
623 writew(0, baseAddr
+ Magic_no
);
624 for (i
= 0; i
< 500; i
++) {
625 if (readw(baseAddr
+ Magic_no
) == Magic_code
)
629 if (readw(baseAddr
+ Magic_no
) != Magic_code
)
632 if (MOXA_IS_320(brd
)) {
633 j
= readw(baseAddr
+ Module_cnt
);
636 brd
->numPorts
= j
* 8;
637 writew(j
, baseAddr
+ Module_no
);
638 writew(0, baseAddr
+ Magic_no
);
639 for (i
= 0; i
< 600; i
++) {
640 if (readw(baseAddr
+ Magic_no
) == Magic_code
)
644 if (readw(baseAddr
+ Magic_no
) != Magic_code
)
647 brd
->intNdx
= baseAddr
+ IRQindex
;
648 brd
->intPend
= baseAddr
+ IRQpending
;
649 brd
->intTable
= baseAddr
+ IRQtable
;
654 static int moxa_load_code(struct moxa_board_conf
*brd
, const void *ptr
,
657 void __iomem
*ofsAddr
, *baseAddr
= brd
->basemem
;
658 struct moxa_port
*port
;
662 printk(KERN_ERR
"MOXA: bios length is not even\n");
666 retval
= moxa_real_load_code(brd
, ptr
, len
); /* may change numPorts */
670 switch (brd
->boardType
) {
671 case MOXA_BOARD_C218_ISA
:
672 case MOXA_BOARD_C218_PCI
:
673 case MOXA_BOARD_CP204J
:
675 for (i
= 0; i
< brd
->numPorts
; i
++, port
++) {
678 port
->tableAddr
= baseAddr
+ Extern_table
+
680 ofsAddr
= port
->tableAddr
;
681 writew(C218rx_mask
, ofsAddr
+ RX_mask
);
682 writew(C218tx_mask
, ofsAddr
+ TX_mask
);
683 writew(C218rx_spage
+ i
* C218buf_pageno
, ofsAddr
+ Page_rxb
);
684 writew(readw(ofsAddr
+ Page_rxb
) + C218rx_pageno
, ofsAddr
+ EndPage_rxb
);
686 writew(C218tx_spage
+ i
* C218buf_pageno
, ofsAddr
+ Page_txb
);
687 writew(readw(ofsAddr
+ Page_txb
) + C218tx_pageno
, ofsAddr
+ EndPage_txb
);
693 for (i
= 0; i
< brd
->numPorts
; i
++, port
++) {
696 port
->tableAddr
= baseAddr
+ Extern_table
+
698 ofsAddr
= port
->tableAddr
;
699 switch (brd
->numPorts
) {
701 writew(C320p8rx_mask
, ofsAddr
+ RX_mask
);
702 writew(C320p8tx_mask
, ofsAddr
+ TX_mask
);
703 writew(C320p8rx_spage
+ i
* C320p8buf_pgno
, ofsAddr
+ Page_rxb
);
704 writew(readw(ofsAddr
+ Page_rxb
) + C320p8rx_pgno
, ofsAddr
+ EndPage_rxb
);
705 writew(C320p8tx_spage
+ i
* C320p8buf_pgno
, ofsAddr
+ Page_txb
);
706 writew(readw(ofsAddr
+ Page_txb
) + C320p8tx_pgno
, ofsAddr
+ EndPage_txb
);
710 writew(C320p16rx_mask
, ofsAddr
+ RX_mask
);
711 writew(C320p16tx_mask
, ofsAddr
+ TX_mask
);
712 writew(C320p16rx_spage
+ i
* C320p16buf_pgno
, ofsAddr
+ Page_rxb
);
713 writew(readw(ofsAddr
+ Page_rxb
) + C320p16rx_pgno
, ofsAddr
+ EndPage_rxb
);
714 writew(C320p16tx_spage
+ i
* C320p16buf_pgno
, ofsAddr
+ Page_txb
);
715 writew(readw(ofsAddr
+ Page_txb
) + C320p16tx_pgno
, ofsAddr
+ EndPage_txb
);
719 writew(C320p24rx_mask
, ofsAddr
+ RX_mask
);
720 writew(C320p24tx_mask
, ofsAddr
+ TX_mask
);
721 writew(C320p24rx_spage
+ i
* C320p24buf_pgno
, ofsAddr
+ Page_rxb
);
722 writew(readw(ofsAddr
+ Page_rxb
) + C320p24rx_pgno
, ofsAddr
+ EndPage_rxb
);
723 writew(C320p24tx_spage
+ i
* C320p24buf_pgno
, ofsAddr
+ Page_txb
);
724 writew(readw(ofsAddr
+ Page_txb
), ofsAddr
+ EndPage_txb
);
727 writew(C320p32rx_mask
, ofsAddr
+ RX_mask
);
728 writew(C320p32tx_mask
, ofsAddr
+ TX_mask
);
729 writew(C320p32tx_ofs
, ofsAddr
+ Ofs_txb
);
730 writew(C320p32rx_spage
+ i
* C320p32buf_pgno
, ofsAddr
+ Page_rxb
);
731 writew(readb(ofsAddr
+ Page_rxb
), ofsAddr
+ EndPage_rxb
);
732 writew(C320p32tx_spage
+ i
* C320p32buf_pgno
, ofsAddr
+ Page_txb
);
733 writew(readw(ofsAddr
+ Page_txb
), ofsAddr
+ EndPage_txb
);
742 static int moxa_load_fw(struct moxa_board_conf
*brd
, const struct firmware
*fw
)
744 const void *ptr
= fw
->data
;
748 unsigned int a
, lenp
, lencnt
;
751 __le32 magic
; /* 0x34303430 */
753 u8 type
; /* UNIX = 3 */
754 u8 model
; /* C218T=1, C320T=2, CP204=3 */
759 BUILD_BUG_ON(ARRAY_SIZE(hdr
->len
) != ARRAY_SIZE(lens
));
761 if (fw
->size
< MOXA_FW_HDRLEN
) {
762 strcpy(rsn
, "too short (even header won't fit)");
765 if (hdr
->magic
!= cpu_to_le32(0x30343034)) {
766 sprintf(rsn
, "bad magic: %.8x", le32_to_cpu(hdr
->magic
));
769 if (hdr
->type
!= 3) {
770 sprintf(rsn
, "not for linux, type is %u", hdr
->type
);
773 if (moxa_check_fw_model(brd
, hdr
->model
)) {
774 sprintf(rsn
, "not for this card, model is %u", hdr
->model
);
778 len
= MOXA_FW_HDRLEN
;
779 lencnt
= hdr
->model
== 2 ? 5 : 3;
780 for (a
= 0; a
< ARRAY_SIZE(lens
); a
++) {
781 lens
[a
] = le16_to_cpu(hdr
->len
[a
]);
782 if (lens
[a
] && len
+ lens
[a
] <= fw
->size
&&
783 moxa_check_fw(&fw
->data
[len
]))
784 printk(KERN_WARNING
"MOXA firmware: unexpected input "
785 "at offset %u, but going on\n", (u32
)len
);
786 if (!lens
[a
] && a
< lencnt
) {
787 sprintf(rsn
, "too few entries in fw file");
793 if (len
!= fw
->size
) {
794 sprintf(rsn
, "bad length: %u (should be %u)", (u32
)fw
->size
,
799 ptr
+= MOXA_FW_HDRLEN
;
802 strcpy(rsn
, "read above");
804 ret
= moxa_load_bios(brd
, ptr
, lens
[lenp
]);
808 /* we skip the tty section (lens[1]), since we don't need it */
809 ptr
+= lens
[lenp
] + lens
[lenp
+ 1];
810 lenp
+= 2; /* comm */
812 if (hdr
->model
== 2) {
813 ret
= moxa_load_320b(brd
, ptr
, lens
[lenp
]);
816 /* skip another tty */
817 ptr
+= lens
[lenp
] + lens
[lenp
+ 1];
821 ret
= moxa_load_code(brd
, ptr
, lens
[lenp
]);
827 printk(KERN_ERR
"firmware failed to load, reason: %s\n", rsn
);
831 static int moxa_init_board(struct moxa_board_conf
*brd
, struct device
*dev
)
833 const struct firmware
*fw
;
839 brd
->ports
= kcalloc(MAX_PORTS_PER_BOARD
, sizeof(*brd
->ports
),
841 if (brd
->ports
== NULL
) {
842 printk(KERN_ERR
"cannot allocate memory for ports\n");
847 for (i
= 0, p
= brd
->ports
; i
< MAX_PORTS_PER_BOARD
; i
++, p
++) {
848 tty_port_init(&p
->port
);
849 p
->port
.ops
= &moxa_port_ops
;
850 p
->type
= PORT_16550A
;
851 p
->cflag
= B9600
| CS8
| CREAD
| CLOCAL
| HUPCL
;
854 switch (brd
->boardType
) {
855 case MOXA_BOARD_C218_ISA
:
856 case MOXA_BOARD_C218_PCI
:
857 file
= "c218tunx.cod";
859 case MOXA_BOARD_CP204J
:
860 file
= "cp204unx.cod";
863 file
= "c320tunx.cod";
867 ret
= request_firmware(&fw
, file
, dev
);
869 printk(KERN_ERR
"MOXA: request_firmware failed. Make sure "
870 "you've placed '%s' file into your firmware "
871 "loader directory (e.g. /lib/firmware)\n",
876 ret
= moxa_load_fw(brd
, fw
);
878 release_firmware(fw
);
883 spin_lock_bh(&moxa_lock
);
885 if (!timer_pending(&moxaTimer
))
886 mod_timer(&moxaTimer
, jiffies
+ HZ
/ 50);
887 spin_unlock_bh(&moxa_lock
);
896 static void moxa_board_deinit(struct moxa_board_conf
*brd
)
898 unsigned int a
, opened
;
900 mutex_lock(&moxa_openlock
);
901 spin_lock_bh(&moxa_lock
);
903 spin_unlock_bh(&moxa_lock
);
905 /* pci hot-un-plug support */
906 for (a
= 0; a
< brd
->numPorts
; a
++)
907 if (brd
->ports
[a
].port
.flags
& ASYNC_INITIALIZED
) {
908 struct tty_struct
*tty
= tty_port_tty_get(
909 &brd
->ports
[a
].port
);
917 for (a
= 0; a
< brd
->numPorts
; a
++)
918 if (brd
->ports
[a
].port
.flags
& ASYNC_INITIALIZED
)
920 mutex_unlock(&moxa_openlock
);
924 mutex_lock(&moxa_openlock
);
927 iounmap(brd
->basemem
);
933 static int __devinit
moxa_pci_probe(struct pci_dev
*pdev
,
934 const struct pci_device_id
*ent
)
936 struct moxa_board_conf
*board
;
938 int board_type
= ent
->driver_data
;
941 retval
= pci_enable_device(pdev
);
943 dev_err(&pdev
->dev
, "can't enable pci device\n");
947 for (i
= 0; i
< MAX_BOARDS
; i
++)
948 if (moxa_boards
[i
].basemem
== NULL
)
952 if (i
>= MAX_BOARDS
) {
953 dev_warn(&pdev
->dev
, "more than %u MOXA Intellio family boards "
954 "found. Board is ignored.\n", MAX_BOARDS
);
958 board
= &moxa_boards
[i
];
960 retval
= pci_request_region(pdev
, 2, "moxa-base");
962 dev_err(&pdev
->dev
, "can't request pci region 2\n");
966 board
->basemem
= ioremap_nocache(pci_resource_start(pdev
, 2), 0x4000);
967 if (board
->basemem
== NULL
) {
968 dev_err(&pdev
->dev
, "can't remap io space 2\n");
972 board
->boardType
= board_type
;
973 switch (board_type
) {
974 case MOXA_BOARD_C218_ISA
:
975 case MOXA_BOARD_C218_PCI
:
979 case MOXA_BOARD_CP204J
:
986 board
->busType
= MOXA_BUS_TYPE_PCI
;
988 retval
= moxa_init_board(board
, &pdev
->dev
);
992 pci_set_drvdata(pdev
, board
);
994 dev_info(&pdev
->dev
, "board '%s' ready (%u ports, firmware loaded)\n",
995 moxa_brdname
[board_type
- 1], board
->numPorts
);
999 iounmap(board
->basemem
);
1000 board
->basemem
= NULL
;
1002 pci_release_region(pdev
, 2);
1007 static void __devexit
moxa_pci_remove(struct pci_dev
*pdev
)
1009 struct moxa_board_conf
*brd
= pci_get_drvdata(pdev
);
1011 moxa_board_deinit(brd
);
1013 pci_release_region(pdev
, 2);
1016 static struct pci_driver moxa_pci_driver
= {
1018 .id_table
= moxa_pcibrds
,
1019 .probe
= moxa_pci_probe
,
1020 .remove
= __devexit_p(moxa_pci_remove
)
1022 #endif /* CONFIG_PCI */
1024 static int __init
moxa_init(void)
1026 unsigned int isabrds
= 0;
1028 struct moxa_board_conf
*brd
= moxa_boards
;
1031 printk(KERN_INFO
"MOXA Intellio family driver version %s\n",
1033 moxaDriver
= alloc_tty_driver(MAX_PORTS
+ 1);
1037 moxaDriver
->owner
= THIS_MODULE
;
1038 moxaDriver
->name
= "ttyMX";
1039 moxaDriver
->major
= ttymajor
;
1040 moxaDriver
->minor_start
= 0;
1041 moxaDriver
->type
= TTY_DRIVER_TYPE_SERIAL
;
1042 moxaDriver
->subtype
= SERIAL_TYPE_NORMAL
;
1043 moxaDriver
->init_termios
= tty_std_termios
;
1044 moxaDriver
->init_termios
.c_cflag
= B9600
| CS8
| CREAD
| CLOCAL
| HUPCL
;
1045 moxaDriver
->init_termios
.c_ispeed
= 9600;
1046 moxaDriver
->init_termios
.c_ospeed
= 9600;
1047 moxaDriver
->flags
= TTY_DRIVER_REAL_RAW
;
1048 tty_set_operations(moxaDriver
, &moxa_ops
);
1050 if (tty_register_driver(moxaDriver
)) {
1051 printk(KERN_ERR
"can't register MOXA Smartio tty driver!\n");
1052 put_tty_driver(moxaDriver
);
1056 /* Find the boards defined from module args. */
1058 for (i
= 0; i
< MAX_BOARDS
; i
++) {
1061 if (type
[i
] == MOXA_BOARD_C218_ISA
||
1062 type
[i
] == MOXA_BOARD_C320_ISA
) {
1063 pr_debug("Moxa board %2d: %s board(baseAddr=%lx)\n",
1064 isabrds
+ 1, moxa_brdname
[type
[i
] - 1],
1066 brd
->boardType
= type
[i
];
1067 brd
->numPorts
= type
[i
] == MOXA_BOARD_C218_ISA
? 8 :
1069 brd
->busType
= MOXA_BUS_TYPE_ISA
;
1070 brd
->basemem
= ioremap_nocache(baseaddr
[i
], 0x4000);
1071 if (!brd
->basemem
) {
1072 printk(KERN_ERR
"MOXA: can't remap %lx\n",
1076 if (moxa_init_board(brd
, NULL
)) {
1077 iounmap(brd
->basemem
);
1078 brd
->basemem
= NULL
;
1082 printk(KERN_INFO
"MOXA isa board found at 0x%.8lu and "
1083 "ready (%u ports, firmware loaded)\n",
1084 baseaddr
[i
], brd
->numPorts
);
1092 retval
= pci_register_driver(&moxa_pci_driver
);
1094 printk(KERN_ERR
"Can't register MOXA pci driver!\n");
1103 static void __exit
moxa_exit(void)
1108 pci_unregister_driver(&moxa_pci_driver
);
1111 for (i
= 0; i
< MAX_BOARDS
; i
++) /* ISA boards */
1112 if (moxa_boards
[i
].ready
)
1113 moxa_board_deinit(&moxa_boards
[i
]);
1115 del_timer_sync(&moxaTimer
);
1117 if (tty_unregister_driver(moxaDriver
))
1118 printk(KERN_ERR
"Couldn't unregister MOXA Intellio family "
1120 put_tty_driver(moxaDriver
);
1123 module_init(moxa_init
);
1124 module_exit(moxa_exit
);
1126 static void moxa_shutdown(struct tty_port
*port
)
1128 struct moxa_port
*ch
= container_of(port
, struct moxa_port
, port
);
1129 MoxaPortDisable(ch
);
1130 MoxaPortFlushData(ch
, 2);
1131 clear_bit(ASYNCB_NORMAL_ACTIVE
, &port
->flags
);
1134 static int moxa_carrier_raised(struct tty_port
*port
)
1136 struct moxa_port
*ch
= container_of(port
, struct moxa_port
, port
);
1139 spin_lock_irq(&port
->lock
);
1141 spin_unlock_irq(&port
->lock
);
1145 static void moxa_dtr_rts(struct tty_port
*port
, int onoff
)
1147 struct moxa_port
*ch
= container_of(port
, struct moxa_port
, port
);
1148 MoxaPortLineCtrl(ch
, onoff
, onoff
);
1152 static int moxa_open(struct tty_struct
*tty
, struct file
*filp
)
1154 struct moxa_board_conf
*brd
;
1155 struct moxa_port
*ch
;
1160 if (port
== MAX_PORTS
) {
1161 return capable(CAP_SYS_ADMIN
) ? 0 : -EPERM
;
1163 if (mutex_lock_interruptible(&moxa_openlock
))
1164 return -ERESTARTSYS
;
1165 brd
= &moxa_boards
[port
/ MAX_PORTS_PER_BOARD
];
1167 mutex_unlock(&moxa_openlock
);
1171 if (port
% MAX_PORTS_PER_BOARD
>= brd
->numPorts
) {
1172 mutex_unlock(&moxa_openlock
);
1176 ch
= &brd
->ports
[port
% MAX_PORTS_PER_BOARD
];
1178 tty
->driver_data
= ch
;
1179 tty_port_tty_set(&ch
->port
, tty
);
1180 mutex_lock(&ch
->port
.mutex
);
1181 if (!(ch
->port
.flags
& ASYNC_INITIALIZED
)) {
1182 ch
->statusflags
= 0;
1183 moxa_set_tty_param(tty
, tty
->termios
);
1184 MoxaPortLineCtrl(ch
, 1, 1);
1186 MoxaSetFifo(ch
, ch
->type
== PORT_16550A
);
1187 ch
->port
.flags
|= ASYNC_INITIALIZED
;
1189 mutex_unlock(&ch
->port
.mutex
);
1190 mutex_unlock(&moxa_openlock
);
1192 retval
= tty_port_block_til_ready(&ch
->port
, tty
, filp
);
1194 set_bit(ASYNCB_NORMAL_ACTIVE
, &ch
->port
.flags
);
1198 static void moxa_close(struct tty_struct
*tty
, struct file
*filp
)
1200 struct moxa_port
*ch
= tty
->driver_data
;
1201 ch
->cflag
= tty
->termios
->c_cflag
;
1202 tty_port_close(&ch
->port
, tty
, filp
);
1205 static int moxa_write(struct tty_struct
*tty
,
1206 const unsigned char *buf
, int count
)
1208 struct moxa_port
*ch
= tty
->driver_data
;
1214 spin_lock_bh(&moxa_lock
);
1215 len
= MoxaPortWriteData(tty
, buf
, count
);
1216 spin_unlock_bh(&moxa_lock
);
1218 set_bit(LOWWAIT
, &ch
->statusflags
);
1222 static int moxa_write_room(struct tty_struct
*tty
)
1224 struct moxa_port
*ch
;
1228 ch
= tty
->driver_data
;
1231 return MoxaPortTxFree(ch
);
1234 static void moxa_flush_buffer(struct tty_struct
*tty
)
1236 struct moxa_port
*ch
= tty
->driver_data
;
1240 MoxaPortFlushData(ch
, 1);
1244 static int moxa_chars_in_buffer(struct tty_struct
*tty
)
1246 struct moxa_port
*ch
= tty
->driver_data
;
1249 chars
= MoxaPortTxQueue(ch
);
1252 * Make it possible to wakeup anything waiting for output
1253 * in tty_ioctl.c, etc.
1255 set_bit(EMPTYWAIT
, &ch
->statusflags
);
1259 static int moxa_tiocmget(struct tty_struct
*tty
, struct file
*file
)
1261 struct moxa_port
*ch
= tty
->driver_data
;
1262 int flag
= 0, dtr
, rts
;
1264 MoxaPortGetLineOut(ch
, &dtr
, &rts
);
1269 dtr
= MoxaPortLineStatus(ch
);
1279 static int moxa_tiocmset(struct tty_struct
*tty
, struct file
*file
,
1280 unsigned int set
, unsigned int clear
)
1282 struct moxa_port
*ch
;
1287 mutex_lock(&moxa_openlock
);
1288 ch
= tty
->driver_data
;
1290 mutex_unlock(&moxa_openlock
);
1294 MoxaPortGetLineOut(ch
, &dtr
, &rts
);
1295 if (set
& TIOCM_RTS
)
1297 if (set
& TIOCM_DTR
)
1299 if (clear
& TIOCM_RTS
)
1301 if (clear
& TIOCM_DTR
)
1303 MoxaPortLineCtrl(ch
, dtr
, rts
);
1304 mutex_unlock(&moxa_openlock
);
1308 static void moxa_set_termios(struct tty_struct
*tty
,
1309 struct ktermios
*old_termios
)
1311 struct moxa_port
*ch
= tty
->driver_data
;
1315 moxa_set_tty_param(tty
, old_termios
);
1316 if (!(old_termios
->c_cflag
& CLOCAL
) && C_CLOCAL(tty
))
1317 wake_up_interruptible(&ch
->port
.open_wait
);
1320 static void moxa_stop(struct tty_struct
*tty
)
1322 struct moxa_port
*ch
= tty
->driver_data
;
1326 MoxaPortTxDisable(ch
);
1327 set_bit(TXSTOPPED
, &ch
->statusflags
);
1331 static void moxa_start(struct tty_struct
*tty
)
1333 struct moxa_port
*ch
= tty
->driver_data
;
1338 if (!(ch
->statusflags
& TXSTOPPED
))
1341 MoxaPortTxEnable(ch
);
1342 clear_bit(TXSTOPPED
, &ch
->statusflags
);
1345 static void moxa_hangup(struct tty_struct
*tty
)
1347 struct moxa_port
*ch
= tty
->driver_data
;
1348 tty_port_hangup(&ch
->port
);
1351 static void moxa_new_dcdstate(struct moxa_port
*p
, u8 dcd
)
1353 struct tty_struct
*tty
;
1354 unsigned long flags
;
1357 spin_lock_irqsave(&p
->port
.lock
, flags
);
1358 if (dcd
!= p
->DCDState
) {
1360 spin_unlock_irqrestore(&p
->port
.lock
, flags
);
1361 tty
= tty_port_tty_get(&p
->port
);
1362 if (tty
&& C_CLOCAL(tty
) && !dcd
)
1367 spin_unlock_irqrestore(&p
->port
.lock
, flags
);
1370 static int moxa_poll_port(struct moxa_port
*p
, unsigned int handle
,
1373 struct tty_struct
*tty
= tty_port_tty_get(&p
->port
);
1374 void __iomem
*ofsAddr
;
1375 unsigned int inited
= p
->port
.flags
& ASYNC_INITIALIZED
;
1379 if (test_bit(EMPTYWAIT
, &p
->statusflags
) &&
1380 MoxaPortTxQueue(p
) == 0) {
1381 clear_bit(EMPTYWAIT
, &p
->statusflags
);
1384 if (test_bit(LOWWAIT
, &p
->statusflags
) && !tty
->stopped
&&
1385 MoxaPortTxQueue(p
) <= WAKEUP_CHARS
) {
1386 clear_bit(LOWWAIT
, &p
->statusflags
);
1390 if (inited
&& !test_bit(TTY_THROTTLED
, &tty
->flags
) &&
1391 MoxaPortRxQueue(p
) > 0) { /* RX */
1392 MoxaPortReadData(p
);
1393 tty_schedule_flip(tty
);
1396 clear_bit(EMPTYWAIT
, &p
->statusflags
);
1397 MoxaPortFlushData(p
, 0); /* flush RX */
1400 if (!handle
) /* nothing else to do */
1403 intr
= readw(ip
); /* port irq status */
1407 writew(0, ip
); /* ACK port */
1408 ofsAddr
= p
->tableAddr
;
1409 if (intr
& IntrTx
) /* disable tx intr */
1410 writew(readw(ofsAddr
+ HostStat
) & ~WakeupTx
,
1411 ofsAddr
+ HostStat
);
1416 if (tty
&& (intr
& IntrBreak
) && !I_IGNBRK(tty
)) { /* BREAK */
1417 tty_insert_flip_char(tty
, 0, TTY_BREAK
);
1418 tty_schedule_flip(tty
);
1421 if (intr
& IntrLine
)
1422 moxa_new_dcdstate(p
, readb(ofsAddr
+ FlagStat
) & DCD_state
);
1429 static void moxa_poll(unsigned long ignored
)
1431 struct moxa_board_conf
*brd
;
1433 unsigned int card
, port
, served
= 0;
1435 spin_lock(&moxa_lock
);
1436 for (card
= 0; card
< MAX_BOARDS
; card
++) {
1437 brd
= &moxa_boards
[card
];
1444 if (readb(brd
->intPend
) == 0xff)
1445 ip
= brd
->intTable
+ readb(brd
->intNdx
);
1447 for (port
= 0; port
< brd
->numPorts
; port
++)
1448 moxa_poll_port(&brd
->ports
[port
], !!ip
, ip
+ port
);
1451 writeb(0, brd
->intPend
); /* ACK */
1453 if (moxaLowWaterChk
) {
1454 struct moxa_port
*p
= brd
->ports
;
1455 for (port
= 0; port
< brd
->numPorts
; port
++, p
++)
1456 if (p
->lowChkFlag
) {
1458 moxa_low_water_check(p
->tableAddr
);
1462 moxaLowWaterChk
= 0;
1465 mod_timer(&moxaTimer
, jiffies
+ HZ
/ 50);
1466 spin_unlock(&moxa_lock
);
1469 /******************************************************************************/
1471 static void moxa_set_tty_param(struct tty_struct
*tty
, struct ktermios
*old_termios
)
1473 register struct ktermios
*ts
= tty
->termios
;
1474 struct moxa_port
*ch
= tty
->driver_data
;
1475 int rts
, cts
, txflow
, rxflow
, xany
, baud
;
1477 rts
= cts
= txflow
= rxflow
= xany
= 0;
1478 if (ts
->c_cflag
& CRTSCTS
)
1480 if (ts
->c_iflag
& IXON
)
1482 if (ts
->c_iflag
& IXOFF
)
1484 if (ts
->c_iflag
& IXANY
)
1487 /* Clear the features we don't support */
1488 ts
->c_cflag
&= ~CMSPAR
;
1489 MoxaPortFlowCtrl(ch
, rts
, cts
, txflow
, rxflow
, xany
);
1490 baud
= MoxaPortSetTermio(ch
, ts
, tty_get_baud_rate(tty
));
1492 baud
= tty_termios_baud_rate(old_termios
);
1493 /* Not put the baud rate into the termios data */
1494 tty_encode_baud_rate(tty
, baud
, baud
);
1497 /*****************************************************************************
1498 * Driver level functions: *
1499 *****************************************************************************/
1501 static void MoxaPortFlushData(struct moxa_port
*port
, int mode
)
1503 void __iomem
*ofsAddr
;
1504 if (mode
< 0 || mode
> 2)
1506 ofsAddr
= port
->tableAddr
;
1507 moxafunc(ofsAddr
, FC_FlushQueue
, mode
);
1509 port
->lowChkFlag
= 0;
1510 moxa_low_water_check(ofsAddr
);
1515 * Moxa Port Number Description:
1517 * MOXA serial driver supports up to 4 MOXA-C218/C320 boards. And,
1518 * the port number using in MOXA driver functions will be 0 to 31 for
1519 * first MOXA board, 32 to 63 for second, 64 to 95 for third and 96
1520 * to 127 for fourth. For example, if you setup three MOXA boards,
1521 * first board is C218, second board is C320-16 and third board is
1522 * C320-32. The port number of first board (C218 - 8 ports) is from
1523 * 0 to 7. The port number of second board (C320 - 16 ports) is form
1524 * 32 to 47. The port number of third board (C320 - 32 ports) is from
1525 * 64 to 95. And those port numbers form 8 to 31, 48 to 63 and 96 to
1526 * 127 will be invalid.
1529 * Moxa Functions Description:
1531 * Function 1: Driver initialization routine, this routine must be
1532 * called when initialized driver.
1534 * void MoxaDriverInit();
1537 * Function 2: Moxa driver private IOCTL command processing.
1539 * int MoxaDriverIoctl(unsigned int cmd, unsigned long arg, int port);
1541 * unsigned int cmd : IOCTL command
1542 * unsigned long arg : IOCTL argument
1543 * int port : port number (0 - 127)
1550 * Function 6: Enable this port to start Tx/Rx data.
1552 * void MoxaPortEnable(int port);
1553 * int port : port number (0 - 127)
1556 * Function 7: Disable this port
1558 * void MoxaPortDisable(int port);
1559 * int port : port number (0 - 127)
1562 * Function 10: Setting baud rate of this port.
1564 * speed_t MoxaPortSetBaud(int port, speed_t baud);
1565 * int port : port number (0 - 127)
1566 * long baud : baud rate (50 - 115200)
1568 * return: 0 : this port is invalid or baud < 50
1569 * 50 - 115200 : the real baud rate set to the port, if
1570 * the argument baud is large than maximun
1571 * available baud rate, the real setting
1572 * baud rate will be the maximun baud rate.
1575 * Function 12: Configure the port.
1577 * int MoxaPortSetTermio(int port, struct ktermios *termio, speed_t baud);
1578 * int port : port number (0 - 127)
1579 * struct ktermios * termio : termio structure pointer
1580 * speed_t baud : baud rate
1582 * return: -1 : this port is invalid or termio == NULL
1586 * Function 13: Get the DTR/RTS state of this port.
1588 * int MoxaPortGetLineOut(int port, int *dtrState, int *rtsState);
1589 * int port : port number (0 - 127)
1590 * int * dtrState : pointer to INT to receive the current DTR
1591 * state. (if NULL, this function will not
1592 * write to this address)
1593 * int * rtsState : pointer to INT to receive the current RTS
1594 * state. (if NULL, this function will not
1595 * write to this address)
1597 * return: -1 : this port is invalid
1601 * Function 14: Setting the DTR/RTS output state of this port.
1603 * void MoxaPortLineCtrl(int port, int dtrState, int rtsState);
1604 * int port : port number (0 - 127)
1605 * int dtrState : DTR output state (0: off, 1: on)
1606 * int rtsState : RTS output state (0: off, 1: on)
1609 * Function 15: Setting the flow control of this port.
1611 * void MoxaPortFlowCtrl(int port, int rtsFlow, int ctsFlow, int rxFlow,
1612 * int txFlow,int xany);
1613 * int port : port number (0 - 127)
1614 * int rtsFlow : H/W RTS flow control (0: no, 1: yes)
1615 * int ctsFlow : H/W CTS flow control (0: no, 1: yes)
1616 * int rxFlow : S/W Rx XON/XOFF flow control (0: no, 1: yes)
1617 * int txFlow : S/W Tx XON/XOFF flow control (0: no, 1: yes)
1618 * int xany : S/W XANY flow control (0: no, 1: yes)
1621 * Function 16: Get ths line status of this port
1623 * int MoxaPortLineStatus(int port);
1624 * int port : port number (0 - 127)
1626 * return: Bit 0 - CTS state (0: off, 1: on)
1627 * Bit 1 - DSR state (0: off, 1: on)
1628 * Bit 2 - DCD state (0: off, 1: on)
1631 * Function 19: Flush the Rx/Tx buffer data of this port.
1633 * void MoxaPortFlushData(int port, int mode);
1634 * int port : port number (0 - 127)
1636 * 0 : flush the Rx buffer
1637 * 1 : flush the Tx buffer
1638 * 2 : flush the Rx and Tx buffer
1641 * Function 20: Write data.
1643 * int MoxaPortWriteData(int port, unsigned char * buffer, int length);
1644 * int port : port number (0 - 127)
1645 * unsigned char * buffer : pointer to write data buffer.
1646 * int length : write data length
1648 * return: 0 - length : real write data length
1651 * Function 21: Read data.
1653 * int MoxaPortReadData(int port, struct tty_struct *tty);
1654 * int port : port number (0 - 127)
1655 * struct tty_struct *tty : tty for data
1657 * return: 0 - length : real read data length
1660 * Function 24: Get the Tx buffer current queued data bytes
1662 * int MoxaPortTxQueue(int port);
1663 * int port : port number (0 - 127)
1665 * return: .. : Tx buffer current queued data bytes
1668 * Function 25: Get the Tx buffer current free space
1670 * int MoxaPortTxFree(int port);
1671 * int port : port number (0 - 127)
1673 * return: .. : Tx buffer current free space
1676 * Function 26: Get the Rx buffer current queued data bytes
1678 * int MoxaPortRxQueue(int port);
1679 * int port : port number (0 - 127)
1681 * return: .. : Rx buffer current queued data bytes
1684 * Function 28: Disable port data transmission.
1686 * void MoxaPortTxDisable(int port);
1687 * int port : port number (0 - 127)
1690 * Function 29: Enable port data transmission.
1692 * void MoxaPortTxEnable(int port);
1693 * int port : port number (0 - 127)
1696 * Function 31: Get the received BREAK signal count and reset it.
1698 * int MoxaPortResetBrkCnt(int port);
1699 * int port : port number (0 - 127)
1701 * return: 0 - .. : BREAK signal count
1706 static void MoxaPortEnable(struct moxa_port
*port
)
1708 void __iomem
*ofsAddr
;
1711 ofsAddr
= port
->tableAddr
;
1712 writew(lowwater
, ofsAddr
+ Low_water
);
1713 if (MOXA_IS_320(port
->board
))
1714 moxafunc(ofsAddr
, FC_SetBreakIrq
, 0);
1716 writew(readw(ofsAddr
+ HostStat
) | WakeupBreak
,
1717 ofsAddr
+ HostStat
);
1719 moxafunc(ofsAddr
, FC_SetLineIrq
, Magic_code
);
1720 moxafunc(ofsAddr
, FC_FlushQueue
, 2);
1722 moxafunc(ofsAddr
, FC_EnableCH
, Magic_code
);
1723 MoxaPortLineStatus(port
);
1726 static void MoxaPortDisable(struct moxa_port
*port
)
1728 void __iomem
*ofsAddr
= port
->tableAddr
;
1730 moxafunc(ofsAddr
, FC_SetFlowCtl
, 0); /* disable flow control */
1731 moxafunc(ofsAddr
, FC_ClrLineIrq
, Magic_code
);
1732 writew(0, ofsAddr
+ HostStat
);
1733 moxafunc(ofsAddr
, FC_DisableCH
, Magic_code
);
1736 static speed_t
MoxaPortSetBaud(struct moxa_port
*port
, speed_t baud
)
1738 void __iomem
*ofsAddr
= port
->tableAddr
;
1739 unsigned int clock
, val
;
1742 max
= MOXA_IS_320(port
->board
) ? 460800 : 921600;
1749 moxafunc(ofsAddr
, FC_SetBaud
, val
);
1754 static int MoxaPortSetTermio(struct moxa_port
*port
, struct ktermios
*termio
,
1757 void __iomem
*ofsAddr
;
1761 ofsAddr
= port
->tableAddr
;
1762 cflag
= termio
->c_cflag
; /* termio->c_cflag */
1764 mode
= termio
->c_cflag
& CSIZE
;
1767 else if (mode
== CS6
)
1769 else if (mode
== CS7
)
1771 else if (mode
== CS8
)
1774 if (termio
->c_cflag
& CSTOPB
) {
1782 if (termio
->c_cflag
& PARENB
) {
1783 if (termio
->c_cflag
& PARODD
)
1790 moxafunc(ofsAddr
, FC_SetDataMode
, (u16
)mode
);
1792 if (MOXA_IS_320(port
->board
) && baud
>= 921600)
1795 baud
= MoxaPortSetBaud(port
, baud
);
1797 if (termio
->c_iflag
& (IXON
| IXOFF
| IXANY
)) {
1798 spin_lock_irq(&moxafunc_lock
);
1799 writeb(termio
->c_cc
[VSTART
], ofsAddr
+ FuncArg
);
1800 writeb(termio
->c_cc
[VSTOP
], ofsAddr
+ FuncArg1
);
1801 writeb(FC_SetXonXoff
, ofsAddr
+ FuncCode
);
1802 moxa_wait_finish(ofsAddr
);
1803 spin_unlock_irq(&moxafunc_lock
);
1809 static int MoxaPortGetLineOut(struct moxa_port
*port
, int *dtrState
,
1813 *dtrState
= !!(port
->lineCtrl
& DTR_ON
);
1815 *rtsState
= !!(port
->lineCtrl
& RTS_ON
);
1820 static void MoxaPortLineCtrl(struct moxa_port
*port
, int dtr
, int rts
)
1828 port
->lineCtrl
= mode
;
1829 moxafunc(port
->tableAddr
, FC_LineControl
, mode
);
1832 static void MoxaPortFlowCtrl(struct moxa_port
*port
, int rts
, int cts
,
1833 int txflow
, int rxflow
, int txany
)
1838 mode
|= RTS_FlowCtl
;
1840 mode
|= CTS_FlowCtl
;
1847 moxafunc(port
->tableAddr
, FC_SetFlowCtl
, mode
);
1850 static int MoxaPortLineStatus(struct moxa_port
*port
)
1852 void __iomem
*ofsAddr
;
1855 ofsAddr
= port
->tableAddr
;
1856 if (MOXA_IS_320(port
->board
))
1857 val
= moxafuncret(ofsAddr
, FC_LineStatus
, 0);
1859 val
= readw(ofsAddr
+ FlagStat
) >> 4;
1863 moxa_new_dcdstate(port
, val
& 8);
1868 static int MoxaPortWriteData(struct tty_struct
*tty
,
1869 const unsigned char *buffer
, int len
)
1871 struct moxa_port
*port
= tty
->driver_data
;
1872 void __iomem
*baseAddr
, *ofsAddr
, *ofs
;
1873 unsigned int c
, total
;
1874 u16 head
, tail
, tx_mask
, spage
, epage
;
1875 u16 pageno
, pageofs
, bufhead
;
1877 ofsAddr
= port
->tableAddr
;
1878 baseAddr
= port
->board
->basemem
;
1879 tx_mask
= readw(ofsAddr
+ TX_mask
);
1880 spage
= readw(ofsAddr
+ Page_txb
);
1881 epage
= readw(ofsAddr
+ EndPage_txb
);
1882 tail
= readw(ofsAddr
+ TXwptr
);
1883 head
= readw(ofsAddr
+ TXrptr
);
1884 c
= (head
> tail
) ? (head
- tail
- 1) : (head
- tail
+ tx_mask
);
1887 moxaLog
.txcnt
[port
->port
.tty
->index
] += c
;
1889 if (spage
== epage
) {
1890 bufhead
= readw(ofsAddr
+ Ofs_txb
);
1891 writew(spage
, baseAddr
+ Control_reg
);
1894 len
= head
- tail
- 1;
1896 len
= tx_mask
+ 1 - tail
;
1897 len
= (c
> len
) ? len
: c
;
1898 ofs
= baseAddr
+ DynPage_addr
+ bufhead
+ tail
;
1899 memcpy_toio(ofs
, buffer
, len
);
1901 tail
= (tail
+ len
) & tx_mask
;
1905 pageno
= spage
+ (tail
>> 13);
1906 pageofs
= tail
& Page_mask
;
1908 len
= Page_size
- pageofs
;
1911 writeb(pageno
, baseAddr
+ Control_reg
);
1912 ofs
= baseAddr
+ DynPage_addr
+ pageofs
;
1913 memcpy_toio(ofs
, buffer
, len
);
1915 if (++pageno
== epage
)
1920 tail
= (tail
+ total
) & tx_mask
;
1922 writew(tail
, ofsAddr
+ TXwptr
);
1923 writeb(1, ofsAddr
+ CD180TXirq
); /* start to send */
1927 static int MoxaPortReadData(struct moxa_port
*port
)
1929 struct tty_struct
*tty
= port
->port
.tty
;
1931 void __iomem
*baseAddr
, *ofsAddr
, *ofs
;
1932 unsigned int count
, len
, total
;
1933 u16 tail
, rx_mask
, spage
, epage
;
1934 u16 pageno
, pageofs
, bufhead
, head
;
1936 ofsAddr
= port
->tableAddr
;
1937 baseAddr
= port
->board
->basemem
;
1938 head
= readw(ofsAddr
+ RXrptr
);
1939 tail
= readw(ofsAddr
+ RXwptr
);
1940 rx_mask
= readw(ofsAddr
+ RX_mask
);
1941 spage
= readw(ofsAddr
+ Page_rxb
);
1942 epage
= readw(ofsAddr
+ EndPage_rxb
);
1943 count
= (tail
>= head
) ? (tail
- head
) : (tail
- head
+ rx_mask
+ 1);
1948 moxaLog
.rxcnt
[tty
->index
] += total
;
1949 if (spage
== epage
) {
1950 bufhead
= readw(ofsAddr
+ Ofs_rxb
);
1951 writew(spage
, baseAddr
+ Control_reg
);
1953 ofs
= baseAddr
+ DynPage_addr
+ bufhead
+ head
;
1954 len
= (tail
>= head
) ? (tail
- head
) :
1955 (rx_mask
+ 1 - head
);
1956 len
= tty_prepare_flip_string(tty
, &dst
,
1958 memcpy_fromio(dst
, ofs
, len
);
1959 head
= (head
+ len
) & rx_mask
;
1963 pageno
= spage
+ (head
>> 13);
1964 pageofs
= head
& Page_mask
;
1966 writew(pageno
, baseAddr
+ Control_reg
);
1967 ofs
= baseAddr
+ DynPage_addr
+ pageofs
;
1968 len
= tty_prepare_flip_string(tty
, &dst
,
1969 min(Page_size
- pageofs
, count
));
1970 memcpy_fromio(dst
, ofs
, len
);
1973 pageofs
= (pageofs
+ len
) & Page_mask
;
1974 if (pageofs
== 0 && ++pageno
== epage
)
1977 head
= (head
+ total
) & rx_mask
;
1979 writew(head
, ofsAddr
+ RXrptr
);
1980 if (readb(ofsAddr
+ FlagStat
) & Xoff_state
) {
1981 moxaLowWaterChk
= 1;
1982 port
->lowChkFlag
= 1;
1988 static int MoxaPortTxQueue(struct moxa_port
*port
)
1990 void __iomem
*ofsAddr
= port
->tableAddr
;
1991 u16 rptr
, wptr
, mask
;
1993 rptr
= readw(ofsAddr
+ TXrptr
);
1994 wptr
= readw(ofsAddr
+ TXwptr
);
1995 mask
= readw(ofsAddr
+ TX_mask
);
1996 return (wptr
- rptr
) & mask
;
1999 static int MoxaPortTxFree(struct moxa_port
*port
)
2001 void __iomem
*ofsAddr
= port
->tableAddr
;
2002 u16 rptr
, wptr
, mask
;
2004 rptr
= readw(ofsAddr
+ TXrptr
);
2005 wptr
= readw(ofsAddr
+ TXwptr
);
2006 mask
= readw(ofsAddr
+ TX_mask
);
2007 return mask
- ((wptr
- rptr
) & mask
);
2010 static int MoxaPortRxQueue(struct moxa_port
*port
)
2012 void __iomem
*ofsAddr
= port
->tableAddr
;
2013 u16 rptr
, wptr
, mask
;
2015 rptr
= readw(ofsAddr
+ RXrptr
);
2016 wptr
= readw(ofsAddr
+ RXwptr
);
2017 mask
= readw(ofsAddr
+ RX_mask
);
2018 return (wptr
- rptr
) & mask
;
2021 static void MoxaPortTxDisable(struct moxa_port
*port
)
2023 moxafunc(port
->tableAddr
, FC_SetXoffState
, Magic_code
);
2026 static void MoxaPortTxEnable(struct moxa_port
*port
)
2028 moxafunc(port
->tableAddr
, FC_SetXonState
, Magic_code
);
2031 static int moxa_get_serial_info(struct moxa_port
*info
,
2032 struct serial_struct __user
*retinfo
)
2034 struct serial_struct tmp
= {
2036 .line
= info
->port
.tty
->index
,
2037 .flags
= info
->port
.flags
,
2038 .baud_base
= 921600,
2039 .close_delay
= info
->port
.close_delay
2041 return copy_to_user(retinfo
, &tmp
, sizeof(*retinfo
)) ? -EFAULT
: 0;
2045 static int moxa_set_serial_info(struct moxa_port
*info
,
2046 struct serial_struct __user
*new_info
)
2048 struct serial_struct new_serial
;
2050 if (copy_from_user(&new_serial
, new_info
, sizeof(new_serial
)))
2053 if (new_serial
.irq
!= 0 || new_serial
.port
!= 0 ||
2054 new_serial
.custom_divisor
!= 0 ||
2055 new_serial
.baud_base
!= 921600)
2058 if (!capable(CAP_SYS_ADMIN
)) {
2059 if (((new_serial
.flags
& ~ASYNC_USR_MASK
) !=
2060 (info
->port
.flags
& ~ASYNC_USR_MASK
)))
2063 info
->port
.close_delay
= new_serial
.close_delay
* HZ
/ 100;
2065 new_serial
.flags
= (new_serial
.flags
& ~ASYNC_FLAGS
);
2066 new_serial
.flags
|= (info
->port
.flags
& ASYNC_FLAGS
);
2068 MoxaSetFifo(info
, new_serial
.type
== PORT_16550A
);
2070 info
->type
= new_serial
.type
;
2076 /*****************************************************************************
2077 * Static local functions: *
2078 *****************************************************************************/
2080 static void MoxaSetFifo(struct moxa_port
*port
, int enable
)
2082 void __iomem
*ofsAddr
= port
->tableAddr
;
2085 moxafunc(ofsAddr
, FC_SetRxFIFOTrig
, 0);
2086 moxafunc(ofsAddr
, FC_SetTxFIFOCnt
, 1);
2088 moxafunc(ofsAddr
, FC_SetRxFIFOTrig
, 3);
2089 moxafunc(ofsAddr
, FC_SetTxFIFOCnt
, 16);