1 // SPDX-License-Identifier: GPL-2.0
3 * IPWireless 3G PCMCIA Network Driver
6 * by Stephen Blackheath <stephen@blacksapphire.com>,
7 * Ben Martel <benm@symmetric.co.nz>
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
;
59 static struct ipw_tty
*ttys
[IPWIRELESS_PCMCIA_MINORS
];
61 static struct tty_driver
*ipw_tty_driver
;
63 static char *tty_type_name(int tty_type
)
65 static char *channel_names
[] = {
71 return channel_names
[tty_type
];
74 static struct ipw_tty
*get_tty(int index
)
77 * The 'ras_raw' channel is only available when 'loopback' mode
79 * Number of minor starts with 16 (_RANGE * _RAS_RAW).
81 if (!ipwireless_loopback
&& index
>=
82 IPWIRELESS_PCMCIA_MINOR_RANGE
* TTYTYPE_RAS_RAW
)
88 static int ipw_open(struct tty_struct
*linux_tty
, struct file
*filp
)
90 struct ipw_tty
*tty
= get_tty(linux_tty
->index
);
95 mutex_lock(&tty
->ipw_tty_mutex
);
96 if (tty
->port
.count
== 0)
97 tty
->tx_bytes_queued
= 0;
101 tty
->port
.tty
= linux_tty
;
102 linux_tty
->driver_data
= tty
;
104 if (tty
->tty_type
== TTYTYPE_MODEM
)
105 ipwireless_ppp_open(tty
->network
);
107 mutex_unlock(&tty
->ipw_tty_mutex
);
112 static void do_ipw_close(struct ipw_tty
*tty
)
116 if (tty
->port
.count
== 0) {
117 struct tty_struct
*linux_tty
= tty
->port
.tty
;
119 if (linux_tty
!= NULL
) {
120 tty
->port
.tty
= NULL
;
121 linux_tty
->driver_data
= NULL
;
123 if (tty
->tty_type
== TTYTYPE_MODEM
)
124 ipwireless_ppp_close(tty
->network
);
129 static void ipw_hangup(struct tty_struct
*linux_tty
)
131 struct ipw_tty
*tty
= linux_tty
->driver_data
;
136 mutex_lock(&tty
->ipw_tty_mutex
);
137 if (tty
->port
.count
== 0) {
138 mutex_unlock(&tty
->ipw_tty_mutex
);
144 mutex_unlock(&tty
->ipw_tty_mutex
);
147 static void ipw_close(struct tty_struct
*linux_tty
, struct file
*filp
)
149 ipw_hangup(linux_tty
);
152 /* Take data received from hardware, and send it out the tty */
153 void ipwireless_tty_received(struct ipw_tty
*tty
, unsigned char *data
,
158 mutex_lock(&tty
->ipw_tty_mutex
);
160 if (!tty
->port
.count
) {
161 mutex_unlock(&tty
->ipw_tty_mutex
);
164 mutex_unlock(&tty
->ipw_tty_mutex
);
166 work
= tty_insert_flip_string(&tty
->port
, data
, length
);
169 printk(KERN_DEBUG IPWIRELESS_PCCARD_NAME
170 ": %d chars not inserted to flip buffer!\n",
174 tty_flip_buffer_push(&tty
->port
);
177 static void ipw_write_packet_sent_callback(void *callback_data
,
178 unsigned int packet_length
)
180 struct ipw_tty
*tty
= callback_data
;
183 * Packet has been sent, so we subtract the number of bytes from our
184 * tally of outstanding TX bytes.
186 tty
->tx_bytes_queued
-= packet_length
;
189 static ssize_t
ipw_write(struct tty_struct
*linux_tty
, const u8
*buf
,
192 struct ipw_tty
*tty
= linux_tty
->driver_data
;
198 mutex_lock(&tty
->ipw_tty_mutex
);
199 if (!tty
->port
.count
) {
200 mutex_unlock(&tty
->ipw_tty_mutex
);
204 room
= IPWIRELESS_TX_QUEUE_SIZE
- tty
->tx_bytes_queued
;
207 /* Don't allow caller to write any more than we have room for */
212 mutex_unlock(&tty
->ipw_tty_mutex
);
216 ret
= ipwireless_send_packet(tty
->hardware
, IPW_CHANNEL_RAS
,
218 ipw_write_packet_sent_callback
, tty
);
220 mutex_unlock(&tty
->ipw_tty_mutex
);
224 tty
->tx_bytes_queued
+= count
;
225 mutex_unlock(&tty
->ipw_tty_mutex
);
230 static unsigned int ipw_write_room(struct tty_struct
*linux_tty
)
232 struct ipw_tty
*tty
= linux_tty
->driver_data
;
235 /* FIXME: Exactly how is the tty object locked here .. */
239 if (!tty
->port
.count
)
242 room
= IPWIRELESS_TX_QUEUE_SIZE
- tty
->tx_bytes_queued
;
249 static int ipwireless_get_serial_info(struct tty_struct
*linux_tty
,
250 struct serial_struct
*ss
)
252 struct ipw_tty
*tty
= linux_tty
->driver_data
;
257 if (!tty
->port
.count
)
260 ss
->type
= PORT_UNKNOWN
;
261 ss
->line
= tty
->index
;
262 ss
->baud_base
= 115200;
266 static int ipwireless_set_serial_info(struct tty_struct
*linux_tty
,
267 struct serial_struct
*ss
)
269 return 0; /* Keeps the PCMCIA scripts happy. */
272 static unsigned int ipw_chars_in_buffer(struct tty_struct
*linux_tty
)
274 struct ipw_tty
*tty
= linux_tty
->driver_data
;
279 if (!tty
->port
.count
)
282 return tty
->tx_bytes_queued
;
285 static int get_control_lines(struct ipw_tty
*tty
)
287 unsigned int my
= tty
->control_lines
;
288 unsigned int out
= 0;
290 if (my
& IPW_CONTROL_LINE_RTS
)
292 if (my
& IPW_CONTROL_LINE_DTR
)
294 if (my
& IPW_CONTROL_LINE_CTS
)
296 if (my
& IPW_CONTROL_LINE_DSR
)
298 if (my
& IPW_CONTROL_LINE_DCD
)
304 static int set_control_lines(struct ipw_tty
*tty
, unsigned int set
,
309 if (set
& TIOCM_RTS
) {
310 ret
= ipwireless_set_RTS(tty
->hardware
, tty
->channel_idx
, 1);
313 if (tty
->secondary_channel_idx
!= -1) {
314 ret
= ipwireless_set_RTS(tty
->hardware
,
315 tty
->secondary_channel_idx
, 1);
320 if (set
& TIOCM_DTR
) {
321 ret
= ipwireless_set_DTR(tty
->hardware
, tty
->channel_idx
, 1);
324 if (tty
->secondary_channel_idx
!= -1) {
325 ret
= ipwireless_set_DTR(tty
->hardware
,
326 tty
->secondary_channel_idx
, 1);
331 if (clear
& TIOCM_RTS
) {
332 ret
= ipwireless_set_RTS(tty
->hardware
, tty
->channel_idx
, 0);
333 if (tty
->secondary_channel_idx
!= -1) {
334 ret
= ipwireless_set_RTS(tty
->hardware
,
335 tty
->secondary_channel_idx
, 0);
340 if (clear
& TIOCM_DTR
) {
341 ret
= ipwireless_set_DTR(tty
->hardware
, tty
->channel_idx
, 0);
342 if (tty
->secondary_channel_idx
!= -1) {
343 ret
= ipwireless_set_DTR(tty
->hardware
,
344 tty
->secondary_channel_idx
, 0);
352 static int ipw_tiocmget(struct tty_struct
*linux_tty
)
354 struct ipw_tty
*tty
= linux_tty
->driver_data
;
355 /* FIXME: Exactly how is the tty object locked here .. */
360 if (!tty
->port
.count
)
363 return get_control_lines(tty
);
367 ipw_tiocmset(struct tty_struct
*linux_tty
,
368 unsigned int set
, unsigned int clear
)
370 struct ipw_tty
*tty
= linux_tty
->driver_data
;
371 /* FIXME: Exactly how is the tty object locked here .. */
376 if (!tty
->port
.count
)
379 return set_control_lines(tty
, set
, clear
);
382 static int ipw_ioctl(struct tty_struct
*linux_tty
,
383 unsigned int cmd
, unsigned long arg
)
385 struct ipw_tty
*tty
= linux_tty
->driver_data
;
390 if (!tty
->port
.count
)
393 /* FIXME: Exactly how is the tty object locked here .. */
394 if (tty
->tty_type
== TTYTYPE_MODEM
) {
398 int chan
= ipwireless_ppp_channel_index(
403 if (put_user(chan
, (int __user
*) arg
))
410 int unit
= ipwireless_ppp_unit_number(
415 if (put_user(unit
, (int __user
*) arg
))
424 if (put_user(val
, (int __user
*) arg
))
429 return tty_perform_flush(linux_tty
, arg
);
435 static int add_tty(int j
,
436 struct ipw_hardware
*hardware
,
437 struct ipw_network
*network
, int channel_idx
,
438 int secondary_channel_idx
, int tty_type
)
440 ttys
[j
] = kzalloc(sizeof(struct ipw_tty
), GFP_KERNEL
);
444 ttys
[j
]->hardware
= hardware
;
445 ttys
[j
]->channel_idx
= channel_idx
;
446 ttys
[j
]->secondary_channel_idx
= secondary_channel_idx
;
447 ttys
[j
]->network
= network
;
448 ttys
[j
]->tty_type
= tty_type
;
449 mutex_init(&ttys
[j
]->ipw_tty_mutex
);
450 tty_port_init(&ttys
[j
]->port
);
452 tty_port_register_device(&ttys
[j
]->port
, ipw_tty_driver
, j
, NULL
);
453 ipwireless_associate_network_tty(network
, channel_idx
, ttys
[j
]);
455 if (secondary_channel_idx
!= -1)
456 ipwireless_associate_network_tty(network
,
457 secondary_channel_idx
,
459 /* check if we provide raw device (if loopback is enabled) */
461 printk(KERN_INFO IPWIRELESS_PCCARD_NAME
462 ": registering %s device ttyIPWp%d\n",
463 tty_type_name(tty_type
), j
);
468 struct ipw_tty
*ipwireless_tty_create(struct ipw_hardware
*hardware
,
469 struct ipw_network
*network
)
473 for (i
= 0; i
< IPWIRELESS_PCMCIA_MINOR_RANGE
; i
++) {
476 for (j
= i
; j
< IPWIRELESS_PCMCIA_MINORS
;
477 j
+= IPWIRELESS_PCMCIA_MINOR_RANGE
)
478 if (ttys
[j
] != NULL
) {
486 if (add_tty(j
, hardware
, network
,
487 IPW_CHANNEL_DIALLER
, IPW_CHANNEL_RAS
,
491 j
+= IPWIRELESS_PCMCIA_MINOR_RANGE
;
492 if (add_tty(j
, hardware
, network
,
493 IPW_CHANNEL_DIALLER
, -1,
497 j
+= IPWIRELESS_PCMCIA_MINOR_RANGE
;
498 if (add_tty(j
, hardware
, network
,
510 * Must be called before ipwireless_network_free().
512 void ipwireless_tty_free(struct ipw_tty
*tty
)
515 struct ipw_network
*network
= ttys
[tty
->index
]->network
;
517 for (j
= tty
->index
; j
< IPWIRELESS_PCMCIA_MINORS
;
518 j
+= IPWIRELESS_PCMCIA_MINOR_RANGE
) {
519 struct ipw_tty
*ttyj
= ttys
[j
];
522 mutex_lock(&ttyj
->ipw_tty_mutex
);
524 printk(KERN_INFO IPWIRELESS_PCCARD_NAME
525 ": deregistering %s device ttyIPWp%d\n",
526 tty_type_name(ttyj
->tty_type
), j
);
527 if (ttyj
->port
.tty
!= NULL
) {
528 mutex_unlock(&ttyj
->ipw_tty_mutex
);
529 tty_vhangup(ttyj
->port
.tty
);
530 /* FIXME: Exactly how is the tty object locked here
531 against a parallel ioctl etc */
532 /* FIXME2: hangup does not mean all processes
534 mutex_lock(&ttyj
->ipw_tty_mutex
);
536 while (ttyj
->port
.count
)
538 ipwireless_disassociate_network_ttys(network
,
540 tty_unregister_device(ipw_tty_driver
, j
);
541 tty_port_destroy(&ttyj
->port
);
543 mutex_unlock(&ttyj
->ipw_tty_mutex
);
549 static const struct tty_operations tty_ops
= {
552 .hangup
= ipw_hangup
,
554 .write_room
= ipw_write_room
,
556 .chars_in_buffer
= ipw_chars_in_buffer
,
557 .tiocmget
= ipw_tiocmget
,
558 .tiocmset
= ipw_tiocmset
,
559 .set_serial
= ipwireless_set_serial_info
,
560 .get_serial
= ipwireless_get_serial_info
,
563 int ipwireless_tty_init(void)
567 ipw_tty_driver
= tty_alloc_driver(IPWIRELESS_PCMCIA_MINORS
,
568 TTY_DRIVER_REAL_RAW
| TTY_DRIVER_DYNAMIC_DEV
);
569 if (IS_ERR(ipw_tty_driver
))
570 return PTR_ERR(ipw_tty_driver
);
572 ipw_tty_driver
->driver_name
= IPWIRELESS_PCCARD_NAME
;
573 ipw_tty_driver
->name
= "ttyIPWp";
574 ipw_tty_driver
->major
= 0;
575 ipw_tty_driver
->minor_start
= IPWIRELESS_PCMCIA_START
;
576 ipw_tty_driver
->type
= TTY_DRIVER_TYPE_SERIAL
;
577 ipw_tty_driver
->subtype
= SERIAL_TYPE_NORMAL
;
578 ipw_tty_driver
->init_termios
= tty_std_termios
;
579 ipw_tty_driver
->init_termios
.c_cflag
=
580 B9600
| CS8
| CREAD
| HUPCL
| CLOCAL
;
581 ipw_tty_driver
->init_termios
.c_ispeed
= 9600;
582 ipw_tty_driver
->init_termios
.c_ospeed
= 9600;
583 tty_set_operations(ipw_tty_driver
, &tty_ops
);
584 result
= tty_register_driver(ipw_tty_driver
);
586 printk(KERN_ERR IPWIRELESS_PCCARD_NAME
587 ": failed to register tty driver\n");
588 tty_driver_kref_put(ipw_tty_driver
);
595 void ipwireless_tty_release(void)
597 tty_unregister_driver(ipw_tty_driver
);
598 tty_driver_kref_put(ipw_tty_driver
);
601 int ipwireless_tty_is_modem(struct ipw_tty
*tty
)
603 return tty
->tty_type
== TTYTYPE_MODEM
;
607 ipwireless_tty_notify_control_line_change(struct ipw_tty
*tty
,
608 unsigned int channel_idx
,
609 unsigned int control_lines
,
610 unsigned int changed_mask
)
612 unsigned int old_control_lines
= tty
->control_lines
;
614 tty
->control_lines
= (tty
->control_lines
& ~changed_mask
)
615 | (control_lines
& changed_mask
);
618 * If DCD is de-asserted, we close the tty so pppd can tell that we
621 if ((old_control_lines
& IPW_CONTROL_LINE_DCD
)
622 && !(tty
->control_lines
& IPW_CONTROL_LINE_DCD
)
624 tty_hangup(tty
->port
.tty
);