public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Tom Rix <Tom.Rix@windriver.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 2/8] USB add macros for debugging usb device setup.
Date: Fri,  4 Sep 2009 15:12:44 -0500	[thread overview]
Message-ID: <1252095170-5492-2-git-send-email-Tom.Rix@windriver.com> (raw)
In-Reply-To: <1252095170-5492-1-git-send-email-Tom.Rix@windriver.com>

When developing usb device features, it is useful to print out
common usb structures.

Signed-off-by: Tom Rix <Tom.Rix@windriver.com>
---
 include/usbdescriptors.h |   31 +++++++++++++
 include/usbdevice.h      |  105 ++++++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 136 insertions(+), 0 deletions(-)

diff --git a/include/usbdescriptors.h b/include/usbdescriptors.h
index ea05672..f4e33b6 100644
--- a/include/usbdescriptors.h
+++ b/include/usbdescriptors.h
@@ -510,4 +510,35 @@ struct usb_class_descriptor {
 
 } __attribute__ ((packed));
 
+#ifdef DEBUG
+#define PRINT_DEVICE_DESCRIPTOR(d)					\
+do {									\
+	serial_printf("usb device descriptor \n");			\
+	serial_printf("\tbLength %2.2x\n", (d)->bLength);		\
+	serial_printf("\tbDescriptorType %2.2x\n",			\
+		(d)->bDescriptorType);					\
+	serial_printf("\tbcdUSB %4.4x\n", (d)->bcdUSB);			\
+	serial_printf("\tbDeviceClass %2.2x\n", (d)->bDeviceClass);	\
+	serial_printf("\tbDeviceSubClass %2.2x\n",			\
+		(d)->bDeviceSubClass);					\
+	serial_printf("\tbDeviceProtocol %2.2x\n",			\
+		(d)->bDeviceProtocol);					\
+	serial_printf("\tbMaxPacketSize0 %2.2x\n",			\
+		(d)->bMaxPacketSize0);					\
+	serial_printf("\tidVendor %4.4x\n", (d)->idVendor);		\
+	serial_printf("\tidProduct %4.4x\n", (d)->idProduct);		\
+	serial_printf("\tbcdDevice %4.4x\n", (d)->bcdDevice);		\
+	serial_printf("\tiManufacturer %2.2x\n", (d)->iManufacturer);	\
+	serial_printf("\tiProduct %2.2x\n", (d)->iProduct);		\
+	serial_printf("\tiSerialNumber %2.2x\n", (d)->iSerialNumber);	\
+	serial_printf("\tbNumConfigurations %2.2x\n",			\
+		(d)->bNumConfigurations);				\
+} while (0)
+
+#else
+
+/* stubs */
+#define PRINT_DEVICE_DESCRIPTOR(d)
+
+#endif /* DEBUG */
 #endif
diff --git a/include/usbdevice.h b/include/usbdevice.h
index 206dbbc..0b7961f 100644
--- a/include/usbdevice.h
+++ b/include/usbdevice.h
@@ -663,4 +663,109 @@ int usbd_endpoint_halted (struct usb_device_instance *device, int endpoint);
 void usbd_rcv_complete(struct usb_endpoint_instance *endpoint, int len, int urb_bad);
 void usbd_tx_complete (struct usb_endpoint_instance *endpoint);
 
