cdc_ncm.h 5.8 KB

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