Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame^] | 1 | /* Copyright (c) 2011, Code Aurora Forum. All rights reserved. |
| 2 | * |
| 3 | * This program is free software; you can redistribute it and/or modify |
| 4 | * it under the terms of the GNU General Public License version 2 and |
| 5 | * only version 2 as published by the Free Software Foundation. |
| 6 | * |
| 7 | * This program is distributed in the hope that it will be useful, |
| 8 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 9 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 10 | * GNU General Public License for more details. |
| 11 | * |
| 12 | */ |
| 13 | |
| 14 | /* |
| 15 | * RMNET BAM Module. |
| 16 | */ |
| 17 | |
| 18 | #include <linux/module.h> |
| 19 | #include <linux/kernel.h> |
| 20 | #include <linux/string.h> |
| 21 | #include <linux/delay.h> |
| 22 | #include <linux/errno.h> |
| 23 | #include <linux/interrupt.h> |
| 24 | #include <linux/init.h> |
| 25 | #include <linux/netdevice.h> |
| 26 | #include <linux/etherdevice.h> |
| 27 | #include <linux/skbuff.h> |
| 28 | #include <linux/wakelock.h> |
| 29 | #include <linux/if_arp.h> |
| 30 | #include <linux/msm_rmnet.h> |
| 31 | |
| 32 | #ifdef CONFIG_HAS_EARLYSUSPEND |
| 33 | #include <linux/earlysuspend.h> |
| 34 | #endif |
| 35 | |
| 36 | #include <mach/bam_dmux.h> |
| 37 | |
| 38 | /* Debug message support */ |
| 39 | static int msm_rmnet_bam_debug_mask; |
| 40 | module_param_named(debug_enable, msm_rmnet_bam_debug_mask, |
| 41 | int, S_IRUGO | S_IWUSR | S_IWGRP); |
| 42 | |
| 43 | #define DEBUG_MASK_LVL0 (1U << 0) |
| 44 | #define DEBUG_MASK_LVL1 (1U << 1) |
| 45 | #define DEBUG_MASK_LVL2 (1U << 2) |
| 46 | |
| 47 | #define DBG(m, x...) do { \ |
| 48 | if (msm_rmnet_bam_debug_mask & m) \ |
| 49 | pr_info(x); \ |
| 50 | } while (0) |
| 51 | #define DBG0(x...) DBG(DEBUG_MASK_LVL0, x) |
| 52 | #define DBG1(x...) DBG(DEBUG_MASK_LVL1, x) |
| 53 | #define DBG2(x...) DBG(DEBUG_MASK_LVL2, x) |
| 54 | |
| 55 | /* Configure device instances */ |
| 56 | #define RMNET_DEVICE_COUNT (8) |
| 57 | |
| 58 | /* allow larger frames */ |
| 59 | #define RMNET_DATA_LEN 2000 |
| 60 | |
| 61 | #define DEVICE_ID_INVALID -1 |
| 62 | |
| 63 | #define DEVICE_INACTIVE 0 |
| 64 | #define DEVICE_ACTIVE 1 |
| 65 | |
| 66 | #define HEADROOM_FOR_BAM 8 /* for mux header */ |
| 67 | #define HEADROOM_FOR_QOS 8 |
| 68 | #define TAILROOM 8 /* for padding by mux layer */ |
| 69 | |
| 70 | struct rmnet_private { |
| 71 | struct net_device_stats stats; |
| 72 | uint32_t ch_id; |
| 73 | #ifdef CONFIG_MSM_RMNET_DEBUG |
| 74 | ktime_t last_packet; |
| 75 | unsigned long wakeups_xmit; |
| 76 | unsigned long wakeups_rcv; |
| 77 | unsigned long timeout_us; |
| 78 | #endif |
| 79 | struct sk_buff *skb; |
| 80 | spinlock_t lock; |
| 81 | struct tasklet_struct tsklt; |
| 82 | u32 operation_mode; /* IOCTL specified mode (protocol, QoS header) */ |
| 83 | uint8_t device_up; |
| 84 | }; |
| 85 | |
| 86 | #ifdef CONFIG_MSM_RMNET_DEBUG |
| 87 | static unsigned long timeout_us; |
| 88 | |
| 89 | #ifdef CONFIG_HAS_EARLYSUSPEND |
| 90 | /* |
| 91 | * If early suspend is enabled then we specify two timeout values, |
| 92 | * screen on (default), and screen is off. |
| 93 | */ |
| 94 | static unsigned long timeout_suspend_us; |
| 95 | static struct device *rmnet0; |
| 96 | |
| 97 | /* Set timeout in us when the screen is off. */ |
| 98 | static ssize_t timeout_suspend_store(struct device *d, |
| 99 | struct device_attribute *attr, |
| 100 | const char *buf, size_t n) |
| 101 | { |
| 102 | timeout_suspend_us = strict_strtoul(buf, NULL, 10); |
| 103 | return n; |
| 104 | } |
| 105 | |
| 106 | static ssize_t timeout_suspend_show(struct device *d, |
| 107 | struct device_attribute *attr, |
| 108 | char *buf) |
| 109 | { |
| 110 | return sprintf(buf, "%lu\n", (unsigned long) timeout_suspend_us); |
| 111 | } |
| 112 | |
| 113 | static DEVICE_ATTR(timeout_suspend, 0664, timeout_suspend_show, |
| 114 | timeout_suspend_store); |
| 115 | |
| 116 | static void rmnet_early_suspend(struct early_suspend *handler) |
| 117 | { |
| 118 | if (rmnet0) { |
| 119 | struct rmnet_private *p = netdev_priv(to_net_dev(rmnet0)); |
| 120 | p->timeout_us = timeout_suspend_us; |
| 121 | } |
| 122 | } |
| 123 | |
| 124 | static void rmnet_late_resume(struct early_suspend *handler) |
| 125 | { |
| 126 | if (rmnet0) { |
| 127 | struct rmnet_private *p = netdev_priv(to_net_dev(rmnet0)); |
| 128 | p->timeout_us = timeout_us; |
| 129 | } |
| 130 | } |
| 131 | |
| 132 | static struct early_suspend rmnet_power_suspend = { |
| 133 | .suspend = rmnet_early_suspend, |
| 134 | .resume = rmnet_late_resume, |
| 135 | }; |
| 136 | |
| 137 | static int __init rmnet_late_init(void) |
| 138 | { |
| 139 | register_early_suspend(&rmnet_power_suspend); |
| 140 | return 0; |
| 141 | } |
| 142 | |
| 143 | late_initcall(rmnet_late_init); |
| 144 | #endif |
| 145 | |
| 146 | /* Returns 1 if packet caused rmnet to wakeup, 0 otherwise. */ |
| 147 | static int rmnet_cause_wakeup(struct rmnet_private *p) |
| 148 | { |
| 149 | int ret = 0; |
| 150 | ktime_t now; |
| 151 | if (p->timeout_us == 0) /* Check if disabled */ |
| 152 | return 0; |
| 153 | |
| 154 | /* Use real (wall) time. */ |
| 155 | now = ktime_get_real(); |
| 156 | |
| 157 | if (ktime_us_delta(now, p->last_packet) > p->timeout_us) |
| 158 | ret = 1; |
| 159 | |
| 160 | p->last_packet = now; |
| 161 | return ret; |
| 162 | } |
| 163 | |
| 164 | static ssize_t wakeups_xmit_show(struct device *d, |
| 165 | struct device_attribute *attr, |
| 166 | char *buf) |
| 167 | { |
| 168 | struct rmnet_private *p = netdev_priv(to_net_dev(d)); |
| 169 | return sprintf(buf, "%lu\n", p->wakeups_xmit); |
| 170 | } |
| 171 | |
| 172 | DEVICE_ATTR(wakeups_xmit, 0444, wakeups_xmit_show, NULL); |
| 173 | |
| 174 | static ssize_t wakeups_rcv_show(struct device *d, struct device_attribute *attr, |
| 175 | char *buf) |
| 176 | { |
| 177 | struct rmnet_private *p = netdev_priv(to_net_dev(d)); |
| 178 | return sprintf(buf, "%lu\n", p->wakeups_rcv); |
| 179 | } |
| 180 | |
| 181 | DEVICE_ATTR(wakeups_rcv, 0444, wakeups_rcv_show, NULL); |
| 182 | |
| 183 | /* Set timeout in us. */ |
| 184 | static ssize_t timeout_store(struct device *d, struct device_attribute *attr, |
| 185 | const char *buf, size_t n) |
| 186 | { |
| 187 | #ifndef CONFIG_HAS_EARLYSUSPEND |
| 188 | struct rmnet_private *p = netdev_priv(to_net_dev(d)); |
| 189 | p->timeout_us = timeout_us = strict_strtoul(buf, NULL, 10); |
| 190 | #else |
| 191 | /* If using early suspend/resume hooks do not write the value on store. */ |
| 192 | timeout_us = strict_strtoul(buf, NULL, 10); |
| 193 | #endif |
| 194 | return n; |
| 195 | } |
| 196 | |
| 197 | static ssize_t timeout_show(struct device *d, struct device_attribute *attr, |
| 198 | char *buf) |
| 199 | { |
| 200 | struct rmnet_private *p = netdev_priv(to_net_dev(d)); |
| 201 | p = netdev_priv(to_net_dev(d)); |
| 202 | return sprintf(buf, "%lu\n", timeout_us); |
| 203 | } |
| 204 | |
| 205 | DEVICE_ATTR(timeout, 0664, timeout_show, timeout_store); |
| 206 | #endif |
| 207 | |
| 208 | |
| 209 | /* Forward declaration */ |
| 210 | static int rmnet_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd); |
| 211 | |
| 212 | static __be16 rmnet_ip_type_trans(struct sk_buff *skb, struct net_device *dev) |
| 213 | { |
| 214 | __be16 protocol = 0; |
| 215 | |
| 216 | skb->dev = dev; |
| 217 | |
| 218 | /* Determine L3 protocol */ |
| 219 | switch (skb->data[0] & 0xf0) { |
| 220 | case 0x40: |
| 221 | protocol = htons(ETH_P_IP); |
| 222 | break; |
| 223 | case 0x60: |
| 224 | protocol = htons(ETH_P_IPV6); |
| 225 | break; |
| 226 | default: |
| 227 | pr_err("[%s] rmnet_recv() L3 protocol decode error: 0x%02x", |
| 228 | dev->name, skb->data[0] & 0xf0); |
| 229 | /* skb will be dropped in upper layer for unknown protocol */ |
| 230 | } |
| 231 | return protocol; |
| 232 | } |
| 233 | |
| 234 | static int count_this_packet(void *_hdr, int len) |
| 235 | { |
| 236 | struct ethhdr *hdr = _hdr; |
| 237 | |
| 238 | if (len >= ETH_HLEN && hdr->h_proto == htons(ETH_P_ARP)) |
| 239 | return 0; |
| 240 | |
| 241 | return 1; |
| 242 | } |
| 243 | |
| 244 | /* Rx Callback, Called in Work Queue context */ |
| 245 | static void bam_recv_notify(void *dev, struct sk_buff *skb) |
| 246 | { |
| 247 | struct rmnet_private *p = netdev_priv(dev); |
| 248 | unsigned long flags; |
| 249 | u32 opmode; |
| 250 | |
| 251 | if (skb) { |
| 252 | skb->dev = dev; |
| 253 | /* Handle Rx frame format */ |
| 254 | spin_lock_irqsave(&p->lock, flags); |
| 255 | opmode = p->operation_mode; |
| 256 | spin_unlock_irqrestore(&p->lock, flags); |
| 257 | |
| 258 | if (RMNET_IS_MODE_IP(opmode)) { |
| 259 | /* Driver in IP mode */ |
| 260 | skb->protocol = rmnet_ip_type_trans(skb, dev); |
| 261 | } else { |
| 262 | /* Driver in Ethernet mode */ |
| 263 | skb->protocol = eth_type_trans(skb, dev); |
| 264 | } |
| 265 | if (RMNET_IS_MODE_IP(opmode) || |
| 266 | count_this_packet(skb->data, skb->len)) { |
| 267 | #ifdef CONFIG_MSM_RMNET_DEBUG |
| 268 | p->wakeups_rcv += rmnet_cause_wakeup(p); |
| 269 | #endif |
| 270 | p->stats.rx_packets++; |
| 271 | p->stats.rx_bytes += skb->len; |
| 272 | } |
| 273 | DBG1("[%s] Rx packet #%lu len=%d\n", |
| 274 | ((struct net_device *)dev)->name, |
| 275 | p->stats.rx_packets, skb->len); |
| 276 | |
| 277 | /* Deliver to network stack */ |
| 278 | netif_rx(skb); |
| 279 | } else |
| 280 | pr_err("[%s] %s: No skb received", |
| 281 | ((struct net_device *)dev)->name, __func__); |
| 282 | } |
| 283 | |
| 284 | static int _rmnet_xmit(struct sk_buff *skb, struct net_device *dev) |
| 285 | { |
| 286 | struct rmnet_private *p = netdev_priv(dev); |
| 287 | int bam_ret; |
| 288 | struct QMI_QOS_HDR_S *qmih; |
| 289 | u32 opmode; |
| 290 | unsigned long flags; |
| 291 | |
| 292 | /* For QoS mode, prepend QMI header and assign flow ID from skb->mark */ |
| 293 | spin_lock_irqsave(&p->lock, flags); |
| 294 | opmode = p->operation_mode; |
| 295 | spin_unlock_irqrestore(&p->lock, flags); |
| 296 | |
| 297 | if (RMNET_IS_MODE_QOS(opmode)) { |
| 298 | qmih = (struct QMI_QOS_HDR_S *) |
| 299 | skb_push(skb, sizeof(struct QMI_QOS_HDR_S)); |
| 300 | qmih->version = 1; |
| 301 | qmih->flags = 0; |
| 302 | qmih->flow_id = skb->mark; |
| 303 | } |
| 304 | |
| 305 | dev->trans_start = jiffies; |
| 306 | bam_ret = msm_bam_dmux_write(p->ch_id, skb); |
| 307 | |
| 308 | if (bam_ret != 0) { |
| 309 | pr_err("[%s] %s: write returned error %d", |
| 310 | dev->name, __func__, bam_ret); |
| 311 | goto xmit_out; |
| 312 | } |
| 313 | |
| 314 | if (count_this_packet(skb->data, skb->len)) { |
| 315 | p->stats.tx_packets++; |
| 316 | p->stats.tx_bytes += skb->len; |
| 317 | #ifdef CONFIG_MSM_RMNET_DEBUG |
| 318 | p->wakeups_xmit += rmnet_cause_wakeup(p); |
| 319 | #endif |
| 320 | } |
| 321 | DBG1("[%s] Tx packet #%lu len=%d mark=0x%x\n", |
| 322 | dev->name, p->stats.tx_packets, skb->len, skb->mark); |
| 323 | |
| 324 | return 0; |
| 325 | xmit_out: |
| 326 | /* data xmited, safe to release skb */ |
| 327 | dev_kfree_skb_any(skb); |
| 328 | return 0; |
| 329 | } |
| 330 | |
| 331 | static void bam_write_done(void *dev, struct sk_buff *skb) |
| 332 | { |
| 333 | DBG1("%s: write complete\n", __func__); |
| 334 | dev_kfree_skb_any(skb); |
| 335 | netif_wake_queue(dev); |
| 336 | } |
| 337 | |
| 338 | static int __rmnet_open(struct net_device *dev) |
| 339 | { |
| 340 | int r; |
| 341 | struct rmnet_private *p = netdev_priv(dev); |
| 342 | |
| 343 | DBG0("[%s] __rmnet_open()\n", dev->name); |
| 344 | |
| 345 | if (!p->device_up) { |
| 346 | r = msm_bam_dmux_open(p->ch_id, dev, |
| 347 | bam_recv_notify, bam_write_done); |
| 348 | |
| 349 | if (r < 0) |
| 350 | return -ENODEV; |
| 351 | } |
| 352 | |
| 353 | p->device_up = DEVICE_ACTIVE; |
| 354 | return 0; |
| 355 | } |
| 356 | |
| 357 | static int rmnet_open(struct net_device *dev) |
| 358 | { |
| 359 | int rc = 0; |
| 360 | |
| 361 | DBG0("[%s] rmnet_open()\n", dev->name); |
| 362 | |
| 363 | rc = __rmnet_open(dev); |
| 364 | |
| 365 | if (rc == 0) |
| 366 | netif_start_queue(dev); |
| 367 | |
| 368 | return rc; |
| 369 | } |
| 370 | |
| 371 | |
| 372 | static int __rmnet_close(struct net_device *dev) |
| 373 | { |
| 374 | struct rmnet_private *p = netdev_priv(dev); |
| 375 | int rc = 0; |
| 376 | |
| 377 | if (p->device_up) { |
| 378 | /* do not close rmnet port once up, this causes |
| 379 | remote side to hang if tried to open again */ |
| 380 | p->device_up = DEVICE_INACTIVE; |
| 381 | return rc; |
| 382 | } else |
| 383 | return -EBADF; |
| 384 | } |
| 385 | |
| 386 | |
| 387 | static int rmnet_stop(struct net_device *dev) |
| 388 | { |
| 389 | DBG0("[%s] rmnet_stop()\n", dev->name); |
| 390 | |
| 391 | __rmnet_close(dev); |
| 392 | netif_stop_queue(dev); |
| 393 | |
| 394 | return 0; |
| 395 | } |
| 396 | |
| 397 | static int rmnet_change_mtu(struct net_device *dev, int new_mtu) |
| 398 | { |
| 399 | if (0 > new_mtu || RMNET_DATA_LEN < new_mtu) |
| 400 | return -EINVAL; |
| 401 | |
| 402 | DBG0("[%s] MTU change: old=%d new=%d\n", |
| 403 | dev->name, dev->mtu, new_mtu); |
| 404 | dev->mtu = new_mtu; |
| 405 | |
| 406 | return 0; |
| 407 | } |
| 408 | |
| 409 | static int rmnet_xmit(struct sk_buff *skb, struct net_device *dev) |
| 410 | { |
| 411 | if (netif_queue_stopped(dev)) { |
| 412 | pr_err("[%s]fatal: rmnet_xmit called when " |
| 413 | "netif_queue is stopped", dev->name); |
| 414 | return 0; |
| 415 | } |
| 416 | |
| 417 | netif_stop_queue(dev); |
| 418 | _rmnet_xmit(skb, dev); |
| 419 | |
| 420 | return 0; |
| 421 | } |
| 422 | |
| 423 | static struct net_device_stats *rmnet_get_stats(struct net_device *dev) |
| 424 | { |
| 425 | struct rmnet_private *p = netdev_priv(dev); |
| 426 | return &p->stats; |
| 427 | } |
| 428 | |
| 429 | static void rmnet_set_multicast_list(struct net_device *dev) |
| 430 | { |
| 431 | } |
| 432 | |
| 433 | static void rmnet_tx_timeout(struct net_device *dev) |
| 434 | { |
| 435 | pr_warning("[%s] rmnet_tx_timeout()\n", dev->name); |
| 436 | } |
| 437 | |
| 438 | static const struct net_device_ops rmnet_ops_ether = { |
| 439 | .ndo_open = rmnet_open, |
| 440 | .ndo_stop = rmnet_stop, |
| 441 | .ndo_start_xmit = rmnet_xmit, |
| 442 | .ndo_get_stats = rmnet_get_stats, |
| 443 | .ndo_set_multicast_list = rmnet_set_multicast_list, |
| 444 | .ndo_tx_timeout = rmnet_tx_timeout, |
| 445 | .ndo_do_ioctl = rmnet_ioctl, |
| 446 | .ndo_change_mtu = rmnet_change_mtu, |
| 447 | .ndo_set_mac_address = eth_mac_addr, |
| 448 | .ndo_validate_addr = eth_validate_addr, |
| 449 | }; |
| 450 | |
| 451 | static const struct net_device_ops rmnet_ops_ip = { |
| 452 | .ndo_open = rmnet_open, |
| 453 | .ndo_stop = rmnet_stop, |
| 454 | .ndo_start_xmit = rmnet_xmit, |
| 455 | .ndo_get_stats = rmnet_get_stats, |
| 456 | .ndo_set_multicast_list = rmnet_set_multicast_list, |
| 457 | .ndo_tx_timeout = rmnet_tx_timeout, |
| 458 | .ndo_do_ioctl = rmnet_ioctl, |
| 459 | .ndo_change_mtu = rmnet_change_mtu, |
| 460 | .ndo_set_mac_address = 0, |
| 461 | .ndo_validate_addr = 0, |
| 462 | }; |
| 463 | |
| 464 | static int rmnet_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd) |
| 465 | { |
| 466 | struct rmnet_private *p = netdev_priv(dev); |
| 467 | u32 old_opmode = p->operation_mode; |
| 468 | unsigned long flags; |
| 469 | int prev_mtu = dev->mtu; |
| 470 | int rc = 0; |
| 471 | |
| 472 | /* Process IOCTL command */ |
| 473 | switch (cmd) { |
| 474 | case RMNET_IOCTL_SET_LLP_ETHERNET: /* Set Ethernet protocol */ |
| 475 | /* Perform Ethernet config only if in IP mode currently*/ |
| 476 | if (p->operation_mode & RMNET_MODE_LLP_IP) { |
| 477 | ether_setup(dev); |
| 478 | random_ether_addr(dev->dev_addr); |
| 479 | dev->mtu = prev_mtu; |
| 480 | |
| 481 | dev->netdev_ops = &rmnet_ops_ether; |
| 482 | spin_lock_irqsave(&p->lock, flags); |
| 483 | p->operation_mode &= ~RMNET_MODE_LLP_IP; |
| 484 | p->operation_mode |= RMNET_MODE_LLP_ETH; |
| 485 | spin_unlock_irqrestore(&p->lock, flags); |
| 486 | DBG0("[%s] rmnet_ioctl(): " |
| 487 | "set Ethernet protocol mode\n", |
| 488 | dev->name); |
| 489 | } |
| 490 | break; |
| 491 | |
| 492 | case RMNET_IOCTL_SET_LLP_IP: /* Set RAWIP protocol */ |
| 493 | /* Perform IP config only if in Ethernet mode currently*/ |
| 494 | if (p->operation_mode & RMNET_MODE_LLP_ETH) { |
| 495 | |
| 496 | /* Undo config done in ether_setup() */ |
| 497 | dev->header_ops = 0; /* No header */ |
| 498 | dev->type = ARPHRD_RAWIP; |
| 499 | dev->hard_header_len = 0; |
| 500 | dev->mtu = prev_mtu; |
| 501 | dev->addr_len = 0; |
| 502 | dev->flags &= ~(IFF_BROADCAST| |
| 503 | IFF_MULTICAST); |
| 504 | |
| 505 | dev->needed_headroom = HEADROOM_FOR_BAM + |
| 506 | HEADROOM_FOR_QOS; |
| 507 | dev->needed_tailroom = TAILROOM; |
| 508 | dev->netdev_ops = &rmnet_ops_ip; |
| 509 | spin_lock_irqsave(&p->lock, flags); |
| 510 | p->operation_mode &= ~RMNET_MODE_LLP_ETH; |
| 511 | p->operation_mode |= RMNET_MODE_LLP_IP; |
| 512 | spin_unlock_irqrestore(&p->lock, flags); |
| 513 | DBG0("[%s] rmnet_ioctl(): " |
| 514 | "set IP protocol mode\n", |
| 515 | dev->name); |
| 516 | } |
| 517 | break; |
| 518 | |
| 519 | case RMNET_IOCTL_GET_LLP: /* Get link protocol state */ |
| 520 | ifr->ifr_ifru.ifru_data = |
| 521 | (void *)(p->operation_mode & |
| 522 | (RMNET_MODE_LLP_ETH|RMNET_MODE_LLP_IP)); |
| 523 | break; |
| 524 | |
| 525 | case RMNET_IOCTL_SET_QOS_ENABLE: /* Set QoS header enabled */ |
| 526 | spin_lock_irqsave(&p->lock, flags); |
| 527 | p->operation_mode |= RMNET_MODE_QOS; |
| 528 | spin_unlock_irqrestore(&p->lock, flags); |
| 529 | DBG0("[%s] rmnet_ioctl(): set QMI QOS header enable\n", |
| 530 | dev->name); |
| 531 | break; |
| 532 | |
| 533 | case RMNET_IOCTL_SET_QOS_DISABLE: /* Set QoS header disabled */ |
| 534 | spin_lock_irqsave(&p->lock, flags); |
| 535 | p->operation_mode &= ~RMNET_MODE_QOS; |
| 536 | spin_unlock_irqrestore(&p->lock, flags); |
| 537 | DBG0("[%s] rmnet_ioctl(): set QMI QOS header disable\n", |
| 538 | dev->name); |
| 539 | break; |
| 540 | |
| 541 | case RMNET_IOCTL_GET_QOS: /* Get QoS header state */ |
| 542 | ifr->ifr_ifru.ifru_data = |
| 543 | (void *)(p->operation_mode & RMNET_MODE_QOS); |
| 544 | break; |
| 545 | |
| 546 | case RMNET_IOCTL_GET_OPMODE: /* Get operation mode */ |
| 547 | ifr->ifr_ifru.ifru_data = (void *)p->operation_mode; |
| 548 | break; |
| 549 | |
| 550 | case RMNET_IOCTL_OPEN: /* Open transport port */ |
| 551 | rc = __rmnet_open(dev); |
| 552 | DBG0("[%s] rmnet_ioctl(): open transport port\n", |
| 553 | dev->name); |
| 554 | break; |
| 555 | |
| 556 | case RMNET_IOCTL_CLOSE: /* Close transport port */ |
| 557 | rc = __rmnet_close(dev); |
| 558 | DBG0("[%s] rmnet_ioctl(): close transport port\n", |
| 559 | dev->name); |
| 560 | break; |
| 561 | |
| 562 | default: |
| 563 | pr_err("[%s] error: rmnet_ioct called for unsupported cmd[%d]", |
| 564 | dev->name, cmd); |
| 565 | return -EINVAL; |
| 566 | } |
| 567 | |
| 568 | DBG2("[%s] %s: cmd=0x%x opmode old=0x%08x new=0x%08x\n", |
| 569 | dev->name, __func__, cmd, old_opmode, p->operation_mode); |
| 570 | return rc; |
| 571 | } |
| 572 | |
| 573 | static void __init rmnet_setup(struct net_device *dev) |
| 574 | { |
| 575 | /* Using Ethernet mode by default */ |
| 576 | dev->netdev_ops = &rmnet_ops_ether; |
| 577 | ether_setup(dev); |
| 578 | |
| 579 | /* set this after calling ether_setup */ |
| 580 | dev->mtu = RMNET_DATA_LEN; |
| 581 | dev->needed_headroom = HEADROOM_FOR_BAM + HEADROOM_FOR_QOS ; |
| 582 | dev->needed_tailroom = TAILROOM; |
| 583 | random_ether_addr(dev->dev_addr); |
| 584 | |
| 585 | dev->watchdog_timeo = 1000; /* 10 seconds? */ |
| 586 | } |
| 587 | |
| 588 | |
| 589 | static int __init rmnet_init(void) |
| 590 | { |
| 591 | int ret; |
| 592 | struct device *d; |
| 593 | struct net_device *dev; |
| 594 | struct rmnet_private *p; |
| 595 | unsigned n; |
| 596 | |
| 597 | pr_info("%s: BAM devices[%d]\n", __func__, RMNET_DEVICE_COUNT); |
| 598 | |
| 599 | #ifdef CONFIG_MSM_RMNET_DEBUG |
| 600 | timeout_us = 0; |
| 601 | #ifdef CONFIG_HAS_EARLYSUSPEND |
| 602 | timeout_suspend_us = 0; |
| 603 | #endif |
| 604 | #endif |
| 605 | |
| 606 | for (n = 0; n < RMNET_DEVICE_COUNT; n++) { |
| 607 | dev = alloc_netdev(sizeof(struct rmnet_private), |
| 608 | "rmnet%d", rmnet_setup); |
| 609 | |
| 610 | if (!dev) |
| 611 | return -ENOMEM; |
| 612 | |
| 613 | d = &(dev->dev); |
| 614 | p = netdev_priv(dev); |
| 615 | /* Initial config uses Ethernet */ |
| 616 | p->operation_mode = RMNET_MODE_LLP_ETH; |
| 617 | p->ch_id = n; |
| 618 | spin_lock_init(&p->lock); |
| 619 | #ifdef CONFIG_MSM_RMNET_DEBUG |
| 620 | p->timeout_us = timeout_us; |
| 621 | p->wakeups_xmit = p->wakeups_rcv = 0; |
| 622 | #endif |
| 623 | |
| 624 | ret = register_netdev(dev); |
| 625 | if (ret) { |
| 626 | free_netdev(dev); |
| 627 | return ret; |
| 628 | } |
| 629 | |
| 630 | #ifdef CONFIG_MSM_RMNET_DEBUG |
| 631 | if (device_create_file(d, &dev_attr_timeout)) |
| 632 | continue; |
| 633 | if (device_create_file(d, &dev_attr_wakeups_xmit)) |
| 634 | continue; |
| 635 | if (device_create_file(d, &dev_attr_wakeups_rcv)) |
| 636 | continue; |
| 637 | #ifdef CONFIG_HAS_EARLYSUSPEND |
| 638 | if (device_create_file(d, &dev_attr_timeout_suspend)) |
| 639 | continue; |
| 640 | |
| 641 | /* Only care about rmnet0 for suspend/resume tiemout hooks. */ |
| 642 | if (n == 0) |
| 643 | rmnet0 = d; |
| 644 | #endif |
| 645 | #endif |
| 646 | } |
| 647 | return 0; |
| 648 | } |
| 649 | |
| 650 | module_init(rmnet_init); |
| 651 | MODULE_DESCRIPTION("MSM RMNET BAM TRANSPORT"); |
| 652 | MODULE_LICENSE("GPL v2"); |
| 653 | |