1 // SPDX-License-Identifier: GPL-2.0
3 * Common USB debugging functions
5 * Copyright (C) 2010-2011 Texas Instruments Incorporated - https://www.ti.com
11 #include <linux/usb/ch9.h>
13 static void usb_decode_get_status(__u8 bRequestType, __u16 wIndex,
14 __u16 wLength, char *str, size_t size)
16 switch (bRequestType & USB_RECIP_MASK) {
17 case USB_RECIP_DEVICE:
18 snprintf(str, size, "Get Device Status(Length = %d)", wLength);
20 case USB_RECIP_INTERFACE:
22 "Get Interface Status(Intf = %d, Length = %d)",
25 case USB_RECIP_ENDPOINT:
26 snprintf(str, size, "Get Endpoint Status(ep%d%s)",
28 wIndex & USB_DIR_IN ? "in" : "out");
33 static const char *usb_decode_device_feature(u16 wValue)
36 case USB_DEVICE_SELF_POWERED:
37 return "Self Powered";
38 case USB_DEVICE_REMOTE_WAKEUP:
39 return "Remote Wakeup";
40 case USB_DEVICE_TEST_MODE:
42 case USB_DEVICE_U1_ENABLE:
44 case USB_DEVICE_U2_ENABLE:
46 case USB_DEVICE_LTM_ENABLE:
53 static const char *usb_decode_test_mode(u16 wIndex)
60 case USB_TEST_SE0_NAK:
61 return ": TEST_SE0_NAK";
63 return ": TEST_PACKET";
64 case USB_TEST_FORCE_ENABLE:
65 return ": TEST_FORCE_EN";
71 static void usb_decode_set_clear_feature(__u8 bRequestType,
72 __u8 bRequest, __u16 wValue,
73 __u16 wIndex, char *str, size_t size)
75 switch (bRequestType & USB_RECIP_MASK) {
76 case USB_RECIP_DEVICE:
77 snprintf(str, size, "%s Device Feature(%s%s)",
78 bRequest == USB_REQ_CLEAR_FEATURE ? "Clear" : "Set",
79 usb_decode_device_feature(wValue),
80 wValue == USB_DEVICE_TEST_MODE ?
81 usb_decode_test_mode(wIndex) : "");
83 case USB_RECIP_INTERFACE:
84 snprintf(str, size, "%s Interface Feature(%s)",
85 bRequest == USB_REQ_CLEAR_FEATURE ? "Clear" : "Set",
86 wValue == USB_INTRF_FUNC_SUSPEND ?
87 "Function Suspend" : "UNKNOWN");
89 case USB_RECIP_ENDPOINT:
90 snprintf(str, size, "%s Endpoint Feature(%s ep%d%s)",
91 bRequest == USB_REQ_CLEAR_FEATURE ? "Clear" : "Set",
92 wValue == USB_ENDPOINT_HALT ? "Halt" : "UNKNOWN",
94 wIndex & USB_DIR_IN ? "in" : "out");
99 static void usb_decode_set_address(__u16 wValue, char *str, size_t size)
101 snprintf(str, size, "Set Address(Addr = %02x)", wValue);
104 static void usb_decode_get_set_descriptor(__u8 bRequestType, __u8 bRequest,
105 __u16 wValue, __u16 wIndex,
106 __u16 wLength, char *str, size_t size)
110 switch (wValue >> 8) {
120 case USB_DT_INTERFACE:
123 case USB_DT_ENDPOINT:
126 case USB_DT_DEVICE_QUALIFIER:
127 s = "Device Qualifier";
129 case USB_DT_OTHER_SPEED_CONFIG:
130 s = "Other Speed Config";
132 case USB_DT_INTERFACE_POWER:
133 s = "Interface Power";
141 case USB_DT_INTERFACE_ASSOCIATION:
142 s = "Interface Association";
147 case USB_DT_DEVICE_CAPABILITY:
148 s = "Device Capability";
150 case USB_DT_PIPE_USAGE:
153 case USB_DT_SS_ENDPOINT_COMP:
154 s = "SS Endpoint Companion";
156 case USB_DT_SSP_ISOC_ENDPOINT_COMP:
157 s = "SSP Isochronous Endpoint Companion";
164 snprintf(str, size, "%s %s Descriptor(Index = %d, Length = %d)",
165 bRequest == USB_REQ_GET_DESCRIPTOR ? "Get" : "Set",
166 s, wValue & 0xff, wLength);
169 static void usb_decode_get_configuration(__u16 wLength, char *str, size_t size)
171 snprintf(str, size, "Get Configuration(Length = %d)", wLength);
174 static void usb_decode_set_configuration(__u8 wValue, char *str, size_t size)
176 snprintf(str, size, "Set Configuration(Config = %d)", wValue);
179 static void usb_decode_get_intf(__u16 wIndex, __u16 wLength, char *str,
182 snprintf(str, size, "Get Interface(Intf = %d, Length = %d)",
186 static void usb_decode_set_intf(__u8 wValue, __u16 wIndex, char *str,
189 snprintf(str, size, "Set Interface(Intf = %d, Alt.Setting = %d)",
193 static void usb_decode_synch_frame(__u16 wIndex, __u16 wLength,
194 char *str, size_t size)
196 snprintf(str, size, "Synch Frame(Endpoint = %d, Length = %d)",
200 static void usb_decode_set_sel(__u16 wLength, char *str, size_t size)
202 snprintf(str, size, "Set SEL(Length = %d)", wLength);
205 static void usb_decode_set_isoch_delay(__u8 wValue, char *str, size_t size)
207 snprintf(str, size, "Set Isochronous Delay(Delay = %d ns)", wValue);
211 * usb_decode_ctrl - returns a string representation of ctrl request
213 const char *usb_decode_ctrl(char *str, size_t size, __u8 bRequestType,
214 __u8 bRequest, __u16 wValue, __u16 wIndex,
218 case USB_REQ_GET_STATUS:
219 usb_decode_get_status(bRequestType, wIndex, wLength, str, size);
221 case USB_REQ_CLEAR_FEATURE:
222 case USB_REQ_SET_FEATURE:
223 usb_decode_set_clear_feature(bRequestType, bRequest, wValue,
226 case USB_REQ_SET_ADDRESS:
227 usb_decode_set_address(wValue, str, size);
229 case USB_REQ_GET_DESCRIPTOR:
230 case USB_REQ_SET_DESCRIPTOR:
231 usb_decode_get_set_descriptor(bRequestType, bRequest, wValue,
232 wIndex, wLength, str, size);
234 case USB_REQ_GET_CONFIGURATION:
235 usb_decode_get_configuration(wLength, str, size);
237 case USB_REQ_SET_CONFIGURATION:
238 usb_decode_set_configuration(wValue, str, size);
240 case USB_REQ_GET_INTERFACE:
241 usb_decode_get_intf(wIndex, wLength, str, size);
243 case USB_REQ_SET_INTERFACE:
244 usb_decode_set_intf(wValue, wIndex, str, size);
246 case USB_REQ_SYNCH_FRAME:
247 usb_decode_synch_frame(wIndex, wLength, str, size);
249 case USB_REQ_SET_SEL:
250 usb_decode_set_sel(wLength, str, size);
252 case USB_REQ_SET_ISOCH_DELAY:
253 usb_decode_set_isoch_delay(wValue, str, size);
256 snprintf(str, size, "%02x %02x %02x %02x %02x %02x %02x %02x",
257 bRequestType, bRequest,
258 (u8)(cpu_to_le16(wValue) & 0xff),
259 (u8)(cpu_to_le16(wValue) >> 8),
260 (u8)(cpu_to_le16(wIndex) & 0xff),
261 (u8)(cpu_to_le16(wIndex) >> 8),
262 (u8)(cpu_to_le16(wLength) & 0xff),
263 (u8)(cpu_to_le16(wLength) >> 8));
268 EXPORT_SYMBOL_GPL(usb_decode_ctrl);