+/* These are macros used in debugging */
+#ifdef DEBUG
+#define PRINT_URB(u)							\
+do {									\
+	serial_printf("urb %p\n", (u));					\
+	serial_printf("\tendpoint %p\n", (u)->endpoint);		\
+	serial_printf("\tdevice %p\n", (u)->device);			\
+	serial_printf("\tbuffer %p\n", (u)->buffer);			\
+	serial_printf("\tbuffer_length %d\n", (u)->buffer_length);	\
+	serial_printf("\tactual_length %d\n", (u)->actual_length);	\
+	serial_printf("\tstatus %d\n", (u)->status);			\
+	serial_printf("\tdata %d\n", (u)->data);			\
+} while (0)								\
+
+#define PRINT_USB_DEVICE_REQUEST(r)					\
+do {									\
+	serial_printf("usb request\n");					\
+	serial_printf("\tbmRequestType 0x%2.2x\n", (r)->bmRequestType);	\
+	if (0 == ((r)->bmRequestType & USB_REQ_DIRECTION_MASK))		\
+		serial_printf("\t\tDirection : To device\n");		\
+	else								\
+		serial_printf("\t\tDirection : To host\n");		\
+	if (USB_TYPE_STANDARD ==					\
+		((r)->bmRequestType & USB_TYPE_STANDARD))		\
+		serial_printf("\t\tType      : Standard\n");		\
+	if (USB_TYPE_CLASS == ((r)->bmRequestType & USB_TYPE_CLASS))	\
+		serial_printf("\t\tType      : Standard\n");		\
+	if (USB_TYPE_VENDOR == ((r)->bmRequestType & USB_TYPE_VENDOR))	\
+		serial_printf("\t\tType      : Standard\n");		\
+	if (USB_TYPE_RESERVED ==					\
+		((r)->bmRequestType & USB_TYPE_RESERVED))		\
+		serial_printf("\t\tType      : Standard\n");		\
+	if (USB_REQ_RECIPIENT_DEVICE ==					\
+		((r)->bmRequestType & USB_REQ_RECIPIENT_MASK))		\
+		serial_printf("\t\tRecipient : Device\n");		\
+	if (USB_REQ_RECIPIENT_INTERFACE ==				\
+		((r)->bmRequestType & USB_REQ_RECIPIENT_MASK))		\
+		serial_printf("\t\tRecipient : Interface\n");		\
+	if (USB_REQ_RECIPIENT_ENDPOINT ==				\
+		((r)->bmRequestType & USB_REQ_RECIPIENT_MASK))		\
+		serial_printf("\t\tRecipient : Endpoint\n");		\
+	if (USB_REQ_RECIPIENT_OTHER ==					\
+		((r)->bmRequestType & USB_REQ_RECIPIENT_MASK))		\
+		serial_printf("\t\tRecipient : Other\n");		\
+	serial_printf("\tbRequest      0x%2.2x\n", (r)->bRequest);	\
+	if ((r)->bRequest == USB_REQ_GET_STATUS)			\
+		serial_printf("\t\tGET_STATUS\n");			\
+	else if ((r)->bRequest == USB_REQ_SET_ADDRESS)			\
+		serial_printf("\t\tSET_ADDRESS\n");			\
+	else if ((r)->bRequest == USB_REQ_SET_FEATURE)			\
+		serial_printf("\t\tSET_FEATURE\n");			\
+	else if ((r)->bRequest == USB_REQ_GET_DESCRIPTOR)		\
+		serial_printf("\t\tGET_DESCRIPTOR\n");			\
+	else if ((r)->bRequest == USB_REQ_SET_CONFIGURATION)		\
+		serial_printf("\t\tSET_CONFIGURATION\n");		\
+	else if ((r)->bRequest == USB_REQ_SET_INTERFACE)		\
+		serial_printf("\t\tUSB_REQ_SET_INTERFACE\n");		\
+	else								\
+		serial_printf("\tUNKNOWN %d\n", (r)->bRequest);		\
+	serial_printf("\twValue        0x%4.4x\n", (r)->wValue);	\
+	if ((r)->bRequest == USB_REQ_GET_DESCRIPTOR) {			\
+		switch ((r)->wValue >> 8) {				\
+		case USB_DESCRIPTOR_TYPE_DEVICE:			\
+			serial_printf("\tDEVICE\n");			\
+			break;						\
+		case USB_DESCRIPTOR_TYPE_CONFIGURATION:			\
+			serial_printf("\tCONFIGURATION\n");		\
+			break;						\
+		case USB_DESCRIPTOR_TYPE_STRING:			\
+			serial_printf("\tSTRING\n");			\
+			break;						\
+		case USB_DESCRIPTOR_TYPE_INTERFACE:			\
+			serial_printf("\tINTERFACE\n");			\
+		break;							\
+		case USB_DESCRIPTOR_TYPE_ENDPOINT:			\
+			serial_printf("\tENDPOINT\n");			\
+			break;						\
+		case USB_DESCRIPTOR_TYPE_DEVICE_QUALIFIER:		\
+			serial_printf("\tDEVICE_QUALIFIER\n");		\
+			break;						\
+		case USB_DESCRIPTOR_TYPE_OTHER_SPEED_CONFIGURATION:	\
+			serial_printf("\tOTHER_SPEED_CONFIGURATION\n");	\
+			break;						\
+		case USB_DESCRIPTOR_TYPE_INTERFACE_POWER:		\
+			serial_printf("\tINTERFACE_POWER\n");		\
+			break;						\
+		case USB_DESCRIPTOR_TYPE_HID:				\
+			serial_printf("\tHID\n");			\
+			break;						\
+		case USB_DESCRIPTOR_TYPE_REPORT:			\
+			serial_printf("\tREPORT\n");			\
+			break;						\
+		default:						\
+			serial_printf("\tUNKNOWN TYPE\n");		\
+			break;						\
+		}							\
+	}								\
+	serial_printf("\twIndex        0x%4.4x\n", (r)->wIndex);	\
+	serial_printf("\twLength       0x%4.4x\n", (r)->wLength);	\
+} while (0)
+#else
+/* stubs */
+#define PRINT_URB(u)
+#define PRINT_USB_DEVICE_REQUEST(r)
+#endif /* DEBUG */
 #endif
