Jump to content

All Activity

This stream auto-updates

  1. Past hour
  2. I just tried your modified WhenverGreen without the -allow3d flag and it allows me to boot without the blackscreen issue on 14.4.1, framebuffer is enabled, if using 8a71, you get 2048MB, commands below -v keepsyms=1 debug=0x100 -wegdbg igfxfw=2 The Blackscreen after Sleep issue is still there, i have my correct efis configs on usb's, so i use the internal ssd efi for testing, it doesnt actually enter sleep
  3. Today
  4. Ok so I I updated my SMBIOS on Big Sur to 15,2 and was able to get the Sonoma installer after doing so. I remade the installer using chris111’s installer then replaced the EFI made with the installer with my updated EFI. I’m installing right now. Will report back soon. 🤞🏽 edit installed fine. Now I have to get WiFi to work. edit added kext BrcmFirmwareData BcrmPatchRam3 RealtekCardReader RealtekCardReaderFriend wifi not working edit added kext AirportBcrmFixup adding that kext makes the boot time longer Still no luck with WiFi
  5. Hello I have X79 nonatree, e5 2650 v2 8 cores 16 thread Works only with cpus=1 both in Big Sur and Monterey I have removed all unused CPU Try all possible work around here Cpustscsync maybe broken on macOS Monterey · Issue #1676 · acidanthera/bugtracker (github.com) Tried CpuTscSync, VooDooTSC, TScAdjustReset kext , ResetTSCAdjust.efi, with no luck, 1. either KP or reboot loop on Monterey 2. system free before logon screen on Big Sur I think it is still TScSync problem on Big Sur Userspace Issues | OpenCore Install Guide (dortania.github.io) Can you please have a look at my attached EFI with pached DSDT inclusive cpus-1-EFI-X79-2650-v2.zip
  6. I have little experience with internal MIC <string>0x90a70130</string> -- analog Mic <string>0x90a6e140</string> -- digital Mic May be you want to patch also Node 27 to join to input 9?
  7. @jalavoui I imported the scheduler and TGL DMC-related patches from the most recently uploaded NBlue to WEG and applied them. And, the part that calls the solveRequest or routeRequest function for getGPUInfo and _CSR_PATCH uses the SYSLOG syntax to output a log to check whether it was applied properly. // kern_igfx.hpp const unsigned char tgl_dmc_ver2_12_bin[] = { ... }; const long int tgl_dmc_ver2_12_bin_size = sizeof(tgl_dmc_ver2_12_bin); ... class ForceCompleteModeset: public FramebufferModifer { ... public: // MARK: Patch Submodule IMP const uint8_t *_CSR_PATCH_B0plus; const uint8_t *_CSR_PATCH_AX; void init() override; void processKernel(KernelPatcher &patcher, DeviceInfo *info) override; void processFramebufferKext(KernelPatcher &patcher, size_t index, mach_vm_address_t address, size_t size) override; } modForceCompleteModeset; KernelPatcher::RouteRequest request("__ZN16IntelAccelerator10getGPUInfoEv", getGPUInfo, ogetGPUInfo); if (patcher.routeMultiple(index, &request, 1, address, size)) SYSLOG("igfx", "[TGL+] getGPUInfo: Functions have been routed successfully."); else SYSLOG("igfx", "[TGL+] getGPUInfo: Failed to route functions."); // TGL_DMC_ver2_12.bin static const uint8_t f9[] = {0x83, 0xbf, 0x9c, 0x0c, 0x00, 0x00, 0x00, 0x74, 0x1f, 0x4c, 0x8d, 0x35, 0x7c, 0xab, 0x0e, 0x00, 0x41, 0xbf, 0x8b, 0x0c, 0x00, 0x00}; static const uint8_t r9[] = {0x83, 0xbf, 0x9c, 0x0c, 0x00, 0x00, 0x00, 0x74, 0x1f, 0x4c, 0x8d, 0x35, 0x7c, 0xab, 0x0e, 0x00, 0x41, 0xbf, 0x88, 0x18, 0x00, 0x00}; static const uint8_t f9b[] = {0x48, 0xff, 0x05, 0xed, 0x28, 0x0b, 0x00, 0x4c, 0x8d, 0x35, 0x06, 0x79, 0x0e, 0x00, 0x41, 0xbf, 0x91, 0x0c, 0x00, 0x00}; static const uint8_t r9b[] = {0x48, 0xff, 0x05, 0xed, 0x28, 0x0b, 0x00, 0x4c, 0x8d, 0x35, 0x06, 0x79, 0x0e, 0x00, 0x41, 0xbf, 0x88, 0x12, 0x00, 0x00}; KernelPatcher::SolveRequest solveRequest = { "_CSR_PATCH_AX", this->_CSR_PATCH_AX }; KernelPatcher::SolveRequest solveRequest2 = { "_CSR_PATCH_B0plus", this->_CSR_PATCH_B0plus }; if (patcher.solveMultiple(index, &solveRequest, 1, address, size) && patcher.solveMultiple(index, &solveRequest2, 1, address, size)) SYSLOG("igfx", "[TGL+] _CSR_PATCH: Functions have been routed successfully."); else SYSLOG("igfx", "[TGL+] _CSR_PATCH: Failed to route functions."); this->_CSR_PATCH_AX = tgl_dmc_ver2_12_bin; this->_CSR_PATCH_B0plus = tgl_dmc_ver2_12_bin; KernelPatcher::LookupPatch patch { &kextIntelICLLPFb, f2, r2, sizeof(f2), 1 }; patcher.applyLookupPatch(&patch); KernelPatcher::LookupPatch patchb { &kextIntelICLLPFb, f2b, r2b, sizeof(f2b), 1 }; patcher.applyLookupPatch(&patchb); KernelPatcher::LookupPatch patch2 { &kextIntelICLLPFb, f1, r1, sizeof(f1), 1 }; patcher.applyLookupPatch(&patch2); KernelPatcher::LookupPatch patch3 { &kextIntelICLLPFb, f9, r9, sizeof(f9), 1 }; patcher.applyLookupPatch(&patch3); KernelPatcher::LookupPatch patch3b { &kextIntelICLLPFb, f9b, r9b, sizeof(f9b), 1 }; patcher.applyLookupPatch(&patch3b); Test 1 - NootedBlue : Disabled - WhenverGreen : Enabled - IGPU Device Properties : Injected (Platform ID : 0x8A5C0002) - boot-args : -v keepsyms=1 debug=0x100 -wegdbg - macOS Version : macOS Ventura 13.6.5 (22G621) Result : Booting was successful, but graphics acceleration did not work. And, I confirmed that the log below was output in the Dmesg log. WhateverGreen igfx: @ [TGL+] getGPUInfo: Functions have been routed successfully. WhateverGreen igfx: @ [TGL+] _CSR_PATCH: Functions have been routed successfully. Test 2 - NootedBlue : Disabled - WhenverGreen : Enabled - IGPU Device Properties : Injected (Platform ID : 0x8A5C0002) - boot-args : -v keepsyms=1 debug=0x100 -wegdbg -allow3d igfxfw=2 - macOS Version : macOS Ventura 13.6.5 (22G621) Result : While trying to accelerate graphics, the log "Gfs Firmware is HUNG" is displayed infinitely. Can someone please check if I modified WhateverGreen correctly? WhateverGreen.zip WhateverGreen-Sources.zip
  8. @Slice please need little help to last post, thank you!🙏
  9. Yesterday
  10. i added the bytes to sonoma from the kexts you send hope it loads for you WhateverGreen.kext.zipWhateverGreen-master.zip
  11. i really hate this pin config thing your changes gave a valid input device sof linux code seems to make 2 DMIC input sources this is a laptop. better focus on internal mic only ? Last login: Fri May 3 23:30:48 on ttys000 mr@Mac ~ % /Users/mr/getdump ; exit; Found a device of class VoodooHDADevice: IOService:/AppleACPIPlatformExpert/PC00@0/AppleACPIPCI/HDAS@1F,3/VoodooHDADevice Probing codec #0... HDA Codec #0: Realtek (Unknown) HDA Codec ID: 0x10ec0255 Vendor: 0x10ec Device: 0x0255 Revision: 0x00 Stepping: 0x02 PCI Subvendor: 0x15841025 startNode=1 endNode=2 Found audio FG nid=1 startNode=2 endNode=36 total=34 Processing audio FG cad=0 nid=1... Powering up... Parsing audio FG... GPIO: 0x40000003 NumGPIO=3 NumGPO=0 NumGPI=0 GPIWake=0 GPIUnsol=1 nid 18 0x411111f0 as 15 seq 0 Speaker None 1/8 Rear External Black misc 0 NoPresenceDetect nid 20 0x90171120 as 2 seq 0 Speaker Fixed Analog N/A Internal Black misc 0 NoPresenceDetect nid 23 0x40000000 as 0 seq 0 Line-out None Unknown N/A External Unknown misc 0 nid 24 0x411111f0 as 15 seq 0 Speaker None 1/8 Rear External Black misc 0 NoPresenceDetect nid 25 0x411111f0 as 15 seq 0 Speaker None 1/8 Rear External Black misc 0 NoPresenceDetect nid 26 0x411111f0 as 15 seq 0 Speaker None 1/8 Rear External Black misc 0 NoPresenceDetect nid 27 0x411111f0 as 15 seq 0 Speaker None 1/8 Rear External Black misc 0 NoPresenceDetect Patching widget caps nid=29 0x00400400 -> 0x00700400 nid 30 0x411111f0 as 15 seq 0 Speaker None 1/8 Rear External Black misc 0 NoPresenceDetect nid 33 0x02211030 as 3 seq 0 Headphones Jack 1/8 Front External Black misc 0 Parsing vendor patch... Nodes patching. Codec = 0 NumNodes = 2 VHDevice NID= 2 Config=00000000 (audio output ) Cap=00000000 Ctrl=00000000 -- Conns: VHDevice NID= 3 Config=00000000 (audio output ) Cap=00000000 Ctrl=00000000 -- Conns: VHDevice NID= 4 Config=00000000 (vendor widget ) Cap=00000000 Ctrl=00000000 -- Conns: VHDevice NID= 5 Config=00000000 (vendor widget ) Cap=00000000 Ctrl=00000000 -- Conns: VHDevice NID= 6 Config=00000000 (audio output ) Cap=00000000 Ctrl=00000000 -- Conns: VHDevice NID= 7 Config=00000000 (vendor widget ) Cap=00000000 Ctrl=00000000 -- Conns: VHDevice NID= 8 Config=00000000 (audio input ) Cap=00000000 Ctrl=00000000 -- Conns: 0=35 VHDevice NID= 9 Config=00000000 (audio input ) Cap=00000000 Ctrl=00000000 -- Conns: 0=34 VHDevice NID=10 Config=00000000 (vendor widget ) Cap=00000000 Ctrl=00000000 -- Conns: VHDevice NID=11 Config=00000000 (audio mixer ) Cap=00000000 Ctrl=00000000 -- Conns: 0=24 1=25 2=26 3=27 4=29 VHDevice NID=12 Config=00000000 (audio mixer ) Cap=00000000 Ctrl=00000000 -- Conns: 0=2 1=11 VHDevice NID=13 Config=00000000 (audio mixer ) Cap=00000000 Ctrl=00000000 -- Conns: 0=3 1=11 VHDevice NID=14 Config=00000000 (vendor widget ) Cap=00000000 Ctrl=00000000 -- Conns: VHDevice NID=15 Config=00000000 (audio mixer ) Cap=00000000 Ctrl=00000000 -- Conns: 0=13 VHDevice NID=16 Config=00000000 (vendor widget ) Cap=00000000 Ctrl=00000000 -- Conns: VHDevice NID=17 Config=00000000 (vendor widget ) Cap=00000000 Ctrl=00000000 -- Conns: VHDevice NID=18 Config=411111f0 (pin: Speaker () Cap=00000020 Ctrl=00000000 -- Conns: VHDevice NID=19 Config=00000000 (vendor widget ) Cap=00000000 Ctrl=00000000 -- Conns: VHDevice NID=20 Config=90171120 (pin: Speaker () Cap=00010014 Ctrl=00000040 -- Conns: 0=12 VHDevice NID=21 Config=00000000 (vendor widget ) Cap=00000000 Ctrl=00000000 -- Conns: VHDevice NID=22 Config=00000000 (vendor widget ) Cap=00000000 Ctrl=00000000 -- Conns: VHDevice NID=23 Config=40000000 (pin: Line-out ) Cap=00000010 Ctrl=00000000 -- Conns: 0=15 VHDevice NID=24 Config=01a19050 (pin: Microphon) Cap=00003724 Ctrl=00000020 -- Conns: VHDevice NID=25 Config=411111f0 (pin: Speaker () Cap=00003724 Ctrl=00000020 -- Conns: VHDevice NID=26 Config=411111f0 (pin: Speaker () Cap=00003724 Ctrl=00000000 -- Conns: VHDevice NID=27 Config=411111f0 (pin: Speaker () Cap=0001373c Ctrl=00000020 -- Conns: 0=12 1=13 VHDevice NID=28 Config=00000000 (vendor widget ) Cap=00000000 Ctrl=00000000 -- Conns: VHDevice NID=29 Config=00000000 (beep widget ) Cap=00000000 Ctrl=00000000 -- Conns: VHDevice NID=30 Config=411111f0 (pin: Speaker () Cap=00000014 Ctrl=00000040 -- Conns: 0=6 VHDevice NID=31 Config=00000000 (vendor widget ) Cap=00000000 Ctrl=00000000 -- Conns: VHDevice NID=32 Config=00000000 (vendor widget ) Cap=00000000 Ctrl=00000000 -- Conns: VHDevice NID=33 Config=0221102f (pin: Headphone) Cap=0001001c Ctrl=00000000 -- Conns: 0=12 1=13 VHDevice NID=34 Config=00000000 (audio mixer ) Cap=00000000 Ctrl=00000000 -- Conns: 0=24 1=25 2=26 3=27 4=29 5=11 VHDevice NID=35 Config=00000000 (audio mixer ) Cap=00000000 Ctrl=00000000 -- Conns: 0=24 1=25 2=26 3=27 4=29 5=11 6=18 Parsing Ctls... Disabling nonaudio... Disabling useless... Disabling control 5 nid 11 cnid 25 due to disabled widget. Disabling control 6 nid 11 cnid 26 due to disabled widget. Disabling control 7 nid 11 cnid 27 due to disabled widget. Disabling control 14 nid 18 cnid -1 due to disabled widget. Disabling control 16 nid 23 cnid -1 due to disabled widget. Disabling control 18 nid 25 cnid -1 due to disabled widget. Disabling control 19 nid 26 cnid -1 due to disabled widget. Disabling control 20 nid 27 cnid -1 due to disabled widget. Disabling control 21 nid 27 cnid -1 due to disabled widget. Disabling control 24 nid 34 cnid 25 due to disabled widget. Disabling control 25 nid 34 cnid 26 due to disabled widget. Disabling control 26 nid 34 cnid 27 due to disabled widget. Disabling control 30 nid 35 cnid 25 due to disabled widget. Disabling control 31 nid 35 cnid 26 due to disabled widget. Disabling control 32 nid 35 cnid 27 due to disabled widget. Disabling control 35 nid 35 cnid 18 due to disabled widget. Disabling nid 15 due to all it's consumers disabled. Disabling control 13 nid 15 cnid 13 due to disabled widget. Patched pins configuration: nid 18 0x411111f0 as 15 seq 0 Speaker None 1/8 Rear External Black misc 0 NoPresenceDetect [DISABLED] nid 20 0x90171120 as 2 seq 0 Speaker Fixed Analog N/A Internal Black misc 0 NoPresenceDetect nid 23 0x40000000 as 0 seq 0 Line-out None Unknown N/A External Unknown misc 0 [DISABLED] nid 24 0x01a19050 as 5 seq 0 Microphone Jack 1/8 Rear External Pink misc 0 nid 25 0x411111f0 as 15 seq 0 Speaker None 1/8 Rear External Black misc 0 NoPresenceDetect [DISABLED] nid 26 0x411111f0 as 15 seq 0 Speaker None 1/8 Rear External Black misc 0 NoPresenceDetect [DISABLED] nid 27 0x411111f0 as 15 seq 0 Speaker None 1/8 Rear External Black misc 0 NoPresenceDetect [DISABLED] nid 30 0x411111f0 as 15 seq 0 Speaker None 1/8 Rear External Black misc 0 NoPresenceDetect [DISABLED] nid 33 0x0221102f as 2 seq 15 Headphones Jack 1/8 Front External Black misc 0 Parsing pin associations... 2 associations found: Association 0 (2) out: Pin nid=20 seq=0 Pin nid=33 seq=15 Redir type=0 jack=15 def=0 Association 1 (5) in: Pin nid=24 seq=0 Redir type=-1 jack=0 def=0 Building AFG tree... Tracing association 0 (2) Tracing pin 20 with min nid 0 nid 2 returned 2 nid 12 returned 2 nid 20 returned 2 Pin 20 traced to DAC 2 Tracing pin 33 with min nid 0 and hpredir 0 nid 2 returned 2 nid 12 returned 2 nid 33 returned 2 Pin 33 traced to DAC 2 and hpredir 0 Association 0 (2) trace succeeded Tracing association 1 (5) Tracing pin 24 to ADC 8 tracing via nid 24 tracing via nid 11 tracing via nid 12 nid 12 busy by association 0 tracing via nid 13 tracing via nid 33 nid 33 busy by association 0 nid 13 returned 0 tracing via nid 34 tracing via nid 9 nid 9 returned 0 nid 34 returned 0 tracing via nid 35 tracing via nid 8 nid 8 returned 1 nid 35 returned 1 nid 11 returned 1 tracing via nid 34 tracing via nid 9 nid 9 returned 0 nid 34 returned 0 tracing via nid 35 tracing via nid 8 nid 8 returned 1 nid 35 returned 1 nid 24 returned 1 Pin 24 traced to ADC 8 Association 1 (5) trace succeeded Tracing input monitor Tracing nid mix 11 to out tracing via nid 11 tracing via nid 12 nid 12 found output association 0 tracing via nid 13 tracing via nid 33 nid 33 found output association 0 nid 13 returned 1 tracing via nid 34 tracing via nid 9 nid 9 returned 0 nid 34 returned 0 tracing via nid 35 nid 35 busy by input association 1 nid 11 returned 1 nid 11 is input monitor Tracing nid mix 35 to out tracing via nid 35 tracing via nid 8 nid 8 busy by input association 1 nid 35 returned 0 Tracing other input monitors Tracing nid complex 24 to out tracing via nid 24 tracing via nid 11 nid 11 busy by input association 1 tracing via nid 34 tracing via nid 9 nid 9 returned 0 nid 34 returned 0 tracing via nid 35 nid 35 busy by input association 1 nid 24 returned 0 Tracing beeper Tracing nid 29 to out tracing via nid 29 tracing via nid 11 nid 11 busy by input association 1 tracing via nid 34 tracing via nid 9 nid 9 returned 0 nid 34 returned 0 tracing via nid 35 nid 35 busy by input association 1 nid 29 returned 0 Disabling unassociated widgets... Disabling nonselected inputs... Disabling useless... Disabling control 1 nid 3 cnid -1 due to disabled widget. Disabling control 3 nid 9 cnid -1 due to disabled widget. Disabling control 11 nid 13 cnid 3 due to disabled widget. Disabling control 23 nid 34 cnid 24 due to disabled widget. Disabling control 27 nid 34 cnid 29 due to disabled widget. Disabling control 28 nid 34 cnid 11 due to disabled widget. Disabling nid 13 due to all it's consumers disabled. Disabling control 12 nid 13 cnid 11 due to disabled widget. Disabling crossassociated connections... Disabling connection input mixer nid 35 conn 5 to monitor 11. Disabling useless... Disabling control 34 nid 35 cnid 11 due to disabled widget. Binding associations to channels... Assigning names to signal sources... Assigning mixers to the tree... Preparing pin controls... AFG commit... GPIO init: data=0x00000000 mask=0x00000000 dir=0x00000000 GPIO commit: data=0x00000001 mask=0x00000001 dir=0x00000001 Creating PCM devices... pcmAttach: HDA Realtek (Unknown) PCM #0 Analog at cad 0 nid 1 +--------------------------------------+ | DUMPING PCM Playback/Record Channels | +--------------------------------------+ Playback: Stream cap: 0x00000001 PCM PCM cap: 0x000e0060 16 20 24 bits, 44 48 KHz DAC: 2 Record: Stream cap: 0x00000001 PCM PCM cap: 0x000e0560 16 20 24 bits, 44 48 96 192 KHz ADC: 8 +-------------------------------+ | DUMPING Playback/Record Paths | +-------------------------------+ Playback: nid=20 [pin: Speaker (Analog)] | + <- nid=12 [audio mixer] bindSeq=00008001 | + <- nid=2 [audio output] [src: pcm] bindSeq=00008001 + <- nid=11 [audio mixer] bindSeq=00000001 | + <- nid=24 [pin: Microphone (Pink Rear)] [src: mic] bindSeq=00000001 + <- nid=29 [beep widget] nid=33 [pin: Headphones (Black Front)] | + <- nid=12 [audio mixer] bindSeq=00008001 | + <- nid=2 [audio output] [src: pcm] bindSeq=00008001 + <- nid=11 [audio mixer] bindSeq=00000001 | + <- nid=24 [pin: Microphone (Pink Rear)] [src: mic] bindSeq=00000001 + <- nid=29 [beep widget] Record: nid=8 [audio input] | + <- nid=35 [audio mixer] [src: mix] bindSeq=00000001 | + <- nid=24 [pin: Microphone (Pink Rear)] [src: mic] bindSeq=00000001 + <- nid=29 [beep widget] Input Mix: nid=35 [audio mixer] | + <- nid=24 [pin: Microphone (Pink Rear)] [src: mic] bindSeq=00000001 + <- nid=29 [beep widget] +-------------------------+ | DUMPING Volume Controls | +-------------------------+ Master Volume (OSS: vol) | +- control 0 (nid 2 out): dir - out oss: vol, pcm -65/+0dB (88 steps) +- control 4 (nid 11 in 0): dir - in oss: vol, igain -34/+12dB (32 steps) + mute +- control 8 (nid 11 in 4): dir - in oss: vol, speaker, igain -34/+12dB (32 steps) + mute +- control 9 (nid 12 in 0): dir - out oss: vol, pcm mute +- control 10 (nid 12 in 1): dir - out oss: vol, igain mute +- control 15 (nid 20 out): dir - out oss: vol mute +- control 22 (nid 33 out): dir - out oss: vol mute PCM Volume (OSS: pcm) | +- control 0 (nid 2 out): dir - out oss: vol, pcm -65/+0dB (88 steps) +- control 9 (nid 12 in 0): dir - out oss: vol, pcm mute Microphone Volume (OSS: mic) | +- control 17 (nid 24 in 0): dir - in oss: mic +0/+30dB (4 steps) +- control 29 (nid 35 in 0): dir - in oss: mic, rec mute Speaker/Beep Volume (OSS: speaker) | +- control 8 (nid 11 in 4): dir - in oss: vol, speaker, igain -34/+12dB (32 steps) + mute +- control 33 (nid 35 in 4): dir - in oss: speaker, rec mute Recording Level (OSS: rec) | +- control 2 (nid 8 in 0): dir - in oss: mix, rec -17/+30dB (64 steps) + mute +- control 29 (nid 35 in 0): dir - in oss: mic, rec mute +- control 33 (nid 35 in 4): dir - in oss: speaker, rec mute Input Mix Level (OSS: mix) | +- control 2 (nid 8 in 0): dir - in oss: mix, rec -17/+30dB (64 steps) + mute Input Monitoring Level (OSS: igain) | +- control 4 (nid 11 in 0): dir - in oss: vol, igain -34/+12dB (32 steps) + mute +- control 8 (nid 11 in 4): dir - in oss: vol, speaker, igain -34/+12dB (32 steps) + mute +- control 10 (nid 12 in 1): dir - out oss: vol, igain mute OSS mixer initialization... Registering PCM channels... FG config/quirks: gpio0 forcestereo ivref50 ivref80 ivref100 ivref HP switch init... +-------------------+ | DUMPING HDA NODES | +-------------------+ Default Parameter ----------------- Stream cap: 0x00000001 PCM PCM cap: 0x000e0560 16 20 24 bits, 44 48 96 192 KHz IN amp: 0x00000000 OUT amp: 0x00000000 nid: 2 Name: audio output Widget cap: 0x0000041d PWR FORMAT_OVR AMP_OVR OUT_AMP STEREO Association: 0 (0x00008001) OSS: pcm (pcm) Stream cap: 0x00000001 PCM PCM cap: 0x000e0060 16 20 24 bits, 44 48 KHz Output amp: 0x00025757 mute=0 step=87 size=2 offset=87 Output val: [0x46 0x46] nid: 3 [DISABLED] Name: audio output Widget cap: 0x0000041d PWR FORMAT_OVR AMP_OVR OUT_AMP STEREO Stream cap: 0x00000001 PCM PCM cap: 0x000e0060 16 20 24 bits, 44 48 KHz Output amp: 0x00025757 mute=0 step=87 size=2 offset=87 Output val: [0x00 0x00] nid: 4 [DISABLED] Name: vendor widget Widget cap: 0x00f00000 nid: 5 [DISABLED] Name: vendor widget Widget cap: 0x00f00000 nid: 6 [DISABLED] Name: audio output Widget cap: 0x00000611 PWR DIGITAL FORMAT_OVR STEREO Stream cap: 0x00000001 PCM PCM cap: 0x000e05e0 16 20 24 bits, 44 48 88 96 192 KHz nid: 7 [DISABLED] Name: vendor widget Widget cap: 0x00f00000 nid: 8 Name: audio input Widget cap: 0x0010051b PWR FORMAT_OVR AMP_OVR IN_AMP STEREO Association: 1 (0x00000001) Stream cap: 0x00000001 PCM PCM cap: 0x000e0560 16 20 24 bits, 44 48 96 192 KHz Input amp: 0x80023f17 mute=1 step=63 size=2 offset=23 Input val: [0x33 0x33] connections: 1 enabled 1 | + <- nid=35 [audio mixer] nid: 9 [DISABLED] Name: audio input Widget cap: 0x0010051b PWR FORMAT_OVR AMP_OVR IN_AMP STEREO Stream cap: 0x00000001 PCM PCM cap: 0x000e0560 16 20 24 bits, 44 48 96 192 KHz Input amp: 0x80023f17 mute=1 step=63 size=2 offset=23 Input val: [0x80 0x80] connections: 1 enabled 1 | + <- nid=34 [audio mixer] [DISABLED] nid: 10 [DISABLED] Name: vendor widget Widget cap: 0x00f00000 nid: 11 Name: audio mixer Widget cap: 0x0020010b AMP_OVR IN_AMP STEREO Association: 1 (0x00000001) OSS: (igain) Input amp: 0x80051f17 mute=1 step=31 size=5 offset=23 Input val: [0x16 0x16] [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x14 0x14] connections: 5 enabled 2 | + <- nid=24 [pin: Microphone (Pink Rear)] + [DISABLED] <- nid=25 [pin: Speaker (None)] [DISABLED] + [DISABLED] <- nid=26 [pin: Speaker (None)] [DISABLED] + [DISABLED] <- nid=27 [pin: Speaker (None)] [DISABLED] + <- nid=29 [beep widget] nid: 12 Name: audio mixer Widget cap: 0x0020010b AMP_OVR IN_AMP STEREO Association: 0 (0x00008001) OSS: (igain) Input amp: 0x80000000 mute=1 step=0 size=0 offset=0 Input val: [0x00 0x00] [0x00 0x00] connections: 2 enabled 2 | + <- nid=2 [audio output] + <- nid=11 [audio mixer] nid: 13 [DISABLED] Name: audio mixer Widget cap: 0x0020010b AMP_OVR IN_AMP STEREO Association: -2 (0x00000000) Input amp: 0x80000000 mute=1 step=0 size=0 offset=0 Input val: [0x80 0x80] [0x80 0x80] connections: 2 enabled 1 | + [DISABLED] <- nid=3 [audio output] [DISABLED] + <- nid=11 [audio mixer] nid: 14 [DISABLED] Name: vendor widget Widget cap: 0x00f00000 nid: 15 [DISABLED] Name: audio mixer Widget cap: 0x0020010a AMP_OVR IN_AMP Input amp: 0x80000000 mute=1 step=0 size=0 offset=0 Input val: [0x80 0x80] connections: 1 enabled 1 | + <- nid=13 [audio mixer] [DISABLED] nid: 16 [DISABLED] Name: vendor widget Widget cap: 0x00f00000 nid: 17 [DISABLED] Name: vendor widget Widget cap: 0x00f00000 nid: 18 [DISABLED] Name: pin: Speaker (None) Widget cap: 0x0040040b PWR AMP_OVR IN_AMP STEREO Pin cap: 0x00000020 IN Pin config: 0x411111f0 Pin control: 0x00000000 Input amp: 0x00270300 mute=0 step=3 size=39 offset=0 Input val: [0x00 0x00] nid: 19 [DISABLED] Name: vendor widget Widget cap: 0x00f00000 nid: 20 Name: pin: Speaker (Analog) Widget cap: 0x0040058d PWR UNSOL AMP_OVR OUT_AMP STEREO Association: 0 (0x00000001) Pin cap: 0x00010014 PDC OUT EAPD Pin config: 0x90171120 Pin control: 0x00000040 OUT EAPD: 0x00000002 Output amp: 0x80000000 mute=1 step=0 size=0 offset=0 Output val: [0x00 0x00] connections: 1 enabled 1 | + <- nid=12 [audio mixer] nid: 21 [DISABLED] Name: vendor widget Widget cap: 0x00f00000 nid: 22 [DISABLED] Name: vendor widget Widget cap: 0x00f00000 nid: 23 [DISABLED] Name: pin: Line-out (None) Widget cap: 0x0040050c PWR AMP_OVR OUT_AMP Pin cap: 0x00000010 OUT Pin config: 0x40000000 Pin control: 0x00000000 Output amp: 0x80000000 mute=1 step=0 size=0 offset=0 Output val: [0x80 0x80] connections: 1 enabled 1 | + <- nid=15 [audio mixer] [DISABLED] nid: 24 Name: pin: Microphone (Pink Rear) Widget cap: 0x0040048b PWR UNSOL AMP_OVR IN_AMP STEREO Association: 1 (0x00000001) OSS: mic (mic) Pin cap: 0x00003724 PDC IN VREF[ 50 80 100 GROUND HIZ ] Pin config: 0x01a19050 Pin control: 0x00000025 IN VREFs Input amp: 0x00270300 mute=0 step=3 size=39 offset=0 Input val: [0x02 0x02] nid: 25 [DISABLED] Name: pin: Speaker (None) Widget cap: 0x0040048b PWR UNSOL AMP_OVR IN_AMP STEREO Pin cap: 0x00003724 PDC IN VREF[ 50 80 100 GROUND HIZ ] Pin config: 0x411111f0 Pin control: 0x00000000 Input amp: 0x00270300 mute=0 step=3 size=39 offset=0 Input val: [0x00 0x00] nid: 26 [DISABLED] Name: pin: Speaker (None) Widget cap: 0x0040048b PWR UNSOL AMP_OVR IN_AMP STEREO Pin cap: 0x00003724 PDC IN VREF[ 50 80 100 GROUND HIZ ] Pin config: 0x411111f0 Pin control: 0x00000000 Input amp: 0x00270300 mute=0 step=3 size=39 offset=0 Input val: [0x00 0x00] nid: 27 [DISABLED] Name: pin: Speaker (None) Widget cap: 0x0040058f PWR UNSOL AMP_OVR OUT_AMP IN_AMP STEREO Pin cap: 0x0001373c PDC HP OUT IN VREF[ 50 80 100 GROUND HIZ ] EAPD Pin config: 0x411111f0 Pin control: 0x00000000 EAPD: 0x00000002 Output amp: 0x80000000 mute=1 step=0 size=0 offset=0 Output val: [0x80 0x80] Input amp: 0x00270300 mute=0 step=3 size=39 offset=0 Input val: [0x00 0x00] connections: 2 enabled 2 | + <- nid=12 [audio mixer] (selected) + <- nid=13 [audio mixer] [DISABLED] nid: 28 [DISABLED] Name: vendor widget Widget cap: 0x00f00000 nid: 29 Name: beep widget Widget cap: 0x00700400 PWR Association: -2 (0x00000000) OSS: speaker (speaker) nid: 30 [DISABLED] Name: pin: Speaker (None) Widget cap: 0x00400781 PWR DIGITAL UNSOL STEREO Pin cap: 0x00000014 PDC OUT Pin config: 0x411111f0 Pin control: 0x00000000 connections: 1 enabled 1 | + <- nid=6 [audio output] [DISABLED] nid: 31 [DISABLED] Name: vendor widget Widget cap: 0x00f00000 nid: 32 [DISABLED] Name: vendor widget Widget cap: 0x00f00040 PROC nid: 33 Name: pin: Headphones (Black Front) Widget cap: 0x0040058d PWR UNSOL AMP_OVR OUT_AMP STEREO Association: 0 (0x00008000) Pin cap: 0x0001001c PDC HP OUT EAPD Pin config: 0x0221102f Pin control: 0x000000c0 HP OUT EAPD: 0x00000002 Output amp: 0x80000000 mute=1 step=0 size=0 offset=0 Output val: [0x00 0x00] connections: 2 enabled 1 | + <- nid=12 [audio mixer] (selected) + [DISABLED] <- nid=13 [audio mixer] [DISABLED] nid: 34 [DISABLED] Name: audio mixer Widget cap: 0x0020010b AMP_OVR IN_AMP STEREO Input amp: 0x80000000 mute=1 step=0 size=0 offset=0 Input val: [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x80 0x80] connections: 6 enabled 3 | + <- nid=24 [pin: Microphone (Pink Rear)] + [DISABLED] <- nid=25 [pin: Speaker (None)] [DISABLED] + [DISABLED] <- nid=26 [pin: Speaker (None)] [DISABLED] + [DISABLED] <- nid=27 [pin: Speaker (None)] [DISABLED] + <- nid=29 [beep widget] + <- nid=11 [audio mixer] nid: 35 Name: audio mixer Widget cap: 0x0020010b AMP_OVR IN_AMP STEREO Association: 1 (0x00000001) OSS: mix (mix) Input amp: 0x80000000 mute=1 step=0 size=0 offset=0 Input val: [0x00 0x00] [0x80 0x80] [0x80 0x80] [0x80 0x80] [0x00 0x00] [0x80 0x80] [0x80 0x80] connections: 7 enabled 2 | + <- nid=24 [pin: Microphone (Pink Rear)] + [DISABLED] <- nid=25 [pin: Speaker (None)] [DISABLED] + [DISABLED] <- nid=26 [pin: Speaker (None)] [DISABLED] + [DISABLED] <- nid=27 [pin: Speaker (None)] [DISABLED] + <- nid=29 [beep widget] + [DISABLED] <- nid=11 [audio mixer] + [DISABLED] <- nid=18 [pin: Speaker (None)] [DISABLED] do you have any experience with this DMIC devices ? i'm still not sure if a special firmware is need just for the microphone device
  12. I am not familiar with your machine and I don't know if your machine is the same as @chris1111 machine. I suggest you test his EFI Folder (attached in my previous post) on a USB Drive by booting off it and see what result you get. The GitHub link I included above has a few example EFI Folders for the HP Elitebook 840 G4 that you can also try but will need updating to latest files and kexts. If you put your machine 'HP Elitebook 840 G4' in the GitHub search bar, you will see some example EFI Folders. @chris1111 EFI Folder seems to have the latest updated files and kexts. Good luck.
  13. Hi @lorys89 thank you for your help. So I did exactly as you told, and I noticed that when I installed your ALC plug fix the hissing noise totally disappears. Then if I boot the computer to macOS with the headphones jack already plugged I have no hissing noise but the audio is behaving kinda weird ( small echo, music louder than voices and stuff). If I then unplug the jack and replug it the hissing noise reappears but way quieter than original, like 10% of its original intensity, but apart from that, the audio is behaving normally. What I've also noticed is that when no audio is played for like 10 -20 sec or so, a small pop is heard and then no more hissing. The noise reappears as soon as I play some noise or sound. It's like the pin changes its power state then resumes. But I don't understand why after a wake the change in power state fixes the hissing noise. What does your script do actually? Maybe I have to tweet some coefficients specific to Acer.
  14. It was actually very laborious work: I was trying different releases of Nooted Red one by one and finally found that right one. You can find plenty of releases in Actions but you never know which one will work with your machine. I tried the same with Sonoma and what works on Ventura it doesn't boot Sonoma. Finally I was able to boot Sonoma with acceleration as well but I am not happy with that because there is plenty of lags and freezes. It is simply unusable.
  15. @eSaFis there anything I should mess with cuz I don’t have touchscreen?
  16. I discovered it is pretty easy to make up a music video with this weird combo
  17. @IHeartMacs - This is @chris1111 EFI Folder here - https://github.com/topics/hackintosh?o=desc&s=updated. Maybe it will give you a start to overcome your problem. Good luck. HP-EliteBook-840-G4-main.zip
  18. ....we examined new Intel Z790 motherboards from Asus, Asrock, MSI, and Gigabyte, when we wrote this: "as usual, the Intel platform is a bit of a mess when it comes to power configurations.... ....13th and 14th-gen K-SKU processors have started crashing, presumably due to silicon degradation.... https://www.techspot.com/review/2836-intel-cpu-crash-baseline-spec/
  19. This thread extends the EliteDesk 800 G4/G5 Mini thread here which provides a macOS solution using the UHD630 iGPU. This thread provides a macOS solution for the HP EliteDesk 800 G4 Mini with the AMD Radeon RX560x dGPU. The specifications for the PC that I am using for this solution are as follows: HP EliteDesk 800 G4 Mini i5-8500T CPU AMD Radeon RX560x 4GB dGPU 32GB DDR4 (2 x 16GB) 500GB WD Black SN750 M.2 NVMe SSD 150W Power Adapter
  20. @chris1111or anyone that can help, I used chris1111’s Broadcom wifi-sonoma branch for User with an BCM wifi card compatible to make an installer and used the OC creator that came along with it to make my Sonoma installer but I’m getting boot loops when booting with installer. I did replace my original WiFi card with 802.11ac BCM94360NG Wireless Adapter M.2 Desktop Kit Hackintosh macOS NGFF Wifi Card Dual. My 840 G4 also doesn’t have touchscreen. Please help!
  21. Hey Tluck, thank you for the latest update of the repo, I'm actually trying to install Ventura on my T420, and it's actually working with OCLP (some minor issues). Had to use CryptexFixup kext as the CPU is lacking AVX2 instruction set for Ventura. You did a wonderful job with this old machine, you have my respect.
  22. You have Graphics->Inject->ATI=NO OK, but I recommend to do same for Nvidia and Intel because default values are YES. Why you set device-id as <C59B0000>? Your native 9BC8 is supported by macOS Sonoma at least. And I don't know about ig-platform-id for your card. You may choose between 0x3EA50009 (mobile, 3 connectors, no fbmem, 58 MB) 0x3E920009 (mobile, 3 connectors, no fbmem, 58 MB) 0x3E9B0009 (mobile, 3 connectors, no fbmem, 58 MB) 0x3EA50000 (mobile, 3 connectors, no fbmem, 58 MB) 0x3E920000 (mobile, 3 connectors, no fbmem, 58 MB) 0x3E000000 (mobile, 3 connectors, no fbmem, 58 MB) 0x3E9B0000 (mobile, 3 connectors, no fbmem, 58 MB) 0x3EA50004 (mobile, 3 connectors, no fbmem, 58 MB) 0x3EA50005 (mobile, 3 connectors, no fbmem, 58 MB) 0x3EA60005 (mobile, 3 connectors, no fbmem, 58 MB) 0x3E9B0006 (mobile, 1 connectors, no fbmem, 39 MB) 0x3E9B0008 (mobile, 1 connectors, no fbmem, 58 MB) 0x3E9B0007 (desktop, 3 connectors, no fbmem, 58 MB) 0x3E920003 (desktop, 0 connectors, no fbmem, 1 MB) 0x3E910003 (desktop, 0 connectors, no fbmem, 1 MB) 0x3E980003 (desktop, 0 connectors, no fbmem, 1 MB) 0x9BC80003 (desktop, 0 connectors, no fbmem, 1 MB) 0x9BC50003 (desktop, 0 connectors, no fbmem, 1 MB) 0x9BC40003 (desktop, 0 connectors, no fbmem, 1 MB)
  23. I'm trying to install Ventura on my desktop PC with Ryzen 3 2200G APU and use NootedRed.kext to enable iGPU, everything works ok with the installation until the last phase when I expect to see welcome screen with final settings before the desktop, but for some reason it boots after few seconds in verbose in black screen. This is my EFI, everything is up to date, I'm not sure how to fix this. EFI.zip
  24. Added FakeSMC.kext and removed VirtualSMC.kext. But didn't work.... (T_T) config.plist drivers.zip ACPI.zip preboot.log
  1. Load more activity
×
×
  • Create New...