hidematu5 Posted 6 hours ago Share Posted 6 hours ago Hi everyone, I've discovered a potential workaround for the long-standing shutdown issue on the Dell Inspiron 1520 (ICH8M + NVIDIA GPU). It appears that a substantial delay (sleep) is required for the system to shut down properly. By disabling SMI generation (writing 0 to SLP_SMI_EN) followed by a long sleep command—specifically Sleep(0xFFFF) or at least Sleep(0x2710)—I successfully managed to shut down the system on macOS 10.4 to 10.7, as well as Ventura (13), Sonoma (14), and Sequoia (15). Short delays like Sleep(0x10) or Sleep(0x16) invariably fail. Example 1: Standard Sleep Method OperationRegion (PMRS, SystemIO, 0x1030, One) Field (PMRS, ByteAcc, NoLock, Preserve) { , 4, SLPE, 1 } Method (_PTS, 1, NotSerialized) { If (LEqual (Arg0, 0x05)) { Store (Zero, SLPE) Sleep (0x2710) // 10sec // or // Sleep (0x2710) // 10sec // Sleep (0x2710) // 10sec total 20sec // or // Sleep (0x2710) // 10sec // Sleep (0x2710) // 10sec // Sleep (0x24B8) // 9.4sec total 29.4sec [Recommended] // or // Sleep (0xFFFF) // 65.5sec } } Behavior by macOS version (Example 1): 10.4 – 10.7: Mostly successful. However, it takes about 30 seconds to 1 minute for the machine to power off after the display goes black. (Note: 10.4 has NVDAResman disabled and shuts down normally even without the SLPE method). 10.8 – 10.10: Unstable. It sometimes succeeds, but often results in a black screen with fans spinning continuously or triggers a system reboot. 10.11 – 10.12: Always results in a reboot. 10.13 – macOS 12: The screen goes black, but the fans keep spinning indefinitely. 13 – 15: Mostly successful, though reboots still occur occasionally. Example 2: Stall Method (Higher Success Rate) There is an alternative method with a significantly higher success rate using Stall: Method (_PTS, 1, NotSerialized) { If (LEqual (Arg0, 0x05)) { Store (Zero, SLPE) Local0 = 0x4268 While ((Local0 > Zero)) { Local0-- Stall (0x64) } } } Behavior by macOS version (Example 2): 10.4: NVDAResman disabled; shuts down fine without this method. 10.5 – 10.7: Mostly successful, but takes 30 seconds to 1 minute to power off after the screen goes dark. 10.8 – 10.10: Unstable. Mostly results in a black screen with running fans or a reboot. 10.11 – 10.12: Results in a black screen with running fans or a reboot. 10.13 – macOS 12: Screen turns off, but fans spin indefinitely. 13 – 15: 100% successful. Furthermore, the system shuts down in less than 10 seconds. Example 3: While Loop + Short Sleep Method I also tested another approach using a While loop with shorter sleep increments: Method (_PTS, 1, NotSerialized) { If (LEqual (Arg0, 0x05)) { Store (Zero, SLPE) Local0 = 0x2710 While ((Local0 > Zero)) { Local0-- Sleep (0x10) } } } Behavior by macOS version (Example 3): 10.4: Works fine without this method (NVDAResman disabled). 10.5 – 10.6: Mostly successful, but takes 30 seconds to 1 minute to power off after the screen goes dark. 10.7: Unstable. Mostly results in a black screen with running fans or a reboot. 10.8 – 15: Always results in a reboot. Observations & Analysis It remains unclear why the success rate is high on very old and very new macOS versions, yet highly unstable on mid-generation OS versions. Additionally, the fact that the hardware takes about 30 seconds to a minute to complete the shutdown sequence suggests that it requires a significantly longer preparation time to power off compared to other machines of the same generation. This is almost certainly due to a firmware bug. While this is an unconventional workaround, it is encouraging to find a viable method for these models, which were previously thought to have no consistent solution for their shutdown issues. This fix might also apply to the following models: Inspiron 1420 / 1520 / 1720 Vostro 1400 / 1500 / 1700 XPS M1330 (Note: Rebooting on these models is also unstable—sometimes working, sometimes failing—which likely stems from the same root cause). What I've Tested So Far: USB Power: Investigated USB power behavior, but it doesn't seem to be the culprit. OSID: Tested with 0x10 (Windows XP) and 0x20 (Windows Vista), but saw no significant change. BIOS Settings: Disabled LAN, Wi-Fi, Bluetooth, SDHC, and the module bay in the BIOS, but the issue persists. For context, this older thread might be relevant: https://www.insanelymac.com/forum/topic/266803-dsdt-shutdown-nvidia-dells-not-zero-slpe-trick-alternate-ich8-method/ If anyone has any insights, suggestions, or ideas for a more fundamental/cleaner fix, I would love to hear them. Any feedback is highly appreciated! Quote Link to comment https://www.insanelymac.com/forum/topic/362931-dell-inspiron-142015201720-vostro-140015001700-xps-m1330-nvidia-gpu-shutdown-fix/ Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.