Contribute
Register

Weird USB Header issues

Status
Not open for further replies.
I think I have it all figured out. Let me know if this looks good.

Ioreg is still the same. Where are your SSP Ports? HS Ports are only USB 2.0 not USB 3.0.
 
Yeah I thought that was strange too. None of the usb 3.0 ports show up as being used when I stick a usb 3.0 flash drive in them. Should be HS03 and 04 for front panel usb 3.0 header. HS06,07,08,09 are mobo 3.0 ports. Any idea why this would be? Was there a way of assigning them specifically 3.0? I used the 255 method of my pci bluetooth card and the rest were (3) 3.0 except for my two (2) usb 2.0 slots. So the question being asked is why isn't my usb 3.0 slots showing up as SS slots?
 
Yeah I thought that was strange too. None of the usb 3.0 ports show up as being used when I stick a usb 3.0 flash drive in them. Should be HS03 and 04 for front panel usb 3.0 header. HS06,07,08,09 are mobo 3.0 ports. Any idea why this would be? Was there a way of assigning them specifically 3.0? I used the 255 method of my pci bluetooth card and the rest were (3) 3.0 except for my two (2) usb 2.0 slots. So the question being asked is why isn't my usb 3.0 slots showing up as SS slots?

Attach Clover folder from EFI removing Themes ZIP attach.
 
Let me know what you think, thanks!

SSDT-UIAC is in .dsl which won't work needs to be compiled and saved as a .aml. The contents of SSDT-UIAC is not correct neither only has HS Ports why not SSP ports? Remove SSDT-UIAC reboot re-attach ioreg. Where did you get the patches from in Config?
 
SSDT-UIAC has only HS ports because no active SS were shown during usb testing process so they were not included. Which patches are you refering to specifically? I am unsure if some of them are not needed. Afraid to remove because the computer is currently working.
 
SSDT-UIAC has only HS ports because no active SS were shown during usb testing process so they were not included. Which patches are you refering to specifically? I am unsure if some of them are not needed. Afraid to remove because the computer is currently working.

SSDT-UIAC needs both HS, SSP Ports not just HS Port or USB 3.0 will not work. Here this is what mine looks like.

Screen Shot 2017-03-14 at 00.00.13.png


Code:
Device (UIAC)
    {
        Name (_HID, "UIA00000")  // _HID: Hardware ID
        Name (RMCF, Package (0x02)
        {
            "8086_8cb1",
            Package (0x04)
            {
                "port-count",
                Buffer (0x04)
                {
                     0x15, 0x00, 0x00, 0x00                        
                },

                "ports",
                Package (0x18)
                {
                    "HS04",
                    Package (0x04)
                    {
                        "UsbConnector",
                        0x03,
                        "port",
                        Buffer (0x04)
                        {
                             0x04, 0x00, 0x00, 0x00                        
                        }
                    },

                    "HS05",
                    Package (0x04)
                    {
                        "UsbConnector",
                        0x03,
                        "port",
                        Buffer (0x04)
                        {
                             0x05, 0x00, 0x00, 0x00                        
                        }
                    },

                    "HS06",
                    Package (0x04)
                    {
                        "UsbConnector",
                        0x03,
                        "port",
                        Buffer (0x04)
                        {
                             0x06, 0x00, 0x00, 0x00                        
                        }
                    },

                    "HS07",
                    Package (0x04)
                    {
                        "UsbConnector",
                        0x03,
                        "port",
                        Buffer (0x04)
                        {
                             0x07, 0x00, 0x00, 0x00                        
                        }
                    },

                    "HS08",
                    Package (0x04)
                    {
                        "UsbConnector",
                        0x03,
                        "port",
                        Buffer (0x04)
                        {
                             0x08, 0x00, 0x00, 0x00                        
                        }
                    },

                    "HS09",
                    Package (0x04)
                    {
                        "UsbConnector",
                        0x03,
                        "port",
                        Buffer (0x04)
                        {
                             0x09, 0x00, 0x00, 0x00                        
                        }
                    },

                    "HS10",
                    Package (0x04)
                    {
                        "UsbConnector",
                        0x03,
                        "port",
                        Buffer (0x04)
                        {
                             0x0A, 0x00, 0x00, 0x00                        
                        }
                    },

                    "HS11",
                    Package (0x04)
                    {
                        "UsbConnector",
                        0x03,
                        "port",
                        Buffer (0x04)
                        {
                             0x0B, 0x00, 0x00, 0x00                        
                        }
                    },

                    "HS12",
                    Package (0x04)
                    {
                        "UsbConnector",
                        0x03,
                        "port",
                        Buffer (0x04)
                        {
                             0x0C, 0x00, 0x00, 0x00                        
                        }
                    },

                    "SSP4",
                    Package (0x04)
                    {
                        "UsbConnector",
                        0x03,
                        "port",
                        Buffer (0x04)
                        {
                             0x13, 0x00, 0x00, 0x00                        
                        }
                    },

                    "SSP5",
                    Package (0x04)
                    {
                        "UsbConnector",
                        0x03,
                        "port",
                        Buffer (0x04)
                        {
                             0x14, 0x00, 0x00, 0x00                        
                        }
                    },

                    "SSP6",
                    Package (0x04)
                    {
                        "UsbConnector",
                        0x03,
                        "port",
                        Buffer (0x04)
                        {
                             0x15, 0x00, 0x00, 0x00                        
                        }
                    }
                }
            }
        })
    }
}
 
Can't edit the SSDT-UIAC until I figure out why my SS ports do not read my usb 3.0 flash drive. Nothing shows up in them so it wouldn't make sense to assign any ports to my SSDT because I would be over the 15 port limit.
 

Attachments

  • Snip20170313_4.png
    Snip20170313_4.png
    188.7 KB · Views: 56
Can't edit the SSDT-UIAC until I figure out why my SS ports do not read my usb 3.0 flash drive. Nothing shows up in them so it wouldn't make sense to assign any ports to my SSDT because I would be over the 15 port limit.

You need to remove the ports that are not in use. Note USB 3.0 has 2 entries in the Port Restrictor. USB 2.0 only uses 1 entry.
 
The last picture I posted is with all the ports opened, thats why I don't understand why I'm not getting any 3.0 devices to show up in my SS ports. What am I missing? I believe to port open patch is right but correct me if I'm wrong.
 

Attachments

  • Snip20170313_5.png
    Snip20170313_5.png
    194.5 KB · Views: 65
Status
Not open for further replies.
Back
Top