* [RFT PATCH 00/15] drm: non-drm-misc drivers call drm_atomic_helper_shutdown() at the right times
@ 2023-09-01 23:41 Douglas Anderson
2023-09-01 23:41 ` [RFT PATCH 07/15] drm/tegra: Call drm_atomic_helper_shutdown() at shutdown time Douglas Anderson
0 siblings, 1 reply; 3+ messages in thread
From: Douglas Anderson @ 2023-09-01 23:41 UTC (permalink / raw)
To: dri-devel, Maxime Ripard
Cc: Douglas Anderson, Baolin Wang, Bokun.Zhang, Hawking.Zhang,
James.Zhu, Sascha Hauer, Victor.Zhao, Xinhui.Pan, YiPeng.Chai,
abrodkin, airlied, alexander.deucher, alim.akhtar, amd-gfx,
angelogioacchino.delregno, anitha.chrisanthus, biju.das.jz,
bskeggs, christian.koenig, chunkuang.hu, daniel, edmund.j.dea,
festevam, geert+renesas, inki.dae, jonathanh, kernel, kherbst,
kieran.bingham+renesas, krzysztof.kozlowski, kyungmin.park,
l.stach, laurent.pinchart, laurentiu.palcu, le.ma, lijo.lazar,
linux-arm-kernel, linux-imx, linux-kernel, linux-mediatek,
linux-mips, linux-renesas-soc, linux-samsung-soc, linux-tegra,
linux, liviu.dudau, lyude, maarten.lankhorst, mario.limonciello,
matthias.bgg, mdaenzer, mperttunen, nouveau, orsonzhai, p.zabel,
patrik.r.jakobsson, paul, rfoss, robh, sam, shawnguo, shiwu.zhang,
srinivasan.shanmugam, steven.price, sw0312.kim, thierry.reding,
tzimmermann, zhang.lyra
NOTE: in order to avoid email sending limits on the cover letter, I've
split this patch series in two. Patches that target drm-misc and ones
that don't. The cover letter of the two is identical other than this note.
This patch series came about after a _long_ discussion between me and
Maxime Ripard in response to a different patch I sent out [1]. As part
of that discussion, we realized that it would be good if DRM drivers
consistently called drm_atomic_helper_shutdown() properly at shutdown
and driver remove time as it's documented that they should do. The
eventual goal of this would be to enable removing some hacky code from
panel drivers where they had to hook into shutdown themselves because
the DRM driver wasn't calling them.
It turns out that quite a lot of drivers seemed to be missing
drm_atomic_helper_shutdown() in one or both places that it was
supposed to be. This patch series attempts to fix all the drivers that
I was able to identify.
NOTE: fixing this wasn't exactly cookie cutter. Each driver has its
own unique way of setting itself up and tearing itself down. Some
drivers also use the component model, which adds extra fun. I've made
my best guess at solving this and I've run a bunch of compile tests
(specifically, allmodconfig for amd64, arm64, and powerpc). That being
said, these code changes are not totally trivial and I've done zero
real testing on them. Making these patches was also a little mind
numbing and I'm certain my eyes glazed over at several points when
writing them. What I'm trying to say is to please double-check that I
didn't do anything too silly, like cast your driver's drvdata to the
wrong type. Even better, test these patches!
I've organized this series like this:
1. One patch for all simple cases of just needing a call at shutdown
time for drivers that go through drm-misc.
2. A separate patch for "drm/vc4", even though it goes through
drm-misc, since I wanted to leave an extra note for that one.
3. Patches for drivers that just needed a call at shutdown time for
drivers that _don't_ go through drm-misc.
4. Patches for the few drivers that had the call at shutdown time but
lacked it at remove time.
5. One patch for all simple cases of needing a call at shutdown and
remove (or unbind) time for drivers that go through drm-misc.
6. A separate patch for "drm/hisilicon/kirin", even though it goes
through drm-misc, since I wanted to leave an extra note for that
one.
7. Patches for drivers that needed a call at shutdown and remove (or
unbind) time for drivers that _don't_ go through drm-misc.
I've labeled this patch series as RFT (request for testing) to help
call attention to the fact that I didn't personally test any of these
patches.
If you're a maintainer of one of these drivers and you think that the
patch for your driver looks fabulous, you've tested it, and you'd like
to land it right away then please do. For non-drm-misc drivers there
are no dependencies here. Some of the drm-misc drivers depend on the
first patch, AKA ("drm/atomic-helper: drm_atomic_helper_shutdown(NULL)
should be a noop"). I've tried to call this out but it also should be
obvious once you know to look for it.
I'd like to call out a few drivers that I _didn't_ fix in this series
and why. If any of these drivers should be fixed then please yell.
- DRM driers backed by usb_driver (like gud, gm12u320, udl): I didn't
add the call to drm_atomic_helper_shutdown() at shutdown time
because there's no ".shutdown" callback for them USB drivers. Given
that USB is hotpluggable, I'm assuming that they are robust against
this and the special shutdown callback isn't needed.
- ofdrm and simpledrm: These didn't have drm_atomic_helper_shutdown()
in either shutdown or remove, but I didn't add it. I think that's OK
since they're sorta special and not really directly controlling
hardware power sequencing.
- virtio, vkms, vmwgfx, xen: I believe these are all virtual (thus
they wouldn't directly drive a panel) and adding the shutdown
didn't look straightforward, so I skipped them.
I've let each patch in the series get CCed straight from
get_maintainer. That means not everyone will have received every patch
but everyone should be on the cover letter. I know some people dislike
this but when touching this many drivers there's not much
choice. dri-devel and lkml have been CCed and lore/lei exist, so
hopefully that's enough for folks. I'm happy to add people to the
whole series for future posts.
[1] https://lore.kernel.org/lkml/20230804140605.RFC.4.I930069a32baab6faf46d6b234f89613b5cec0f14@changeid
Douglas Anderson (15):
drm/armada: Call drm_atomic_helper_shutdown() at shutdown time
drm/imx/dcss: Call drm_atomic_helper_shutdown() at shutdown time
drm/ingenic: Call drm_atomic_helper_shutdown() at shutdown time
drm/kmb: Call drm_atomic_helper_shutdown() at shutdown time
drm/mediatek: Call drm_atomic_helper_shutdown() at shutdown time
drm/nouveau: Call drm_atomic_helper_shutdown() or equiv at shutdown
time
drm/tegra: Call drm_atomic_helper_shutdown() at shutdown time
drm/arcpgu: Call drm_atomic_helper_shutdown() at shutdown time
drm/amdgpu: Call drm_atomic_helper_shutdown() at shutdown time
drm/sprd: Call drm_atomic_helper_shutdown() at remove time
drm/exynos: Call drm_atomic_helper_shutdown() at shutdown/unbind time
drm/gma500: Call drm_helper_force_disable_all() at shutdown/remove
time
drm/imx/ipuv3: Call drm_atomic_helper_shutdown() at shutdown/unbind
time
drm/radeon: Call drm_helper_force_disable_all() at shutdown/remove
time
drm/renesas/shmobile: Call drm_helper_force_disable_all() at
shutdown/remove time
drivers/gpu/drm/amd/amdgpu/amdgpu.h | 1 +
drivers/gpu/drm/amd/amdgpu/amdgpu_device.c | 10 +++
drivers/gpu/drm/amd/amdgpu/amdgpu_drv.c | 2 +
drivers/gpu/drm/armada/armada_drv.c | 8 +++
drivers/gpu/drm/exynos/exynos_drm_drv.c | 11 ++++
drivers/gpu/drm/gma500/psb_drv.c | 8 +++
drivers/gpu/drm/imx/dcss/dcss-drv.c | 8 +++
drivers/gpu/drm/imx/dcss/dcss-kms.c | 7 ++
drivers/gpu/drm/imx/dcss/dcss-kms.h | 1 +
drivers/gpu/drm/imx/ipuv3/imx-drm-core.c | 11 ++++
drivers/gpu/drm/ingenic/ingenic-drm-drv.c | 66 ++++++++++++-------
drivers/gpu/drm/kmb/kmb_drv.c | 6 ++
drivers/gpu/drm/mediatek/mtk_drm_drv.c | 9 +++
drivers/gpu/drm/nouveau/nouveau_display.c | 9 +++
drivers/gpu/drm/nouveau/nouveau_display.h | 1 +
drivers/gpu/drm/nouveau/nouveau_drm.c | 13 ++++
drivers/gpu/drm/nouveau/nouveau_drv.h | 1 +
drivers/gpu/drm/nouveau/nouveau_platform.c | 6 ++
drivers/gpu/drm/radeon/radeon_drv.c | 7 +-
.../gpu/drm/renesas/shmobile/shmob_drm_drv.c | 10 +++
drivers/gpu/drm/sprd/sprd_drm.c | 4 +-
drivers/gpu/drm/tegra/drm.c | 6 ++
drivers/gpu/drm/tiny/arcpgu.c | 6 ++
23 files changed, 187 insertions(+), 24 deletions(-)
--
2.42.0.283.g2d96d420d3-goog
^ permalink raw reply [flat|nested] 3+ messages in thread
* [RFT PATCH 07/15] drm/tegra: Call drm_atomic_helper_shutdown() at shutdown time
2023-09-01 23:41 [RFT PATCH 00/15] drm: non-drm-misc drivers call drm_atomic_helper_shutdown() at the right times Douglas Anderson
@ 2023-09-01 23:41 ` Douglas Anderson
2023-09-04 7:28 ` Maxime Ripard
0 siblings, 1 reply; 3+ messages in thread
From: Douglas Anderson @ 2023-09-01 23:41 UTC (permalink / raw)
To: dri-devel, Maxime Ripard
Cc: Douglas Anderson, airlied, daniel, jonathanh, linux-kernel,
linux-tegra, mperttunen, thierry.reding
Based on grepping through the source code this driver appears to be
missing a call to drm_atomic_helper_shutdown() at system shutdown
time. Among other things, this means that if a panel is in use that it
won't be cleanly powered off at system shutdown time.
The fact that we should call drm_atomic_helper_shutdown() in the case
of OS shutdown/restart comes straight out of the kernel doc "driver
instance overview" in drm_drv.c.
Suggested-by: Maxime Ripard <mripard@kernel.org>
Signed-off-by: Douglas Anderson <dianders@chromium.org>
---
This commit is only compile-time tested.
drivers/gpu/drm/tegra/drm.c | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/drivers/gpu/drm/tegra/drm.c b/drivers/gpu/drm/tegra/drm.c
index ff36171c8fb7..ce2d4153f7bd 100644
--- a/drivers/gpu/drm/tegra/drm.c
+++ b/drivers/gpu/drm/tegra/drm.c
@@ -1312,6 +1312,11 @@ static int host1x_drm_remove(struct host1x_device *dev)
return 0;
}
+static void host1x_drm_shutdown(struct host1x_device *dev)
+{
+ drm_atomic_helper_shutdown(dev_get_drvdata(&dev->dev));
+}
+
#ifdef CONFIG_PM_SLEEP
static int host1x_drm_suspend(struct device *dev)
{
@@ -1380,6 +1385,7 @@ static struct host1x_driver host1x_drm_driver = {
},
.probe = host1x_drm_probe,
.remove = host1x_drm_remove,
+ .shutdown = host1x_drm_shutdown,
.subdevs = host1x_drm_subdevs,
};
--
2.42.0.283.g2d96d420d3-goog
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [RFT PATCH 07/15] drm/tegra: Call drm_atomic_helper_shutdown() at shutdown time
2023-09-01 23:41 ` [RFT PATCH 07/15] drm/tegra: Call drm_atomic_helper_shutdown() at shutdown time Douglas Anderson
@ 2023-09-04 7:28 ` Maxime Ripard
0 siblings, 0 replies; 3+ messages in thread
From: Maxime Ripard @ 2023-09-04 7:28 UTC (permalink / raw)
To: Douglas Anderson
Cc: airlied, daniel, dri-devel, jonathanh, linux-kernel, linux-tegra,
mperttunen, thierry.reding, Maxime Ripard
On Fri, 1 Sep 2023 16:41:18 -0700, Douglas Anderson wrote:
> Based on grepping through the source code this driver appears to be
> missing a call to drm_atomic_helper_shutdown() at system shutdown
> time. Among other things, this means that if a panel is in use that it
> won't be cleanly powered off at system shutdown time.
>
>
> [ ... ]
Reviewed-by: Maxime Ripard <mripard@kernel.org>
Thanks!
Maxime
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-09-04 7:28 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-01 23:41 [RFT PATCH 00/15] drm: non-drm-misc drivers call drm_atomic_helper_shutdown() at the right times Douglas Anderson
2023-09-01 23:41 ` [RFT PATCH 07/15] drm/tegra: Call drm_atomic_helper_shutdown() at shutdown time Douglas Anderson
2023-09-04 7:28 ` Maxime Ripard
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).