| /* Copyright (c) 2011-2012, Code Aurora Forum. All rights reserved. |
| * |
| * This program is free software; you can redistribute it and/or modify |
| * it under the terms of the GNU General Public License version 2 and |
| * only version 2 as published by the Free Software Foundation. |
| * |
| * This program is distributed in the hope that it will be useful, |
| * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| * GNU General Public License for more details. |
| */ |
| |
| #include <linux/kernel.h> |
| #include <linux/errno.h> |
| #include <linux/init.h> |
| #include <linux/slab.h> |
| #include <linux/module.h> |
| #include <linux/debugfs.h> |
| #include <linux/platform_device.h> |
| #include <linux/uaccess.h> |
| #include <linux/ratelimit.h> |
| #include <mach/usb_bridge.h> |
| |
| #define MAX_RX_URBS 50 |
| #define RMNET_RX_BUFSIZE 2048 |
| |
| #define STOP_SUBMIT_URB_LIMIT 500 |
| #define FLOW_CTRL_EN_THRESHOLD 500 |
| #define FLOW_CTRL_DISABLE 300 |
| #define FLOW_CTRL_SUPPORT 1 |
| |
| static const char *data_bridge_names[] = { |
| "dun_data_hsic0", |
| "rmnet_data_hsic0" |
| }; |
| |
| static struct workqueue_struct *bridge_wq; |
| |
| static unsigned int fctrl_support = FLOW_CTRL_SUPPORT; |
| module_param(fctrl_support, uint, S_IRUGO | S_IWUSR); |
| |
| static unsigned int fctrl_en_thld = FLOW_CTRL_EN_THRESHOLD; |
| module_param(fctrl_en_thld, uint, S_IRUGO | S_IWUSR); |
| |
| static unsigned int fctrl_dis_thld = FLOW_CTRL_DISABLE; |
| module_param(fctrl_dis_thld, uint, S_IRUGO | S_IWUSR); |
| |
| unsigned int max_rx_urbs = MAX_RX_URBS; |
| module_param(max_rx_urbs, uint, S_IRUGO | S_IWUSR); |
| |
| unsigned int stop_submit_urb_limit = STOP_SUBMIT_URB_LIMIT; |
| module_param(stop_submit_urb_limit, uint, S_IRUGO | S_IWUSR); |
| |
| static unsigned tx_urb_mult = 20; |
| module_param(tx_urb_mult, uint, S_IRUGO|S_IWUSR); |
| |
| #define TX_HALT BIT(0) |
| #define RX_HALT BIT(1) |
| #define SUSPENDED BIT(2) |
| |
| struct data_bridge { |
| struct usb_interface *intf; |
| struct usb_device *udev; |
| unsigned int bulk_in; |
| unsigned int bulk_out; |
| int err; |
| |
| /* keep track of in-flight URBs */ |
| struct usb_anchor tx_active; |
| struct usb_anchor rx_active; |
| |
| /* keep track of outgoing URBs during suspend */ |
| struct usb_anchor delayed; |
| |
| struct list_head rx_idle; |
| struct sk_buff_head rx_done; |
| |
| struct workqueue_struct *wq; |
| struct work_struct process_rx_w; |
| |
| struct bridge *brdg; |
| |
| /* work queue function for handling halt conditions */ |
| struct work_struct kevent; |
| |
| unsigned long flags; |
| |
| struct platform_device *pdev; |
| |
| /* counters */ |
| atomic_t pending_txurbs; |
| unsigned int txurb_drp_cnt; |
| unsigned long to_host; |
| unsigned long to_modem; |
| unsigned int tx_throttled_cnt; |
| unsigned int tx_unthrottled_cnt; |
| unsigned int rx_throttled_cnt; |
| unsigned int rx_unthrottled_cnt; |
| }; |
| |
| static struct data_bridge *__dev[MAX_BRIDGE_DEVICES]; |
| |
| /* counter used for indexing data bridge devices */ |
| static int ch_id; |
| |
| static unsigned int get_timestamp(void); |
| static void dbg_timestamp(char *, struct sk_buff *); |
| static int submit_rx_urb(struct data_bridge *dev, struct urb *urb, |
| gfp_t flags); |
| |
| static inline bool rx_halted(struct data_bridge *dev) |
| { |
| return test_bit(RX_HALT, &dev->flags); |
| } |
| |
| static inline bool rx_throttled(struct bridge *brdg) |
| { |
| return test_bit(RX_THROTTLED, &brdg->flags); |
| } |
| |
| int data_bridge_unthrottle_rx(unsigned int id) |
| { |
| struct data_bridge *dev; |
| |
| if (id >= MAX_BRIDGE_DEVICES) |
| return -EINVAL; |
| |
| dev = __dev[id]; |
| if (!dev || !dev->brdg) |
| return -ENODEV; |
| |
| dev->rx_unthrottled_cnt++; |
| queue_work(dev->wq, &dev->process_rx_w); |
| |
| return 0; |
| } |
| EXPORT_SYMBOL(data_bridge_unthrottle_rx); |
| |
| static void data_bridge_process_rx(struct work_struct *work) |
| { |
| int retval; |
| unsigned long flags; |
| struct urb *rx_idle; |
| struct sk_buff *skb; |
| struct timestamp_info *info; |
| struct data_bridge *dev = |
| container_of(work, struct data_bridge, process_rx_w); |
| |
| struct bridge *brdg = dev->brdg; |
| |
| if (!brdg || !brdg->ops.send_pkt || rx_halted(dev)) |
| return; |
| |
| while (!rx_throttled(brdg) && (skb = skb_dequeue(&dev->rx_done))) { |
| dev->to_host++; |
| info = (struct timestamp_info *)skb->cb; |
| info->rx_done_sent = get_timestamp(); |
| /* hand off sk_buff to client,they'll need to free it */ |
| retval = brdg->ops.send_pkt(brdg->ctx, skb, skb->len); |
| if (retval == -ENOTCONN || retval == -EINVAL) { |
| return; |
| } else if (retval == -EBUSY) { |
| dev->rx_throttled_cnt++; |
| break; |
| } |
| } |
| |
| spin_lock_irqsave(&dev->rx_done.lock, flags); |
| while (!list_empty(&dev->rx_idle)) { |
| if (dev->rx_done.qlen > stop_submit_urb_limit) |
| break; |
| |
| rx_idle = list_first_entry(&dev->rx_idle, struct urb, urb_list); |
| list_del(&rx_idle->urb_list); |
| spin_unlock_irqrestore(&dev->rx_done.lock, flags); |
| retval = submit_rx_urb(dev, rx_idle, GFP_KERNEL); |
| spin_lock_irqsave(&dev->rx_done.lock, flags); |
| if (retval) { |
| list_add_tail(&rx_idle->urb_list, &dev->rx_idle); |
| break; |
| } |
| } |
| spin_unlock_irqrestore(&dev->rx_done.lock, flags); |
| } |
| |
| static void data_bridge_read_cb(struct urb *urb) |
| { |
| struct bridge *brdg; |
| struct sk_buff *skb = urb->context; |
| struct timestamp_info *info = (struct timestamp_info *)skb->cb; |
| struct data_bridge *dev = info->dev; |
| bool queue = 0; |
| |
| brdg = dev->brdg; |
| skb_put(skb, urb->actual_length); |
| |
| switch (urb->status) { |
| case 0: /* success */ |
| queue = 1; |
| info->rx_done = get_timestamp(); |
| spin_lock(&dev->rx_done.lock); |
| __skb_queue_tail(&dev->rx_done, skb); |
| spin_unlock(&dev->rx_done.lock); |
| break; |
| |
| /*do not resubmit*/ |
| case -EPIPE: |
| set_bit(RX_HALT, &dev->flags); |
| dev_err(&dev->udev->dev, "%s: epout halted\n", __func__); |
| schedule_work(&dev->kevent); |
| /* FALLTHROUGH */ |
| case -ESHUTDOWN: |
| case -ENOENT: /* suspended */ |
| case -ECONNRESET: /* unplug */ |
| case -EPROTO: |
| dev_kfree_skb_any(skb); |
| break; |
| |
| /*resubmit */ |
| case -EOVERFLOW: /*babble error*/ |
| default: |
| queue = 1; |
| dev_kfree_skb_any(skb); |
| pr_debug_ratelimited("%s: non zero urb status = %d\n", |
| __func__, urb->status); |
| break; |
| } |
| |
| spin_lock(&dev->rx_done.lock); |
| list_add_tail(&urb->urb_list, &dev->rx_idle); |
| spin_unlock(&dev->rx_done.lock); |
| |
| if (queue) |
| queue_work(dev->wq, &dev->process_rx_w); |
| } |
| |
| static int submit_rx_urb(struct data_bridge *dev, struct urb *rx_urb, |
| gfp_t flags) |
| { |
| struct sk_buff *skb; |
| struct timestamp_info *info; |
| int retval = -EINVAL; |
| unsigned int created; |
| |
| created = get_timestamp(); |
| skb = alloc_skb(RMNET_RX_BUFSIZE, flags); |
| if (!skb) |
| return -ENOMEM; |
| |
| info = (struct timestamp_info *)skb->cb; |
| info->dev = dev; |
| info->created = created; |
| |
| usb_fill_bulk_urb(rx_urb, dev->udev, dev->bulk_in, |
| skb->data, RMNET_RX_BUFSIZE, |
| data_bridge_read_cb, skb); |
| |
| if (test_bit(SUSPENDED, &dev->flags)) |
| goto suspended; |
| |
| usb_anchor_urb(rx_urb, &dev->rx_active); |
| info->rx_queued = get_timestamp(); |
| retval = usb_submit_urb(rx_urb, flags); |
| if (retval) |
| goto fail; |
| |
| return 0; |
| fail: |
| usb_unanchor_urb(rx_urb); |
| suspended: |
| dev_kfree_skb_any(skb); |
| |
| return retval; |
| } |
| |
| static int data_bridge_prepare_rx(struct data_bridge *dev) |
| { |
| int i; |
| struct urb *rx_urb; |
| |
| for (i = 0; i < max_rx_urbs; i++) { |
| rx_urb = usb_alloc_urb(0, GFP_KERNEL); |
| if (!rx_urb) |
| return -ENOMEM; |
| |
| list_add_tail(&rx_urb->urb_list, &dev->rx_idle); |
| } |
| return 0; |
| } |
| |
| int data_bridge_open(struct bridge *brdg) |
| { |
| struct data_bridge *dev; |
| |
| if (!brdg) { |
| err("bridge is null\n"); |
| return -EINVAL; |
| } |
| |
| if (brdg->ch_id >= MAX_BRIDGE_DEVICES) |
| return -EINVAL; |
| |
| dev = __dev[brdg->ch_id]; |
| if (!dev) { |
| err("dev is null\n"); |
| return -ENODEV; |
| } |
| |
| dev_dbg(&dev->udev->dev, "%s: dev:%p\n", __func__, dev); |
| |
| dev->brdg = brdg; |
| dev->err = 0; |
| atomic_set(&dev->pending_txurbs, 0); |
| dev->to_host = 0; |
| dev->to_modem = 0; |
| dev->txurb_drp_cnt = 0; |
| dev->tx_throttled_cnt = 0; |
| dev->tx_unthrottled_cnt = 0; |
| dev->rx_throttled_cnt = 0; |
| dev->rx_unthrottled_cnt = 0; |
| |
| queue_work(dev->wq, &dev->process_rx_w); |
| |
| return 0; |
| } |
| EXPORT_SYMBOL(data_bridge_open); |
| |
| void data_bridge_close(unsigned int id) |
| { |
| struct data_bridge *dev; |
| struct sk_buff *skb; |
| unsigned long flags; |
| |
| if (id >= MAX_BRIDGE_DEVICES) |
| return; |
| |
| dev = __dev[id]; |
| if (!dev || !dev->brdg) |
| return; |
| |
| dev_dbg(&dev->udev->dev, "%s:\n", __func__); |
| |
| usb_unlink_anchored_urbs(&dev->tx_active); |
| usb_unlink_anchored_urbs(&dev->rx_active); |
| usb_unlink_anchored_urbs(&dev->delayed); |
| |
| spin_lock_irqsave(&dev->rx_done.lock, flags); |
| while ((skb = __skb_dequeue(&dev->rx_done))) |
| dev_kfree_skb_any(skb); |
| spin_unlock_irqrestore(&dev->rx_done.lock, flags); |
| |
| dev->brdg = NULL; |
| } |
| EXPORT_SYMBOL(data_bridge_close); |
| |
| static void defer_kevent(struct work_struct *work) |
| { |
| int status; |
| struct data_bridge *dev = |
| container_of(work, struct data_bridge, kevent); |
| |
| if (!dev) |
| return; |
| |
| if (test_bit(TX_HALT, &dev->flags)) { |
| usb_unlink_anchored_urbs(&dev->tx_active); |
| |
| status = usb_autopm_get_interface(dev->intf); |
| if (status < 0) { |
| dev_err(&dev->udev->dev, |
| "can't acquire interface, status %d\n", status); |
| return; |
| } |
| |
| status = usb_clear_halt(dev->udev, dev->bulk_out); |
| usb_autopm_put_interface(dev->intf); |
| if (status < 0 && status != -EPIPE && status != -ESHUTDOWN) |
| dev_err(&dev->udev->dev, |
| "can't clear tx halt, status %d\n", status); |
| else |
| clear_bit(TX_HALT, &dev->flags); |
| } |
| |
| if (test_bit(RX_HALT, &dev->flags)) { |
| usb_unlink_anchored_urbs(&dev->rx_active); |
| |
| status = usb_autopm_get_interface(dev->intf); |
| if (status < 0) { |
| dev_err(&dev->udev->dev, |
| "can't acquire interface, status %d\n", status); |
| return; |
| } |
| |
| status = usb_clear_halt(dev->udev, dev->bulk_in); |
| usb_autopm_put_interface(dev->intf); |
| if (status < 0 && status != -EPIPE && status != -ESHUTDOWN) |
| dev_err(&dev->udev->dev, |
| "can't clear rx halt, status %d\n", status); |
| else { |
| clear_bit(RX_HALT, &dev->flags); |
| if (dev->brdg) |
| queue_work(dev->wq, &dev->process_rx_w); |
| } |
| } |
| } |
| |
| static void data_bridge_write_cb(struct urb *urb) |
| { |
| struct sk_buff *skb = urb->context; |
| struct timestamp_info *info = (struct timestamp_info *)skb->cb; |
| struct data_bridge *dev = info->dev; |
| struct bridge *brdg = dev->brdg; |
| int pending; |
| |
| pr_debug("%s: dev:%p\n", __func__, dev); |
| |
| switch (urb->status) { |
| case 0: /*success*/ |
| dbg_timestamp("UL", skb); |
| break; |
| case -EPROTO: |
| dev->err = -EPROTO; |
| break; |
| case -EPIPE: |
| set_bit(TX_HALT, &dev->flags); |
| dev_err(&dev->udev->dev, "%s: epout halted\n", __func__); |
| schedule_work(&dev->kevent); |
| /* FALLTHROUGH */ |
| case -ESHUTDOWN: |
| case -ENOENT: /* suspended */ |
| case -ECONNRESET: /* unplug */ |
| case -EOVERFLOW: /*babble error*/ |
| /* FALLTHROUGH */ |
| default: |
| pr_debug_ratelimited("%s: non zero urb status = %d\n", |
| __func__, urb->status); |
| } |
| |
| usb_free_urb(urb); |
| dev_kfree_skb_any(skb); |
| |
| pending = atomic_dec_return(&dev->pending_txurbs); |
| |
| /*flow ctrl*/ |
| if (brdg && fctrl_support && pending <= fctrl_dis_thld && |
| test_and_clear_bit(TX_THROTTLED, &brdg->flags)) { |
| pr_debug_ratelimited("%s: disable flow ctrl: pend urbs:%u\n", |
| __func__, pending); |
| dev->tx_unthrottled_cnt++; |
| if (brdg->ops.unthrottle_tx) |
| brdg->ops.unthrottle_tx(brdg->ctx); |
| } |
| |
| usb_autopm_put_interface_async(dev->intf); |
| } |
| |
| int data_bridge_write(unsigned int id, struct sk_buff *skb) |
| { |
| int result; |
| int size = skb->len; |
| int pending; |
| struct urb *txurb; |
| struct timestamp_info *info = (struct timestamp_info *)skb->cb; |
| struct data_bridge *dev = __dev[id]; |
| struct bridge *brdg; |
| |
| if (!dev || !dev->brdg || dev->err || !usb_get_intfdata(dev->intf)) |
| return -ENODEV; |
| |
| brdg = dev->brdg; |
| if (!brdg) |
| return -ENODEV; |
| |
| dev_dbg(&dev->udev->dev, "%s: write (%d bytes)\n", __func__, skb->len); |
| |
| result = usb_autopm_get_interface(dev->intf); |
| if (result < 0) { |
| dev_err(&dev->udev->dev, "%s: resume failure\n", __func__); |
| goto error; |
| } |
| |
| txurb = usb_alloc_urb(0, GFP_KERNEL); |
| if (!txurb) { |
| dev_err(&dev->udev->dev, "%s: error allocating read urb\n", |
| __func__); |
| result = -ENOMEM; |
| goto error; |
| } |
| |
| /* store dev pointer in skb */ |
| info->dev = dev; |
| info->tx_queued = get_timestamp(); |
| |
| usb_fill_bulk_urb(txurb, dev->udev, dev->bulk_out, |
| skb->data, skb->len, data_bridge_write_cb, skb); |
| |
| if (test_bit(SUSPENDED, &dev->flags)) { |
| usb_anchor_urb(txurb, &dev->delayed); |
| goto free_urb; |
| } |
| |
| pending = atomic_inc_return(&dev->pending_txurbs); |
| usb_anchor_urb(txurb, &dev->tx_active); |
| |
| if (atomic_read(&dev->pending_txurbs) % tx_urb_mult) |
| txurb->transfer_flags |= URB_NO_INTERRUPT; |
| |
| result = usb_submit_urb(txurb, GFP_KERNEL); |
| if (result < 0) { |
| usb_unanchor_urb(txurb); |
| atomic_dec(&dev->pending_txurbs); |
| dev_err(&dev->udev->dev, "%s: submit URB error %d\n", |
| __func__, result); |
| goto free_urb; |
| } |
| |
| dev->to_modem++; |
| dev_dbg(&dev->udev->dev, "%s: pending_txurbs: %u\n", __func__, pending); |
| |
| /* flow control: last urb submitted but return -EBUSY */ |
| if (fctrl_support && pending > fctrl_en_thld) { |
| set_bit(TX_THROTTLED, &brdg->flags); |
| dev->tx_throttled_cnt++; |
| pr_debug_ratelimited("%s: enable flow ctrl pend txurbs:%u\n", |
| __func__, pending); |
| return -EBUSY; |
| } |
| |
| return size; |
| |
| free_urb: |
| usb_free_urb(txurb); |
| error: |
| dev->txurb_drp_cnt++; |
| usb_autopm_put_interface(dev->intf); |
| |
| return result; |
| } |
| EXPORT_SYMBOL(data_bridge_write); |
| |
| static int data_bridge_resume(struct data_bridge *dev) |
| { |
| struct urb *urb; |
| int retval; |
| |
| while ((urb = usb_get_from_anchor(&dev->delayed))) { |
| usb_anchor_urb(urb, &dev->tx_active); |
| atomic_inc(&dev->pending_txurbs); |
| retval = usb_submit_urb(urb, GFP_ATOMIC); |
| if (retval < 0) { |
| atomic_dec(&dev->pending_txurbs); |
| usb_unanchor_urb(urb); |
| |
| /* TODO: need to free urb data */ |
| usb_scuttle_anchored_urbs(&dev->delayed); |
| break; |
| } |
| dev->to_modem++; |
| dev->txurb_drp_cnt--; |
| } |
| |
| clear_bit(SUSPENDED, &dev->flags); |
| |
| if (dev->brdg) |
| queue_work(dev->wq, &dev->process_rx_w); |
| |
| return 0; |
| } |
| |
| static int bridge_resume(struct usb_interface *iface) |
| { |
| int retval = 0; |
| int oldstate; |
| struct data_bridge *dev = usb_get_intfdata(iface); |
| struct bridge *brdg = dev->brdg; |
| |
| oldstate = iface->dev.power.power_state.event; |
| iface->dev.power.power_state.event = PM_EVENT_ON; |
| |
| retval = data_bridge_resume(dev); |
| if (!retval) { |
| if (oldstate & PM_EVENT_SUSPEND && brdg) |
| retval = ctrl_bridge_resume(brdg->ch_id); |
| } |
| return retval; |
| } |
| |
| static int data_bridge_suspend(struct data_bridge *dev, pm_message_t message) |
| { |
| if (atomic_read(&dev->pending_txurbs) && |
| (message.event & PM_EVENT_AUTO)) |
| return -EBUSY; |
| |
| set_bit(SUSPENDED, &dev->flags); |
| |
| usb_kill_anchored_urbs(&dev->tx_active); |
| usb_kill_anchored_urbs(&dev->rx_active); |
| |
| return 0; |
| } |
| |
| static int bridge_suspend(struct usb_interface *intf, pm_message_t message) |
| { |
| int retval; |
| struct data_bridge *dev = usb_get_intfdata(intf); |
| struct bridge *brdg = dev->brdg; |
| |
| retval = data_bridge_suspend(dev, message); |
| if (!retval) { |
| if (message.event & PM_EVENT_SUSPEND) { |
| if (brdg) |
| retval = ctrl_bridge_suspend(brdg->ch_id); |
| intf->dev.power.power_state.event = message.event; |
| } |
| } else { |
| dev_dbg(&dev->udev->dev, "%s: device is busy,cannot suspend\n", |
| __func__); |
| } |
| return retval; |
| } |
| |
| static int data_bridge_probe(struct usb_interface *iface, |
| struct usb_host_endpoint *bulk_in, |
| struct usb_host_endpoint *bulk_out, int id) |
| { |
| struct data_bridge *dev; |
| |
| dev = kzalloc(sizeof(*dev), GFP_KERNEL); |
| if (!dev) { |
| err("%s: unable to allocate dev\n", __func__); |
| return -ENOMEM; |
| } |
| |
| dev->pdev = platform_device_alloc(data_bridge_names[id], id); |
| if (!dev->pdev) { |
| err("%s: unable to allocate platform device\n", __func__); |
| kfree(dev); |
| return -ENOMEM; |
| } |
| |
| init_usb_anchor(&dev->tx_active); |
| init_usb_anchor(&dev->rx_active); |
| init_usb_anchor(&dev->delayed); |
| |
| INIT_LIST_HEAD(&dev->rx_idle); |
| skb_queue_head_init(&dev->rx_done); |
| |
| dev->wq = bridge_wq; |
| |
| dev->udev = interface_to_usbdev(iface); |
| dev->intf = iface; |
| |
| dev->bulk_in = usb_rcvbulkpipe(dev->udev, |
| bulk_in->desc.bEndpointAddress & USB_ENDPOINT_NUMBER_MASK); |
| |
| dev->bulk_out = usb_sndbulkpipe(dev->udev, |
| bulk_out->desc.bEndpointAddress & USB_ENDPOINT_NUMBER_MASK); |
| |
| usb_set_intfdata(iface, dev); |
| |
| INIT_WORK(&dev->kevent, defer_kevent); |
| INIT_WORK(&dev->process_rx_w, data_bridge_process_rx); |
| |
| __dev[id] = dev; |
| |
| /*allocate list of rx urbs*/ |
| data_bridge_prepare_rx(dev); |
| |
| platform_device_add(dev->pdev); |
| |
| return 0; |
| } |
| |
| #if defined(CONFIG_DEBUG_FS) |
| #define DEBUG_BUF_SIZE 1024 |
| |
| static unsigned int record_timestamp; |
| module_param(record_timestamp, uint, S_IRUGO | S_IWUSR); |
| |
| static struct timestamp_buf dbg_data = { |
| .idx = 0, |
| .lck = __RW_LOCK_UNLOCKED(lck) |
| }; |
| |
| /*get_timestamp - returns time of day in us */ |
| static unsigned int get_timestamp(void) |
| { |
| struct timeval tval; |
| unsigned int stamp; |
| |
| if (!record_timestamp) |
| return 0; |
| |
| do_gettimeofday(&tval); |
| /* 2^32 = 4294967296. Limit to 4096s. */ |
| stamp = tval.tv_sec & 0xFFF; |
| stamp = stamp * 1000000 + tval.tv_usec; |
| return stamp; |
| } |
| |
| static void dbg_inc(unsigned *idx) |
| { |
| *idx = (*idx + 1) & (DBG_DATA_MAX-1); |
| } |
| |
| /** |
| * dbg_timestamp - Stores timestamp values of a SKB life cycle |
| * to debug buffer |
| * @event: "UL": Uplink Data |
| * @skb: SKB used to store timestamp values to debug buffer |
| */ |
| static void dbg_timestamp(char *event, struct sk_buff * skb) |
| { |
| unsigned long flags; |
| struct timestamp_info *info = (struct timestamp_info *)skb->cb; |
| |
| if (!record_timestamp) |
| return; |
| |
| write_lock_irqsave(&dbg_data.lck, flags); |
| |
| scnprintf(dbg_data.buf[dbg_data.idx], DBG_DATA_MSG, |
| "%p %u[%s] %u %u %u %u %u %u\n", |
| skb, skb->len, event, info->created, info->rx_queued, |
| info->rx_done, info->rx_done_sent, info->tx_queued, |
| get_timestamp()); |
| |
| dbg_inc(&dbg_data.idx); |
| |
| write_unlock_irqrestore(&dbg_data.lck, flags); |
| } |
| |
| /* show_timestamp: displays the timestamp buffer */ |
| static ssize_t show_timestamp(struct file *file, char __user *ubuf, |
| size_t count, loff_t *ppos) |
| { |
| unsigned long flags; |
| unsigned i; |
| unsigned j = 0; |
| char *buf; |
| int ret = 0; |
| |
| if (!record_timestamp) |
| return 0; |
| |
| buf = kzalloc(sizeof(char) * 4 * DEBUG_BUF_SIZE, GFP_KERNEL); |
| if (!buf) |
| return -ENOMEM; |
| |
| read_lock_irqsave(&dbg_data.lck, flags); |
| |
| i = dbg_data.idx; |
| for (dbg_inc(&i); i != dbg_data.idx; dbg_inc(&i)) { |
| if (!strnlen(dbg_data.buf[i], DBG_DATA_MSG)) |
| continue; |
| j += scnprintf(buf + j, (4 * DEBUG_BUF_SIZE) - j, |
| "%s\n", dbg_data.buf[i]); |
| } |
| |
| read_unlock_irqrestore(&dbg_data.lck, flags); |
| |
| ret = simple_read_from_buffer(ubuf, count, ppos, buf, j); |
| |
| kfree(buf); |
| |
| return ret; |
| } |
| |
| const struct file_operations data_timestamp_ops = { |
| .read = show_timestamp, |
| }; |
| |
| static ssize_t data_bridge_read_stats(struct file *file, char __user *ubuf, |
| size_t count, loff_t *ppos) |
| { |
| struct data_bridge *dev; |
| char *buf; |
| int ret; |
| int i; |
| int temp = 0; |
| |
| buf = kzalloc(sizeof(char) * DEBUG_BUF_SIZE, GFP_KERNEL); |
| if (!buf) |
| return -ENOMEM; |
| |
| for (i = 0; i < ch_id; i++) { |
| dev = __dev[i]; |
| if (!dev) |
| continue; |
| |
| temp += scnprintf(buf + temp, DEBUG_BUF_SIZE - temp, |
| "\nName#%s dev %p\n" |
| "pending tx urbs: %u\n" |
| "tx urb drp cnt: %u\n" |
| "to host: %lu\n" |
| "to mdm: %lu\n" |
| "tx throttled cnt: %u\n" |
| "tx unthrottled cnt: %u\n" |
| "rx throttled cnt: %u\n" |
| "rx unthrottled cnt: %u\n" |
| "rx done skb qlen: %u\n" |
| "dev err: %d\n" |
| "suspended: %d\n" |
| "TX_HALT: %d\n" |
| "RX_HALT: %d\n", |
| dev->pdev->name, dev, |
| atomic_read(&dev->pending_txurbs), |
| dev->txurb_drp_cnt, |
| dev->to_host, |
| dev->to_modem, |
| dev->tx_throttled_cnt, |
| dev->tx_unthrottled_cnt, |
| dev->rx_throttled_cnt, |
| dev->rx_unthrottled_cnt, |
| dev->rx_done.qlen, |
| dev->err, |
| test_bit(SUSPENDED, &dev->flags), |
| test_bit(TX_HALT, &dev->flags), |
| test_bit(RX_HALT, &dev->flags)); |
| |
| } |
| |
| ret = simple_read_from_buffer(ubuf, count, ppos, buf, temp); |
| |
| kfree(buf); |
| |
| return ret; |
| } |
| |
| static ssize_t data_bridge_reset_stats(struct file *file, |
| const char __user *buf, size_t count, loff_t *ppos) |
| { |
| struct data_bridge *dev; |
| int i; |
| |
| for (i = 0; i < ch_id; i++) { |
| dev = __dev[i]; |
| if (!dev) |
| continue; |
| |
| dev->to_host = 0; |
| dev->to_modem = 0; |
| dev->txurb_drp_cnt = 0; |
| dev->tx_throttled_cnt = 0; |
| dev->tx_unthrottled_cnt = 0; |
| dev->rx_throttled_cnt = 0; |
| dev->rx_unthrottled_cnt = 0; |
| } |
| return count; |
| } |
| |
| const struct file_operations data_stats_ops = { |
| .read = data_bridge_read_stats, |
| .write = data_bridge_reset_stats, |
| }; |
| |
| static struct dentry *data_dent; |
| static struct dentry *data_dfile_stats; |
| static struct dentry *data_dfile_tstamp; |
| |
| static void data_bridge_debugfs_init(void) |
| { |
| data_dent = debugfs_create_dir("data_hsic_bridge", 0); |
| if (IS_ERR(data_dent)) |
| return; |
| |
| data_dfile_stats = debugfs_create_file("status", 0644, data_dent, 0, |
| &data_stats_ops); |
| if (!data_dfile_stats || IS_ERR(data_dfile_stats)) { |
| debugfs_remove(data_dent); |
| return; |
| } |
| |
| data_dfile_tstamp = debugfs_create_file("timestamp", 0644, data_dent, |
| 0, &data_timestamp_ops); |
| if (!data_dfile_tstamp || IS_ERR(data_dfile_tstamp)) |
| debugfs_remove(data_dent); |
| } |
| |
| static void data_bridge_debugfs_exit(void) |
| { |
| debugfs_remove(data_dfile_stats); |
| debugfs_remove(data_dfile_tstamp); |
| debugfs_remove(data_dent); |
| } |
| |
| #else |
| static void data_bridge_debugfs_init(void) { } |
| static void data_bridge_debugfs_exit(void) { } |
| static void dbg_timestamp(char *event, struct sk_buff * skb) |
| { |
| return; |
| } |
| |
| static unsigned int get_timestamp(void) |
| { |
| return 0; |
| } |
| |
| #endif |
| |
| static int __devinit |
| bridge_probe(struct usb_interface *iface, const struct usb_device_id *id) |
| { |
| struct usb_host_endpoint *endpoint = NULL; |
| struct usb_host_endpoint *bulk_in = NULL; |
| struct usb_host_endpoint *bulk_out = NULL; |
| struct usb_host_endpoint *int_in = NULL; |
| struct usb_device *udev; |
| int i; |
| int status = 0; |
| int numends; |
| unsigned int iface_num; |
| |
| iface_num = iface->cur_altsetting->desc.bInterfaceNumber; |
| |
| if (iface->num_altsetting != 1) { |
| err("%s invalid num_altsetting %u\n", |
| __func__, iface->num_altsetting); |
| return -EINVAL; |
| } |
| |
| udev = interface_to_usbdev(iface); |
| usb_get_dev(udev); |
| |
| if (!test_bit(iface_num, &id->driver_info)) |
| return -ENODEV; |
| |
| numends = iface->cur_altsetting->desc.bNumEndpoints; |
| for (i = 0; i < numends; i++) { |
| endpoint = iface->cur_altsetting->endpoint + i; |
| if (!endpoint) { |
| dev_err(&udev->dev, "%s: invalid endpoint %u\n", |
| __func__, i); |
| status = -EINVAL; |
| goto out; |
| } |
| |
| if (usb_endpoint_is_bulk_in(&endpoint->desc)) |
| bulk_in = endpoint; |
| else if (usb_endpoint_is_bulk_out(&endpoint->desc)) |
| bulk_out = endpoint; |
| else if (usb_endpoint_is_int_in(&endpoint->desc)) |
| int_in = endpoint; |
| } |
| |
| if (!bulk_in || !bulk_out || !int_in) { |
| dev_err(&udev->dev, "%s: invalid endpoints\n", __func__); |
| status = -EINVAL; |
| goto out; |
| } |
| |
| status = data_bridge_probe(iface, bulk_in, bulk_out, ch_id); |
| if (status < 0) { |
| dev_err(&udev->dev, "data_bridge_probe failed %d\n", status); |
| goto out; |
| } |
| |
| status = ctrl_bridge_probe(iface, int_in, ch_id); |
| if (status < 0) { |
| dev_err(&udev->dev, "ctrl_bridge_probe failed %d\n", status); |
| goto free_data_bridge; |
| } |
| |
| ch_id++; |
| |
| return 0; |
| |
| free_data_bridge: |
| platform_device_del(__dev[ch_id]->pdev); |
| usb_set_intfdata(iface, NULL); |
| kfree(__dev[ch_id]); |
| __dev[ch_id] = NULL; |
| out: |
| usb_put_dev(udev); |
| |
| return status; |
| } |
| |
| static void bridge_disconnect(struct usb_interface *intf) |
| { |
| struct data_bridge *dev = usb_get_intfdata(intf); |
| struct list_head *head; |
| struct urb *rx_urb; |
| unsigned long flags; |
| |
| if (!dev) { |
| err("%s: data device not found\n", __func__); |
| return; |
| } |
| |
| ch_id--; |
| ctrl_bridge_disconnect(ch_id); |
| platform_device_del(dev->pdev); |
| usb_set_intfdata(intf, NULL); |
| __dev[ch_id] = NULL; |
| |
| cancel_work_sync(&dev->process_rx_w); |
| cancel_work_sync(&dev->kevent); |
| |
| /*free rx urbs*/ |
| head = &dev->rx_idle; |
| spin_lock_irqsave(&dev->rx_done.lock, flags); |
| while (!list_empty(head)) { |
| rx_urb = list_entry(head->next, struct urb, urb_list); |
| list_del(&rx_urb->urb_list); |
| usb_free_urb(rx_urb); |
| } |
| spin_unlock_irqrestore(&dev->rx_done.lock, flags); |
| |
| usb_put_dev(dev->udev); |
| kfree(dev); |
| } |
| |
| /*bit position represents interface number*/ |
| #define PID9001_IFACE_MASK 0xC |
| #define PID9034_IFACE_MASK 0xC |
| #define PID9048_IFACE_MASK 0x18 |
| |
| static const struct usb_device_id bridge_ids[] = { |
| { USB_DEVICE(0x5c6, 0x9001), |
| .driver_info = PID9001_IFACE_MASK, |
| }, |
| { USB_DEVICE(0x5c6, 0x9034), |
| .driver_info = PID9034_IFACE_MASK, |
| }, |
| { USB_DEVICE(0x5c6, 0x9048), |
| .driver_info = PID9048_IFACE_MASK, |
| }, |
| |
| { } /* Terminating entry */ |
| }; |
| MODULE_DEVICE_TABLE(usb, bridge_ids); |
| |
| static struct usb_driver bridge_driver = { |
| .name = "mdm_bridge", |
| .probe = bridge_probe, |
| .disconnect = bridge_disconnect, |
| .id_table = bridge_ids, |
| .suspend = bridge_suspend, |
| .resume = bridge_resume, |
| .supports_autosuspend = 1, |
| }; |
| |
| static int __init bridge_init(void) |
| { |
| int ret; |
| |
| ret = usb_register(&bridge_driver); |
| if (ret) { |
| err("%s: unable to register mdm_bridge driver", __func__); |
| return ret; |
| } |
| |
| bridge_wq = create_singlethread_workqueue("mdm_bridge"); |
| if (!bridge_wq) { |
| usb_deregister(&bridge_driver); |
| pr_err("%s: Unable to create workqueue:bridge\n", __func__); |
| return -ENOMEM; |
| } |
| |
| data_bridge_debugfs_init(); |
| |
| return 0; |
| } |
| |
| static void __exit bridge_exit(void) |
| { |
| data_bridge_debugfs_exit(); |
| destroy_workqueue(bridge_wq); |
| usb_deregister(&bridge_driver); |
| } |
| |
| module_init(bridge_init); |
| module_exit(bridge_exit); |
| |
| MODULE_DESCRIPTION("Qualcomm modem data bridge driver"); |
| MODULE_LICENSE("GPL v2"); |