From: Douglas Anderson <dianders@chromium.org>
To: Rob Clark <robdclark@gmail.com>,
Abhinav Kumar <quic_abhinavk@quicinc.com>,
Dmitry Baryshkov <dmitry.baryshkov@linaro.org>
Cc: "David Airlie" <airlied@linux.ie>,
"Konrad Dybcio" <konrad.dybcio@somainline.org>,
dri-devel@lists.freedesktop.org,
"Bjorn Andersson" <bjorn.andersson@linaro.org>,
"AngeloGioacchino Del Regno"
<angelogioacchino.delregno@somainline.org>,
"Marijn Suijten" <marijn.suijten@somainline.org>,
"Archit Taneja" <architt@codeaurora.org>,
"Jonathan Marek" <jonathan@marek.ca>,
"Sireesh Kodali" <sireeshkodali1@gmail.com>,
"Rajeev Nandan" <quic_rajeevny@quicinc.com>,
linux-arm-msm@vger.kernel.org,
"Stephen Boyd" <swboyd@chromium.org>,
"Mark Brown" <broonie@kernel.org>, "Sean Paul" <sean@poorly.run>,
"Loic Poulain" <loic.poulain@linaro.org>,
"Vladimir Lypak" <vladimir.lypak@gmail.com>,
"Douglas Anderson" <dianders@chromium.org>,
linux-kernel@vger.kernel.org, "Vinod Koul" <vkoul@kernel.org>,
"José Expósito" <jose.exposito89@gmail.com>,
freedreno@lists.freedesktop.org
Subject: [PATCH v3 0/6] drm/msm/dsi regulator improvements
Date: Tue, 2 Aug 2022 15:37:32 -0700 [thread overview]
Message-ID: <20220802223738.898592-1-dianders@chromium.org> (raw)
The main goal of this series is to make a small dent in cleaning up
the way we deal with regulator loads for DSI drivers.
As of v3 of this series, the regulator API improvements needed for the
later patches in the series are merged into mainline. Thus this series
only contains the DSI changes now.
I'd expect:
* The first two patches are bugfixes found while converting the DSI
driver over. Those could land any time.
* The third patch ("drm/msm/dsi: Don't set a load before disabling a
regulator") is a patch a sent the other day verbatim, included in
this series because it's highly related. It could land any
time.
* The next two patches use the new APIs. Since those APIs are now in
mainline those could also land any time.
* The last patch is just cleanup I noticed as I was touching the
function. It's not really related to regulators but it applies atop
these. In theory it could be rebased to land separately.
Changes in v3:
- ("Improve dsi_phy_driver_probe() probe error handling") new for v3.
- Do all the PHYs too.
- Fix typo in commit message.
- Get rid of error print after devm_regulator_bulk_get_const().
- Just directly call the bulk commands; get rid of the wrapper.
- Update commit message to point at the git hash of the regulator change.
Changes in v2:
- ("Fix number of regulators for SDM660") new for v2.
- ("Fix number of regulators for msm8996_dsi_cfg") new for v2.
- ("Take advantage of devm_regulator_bulk_get_const") new for v2.
- ("Use the new regulator bulk feature to specify the load") new for v2.
Douglas Anderson (6):
drm/msm/dsi: Fix number of regulators for msm8996_dsi_cfg
drm/msm/dsi: Fix number of regulators for SDM660
drm/msm/dsi: Don't set a load before disabling a regulator
drm/msm/dsi: Use the new regulator bulk feature to specify the load
drm/msm/dsi: Take advantage of devm_regulator_bulk_get_const()
drm/msm/dsi: Improve dsi_phy_driver_probe() probe error handling
drivers/gpu/drm/msm/dsi/dsi.h | 13 --
drivers/gpu/drm/msm/dsi/dsi_cfg.c | 172 +++++++++---------
drivers/gpu/drm/msm/dsi/dsi_cfg.h | 3 +-
drivers/gpu/drm/msm/dsi/dsi_host.c | 96 ++--------
drivers/gpu/drm/msm/dsi/phy/dsi_phy.c | 160 ++++------------
drivers/gpu/drm/msm/dsi/phy/dsi_phy.h | 5 +-
drivers/gpu/drm/msm/dsi/phy/dsi_phy_10nm.c | 20 +-
drivers/gpu/drm/msm/dsi/phy/dsi_phy_14nm.c | 32 ++--
drivers/gpu/drm/msm/dsi/phy/dsi_phy_20nm.c | 14 +-
drivers/gpu/drm/msm/dsi/phy/dsi_phy_28nm.c | 28 +--
.../gpu/drm/msm/dsi/phy/dsi_phy_28nm_8960.c | 12 +-
drivers/gpu/drm/msm/dsi/phy/dsi_phy_7nm.c | 32 ++--
12 files changed, 197 insertions(+), 390 deletions(-)
--
2.37.1.455.g008518b4e5-goog
next reply other threads:[~2022-08-02 22:38 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-08-02 22:37 Douglas Anderson [this message]
2022-08-02 22:37 ` [PATCH v3 1/6] drm/msm/dsi: Fix number of regulators for msm8996_dsi_cfg Douglas Anderson
2022-08-03 7:01 ` Dmitry Baryshkov
2022-08-04 0:12 ` Abhinav Kumar
2022-08-02 22:37 ` [PATCH v3 2/6] drm/msm/dsi: Fix number of regulators for SDM660 Douglas Anderson
2022-08-03 7:02 ` Dmitry Baryshkov
2022-08-03 14:25 ` Marijn Suijten
2022-08-04 0:14 ` Abhinav Kumar
2022-08-02 22:37 ` [PATCH v3 3/6] drm/msm/dsi: Don't set a load before disabling a regulator Douglas Anderson
2022-08-03 7:07 ` Dmitry Baryshkov
2022-08-04 0:16 ` Abhinav Kumar
2022-08-02 22:37 ` [PATCH v3 4/6] drm/msm/dsi: Use the new regulator bulk feature to specify the load Douglas Anderson
2022-08-03 7:12 ` Dmitry Baryshkov
2022-08-03 13:50 ` Doug Anderson
2022-08-04 0:18 ` Abhinav Kumar
2022-08-02 22:37 ` [PATCH v3 5/6] drm/msm/dsi: Take advantage of devm_regulator_bulk_get_const() Douglas Anderson
2022-08-03 7:18 ` Dmitry Baryshkov
2022-08-03 13:53 ` Doug Anderson
2022-08-04 2:00 ` Abhinav Kumar
2022-08-02 22:37 ` [PATCH v3 6/6] drm/msm/dsi: Improve dsi_phy_driver_probe() probe error handling Douglas Anderson
2022-08-03 7:32 ` Dmitry Baryshkov
2022-08-03 13:54 ` Doug Anderson
2022-08-04 2:13 ` Abhinav Kumar
2022-08-03 7:37 ` [PATCH v3 0/6] drm/msm/dsi regulator improvements Dmitry Baryshkov
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=20220802223738.898592-1-dianders@chromium.org \
--to=dianders@chromium.org \
--cc=airlied@linux.ie \
--cc=angelogioacchino.delregno@somainline.org \
--cc=architt@codeaurora.org \
--cc=bjorn.andersson@linaro.org \
--cc=broonie@kernel.org \
--cc=dmitry.baryshkov@linaro.org \
--cc=dri-devel@lists.freedesktop.org \
--cc=freedreno@lists.freedesktop.org \
--cc=jonathan@marek.ca \
--cc=jose.exposito89@gmail.com \
--cc=konrad.dybcio@somainline.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=loic.poulain@linaro.org \
--cc=marijn.suijten@somainline.org \
--cc=quic_abhinavk@quicinc.com \
--cc=quic_rajeevny@quicinc.com \
--cc=robdclark@gmail.com \
--cc=sean@poorly.run \
--cc=sireeshkodali1@gmail.com \
--cc=swboyd@chromium.org \
--cc=vkoul@kernel.org \
--cc=vladimir.lypak@gmail.com \
/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).