-- 
1.6.0.4

  reply	other threads:[~2009-09-04 20:12 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-09-04 20:12 [U-Boot] [PATCH 1/8] USB Consolidate descriptor definitions Tom Rix
2009-09-04 20:12 ` Tom Rix [this message]
2009-09-04 20:12   ` [U-Boot] [PATCH 3/8] TWL4030 Add usb PHY support Tom Rix
2009-09-04 20:12     ` [U-Boot] [PATCH 4/8] OMAP3 Add usb device support Tom Rix
2009-09-04 20:12       ` [U-Boot] [PATCH 5/8] OMAP3 zoom1 Add usbtty configuration Tom Rix
2009-09-04 20:12         ` [U-Boot] [PATCH 6/8] OMAP3 beagle " Tom Rix
2009-09-04 20:12           ` [U-Boot] [PATCH 7/8] USBTTY make some function declarations easier to use Tom Rix
2009-09-04 20:12             ` [U-Boot] [PATCH 8/8] OMAP3 zoom2 Use usbtty if the debug board is not connected Tom Rix
2009-09-05  0:30               ` Jean-Christophe PLAGNIOL-VILLARD
2009-09-06 13:21                 ` Tom
2009-09-05  0:26           ` [U-Boot] [PATCH 6/8] OMAP3 beagle Add usbtty configuration Jean-Christophe PLAGNIOL-VILLARD
2009-09-05  0:26         ` [U-Boot] [PATCH 5/8] OMAP3 zoom1 " Jean-Christophe PLAGNIOL-VILLARD
2009-09-05  0:25       ` [U-Boot] [PATCH 4/8] OMAP3 Add usb device support Jean-Christophe PLAGNIOL-VILLARD
2009-09-06 13:35         ` Tom
2009-09-06 13:48           ` Jean-Christophe PLAGNIOL-VILLARD
2009-09-05  0:02     ` [U-Boot] [PATCH 3/8] TWL4030 Add usb PHY support Jean-Christophe PLAGNIOL-VILLARD
2009-09-06 13:46       ` Tom
2009-09-06 14:58         ` Jean-Christophe PLAGNIOL-VILLARD
2009-09-05  0:31   ` [U-Boot] [PATCH 2/8] USB add macros for debugging usb device setup Jean-Christophe PLAGNIOL-VILLARD
2009-09-06 13:19     ` Tom
  -- strict thread matches above, loose matches on Subject: below --
2009-09-28 16:34 [U-Boot] V2 of OMAP3 USB device Support y at windriver.com
2009-09-28 16:34 ` [U-Boot] [PATCH 1/8] USB Consolidate descriptor definitions y at windriver.com
2009-09-28 16:34   ` [U-Boot] [PATCH 2/8] USB add macros for debugging usb device setup y at windriver.com
2009-09-28 16:37 [U-Boot] V2 of OMAP3 USB device Support Tom Rix
2009-09-28 16:37 ` [U-Boot] [PATCH 1/8] USB Consolidate descriptor definitions Tom Rix
2009-09-28 16:37   ` [U-Boot] [PATCH 2/8] USB add macros for debugging usb device setup Tom Rix

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1252095170-5492-2-git-send-email-Tom.Rix@windriver.com \
    --to=tom.rix@windriver.com \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox