Jump to content

Recommended Posts

Posted

hey mate, thank you for helping me out.

I got sound and intelwifi working but:

Touchpad is not working right, the FN keys beside sound not working, camera not working, battery is a bit off. I followed the OC tutorials but I didn't do any of the ACPI patching.

I have removed the kexts from the attachments cause it ads so much extra data. You can see the kext used in the OC config.. I cleaned it.

Thank you very much. BTW, OC requires separate DSL files, how is that working, in the past I had a single SSDT file but now all these files are split.

 

 

Send me Peters-MacBook-Pro.zip

  • Administrators
Posted

Archive.zip

1 hour ago, pit5bul said:

Thank you very much. BTW, OC requires separate DSL files, how is that working, in the past I had a single SSDT file but now all these files are split.

easy but incomplete solution

-Guides and Tutorials HERE

-Hackintosh Tutorial Database - HERE

-The largest EFI folder collection for Hackintosh HERE

-Support Olarila Vanilla Hackintosh by making a donation HERE

-Professional Consulting for macOS Hackintosh since 2006 HERE

Posted

webcam and microphone still not getting detected... i wonder if its Ben Sur ?

Can i split this DDST.aml file in the standard stuff that OC requires?

  • Administrators
Posted
6 hours ago, pit5bul said:

Can i split this DDST.aml file in the standard stuff that OC requires?

OC don't require nothing. work like clover. support override etc

audio https://www.olarila.com/topic/6074-guide-easy-audio-solution-with-applealc-clover-and-opencore/

usb https://www.olarila.com/topic/14220-hackintosh-usb-port-mapping-guide-2021-2022-mojave-catalina-bigsur-monterey/

-Guides and Tutorials HERE

-Hackintosh Tutorial Database - HERE

-The largest EFI folder collection for Hackintosh HERE

-Support Olarila Vanilla Hackintosh by making a donation HERE

-Professional Consulting for macOS Hackintosh since 2006 HERE

Posted

HI mate, 

I think i found the camera issue, its connecting 2 devices on a single port... 

IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/XHC@14/XHC@14000000/HS09@14400000/HP HD Camera@14400000/HP IR Camera@2

 

IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/XHC@14/XHC@14000000/HS09@14400000/HP HD Camera@14400000/HP HD Camera@0

 

IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/XHC@14/XHC@14000000/HS09@14400000

I mapped the USB ports and set HS09 port as internal but the IR Camera takes over the normal HD camera..

Whats the best way to stop that HP IR camera ?

Thank you for teaching me this, i fixed my audio (unfortunately the mic doesnt work but its probably something not supported... the only layout working for this sound chip (ALC215) is layout 18 and mic isnt working on that.

Now if i could disable the IR camera... it would mean it fixes the webcam as well...

is there a possibility that all 3 devices the cameras and the mic would be plugged into the same USB port HS09 and thats acting like a hub ?

Cheers 

  • Administrators
Posted

in same port? on hackintool u see both inside HS09 port?

-Guides and Tutorials HERE

-Hackintosh Tutorial Database - HERE

-The largest EFI folder collection for Hackintosh HERE

-Support Olarila Vanilla Hackintosh by making a donation HERE

-Professional Consulting for macOS Hackintosh since 2006 HERE

  • Administrators
Posted

is one adr inside hs09 port. i think we cannot disable it

-Guides and Tutorials HERE

-Hackintosh Tutorial Database - HERE

-The largest EFI folder collection for Hackintosh HERE

-Support Olarila Vanilla Hackintosh by making a donation HERE

-Professional Consulting for macOS Hackintosh since 2006 HERE

Posted

Yeah its like HS09 acts like a hub 

HS09@14400000/HP HD Camera@14400000/HP HD Camera@0

HS09@14400000/HP HD Camera@14400000/HP IR Camera@2

So HS09 port 0 is the HD camera and the IR camera is at port 2... assuming mic is port 1... is there any way i can set HS09 to be considered a USB hub and get detected as such ?

Its already set as internal

 

  • Administrators
Posted

u can check ssdts if have these entries

-Guides and Tutorials HERE

-Hackintosh Tutorial Database - HERE

-The largest EFI folder collection for Hackintosh HERE

-Support Olarila Vanilla Hackintosh by making a donation HERE

-Professional Consulting for macOS Hackintosh since 2006 HERE

Posted

i checked the DDST file compiled by you and there isn't any reference to WCAM or IRCM... 

Extracted the SSDT files on windows and found the devices in SSDT6 file... should i just add that AML file and that would work ?

I'm a bit new to ACPI patching but I'm trying to work it out on my own... hard but not giving up

 

    Scope (\_SB.PCI0.XHC.RHUB.HS09)
    {
        Method (_UPC, 0, NotSerialized)  // _UPC: USB Port Capabilities
        {
            Return (GUPC (One, 0xFF))
        }

        Method (_PLD, 0, NotSerialized)  // _PLD: Physical Location of Device
        {
            Return (GPLD (Zero, Zero))
        }

        Device (WCAM)
        {
            Name (_STA, 0x0F)  // _STA: Status
            Name (_ADR, 0x09)  // _ADR: Address
            Method (_UPC, 0, Serialized)  // _UPC: USB Port Capabilities
            {
                Name (UPCP, Package (0x04)
                {
                    Zero, 
                    0xFF, 
                    Zero, 
                    Zero
                })
                Return (UPCP) /* \_SB_.PCI0.XHC_.RHUB.HS09.WCAM._UPC.UPCP */
            }

            Method (_PLD, 0, Serialized)  // _PLD: Physical Location of Device
            {
                Name (PLDP, Package (0x01)
                {
                    Buffer (0x14)
                    {
                        /* 0000 */  0x82, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,  // ........
                        /* 0008 */  0x24, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,  // $.......
                        /* 0010 */  0xC8, 0x00, 0xA0, 0x00                           // ....
                    }
                })
                Return (PLDP) /* \_SB_.PCI0.XHC_.RHUB.HS09.WCAM._PLD.PLDP */
            }
        }

        Device (IRCM)
        {
            Name (_STA, 0x0F)  // _STA: Status
            Name (_ADR, 0x0B)  // _ADR: Address
            Method (_UPC, 0, Serialized)  // _UPC: USB Port Capabilities
            {
                Name (UPCP, Package (0x04)
                {
                    Zero, 
                    0xFF, 
                    Zero, 
                    Zero
                })
                Return (UPCP) /* \_SB_.PCI0.XHC_.RHUB.HS09.IRCM._UPC.UPCP */
            }

            Method (_PLD, 0, Serialized)  // _PLD: Physical Location of Device
            {
                Name (PLDP, Package (0x01)
                {
                    Buffer (0x14)
                    {
                        /* 0000 */  0x82, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,  // ........
                        /* 0008 */  0x24, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,  // $.......
                        /* 0010 */  0xC8, 0x00, 0xA0, 0x00                           // ....
                    }
                })
                Return (PLDP) /* \_SB_.PCI0.XHC_.RHUB.HS09.IRCM._PLD.PLDP */
            }
        }
    }

ssdt6.zip

  • Administrators
Posted

to enable u need change here

Name (UPCP, Package (0x04)
                {
                    Zero, 
                    0xFF, 
                    Zero, 
                    Zero
                })

to

Name (UPCP, Package (0x04)
                {
                    0xFF, 
                    0xFF, 
                    Zero, 
                    Zero
                })

opencore u need delete oem ssdt and add new with ur edits

-Guides and Tutorials HERE

-Hackintosh Tutorial Database - HERE

-The largest EFI folder collection for Hackintosh HERE

-Support Olarila Vanilla Hackintosh by making a donation HERE

-Professional Consulting for macOS Hackintosh since 2006 HERE

  • Administrators
Posted

yes

now u need drop oem ssdt. u can use Length for it

example

Length  0x0000089F (2207)

and load ur edited table

-Guides and Tutorials HERE

-Hackintosh Tutorial Database - HERE

-The largest EFI folder collection for Hackintosh HERE

-Support Olarila Vanilla Hackintosh by making a donation HERE

-Professional Consulting for macOS Hackintosh since 2006 HERE

Posted

you are talking about just my SSDT.aml flie, cause i got 16 of them besides the patched SSDT6.aml, im a bit lost, my understanding is just add the SSDT files you required, the ones that contain the hardware that is not working.

Mind you, with the original DDST file you provided, i can see the camera in IOREG but it wont activate, as if its not provided power. I already did the USB patching, i got the UVCAssistant attached to the camera... but it wont power it.

-Archive.zip

  • Administrators
Posted

dsdt + ssdt 6 edited

-Guides and Tutorials HERE

-Hackintosh Tutorial Database - HERE

-The largest EFI folder collection for Hackintosh HERE

-Support Olarila Vanilla Hackintosh by making a donation HERE

-Professional Consulting for macOS Hackintosh since 2006 HERE

Posted

But the file was edited, i have attached it for you to see, i dont get why i need to change lenght ? That SSDT6.AML edited file i attached (its just the edited as you told me but its got a diffrent lenght)

I have attached it again, is there something wtong with it ?

ssdt6.zip

  • Administrators
Posted

u dont need change lenght. u need drop oem ssdt 06 and inject new ssdt 06 with ur edits

-Guides and Tutorials HERE

-Hackintosh Tutorial Database - HERE

-The largest EFI folder collection for Hackintosh HERE

-Support Olarila Vanilla Hackintosh by making a donation HERE

-Professional Consulting for macOS Hackintosh since 2006 HERE

Posted

Oh now i get it... Config.plist ACPI/Delete ... the only think is... i dunno the OemTableId and signature... where can i find that info ?

  • Administrators
Posted

post ur efi folder here with one sendme

-Guides and Tutorials HERE

-Hackintosh Tutorial Database - HERE

-The largest EFI folder collection for Hackintosh HERE

-Support Olarila Vanilla Hackintosh by making a donation HERE

-Professional Consulting for macOS Hackintosh since 2006 HERE

Posted

I reverted to the working config, I can detect the webcam here but its just not turning on... as if the power isnt given to the device. I know this because in windows the led starts. Im assuming that there is a connector that transmits the webcam and microphone to the motherboard (both devices are in the screen part of the laptop) and MacOS cannot power that connection ?

Attached the Runme zip, removed the kexts to be under 10 megs.

i have attached the patched ssdt6.aml file as well, maybe you see something wrong with it ?Send me Petruts-MacBook-Pro.zip

ssdt6.zip

  • Administrators
Posted
1 hour ago, pit5bul said:

I reverted to the working config,

Check if work

OC.zip

-Guides and Tutorials HERE

-Hackintosh Tutorial Database - HERE

-The largest EFI folder collection for Hackintosh HERE

-Support Olarila Vanilla Hackintosh by making a donation HERE

-Professional Consulting for macOS Hackintosh since 2006 HERE

Posted

It boots perfectly... unfortunately... webcam wont activate... im thinking ill just give up... obviously its a dead thing.

Someone that has the same laptop but different CPU... has it working, i wonder whats the difference... same Vendor ID, Same Device, but the way he is setup is totally different. Check it out, i have attached his files. I tried to use his EFI but i get instant panic, and its a dirty setup, but it works for him.

HP Elitebook 830 G6.zip

  • Administrators
Posted

save one ioreg with my last folder

this folder above dont have nothing about it

-Guides and Tutorials HERE

-Hackintosh Tutorial Database - HERE

-The largest EFI folder collection for Hackintosh HERE

-Support Olarila Vanilla Hackintosh by making a donation HERE

-Professional Consulting for macOS Hackintosh since 2006 HERE



×
×
  • Create New...