Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-6]: src/sys/dev/usb Pull up following revision(s) (requested by s...



details:   https://anonhg.NetBSD.org/src/rev/dcd46d01da76
branches:  netbsd-6
changeset: 776346:dcd46d01da76
user:      riz <riz%NetBSD.org@localhost>
date:      Sun May 19 21:54:27 2013 +0000

description:
Pull up following revision(s) (requested by skrll in ticket #850):
        sys/dev/usb/usb.h: revision 1.101
        sys/dev/usb/usb.h: revision 1.102
        sys/dev/usb/usb.h: revision 1.103
Add some defines from the USB 2.0 specification and suppliments. Also,
add some accessor macros while I'm here.
Add a UPS_PORT_L1 define
Add a UPS_C_PORT_L1 define

diffstat:

 sys/dev/usb/usb.h |  27 +++++++++++++++++++++++----
 1 files changed, 23 insertions(+), 4 deletions(-)

diffs (105 lines):

diff -r 5f94023629be -r dcd46d01da76 sys/dev/usb/usb.h
--- a/sys/dev/usb/usb.h Sun May 19 21:51:46 2013 +0000
+++ b/sys/dev/usb/usb.h Sun May 19 21:54:27 2013 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: usb.h,v 1.93 2011/08/23 16:16:43 christos Exp $        */
+/*     $NetBSD: usb.h,v 1.93.10.1 2013/05/19 21:54:27 riz Exp $        */
 /*     $FreeBSD: src/sys/dev/usb/usb.h,v 1.14 1999/11/17 22:33:46 n_hibma Exp $        */
 
 /*
@@ -96,6 +96,7 @@
 #define USB_STACK_VERSION 2
 
 #define USB_MAX_DEVICES 128
+#define USB_MIN_DEVICES 2               /* unused + root HUB */
 #define USB_START_ADDR 0
 
 #define USB_CONTROL_ENDPOINT 0
@@ -145,11 +146,16 @@
        uWord           wLength;
 } UPACKED usb_device_request_t;
 
+#define UT_GET_DIR(a) ((a) & 0x80)
 #define UT_WRITE               0x00
 #define UT_READ                        0x80
+
+#define UT_GET_TYPE(a) ((a) & 0x60)
 #define UT_STANDARD            0x00
 #define UT_CLASS               0x20
 #define UT_VENDOR              0x40
+
+#define UT_GET_RECIPIENT(a) ((a) & 0x1f)
 #define UT_DEVICE              0x00
 #define UT_INTERFACE           0x01
 #define UT_ENDPOINT            0x02
@@ -178,7 +184,7 @@
 #define UT_WRITE_VENDOR_OTHER  (UT_WRITE | UT_VENDOR | UT_OTHER)
 #define UT_WRITE_VENDOR_ENDPOINT (UT_WRITE | UT_VENDOR | UT_ENDPOINT)
 
-/* Requests */
+/* Standard Requests Codes from the USB 2.0 spec, table 9-4 */
 #define UR_GET_STATUS          0x00
 #define UR_CLEAR_FEATURE       0x01
 #define UR_SET_FEATURE         0x03
@@ -208,10 +214,16 @@
 #define UR_SET_INTERFACE       0x0b
 #define UR_SYNCH_FRAME         0x0c
 
-/* Feature numbers */
+/*
+ * Feature selectors. USB 2.0 spec, table 9-6 and OTG and EH suppliment,
+ * table 6-2
+ */
 #define UF_ENDPOINT_HALT       0
 #define UF_DEVICE_REMOTE_WAKEUP        1
 #define UF_TEST_MODE           2
+#define UF_DEVICE_B_HNP_ENABLE 3
+#define UF_DEVICE_A_HNP_SUPPORT        4
+#define UF_DEVICE_A_ALT_HNP_SUPPORT 5
 
 #define USB_MAX_IPACKET                8 /* maximum size of the initial packet */
 
@@ -330,7 +342,10 @@
 #define UR_GET_TT_STATE                0x0a
 #define UR_STOP_TT             0x0b
 
-/* Hub features */
+/*
+ * Hub features from USB 2.0 spec, table 11-17 and updated by the
+ * LPM ECN table 4-7.
+ */
 #define UHF_C_HUB_LOCAL_POWER  0
 #define UHF_C_HUB_OVER_CURRENT 1
 #define UHF_PORT_CONNECTION    0
@@ -340,6 +355,7 @@
 #define UHF_PORT_RESET         4
 #define UHF_PORT_POWER         8
 #define UHF_PORT_LOW_SPEED     9
+#define UHF_PORT_L1            10
 #define UHF_C_PORT_CONNECTION  16
 #define UHF_C_PORT_ENABLE      17
 #define UHF_C_PORT_SUSPEND     18
@@ -347,6 +363,7 @@
 #define UHF_C_PORT_RESET       20
 #define UHF_PORT_TEST          21
 #define UHF_PORT_INDICATOR     22
+#define UHF_C_PORT_L1          23
 
 typedef struct {
        uByte           bDescLength;
@@ -434,6 +451,7 @@
 #define UPS_SUSPEND                    0x0004
 #define UPS_OVERCURRENT_INDICATOR      0x0008
 #define UPS_RESET                      0x0010
+#define UPS_PORT_L1                    0x0020
 #define UPS_PORT_POWER                 0x0100
 #define UPS_FULL_SPEED                 0x0000  /* for completeness */
 #define UPS_LOW_SPEED                  0x0200
@@ -446,6 +464,7 @@
 #define UPS_C_SUSPEND                  0x0004
 #define UPS_C_OVERCURRENT_INDICATOR    0x0008
 #define UPS_C_PORT_RESET               0x0010
+#define UPS_C_PORT_L1                  0x0020
 } UPACKED usb_port_status_t;
 
 /* Device class codes */



Home | Main Index | Thread Index | Old Index