Modules/USB - Cleanup mostly
authorJohn Hodge <[email protected]>
Wed, 30 Nov 2011 15:54:00 +0000 (23:54 +0800)
committerJohn Hodge <[email protected]>
Wed, 30 Nov 2011 15:54:00 +0000 (23:54 +0800)
Modules/USB/Core/hub.c
Modules/USB/Core/usb_lowlevel.c
Modules/USB/Core/usb_poll.c

index 04a9cc5..849e8a3 100644 (file)
@@ -163,4 +163,17 @@ void Hub_int_HandleChange(tUSBInterface *Dev, int Port)
                
                USB_Request(Dev, 0, 0x23, CLEAR_FEATURE, C_PORT_CONNECTION, Port, 0, NULL);
        }
+       
+       // Reset change
+       if( status[1] & 0x0010 )
+       {
+               if( status[0] & 0x0010 ) {
+                       // Reset complete
+               }
+               else {
+                       // Useful?
+               }
+               // ACK
+               USB_Request(Dev, 0, 0x23, CLEAR_FEATURE, C_PORT_RESET, Port, 0, NULL);
+       }
 }
index 99423a7..65365d3 100644 (file)
@@ -132,6 +132,8 @@ char *USB_int_GetDeviceString(tUSBDevice *Dev, int Endpoint, int Index)
 //     }
        src_len = (str.Length - 2) / sizeof(str.Data[0]);
 
+       LOG("&str = %p, src_len = %i", &str, src_len);
+
        new_len = _UTF16to8(str.Data, src_len, NULL);   
        ret = malloc( new_len + 1 );
        _UTF16to8(str.Data, src_len, ret);
index 11afc13..ec03036 100644 (file)
@@ -13,6 +13,9 @@
 #define POLL_MAX       256     // Max period that can be nominated
 #define POLL_SLOTS     ((int)(POLL_MAX/POLL_ATOM))
 
+// === IMPORTS ===
+extern tUSBHost        *gUSB_Hosts;
+
 // === PROTOTYPES ===
 void   USB_StartPollingEndpoint(tUSBInterface *Iface, int Endpoint);
 
@@ -43,7 +46,6 @@ void USB_StartPollingEndpoint(tUSBInterface *Iface, int Endpoint)
        {
                 int    idx = giUSB_PollPosition + 1;
                if(idx >= POLL_SLOTS)   idx -= POLL_SLOTS;
-               LOG("idx = %i", idx);
                endpt->Next = gUSB_PollQueues[idx];
                gUSB_PollQueues[idx] = endpt;
        }
@@ -59,6 +61,15 @@ int USB_PollThread(void *unused)
        {
                tUSBEndpoint    *ep, *prev;
 
+               if(giUSB_PollPosition == 0)
+               {
+                       // Check hosts
+                       for( tUSBHost *host = gUSB_Hosts; host; host = host->Next )
+                       {
+                               host->HostDef->CheckPorts(host->Ptr);
+                       }
+               }
+
                // A little evil for neater code
                prev = (void*)( (tVAddr)&gUSB_PollQueues[giUSB_PollPosition] - offsetof(tUSBEndpoint, Next) );
 
@@ -67,7 +78,7 @@ int USB_PollThread(void *unused)
                for( ep = gUSB_PollQueues[giUSB_PollPosition]; ep; prev = ep, ep = ep->Next )
                {
                         int    period_in_atoms = ep->PollingAtoms;
-                       LOG("%i: ep = %p", giUSB_PollPosition, ep);
+//                     LOG("%i: ep = %p", giUSB_PollPosition, ep);
 
                        // Check for invalid entries
                        if(period_in_atoms < 0 || period_in_atoms > POLL_ATOM)

UCC git Repository :: git.ucc.asn.au