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 moxa_board_conf
*board
;
134 struct tty_struct
*tty
;
135 void __iomem
*tableAddr
;
142 unsigned long statusflags
;
143 wait_queue_head_t open_wait
;
152 int rxcnt
[MAX_PORTS
];
153 int txcnt
[MAX_PORTS
];
157 #define TXSTOPPED 0x1
159 #define EMPTYWAIT 0x4
162 #define SERIAL_DO_RESTART
164 #define WAKEUP_CHARS 256
166 static int ttymajor
= MOXAMAJOR
;
167 static struct mon_str moxaLog
;
168 static unsigned int moxaFuncTout
= HZ
/ 2;
169 static unsigned int moxaLowWaterChk
;
170 static DEFINE_MUTEX(moxa_openlock
);
171 /* Variables for insmod */
173 static unsigned long baseaddr
[MAX_BOARDS
];
174 static unsigned int type
[MAX_BOARDS
];
175 static unsigned int numports
[MAX_BOARDS
];
178 MODULE_AUTHOR("William Chen");
179 MODULE_DESCRIPTION("MOXA Intellio Family Multiport Board Device Driver");
180 MODULE_LICENSE("GPL");
182 module_param_array(type
, uint
, NULL
, 0);
183 MODULE_PARM_DESC(type
, "card type: C218=2, C320=4");
184 module_param_array(baseaddr
, ulong
, NULL
, 0);
185 MODULE_PARM_DESC(baseaddr
, "base address");
186 module_param_array(numports
, uint
, NULL
, 0);
187 MODULE_PARM_DESC(numports
, "numports (ignored for C218)");
189 module_param(ttymajor
, int, 0);
194 static int moxa_open(struct tty_struct
*, struct file
*);
195 static void moxa_close(struct tty_struct
*, struct file
*);
196 static int moxa_write(struct tty_struct
*, const unsigned char *, int);
197 static int moxa_write_room(struct tty_struct
*);
198 static void moxa_flush_buffer(struct tty_struct
*);
199 static int moxa_chars_in_buffer(struct tty_struct
*);
200 static void moxa_throttle(struct tty_struct
*);
201 static void moxa_unthrottle(struct tty_struct
*);
202 static void moxa_set_termios(struct tty_struct
*, struct ktermios
*);
203 static void moxa_stop(struct tty_struct
*);
204 static void moxa_start(struct tty_struct
*);
205 static void moxa_hangup(struct tty_struct
*);
206 static int moxa_tiocmget(struct tty_struct
*tty
, struct file
*file
);
207 static int moxa_tiocmset(struct tty_struct
*tty
, struct file
*file
,
208 unsigned int set
, unsigned int clear
);
209 static void moxa_poll(unsigned long);
210 static void moxa_set_tty_param(struct tty_struct
*, struct ktermios
*);
211 static void moxa_setup_empty_event(struct tty_struct
*);
212 static void moxa_shut_down(struct moxa_port
*);
214 * moxa board interface functions:
216 static void MoxaPortEnable(struct moxa_port
*);
217 static void MoxaPortDisable(struct moxa_port
*);
218 static int MoxaPortSetTermio(struct moxa_port
*, struct ktermios
*, speed_t
);
219 static int MoxaPortGetLineOut(struct moxa_port
*, int *, int *);
220 static void MoxaPortLineCtrl(struct moxa_port
*, int, int);
221 static void MoxaPortFlowCtrl(struct moxa_port
*, int, int, int, int, int);
222 static int MoxaPortLineStatus(struct moxa_port
*);
223 static void MoxaPortFlushData(struct moxa_port
*, int);
224 static int MoxaPortWriteData(struct moxa_port
*, const unsigned char *, int);
225 static int MoxaPortReadData(struct moxa_port
*);
226 static int MoxaPortTxQueue(struct moxa_port
*);
227 static int MoxaPortRxQueue(struct moxa_port
*);
228 static int MoxaPortTxFree(struct moxa_port
*);
229 static void MoxaPortTxDisable(struct moxa_port
*);
230 static void MoxaPortTxEnable(struct moxa_port
*);
231 static int moxa_get_serial_info(struct moxa_port
*, struct serial_struct __user
*);
232 static int moxa_set_serial_info(struct moxa_port
*, struct serial_struct __user
*);
233 static void MoxaSetFifo(struct moxa_port
*port
, int enable
);
239 static void moxa_wait_finish(void __iomem
*ofsAddr
)
241 unsigned long end
= jiffies
+ moxaFuncTout
;
243 while (readw(ofsAddr
+ FuncCode
) != 0)
244 if (time_after(jiffies
, end
))
246 if (readw(ofsAddr
+ FuncCode
) != 0 && printk_ratelimit())
247 printk(KERN_WARNING
"moxa function expired\n");
250 static void moxafunc(void __iomem
*ofsAddr
, u16 cmd
, u16 arg
)
252 writew(arg
, ofsAddr
+ FuncArg
);
253 writew(cmd
, ofsAddr
+ FuncCode
);
254 moxa_wait_finish(ofsAddr
);
257 static void moxa_low_water_check(void __iomem
*ofsAddr
)
259 u16 rptr
, wptr
, mask
, len
;
261 if (readb(ofsAddr
+ FlagStat
) & Xoff_state
) {
262 rptr
= readw(ofsAddr
+ RXrptr
);
263 wptr
= readw(ofsAddr
+ RXwptr
);
264 mask
= readw(ofsAddr
+ RX_mask
);
265 len
= (wptr
- rptr
) & mask
;
266 if (len
<= Low_water
)
267 moxafunc(ofsAddr
, FC_SendXon
, 0);
275 static int moxa_ioctl(struct tty_struct
*tty
, struct file
*file
,
276 unsigned int cmd
, unsigned long arg
)
278 struct moxa_port
*ch
= tty
->driver_data
;
279 void __user
*argp
= (void __user
*)arg
;
282 if (tty
->index
== MAX_PORTS
) {
283 if (cmd
!= MOXA_GETDATACOUNT
&& cmd
!= MOXA_GET_IOQUEUE
&&
284 cmd
!= MOXA_GETMSTATUS
)
290 case MOXA_GETDATACOUNT
:
291 moxaLog
.tick
= jiffies
;
292 if (copy_to_user(argp
, &moxaLog
, sizeof(moxaLog
)))
295 case MOXA_FLUSH_QUEUE
:
296 MoxaPortFlushData(ch
, arg
);
298 case MOXA_GET_IOQUEUE
: {
299 struct moxaq_str __user
*argm
= argp
;
300 struct moxaq_str tmp
;
304 mutex_lock(&moxa_openlock
);
305 for (i
= 0; i
< MAX_BOARDS
; i
++) {
306 p
= moxa_boards
[i
].ports
;
307 for (j
= 0; j
< MAX_PORTS_PER_BOARD
; j
++, p
++, argm
++) {
308 memset(&tmp
, 0, sizeof(tmp
));
309 if (moxa_boards
[i
].ready
) {
310 tmp
.inq
= MoxaPortRxQueue(p
);
311 tmp
.outq
= MoxaPortTxQueue(p
);
313 if (copy_to_user(argm
, &tmp
, sizeof(tmp
))) {
314 mutex_unlock(&moxa_openlock
);
319 mutex_unlock(&moxa_openlock
);
321 } case MOXA_GET_OQUEUE
:
322 status
= MoxaPortTxQueue(ch
);
323 ret
= put_user(status
, (unsigned long __user
*)argp
);
325 case MOXA_GET_IQUEUE
:
326 status
= MoxaPortRxQueue(ch
);
327 ret
= put_user(status
, (unsigned long __user
*)argp
);
329 case MOXA_GETMSTATUS
: {
330 struct mxser_mstatus __user
*argm
= argp
;
331 struct mxser_mstatus tmp
;
335 mutex_lock(&moxa_openlock
);
336 for (i
= 0; i
< MAX_BOARDS
; i
++) {
337 p
= moxa_boards
[i
].ports
;
338 for (j
= 0; j
< MAX_PORTS_PER_BOARD
; j
++, p
++, argm
++) {
339 memset(&tmp
, 0, sizeof(tmp
));
340 if (!moxa_boards
[i
].ready
)
343 status
= MoxaPortLineStatus(p
);
351 if (!p
->tty
|| !p
->tty
->termios
)
352 tmp
.cflag
= p
->cflag
;
354 tmp
.cflag
= p
->tty
->termios
->c_cflag
;
356 if (copy_to_user(argm
, &tmp
, sizeof(tmp
))) {
357 mutex_unlock(&moxa_openlock
);
362 mutex_unlock(&moxa_openlock
);
366 mutex_lock(&moxa_openlock
);
367 ret
= moxa_get_serial_info(ch
, argp
);
368 mutex_unlock(&moxa_openlock
);
371 mutex_lock(&moxa_openlock
);
372 ret
= moxa_set_serial_info(ch
, argp
);
373 mutex_unlock(&moxa_openlock
);
381 static void moxa_break_ctl(struct tty_struct
*tty
, int state
)
383 struct moxa_port
*port
= tty
->driver_data
;
385 moxafunc(port
->tableAddr
, state
? FC_SendBreak
: FC_StopBreak
,
389 static const struct tty_operations moxa_ops
= {
393 .write_room
= moxa_write_room
,
394 .flush_buffer
= moxa_flush_buffer
,
395 .chars_in_buffer
= moxa_chars_in_buffer
,
397 .throttle
= moxa_throttle
,
398 .unthrottle
= moxa_unthrottle
,
399 .set_termios
= moxa_set_termios
,
402 .hangup
= moxa_hangup
,
403 .break_ctl
= moxa_break_ctl
,
404 .tiocmget
= moxa_tiocmget
,
405 .tiocmset
= moxa_tiocmset
,
408 static struct tty_driver
*moxaDriver
;
409 static DEFINE_TIMER(moxaTimer
, moxa_poll
, 0, 0);
410 static DEFINE_SPINLOCK(moxa_lock
);
416 static int moxa_check_fw_model(struct moxa_board_conf
*brd
, u8 model
)
418 switch (brd
->boardType
) {
419 case MOXA_BOARD_C218_ISA
:
420 case MOXA_BOARD_C218_PCI
:
424 case MOXA_BOARD_CP204J
:
438 static int moxa_check_fw(const void *ptr
)
440 const __le16
*lptr
= ptr
;
442 if (*lptr
!= cpu_to_le16(0x7980))
448 static int moxa_load_bios(struct moxa_board_conf
*brd
, const u8
*buf
,
451 void __iomem
*baseAddr
= brd
->basemem
;
454 writeb(HW_reset
, baseAddr
+ Control_reg
); /* reset */
456 memset_io(baseAddr
, 0, 4096);
457 memcpy_toio(baseAddr
, buf
, len
); /* download BIOS */
458 writeb(0, baseAddr
+ Control_reg
); /* restart */
462 switch (brd
->boardType
) {
463 case MOXA_BOARD_C218_ISA
:
464 case MOXA_BOARD_C218_PCI
:
465 tmp
= readw(baseAddr
+ C218_key
);
466 if (tmp
!= C218_KeyCode
)
469 case MOXA_BOARD_CP204J
:
470 tmp
= readw(baseAddr
+ C218_key
);
471 if (tmp
!= CP204J_KeyCode
)
475 tmp
= readw(baseAddr
+ C320_key
);
476 if (tmp
!= C320_KeyCode
)
478 tmp
= readw(baseAddr
+ C320_status
);
479 if (tmp
!= STS_init
) {
480 printk(KERN_ERR
"MOXA: bios upload failed -- CPU/Basic "
481 "module not found\n");
489 printk(KERN_ERR
"MOXA: bios upload failed -- board not found\n");
493 static int moxa_load_320b(struct moxa_board_conf
*brd
, const u8
*ptr
,
496 void __iomem
*baseAddr
= brd
->basemem
;
499 printk(KERN_ERR
"MOXA: invalid 320 bios -- too short\n");
503 writew(len
- 7168 - 2, baseAddr
+ C320bapi_len
);
504 writeb(1, baseAddr
+ Control_reg
); /* Select Page 1 */
505 memcpy_toio(baseAddr
+ DynPage_addr
, ptr
, 7168);
506 writeb(2, baseAddr
+ Control_reg
); /* Select Page 2 */
507 memcpy_toio(baseAddr
+ DynPage_addr
, ptr
+ 7168, len
- 7168);
512 static int moxa_real_load_code(struct moxa_board_conf
*brd
, const void *ptr
,
515 void __iomem
*baseAddr
= brd
->basemem
;
516 const u16
*uptr
= ptr
;
517 size_t wlen
, len2
, j
;
518 unsigned long key
, loadbuf
, loadlen
, checksum
, checksum_ok
;
519 unsigned int i
, retry
;
522 keycode
= (brd
->boardType
== MOXA_BOARD_CP204J
) ? CP204J_KeyCode
:
525 switch (brd
->boardType
) {
526 case MOXA_BOARD_CP204J
:
527 case MOXA_BOARD_C218_ISA
:
528 case MOXA_BOARD_C218_PCI
:
530 loadbuf
= C218_LoadBuf
;
531 loadlen
= C218DLoad_len
;
532 checksum
= C218check_sum
;
533 checksum_ok
= C218chksum_ok
;
537 keycode
= C320_KeyCode
;
538 loadbuf
= C320_LoadBuf
;
539 loadlen
= C320DLoad_len
;
540 checksum
= C320check_sum
;
541 checksum_ok
= C320chksum_ok
;
547 for (i
= 0; i
< wlen
; i
++)
548 usum
+= le16_to_cpu(uptr
[i
]);
554 len2
= (wlen
> 2048) ? 2048 : wlen
;
556 memcpy_toio(baseAddr
+ loadbuf
, ptr
+ j
, len2
<< 1);
559 writew(len2
, baseAddr
+ loadlen
);
560 writew(0, baseAddr
+ key
);
561 for (i
= 0; i
< 100; i
++) {
562 if (readw(baseAddr
+ key
) == keycode
)
566 if (readw(baseAddr
+ key
) != keycode
)
569 writew(0, baseAddr
+ loadlen
);
570 writew(usum
, baseAddr
+ checksum
);
571 writew(0, baseAddr
+ key
);
572 for (i
= 0; i
< 100; i
++) {
573 if (readw(baseAddr
+ key
) == keycode
)
578 } while ((readb(baseAddr
+ checksum_ok
) != 1) && (retry
< 3));
579 if (readb(baseAddr
+ checksum_ok
) != 1)
582 writew(0, baseAddr
+ key
);
583 for (i
= 0; i
< 600; i
++) {
584 if (readw(baseAddr
+ Magic_no
) == Magic_code
)
588 if (readw(baseAddr
+ Magic_no
) != Magic_code
)
591 if (MOXA_IS_320(brd
)) {
592 if (brd
->busType
== MOXA_BUS_TYPE_PCI
) { /* ASIC board */
593 writew(0x3800, baseAddr
+ TMS320_PORT1
);
594 writew(0x3900, baseAddr
+ TMS320_PORT2
);
595 writew(28499, baseAddr
+ TMS320_CLOCK
);
597 writew(0x3200, baseAddr
+ TMS320_PORT1
);
598 writew(0x3400, baseAddr
+ TMS320_PORT2
);
599 writew(19999, baseAddr
+ TMS320_CLOCK
);
602 writew(1, baseAddr
+ Disable_IRQ
);
603 writew(0, baseAddr
+ Magic_no
);
604 for (i
= 0; i
< 500; i
++) {
605 if (readw(baseAddr
+ Magic_no
) == Magic_code
)
609 if (readw(baseAddr
+ Magic_no
) != Magic_code
)
612 if (MOXA_IS_320(brd
)) {
613 j
= readw(baseAddr
+ Module_cnt
);
616 brd
->numPorts
= j
* 8;
617 writew(j
, baseAddr
+ Module_no
);
618 writew(0, baseAddr
+ Magic_no
);
619 for (i
= 0; i
< 600; i
++) {
620 if (readw(baseAddr
+ Magic_no
) == Magic_code
)
624 if (readw(baseAddr
+ Magic_no
) != Magic_code
)
627 brd
->intNdx
= baseAddr
+ IRQindex
;
628 brd
->intPend
= baseAddr
+ IRQpending
;
629 brd
->intTable
= baseAddr
+ IRQtable
;
634 static int moxa_load_code(struct moxa_board_conf
*brd
, const void *ptr
,
637 void __iomem
*ofsAddr
, *baseAddr
= brd
->basemem
;
638 struct moxa_port
*port
;
642 printk(KERN_ERR
"MOXA: bios length is not even\n");
646 retval
= moxa_real_load_code(brd
, ptr
, len
); /* may change numPorts */
650 switch (brd
->boardType
) {
651 case MOXA_BOARD_C218_ISA
:
652 case MOXA_BOARD_C218_PCI
:
653 case MOXA_BOARD_CP204J
:
655 for (i
= 0; i
< brd
->numPorts
; i
++, port
++) {
658 port
->tableAddr
= baseAddr
+ Extern_table
+
660 ofsAddr
= port
->tableAddr
;
661 writew(C218rx_mask
, ofsAddr
+ RX_mask
);
662 writew(C218tx_mask
, ofsAddr
+ TX_mask
);
663 writew(C218rx_spage
+ i
* C218buf_pageno
, ofsAddr
+ Page_rxb
);
664 writew(readw(ofsAddr
+ Page_rxb
) + C218rx_pageno
, ofsAddr
+ EndPage_rxb
);
666 writew(C218tx_spage
+ i
* C218buf_pageno
, ofsAddr
+ Page_txb
);
667 writew(readw(ofsAddr
+ Page_txb
) + C218tx_pageno
, ofsAddr
+ EndPage_txb
);
673 for (i
= 0; i
< brd
->numPorts
; i
++, port
++) {
676 port
->tableAddr
= baseAddr
+ Extern_table
+
678 ofsAddr
= port
->tableAddr
;
679 switch (brd
->numPorts
) {
681 writew(C320p8rx_mask
, ofsAddr
+ RX_mask
);
682 writew(C320p8tx_mask
, ofsAddr
+ TX_mask
);
683 writew(C320p8rx_spage
+ i
* C320p8buf_pgno
, ofsAddr
+ Page_rxb
);
684 writew(readw(ofsAddr
+ Page_rxb
) + C320p8rx_pgno
, ofsAddr
+ EndPage_rxb
);
685 writew(C320p8tx_spage
+ i
* C320p8buf_pgno
, ofsAddr
+ Page_txb
);
686 writew(readw(ofsAddr
+ Page_txb
) + C320p8tx_pgno
, ofsAddr
+ EndPage_txb
);
690 writew(C320p16rx_mask
, ofsAddr
+ RX_mask
);
691 writew(C320p16tx_mask
, ofsAddr
+ TX_mask
);
692 writew(C320p16rx_spage
+ i
* C320p16buf_pgno
, ofsAddr
+ Page_rxb
);
693 writew(readw(ofsAddr
+ Page_rxb
) + C320p16rx_pgno
, ofsAddr
+ EndPage_rxb
);
694 writew(C320p16tx_spage
+ i
* C320p16buf_pgno
, ofsAddr
+ Page_txb
);
695 writew(readw(ofsAddr
+ Page_txb
) + C320p16tx_pgno
, ofsAddr
+ EndPage_txb
);
699 writew(C320p24rx_mask
, ofsAddr
+ RX_mask
);
700 writew(C320p24tx_mask
, ofsAddr
+ TX_mask
);
701 writew(C320p24rx_spage
+ i
* C320p24buf_pgno
, ofsAddr
+ Page_rxb
);
702 writew(readw(ofsAddr
+ Page_rxb
) + C320p24rx_pgno
, ofsAddr
+ EndPage_rxb
);
703 writew(C320p24tx_spage
+ i
* C320p24buf_pgno
, ofsAddr
+ Page_txb
);
704 writew(readw(ofsAddr
+ Page_txb
), ofsAddr
+ EndPage_txb
);
707 writew(C320p32rx_mask
, ofsAddr
+ RX_mask
);
708 writew(C320p32tx_mask
, ofsAddr
+ TX_mask
);
709 writew(C320p32tx_ofs
, ofsAddr
+ Ofs_txb
);
710 writew(C320p32rx_spage
+ i
* C320p32buf_pgno
, ofsAddr
+ Page_rxb
);
711 writew(readb(ofsAddr
+ Page_rxb
), ofsAddr
+ EndPage_rxb
);
712 writew(C320p32tx_spage
+ i
* C320p32buf_pgno
, ofsAddr
+ Page_txb
);
713 writew(readw(ofsAddr
+ Page_txb
), ofsAddr
+ EndPage_txb
);
722 static int moxa_load_fw(struct moxa_board_conf
*brd
, const struct firmware
*fw
)
724 void *ptr
= fw
->data
;
728 unsigned int a
, lenp
, lencnt
;
731 __le32 magic
; /* 0x34303430 */
733 u8 type
; /* UNIX = 3 */
734 u8 model
; /* C218T=1, C320T=2, CP204=3 */
739 BUILD_BUG_ON(ARRAY_SIZE(hdr
->len
) != ARRAY_SIZE(lens
));
741 if (fw
->size
< MOXA_FW_HDRLEN
) {
742 strcpy(rsn
, "too short (even header won't fit)");
745 if (hdr
->magic
!= cpu_to_le32(0x30343034)) {
746 sprintf(rsn
, "bad magic: %.8x", le32_to_cpu(hdr
->magic
));
749 if (hdr
->type
!= 3) {
750 sprintf(rsn
, "not for linux, type is %u", hdr
->type
);
753 if (moxa_check_fw_model(brd
, hdr
->model
)) {
754 sprintf(rsn
, "not for this card, model is %u", hdr
->model
);
758 len
= MOXA_FW_HDRLEN
;
759 lencnt
= hdr
->model
== 2 ? 5 : 3;
760 for (a
= 0; a
< ARRAY_SIZE(lens
); a
++) {
761 lens
[a
] = le16_to_cpu(hdr
->len
[a
]);
762 if (lens
[a
] && len
+ lens
[a
] <= fw
->size
&&
763 moxa_check_fw(&fw
->data
[len
]))
764 printk(KERN_WARNING
"MOXA firmware: unexpected input "
765 "at offset %u, but going on\n", (u32
)len
);
766 if (!lens
[a
] && a
< lencnt
) {
767 sprintf(rsn
, "too few entries in fw file");
773 if (len
!= fw
->size
) {
774 sprintf(rsn
, "bad length: %u (should be %u)", (u32
)fw
->size
,
779 ptr
+= MOXA_FW_HDRLEN
;
782 strcpy(rsn
, "read above");
784 ret
= moxa_load_bios(brd
, ptr
, lens
[lenp
]);
788 /* we skip the tty section (lens[1]), since we don't need it */
789 ptr
+= lens
[lenp
] + lens
[lenp
+ 1];
790 lenp
+= 2; /* comm */
792 if (hdr
->model
== 2) {
793 ret
= moxa_load_320b(brd
, ptr
, lens
[lenp
]);
796 /* skip another tty */
797 ptr
+= lens
[lenp
] + lens
[lenp
+ 1];
801 ret
= moxa_load_code(brd
, ptr
, lens
[lenp
]);
807 printk(KERN_ERR
"firmware failed to load, reason: %s\n", rsn
);
811 static int moxa_init_board(struct moxa_board_conf
*brd
, struct device
*dev
)
813 const struct firmware
*fw
;
819 brd
->ports
= kcalloc(MAX_PORTS_PER_BOARD
, sizeof(*brd
->ports
),
821 if (brd
->ports
== NULL
) {
822 printk(KERN_ERR
"cannot allocate memory for ports\n");
827 for (i
= 0, p
= brd
->ports
; i
< MAX_PORTS_PER_BOARD
; i
++, p
++) {
828 p
->type
= PORT_16550A
;
829 p
->close_delay
= 5 * HZ
/ 10;
830 p
->cflag
= B9600
| CS8
| CREAD
| CLOCAL
| HUPCL
;
831 init_waitqueue_head(&p
->open_wait
);
834 switch (brd
->boardType
) {
835 case MOXA_BOARD_C218_ISA
:
836 case MOXA_BOARD_C218_PCI
:
837 file
= "c218tunx.cod";
839 case MOXA_BOARD_CP204J
:
840 file
= "cp204unx.cod";
843 file
= "c320tunx.cod";
847 ret
= request_firmware(&fw
, file
, dev
);
849 printk(KERN_ERR
"MOXA: request_firmware failed. Make sure "
850 "you've placed '%s' file into your firmware "
851 "loader directory (e.g. /lib/firmware)\n",
856 ret
= moxa_load_fw(brd
, fw
);
858 release_firmware(fw
);
863 spin_lock_bh(&moxa_lock
);
865 if (!timer_pending(&moxaTimer
))
866 mod_timer(&moxaTimer
, jiffies
+ HZ
/ 50);
867 spin_unlock_bh(&moxa_lock
);
876 static void moxa_board_deinit(struct moxa_board_conf
*brd
)
878 unsigned int a
, opened
;
880 mutex_lock(&moxa_openlock
);
881 spin_lock_bh(&moxa_lock
);
883 spin_unlock_bh(&moxa_lock
);
885 /* pci hot-un-plug support */
886 for (a
= 0; a
< brd
->numPorts
; a
++)
887 if (brd
->ports
[a
].asyncflags
& ASYNC_INITIALIZED
)
888 tty_hangup(brd
->ports
[a
].tty
);
891 for (a
= 0; a
< brd
->numPorts
; a
++)
892 if (brd
->ports
[a
].asyncflags
& ASYNC_INITIALIZED
)
894 mutex_unlock(&moxa_openlock
);
898 mutex_lock(&moxa_openlock
);
901 iounmap(brd
->basemem
);
907 static int __devinit
moxa_pci_probe(struct pci_dev
*pdev
,
908 const struct pci_device_id
*ent
)
910 struct moxa_board_conf
*board
;
912 int board_type
= ent
->driver_data
;
915 retval
= pci_enable_device(pdev
);
917 dev_err(&pdev
->dev
, "can't enable pci device\n");
921 for (i
= 0; i
< MAX_BOARDS
; i
++)
922 if (moxa_boards
[i
].basemem
== NULL
)
926 if (i
>= MAX_BOARDS
) {
927 dev_warn(&pdev
->dev
, "more than %u MOXA Intellio family boards "
928 "found. Board is ignored.\n", MAX_BOARDS
);
932 board
= &moxa_boards
[i
];
934 retval
= pci_request_region(pdev
, 2, "moxa-base");
936 dev_err(&pdev
->dev
, "can't request pci region 2\n");
940 board
->basemem
= ioremap_nocache(pci_resource_start(pdev
, 2), 0x4000);
941 if (board
->basemem
== NULL
) {
942 dev_err(&pdev
->dev
, "can't remap io space 2\n");
946 board
->boardType
= board_type
;
947 switch (board_type
) {
948 case MOXA_BOARD_C218_ISA
:
949 case MOXA_BOARD_C218_PCI
:
953 case MOXA_BOARD_CP204J
:
960 board
->busType
= MOXA_BUS_TYPE_PCI
;
962 retval
= moxa_init_board(board
, &pdev
->dev
);
966 pci_set_drvdata(pdev
, board
);
968 dev_info(&pdev
->dev
, "board '%s' ready (%u ports, firmware loaded)\n",
969 moxa_brdname
[board_type
- 1], board
->numPorts
);
973 iounmap(board
->basemem
);
974 board
->basemem
= NULL
;
976 pci_release_region(pdev
, 2);
981 static void __devexit
moxa_pci_remove(struct pci_dev
*pdev
)
983 struct moxa_board_conf
*brd
= pci_get_drvdata(pdev
);
985 moxa_board_deinit(brd
);
987 pci_release_region(pdev
, 2);
990 static struct pci_driver moxa_pci_driver
= {
992 .id_table
= moxa_pcibrds
,
993 .probe
= moxa_pci_probe
,
994 .remove
= __devexit_p(moxa_pci_remove
)
996 #endif /* CONFIG_PCI */
998 static int __init
moxa_init(void)
1000 unsigned int isabrds
= 0;
1003 printk(KERN_INFO
"MOXA Intellio family driver version %s\n",
1005 moxaDriver
= alloc_tty_driver(MAX_PORTS
+ 1);
1009 moxaDriver
->owner
= THIS_MODULE
;
1010 moxaDriver
->name
= "ttyMX";
1011 moxaDriver
->major
= ttymajor
;
1012 moxaDriver
->minor_start
= 0;
1013 moxaDriver
->type
= TTY_DRIVER_TYPE_SERIAL
;
1014 moxaDriver
->subtype
= SERIAL_TYPE_NORMAL
;
1015 moxaDriver
->init_termios
= tty_std_termios
;
1016 moxaDriver
->init_termios
.c_cflag
= B9600
| CS8
| CREAD
| CLOCAL
| HUPCL
;
1017 moxaDriver
->init_termios
.c_ispeed
= 9600;
1018 moxaDriver
->init_termios
.c_ospeed
= 9600;
1019 moxaDriver
->flags
= TTY_DRIVER_REAL_RAW
;
1020 tty_set_operations(moxaDriver
, &moxa_ops
);
1022 if (tty_register_driver(moxaDriver
)) {
1023 printk(KERN_ERR
"can't register MOXA Smartio tty driver!\n");
1024 put_tty_driver(moxaDriver
);
1028 /* Find the boards defined from module args. */
1031 struct moxa_board_conf
*brd
= moxa_boards
;
1033 for (i
= 0; i
< MAX_BOARDS
; i
++) {
1036 if (type
[i
] == MOXA_BOARD_C218_ISA
||
1037 type
[i
] == MOXA_BOARD_C320_ISA
) {
1038 pr_debug("Moxa board %2d: %s board(baseAddr=%lx)\n",
1039 isabrds
+ 1, moxa_brdname
[type
[i
] - 1],
1041 brd
->boardType
= type
[i
];
1042 brd
->numPorts
= type
[i
] == MOXA_BOARD_C218_ISA
? 8 :
1044 brd
->busType
= MOXA_BUS_TYPE_ISA
;
1045 brd
->basemem
= ioremap_nocache(baseaddr
[i
], 0x4000);
1046 if (!brd
->basemem
) {
1047 printk(KERN_ERR
"MOXA: can't remap %lx\n",
1051 if (moxa_init_board(brd
, NULL
)) {
1052 iounmap(brd
->basemem
);
1053 brd
->basemem
= NULL
;
1057 printk(KERN_INFO
"MOXA isa board found at 0x%.8lu and "
1058 "ready (%u ports, firmware loaded)\n",
1059 baseaddr
[i
], brd
->numPorts
);
1069 retval
= pci_register_driver(&moxa_pci_driver
);
1071 printk(KERN_ERR
"Can't register MOXA pci driver!\n");
1080 static void __exit
moxa_exit(void)
1085 pci_unregister_driver(&moxa_pci_driver
);
1088 for (i
= 0; i
< MAX_BOARDS
; i
++) /* ISA boards */
1089 if (moxa_boards
[i
].ready
)
1090 moxa_board_deinit(&moxa_boards
[i
]);
1092 del_timer_sync(&moxaTimer
);
1094 if (tty_unregister_driver(moxaDriver
))
1095 printk(KERN_ERR
"Couldn't unregister MOXA Intellio family "
1097 put_tty_driver(moxaDriver
);
1100 module_init(moxa_init
);
1101 module_exit(moxa_exit
);
1103 static void moxa_close_port(struct moxa_port
*ch
)
1106 MoxaPortFlushData(ch
, 2);
1107 ch
->asyncflags
&= ~ASYNC_NORMAL_ACTIVE
;
1108 ch
->tty
->driver_data
= NULL
;
1112 static int moxa_block_till_ready(struct tty_struct
*tty
, struct file
*filp
,
1113 struct moxa_port
*ch
)
1120 prepare_to_wait(&ch
->open_wait
, &wait
, TASK_INTERRUPTIBLE
);
1121 if (tty_hung_up_p(filp
)) {
1122 #ifdef SERIAL_DO_RESTART
1123 retval
= -ERESTARTSYS
;
1129 spin_lock_bh(&moxa_lock
);
1131 spin_unlock_bh(&moxa_lock
);
1135 if (signal_pending(current
)) {
1136 retval
= -ERESTARTSYS
;
1141 finish_wait(&ch
->open_wait
, &wait
);
1146 static int moxa_open(struct tty_struct
*tty
, struct file
*filp
)
1148 struct moxa_board_conf
*brd
;
1149 struct moxa_port
*ch
;
1154 if (port
== MAX_PORTS
) {
1155 return capable(CAP_SYS_ADMIN
) ? 0 : -EPERM
;
1157 if (mutex_lock_interruptible(&moxa_openlock
))
1158 return -ERESTARTSYS
;
1159 brd
= &moxa_boards
[port
/ MAX_PORTS_PER_BOARD
];
1161 mutex_unlock(&moxa_openlock
);
1165 ch
= &brd
->ports
[port
% MAX_PORTS_PER_BOARD
];
1167 tty
->driver_data
= ch
;
1169 if (!(ch
->asyncflags
& ASYNC_INITIALIZED
)) {
1170 ch
->statusflags
= 0;
1171 moxa_set_tty_param(tty
, tty
->termios
);
1172 MoxaPortLineCtrl(ch
, 1, 1);
1174 MoxaSetFifo(ch
, ch
->type
== PORT_16550A
);
1175 ch
->asyncflags
|= ASYNC_INITIALIZED
;
1177 mutex_unlock(&moxa_openlock
);
1180 if (!(filp
->f_flags
& O_NONBLOCK
) && !C_CLOCAL(tty
))
1181 retval
= moxa_block_till_ready(tty
, filp
, ch
);
1182 mutex_lock(&moxa_openlock
);
1184 if (ch
->count
) /* 0 means already hung up... */
1185 if (--ch
->count
== 0)
1186 moxa_close_port(ch
);
1188 ch
->asyncflags
|= ASYNC_NORMAL_ACTIVE
;
1189 mutex_unlock(&moxa_openlock
);
1194 static void moxa_close(struct tty_struct
*tty
, struct file
*filp
)
1196 struct moxa_port
*ch
;
1200 if (port
== MAX_PORTS
|| tty_hung_up_p(filp
))
1203 mutex_lock(&moxa_openlock
);
1204 ch
= tty
->driver_data
;
1207 if (tty
->count
== 1 && ch
->count
!= 1) {
1208 printk(KERN_WARNING
"moxa_close: bad serial port count; "
1209 "tty->count is 1, ch->count is %d\n", ch
->count
);
1212 if (--ch
->count
< 0) {
1213 printk(KERN_WARNING
"moxa_close: bad serial port count, "
1214 "device=%s\n", tty
->name
);
1220 ch
->cflag
= tty
->termios
->c_cflag
;
1221 if (ch
->asyncflags
& ASYNC_INITIALIZED
) {
1222 moxa_setup_empty_event(tty
);
1223 tty_wait_until_sent(tty
, 30 * HZ
); /* 30 seconds timeout */
1226 moxa_close_port(ch
);
1228 mutex_unlock(&moxa_openlock
);
1231 static int moxa_write(struct tty_struct
*tty
,
1232 const unsigned char *buf
, int count
)
1234 struct moxa_port
*ch
= tty
->driver_data
;
1240 spin_lock_bh(&moxa_lock
);
1241 len
= MoxaPortWriteData(ch
, buf
, count
);
1242 spin_unlock_bh(&moxa_lock
);
1244 ch
->statusflags
|= LOWWAIT
;
1248 static int moxa_write_room(struct tty_struct
*tty
)
1250 struct moxa_port
*ch
;
1254 ch
= tty
->driver_data
;
1257 return MoxaPortTxFree(ch
);
1260 static void moxa_flush_buffer(struct tty_struct
*tty
)
1262 struct moxa_port
*ch
= tty
->driver_data
;
1266 MoxaPortFlushData(ch
, 1);
1270 static int moxa_chars_in_buffer(struct tty_struct
*tty
)
1272 struct moxa_port
*ch
= tty
->driver_data
;
1276 * Sigh...I have to check if driver_data is NULL here, because
1277 * if an open() fails, the TTY subsystem eventually calls
1278 * tty_wait_until_sent(), which calls the driver's chars_in_buffer()
1279 * routine. And since the open() failed, we return 0 here. TDJ
1284 chars
= MoxaPortTxQueue(ch
);
1287 * Make it possible to wakeup anything waiting for output
1288 * in tty_ioctl.c, etc.
1290 if (!(ch
->statusflags
& EMPTYWAIT
))
1291 moxa_setup_empty_event(tty
);
1297 static int moxa_tiocmget(struct tty_struct
*tty
, struct file
*file
)
1299 struct moxa_port
*ch
;
1300 int flag
= 0, dtr
, rts
;
1302 mutex_lock(&moxa_openlock
);
1303 ch
= tty
->driver_data
;
1305 mutex_unlock(&moxa_openlock
);
1309 MoxaPortGetLineOut(ch
, &dtr
, &rts
);
1314 dtr
= MoxaPortLineStatus(ch
);
1321 mutex_unlock(&moxa_openlock
);
1325 static int moxa_tiocmset(struct tty_struct
*tty
, struct file
*file
,
1326 unsigned int set
, unsigned int clear
)
1328 struct moxa_port
*ch
;
1333 mutex_lock(&moxa_openlock
);
1334 ch
= tty
->driver_data
;
1336 mutex_unlock(&moxa_openlock
);
1340 MoxaPortGetLineOut(ch
, &dtr
, &rts
);
1341 if (set
& TIOCM_RTS
)
1343 if (set
& TIOCM_DTR
)
1345 if (clear
& TIOCM_RTS
)
1347 if (clear
& TIOCM_DTR
)
1349 MoxaPortLineCtrl(ch
, dtr
, rts
);
1350 mutex_unlock(&moxa_openlock
);
1354 static void moxa_throttle(struct tty_struct
*tty
)
1356 struct moxa_port
*ch
= tty
->driver_data
;
1358 ch
->statusflags
|= THROTTLE
;
1361 static void moxa_unthrottle(struct tty_struct
*tty
)
1363 struct moxa_port
*ch
= tty
->driver_data
;
1365 ch
->statusflags
&= ~THROTTLE
;
1368 static void moxa_set_termios(struct tty_struct
*tty
,
1369 struct ktermios
*old_termios
)
1371 struct moxa_port
*ch
= tty
->driver_data
;
1375 moxa_set_tty_param(tty
, old_termios
);
1376 if (!(old_termios
->c_cflag
& CLOCAL
) && C_CLOCAL(tty
))
1377 wake_up_interruptible(&ch
->open_wait
);
1380 static void moxa_stop(struct tty_struct
*tty
)
1382 struct moxa_port
*ch
= tty
->driver_data
;
1386 MoxaPortTxDisable(ch
);
1387 ch
->statusflags
|= TXSTOPPED
;
1391 static void moxa_start(struct tty_struct
*tty
)
1393 struct moxa_port
*ch
= tty
->driver_data
;
1398 if (!(ch
->statusflags
& TXSTOPPED
))
1401 MoxaPortTxEnable(ch
);
1402 ch
->statusflags
&= ~TXSTOPPED
;
1405 static void moxa_hangup(struct tty_struct
*tty
)
1407 struct moxa_port
*ch
;
1409 mutex_lock(&moxa_openlock
);
1410 ch
= tty
->driver_data
;
1412 mutex_unlock(&moxa_openlock
);
1416 moxa_close_port(ch
);
1417 mutex_unlock(&moxa_openlock
);
1419 wake_up_interruptible(&ch
->open_wait
);
1422 static void moxa_new_dcdstate(struct moxa_port
*p
, u8 dcd
)
1426 if (dcd
!= p
->DCDState
&& p
->tty
&& C_CLOCAL(p
->tty
)) {
1433 static int moxa_poll_port(struct moxa_port
*p
, unsigned int handle
,
1436 struct tty_struct
*tty
= p
->tty
;
1437 void __iomem
*ofsAddr
;
1438 unsigned int inited
= p
->asyncflags
& ASYNC_INITIALIZED
;
1442 if ((p
->statusflags
& EMPTYWAIT
) &&
1443 MoxaPortTxQueue(p
) == 0) {
1444 p
->statusflags
&= ~EMPTYWAIT
;
1447 if ((p
->statusflags
& LOWWAIT
) && !tty
->stopped
&&
1448 MoxaPortTxQueue(p
) <= WAKEUP_CHARS
) {
1449 p
->statusflags
&= ~LOWWAIT
;
1453 if (inited
&& !(p
->statusflags
& THROTTLE
) &&
1454 MoxaPortRxQueue(p
) > 0) { /* RX */
1455 MoxaPortReadData(p
);
1456 tty_schedule_flip(tty
);
1459 p
->statusflags
&= ~EMPTYWAIT
;
1460 MoxaPortFlushData(p
, 0); /* flush RX */
1463 if (!handle
) /* nothing else to do */
1466 intr
= readw(ip
); /* port irq status */
1470 writew(0, ip
); /* ACK port */
1471 ofsAddr
= p
->tableAddr
;
1472 if (intr
& IntrTx
) /* disable tx intr */
1473 writew(readw(ofsAddr
+ HostStat
) & ~WakeupTx
,
1474 ofsAddr
+ HostStat
);
1479 if (tty
&& (intr
& IntrBreak
) && !I_IGNBRK(tty
)) { /* BREAK */
1480 tty_insert_flip_char(tty
, 0, TTY_BREAK
);
1481 tty_schedule_flip(tty
);
1484 if (intr
& IntrLine
)
1485 moxa_new_dcdstate(p
, readb(ofsAddr
+ FlagStat
) & DCD_state
);
1490 static void moxa_poll(unsigned long ignored
)
1492 struct moxa_board_conf
*brd
;
1494 unsigned int card
, port
, served
= 0;
1496 spin_lock(&moxa_lock
);
1497 for (card
= 0; card
< MAX_BOARDS
; card
++) {
1498 brd
= &moxa_boards
[card
];
1505 if (readb(brd
->intPend
) == 0xff)
1506 ip
= brd
->intTable
+ readb(brd
->intNdx
);
1508 for (port
= 0; port
< brd
->numPorts
; port
++)
1509 moxa_poll_port(&brd
->ports
[port
], !!ip
, ip
+ port
);
1512 writeb(0, brd
->intPend
); /* ACK */
1514 if (moxaLowWaterChk
) {
1515 struct moxa_port
*p
= brd
->ports
;
1516 for (port
= 0; port
< brd
->numPorts
; port
++, p
++)
1517 if (p
->lowChkFlag
) {
1519 moxa_low_water_check(p
->tableAddr
);
1523 moxaLowWaterChk
= 0;
1526 mod_timer(&moxaTimer
, jiffies
+ HZ
/ 50);
1527 spin_unlock(&moxa_lock
);
1530 /******************************************************************************/
1532 static void moxa_set_tty_param(struct tty_struct
*tty
, struct ktermios
*old_termios
)
1534 register struct ktermios
*ts
= tty
->termios
;
1535 struct moxa_port
*ch
= tty
->driver_data
;
1536 int rts
, cts
, txflow
, rxflow
, xany
, baud
;
1538 rts
= cts
= txflow
= rxflow
= xany
= 0;
1539 if (ts
->c_cflag
& CRTSCTS
)
1541 if (ts
->c_iflag
& IXON
)
1543 if (ts
->c_iflag
& IXOFF
)
1545 if (ts
->c_iflag
& IXANY
)
1548 /* Clear the features we don't support */
1549 ts
->c_cflag
&= ~CMSPAR
;
1550 MoxaPortFlowCtrl(ch
, rts
, cts
, txflow
, rxflow
, xany
);
1551 baud
= MoxaPortSetTermio(ch
, ts
, tty_get_baud_rate(tty
));
1553 baud
= tty_termios_baud_rate(old_termios
);
1554 /* Not put the baud rate into the termios data */
1555 tty_encode_baud_rate(tty
, baud
, baud
);
1558 static void moxa_setup_empty_event(struct tty_struct
*tty
)
1560 struct moxa_port
*ch
= tty
->driver_data
;
1562 spin_lock_bh(&moxa_lock
);
1563 ch
->statusflags
|= EMPTYWAIT
;
1564 spin_unlock_bh(&moxa_lock
);
1567 static void moxa_shut_down(struct moxa_port
*ch
)
1569 struct tty_struct
*tp
= ch
->tty
;
1571 if (!(ch
->asyncflags
& ASYNC_INITIALIZED
))
1574 MoxaPortDisable(ch
);
1577 * If we're a modem control device and HUPCL is on, drop RTS & DTR.
1580 MoxaPortLineCtrl(ch
, 0, 0);
1582 spin_lock_bh(&moxa_lock
);
1583 ch
->asyncflags
&= ~ASYNC_INITIALIZED
;
1584 spin_unlock_bh(&moxa_lock
);
1587 /*****************************************************************************
1588 * Driver level functions: *
1589 *****************************************************************************/
1591 static void MoxaPortFlushData(struct moxa_port
*port
, int mode
)
1593 void __iomem
*ofsAddr
;
1594 if (mode
< 0 || mode
> 2)
1596 ofsAddr
= port
->tableAddr
;
1597 moxafunc(ofsAddr
, FC_FlushQueue
, mode
);
1599 port
->lowChkFlag
= 0;
1600 moxa_low_water_check(ofsAddr
);
1605 * Moxa Port Number Description:
1607 * MOXA serial driver supports up to 4 MOXA-C218/C320 boards. And,
1608 * the port number using in MOXA driver functions will be 0 to 31 for
1609 * first MOXA board, 32 to 63 for second, 64 to 95 for third and 96
1610 * to 127 for fourth. For example, if you setup three MOXA boards,
1611 * first board is C218, second board is C320-16 and third board is
1612 * C320-32. The port number of first board (C218 - 8 ports) is from
1613 * 0 to 7. The port number of second board (C320 - 16 ports) is form
1614 * 32 to 47. The port number of third board (C320 - 32 ports) is from
1615 * 64 to 95. And those port numbers form 8 to 31, 48 to 63 and 96 to
1616 * 127 will be invalid.
1619 * Moxa Functions Description:
1621 * Function 1: Driver initialization routine, this routine must be
1622 * called when initialized driver.
1624 * void MoxaDriverInit();
1627 * Function 2: Moxa driver private IOCTL command processing.
1629 * int MoxaDriverIoctl(unsigned int cmd, unsigned long arg, int port);
1631 * unsigned int cmd : IOCTL command
1632 * unsigned long arg : IOCTL argument
1633 * int port : port number (0 - 127)
1640 * Function 6: Enable this port to start Tx/Rx data.
1642 * void MoxaPortEnable(int port);
1643 * int port : port number (0 - 127)
1646 * Function 7: Disable this port
1648 * void MoxaPortDisable(int port);
1649 * int port : port number (0 - 127)
1652 * Function 10: Setting baud rate of this port.
1654 * speed_t MoxaPortSetBaud(int port, speed_t baud);
1655 * int port : port number (0 - 127)
1656 * long baud : baud rate (50 - 115200)
1658 * return: 0 : this port is invalid or baud < 50
1659 * 50 - 115200 : the real baud rate set to the port, if
1660 * the argument baud is large than maximun
1661 * available baud rate, the real setting
1662 * baud rate will be the maximun baud rate.
1665 * Function 12: Configure the port.
1667 * int MoxaPortSetTermio(int port, struct ktermios *termio, speed_t baud);
1668 * int port : port number (0 - 127)
1669 * struct ktermios * termio : termio structure pointer
1670 * speed_t baud : baud rate
1672 * return: -1 : this port is invalid or termio == NULL
1676 * Function 13: Get the DTR/RTS state of this port.
1678 * int MoxaPortGetLineOut(int port, int *dtrState, int *rtsState);
1679 * int port : port number (0 - 127)
1680 * int * dtrState : pointer to INT to receive the current DTR
1681 * state. (if NULL, this function will not
1682 * write to this address)
1683 * int * rtsState : pointer to INT to receive the current RTS
1684 * state. (if NULL, this function will not
1685 * write to this address)
1687 * return: -1 : this port is invalid
1691 * Function 14: Setting the DTR/RTS output state of this port.
1693 * void MoxaPortLineCtrl(int port, int dtrState, int rtsState);
1694 * int port : port number (0 - 127)
1695 * int dtrState : DTR output state (0: off, 1: on)
1696 * int rtsState : RTS output state (0: off, 1: on)
1699 * Function 15: Setting the flow control of this port.
1701 * void MoxaPortFlowCtrl(int port, int rtsFlow, int ctsFlow, int rxFlow,
1702 * int txFlow,int xany);
1703 * int port : port number (0 - 127)
1704 * int rtsFlow : H/W RTS flow control (0: no, 1: yes)
1705 * int ctsFlow : H/W CTS flow control (0: no, 1: yes)
1706 * int rxFlow : S/W Rx XON/XOFF flow control (0: no, 1: yes)
1707 * int txFlow : S/W Tx XON/XOFF flow control (0: no, 1: yes)
1708 * int xany : S/W XANY flow control (0: no, 1: yes)
1711 * Function 16: Get ths line status of this port
1713 * int MoxaPortLineStatus(int port);
1714 * int port : port number (0 - 127)
1716 * return: Bit 0 - CTS state (0: off, 1: on)
1717 * Bit 1 - DSR state (0: off, 1: on)
1718 * Bit 2 - DCD state (0: off, 1: on)
1721 * Function 19: Flush the Rx/Tx buffer data of this port.
1723 * void MoxaPortFlushData(int port, int mode);
1724 * int port : port number (0 - 127)
1726 * 0 : flush the Rx buffer
1727 * 1 : flush the Tx buffer
1728 * 2 : flush the Rx and Tx buffer
1731 * Function 20: Write data.
1733 * int MoxaPortWriteData(int port, unsigned char * buffer, int length);
1734 * int port : port number (0 - 127)
1735 * unsigned char * buffer : pointer to write data buffer.
1736 * int length : write data length
1738 * return: 0 - length : real write data length
1741 * Function 21: Read data.
1743 * int MoxaPortReadData(int port, struct tty_struct *tty);
1744 * int port : port number (0 - 127)
1745 * struct tty_struct *tty : tty for data
1747 * return: 0 - length : real read data length
1750 * Function 24: Get the Tx buffer current queued data bytes
1752 * int MoxaPortTxQueue(int port);
1753 * int port : port number (0 - 127)
1755 * return: .. : Tx buffer current queued data bytes
1758 * Function 25: Get the Tx buffer current free space
1760 * int MoxaPortTxFree(int port);
1761 * int port : port number (0 - 127)
1763 * return: .. : Tx buffer current free space
1766 * Function 26: Get the Rx buffer current queued data bytes
1768 * int MoxaPortRxQueue(int port);
1769 * int port : port number (0 - 127)
1771 * return: .. : Rx buffer current queued data bytes
1774 * Function 28: Disable port data transmission.
1776 * void MoxaPortTxDisable(int port);
1777 * int port : port number (0 - 127)
1780 * Function 29: Enable port data transmission.
1782 * void MoxaPortTxEnable(int port);
1783 * int port : port number (0 - 127)
1786 * Function 31: Get the received BREAK signal count and reset it.
1788 * int MoxaPortResetBrkCnt(int port);
1789 * int port : port number (0 - 127)
1791 * return: 0 - .. : BREAK signal count
1796 static void MoxaPortEnable(struct moxa_port
*port
)
1798 void __iomem
*ofsAddr
;
1801 ofsAddr
= port
->tableAddr
;
1802 writew(lowwater
, ofsAddr
+ Low_water
);
1803 if (MOXA_IS_320(port
->board
))
1804 moxafunc(ofsAddr
, FC_SetBreakIrq
, 0);
1806 writew(readw(ofsAddr
+ HostStat
) | WakeupBreak
,
1807 ofsAddr
+ HostStat
);
1809 moxafunc(ofsAddr
, FC_SetLineIrq
, Magic_code
);
1810 moxafunc(ofsAddr
, FC_FlushQueue
, 2);
1812 moxafunc(ofsAddr
, FC_EnableCH
, Magic_code
);
1813 MoxaPortLineStatus(port
);
1816 static void MoxaPortDisable(struct moxa_port
*port
)
1818 void __iomem
*ofsAddr
= port
->tableAddr
;
1820 moxafunc(ofsAddr
, FC_SetFlowCtl
, 0); /* disable flow control */
1821 moxafunc(ofsAddr
, FC_ClrLineIrq
, Magic_code
);
1822 writew(0, ofsAddr
+ HostStat
);
1823 moxafunc(ofsAddr
, FC_DisableCH
, Magic_code
);
1826 static speed_t
MoxaPortSetBaud(struct moxa_port
*port
, speed_t baud
)
1828 void __iomem
*ofsAddr
= port
->tableAddr
;
1829 unsigned int clock
, val
;
1832 max
= MOXA_IS_320(port
->board
) ? 460800 : 921600;
1839 moxafunc(ofsAddr
, FC_SetBaud
, val
);
1844 static int MoxaPortSetTermio(struct moxa_port
*port
, struct ktermios
*termio
,
1847 void __iomem
*ofsAddr
;
1851 ofsAddr
= port
->tableAddr
;
1852 cflag
= termio
->c_cflag
; /* termio->c_cflag */
1854 mode
= termio
->c_cflag
& CSIZE
;
1857 else if (mode
== CS6
)
1859 else if (mode
== CS7
)
1861 else if (mode
== CS8
)
1864 if (termio
->c_cflag
& CSTOPB
) {
1872 if (termio
->c_cflag
& PARENB
) {
1873 if (termio
->c_cflag
& PARODD
)
1880 moxafunc(ofsAddr
, FC_SetDataMode
, (u16
)mode
);
1882 if (MOXA_IS_320(port
->board
) && baud
>= 921600)
1885 baud
= MoxaPortSetBaud(port
, baud
);
1887 if (termio
->c_iflag
& (IXON
| IXOFF
| IXANY
)) {
1888 writeb(termio
->c_cc
[VSTART
], ofsAddr
+ FuncArg
);
1889 writeb(termio
->c_cc
[VSTOP
], ofsAddr
+ FuncArg1
);
1890 writeb(FC_SetXonXoff
, ofsAddr
+ FuncCode
);
1891 moxa_wait_finish(ofsAddr
);
1897 static int MoxaPortGetLineOut(struct moxa_port
*port
, int *dtrState
,
1901 *dtrState
= !!(port
->lineCtrl
& DTR_ON
);
1903 *rtsState
= !!(port
->lineCtrl
& RTS_ON
);
1908 static void MoxaPortLineCtrl(struct moxa_port
*port
, int dtr
, int rts
)
1916 port
->lineCtrl
= mode
;
1917 moxafunc(port
->tableAddr
, FC_LineControl
, mode
);
1920 static void MoxaPortFlowCtrl(struct moxa_port
*port
, int rts
, int cts
,
1921 int txflow
, int rxflow
, int txany
)
1926 mode
|= RTS_FlowCtl
;
1928 mode
|= CTS_FlowCtl
;
1935 moxafunc(port
->tableAddr
, FC_SetFlowCtl
, mode
);
1938 static int MoxaPortLineStatus(struct moxa_port
*port
)
1940 void __iomem
*ofsAddr
;
1943 ofsAddr
= port
->tableAddr
;
1944 if (MOXA_IS_320(port
->board
)) {
1945 moxafunc(ofsAddr
, FC_LineStatus
, 0);
1946 val
= readw(ofsAddr
+ FuncArg
);
1948 val
= readw(ofsAddr
+ FlagStat
) >> 4;
1953 spin_lock_bh(&moxa_lock
);
1954 moxa_new_dcdstate(port
, val
& 8);
1955 spin_unlock_bh(&moxa_lock
);
1960 static int MoxaPortWriteData(struct moxa_port
*port
,
1961 const unsigned char *buffer
, int len
)
1963 void __iomem
*baseAddr
, *ofsAddr
, *ofs
;
1964 unsigned int c
, total
;
1965 u16 head
, tail
, tx_mask
, spage
, epage
;
1966 u16 pageno
, pageofs
, bufhead
;
1968 ofsAddr
= port
->tableAddr
;
1969 baseAddr
= port
->board
->basemem
;
1970 tx_mask
= readw(ofsAddr
+ TX_mask
);
1971 spage
= readw(ofsAddr
+ Page_txb
);
1972 epage
= readw(ofsAddr
+ EndPage_txb
);
1973 tail
= readw(ofsAddr
+ TXwptr
);
1974 head
= readw(ofsAddr
+ TXrptr
);
1975 c
= (head
> tail
) ? (head
- tail
- 1) : (head
- tail
+ tx_mask
);
1978 moxaLog
.txcnt
[port
->tty
->index
] += c
;
1980 if (spage
== epage
) {
1981 bufhead
= readw(ofsAddr
+ Ofs_txb
);
1982 writew(spage
, baseAddr
+ Control_reg
);
1985 len
= head
- tail
- 1;
1987 len
= tx_mask
+ 1 - tail
;
1988 len
= (c
> len
) ? len
: c
;
1989 ofs
= baseAddr
+ DynPage_addr
+ bufhead
+ tail
;
1990 memcpy_toio(ofs
, buffer
, len
);
1992 tail
= (tail
+ len
) & tx_mask
;
1996 pageno
= spage
+ (tail
>> 13);
1997 pageofs
= tail
& Page_mask
;
1999 len
= Page_size
- pageofs
;
2002 writeb(pageno
, baseAddr
+ Control_reg
);
2003 ofs
= baseAddr
+ DynPage_addr
+ pageofs
;
2004 memcpy_toio(ofs
, buffer
, len
);
2006 if (++pageno
== epage
)
2011 tail
= (tail
+ total
) & tx_mask
;
2013 writew(tail
, ofsAddr
+ TXwptr
);
2014 writeb(1, ofsAddr
+ CD180TXirq
); /* start to send */
2018 static int MoxaPortReadData(struct moxa_port
*port
)
2020 struct tty_struct
*tty
= port
->tty
;
2022 void __iomem
*baseAddr
, *ofsAddr
, *ofs
;
2023 unsigned int count
, len
, total
;
2024 u16 tail
, rx_mask
, spage
, epage
;
2025 u16 pageno
, pageofs
, bufhead
, head
;
2027 ofsAddr
= port
->tableAddr
;
2028 baseAddr
= port
->board
->basemem
;
2029 head
= readw(ofsAddr
+ RXrptr
);
2030 tail
= readw(ofsAddr
+ RXwptr
);
2031 rx_mask
= readw(ofsAddr
+ RX_mask
);
2032 spage
= readw(ofsAddr
+ Page_rxb
);
2033 epage
= readw(ofsAddr
+ EndPage_rxb
);
2034 count
= (tail
>= head
) ? (tail
- head
) : (tail
- head
+ rx_mask
+ 1);
2039 moxaLog
.rxcnt
[tty
->index
] += total
;
2040 if (spage
== epage
) {
2041 bufhead
= readw(ofsAddr
+ Ofs_rxb
);
2042 writew(spage
, baseAddr
+ Control_reg
);
2044 ofs
= baseAddr
+ DynPage_addr
+ bufhead
+ head
;
2045 len
= (tail
>= head
) ? (tail
- head
) :
2046 (rx_mask
+ 1 - head
);
2047 len
= tty_prepare_flip_string(tty
, &dst
,
2049 memcpy_fromio(dst
, ofs
, len
);
2050 head
= (head
+ len
) & rx_mask
;
2054 pageno
= spage
+ (head
>> 13);
2055 pageofs
= head
& Page_mask
;
2057 writew(pageno
, baseAddr
+ Control_reg
);
2058 ofs
= baseAddr
+ DynPage_addr
+ pageofs
;
2059 len
= tty_prepare_flip_string(tty
, &dst
,
2060 min(Page_size
- pageofs
, count
));
2061 memcpy_fromio(dst
, ofs
, len
);
2064 pageofs
= (pageofs
+ len
) & Page_mask
;
2065 if (pageofs
== 0 && ++pageno
== epage
)
2068 head
= (head
+ total
) & rx_mask
;
2070 writew(head
, ofsAddr
+ RXrptr
);
2071 if (readb(ofsAddr
+ FlagStat
) & Xoff_state
) {
2072 moxaLowWaterChk
= 1;
2073 port
->lowChkFlag
= 1;
2079 static int MoxaPortTxQueue(struct moxa_port
*port
)
2081 void __iomem
*ofsAddr
= port
->tableAddr
;
2082 u16 rptr
, wptr
, mask
;
2084 rptr
= readw(ofsAddr
+ TXrptr
);
2085 wptr
= readw(ofsAddr
+ TXwptr
);
2086 mask
= readw(ofsAddr
+ TX_mask
);
2087 return (wptr
- rptr
) & mask
;
2090 static int MoxaPortTxFree(struct moxa_port
*port
)
2092 void __iomem
*ofsAddr
= port
->tableAddr
;
2093 u16 rptr
, wptr
, mask
;
2095 rptr
= readw(ofsAddr
+ TXrptr
);
2096 wptr
= readw(ofsAddr
+ TXwptr
);
2097 mask
= readw(ofsAddr
+ TX_mask
);
2098 return mask
- ((wptr
- rptr
) & mask
);
2101 static int MoxaPortRxQueue(struct moxa_port
*port
)
2103 void __iomem
*ofsAddr
= port
->tableAddr
;
2104 u16 rptr
, wptr
, mask
;
2106 rptr
= readw(ofsAddr
+ RXrptr
);
2107 wptr
= readw(ofsAddr
+ RXwptr
);
2108 mask
= readw(ofsAddr
+ RX_mask
);
2109 return (wptr
- rptr
) & mask
;
2112 static void MoxaPortTxDisable(struct moxa_port
*port
)
2114 moxafunc(port
->tableAddr
, FC_SetXoffState
, Magic_code
);
2117 static void MoxaPortTxEnable(struct moxa_port
*port
)
2119 moxafunc(port
->tableAddr
, FC_SetXonState
, Magic_code
);
2122 static int moxa_get_serial_info(struct moxa_port
*info
,
2123 struct serial_struct __user
*retinfo
)
2125 struct serial_struct tmp
= {
2127 .line
= info
->tty
->index
,
2128 .flags
= info
->asyncflags
,
2129 .baud_base
= 921600,
2130 .close_delay
= info
->close_delay
2132 return copy_to_user(retinfo
, &tmp
, sizeof(*retinfo
)) ? -EFAULT
: 0;
2136 static int moxa_set_serial_info(struct moxa_port
*info
,
2137 struct serial_struct __user
*new_info
)
2139 struct serial_struct new_serial
;
2141 if (copy_from_user(&new_serial
, new_info
, sizeof(new_serial
)))
2144 if (new_serial
.irq
!= 0 || new_serial
.port
!= 0 ||
2145 new_serial
.custom_divisor
!= 0 ||
2146 new_serial
.baud_base
!= 921600)
2149 if (!capable(CAP_SYS_ADMIN
)) {
2150 if (((new_serial
.flags
& ~ASYNC_USR_MASK
) !=
2151 (info
->asyncflags
& ~ASYNC_USR_MASK
)))
2154 info
->close_delay
= new_serial
.close_delay
* HZ
/ 100;
2156 new_serial
.flags
= (new_serial
.flags
& ~ASYNC_FLAGS
);
2157 new_serial
.flags
|= (info
->asyncflags
& ASYNC_FLAGS
);
2159 MoxaSetFifo(info
, new_serial
.type
== PORT_16550A
);
2161 info
->type
= new_serial
.type
;
2167 /*****************************************************************************
2168 * Static local functions: *
2169 *****************************************************************************/
2171 static void MoxaSetFifo(struct moxa_port
*port
, int enable
)
2173 void __iomem
*ofsAddr
= port
->tableAddr
;
2176 moxafunc(ofsAddr
, FC_SetRxFIFOTrig
, 0);
2177 moxafunc(ofsAddr
, FC_SetTxFIFOCnt
, 1);
2179 moxafunc(ofsAddr
, FC_SetRxFIFOTrig
, 3);
2180 moxafunc(ofsAddr
, FC_SetTxFIFOCnt
, 16);