p!ranha?
Server IP : 103.169.32.36  /  Your IP : 216.73.216.202
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/association.h
// SPDX-License-Identifier: GPL-2.0
/*
 * Wireless USB - Cable Based Association
 *
 * Copyright (C) 2006 Intel Corporation
 * Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License version
 * 2 as published by the Free Software Foundation.
 *
 */
#ifndef __LINUX_USB_ASSOCIATION_H
#define __LINUX_USB_ASSOCIATION_H


/*
 * Association attributes
 *
 * Association Models Supplement to WUSB 1.0 T[3-1]
 *
 * Each field in the structures has it's ID, it's length and then the
 * value. This is the actual definition of the field's ID and its
 * length.
 */
struct wusb_am_attr {
	__u8 id;
	__u8 len;
};

/* Different fields defined by the spec */
#define WUSB_AR_AssociationTypeId	{ .id = cpu_to_le16(0x0000), .len = cpu_to_le16(2) }
#define WUSB_AR_AssociationSubTypeId	{ .id = cpu_to_le16(0x0001), .len = cpu_to_le16(2) }
#define WUSB_AR_Length			{ .id = cpu_to_le16(0x0002), .len = cpu_to_le16(4) }
#define WUSB_AR_AssociationStatus	{ .id = cpu_to_le16(0x0004), .len = cpu_to_le16(4) }
#define WUSB_AR_LangID			{ .id = cpu_to_le16(0x0008), .len = cpu_to_le16(2) }
#define WUSB_AR_DeviceFriendlyName	{ .id = cpu_to_le16(0x000b), .len = cpu_to_le16(64) } /* max */
#define WUSB_AR_HostFriendlyName	{ .id = cpu_to_le16(0x000c), .len = cpu_to_le16(64) } /* max */
#define WUSB_AR_CHID			{ .id = cpu_to_le16(0x1000), .len = cpu_to_le16(16) }
#define WUSB_AR_CDID			{ .id = cpu_to_le16(0x1001), .len = cpu_to_le16(16) }
#define WUSB_AR_ConnectionContext	{ .id = cpu_to_le16(0x1002), .len = cpu_to_le16(48) }
#define WUSB_AR_BandGroups		{ .id = cpu_to_le16(0x1004), .len = cpu_to_le16(2) }

/* CBAF Control Requests (AMS1.0[T4-1] */
enum {
	CBAF_REQ_GET_ASSOCIATION_INFORMATION = 0x01,
	CBAF_REQ_GET_ASSOCIATION_REQUEST,
	CBAF_REQ_SET_ASSOCIATION_RESPONSE
};

/*
 * CBAF USB-interface defitions
 *
 * No altsettings, one optional interrupt endpoint.
 */
enum {
	CBAF_IFACECLASS    = 0xef,
	CBAF_IFACESUBCLASS = 0x03,
	CBAF_IFACEPROTOCOL = 0x01,
};

/* Association Information (AMS1.0[T4-3]) */
struct wusb_cbaf_assoc_info {
	__le16 Length;
	__u8 NumAssociationRequests;
	__le16 Flags;
	__u8 AssociationRequestsArray[];
} __attribute__((packed));

/* Association Request (AMS1.0[T4-4]) */
struct wusb_cbaf_assoc_request {
	__u8 AssociationDataIndex;
	__u8 Reserved;
	__le16 AssociationTypeId;
	__le16 AssociationSubTypeId;
	__le32 AssociationTypeInfoSize;
} __attribute__((packed));

enum {
	AR_TYPE_WUSB                    = 0x0001,
	AR_TYPE_WUSB_RETRIEVE_HOST_INFO = 0x0000,
	AR_TYPE_WUSB_ASSOCIATE          = 0x0001,
};

/* Association Attribute header (AMS1.0[3.8]) */
struct wusb_cbaf_attr_hdr {
	__le16 id;
	__le16 len;
} __attribute__((packed));

/* Host Info (AMS1.0[T4-7]) (yeah, more headers and fields...) */
struct wusb_cbaf_host_info {
	struct wusb_cbaf_attr_hdr AssociationTypeId_hdr;
	__le16 AssociationTypeId;
	struct wusb_cbaf_attr_hdr AssociationSubTypeId_hdr;
	__le16 AssociationSubTypeId;
	struct wusb_cbaf_attr_hdr CHID_hdr;
	struct wusb_ckhdid CHID;
	struct wusb_cbaf_attr_hdr LangID_hdr;
	__le16 LangID;
	struct wusb_cbaf_attr_hdr HostFriendlyName_hdr;
	__u8 HostFriendlyName[];
} __attribute__((packed));

/* Device Info (AMS1.0[T4-8])
 *
 * I still don't get this tag'n'header stuff for each goddamn
 * field...
 */
struct wusb_cbaf_device_info {
	struct wusb_cbaf_attr_hdr Length_hdr;
	__le32 Length;
	struct wusb_cbaf_attr_hdr CDID_hdr;
	struct wusb_ckhdid CDID;
	struct wusb_cbaf_attr_hdr BandGroups_hdr;
	__le16 BandGroups;
	struct wusb_cbaf_attr_hdr LangID_hdr;
	__le16 LangID;
	struct wusb_cbaf_attr_hdr DeviceFriendlyName_hdr;
	__u8 DeviceFriendlyName[];
} __attribute__((packed));

/* Connection Context; CC_DATA - Success case (AMS1.0[T4-9]) */
struct wusb_cbaf_cc_data {
	struct wusb_cbaf_attr_hdr AssociationTypeId_hdr;
	__le16 AssociationTypeId;
	struct wusb_cbaf_attr_hdr AssociationSubTypeId_hdr;
	__le16 AssociationSubTypeId;
	struct wusb_cbaf_attr_hdr Length_hdr;
	__le32 Length;
	struct wusb_cbaf_attr_hdr ConnectionContext_hdr;
	struct wusb_ckhdid CHID;
	struct wusb_ckhdid CDID;
	struct wusb_ckhdid CK;
	struct wusb_cbaf_attr_hdr BandGroups_hdr;
	__le16 BandGroups;
} __attribute__((packed));

/* CC_DATA - Failure case (AMS1.0[T4-10]) */
struct wusb_cbaf_cc_data_fail {
	struct wusb_cbaf_attr_hdr AssociationTypeId_hdr;
	__le16 AssociationTypeId;
	struct wusb_cbaf_attr_hdr AssociationSubTypeId_hdr;
	__le16 AssociationSubTypeId;
	struct wusb_cbaf_attr_hdr Length_hdr;
	__le16 Length;
	struct wusb_cbaf_attr_hdr AssociationStatus_hdr;
	__u32 AssociationStatus;
} __attribute__((packed));

#endif	/* __LINUX_USB_ASSOCIATION_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