2 * Wireless USB Wire Adapter constants and structures.
4 * Copyright (C) 2005-2006 Intel Corporation.
5 * Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License version
9 * 2 as published by the Free Software Foundation.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
23 * FIXME: organize properly, group logically
25 * All the event structures are defined in uwb/spec.h, as they are
26 * common to the WHCI and WUSB radio control interfaces.
29 * [WUSB] Wireless Universal Serial Bus Specification, revision 1.0, ch8
31 #ifndef __LINUX_USB_WUSB_WA_H
32 #define __LINUX_USB_WUSB_WA_H
35 * Radio Command Request for the Radio Control Interface
37 * Radio Control Interface command and event codes are the same as
38 * WHCI, and listed in include/linux/uwb.h:UWB_RC_{CMD,EVT}_*
41 WA_EXEC_RC_CMD
= 40, /* Radio Control command Request */
44 /* Wireless Adapter Requests ([WUSB] table 8-51) */
46 WUSB_REQ_ADD_MMC_IE
= 20,
47 WUSB_REQ_REMOVE_MMC_IE
= 21,
48 WUSB_REQ_SET_NUM_DNTS
= 22,
49 WUSB_REQ_SET_CLUSTER_ID
= 23,
50 WUSB_REQ_SET_DEV_INFO
= 24,
51 WUSB_REQ_GET_TIME
= 25,
52 WUSB_REQ_SET_STREAM_IDX
= 26,
53 WUSB_REQ_SET_WUSB_MAS
= 27,
57 /* Wireless Adapter WUSB Channel Time types ([WUSB] table 8-52) */
70 /* Responses from Get Status request ([WUSB] section 8.3.1.6) */
72 WA_STATUS_ENABLED
= 0x01,
73 WA_STATUS_RESETTING
= 0x02
79 RPIPE_CRS_BULK
= 0x04,
84 * RPipe descriptor ([WUSB] section 8.5.2.11)
86 * FIXME: explain rpipes
88 struct usb_rpipe_descriptor
{
93 __le16 wBlocks
; /* rw if 0 */
94 __le16 wMaxPacketSize
; /* rw? */
95 u8 bHSHubAddress
; /* reserved: 0 */
96 u8 bHSHubPort
; /* ??? FIXME ??? */
97 u8 bSpeed
; /* rw: xfer rate 'enum uwb_phy_rate' */
98 u8 bDeviceAddress
; /* rw: Target device address */
99 u8 bEndpointAddress
; /* rw: Target EP address */
100 u8 bDataSequence
; /* ro: Current Data sequence */
101 __le32 dwCurrentWindow
; /* ro */
102 u8 bMaxDataSequence
; /* ro?: max supported seq */
103 u8 bInterval
; /* rw: */
104 u8 bOverTheAirInterval
; /* rw: */
105 u8 bmAttribute
; /* ro? */
106 u8 bmCharacteristics
; /* ro? enum rpipe_attr, supported xsactions */
107 u8 bmRetryOptions
; /* rw? */
108 __le16 wNumTransactionErrors
; /* rw */
109 } __attribute__ ((packed
));
112 * Wire Adapter Notification types ([WUSB] sections 8.4.5 & 8.5.4)
114 * These are the notifications coming on the notification endpoint of
118 DWA_NOTIF_RWAKE
= 0x91,
119 DWA_NOTIF_PORTSTATUS
= 0x92,
120 WA_NOTIF_TRANSFER
= 0x93,
121 HWA_NOTIF_BPST_ADJ
= 0x94,
126 * Wire Adapter notification header
128 * Notifications coming from a wire adapter use a common header
129 * defined in [WUSB] sections 8.4.5 & 8.5.4.
131 struct wa_notif_hdr
{
133 u8 bNotifyType
; /* enum wa_notif_type */
134 } __attribute__((packed
));
137 * HWA DN Received notification [(WUSB] section 8.5.4.2)
139 * The DNData is specified in WUSB1.0[7.6]. For each device
140 * notification we received, we just need to dispatch it.
142 * @dndata: this is really an array of notifications, but all start
143 * with the same header.
145 struct hwa_notif_dn
{
146 struct wa_notif_hdr hdr
;
147 u8 bSourceDeviceAddr
; /* from errata 2005/07 */
149 struct wusb_dn_hdr dndata
[];
150 } __attribute__((packed
));
152 /* [WUSB] section 8.3.3 */
154 WA_XFER_TYPE_CTL
= 0x80,
155 WA_XFER_TYPE_BI
= 0x81, /* bulk/interrupt */
156 WA_XFER_TYPE_ISO
= 0x82,
157 WA_XFER_RESULT
= 0x83,
158 WA_XFER_ABORT
= 0x84,
161 /* [WUSB] section 8.3.3 */
163 u8 bLength
; /* 0x18 */
164 u8 bRequestType
; /* 0x80 WA_REQUEST_TYPE_CTL */
165 __le16 wRPipe
; /* RPipe index */
166 __le32 dwTransferID
; /* Host-assigned ID */
167 __le32 dwTransferLength
; /* Length of data to xfer */
169 } __attribute__((packed
));
172 struct wa_xfer_hdr hdr
;
175 struct usb_ctrlrequest baSetupData
;
176 } __attribute__((packed
));
179 struct wa_xfer_hdr hdr
;
182 } __attribute__((packed
));
184 struct wa_xfer_hwaiso
{
185 struct wa_xfer_hdr hdr
;
187 __le16 wPresentationTime
;
188 __le32 dwNumOfPackets
;
189 /* FIXME: u8 pktdata[]? */
190 } __attribute__((packed
));
192 /* [WUSB] section 8.3.3.5 */
193 struct wa_xfer_abort
{
196 __le16 wRPipe
; /* RPipe index */
197 __le32 dwTransferID
; /* Host-assigned ID */
198 } __attribute__((packed
));
201 * WA Transfer Complete notification ([WUSB] section 8.3.3.3)
204 struct wa_notif_xfer
{
205 struct wa_notif_hdr hdr
;
208 } __attribute__((packed
));
210 /** Transfer result basic codes [WUSB] table 8-15 */
212 WA_XFER_STATUS_SUCCESS
,
213 WA_XFER_STATUS_HALTED
,
214 WA_XFER_STATUS_DATA_BUFFER_ERROR
,
215 WA_XFER_STATUS_BABBLE
,
217 WA_XFER_STATUS_NOT_FOUND
,
218 WA_XFER_STATUS_INSUFFICIENT_RESOURCE
,
219 WA_XFER_STATUS_TRANSACTION_ERROR
,
220 WA_XFER_STATUS_ABORTED
,
221 WA_XFER_STATUS_RPIPE_NOT_READY
,
222 WA_XFER_INVALID_FORMAT
,
223 WA_XFER_UNEXPECTED_SEGMENT_NUMBER
,
224 WA_XFER_STATUS_RPIPE_TYPE_MISMATCH
,
227 /** [WUSB] section 8.3.3.4 */
228 struct wa_xfer_result
{
229 struct wa_notif_hdr hdr
;
231 __le32 dwTransferLength
;
234 __le32 dwNumOfPackets
;
235 } __attribute__((packed
));
238 * Wire Adapter Class Descriptor ([WUSB] section 8.5.2.7).
240 * NOTE: u16 fields are read Little Endian from the hardware.
242 * @bNumPorts is the original max number of devices that the host can
243 * connect; we might chop this so the stack can handle
244 * it. In case you need to access it, use wusbhc->ports_max
245 * if it is a Wireless USB WA.
247 struct usb_wa_descriptor
{
251 u8 bNumPorts
; /* don't use!! */
252 u8 bmAttributes
; /* Reserved == 0 */
258 u8 DeviceRemovable
; /* FIXME: in DWA this is up to 16 bytes */
259 } __attribute__((packed
));
262 * HWA Device Information Buffer (WUSB1.0[T8.54])
264 struct hwa_dev_info
{
265 u8 bmDeviceAvailability
[32]; /* FIXME: ignored for now */
268 u8 bmDeviceAttribute
;
269 } __attribute__((packed
));
271 #endif /* #ifndef __LINUX_USB_WUSB_WA_H */