All of lore.kernel.org
 help / color / mirror / Atom feed
From: Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
To: Andy Gross <agross@kernel.org>,
	Bjorn Andersson <bjorn.andersson@linaro.org>,
	Stephen Boyd <swboyd@chromium.org>,
	Michael Turquette <mturquette@baylibre.com>,
	Taniya Das <tdas@codeaurora.org>
Cc: linux-arm-msm@vger.kernel.org, linux-clk@vger.kernel.org
Subject: [PATCH v4 00/16] clk: qcom: another round of clock drivers cleanup
Date: Tue, 28 Dec 2021 07:53:59 +0300	[thread overview]
Message-ID: <20211228045415.20543-1-dmitry.baryshkov@linaro.org> (raw)

Another bunch of updates for Qualcomm clock controller driver, removing
unused enum values, test clock, using parent_data, parent_hws and
ARRAY_SIZE.

Changes since v3:
 - Converted clocks using periph_noc_clk_src as a parent to use
   parent_hws

Changes since v2:
 - fix typo in first patch
 - reorder and rework camcc-sdm845 patches, so that ARRAY_SIZE comes
   first
 - add patch converting gcc-msm8996 to use cxo/xo_board instead of still
   depending on legacy xo clock

Changes since v1:
 - convert two parent_names in gpucc-sdm660
 - split camcc-sc7180 patch into logical chunks
 - split camcc-sdm845 patch into logical chinks
 - reorder gcc-msm8996 patches to put ARRAY_SIZE in front of the rest of
   patches

The following changes since commit fa55b7dcdc43c1aa1ba12bca9d2dd4318c2a0dbf:

  Linux 5.16-rc1 (2021-11-14 13:56:52 -0800)

are available in the Git repository at:

  https://git.linaro.org/people/dmitry.baryshkov/kernel.git msm-clocks-bulk-2

for you to fetch changes up to eed05fb5fd9768229a70947a907b071c8dadc9ed:

  clk: qcom: gcc-msm8996: start getting rid of xo clk (2021-12-28 07:51:15 +0300)

----------------------------------------------------------------
Dmitry Baryshkov (16):
      clk: qcom: gpucc-sdm660: fix two clocks with parent_names
      clk: qcom: gpucc-sdm660: get rid of the test clock
      clk: qcom: gpucc-sdm660: use parent_hws instead of parent_data
      clk: qcom: camcc-sc7180: use ARRAY_SIZE instead of specifying num_parents
      clk: qcom: camcc-sc7180: get rid of the test clock
      clk: qcom: camcc-sc7180: use parent_hws instead of parent_data
      clk: qcom: camcc-sdm845: use ARRAY_SIZE instead of specifying num_parents
      clk: qcom: camcc-sdm845: get rid of the test clock
      clk: qcom: camcc-sdm845: move clock parent tables down
      clk: qcom: camcc-sdm845: convert to parent_hws/_data
      clk: qcom: videocc-sc7180: use parent_hws instead of parent_data
      clk: qcom: gcc-msm8996: use ARRAY_SIZE instead of specifying num_parents
      clk: qcom: gcc-msm8996: drop unsupported clock sources
      clk: qcom: gcc-msm8996: move clock parent tables down
      clk: qcom: gcc-msm8996: use parent_hws/_data instead of parent_names
      clk: qcom: gcc-msm8996: start getting rid of xo clk

 drivers/clk/qcom/camcc-sc7180.c   | 221 ++++-----
 drivers/clk/qcom/camcc-sdm845.c   | 323 +++++++------
 drivers/clk/qcom/gcc-msm8996.c    | 971 +++++++++++++++++++++++---------------
 drivers/clk/qcom/gpucc-sdm660.c   |  21 +-
 drivers/clk/qcom/videocc-sc7180.c |   8 +-
 5 files changed, 874 insertions(+), 670 deletions(-)


             reply	other threads:[~2021-12-28  4:54 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-12-28  4:53 Dmitry Baryshkov [this message]
2021-12-28  4:54 ` [PATCH v4 01/16] clk: qcom: gpucc-sdm660: fix two clocks with parent_names Dmitry Baryshkov
2022-02-11 17:10   ` patchwork-bot+linux-arm-msm
2021-12-28  4:54 ` [PATCH v4 02/16] clk: qcom: gpucc-sdm660: get rid of the test clock Dmitry Baryshkov
2021-12-28  4:54 ` [PATCH v4 03/16] clk: qcom: gpucc-sdm660: use parent_hws instead of parent_data Dmitry Baryshkov
2021-12-28  4:54 ` [PATCH v4 04/16] clk: qcom: camcc-sc7180: use ARRAY_SIZE instead of specifying num_parents Dmitry Baryshkov
2021-12-28  4:54 ` [PATCH v4 05/16] clk: qcom: camcc-sc7180: get rid of the test clock Dmitry Baryshkov
2021-12-28  4:54 ` [PATCH v4 06/16] clk: qcom: camcc-sc7180: use parent_hws instead of parent_data Dmitry Baryshkov
2021-12-28  4:54 ` [PATCH v4 07/16] clk: qcom: camcc-sdm845: use ARRAY_SIZE instead of specifying num_parents Dmitry Baryshkov
2021-12-28  4:54 ` [PATCH v4 08/16] clk: qcom: camcc-sdm845: get rid of the test clock Dmitry Baryshkov
2021-12-28  4:54 ` [PATCH v4 09/16] clk: qcom: camcc-sdm845: move clock parent tables down Dmitry Baryshkov
2021-12-28 11:26   ` Marijn Suijten
2021-12-28  4:54 ` [PATCH v4 10/16] clk: qcom: camcc-sdm845: convert to parent_hws/_data Dmitry Baryshkov
2021-12-28  4:54 ` [PATCH v4 11/16] clk: qcom: videocc-sc7180: use parent_hws instead of parent_data Dmitry Baryshkov
2021-12-28  4:54 ` [PATCH v4 12/16] clk: qcom: gcc-msm8996: use ARRAY_SIZE instead of specifying num_parents Dmitry Baryshkov
2021-12-28  4:54 ` [PATCH v4 13/16] clk: qcom: gcc-msm8996: drop unsupported clock sources Dmitry Baryshkov
2021-12-28  4:54 ` [PATCH v4 14/16] clk: qcom: gcc-msm8996: move clock parent tables down Dmitry Baryshkov
2021-12-28  4:54 ` [PATCH v4 15/16] clk: qcom: gcc-msm8996: use parent_hws/_data instead of parent_names Dmitry Baryshkov
2021-12-28 11:38   ` Marijn Suijten
2021-12-28  4:54 ` [PATCH v4 16/16] clk: qcom: gcc-msm8996: start getting rid of xo clk Dmitry Baryshkov
2021-12-28 11:28   ` Marijn Suijten

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=20211228045415.20543-1-dmitry.baryshkov@linaro.org \
    --to=dmitry.baryshkov@linaro.org \
    --cc=agross@kernel.org \
    --cc=bjorn.andersson@linaro.org \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=linux-clk@vger.kernel.org \
    --cc=mturquette@baylibre.com \
    --cc=swboyd@chromium.org \
    --cc=tdas@codeaurora.org \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.