linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: AngeloGioacchino Del Regno <kholk11@gmail.com>
To: Andy Gross <agross@kernel.org>
Cc: Bjorn Andersson <bjorn.andersson@linaro.org>,
	Stephen Boyd <sboyd@kernel.org>,
	marijns95@gmail.com, Konrad Dybcio <konradybcio@gmail.com>,
	martin.botka1@gmail.com, MSM <linux-arm-msm@vger.kernel.org>,
	phone-devel@vger.kernel.org,
	linux-kernel <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH 0/5] SDM630/660 Multimedia and GPU clock controllers
Date: Fri, 4 Dec 2020 19:16:10 +0100	[thread overview]
Message-ID: <CAK7fi1akLi8uJTwCtT4pY50JwSYjr8TkwMqyK7pcWxAGCvuqDA@mail.gmail.com> (raw)
In-Reply-To: <20200926130306.13843-1-kholk11@gmail.com>

Il giorno sab 26 set 2020 alle ore 15:03 <kholk11@gmail.com> ha scritto:
>
> From: AngeloGioacchino Del Regno <kholk11@gmail.com>
>
> This patch series brings up the MultiMedia Clock Controller (MMCC)
> and the GPU Clock Controller (GPUCC) on the SDM660 series of SoCs,
> including SDM630, SDM636, SDM660 and SDA variants, where applicable.
>
> This series depends on "Qualcomm clock fixes and preparation for SDM660",
> which is required for the drivers to work correctly and to even compile
> (due to the gfx3d rcg2 changes).
>
> This patch series has been tested against the following devices:
>  - Sony Xperia XA2 Ultra (SDM630 Nile Discovery)
>  - Sony Xperia 10        (SDM630 Ganges Kirin)
>  - Sony Xperia 10 Plus   (SDM636 Ganges Mermaid)
>
> AngeloGioacchino Del Regno (4):
>   dt-bindings: clock: Add support for the SDM630 and SDM660 mmcc
>   clk: qcom: mmcc-sdm660: Add MDP clock source CXC to MDSS GDSC
>   clk: qcom: Add SDM660 GPU Clock Controller (GPUCC) driver
>   dt-bindings: clock: Add QCOM SDM630 and SDM660 graphics clock bindings
>
> Martin Botka (1):
>   clk: qcom: Add SDM660 Multimedia Clock Controller (MMCC) driver
>
>  .../devicetree/bindings/clock/qcom,mmcc.yaml  |    2 +
>  .../bindings/clock/qcom,sdm660-gpucc.yaml     |   75 +
>  drivers/clk/qcom/Kconfig                      |   18 +
>  drivers/clk/qcom/Makefile                     |    2 +
>  drivers/clk/qcom/gpucc-sdm660.c               |  349 ++
>  drivers/clk/qcom/mmcc-sdm660.c                | 2857 +++++++++++++++++
>  include/dt-bindings/clock/qcom,gpucc-sdm660.h |   28 +
>  include/dt-bindings/clock/qcom,mmcc-sdm660.h  |  162 +
>  8 files changed, 3493 insertions(+)
>  create mode 100644 Documentation/devicetree/bindings/clock/qcom,sdm660-gpucc.yaml
>  create mode 100644 drivers/clk/qcom/gpucc-sdm660.c
>  create mode 100644 drivers/clk/qcom/mmcc-sdm660.c
>  create mode 100644 include/dt-bindings/clock/qcom,gpucc-sdm660.h
>  create mode 100644 include/dt-bindings/clock/qcom,mmcc-sdm660.h
>
> --
> 2.28.0
>
Hello!
Is this patch series getting lost and forgotten?
Can this please get some attention before it gets buried forever?

Thanks,
Angelo

      parent reply	other threads:[~2020-12-04 18:17 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-09-26 13:03 [PATCH 0/5] SDM630/660 Multimedia and GPU clock controllers kholk11
2020-09-26 13:03 ` [PATCH 1/5] clk: qcom: Add SDM660 Multimedia Clock Controller (MMCC) driver kholk11
2020-09-26 13:23   ` Martin Botka
2020-09-30 20:47   ` kernel test robot
2020-10-13 14:51     ` Martin Botka
2020-10-13 15:01       ` Martin Botka
2020-12-05  4:59   ` Bjorn Andersson
2020-09-26 13:03 ` [PATCH 2/5] dt-bindings: clock: Add support for the SDM630 and SDM660 mmcc kholk11
2020-09-26 13:03 ` [PATCH 3/5] clk: qcom: mmcc-sdm660: Add MDP clock source CXC to MDSS GDSC kholk11
2020-12-05  5:08   ` Bjorn Andersson
2021-01-09 18:39     ` AngeloGioacchino Del Regno
2020-09-26 13:03 ` [PATCH 4/5] clk: qcom: Add SDM660 GPU Clock Controller (GPUCC) driver kholk11
2020-09-26 13:29   ` Martin Botka
2020-09-30 20:46   ` kernel test robot
2020-09-30 21:58     ` AngeloGioacchino Del Regno
2020-10-02  5:39       ` Philip Li
2020-12-05  5:16   ` Bjorn Andersson
2020-09-26 13:03 ` [PATCH 5/5] dt-bindings: clock: Add QCOM SDM630 and SDM660 graphics clock bindings kholk11
2020-09-26 13:30   ` Martin Botka
2020-12-05  5:14   ` Bjorn Andersson
2020-12-04 18:16 ` AngeloGioacchino Del Regno [this message]

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=CAK7fi1akLi8uJTwCtT4pY50JwSYjr8TkwMqyK7pcWxAGCvuqDA@mail.gmail.com \
    --to=kholk11@gmail.com \
    --cc=agross@kernel.org \
    --cc=bjorn.andersson@linaro.org \
    --cc=konradybcio@gmail.com \
    --cc=linux-arm-msm@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=marijns95@gmail.com \
    --cc=martin.botka1@gmail.com \
    --cc=phone-devel@vger.kernel.org \
    --cc=sboyd@kernel.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 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).