From: kholk11@gmail.com
To: linux-arm-msm@vger.kernel.org
Cc: kholk11@gmail.com, marijns95@gmail.com, robdclark@gmail.com,
sean@poorly.run, airlied@linux.ie, daniel@ffwll.ch,
robh+dt@kernel.org, mark.rutland@arm.com, tglx@linutronix.de,
jonathan@marek.ca, bjorn.andersson@linaro.org,
georgi.djakov@linaro.org, gregkh@linuxfoundation.org,
dri-devel@lists.freedesktop.org, freedreno@lists.freedesktop.org
Subject: [PATCH v4 0/7] DRM/MSM: Add support for MSM8956 and Adreno 510
Date: Thu, 31 Oct 2019 11:43:55 +0100 [thread overview]
Message-ID: <20191031104402.31813-1-kholk11@gmail.com> (raw)
From: AngeloGioacchino Del Regno <kholk11@gmail.com>
This patch series enables support for MSM8956/76 and its Adreno 510
GPU on the current DRM driver.
The personal aim is to upstream MSM8956 as much as possible.
This code has been tested on two Sony phones featuring the Qualcomm
MSM8956 SoC.
Changes in v2:
- MDP5: Documented tbu and tbu_rt clocks (Jeffrey)
- Adreno510:
- Lower case hex where required (Jordan)
- Direct register writes (Jordan)
- Used gpu_rmw() where required (Jordan)
- No mentioning of unsupported A5xx (Jordan)
- ZAP firmware exclusions not per-model (Rob)
Changes in v3:
- Rebased onto linux-next 20191015
- Renamed MSM8x56 references to MSM8x76 (the reason is that I am
using the 8976/8x76 name for all the other drivers. Also, the
8976 and 8956 chips are equal and the only changing part is
the CPU big cores count)
- Splitted dt-bindings modifications as per request (Sean)
Changes in v4:
- Fixed io_start for the secondary dsi phy on family-b
AngeloGioacchino Del Regno (7):
drm/msm/mdp5: Add optional TBU and TBU_RT clocks
dt-bindings: msm/mdp5: Document optional TBU and TBU_RT clocks
drm/msm/mdp5: Add configuration for msm8x76
drm/msm/dsi: Add configuration for 28nm PLL on family B
dt-bindings: msm/dsi: Add 28nm PLL for family B compatible
drm/msm/dsi: Add configuration for 8x76
drm/msm/adreno: Add support for Adreno 510 GPU
.../devicetree/bindings/display/msm/dsi.txt | 1 +
.../devicetree/bindings/display/msm/mdp5.txt | 2 +
drivers/gpu/drm/msm/adreno/a5xx_gpu.c | 73 +++++++++++---
drivers/gpu/drm/msm/adreno/a5xx_power.c | 7 ++
drivers/gpu/drm/msm/adreno/adreno_device.c | 15 +++
drivers/gpu/drm/msm/adreno/adreno_gpu.h | 5 +
drivers/gpu/drm/msm/disp/mdp5/mdp5_cfg.c | 98 +++++++++++++++++++
drivers/gpu/drm/msm/disp/mdp5/mdp5_kms.c | 10 ++
drivers/gpu/drm/msm/disp/mdp5/mdp5_kms.h | 2 +
drivers/gpu/drm/msm/dsi/dsi_cfg.c | 22 +++++
drivers/gpu/drm/msm/dsi/dsi_cfg.h | 1 +
drivers/gpu/drm/msm/dsi/phy/dsi_phy.c | 2 +
drivers/gpu/drm/msm/dsi/phy/dsi_phy.h | 1 +
drivers/gpu/drm/msm/dsi/phy/dsi_phy_28nm.c | 18 ++++
14 files changed, 243 insertions(+), 14 deletions(-)
--
2.21.0
next reply other threads:[~2019-10-31 10:44 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-10-31 10:43 kholk11 [this message]
2019-10-31 10:43 ` [PATCH v4 1/7] drm/msm/mdp5: Add optional TBU and TBU_RT clocks kholk11
2019-10-31 10:43 ` [PATCH v4 2/7] dt-bindings: msm/mdp5: Document " kholk11
2019-11-02 16:53 ` Rob Clark
2019-11-04 20:16 ` Rob Herring
2019-10-31 10:43 ` [PATCH v4 3/7] drm/msm/mdp5: Add configuration for msm8x76 kholk11
2019-10-31 10:43 ` [PATCH v4 4/7] drm/msm/dsi: Add configuration for 28nm PLL on family B kholk11
2019-10-31 10:44 ` [PATCH v4 5/7] dt-bindings: msm/dsi: Add 28nm PLL for family B compatible kholk11
2019-11-02 16:54 ` Rob Clark
2019-11-04 20:18 ` Rob Herring
2019-11-04 20:42 ` Bjorn Andersson
2019-10-31 10:44 ` [PATCH v4 6/7] drm/msm/dsi: Add configuration for 8x76 kholk11
2019-10-31 10:44 ` [PATCH v4 7/7] drm/msm/adreno: Add support for Adreno 510 GPU kholk11
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=20191031104402.31813-1-kholk11@gmail.com \
--to=kholk11@gmail.com \
--cc=airlied@linux.ie \
--cc=bjorn.andersson@linaro.org \
--cc=daniel@ffwll.ch \
--cc=dri-devel@lists.freedesktop.org \
--cc=freedreno@lists.freedesktop.org \
--cc=georgi.djakov@linaro.org \
--cc=gregkh@linuxfoundation.org \
--cc=jonathan@marek.ca \
--cc=linux-arm-msm@vger.kernel.org \
--cc=marijns95@gmail.com \
--cc=mark.rutland@arm.com \
--cc=robdclark@gmail.com \
--cc=robh+dt@kernel.org \
--cc=sean@poorly.run \
--cc=tglx@linutronix.de \
/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