2 * IPWireless 3G PCMCIA Network Driver
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/interrupt.h>
19 #include <linux/kernel.h>
20 #include <linux/mutex.h>
21 #include <linux/netdevice.h>
22 #include <linux/ppp_channel.h>
23 #include <linux/ppp_defs.h>
24 #include <linux/if_ppp.h>
25 #include <linux/skbuff.h>
32 #define MAX_ASSOCIATED_TTYS 2
34 #define SC_RCV_BITS (SC_RCV_B7_1|SC_RCV_B7_0|SC_RCV_ODDP|SC_RCV_EVNP)
37 /* Hardware context, used for calls to hardware layer. */
38 struct ipw_hardware *hardware;
39 /* Context for kernel 'generic_ppp' functionality */
40 struct ppp_channel *ppp_channel;
41 /* tty context connected with IPW console */
42 struct ipw_tty *associated_ttys[NO_OF_IPW_CHANNELS][MAX_ASSOCIATED_TTYS];
43 /* True if ppp needs waking up once we're ready to xmit */
45 /* Number of packets queued up in hardware module. */
46 int outgoing_packets_queued;
47 /* Spinlock to avoid interrupts during shutdown */
49 struct mutex close_lock;
51 /* PPP ioctl data, not actually used anywere */
59 unsigned int ras_control_lines;
61 struct work_struct work_go_online;
62 struct work_struct work_go_offline;
65 static void notify_packet_sent(void *callback_data, unsigned int packet_length)
67 struct ipw_network *network = callback_data;
70 spin_lock_irqsave(&network->lock, flags);
71 network->outgoing_packets_queued--;
72 if (network->ppp_channel != NULL) {
73 if (network->ppp_blocked) {
74 network->ppp_blocked = 0;
75 spin_unlock_irqrestore(&network->lock, flags);
76 ppp_output_wakeup(network->ppp_channel);
78 printk(KERN_DEBUG IPWIRELESS_PCCARD_NAME
81 spin_unlock_irqrestore(&network->lock, flags);
83 spin_unlock_irqrestore(&network->lock, flags);
87 * Called by the ppp system when it has a packet to send to the hardware.
89 static int ipwireless_ppp_start_xmit(struct ppp_channel *ppp_channel,
92 struct ipw_network *network = ppp_channel->private;
95 spin_lock_irqsave(&network->lock, flags);
96 if (network->outgoing_packets_queued < ipwireless_out_queue) {
98 static unsigned char header[] = {
99 PPP_ALLSTATIONS, /* 0xff */
104 network->outgoing_packets_queued++;
105 spin_unlock_irqrestore(&network->lock, flags);
108 * If we have the requested amount of headroom in the skb we
109 * were handed, then we can add the header efficiently.
111 if (skb_headroom(skb) >= 2) {
112 memcpy(skb_push(skb, 2), header, 2);
113 ret = ipwireless_send_packet(network->hardware,
114 IPW_CHANNEL_RAS, skb->data,
123 /* Otherwise (rarely) we do it inefficiently. */
124 buf = kmalloc(skb->len + 2, GFP_ATOMIC);
127 memcpy(buf + 2, skb->data, skb->len);
128 memcpy(buf, header, 2);
129 ret = ipwireless_send_packet(network->hardware,
130 IPW_CHANNEL_RAS, buf,
142 * Otherwise reject the packet, and flag that the ppp system
143 * needs to be unblocked once we are ready to send.
145 network->ppp_blocked = 1;
146 spin_unlock_irqrestore(&network->lock, flags);
147 if (ipwireless_debug)
148 printk(KERN_DEBUG IPWIRELESS_PCCARD_NAME ": ppp blocked\n");
153 /* Handle an ioctl call that has come in via ppp. (copy of ppp_async_ioctl() */
154 static int ipwireless_ppp_ioctl(struct ppp_channel *ppp_channel,
155 unsigned int cmd, unsigned long arg)
157 struct ipw_network *network = ppp_channel->private;
160 int __user *user_arg = (int __user *) arg;
165 val = network->flags | network->rbits;
166 if (put_user(val, user_arg))
172 if (get_user(val, user_arg))
174 network->flags = val & ~SC_RCV_BITS;
175 network->rbits = val & SC_RCV_BITS;
179 case PPPIOCGASYNCMAP:
180 if (put_user(network->xaccm[0], user_arg))
185 case PPPIOCSASYNCMAP:
186 if (get_user(network->xaccm[0], user_arg))
191 case PPPIOCGRASYNCMAP:
192 if (put_user(network->raccm, user_arg))
197 case PPPIOCSRASYNCMAP:
198 if (get_user(network->raccm, user_arg))
203 case PPPIOCGXASYNCMAP:
204 if (copy_to_user((void __user *) arg, network->xaccm,
205 sizeof(network->xaccm)))
210 case PPPIOCSXASYNCMAP:
211 if (copy_from_user(accm, (void __user *) arg, sizeof(accm)))
213 accm[2] &= ~0x40000000U; /* can't escape 0x5e */
214 accm[3] |= 0x60000000U; /* must escape 0x7d, 0x7e */
215 memcpy(network->xaccm, accm, sizeof(network->xaccm));
220 if (put_user(network->mru, user_arg))
226 if (get_user(val, user_arg))
241 static struct ppp_channel_ops ipwireless_ppp_channel_ops = {
242 .start_xmit = ipwireless_ppp_start_xmit,
243 .ioctl = ipwireless_ppp_ioctl
246 static void do_go_online(struct work_struct *work_go_online)
248 struct ipw_network *network =
249 container_of(work_go_online, struct ipw_network,
253 spin_lock_irqsave(&network->lock, flags);
254 if (!network->ppp_channel) {
255 struct ppp_channel *channel;
257 spin_unlock_irqrestore(&network->lock, flags);
258 channel = kzalloc(sizeof(struct ppp_channel), GFP_KERNEL);
260 printk(KERN_ERR IPWIRELESS_PCCARD_NAME
261 ": unable to allocate PPP channel\n");
264 channel->private = network;
265 channel->mtu = 16384; /* Wild guess */
267 channel->ops = &ipwireless_ppp_channel_ops;
271 network->mru = PPP_MRU;
272 memset(network->xaccm, 0, sizeof(network->xaccm));
273 network->xaccm[0] = ~0U;
274 network->xaccm[3] = 0x60000000U;
275 network->raccm = ~0U;
276 ppp_register_channel(channel);
277 spin_lock_irqsave(&network->lock, flags);
278 network->ppp_channel = channel;
280 spin_unlock_irqrestore(&network->lock, flags);
283 static void do_go_offline(struct work_struct *work_go_offline)
285 struct ipw_network *network =
286 container_of(work_go_offline, struct ipw_network,
290 mutex_lock(&network->close_lock);
291 spin_lock_irqsave(&network->lock, flags);
292 if (network->ppp_channel != NULL) {
293 struct ppp_channel *channel = network->ppp_channel;
295 network->ppp_channel = NULL;
296 spin_unlock_irqrestore(&network->lock, flags);
297 mutex_unlock(&network->close_lock);
298 ppp_unregister_channel(channel);
300 spin_unlock_irqrestore(&network->lock, flags);
301 mutex_unlock(&network->close_lock);
305 void ipwireless_network_notify_control_line_change(struct ipw_network *network,
306 unsigned int channel_idx,
307 unsigned int control_lines,
308 unsigned int changed_mask)
312 if (channel_idx == IPW_CHANNEL_RAS)
313 network->ras_control_lines = control_lines;
315 for (i = 0; i < MAX_ASSOCIATED_TTYS; i++) {
316 struct ipw_tty *tty =
317 network->associated_ttys[channel_idx][i];
320 * If it's associated with a tty (other than the RAS channel
321 * when we're online), then send the data to that tty. The RAS
322 * channel's data is handled above - it always goes through
326 ipwireless_tty_notify_control_line_change(tty,
334 * Some versions of firmware stuff packets with 0xff 0x03 (PPP: ALLSTATIONS, UI)
335 * bytes, which are required on sent packet, but not always present on received
338 static struct sk_buff *ipw_packet_received_skb(unsigned char *data,
343 if (length > 2 && data[0] == PPP_ALLSTATIONS && data[1] == PPP_UI) {
348 skb = dev_alloc_skb(length + 4);
350 memcpy(skb_put(skb, length), data, length);
355 void ipwireless_network_packet_received(struct ipw_network *network,
356 unsigned int channel_idx,
363 for (i = 0; i < MAX_ASSOCIATED_TTYS; i++) {
364 struct ipw_tty *tty = network->associated_ttys[channel_idx][i];
370 * If it's associated with a tty (other than the RAS channel
371 * when we're online), then send the data to that tty. The RAS
372 * channel's data is handled above - it always goes through
375 if (channel_idx == IPW_CHANNEL_RAS
376 && (network->ras_control_lines &
377 IPW_CONTROL_LINE_DCD) != 0
378 && ipwireless_tty_is_modem(tty)) {
380 * If data came in on the RAS channel and this tty is
381 * the modem tty, and we are online, then we send it to
384 mutex_lock(&network->close_lock);
385 spin_lock_irqsave(&network->lock, flags);
386 if (network->ppp_channel != NULL) {
389 spin_unlock_irqrestore(&network->lock,
392 /* Send the data to the ppp_generic module. */
393 skb = ipw_packet_received_skb(data, length);
394 ppp_input(network->ppp_channel, skb);
396 spin_unlock_irqrestore(&network->lock,
398 mutex_unlock(&network->close_lock);
400 /* Otherwise we send it out the tty. */
402 ipwireless_tty_received(tty, data, length);
406 struct ipw_network *ipwireless_network_create(struct ipw_hardware *hw)
408 struct ipw_network *network =
409 kzalloc(sizeof(struct ipw_network), GFP_ATOMIC);
414 spin_lock_init(&network->lock);
415 mutex_init(&network->close_lock);
417 network->hardware = hw;
419 INIT_WORK(&network->work_go_online, do_go_online);
420 INIT_WORK(&network->work_go_offline, do_go_offline);
422 ipwireless_associate_network(hw, network);
427 void ipwireless_network_free(struct ipw_network *network)
429 network->shutting_down = 1;
431 ipwireless_ppp_close(network);
432 flush_scheduled_work();
434 ipwireless_stop_interrupts(network->hardware);
435 ipwireless_associate_network(network->hardware, NULL);
440 void ipwireless_associate_network_tty(struct ipw_network *network,
441 unsigned int channel_idx,
446 for (i = 0; i < MAX_ASSOCIATED_TTYS; i++)
447 if (network->associated_ttys[channel_idx][i] == NULL) {
448 network->associated_ttys[channel_idx][i] = tty;
453 void ipwireless_disassociate_network_ttys(struct ipw_network *network,
454 unsigned int channel_idx)
458 for (i = 0; i < MAX_ASSOCIATED_TTYS; i++)
459 network->associated_ttys[channel_idx][i] = NULL;
462 void ipwireless_ppp_open(struct ipw_network *network)
464 if (ipwireless_debug)
465 printk(KERN_DEBUG IPWIRELESS_PCCARD_NAME ": online\n");
466 schedule_work(&network->work_go_online);
469 void ipwireless_ppp_close(struct ipw_network *network)
471 /* Disconnect from the wireless network. */
472 if (ipwireless_debug)
473 printk(KERN_DEBUG IPWIRELESS_PCCARD_NAME ": offline\n");
474 schedule_work(&network->work_go_offline);
477 int ipwireless_ppp_channel_index(struct ipw_network *network)
482 spin_lock_irqsave(&network->lock, flags);
483 if (network->ppp_channel != NULL)
484 ret = ppp_channel_index(network->ppp_channel);
485 spin_unlock_irqrestore(&network->lock, flags);
490 int ipwireless_ppp_unit_number(struct ipw_network *network)
495 spin_lock_irqsave(&network->lock, flags);
496 if (network->ppp_channel != NULL)
497 ret = ppp_unit_number(network->ppp_channel);
498 spin_unlock_irqrestore(&network->lock, flags);
503 int ipwireless_ppp_mru(const struct ipw_network *network)