Date: Thu, 17 Dec 2020 12:41:19 +0300 From: Vladimir Kondratyev <vladimir@kondratyev.su> To: Yuri Pankov <yuripv@yuripv.dev> Cc: current@freebsd.org Subject: Re: acpi_wmi noisy without EC Message-ID: <b1faa960-a5e4-12e5-4d51-458092ee2d70@kondratyev.su> In-Reply-To: <b68cc59a-5d15-9952-b631-e366b9c05648@yuripv.dev> References: <7dc142d3-1e0b-41d4-bdb4-7217bd09bbef@www.fastmail.com> <7b80877ae59fdd90f2f3b5dbf3db2113@kondratyev.su> <fb0874b1cf4510a2d797a83a01d55935@kondratyev.su> <5bb9ac64-ebab-4d22-8a43-1305b16f28cd@www.fastmail.com> <274d456e15ce621889bfe9e7eda190da@kondratyev.su> <dcf1cdb9-e79a-469a-99bc-cdb336352c17@www.fastmail.com> <b68cc59a-5d15-9952-b631-e366b9c05648@yuripv.dev>
next in thread | previous in thread | raw e-mail | index | archive | help
On 17.12.2020 11:24, Yuri Pankov wrote: > Yuri Pankov wrote: >> On Tue, Nov 17, 2020, at 4:00 PM, Vladimir Kondratyev wrote: >>> On 2020-11-17 15:29, Yuri Pankov wrote: >>>> On Tue, Nov 17, 2020, at 11:07 AM, Vladimir Kondratyev wrote: >>>>> On 2020-11-17 10:57, Vladimir Kondratyev wrote: >>>>>> On 2020-11-17 03:00, Yuri Pankov wrote: >>>>>>> I have started seeing the following on boot since some time: >>>>>>> >>>>>>> acpi_wmi0: <ACPI-WMI mapping> on acpi0 >>>>>>> acpi_wmi0: cannot find EC device >>>>>>> device_attach: acpi_wmi0 attach returned 6 >>>>>>> acpi_wmi0: <ACPI-WMI mapping> on acpi0 >>>>>>> acpi_wmi0: cannot find EC device >>>>>>> device_attach: acpi_wmi0 attach returned 6 >>>>>>> acpi_wmi0: <ACPI-WMI mapping> on acpi0 >>>>>>> acpi_wmi0: cannot find EC device >>>>>>> device_attach: acpi_wmi0 attach returned 6 >>>>>>> acpi_wmi0: <ACPI-WMI mapping> on acpi0 >>>>>>> acpi_wmi0: cannot find EC device >>>>>>> device_attach: acpi_wmi0 attach returned 6 >>>>>>> >>>>>>> Likely following this commit: >>>>>>> >>>>>>> commit 708d048ccfdacf6199cc08a56aa05a9c899441fd >>>>>>> Author: Vladimir Kondratyev <wulf@FreeBSD.org> >>>>>>> Date:=C2=A0=C2=A0 Sat Oct 31 22:19:39 2020 +0000 >>>>>>> >>>>>>> =C2=A0=C2=A0=C2=A0=C2=A0 acpi_wmi(4): Add ACPI_PNP_INFO >>>>>>> >>>>>>> While the reason is obvious -- there's no EC in this system >>>>>>> (Gigabyte >>>>>>> X299X AORUS MASTER desktop motherboard), at least searching the >>>>>>> `acpidump -dt` output doesn't show any PNP0C09 entries -- it >>>>>>> certainly >>>>>>> looks like "something is broken" when first noticed.=C2=A0 I wond= er if we >>>>>>> could/should handle this gracefully -- no EC, do nothing, simply >>>>>>> exit? >>>>>> >>>>>> Following patch should ignore missing EC like Linux does. Could yo= u >>>>>> test it? >>>>>> >>>>>> diff --git a/sys/dev/acpi_support/acpi_wmi.c >>>>>> b/sys/dev/acpi_support/acpi_wmi.c >>>>>> index 379cfd1705f1..efae96cdcc9a 100644 >>>>>> --- a/sys/dev/acpi_support/acpi_wmi.c >>>>>> +++ b/sys/dev/acpi_support/acpi_wmi.c >>>>>> @@ -246,7 +246,7 @@ acpi_wmi_attach(device_t dev) >>>>>> =C2=A0 if ((sc->ec_dev =3D devclass_get_device(devclass_find("acpi= _ec"), 0)) >>>>>> =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 =3D=3D NULL) >>>>>> =C2=A0 device_printf(dev, "cannot find EC device\n"); >>>>>> - else if (ACPI_FAILURE((status =3D >>>>>> AcpiInstallNotifyHandler(sc->wmi_handle, >>>>>> + if (ACPI_FAILURE((status =3D AcpiInstallNotifyHandler(sc->wmi_ha= ndle, >>>>>> =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 ACPI_DEVICE_NOTIFY, acpi_wmi_notify= _handler, sc)))) >>>>>> =C2=A0 device_printf(sc->wmi_dev, "couldn't install notify handler= - >>>>>> %s\n", >>>>>> =C2=A0=C2=A0=C2=A0=C2=A0=C2=A0 AcpiFormatException(status)); >>>>>> @@ -701,6 +701,8 @@ acpi_wmi_ec_handler(UINT32 function, >>>>>> ACPI_PHYSICAL_ADDRESS address, >>>>>> =C2=A0 return (AE_BAD_PARAMETER); >>>>>> =C2=A0 if (address + (width / 8) - 1 > 0xFF) >>>>>> =C2=A0 return (AE_BAD_ADDRESS); >>>>>> + if (sc->ec_dev =3D=3D NULL) >>>>>> + return (AE_NOT_FOUND); >>>>>> =C2=A0 if (function =3D=3D ACPI_READ) >>>>>> =C2=A0 *value =3D 0; >>>>>> =C2=A0 ec_addr =3D address; >>>>> >>>>> @#@##! Web client ate all the tabs. >>>>> >>>>> Patch is in attachment. >>>> >>>> Output changed, though it's still somewhat noisy -- I guess there >>>> isn't a way to NOT report the device that we are not going to attach >>>> to, or do that e.g. only for verbose boot? >>>> >>>> acpi_wmi0: <ACPI-WMI mapping> on acpi0 >>>> acpi_wmi0: cannot find EC device >>>> acpi_wmi0: Embedded MOF found >>>> ACPI: \134GSA1.WQCC: 1 arguments were passed to a non-method ACPI >>>> object (Buffer) (20201113/nsarguments-361) >>>> acpi_wmi1: <ACPI-WMI mapping> on acpi0 >>>> acpi_wmi1: cannot find EC device >>>> acpi_wmi2: <ACPI-WMI mapping> on acpi0 >>>> acpi_wmi2: cannot find EC device >>>> acpi_wmi3: <ACPI-WMI mapping> on acpi0 >>>> acpi_wmi3: cannot find EC device >>> >>> acpi_wmi does not try to attach to EC node (PNP0C09). It only queries= it >>> in OpRegion handler. >>> WMI's _HID/_CID is PNP0C14. According to your output, acpi_wmi has >>> successfully attached to 4 nodes. >> >> Oh great, I misunderstood then.=C2=A0 And indeed, sysctl -b >> dev.acpi_wmi.0.bmof | bmf2mof provides some interesting information.=C2= =A0 >> All other 3 instances do not though.=C2=A0 In any case, it seems to wo= rk now. >> >>> Verbosity can be reduced with attached patch if current level is too >>> high for you. >> >> Works for me both ways, I simply had the wrong impression that if we >> don't have EC, we can't attach at all. >=20 > Could you commit this, or is it incomplete fix? I did some tests with ACER ACPI extras which left functional after OPregion handler had been disabled, so I think, fix is complete. I have created a phabricator review: https://reviews.freebsd.org/D27653
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?b1faa960-a5e4-12e5-4d51-458092ee2d70>