mirror of
https://git.proxmox.com/git/mirror_ubuntu-kernels.git
synced 2025-11-18 02:20:30 +00:00
Generate a hotplug event after registering a client to allow the client to configure its display. Remove the hotplug calls from the existing clients for fbdev emulation. This change fixes a concurrency bug between registering a client and receiving events from the DRM core. The bug is present in the fbdev emulation of all drivers. The fbdev emulation currently generates a hotplug event before registering the client to the device. For each new output, the DRM core sends an additional hotplug event to each registered client. If the DRM core detects first output between sending the artificial hotplug and registering the device, the output's hotplug event gets lost. If this is the first output, the fbdev console display remains dark. This has been observed with amdgpu and fbdev-generic. Fix this by adding hotplug generation directly to the client's register helper drm_client_register(). Registering the client and receiving events are serialized by struct drm_device.clientlist_mutex. So an output is either configured by the initial hotplug event, or the client has already been registered. The bug was originally added in commit6e3f17ee73("drm/fb-helper: generic: Call drm_client_add() after setup is done"), in which adding a client and receiving a hotplug event switched order. It was hidden, as most hardware and drivers have at least on static output configured. Other drivers didn't use the internal DRM client or still had struct drm_mode_config_funcs.output_poll_changed set. That callback handled hotplug events as well. After not setting the callback in amdgpu in commit0e3172bac3("drm/amdgpu: Don't set struct drm_driver.output_poll_changed"), amdgpu did not show a framebuffer console if output events got lost. The bug got copy-pasted from fbdev-generic into the other fbdev emulation. Reported-by: Moritz Duge <MoritzDuge@kolahilft.de> Closes: https://gitlab.freedesktop.org/drm/amd/-/issues/2649 Fixes:6e3f17ee73("drm/fb-helper: generic: Call drm_client_add() after setup is done") Fixes:8ab59da26b("drm/fb-helper: Move generic fbdev emulation into separate source file") Fixes:b79fe9abd5("drm/fbdev-dma: Implement fbdev emulation for GEM DMA helpers") Fixes:63c381552f("drm/armada: Implement fbdev emulation as in-kernel client") Fixes:49953b70e7("drm/exynos: Implement fbdev emulation as in-kernel client") Fixes:8f1aaccb04("drm/gma500: Implement client-based fbdev emulation") Fixes:940b869c2f("drm/msm: Implement fbdev emulation as in-kernel client") Fixes:9e69bcd88e("drm/omapdrm: Implement fbdev emulation as in-kernel client") Fixes:e317a69fe8("drm/radeon: Implement client-based fbdev emulation") Fixes:71ec16f45e("drm/tegra: Implement fbdev emulation as in-kernel client") Fixes:0e3172bac3("drm/amdgpu: Don't set struct drm_driver.output_poll_changed") Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de> Tested-by: Moritz Duge <MoritzDuge@kolahilft.de> Tested-by: Torsten Krah <krah.tm@gmail.com> Tested-by: Paul Schyska <pschyska@gmail.com> Cc: Daniel Vetter <daniel.vetter@ffwll.ch> Cc: David Airlie <airlied@gmail.com> Cc: Noralf Trønnes <noralf@tronnes.org> Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com> Cc: Maxime Ripard <mripard@kernel.org> Cc: Javier Martinez Canillas <javierm@redhat.com> Cc: Russell King <linux@armlinux.org.uk> Cc: Inki Dae <inki.dae@samsung.com> Cc: Seung-Woo Kim <sw0312.kim@samsung.com> Cc: Kyungmin Park <kyungmin.park@samsung.com> Cc: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> Cc: Patrik Jakobsson <patrik.r.jakobsson@gmail.com> Cc: Rob Clark <robdclark@gmail.com> Cc: Abhinav Kumar <quic_abhinavk@quicinc.com> Cc: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> Cc: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com> Cc: Alex Deucher <alexander.deucher@amd.com> Cc: "Christian König" <christian.koenig@amd.com> Cc: "Pan, Xinhui" <Xinhui.Pan@amd.com> Cc: Thierry Reding <thierry.reding@gmail.com> Cc: Mikko Perttunen <mperttunen@nvidia.com> Cc: dri-devel@lists.freedesktop.org Cc: linux-kernel@vger.kernel.org Cc: linux-arm-kernel@lists.infradead.org Cc: linux-samsung-soc@vger.kernel.org Cc: linux-arm-msm@vger.kernel.org Cc: freedreno@lists.freedesktop.org Cc: amd-gfx@lists.freedesktop.org Cc: linux-tegra@vger.kernel.org Cc: dri-devel@lists.freedesktop.org Cc: <stable@vger.kernel.org> # v5.2+ Reviewed-by: Javier Martinez Canillas <javierm@redhat.com> Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> # msm Link: https://patchwork.freedesktop.org/patch/msgid/20230710091029.27503-1-tzimmermann@suse.de
221 lines
4.8 KiB
C
221 lines
4.8 KiB
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* Copyright (C) 2012 Russell King
|
|
* Written from the i915 driver.
|
|
*/
|
|
|
|
#include <linux/errno.h>
|
|
#include <linux/fb.h>
|
|
#include <linux/kernel.h>
|
|
#include <linux/module.h>
|
|
|
|
#include <drm/drm_crtc_helper.h>
|
|
#include <drm/drm_drv.h>
|
|
#include <drm/drm_fb_helper.h>
|
|
#include <drm/drm_fourcc.h>
|
|
|
|
#include "armada_crtc.h"
|
|
#include "armada_drm.h"
|
|
#include "armada_fb.h"
|
|
#include "armada_gem.h"
|
|
|
|
static void armada_fbdev_fb_destroy(struct fb_info *info)
|
|
{
|
|
struct drm_fb_helper *fbh = info->par;
|
|
|
|
drm_fb_helper_fini(fbh);
|
|
|
|
fbh->fb->funcs->destroy(fbh->fb);
|
|
|
|
drm_client_release(&fbh->client);
|
|
drm_fb_helper_unprepare(fbh);
|
|
kfree(fbh);
|
|
}
|
|
|
|
static const struct fb_ops armada_fb_ops = {
|
|
.owner = THIS_MODULE,
|
|
FB_DEFAULT_IO_OPS,
|
|
DRM_FB_HELPER_DEFAULT_OPS,
|
|
.fb_destroy = armada_fbdev_fb_destroy,
|
|
};
|
|
|
|
static int armada_fbdev_create(struct drm_fb_helper *fbh,
|
|
struct drm_fb_helper_surface_size *sizes)
|
|
{
|
|
struct drm_device *dev = fbh->dev;
|
|
struct drm_mode_fb_cmd2 mode;
|
|
struct armada_framebuffer *dfb;
|
|
struct armada_gem_object *obj;
|
|
struct fb_info *info;
|
|
int size, ret;
|
|
void *ptr;
|
|
|
|
memset(&mode, 0, sizeof(mode));
|
|
mode.width = sizes->surface_width;
|
|
mode.height = sizes->surface_height;
|
|
mode.pitches[0] = armada_pitch(mode.width, sizes->surface_bpp);
|
|
mode.pixel_format = drm_mode_legacy_fb_format(sizes->surface_bpp,
|
|
sizes->surface_depth);
|
|
|
|
size = mode.pitches[0] * mode.height;
|
|
obj = armada_gem_alloc_private_object(dev, size);
|
|
if (!obj) {
|
|
DRM_ERROR("failed to allocate fb memory\n");
|
|
return -ENOMEM;
|
|
}
|
|
|
|
ret = armada_gem_linear_back(dev, obj);
|
|
if (ret) {
|
|
drm_gem_object_put(&obj->obj);
|
|
return ret;
|
|
}
|
|
|
|
ptr = armada_gem_map_object(dev, obj);
|
|
if (!ptr) {
|
|
drm_gem_object_put(&obj->obj);
|
|
return -ENOMEM;
|
|
}
|
|
|
|
dfb = armada_framebuffer_create(dev, &mode, obj);
|
|
|
|
/*
|
|
* A reference is now held by the framebuffer object if
|
|
* successful, otherwise this drops the ref for the error path.
|
|
*/
|
|
drm_gem_object_put(&obj->obj);
|
|
|
|
if (IS_ERR(dfb))
|
|
return PTR_ERR(dfb);
|
|
|
|
info = drm_fb_helper_alloc_info(fbh);
|
|
if (IS_ERR(info)) {
|
|
ret = PTR_ERR(info);
|
|
goto err_fballoc;
|
|
}
|
|
|
|
info->fbops = &armada_fb_ops;
|
|
info->fix.smem_start = obj->phys_addr;
|
|
info->fix.smem_len = obj->obj.size;
|
|
info->screen_size = obj->obj.size;
|
|
info->screen_base = ptr;
|
|
fbh->fb = &dfb->fb;
|
|
|
|
drm_fb_helper_fill_info(info, fbh, sizes);
|
|
|
|
DRM_DEBUG_KMS("allocated %dx%d %dbpp fb: 0x%08llx\n",
|
|
dfb->fb.width, dfb->fb.height, dfb->fb.format->cpp[0] * 8,
|
|
(unsigned long long)obj->phys_addr);
|
|
|
|
return 0;
|
|
|
|
err_fballoc:
|
|
dfb->fb.funcs->destroy(&dfb->fb);
|
|
return ret;
|
|
}
|
|
|
|
static int armada_fb_probe(struct drm_fb_helper *fbh,
|
|
struct drm_fb_helper_surface_size *sizes)
|
|
{
|
|
int ret = 0;
|
|
|
|
if (!fbh->fb) {
|
|
ret = armada_fbdev_create(fbh, sizes);
|
|
if (ret == 0)
|
|
ret = 1;
|
|
}
|
|
return ret;
|
|
}
|
|
|
|
static const struct drm_fb_helper_funcs armada_fb_helper_funcs = {
|
|
.fb_probe = armada_fb_probe,
|
|
};
|
|
|
|
/*
|
|
* Fbdev client and struct drm_client_funcs
|
|
*/
|
|
|
|
static void armada_fbdev_client_unregister(struct drm_client_dev *client)
|
|
{
|
|
struct drm_fb_helper *fbh = drm_fb_helper_from_client(client);
|
|
|
|
if (fbh->info) {
|
|
drm_fb_helper_unregister_info(fbh);
|
|
} else {
|
|
drm_client_release(&fbh->client);
|
|
drm_fb_helper_unprepare(fbh);
|
|
kfree(fbh);
|
|
}
|
|
}
|
|
|
|
static int armada_fbdev_client_restore(struct drm_client_dev *client)
|
|
{
|
|
drm_fb_helper_lastclose(client->dev);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int armada_fbdev_client_hotplug(struct drm_client_dev *client)
|
|
{
|
|
struct drm_fb_helper *fbh = drm_fb_helper_from_client(client);
|
|
struct drm_device *dev = client->dev;
|
|
int ret;
|
|
|
|
if (dev->fb_helper)
|
|
return drm_fb_helper_hotplug_event(dev->fb_helper);
|
|
|
|
ret = drm_fb_helper_init(dev, fbh);
|
|
if (ret)
|
|
goto err_drm_err;
|
|
|
|
if (!drm_drv_uses_atomic_modeset(dev))
|
|
drm_helper_disable_unused_functions(dev);
|
|
|
|
ret = drm_fb_helper_initial_config(fbh);
|
|
if (ret)
|
|
goto err_drm_fb_helper_fini;
|
|
|
|
return 0;
|
|
|
|
err_drm_fb_helper_fini:
|
|
drm_fb_helper_fini(fbh);
|
|
err_drm_err:
|
|
drm_err(dev, "armada: Failed to setup fbdev emulation (ret=%d)\n", ret);
|
|
return ret;
|
|
}
|
|
|
|
static const struct drm_client_funcs armada_fbdev_client_funcs = {
|
|
.owner = THIS_MODULE,
|
|
.unregister = armada_fbdev_client_unregister,
|
|
.restore = armada_fbdev_client_restore,
|
|
.hotplug = armada_fbdev_client_hotplug,
|
|
};
|
|
|
|
void armada_fbdev_setup(struct drm_device *dev)
|
|
{
|
|
struct drm_fb_helper *fbh;
|
|
int ret;
|
|
|
|
drm_WARN(dev, !dev->registered, "Device has not been registered.\n");
|
|
drm_WARN(dev, dev->fb_helper, "fb_helper is already set!\n");
|
|
|
|
fbh = kzalloc(sizeof(*fbh), GFP_KERNEL);
|
|
if (!fbh)
|
|
return;
|
|
drm_fb_helper_prepare(dev, fbh, 32, &armada_fb_helper_funcs);
|
|
|
|
ret = drm_client_init(dev, &fbh->client, "fbdev", &armada_fbdev_client_funcs);
|
|
if (ret) {
|
|
drm_err(dev, "Failed to register client: %d\n", ret);
|
|
goto err_drm_client_init;
|
|
}
|
|
|
|
drm_client_register(&fbh->client);
|
|
|
|
return;
|
|
|
|
err_drm_client_init:
|
|
drm_fb_helper_unprepare(fbh);
|
|
kfree(fbh);
|
|
return;
|
|
}
|