Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 329435
b: refs/heads/master
c: 2e43105
h: refs/heads/master
i:
  329433: 4d35ef5
  329431: 531914c
v: v3
  • Loading branch information
Daniel Vetter committed Sep 6, 2012
1 parent f9dc08c commit c6ed2d1
Show file tree
Hide file tree
Showing 2 changed files with 68 additions and 55 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 5e2b584ed1563c4c5199510710df6eaa1a36f3b1
refs/heads/master: 2e43105183bcecfbe56733785c05bf182df60082
121 changes: 67 additions & 54 deletions trunk/drivers/gpu/drm/i915/intel_display.c
Original file line number Diff line number Diff line change
Expand Up @@ -6839,64 +6839,15 @@ intel_set_config_compute_mode_changes(struct drm_mode_set *set,
}
}

static int intel_crtc_set_config(struct drm_mode_set *set)
static int
intel_set_config_update_output_state(struct drm_device *dev,
struct drm_mode_set *set,
struct intel_set_config *config)
{
struct drm_device *dev;
struct drm_crtc *new_crtc;
struct drm_encoder *new_encoder;
struct drm_framebuffer *old_fb = NULL;
struct drm_connector *connector;
int count = 0, ro;
struct drm_mode_set save_set;
struct intel_set_config *config;
int ret;
int i;

DRM_DEBUG_KMS("\n");

if (!set)
return -EINVAL;

if (!set->crtc)
return -EINVAL;

if (!set->crtc->helper_private)
return -EINVAL;

if (!set->mode)
set->fb = NULL;

if (set->fb) {
DRM_DEBUG_KMS("[CRTC:%d] [FB:%d] #connectors=%d (x y) (%i %i)\n",
set->crtc->base.id, set->fb->base.id,
(int)set->num_connectors, set->x, set->y);
} else {
DRM_DEBUG_KMS("[CRTC:%d] [NOFB]\n", set->crtc->base.id);
return intel_crtc_helper_disable(set->crtc);
}

dev = set->crtc->dev;

ret = -ENOMEM;
config = kzalloc(sizeof(*config), GFP_KERNEL);
if (!config)
goto out_config;

ret = intel_set_config_save_state(dev, config);
if (ret)
goto out_config;

save_set.crtc = set->crtc;
save_set.mode = &set->crtc->mode;
save_set.x = set->crtc->x;
save_set.y = set->crtc->y;
save_set.fb = set->crtc->fb;

/* Compute whether we need a full modeset, only an fb base update or no
* change at all. In the future we might also check whether only the
* mode changed, e.g. for LVDS where we only change the panel fitter in
* such cases. */
intel_set_config_compute_mode_changes(set, config);
int count, ro;

/* a) traverse passed in connector list and get encoders for them */
count = 0;
Expand Down Expand Up @@ -6957,6 +6908,68 @@ static int intel_crtc_set_config(struct drm_mode_set *set)
}
}

return 0;
}

static int intel_crtc_set_config(struct drm_mode_set *set)
{
struct drm_device *dev;
struct drm_framebuffer *old_fb = NULL;
struct drm_mode_set save_set;
struct intel_set_config *config;
int ret;
int i;

DRM_DEBUG_KMS("\n");

if (!set)
return -EINVAL;

if (!set->crtc)
return -EINVAL;

if (!set->crtc->helper_private)
return -EINVAL;

if (!set->mode)
set->fb = NULL;

if (set->fb) {
DRM_DEBUG_KMS("[CRTC:%d] [FB:%d] #connectors=%d (x y) (%i %i)\n",
set->crtc->base.id, set->fb->base.id,
(int)set->num_connectors, set->x, set->y);
} else {
DRM_DEBUG_KMS("[CRTC:%d] [NOFB]\n", set->crtc->base.id);
return intel_crtc_helper_disable(set->crtc);
}

dev = set->crtc->dev;

ret = -ENOMEM;
config = kzalloc(sizeof(*config), GFP_KERNEL);
if (!config)
goto out_config;

ret = intel_set_config_save_state(dev, config);
if (ret)
goto out_config;

save_set.crtc = set->crtc;
save_set.mode = &set->crtc->mode;
save_set.x = set->crtc->x;
save_set.y = set->crtc->y;
save_set.fb = set->crtc->fb;

/* Compute whether we need a full modeset, only an fb base update or no
* change at all. In the future we might also check whether only the
* mode changed, e.g. for LVDS where we only change the panel fitter in
* such cases. */
intel_set_config_compute_mode_changes(set, config);

ret = intel_set_config_update_output_state(dev, set, config);
if (ret)
goto fail;

if (config->mode_changed) {
set->crtc->enabled = drm_helper_crtc_in_use(set->crtc);
if (set->crtc->enabled) {
Expand Down

0 comments on commit c6ed2d1

Please sign in to comment.