View Single Post
 
Old 01-14-2011, 09:54 AM
Pere Pere is offline
Cheetah
 
Join Date: Jun 2010
Posts: 11
Have you try this code already on your OHCI devices?
Note this is the UHCI code plus the "clock-id" hack for OHCI devices.

Code:
Method (_DSM, 4, NotSerialized)
                {
                    Store (Package ()
                        {
                            "device-id",
                            Buffer (0x04)
                            {
                                0x34, 0x3A, 0x00, 0x00     //This ID has to be changed for each device 0x34, 0x35, 0x36,etc
                            },
                            "AAPL,clock-id",
                            Buffer (One)
                            {
                                0x01
                            }

                        }, Local0)
                    DTGP (Arg0, Arg1, Arg2, Arg3, RefOf (Local0))
                    Return (Local0)
                }
Post here your DSDT file.

Last edited by Pere; 01-14-2011 at 10:19 AM.
Reply With Quote