* [GIT PULL] Qualcomm clock updates for v5.17
@ 2022-01-05 15:57 Bjorn Andersson
2022-01-06 0:25 ` Stephen Boyd
0 siblings, 1 reply; 2+ messages in thread
From: Bjorn Andersson @ 2022-01-05 15:57 UTC (permalink / raw)
To: Stephen Boyd; +Cc: linux-arm-msm
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.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git tags/qcom-clk-for-5.17
for you to fetch changes up to 96ea2a4291343613a7c2da03c03f23dc259171ff:
clk: qcom: turingcc-qcs404: explicitly include clk-provider.h (2021-12-20 23:14:50 -0600)
----------------------------------------------------------------
Qualcomm clock updates for v5.17
This introduces bindings and drivers for the global clock controllers
found in SDX65, SM8450 and MSM8976, as well as RPMh clock support for
SDX65 and SM8450.
It cleans up the SMD RPM clock driver and it adds includes for
clk-provider.h throughout the clock providers that was lacking this.
----------------------------------------------------------------
AngeloGioacchino Del Regno (1):
clk: qcom: Add MSM8976/56 Global Clock Controller (GCC) driver
Bjorn Andersson (3):
MAINTAINERS: Add entry for Qualcomm clock drivers
Merge tag 'e15509b2b7c9b600ab38c5269d4fac609c077b5b.1638861860.git.quic_vamslank@quicinc.com' into clk-for-5.17
Merge tag '20211207114003.100693-2-vkoul@kernel.org' into clk-for-5.17
Marijn Suijten (1):
dt-bindings: clk: qcom: Document MSM8976 Global Clock Controller
Shawn Guo (3):
clk: qcom: smd-rpm: Drop MFD qcom-rpm reference
clk: qcom: smd-rpm: Drop the use of struct rpm_cc
clk: qcom: smd-rpm: Drop binary value handling for buffered clock
Vamsi Krishna Lanka (2):
clk: qcom: Add LUCID_EVO PLL type for SDX65
clk: qcom: Add SDX65 GCC support
Vamsi krishna Lanka (3):
dt-bindings: clock: Introduce RPMHCC bindings for SDX65
clk: qcom: Add support for SDX65 RPMh clocks
dt-bindings: clock: Add SDX65 GCC clock bindings
Vinod Koul (12):
dt-bindings: clock: Add RPMHCC bindings for SM8450
clk: qcom: rpmh: add support for SM8450 rpmh clocks
dt-bindings: clock: Add SM8450 GCC clock bindings
clk: qcom: Add clock driver for SM8450
clk: qcom: gcc-sm8350: explicitly include clk-provider.h
clk: qcom: gcc-msm8994: explicitly include clk-provider.h
clk: qcom: gcc-sm6350: explicitly include clk-provider.h
clk: qcom: lpasscc-sc7280: explicitly include clk-provider.h
clk: qcom: lpasscc-sdm845: explicitly include clk-provider.h
clk: qcom: mmcc-apq8084: explicitly include clk-provider.h
clk: qcom: q6sstop-qcs404: explicitly include clk-provider.h
clk: qcom: turingcc-qcs404: explicitly include clk-provider.h
.../bindings/clock/qcom,gcc-msm8976.yaml | 97 +
.../devicetree/bindings/clock/qcom,gcc-sdx65.yaml | 80 +
.../devicetree/bindings/clock/qcom,gcc-sm8450.yaml | 85 +
.../devicetree/bindings/clock/qcom,rpmhcc.yaml | 2 +
MAINTAINERS | 9 +
drivers/clk/qcom/Kconfig | 24 +
drivers/clk/qcom/Makefile | 3 +
drivers/clk/qcom/clk-alpha-pll.c | 164 +-
drivers/clk/qcom/clk-alpha-pll.h | 3 +
drivers/clk/qcom/clk-rpmh.c | 52 +
drivers/clk/qcom/clk-smd-rpm.c | 31 +-
drivers/clk/qcom/gcc-msm8976.c | 4155 ++++++++++++++++++++
drivers/clk/qcom/gcc-msm8994.c | 1 +
drivers/clk/qcom/gcc-sdx65.c | 1611 ++++++++
drivers/clk/qcom/gcc-sm6350.c | 1 +
drivers/clk/qcom/gcc-sm8350.c | 1 +
drivers/clk/qcom/gcc-sm8450.c | 3304 ++++++++++++++++
drivers/clk/qcom/lpasscc-sc7280.c | 1 +
drivers/clk/qcom/lpasscc-sdm845.c | 1 +
drivers/clk/qcom/mmcc-apq8084.c | 1 +
drivers/clk/qcom/q6sstop-qcs404.c | 1 +
drivers/clk/qcom/turingcc-qcs404.c | 1 +
include/dt-bindings/clock/qcom,gcc-msm8976.h | 240 ++
include/dt-bindings/clock/qcom,gcc-sdx65.h | 122 +
include/dt-bindings/clock/qcom,gcc-sm8450.h | 244 ++
25 files changed, 10202 insertions(+), 32 deletions(-)
create mode 100644 Documentation/devicetree/bindings/clock/qcom,gcc-msm8976.yaml
create mode 100644 Documentation/devicetree/bindings/clock/qcom,gcc-sdx65.yaml
create mode 100644 Documentation/devicetree/bindings/clock/qcom,gcc-sm8450.yaml
create mode 100644 drivers/clk/qcom/gcc-msm8976.c
create mode 100644 drivers/clk/qcom/gcc-sdx65.c
create mode 100644 drivers/clk/qcom/gcc-sm8450.c
create mode 100644 include/dt-bindings/clock/qcom,gcc-msm8976.h
create mode 100644 include/dt-bindings/clock/qcom,gcc-sdx65.h
create mode 100644 include/dt-bindings/clock/qcom,gcc-sm8450.h
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [GIT PULL] Qualcomm clock updates for v5.17
2022-01-05 15:57 [GIT PULL] Qualcomm clock updates for v5.17 Bjorn Andersson
@ 2022-01-06 0:25 ` Stephen Boyd
0 siblings, 0 replies; 2+ messages in thread
From: Stephen Boyd @ 2022-01-06 0:25 UTC (permalink / raw)
To: Bjorn Andersson; +Cc: linux-arm-msm, linux-clk
Quoting Bjorn Andersson (2022-01-05 07:57:05)
> 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.kernel.org/pub/scm/linux/kernel/git/qcom/linux.git tags/qcom-clk-for-5.17
>
> for you to fetch changes up to 96ea2a4291343613a7c2da03c03f23dc259171ff:
>
> clk: qcom: turingcc-qcs404: explicitly include clk-provider.h (2021-12-20 23:14:50 -0600)
>
> ----------------------------------------------------------------
> Qualcomm clock updates for v5.17
>
> This introduces bindings and drivers for the global clock controllers
> found in SDX65, SM8450 and MSM8976, as well as RPMh clock support for
> SDX65 and SM8450.
>
> It cleans up the SMD RPM clock driver and it adds includes for
> clk-provider.h throughout the clock providers that was lacking this.
>
> ----------------------------------------------------------------
Please Cc linux-clk@ next time. I almost missed this.
> AngeloGioacchino Del Regno (1):
> clk: qcom: Add MSM8976/56 Global Clock Controller (GCC) driver
>
> Bjorn Andersson (3):
> MAINTAINERS: Add entry for Qualcomm clock drivers
> Merge tag 'e15509b2b7c9b600ab38c5269d4fac609c077b5b.1638861860.git.quic_vamslank@quicinc.com' into clk-for-5.17
> Merge tag '20211207114003.100693-2-vkoul@kernel.org' into clk-for-5.17
Next time can you merge branches with yourself instead of tags?
Otherwise, I pulled it into clk-next. Thanks.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-01-06 0:26 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-01-05 15:57 [GIT PULL] Qualcomm clock updates for v5.17 Bjorn Andersson
2022-01-06 0:25 ` Stephen Boyd
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox