• Become a Premium Member for $25/year with no ads to improve your community experience.

GUIDE How to Fix WiFi detected but not working on macOS

How to Fix WiFi detected but not working on macOS

This guide describes how to fix WiFi detected but not working on macOS. By following this guide, you'll be able to fix the WiFi device and restore it to a functional state. The guide applies to Broadcom, Intel, and Atheros. External WiFi models are not supported by this guide.

Overview

With our previous guide for fixing Intel WiFi, there are a few cases where the WiFi is detected in the system but doesn't seem to work at all, regardless of the OS X/macOS versions. A very similar case was reported by the forum member @Funnyland. This is because, the WiFi Device was not initialized properly, and as a reason, while the Bluetooth worked, the WiFi did not function at all, despite being detected by the system. However, this isn't normal and doesn't usually happen but only in rare cases. This is because the WiFi module might have been swapped/changed with the original one which was shipped from the factory and therefore the newer card may not be simply compatible or may not initialize properly. Other reasons may include some sort of failure or corruption that occurred during the firmware upload or the hardware initialization.

On macOS, no WiFi information will be reported under the Hardware>WiFi section in the System Report. However, on Windows and Linux, Bluetooth and WiFi function normally, as they should. On macOS, only Bluetooth seems to be functional. With the appropriate kexts injected, the Bluetooth will function normally and the supported features will also work.

Screen Shot 2024-09-20 at 1.50.48 AM-min.png Screen Shot 2024-09-20 at 1.50.59 AM-min.png
However, even when the WiFi kexts are injected properly, the WiFi won't even initialize at all. The kext will simply not attach to the WiFi device at all. This can be verified using the IOReg as shown below:

Screen Shot 2024-09-20 at 1.45.32 AM-min.png Screen Shot 2024-09-20 at 1.45.39 AM-min.png
Even when renaming the PCI Bridge device (WiFi) to ARPT and injecting a few other parameters via the SSDT method, the kext still doesn't attach to the device:

Screen Shot 2024-09-20 at 2.07.44 AM-min.png
Some of you might suspect that it could be possible that the WiFi isn't detected but that's not the case. As you can see the Hackintool does recognize the WiFi and despite the WiFi kext being injected, the kext doesn't load and as a result, the WiFi does not even start on a hardware level. Unless the hardware is initialized properly, the kext won't load and the device will not work.

Screenshot 2024-05-19 at 22.51.23-min.png Screenshot 2024-05-19 at 22.51.36-min.png Screenshot 2024-05-19 at 22.49.44-min.png Screenshot 2024-05-19 at 22.50.27-min.png

The Bluetooth seems to be always functional as the BT operates on the USB bus and as long as the BT is initialized correctly and ports are mapped, it is expected to work. However, unlike Bluetooth, the WiFi also must be initialized correctly so that the kext can attach to it.
Screen Shot 2024-09-20 at 1.50.59 AM-min.png Screenshot 2024-05-19 at 22.33.08-min.png

While the WiFi will be functional on other Operating Systems (such as Windows and Ubuntu), it will never work on macOS unless the root cause is fixed.

To make everyone familiar with the issue, let's get to know the @Funnyland machine on which this problem was discovered. @Funnyland has and CDW-C9852BE-00 (RTL8852BE) was the factory original card shipped with the system. As Realtek WiFi chipsets aren't supported on macOS, the original Realtek WiFi was replaced with an Intel AX210 WiFi Card. As he was not willing to use OCLP to patch when using Sonoma. In addition, he had no requirements for AirDrop, it made more sense to replace it with the Intel WiFi. However, despite the numerous attempts from @Funnyland, the WiFi didn't work even after following the guide precisely. To ensure there was nothing wrong with the installation, he even did a clean install and made the EFI from scratch and alas, the WiFi did not work even this time. Considering there could be a problem with macOS Sonoma, he did a clean install of macOS Ventura and unfortunately, the result was the same. Thinking the AX210 could be a faulty card, he bought another supported WiFi Card i.e. Intel AX200, and one more time, he was out of luck!

When he was left with no option, he tried the same card on Windows and Ubuntu and they worked perfectly, which gave him a ray of hope that the physical slot on the machine and the WiFi card were not where the problem was coming from. It was something on the macOS side and he finally showed to us and asked us to look into the issue. As a part of the diagnosis, we deployed an EFI from scratch (for the sake of accuracy) and did a clean install of macOS Sonoma 14.4 and it was no surprise that with our files, the WiFi didn't work as well. Therefore, it was time to dive deep and find the root cause of the WiFi not being initialized. After checking the IOReg, it made more sense to investigate the ACPI to check where is the problem coming from. Upon our initial inspection, we found something really interesting.




The WiFi is usually on the PCIe bus and the BT on the USB bus. As the WiFi card was failing to initialize, it made more sense to check for the power related issues. To begin, when checking the IOPowerManagement values from IOReg, the WiFi device had the following values:
Screen Shot 2024-09-20 at 2.40.48 AM-min.png
As you can see, the CurrentPowerState is 0x0 which indicates that the WiFi Card is not fully powered on which is why the WiFi isn't initialized under macOS. Note that macOS handles things differently than Windows and Linux and therefore, the driver side on the macOS could not force power on the card or change the power state. Usually, the PCIe power state is defined in the ACPI tables. Now, it was time to check the ACPI tables for the root cause.

Although, its recommended to dump the ACPI tables for analyzing as within the OS, the OEM tables could be different due to the certain parameters injected by the config.plist and the bootloader itself. However, as there was no need to patch the tables, opening the DSDT using MaciASL>File>New from ACPI option would work fine. As per the Hackintool, the WiFi Device path is PCI0.GPP4 and an empty PCI bridge which was not defined (a common problem with several AMD platforms). Checking the Power State (PS0), the OEM DSDT has the following values defined:
Screen Shot 2024-09-20 at 2.44.21 AM-min.png
It was the moment, we figured out why the WiFi Card was not being initialized. This was due to the power state. Certain hardware have different power state and not all devices supports all kinds of power state. Although, the power state continued to work even after changing the original WiFi Card (from Realtek) to Broadcom as this was verified under Windows and Linux and the Broadcom card worked fine there. A simple fix was to disable the Power State (PS0) so that the card can be fully active and initializes properly. This was achieved by a simple ACPI rename (_PS0 to _XPS):
Code:
Find: 5F505330
Replace: 58505330
Comment: Rename _PS0 to XPS0 (credit: EliteMacx86)

Implementing the above rename patch in the config.plist and rebooting the system resulted in success. The Card was now fully powered on and immediately detected in Hackintool>Peripherals:
Screenshot 2024-05-19 at 22.41.35-min.png
The itlwm.kext was attached to the WiFi Device and now the WiFi was working normally:

Screen Shot 2024-09-20 at 3.39.19 AM-min.png
The Power Management also seems to be working. As you can see, the CurrentPowerState has also changed from 0x0 to 0x02:
Screen Shot 2024-09-20 at 3.39.32 AM-min.png
The WiFi has proper brand, BSSID and the properties seems to be working properly:
Screen Shot 2024-09-20 at 3.40.40 AM-min.png Screen Shot 2024-09-20 at 3.48.18 AM-min.png
Screen Shot 2024-09-20 at 5.13.17 AM-min.png

Screenshot 2024-05-19 at 22.33.52-min.png

Screenshot 2024-05-19 at 22.35.01-min.png


Screen Shot 2024-09-20 at 3.48.45 AM-min.png Screenshot 2024-05-19 at 22.34.22-min.png

Screenshot 2024-05-19 at 22.34.31-min.png
 
Last edited:
  • Like
Reactions: rapht1
Hi, I'm suffering from this same problem. I didn't find the guide. Could you make it available to me? The problem is on my ACER a515-45, Ryzen 7 5700u.
The BCM94360 wifi does not recognize the Hackintool at all, but the bluetoth works perfectly. It appears on the PCIe, I do all the procedures to activate it (I insert the Kexts for the Sonoma), I run OCLP and it recognizes modern wireless, applies the patches without giving an error, but it does not activate, since theoretically, it does not "exist" in the system. Any tips?
USBs are Mapped. The same wifi card, on my PC x99 Hackintosh and on the windows of this laptop, works normally.
Everything else works perfectly.
 

Attachments

  • Captura de Tela 2024-08-09 às 14.55.55.png
    Captura de Tela 2024-08-09 às 14.55.55.png
    483.4 KB · Views: 7
  • Captura de Tela 2024-08-09 às 14.56.13.png
    Captura de Tela 2024-08-09 às 14.56.13.png
    137.6 KB · Views: 7
  • Captura de Tela 2024-08-09 às 14.56.47.png
    Captura de Tela 2024-08-09 às 14.56.47.png
    138 KB · Views: 6
  • Captura de Tela 2024-08-09 às 14.57.55.png
    Captura de Tela 2024-08-09 às 14.57.55.png
    298.8 KB · Views: 6
  • Captura de Tela 2024-08-09 às 16.40.51.png
    Captura de Tela 2024-08-09 às 16.40.51.png
    139.3 KB · Views: 6
  • Captura de Tela 2024-08-09 às 16.41.16.png
    Captura de Tela 2024-08-09 às 16.41.16.png
    343.2 KB · Views: 5
  • Captura de Tela 2024-08-09 às 17.10.13.png
    Captura de Tela 2024-08-09 às 17.10.13.png
    364.9 KB · Views: 7
  • EFI Sonoma ACER.zip
    EFI Sonoma ACER.zip
    12.2 MB · Views: 0
Last edited:
Hi, I'm suffering from this same problem. I didn't find the guide. Could you make it available to me? The problem is on my ACER a515-45, Ryzen 7 5700u.
The guide will be available soon!

The BCM94360 wifi does not recognize the Hackintool at all, but the bluetoth works perfectly. It appears on the PCIe, I do all the procedures to activate it (I insert the Kexts for the Sonoma), I run OCLP and it recognizes modern wireless, applies the patches without giving an error, but it does not activate, since theoretically, it does not "exist" in the system. Any tips?
Seems to be similar issue as of @Funnyland. However, no idea without the PR Files.

USBs are Mapped. The same wifi card, on my PC x99 Hackintosh and on the windows of this laptop, works normally.
Everything else works perfectly.
Yes, that's a very normal thing. It only verifies that the card is not bad and also that the Laptop itself is not having issue.
 
How to generate PR files?
Provide the PR files as described in the FAQ:
 
I meet the same issue on a Lenovo R7000p laptop and an AMD mini-pc. My Wi-Fi card mode is bcm94360cs2.
 
Last edited:
I meet the same issue on a Lenovo R7000p laptop and an AMD mini-pc. My Wi-Fi card mode is bcm94360cs2.
Attach the PR Files.
 

Trending content

Forum statistics

Threads
1,760
Messages
16,582
Members
25,419
Latest member
moishiteru2