1 // SPDX-License-Identifier: GPL-2.0
3 * IPWireless 3G PCMCIA Network Driver
9 * Copyrighted as follows:
10 * Copyright (C) 2004 by Symmetric Systems Ltd (NZ)
12 * Various driver changes and rewrites, port to new kernels
13 * Copyright (C) 2006-2007 Jiri Kosina
15 * Misc code cleanups and updates
16 * Copyright (C) 2007 David Sterba
19 #include <linux/kernel.h>
20 #include <linux/module.h>
21 #include <linux/mutex.h>
22 #include <linux/ppp_defs.h>
24 #include <linux/ppp-ioctl.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)
49 struct ipw_hardware *hardware;
50 unsigned int channel_idx;
51 unsigned int secondary_channel_idx;
53 struct ipw_network *network;
54 unsigned int control_lines;
55 struct mutex ipw_tty_mutex;
60 static struct ipw_tty *ttys[IPWIRELESS_PCMCIA_MINORS];
62 static struct tty_driver *ipw_tty_driver;
64 static char *tty_type_name(int tty_type)
66 static char *channel_names[] = {
72 return channel_names[tty_type];
75 static struct ipw_tty *get_tty(int index)
78 * The 'ras_raw' channel is only available when 'loopback' mode
80 * Number of minor starts with 16 (_RANGE * _RAS_RAW).
82 if (!ipwireless_loopback && index >=
83 IPWIRELESS_PCMCIA_MINOR_RANGE * TTYTYPE_RAS_RAW)
89 static int ipw_open(struct tty_struct *linux_tty, struct file *filp)
91 struct ipw_tty *tty = get_tty(linux_tty->index);
96 mutex_lock(&tty->ipw_tty_mutex);
97 if (tty->port.count == 0)
98 tty->tx_bytes_queued = 0;
102 tty->port.tty = linux_tty;
103 linux_tty->driver_data = tty;
104 tty->port.low_latency = 1;
106 if (tty->tty_type == TTYTYPE_MODEM)
107 ipwireless_ppp_open(tty->network);
109 mutex_unlock(&tty->ipw_tty_mutex);
114 static void do_ipw_close(struct ipw_tty *tty)
118 if (tty->port.count == 0) {
119 struct tty_struct *linux_tty = tty->port.tty;
121 if (linux_tty != NULL) {
122 tty->port.tty = NULL;
123 linux_tty->driver_data = NULL;
125 if (tty->tty_type == TTYTYPE_MODEM)
126 ipwireless_ppp_close(tty->network);
131 static void ipw_hangup(struct tty_struct *linux_tty)
133 struct ipw_tty *tty = linux_tty->driver_data;
138 mutex_lock(&tty->ipw_tty_mutex);
139 if (tty->port.count == 0) {
140 mutex_unlock(&tty->ipw_tty_mutex);
146 mutex_unlock(&tty->ipw_tty_mutex);
149 static void ipw_close(struct tty_struct *linux_tty, struct file *filp)
151 ipw_hangup(linux_tty);
154 /* Take data received from hardware, and send it out the tty */
155 void ipwireless_tty_received(struct ipw_tty *tty, unsigned char *data,
160 mutex_lock(&tty->ipw_tty_mutex);
162 if (!tty->port.count) {
163 mutex_unlock(&tty->ipw_tty_mutex);
166 mutex_unlock(&tty->ipw_tty_mutex);
168 work = tty_insert_flip_string(&tty->port, data, length);
171 printk(KERN_DEBUG IPWIRELESS_PCCARD_NAME
172 ": %d chars not inserted to flip buffer!\n",
176 tty_flip_buffer_push(&tty->port);
179 static void ipw_write_packet_sent_callback(void *callback_data,
180 unsigned int packet_length)
182 struct ipw_tty *tty = callback_data;
185 * Packet has been sent, so we subtract the number of bytes from our
186 * tally of outstanding TX bytes.
188 tty->tx_bytes_queued -= packet_length;
191 static int ipw_write(struct tty_struct *linux_tty,
192 const unsigned char *buf, int count)
194 struct ipw_tty *tty = linux_tty->driver_data;
200 mutex_lock(&tty->ipw_tty_mutex);
201 if (!tty->port.count) {
202 mutex_unlock(&tty->ipw_tty_mutex);
206 room = IPWIRELESS_TX_QUEUE_SIZE - tty->tx_bytes_queued;
209 /* Don't allow caller to write any more than we have room for */
214 mutex_unlock(&tty->ipw_tty_mutex);
218 ret = ipwireless_send_packet(tty->hardware, IPW_CHANNEL_RAS,
220 ipw_write_packet_sent_callback, tty);
222 mutex_unlock(&tty->ipw_tty_mutex);
226 tty->tx_bytes_queued += count;
227 mutex_unlock(&tty->ipw_tty_mutex);
232 static int ipw_write_room(struct tty_struct *linux_tty)
234 struct ipw_tty *tty = linux_tty->driver_data;
237 /* FIXME: Exactly how is the tty object locked here .. */
241 if (!tty->port.count)
244 room = IPWIRELESS_TX_QUEUE_SIZE - tty->tx_bytes_queued;
251 static int ipwireless_get_serial_info(struct ipw_tty *tty,
252 struct serial_struct __user *retinfo)
254 struct serial_struct tmp;
256 memset(&tmp, 0, sizeof(tmp));
257 tmp.type = PORT_UNKNOWN;
258 tmp.line = tty->index;
259 tmp.baud_base = 115200;
261 if (copy_to_user(retinfo, &tmp, sizeof(*retinfo)))
267 static int ipw_chars_in_buffer(struct tty_struct *linux_tty)
269 struct ipw_tty *tty = linux_tty->driver_data;
274 if (!tty->port.count)
277 return tty->tx_bytes_queued;
280 static int get_control_lines(struct ipw_tty *tty)
282 unsigned int my = tty->control_lines;
283 unsigned int out = 0;
285 if (my & IPW_CONTROL_LINE_RTS)
287 if (my & IPW_CONTROL_LINE_DTR)
289 if (my & IPW_CONTROL_LINE_CTS)
291 if (my & IPW_CONTROL_LINE_DSR)
293 if (my & IPW_CONTROL_LINE_DCD)
299 static int set_control_lines(struct ipw_tty *tty, unsigned int set,
304 if (set & TIOCM_RTS) {
305 ret = ipwireless_set_RTS(tty->hardware, tty->channel_idx, 1);
308 if (tty->secondary_channel_idx != -1) {
309 ret = ipwireless_set_RTS(tty->hardware,
310 tty->secondary_channel_idx, 1);
315 if (set & TIOCM_DTR) {
316 ret = ipwireless_set_DTR(tty->hardware, tty->channel_idx, 1);
319 if (tty->secondary_channel_idx != -1) {
320 ret = ipwireless_set_DTR(tty->hardware,
321 tty->secondary_channel_idx, 1);
326 if (clear & TIOCM_RTS) {
327 ret = ipwireless_set_RTS(tty->hardware, tty->channel_idx, 0);
328 if (tty->secondary_channel_idx != -1) {
329 ret = ipwireless_set_RTS(tty->hardware,
330 tty->secondary_channel_idx, 0);
335 if (clear & TIOCM_DTR) {
336 ret = ipwireless_set_DTR(tty->hardware, tty->channel_idx, 0);
337 if (tty->secondary_channel_idx != -1) {
338 ret = ipwireless_set_DTR(tty->hardware,
339 tty->secondary_channel_idx, 0);
347 static int ipw_tiocmget(struct tty_struct *linux_tty)
349 struct ipw_tty *tty = linux_tty->driver_data;
350 /* FIXME: Exactly how is the tty object locked here .. */
355 if (!tty->port.count)
358 return get_control_lines(tty);
362 ipw_tiocmset(struct tty_struct *linux_tty,
363 unsigned int set, unsigned int clear)
365 struct ipw_tty *tty = linux_tty->driver_data;
366 /* FIXME: Exactly how is the tty object locked here .. */
371 if (!tty->port.count)
374 return set_control_lines(tty, set, clear);
377 static int ipw_ioctl(struct tty_struct *linux_tty,
378 unsigned int cmd, unsigned long arg)
380 struct ipw_tty *tty = linux_tty->driver_data;
385 if (!tty->port.count)
388 /* FIXME: Exactly how is the tty object locked here .. */
392 return ipwireless_get_serial_info(tty, (void __user *) arg);
395 return 0; /* Keeps the PCMCIA scripts happy. */
398 if (tty->tty_type == TTYTYPE_MODEM) {
402 int chan = ipwireless_ppp_channel_index(
407 if (put_user(chan, (int __user *) arg))
414 int unit = ipwireless_ppp_unit_number(
419 if (put_user(unit, (int __user *) arg))
428 if (put_user(val, (int __user *) arg))
433 return tty_perform_flush(linux_tty, arg);
439 static int add_tty(int j,
440 struct ipw_hardware *hardware,
441 struct ipw_network *network, int channel_idx,
442 int secondary_channel_idx, int tty_type)
444 ttys[j] = kzalloc(sizeof(struct ipw_tty), GFP_KERNEL);
448 ttys[j]->hardware = hardware;
449 ttys[j]->channel_idx = channel_idx;
450 ttys[j]->secondary_channel_idx = secondary_channel_idx;
451 ttys[j]->network = network;
452 ttys[j]->tty_type = tty_type;
453 mutex_init(&ttys[j]->ipw_tty_mutex);
454 tty_port_init(&ttys[j]->port);
456 tty_port_register_device(&ttys[j]->port, ipw_tty_driver, j, NULL);
457 ipwireless_associate_network_tty(network, channel_idx, ttys[j]);
459 if (secondary_channel_idx != -1)
460 ipwireless_associate_network_tty(network,
461 secondary_channel_idx,
463 /* check if we provide raw device (if loopback is enabled) */
465 printk(KERN_INFO IPWIRELESS_PCCARD_NAME
466 ": registering %s device ttyIPWp%d\n",
467 tty_type_name(tty_type), j);
472 struct ipw_tty *ipwireless_tty_create(struct ipw_hardware *hardware,
473 struct ipw_network *network)
477 for (i = 0; i < IPWIRELESS_PCMCIA_MINOR_RANGE; i++) {
480 for (j = i; j < IPWIRELESS_PCMCIA_MINORS;
481 j += IPWIRELESS_PCMCIA_MINOR_RANGE)
482 if (ttys[j] != NULL) {
490 if (add_tty(j, hardware, network,
491 IPW_CHANNEL_DIALLER, IPW_CHANNEL_RAS,
495 j += IPWIRELESS_PCMCIA_MINOR_RANGE;
496 if (add_tty(j, hardware, network,
497 IPW_CHANNEL_DIALLER, -1,
501 j += IPWIRELESS_PCMCIA_MINOR_RANGE;
502 if (add_tty(j, hardware, network,
514 * Must be called before ipwireless_network_free().
516 void ipwireless_tty_free(struct ipw_tty *tty)
519 struct ipw_network *network = ttys[tty->index]->network;
521 for (j = tty->index; j < IPWIRELESS_PCMCIA_MINORS;
522 j += IPWIRELESS_PCMCIA_MINOR_RANGE) {
523 struct ipw_tty *ttyj = ttys[j];
526 mutex_lock(&ttyj->ipw_tty_mutex);
528 printk(KERN_INFO IPWIRELESS_PCCARD_NAME
529 ": deregistering %s device ttyIPWp%d\n",
530 tty_type_name(ttyj->tty_type), j);
532 if (ttyj->port.tty != NULL) {
533 mutex_unlock(&ttyj->ipw_tty_mutex);
534 tty_vhangup(ttyj->port.tty);
535 /* FIXME: Exactly how is the tty object locked here
536 against a parallel ioctl etc */
537 /* FIXME2: hangup does not mean all processes
539 mutex_lock(&ttyj->ipw_tty_mutex);
541 while (ttyj->port.count)
543 ipwireless_disassociate_network_ttys(network,
545 tty_unregister_device(ipw_tty_driver, j);
546 tty_port_destroy(&ttyj->port);
548 mutex_unlock(&ttyj->ipw_tty_mutex);
554 static const struct tty_operations tty_ops = {
557 .hangup = ipw_hangup,
559 .write_room = ipw_write_room,
561 .chars_in_buffer = ipw_chars_in_buffer,
562 .tiocmget = ipw_tiocmget,
563 .tiocmset = ipw_tiocmset,
566 int ipwireless_tty_init(void)
570 ipw_tty_driver = alloc_tty_driver(IPWIRELESS_PCMCIA_MINORS);
574 ipw_tty_driver->driver_name = IPWIRELESS_PCCARD_NAME;
575 ipw_tty_driver->name = "ttyIPWp";
576 ipw_tty_driver->major = 0;
577 ipw_tty_driver->minor_start = IPWIRELESS_PCMCIA_START;
578 ipw_tty_driver->type = TTY_DRIVER_TYPE_SERIAL;
579 ipw_tty_driver->subtype = SERIAL_TYPE_NORMAL;
580 ipw_tty_driver->flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_DYNAMIC_DEV;
581 ipw_tty_driver->init_termios = tty_std_termios;
582 ipw_tty_driver->init_termios.c_cflag =
583 B9600 | CS8 | CREAD | HUPCL | CLOCAL;
584 ipw_tty_driver->init_termios.c_ispeed = 9600;
585 ipw_tty_driver->init_termios.c_ospeed = 9600;
586 tty_set_operations(ipw_tty_driver, &tty_ops);
587 result = tty_register_driver(ipw_tty_driver);
589 printk(KERN_ERR IPWIRELESS_PCCARD_NAME
590 ": failed to register tty driver\n");
591 put_tty_driver(ipw_tty_driver);
598 void ipwireless_tty_release(void)
602 ret = tty_unregister_driver(ipw_tty_driver);
603 put_tty_driver(ipw_tty_driver);
605 printk(KERN_ERR IPWIRELESS_PCCARD_NAME
606 ": tty_unregister_driver failed with code %d\n", ret);
609 int ipwireless_tty_is_modem(struct ipw_tty *tty)
611 return tty->tty_type == TTYTYPE_MODEM;
615 ipwireless_tty_notify_control_line_change(struct ipw_tty *tty,
616 unsigned int channel_idx,
617 unsigned int control_lines,
618 unsigned int changed_mask)
620 unsigned int old_control_lines = tty->control_lines;
622 tty->control_lines = (tty->control_lines & ~changed_mask)
623 | (control_lines & changed_mask);
626 * If DCD is de-asserted, we close the tty so pppd can tell that we
629 if ((old_control_lines & IPW_CONTROL_LINE_DCD)
630 && !(tty->control_lines & IPW_CONTROL_LINE_DCD)
632 tty_hangup(tty->port.tty);