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 Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 18064C83F2C for ; Mon, 4 Sep 2023 07:59:30 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1352170AbjIDH7b (ORCPT ); Mon, 4 Sep 2023 03:59:31 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:43540 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S236995AbjIDH7a (ORCPT ); Mon, 4 Sep 2023 03:59:30 -0400 Received: from sin.source.kernel.org (sin.source.kernel.org [145.40.73.55]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id D4E5FE58 for ; Mon, 4 Sep 2023 00:59:06 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by sin.source.kernel.org (Postfix) with ESMTPS id 4426ACE0E12 for ; Mon, 4 Sep 2023 07:58:59 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id D9765C433C7; Mon, 4 Sep 2023 07:58:56 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1693814337; bh=wshyRHP09R8yIfKuZEEfRI3UmWKQ5VuTL5f4lHcN7xs=; h=Date:From:To:Subject:In-Reply-To:References:Cc:From; b=JIacjII79U2oHT6JEn5aP51LQjnGqqVrh2n6Y0A1PUpKsNQOoH/8sjAunOtu82Ksz 2G4dA0ZjeHxiK/ie3Tn3l6zKafdB6yiOcbg399T/4UcQFTGsbkDBn9bCgCTdPYWRRc G/NWixIYMPCSplvDrwDin9lsV0sir/m7IF0Vd01cb8mvuF3QoxeZrmJ+j+jp38ynhK 2Ib9PyYeOZLYKZJlkVUoN/+9E9ejfUm5yClAVhRUVC3+i5Jh4Ia/kTk7/dJJ+aSmpj chpSxgkCLQSh4U7twO9w6mkvzbKVFbYo7oQvhVGgBKxyZ0s807x76ZkciglyDZrWon r/zP86uF/Z+Ng== Message-ID: <84acd2a9724fd45a5dff355b3b699b49.mripard@kernel.org> Date: Mon, 04 Sep 2023 07:58:54 +0000 From: "Maxime Ripard" To: "Douglas Anderson" Subject: Re: [RFT PATCH 3/6] drm/vc4: Call drm_atomic_helper_shutdown() at shutdown time In-Reply-To: <20230901163944.RFT.3.I10dbe099fb1059d304ba847d19fc45054f7ffe9f@changeid> References: <20230901163944.RFT.3.I10dbe099fb1059d304ba847d19fc45054f7ffe9f@changeid> Cc: airlied@gmail.com, daniel@ffwll.ch, dri-devel@lists.freedesktop.org, emma@anholt.net, linux-kernel@vger.kernel.org, "Maxime Ripard" Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, 1 Sep 2023 16:39:54 -0700, Douglas Anderson wrote: > Based on grepping through the source code these drivers appear to be > missing a call to drm_atomic_helper_shutdown() at system shutdown > time. Among other things, this means that if a panel is in use that it > won't be cleanly powered off at system shutdown time. > > > [ ... ] Acked-by: Maxime Ripard Thanks! Maxime