p!ranha?
Server IP : 103.169.32.36  /  Your IP : 216.73.217.13
Web Server : Apache
System : Linux web.dpmptsp 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
User : apache ( 48)
PHP Version : 5.6.40
Disable Function : NONE
MySQL : ON  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /usr/lib/modules/3.10.0-1160.105.1.el7.x86_64/source/include/linux/usb/

Upload File :
Curr3nt_D!r [ Writeable ] D0cum3nt_r0Ot [ Writeable ]

 
Command :
Current File : /usr/lib/modules/3.10.0-1160.105.1.el7.x86_64/source/include/linux/usb/cdc_ncm.h
// SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
/*
 * Copyright (C) ST-Ericsson 2010-2012
 * Contact: Alexey Orishko <alexey.orishko@stericsson.com>
 * Original author: Hans Petter Selasky <hans.petter.selasky@stericsson.com>
 *
 * USB Host Driver for Network Control Model (NCM)
 * http://www.usb.org/developers/devclass_docs/NCM10.zip
 *
 * The NCM encoding, decoding and initialization logic
 * derives from FreeBSD 8.x. if_cdce.c and if_cdcereg.h
 *
 * This software is available to you under a choice of one of two
 * licenses. You may choose this file to be licensed under the terms
 * of the GNU General Public License (GPL) Version 2 or the 2-clause
 * BSD license listed below:
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * SUCH DAMAGE.
 */

#ifndef __LINUX_USB_CDC_NCM_H
#define __LINUX_USB_CDC_NCM_H

#define CDC_NCM_COMM_ALTSETTING_NCM		0
#define CDC_NCM_COMM_ALTSETTING_MBIM		1

#define CDC_NCM_DATA_ALTSETTING_NCM		1
#define CDC_NCM_DATA_ALTSETTING_MBIM		2

/* CDC NCM subclass 3.2.1 */
#define USB_CDC_NCM_NDP16_LENGTH_MIN		0x10

/* Maximum NTB length */
#define	CDC_NCM_NTB_MAX_SIZE_TX			32768	/* bytes */
#define	CDC_NCM_NTB_MAX_SIZE_RX			32768	/* bytes */

/* Initial NTB length */
#define	CDC_NCM_NTB_DEF_SIZE_TX			16384	/* bytes */
#define	CDC_NCM_NTB_DEF_SIZE_RX			16384	/* bytes */

/* Minimum value for MaxDatagramSize, ch. 6.2.9 */
#define	CDC_NCM_MIN_DATAGRAM_SIZE		1514	/* bytes */

/* Minimum value for MaxDatagramSize, ch. 8.1.3 */
#define CDC_MBIM_MIN_DATAGRAM_SIZE		2048	/* bytes */

#define	CDC_NCM_MIN_TX_PKT			512	/* bytes */

/* Default value for MaxDatagramSize */
#define	CDC_NCM_MAX_DATAGRAM_SIZE		8192	/* bytes */

/*
 * Maximum amount of datagrams in NCM Datagram Pointer Table, not counting
 * the last NULL entry.
 */
#define	CDC_NCM_DPT_DATAGRAMS_MAX		40

/* Restart the timer, if amount of datagrams is less than given value */
#define	CDC_NCM_RESTART_TIMER_DATAGRAM_CNT	3
#define	CDC_NCM_TIMER_PENDING_CNT		2
#define CDC_NCM_TIMER_INTERVAL_USEC		400UL
#define CDC_NCM_TIMER_INTERVAL_MIN		5UL
#define CDC_NCM_TIMER_INTERVAL_MAX		(U32_MAX / NSEC_PER_USEC)

/* Driver flags */
#define CDC_NCM_FLAG_NDP_TO_END			0x02	/* NDP is placed at end of frame */
#define CDC_MBIM_FLAG_AVOID_ALTSETTING_TOGGLE	0x04	/* Avoid altsetting toggle during init */
#define CDC_NCM_FLAG_RESET_NTB16 0x08	/* set NDP16 one more time after altsetting switch */

#define cdc_ncm_comm_intf_is_mbim(x)  ((x)->desc.bInterfaceSubClass == USB_CDC_SUBCLASS_MBIM && \
				       (x)->desc.bInterfaceProtocol == USB_CDC_PROTO_NONE)
#define cdc_ncm_data_intf_is_mbim(x)  ((x)->desc.bInterfaceProtocol == USB_CDC_MBIM_PROTO_NTB)

struct cdc_ncm_ctx {
	struct usb_cdc_ncm_ntb_parameters ncm_parm;
	struct hrtimer tx_timer;
	struct tasklet_struct bh;

