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 7E84EC636CC for ; Tue, 31 Jan 2023 20:59:18 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231776AbjAaU7R (ORCPT ); Tue, 31 Jan 2023 15:59:17 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:34072 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231569AbjAaU7O (ORCPT ); Tue, 31 Jan 2023 15:59:14 -0500 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 177FA4215; Tue, 31 Jan 2023 12:58:56 -0800 (PST) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 805A661644; Tue, 31 Jan 2023 20:58:54 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id D452BC433EF; Tue, 31 Jan 2023 20:58:53 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1675198733; bh=v2aNUJ/T4YSeNM0q6YWwh1EWWI/zszOdwZnCzdFREvg=; h=In-Reply-To:References:Subject:From:Cc:To:Date:From; b=Scdq7PExbS8blNff2gsJJz/SBWZsyf9KXGKfuctmo1vRyVLRX7OyOa7NodvUItazn xQRSPUsyjG0Yz5L7sYwVEvb4cdTKUxiWt5TR9JpLRK4t6MjtHm+Tm0ljk6jHz+6Eck m+WozhnAZDPtvOFLAgaXTMNYiyDmYZ2TFjr/FvZ+y6aqKIoQeFEi77p6VtklYVN0nB DtAVmZbNyosnnndblShsmK9VLjc4A0EhYBeH+LwQsHRlvaGkTixYl+hbnpdPI72JBD 9wDu0XSa2w7tSkAtVkTmLEr6wk1oOl23x04cvEga/v+W4Szhw9CA+gnKgfp6F1NQR8 qDXNvws/f/tIQ== Message-ID: Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable In-Reply-To: <20230131092432.122711-1-dmitry.baryshkov@linaro.org> References: <20230131092432.122711-1-dmitry.baryshkov@linaro.org> Subject: Re: [PATCH 1/2] clk: qcom: gpucc-sc7180: fix clk_dis_wait being programmed for CX GDSC From: Stephen Boyd Cc: linux-arm-msm@vger.kernel.org, linux-clk@vger.kernel.org To: Andy Gross , Bjorn Andersson , Dmitry Baryshkov , Konrad Dybcio , Michael Turquette , Taniya Das Date: Tue, 31 Jan 2023 12:58:51 -0800 User-Agent: alot/0.10 Precedence: bulk List-ID: X-Mailing-List: linux-clk@vger.kernel.org Quoting Dmitry Baryshkov (2023-01-31 01:24:31) > The gdsc_init() function will rewrite the CLK_DIS_WAIT field while > registering the GDSC (writing the value 0x2 by default). This will > override the setting done in the driver's probe function. >=20 > Set cx_gdsc.clk_dis_wait_val to 8 to follow the intention of the probe > function. >=20 > Fixes: 745ff069a49c ("clk: qcom: Add graphics clock controller driver for= SC7180") > Signed-off-by: Dmitry Baryshkov > --- Reviewed-by: Stephen Boyd