* [PATCH] drm/appletbdrm: Add suspend and resume support
@ 2026-09-24 19:25 Vasilij Markin via B4 Relay
2026-09-25 11:51 ` Aditya Garg
0 siblings, 1 reply; 2+ messages in thread
From: Vasilij Markin via B4 Relay @ 2026-09-24 19:25 UTC (permalink / raw)
To: Aun-Ali Zaidi, Aditya Garg, Maarten Lankhorst, Maxime Ripard,
Thomas Zimmermann, David Airlie, Simona Vetter
Cc: dri-devel, linux-kernel, Kerem Karabay, Atharva Tiwari, Vasilij Markin
From: Vasilij Markin <vasilij.kernel@tototo.si>
The driver has no USB power management callbacks, so the USB core
unbinds it before system suspend and binds it again on resume. The DRM
device is unregistered and registered again on every suspend and resume
cycle, userspace driving the Touch Bar through it (such as tiny-dfr)
loses its device, and the Touch Bar stays dark after resume.
Implement suspend and resume with drm_mode_config_helper_suspend() and
drm_mode_config_helper_resume(), so the device stays registered and the
last committed state is restored on resume. If the device was reset
while suspended, repeat the probe-time handshake first.
Fixes: 0670c2f56e45 ("drm/tiny: add driver for Apple Touch Bars in x86 Macs")
Assisted-by: Claude:claude-opus-5-5
Signed-off-by: Vasilij Markin <vasilij.kernel@tototo.si>
---
Tested on a MacBookPro16,2 with this change backported to 7.2.7, deep (S3)
suspend by closing the lid, tiny-dfr 0.3.7. Without it the driver is probed
again on every resume and systemd stops tiny-dfr; with it tiny-dfr keeps
running, the driver is not probed again and the Touch Bar shows its content
right after resume. The reset_resume path is untested: the device never came
back reset.
Kernels before commit 3d95f93b30b8 ("drm/appletbdrm: Convert to atomic_create_state")
also need the plane reset hook to free the existing state, otherwise
drm_mode_config_reset() on resume hits WARN_ON(plane->state) in
appletbdrm_primary_plane_reset() and leaks the old state. 7.2.y is such a
kernel; the tested backport carries that change as a separate patch.
Built on drm-misc-next (c4c54ffd6) with W=1 without warnings.
---
drivers/gpu/drm/tiny/appletbdrm.c | 43 +++++++++++++++++++++++++++++++++++++++
1 file changed, 43 insertions(+)
diff --git a/drivers/gpu/drm/tiny/appletbdrm.c b/drivers/gpu/drm/tiny/appletbdrm.c
index 4297d9c11..024ad8bf6 100644
--- a/drivers/gpu/drm/tiny/appletbdrm.c
+++ b/drivers/gpu/drm/tiny/appletbdrm.c
@@ -30,6 +30,7 @@
#include <drm/drm_gem_atomic_helper.h>
#include <drm/drm_gem_framebuffer_helper.h>
#include <drm/drm_gem_shmem_helper.h>
+#include <drm/drm_modeset_helper.h>
#include <drm/drm_plane.h>
#include <drm/drm_print.h>
#include <drm/drm_probe_helper.h>
@@ -821,6 +822,45 @@ static void appletbdrm_shutdown(struct usb_interface *intf)
drm_atomic_helper_shutdown(&adev->drm);
}
+static int appletbdrm_suspend(struct usb_interface *intf, pm_message_t message)
+{
+ struct appletbdrm_device *adev = usb_get_intfdata(intf);
+
+ return drm_mode_config_helper_suspend(&adev->drm);
+}
+
+static int appletbdrm_resume(struct usb_interface *intf)
+{
+ struct appletbdrm_device *adev = usb_get_intfdata(intf);
+
+ return drm_mode_config_helper_resume(&adev->drm);
+}
+
+static int appletbdrm_reset_resume(struct usb_interface *intf)
+{
+ struct appletbdrm_device *adev = usb_get_intfdata(intf);
+ struct drm_device *drm = &adev->drm;
+ int ret;
+
+ /*
+ * A reset puts the device back into its initial state, where it
+ * expects the same handshake as during probe
+ */
+ ret = appletbdrm_get_information(adev);
+ if (ret) {
+ drm_err(drm, "Failed to get display information\n");
+ return ret;
+ }
+
+ ret = appletbdrm_signal_readiness(adev);
+ if (ret) {
+ drm_err(drm, "Failed to signal readiness\n");
+ return ret;
+ }
+
+ return drm_mode_config_helper_resume(drm);
+}
+
static const struct usb_device_id appletbdrm_usb_id_table[] = {
{ USB_DEVICE_INTERFACE_CLASS(0x05ac, 0x8302, USB_CLASS_AUDIO_VIDEO) },
{}
@@ -832,6 +872,9 @@ static struct usb_driver appletbdrm_usb_driver = {
.probe = appletbdrm_probe,
.disconnect = appletbdrm_disconnect,
.shutdown = appletbdrm_shutdown,
+ .suspend = appletbdrm_suspend,
+ .resume = appletbdrm_resume,
+ .reset_resume = appletbdrm_reset_resume,
.id_table = appletbdrm_usb_id_table,
};
module_usb_driver(appletbdrm_usb_driver);
---
base-commit: c4c54ffd65555ac5316f8faf4d7dc8c815877937
change-id: 20260924-appletbdrm-pm-6bd220385beb
Best regards,
--
Vasilij Markin <vasilij.kernel@tototo.si>
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [PATCH] drm/appletbdrm: Add suspend and resume support
2026-09-24 19:25 [PATCH] drm/appletbdrm: Add suspend and resume support Vasilij Markin via B4 Relay
@ 2026-09-25 11:51 ` Aditya Garg
0 siblings, 0 replies; 2+ messages in thread
From: Aditya Garg @ 2026-09-25 11:51 UTC (permalink / raw)
To: vasilij.kernel, Aun-Ali Zaidi, Maarten Lankhorst, Maxime Ripard,
Thomas Zimmermann, David Airlie, Simona Vetter
Cc: dri-devel, linux-kernel, Kerem Karabay, Atharva Tiwari
Hi Vasilij
Thanks for the patch
> From: Vasilij Markin <vasilij.kernel@tototo.si>
>
> The driver has no USB power management callbacks, so the USB core
> unbinds it before system suspend and binds it again on resume. The DRM
> device is unregistered and registered again on every suspend and resume
> cycle, userspace driving the Touch Bar through it (such as tiny-dfr)
> loses its device, and the Touch Bar stays dark after resume.
>
> Implement suspend and resume with drm_mode_config_helper_suspend() and
> drm_mode_config_helper_resume(), so the device stays registered and the
> last committed state is restored on resume. If the device was reset
> while suspended, repeat the probe-time handshake first.
>
> Fixes: 0670c2f56e45 ("drm/tiny: add driver for Apple Touch Bars in x86 Macs")
> Assisted-by: Claude:claude-opus-5-5
> Signed-off-by: Vasilij Markin <vasilij.kernel@tototo.si>
> ---
> Tested on a MacBookPro16,2 with this change backported to 7.2.7, deep (S3)
> suspend by closing the lid, tiny-dfr 0.3.7. Without it the driver is probed
> again on every resume and systemd stops tiny-dfr; with it tiny-dfr keeps
> running, the driver is not probed again and the Touch Bar shows its content
> right after resume. The reset_resume path is untested: the device never came
> back reset.
>
> Kernels before commit 3d95f93b30b8 ("drm/appletbdrm: Convert to atomic_create_state")
> also need the plane reset hook to free the existing state, otherwise
> drm_mode_config_reset() on resume hits WARN_ON(plane->state) in
> appletbdrm_primary_plane_reset() and leaks the old state. 7.2.y is such a
> kernel; the tested backport carries that change as a separate patch.
>
> Built on drm-misc-next (c4c54ffd6) with W=1 without warnings.
> ---
> drivers/gpu/drm/tiny/appletbdrm.c | 43 +++++++++++++++++++++++++++++++++++++++
> 1 file changed, 43 insertions(+)
>
> diff --git a/drivers/gpu/drm/tiny/appletbdrm.c b/drivers/gpu/drm/tiny/appletbdrm.c
> index 4297d9c11..024ad8bf6 100644
> --- a/drivers/gpu/drm/tiny/appletbdrm.c
> +++ b/drivers/gpu/drm/tiny/appletbdrm.c
> @@ -30,6 +30,7 @@
> #include <drm/drm_gem_atomic_helper.h>
> #include <drm/drm_gem_framebuffer_helper.h>
> #include <drm/drm_gem_shmem_helper.h>
> +#include <drm/drm_modeset_helper.h>
> #include <drm/drm_plane.h>
> #include <drm/drm_print.h>
> #include <drm/drm_probe_helper.h>
> @@ -821,6 +822,45 @@ static void appletbdrm_shutdown(struct usb_interface *intf)
> drm_atomic_helper_shutdown(&adev->drm);
> }
>
> +static int appletbdrm_suspend(struct usb_interface *intf, pm_message_t message)
> +{
> + struct appletbdrm_device *adev = usb_get_intfdata(intf);
> +
> + return drm_mode_config_helper_suspend(&adev->drm);
> +}
> +
> +static int appletbdrm_resume(struct usb_interface *intf)
> +{
> + struct appletbdrm_device *adev = usb_get_intfdata(intf);
> +
> + return drm_mode_config_helper_resume(&adev->drm);
> +}
> +
> +static int appletbdrm_reset_resume(struct usb_interface *intf)
We don't need a reset_resume function as the USB device is virtually
exposed by the t2bce driver and current implementation doesn't reset the
device in any case. If the need arises, it can be added in a later patch.
> +{
> + struct appletbdrm_device *adev = usb_get_intfdata(intf);
> + struct drm_device *drm = &adev->drm;
> + int ret;
> +
> + /*
> + * A reset puts the device back into its initial state, where it
> + * expects the same handshake as during probe
> + */
> + ret = appletbdrm_get_information(adev);
> + if (ret) {
> + drm_err(drm, "Failed to get display information\n");
> + return ret;
> + }
> +
> + ret = appletbdrm_signal_readiness(adev);
> + if (ret) {
> + drm_err(drm, "Failed to signal readiness\n");
> + return ret;
> + }
> +
> + return drm_mode_config_helper_resume(drm);
> +}
> +
> static const struct usb_device_id appletbdrm_usb_id_table[] = {
> { USB_DEVICE_INTERFACE_CLASS(0x05ac, 0x8302, USB_CLASS_AUDIO_VIDEO) },
> {}
> @@ -832,6 +872,9 @@ static struct usb_driver appletbdrm_usb_driver = {
> .probe = appletbdrm_probe,
> .disconnect = appletbdrm_disconnect,
> .shutdown = appletbdrm_shutdown,
> + .suspend = appletbdrm_suspend,
> + .resume = appletbdrm_resume,
> + .reset_resume = appletbdrm_reset_resume,
> .id_table = appletbdrm_usb_id_table,
> };
> module_usb_driver(appletbdrm_usb_driver);
>
> ---
> base-commit: c4c54ffd65555ac5316f8faf4d7dc8c815877937
> change-id: 20260924-appletbdrm-pm-6bd220385beb
>
> Best regards,
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-09-25 11:51 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-24 19:25 [PATCH] drm/appletbdrm: Add suspend and resume support Vasilij Markin via B4 Relay
2026-09-25 11:51 ` Aditya Garg
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®