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 23FFAEE14D0 for ; Wed, 6 Sep 2023 21:38:45 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S244836AbjIFVir (ORCPT ); Wed, 6 Sep 2023 17:38:47 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:52926 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S244223AbjIFVip (ORCPT ); Wed, 6 Sep 2023 17:38:45 -0400 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 6FF381BC7; Wed, 6 Sep 2023 14:38:40 -0700 (PDT) Received: by smtp.kernel.org (Postfix) with ESMTPSA id F2701C433C7; Wed, 6 Sep 2023 21:38:39 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1694036320; bh=aDQGJDCMtGaOqhnrLofefzZQbrTsD2xBYhu/GStXyWY=; h=In-Reply-To:References:Subject:From:Cc:To:Date:From; b=j68qJLZvc3KZScwndStpdSteTY9TCR4fsPCiaBsl9MkpSJHOnX1xvidYQ5ISacnZb 4VfPyaapvizkroFty7yLbi/KbX2rn5HJsYK1dAFcNwbsXiEDm7uinkR5jTHaZn4qLs TG9rMrI42d0+pH0XlWDaLT3a3rtrm9OFGuHJw/kTX0MaEIdzBt5fPx4DeReOKmvjqY 6MUffV8ViAhiVTqfcu3YvL2yKlAwMuJfSB+U3QMFHec7ZruVUwteYwCY/5LBmk3Ez/ LxgvtIg73oKlTnzVGP7tzpOMcaFJYx7g1X35z0rjvqRrH6VPoWC+VwMapqql6s7E97 SfKHOUTyDMlDg== Message-ID: Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable In-Reply-To: <20230826125308.462328-6-cristian.marussi@arm.com> References: <20230826125308.462328-1-cristian.marussi@arm.com> <20230826125308.462328-6-cristian.marussi@arm.com> Subject: Re: [PATCH v2 5/6] clk: scmi: Add support for .is_enabled clk_ops From: Stephen Boyd Cc: sudeep.holla@arm.com, james.quinlan@broadcom.com, f.fainelli@gmail.com, vincent.guittot@linaro.org, etienne.carriere@foss.st.com, peng.fan@oss.nxp.com, chuck.cannon@nxp.com, souvik.chakravarty@arm.com, nicola.mazzucato@arm.com, Cristian Marussi , Michael Turquette , linux-clk@vger.kernel.org To: Cristian Marussi , linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Date: Wed, 06 Sep 2023 14:38:37 -0700 User-Agent: alot/0.10 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Quoting Cristian Marussi (2023-08-26 05:53:07) > Add support for .is_enabled atomic clk_ops using the related SCMI Clock > operation in atomic mode, if available. >=20 > Note that the .is_enabled callback will be supported by this SCMI Clock > driver only if the configured underlying SCMI transport does support atom= ic > operations. >=20 > CC: Michael Turquette > CC: Stephen Boyd > CC: linux-clk@vger.kernel.org > Signed-off-by: Cristian Marussi > --- Acked-by: Stephen Boyd