Contribute
Register

Internal USB card reader not detected with SSDT-UIAC.aml

Status
Not open for further replies.
Joined
Sep 8, 2011
Messages
904
Motherboard
HP 250 G5 (81EF) Clover UEFI
CPU
i3 5005u
Graphics
HD 5500 (1366x768)
Mobile Phone
  1. Android

Attachments

  • debug_10378.zip
    3.1 MB · Views: 58
  • Screenshot 2019-05-01 at 11.42.46 PM.png
    Screenshot 2019-05-01 at 11.42.46 PM.png
    934.2 KB · Views: 44
SOLVED:
With SSDT-UIAC.aml dropped (disabled), I noticed that the card reader in IOReg was appearing in port HS07. After taking a look at the SSDT, I found out that HS07 was not there under Device (UIAC), and HS06 was completely unused. So I changed:
Code:
 "HS06", 
                    Package (0x04)
                    {
                        "UsbConnector", 
                        Zero, 
                        "port", 
                        Buffer (0x04)
                        {
                             0x06, 0x00, 0x00, 0x00                         
                        }
                    },
to:
Code:
 "HS07", 
                    Package (0x04)
                    {
                        "UsbConnector", 
                        Zero, 
                        "port", 
                        Buffer (0x04)
                        {
                             0x07, 0x00, 0x00, 0x00                         
                        }
                    },
And voila! :)
 

Attachments

  • Screenshot 2019-05-02 at 2.42.18 AM.png
    Screenshot 2019-05-02 at 2.42.18 AM.png
    1 MB · Views: 47
Why are you using UsbConnector=0 ??? This may cause problems in the long run.
Suggestion: Change it to 255.
 
Why are you using UsbConnector=0 ??? This may cause problems in the long run.
Suggestion: Change it to 255.
Because the card reader turns on and attaches to the USB bus only when a card is inserted. UsbConnector=225 is for devices that are always connected (webcam and bluetooth). Should I still change to 255 it anyway?
 
UsbConnector=225 is for devices that are always connected
Where did you hear about that?:eek:
UsbConnector=0 is for regular USB2 Type A ports. Are you treating the card reader as if it was an external one...?
I'm not familiar with USB card readers so maybe you're right.
 
Post #40 of this thread:
 
Post #40 of this thread:
You're right then... Sorry, my ignorance.
 
Status
Not open for further replies.
Back
Top