From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-10.1 required=3.0 tests=BAYES_00,DKIM_INVALID, DKIM_SIGNED,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI, MENTIONS_GIT_HOSTING,NICE_REPLY_A,SPF_HELO_NONE,SPF_PASS,USER_AGENT_SANE_1 autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id A2E5DC433B4 for ; Sat, 10 Apr 2021 15:51:36 +0000 (UTC) Received: from gabe.freedesktop.org (gabe.freedesktop.org [131.252.210.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id E843560231 for ; Sat, 10 Apr 2021 15:51:35 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org E843560231 Authentication-Results: mail.kernel.org; dmarc=fail (p=quarantine dis=none) header.from=spliet.org Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=nouveau-bounces@lists.freedesktop.org Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id F420E6E529; Sat, 10 Apr 2021 15:51:34 +0000 (UTC) Received: from mupuf.org (mupuf.org [167.71.42.210]) by gabe.freedesktop.org (Postfix) with ESMTP id 057106E529 for ; Sat, 10 Apr 2021 15:51:32 +0000 (UTC) Received: from [IPv6:2a01:4b00:86b9:100:3a72:2134:f4fb:f726] (unknown [IPv6:2a01:4b00:86b9:100:3a72:2134:f4fb:f726]) by Neelix.spliet.org (Postfix) with ESMTPSA id 5964DF20111; Sat, 10 Apr 2021 16:51:29 +0100 (BST) DKIM-Filter: OpenDKIM Filter v2.11.0 Neelix.spliet.org 5964DF20111 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=spliet.org; s=default; t=1618069889; bh=k2lVuNhhyJZ9m1XrTo42m98YzGLcO7suMUeViVTMkQk=; h=Subject:To:Cc:References:From:Date:In-Reply-To:From; b=gBCPJoSz0yL9JpfaOx5UYCv5PCkdSVV0o2wQUAQVB0dP9ra1Tc7vfUTd4aVWQpHMn MvJ3ZE/ghE90wQGRwjiC0n5Bpg0AcZ41Ka2ibuOmkN7FQFSVst3xJK//ASD/P5dcpL iGNKsMJvNdcXp22p/zDect3Q+yFTZBVwNb55rEQQ= To: Karol Herbst , Kai-Heng Feng References: <20201214060621.1102931-1-kai.heng.feng@canonical.com> <20201216124726.2842197-1-kai.heng.feng@canonical.com> From: Roy Spliet Message-ID: Date: Sat, 10 Apr 2021 16:51:27 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.8.1 MIME-Version: 1.0 In-Reply-To: Content-Language: en-US X-Virus-Scanned: clamav-milter 0.103.2 at Neelix X-Virus-Status: Clean Subject: Re: [Nouveau] [PATCH v2] ALSA: hda: Continue to probe when codec probe fails X-BeenThere: nouveau@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Nouveau development list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: "moderated list:SOUND" , Kai Vehmanen , Takashi Iwai , nouveau , Pierre-Louis Bossart , tiwai@suse.com, Alex Deucher , Alan Stern , Mike Rapoport , Linux PCI , Bjorn Helgaas , Jaroslav Kysela , open list Content-Transfer-Encoding: 7bit Content-Type: text/plain; charset="us-ascii"; Format="flowed" Errors-To: nouveau-bounces@lists.freedesktop.org Sender: "Nouveau" Reviving this thread as we have another user (rightfully) complaining on IRC about this. The way I see it there's two issues: 1) snd_hda_intel not allowing runpm (or w/e vgaswitcheroo needs) when there's missing codecs, inhibiting the entire GPU from performing runpm. This needlessly wastes lots of battery power. 2) HDMI audio not working on such machines unless it was plugged in at boot-time. The original workarounds proposed by Kai-Heng seem to fix 1), which is progress. I don't see a reason why that should be held off even if it doesn't fix 2). To fix 2), more work is needed. On a high level, I suspect nouveau should start controlling the enabling/disabling of the HDA controller based on connector events and/or connector state at module load. Currently the PCI quirk seems to enable it wholesale, and I don't know why. If no GPU driver is loaded, it's pointless to turn the HDA device on. The blob presumably doesn't need this either, as it can control the device just as well as nouveau. If it doesn't, NVIDIA should fix it rather than rely on this quirk. The only reason I can think of is that snd_hda_intel or vgaswitcheroo isn't prepared for hot(un)plugging (or alternatively reprobing) devices. Without that, we presumably won't solve issue 2). Can I ask someone with more technical knowledge of snd_hda_intel and vgaswitcheroo to brainstorm about the possible challenges of nouveau taking matters into its own hand rather than keeping this PCI quirk around? Roy Op 04-01-2021 om 13:20 schreef Karol Herbst: > On Tue, Dec 22, 2020 at 3:50 AM Kai-Heng Feng > wrote: >> >> On Tue, Dec 22, 2020 at 1:56 AM Ilia Mirkin wrote: >>> >>> On Mon, Dec 21, 2020 at 11:33 AM Kai-Heng Feng >>> wrote: >>>> >>>> [+Cc nouveau] >>>> >>>> On Fri, Dec 18, 2020 at 4:06 PM Takashi Iwai wrote: >>>> [snip] >>>>>> Quite possibly the system doesn't power up HDA controller when there's >>>>>> no external monitor. >>>>>> So when it's connected to external monitor, it's still needed for HDMI audio. >>>>>> Let me ask the user to confirm this. >>>>> >>>>> Yeah, it's the basic question whether the HD-audio is supposed to work >>>>> on this machine at all. If yes, the current approach we take makes >>>>> less sense - instead we should rather make the HD-audio controller >>>>> working. >>>> >>>> Yea, confirmed that the Nvidia HDA works when HDMI is connected prior boot. >>>> >>>>>>> - The second problem is that pci_enable_device() ignores the error >>>>>>> returned from pci_set_power_state() if it's -EIO. And the >>>>>>> inaccessible access error returns -EIO, although it's rather a fatal >>>>>>> problem. So the driver believes as the PCI device gets enabled >>>>>>> properly. >>>>>> >>>>>> This was introduced in 2005, by Alan's 11f3859b1e85 ("[PATCH] PCI: Fix >>>>>> regression in pci_enable_device_bars") to fix UHCI controller. >>>>>> >>>>>>> >>>>>>> - The third problem is that HD-audio driver blindly believes the >>>>>>> codec_mask read from the register even if it's a read failure as I >>>>>>> already showed. >>>>>> >>>>>> This approach has least regression risk. >>>>> >>>>> Yes, but it assumes that HD-audio is really non-existent. >>>> >>>> I really don't know any good approach to address this. >>>> On Windows, HDA PCI is "hidden" until HDMI cable is plugged, then the >>>> driver will flag the magic bit to make HDA audio appear on the PCI >>>> bus. >>>> IIRC the current approach is to make nouveau and device link work. >>> >>> I don't have the full context of this discussion, but the kernel >>> force-enables the HDA subfunction nowadays, irrespective of nouveau or >>> nvidia or whatever: >> >> That's the problem. >> >> The nvidia HDA controller on the affected system only gets its power >> after HDMI cable plugged, so the probe on boot fails. >> > > it might be that the code to enable the sub function is a bit broken > :/ but it should work. Maybe the quirk_nvidia_hda function needs to be > called on more occasions? No idea. > >> Kai-Heng >> >>> >>> https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/drivers/pci/quirks.c?h=v5.10#n5267 >>> >>> Cheers, >>> >>> -ilia >> _______________________________________________ >> Nouveau mailing list >> Nouveau@lists.freedesktop.org >> https://lists.freedesktop.org/mailman/listinfo/nouveau >> > > _______________________________________________ > Nouveau mailing list > Nouveau@lists.freedesktop.org > https://lists.freedesktop.org/mailman/listinfo/nouveau > _______________________________________________ Nouveau mailing list Nouveau@lists.freedesktop.org https://lists.freedesktop.org/mailman/listinfo/nouveau