InfiniteMac OSx86  


Reply
 
Thread tools Display modes
  #1  
Old 11-15-2009, 03:18 AM
chadp1a chadp1a is offline
Puma
 
Join Date: Nov 2009
Posts: 18
Snow Leopard AppleHDA / HDAEnabler kext help

Hi. Could someone please help me with modifying AppleHDA abd HDAEnabler for Snow Leopard.

I have tried using my 10.5 kexts but have had no luck at all. I edited the 10.6 kexts to match the 10.5 ones using plist edit pro and it still doesn't work.

VoodooHDA works somewhat. It gives me sound when I use a usb headset but when setting to speakers there is no sound coming from the speakers. I have added the VoodooHDA preferences panel and played with the mixers for PCM and still no sound from the internal speakers.

My setup is

Gateway P6860FX

HDAUDIO\FUNC_01&VEN_111D&DEV_76B0&SUBSYS_107B0692& REV_1001
HDAUDIO\FUNC_01&VEN_111D&DEV_76B0&SUBSYS_107B0692

device id listed in OSX about>more info though is 0x107B0690


Hope someone can guide me in the right direction here. I have spent two days trying to get this thing to work.

Thanks in advance.

Gateway P6860FX Laptop
8800M GTS 512mb
Reply With Quote
  #2  
Old 11-17-2009, 03:30 AM
chadp1a chadp1a is offline
Puma
 
Join Date: Nov 2009
Posts: 18
All is good! Finally got sound!!!

Thanks to this wonder guide.
http://www.infinitemac.com/f57/guide...a-to-sl-t3981/

Now wish I could get my wireless 4965AGN working

Gateway P6860FX Laptop
8800M GTS 512mb

Last edited by chadp1a; 11-17-2009 at 03:35 AM.
Reply With Quote
  #3  
Old 11-21-2009, 03:17 AM
be11o be11o is offline
Puma
 
Join Date: Nov 2009
Posts: 15
mate can u possibly upload yr kexts for audio and video im battling with those over 2 weeks already
or maybe mail em to me [email protected]
id be very greatfull thx in advance

managed to get qe/cl working but i still cant get sound... i read that guide u linked did as it says but still not working, ported applehda refuse to work =/

Last edited by be11o; 11-23-2009 at 01:18 AM.
Reply With Quote
  #4  
Old 11-23-2009, 01:22 AM
be11o be11o is offline
Puma
 
Join Date: Nov 2009
Posts: 15
any1 able to help? =(
Reply With Quote
  #5  
Old 11-23-2009, 03:49 PM
ps2pk ps2pk is offline
Cheetah
 
Join Date: Nov 2009
Posts: 9
I've been trying for the past 2 days to get audio working.

It's fruitless. I've tried the whole guide and still no sound. I'm thinking about just buying those usb ones if I can't get it work.

Can you tell me what you did to get it working? Soooo frikin jealous!

edit: 6860fx. same device id in osx

I have audio in 10.5.8 but nothing in 10.6.

Last edited by ps2pk; 11-23-2009 at 03:55 PM.
Reply With Quote
  #6  
Old 11-23-2009, 11:09 PM
be11o be11o is offline
Puma
 
Join Date: Nov 2009
Posts: 15
Quote:
Originally Posted by ps2pk View Post
I've been trying for the past 2 days to get audio working.

It's fruitless. I've tried the whole guide and still no sound. I'm thinking about just buying those usb ones if I can't get it work.

Can you tell me what you did to get it working? Soooo frikin jealous!

edit: 6860fx. same device id in osx

I have audio in 10.5.8 but nothing in 10.6.
same thing altho im doing this for a 2weeks or smth already and ye i got same laptop, tbh doubt he wil reply, if i manage to get it working ill post dsdt and kexts
Reply With Quote
  #7  
Old 11-23-2009, 11:11 PM
be11o be11o is offline
Puma
 
Join Date: Nov 2009
Posts: 15
think so we got problem with dsdt btw, its aint kext issue mine compliling with 3 warnings so...
Reply With Quote
  #8  
Old 11-24-2009, 02:14 PM
chadp1a chadp1a is offline
Puma
 
Join Date: Nov 2009
Posts: 18
@be11o

i sent you a pm two days ago concerning the kext.

here is my dsdt. place this right before Device (MCHC) replacing your current HDEF

Code:
Device (PCI0)
        {
            Device (HDEF)
            {
                Name (_ADR, 0x001B0000)
                Method (_DSM, 4, NotSerialized)
                {
                    Store (Package (0x06)
                        {
                            "codec-id", 
                            Buffer (0x04)
                            { 
                               0xB0, 0x76, 0x1D, 0x11
                            },                             
                            "layout-id", 
                            Buffer (0x04)
                            {
                                0x0C, 0x00, 0x00, 0x00
                            }, 

                            "PinConfigurations", 
                            Buffer (Zero) {}
                        }, Local0)
                       DTGP (Arg0, Arg1, Arg2, Arg3, RefOf (Local0))
                       Return (Local0)
                }
                
            }



            Name (_S3D, 0x02)
            Name (_S4D, 0x02)
            Name (_HID, EisaId ("PNP0A08"))
            Name (_CID, EisaId ("PNP0A03"))
make sure you have the DTGP method below. I added mine right above this method Method (_INI, 0, NotSerialized)

Code:
Method (DTGP, 5, NotSerialized)
    {
        If (LEqual (Arg0, Buffer (0x10)
                {
                    /* 0000 */    0xC6, 0xB7, 0xB5, 0xA0, 0x18, 0x13, 0x1C, 0x44, 
                    /* 0008 */    0xB0, 0xC9, 0xFE, 0x69, 0x5E, 0xAF, 0x94, 0x9B
                }))
        {
            If (LEqual (Arg1, One))
            {
                If (LEqual (Arg2, Zero))
                {
                    Store (Buffer (One)
                        {
                            0x03
                        }, Arg4)
                    Return (One)
                }

                If (LEqual (Arg2, One))
                {
                    Return (One)
                }
            }
        }

        Store (Buffer (One)
            {
                0x00
            }, Arg4)
        Return (Zero)
    }

Gateway P6860FX Laptop
8800M GTS 512mb

Last edited by chadp1a; 11-24-2009 at 04:35 PM.
Reply With Quote
  #9  
Old 11-24-2009, 07:29 PM
be11o be11o is offline
Puma
 
Join Date: Nov 2009
Posts: 15
Quote:
Originally Posted by chadp1a View Post
@be11o

i sent you a pm two days ago concerning the kext.
wierd =/ i got it only today thx alot =)
now i got not warnings but errors even when trying to complile dsdt back any ideas?
Error 4063 - and its like hundred times
Reply With Quote
  #10  
Old 11-24-2009, 07:41 PM
chadp1a chadp1a is offline
Puma
 
Join Date: Nov 2009
Posts: 18
ummm. check your pm.



💡 Deploy cloud instances seamlessly on DigitalOcean. Free credits ($100) for InfMac readers.


Gateway P6860FX Laptop
8800M GTS 512mb
Reply With Quote
Reply