Message ID | 20200926130306.13843-1-kholk11@gmail.com (mailing list archive) |
---|---|
Headers | show |
Series | SDM630/660 Multimedia and GPU clock controllers | expand |
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
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