1 /* SPDX-License-Identifier: GPL-2.0 */
3 * USB IrDA Bridge Device Definition
6 #ifndef __LINUX_USB_IRDA_H
7 #define __LINUX_USB_IRDA_H
9 /* This device should use Application-specific class */
11 #define USB_SUBCLASS_IRDA 0x02
13 /*-------------------------------------------------------------------------*/
15 /* Class-Specific requests (bRequest field) */
17 #define USB_REQ_CS_IRDA_RECEIVING 1
18 #define USB_REQ_CS_IRDA_CHECK_MEDIA_BUSY 3
19 #define USB_REQ_CS_IRDA_RATE_SNIFF 4
20 #define USB_REQ_CS_IRDA_UNICAST_LIST 5
21 #define USB_REQ_CS_IRDA_GET_CLASS_DESC 6
23 /*-------------------------------------------------------------------------*/
25 /* Class-Specific descriptor */
27 #define USB_DT_CS_IRDA 0x21
29 /*-------------------------------------------------------------------------*/
33 #define USB_IRDA_DS_2048 (1 << 5)
34 #define USB_IRDA_DS_1024 (1 << 4)
35 #define USB_IRDA_DS_512 (1 << 3)
36 #define USB_IRDA_DS_256 (1 << 2)
37 #define USB_IRDA_DS_128 (1 << 1)
38 #define USB_IRDA_DS_64 (1 << 0)
42 #define USB_IRDA_WS_7 (1 << 6)
43 #define USB_IRDA_WS_6 (1 << 5)
44 #define USB_IRDA_WS_5 (1 << 4)
45 #define USB_IRDA_WS_4 (1 << 3)
46 #define USB_IRDA_WS_3 (1 << 2)
47 #define USB_IRDA_WS_2 (1 << 1)
48 #define USB_IRDA_WS_1 (1 << 0)
50 /* Min turnaround times in usecs */
52 #define USB_IRDA_MTT_0 (1 << 7)
53 #define USB_IRDA_MTT_10 (1 << 6)
54 #define USB_IRDA_MTT_50 (1 << 5)
55 #define USB_IRDA_MTT_100 (1 << 4)
56 #define USB_IRDA_MTT_500 (1 << 3)
57 #define USB_IRDA_MTT_1000 (1 << 2)
58 #define USB_IRDA_MTT_5000 (1 << 1)
59 #define USB_IRDA_MTT_10000 (1 << 0)
63 #define USB_IRDA_BR_4000000 (1 << 8)
64 #define USB_IRDA_BR_1152000 (1 << 7)
65 #define USB_IRDA_BR_576000 (1 << 6)
66 #define USB_IRDA_BR_115200 (1 << 5)
67 #define USB_IRDA_BR_57600 (1 << 4)
68 #define USB_IRDA_BR_38400 (1 << 3)
69 #define USB_IRDA_BR_19200 (1 << 2)
70 #define USB_IRDA_BR_9600 (1 << 1)
71 #define USB_IRDA_BR_2400 (1 << 0)
75 #define USB_IRDA_AB_0 (1 << 7)
76 #define USB_IRDA_AB_1 (1 << 6)
77 #define USB_IRDA_AB_2 (1 << 5)
78 #define USB_IRDA_AB_3 (1 << 4)
79 #define USB_IRDA_AB_6 (1 << 3)
80 #define USB_IRDA_AB_12 (1 << 2)
81 #define USB_IRDA_AB_24 (1 << 1)
82 #define USB_IRDA_AB_48 (1 << 0)
86 #define USB_IRDA_RATE_SNIFF 1
88 /*-------------------------------------------------------------------------*/
90 struct usb_irda_cs_descriptor
{
94 __le16 bcdSpecRevision
;
97 __u8 bmMinTurnaroundTime
;
99 __u8 bmAdditionalBOFs
;
101 __u8 bMaxUnicastList
;
102 } __attribute__ ((packed
));
104 /*-------------------------------------------------------------------------*/
108 #define USB_IRDA_STATUS_MEDIA_BUSY (1 << 7)
110 /* The following is a 4-bit value used for both
111 * inbound and outbound headers:
125 #define USB_IRDA_STATUS_LINK_SPEED 0x0f
127 /* The following is a 4-bit value used only for
130 * 0 - No change (BOF ignored)
141 #define USB_IRDA_EXTRA_BOFS 0xf0
143 struct usb_irda_inbound_header
{
147 struct usb_irda_outbound_header
{
151 #endif /* __LINUX_USB_IRDA_H */