	const struct usb_cdc_ncm_desc *func_desc;
	const struct usb_cdc_mbim_desc *mbim_desc;
	const struct usb_cdc_mbim_extended_desc *mbim_extended_desc;
	const struct usb_cdc_ether_desc *ether_desc;

	struct usb_interface *control;
	struct usb_interface *data;

	struct sk_buff *tx_curr_skb;
	struct sk_buff *tx_rem_skb;
	__le32 tx_rem_sign;

	spinlock_t mtx;
	atomic_t stop;
	int drvflags;

	u32 timer_interval;
	u32 max_ndp_size;
	struct usb_cdc_ncm_ndp16 *delayed_ndp16;

	u32 tx_timer_pending;
	u32 tx_curr_frame_num;
	u32 rx_max;
	u32 tx_max;
	u32 tx_curr_size;
	u32 tx_low_mem_max_cnt;
	u32 tx_low_mem_val;
	u32 max_datagram_size;
	u16 tx_max_datagrams;
	u16 tx_remainder;
	u16 tx_modulus;
	u16 tx_ndp_modulus;
	u16 tx_seq;
	u16 rx_seq;
	u16 min_tx_pkt;

	/* statistics */
	u32 tx_curr_frame_payload;
	u32 tx_reason_ntb_full;
	u32 tx_reason_ndp_full;
	u32 tx_reason_timeout;
	u32 tx_reason_max_datagram;
	u64 tx_overhead;
	u64 tx_ntbs;
	u64 rx_overhead;
	u64 rx_ntbs;
};

u8 cdc_ncm_select_altsetting(struct usb_interface *intf);
int cdc_ncm_change_mtu(struct net_device *net, int new_mtu);
int cdc_ncm_bind_common(struct usbnet *dev, struct usb_interface *intf, u8 data_altsetting, int drvflags);
void cdc_ncm_unbind(struct usbnet *dev, struct usb_interface *intf);
struct sk_buff *cdc_ncm_fill_tx_frame(struct usbnet *dev, struct sk_buff *skb, __le32 sign);
int cdc_ncm_rx_verify_nth16(struct cdc_ncm_ctx *ctx, struct sk_buff *skb_in);
int cdc_ncm_rx_verify_ndp16(struct sk_buff *skb_in, int ndpoffset);
struct sk_buff *
cdc_ncm_tx_fixup(struct usbnet *dev, struct sk_buff *skb, gfp_t flags);
int cdc_ncm_rx_fixup(struct usbnet *dev, struct sk_buff *skb_in);

