2 * IPWireless 3G PCMCIA Network Driver
5 * by Stephen Blackheath <stephen@blacksapphire.com>,
6 * Ben Martel <benm@symmetric.co.nz>
8 * Copyrighted as follows:
9 * Copyright (C) 2004 by Symmetric Systems Ltd (NZ)
11 * Various driver changes and rewrites, port to new kernels
12 * Copyright (C) 2006-2007 Jiri Kosina
14 * Misc code cleanups and updates
15 * Copyright (C) 2007 David Sterba
18 #include <linux/init.h>
19 #include <linux/kernel.h>
20 #include <linux/module.h>
21 #include <linux/mutex.h>
22 #include <linux/ppp_defs.h>
24 #include <linux/if_ppp.h>
25 #include <linux/sched.h>
26 #include <linux/serial.h>
27 #include <linux/slab.h>
28 #include <linux/tty.h>
29 #include <linux/tty_driver.h>
30 #include <linux/tty_flip.h>
31 #include <linux/uaccess.h>
38 #define IPWIRELESS_PCMCIA_START (0)
39 #define IPWIRELESS_PCMCIA_MINORS (24)
40 #define IPWIRELESS_PCMCIA_MINOR_RANGE (8)
42 #define TTYTYPE_MODEM (0)
43 #define TTYTYPE_MONITOR (1)
44 #define TTYTYPE_RAS_RAW (2)
48 struct ipw_hardware
*hardware
;
49 unsigned int channel_idx
;
50 unsigned int secondary_channel_idx
;
52 struct ipw_network
*network
;
53 struct tty_struct
*linux_tty
;
55 unsigned int control_lines
;
56 struct mutex ipw_tty_mutex
;
61 static struct ipw_tty
*ttys
[IPWIRELESS_PCMCIA_MINORS
];
63 static struct tty_driver
*ipw_tty_driver
;
65 static char *tty_type_name(int tty_type
)
67 static char *channel_names
[] = {
73 return channel_names
[tty_type
];
76 static void report_registering(struct ipw_tty
*tty
)
78 char *iftype
= tty_type_name(tty
->tty_type
);
80 printk(KERN_INFO IPWIRELESS_PCCARD_NAME
81 ": registering %s device ttyIPWp%d\n", iftype
, tty
->index
);
84 static void report_deregistering(struct ipw_tty
*tty
)
86 char *iftype
= tty_type_name(tty
->tty_type
);
88 printk(KERN_INFO IPWIRELESS_PCCARD_NAME
89 ": deregistering %s device ttyIPWp%d\n", iftype
,
93 static struct ipw_tty
*get_tty(int minor
)
95 if (minor
< ipw_tty_driver
->minor_start
96 || minor
>= ipw_tty_driver
->minor_start
+
97 IPWIRELESS_PCMCIA_MINORS
)
100 int minor_offset
= minor
- ipw_tty_driver
->minor_start
;
103 * The 'ras_raw' channel is only available when 'loopback' mode
105 * Number of minor starts with 16 (_RANGE * _RAS_RAW).
107 if (!ipwireless_loopback
&&
109 IPWIRELESS_PCMCIA_MINOR_RANGE
* TTYTYPE_RAS_RAW
)
112 return ttys
[minor_offset
];
116 static int ipw_open(struct tty_struct
*linux_tty
, struct file
*filp
)
118 int minor
= linux_tty
->index
;
119 struct ipw_tty
*tty
= get_tty(minor
);
124 mutex_lock(&tty
->ipw_tty_mutex
);
127 mutex_unlock(&tty
->ipw_tty_mutex
);
130 if (tty
->open_count
== 0)
131 tty
->tx_bytes_queued
= 0;
135 tty
->linux_tty
= linux_tty
;
136 linux_tty
->driver_data
= tty
;
137 linux_tty
->low_latency
= 1;
139 if (tty
->tty_type
== TTYTYPE_MODEM
)
140 ipwireless_ppp_open(tty
->network
);
142 mutex_unlock(&tty
->ipw_tty_mutex
);
147 static void do_ipw_close(struct ipw_tty
*tty
)
151 if (tty
->open_count
== 0) {
152 struct tty_struct
*linux_tty
= tty
->linux_tty
;
154 if (linux_tty
!= NULL
) {
155 tty
->linux_tty
= NULL
;
156 linux_tty
->driver_data
= NULL
;
158 if (tty
->tty_type
== TTYTYPE_MODEM
)
159 ipwireless_ppp_close(tty
->network
);
164 static void ipw_hangup(struct tty_struct
*linux_tty
)
166 struct ipw_tty
*tty
= linux_tty
->driver_data
;
171 mutex_lock(&tty
->ipw_tty_mutex
);
172 if (tty
->open_count
== 0) {
173 mutex_unlock(&tty
->ipw_tty_mutex
);
179 mutex_unlock(&tty
->ipw_tty_mutex
);
182 static void ipw_close(struct tty_struct
*linux_tty
, struct file
*filp
)
184 ipw_hangup(linux_tty
);
187 /* Take data received from hardware, and send it out the tty */
188 void ipwireless_tty_received(struct ipw_tty
*tty
, unsigned char *data
,
191 struct tty_struct
*linux_tty
;
194 mutex_lock(&tty
->ipw_tty_mutex
);
195 linux_tty
= tty
->linux_tty
;
196 if (linux_tty
== NULL
) {
197 mutex_unlock(&tty
->ipw_tty_mutex
);
201 if (!tty
->open_count
) {
202 mutex_unlock(&tty
->ipw_tty_mutex
);
205 mutex_unlock(&tty
->ipw_tty_mutex
);
207 work
= tty_insert_flip_string(linux_tty
, data
, length
);
210 printk(KERN_DEBUG IPWIRELESS_PCCARD_NAME
211 ": %d chars not inserted to flip buffer!\n",
215 * This may sleep if ->low_latency is set
218 tty_flip_buffer_push(linux_tty
);
221 static void ipw_write_packet_sent_callback(void *callback_data
,
222 unsigned int packet_length
)
224 struct ipw_tty
*tty
= callback_data
;
227 * Packet has been sent, so we subtract the number of bytes from our
228 * tally of outstanding TX bytes.
230 tty
->tx_bytes_queued
-= packet_length
;
233 static int ipw_write(struct tty_struct
*linux_tty
,
234 const unsigned char *buf
, int count
)
236 struct ipw_tty
*tty
= linux_tty
->driver_data
;
242 mutex_lock(&tty
->ipw_tty_mutex
);
243 if (!tty
->open_count
) {
244 mutex_unlock(&tty
->ipw_tty_mutex
);
248 room
= IPWIRELESS_TX_QUEUE_SIZE
- tty
->tx_bytes_queued
;
251 /* Don't allow caller to write any more than we have room for */
256 mutex_unlock(&tty
->ipw_tty_mutex
);
260 ret
= ipwireless_send_packet(tty
->hardware
, IPW_CHANNEL_RAS
,
262 ipw_write_packet_sent_callback
, tty
);
264 mutex_unlock(&tty
->ipw_tty_mutex
);
268 tty
->tx_bytes_queued
+= count
;
269 mutex_unlock(&tty
->ipw_tty_mutex
);
274 static int ipw_write_room(struct tty_struct
*linux_tty
)
276 struct ipw_tty
*tty
= linux_tty
->driver_data
;
282 if (!tty
->open_count
)
285 room
= IPWIRELESS_TX_QUEUE_SIZE
- tty
->tx_bytes_queued
;
292 static int ipwireless_get_serial_info(struct ipw_tty
*tty
,
293 struct serial_struct __user
*retinfo
)
295 struct serial_struct tmp
;
300 memset(&tmp
, 0, sizeof(tmp
));
301 tmp
.type
= PORT_UNKNOWN
;
302 tmp
.line
= tty
->index
;
306 tmp
.baud_base
= 115200;
308 tmp
.closing_wait
= 0;
309 tmp
.custom_divisor
= 0;
311 if (copy_to_user(retinfo
, &tmp
, sizeof(*retinfo
)))
317 static int ipw_chars_in_buffer(struct tty_struct
*linux_tty
)
319 struct ipw_tty
*tty
= linux_tty
->driver_data
;
324 if (!tty
->open_count
)
327 return tty
->tx_bytes_queued
;
330 static int get_control_lines(struct ipw_tty
*tty
)
332 unsigned int my
= tty
->control_lines
;
333 unsigned int out
= 0;
335 if (my
& IPW_CONTROL_LINE_RTS
)
337 if (my
& IPW_CONTROL_LINE_DTR
)
339 if (my
& IPW_CONTROL_LINE_CTS
)
341 if (my
& IPW_CONTROL_LINE_DSR
)
343 if (my
& IPW_CONTROL_LINE_DCD
)
349 static int set_control_lines(struct ipw_tty
*tty
, unsigned int set
,
354 if (set
& TIOCM_RTS
) {
355 ret
= ipwireless_set_RTS(tty
->hardware
, tty
->channel_idx
, 1);
358 if (tty
->secondary_channel_idx
!= -1) {
359 ret
= ipwireless_set_RTS(tty
->hardware
,
360 tty
->secondary_channel_idx
, 1);
365 if (set
& TIOCM_DTR
) {
366 ret
= ipwireless_set_DTR(tty
->hardware
, tty
->channel_idx
, 1);
369 if (tty
->secondary_channel_idx
!= -1) {
370 ret
= ipwireless_set_DTR(tty
->hardware
,
371 tty
->secondary_channel_idx
, 1);
376 if (clear
& TIOCM_RTS
) {
377 ret
= ipwireless_set_RTS(tty
->hardware
, tty
->channel_idx
, 0);
378 if (tty
->secondary_channel_idx
!= -1) {
379 ret
= ipwireless_set_RTS(tty
->hardware
,
380 tty
->secondary_channel_idx
, 0);
385 if (clear
& TIOCM_DTR
) {
386 ret
= ipwireless_set_DTR(tty
->hardware
, tty
->channel_idx
, 0);
387 if (tty
->secondary_channel_idx
!= -1) {
388 ret
= ipwireless_set_DTR(tty
->hardware
,
389 tty
->secondary_channel_idx
, 0);
397 static int ipw_tiocmget(struct tty_struct
*linux_tty
, struct file
*file
)
399 struct ipw_tty
*tty
= linux_tty
->driver_data
;
404 if (!tty
->open_count
)
407 return get_control_lines(tty
);
411 ipw_tiocmset(struct tty_struct
*linux_tty
, struct file
*file
,
412 unsigned int set
, unsigned int clear
)
414 struct ipw_tty
*tty
= linux_tty
->driver_data
;
419 if (!tty
->open_count
)
422 return set_control_lines(tty
, set
, clear
);
425 static int ipw_ioctl(struct tty_struct
*linux_tty
, struct file
*file
,
426 unsigned int cmd
, unsigned long arg
)
428 struct ipw_tty
*tty
= linux_tty
->driver_data
;
433 if (!tty
->open_count
)
438 return ipwireless_get_serial_info(tty
, (void __user
*) arg
);
441 return 0; /* Keeps the PCMCIA scripts happy. */
444 if (tty
->tty_type
== TTYTYPE_MODEM
) {
448 int chan
= ipwireless_ppp_channel_index(
453 if (put_user(chan
, (int __user
*) arg
))
460 int unit
= ipwireless_ppp_unit_number(
465 if (put_user(unit
, (int __user
*) arg
))
472 return n_tty_ioctl(linux_tty
, file
, cmd
, arg
);
475 return n_tty_ioctl(linux_tty
, file
, cmd
, arg
);
481 if (put_user(val
, (int __user
*) arg
))
491 static int add_tty(dev_node_t
*nodesp
, int j
,
492 struct ipw_hardware
*hardware
,
493 struct ipw_network
*network
, int channel_idx
,
494 int secondary_channel_idx
, int tty_type
)
496 ttys
[j
] = kzalloc(sizeof(struct ipw_tty
), GFP_KERNEL
);
500 ttys
[j
]->hardware
= hardware
;
501 ttys
[j
]->channel_idx
= channel_idx
;
502 ttys
[j
]->secondary_channel_idx
= secondary_channel_idx
;
503 ttys
[j
]->network
= network
;
504 ttys
[j
]->tty_type
= tty_type
;
505 mutex_init(&ttys
[j
]->ipw_tty_mutex
);
507 tty_register_device(ipw_tty_driver
, j
, NULL
);
508 ipwireless_associate_network_tty(network
, channel_idx
, ttys
[j
]);
510 if (secondary_channel_idx
!= -1)
511 ipwireless_associate_network_tty(network
,
512 secondary_channel_idx
,
514 if (nodesp
!= NULL
) {
515 sprintf(nodesp
->dev_name
, "ttyIPWp%d", j
);
516 nodesp
->major
= ipw_tty_driver
->major
;
517 nodesp
->minor
= j
+ ipw_tty_driver
->minor_start
;
519 if (get_tty(j
+ ipw_tty_driver
->minor_start
) == ttys
[j
])
520 report_registering(ttys
[j
]);
524 struct ipw_tty
*ipwireless_tty_create(struct ipw_hardware
*hardware
,
525 struct ipw_network
*network
,
530 for (i
= 0; i
< IPWIRELESS_PCMCIA_MINOR_RANGE
; i
++) {
533 for (j
= i
; j
< IPWIRELESS_PCMCIA_MINORS
;
534 j
+= IPWIRELESS_PCMCIA_MINOR_RANGE
)
535 if (ttys
[j
] != NULL
) {
543 if (add_tty(&nodes
[0], j
, hardware
, network
,
544 IPW_CHANNEL_DIALLER
, IPW_CHANNEL_RAS
,
548 j
+= IPWIRELESS_PCMCIA_MINOR_RANGE
;
549 if (add_tty(&nodes
[1], j
, hardware
, network
,
550 IPW_CHANNEL_DIALLER
, -1,
554 j
+= IPWIRELESS_PCMCIA_MINOR_RANGE
;
555 if (add_tty(NULL
, j
, hardware
, network
,
560 nodes
[0].next
= &nodes
[1];
561 nodes
[1].next
= NULL
;
570 * Must be called before ipwireless_network_free().
572 void ipwireless_tty_free(struct ipw_tty
*tty
)
575 struct ipw_network
*network
= ttys
[tty
->index
]->network
;
577 for (j
= tty
->index
; j
< IPWIRELESS_PCMCIA_MINORS
;
578 j
+= IPWIRELESS_PCMCIA_MINOR_RANGE
) {
579 struct ipw_tty
*ttyj
= ttys
[j
];
582 mutex_lock(&ttyj
->ipw_tty_mutex
);
583 if (get_tty(j
+ ipw_tty_driver
->minor_start
) == ttyj
)
584 report_deregistering(ttyj
);
586 if (ttyj
->linux_tty
!= NULL
) {
587 mutex_unlock(&ttyj
->ipw_tty_mutex
);
588 tty_hangup(ttyj
->linux_tty
);
589 /* Wait till the tty_hangup has completed */
590 flush_scheduled_work();
591 mutex_lock(&ttyj
->ipw_tty_mutex
);
593 while (ttyj
->open_count
)
595 ipwireless_disassociate_network_ttys(network
,
597 tty_unregister_device(ipw_tty_driver
, j
);
599 mutex_unlock(&ttyj
->ipw_tty_mutex
);
605 static struct tty_operations tty_ops
= {
608 .hangup
= ipw_hangup
,
610 .write_room
= ipw_write_room
,
612 .chars_in_buffer
= ipw_chars_in_buffer
,
613 .tiocmget
= ipw_tiocmget
,
614 .tiocmset
= ipw_tiocmset
,
617 int ipwireless_tty_init(void)
621 ipw_tty_driver
= alloc_tty_driver(IPWIRELESS_PCMCIA_MINORS
);
625 ipw_tty_driver
->owner
= THIS_MODULE
;
626 ipw_tty_driver
->driver_name
= IPWIRELESS_PCCARD_NAME
;
627 ipw_tty_driver
->name
= "ttyIPWp";
628 ipw_tty_driver
->major
= 0;
629 ipw_tty_driver
->minor_start
= IPWIRELESS_PCMCIA_START
;
630 ipw_tty_driver
->type
= TTY_DRIVER_TYPE_SERIAL
;
631 ipw_tty_driver
->subtype
= SERIAL_TYPE_NORMAL
;
632 ipw_tty_driver
->flags
= TTY_DRIVER_REAL_RAW
| TTY_DRIVER_DYNAMIC_DEV
;
633 ipw_tty_driver
->init_termios
= tty_std_termios
;
634 ipw_tty_driver
->init_termios
.c_cflag
=
635 B9600
| CS8
| CREAD
| HUPCL
| CLOCAL
;
636 ipw_tty_driver
->init_termios
.c_ispeed
= 9600;
637 ipw_tty_driver
->init_termios
.c_ospeed
= 9600;
638 tty_set_operations(ipw_tty_driver
, &tty_ops
);
639 result
= tty_register_driver(ipw_tty_driver
);
641 printk(KERN_ERR IPWIRELESS_PCCARD_NAME
642 ": failed to register tty driver\n");
643 put_tty_driver(ipw_tty_driver
);
650 void ipwireless_tty_release(void)
654 ret
= tty_unregister_driver(ipw_tty_driver
);
655 put_tty_driver(ipw_tty_driver
);
657 printk(KERN_ERR IPWIRELESS_PCCARD_NAME
658 ": tty_unregister_driver failed with code %d\n", ret
);
661 int ipwireless_tty_is_modem(struct ipw_tty
*tty
)
663 return tty
->tty_type
== TTYTYPE_MODEM
;
667 ipwireless_tty_notify_control_line_change(struct ipw_tty
*tty
,
668 unsigned int channel_idx
,
669 unsigned int control_lines
,
670 unsigned int changed_mask
)
672 unsigned int old_control_lines
= tty
->control_lines
;
674 tty
->control_lines
= (tty
->control_lines
& ~changed_mask
)
675 | (control_lines
& changed_mask
);
678 * If DCD is de-asserted, we close the tty so pppd can tell that we
681 if ((old_control_lines
& IPW_CONTROL_LINE_DCD
)
682 && !(tty
->control_lines
& IPW_CONTROL_LINE_DCD
)
684 tty_hangup(tty
->linux_tty
);