mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 17:30:53 +07:00
drm/fb: revert the i915 Actually configure untiled displays from master
This code moved in here in master, so revert it the same way.
This is the same revert as 9fa246256e
("Revert "drm/i915/fbdev:
Actually configure untiled displays"") in drm-fixes.
Signed-off-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
parent
6ecac85ead
commit
abbc0697d5
@ -2580,7 +2580,7 @@ static bool drm_fb_helper_firmware_config(struct drm_fb_helper *fb_helper,
|
|||||||
{
|
{
|
||||||
struct drm_device *dev = fb_helper->dev;
|
struct drm_device *dev = fb_helper->dev;
|
||||||
unsigned int count = min(fb_helper->connector_count, BITS_PER_LONG);
|
unsigned int count = min(fb_helper->connector_count, BITS_PER_LONG);
|
||||||
unsigned long conn_configured, conn_seq;
|
unsigned long conn_configured, conn_seq, mask;
|
||||||
int i, j;
|
int i, j;
|
||||||
bool *save_enabled;
|
bool *save_enabled;
|
||||||
bool fallback = true, ret = true;
|
bool fallback = true, ret = true;
|
||||||
@ -2598,9 +2598,10 @@ static bool drm_fb_helper_firmware_config(struct drm_fb_helper *fb_helper,
|
|||||||
drm_modeset_backoff(&ctx);
|
drm_modeset_backoff(&ctx);
|
||||||
|
|
||||||
memcpy(save_enabled, enabled, count);
|
memcpy(save_enabled, enabled, count);
|
||||||
conn_seq = GENMASK(count - 1, 0);
|
mask = GENMASK(count - 1, 0);
|
||||||
conn_configured = 0;
|
conn_configured = 0;
|
||||||
retry:
|
retry:
|
||||||
|
conn_seq = conn_configured;
|
||||||
for (i = 0; i < count; i++) {
|
for (i = 0; i < count; i++) {
|
||||||
struct drm_fb_helper_connector *fb_conn;
|
struct drm_fb_helper_connector *fb_conn;
|
||||||
struct drm_connector *connector;
|
struct drm_connector *connector;
|
||||||
@ -2613,8 +2614,7 @@ static bool drm_fb_helper_firmware_config(struct drm_fb_helper *fb_helper,
|
|||||||
if (conn_configured & BIT(i))
|
if (conn_configured & BIT(i))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
/* First pass, only consider tiled connectors */
|
if (conn_seq == 0 && !connector->has_tile)
|
||||||
if (conn_seq == GENMASK(count - 1, 0) && !connector->has_tile)
|
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
if (connector->status == connector_status_connected)
|
if (connector->status == connector_status_connected)
|
||||||
@ -2715,10 +2715,8 @@ static bool drm_fb_helper_firmware_config(struct drm_fb_helper *fb_helper,
|
|||||||
conn_configured |= BIT(i);
|
conn_configured |= BIT(i);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (conn_configured != conn_seq) { /* repeat until no more are found */
|
if ((conn_configured & mask) != mask && conn_configured != conn_seq)
|
||||||
conn_seq = conn_configured;
|
|
||||||
goto retry;
|
goto retry;
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* If the BIOS didn't enable everything it could, fall back to have the
|
* If the BIOS didn't enable everything it could, fall back to have the
|
||||||
|
Loading…
Reference in New Issue
Block a user