linux-arm-msm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3 00/16] clk: qcom: another round of clock drivers cleanup
@ 2021-12-15 19:36 Dmitry Baryshkov
  2021-12-15 19:36 ` [PATCH v3 01/16] clk: qcom: gpucc-sdm660: fix two clocks with parent_names Dmitry Baryshkov
                   ` (15 more replies)
  0 siblings, 16 replies; 25+ messages in thread
From: Dmitry Baryshkov @ 2021-12-15 19:36 UTC (permalink / raw)
  To: Andy Gross, Bjorn Andersson, Stephen Boyd, Michael Turquette, Taniya Das
  Cc: linux-arm-msm, linux-clk

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 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 4d27f5d0dcf5ee52a7282f942d4b824b3fead091:

  clk: qcom: gcc-msm8996: start getting rid of xo clk (2021-12-15 22:28:16 +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(-)



^ permalink raw reply	[flat|nested] 25+ messages in thread

end of thread, other threads:[~2021-12-16  3:43 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-12-15 19:36 [PATCH v3 00/16] clk: qcom: another round of clock drivers cleanup Dmitry Baryshkov
2021-12-15 19:36 ` [PATCH v3 01/16] clk: qcom: gpucc-sdm660: fix two clocks with parent_names Dmitry Baryshkov
2021-12-16  1:52   ` Stephen Boyd
2021-12-15 19:36 ` [PATCH v3 02/16] clk: qcom: gpucc-sdm660: get rid of the test clock Dmitry Baryshkov
2021-12-15 19:36 ` [PATCH v3 03/16] clk: qcom: gpucc-sdm660: use parent_hws instead of parent_data Dmitry Baryshkov
2021-12-15 19:36 ` [PATCH v3 04/16] clk: qcom: camcc-sc7180: use ARRAY_SIZE instead of specifying num_parents Dmitry Baryshkov
2021-12-16  1:52   ` Stephen Boyd
2021-12-15 19:36 ` [PATCH v3 05/16] clk: qcom: camcc-sc7180: get rid of the test clock Dmitry Baryshkov
2021-12-15 19:36 ` [PATCH v3 06/16] clk: qcom: camcc-sc7180: use parent_hws instead of parent_data Dmitry Baryshkov
2021-12-15 19:36 ` [PATCH v3 07/16] clk: qcom: camcc-sdm845: use ARRAY_SIZE instead of specifying num_parents Dmitry Baryshkov
2021-12-15 19:36 ` [PATCH v3 08/16] clk: qcom: camcc-sdm845: get rid of the test clock Dmitry Baryshkov
2021-12-15 19:36 ` [PATCH v3 09/16] clk: qcom: camcc-sdm845: move clock parent tables down Dmitry Baryshkov
2021-12-15 20:24   ` Marijn Suijten
2021-12-16  1:57   ` Stephen Boyd
2021-12-15 19:36 ` [PATCH v3 10/16] clk: qcom: camcc-sdm845: convert to parent_hws/_data Dmitry Baryshkov
2021-12-16  1:58   ` Stephen Boyd
2021-12-15 19:36 ` [PATCH v3 11/16] clk: qcom: videocc-sc7180: use parent_hws instead of parent_data Dmitry Baryshkov
2021-12-15 19:37 ` [PATCH v3 12/16] clk: qcom: gcc-msm8996: use ARRAY_SIZE instead of specifying num_parents Dmitry Baryshkov
2021-12-15 19:37 ` [PATCH v3 13/16] clk: qcom: gcc-msm8996: drop unsupported clock sources Dmitry Baryshkov
2021-12-15 19:37 ` [PATCH v3 14/16] clk: qcom: gcc-msm8996: move clock parent tables down Dmitry Baryshkov
2021-12-15 19:37 ` [PATCH v3 15/16] clk: qcom: gcc-msm8996: use parent_hws/_data instead of parent_names Dmitry Baryshkov
2021-12-15 20:19   ` Marijn Suijten
2021-12-15 19:37 ` [PATCH v3 16/16] clk: qcom: gcc-msm8996: start getting rid of xo clk Dmitry Baryshkov
2021-12-15 20:11   ` Marijn Suijten
2021-12-16  3:43     ` Stephen Boyd

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).