1509 lines
36 KiB
C
1509 lines
36 KiB
C
|
/* Copyright (c) 2011-2013, Linux Foundation. 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/interrupt.h>
|
||
|
#include <linux/device.h>
|
||
|
#include <linux/delay.h>
|
||
|
#include <linux/slab.h>
|
||
|
#include <linux/termios.h>
|
||
|
#include <mach/msm_smd.h>
|
||
|
#include <linux/netdevice.h>
|
||
|
#include <mach/bam_dmux.h>
|
||
|
#include <linux/debugfs.h>
|
||
|
#include <linux/bitops.h>
|
||
|
#include <linux/termios.h>
|
||
|
|
||
|
#include <mach/usb_gadget_xport.h>
|
||
|
#include <linux/usb/msm_hsusb.h>
|
||
|
#include <mach/usb_bam.h>
|
||
|
|
||
|
#include "u_rmnet.h"
|
||
|
|
||
|
#define BAM_N_PORTS 1
|
||
|
#define BAM2BAM_N_PORTS 4
|
||
|
|
||
|
static struct workqueue_struct *gbam_wq;
|
||
|
static int n_bam_ports;
|
||
|
static int n_bam2bam_ports;
|
||
|
static unsigned n_tx_req_queued;
|
||
|
static unsigned bam_ch_ids[] = { 8 };
|
||
|
|
||
|
static const char *bam_ch_names[] = { "bam_dmux_ch_8" };
|
||
|
|
||
|
static const enum ipa_client_type usb_prod[BAM2BAM_N_PORTS] = {
|
||
|
IPA_CLIENT_USB_PROD, IPA_CLIENT_USB2_PROD,
|
||
|
IPA_CLIENT_USB3_PROD, IPA_CLIENT_USB4_PROD
|
||
|
};
|
||
|
static const enum ipa_client_type usb_cons[BAM2BAM_N_PORTS] = {
|
||
|
IPA_CLIENT_USB_CONS, IPA_CLIENT_USB2_CONS,
|
||
|
IPA_CLIENT_USB3_CONS, IPA_CLIENT_USB4_CONS
|
||
|
};
|
||
|
|
||
|
#define BAM_PENDING_LIMIT 220
|
||
|
#define BAM_MUX_TX_PKT_DROP_THRESHOLD 1000
|
||
|
#define BAM_MUX_RX_PKT_FCTRL_EN_TSHOLD 500
|
||
|
#define BAM_MUX_RX_PKT_FCTRL_DIS_TSHOLD 300
|
||
|
#define BAM_MUX_RX_PKT_FLOW_CTRL_SUPPORT 1
|
||
|
|
||
|
#define BAM_MUX_HDR 8
|
||
|
|
||
|
#define BAM_MUX_RX_Q_SIZE 16
|
||
|
#define BAM_MUX_TX_Q_SIZE 200
|
||
|
#define BAM_MUX_RX_REQ_SIZE 2048 /* Must be 1KB aligned */
|
||
|
|
||
|
#define DL_INTR_THRESHOLD 20
|
||
|
|
||
|
unsigned int bam_mux_tx_pkt_drop_thld = BAM_MUX_TX_PKT_DROP_THRESHOLD;
|
||
|
module_param(bam_mux_tx_pkt_drop_thld, uint, S_IRUGO | S_IWUSR);
|
||
|
|
||
|
unsigned int bam_mux_rx_fctrl_en_thld = BAM_MUX_RX_PKT_FCTRL_EN_TSHOLD;
|
||
|
module_param(bam_mux_rx_fctrl_en_thld, uint, S_IRUGO | S_IWUSR);
|
||
|
|
||
|
unsigned int bam_mux_rx_fctrl_support = BAM_MUX_RX_PKT_FLOW_CTRL_SUPPORT;
|
||
|
module_param(bam_mux_rx_fctrl_support, uint, S_IRUGO | S_IWUSR);
|
||
|
|
||
|
unsigned int bam_mux_rx_fctrl_dis_thld = BAM_MUX_RX_PKT_FCTRL_DIS_TSHOLD;
|
||
|
module_param(bam_mux_rx_fctrl_dis_thld, uint, S_IRUGO | S_IWUSR);
|
||
|
|
||
|
unsigned int bam_mux_tx_q_size = BAM_MUX_TX_Q_SIZE;
|
||
|
module_param(bam_mux_tx_q_size, uint, S_IRUGO | S_IWUSR);
|
||
|
|
||
|
unsigned int bam_mux_rx_q_size = BAM_MUX_RX_Q_SIZE;
|
||
|
module_param(bam_mux_rx_q_size, uint, S_IRUGO | S_IWUSR);
|
||
|
|
||
|
unsigned int bam_mux_rx_req_size = BAM_MUX_RX_REQ_SIZE;
|
||
|
module_param(bam_mux_rx_req_size, uint, S_IRUGO | S_IWUSR);
|
||
|
|
||
|
unsigned int dl_intr_threshold = DL_INTR_THRESHOLD;
|
||
|
module_param(dl_intr_threshold, uint, S_IRUGO | S_IWUSR);
|
||
|
|
||
|
#define BAM_CH_OPENED BIT(0)
|
||
|
#define BAM_CH_READY BIT(1)
|
||
|
|
||
|
struct bam_ch_info {
|
||
|
unsigned long flags;
|
||
|
unsigned id;
|
||
|
|
||
|
struct list_head tx_idle;
|
||
|
struct sk_buff_head tx_skb_q;
|
||
|
|
||
|
struct list_head rx_idle;
|
||
|
struct sk_buff_head rx_skb_q;
|
||
|
|
||
|
struct gbam_port *port;
|
||
|
struct work_struct write_tobam_w;
|
||
|
struct work_struct write_tohost_w;
|
||
|
|
||
|
struct usb_request *rx_req;
|
||
|
struct usb_request *tx_req;
|
||
|
|
||
|
u32 src_pipe_idx;
|
||
|
u32 dst_pipe_idx;
|
||
|
u8 src_connection_idx;
|
||
|
u8 dst_connection_idx;
|
||
|
enum transport_type trans;
|
||
|
struct usb_bam_connect_ipa_params ipa_params;
|
||
|
|
||
|
/* stats */
|
||
|
unsigned int pending_with_bam;
|
||
|
unsigned int tohost_drp_cnt;
|
||
|
unsigned int tomodem_drp_cnt;
|
||
|
unsigned int tx_len;
|
||
|
unsigned int rx_len;
|
||
|
unsigned long to_modem;
|
||
|
unsigned long to_host;
|
||
|
};
|
||
|
|
||
|
struct gbam_port {
|
||
|
unsigned port_num;
|
||
|
spinlock_t port_lock_ul;
|
||
|
spinlock_t port_lock_dl;
|
||
|
|
||
|
struct grmnet *port_usb;
|
||
|
struct grmnet *gr;
|
||
|
|
||
|
struct bam_ch_info data_ch;
|
||
|
|
||
|
struct work_struct connect_w;
|
||
|
struct work_struct disconnect_w;
|
||
|
struct work_struct suspend_w;
|
||
|
struct work_struct resume_w;
|
||
|
};
|
||
|
|
||
|
static struct bam_portmaster {
|
||
|
struct gbam_port *port;
|
||
|
struct platform_driver pdrv;
|
||
|
} bam_ports[BAM_N_PORTS];
|
||
|
|
||
|
struct gbam_port *bam2bam_ports[BAM2BAM_N_PORTS];
|
||
|
static void gbam_start_rx(struct gbam_port *port);
|
||
|
static void gbam_start_endless_rx(struct gbam_port *port);
|
||
|
static void gbam_start_endless_tx(struct gbam_port *port);
|
||
|
static int gbam_peer_reset_cb(void *param);
|
||
|
|
||
|
/*---------------misc functions---------------- */
|
||
|
static void gbam_free_requests(struct usb_ep *ep, struct list_head *head)
|
||
|
{
|
||
|
struct usb_request *req;
|
||
|
|
||
|
while (!list_empty(head)) {
|
||
|
req = list_entry(head->next, struct usb_request, list);
|
||
|
list_del(&req->list);
|
||
|
usb_ep_free_request(ep, req);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
static int gbam_alloc_requests(struct usb_ep *ep, struct list_head *head,
|
||
|
int num,
|
||
|
void (*cb)(struct usb_ep *ep, struct usb_request *),
|
||
|
gfp_t flags)
|
||
|
{
|
||
|
int i;
|
||
|
struct usb_request *req;
|
||
|
|
||
|
pr_debug("%s: ep:%p head:%p num:%d cb:%p", __func__,
|
||
|
ep, head, num, cb);
|
||
|
|
||
|
for (i = 0; i < num; i++) {
|
||
|
req = usb_ep_alloc_request(ep, flags);
|
||
|
if (!req) {
|
||
|
pr_debug("%s: req allocated:%d\n", __func__, i);
|
||
|
return list_empty(head) ? -ENOMEM : 0;
|
||
|
}
|
||
|
req->complete = cb;
|
||
|
list_add(&req->list, head);
|
||
|
}
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
/*--------------------------------------------- */
|
||
|
|
||
|
/*------------data_path----------------------------*/
|
||
|
static void gbam_write_data_tohost(struct gbam_port *port)
|
||
|
{
|
||
|
unsigned long flags;
|
||
|
struct bam_ch_info *d = &port->data_ch;
|
||
|
struct sk_buff *skb;
|
||
|
int ret;
|
||
|
struct usb_request *req;
|
||
|
struct usb_ep *ep;
|
||
|
|
||
|
spin_lock_irqsave(&port->port_lock_dl, flags);
|
||
|
if (!port->port_usb) {
|
||
|
spin_unlock_irqrestore(&port->port_lock_dl, flags);
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
ep = port->port_usb->in;
|
||
|
|
||
|
while (!list_empty(&d->tx_idle)) {
|
||
|
skb = __skb_dequeue(&d->tx_skb_q);
|
||
|
if (!skb) {
|
||
|
spin_unlock_irqrestore(&port->port_lock_dl, flags);
|
||
|
return;
|
||
|
}
|
||
|
req = list_first_entry(&d->tx_idle,
|
||
|
struct usb_request,
|
||
|
list);
|
||
|
req->context = skb;
|
||
|
req->buf = skb->data;
|
||
|
req->length = skb->len;
|
||
|
n_tx_req_queued++;
|
||
|
if (n_tx_req_queued == dl_intr_threshold) {
|
||
|
req->no_interrupt = 0;
|
||
|
n_tx_req_queued = 0;
|
||
|
} else {
|
||
|
req->no_interrupt = 1;
|
||
|
}
|
||
|
|
||
|
list_del(&req->list);
|
||
|
|
||
|
spin_unlock(&port->port_lock_dl);
|
||
|
ret = usb_ep_queue(ep, req, GFP_ATOMIC);
|
||
|
spin_lock(&port->port_lock_dl);
|
||
|
if (ret) {
|
||
|
pr_err("%s: usb epIn failed with %d\n", __func__, ret);
|
||
|
list_add(&req->list, &d->tx_idle);
|
||
|
dev_kfree_skb_any(skb);
|
||
|
break;
|
||
|
}
|
||
|
d->to_host++;
|
||
|
}
|
||
|
spin_unlock_irqrestore(&port->port_lock_dl, flags);
|
||
|
}
|
||
|
|
||
|
static void gbam_write_data_tohost_w(struct work_struct *w)
|
||
|
{
|
||
|
struct bam_ch_info *d;
|
||
|
struct gbam_port *port;
|
||
|
|
||
|
d = container_of(w, struct bam_ch_info, write_tohost_w);
|
||
|
port = d->port;
|
||
|
|
||
|
gbam_write_data_tohost(port);
|
||
|
}
|
||
|
|
||
|
void gbam_data_recv_cb(void *p, struct sk_buff *skb)
|
||
|
{
|
||
|
struct gbam_port *port = p;
|
||
|
struct bam_ch_info *d = &port->data_ch;
|
||
|
unsigned long flags;
|
||
|
|
||
|
if (!skb)
|
||
|
return;
|
||
|
|
||
|
pr_debug("%s: p:%p#%d d:%p skb_len:%d\n", __func__,
|
||
|
port, port->port_num, d, skb->len);
|
||
|
|
||
|
spin_lock_irqsave(&port->port_lock_dl, flags);
|
||
|
if (!port->port_usb) {
|
||
|
spin_unlock_irqrestore(&port->port_lock_dl, flags);
|
||
|
dev_kfree_skb_any(skb);
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
if (d->tx_skb_q.qlen > bam_mux_tx_pkt_drop_thld) {
|
||
|
d->tohost_drp_cnt++;
|
||
|
if (printk_ratelimit())
|
||
|
pr_err("%s: tx pkt dropped: tx_drop_cnt:%u\n",
|
||
|
__func__, d->tohost_drp_cnt);
|
||
|
spin_unlock_irqrestore(&port->port_lock_dl, flags);
|
||
|
dev_kfree_skb_any(skb);
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
__skb_queue_tail(&d->tx_skb_q, skb);
|
||
|
spin_unlock_irqrestore(&port->port_lock_dl, flags);
|
||
|
|
||
|
gbam_write_data_tohost(port);
|
||
|
}
|
||
|
|
||
|
void gbam_data_write_done(void *p, struct sk_buff *skb)
|
||
|
{
|
||
|
struct gbam_port *port = p;
|
||
|
struct bam_ch_info *d = &port->data_ch;
|
||
|
unsigned long flags;
|
||
|
|
||
|
if (!skb)
|
||
|
return;
|
||
|
|
||
|
dev_kfree_skb_any(skb);
|
||
|
|
||
|
spin_lock_irqsave(&port->port_lock_ul, flags);
|
||
|
|
||
|
d->pending_with_bam--;
|
||
|
|
||
|
pr_debug("%s: port:%p d:%p tom:%lu pbam:%u, pno:%d\n", __func__,
|
||
|
port, d, d->to_modem,
|
||
|
d->pending_with_bam, port->port_num);
|
||
|
|
||
|
spin_unlock_irqrestore(&port->port_lock_ul, flags);
|
||
|
|
||
|
queue_work(gbam_wq, &d->write_tobam_w);
|
||
|
}
|
||
|
|
||
|
static void gbam_data_write_tobam(struct work_struct *w)
|
||
|
{
|
||
|
struct gbam_port *port;
|
||
|
struct bam_ch_info *d;
|
||
|
struct sk_buff *skb;
|
||
|
unsigned long flags;
|
||
|
int ret;
|
||
|
int qlen;
|
||
|
|
||
|
d = container_of(w, struct bam_ch_info, write_tobam_w);
|
||
|
port = d->port;
|
||
|
|
||
|
spin_lock_irqsave(&port->port_lock_ul, flags);
|
||
|
if (!port->port_usb) {
|
||
|
spin_unlock_irqrestore(&port->port_lock_ul, flags);
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
while (d->pending_with_bam < BAM_PENDING_LIMIT) {
|
||
|
skb = __skb_dequeue(&d->rx_skb_q);
|
||
|
if (!skb)
|
||
|
break;
|
||
|
|
||
|
d->pending_with_bam++;
|
||
|
d->to_modem++;
|
||
|
|
||
|
pr_debug("%s: port:%p d:%p tom:%lu pbam:%u pno:%d\n", __func__,
|
||
|
port, d, d->to_modem, d->pending_with_bam,
|
||
|
port->port_num);
|
||
|
|
||
|
spin_unlock_irqrestore(&port->port_lock_ul, flags);
|
||
|
ret = msm_bam_dmux_write(d->id, skb);
|
||
|
spin_lock_irqsave(&port->port_lock_ul, flags);
|
||
|
if (ret) {
|
||
|
pr_debug("%s: write error:%d\n", __func__, ret);
|
||
|
d->pending_with_bam--;
|
||
|
d->to_modem--;
|
||
|
d->tomodem_drp_cnt++;
|
||
|
dev_kfree_skb_any(skb);
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
qlen = d->rx_skb_q.qlen;
|
||
|
|
||
|
spin_unlock_irqrestore(&port->port_lock_ul, flags);
|
||
|
|
||
|
if (qlen < BAM_MUX_RX_PKT_FCTRL_DIS_TSHOLD)
|
||
|
gbam_start_rx(port);
|
||
|
}
|
||
|
/*-------------------------------------------------------------*/
|
||
|
|
||
|
static void gbam_epin_complete(struct usb_ep *ep, struct usb_request *req)
|
||
|
{
|
||
|
struct gbam_port *port = ep->driver_data;
|
||
|
struct bam_ch_info *d;
|
||
|
struct sk_buff *skb = req->context;
|
||
|
int status = req->status;
|
||
|
|
||
|
switch (status) {
|
||
|
case 0:
|
||
|
/* successful completion */
|
||
|
break;
|
||
|
case -ECONNRESET:
|
||
|
case -ESHUTDOWN:
|
||
|
/* connection gone */
|
||
|
dev_kfree_skb_any(skb);
|
||
|
usb_ep_free_request(ep, req);
|
||
|
return;
|
||
|
default:
|
||
|
pr_err("%s: data tx ep error %d\n",
|
||
|
__func__, status);
|
||
|
break;
|
||
|
}
|
||
|
|
||
|
dev_kfree_skb_any(skb);
|
||
|
|
||
|
if (!port)
|
||
|
return;
|
||
|
|
||
|
spin_lock(&port->port_lock_dl);
|
||
|
d = &port->data_ch;
|
||
|
list_add_tail(&req->list, &d->tx_idle);
|
||
|
spin_unlock(&port->port_lock_dl);
|
||
|
|
||
|
queue_work(gbam_wq, &d->write_tohost_w);
|
||
|
}
|
||
|
|
||
|
static void
|
||
|
gbam_epout_complete(struct usb_ep *ep, struct usb_request *req)
|
||
|
{
|
||
|
struct gbam_port *port = ep->driver_data;
|
||
|
struct bam_ch_info *d = &port->data_ch;
|
||
|
struct sk_buff *skb = req->context;
|
||
|
int status = req->status;
|
||
|
int queue = 0;
|
||
|
|
||
|
switch (status) {
|
||
|
case 0:
|
||
|
skb_put(skb, req->actual);
|
||
|
queue = 1;
|
||
|
break;
|
||
|
case -ECONNRESET:
|
||
|
case -ESHUTDOWN:
|
||
|
/* cable disconnection */
|
||
|
dev_kfree_skb_any(skb);
|
||
|
req->buf = 0;
|
||
|
usb_ep_free_request(ep, req);
|
||
|
return;
|
||
|
default:
|
||
|
if (printk_ratelimit())
|
||
|
pr_err("%s: %s response error %d, %d/%d\n",
|
||
|
__func__, ep->name, status,
|
||
|
req->actual, req->length);
|
||
|
dev_kfree_skb_any(skb);
|
||
|
break;
|
||
|
}
|
||
|
|
||
|
spin_lock(&port->port_lock_ul);
|
||
|
if (queue) {
|
||
|
__skb_queue_tail(&d->rx_skb_q, skb);
|
||
|
queue_work(gbam_wq, &d->write_tobam_w);
|
||
|
}
|
||
|
|
||
|
/* TODO: Handle flow control gracefully by having
|
||
|
* having call back mechanism from bam driver
|
||
|
*/
|
||
|
if (bam_mux_rx_fctrl_support &&
|
||
|
d->rx_skb_q.qlen >= bam_mux_rx_fctrl_en_thld) {
|
||
|
|
||
|
list_add_tail(&req->list, &d->rx_idle);
|
||
|
spin_unlock(&port->port_lock_ul);
|
||
|
return;
|
||
|
}
|
||
|
spin_unlock(&port->port_lock_ul);
|
||
|
|
||
|
skb = alloc_skb(bam_mux_rx_req_size + BAM_MUX_HDR, GFP_ATOMIC);
|
||
|
if (!skb) {
|
||
|
spin_lock(&port->port_lock_ul);
|
||
|
list_add_tail(&req->list, &d->rx_idle);
|
||
|
spin_unlock(&port->port_lock_ul);
|
||
|
return;
|
||
|
}
|
||
|
skb_reserve(skb, BAM_MUX_HDR);
|
||
|
|
||
|
req->buf = skb->data;
|
||
|
req->length = bam_mux_rx_req_size;
|
||
|
req->context = skb;
|
||
|
|
||
|
status = usb_ep_queue(ep, req, GFP_ATOMIC);
|
||
|
if (status) {
|
||
|
dev_kfree_skb_any(skb);
|
||
|
|
||
|
if (printk_ratelimit())
|
||
|
pr_err("%s: data rx enqueue err %d\n",
|
||
|
__func__, status);
|
||
|
|
||
|
spin_lock(&port->port_lock_ul);
|
||
|
list_add_tail(&req->list, &d->rx_idle);
|
||
|
spin_unlock(&port->port_lock_ul);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
static void gbam_endless_rx_complete(struct usb_ep *ep, struct usb_request *req)
|
||
|
{
|
||
|
int status = req->status;
|
||
|
|
||
|
pr_debug("%s status: %d\n", __func__, status);
|
||
|
}
|
||
|
|
||
|
static void gbam_endless_tx_complete(struct usb_ep *ep, struct usb_request *req)
|
||
|
{
|
||
|
int status = req->status;
|
||
|
|
||
|
pr_debug("%s status: %d\n", __func__, status);
|
||
|
}
|
||
|
|
||
|
static void gbam_start_rx(struct gbam_port *port)
|
||
|
{
|
||
|
struct usb_request *req;
|
||
|
struct bam_ch_info *d;
|
||
|
struct usb_ep *ep;
|
||
|
unsigned long flags;
|
||
|
int ret;
|
||
|
struct sk_buff *skb;
|
||
|
|
||
|
spin_lock_irqsave(&port->port_lock_ul, flags);
|
||
|
if (!port->port_usb) {
|
||
|
spin_unlock_irqrestore(&port->port_lock_ul, flags);
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
d = &port->data_ch;
|
||
|
ep = port->port_usb->out;
|
||
|
|
||
|
while (port->port_usb && !list_empty(&d->rx_idle)) {
|
||
|
|
||
|
if (bam_mux_rx_fctrl_support &&
|
||
|
d->rx_skb_q.qlen >= bam_mux_rx_fctrl_en_thld)
|
||
|
break;
|
||
|
|
||
|
req = list_first_entry(&d->rx_idle, struct usb_request, list);
|
||
|
|
||
|
skb = alloc_skb(bam_mux_rx_req_size + BAM_MUX_HDR, GFP_ATOMIC);
|
||
|
if (!skb)
|
||
|
break;
|
||
|
skb_reserve(skb, BAM_MUX_HDR);
|
||
|
|
||
|
list_del(&req->list);
|
||
|
req->buf = skb->data;
|
||
|
req->length = bam_mux_rx_req_size;
|
||
|
req->context = skb;
|
||
|
|
||
|
spin_unlock_irqrestore(&port->port_lock_ul, flags);
|
||
|
ret = usb_ep_queue(ep, req, GFP_ATOMIC);
|
||
|
spin_lock_irqsave(&port->port_lock_ul, flags);
|
||
|
if (ret) {
|
||
|
dev_kfree_skb_any(skb);
|
||
|
|
||
|
if (printk_ratelimit())
|
||
|
pr_err("%s: rx queue failed %d\n",
|
||
|
__func__, ret);
|
||
|
|
||
|
if (port->port_usb)
|
||
|
list_add(&req->list, &d->rx_idle);
|
||
|
else
|
||
|
usb_ep_free_request(ep, req);
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
spin_unlock_irqrestore(&port->port_lock_ul, flags);
|
||
|
}
|
||
|
|
||
|
static void gbam_start_endless_rx(struct gbam_port *port)
|
||
|
{
|
||
|
struct bam_ch_info *d = &port->data_ch;
|
||
|
int status;
|
||
|
|
||
|
spin_lock(&port->port_lock_ul);
|
||
|
if (!port->port_usb) {
|
||
|
spin_unlock(&port->port_lock_ul);
|
||
|
pr_err("%s: port->port_usb is NULL", __func__);
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
pr_debug("%s: enqueue\n", __func__);
|
||
|
status = usb_ep_queue(port->port_usb->out, d->rx_req, GFP_ATOMIC);
|
||
|
if (status)
|
||
|
pr_err("%s: error enqueuing transfer, %d\n", __func__, status);
|
||
|
spin_unlock(&port->port_lock_ul);
|
||
|
}
|
||
|
|
||
|
static void gbam_start_endless_tx(struct gbam_port *port)
|
||
|
{
|
||
|
struct bam_ch_info *d = &port->data_ch;
|
||
|
int status;
|
||
|
|
||
|
spin_lock(&port->port_lock_dl);
|
||
|
if (!port->port_usb) {
|
||
|
spin_unlock(&port->port_lock_dl);
|
||
|
pr_err("%s: port->port_usb is NULL", __func__);
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
pr_debug("%s: enqueue\n", __func__);
|
||
|
status = usb_ep_queue(port->port_usb->in, d->tx_req, GFP_ATOMIC);
|
||
|
if (status)
|
||
|
pr_err("%s: error enqueuing transfer, %d\n", __func__, status);
|
||
|
spin_unlock(&port->port_lock_dl);
|
||
|
|
||
|
}
|
||
|
|
||
|
static void gbam_stop_endless_rx(struct gbam_port *port)
|
||
|
{
|
||
|
struct bam_ch_info *d = &port->data_ch;
|
||
|
int status;
|
||
|
|
||
|
spin_lock(&port->port_lock_ul);
|
||
|
if (!port->port_usb) {
|
||
|
spin_unlock(&port->port_lock_ul);
|
||
|
pr_err("%s: port->port_usb is NULL", __func__);
|
||
|
return;
|
||
|
}
|
||
|
pr_debug("%s: dequeue\n", __func__);
|
||
|
|
||
|
status = usb_ep_dequeue(port->port_usb->out, d->rx_req);
|
||
|
if (status)
|
||
|
pr_err("%s: error dequeuing transfer, %d\n", __func__, status);
|
||
|
spin_unlock(&port->port_lock_ul);
|
||
|
}
|
||
|
|
||
|
static void gbam_stop_endless_tx(struct gbam_port *port)
|
||
|
{
|
||
|
struct bam_ch_info *d = &port->data_ch;
|
||
|
int status;
|
||
|
|
||
|
spin_lock(&port->port_lock_dl);
|
||
|
if (!port->port_usb) {
|
||
|
spin_unlock(&port->port_lock_dl);
|
||
|
pr_err("%s: port->port_usb is NULL", __func__);
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
pr_debug("%s: dequeue\n", __func__);
|
||
|
status = usb_ep_dequeue(port->port_usb->in, d->tx_req);
|
||
|
if (status)
|
||
|
pr_err("%s: error dequeuing transfer, %d\n", __func__, status);
|
||
|
spin_unlock(&port->port_lock_dl);
|
||
|
}
|
||
|
|
||
|
static void gbam_start(void *param, enum usb_bam_pipe_dir dir)
|
||
|
{
|
||
|
struct gbam_port *port = param;
|
||
|
|
||
|
if (dir == USB_TO_PEER_PERIPHERAL)
|
||
|
gbam_start_endless_rx(port);
|
||
|
else
|
||
|
gbam_start_endless_tx(port);
|
||
|
}
|
||
|
|
||
|
static void gbam_stop(void *param, enum usb_bam_pipe_dir dir)
|
||
|
{
|
||
|
struct gbam_port *port = param;
|
||
|
|
||
|
if (dir == USB_TO_PEER_PERIPHERAL)
|
||
|
gbam_stop_endless_rx(port);
|
||
|
else
|
||
|
gbam_stop_endless_tx(port);
|
||
|
}
|
||
|
|
||
|
static void gbam_start_io(struct gbam_port *port)
|
||
|
{
|
||
|
unsigned long flags;
|
||
|
struct usb_ep *ep;
|
||
|
int ret;
|
||
|
struct bam_ch_info *d;
|
||
|
|
||
|
pr_debug("%s: port:%p\n", __func__, port);
|
||
|
|
||
|
spin_lock_irqsave(&port->port_lock_ul, flags);
|
||
|
if (!port->port_usb) {
|
||
|
spin_unlock_irqrestore(&port->port_lock_ul, flags);
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
d = &port->data_ch;
|
||
|
ep = port->port_usb->out;
|
||
|
ret = gbam_alloc_requests(ep, &d->rx_idle, bam_mux_rx_q_size,
|
||
|
gbam_epout_complete, GFP_ATOMIC);
|
||
|
if (ret) {
|
||
|
pr_err("%s: rx req allocation failed\n", __func__);
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
spin_unlock_irqrestore(&port->port_lock_ul, flags);
|
||
|
spin_lock_irqsave(&port->port_lock_dl, flags);
|
||
|
if (!port->port_usb) {
|
||
|
gbam_free_requests(ep, &d->rx_idle);
|
||
|
spin_unlock_irqrestore(&port->port_lock_dl, flags);
|
||
|
return;
|
||
|
}
|
||
|
ep = port->port_usb->in;
|
||
|
ret = gbam_alloc_requests(ep, &d->tx_idle, bam_mux_tx_q_size,
|
||
|
gbam_epin_complete, GFP_ATOMIC);
|
||
|
if (ret) {
|
||
|
pr_err("%s: tx req allocation failed\n", __func__);
|
||
|
gbam_free_requests(ep, &d->rx_idle);
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
spin_unlock_irqrestore(&port->port_lock_dl, flags);
|
||
|
|
||
|
/* queue out requests */
|
||
|
gbam_start_rx(port);
|
||
|
}
|
||
|
|
||
|
static void gbam_notify(void *p, int event, unsigned long data)
|
||
|
{
|
||
|
switch (event) {
|
||
|
case BAM_DMUX_RECEIVE:
|
||
|
gbam_data_recv_cb(p, (struct sk_buff *)(data));
|
||
|
break;
|
||
|
case BAM_DMUX_WRITE_DONE:
|
||
|
gbam_data_write_done(p, (struct sk_buff *)(data));
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
static void gbam_free_buffers(struct gbam_port *port)
|
||
|
{
|
||
|
struct sk_buff *skb;
|
||
|
unsigned long flags;
|
||
|
struct bam_ch_info *d;
|
||
|
|
||
|
spin_lock_irqsave(&port->port_lock_ul, flags);
|
||
|
spin_lock(&port->port_lock_dl);
|
||
|
|
||
|
if (!port || !port->port_usb)
|
||
|
goto free_buf_out;
|
||
|
|
||
|
d = &port->data_ch;
|
||
|
|
||
|
gbam_free_requests(port->port_usb->in, &d->tx_idle);
|
||
|
gbam_free_requests(port->port_usb->out, &d->rx_idle);
|
||
|
|
||
|
while ((skb = __skb_dequeue(&d->tx_skb_q)))
|
||
|
dev_kfree_skb_any(skb);
|
||
|
|
||
|
while ((skb = __skb_dequeue(&d->rx_skb_q)))
|
||
|
dev_kfree_skb_any(skb);
|
||
|
|
||
|
free_buf_out:
|
||
|
spin_unlock(&port->port_lock_dl);
|
||
|
spin_unlock_irqrestore(&port->port_lock_ul, flags);
|
||
|
}
|
||
|
|
||
|
static void gbam_disconnect_work(struct work_struct *w)
|
||
|
{
|
||
|
struct gbam_port *port =
|
||
|
container_of(w, struct gbam_port, disconnect_w);
|
||
|
struct bam_ch_info *d = &port->data_ch;
|
||
|
|
||
|
if (!test_bit(BAM_CH_OPENED, &d->flags))
|
||
|
return;
|
||
|
|
||
|
msm_bam_dmux_close(d->id);
|
||
|
clear_bit(BAM_CH_OPENED, &d->flags);
|
||
|
}
|
||
|
|
||
|
static void gbam2bam_disconnect_work(struct work_struct *w)
|
||
|
{
|
||
|
struct gbam_port *port =
|
||
|
container_of(w, struct gbam_port, disconnect_w);
|
||
|
struct bam_ch_info *d = &port->data_ch;
|
||
|
int ret;
|
||
|
|
||
|
if (d->trans == USB_GADGET_XPORT_BAM2BAM_IPA) {
|
||
|
ret = usb_bam_disconnect_ipa(&d->ipa_params);
|
||
|
if (ret)
|
||
|
pr_err("%s: usb_bam_disconnect_ipa failed: err:%d\n",
|
||
|
__func__, ret);
|
||
|
teth_bridge_disconnect(d->ipa_params.src_client);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
static void gbam_connect_work(struct work_struct *w)
|
||
|
{
|
||
|
struct gbam_port *port = container_of(w, struct gbam_port, connect_w);
|
||
|
struct bam_ch_info *d = &port->data_ch;
|
||
|
int ret;
|
||
|
unsigned long flags;
|
||
|
|
||
|
spin_lock_irqsave(&port->port_lock_ul, flags);
|
||
|
spin_lock(&port->port_lock_dl);
|
||
|
if (!port->port_usb) {
|
||
|
spin_unlock(&port->port_lock_dl);
|
||
|
spin_unlock_irqrestore(&port->port_lock_ul, flags);
|
||
|
return;
|
||
|
}
|
||
|
spin_unlock(&port->port_lock_dl);
|
||
|
spin_unlock_irqrestore(&port->port_lock_ul, flags);
|
||
|
|
||
|
if (!test_bit(BAM_CH_READY, &d->flags))
|
||
|
return;
|
||
|
|
||
|
ret = msm_bam_dmux_open(d->id, port, gbam_notify);
|
||
|
if (ret) {
|
||
|
pr_err("%s: unable open bam ch:%d err:%d\n",
|
||
|
__func__, d->id, ret);
|
||
|
return;
|
||
|
}
|
||
|
set_bit(BAM_CH_OPENED, &d->flags);
|
||
|
|
||
|
gbam_start_io(port);
|
||
|
|
||
|
pr_debug("%s: done\n", __func__);
|
||
|
}
|
||
|
|
||
|
static void gbam2bam_connect_work(struct work_struct *w)
|
||
|
{
|
||
|
struct gbam_port *port = container_of(w, struct gbam_port, connect_w);
|
||
|
struct teth_bridge_connect_params connect_params;
|
||
|
struct bam_ch_info *d = &port->data_ch;
|
||
|
u32 sps_params;
|
||
|
ipa_notify_cb usb_notify_cb;
|
||
|
void *priv;
|
||
|
int ret;
|
||
|
unsigned long flags;
|
||
|
|
||
|
if (d->trans == USB_GADGET_XPORT_BAM2BAM) {
|
||
|
usb_bam_reset_complete();
|
||
|
ret = usb_bam_connect(d->src_connection_idx, &d->src_pipe_idx);
|
||
|
if (ret) {
|
||
|
pr_err("%s: usb_bam_connect (src) failed: err:%d\n",
|
||
|
__func__, ret);
|
||
|
return;
|
||
|
}
|
||
|
ret = usb_bam_connect(d->dst_connection_idx, &d->dst_pipe_idx);
|
||
|
if (ret) {
|
||
|
pr_err("%s: usb_bam_connect (dst) failed: err:%d\n",
|
||
|
__func__, ret);
|
||
|
return;
|
||
|
}
|
||
|
} else if (d->trans == USB_GADGET_XPORT_BAM2BAM_IPA) {
|
||
|
ret = teth_bridge_init(&usb_notify_cb, &priv,
|
||
|
d->ipa_params.src_client);
|
||
|
if (ret) {
|
||
|
pr_err("%s:teth_bridge_init() failed\n", __func__);
|
||
|
return;
|
||
|
}
|
||
|
d->ipa_params.notify = usb_notify_cb;
|
||
|
d->ipa_params.priv = priv;
|
||
|
d->ipa_params.ipa_ep_cfg.mode.mode = IPA_BASIC;
|
||
|
d->ipa_params.dir = USB_TO_PEER_PERIPHERAL;
|
||
|
ret = usb_bam_connect_ipa(&d->ipa_params);
|
||
|
if (ret) {
|
||
|
pr_err("%s: usb_bam_connect_ipa failed: err:%d\n",
|
||
|
__func__, ret);
|
||
|
return;
|
||
|
}
|
||
|
d->ipa_params.dir = PEER_PERIPHERAL_TO_USB;
|
||
|
ret = usb_bam_connect_ipa(&d->ipa_params);
|
||
|
if (ret) {
|
||
|
pr_err("%s: usb_bam_connect_ipa failed: err:%d\n",
|
||
|
__func__, ret);
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
connect_params.ipa_usb_pipe_hdl = d->ipa_params.prod_clnt_hdl;
|
||
|
connect_params.usb_ipa_pipe_hdl = d->ipa_params.cons_clnt_hdl;
|
||
|
connect_params.tethering_mode = TETH_TETHERING_MODE_RMNET;
|
||
|
connect_params.client_type = d->ipa_params.src_client;
|
||
|
ret = teth_bridge_connect(&connect_params);
|
||
|
if (ret) {
|
||
|
pr_err("%s:teth_bridge_connect() failed\n", __func__);
|
||
|
return;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
spin_lock_irqsave(&port->port_lock_ul, flags);
|
||
|
spin_lock(&port->port_lock_dl);
|
||
|
if (!port->port_usb) {
|
||
|
pr_debug("%s: usb cable is disconnected, exiting\n", __func__);
|
||
|
spin_unlock(&port->port_lock_dl);
|
||
|
spin_unlock_irqrestore(&port->port_lock_ul, flags);
|
||
|
return;
|
||
|
}
|
||
|
d->rx_req = usb_ep_alloc_request(port->port_usb->out, GFP_ATOMIC);
|
||
|
if (!d->rx_req) {
|
||
|
spin_unlock(&port->port_lock_dl);
|
||
|
spin_unlock_irqrestore(&port->port_lock_ul, flags);
|
||
|
pr_err("%s: out of memory\n", __func__);
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
d->rx_req->context = port;
|
||
|
d->rx_req->complete = gbam_endless_rx_complete;
|
||
|
d->rx_req->length = 0;
|
||
|
d->rx_req->no_interrupt = 1;
|
||
|
sps_params = (MSM_SPS_MODE | d->src_pipe_idx |
|
||
|
MSM_VENDOR_ID) & ~MSM_IS_FINITE_TRANSFER;
|
||
|
d->rx_req->udc_priv = sps_params;
|
||
|
|
||
|
d->tx_req = usb_ep_alloc_request(port->port_usb->in, GFP_ATOMIC);
|
||
|
spin_unlock(&port->port_lock_dl);
|
||
|
spin_unlock_irqrestore(&port->port_lock_ul, flags);
|
||
|
if (!d->tx_req) {
|
||
|
pr_err("%s: out of memory\n", __func__);
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
d->tx_req->context = port;
|
||
|
d->tx_req->complete = gbam_endless_tx_complete;
|
||
|
d->tx_req->length = 0;
|
||
|
d->tx_req->no_interrupt = 1;
|
||
|
sps_params = (MSM_SPS_MODE | d->dst_pipe_idx |
|
||
|
MSM_VENDOR_ID) & ~MSM_IS_FINITE_TRANSFER;
|
||
|
d->tx_req->udc_priv = sps_params;
|
||
|
|
||
|
/* queue in & out requests */
|
||
|
gbam_start_endless_rx(port);
|
||
|
gbam_start_endless_tx(port);
|
||
|
|
||
|
if (d->trans == USB_GADGET_XPORT_BAM2BAM && port->port_num == 0) {
|
||
|
/* Register for peer reset callback */
|
||
|
usb_bam_register_peer_reset_cb(gbam_peer_reset_cb, port);
|
||
|
|
||
|
ret = usb_bam_client_ready(true);
|
||
|
if (ret) {
|
||
|
pr_err("%s: usb_bam_client_ready failed: err:%d\n",
|
||
|
__func__, ret);
|
||
|
return;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
pr_debug("%s: done\n", __func__);
|
||
|
}
|
||
|
|
||
|
static int gbam_wake_cb(void *param)
|
||
|
{
|
||
|
struct gbam_port *port = (struct gbam_port *)param;
|
||
|
struct bam_ch_info *d;
|
||
|
struct f_rmnet *dev;
|
||
|
|
||
|
dev = port_to_rmnet(port->gr);
|
||
|
d = &port->data_ch;
|
||
|
|
||
|
pr_debug("%s: woken up by peer\n", __func__);
|
||
|
|
||
|
return usb_gadget_wakeup(dev->cdev->gadget);
|
||
|
}
|
||
|
|
||
|
static void gbam2bam_suspend_work(struct work_struct *w)
|
||
|
{
|
||
|
struct gbam_port *port = container_of(w, struct gbam_port, suspend_w);
|
||
|
struct bam_ch_info *d = &port->data_ch;
|
||
|
|
||
|
pr_debug("%s: suspend work started\n", __func__);
|
||
|
|
||
|
usb_bam_register_wake_cb(d->dst_connection_idx, gbam_wake_cb, port);
|
||
|
if (d->trans == USB_GADGET_XPORT_BAM2BAM_IPA) {
|
||
|
usb_bam_register_start_stop_cbs(d->dst_connection_idx,
|
||
|
gbam_start, gbam_stop, port);
|
||
|
usb_bam_suspend(&d->ipa_params);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
static void gbam2bam_resume_work(struct work_struct *w)
|
||
|
{
|
||
|
struct gbam_port *port = container_of(w, struct gbam_port, resume_w);
|
||
|
struct bam_ch_info *d = &port->data_ch;
|
||
|
|
||
|
pr_debug("%s: resume work started\n", __func__);
|
||
|
|
||
|
usb_bam_register_wake_cb(d->dst_connection_idx, NULL, NULL);
|
||
|
if (d->trans == USB_GADGET_XPORT_BAM2BAM_IPA)
|
||
|
usb_bam_resume(&d->ipa_params);
|
||
|
}
|
||
|
|
||
|
static int gbam_peer_reset_cb(void *param)
|
||
|
{
|
||
|
struct gbam_port *port = (struct gbam_port *)param;
|
||
|
struct bam_ch_info *d;
|
||
|
struct f_rmnet *dev;
|
||
|
struct usb_gadget *gadget;
|
||
|
int ret;
|
||
|
|
||
|
dev = port_to_rmnet(port->gr);
|
||
|
d = &port->data_ch;
|
||
|
|
||
|
gadget = dev->cdev->gadget;
|
||
|
|
||
|
pr_debug("%s: reset by peer\n", __func__);
|
||
|
/* Disable BAM */
|
||
|
msm_hw_bam_disable(1);
|
||
|
|
||
|
/* Reset BAM */
|
||
|
ret = usb_bam_a2_reset(0);
|
||
|
if (ret) {
|
||
|
pr_err("%s: BAM reset failed %d\n", __func__, ret);
|
||
|
return ret;
|
||
|
}
|
||
|
|
||
|
/* Enable BAM */
|
||
|
msm_hw_bam_disable(0);
|
||
|
|
||
|
/* Unregister the peer reset callback */
|
||
|
if (d->trans == USB_GADGET_XPORT_BAM2BAM && port->port_num == 0)
|
||
|
usb_bam_register_peer_reset_cb(NULL, NULL);
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
/* BAM data channel ready, allow attempt to open */
|
||
|
static int gbam_data_ch_probe(struct platform_device *pdev)
|
||
|
{
|
||
|
struct gbam_port *port;
|
||
|
struct bam_ch_info *d;
|
||
|
int i;
|
||
|
unsigned long flags;
|
||
|
|
||
|
pr_debug("%s: name:%s\n", __func__, pdev->name);
|
||
|
|
||
|
for (i = 0; i < n_bam_ports; i++) {
|
||
|
port = bam_ports[i].port;
|
||
|
d = &port->data_ch;
|
||
|
|
||
|
if (!strncmp(bam_ch_names[i], pdev->name,
|
||
|
BAM_DMUX_CH_NAME_MAX_LEN)) {
|
||
|
set_bit(BAM_CH_READY, &d->flags);
|
||
|
|
||
|
/* if usb is online, try opening bam_ch */
|
||
|
spin_lock_irqsave(&port->port_lock_ul, flags);
|
||
|
spin_lock(&port->port_lock_dl);
|
||
|
if (port->port_usb)
|
||
|
queue_work(gbam_wq, &port->connect_w);
|
||
|
spin_unlock(&port->port_lock_dl);
|
||
|
spin_unlock_irqrestore(&port->port_lock_ul, flags);
|
||
|
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
/* BAM data channel went inactive, so close it */
|
||
|
static int gbam_data_ch_remove(struct platform_device *pdev)
|
||
|
{
|
||
|
struct gbam_port *port;
|
||
|
struct bam_ch_info *d;
|
||
|
struct usb_ep *ep_in = NULL;
|
||
|
struct usb_ep *ep_out = NULL;
|
||
|
unsigned long flags;
|
||
|
int i;
|
||
|
|
||
|
pr_debug("%s: name:%s\n", __func__, pdev->name);
|
||
|
|
||
|
for (i = 0; i < n_bam_ports; i++) {
|
||
|
if (!strncmp(bam_ch_names[i], pdev->name,
|
||
|
BAM_DMUX_CH_NAME_MAX_LEN)) {
|
||
|
port = bam_ports[i].port;
|
||
|
d = &port->data_ch;
|
||
|
|
||
|
spin_lock_irqsave(&port->port_lock_ul, flags);
|
||
|
spin_lock(&port->port_lock_dl);
|
||
|
if (port->port_usb) {
|
||
|
ep_in = port->port_usb->in;
|
||
|
ep_out = port->port_usb->out;
|
||
|
}
|
||
|
spin_unlock(&port->port_lock_dl);
|
||
|
spin_unlock_irqrestore(&port->port_lock_ul, flags);
|
||
|
|
||
|
if (ep_in)
|
||
|
usb_ep_fifo_flush(ep_in);
|
||
|
if (ep_out)
|
||
|
usb_ep_fifo_flush(ep_out);
|
||
|
|
||
|
gbam_free_buffers(port);
|
||
|
|
||
|
msm_bam_dmux_close(d->id);
|
||
|
|
||
|
/* bam dmux will free all pending skbs */
|
||
|
d->pending_with_bam = 0;
|
||
|
|
||
|
clear_bit(BAM_CH_READY, &d->flags);
|
||
|
clear_bit(BAM_CH_OPENED, &d->flags);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
static void gbam_port_free(int portno)
|
||
|
{
|
||
|
struct gbam_port *port = bam_ports[portno].port;
|
||
|
struct platform_driver *pdrv = &bam_ports[portno].pdrv;
|
||
|
|
||
|
if (port) {
|
||
|
kfree(port);
|
||
|
platform_driver_unregister(pdrv);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
static void gbam2bam_port_free(int portno)
|
||
|
{
|
||
|
struct gbam_port *port = bam2bam_ports[portno];
|
||
|
|
||
|
kfree(port);
|
||
|
}
|
||
|
|
||
|
static int gbam_port_alloc(int portno)
|
||
|
{
|
||
|
struct gbam_port *port;
|
||
|
struct bam_ch_info *d;
|
||
|
struct platform_driver *pdrv;
|
||
|
|
||
|
port = kzalloc(sizeof(struct gbam_port), GFP_KERNEL);
|
||
|
if (!port)
|
||
|
return -ENOMEM;
|
||
|
|
||
|
port->port_num = portno;
|
||
|
|
||
|
/* port initialization */
|
||
|
spin_lock_init(&port->port_lock_ul);
|
||
|
spin_lock_init(&port->port_lock_dl);
|
||
|
INIT_WORK(&port->connect_w, gbam_connect_work);
|
||
|
INIT_WORK(&port->disconnect_w, gbam_disconnect_work);
|
||
|
|
||
|
/* data ch */
|
||
|
d = &port->data_ch;
|
||
|
d->port = port;
|
||
|
INIT_LIST_HEAD(&d->tx_idle);
|
||
|
INIT_LIST_HEAD(&d->rx_idle);
|
||
|
INIT_WORK(&d->write_tobam_w, gbam_data_write_tobam);
|
||
|
INIT_WORK(&d->write_tohost_w, gbam_write_data_tohost_w);
|
||
|
skb_queue_head_init(&d->tx_skb_q);
|
||
|
skb_queue_head_init(&d->rx_skb_q);
|
||
|
d->id = bam_ch_ids[portno];
|
||
|
|
||
|
bam_ports[portno].port = port;
|
||
|
|
||
|
pdrv = &bam_ports[portno].pdrv;
|
||
|
pdrv->probe = gbam_data_ch_probe;
|
||
|
pdrv->remove = gbam_data_ch_remove;
|
||
|
pdrv->driver.name = bam_ch_names[portno];
|
||
|
pdrv->driver.owner = THIS_MODULE;
|
||
|
|
||
|
platform_driver_register(pdrv);
|
||
|
pr_debug("%s: port:%p portno:%d\n", __func__, port, portno);
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
static int gbam2bam_port_alloc(int portno)
|
||
|
{
|
||
|
struct gbam_port *port;
|
||
|
struct bam_ch_info *d;
|
||
|
|
||
|
port = kzalloc(sizeof(struct gbam_port), GFP_KERNEL);
|
||
|
if (!port)
|
||
|
return -ENOMEM;
|
||
|
|
||
|
port->port_num = portno;
|
||
|
|
||
|
/* port initialization */
|
||
|
spin_lock_init(&port->port_lock_ul);
|
||
|
spin_lock_init(&port->port_lock_dl);
|
||
|
|
||
|
INIT_WORK(&port->connect_w, gbam2bam_connect_work);
|
||
|
INIT_WORK(&port->disconnect_w, gbam2bam_disconnect_work);
|
||
|
INIT_WORK(&port->suspend_w, gbam2bam_suspend_work);
|
||
|
INIT_WORK(&port->resume_w, gbam2bam_resume_work);
|
||
|
|
||
|
/* data ch */
|
||
|
d = &port->data_ch;
|
||
|
d->port = port;
|
||
|
d->ipa_params.src_client = usb_prod[portno];
|
||
|
d->ipa_params.dst_client = usb_cons[portno];
|
||
|
bam2bam_ports[portno] = port;
|
||
|
|
||
|
pr_debug("%s: port:%p portno:%d\n", __func__, port, portno);
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
#if defined(CONFIG_DEBUG_FS)
|
||
|
#define DEBUG_BUF_SIZE 1024
|
||
|
static ssize_t gbam_read_stats(struct file *file, char __user *ubuf,
|
||
|
size_t count, loff_t *ppos)
|
||
|
{
|
||
|
struct gbam_port *port;
|
||
|
struct bam_ch_info *d;
|
||
|
char *buf;
|
||
|
unsigned long flags;
|
||
|
int ret;
|
||
|
int i;
|
||
|
int temp = 0;
|
||
|
|
||
|
buf = kzalloc(sizeof(char) * DEBUG_BUF_SIZE, GFP_KERNEL);
|
||
|
if (!buf)
|
||
|
return -ENOMEM;
|
||
|
|
||
|
for (i = 0; i < n_bam_ports; i++) {
|
||
|
port = bam_ports[i].port;
|
||
|
if (!port)
|
||
|
continue;
|
||
|
spin_lock_irqsave(&port->port_lock_ul, flags);
|
||
|
spin_lock(&port->port_lock_dl);
|
||
|
|
||
|
d = &port->data_ch;
|
||
|
|
||
|
temp += scnprintf(buf + temp, DEBUG_BUF_SIZE - temp,
|
||
|
"#PORT:%d port:%p data_ch:%p#\n"
|
||
|
"dpkts_to_usbhost: %lu\n"
|
||
|
"dpkts_to_modem: %lu\n"
|
||
|
"dpkts_pwith_bam: %u\n"
|
||
|
"to_usbhost_dcnt: %u\n"
|
||
|
"tomodem__dcnt: %u\n"
|
||
|
"tx_buf_len: %u\n"
|
||
|
"rx_buf_len: %u\n"
|
||
|
"data_ch_open: %d\n"
|
||
|
"data_ch_ready: %d\n",
|
||
|
i, port, &port->data_ch,
|
||
|
d->to_host, d->to_modem,
|
||
|
d->pending_with_bam,
|
||
|
d->tohost_drp_cnt, d->tomodem_drp_cnt,
|
||
|
d->tx_skb_q.qlen, d->rx_skb_q.qlen,
|
||
|
test_bit(BAM_CH_OPENED, &d->flags),
|
||
|
test_bit(BAM_CH_READY, &d->flags));
|
||
|
|
||
|
spin_unlock(&port->port_lock_dl);
|
||
|
spin_unlock_irqrestore(&port->port_lock_ul, flags);
|
||
|
}
|
||
|
|
||
|
ret = simple_read_from_buffer(ubuf, count, ppos, buf, temp);
|
||
|
|
||
|
kfree(buf);
|
||
|
|
||
|
return ret;
|
||
|
}
|
||
|
|
||
|
static ssize_t gbam_reset_stats(struct file *file, const char __user *buf,
|
||
|
size_t count, loff_t *ppos)
|
||
|
{
|
||
|
struct gbam_port *port;
|
||
|
struct bam_ch_info *d;
|
||
|
int i;
|
||
|
unsigned long flags;
|
||
|
|
||
|
for (i = 0; i < n_bam_ports; i++) {
|
||
|
port = bam_ports[i].port;
|
||
|
if (!port)
|
||
|
continue;
|
||
|
|
||
|
spin_lock_irqsave(&port->port_lock_ul, flags);
|
||
|
spin_lock(&port->port_lock_dl);
|
||
|
|
||
|
d = &port->data_ch;
|
||
|
|
||
|
d->to_host = 0;
|
||
|
d->to_modem = 0;
|
||
|
d->pending_with_bam = 0;
|
||
|
d->tohost_drp_cnt = 0;
|
||
|
d->tomodem_drp_cnt = 0;
|
||
|
|
||
|
spin_unlock(&port->port_lock_dl);
|
||
|
spin_unlock_irqrestore(&port->port_lock_ul, flags);
|
||
|
}
|
||
|
return count;
|
||
|
}
|
||
|
|
||
|
const struct file_operations gbam_stats_ops = {
|
||
|
.read = gbam_read_stats,
|
||
|
.write = gbam_reset_stats,
|
||
|
};
|
||
|
|
||
|
static void gbam_debugfs_init(void)
|
||
|
{
|
||
|
struct dentry *dent;
|
||
|
struct dentry *dfile;
|
||
|
|
||
|
dent = debugfs_create_dir("usb_rmnet", 0);
|
||
|
if (IS_ERR(dent))
|
||
|
return;
|
||
|
|
||
|
/* TODO: Implement cleanup function to remove created file */
|
||
|
dfile = debugfs_create_file("status", 0444, dent, 0, &gbam_stats_ops);
|
||
|
if (!dfile || IS_ERR(dfile))
|
||
|
debugfs_remove(dent);
|
||
|
}
|
||
|
#else
|
||
|
static void gam_debugfs_init(void) { }
|
||
|
#endif
|
||
|
|
||
|
void gbam_disconnect(struct grmnet *gr, u8 port_num, enum transport_type trans)
|
||
|
{
|
||
|
struct gbam_port *port;
|
||
|
unsigned long flags;
|
||
|
struct bam_ch_info *d;
|
||
|
|
||
|
pr_debug("%s: grmnet:%p port#%d\n", __func__, gr, port_num);
|
||
|
|
||
|
if (trans == USB_GADGET_XPORT_BAM &&
|
||
|
port_num >= n_bam_ports) {
|
||
|
pr_err("%s: invalid bam portno#%d\n",
|
||
|
__func__, port_num);
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
if ((trans == USB_GADGET_XPORT_BAM2BAM ||
|
||
|
trans == USB_GADGET_XPORT_BAM2BAM_IPA) &&
|
||
|
port_num >= n_bam2bam_ports) {
|
||
|
pr_err("%s: invalid bam2bam portno#%d\n",
|
||
|
__func__, port_num);
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
if (!gr) {
|
||
|
pr_err("%s: grmnet port is null\n", __func__);
|
||
|
return;
|
||
|
}
|
||
|
if (trans == USB_GADGET_XPORT_BAM)
|
||
|
port = bam_ports[port_num].port;
|
||
|
else
|
||
|
port = bam2bam_ports[port_num];
|
||
|
|
||
|
d = &port->data_ch;
|
||
|
port->gr = gr;
|
||
|
|
||
|
if (trans == USB_GADGET_XPORT_BAM)
|
||
|
gbam_free_buffers(port);
|
||
|
|
||
|
spin_lock_irqsave(&port->port_lock_ul, flags);
|
||
|
spin_lock(&port->port_lock_dl);
|
||
|
port->port_usb = 0;
|
||
|
n_tx_req_queued = 0;
|
||
|
spin_unlock(&port->port_lock_dl);
|
||
|
spin_unlock_irqrestore(&port->port_lock_ul, flags);
|
||
|
|
||
|
/* disable endpoints */
|
||
|
usb_ep_disable(gr->out);
|
||
|
usb_ep_disable(gr->in);
|
||
|
|
||
|
gr->in->driver_data = NULL;
|
||
|
gr->out->driver_data = NULL;
|
||
|
|
||
|
if (trans == USB_GADGET_XPORT_BAM ||
|
||
|
trans == USB_GADGET_XPORT_BAM2BAM_IPA)
|
||
|
queue_work(gbam_wq, &port->disconnect_w);
|
||
|
else if (trans == USB_GADGET_XPORT_BAM2BAM) {
|
||
|
if (port_num == 0) {
|
||
|
if (usb_bam_client_ready(false)) {
|
||
|
pr_err("%s: usb_bam_client_ready failed\n",
|
||
|
__func__);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
int gbam_connect(struct grmnet *gr, u8 port_num,
|
||
|
enum transport_type trans, u8 src_connection_idx,
|
||
|
u8 dst_connection_idx)
|
||
|
{
|
||
|
struct gbam_port *port;
|
||
|
struct bam_ch_info *d;
|
||
|
int ret;
|
||
|
unsigned long flags;
|
||
|
|
||
|
pr_debug("%s: grmnet:%p port#%d\n", __func__, gr, port_num);
|
||
|
|
||
|
if (trans == USB_GADGET_XPORT_BAM && port_num >= n_bam_ports) {
|
||
|
pr_err("%s: invalid portno#%d\n", __func__, port_num);
|
||
|
return -ENODEV;
|
||
|
}
|
||
|
|
||
|
if ((trans == USB_GADGET_XPORT_BAM2BAM ||
|
||
|
trans == USB_GADGET_XPORT_BAM2BAM_IPA)
|
||
|
&& port_num >= n_bam2bam_ports) {
|
||
|
pr_err("%s: invalid portno#%d\n", __func__, port_num);
|
||
|
return -ENODEV;
|
||
|
}
|
||
|
|
||
|
if (!gr) {
|
||
|
pr_err("%s: grmnet port is null\n", __func__);
|
||
|
return -ENODEV;
|
||
|
}
|
||
|
|
||
|
if (trans == USB_GADGET_XPORT_BAM)
|
||
|
port = bam_ports[port_num].port;
|
||
|
else
|
||
|
port = bam2bam_ports[port_num];
|
||
|
|
||
|
d = &port->data_ch;
|
||
|
|
||
|
ret = usb_ep_enable(gr->in);
|
||
|
if (ret) {
|
||
|
pr_err("%s: usb_ep_enable failed eptype:IN ep:%p",
|
||
|
__func__, gr->in);
|
||
|
return ret;
|
||
|
}
|
||
|
gr->in->driver_data = port;
|
||
|
|
||
|
ret = usb_ep_enable(gr->out);
|
||
|
if (ret) {
|
||
|
pr_err("%s: usb_ep_enable failed eptype:OUT ep:%p",
|
||
|
__func__, gr->out);
|
||
|
gr->in->driver_data = 0;
|
||
|
return ret;
|
||
|
}
|
||
|
gr->out->driver_data = port;
|
||
|
|
||
|
spin_lock_irqsave(&port->port_lock_ul, flags);
|
||
|
spin_lock(&port->port_lock_dl);
|
||
|
port->port_usb = gr;
|
||
|
|
||
|
if (trans == USB_GADGET_XPORT_BAM) {
|
||
|
d->to_host = 0;
|
||
|
d->to_modem = 0;
|
||
|
d->pending_with_bam = 0;
|
||
|
d->tohost_drp_cnt = 0;
|
||
|
d->tomodem_drp_cnt = 0;
|
||
|
}
|
||
|
|
||
|
spin_unlock(&port->port_lock_dl);
|
||
|
spin_unlock_irqrestore(&port->port_lock_ul, flags);
|
||
|
|
||
|
if (trans == USB_GADGET_XPORT_BAM2BAM) {
|
||
|
port->gr = gr;
|
||
|
d->src_connection_idx = src_connection_idx;
|
||
|
d->dst_connection_idx = dst_connection_idx;
|
||
|
} else if (trans == USB_GADGET_XPORT_BAM2BAM_IPA) {
|
||
|
port->gr = gr;
|
||
|
d->src_connection_idx = src_connection_idx;
|
||
|
d->dst_connection_idx = dst_connection_idx;
|
||
|
d->ipa_params.src_pipe = &(d->src_pipe_idx);
|
||
|
d->ipa_params.dst_pipe = &(d->dst_pipe_idx);
|
||
|
d->ipa_params.src_idx = src_connection_idx;
|
||
|
d->ipa_params.dst_idx = dst_connection_idx;
|
||
|
}
|
||
|
|
||
|
d->trans = trans;
|
||
|
queue_work(gbam_wq, &port->connect_w);
|
||
|
|
||
|
return 0;
|
||
|
}
|
||
|
|
||
|
int gbam_setup(unsigned int no_bam_port, unsigned int no_bam2bam_port)
|
||
|
{
|
||
|
int i;
|
||
|
int ret;
|
||
|
|
||
|
pr_debug("%s: requested BAM ports:%d and BAM2BAM ports:%d\n",
|
||
|
__func__, no_bam_port, no_bam2bam_port);
|
||
|
|
||
|
if ((!no_bam_port && !no_bam2bam_port) || no_bam_port > BAM_N_PORTS
|
||
|
|| no_bam2bam_port > BAM2BAM_N_PORTS) {
|
||
|
pr_err("%s: Invalid num of ports count:%d,%d\n",
|
||
|
__func__, no_bam_port, no_bam2bam_port);
|
||
|
return -EINVAL;
|
||
|
}
|
||
|
|
||
|
gbam_wq = alloc_workqueue("k_gbam", WQ_UNBOUND | WQ_MEM_RECLAIM, 1);
|
||
|
if (!gbam_wq) {
|
||
|
pr_err("%s: Unable to create workqueue gbam_wq\n",
|
||
|
__func__);
|
||
|
return -ENOMEM;
|
||
|
}
|
||
|
|
||
|
for (i = 0; i < no_bam_port; i++) {
|
||
|
n_bam_ports++;
|
||
|
ret = gbam_port_alloc(i);
|
||
|
if (ret) {
|
||
|
n_bam_ports--;
|
||
|
pr_err("%s: Unable to alloc port:%d\n", __func__, i);
|
||
|
goto free_bam_ports;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
for (i = 0; i < no_bam2bam_port; i++) {
|
||
|
n_bam2bam_ports++;
|
||
|
ret = gbam2bam_port_alloc(i);
|
||
|
if (ret) {
|
||
|
n_bam2bam_ports--;
|
||
|
pr_err("%s: Unable to alloc port:%d\n", __func__, i);
|
||
|
goto free_bam_ports;
|
||
|
}
|
||
|
}
|
||
|
gbam_debugfs_init();
|
||
|
return 0;
|
||
|
|
||
|
free_bam_ports:
|
||
|
for (i = 0; i < n_bam_ports; i++)
|
||
|
gbam_port_free(i);
|
||
|
for (i = 0; i < n_bam2bam_ports; i++)
|
||
|
gbam2bam_port_free(i);
|
||
|
destroy_workqueue(gbam_wq);
|
||
|
|
||
|
return ret;
|
||
|
}
|
||
|
|
||
|
void gbam_suspend(struct grmnet *gr, u8 port_num, enum transport_type trans)
|
||
|
{
|
||
|
struct gbam_port *port;
|
||
|
struct bam_ch_info *d;
|
||
|
|
||
|
if (trans != USB_GADGET_XPORT_BAM2BAM &&
|
||
|
trans != USB_GADGET_XPORT_BAM2BAM_IPA)
|
||
|
return;
|
||
|
|
||
|
port = bam2bam_ports[port_num];
|
||
|
d = &port->data_ch;
|
||
|
|
||
|
pr_debug("%s: suspended port %d\n", __func__, port_num);
|
||
|
|
||
|
queue_work(gbam_wq, &port->suspend_w);
|
||
|
}
|
||
|
|
||
|
void gbam_resume(struct grmnet *gr, u8 port_num, enum transport_type trans)
|
||
|
{
|
||
|
struct gbam_port *port;
|
||
|
struct bam_ch_info *d;
|
||
|
|
||
|
if (trans != USB_GADGET_XPORT_BAM2BAM &&
|
||
|
trans != USB_GADGET_XPORT_BAM2BAM_IPA)
|
||
|
return;
|
||
|
|
||
|
port = bam2bam_ports[port_num];
|
||
|
d = &port->data_ch;
|
||
|
|
||
|
pr_debug("%s: resumed port %d\n", __func__, port_num);
|
||
|
|
||
|
queue_work(gbam_wq, &port->resume_w);
|
||
|
}
|