2 * nozomi.c -- HSDPA driver Broadband Wireless Data Card - Globe Trotter
4 * Written by: Ulf Jakobsson,
8 * Maintained by: Paul Hardwick (p.hardwick@option.com)
11 * Locking code changes for Vodafone by Sphere Systems Ltd,
12 * Andrew Bird (ajb@spheresystems.co.uk )
15 * Source has been ported from an implementation made by Filip Aben @ Option
17 * --------------------------------------------------------------------------
19 * Copyright (c) 2005,2006 Option Wireless Sweden AB
20 * Copyright (c) 2006 Sphere Systems Ltd
21 * Copyright (c) 2006 Option Wireless n/v
22 * All rights Reserved.
24 * This program is free software; you can redistribute it and/or modify
25 * it under the terms of the GNU General Public License as published by
26 * the Free Software Foundation; either version 2 of the License, or
27 * (at your option) any later version.
29 * This program is distributed in the hope that it will be useful,
30 * but WITHOUT ANY WARRANTY; without even the implied warranty of
31 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
32 * GNU General Public License for more details.
34 * You should have received a copy of the GNU General Public License
35 * along with this program; if not, write to the Free Software
36 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
38 * --------------------------------------------------------------------------
41 /* Enable this to have a lot of debug printouts */
44 #include <linux/kernel.h>
45 #include <linux/module.h>
46 #include <linux/pci.h>
47 #include <linux/ioport.h>
48 #include <linux/tty.h>
49 #include <linux/tty_driver.h>
50 #include <linux/tty_flip.h>
51 #include <linux/sched.h>
52 #include <linux/serial.h>
53 #include <linux/interrupt.h>
54 #include <linux/kmod.h>
55 #include <linux/init.h>
56 #include <linux/kfifo.h>
57 #include <linux/uaccess.h>
58 #include <linux/slab.h>
59 #include <asm/byteorder.h>
61 #include <linux/delay.h>
64 #define VERSION_STRING DRIVER_DESC " 2.1d (build date: " \
65 __DATE__ " " __TIME__ ")"
67 /* Macros definitions */
69 /* Default debug printout level */
70 #define NOZOMI_DEBUG_LEVEL 0x00
72 #define P_BUF_SIZE 128
73 #define NFO(_err_flag_, args...) \
75 char tmp[P_BUF_SIZE]; \
76 snprintf(tmp, sizeof(tmp), ##args); \
77 printk(_err_flag_ "[%d] %s(): %s\n", __LINE__, \
81 #define DBG1(args...) D_(0x01, ##args)
82 #define DBG2(args...) D_(0x02, ##args)
83 #define DBG3(args...) D_(0x04, ##args)
84 #define DBG4(args...) D_(0x08, ##args)
85 #define DBG5(args...) D_(0x10, ##args)
86 #define DBG6(args...) D_(0x20, ##args)
87 #define DBG7(args...) D_(0x40, ##args)
88 #define DBG8(args...) D_(0x80, ##args)
91 /* Do we need this settable at runtime? */
92 static int debug
= NOZOMI_DEBUG_LEVEL
;
94 #define D(lvl, args...) do \
95 {if (lvl & debug) NFO(KERN_DEBUG, ##args); } \
97 #define D_(lvl, args...) D(lvl, ##args)
99 /* These printouts are always printed */
103 #define D_(lvl, args...)
106 /* TODO: rewrite to optimize macros... */
108 #define TMP_BUF_MAX 256
110 #define DUMP(buf__,len__) \
112 char tbuf[TMP_BUF_MAX] = {0};\
114 snprintf(tbuf, len__ > TMP_BUF_MAX ? TMP_BUF_MAX : len__, "%s", buf__);\
115 if (tbuf[len__-2] == '\r') {\
116 tbuf[len__-2] = 'r';\
118 DBG1("SENDING: '%s' (%d+n)", tbuf, len__);\
120 DBG1("SENDING: '%s' (%d)", tbuf, len__);\
125 #define NOZOMI_NAME "nozomi"
126 #define NOZOMI_NAME_TTY "nozomi_tty"
127 #define DRIVER_DESC "Nozomi driver"
129 #define NTTY_TTY_MAXMINORS 256
130 #define NTTY_FIFO_BUFFER_SIZE 8192
132 /* Must be power of 2 */
133 #define FIFO_BUFFER_SIZE_UL 8192
135 /* Size of tmp send buffer to card */
136 #define SEND_BUF_MAX 1024
137 #define RECEIVE_BUF_MAX 4
140 #define R_IIR 0x0000 /* Interrupt Identity Register */
141 #define R_FCR 0x0000 /* Flow Control Register */
142 #define R_IER 0x0004 /* Interrupt Enable Register */
144 #define CONFIG_MAGIC 0xEFEFFEFE
145 #define TOGGLE_VALID 0x0000
147 /* Definition of interrupt tokens */
148 #define MDM_DL1 0x0001
149 #define MDM_UL1 0x0002
150 #define MDM_DL2 0x0004
151 #define MDM_UL2 0x0008
152 #define DIAG_DL1 0x0010
153 #define DIAG_DL2 0x0020
154 #define DIAG_UL 0x0040
155 #define APP1_DL 0x0080
156 #define APP1_UL 0x0100
157 #define APP2_DL 0x0200
158 #define APP2_UL 0x0400
159 #define CTRL_DL 0x0800
160 #define CTRL_UL 0x1000
163 #define MDM_DL (MDM_DL1 | MDM_DL2)
164 #define MDM_UL (MDM_UL1 | MDM_UL2)
165 #define DIAG_DL (DIAG_DL1 | DIAG_DL2)
167 /* modem signal definition */
168 #define CTRL_DSR 0x0001
169 #define CTRL_DCD 0x0002
170 #define CTRL_RI 0x0004
171 #define CTRL_CTS 0x0008
173 #define CTRL_DTR 0x0001
174 #define CTRL_RTS 0x0002
177 #define NOZOMI_MAX_PORTS 5
178 #define NOZOMI_MAX_CARDS (NTTY_TTY_MAXMINORS / MAX_PORT)
180 /* Type definitions */
183 * There are two types of nozomi cards,
184 * one with 2048 memory and with 8192 memory
187 F32_2
= 2048, /* 512 bytes downlink + uplink * 2 -> 2048 */
188 F32_8
= 8192, /* 3072 bytes downl. + 1024 bytes uplink * 2 -> 8192 */
191 /* Initialization states a card can be in */
193 NOZOMI_STATE_UKNOWN
= 0,
194 NOZOMI_STATE_ENABLED
= 1, /* pci device enabled */
195 NOZOMI_STATE_ALLOCATED
= 2, /* config setup done */
196 NOZOMI_STATE_READY
= 3, /* flowcontrols received */
199 /* Two different toggle channels exist */
205 /* Port definition for the card regarding flow control */
206 enum ctrl_port_type
{
215 /* Ports that the nozomi has */
229 unsigned int enabled
:5; /*
230 * Toggle fields are valid if enabled is 0,
231 * else A-channels must always be used.
233 unsigned int diag_dl
:1;
234 unsigned int mdm_dl
:1;
235 unsigned int mdm_ul
:1;
236 } __attribute__ ((packed
));
238 /* Configuration table to read at startup of card */
239 /* Is for now only needed during initialization phase */
240 struct config_table
{
242 u16 product_information
;
245 struct toggles toggle
;
248 * If this is 64, it can hold
249 * 60 bytes + 4 that is length field
255 * If this is 64, it can hold
256 * 60 bytes + 4 that is length field
271 } __attribute__ ((packed
));
273 /* This stores all control downlink flags */
276 unsigned int reserved
:4;
281 } __attribute__ ((packed
));
283 /* This stores all control uplink flags */
286 unsigned int reserved
:6;
289 } __attribute__ ((packed
));
294 /* This represents the toggle information */
296 unsigned int mdm_ul
:1;
297 unsigned int mdm_dl
:1;
298 unsigned int diag_dl
:1;
299 unsigned int enabled
:5; /*
300 * Toggle fields are valid if enabled is 0,
301 * else A-channels must always be used.
303 } __attribute__ ((packed
));
305 /* Configuration table to read at startup of card */
306 struct config_table
{
309 u16 product_information
;
310 struct toggles toggle
;
314 * If this is 64, it can hold
315 * 60 bytes + 4 that is length field
331 } __attribute__ ((packed
));
333 /* This stores all control downlink flags */
339 unsigned int reserverd
:4;
341 } __attribute__ ((packed
));
343 /* This stores all control uplink flags */
347 unsigned int reserved
:6;
349 } __attribute__ ((packed
));
352 /* This holds all information that is needed regarding a port */
354 struct tty_port port
;
355 u8 update_flow_control
;
356 struct ctrl_ul ctrl_ul
;
357 struct ctrl_dl ctrl_dl
;
358 struct kfifo fifo_ul
;
359 void __iomem
*dl_addr
[2];
362 void __iomem
*ul_addr
[2];
367 wait_queue_head_t tty_wait
;
368 struct async_icount tty_icount
;
373 /* Private data one for each card in the system */
375 void __iomem
*base_addr
;
378 /* Pointers to registers */
379 void __iomem
*reg_iir
;
380 void __iomem
*reg_fcr
;
381 void __iomem
*reg_ier
;
384 enum card_type card_type
;
385 struct config_table config_table
; /* Configuration table */
386 struct pci_dev
*pdev
;
387 struct port port
[NOZOMI_MAX_PORTS
];
390 spinlock_t spin_mutex
; /* secures access to registers and tty */
392 unsigned int index_start
;
393 enum card_state state
;
397 /* This is a data packet that is read or written to/from card */
399 u32 size
; /* size is the length of the data buffer */
401 } __attribute__ ((packed
));
403 /* Global variables */
404 static const struct pci_device_id nozomi_pci_tbl
[] __devinitconst
= {
405 {PCI_DEVICE(0x1931, 0x000c)}, /* Nozomi HSDPA */
409 MODULE_DEVICE_TABLE(pci
, nozomi_pci_tbl
);
411 static struct nozomi
*ndevs
[NOZOMI_MAX_CARDS
];
412 static struct tty_driver
*ntty_driver
;
414 static const struct tty_port_operations noz_tty_port_ops
;
417 * find card by tty_index
419 static inline struct nozomi
*get_dc_by_tty(const struct tty_struct
*tty
)
421 return tty
? ndevs
[tty
->index
/ MAX_PORT
] : NULL
;
424 static inline struct port
*get_port_by_tty(const struct tty_struct
*tty
)
426 struct nozomi
*ndev
= get_dc_by_tty(tty
);
427 return ndev
? &ndev
->port
[tty
->index
% MAX_PORT
] : NULL
;
436 static void read_mem32(u32
*buf
, const void __iomem
*mem_addr_start
,
440 const u32 __iomem
*ptr
= mem_addr_start
;
443 if (unlikely(!ptr
|| !buf
))
446 /* shortcut for extremely often used cases */
447 switch (size_bytes
) {
448 case 2: /* 2 bytes */
450 *buf16
= __le16_to_cpu(readw(ptr
));
453 case 4: /* 4 bytes */
454 *(buf
) = __le32_to_cpu(readl(ptr
));
459 while (i
< size_bytes
) {
460 if (size_bytes
- i
== 2) {
461 /* Handle 2 bytes in the end */
463 *(buf16
) = __le16_to_cpu(readw(ptr
));
467 *(buf
) = __le32_to_cpu(readl(ptr
));
482 static u32
write_mem32(void __iomem
*mem_addr_start
, const u32
*buf
,
486 u32 __iomem
*ptr
= mem_addr_start
;
489 if (unlikely(!ptr
|| !buf
))
492 /* shortcut for extremely often used cases */
493 switch (size_bytes
) {
494 case 2: /* 2 bytes */
495 buf16
= (const u16
*)buf
;
496 writew(__cpu_to_le16(*buf16
), ptr
);
500 * also needs to write 4 bytes in this case
501 * so falling through..
503 case 4: /* 4 bytes */
504 writel(__cpu_to_le32(*buf
), ptr
);
509 while (i
< size_bytes
) {
510 if (size_bytes
- i
== 2) {
512 buf16
= (const u16
*)buf
;
513 writew(__cpu_to_le16(*buf16
), ptr
);
517 writel(__cpu_to_le32(*buf
), ptr
);
526 /* Setup pointers to different channels and also setup buffer sizes. */
527 static void setup_memory(struct nozomi
*dc
)
529 void __iomem
*offset
= dc
->base_addr
+ dc
->config_table
.dl_start
;
530 /* The length reported is including the length field of 4 bytes,
531 * hence subtract with 4.
533 const u16 buff_offset
= 4;
535 /* Modem port dl configuration */
536 dc
->port
[PORT_MDM
].dl_addr
[CH_A
] = offset
;
537 dc
->port
[PORT_MDM
].dl_addr
[CH_B
] =
538 (offset
+= dc
->config_table
.dl_mdm_len1
);
539 dc
->port
[PORT_MDM
].dl_size
[CH_A
] =
540 dc
->config_table
.dl_mdm_len1
- buff_offset
;
541 dc
->port
[PORT_MDM
].dl_size
[CH_B
] =
542 dc
->config_table
.dl_mdm_len2
- buff_offset
;
544 /* Diag port dl configuration */
545 dc
->port
[PORT_DIAG
].dl_addr
[CH_A
] =
546 (offset
+= dc
->config_table
.dl_mdm_len2
);
547 dc
->port
[PORT_DIAG
].dl_size
[CH_A
] =
548 dc
->config_table
.dl_diag_len1
- buff_offset
;
549 dc
->port
[PORT_DIAG
].dl_addr
[CH_B
] =
550 (offset
+= dc
->config_table
.dl_diag_len1
);
551 dc
->port
[PORT_DIAG
].dl_size
[CH_B
] =
552 dc
->config_table
.dl_diag_len2
- buff_offset
;
554 /* App1 port dl configuration */
555 dc
->port
[PORT_APP1
].dl_addr
[CH_A
] =
556 (offset
+= dc
->config_table
.dl_diag_len2
);
557 dc
->port
[PORT_APP1
].dl_size
[CH_A
] =
558 dc
->config_table
.dl_app1_len
- buff_offset
;
560 /* App2 port dl configuration */
561 dc
->port
[PORT_APP2
].dl_addr
[CH_A
] =
562 (offset
+= dc
->config_table
.dl_app1_len
);
563 dc
->port
[PORT_APP2
].dl_size
[CH_A
] =
564 dc
->config_table
.dl_app2_len
- buff_offset
;
566 /* Ctrl dl configuration */
567 dc
->port
[PORT_CTRL
].dl_addr
[CH_A
] =
568 (offset
+= dc
->config_table
.dl_app2_len
);
569 dc
->port
[PORT_CTRL
].dl_size
[CH_A
] =
570 dc
->config_table
.dl_ctrl_len
- buff_offset
;
572 offset
= dc
->base_addr
+ dc
->config_table
.ul_start
;
574 /* Modem Port ul configuration */
575 dc
->port
[PORT_MDM
].ul_addr
[CH_A
] = offset
;
576 dc
->port
[PORT_MDM
].ul_size
[CH_A
] =
577 dc
->config_table
.ul_mdm_len1
- buff_offset
;
578 dc
->port
[PORT_MDM
].ul_addr
[CH_B
] =
579 (offset
+= dc
->config_table
.ul_mdm_len1
);
580 dc
->port
[PORT_MDM
].ul_size
[CH_B
] =
581 dc
->config_table
.ul_mdm_len2
- buff_offset
;
583 /* Diag port ul configuration */
584 dc
->port
[PORT_DIAG
].ul_addr
[CH_A
] =
585 (offset
+= dc
->config_table
.ul_mdm_len2
);
586 dc
->port
[PORT_DIAG
].ul_size
[CH_A
] =
587 dc
->config_table
.ul_diag_len
- buff_offset
;
589 /* App1 port ul configuration */
590 dc
->port
[PORT_APP1
].ul_addr
[CH_A
] =
591 (offset
+= dc
->config_table
.ul_diag_len
);
592 dc
->port
[PORT_APP1
].ul_size
[CH_A
] =
593 dc
->config_table
.ul_app1_len
- buff_offset
;
595 /* App2 port ul configuration */
596 dc
->port
[PORT_APP2
].ul_addr
[CH_A
] =
597 (offset
+= dc
->config_table
.ul_app1_len
);
598 dc
->port
[PORT_APP2
].ul_size
[CH_A
] =
599 dc
->config_table
.ul_app2_len
- buff_offset
;
601 /* Ctrl ul configuration */
602 dc
->port
[PORT_CTRL
].ul_addr
[CH_A
] =
603 (offset
+= dc
->config_table
.ul_app2_len
);
604 dc
->port
[PORT_CTRL
].ul_size
[CH_A
] =
605 dc
->config_table
.ul_ctrl_len
- buff_offset
;
608 /* Dump config table under initalization phase */
610 static void dump_table(const struct nozomi
*dc
)
612 DBG3("signature: 0x%08X", dc
->config_table
.signature
);
613 DBG3("version: 0x%04X", dc
->config_table
.version
);
614 DBG3("product_information: 0x%04X", \
615 dc
->config_table
.product_information
);
616 DBG3("toggle enabled: %d", dc
->config_table
.toggle
.enabled
);
617 DBG3("toggle up_mdm: %d", dc
->config_table
.toggle
.mdm_ul
);
618 DBG3("toggle dl_mdm: %d", dc
->config_table
.toggle
.mdm_dl
);
619 DBG3("toggle dl_dbg: %d", dc
->config_table
.toggle
.diag_dl
);
621 DBG3("dl_start: 0x%04X", dc
->config_table
.dl_start
);
622 DBG3("dl_mdm_len0: 0x%04X, %d", dc
->config_table
.dl_mdm_len1
,
623 dc
->config_table
.dl_mdm_len1
);
624 DBG3("dl_mdm_len1: 0x%04X, %d", dc
->config_table
.dl_mdm_len2
,
625 dc
->config_table
.dl_mdm_len2
);
626 DBG3("dl_diag_len0: 0x%04X, %d", dc
->config_table
.dl_diag_len1
,
627 dc
->config_table
.dl_diag_len1
);
628 DBG3("dl_diag_len1: 0x%04X, %d", dc
->config_table
.dl_diag_len2
,
629 dc
->config_table
.dl_diag_len2
);
630 DBG3("dl_app1_len: 0x%04X, %d", dc
->config_table
.dl_app1_len
,
631 dc
->config_table
.dl_app1_len
);
632 DBG3("dl_app2_len: 0x%04X, %d", dc
->config_table
.dl_app2_len
,
633 dc
->config_table
.dl_app2_len
);
634 DBG3("dl_ctrl_len: 0x%04X, %d", dc
->config_table
.dl_ctrl_len
,
635 dc
->config_table
.dl_ctrl_len
);
636 DBG3("ul_start: 0x%04X, %d", dc
->config_table
.ul_start
,
637 dc
->config_table
.ul_start
);
638 DBG3("ul_mdm_len[0]: 0x%04X, %d", dc
->config_table
.ul_mdm_len1
,
639 dc
->config_table
.ul_mdm_len1
);
640 DBG3("ul_mdm_len[1]: 0x%04X, %d", dc
->config_table
.ul_mdm_len2
,
641 dc
->config_table
.ul_mdm_len2
);
642 DBG3("ul_diag_len: 0x%04X, %d", dc
->config_table
.ul_diag_len
,
643 dc
->config_table
.ul_diag_len
);
644 DBG3("ul_app1_len: 0x%04X, %d", dc
->config_table
.ul_app1_len
,
645 dc
->config_table
.ul_app1_len
);
646 DBG3("ul_app2_len: 0x%04X, %d", dc
->config_table
.ul_app2_len
,
647 dc
->config_table
.ul_app2_len
);
648 DBG3("ul_ctrl_len: 0x%04X, %d", dc
->config_table
.ul_ctrl_len
,
649 dc
->config_table
.ul_ctrl_len
);
652 static inline void dump_table(const struct nozomi
*dc
) { }
656 * Read configuration table from card under intalization phase
657 * Returns 1 if ok, else 0
659 static int nozomi_read_config_table(struct nozomi
*dc
)
661 read_mem32((u32
*) &dc
->config_table
, dc
->base_addr
+ 0,
662 sizeof(struct config_table
));
664 if (dc
->config_table
.signature
!= CONFIG_MAGIC
) {
665 dev_err(&dc
->pdev
->dev
, "ConfigTable Bad! 0x%08X != 0x%08X\n",
666 dc
->config_table
.signature
, CONFIG_MAGIC
);
670 if ((dc
->config_table
.version
== 0)
671 || (dc
->config_table
.toggle
.enabled
== TOGGLE_VALID
)) {
673 DBG1("Second phase, configuring card");
677 dc
->port
[PORT_MDM
].toggle_ul
= dc
->config_table
.toggle
.mdm_ul
;
678 dc
->port
[PORT_MDM
].toggle_dl
= dc
->config_table
.toggle
.mdm_dl
;
679 dc
->port
[PORT_DIAG
].toggle_dl
= dc
->config_table
.toggle
.diag_dl
;
680 DBG1("toggle ports: MDM UL:%d MDM DL:%d, DIAG DL:%d",
681 dc
->port
[PORT_MDM
].toggle_ul
,
682 dc
->port
[PORT_MDM
].toggle_dl
, dc
->port
[PORT_DIAG
].toggle_dl
);
686 for (i
= PORT_MDM
; i
< MAX_PORT
; i
++) {
687 memset(&dc
->port
[i
].ctrl_dl
, 0, sizeof(struct ctrl_dl
));
688 memset(&dc
->port
[i
].ctrl_ul
, 0, sizeof(struct ctrl_ul
));
691 /* Enable control channel */
692 dc
->last_ier
= dc
->last_ier
| CTRL_DL
;
693 writew(dc
->last_ier
, dc
->reg_ier
);
695 dc
->state
= NOZOMI_STATE_ALLOCATED
;
696 dev_info(&dc
->pdev
->dev
, "Initialization OK!\n");
700 if ((dc
->config_table
.version
> 0)
701 && (dc
->config_table
.toggle
.enabled
!= TOGGLE_VALID
)) {
703 DBG1("First phase: pushing upload buffers, clearing download");
705 dev_info(&dc
->pdev
->dev
, "Version of card: %d\n",
706 dc
->config_table
.version
);
708 /* Here we should disable all I/O over F32. */
712 * We should send ALL channel pair tokens back along
716 /* push upload modem buffers */
717 write_mem32(dc
->port
[PORT_MDM
].ul_addr
[CH_A
],
719 write_mem32(dc
->port
[PORT_MDM
].ul_addr
[CH_B
],
722 writew(MDM_UL
| DIAG_DL
| MDM_DL
, dc
->reg_fcr
);
724 DBG1("First phase done");
730 /* Enable uplink interrupts */
731 static void enable_transmit_ul(enum port_type port
, struct nozomi
*dc
)
733 static const u16 mask
[] = {MDM_UL
, DIAG_UL
, APP1_UL
, APP2_UL
, CTRL_UL
};
735 if (port
< NOZOMI_MAX_PORTS
) {
736 dc
->last_ier
|= mask
[port
];
737 writew(dc
->last_ier
, dc
->reg_ier
);
739 dev_err(&dc
->pdev
->dev
, "Called with wrong port?\n");
743 /* Disable uplink interrupts */
744 static void disable_transmit_ul(enum port_type port
, struct nozomi
*dc
)
746 static const u16 mask
[] =
747 {~MDM_UL
, ~DIAG_UL
, ~APP1_UL
, ~APP2_UL
, ~CTRL_UL
};
749 if (port
< NOZOMI_MAX_PORTS
) {
750 dc
->last_ier
&= mask
[port
];
751 writew(dc
->last_ier
, dc
->reg_ier
);
753 dev_err(&dc
->pdev
->dev
, "Called with wrong port?\n");
757 /* Enable downlink interrupts */
758 static void enable_transmit_dl(enum port_type port
, struct nozomi
*dc
)
760 static const u16 mask
[] = {MDM_DL
, DIAG_DL
, APP1_DL
, APP2_DL
, CTRL_DL
};
762 if (port
< NOZOMI_MAX_PORTS
) {
763 dc
->last_ier
|= mask
[port
];
764 writew(dc
->last_ier
, dc
->reg_ier
);
766 dev_err(&dc
->pdev
->dev
, "Called with wrong port?\n");
770 /* Disable downlink interrupts */
771 static void disable_transmit_dl(enum port_type port
, struct nozomi
*dc
)
773 static const u16 mask
[] =
774 {~MDM_DL
, ~DIAG_DL
, ~APP1_DL
, ~APP2_DL
, ~CTRL_DL
};
776 if (port
< NOZOMI_MAX_PORTS
) {
777 dc
->last_ier
&= mask
[port
];
778 writew(dc
->last_ier
, dc
->reg_ier
);
780 dev_err(&dc
->pdev
->dev
, "Called with wrong port?\n");
785 * Return 1 - send buffer to card and ack.
786 * Return 0 - don't ack, don't send buffer to card.
788 static int send_data(enum port_type index
, struct nozomi
*dc
)
791 struct port
*port
= &dc
->port
[index
];
792 const u8 toggle
= port
->toggle_ul
;
793 void __iomem
*addr
= port
->ul_addr
[toggle
];
794 const u32 ul_size
= port
->ul_size
[toggle
];
795 struct tty_struct
*tty
= tty_port_tty_get(&port
->port
);
797 /* Get data from tty and place in buf for now */
798 size
= kfifo_out(&port
->fifo_ul
, dc
->send_buf
,
799 ul_size
< SEND_BUF_MAX
? ul_size
: SEND_BUF_MAX
);
802 DBG4("No more data to send, disable link:");
807 /* DUMP(buf, size); */
809 /* Write length + data */
810 write_mem32(addr
, (u32
*) &size
, 4);
811 write_mem32(addr
+ 4, (u32
*) dc
->send_buf
, size
);
820 /* If all data has been read, return 1, else 0 */
821 static int receive_data(enum port_type index
, struct nozomi
*dc
)
823 u8 buf
[RECEIVE_BUF_MAX
] = { 0 };
826 struct port
*port
= &dc
->port
[index
];
827 void __iomem
*addr
= port
->dl_addr
[port
->toggle_dl
];
828 struct tty_struct
*tty
= tty_port_tty_get(&port
->port
);
831 if (unlikely(!tty
)) {
832 DBG1("tty not open for port: %d?", index
);
836 read_mem32((u32
*) &size
, addr
, 4);
837 /* DBG1( "%d bytes port: %d", size, index); */
839 if (test_bit(TTY_THROTTLED
, &tty
->flags
)) {
840 DBG1("No room in tty, don't read data, don't ack interrupt, "
841 "disable interrupt");
843 /* disable interrupt in downlink... */
844 disable_transmit_dl(index
, dc
);
849 if (unlikely(size
== 0)) {
850 dev_err(&dc
->pdev
->dev
, "size == 0?\n");
856 read_mem32((u32
*) buf
, addr
+ offset
, RECEIVE_BUF_MAX
);
859 tty_insert_flip_char(tty
, buf
[0], TTY_NORMAL
);
861 } else if (size
< RECEIVE_BUF_MAX
) {
862 size
-= tty_insert_flip_string(tty
, (char *) buf
, size
);
864 i
= tty_insert_flip_string(tty
, \
865 (char *) buf
, RECEIVE_BUF_MAX
);
871 set_bit(index
, &dc
->flip
);
878 /* Debug for interrupts */
880 static char *interrupt2str(u16 interrupt
)
882 static char buf
[TMP_BUF_MAX
];
885 interrupt
& MDM_DL1
? p
+= snprintf(p
, TMP_BUF_MAX
, "MDM_DL1 ") : NULL
;
886 interrupt
& MDM_DL2
? p
+= snprintf(p
, TMP_BUF_MAX
- (p
- buf
),
889 interrupt
& MDM_UL1
? p
+= snprintf(p
, TMP_BUF_MAX
- (p
- buf
),
891 interrupt
& MDM_UL2
? p
+= snprintf(p
, TMP_BUF_MAX
- (p
- buf
),
894 interrupt
& DIAG_DL1
? p
+= snprintf(p
, TMP_BUF_MAX
- (p
- buf
),
896 interrupt
& DIAG_DL2
? p
+= snprintf(p
, TMP_BUF_MAX
- (p
- buf
),
899 interrupt
& DIAG_UL
? p
+= snprintf(p
, TMP_BUF_MAX
- (p
- buf
),
902 interrupt
& APP1_DL
? p
+= snprintf(p
, TMP_BUF_MAX
- (p
- buf
),
904 interrupt
& APP2_DL
? p
+= snprintf(p
, TMP_BUF_MAX
- (p
- buf
),
907 interrupt
& APP1_UL
? p
+= snprintf(p
, TMP_BUF_MAX
- (p
- buf
),
909 interrupt
& APP2_UL
? p
+= snprintf(p
, TMP_BUF_MAX
- (p
- buf
),
912 interrupt
& CTRL_DL
? p
+= snprintf(p
, TMP_BUF_MAX
- (p
- buf
),
914 interrupt
& CTRL_UL
? p
+= snprintf(p
, TMP_BUF_MAX
- (p
- buf
),
917 interrupt
& RESET
? p
+= snprintf(p
, TMP_BUF_MAX
- (p
- buf
),
925 * Receive flow control
926 * Return 1 - If ok, else 0
928 static int receive_flow_control(struct nozomi
*dc
)
930 enum port_type port
= PORT_MDM
;
931 struct ctrl_dl ctrl_dl
;
932 struct ctrl_dl old_ctrl
;
935 read_mem32((u32
*) &ctrl_dl
, dc
->port
[PORT_CTRL
].dl_addr
[CH_A
], 2);
937 switch (ctrl_dl
.port
) {
939 DBG1("The Base Band sends this value as a response to a "
940 "request for IMSI detach sent over the control "
941 "channel uplink (see section 7.6.1).");
949 enable_ier
= DIAG_DL
;
953 enable_ier
= APP1_DL
;
957 enable_ier
= APP2_DL
;
958 if (dc
->state
== NOZOMI_STATE_ALLOCATED
) {
960 * After card initialization the flow control
961 * received for APP2 is always the last
963 dc
->state
= NOZOMI_STATE_READY
;
964 dev_info(&dc
->pdev
->dev
, "Device READY!\n");
968 dev_err(&dc
->pdev
->dev
,
969 "ERROR: flow control received for non-existing port\n");
973 DBG1("0x%04X->0x%04X", *((u16
*)&dc
->port
[port
].ctrl_dl
),
976 old_ctrl
= dc
->port
[port
].ctrl_dl
;
977 dc
->port
[port
].ctrl_dl
= ctrl_dl
;
979 if (old_ctrl
.CTS
== 1 && ctrl_dl
.CTS
== 0) {
980 DBG1("Disable interrupt (0x%04X) on port: %d",
982 disable_transmit_ul(port
, dc
);
984 } else if (old_ctrl
.CTS
== 0 && ctrl_dl
.CTS
== 1) {
986 if (kfifo_len(&dc
->port
[port
].fifo_ul
)) {
987 DBG1("Enable interrupt (0x%04X) on port: %d",
989 DBG1("Data in buffer [%d], enable transmit! ",
990 kfifo_len(&dc
->port
[port
].fifo_ul
));
991 enable_transmit_ul(port
, dc
);
993 DBG1("No data in buffer...");
997 if (*(u16
*)&old_ctrl
== *(u16
*)&ctrl_dl
) {
998 DBG1(" No change in mctrl");
1001 /* Update statistics */
1002 if (old_ctrl
.CTS
!= ctrl_dl
.CTS
)
1003 dc
->port
[port
].tty_icount
.cts
++;
1004 if (old_ctrl
.DSR
!= ctrl_dl
.DSR
)
1005 dc
->port
[port
].tty_icount
.dsr
++;
1006 if (old_ctrl
.RI
!= ctrl_dl
.RI
)
1007 dc
->port
[port
].tty_icount
.rng
++;
1008 if (old_ctrl
.DCD
!= ctrl_dl
.DCD
)
1009 dc
->port
[port
].tty_icount
.dcd
++;
1011 wake_up_interruptible(&dc
->port
[port
].tty_wait
);
1013 DBG1("port: %d DCD(%d), CTS(%d), RI(%d), DSR(%d)",
1015 dc
->port
[port
].tty_icount
.dcd
, dc
->port
[port
].tty_icount
.cts
,
1016 dc
->port
[port
].tty_icount
.rng
, dc
->port
[port
].tty_icount
.dsr
);
1021 static enum ctrl_port_type
port2ctrl(enum port_type port
,
1022 const struct nozomi
*dc
)
1034 dev_err(&dc
->pdev
->dev
,
1035 "ERROR: send flow control " \
1036 "received for non-existing port\n");
1042 * Send flow control, can only update one channel at a time
1043 * Return 0 - If we have updated all flow control
1044 * Return 1 - If we need to update more flow control, ack current enable more
1046 static int send_flow_control(struct nozomi
*dc
)
1048 u32 i
, more_flow_control_to_be_updated
= 0;
1051 for (i
= PORT_MDM
; i
< MAX_PORT
; i
++) {
1052 if (dc
->port
[i
].update_flow_control
) {
1053 if (more_flow_control_to_be_updated
) {
1054 /* We have more flow control to be updated */
1057 dc
->port
[i
].ctrl_ul
.port
= port2ctrl(i
, dc
);
1058 ctrl
= (u16
*)&dc
->port
[i
].ctrl_ul
;
1059 write_mem32(dc
->port
[PORT_CTRL
].ul_addr
[0], \
1061 dc
->port
[i
].update_flow_control
= 0;
1062 more_flow_control_to_be_updated
= 1;
1069 * Handle downlink data, ports that are handled are modem and diagnostics
1071 * Return 0 - toggle fields are out of sync
1073 static int handle_data_dl(struct nozomi
*dc
, enum port_type port
, u8
*toggle
,
1074 u16 read_iir
, u16 mask1
, u16 mask2
)
1076 if (*toggle
== 0 && read_iir
& mask1
) {
1077 if (receive_data(port
, dc
)) {
1078 writew(mask1
, dc
->reg_fcr
);
1079 *toggle
= !(*toggle
);
1082 if (read_iir
& mask2
) {
1083 if (receive_data(port
, dc
)) {
1084 writew(mask2
, dc
->reg_fcr
);
1085 *toggle
= !(*toggle
);
1088 } else if (*toggle
== 1 && read_iir
& mask2
) {
1089 if (receive_data(port
, dc
)) {
1090 writew(mask2
, dc
->reg_fcr
);
1091 *toggle
= !(*toggle
);
1094 if (read_iir
& mask1
) {
1095 if (receive_data(port
, dc
)) {
1096 writew(mask1
, dc
->reg_fcr
);
1097 *toggle
= !(*toggle
);
1101 dev_err(&dc
->pdev
->dev
, "port out of sync!, toggle:%d\n",
1109 * Handle uplink data, this is currently for the modem port
1111 * Return 0 - toggle field are out of sync
1113 static int handle_data_ul(struct nozomi
*dc
, enum port_type port
, u16 read_iir
)
1115 u8
*toggle
= &(dc
->port
[port
].toggle_ul
);
1117 if (*toggle
== 0 && read_iir
& MDM_UL1
) {
1118 dc
->last_ier
&= ~MDM_UL
;
1119 writew(dc
->last_ier
, dc
->reg_ier
);
1120 if (send_data(port
, dc
)) {
1121 writew(MDM_UL1
, dc
->reg_fcr
);
1122 dc
->last_ier
= dc
->last_ier
| MDM_UL
;
1123 writew(dc
->last_ier
, dc
->reg_ier
);
1127 if (read_iir
& MDM_UL2
) {
1128 dc
->last_ier
&= ~MDM_UL
;
1129 writew(dc
->last_ier
, dc
->reg_ier
);
1130 if (send_data(port
, dc
)) {
1131 writew(MDM_UL2
, dc
->reg_fcr
);
1132 dc
->last_ier
= dc
->last_ier
| MDM_UL
;
1133 writew(dc
->last_ier
, dc
->reg_ier
);
1138 } else if (*toggle
== 1 && read_iir
& MDM_UL2
) {
1139 dc
->last_ier
&= ~MDM_UL
;
1140 writew(dc
->last_ier
, dc
->reg_ier
);
1141 if (send_data(port
, dc
)) {
1142 writew(MDM_UL2
, dc
->reg_fcr
);
1143 dc
->last_ier
= dc
->last_ier
| MDM_UL
;
1144 writew(dc
->last_ier
, dc
->reg_ier
);
1148 if (read_iir
& MDM_UL1
) {
1149 dc
->last_ier
&= ~MDM_UL
;
1150 writew(dc
->last_ier
, dc
->reg_ier
);
1151 if (send_data(port
, dc
)) {
1152 writew(MDM_UL1
, dc
->reg_fcr
);
1153 dc
->last_ier
= dc
->last_ier
| MDM_UL
;
1154 writew(dc
->last_ier
, dc
->reg_ier
);
1159 writew(read_iir
& MDM_UL
, dc
->reg_fcr
);
1160 dev_err(&dc
->pdev
->dev
, "port out of sync!\n");
1166 static irqreturn_t
interrupt_handler(int irq
, void *dev_id
)
1168 struct nozomi
*dc
= dev_id
;
1175 spin_lock(&dc
->spin_mutex
);
1176 read_iir
= readw(dc
->reg_iir
);
1179 if (read_iir
== (u16
)-1)
1182 * Just handle interrupt enabled in IER
1183 * (by masking with dc->last_ier)
1185 read_iir
&= dc
->last_ier
;
1191 DBG4("%s irq:0x%04X, prev:0x%04X", interrupt2str(read_iir
), read_iir
,
1194 if (read_iir
& RESET
) {
1195 if (unlikely(!nozomi_read_config_table(dc
))) {
1197 writew(dc
->last_ier
, dc
->reg_ier
);
1198 dev_err(&dc
->pdev
->dev
, "Could not read status from "
1199 "card, we should disable interface\n");
1201 writew(RESET
, dc
->reg_fcr
);
1203 /* No more useful info if this was the reset interrupt. */
1206 if (read_iir
& CTRL_UL
) {
1208 dc
->last_ier
&= ~CTRL_UL
;
1209 writew(dc
->last_ier
, dc
->reg_ier
);
1210 if (send_flow_control(dc
)) {
1211 writew(CTRL_UL
, dc
->reg_fcr
);
1212 dc
->last_ier
= dc
->last_ier
| CTRL_UL
;
1213 writew(dc
->last_ier
, dc
->reg_ier
);
1216 if (read_iir
& CTRL_DL
) {
1217 receive_flow_control(dc
);
1218 writew(CTRL_DL
, dc
->reg_fcr
);
1220 if (read_iir
& MDM_DL
) {
1221 if (!handle_data_dl(dc
, PORT_MDM
,
1222 &(dc
->port
[PORT_MDM
].toggle_dl
), read_iir
,
1223 MDM_DL1
, MDM_DL2
)) {
1224 dev_err(&dc
->pdev
->dev
, "MDM_DL out of sync!\n");
1228 if (read_iir
& MDM_UL
) {
1229 if (!handle_data_ul(dc
, PORT_MDM
, read_iir
)) {
1230 dev_err(&dc
->pdev
->dev
, "MDM_UL out of sync!\n");
1234 if (read_iir
& DIAG_DL
) {
1235 if (!handle_data_dl(dc
, PORT_DIAG
,
1236 &(dc
->port
[PORT_DIAG
].toggle_dl
), read_iir
,
1237 DIAG_DL1
, DIAG_DL2
)) {
1238 dev_err(&dc
->pdev
->dev
, "DIAG_DL out of sync!\n");
1242 if (read_iir
& DIAG_UL
) {
1243 dc
->last_ier
&= ~DIAG_UL
;
1244 writew(dc
->last_ier
, dc
->reg_ier
);
1245 if (send_data(PORT_DIAG
, dc
)) {
1246 writew(DIAG_UL
, dc
->reg_fcr
);
1247 dc
->last_ier
= dc
->last_ier
| DIAG_UL
;
1248 writew(dc
->last_ier
, dc
->reg_ier
);
1251 if (read_iir
& APP1_DL
) {
1252 if (receive_data(PORT_APP1
, dc
))
1253 writew(APP1_DL
, dc
->reg_fcr
);
1255 if (read_iir
& APP1_UL
) {
1256 dc
->last_ier
&= ~APP1_UL
;
1257 writew(dc
->last_ier
, dc
->reg_ier
);
1258 if (send_data(PORT_APP1
, dc
)) {
1259 writew(APP1_UL
, dc
->reg_fcr
);
1260 dc
->last_ier
= dc
->last_ier
| APP1_UL
;
1261 writew(dc
->last_ier
, dc
->reg_ier
);
1264 if (read_iir
& APP2_DL
) {
1265 if (receive_data(PORT_APP2
, dc
))
1266 writew(APP2_DL
, dc
->reg_fcr
);
1268 if (read_iir
& APP2_UL
) {
1269 dc
->last_ier
&= ~APP2_UL
;
1270 writew(dc
->last_ier
, dc
->reg_ier
);
1271 if (send_data(PORT_APP2
, dc
)) {
1272 writew(APP2_UL
, dc
->reg_fcr
);
1273 dc
->last_ier
= dc
->last_ier
| APP2_UL
;
1274 writew(dc
->last_ier
, dc
->reg_ier
);
1279 spin_unlock(&dc
->spin_mutex
);
1280 for (a
= 0; a
< NOZOMI_MAX_PORTS
; a
++) {
1281 struct tty_struct
*tty
;
1282 if (test_and_clear_bit(a
, &dc
->flip
)) {
1283 tty
= tty_port_tty_get(&dc
->port
[a
].port
);
1285 tty_flip_buffer_push(tty
);
1291 spin_unlock(&dc
->spin_mutex
);
1295 static void nozomi_get_card_type(struct nozomi
*dc
)
1300 for (i
= 0; i
< 6; i
++)
1301 size
+= pci_resource_len(dc
->pdev
, i
);
1303 /* Assume card type F32_8 if no match */
1304 dc
->card_type
= size
== 2048 ? F32_2
: F32_8
;
1306 dev_info(&dc
->pdev
->dev
, "Card type is: %d\n", dc
->card_type
);
1309 static void nozomi_setup_private_data(struct nozomi
*dc
)
1311 void __iomem
*offset
= dc
->base_addr
+ dc
->card_type
/ 2;
1314 dc
->reg_fcr
= (void __iomem
*)(offset
+ R_FCR
);
1315 dc
->reg_iir
= (void __iomem
*)(offset
+ R_IIR
);
1316 dc
->reg_ier
= (void __iomem
*)(offset
+ R_IER
);
1320 dc
->port
[PORT_MDM
].token_dl
= MDM_DL
;
1321 dc
->port
[PORT_DIAG
].token_dl
= DIAG_DL
;
1322 dc
->port
[PORT_APP1
].token_dl
= APP1_DL
;
1323 dc
->port
[PORT_APP2
].token_dl
= APP2_DL
;
1325 for (i
= 0; i
< MAX_PORT
; i
++)
1326 init_waitqueue_head(&dc
->port
[i
].tty_wait
);
1329 static ssize_t
card_type_show(struct device
*dev
, struct device_attribute
*attr
,
1332 const struct nozomi
*dc
= pci_get_drvdata(to_pci_dev(dev
));
1334 return sprintf(buf
, "%d\n", dc
->card_type
);
1336 static DEVICE_ATTR(card_type
, S_IRUGO
, card_type_show
, NULL
);
1338 static ssize_t
open_ttys_show(struct device
*dev
, struct device_attribute
*attr
,
1341 const struct nozomi
*dc
= pci_get_drvdata(to_pci_dev(dev
));
1343 return sprintf(buf
, "%u\n", dc
->open_ttys
);
1345 static DEVICE_ATTR(open_ttys
, S_IRUGO
, open_ttys_show
, NULL
);
1347 static void make_sysfs_files(struct nozomi
*dc
)
1349 if (device_create_file(&dc
->pdev
->dev
, &dev_attr_card_type
))
1350 dev_err(&dc
->pdev
->dev
,
1351 "Could not create sysfs file for card_type\n");
1352 if (device_create_file(&dc
->pdev
->dev
, &dev_attr_open_ttys
))
1353 dev_err(&dc
->pdev
->dev
,
1354 "Could not create sysfs file for open_ttys\n");
1357 static void remove_sysfs_files(struct nozomi
*dc
)
1359 device_remove_file(&dc
->pdev
->dev
, &dev_attr_card_type
);
1360 device_remove_file(&dc
->pdev
->dev
, &dev_attr_open_ttys
);
1363 /* Allocate memory for one device */
1364 static int __devinit
nozomi_card_init(struct pci_dev
*pdev
,
1365 const struct pci_device_id
*ent
)
1367 resource_size_t start
;
1369 struct nozomi
*dc
= NULL
;
1373 dev_dbg(&pdev
->dev
, "Init, new card found\n");
1375 for (ndev_idx
= 0; ndev_idx
< ARRAY_SIZE(ndevs
); ndev_idx
++)
1376 if (!ndevs
[ndev_idx
])
1379 if (ndev_idx
>= ARRAY_SIZE(ndevs
)) {
1380 dev_err(&pdev
->dev
, "no free tty range for this card left\n");
1385 dc
= kzalloc(sizeof(struct nozomi
), GFP_KERNEL
);
1386 if (unlikely(!dc
)) {
1387 dev_err(&pdev
->dev
, "Could not allocate memory\n");
1394 ret
= pci_enable_device(dc
->pdev
);
1396 dev_err(&pdev
->dev
, "Failed to enable PCI Device\n");
1400 ret
= pci_request_regions(dc
->pdev
, NOZOMI_NAME
);
1402 dev_err(&pdev
->dev
, "I/O address 0x%04x already in use\n",
1403 (int) /* nozomi_private.io_addr */ 0);
1404 goto err_disable_device
;
1407 start
= pci_resource_start(dc
->pdev
, 0);
1409 dev_err(&pdev
->dev
, "No I/O address for card detected\n");
1414 /* Find out what card type it is */
1415 nozomi_get_card_type(dc
);
1417 dc
->base_addr
= ioremap_nocache(start
, dc
->card_type
);
1418 if (!dc
->base_addr
) {
1419 dev_err(&pdev
->dev
, "Unable to map card MMIO\n");
1424 dc
->send_buf
= kmalloc(SEND_BUF_MAX
, GFP_KERNEL
);
1425 if (!dc
->send_buf
) {
1426 dev_err(&pdev
->dev
, "Could not allocate send buffer?\n");
1431 for (i
= PORT_MDM
; i
< MAX_PORT
; i
++) {
1432 if (kfifo_alloc(&dc
->port
[i
].fifo_ul
, FIFO_BUFFER_SIZE_UL
,
1435 "Could not allocate kfifo buffer\n");
1437 goto err_free_kfifo
;
1441 spin_lock_init(&dc
->spin_mutex
);
1443 nozomi_setup_private_data(dc
);
1445 /* Disable all interrupts */
1447 writew(dc
->last_ier
, dc
->reg_ier
);
1449 ret
= request_irq(pdev
->irq
, &interrupt_handler
, IRQF_SHARED
,
1451 if (unlikely(ret
)) {
1452 dev_err(&pdev
->dev
, "can't request irq %d\n", pdev
->irq
);
1453 goto err_free_kfifo
;
1456 DBG1("base_addr: %p", dc
->base_addr
);
1458 make_sysfs_files(dc
);
1460 dc
->index_start
= ndev_idx
* MAX_PORT
;
1461 ndevs
[ndev_idx
] = dc
;
1463 pci_set_drvdata(pdev
, dc
);
1465 /* Enable RESET interrupt */
1466 dc
->last_ier
= RESET
;
1467 iowrite16(dc
->last_ier
, dc
->reg_ier
);
1469 dc
->state
= NOZOMI_STATE_ENABLED
;
1471 for (i
= 0; i
< MAX_PORT
; i
++) {
1472 struct device
*tty_dev
;
1473 struct port
*port
= &dc
->port
[i
];
1475 tty_port_init(&port
->port
);
1476 port
->port
.ops
= &noz_tty_port_ops
;
1477 tty_dev
= tty_register_device(ntty_driver
, dc
->index_start
+ i
,
1480 if (IS_ERR(tty_dev
)) {
1481 ret
= PTR_ERR(tty_dev
);
1482 dev_err(&pdev
->dev
, "Could not allocate tty?\n");
1490 for (i
= dc
->index_start
; i
< dc
->index_start
+ MAX_PORT
; ++i
)
1491 tty_unregister_device(ntty_driver
, i
);
1493 for (i
= 0; i
< MAX_PORT
; i
++)
1494 kfifo_free(&dc
->port
[i
].fifo_ul
);
1496 kfree(dc
->send_buf
);
1497 iounmap(dc
->base_addr
);
1499 pci_release_regions(pdev
);
1501 pci_disable_device(pdev
);
1508 static void __devexit
tty_exit(struct nozomi
*dc
)
1514 for (i
= 0; i
< MAX_PORT
; ++i
) {
1515 struct tty_struct
*tty
= tty_port_tty_get(&dc
->port
[i
].port
);
1516 if (tty
&& list_empty(&tty
->hangup_work
.entry
))
1520 /* Racy below - surely should wait for scheduled work to be done or
1521 complete off a hangup method ? */
1522 while (dc
->open_ttys
)
1524 for (i
= dc
->index_start
; i
< dc
->index_start
+ MAX_PORT
; ++i
)
1525 tty_unregister_device(ntty_driver
, i
);
1528 /* Deallocate memory for one device */
1529 static void __devexit
nozomi_card_exit(struct pci_dev
*pdev
)
1532 struct ctrl_ul ctrl
;
1533 struct nozomi
*dc
= pci_get_drvdata(pdev
);
1535 /* Disable all interrupts */
1537 writew(dc
->last_ier
, dc
->reg_ier
);
1541 /* Send 0x0001, command card to resend the reset token. */
1542 /* This is to get the reset when the module is reloaded. */
1547 DBG1("sending flow control 0x%04X", *((u16
*)&ctrl
));
1549 /* Setup dc->reg addresses to we can use defines here */
1550 write_mem32(dc
->port
[PORT_CTRL
].ul_addr
[0], (u32
*)&ctrl
, 2);
1551 writew(CTRL_UL
, dc
->reg_fcr
); /* push the token to the card. */
1553 remove_sysfs_files(dc
);
1555 free_irq(pdev
->irq
, dc
);
1557 for (i
= 0; i
< MAX_PORT
; i
++)
1558 kfifo_free(&dc
->port
[i
].fifo_ul
);
1560 kfree(dc
->send_buf
);
1562 iounmap(dc
->base_addr
);
1564 pci_release_regions(pdev
);
1566 pci_disable_device(pdev
);
1568 ndevs
[dc
->index_start
/ MAX_PORT
] = NULL
;
1573 static void set_rts(const struct tty_struct
*tty
, int rts
)
1575 struct port
*port
= get_port_by_tty(tty
);
1577 port
->ctrl_ul
.RTS
= rts
;
1578 port
->update_flow_control
= 1;
1579 enable_transmit_ul(PORT_CTRL
, get_dc_by_tty(tty
));
1582 static void set_dtr(const struct tty_struct
*tty
, int dtr
)
1584 struct port
*port
= get_port_by_tty(tty
);
1586 DBG1("SETTING DTR index: %d, dtr: %d", tty
->index
, dtr
);
1588 port
->ctrl_ul
.DTR
= dtr
;
1589 port
->update_flow_control
= 1;
1590 enable_transmit_ul(PORT_CTRL
, get_dc_by_tty(tty
));
1594 * ----------------------------------------------------------------------------
1596 * ----------------------------------------------------------------------------
1599 static int ntty_install(struct tty_driver
*driver
, struct tty_struct
*tty
)
1601 struct port
*port
= get_port_by_tty(tty
);
1602 struct nozomi
*dc
= get_dc_by_tty(tty
);
1604 if (!port
|| !dc
|| dc
->state
!= NOZOMI_STATE_READY
)
1606 ret
= tty_init_termios(tty
);
1608 tty_driver_kref_get(driver
);
1610 tty
->driver_data
= port
;
1611 driver
->ttys
[tty
->index
] = tty
;
1616 static void ntty_cleanup(struct tty_struct
*tty
)
1618 tty
->driver_data
= NULL
;
1621 static int ntty_activate(struct tty_port
*tport
, struct tty_struct
*tty
)
1623 struct port
*port
= container_of(tport
, struct port
, port
);
1624 struct nozomi
*dc
= port
->dc
;
1625 unsigned long flags
;
1627 DBG1("open: %d", port
->token_dl
);
1628 spin_lock_irqsave(&dc
->spin_mutex
, flags
);
1629 dc
->last_ier
= dc
->last_ier
| port
->token_dl
;
1630 writew(dc
->last_ier
, dc
->reg_ier
);
1632 spin_unlock_irqrestore(&dc
->spin_mutex
, flags
);
1633 printk("noz: activated %d: %p\n", tty
->index
, tport
);
1637 static int ntty_open(struct tty_struct
*tty
, struct file
*filp
)
1639 struct port
*port
= tty
->driver_data
;
1640 return tty_port_open(&port
->port
, tty
, filp
);
1643 static void ntty_shutdown(struct tty_port
*tport
)
1645 struct port
*port
= container_of(tport
, struct port
, port
);
1646 struct nozomi
*dc
= port
->dc
;
1647 unsigned long flags
;
1649 DBG1("close: %d", port
->token_dl
);
1650 spin_lock_irqsave(&dc
->spin_mutex
, flags
);
1651 dc
->last_ier
&= ~(port
->token_dl
);
1652 writew(dc
->last_ier
, dc
->reg_ier
);
1654 spin_unlock_irqrestore(&dc
->spin_mutex
, flags
);
1655 printk("noz: shutdown %p\n", tport
);
1658 static void ntty_close(struct tty_struct
*tty
, struct file
*filp
)
1660 struct port
*port
= tty
->driver_data
;
1662 tty_port_close(&port
->port
, tty
, filp
);
1665 static void ntty_hangup(struct tty_struct
*tty
)
1667 struct port
*port
= tty
->driver_data
;
1668 tty_port_hangup(&port
->port
);
1672 * called when the userspace process writes to the tty (/dev/noz*).
1673 * Data is inserted into a fifo, which is then read and transferred to the modem.
1675 static int ntty_write(struct tty_struct
*tty
, const unsigned char *buffer
,
1679 struct nozomi
*dc
= get_dc_by_tty(tty
);
1680 struct port
*port
= tty
->driver_data
;
1681 unsigned long flags
;
1683 /* DBG1( "WRITEx: %d, index = %d", count, index); */
1688 rval
= kfifo_in(&port
->fifo_ul
, (unsigned char *)buffer
, count
);
1691 if (unlikely(dc
== NULL
)) {
1692 DBG1("No device context?");
1696 spin_lock_irqsave(&dc
->spin_mutex
, flags
);
1697 /* CTS is only valid on the modem channel */
1698 if (port
== &(dc
->port
[PORT_MDM
])) {
1699 if (port
->ctrl_dl
.CTS
) {
1700 DBG4("Enable interrupt");
1701 enable_transmit_ul(tty
->index
% MAX_PORT
, dc
);
1703 dev_err(&dc
->pdev
->dev
,
1704 "CTS not active on modem port?\n");
1707 enable_transmit_ul(tty
->index
% MAX_PORT
, dc
);
1709 spin_unlock_irqrestore(&dc
->spin_mutex
, flags
);
1716 * Calculate how much is left in device
1717 * This method is called by the upper tty layer.
1718 * #according to sources N_TTY.c it expects a value >= 0 and
1719 * does not check for negative values.
1721 * If the port is unplugged report lots of room and let the bits
1722 * dribble away so we don't block anything.
1724 static int ntty_write_room(struct tty_struct
*tty
)
1726 struct port
*port
= tty
->driver_data
;
1728 const struct nozomi
*dc
= get_dc_by_tty(tty
);
1731 room
= kfifo_avail(&port
->fifo_ul
);
1736 /* Gets io control parameters */
1737 static int ntty_tiocmget(struct tty_struct
*tty
)
1739 const struct port
*port
= tty
->driver_data
;
1740 const struct ctrl_dl
*ctrl_dl
= &port
->ctrl_dl
;
1741 const struct ctrl_ul
*ctrl_ul
= &port
->ctrl_ul
;
1743 /* Note: these could change under us but it is not clear this
1745 return (ctrl_ul
->RTS
? TIOCM_RTS
: 0) |
1746 (ctrl_ul
->DTR
? TIOCM_DTR
: 0) |
1747 (ctrl_dl
->DCD
? TIOCM_CAR
: 0) |
1748 (ctrl_dl
->RI
? TIOCM_RNG
: 0) |
1749 (ctrl_dl
->DSR
? TIOCM_DSR
: 0) |
1750 (ctrl_dl
->CTS
? TIOCM_CTS
: 0);
1753 /* Sets io controls parameters */
1754 static int ntty_tiocmset(struct tty_struct
*tty
,
1755 unsigned int set
, unsigned int clear
)
1757 struct nozomi
*dc
= get_dc_by_tty(tty
);
1758 unsigned long flags
;
1760 spin_lock_irqsave(&dc
->spin_mutex
, flags
);
1761 if (set
& TIOCM_RTS
)
1763 else if (clear
& TIOCM_RTS
)
1766 if (set
& TIOCM_DTR
)
1768 else if (clear
& TIOCM_DTR
)
1770 spin_unlock_irqrestore(&dc
->spin_mutex
, flags
);
1775 static int ntty_cflags_changed(struct port
*port
, unsigned long flags
,
1776 struct async_icount
*cprev
)
1778 const struct async_icount cnow
= port
->tty_icount
;
1781 ret
= ((flags
& TIOCM_RNG
) && (cnow
.rng
!= cprev
->rng
)) ||
1782 ((flags
& TIOCM_DSR
) && (cnow
.dsr
!= cprev
->dsr
)) ||
1783 ((flags
& TIOCM_CD
) && (cnow
.dcd
!= cprev
->dcd
)) ||
1784 ((flags
& TIOCM_CTS
) && (cnow
.cts
!= cprev
->cts
));
1791 static int ntty_tiocgicount(struct tty_struct
*tty
,
1792 struct serial_icounter_struct
*icount
)
1794 struct port
*port
= tty
->driver_data
;
1795 const struct async_icount cnow
= port
->tty_icount
;
1797 icount
->cts
= cnow
.cts
;
1798 icount
->dsr
= cnow
.dsr
;
1799 icount
->rng
= cnow
.rng
;
1800 icount
->dcd
= cnow
.dcd
;
1801 icount
->rx
= cnow
.rx
;
1802 icount
->tx
= cnow
.tx
;
1803 icount
->frame
= cnow
.frame
;
1804 icount
->overrun
= cnow
.overrun
;
1805 icount
->parity
= cnow
.parity
;
1806 icount
->brk
= cnow
.brk
;
1807 icount
->buf_overrun
= cnow
.buf_overrun
;
1811 static int ntty_ioctl(struct tty_struct
*tty
,
1812 unsigned int cmd
, unsigned long arg
)
1814 struct port
*port
= tty
->driver_data
;
1815 int rval
= -ENOIOCTLCMD
;
1817 DBG1("******** IOCTL, cmd: %d", cmd
);
1821 struct async_icount cprev
= port
->tty_icount
;
1823 rval
= wait_event_interruptible(port
->tty_wait
,
1824 ntty_cflags_changed(port
, arg
, &cprev
));
1828 DBG1("ERR: 0x%08X, %d", cmd
, cmd
);
1836 * Called by the upper tty layer when tty buffers are ready
1837 * to receive data again after a call to throttle.
1839 static void ntty_unthrottle(struct tty_struct
*tty
)
1841 struct nozomi
*dc
= get_dc_by_tty(tty
);
1842 unsigned long flags
;
1845 spin_lock_irqsave(&dc
->spin_mutex
, flags
);
1846 enable_transmit_dl(tty
->index
% MAX_PORT
, dc
);
1849 spin_unlock_irqrestore(&dc
->spin_mutex
, flags
);
1853 * Called by the upper tty layer when the tty buffers are almost full.
1854 * The driver should stop send more data.
1856 static void ntty_throttle(struct tty_struct
*tty
)
1858 struct nozomi
*dc
= get_dc_by_tty(tty
);
1859 unsigned long flags
;
1862 spin_lock_irqsave(&dc
->spin_mutex
, flags
);
1864 spin_unlock_irqrestore(&dc
->spin_mutex
, flags
);
1867 /* Returns number of chars in buffer, called by tty layer */
1868 static s32
ntty_chars_in_buffer(struct tty_struct
*tty
)
1870 struct port
*port
= tty
->driver_data
;
1871 struct nozomi
*dc
= get_dc_by_tty(tty
);
1874 if (unlikely(!dc
|| !port
)) {
1875 goto exit_in_buffer
;
1878 rval
= kfifo_len(&port
->fifo_ul
);
1884 static const struct tty_port_operations noz_tty_port_ops
= {
1885 .activate
= ntty_activate
,
1886 .shutdown
= ntty_shutdown
,
1889 static const struct tty_operations tty_ops
= {
1890 .ioctl
= ntty_ioctl
,
1892 .close
= ntty_close
,
1893 .hangup
= ntty_hangup
,
1894 .write
= ntty_write
,
1895 .write_room
= ntty_write_room
,
1896 .unthrottle
= ntty_unthrottle
,
1897 .throttle
= ntty_throttle
,
1898 .chars_in_buffer
= ntty_chars_in_buffer
,
1899 .tiocmget
= ntty_tiocmget
,
1900 .tiocmset
= ntty_tiocmset
,
1901 .get_icount
= ntty_tiocgicount
,
1902 .install
= ntty_install
,
1903 .cleanup
= ntty_cleanup
,
1906 /* Module initialization */
1907 static struct pci_driver nozomi_driver
= {
1908 .name
= NOZOMI_NAME
,
1909 .id_table
= nozomi_pci_tbl
,
1910 .probe
= nozomi_card_init
,
1911 .remove
= __devexit_p(nozomi_card_exit
),
1914 static __init
int nozomi_init(void)
1918 printk(KERN_INFO
"Initializing %s\n", VERSION_STRING
);
1920 ntty_driver
= alloc_tty_driver(NTTY_TTY_MAXMINORS
);
1924 ntty_driver
->owner
= THIS_MODULE
;
1925 ntty_driver
->driver_name
= NOZOMI_NAME_TTY
;
1926 ntty_driver
->name
= "noz";
1927 ntty_driver
->major
= 0;
1928 ntty_driver
->type
= TTY_DRIVER_TYPE_SERIAL
;
1929 ntty_driver
->subtype
= SERIAL_TYPE_NORMAL
;
1930 ntty_driver
->flags
= TTY_DRIVER_REAL_RAW
| TTY_DRIVER_DYNAMIC_DEV
;
1931 ntty_driver
->init_termios
= tty_std_termios
;
1932 ntty_driver
->init_termios
.c_cflag
= B115200
| CS8
| CREAD
| \
1934 ntty_driver
->init_termios
.c_ispeed
= 115200;
1935 ntty_driver
->init_termios
.c_ospeed
= 115200;
1936 tty_set_operations(ntty_driver
, &tty_ops
);
1938 ret
= tty_register_driver(ntty_driver
);
1940 printk(KERN_ERR
"Nozomi: failed to register ntty driver\n");
1944 ret
= pci_register_driver(&nozomi_driver
);
1946 printk(KERN_ERR
"Nozomi: can't register pci driver\n");
1952 tty_unregister_driver(ntty_driver
);
1954 put_tty_driver(ntty_driver
);
1958 static __exit
void nozomi_exit(void)
1960 printk(KERN_INFO
"Unloading %s\n", DRIVER_DESC
);
1961 pci_unregister_driver(&nozomi_driver
);
1962 tty_unregister_driver(ntty_driver
);
1963 put_tty_driver(ntty_driver
);
1966 module_init(nozomi_init
);
1967 module_exit(nozomi_exit
);
1969 module_param(debug
, int, S_IRUGO
| S_IWUSR
);
1971 MODULE_LICENSE("Dual BSD/GPL");
1972 MODULE_DESCRIPTION(DRIVER_DESC
);