Code Monkey home page Code Monkey logo

Comments (1)

Hasodikis avatar Hasodikis commented on June 15, 2024

OK.

PART 1:
After I lot of searching, trial and error, the OINI ACPI error is no more.
I changed the SSDT-INIT

FROM:
DefinitionBlock ("", "SSDT", 2, "tyler", "_INIT", 0x00001000)
{
External (SB.PCI0, DeviceObj)
External (SB.PCI0.RP09.INIT, MethodObj) // 0 Arguments
External (DPTF, FieldUnitObj)
External (HPTE, FieldUnitObj)
External (OSDW, MethodObj) // 0 Arguments
External (OSYS, FieldUnitObj)
External (WNTF, FieldUnitObj)
External (ZINI, MethodObj) // 0 Arguments

Scope (_SB.PCI0)
{
Method (OINI, 0, NotSerialized)
{
If (OSDW ())
{
Debug = "INIT: Set Variables..."
HPTE = Zero
WNTF = One
DPTF = Zero
OSYS = 0x07DF
}

ZINI ()
If ((OSDW () && CondRefOf (_SB.PCI0.RP09.INIT)))
{
_SB.PCI0.RP09.INIT ()
}
}
}
}

TO:
DefinitionBlock ("", "SSDT", 2, "T480", "INIT", 0x00001000)
{
External (SB.PCI0, DeviceObj)
External (DPTF, FieldUnitObj)
External (HPTE, FieldUnitObj)
External (OSYS, FieldUnitObj)
External (WNTF, FieldUnitObj)

Method (OINI, 0, NotSerialized)
{
If (_OSI ("Darwin"))
{
Debug = "Set Variables..."
HPTE = Zero
OSYS = 0x07DF
}
}
}

PART 2
There is also a second ACPI Error:
08:50:37.989058+0300 localhost kernel[0]: (AppleACPIPlatform) [_TTS]
2023-08-25 08:50:37.989194+0300 localhost kernel[0]: (AppleACPIPlatform) Namespace lookup failure, AE_ALREADY_EXISTS
2023-08-25 08:50:37.989195+0300 localhost kernel[0]: (AppleACPIPlatform) Namespace lookup failure, AE_ALREADY_EXISTS
2023-08-25 08:50:37.990198+0300 localhost kernel[0]: (AppleACPIPlatform) (20160930/dswload-462)
2023-08-25 08:50:37.990199+0300 localhost kernel[0]: (AppleACPIPlatform) (20160930/dswload-462)
2023-08-25 08:50:37.994578+0300 localhost kernel[0]: (AppleACPIPlatform) ACPI Exception: AE_ALREADY_EXISTS, 2023-08-25 08:50:37.994579+0300 localhost kernel[0]: (AppleACPIPlatform) ACPI Exception: AE_ALREADY_EXISTS, 2023-08-25 08:50:37.995376+0300 localhost kernel[0]: (AppleACPIPlatform) During name lookup/catalog
2023-08-25 08:50:37.995377+0300 localhost kernel[0]: (AppleACPIPlatform) During name lookup/catalog
2023-08-25 08:50:37.995970+0300 localhost kernel[0]: (AppleACPIPlatform) (20160930/psobject-310)
2023-08-25 08:50:37.995971+0300 localhost kernel[0]: (AppleACPIPlatform) (20160930/psobject-310)
2023-08-25 08:50:38.000396+0300 localhost kernel[0]: (AppleACPIPlatform) ACPI Exception: AE_ALREADY_EXISTS, 2023-08-25 08:50:38.000397+0300 localhost kernel[0]: (AppleACPIPlatform) ACPI Exception: AE_ALREADY_EXISTS, 2023-08-25 08:50:38.001196+0300 localhost kernel[0]: (AppleACPIPlatform) (SSDT: _Sleep) while loading table
2023-08-25 08:50:38.001196+0300 localhost kernel[0]: (AppleACPIPlatform) (SSDT: _Sleep) while loading table
2023-08-25 08:50:38.001994+0300 localhost kernel[0]: (AppleACPIPlatform) (20160930/tbxfload-319)
2023-08-25 08:50:38.001995+0300 localhost kernel[0]: (AppleACPIPlatform) (20160930/tbxfload-319)
2023-08-25 08:50:38.006896+0300 localhost kernel[0]: (AppleACPIPlatform) ACPI Error:
2023-08-25 08:50:38.006897+0300 localhost kernel[0]: (AppleACPIPlatform) ACPI Error:
2023-08-25 08:50:38.007171+0300 localhost kernel[0]: (AppleACPIPlatform) 2 table load failures, 32 successful
2023-08-25 08:50:38.007172+0300 localhost kernel[0]: (AppleACPIPlatform) 2 table load failures, 32 successful
2023-08-25 08:50:38.007992+0300 localhost kernel[0]: (AppleACPIPlatform) (20160930/tbxfload-342)
2023-08-25 08:50:38.007993+0300 localhost kernel[0]: (AppleACPIPlatform) (20160930/tbxfload-342)

This _TTS ACPI Error disappears only when SSDT-SLEEP is disabled in OC/ACPI.

Sleep seems to work fine without this SSDT.

Do you know what this SSDT does? Why is it necessary for this machine.
The thing is every repo in github for a t480 or a t480s includes this SSDT in its configuration. I have posted issues in this but got no answers yet.

from t480-oc.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.