#endif /* __LINUX_USB_CDC_NCM_H */
N4m3
5!z3
L45t M0d!f!3d
0wn3r / Gr0up
P3Rm!55!0n5
0pt!0n5
..
--
January 19 2024 08:12:51
0 / 0
0755
association.h
4.587 KB
November 06 2023 09:15:52
0 / 0
0644
atmel_usba_udc.h
0.411 KB
November 06 2023 09:15:52
0 / 0
0644
audio-v2.h
13.344 KB
November 06 2023 09:15:52
0 / 0
0644
audio-v3.h
13.937 KB
November 06 2023 09:15:52
0 / 0
0644
audio.h
1.231 KB
November 06 2023 09:15:52
0 / 0
0644
c67x00.h
1.823 KB
November 06 2023 09:15:52
0 / 0
0644
cdc-wdm.h
0.636 KB
November 06 2023 09:15:52
0 / 0
0644
cdc.h
1.481 KB
November 06 2023 09:15:52
0 / 0
0644
cdc_ncm.h
5.556 KB
November 06 2023 09:15:52
0 / 0
0644
ch9.h
2.125 KB
November 06 2023 09:15:52
0 / 0
0644
chipidea.h
0.98 KB
November 06 2023 09:15:52
0 / 0
0644
composite.h
20.717 KB
November 06 2023 09:15:52
0 / 0
0644
dwc3-omap.h
0.723 KB
November 06 2023 09:15:52
0 / 0
0644
ehci-dbgp.h
2.05 KB
November 06 2023 09:15:52
0 / 0
0644
ehci_def.h
7.897 KB
November 06 2023 09:15:52
0 / 0
0644
ehci_pdriver.h
2.314 KB
November 06 2023 09:15:52
0 / 0
0644
ezusb.h
0.279 KB
November 06 2023 09:15:52
0 / 0
0644
functionfs.h
1.063 KB
November 06 2023 09:15:52
0 / 0
0644
g_hid.h
1.131 KB
November 06 2023 09:15:52
0 / 0
0644
gadget.h
37.091 KB
November 06 2023 09:15:52
0 / 0
0644
gadget_configfs.h
2.943 KB
November 06 2023 09:15:52
0 / 0
0644
gpio_vbus.h
1.126 KB
November 06 2023 09:15:52
0 / 0
0644
hcd.h
26.007 KB
November 06 2023 09:15:52
0 / 0
0644
input.h
0.699 KB
November 06 2023 09:15:52
0 / 0
0644
iowarrior.h
1.342 KB
November 06 2023 09:15:52
0 / 0
0644
irda.h
3.471 KB
November 06 2023 09:15:52
0 / 0
0644
isp116x.h
1.133 KB
November 06 2023 09:15:52
0 / 0
0644
isp1301.h
2.376 KB
November 06 2023 09:15:52
0 / 0
0644
isp1362.h
1.59 KB
November 06 2023 09:15:52
0 / 0
0644
isp1760.h
0.618 KB
November 06 2023 09:15:52
0 / 0
0644
m66592.h
1.41 KB
November 06 2023 09:15:52
0 / 0
0644
msm_hsusb.h
5.409 KB
November 06 2023 09:15:52
0 / 0
0644
msm_hsusb_hw.h
2.08 KB
November 06 2023 09:15:52
0 / 0
0644
musb-ux500.h
0.878 KB
November 06 2023 09:15:52
0 / 0
0644
musb.h
4.143 KB
November 06 2023 09:15:52
0 / 0
0644
net2280.h
23.555 KB
November 06 2023 09:15:52
0 / 0
0644
of.h
1.967 KB
November 06 2023 09:15:52
0 / 0
0644
ohci_pdriver.h
1.707 KB
November 06 2023 09:15:52
0 / 0
0644
omap_control_usb.h
2.439 KB
November 06 2023 09:15:52
0 / 0
0644
omap_usb.h
1.665 KB
November 06 2023 09:15:52
0 / 0
0644
otg-fsm.h
8.591 KB
November 06 2023 09:15:52
0 / 0
0644
otg.h
2.73 KB
November 06 2023 09:15:52
0 / 0
0644
pd.h
13.699 KB
November 06 2023 09:15:52
0 / 0
0644
pd_ado.h
1.163 KB
November 06 2023 09:15:52
0 / 0
0644
pd_bdo.h
0.987 KB
November 06 2023 09:15:52
0 / 0
0644
pd_ext_sdb.h
0.811 KB
November 06 2023 09:15:52
0 / 0
0644
pd_vdo.h
7.579 KB
November 06 2023 09:15:52
0 / 0
0644
phy.h
9.077 KB
November 06 2023 09:15:52
0 / 0
0644
phy_companion.h
1.168 KB
November 06 2023 09:15:52
0 / 0
0644
quirks.h
2.159 KB
November 06 2023 09:15:52
0 / 0
0644
r8a66597.h
17.646 KB
November 06 2023 09:15:52
0 / 0
0644
renesas_usbhs.h
4.134 KB
November 06 2023 09:15:52
0 / 0
0644
rndis_host.h
5.938 KB
November 06 2023 09:15:52
0 / 0
0644
role.h
1.802 KB
November 06 2023 09:15:52
0 / 0
0644
samsung_usb_phy.h
0.518 KB
November 06 2023 09:15:52
0 / 0
0644
serial.h
17.122 KB
November 06 2023 09:15:52
0 / 0
0644
sl811.h
0.818 KB
November 06 2023 09:15:52
0 / 0
0644
storage.h
2.583 KB
November 06 2023 09:15:52
0 / 0
0644
tcpm.h
5.679 KB
November 06 2023 09:15:52
0 / 0
0644
tegra_usb_phy.h
2.017 KB
November 06 2023 09:15:52
0 / 0
0644
tilegx.h
0.96 KB
November 06 2023 09:15:52
0 / 0
0644
typec.h
6.788 KB
November 06 2023 09:15:52
0 / 0
0644
typec_altmode.h
5.281 KB
November 06 2023 09:15:52
0 / 0
0644
typec_dp.h
3.132 KB
November 06 2023 09:15:52
0 / 0
0644
typec_mux.h
1.538 KB
November 06 2023 09:15:52
0 / 0
0644
uas.h
2.071 KB
November 06 2023 09:15:52
0 / 0
0644
ulpi.h
1.99 KB
November 06 2023 09:15:52
0 / 0
0644
usb338x.h
7.634 KB
November 06 2023 09:15:52
0 / 0
0644
usb_phy_generic.h
0.871 KB
November 06 2023 09:15:52
0 / 0
0644
usbnet.h
9.927 KB
November 06 2023 09:15:52
0 / 0
0644
wusb-wa.h
7.499 KB
November 06 2023 09:15:52
0 / 0
0644
wusb.h
9.92 KB
November 06 2023 09:15:52
0 / 0
0644
xhci-dbgp.h
0.806 KB
November 06 2023 09:15:52
0 / 0
0644