Jump to content
maxswjeon

CMOS Reset required for every boot

Recommended Posts

Basic Information

  • Hardware
    • CPU: AMD Ryzen 5600X
    • MB: AsRock B550M Pro4
    • RAM: Samsung DDR4-3200 32GB x 4 (Total 128GB)
    • GPU: AMD Radeon RX560 4GB
    • Ethernet: Realtek RTL8211
    • Bluetooth: BU-4096 (Broadcom BCM20702A0 Based)
  • Software
    • My EFI setup is based on Dortania's guide (I would use olarila's if I knew before!!)
    • macOS Version: Ventrua (13.4.1)
    • SMBIOS Platform: iMac18,1
    • Kexts
      • AMDRyzenCPUPowerManagement
      • AppleALC
      • AppleMCEReporterDisabler
      • BlueToolFixup
      • BrcmFirmwareData
      • BrcmPatchRAM3
      • Lilu
      • RadeonSonsor
      • RealtekRTL8111
      • RTCMemoryFixup
      • SMCAMDProcessor
      • SMCRadeonGPU
      • USBToolBox
      • UTBMap
      • VirtualSMC
      • WhateverGreen

Problem

Everytime my system reboots / starts after shutdown / sleep, it does not boot at all. I suppose it fails to init (POST) after shutdown. CPU and DRAM Error POST Error LED are lit up on start. CMOS Reset by removing the coin battery (or at least unplugging the AC power cord and waiting 10 ~ 20 seconds) work. Some say it is RTC problem, so I tried to enable DisableRtcChecksum, but it didn't work. Tried RTCMemoryFixup too, but it didn't work. Please help.

Additional information request are welcome. Thanks for reading long post.

Link to comment
Share on other sites

  • Administrators

inject rtc with these properties and check if work

Quote

 Name (_HID, EisaId ("PNP0B00") /* AT Real-Time Clock */)  // _HID: Hardware ID
        Name (_CRS, ResourceTemplate ()  // _CRS: Current Resource Settings
        {
            IO (Decode16,
                0x0070,             // Range Minimum
                0x0070,             // Range Maximum
                0x00,               // Alignment
                0x02,               // Length
                )
        })

 

-Donations-

PayPal HERE - Stripe HERE - Ko-Fi HERE - BuyMeaCoffee HERE - Mercado Livre HERE

Skrill danielnmaldonado@gmail.com - BTC 33HeGCuCSh4tUBqdYkQqKpSDa1E7WeAJQ3 - BNB 0x10D1d656eCa00bD521f9b4A43B83098B8142e115 - USDT BSC BEP20 0xb57cfdfa371fad1981910f0e8332409ab99f74d9 - USDT TRC20 TUR6Z9AVS4AYzqPnULoHrfFvppRbhXmNbZ - KASPA kaspa:qpxzufgfj8p6r0krg58yzvs0009h2mwqgvcawa0xc2pth7sgzpv56j4f6dtvk - PicPay @danielnmaldonado - PiX @danielnmaldonado@gmail.com

Premium Users HERE - Problems with Paypal HERE

xcd5u2Y.png

Sign up for a Bybit account and claim exclusive rewards HERE

New ways to earn money with Linkvertise HERE

Link to comment
Share on other sites

Current RTC0 Device checked with MaciASL is defined as below.
 

Device (RTC0)
{
    Name (_HID, EisaId ("PNP0B00") /* AT Real-Time Clock */)  // _HID: Hardware ID
    Name (BUF0, ResourceTemplate ()
    {
        IO (Decode16,
            0x0070,             // Range Minimum
            0x0070,             // Range Maximum
            0x00,               // Alignment
            0x02,               // Length
        )
    })
    Name (BUF1, ResourceTemplate ()
    {
        IO (Decode16,
            0x0070,             // Range Minimum
            0x0070,             // Range Maximum
            0x00,               // Alignment
            0x02,               // Length
        )
        IRQNoFlags ()
            {8}
    })
    Method (_CRS, 0, Serialized)  // _CRS: Current Resource Settings
    {
        If ((HPEN == One))
        {
            Return (BUF0) /* \_SB_.PCI0.SBRG.RTC0.BUF0 */
        }
        Return (BUF1) /* \_SB_.PCI0.SBRG.RTC0.BUF1 */
    }
}

How should I apply it? Remove the BUF1?

Link to comment
Share on other sites

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.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.





×
  • Create New...