You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With macOS Monterey, we've been able to unlock both Sidecar and Airplay support for legacy Macs. However we currently do not enable LPM on pre-Skylake Macs. While the majority of the power management benefits are likely tied to hardware, the OS does handle scheduling and limiting applications' CPU usage meaning there can be benefits to enabling on pre-Skylake hardware.
Currently LPM is supported on the following models:
MacBook9,1+
MacBookAir8,1+
MacBookPro13,x+
We believe Apple hard coded hardware support inside /System/Library/PrivateFrameworks/PowerUI.framework/Versions/A/PowerUI. Below is a binary ripped from 12.0:
Note: Compared to SidecarFixup and AirplayCore, Apple did not hard code a full model array into PowerUI. Further investigation required for how Apple handles device checks
The text was updated successfully, but these errors were encountered:
Would love getting this working on my MacBook Pro 2015, even if it's only software wise, as the hardware can be down clocked with Turbo Switcher to disable Intel Turbo Boost.
I'm new at this. Search the OP binary for some Model Identifiers but only found random models. The compatibility starts at MacBook (Early 2016 [MacBook9,1] and later) and MacBook Pro (Early 2016 [MacBookPro13,1] and later). Also didn't found anything on previous post repository.
Model lock is within the IOKit framework and is stored as minimum model integer(s) (inside IOPMFeatureIsAvailableWithSupportedTable, note not as blacklisted model strings as generally done). Additionally there needs to be an /dev/xcpm stub present (powerd verifies this, however Haswell+ already support this in macOS)
credit to ASentientBot for their research on this
Since symbol solving in userspace is non-functional, creating a stable patch base is difficult and unlikely. However if you're interested in researching, feel free to PR to FeatureUnlock's repository
With macOS Monterey, we've been able to unlock both Sidecar and Airplay support for legacy Macs. However we currently do not enable LPM on pre-Skylake Macs. While the majority of the power management benefits are likely tied to hardware, the OS does handle scheduling and limiting applications' CPU usage meaning there can be benefits to enabling on pre-Skylake hardware.
Currently LPM is supported on the following models:
We believe Apple hard coded hardware support inside
/System/Library/PrivateFrameworks/PowerUI.framework/Versions/A/PowerUI
. Below is a binary ripped from 12.0:Note: Compared to SidecarFixup and AirplayCore, Apple did not hard code a full model array into PowerUI. Further investigation required for how Apple handles device checks
The text was updated successfully, but these errors were encountered: