All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jesse Barnes <jbarnes@virtuousgeek.org>
To: Daniel Vetter <daniel.vetter@ffwll.ch>
Cc: Intel Graphics Development <intel-gfx@lists.freedesktop.org>
Subject: Re: [PATCH 14/58] drm/i915: copy&paste drm_crtc_helper_set_config
Date: Tue, 4 Sep 2012 13:13:20 -0700	[thread overview]
Message-ID: <20120904131320.618588e7@jbarnes-desktop> (raw)
In-Reply-To: <1345403595-9678-15-git-send-email-daniel.vetter@ffwll.ch>

On Sun, 19 Aug 2012 21:12:31 +0200
Daniel Vetter <daniel.vetter@ffwll.ch> wrote:

> And the following static functions required by it:
> drm_encoder_crtc_ok, drm_crtc_helper_disable
> 
> No changes safe for the s/drm/intel prefix change.
> 
> Signed-Off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
> ---
>  drivers/gpu/drm/i915/intel_display.c | 314 ++++++++++++++++++++++++++++++++++-
>  1 file changed, 313 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/gpu/drm/i915/intel_display.c b/drivers/gpu/drm/i915/intel_display.c
> index 07077b1..33a5191 100644
> --- a/drivers/gpu/drm/i915/intel_display.c
> +++ b/drivers/gpu/drm/i915/intel_display.c
> @@ -6590,12 +6590,324 @@ static struct drm_crtc_helper_funcs intel_helper_funcs = {
>  	.disable = intel_crtc_disable,
>  };
>  
> +static bool intel_encoder_crtc_ok(struct drm_encoder *encoder,
> +				  struct drm_crtc *crtc)
> +{
> +	struct drm_device *dev;
> +	struct drm_crtc *tmp;
> +	int crtc_mask = 1;
> +
> +	WARN(!crtc, "checking null crtc?\n");
> +
> +	dev = crtc->dev;
> +
> +	list_for_each_entry(tmp, &dev->mode_config.crtc_list, head) {
> +		if (tmp == crtc)
> +			break;
> +		crtc_mask <<= 1;
> +	}
> +
> +	if (encoder->possible_crtcs & crtc_mask)
> +		return true;
> +	return false;
> +}
> +
> +static int
> +intel_crtc_helper_disable(struct drm_crtc *crtc)
> +{
> +	struct drm_device *dev = crtc->dev;
> +	struct drm_connector *connector;
> +	struct drm_encoder *encoder;
> +
> +	/* Decouple all encoders and their attached connectors from this crtc */
> +	list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
> +		if (encoder->crtc != crtc)
> +			continue;
> +
> +		list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
> +			if (connector->encoder != encoder)
> +				continue;
> +
> +			connector->encoder = NULL;
> +		}
> +	}
> +
> +	drm_helper_disable_unused_functions(dev);
> +	return 0;
> +}
> +
> +static int intel_crtc_set_config(struct drm_mode_set *set)
> +{
> +	struct drm_device *dev;
> +	struct drm_crtc *save_crtcs, *new_crtc, *crtc;
> +	struct drm_encoder *save_encoders, *new_encoder, *encoder;
> +	struct drm_framebuffer *old_fb = NULL;
> +	bool mode_changed = false; /* if true do a full mode set */
> +	bool fb_changed = false; /* if true and !mode_changed just do a flip */
> +	struct drm_connector *save_connectors, *connector;
> +	int count = 0, ro, fail = 0;
> +	struct drm_crtc_helper_funcs *crtc_funcs;
> +	struct drm_mode_set save_set;
> +	int ret;
> +	int i;
> +
> +	DRM_DEBUG_KMS("\n");
> +
> +	if (!set)
> +		return -EINVAL;
> +
> +	if (!set->crtc)
> +		return -EINVAL;
> +
> +	if (!set->crtc->helper_private)
> +		return -EINVAL;
> +
> +	crtc_funcs = set->crtc->helper_private;
> +
> +	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;
> +
> +	/* Allocate space for the backup of all (non-pointer) crtc, encoder and
> +	 * connector data. */
> +	save_crtcs = kzalloc(dev->mode_config.num_crtc *
> +			     sizeof(struct drm_crtc), GFP_KERNEL);
> +	if (!save_crtcs)
> +		return -ENOMEM;
> +
> +	save_encoders = kzalloc(dev->mode_config.num_encoder *
> +				sizeof(struct drm_encoder), GFP_KERNEL);
> +	if (!save_encoders) {
> +		kfree(save_crtcs);
> +		return -ENOMEM;
> +	}
> +
> +	save_connectors = kzalloc(dev->mode_config.num_connector *
> +				sizeof(struct drm_connector), GFP_KERNEL);
> +	if (!save_connectors) {
> +		kfree(save_crtcs);
> +		kfree(save_encoders);
> +		return -ENOMEM;
> +	}
> +
> +	/* Copy data. Note that driver private data is not affected.
> +	 * Should anything bad happen only the expected state is
> +	 * restored, not the drivers personal bookkeeping.
> +	 */
> +	count = 0;
> +	list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
> +		save_crtcs[count++] = *crtc;
> +	}
> +
> +	count = 0;
> +	list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
> +		save_encoders[count++] = *encoder;
> +	}
> +
> +	count = 0;
> +	list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
> +		save_connectors[count++] = *connector;
> +	}
> +
> +	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;
> +
> +	/* We should be able to check here if the fb has the same properties
> +	 * and then just flip_or_move it */
> +	if (set->crtc->fb != set->fb) {
> +		/* If we have no fb then treat it as a full mode set */
> +		if (set->crtc->fb == NULL) {
> +			DRM_DEBUG_KMS("crtc has no fb, full mode set\n");
> +			mode_changed = true;
> +		} else if (set->fb == NULL) {
> +			mode_changed = true;
> +		} else if (set->fb->depth != set->crtc->fb->depth) {
> +			mode_changed = true;
> +		} else if (set->fb->bits_per_pixel !=
> +			   set->crtc->fb->bits_per_pixel) {
> +			mode_changed = true;
> +		} else
> +			fb_changed = true;
> +	}
> +
> +	if (set->x != set->crtc->x || set->y != set->crtc->y)
> +		fb_changed = true;
> +
> +	if (set->mode && !drm_mode_equal(set->mode, &set->crtc->mode)) {
> +		DRM_DEBUG_KMS("modes are different, full mode set\n");
> +		drm_mode_debug_printmodeline(&set->crtc->mode);
> +		drm_mode_debug_printmodeline(set->mode);
> +		mode_changed = true;
> +	}
> +
> +	/* a) traverse passed in connector list and get encoders for them */
> +	count = 0;
> +	list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
> +		struct drm_connector_helper_funcs *connector_funcs =
> +			connector->helper_private;
> +		new_encoder = connector->encoder;
> +		for (ro = 0; ro < set->num_connectors; ro++) {
> +			if (set->connectors[ro] == connector) {
> +				new_encoder = connector_funcs->best_encoder(connector);
> +				/* if we can't get an encoder for a connector
> +				   we are setting now - then fail */
> +				if (new_encoder == NULL)
> +					/* don't break so fail path works correct */
> +					fail = 1;
> +				break;
> +			}
> +		}
> +
> +		if (new_encoder != connector->encoder) {
> +			DRM_DEBUG_KMS("encoder changed, full mode switch\n");
> +			mode_changed = true;
> +			/* If the encoder is reused for another connector, then
> +			 * the appropriate crtc will be set later.
> +			 */
> +			if (connector->encoder)
> +				connector->encoder->crtc = NULL;
> +			connector->encoder = new_encoder;
> +		}
> +	}
> +
> +	if (fail) {
> +		ret = -EINVAL;
> +		goto fail;
> +	}
> +
> +	count = 0;
> +	list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
> +		if (!connector->encoder)
> +			continue;
> +
> +		if (connector->encoder->crtc == set->crtc)
> +			new_crtc = NULL;
> +		else
> +			new_crtc = connector->encoder->crtc;
> +
> +		for (ro = 0; ro < set->num_connectors; ro++) {
> +			if (set->connectors[ro] == connector)
> +				new_crtc = set->crtc;
> +		}
> +
> +		/* Make sure the new CRTC will work with the encoder */
> +		if (new_crtc &&
> +		    !intel_encoder_crtc_ok(connector->encoder, new_crtc)) {
> +			ret = -EINVAL;
> +			goto fail;
> +		}
> +		if (new_crtc != connector->encoder->crtc) {
> +			DRM_DEBUG_KMS("crtc changed, full mode switch\n");
> +			mode_changed = true;
> +			connector->encoder->crtc = new_crtc;
> +		}
> +		if (new_crtc) {
> +			DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [CRTC:%d]\n",
> +				connector->base.id, drm_get_connector_name(connector),
> +				new_crtc->base.id);
> +		} else {
> +			DRM_DEBUG_KMS("[CONNECTOR:%d:%s] to [NOCRTC]\n",
> +				connector->base.id, drm_get_connector_name(connector));
> +		}
> +	}
> +
> +	/* mode_set_base is not a required function */
> +	if (fb_changed && !crtc_funcs->mode_set_base)
> +		mode_changed = true;
> +
> +	if (mode_changed) {
> +		set->crtc->enabled = drm_helper_crtc_in_use(set->crtc);
> +		if (set->crtc->enabled) {
> +			DRM_DEBUG_KMS("attempting to set mode from"
> +					" userspace\n");
> +			drm_mode_debug_printmodeline(set->mode);
> +			old_fb = set->crtc->fb;
> +			set->crtc->fb = set->fb;
> +			if (!drm_crtc_helper_set_mode(set->crtc, set->mode,
> +						      set->x, set->y,
> +						      old_fb)) {
> +				DRM_ERROR("failed to set mode on [CRTC:%d]\n",
> +					  set->crtc->base.id);
> +				set->crtc->fb = old_fb;
> +				ret = -EINVAL;
> +				goto fail;
> +			}
> +			DRM_DEBUG_KMS("Setting connector DPMS state to on\n");
> +			for (i = 0; i < set->num_connectors; i++) {
> +				DRM_DEBUG_KMS("\t[CONNECTOR:%d:%s] set DPMS on\n", set->connectors[i]->base.id,
> +					      drm_get_connector_name(set->connectors[i]));
> +				set->connectors[i]->funcs->dpms(set->connectors[i], DRM_MODE_DPMS_ON);
> +			}
> +		}
> +		drm_helper_disable_unused_functions(dev);
> +	} else if (fb_changed) {
> +		set->crtc->x = set->x;
> +		set->crtc->y = set->y;
> +
> +		old_fb = set->crtc->fb;
> +		if (set->crtc->fb != set->fb)
> +			set->crtc->fb = set->fb;
> +		ret = crtc_funcs->mode_set_base(set->crtc,
> +						set->x, set->y, old_fb);
> +		if (ret != 0) {
> +			set->crtc->fb = old_fb;
> +			goto fail;
> +		}
> +	}
> +
> +	kfree(save_connectors);
> +	kfree(save_encoders);
> +	kfree(save_crtcs);
> +	return 0;
> +
> +fail:
> +	/* Restore all previous data. */
> +	count = 0;
> +	list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
> +		*crtc = save_crtcs[count++];
> +	}
> +
> +	count = 0;
> +	list_for_each_entry(encoder, &dev->mode_config.encoder_list, head) {
> +		*encoder = save_encoders[count++];
> +	}
> +
> +	count = 0;
> +	list_for_each_entry(connector, &dev->mode_config.connector_list, head) {
> +		*connector = save_connectors[count++];
> +	}
> +
> +	/* Try to restore the config */
> +	if (mode_changed &&
> +	    !drm_crtc_helper_set_mode(save_set.crtc, save_set.mode, save_set.x,
> +				      save_set.y, save_set.fb))
> +		DRM_ERROR("failed to restore config after modeset failure\n");
> +
> +	kfree(save_connectors);
> +	kfree(save_encoders);
> +	kfree(save_crtcs);
> +	return ret;
> +}
> +
>  static const struct drm_crtc_funcs intel_crtc_funcs = {
>  	.reset = intel_crtc_reset,
>  	.cursor_set = intel_crtc_cursor_set,
>  	.cursor_move = intel_crtc_cursor_move,
>  	.gamma_set = intel_crtc_gamma_set,
> -	.set_config = drm_crtc_helper_set_config,
> +	.set_config = intel_crtc_set_config,
>  	.destroy = intel_crtc_destroy,
>  	.page_flip = intel_crtc_page_flip,
>  };

Acked-by: Jesse Barnes <jbarnes@virtuousgeek.org> (I did not check
line-by-line but it looks like the right shape :).

-- 
Jesse Barnes, Intel Open Source Technology Center

  reply	other threads:[~2012-09-04 20:13 UTC|newest]

Thread overview: 173+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-08-19 19:12 [PATCH 00/58] modeset-rework, the basic conversion Daniel Vetter
2012-08-19 19:12 ` [PATCH 01/58] drm/i915: add crtc->enable/disable vfuncs insted of dpms Daniel Vetter
2012-08-29 17:51   ` Jesse Barnes
2012-08-19 19:12 ` [PATCH 02/58] drm/i915: rip out crtc prepare/commit indirection Daniel Vetter
2012-08-29 17:52   ` Jesse Barnes
2012-08-19 19:12 ` [PATCH 03/58] drm/i915: add direct encoder disable/enable infrastructure Daniel Vetter
2012-08-29 18:01   ` Jesse Barnes
2012-08-19 19:12 ` [PATCH 04/58] drm/i915/hdmi: convert to encoder->disable/enable Daniel Vetter
2012-09-04 19:24   ` Jesse Barnes
2012-08-19 19:12 ` [PATCH 05/58] drm/i915/tv: convert to encoder enable/disable Daniel Vetter
2012-09-04 19:25   ` Jesse Barnes
2012-08-19 19:12 ` [PATCH 06/58] drm/i915/lvds: convert to encoder disable/enable Daniel Vetter
2012-09-04 19:26   ` Jesse Barnes
2012-08-19 19:12 ` [PATCH 07/58] drm/i915/dp: " Daniel Vetter
2012-09-04 19:33   ` Jesse Barnes
2012-09-04 19:42     ` Daniel Vetter
2012-08-19 19:12 ` [PATCH 08/58] drm/i915/crt: " Daniel Vetter
2012-09-04 19:50   ` Jesse Barnes
2012-08-19 19:12 ` [PATCH 09/58] drm/i915/sdvo: " Daniel Vetter
2012-09-04 19:52   ` Jesse Barnes
2012-08-19 19:12 ` [PATCH 10/58] drm/i915/dvo: " Daniel Vetter
2012-09-04 19:53   ` Jesse Barnes
2012-08-19 19:12 ` [PATCH 11/58] drm/i915: convert dpms functions of dvo/sdvo/crt Daniel Vetter
2012-08-29  7:12   ` [PATCH] " Daniel Vetter
2012-09-04 20:10     ` Jesse Barnes
2012-08-19 19:12 ` [PATCH 12/58] drm/i915: rip out encoder->disable/enable checks Daniel Vetter
2012-09-04 20:11   ` Jesse Barnes
2012-08-19 19:12 ` [PATCH 13/58] drm/i915: clean up encoder_prepare/commit Daniel Vetter
2012-09-04 20:12   ` Jesse Barnes
2012-08-19 19:12 ` [PATCH 14/58] drm/i915: copy&paste drm_crtc_helper_set_config Daniel Vetter
2012-09-04 20:13   ` Jesse Barnes [this message]
2012-08-19 19:12 ` [PATCH 15/58] drm/i915: call set_base directly Daniel Vetter
2012-09-04 20:15   ` Jesse Barnes
2012-08-19 19:12 ` [PATCH 16/58] drm/i915: inline intel_best_encoder Daniel Vetter
2012-09-04 20:18   ` Jesse Barnes
2012-08-19 19:12 ` [PATCH 17/58] drm/i915: copy&paste drm_crtc_helper_set_mode Daniel Vetter
2012-09-04 20:19   ` Jesse Barnes
2012-08-19 19:12 ` [PATCH 18/58] drm/i915: simplify intel_crtc_prepare_encoders Daniel Vetter
2012-09-04 20:20   ` Jesse Barnes
2012-08-19 19:12 ` [PATCH 19/58] drm/i915: rip out encoder->prepare/commit Daniel Vetter
2012-09-04 20:21   ` Jesse Barnes
2012-08-19 19:12 ` [PATCH 20/58] drm/i915: call crtc functions directly Daniel Vetter
2012-09-04 20:22   ` Jesse Barnes
2012-08-19 19:12 ` [PATCH 21/58] drm/i915: WARN when trying to enabled an unused crtc Daniel Vetter
2012-09-04 20:23   ` Jesse Barnes
2012-08-19 19:12 ` [PATCH 22/58] drm/i915: Add interfaces to read out encoder/connector hw state Daniel Vetter
2012-09-04 20:25   ` Jesse Barnes
2012-08-19 19:12 ` [PATCH 23/58] drm/i915/dp: implement get_hw_state Daniel Vetter
2012-09-04 20:26   ` Jesse Barnes
2012-08-19 19:12 ` [PATCH 24/58] drm/i915/hdmi: " Daniel Vetter
2012-09-04 20:28   ` Jesse Barnes
2012-08-19 19:12 ` [PATCH 25/58] drm/i915/tv: " Daniel Vetter
2012-09-04 20:28   ` Jesse Barnes
2012-08-19 19:12 ` [PATCH 26/58] drm/i915/lvds: " Daniel Vetter
2012-09-04 20:28   ` Jesse Barnes
2012-08-19 19:12 ` [PATCH 27/58] drm/i915/crt: " Daniel Vetter
2012-09-04 20:29   ` Jesse Barnes
2012-08-19 19:12 ` [PATCH 28/58] drm/i915/sdvo: " Daniel Vetter
2012-09-04 20:31   ` Jesse Barnes
2012-08-19 19:12 ` [PATCH 29/58] drm/i915/dvo: " Daniel Vetter
2012-09-04 20:32   ` Jesse Barnes
2012-08-19 19:12 ` [PATCH 30/58] drm/i915: read out the modeset hw state at load and resume time Daniel Vetter
2012-09-05 16:14   ` Jesse Barnes
2012-08-19 19:12 ` [PATCH 31/58] drm/i915: check connector hw/sw state Daniel Vetter
2012-09-05 16:26   ` Jesse Barnes
2012-09-05 19:10     ` Daniel Vetter
2012-08-19 19:12 ` [PATCH 32/58] drm/i915: rip out intel_crtc->dpms_mode Daniel Vetter
2012-09-05 16:27   ` Jesse Barnes
2012-08-19 19:12 ` [PATCH 33/58] drm/i915: rip out intel_dp->dpms_mode Daniel Vetter
2012-09-05 16:28   ` Jesse Barnes
2012-08-19 19:12 ` [PATCH 34/58] drm/i915: ensure the force pipe A quirk is actually followed Daniel Vetter
2012-09-05 16:32   ` Jesse Barnes
2012-09-05 19:12     ` Daniel Vetter
2012-08-19 19:12 ` [PATCH 35/58] drm/i915: introduce struct intel_set_config Daniel Vetter
2012-09-05 16:34   ` Jesse Barnes
2012-09-05 19:27     ` Daniel Vetter
2012-08-19 19:12 ` [PATCH 36/58] drm/i915: extract modeset config save/restore code Daniel Vetter
2012-09-05 16:36   ` Jesse Barnes
2012-08-19 19:12 ` [PATCH 37/58] drm/i915: extract intel_set_config_compute_mode_changes Daniel Vetter
2012-09-05 16:42   ` Jesse Barnes
2012-08-19 19:12 ` [PATCH 38/58] drm/i915: extract intel_set_config_update_output_state Daniel Vetter
2012-09-05 16:44   ` Jesse Barnes
2012-08-19 19:12 ` [PATCH 39/58] drm/i915: implement crtc helper semantics relied upon by the fb helper Daniel Vetter
2012-09-05 16:45   ` Jesse Barnes
2012-09-05 19:15     ` Daniel Vetter
2012-08-19 19:12 ` [PATCH 40/58] drm/i915: don't update the fb base if there is no fb Daniel Vetter
2012-09-05 16:47   ` Jesse Barnes
2012-08-19 19:12 ` [PATCH 41/58] drm/i915: convert pointless error checks in set_config to BUGs Daniel Vetter
2012-09-05 16:50   ` Jesse Barnes
2012-09-05 19:19     ` Daniel Vetter
2012-08-19 19:12 ` [PATCH 42/58] drm/i915: don't save all the encoder/crtc state in set_config Daniel Vetter
2012-09-05 16:52   ` Jesse Barnes
2012-09-05 19:21     ` Daniel Vetter
2012-08-19 19:13 ` [PATCH 43/58] drm/i915: stage modeset output changes Daniel Vetter
2012-09-05 17:51   ` Jesse Barnes
2012-08-19 19:13 ` [PATCH 44/58] drm/i915: push crtc->fb update into pipe_set_base Daniel Vetter
2012-09-04 19:33   ` [PATCH] " Daniel Vetter
2012-09-05 17:55     ` Jesse Barnes
2012-09-05 19:59       ` Daniel Vetter
2012-09-05 17:54   ` [PATCH 44/58] " Jesse Barnes
2012-08-19 19:13 ` [PATCH 45/58] drm/i915: remove crtc disabling special case Daniel Vetter
2012-09-05 17:56   ` Jesse Barnes
2012-08-19 19:13 ` [PATCH 46/58] drm/i915: move output commit and crtc disabling into set_mode Daniel Vetter
2012-09-05 17:58   ` Jesse Barnes
2012-08-19 19:13 ` [PATCH 47/58] drm/i915: extract adjusted mode computation Daniel Vetter
2012-09-05 18:00   ` Jesse Barnes
2012-09-05 19:30     ` Daniel Vetter
2012-08-19 19:13 ` [PATCH 48/58] drm/i915: use staged outuput config in tv->mode_fixup Daniel Vetter
2012-09-05 18:02   ` Jesse Barnes
2012-09-06  7:30     ` Daniel Vetter
2012-08-19 19:13 ` [PATCH 49/58] drm/i915: use staged outuput config in lvds->mode_fixup Daniel Vetter
2012-09-05 18:02   ` Jesse Barnes
2012-08-19 19:13 ` [PATCH 50/58] drm/i915: compute masks of crtcs affected in set_mode Daniel Vetter
2012-08-29 10:34   ` [PATCH] " Daniel Vetter
2012-09-05 18:09     ` Jesse Barnes
2012-09-05 19:38       ` Daniel Vetter
2012-09-05 19:45         ` Jesse Barnes
2012-09-05 18:07   ` [PATCH 50/58] " Jesse Barnes
2012-08-19 19:13 ` [PATCH 51/58] drm/i915: implement new set_mode code flow Daniel Vetter
2012-09-05 18:14   ` Jesse Barnes
2012-09-05 19:43     ` Daniel Vetter
2012-09-05 19:49       ` Jesse Barnes
2012-08-19 19:13 ` [PATCH 52/58] drm/i915: push commit_output_state past crtc disabling Daniel Vetter
2012-09-05 18:17   ` Jesse Barnes
2012-08-19 19:13 ` [PATCH 53/58] drm/i915: s/intel_encoder_disable/intel_encoder_noop Daniel Vetter
2012-09-05 18:17   ` Jesse Barnes
2012-08-19 19:13 ` [PATCH 54/58] drm/i915: WARN if the pipe won't turn off Daniel Vetter
2012-09-05 18:18   ` Jesse Barnes
2012-08-19 19:13 ` [PATCH 55/58] drm/i915: switch the load detect code to the staged modeset config Daniel Vetter
2012-09-05 18:19   ` Jesse Barnes
2012-08-19 19:13 ` [PATCH 56/58] drm/i915: push commit_output_state past the crtc/encoder preparing Daniel Vetter
2012-08-31 18:12   ` [PATCH] " Daniel Vetter
2012-09-04 19:32     ` Daniel Vetter
2012-09-05 18:28       ` Jesse Barnes
2012-09-05 19:48         ` Daniel Vetter
2012-09-05 18:56           ` [PATCH] drm/i915: push crtc->fb update into pipe_set_base Daniel Vetter
2012-09-05 19:50           ` [PATCH] drm/i915: push commit_output_state past the crtc/encoder preparing Jesse Barnes
2012-09-06 20:46             ` Jesse Barnes
2012-08-19 19:13 ` [PATCH 57/58] drm/i915: disable all crtcs at suspend time Daniel Vetter
2012-08-29 21:13   ` [PATCH] drm/i915: no longer call drm_helper_resume_force_mode Daniel Vetter
2012-09-05 18:31     ` Jesse Barnes
2012-09-05 19:56       ` Daniel Vetter
2012-09-05 20:04         ` Jesse Barnes
2012-09-06 20:47           ` Jesse Barnes
2012-09-05 18:29   ` [PATCH 57/58] drm/i915: disable all crtcs at suspend time Jesse Barnes
2012-08-19 19:13 ` [PATCH 58/58] drm/i915: add tons of modeset state checks Daniel Vetter
2012-08-20  8:24   ` [PATCH] " Daniel Vetter
2012-08-20 12:22   ` Daniel Vetter
2012-08-31 18:12     ` [PATCH 1/2] " Daniel Vetter
2012-08-31 18:12       ` [PATCH 2/2] drm/i915: improve modeset state checking after dpms calls Daniel Vetter
2012-09-05 18:34         ` Jesse Barnes
2012-09-05 18:33       ` [PATCH 1/2] drm/i915: add tons of modeset state checks Jesse Barnes
2012-08-20 13:17 ` [PATCH 00/58] modeset-rework, the basic conversion Jani Nikula
2012-08-21  3:27 ` Ben Widawsky
2012-08-21 17:48 ` Lespiau, Damien
2012-08-21 18:11   ` Daniel Vetter
2012-08-22 10:46     ` Lespiau, Damien
2012-08-22 11:03       ` Lespiau, Damien
2012-08-22 19:13         ` Lespiau, Damien
2012-08-22 21:21           ` Daniel Vetter
2012-08-23 12:26             ` Lespiau, Damien
2012-08-23 22:39               ` Daniel Vetter
2012-08-29 12:26                 ` Lespiau, Damien
2012-08-30 10:40                   ` Rodrigo Vivi
2012-08-21 19:48 ` Chris Wilson
2012-08-27  8:04 ` Vijay Purushothaman
2012-09-03 17:50 ` Paulo Zanoni
2012-09-05 23:23 ` Jesse Barnes
2012-09-06  6:55   ` Daniel Vetter
2012-09-06  7:23     ` Daniel Vetter
2012-09-07  1:08   ` Jesse Barnes
2012-09-07  8:55     ` Daniel Vetter
2012-09-06 21:00 ` Daniel Vetter

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20120904131320.618588e7@jbarnes-desktop \
    --to=jbarnes@virtuousgeek.org \
    --cc=daniel.vetter@ffwll.ch \
    --cc=intel-gfx@lists.freedesktop.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.