1*4882a593Smuzhiyun // SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause) 2*4882a593Smuzhiyun /* 3*4882a593Smuzhiyun * Copyright (C) ST-Ericsson 2010-2012 4*4882a593Smuzhiyun * Contact: Alexey Orishko <alexey.orishko@stericsson.com> 5*4882a593Smuzhiyun * Original author: Hans Petter Selasky <hans.petter.selasky@stericsson.com> 6*4882a593Smuzhiyun * 7*4882a593Smuzhiyun * USB Host Driver for Network Control Model (NCM) 8*4882a593Smuzhiyun * http://www.usb.org/developers/devclass_docs/NCM10.zip 9*4882a593Smuzhiyun * 10*4882a593Smuzhiyun * The NCM encoding, decoding and initialization logic 11*4882a593Smuzhiyun * derives from FreeBSD 8.x. if_cdce.c and if_cdcereg.h 12*4882a593Smuzhiyun * 13*4882a593Smuzhiyun * This software is available to you under a choice of one of two 14*4882a593Smuzhiyun * licenses. You may choose this file to be licensed under the terms 15*4882a593Smuzhiyun * of the GNU General Public License (GPL) Version 2 or the 2-clause 16*4882a593Smuzhiyun * BSD license listed below: 17*4882a593Smuzhiyun * 18*4882a593Smuzhiyun * Redistribution and use in source and binary forms, with or without 19*4882a593Smuzhiyun * modification, are permitted provided that the following conditions 20*4882a593Smuzhiyun * are met: 21*4882a593Smuzhiyun * 1. Redistributions of source code must retain the above copyright 22*4882a593Smuzhiyun * notice, this list of conditions and the following disclaimer. 23*4882a593Smuzhiyun * 2. Redistributions in binary form must reproduce the above copyright 24*4882a593Smuzhiyun * notice, this list of conditions and the following disclaimer in the 25*4882a593Smuzhiyun * documentation and/or other materials provided with the distribution. 26*4882a593Smuzhiyun * 27*4882a593Smuzhiyun * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 28*4882a593Smuzhiyun * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 29*4882a593Smuzhiyun * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 30*4882a593Smuzhiyun * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 31*4882a593Smuzhiyun * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 32*4882a593Smuzhiyun * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 33*4882a593Smuzhiyun * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 34*4882a593Smuzhiyun * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 35*4882a593Smuzhiyun * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 36*4882a593Smuzhiyun * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 37*4882a593Smuzhiyun * SUCH DAMAGE. 38*4882a593Smuzhiyun */ 39*4882a593Smuzhiyun 40*4882a593Smuzhiyun #ifndef __LINUX_USB_CDC_NCM_H 41*4882a593Smuzhiyun #define __LINUX_USB_CDC_NCM_H 42*4882a593Smuzhiyun 43*4882a593Smuzhiyun #define CDC_NCM_COMM_ALTSETTING_NCM 0 44*4882a593Smuzhiyun #define CDC_NCM_COMM_ALTSETTING_MBIM 1 45*4882a593Smuzhiyun 46*4882a593Smuzhiyun #define CDC_NCM_DATA_ALTSETTING_NCM 1 47*4882a593Smuzhiyun #define CDC_NCM_DATA_ALTSETTING_MBIM 2 48*4882a593Smuzhiyun 49*4882a593Smuzhiyun /* CDC NCM subclass 3.3.1 */ 50*4882a593Smuzhiyun #define USB_CDC_NCM_NDP16_LENGTH_MIN 0x10 51*4882a593Smuzhiyun 52*4882a593Smuzhiyun /* CDC NCM subclass 3.3.2 */ 53*4882a593Smuzhiyun #define USB_CDC_NCM_NDP32_LENGTH_MIN 0x20 54*4882a593Smuzhiyun 55*4882a593Smuzhiyun /* Maximum NTB length */ 56*4882a593Smuzhiyun #define CDC_NCM_NTB_MAX_SIZE_TX 32768 /* bytes */ 57*4882a593Smuzhiyun #define CDC_NCM_NTB_MAX_SIZE_RX 32768 /* bytes */ 58*4882a593Smuzhiyun 59*4882a593Smuzhiyun /* Initial NTB length */ 60*4882a593Smuzhiyun #define CDC_NCM_NTB_DEF_SIZE_TX 16384 /* bytes */ 61*4882a593Smuzhiyun #define CDC_NCM_NTB_DEF_SIZE_RX 16384 /* bytes */ 62*4882a593Smuzhiyun 63*4882a593Smuzhiyun /* Minimum value for MaxDatagramSize, ch. 6.2.9 */ 64*4882a593Smuzhiyun #define CDC_NCM_MIN_DATAGRAM_SIZE 1514 /* bytes */ 65*4882a593Smuzhiyun 66*4882a593Smuzhiyun /* Minimum value for MaxDatagramSize, ch. 8.1.3 */ 67*4882a593Smuzhiyun #define CDC_MBIM_MIN_DATAGRAM_SIZE 2048 /* bytes */ 68*4882a593Smuzhiyun 69*4882a593Smuzhiyun #define CDC_NCM_MIN_TX_PKT 512 /* bytes */ 70*4882a593Smuzhiyun 71*4882a593Smuzhiyun /* Default value for MaxDatagramSize */ 72*4882a593Smuzhiyun #define CDC_NCM_MAX_DATAGRAM_SIZE 8192 /* bytes */ 73*4882a593Smuzhiyun 74*4882a593Smuzhiyun /* 75*4882a593Smuzhiyun * Maximum amount of datagrams in NCM Datagram Pointer Table, not counting 76*4882a593Smuzhiyun * the last NULL entry. 77*4882a593Smuzhiyun */ 78*4882a593Smuzhiyun #define CDC_NCM_DPT_DATAGRAMS_MAX 40 79*4882a593Smuzhiyun 80*4882a593Smuzhiyun /* Restart the timer, if amount of datagrams is less than given value */ 81*4882a593Smuzhiyun #define CDC_NCM_RESTART_TIMER_DATAGRAM_CNT 3 82*4882a593Smuzhiyun #define CDC_NCM_TIMER_PENDING_CNT 2 83*4882a593Smuzhiyun #define CDC_NCM_TIMER_INTERVAL_USEC 400UL 84*4882a593Smuzhiyun #define CDC_NCM_TIMER_INTERVAL_MIN 5UL 85*4882a593Smuzhiyun #define CDC_NCM_TIMER_INTERVAL_MAX (U32_MAX / NSEC_PER_USEC) 86*4882a593Smuzhiyun 87*4882a593Smuzhiyun /* Driver flags */ 88*4882a593Smuzhiyun #define CDC_NCM_FLAG_NDP_TO_END 0x02 /* NDP is placed at end of frame */ 89*4882a593Smuzhiyun #define CDC_MBIM_FLAG_AVOID_ALTSETTING_TOGGLE 0x04 /* Avoid altsetting toggle during init */ 90*4882a593Smuzhiyun #define CDC_NCM_FLAG_PREFER_NTB32 0x08 /* prefer NDP32 over NDP16 */ 91*4882a593Smuzhiyun 92*4882a593Smuzhiyun #define cdc_ncm_comm_intf_is_mbim(x) ((x)->desc.bInterfaceSubClass == USB_CDC_SUBCLASS_MBIM && \ 93*4882a593Smuzhiyun (x)->desc.bInterfaceProtocol == USB_CDC_PROTO_NONE) 94*4882a593Smuzhiyun #define cdc_ncm_data_intf_is_mbim(x) ((x)->desc.bInterfaceProtocol == USB_CDC_MBIM_PROTO_NTB) 95*4882a593Smuzhiyun 96*4882a593Smuzhiyun struct cdc_ncm_ctx { 97*4882a593Smuzhiyun struct usb_cdc_ncm_ntb_parameters ncm_parm; 98*4882a593Smuzhiyun struct hrtimer tx_timer; 99*4882a593Smuzhiyun struct tasklet_struct bh; 100*4882a593Smuzhiyun 101*4882a593Smuzhiyun const struct usb_cdc_ncm_desc *func_desc; 102*4882a593Smuzhiyun const struct usb_cdc_mbim_desc *mbim_desc; 103*4882a593Smuzhiyun const struct usb_cdc_mbim_extended_desc *mbim_extended_desc; 104*4882a593Smuzhiyun const struct usb_cdc_ether_desc *ether_desc; 105*4882a593Smuzhiyun 106*4882a593Smuzhiyun struct usb_interface *control; 107*4882a593Smuzhiyun struct usb_interface *data; 108*4882a593Smuzhiyun 109*4882a593Smuzhiyun struct sk_buff *tx_curr_skb; 110*4882a593Smuzhiyun struct sk_buff *tx_rem_skb; 111*4882a593Smuzhiyun __le32 tx_rem_sign; 112*4882a593Smuzhiyun 113*4882a593Smuzhiyun spinlock_t mtx; 114*4882a593Smuzhiyun atomic_t stop; 115*4882a593Smuzhiyun int drvflags; 116*4882a593Smuzhiyun 117*4882a593Smuzhiyun u32 timer_interval; 118*4882a593Smuzhiyun u32 max_ndp_size; 119*4882a593Smuzhiyun u8 is_ndp16; 120*4882a593Smuzhiyun union { 121*4882a593Smuzhiyun struct usb_cdc_ncm_ndp16 *delayed_ndp16; 122*4882a593Smuzhiyun struct usb_cdc_ncm_ndp32 *delayed_ndp32; 123*4882a593Smuzhiyun }; 124*4882a593Smuzhiyun 125*4882a593Smuzhiyun u32 tx_timer_pending; 126*4882a593Smuzhiyun u32 tx_curr_frame_num; 127*4882a593Smuzhiyun u32 rx_max; 128*4882a593Smuzhiyun u32 tx_max; 129*4882a593Smuzhiyun u32 tx_curr_size; 130*4882a593Smuzhiyun u32 tx_low_mem_max_cnt; 131*4882a593Smuzhiyun u32 tx_low_mem_val; 132*4882a593Smuzhiyun u32 max_datagram_size; 133*4882a593Smuzhiyun u16 tx_max_datagrams; 134*4882a593Smuzhiyun u16 tx_remainder; 135*4882a593Smuzhiyun u16 tx_modulus; 136*4882a593Smuzhiyun u16 tx_ndp_modulus; 137*4882a593Smuzhiyun u16 tx_seq; 138*4882a593Smuzhiyun u16 rx_seq; 139*4882a593Smuzhiyun u16 min_tx_pkt; 140*4882a593Smuzhiyun 141*4882a593Smuzhiyun /* statistics */ 142*4882a593Smuzhiyun u32 tx_curr_frame_payload; 143*4882a593Smuzhiyun u32 tx_reason_ntb_full; 144*4882a593Smuzhiyun u32 tx_reason_ndp_full; 145*4882a593Smuzhiyun u32 tx_reason_timeout; 146*4882a593Smuzhiyun u32 tx_reason_max_datagram; 147*4882a593Smuzhiyun u64 tx_overhead; 148*4882a593Smuzhiyun u64 tx_ntbs; 149*4882a593Smuzhiyun u64 rx_overhead; 150*4882a593Smuzhiyun u64 rx_ntbs; 151*4882a593Smuzhiyun }; 152*4882a593Smuzhiyun 153*4882a593Smuzhiyun u8 cdc_ncm_select_altsetting(struct usb_interface *intf); 154*4882a593Smuzhiyun int cdc_ncm_change_mtu(struct net_device *net, int new_mtu); 155*4882a593Smuzhiyun int cdc_ncm_bind_common(struct usbnet *dev, struct usb_interface *intf, u8 data_altsetting, int drvflags); 156*4882a593Smuzhiyun void cdc_ncm_unbind(struct usbnet *dev, struct usb_interface *intf); 157*4882a593Smuzhiyun struct sk_buff *cdc_ncm_fill_tx_frame(struct usbnet *dev, struct sk_buff *skb, __le32 sign); 158*4882a593Smuzhiyun int cdc_ncm_rx_verify_nth16(struct cdc_ncm_ctx *ctx, struct sk_buff *skb_in); 159*4882a593Smuzhiyun int cdc_ncm_rx_verify_ndp16(struct sk_buff *skb_in, int ndpoffset); 160*4882a593Smuzhiyun int cdc_ncm_rx_verify_nth32(struct cdc_ncm_ctx *ctx, struct sk_buff *skb_in); 161*4882a593Smuzhiyun int cdc_ncm_rx_verify_ndp32(struct sk_buff *skb_in, int ndpoffset); 162*4882a593Smuzhiyun struct sk_buff * 163*4882a593Smuzhiyun cdc_ncm_tx_fixup(struct usbnet *dev, struct sk_buff *skb, gfp_t flags); 164*4882a593Smuzhiyun int cdc_ncm_rx_fixup(struct usbnet *dev, struct sk_buff *skb_in); 165*4882a593Smuzhiyun 166*4882a593Smuzhiyun #endif /* __LINUX_USB_CDC_NCM_H */ 167