Skip to content

Commit

Permalink
drm/i915/tv: implement get_hw_state
Browse files Browse the repository at this point in the history
Reviewed-by: Jesse Barnes <jbarnes@virtuousgeek.org>
Signed-Off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
  • Loading branch information
Daniel Vetter committed Sep 6, 2012
1 parent 85234cd commit 9a8ee98
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions drivers/gpu/drm/i915/intel_tv.c
Original file line number Diff line number Diff line change
Expand Up @@ -836,6 +836,21 @@ static struct intel_tv *intel_attached_tv(struct drm_connector *connector)
base);
}

static bool
intel_tv_get_hw_state(struct intel_encoder *encoder, enum pipe *pipe)
{
struct drm_device *dev = encoder->base.dev;
struct drm_i915_private *dev_priv = dev->dev_private;
u32 tmp = I915_READ(TV_CTL);

if (!(tmp & TV_ENC_ENABLE))
return false;

*pipe = PORT_TO_PIPE(tmp);

return true;
}

static void
intel_enable_tv(struct intel_encoder *encoder)
{
Expand Down Expand Up @@ -1616,6 +1631,8 @@ intel_tv_init(struct drm_device *dev)

intel_encoder->enable = intel_enable_tv;
intel_encoder->disable = intel_disable_tv;
intel_encoder->get_hw_state = intel_tv_get_hw_state;
intel_connector->get_hw_state = intel_connector_get_hw_state;

intel_connector_attach_encoder(intel_connector, intel_encoder);
intel_encoder->type = INTEL_OUTPUT_TVOUT;
Expand Down

0 comments on commit 9a8ee98

Please sign in to comment.