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 E15A9CDB47E for ; Wed, 18 Oct 2023 11:27:40 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231150AbjJRL1k (ORCPT ); Wed, 18 Oct 2023 07:27:40 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:47112 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230484AbjJRL1g (ORCPT ); Wed, 18 Oct 2023 07:27:36 -0400 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id B7940128 for ; Wed, 18 Oct 2023 04:27:33 -0700 (PDT) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 51D39C433C7; Wed, 18 Oct 2023 11:27:31 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1697628453; bh=cBS8iPeDj6slggeTZUr0Yc9TQoHt7y7o/45kNU8IDbE=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=kyEqx+qCg14/Xbq+If6ae+zR1j4HJDc0QV0W35oQcyFjvWOgz5s+oI1YPd7F1kdfO OtMbry/ZzEfK02V3hunNL7jihBznljtaSJENPjbQepqPKOOG5AyQgjgx3Hw+XjtAuS +O95gxyt9g71/7tHJ7ksjx9DWzdwp/LMLhxtYJ/qLqejTklXzjpbSB4F3liHo+nbu4 OBxS/RvnjPX7BP/VUdJawXLTYC/FSM8Kq0cnUoJk9mFM7jdVRh/8zUJHL1YagkEGX9 o53bmx8QNeRSopaKv29f1EdSSrgfTZcVlx/wxnm5ez76LFsM7c8A1EZUFTL4UpgEP2 IsRWBst2J5ZQA== Date: Wed, 18 Oct 2023 13:27:29 +0200 From: Simon Horman To: Yoshihiro Shimoda Cc: s.shtylyov@omp.ru, davem@davemloft.net, edumazet@google.com, kuba@kernel.org, pabeni@redhat.com, netdev@vger.kernel.org, linux-renesas-soc@vger.kernel.org Subject: Re: [PATCH net-next v3 2/2] rswitch: Add PM ops Message-ID: <20231018112729.GL1940501@kernel.org> References: <20231017113402.849735-1-yoshihiro.shimoda.uh@renesas.com> <20231017113402.849735-3-yoshihiro.shimoda.uh@renesas.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20231017113402.849735-3-yoshihiro.shimoda.uh@renesas.com> Precedence: bulk List-ID: X-Mailing-List: linux-renesas-soc@vger.kernel.org On Tue, Oct 17, 2023 at 08:34:02PM +0900, Yoshihiro Shimoda wrote: > Add PM ops for Suspend to Idle. When the system suspended, > the Ethernet Serdes's clock will be stopped. So, this driver needs > to re-initialize the Ethernet Serdes by phy_init() in > renesas_eth_sw_resume(). Otherwise, timeout happened in phy_power_on(). > > Signed-off-by: Yoshihiro Shimoda Reviewed-by: Simon Horman