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");
176 module_param_array(type
, uint
, NULL
, 0);
177 MODULE_PARM_DESC(type
, "card type: C218=2, C320=4");
178 module_param_array(baseaddr
, ulong
, NULL
, 0);
179 MODULE_PARM_DESC(baseaddr
, "base address");
180 module_param_array(numports
, uint
, NULL
, 0);
181 MODULE_PARM_DESC(numports
, "numports (ignored for C218)");
183 module_param(ttymajor
, int, 0);
188 static int moxa_open(struct tty_struct
*, struct file
*);
189 static void moxa_close(struct tty_struct
*, struct file
*);
190 static int moxa_write(struct tty_struct
*, const unsigned char *, int);
191 static int moxa_write_room(struct tty_struct
*);
192 static void moxa_flush_buffer(struct tty_struct
*);
193 static int moxa_chars_in_buffer(struct tty_struct
*);
194 static void moxa_set_termios(struct tty_struct
*, struct ktermios
*);
195 static void moxa_stop(struct tty_struct
*);
196 static void moxa_start(struct tty_struct
*);
197 static void moxa_hangup(struct tty_struct
*);
198 static int moxa_tiocmget(struct tty_struct
*tty
, struct file
*file
);
199 static int moxa_tiocmset(struct tty_struct
*tty
, struct file
*file
,
200 unsigned int set
, unsigned int clear
);
201 static void moxa_poll(unsigned long);
202 static void moxa_set_tty_param(struct tty_struct
*, struct ktermios
*);
203 static void moxa_shutdown(struct tty_port
*);
204 static int moxa_carrier_raised(struct tty_port
*);
205 static void moxa_dtr_rts(struct tty_port
*, int);
207 * moxa board interface functions:
209 static void MoxaPortEnable(struct moxa_port
*);
210 static void MoxaPortDisable(struct moxa_port
*);
211 static int MoxaPortSetTermio(struct moxa_port
*, struct ktermios
*, speed_t
);
212 static int MoxaPortGetLineOut(struct moxa_port
*, int *, int *);
213 static void MoxaPortLineCtrl(struct moxa_port
*, int, int);
214 static void MoxaPortFlowCtrl(struct moxa_port
*, int, int, int, int, int);
215 static int MoxaPortLineStatus(struct moxa_port
*);
216 static void MoxaPortFlushData(struct moxa_port
*, int);
217 static int MoxaPortWriteData(struct tty_struct
*, const unsigned char *, int);
218 static int MoxaPortReadData(struct moxa_port
*);
219 static int MoxaPortTxQueue(struct moxa_port
*);
220 static int MoxaPortRxQueue(struct moxa_port
*);
221 static int MoxaPortTxFree(struct moxa_port
*);
222 static void MoxaPortTxDisable(struct moxa_port
*);
223 static void MoxaPortTxEnable(struct moxa_port
*);
224 static int moxa_get_serial_info(struct moxa_port
*, struct serial_struct __user
*);
225 static int moxa_set_serial_info(struct moxa_port
*, struct serial_struct __user
*);
226 static void MoxaSetFifo(struct moxa_port
*port
, int enable
);
232 static DEFINE_SPINLOCK(moxafunc_lock
);
234 static void moxa_wait_finish(void __iomem
*ofsAddr
)
236 unsigned long end
= jiffies
+ moxaFuncTout
;
238 while (readw(ofsAddr
+ FuncCode
) != 0)
239 if (time_after(jiffies
, end
))
241 if (readw(ofsAddr
+ FuncCode
) != 0 && printk_ratelimit())
242 printk(KERN_WARNING
"moxa function expired\n");
245 static void moxafunc(void __iomem
*ofsAddr
, u16 cmd
, u16 arg
)
248 spin_lock_irqsave(&moxafunc_lock
, flags
);
249 writew(arg
, ofsAddr
+ FuncArg
);
250 writew(cmd
, ofsAddr
+ FuncCode
);
251 moxa_wait_finish(ofsAddr
);
252 spin_unlock_irqrestore(&moxafunc_lock
, flags
);
255 static int moxafuncret(void __iomem
*ofsAddr
, u16 cmd
, u16 arg
)
259 spin_lock_irqsave(&moxafunc_lock
, flags
);
260 writew(arg
, ofsAddr
+ FuncArg
);
261 writew(cmd
, ofsAddr
+ FuncCode
);
262 moxa_wait_finish(ofsAddr
);
263 ret
= readw(ofsAddr
+ FuncArg
);
264 spin_unlock_irqrestore(&moxafunc_lock
, flags
);
268 static void moxa_low_water_check(void __iomem
*ofsAddr
)
270 u16 rptr
, wptr
, mask
, len
;
272 if (readb(ofsAddr
+ FlagStat
) & Xoff_state
) {
273 rptr
= readw(ofsAddr
+ RXrptr
);
274 wptr
= readw(ofsAddr
+ RXwptr
);
275 mask
= readw(ofsAddr
+ RX_mask
);
276 len
= (wptr
- rptr
) & mask
;
277 if (len
<= Low_water
)
278 moxafunc(ofsAddr
, FC_SendXon
, 0);
286 static int moxa_ioctl(struct tty_struct
*tty
, struct file
*file
,
287 unsigned int cmd
, unsigned long arg
)
289 struct moxa_port
*ch
= tty
->driver_data
;
290 void __user
*argp
= (void __user
*)arg
;
293 if (tty
->index
== MAX_PORTS
) {
294 if (cmd
!= MOXA_GETDATACOUNT
&& cmd
!= MOXA_GET_IOQUEUE
&&
295 cmd
!= MOXA_GETMSTATUS
)
301 case MOXA_GETDATACOUNT
:
302 moxaLog
.tick
= jiffies
;
303 if (copy_to_user(argp
, &moxaLog
, sizeof(moxaLog
)))
306 case MOXA_FLUSH_QUEUE
:
307 MoxaPortFlushData(ch
, arg
);
309 case MOXA_GET_IOQUEUE
: {
310 struct moxaq_str __user
*argm
= argp
;
311 struct moxaq_str tmp
;
315 for (i
= 0; i
< MAX_BOARDS
; i
++) {
316 p
= moxa_boards
[i
].ports
;
317 for (j
= 0; j
< MAX_PORTS_PER_BOARD
; j
++, p
++, argm
++) {
318 memset(&tmp
, 0, sizeof(tmp
));
319 spin_lock_bh(&moxa_lock
);
320 if (moxa_boards
[i
].ready
) {
321 tmp
.inq
= MoxaPortRxQueue(p
);
322 tmp
.outq
= MoxaPortTxQueue(p
);
324 spin_unlock_bh(&moxa_lock
);
325 if (copy_to_user(argm
, &tmp
, sizeof(tmp
)))
330 } case MOXA_GET_OQUEUE
:
331 status
= MoxaPortTxQueue(ch
);
332 ret
= put_user(status
, (unsigned long __user
*)argp
);
334 case MOXA_GET_IQUEUE
:
335 status
= MoxaPortRxQueue(ch
);
336 ret
= put_user(status
, (unsigned long __user
*)argp
);
338 case MOXA_GETMSTATUS
: {
339 struct mxser_mstatus __user
*argm
= argp
;
340 struct mxser_mstatus tmp
;
344 for (i
= 0; i
< MAX_BOARDS
; i
++) {
345 p
= moxa_boards
[i
].ports
;
346 for (j
= 0; j
< MAX_PORTS_PER_BOARD
; j
++, p
++, argm
++) {
347 struct tty_struct
*ttyp
;
348 memset(&tmp
, 0, sizeof(tmp
));
349 spin_lock_bh(&moxa_lock
);
350 if (!moxa_boards
[i
].ready
) {
351 spin_unlock_bh(&moxa_lock
);
355 status
= MoxaPortLineStatus(p
);
356 spin_unlock_bh(&moxa_lock
);
365 ttyp
= tty_port_tty_get(&p
->port
);
366 if (!ttyp
|| !ttyp
->termios
)
367 tmp
.cflag
= p
->cflag
;
369 tmp
.cflag
= ttyp
->termios
->c_cflag
;
372 if (copy_to_user(argm
, &tmp
, sizeof(tmp
)))
379 mutex_lock(&ch
->port
.mutex
);
380 ret
= moxa_get_serial_info(ch
, argp
);
381 mutex_unlock(&ch
->port
.mutex
);
384 mutex_lock(&ch
->port
.mutex
);
385 ret
= moxa_set_serial_info(ch
, argp
);
386 mutex_unlock(&ch
->port
.mutex
);
394 static int moxa_break_ctl(struct tty_struct
*tty
, int state
)
396 struct moxa_port
*port
= tty
->driver_data
;
398 moxafunc(port
->tableAddr
, state
? FC_SendBreak
: FC_StopBreak
,
403 static const struct tty_operations moxa_ops
= {
407 .write_room
= moxa_write_room
,
408 .flush_buffer
= moxa_flush_buffer
,
409 .chars_in_buffer
= moxa_chars_in_buffer
,
411 .set_termios
= moxa_set_termios
,
414 .hangup
= moxa_hangup
,
415 .break_ctl
= moxa_break_ctl
,
416 .tiocmget
= moxa_tiocmget
,
417 .tiocmset
= moxa_tiocmset
,
420 static const struct tty_port_operations moxa_port_ops
= {
421 .carrier_raised
= moxa_carrier_raised
,
422 .dtr_rts
= moxa_dtr_rts
,
423 .shutdown
= moxa_shutdown
,
426 static struct tty_driver
*moxaDriver
;
427 static DEFINE_TIMER(moxaTimer
, moxa_poll
, 0, 0);
433 static int moxa_check_fw_model(struct moxa_board_conf
*brd
, u8 model
)
435 switch (brd
->boardType
) {
436 case MOXA_BOARD_C218_ISA
:
437 case MOXA_BOARD_C218_PCI
:
441 case MOXA_BOARD_CP204J
:
455 static int moxa_check_fw(const void *ptr
)
457 const __le16
*lptr
= ptr
;
459 if (*lptr
!= cpu_to_le16(0x7980))
465 static int moxa_load_bios(struct moxa_board_conf
*brd
, const u8
*buf
,
468 void __iomem
*baseAddr
= brd
->basemem
;
471 writeb(HW_reset
, baseAddr
+ Control_reg
); /* reset */
473 memset_io(baseAddr
, 0, 4096);
474 memcpy_toio(baseAddr
, buf
, len
); /* download BIOS */
475 writeb(0, baseAddr
+ Control_reg
); /* restart */
479 switch (brd
->boardType
) {
480 case MOXA_BOARD_C218_ISA
:
481 case MOXA_BOARD_C218_PCI
:
482 tmp
= readw(baseAddr
+ C218_key
);
483 if (tmp
!= C218_KeyCode
)
486 case MOXA_BOARD_CP204J
:
487 tmp
= readw(baseAddr
+ C218_key
);
488 if (tmp
!= CP204J_KeyCode
)
492 tmp
= readw(baseAddr
+ C320_key
);
493 if (tmp
!= C320_KeyCode
)
495 tmp
= readw(baseAddr
+ C320_status
);
496 if (tmp
!= STS_init
) {
497 printk(KERN_ERR
"MOXA: bios upload failed -- CPU/Basic "
498 "module not found\n");
506 printk(KERN_ERR
"MOXA: bios upload failed -- board not found\n");
510 static int moxa_load_320b(struct moxa_board_conf
*brd
, const u8
*ptr
,
513 void __iomem
*baseAddr
= brd
->basemem
;
516 printk(KERN_ERR
"MOXA: invalid 320 bios -- too short\n");
520 writew(len
- 7168 - 2, baseAddr
+ C320bapi_len
);
521 writeb(1, baseAddr
+ Control_reg
); /* Select Page 1 */
522 memcpy_toio(baseAddr
+ DynPage_addr
, ptr
, 7168);
523 writeb(2, baseAddr
+ Control_reg
); /* Select Page 2 */
524 memcpy_toio(baseAddr
+ DynPage_addr
, ptr
+ 7168, len
- 7168);
529 static int moxa_real_load_code(struct moxa_board_conf
*brd
, const void *ptr
,
532 void __iomem
*baseAddr
= brd
->basemem
;
533 const __le16
*uptr
= ptr
;
534 size_t wlen
, len2
, j
;
535 unsigned long key
, loadbuf
, loadlen
, checksum
, checksum_ok
;
536 unsigned int i
, retry
;
539 keycode
= (brd
->boardType
== MOXA_BOARD_CP204J
) ? CP204J_KeyCode
:
542 switch (brd
->boardType
) {
543 case MOXA_BOARD_CP204J
:
544 case MOXA_BOARD_C218_ISA
:
545 case MOXA_BOARD_C218_PCI
:
547 loadbuf
= C218_LoadBuf
;
548 loadlen
= C218DLoad_len
;
549 checksum
= C218check_sum
;
550 checksum_ok
= C218chksum_ok
;
554 keycode
= C320_KeyCode
;
555 loadbuf
= C320_LoadBuf
;
556 loadlen
= C320DLoad_len
;
557 checksum
= C320check_sum
;
558 checksum_ok
= C320chksum_ok
;
564 for (i
= 0; i
< wlen
; i
++)
565 usum
+= le16_to_cpu(uptr
[i
]);
571 len2
= (wlen
> 2048) ? 2048 : wlen
;
573 memcpy_toio(baseAddr
+ loadbuf
, ptr
+ j
, len2
<< 1);
576 writew(len2
, baseAddr
+ loadlen
);
577 writew(0, baseAddr
+ key
);
578 for (i
= 0; i
< 100; i
++) {
579 if (readw(baseAddr
+ key
) == keycode
)
583 if (readw(baseAddr
+ key
) != keycode
)
586 writew(0, baseAddr
+ loadlen
);
587 writew(usum
, baseAddr
+ checksum
);
588 writew(0, baseAddr
+ key
);
589 for (i
= 0; i
< 100; i
++) {
590 if (readw(baseAddr
+ key
) == keycode
)
595 } while ((readb(baseAddr
+ checksum_ok
) != 1) && (retry
< 3));
596 if (readb(baseAddr
+ checksum_ok
) != 1)
599 writew(0, baseAddr
+ key
);
600 for (i
= 0; i
< 600; i
++) {
601 if (readw(baseAddr
+ Magic_no
) == Magic_code
)
605 if (readw(baseAddr
+ Magic_no
) != Magic_code
)
608 if (MOXA_IS_320(brd
)) {
609 if (brd
->busType
== MOXA_BUS_TYPE_PCI
) { /* ASIC board */
610 writew(0x3800, baseAddr
+ TMS320_PORT1
);
611 writew(0x3900, baseAddr
+ TMS320_PORT2
);
612 writew(28499, baseAddr
+ TMS320_CLOCK
);
614 writew(0x3200, baseAddr
+ TMS320_PORT1
);
615 writew(0x3400, baseAddr
+ TMS320_PORT2
);
616 writew(19999, baseAddr
+ TMS320_CLOCK
);
619 writew(1, baseAddr
+ Disable_IRQ
);
620 writew(0, baseAddr
+ Magic_no
);
621 for (i
= 0; i
< 500; i
++) {
622 if (readw(baseAddr
+ Magic_no
) == Magic_code
)
626 if (readw(baseAddr
+ Magic_no
) != Magic_code
)
629 if (MOXA_IS_320(brd
)) {
630 j
= readw(baseAddr
+ Module_cnt
);
633 brd
->numPorts
= j
* 8;
634 writew(j
, baseAddr
+ Module_no
);
635 writew(0, baseAddr
+ Magic_no
);
636 for (i
= 0; i
< 600; i
++) {
637 if (readw(baseAddr
+ Magic_no
) == Magic_code
)
641 if (readw(baseAddr
+ Magic_no
) != Magic_code
)
644 brd
->intNdx
= baseAddr
+ IRQindex
;
645 brd
->intPend
= baseAddr
+ IRQpending
;
646 brd
->intTable
= baseAddr
+ IRQtable
;
651 static int moxa_load_code(struct moxa_board_conf
*brd
, const void *ptr
,
654 void __iomem
*ofsAddr
, *baseAddr
= brd
->basemem
;
655 struct moxa_port
*port
;
659 printk(KERN_ERR
"MOXA: bios length is not even\n");
663 retval
= moxa_real_load_code(brd
, ptr
, len
); /* may change numPorts */
667 switch (brd
->boardType
) {
668 case MOXA_BOARD_C218_ISA
:
669 case MOXA_BOARD_C218_PCI
:
670 case MOXA_BOARD_CP204J
:
672 for (i
= 0; i
< brd
->numPorts
; i
++, port
++) {
675 port
->tableAddr
= baseAddr
+ Extern_table
+
677 ofsAddr
= port
->tableAddr
;
678 writew(C218rx_mask
, ofsAddr
+ RX_mask
);
679 writew(C218tx_mask
, ofsAddr
+ TX_mask
);
680 writew(C218rx_spage
+ i
* C218buf_pageno
, ofsAddr
+ Page_rxb
);
681 writew(readw(ofsAddr
+ Page_rxb
) + C218rx_pageno
, ofsAddr
+ EndPage_rxb
);
683 writew(C218tx_spage
+ i
* C218buf_pageno
, ofsAddr
+ Page_txb
);
684 writew(readw(ofsAddr
+ Page_txb
) + C218tx_pageno
, ofsAddr
+ EndPage_txb
);
690 for (i
= 0; i
< brd
->numPorts
; i
++, port
++) {
693 port
->tableAddr
= baseAddr
+ Extern_table
+
695 ofsAddr
= port
->tableAddr
;
696 switch (brd
->numPorts
) {
698 writew(C320p8rx_mask
, ofsAddr
+ RX_mask
);
699 writew(C320p8tx_mask
, ofsAddr
+ TX_mask
);
700 writew(C320p8rx_spage
+ i
* C320p8buf_pgno
, ofsAddr
+ Page_rxb
);
701 writew(readw(ofsAddr
+ Page_rxb
) + C320p8rx_pgno
, ofsAddr
+ EndPage_rxb
);
702 writew(C320p8tx_spage
+ i
* C320p8buf_pgno
, ofsAddr
+ Page_txb
);
703 writew(readw(ofsAddr
+ Page_txb
) + C320p8tx_pgno
, ofsAddr
+ EndPage_txb
);
707 writew(C320p16rx_mask
, ofsAddr
+ RX_mask
);
708 writew(C320p16tx_mask
, ofsAddr
+ TX_mask
);
709 writew(C320p16rx_spage
+ i
* C320p16buf_pgno
, ofsAddr
+ Page_rxb
);
710 writew(readw(ofsAddr
+ Page_rxb
) + C320p16rx_pgno
, ofsAddr
+ EndPage_rxb
);
711 writew(C320p16tx_spage
+ i
* C320p16buf_pgno
, ofsAddr
+ Page_txb
);
712 writew(readw(ofsAddr
+ Page_txb
) + C320p16tx_pgno
, ofsAddr
+ EndPage_txb
);
716 writew(C320p24rx_mask
, ofsAddr
+ RX_mask
);
717 writew(C320p24tx_mask
, ofsAddr
+ TX_mask
);
718 writew(C320p24rx_spage
+ i
* C320p24buf_pgno
, ofsAddr
+ Page_rxb
);
719 writew(readw(ofsAddr
+ Page_rxb
) + C320p24rx_pgno
, ofsAddr
+ EndPage_rxb
);
720 writew(C320p24tx_spage
+ i
* C320p24buf_pgno
, ofsAddr
+ Page_txb
);
721 writew(readw(ofsAddr
+ Page_txb
), ofsAddr
+ EndPage_txb
);
724 writew(C320p32rx_mask
, ofsAddr
+ RX_mask
);
725 writew(C320p32tx_mask
, ofsAddr
+ TX_mask
);
726 writew(C320p32tx_ofs
, ofsAddr
+ Ofs_txb
);
727 writew(C320p32rx_spage
+ i
* C320p32buf_pgno
, ofsAddr
+ Page_rxb
);
728 writew(readb(ofsAddr
+ Page_rxb
), ofsAddr
+ EndPage_rxb
);
729 writew(C320p32tx_spage
+ i
* C320p32buf_pgno
, ofsAddr
+ Page_txb
);
730 writew(readw(ofsAddr
+ Page_txb
), ofsAddr
+ EndPage_txb
);
739 static int moxa_load_fw(struct moxa_board_conf
*brd
, const struct firmware
*fw
)
741 const void *ptr
= fw
->data
;
745 unsigned int a
, lenp
, lencnt
;
748 __le32 magic
; /* 0x34303430 */
750 u8 type
; /* UNIX = 3 */
751 u8 model
; /* C218T=1, C320T=2, CP204=3 */
756 BUILD_BUG_ON(ARRAY_SIZE(hdr
->len
) != ARRAY_SIZE(lens
));
758 if (fw
->size
< MOXA_FW_HDRLEN
) {
759 strcpy(rsn
, "too short (even header won't fit)");
762 if (hdr
->magic
!= cpu_to_le32(0x30343034)) {
763 sprintf(rsn
, "bad magic: %.8x", le32_to_cpu(hdr
->magic
));
766 if (hdr
->type
!= 3) {
767 sprintf(rsn
, "not for linux, type is %u", hdr
->type
);
770 if (moxa_check_fw_model(brd
, hdr
->model
)) {
771 sprintf(rsn
, "not for this card, model is %u", hdr
->model
);
775 len
= MOXA_FW_HDRLEN
;
776 lencnt
= hdr
->model
== 2 ? 5 : 3;
777 for (a
= 0; a
< ARRAY_SIZE(lens
); a
++) {
778 lens
[a
] = le16_to_cpu(hdr
->len
[a
]);
779 if (lens
[a
] && len
+ lens
[a
] <= fw
->size
&&
780 moxa_check_fw(&fw
->data
[len
]))
781 printk(KERN_WARNING
"MOXA firmware: unexpected input "
782 "at offset %u, but going on\n", (u32
)len
);
783 if (!lens
[a
] && a
< lencnt
) {
784 sprintf(rsn
, "too few entries in fw file");
790 if (len
!= fw
->size
) {
791 sprintf(rsn
, "bad length: %u (should be %u)", (u32
)fw
->size
,
796 ptr
+= MOXA_FW_HDRLEN
;
799 strcpy(rsn
, "read above");
801 ret
= moxa_load_bios(brd
, ptr
, lens
[lenp
]);
805 /* we skip the tty section (lens[1]), since we don't need it */
806 ptr
+= lens
[lenp
] + lens
[lenp
+ 1];
807 lenp
+= 2; /* comm */
809 if (hdr
->model
== 2) {
810 ret
= moxa_load_320b(brd
, ptr
, lens
[lenp
]);
813 /* skip another tty */
814 ptr
+= lens
[lenp
] + lens
[lenp
+ 1];
818 ret
= moxa_load_code(brd
, ptr
, lens
[lenp
]);
824 printk(KERN_ERR
"firmware failed to load, reason: %s\n", rsn
);
828 static int moxa_init_board(struct moxa_board_conf
*brd
, struct device
*dev
)
830 const struct firmware
*fw
;
836 brd
->ports
= kcalloc(MAX_PORTS_PER_BOARD
, sizeof(*brd
->ports
),
838 if (brd
->ports
== NULL
) {
839 printk(KERN_ERR
"cannot allocate memory for ports\n");
844 for (i
= 0, p
= brd
->ports
; i
< MAX_PORTS_PER_BOARD
; i
++, p
++) {
845 tty_port_init(&p
->port
);
846 p
->port
.ops
= &moxa_port_ops
;
847 p
->type
= PORT_16550A
;
848 p
->cflag
= B9600
| CS8
| CREAD
| CLOCAL
| HUPCL
;
851 switch (brd
->boardType
) {
852 case MOXA_BOARD_C218_ISA
:
853 case MOXA_BOARD_C218_PCI
:
854 file
= "c218tunx.cod";
856 case MOXA_BOARD_CP204J
:
857 file
= "cp204unx.cod";
860 file
= "c320tunx.cod";
864 ret
= request_firmware(&fw
, file
, dev
);
866 printk(KERN_ERR
"MOXA: request_firmware failed. Make sure "
867 "you've placed '%s' file into your firmware "
868 "loader directory (e.g. /lib/firmware)\n",
873 ret
= moxa_load_fw(brd
, fw
);
875 release_firmware(fw
);
880 spin_lock_bh(&moxa_lock
);
882 if (!timer_pending(&moxaTimer
))
883 mod_timer(&moxaTimer
, jiffies
+ HZ
/ 50);
884 spin_unlock_bh(&moxa_lock
);
893 static void moxa_board_deinit(struct moxa_board_conf
*brd
)
895 unsigned int a
, opened
;
897 mutex_lock(&moxa_openlock
);
898 spin_lock_bh(&moxa_lock
);
900 spin_unlock_bh(&moxa_lock
);
902 /* pci hot-un-plug support */
903 for (a
= 0; a
< brd
->numPorts
; a
++)
904 if (brd
->ports
[a
].port
.flags
& ASYNC_INITIALIZED
) {
905 struct tty_struct
*tty
= tty_port_tty_get(
906 &brd
->ports
[a
].port
);
914 for (a
= 0; a
< brd
->numPorts
; a
++)
915 if (brd
->ports
[a
].port
.flags
& ASYNC_INITIALIZED
)
917 mutex_unlock(&moxa_openlock
);
921 mutex_lock(&moxa_openlock
);
924 iounmap(brd
->basemem
);
930 static int __devinit
moxa_pci_probe(struct pci_dev
*pdev
,
931 const struct pci_device_id
*ent
)
933 struct moxa_board_conf
*board
;
935 int board_type
= ent
->driver_data
;
938 retval
= pci_enable_device(pdev
);
940 dev_err(&pdev
->dev
, "can't enable pci device\n");
944 for (i
= 0; i
< MAX_BOARDS
; i
++)
945 if (moxa_boards
[i
].basemem
== NULL
)
949 if (i
>= MAX_BOARDS
) {
950 dev_warn(&pdev
->dev
, "more than %u MOXA Intellio family boards "
951 "found. Board is ignored.\n", MAX_BOARDS
);
955 board
= &moxa_boards
[i
];
957 retval
= pci_request_region(pdev
, 2, "moxa-base");
959 dev_err(&pdev
->dev
, "can't request pci region 2\n");
963 board
->basemem
= ioremap_nocache(pci_resource_start(pdev
, 2), 0x4000);
964 if (board
->basemem
== NULL
) {
965 dev_err(&pdev
->dev
, "can't remap io space 2\n");
969 board
->boardType
= board_type
;
970 switch (board_type
) {
971 case MOXA_BOARD_C218_ISA
:
972 case MOXA_BOARD_C218_PCI
:
976 case MOXA_BOARD_CP204J
:
983 board
->busType
= MOXA_BUS_TYPE_PCI
;
985 retval
= moxa_init_board(board
, &pdev
->dev
);
989 pci_set_drvdata(pdev
, board
);
991 dev_info(&pdev
->dev
, "board '%s' ready (%u ports, firmware loaded)\n",
992 moxa_brdname
[board_type
- 1], board
->numPorts
);
996 iounmap(board
->basemem
);
997 board
->basemem
= NULL
;
999 pci_release_region(pdev
, 2);
1004 static void __devexit
moxa_pci_remove(struct pci_dev
*pdev
)
1006 struct moxa_board_conf
*brd
= pci_get_drvdata(pdev
);
1008 moxa_board_deinit(brd
);
1010 pci_release_region(pdev
, 2);
1013 static struct pci_driver moxa_pci_driver
= {
1015 .id_table
= moxa_pcibrds
,
1016 .probe
= moxa_pci_probe
,
1017 .remove
= __devexit_p(moxa_pci_remove
)
1019 #endif /* CONFIG_PCI */
1021 static int __init
moxa_init(void)
1023 unsigned int isabrds
= 0;
1025 struct moxa_board_conf
*brd
= moxa_boards
;
1028 printk(KERN_INFO
"MOXA Intellio family driver version %s\n",
1030 moxaDriver
= alloc_tty_driver(MAX_PORTS
+ 1);
1034 moxaDriver
->owner
= THIS_MODULE
;
1035 moxaDriver
->name
= "ttyMX";
1036 moxaDriver
->major
= ttymajor
;
1037 moxaDriver
->minor_start
= 0;
1038 moxaDriver
->type
= TTY_DRIVER_TYPE_SERIAL
;
1039 moxaDriver
->subtype
= SERIAL_TYPE_NORMAL
;
1040 moxaDriver
->init_termios
= tty_std_termios
;
1041 moxaDriver
->init_termios
.c_cflag
= B9600
| CS8
| CREAD
| CLOCAL
| HUPCL
;
1042 moxaDriver
->init_termios
.c_ispeed
= 9600;
1043 moxaDriver
->init_termios
.c_ospeed
= 9600;
1044 moxaDriver
->flags
= TTY_DRIVER_REAL_RAW
;
1045 tty_set_operations(moxaDriver
, &moxa_ops
);
1047 if (tty_register_driver(moxaDriver
)) {
1048 printk(KERN_ERR
"can't register MOXA Smartio tty driver!\n");
1049 put_tty_driver(moxaDriver
);
1053 /* Find the boards defined from module args. */
1055 for (i
= 0; i
< MAX_BOARDS
; i
++) {
1058 if (type
[i
] == MOXA_BOARD_C218_ISA
||
1059 type
[i
] == MOXA_BOARD_C320_ISA
) {
1060 pr_debug("Moxa board %2d: %s board(baseAddr=%lx)\n",
1061 isabrds
+ 1, moxa_brdname
[type
[i
] - 1],
1063 brd
->boardType
= type
[i
];
1064 brd
->numPorts
= type
[i
] == MOXA_BOARD_C218_ISA
? 8 :
1066 brd
->busType
= MOXA_BUS_TYPE_ISA
;
1067 brd
->basemem
= ioremap_nocache(baseaddr
[i
], 0x4000);
1068 if (!brd
->basemem
) {
1069 printk(KERN_ERR
"MOXA: can't remap %lx\n",
1073 if (moxa_init_board(brd
, NULL
)) {
1074 iounmap(brd
->basemem
);
1075 brd
->basemem
= NULL
;
1079 printk(KERN_INFO
"MOXA isa board found at 0x%.8lu and "
1080 "ready (%u ports, firmware loaded)\n",
1081 baseaddr
[i
], brd
->numPorts
);
1089 retval
= pci_register_driver(&moxa_pci_driver
);
1091 printk(KERN_ERR
"Can't register MOXA pci driver!\n");
1100 static void __exit
moxa_exit(void)
1105 pci_unregister_driver(&moxa_pci_driver
);
1108 for (i
= 0; i
< MAX_BOARDS
; i
++) /* ISA boards */
1109 if (moxa_boards
[i
].ready
)
1110 moxa_board_deinit(&moxa_boards
[i
]);
1112 del_timer_sync(&moxaTimer
);
1114 if (tty_unregister_driver(moxaDriver
))
1115 printk(KERN_ERR
"Couldn't unregister MOXA Intellio family "
1117 put_tty_driver(moxaDriver
);
1120 module_init(moxa_init
);
1121 module_exit(moxa_exit
);
1123 static void moxa_shutdown(struct tty_port
*port
)
1125 struct moxa_port
*ch
= container_of(port
, struct moxa_port
, port
);
1126 MoxaPortDisable(ch
);
1127 MoxaPortFlushData(ch
, 2);
1128 clear_bit(ASYNCB_NORMAL_ACTIVE
, &port
->flags
);
1131 static int moxa_carrier_raised(struct tty_port
*port
)
1133 struct moxa_port
*ch
= container_of(port
, struct moxa_port
, port
);
1136 spin_lock_irq(&port
->lock
);
1138 spin_unlock_irq(&port
->lock
);
1142 static void moxa_dtr_rts(struct tty_port
*port
, int onoff
)
1144 struct moxa_port
*ch
= container_of(port
, struct moxa_port
, port
);
1145 MoxaPortLineCtrl(ch
, onoff
, onoff
);
1149 static int moxa_open(struct tty_struct
*tty
, struct file
*filp
)
1151 struct moxa_board_conf
*brd
;
1152 struct moxa_port
*ch
;
1157 if (port
== MAX_PORTS
) {
1158 return capable(CAP_SYS_ADMIN
) ? 0 : -EPERM
;
1160 if (mutex_lock_interruptible(&moxa_openlock
))
1161 return -ERESTARTSYS
;
1162 brd
= &moxa_boards
[port
/ MAX_PORTS_PER_BOARD
];
1164 mutex_unlock(&moxa_openlock
);
1168 if (port
% MAX_PORTS_PER_BOARD
>= brd
->numPorts
) {
1169 mutex_unlock(&moxa_openlock
);
1173 ch
= &brd
->ports
[port
% MAX_PORTS_PER_BOARD
];
1175 tty
->driver_data
= ch
;
1176 tty_port_tty_set(&ch
->port
, tty
);
1177 mutex_lock(&ch
->port
.mutex
);
1178 if (!(ch
->port
.flags
& ASYNC_INITIALIZED
)) {
1179 ch
->statusflags
= 0;
1180 moxa_set_tty_param(tty
, tty
->termios
);
1181 MoxaPortLineCtrl(ch
, 1, 1);
1183 MoxaSetFifo(ch
, ch
->type
== PORT_16550A
);
1184 ch
->port
.flags
|= ASYNC_INITIALIZED
;
1186 mutex_unlock(&ch
->port
.mutex
);
1187 mutex_unlock(&moxa_openlock
);
1189 retval
= tty_port_block_til_ready(&ch
->port
, tty
, filp
);
1191 set_bit(ASYNCB_NORMAL_ACTIVE
, &ch
->port
.flags
);
1195 static void moxa_close(struct tty_struct
*tty
, struct file
*filp
)
1197 struct moxa_port
*ch
= tty
->driver_data
;
1198 ch
->cflag
= tty
->termios
->c_cflag
;
1199 tty_port_close(&ch
->port
, tty
, filp
);
1202 static int moxa_write(struct tty_struct
*tty
,
1203 const unsigned char *buf
, int count
)
1205 struct moxa_port
*ch
= tty
->driver_data
;
1211 spin_lock_bh(&moxa_lock
);
1212 len
= MoxaPortWriteData(tty
, buf
, count
);
1213 spin_unlock_bh(&moxa_lock
);
1215 set_bit(LOWWAIT
, &ch
->statusflags
);
1219 static int moxa_write_room(struct tty_struct
*tty
)
1221 struct moxa_port
*ch
;
1225 ch
= tty
->driver_data
;
1228 return MoxaPortTxFree(ch
);
1231 static void moxa_flush_buffer(struct tty_struct
*tty
)
1233 struct moxa_port
*ch
= tty
->driver_data
;
1237 MoxaPortFlushData(ch
, 1);
1241 static int moxa_chars_in_buffer(struct tty_struct
*tty
)
1243 struct moxa_port
*ch
= tty
->driver_data
;
1246 chars
= MoxaPortTxQueue(ch
);
1249 * Make it possible to wakeup anything waiting for output
1250 * in tty_ioctl.c, etc.
1252 set_bit(EMPTYWAIT
, &ch
->statusflags
);
1256 static int moxa_tiocmget(struct tty_struct
*tty
, struct file
*file
)
1258 struct moxa_port
*ch
= tty
->driver_data
;
1259 int flag
= 0, dtr
, rts
;
1261 MoxaPortGetLineOut(ch
, &dtr
, &rts
);
1266 dtr
= MoxaPortLineStatus(ch
);
1276 static int moxa_tiocmset(struct tty_struct
*tty
, struct file
*file
,
1277 unsigned int set
, unsigned int clear
)
1279 struct moxa_port
*ch
;
1284 mutex_lock(&moxa_openlock
);
1285 ch
= tty
->driver_data
;
1287 mutex_unlock(&moxa_openlock
);
1291 MoxaPortGetLineOut(ch
, &dtr
, &rts
);
1292 if (set
& TIOCM_RTS
)
1294 if (set
& TIOCM_DTR
)
1296 if (clear
& TIOCM_RTS
)
1298 if (clear
& TIOCM_DTR
)
1300 MoxaPortLineCtrl(ch
, dtr
, rts
);
1301 mutex_unlock(&moxa_openlock
);
1305 static void moxa_set_termios(struct tty_struct
*tty
,
1306 struct ktermios
*old_termios
)
1308 struct moxa_port
*ch
= tty
->driver_data
;
1312 moxa_set_tty_param(tty
, old_termios
);
1313 if (!(old_termios
->c_cflag
& CLOCAL
) && C_CLOCAL(tty
))
1314 wake_up_interruptible(&ch
->port
.open_wait
);
1317 static void moxa_stop(struct tty_struct
*tty
)
1319 struct moxa_port
*ch
= tty
->driver_data
;
1323 MoxaPortTxDisable(ch
);
1324 set_bit(TXSTOPPED
, &ch
->statusflags
);
1328 static void moxa_start(struct tty_struct
*tty
)
1330 struct moxa_port
*ch
= tty
->driver_data
;
1335 if (!(ch
->statusflags
& TXSTOPPED
))
1338 MoxaPortTxEnable(ch
);
1339 clear_bit(TXSTOPPED
, &ch
->statusflags
);
1342 static void moxa_hangup(struct tty_struct
*tty
)
1344 struct moxa_port
*ch
= tty
->driver_data
;
1345 tty_port_hangup(&ch
->port
);
1348 static void moxa_new_dcdstate(struct moxa_port
*p
, u8 dcd
)
1350 struct tty_struct
*tty
;
1351 unsigned long flags
;
1354 spin_lock_irqsave(&p
->port
.lock
, flags
);
1355 if (dcd
!= p
->DCDState
) {
1357 spin_unlock_irqrestore(&p
->port
.lock
, flags
);
1358 tty
= tty_port_tty_get(&p
->port
);
1359 if (tty
&& C_CLOCAL(tty
) && !dcd
)
1364 spin_unlock_irqrestore(&p
->port
.lock
, flags
);
1367 static int moxa_poll_port(struct moxa_port
*p
, unsigned int handle
,
1370 struct tty_struct
*tty
= tty_port_tty_get(&p
->port
);
1371 void __iomem
*ofsAddr
;
1372 unsigned int inited
= p
->port
.flags
& ASYNC_INITIALIZED
;
1376 if (test_bit(EMPTYWAIT
, &p
->statusflags
) &&
1377 MoxaPortTxQueue(p
) == 0) {
1378 clear_bit(EMPTYWAIT
, &p
->statusflags
);
1381 if (test_bit(LOWWAIT
, &p
->statusflags
) && !tty
->stopped
&&
1382 MoxaPortTxQueue(p
) <= WAKEUP_CHARS
) {
1383 clear_bit(LOWWAIT
, &p
->statusflags
);
1387 if (inited
&& !test_bit(TTY_THROTTLED
, &tty
->flags
) &&
1388 MoxaPortRxQueue(p
) > 0) { /* RX */
1389 MoxaPortReadData(p
);
1390 tty_schedule_flip(tty
);
1393 clear_bit(EMPTYWAIT
, &p
->statusflags
);
1394 MoxaPortFlushData(p
, 0); /* flush RX */
1397 if (!handle
) /* nothing else to do */
1400 intr
= readw(ip
); /* port irq status */
1404 writew(0, ip
); /* ACK port */
1405 ofsAddr
= p
->tableAddr
;
1406 if (intr
& IntrTx
) /* disable tx intr */
1407 writew(readw(ofsAddr
+ HostStat
) & ~WakeupTx
,
1408 ofsAddr
+ HostStat
);
1413 if (tty
&& (intr
& IntrBreak
) && !I_IGNBRK(tty
)) { /* BREAK */
1414 tty_insert_flip_char(tty
, 0, TTY_BREAK
);
1415 tty_schedule_flip(tty
);
1418 if (intr
& IntrLine
)
1419 moxa_new_dcdstate(p
, readb(ofsAddr
+ FlagStat
) & DCD_state
);
1426 static void moxa_poll(unsigned long ignored
)
1428 struct moxa_board_conf
*brd
;
1430 unsigned int card
, port
, served
= 0;
1432 spin_lock(&moxa_lock
);
1433 for (card
= 0; card
< MAX_BOARDS
; card
++) {
1434 brd
= &moxa_boards
[card
];
1441 if (readb(brd
->intPend
) == 0xff)
1442 ip
= brd
->intTable
+ readb(brd
->intNdx
);
1444 for (port
= 0; port
< brd
->numPorts
; port
++)
1445 moxa_poll_port(&brd
->ports
[port
], !!ip
, ip
+ port
);
1448 writeb(0, brd
->intPend
); /* ACK */
1450 if (moxaLowWaterChk
) {
1451 struct moxa_port
*p
= brd
->ports
;
1452 for (port
= 0; port
< brd
->numPorts
; port
++, p
++)
1453 if (p
->lowChkFlag
) {
1455 moxa_low_water_check(p
->tableAddr
);
1459 moxaLowWaterChk
= 0;
1462 mod_timer(&moxaTimer
, jiffies
+ HZ
/ 50);
1463 spin_unlock(&moxa_lock
);
1466 /******************************************************************************/
1468 static void moxa_set_tty_param(struct tty_struct
*tty
, struct ktermios
*old_termios
)
1470 register struct ktermios
*ts
= tty
->termios
;
1471 struct moxa_port
*ch
= tty
->driver_data
;
1472 int rts
, cts
, txflow
, rxflow
, xany
, baud
;
1474 rts
= cts
= txflow
= rxflow
= xany
= 0;
1475 if (ts
->c_cflag
& CRTSCTS
)
1477 if (ts
->c_iflag
& IXON
)
1479 if (ts
->c_iflag
& IXOFF
)
1481 if (ts
->c_iflag
& IXANY
)
1484 /* Clear the features we don't support */
1485 ts
->c_cflag
&= ~CMSPAR
;
1486 MoxaPortFlowCtrl(ch
, rts
, cts
, txflow
, rxflow
, xany
);
1487 baud
= MoxaPortSetTermio(ch
, ts
, tty_get_baud_rate(tty
));
1489 baud
= tty_termios_baud_rate(old_termios
);
1490 /* Not put the baud rate into the termios data */
1491 tty_encode_baud_rate(tty
, baud
, baud
);
1494 /*****************************************************************************
1495 * Driver level functions: *
1496 *****************************************************************************/
1498 static void MoxaPortFlushData(struct moxa_port
*port
, int mode
)
1500 void __iomem
*ofsAddr
;
1501 if (mode
< 0 || mode
> 2)
1503 ofsAddr
= port
->tableAddr
;
1504 moxafunc(ofsAddr
, FC_FlushQueue
, mode
);
1506 port
->lowChkFlag
= 0;
1507 moxa_low_water_check(ofsAddr
);
1512 * Moxa Port Number Description:
1514 * MOXA serial driver supports up to 4 MOXA-C218/C320 boards. And,
1515 * the port number using in MOXA driver functions will be 0 to 31 for
1516 * first MOXA board, 32 to 63 for second, 64 to 95 for third and 96
1517 * to 127 for fourth. For example, if you setup three MOXA boards,
1518 * first board is C218, second board is C320-16 and third board is
1519 * C320-32. The port number of first board (C218 - 8 ports) is from
1520 * 0 to 7. The port number of second board (C320 - 16 ports) is form
1521 * 32 to 47. The port number of third board (C320 - 32 ports) is from
1522 * 64 to 95. And those port numbers form 8 to 31, 48 to 63 and 96 to
1523 * 127 will be invalid.
1526 * Moxa Functions Description:
1528 * Function 1: Driver initialization routine, this routine must be
1529 * called when initialized driver.
1531 * void MoxaDriverInit();
1534 * Function 2: Moxa driver private IOCTL command processing.
1536 * int MoxaDriverIoctl(unsigned int cmd, unsigned long arg, int port);
1538 * unsigned int cmd : IOCTL command
1539 * unsigned long arg : IOCTL argument
1540 * int port : port number (0 - 127)
1547 * Function 6: Enable this port to start Tx/Rx data.
1549 * void MoxaPortEnable(int port);
1550 * int port : port number (0 - 127)
1553 * Function 7: Disable this port
1555 * void MoxaPortDisable(int port);
1556 * int port : port number (0 - 127)
1559 * Function 10: Setting baud rate of this port.
1561 * speed_t MoxaPortSetBaud(int port, speed_t baud);
1562 * int port : port number (0 - 127)
1563 * long baud : baud rate (50 - 115200)
1565 * return: 0 : this port is invalid or baud < 50
1566 * 50 - 115200 : the real baud rate set to the port, if
1567 * the argument baud is large than maximun
1568 * available baud rate, the real setting
1569 * baud rate will be the maximun baud rate.
1572 * Function 12: Configure the port.
1574 * int MoxaPortSetTermio(int port, struct ktermios *termio, speed_t baud);
1575 * int port : port number (0 - 127)
1576 * struct ktermios * termio : termio structure pointer
1577 * speed_t baud : baud rate
1579 * return: -1 : this port is invalid or termio == NULL
1583 * Function 13: Get the DTR/RTS state of this port.
1585 * int MoxaPortGetLineOut(int port, int *dtrState, int *rtsState);
1586 * int port : port number (0 - 127)
1587 * int * dtrState : pointer to INT to receive the current DTR
1588 * state. (if NULL, this function will not
1589 * write to this address)
1590 * int * rtsState : pointer to INT to receive the current RTS
1591 * state. (if NULL, this function will not
1592 * write to this address)
1594 * return: -1 : this port is invalid
1598 * Function 14: Setting the DTR/RTS output state of this port.
1600 * void MoxaPortLineCtrl(int port, int dtrState, int rtsState);
1601 * int port : port number (0 - 127)
1602 * int dtrState : DTR output state (0: off, 1: on)
1603 * int rtsState : RTS output state (0: off, 1: on)
1606 * Function 15: Setting the flow control of this port.
1608 * void MoxaPortFlowCtrl(int port, int rtsFlow, int ctsFlow, int rxFlow,
1609 * int txFlow,int xany);
1610 * int port : port number (0 - 127)
1611 * int rtsFlow : H/W RTS flow control (0: no, 1: yes)
1612 * int ctsFlow : H/W CTS flow control (0: no, 1: yes)
1613 * int rxFlow : S/W Rx XON/XOFF flow control (0: no, 1: yes)
1614 * int txFlow : S/W Tx XON/XOFF flow control (0: no, 1: yes)
1615 * int xany : S/W XANY flow control (0: no, 1: yes)
1618 * Function 16: Get ths line status of this port
1620 * int MoxaPortLineStatus(int port);
1621 * int port : port number (0 - 127)
1623 * return: Bit 0 - CTS state (0: off, 1: on)
1624 * Bit 1 - DSR state (0: off, 1: on)
1625 * Bit 2 - DCD state (0: off, 1: on)
1628 * Function 19: Flush the Rx/Tx buffer data of this port.
1630 * void MoxaPortFlushData(int port, int mode);
1631 * int port : port number (0 - 127)
1633 * 0 : flush the Rx buffer
1634 * 1 : flush the Tx buffer
1635 * 2 : flush the Rx and Tx buffer
1638 * Function 20: Write data.
1640 * int MoxaPortWriteData(int port, unsigned char * buffer, int length);
1641 * int port : port number (0 - 127)
1642 * unsigned char * buffer : pointer to write data buffer.
1643 * int length : write data length
1645 * return: 0 - length : real write data length
1648 * Function 21: Read data.
1650 * int MoxaPortReadData(int port, struct tty_struct *tty);
1651 * int port : port number (0 - 127)
1652 * struct tty_struct *tty : tty for data
1654 * return: 0 - length : real read data length
1657 * Function 24: Get the Tx buffer current queued data bytes
1659 * int MoxaPortTxQueue(int port);
1660 * int port : port number (0 - 127)
1662 * return: .. : Tx buffer current queued data bytes
1665 * Function 25: Get the Tx buffer current free space
1667 * int MoxaPortTxFree(int port);
1668 * int port : port number (0 - 127)
1670 * return: .. : Tx buffer current free space
1673 * Function 26: Get the Rx buffer current queued data bytes
1675 * int MoxaPortRxQueue(int port);
1676 * int port : port number (0 - 127)
1678 * return: .. : Rx buffer current queued data bytes
1681 * Function 28: Disable port data transmission.
1683 * void MoxaPortTxDisable(int port);
1684 * int port : port number (0 - 127)
1687 * Function 29: Enable port data transmission.
1689 * void MoxaPortTxEnable(int port);
1690 * int port : port number (0 - 127)
1693 * Function 31: Get the received BREAK signal count and reset it.
1695 * int MoxaPortResetBrkCnt(int port);
1696 * int port : port number (0 - 127)
1698 * return: 0 - .. : BREAK signal count
1703 static void MoxaPortEnable(struct moxa_port
*port
)
1705 void __iomem
*ofsAddr
;
1708 ofsAddr
= port
->tableAddr
;
1709 writew(lowwater
, ofsAddr
+ Low_water
);
1710 if (MOXA_IS_320(port
->board
))
1711 moxafunc(ofsAddr
, FC_SetBreakIrq
, 0);
1713 writew(readw(ofsAddr
+ HostStat
) | WakeupBreak
,
1714 ofsAddr
+ HostStat
);
1716 moxafunc(ofsAddr
, FC_SetLineIrq
, Magic_code
);
1717 moxafunc(ofsAddr
, FC_FlushQueue
, 2);
1719 moxafunc(ofsAddr
, FC_EnableCH
, Magic_code
);
1720 MoxaPortLineStatus(port
);
1723 static void MoxaPortDisable(struct moxa_port
*port
)
1725 void __iomem
*ofsAddr
= port
->tableAddr
;
1727 moxafunc(ofsAddr
, FC_SetFlowCtl
, 0); /* disable flow control */
1728 moxafunc(ofsAddr
, FC_ClrLineIrq
, Magic_code
);
1729 writew(0, ofsAddr
+ HostStat
);
1730 moxafunc(ofsAddr
, FC_DisableCH
, Magic_code
);
1733 static speed_t
MoxaPortSetBaud(struct moxa_port
*port
, speed_t baud
)
1735 void __iomem
*ofsAddr
= port
->tableAddr
;
1736 unsigned int clock
, val
;
1739 max
= MOXA_IS_320(port
->board
) ? 460800 : 921600;
1746 moxafunc(ofsAddr
, FC_SetBaud
, val
);
1751 static int MoxaPortSetTermio(struct moxa_port
*port
, struct ktermios
*termio
,
1754 void __iomem
*ofsAddr
;
1758 ofsAddr
= port
->tableAddr
;
1759 cflag
= termio
->c_cflag
; /* termio->c_cflag */
1761 mode
= termio
->c_cflag
& CSIZE
;
1764 else if (mode
== CS6
)
1766 else if (mode
== CS7
)
1768 else if (mode
== CS8
)
1771 if (termio
->c_cflag
& CSTOPB
) {
1779 if (termio
->c_cflag
& PARENB
) {
1780 if (termio
->c_cflag
& PARODD
)
1787 moxafunc(ofsAddr
, FC_SetDataMode
, (u16
)mode
);
1789 if (MOXA_IS_320(port
->board
) && baud
>= 921600)
1792 baud
= MoxaPortSetBaud(port
, baud
);
1794 if (termio
->c_iflag
& (IXON
| IXOFF
| IXANY
)) {
1795 spin_lock_irq(&moxafunc_lock
);
1796 writeb(termio
->c_cc
[VSTART
], ofsAddr
+ FuncArg
);
1797 writeb(termio
->c_cc
[VSTOP
], ofsAddr
+ FuncArg1
);
1798 writeb(FC_SetXonXoff
, ofsAddr
+ FuncCode
);
1799 moxa_wait_finish(ofsAddr
);
1800 spin_unlock_irq(&moxafunc_lock
);
1806 static int MoxaPortGetLineOut(struct moxa_port
*port
, int *dtrState
,
1810 *dtrState
= !!(port
->lineCtrl
& DTR_ON
);
1812 *rtsState
= !!(port
->lineCtrl
& RTS_ON
);
1817 static void MoxaPortLineCtrl(struct moxa_port
*port
, int dtr
, int rts
)
1825 port
->lineCtrl
= mode
;
1826 moxafunc(port
->tableAddr
, FC_LineControl
, mode
);
1829 static void MoxaPortFlowCtrl(struct moxa_port
*port
, int rts
, int cts
,
1830 int txflow
, int rxflow
, int txany
)
1835 mode
|= RTS_FlowCtl
;
1837 mode
|= CTS_FlowCtl
;
1844 moxafunc(port
->tableAddr
, FC_SetFlowCtl
, mode
);
1847 static int MoxaPortLineStatus(struct moxa_port
*port
)
1849 void __iomem
*ofsAddr
;
1852 ofsAddr
= port
->tableAddr
;
1853 if (MOXA_IS_320(port
->board
))
1854 val
= moxafuncret(ofsAddr
, FC_LineStatus
, 0);
1856 val
= readw(ofsAddr
+ FlagStat
) >> 4;
1860 moxa_new_dcdstate(port
, val
& 8);
1865 static int MoxaPortWriteData(struct tty_struct
*tty
,
1866 const unsigned char *buffer
, int len
)
1868 struct moxa_port
*port
= tty
->driver_data
;
1869 void __iomem
*baseAddr
, *ofsAddr
, *ofs
;
1870 unsigned int c
, total
;
1871 u16 head
, tail
, tx_mask
, spage
, epage
;
1872 u16 pageno
, pageofs
, bufhead
;
1874 ofsAddr
= port
->tableAddr
;
1875 baseAddr
= port
->board
->basemem
;
1876 tx_mask
= readw(ofsAddr
+ TX_mask
);
1877 spage
= readw(ofsAddr
+ Page_txb
);
1878 epage
= readw(ofsAddr
+ EndPage_txb
);
1879 tail
= readw(ofsAddr
+ TXwptr
);
1880 head
= readw(ofsAddr
+ TXrptr
);
1881 c
= (head
> tail
) ? (head
- tail
- 1) : (head
- tail
+ tx_mask
);
1884 moxaLog
.txcnt
[port
->port
.tty
->index
] += c
;
1886 if (spage
== epage
) {
1887 bufhead
= readw(ofsAddr
+ Ofs_txb
);
1888 writew(spage
, baseAddr
+ Control_reg
);
1891 len
= head
- tail
- 1;
1893 len
= tx_mask
+ 1 - tail
;
1894 len
= (c
> len
) ? len
: c
;
1895 ofs
= baseAddr
+ DynPage_addr
+ bufhead
+ tail
;
1896 memcpy_toio(ofs
, buffer
, len
);
1898 tail
= (tail
+ len
) & tx_mask
;
1902 pageno
= spage
+ (tail
>> 13);
1903 pageofs
= tail
& Page_mask
;
1905 len
= Page_size
- pageofs
;
1908 writeb(pageno
, baseAddr
+ Control_reg
);
1909 ofs
= baseAddr
+ DynPage_addr
+ pageofs
;
1910 memcpy_toio(ofs
, buffer
, len
);
1912 if (++pageno
== epage
)
1917 tail
= (tail
+ total
) & tx_mask
;
1919 writew(tail
, ofsAddr
+ TXwptr
);
1920 writeb(1, ofsAddr
+ CD180TXirq
); /* start to send */
1924 static int MoxaPortReadData(struct moxa_port
*port
)
1926 struct tty_struct
*tty
= port
->port
.tty
;
1928 void __iomem
*baseAddr
, *ofsAddr
, *ofs
;
1929 unsigned int count
, len
, total
;
1930 u16 tail
, rx_mask
, spage
, epage
;
1931 u16 pageno
, pageofs
, bufhead
, head
;
1933 ofsAddr
= port
->tableAddr
;
1934 baseAddr
= port
->board
->basemem
;
1935 head
= readw(ofsAddr
+ RXrptr
);
1936 tail
= readw(ofsAddr
+ RXwptr
);
1937 rx_mask
= readw(ofsAddr
+ RX_mask
);
1938 spage
= readw(ofsAddr
+ Page_rxb
);
1939 epage
= readw(ofsAddr
+ EndPage_rxb
);
1940 count
= (tail
>= head
) ? (tail
- head
) : (tail
- head
+ rx_mask
+ 1);
1945 moxaLog
.rxcnt
[tty
->index
] += total
;
1946 if (spage
== epage
) {
1947 bufhead
= readw(ofsAddr
+ Ofs_rxb
);
1948 writew(spage
, baseAddr
+ Control_reg
);
1950 ofs
= baseAddr
+ DynPage_addr
+ bufhead
+ head
;
1951 len
= (tail
>= head
) ? (tail
- head
) :
1952 (rx_mask
+ 1 - head
);
1953 len
= tty_prepare_flip_string(tty
, &dst
,
1955 memcpy_fromio(dst
, ofs
, len
);
1956 head
= (head
+ len
) & rx_mask
;
1960 pageno
= spage
+ (head
>> 13);
1961 pageofs
= head
& Page_mask
;
1963 writew(pageno
, baseAddr
+ Control_reg
);
1964 ofs
= baseAddr
+ DynPage_addr
+ pageofs
;
1965 len
= tty_prepare_flip_string(tty
, &dst
,
1966 min(Page_size
- pageofs
, count
));
1967 memcpy_fromio(dst
, ofs
, len
);
1970 pageofs
= (pageofs
+ len
) & Page_mask
;
1971 if (pageofs
== 0 && ++pageno
== epage
)
1974 head
= (head
+ total
) & rx_mask
;
1976 writew(head
, ofsAddr
+ RXrptr
);
1977 if (readb(ofsAddr
+ FlagStat
) & Xoff_state
) {
1978 moxaLowWaterChk
= 1;
1979 port
->lowChkFlag
= 1;
1985 static int MoxaPortTxQueue(struct moxa_port
*port
)
1987 void __iomem
*ofsAddr
= port
->tableAddr
;
1988 u16 rptr
, wptr
, mask
;
1990 rptr
= readw(ofsAddr
+ TXrptr
);
1991 wptr
= readw(ofsAddr
+ TXwptr
);
1992 mask
= readw(ofsAddr
+ TX_mask
);
1993 return (wptr
- rptr
) & mask
;
1996 static int MoxaPortTxFree(struct moxa_port
*port
)
1998 void __iomem
*ofsAddr
= port
->tableAddr
;
1999 u16 rptr
, wptr
, mask
;
2001 rptr
= readw(ofsAddr
+ TXrptr
);
2002 wptr
= readw(ofsAddr
+ TXwptr
);
2003 mask
= readw(ofsAddr
+ TX_mask
);
2004 return mask
- ((wptr
- rptr
) & mask
);
2007 static int MoxaPortRxQueue(struct moxa_port
*port
)
2009 void __iomem
*ofsAddr
= port
->tableAddr
;
2010 u16 rptr
, wptr
, mask
;
2012 rptr
= readw(ofsAddr
+ RXrptr
);
2013 wptr
= readw(ofsAddr
+ RXwptr
);
2014 mask
= readw(ofsAddr
+ RX_mask
);
2015 return (wptr
- rptr
) & mask
;
2018 static void MoxaPortTxDisable(struct moxa_port
*port
)
2020 moxafunc(port
->tableAddr
, FC_SetXoffState
, Magic_code
);
2023 static void MoxaPortTxEnable(struct moxa_port
*port
)
2025 moxafunc(port
->tableAddr
, FC_SetXonState
, Magic_code
);
2028 static int moxa_get_serial_info(struct moxa_port
*info
,
2029 struct serial_struct __user
*retinfo
)
2031 struct serial_struct tmp
= {
2033 .line
= info
->port
.tty
->index
,
2034 .flags
= info
->port
.flags
,
2035 .baud_base
= 921600,
2036 .close_delay
= info
->port
.close_delay
2038 return copy_to_user(retinfo
, &tmp
, sizeof(*retinfo
)) ? -EFAULT
: 0;
2042 static int moxa_set_serial_info(struct moxa_port
*info
,
2043 struct serial_struct __user
*new_info
)
2045 struct serial_struct new_serial
;
2047 if (copy_from_user(&new_serial
, new_info
, sizeof(new_serial
)))
2050 if (new_serial
.irq
!= 0 || new_serial
.port
!= 0 ||
2051 new_serial
.custom_divisor
!= 0 ||
2052 new_serial
.baud_base
!= 921600)
2055 if (!capable(CAP_SYS_ADMIN
)) {
2056 if (((new_serial
.flags
& ~ASYNC_USR_MASK
) !=
2057 (info
->port
.flags
& ~ASYNC_USR_MASK
)))
2060 info
->port
.close_delay
= new_serial
.close_delay
* HZ
/ 100;
2062 new_serial
.flags
= (new_serial
.flags
& ~ASYNC_FLAGS
);
2063 new_serial
.flags
|= (info
->port
.flags
& ASYNC_FLAGS
);
2065 MoxaSetFifo(info
, new_serial
.type
== PORT_16550A
);
2067 info
->type
= new_serial
.type
;
2073 /*****************************************************************************
2074 * Static local functions: *
2075 *****************************************************************************/
2077 static void MoxaSetFifo(struct moxa_port
*port
, int enable
)
2079 void __iomem
*ofsAddr
= port
->tableAddr
;
2082 moxafunc(ofsAddr
, FC_SetRxFIFOTrig
, 0);
2083 moxafunc(ofsAddr
, FC_SetTxFIFOCnt
, 1);
2085 moxafunc(ofsAddr
, FC_SetRxFIFOTrig
, 3);
2086 moxafunc(ofsAddr
, FC_SetTxFIFOCnt
, 16);