View previous topic :: View next topic |
Author |
Message |
DeIM Guru
Joined: 11 Apr 2006 Posts: 439
|
Posted: Wed Feb 02, 2022 4:57 pm Post subject: [solved] nct6775 monitoring driver conflicts with ACPI |
|
|
Code: | [ 2.995102] nct6775: Enabling hardware monitor logical device mappings.
[ 2.995113] nct6775: Found NCT6791D or compatible chip at 0x2e:0x290
[ 2.995116] ACPI Warning: SystemIO range 0x0000000000000295-0x0000000000000296 conflicts with OpRegion 0x0000000000000290-0x0000000000000299 (\_GPE.HWM) (20210730/utaddress-204)
[ 2.995120] ACPI: OSL: Resource conflict; ACPI support missing from driver?
[ 2.995121] ACPI: OSL: Resource conflict: System may be unstable or behave erratically |
tried acpi_enforce_resources=lax with same results
Is there any solution? Didn't found any on net.
Last edited by DeIM on Wed Feb 02, 2022 7:13 pm; edited 1 time in total |
|
Back to top |
|
|
fedeliallalinea Administrator
Joined: 08 Mar 2003 Posts: 31194 Location: here
|
Posted: Wed Feb 02, 2022 5:05 pm Post subject: |
|
|
Have you seen this bug report yet? _________________ Questions are guaranteed in life; Answers aren't. |
|
Back to top |
|
|
Anon-E-moose Watchman
Joined: 23 May 2008 Posts: 6144 Location: Dallas area
|
Posted: Wed Feb 02, 2022 5:10 pm Post subject: |
|
|
Try acpi_enforce_resources=no instead of lax.
Edit to add: been working fine for over a year on my asus _________________ PRIME x570-pro, 3700x, 6.1 zen kernel
gcc 13, profile 17.0 (custom bare multilib), openrc, wayland |
|
Back to top |
|
|
DeIM Guru
Joined: 11 Apr 2006 Posts: 439
|
Posted: Wed Feb 02, 2022 5:16 pm Post subject: |
|
|
Thanks, it's new to me, will give it a chance |
|
Back to top |
|
|
Anon-E-moose Watchman
Joined: 23 May 2008 Posts: 6144 Location: Dallas area
|
Posted: Wed Feb 02, 2022 5:26 pm Post subject: |
|
|
Code: | acpi_enforce_resources= [ACPI]
{ strict | lax | no }
Check for resource conflicts between native drivers
and ACPI OperationRegions (SystemIO and SystemMemory
only). IO ports and memory declared in ACPI might be
used by the ACPI subsystem in arbitrary AML code and
can interfere with legacy drivers.
strict (default): access to resources claimed by ACPI
is denied; legacy drivers trying to access reserved
resources will fail to bind to device using them.
lax: access to resources claimed by ACPI is allowed;
legacy drivers trying to access reserved resources
will bind successfully but a warning message is logged.
no: ACPI OperationRegions are not marked as reserved,
no further checks are performed. |
_________________ PRIME x570-pro, 3700x, 6.1 zen kernel
gcc 13, profile 17.0 (custom bare multilib), openrc, wayland |
|
Back to top |
|
|
DeIM Guru
Joined: 11 Apr 2006 Posts: 439
|
Posted: Wed Feb 02, 2022 7:13 pm Post subject: |
|
|
acpi_enforce_resources=no solved this. Thank You all! I had long time issue with this on my PC |
|
Back to top |
|
|
|