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 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 smtp.lore.kernel.org (Postfix) with ESMTPS id 7EEE4D132A9 for ; Mon, 4 Nov 2024 10:46:40 +0000 (UTC) Received: from gabe.freedesktop.org (localhost [127.0.0.1]) by gabe.freedesktop.org (Postfix) with ESMTP id 012C510E1AF; Mon, 4 Nov 2024 10:46:40 +0000 (UTC) Authentication-Results: gabe.freedesktop.org; dkim=pass (2048-bit key; secure) header.d=linutronix.de header.i=@linutronix.de header.b="1ovJRJ/T"; dkim=permerror (0-bit key) header.d=linutronix.de header.i=@linutronix.de header.b="ZfPAEvmB"; dkim-atps=neutral Received: from galois.linutronix.de (Galois.linutronix.de [193.142.43.55]) by gabe.freedesktop.org (Postfix) with ESMTPS id D4E3310E1AF for ; Mon, 4 Nov 2024 10:46:37 +0000 (UTC) From: John Ogness DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020; t=1730717194; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=lUMq9d/Y/ah4RgFgHvJiQ6t1sVUNjgH2DIyO/HDYra0=; b=1ovJRJ/TBkp7r3/PUwP9+odLJ39BlWZTIS/0NdCR92N2FTvB5jtyF2CI07zGwxK5Er8dFf lVl58oqFRdTuTa/xkQqhktnzG4tilhVUsY/IqY3Q3neCIyNfPDjbKOrqCp6laEPleyjUC0 ykjdVCyJB492DT+wzPIqAIyaOdYIeC6hehXmzMvefhSyfWvo6gPq/Sdyv8iTf/4me4RcKI ZBqIHczL2eevHojSZWJIAYqX3Vmc99TVkyP0/T9i/qwIgn68rEmW5kRS4gubS6GFufda+T RMMqvKzi2uYzT2P+ejTDQwckQtwA/9xB3883JypMV+QyFepN5JQUkigtxUlx2w== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020e; t=1730717194; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=lUMq9d/Y/ah4RgFgHvJiQ6t1sVUNjgH2DIyO/HDYra0=; b=ZfPAEvmBmdqXqhY0/Fy+yfJ4atEMo8/7475YTV5JyDS79wAY3X11OGPqy6XBZeEDFG3B4S mBaDtegd+X1UDhBA== To: Jocelyn Falempe , Petr Mladek Cc: Maarten Lankhorst , Maxime Ripard , Thomas Zimmermann , David Airlie , Daniel Vetter , Javier Martinez Canillas , "Guilherme G . Piccoli" , bluescreen_avenger@verizon.net, Caleb Connolly , dri-devel@lists.freedesktop.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v5 5/6] drm/log: Implement suspend/resume In-Reply-To: References: <20241023121145.1321921-1-jfalempe@redhat.com> <20241023121145.1321921-6-jfalempe@redhat.com> <27c1a6bf-d1e4-469f-a0d4-3e74ab0d0a07@redhat.com> Date: Mon, 04 Nov 2024 11:52:33 +0106 Message-ID: <84o72vcm46.fsf@jogness.linutronix.de> MIME-Version: 1.0 Content-Type: text/plain X-BeenThere: dri-devel@lists.freedesktop.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Direct Rendering Infrastructure - Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dri-devel-bounces@lists.freedesktop.org Sender: "dri-devel" On 2024-11-04, Jocelyn Falempe wrote: > I looked at what serial drivers are doing, because they can also have > their clock gated in suspend. > > Would calling console_stop() in the suspend and console_start() in > resume work ? Yes. That is what it is for. John Ogness