Contribute
Register

Audio and Video not working(older machine)

Status
Not open for further replies.
Joined
May 1, 2017
Messages
20
Motherboard
Asus P7P55D
CPU
Intel i5 770
Graphics
NVIDIA 760 GTX
Problem: I have Sierra installed on my PC, everything that I can think of seems to be working apart from the graphics drivers and audio drivers.

Specs:
Mobo: P7P55D-E LX Bios 0301
Audio: Integrated something, not sure (how to check would be great)
Graphics: Nvidia GTX 760
CPU: Intel i5 750 (1st gen)
Not sure what else is relevant.

What is not working: Audio (Have Voodoo installed shows 4 HDMI inputs (I have 1 hdmi port))
Graphics, the resolution is stuck at 1024 and the os seems to think i have 5mb of nvidia graphics memory.

Unsure about everything else because I am not sure how to check if everything works as intended.

I have been following these tutorials on how to get it working:
https://www.tonymacx86.com/threads/...-p7p55d-e-lx-i5-760-gtx650.145245/#post897604
https://www.tonymacx86.com/threads/success-asus-p7p55d-e-lx-mavericks-10-9-guide.113955/
This one even has the same combo, however the links he had are dead.
https://www.******.com/r/hackintosh/comments/3fua9k/hackintosh_asus_p7p55de_lx_1010_and_clover/

Else: You can assume im an idiot who forgot to do something simple or didnt know he was supposed to do it. Additonally I used the unibeast method provided on tonymac forums.

Any advice or help on what to do would be great. Ask me anything about the problem, ill do my best to respond with as much info as I can.
 
Graphics, the resolution is stuck at 1024 and the os seems to think i have 5mb of nvidia graphics memory.
The GTX 760 works out of the box with full acceleration with native drivers and NO injection.
 
Problem: I have Sierra installed on my PC, everything that I can think of seems to be working apart from the graphics drivers and audio drivers.

Specs:
Mobo: P7P55D-E LX Bios 0301
Audio: Integrated something, not sure (how to check would be great)
Graphics: Nvidia GTX 760
CPU: Intel i5 750 (1st gen)
Not sure what else is relevant.

What is not working: Audio (Have Voodoo installed shows 4 HDMI inputs (I have 1 hdmi port))
Graphics, the resolution is stuck at 1024 and the os seems to think i have 5mb of nvidia graphics memory.

Unsure about everything else because I am not sure how to check if everything works as intended.

I have been following these tutorials on how to get it working:
https://www.tonymacx86.com/threads/...-p7p55d-e-lx-i5-760-gtx650.145245/#post897604
https://www.tonymacx86.com/threads/success-asus-p7p55d-e-lx-mavericks-10-9-guide.113955/
This one even has the same combo, however the links he had are dead.
https://www.******.com/r/hackintosh/comments/3fua9k/hackintosh_asus_p7p55de_lx_1010_and_clover/

Else: You can assume im an idiot who forgot to do something simple or didnt know he was supposed to do it. Additonally I used the unibeast method provided on tonymac forums.

Any advice or help on what to do would be great. Ask me anything about the problem, ill do my best to respond with as much info as I can.

Dedicated Graphics requires PEGP to GFX0 rename and SSDT injection for HDMI Audio using Apples Stock Drivers. GTX 760 is native requires no injection. Attach ioreg [Guide] How to Make a Copy of IOReg | tonymacx86.com. You will require a SSDT,

Code:
DefinitionBlock ("", "SSDT", 2, "hack", "GFX0_HDAU", 0)
{
    External(_SB_.PCI0.PEG0, DeviceObj)
    External(_SB_.PCI0.PEG0.GFX0, DeviceObj)
    Scope(_SB.PCI0.PEG0)
    {
        Scope(GFX0)
        {
            Method (_DSM, 4)
            {
                If (!Arg2) { Return (Buffer() { 0x03 }) }
                Return (Package()
                {
                    "@0,connector-type", Buffer() { 0x00, 0x08, 0x00, 0x00 },
                    "@1,connector-type", Buffer() { 0x00, 0x08, 0x00, 0x00 },
                    "@2,connector-type", Buffer() { 0x00, 0x08, 0x00, 0x00 },
                    "@3,connector-type", Buffer() { 0x00, 0x08, 0x00, 0x00 },
                    "@4,connector-type", Buffer() { 0x00, 0x08, 0x00, 0x00 },
                    "@5,connector-type", Buffer() { 0x00, 0x08, 0x00, 0x00 },
                    "hda-gfx", Buffer () { "onboard-2" },
                })
            }
        }
        Device(HDAU)
        {
            Name(_ADR, 1)
            Method(_DSM, 4)
            {
                If (!Arg2) { Return (Buffer() { 0x03 }) }
                Return (Package()
                {
                    "hda-gfx",Buffer() { "onboard-2" },
                })
            }
        }
    }
}
//EOF
 
@VoiletDragon I apologize for not being clear, I am not interested in HDMI audio anyways, I would, however, like to get the audio on the motherboard running. Would IOReg assist with that?

@BreBo I thought it would as well, so is there something I might have messed up prior or otherwise that is preventing it from properly.
 
I apologize for not being clear, I am not interested in HDMI audio anyways, I would, however, like to get the audio on the motherboard running.

@BreBo I thought it would as well, so is there something I might have messed up prior or otherwise that is preventing it from properly.

HDMI audio onboard is totally different to GFX0 Audio.
 
The only audio I am interested in using is the integrated audio card on the motherboard which is not HDMI audio.
 
I thought it would as well, so is there something I might have messed up prior or otherwise that is preventing it from properly.
Check your config.plist and make sure Inject Nvidia is set to false.
 
The only audio I am interested in using is the integrated audio card on the motherboard which is not HDMI audio.

VIA® VT1828S requires a linux dump and patching AppleHDA or create a injector kext also will require ACPI HDEF edits and maybe IRQ Patch.
 
Status
Not open for further replies.
Back
Top