From: abhinavk@codeaurora.org
To: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Cc: Rob Clark <robdclark@gmail.com>, Sean Paul <sean@poorly.run>,
Jonathan Marek <jonathan@marek.ca>,
Michael Turquette <mturquette@baylibre.com>,
Stephen Boyd <sboyd@kernel.org>,
linux-arm-msm@vger.kernel.org, dri-devel@lists.freedesktop.org,
David Airlie <airlied@linux.ie>, Daniel Vetter <daniel@ffwll.ch>,
freedreno@lists.freedesktop.org, linux-clk@vger.kernel.org
Subject: Re: [Freedreno] [PATCH v2 06/28] drm/msm/dsi: drop multiple pll enable_seq support
Date: Fri, 26 Mar 2021 10:49:32 -0700 [thread overview]
Message-ID: <c396bdee67acbf0f7f6be3d75be6d3a7@codeaurora.org> (raw)
In-Reply-To: <20210324151846.2774204-7-dmitry.baryshkov@linaro.org>
On 2021-03-24 08:18, Dmitry Baryshkov wrote:
> The only PLL using multiple enable sequences is the 28nm PLL, which
> just
> does the single step in the loop. Push that support back into the PLL
> code.
>
> Signed-off-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Reviewed-by: Abhinav Kumar <abhinavk@codeaurora.org>
> ---
> drivers/gpu/drm/msm/dsi/phy/dsi_phy_14nm.c | 3 +-
> drivers/gpu/drm/msm/dsi/phy/dsi_phy_28nm.c | 23 +++++--
> .../gpu/drm/msm/dsi/phy/dsi_phy_28nm_8960.c | 3 +-
> drivers/gpu/drm/msm/dsi/phy/dsi_pll.c | 65 +++++++------------
> drivers/gpu/drm/msm/dsi/phy/dsi_pll.h | 4 +-
> 5 files changed, 42 insertions(+), 56 deletions(-)
>
> diff --git a/drivers/gpu/drm/msm/dsi/phy/dsi_phy_14nm.c
> b/drivers/gpu/drm/msm/dsi/phy/dsi_phy_14nm.c
> index 6a63901da7a4..4386edfa91fe 100644
> --- a/drivers/gpu/drm/msm/dsi/phy/dsi_phy_14nm.c
> +++ b/drivers/gpu/drm/msm/dsi/phy/dsi_phy_14nm.c
> @@ -1087,8 +1087,7 @@ struct msm_dsi_pll *msm_dsi_pll_14nm_init(struct
> platform_device *pdev, int id)
>
> pll_14nm->vco_delay = 1;
>
> - pll->en_seq_cnt = 1;
> - pll->enable_seqs[0] = dsi_pll_14nm_enable_seq;
> + pll->enable_seq = dsi_pll_14nm_enable_seq;
>
> ret = pll_14nm_register(pll_14nm);
> if (ret) {
> diff --git a/drivers/gpu/drm/msm/dsi/phy/dsi_phy_28nm.c
> b/drivers/gpu/drm/msm/dsi/phy/dsi_phy_28nm.c
> index 2f502efa4dd5..760cf7956fa2 100644
> --- a/drivers/gpu/drm/msm/dsi/phy/dsi_phy_28nm.c
> +++ b/drivers/gpu/drm/msm/dsi/phy/dsi_phy_28nm.c
> @@ -311,7 +311,7 @@ static const struct clk_ops
> clk_ops_dsi_pll_28nm_vco = {
> /*
> * PLL Callbacks
> */
> -static int dsi_pll_28nm_enable_seq_hpm(struct msm_dsi_pll *pll)
> +static int _dsi_pll_28nm_enable_seq_hpm(struct msm_dsi_pll *pll)
> {
> struct dsi_pll_28nm *pll_28nm = to_pll_28nm(pll);
> struct device *dev = &pll_28nm->pdev->dev;
> @@ -386,6 +386,19 @@ static int dsi_pll_28nm_enable_seq_hpm(struct
> msm_dsi_pll *pll)
> return locked ? 0 : -EINVAL;
> }
>
> +static int dsi_pll_28nm_enable_seq_hpm(struct msm_dsi_pll *pll)
> +{
> + int i, ret;
> +
> + for (i = 0; i < 3; i++) {
> + ret = _dsi_pll_28nm_enable_seq_hpm(pll);
> + if (!ret)
> + return 0;
> + }
> +
> + return ret;
> +}
> +
> static int dsi_pll_28nm_enable_seq_lp(struct msm_dsi_pll *pll)
> {
> struct dsi_pll_28nm *pll_28nm = to_pll_28nm(pll);
> @@ -619,15 +632,11 @@ struct msm_dsi_pll *msm_dsi_pll_28nm_init(struct
> platform_device *pdev,
> if (type == MSM_DSI_PHY_28NM_HPM) {
> pll_28nm->vco_delay = 1;
>
> - pll->en_seq_cnt = 3;
> - pll->enable_seqs[0] = dsi_pll_28nm_enable_seq_hpm;
> - pll->enable_seqs[1] = dsi_pll_28nm_enable_seq_hpm;
> - pll->enable_seqs[2] = dsi_pll_28nm_enable_seq_hpm;
> + pll->enable_seq = dsi_pll_28nm_enable_seq_hpm;
> } else if (type == MSM_DSI_PHY_28NM_LP) {
> pll_28nm->vco_delay = 1000;
>
> - pll->en_seq_cnt = 1;
> - pll->enable_seqs[0] = dsi_pll_28nm_enable_seq_lp;
> + pll->enable_seq = dsi_pll_28nm_enable_seq_lp;
> } else {
> DRM_DEV_ERROR(&pdev->dev, "phy type (%d) is not 28nm\n", type);
> return ERR_PTR(-EINVAL);
> diff --git a/drivers/gpu/drm/msm/dsi/phy/dsi_phy_28nm_8960.c
> b/drivers/gpu/drm/msm/dsi/phy/dsi_phy_28nm_8960.c
> index 4a40513057e8..2cfb7edf91d8 100644
> --- a/drivers/gpu/drm/msm/dsi/phy/dsi_phy_28nm_8960.c
> +++ b/drivers/gpu/drm/msm/dsi/phy/dsi_phy_28nm_8960.c
> @@ -515,8 +515,7 @@ struct msm_dsi_pll
> *msm_dsi_pll_28nm_8960_init(struct platform_device *pdev,
> pll->save_state = dsi_pll_28nm_save_state;
> pll->restore_state = dsi_pll_28nm_restore_state;
>
> - pll->en_seq_cnt = 1;
> - pll->enable_seqs[0] = dsi_pll_28nm_enable_seq;
> + pll->enable_seq = dsi_pll_28nm_enable_seq;
>
> ret = pll_28nm_register(pll_28nm);
> if (ret) {
> diff --git a/drivers/gpu/drm/msm/dsi/phy/dsi_pll.c
> b/drivers/gpu/drm/msm/dsi/phy/dsi_pll.c
> index 3dc65877fa10..9e9fa90bf504 100644
> --- a/drivers/gpu/drm/msm/dsi/phy/dsi_pll.c
> +++ b/drivers/gpu/drm/msm/dsi/phy/dsi_pll.c
> @@ -5,46 +5,6 @@
>
> #include "dsi_pll.h"
>
> -static int dsi_pll_enable(struct msm_dsi_pll *pll)
> -{
> - int i, ret = 0;
> -
> - /*
> - * Certain PLLs do not allow VCO rate update when it is on.
> - * Keep track of their status to turn on/off after set rate success.
> - */
> - if (unlikely(pll->pll_on))
> - return 0;
> -
> - /* Try all enable sequences until one succeeds */
> - for (i = 0; i < pll->en_seq_cnt; i++) {
> - ret = pll->enable_seqs[i](pll);
> - DBG("DSI PLL %s after sequence #%d",
> - ret ? "unlocked" : "locked", i + 1);
> - if (!ret)
> - break;
> - }
> -
> - if (ret) {
> - DRM_ERROR("DSI PLL failed to lock\n");
> - return ret;
> - }
> -
> - pll->pll_on = true;
> -
> - return 0;
> -}
> -
> -static void dsi_pll_disable(struct msm_dsi_pll *pll)
> -{
> - if (unlikely(!pll->pll_on))
> - return;
> -
> - pll->disable_seq(pll);
> -
> - pll->pll_on = false;
> -}
> -
> /*
> * DSI PLL Helper functions
> */
> @@ -64,15 +24,36 @@ long msm_dsi_pll_helper_clk_round_rate(struct
> clk_hw *hw,
> int msm_dsi_pll_helper_clk_prepare(struct clk_hw *hw)
> {
> struct msm_dsi_pll *pll = hw_clk_to_pll(hw);
> + int ret = 0;
>
> - return dsi_pll_enable(pll);
> + /*
> + * Certain PLLs do not allow VCO rate update when it is on.
> + * Keep track of their status to turn on/off after set rate success.
> + */
> + if (unlikely(pll->pll_on))
> + return 0;
> +
> + ret = pll->enable_seq(pll);
> + if (ret) {
> + DRM_ERROR("DSI PLL failed to lock\n");
> + return ret;
> + }
> +
> + pll->pll_on = true;
> +
> + return 0;
> }
>
> void msm_dsi_pll_helper_clk_unprepare(struct clk_hw *hw)
> {
> struct msm_dsi_pll *pll = hw_clk_to_pll(hw);
>
> - dsi_pll_disable(pll);
> + if (unlikely(!pll->pll_on))
> + return;
> +
> + pll->disable_seq(pll);
> +
> + pll->pll_on = false;
> }
>
> void msm_dsi_pll_helper_unregister_clks(struct platform_device *pdev,
> diff --git a/drivers/gpu/drm/msm/dsi/phy/dsi_pll.h
> b/drivers/gpu/drm/msm/dsi/phy/dsi_pll.h
> index bbecb1de5678..eebf90671eec 100644
> --- a/drivers/gpu/drm/msm/dsi/phy/dsi_pll.h
> +++ b/drivers/gpu/drm/msm/dsi/phy/dsi_pll.h
> @@ -12,7 +12,6 @@
> #include "dsi.h"
>
> #define NUM_DSI_CLOCKS_MAX 6
> -#define MAX_DSI_PLL_EN_SEQS 10
>
> struct msm_dsi_pll {
> enum msm_dsi_phy_type type;
> @@ -23,9 +22,8 @@ struct msm_dsi_pll {
>
> unsigned long min_rate;
> unsigned long max_rate;
> - u32 en_seq_cnt;
>
> - int (*enable_seqs[MAX_DSI_PLL_EN_SEQS])(struct msm_dsi_pll *pll);
> + int (*enable_seq)(struct msm_dsi_pll *pll);
> void (*disable_seq)(struct msm_dsi_pll *pll);
> int (*get_provider)(struct msm_dsi_pll *pll,
> struct clk **byte_clk_provider,
next prev parent reply other threads:[~2021-03-26 17:50 UTC|newest]
Thread overview: 41+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-03-24 15:18 [PATCH v2 00/28] drm/msm/dsi: refactor MSM DSI PHY/PLL drivers Dmitry Baryshkov
2021-03-24 15:18 ` [PATCH v2 01/28] clk: fixed: add devm helper for clk_hw_register_fixed_factor() Dmitry Baryshkov
2021-03-26 17:43 ` [Freedreno] " abhinavk
2021-03-24 15:18 ` [PATCH v2 02/28] clk: mux: provide devm_clk_hw_register_mux() Dmitry Baryshkov
2021-03-26 17:44 ` [Freedreno] " abhinavk
2021-03-24 15:18 ` [PATCH v2 03/28] clk: divider: add devm_clk_hw_register_divider Dmitry Baryshkov
2021-03-26 17:45 ` [Freedreno] " abhinavk
2021-03-24 15:18 ` [PATCH v2 04/28] drm/msm/dsi: replace PHY's init callback with configurable data Dmitry Baryshkov
2021-03-26 17:46 ` [Freedreno] " abhinavk
2021-03-24 15:18 ` [PATCH v2 06/28] drm/msm/dsi: drop multiple pll enable_seq support Dmitry Baryshkov
2021-03-26 17:49 ` abhinavk [this message]
2021-03-24 15:18 ` [PATCH v2 07/28] drm/msm/dsi: move all PLL callbacks into PHY config struct Dmitry Baryshkov
2021-03-26 17:51 ` [Freedreno] " abhinavk
2021-03-24 15:18 ` [PATCH v2 08/28] drm/msm/dsi: drop global msm_dsi_phy_type enumaration Dmitry Baryshkov
2021-03-26 17:52 ` [Freedreno] " abhinavk
2021-03-24 15:18 ` [PATCH v2 09/28] drm/msm/dsi: move min/max PLL rate to phy config Dmitry Baryshkov
2021-03-26 17:53 ` [Freedreno] " abhinavk
2021-03-24 15:18 ` [PATCH v2 10/28] drm/msm/dsi: remove msm_dsi_pll_set_usecase Dmitry Baryshkov
2021-03-26 17:54 ` [Freedreno] " abhinavk
2021-03-24 15:18 ` [PATCH v2 11/28] drm/msm/dsi: stop setting clock parents manually Dmitry Baryshkov
2021-03-26 18:05 ` [Freedreno] " abhinavk
2021-03-26 20:36 ` Dmitry Baryshkov
2021-03-26 20:48 ` abhinavk
2021-03-27 0:58 ` Dmitry Baryshkov
2021-03-24 15:18 ` [PATCH v2 12/28] arm64: dts: qcom: sdm845: assign DSI clock source parents Dmitry Baryshkov
2021-03-24 15:18 ` [PATCH v2 13/28] arm64: dts: qcom: sc7180: " Dmitry Baryshkov
2021-03-24 15:18 ` [PATCH v2 14/28] drm/msm/dsi: push provided clocks handling into a generic code Dmitry Baryshkov
2021-03-24 15:18 ` [PATCH v2 15/28] drm/msm/dsi: use devm_clk_*register to registe DSI PHY clocks Dmitry Baryshkov
2021-03-24 15:18 ` [PATCH v2 16/28] drm/msm/dsi: use devm_of_clk_add_hw_provider Dmitry Baryshkov
2021-03-24 15:18 ` [PATCH v2 17/28] drm/msm/dsi: make save/restore_state phy-level functions Dmitry Baryshkov
2021-03-24 15:18 ` [PATCH v2 18/28] drm/msm/dsi: drop vco_delay setting from 7nm, 10nm, 14nm drivers Dmitry Baryshkov
2021-03-24 15:18 ` [PATCH v2 19/28] drm/msm/dpu: simplify vco_delay handling in dsi_phy_28nm driver Dmitry Baryshkov
2021-03-24 15:18 ` [PATCH v2 20/28] drm/msi/dsi: inline msm_dsi_pll_helper_clk_prepare/unprepare Dmitry Baryshkov
2021-03-24 15:18 ` [PATCH v2 21/28] drm/msm/dsi: make save_state/restore_state callbacks accept msm_dsi_phy Dmitry Baryshkov
2021-03-24 15:18 ` [PATCH v2 22/28] drm/msm/dsi: drop msm_dsi_pll abstracton Dmitry Baryshkov
2021-03-24 15:18 ` [PATCH v2 23/28] drm/msm/dsi: drop PLL accessor functions Dmitry Baryshkov
2021-03-24 15:18 ` [PATCH v2 24/28] drm/msm/dsi: move ioremaps to dsi_phy_driver_probe Dmitry Baryshkov
2021-03-24 15:18 ` [PATCH v2 25/28] drm/msm/dsi: remove duplicate fields from dsi_pll_Nnm instances Dmitry Baryshkov
2021-03-24 15:18 ` [PATCH v2 26/28] drm/msm/dsi: remove temp data from global pll structure Dmitry Baryshkov
2021-03-24 15:18 ` [PATCH v2 27/28] drm/msm/dsi: inline msm_dsi_phy_set_src_pll Dmitry Baryshkov
2021-03-24 15:18 ` [PATCH v2 28/28] drm/msm/dsi: stop passing src_pll_id to the phy_enable call Dmitry Baryshkov
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=c396bdee67acbf0f7f6be3d75be6d3a7@codeaurora.org \
--to=abhinavk@codeaurora.org \
--cc=airlied@linux.ie \
--cc=daniel@ffwll.ch \
--cc=dmitry.baryshkov@linaro.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=freedreno@lists.freedesktop.org \
--cc=jonathan@marek.ca \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-clk@vger.kernel.org \
--cc=mturquette@baylibre.com \
--cc=robdclark@gmail.com \
--cc=sboyd@kernel.org \
--cc=sean@poorly.run \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox