]> git.baikalelectronics.ru Git - kernel.git/commit
drm/panfrost: Fix possible suspend in panfrost_remove
authorRob Herring <robh@kernel.org>
Fri, 23 Aug 2019 02:12:09 +0000 (21:12 -0500)
committerRob Herring <robh@kernel.org>
Wed, 28 Aug 2019 15:02:39 +0000 (10:02 -0500)
commitd48446e9a8ae2852909a2aaea38b61d0904adfa0
treeb644450e9344285edc2df4c7969fb6b20d8f3d4f
parent9c1c060c633409e93c1d2a9ada17bc6efc6920d1
drm/panfrost: Fix possible suspend in panfrost_remove

Calls to panfrost_device_fini() access the h/w, but we already done a
pm_runtime_put_sync_autosuspend() beforehand. This only works if the
autosuspend delay is long enough. A 0ms delay will hang the system when
removing the device. Fix this by moving the pm_runtime_put_sync_suspend()
after the panfrost_device_fini() call.

Cc: Tomeu Vizoso <tomeu.vizoso@collabora.com>
Cc: David Airlie <airlied@linux.ie>
Cc: Daniel Vetter <daniel@ffwll.ch>
Signed-off-by: Rob Herring <robh@kernel.org>
Reviewed-by: Steven Price <steven.price@arm.com>
Acked-by: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20190823021216.5862-2-robh@kernel.org
drivers/gpu/drm/panfrost/panfrost_drv.c