drm/fb: add support for not enabling fbcon on non-desktop displays [v2]
We don't want fbcon to get used on non-desktop dislays, don't pass them as enabled connectors to the fb helper setup. This prevents my HMD from getting disorted fbcon, and from affecting other displays console. v2: Change description from non-standard to non-desktop Reviewed-by: Keith Packard <keithp@keithp.com> Signed-off-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
Родитель
66660d4cf2
Коммит
b5f053882f
|
@ -2033,6 +2033,9 @@ static bool drm_connector_enabled(struct drm_connector *connector, bool strict)
|
||||||
{
|
{
|
||||||
bool enable;
|
bool enable;
|
||||||
|
|
||||||
|
if (connector->display_info.non_desktop)
|
||||||
|
return false;
|
||||||
|
|
||||||
if (strict)
|
if (strict)
|
||||||
enable = connector->status == connector_status_connected;
|
enable = connector->status == connector_status_connected;
|
||||||
else
|
else
|
||||||
|
@ -2052,7 +2055,8 @@ static void drm_enable_connectors(struct drm_fb_helper *fb_helper,
|
||||||
connector = fb_helper->connector_info[i]->connector;
|
connector = fb_helper->connector_info[i]->connector;
|
||||||
enabled[i] = drm_connector_enabled(connector, true);
|
enabled[i] = drm_connector_enabled(connector, true);
|
||||||
DRM_DEBUG_KMS("connector %d enabled? %s\n", connector->base.id,
|
DRM_DEBUG_KMS("connector %d enabled? %s\n", connector->base.id,
|
||||||
enabled[i] ? "yes" : "no");
|
connector->display_info.non_desktop ? "non desktop" : enabled[i] ? "yes" : "no");
|
||||||
|
|
||||||
any_enabled |= enabled[i];
|
any_enabled |= enabled[i];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче