diff options
author | Eric Anholt <eric@anholt.net> | 2010-03-25 14:48:48 -0400 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2010-03-25 15:34:38 -0400 |
commit | c751ce4f52b11ea93764a7cd44e6ae9c098d361b (patch) | |
tree | 660ed9bb766962492149d5d81d583a871148ab5d /drivers/gpu/drm/i915/intel_display.c | |
parent | 21d40d37eca86872f2bf0af995809ebdef25c9d9 (diff) |
drm/i915: Rename many remaining uses of "output" to encoder or connector.
Signed-off-by: Eric Anholt <eric@anholt.net>
Diffstat (limited to 'drivers/gpu/drm/i915/intel_display.c')
-rw-r--r-- | drivers/gpu/drm/i915/intel_display.c | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/drivers/gpu/drm/i915/intel_display.c b/drivers/gpu/drm/i915/intel_display.c index 2595c4ccc6a8..34d2652f405f 100644 --- a/drivers/gpu/drm/i915/intel_display.c +++ b/drivers/gpu/drm/i915/intel_display.c | |||
@@ -754,8 +754,8 @@ bool intel_pipe_has_type (struct drm_crtc *crtc, int type) | |||
754 | return false; | 754 | return false; |
755 | } | 755 | } |
756 | 756 | ||
757 | struct drm_connector * | 757 | static struct drm_connector * |
758 | intel_pipe_get_output (struct drm_crtc *crtc) | 758 | intel_pipe_get_connector (struct drm_crtc *crtc) |
759 | { | 759 | { |
760 | struct drm_device *dev = crtc->dev; | 760 | struct drm_device *dev = crtc->dev; |
761 | struct drm_mode_config *mode_config = &dev->mode_config; | 761 | struct drm_mode_config *mode_config = &dev->mode_config; |
@@ -2916,7 +2916,7 @@ static int intel_crtc_mode_set(struct drm_crtc *crtc, | |||
2916 | int dspsize_reg = (plane == 0) ? DSPASIZE : DSPBSIZE; | 2916 | int dspsize_reg = (plane == 0) ? DSPASIZE : DSPBSIZE; |
2917 | int dsppos_reg = (plane == 0) ? DSPAPOS : DSPBPOS; | 2917 | int dsppos_reg = (plane == 0) ? DSPAPOS : DSPBPOS; |
2918 | int pipesrc_reg = (pipe == 0) ? PIPEASRC : PIPEBSRC; | 2918 | int pipesrc_reg = (pipe == 0) ? PIPEASRC : PIPEBSRC; |
2919 | int refclk, num_outputs = 0; | 2919 | int refclk, num_connectors = 0; |
2920 | intel_clock_t clock, reduced_clock; | 2920 | intel_clock_t clock, reduced_clock; |
2921 | u32 dpll = 0, fp = 0, fp2 = 0, dspcntr, pipeconf; | 2921 | u32 dpll = 0, fp = 0, fp2 = 0, dspcntr, pipeconf; |
2922 | bool ok, has_reduced_clock = false, is_sdvo = false, is_dvo = false; | 2922 | bool ok, has_reduced_clock = false, is_sdvo = false, is_dvo = false; |
@@ -2974,10 +2974,10 @@ static int intel_crtc_mode_set(struct drm_crtc *crtc, | |||
2974 | break; | 2974 | break; |
2975 | } | 2975 | } |
2976 | 2976 | ||
2977 | num_outputs++; | 2977 | num_connectors++; |
2978 | } | 2978 | } |
2979 | 2979 | ||
2980 | if (is_lvds && dev_priv->lvds_use_ssc && num_outputs < 2) { | 2980 | if (is_lvds && dev_priv->lvds_use_ssc && num_connectors < 2) { |
2981 | refclk = dev_priv->lvds_ssc_freq * 1000; | 2981 | refclk = dev_priv->lvds_ssc_freq * 1000; |
2982 | DRM_DEBUG_KMS("using SSC reference clock of %d MHz\n", | 2982 | DRM_DEBUG_KMS("using SSC reference clock of %d MHz\n", |
2983 | refclk / 1000); | 2983 | refclk / 1000); |
@@ -3048,7 +3048,7 @@ static int intel_crtc_mode_set(struct drm_crtc *crtc, | |||
3048 | if (is_edp) { | 3048 | if (is_edp) { |
3049 | struct drm_connector *edp; | 3049 | struct drm_connector *edp; |
3050 | target_clock = mode->clock; | 3050 | target_clock = mode->clock; |
3051 | edp = intel_pipe_get_output(crtc); | 3051 | edp = intel_pipe_get_connector(crtc); |
3052 | intel_edp_link_config(to_intel_encoder(edp), | 3052 | intel_edp_link_config(to_intel_encoder(edp), |
3053 | &lane, &link_bw); | 3053 | &lane, &link_bw); |
3054 | } else { | 3054 | } else { |
@@ -3230,7 +3230,7 @@ static int intel_crtc_mode_set(struct drm_crtc *crtc, | |||
3230 | /* XXX: just matching BIOS for now */ | 3230 | /* XXX: just matching BIOS for now */ |
3231 | /* dpll |= PLL_REF_INPUT_TVCLKINBC; */ | 3231 | /* dpll |= PLL_REF_INPUT_TVCLKINBC; */ |
3232 | dpll |= 3; | 3232 | dpll |= 3; |
3233 | else if (is_lvds && dev_priv->lvds_use_ssc && num_outputs < 2) | 3233 | else if (is_lvds && dev_priv->lvds_use_ssc && num_connectors < 2) |
3234 | dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN; | 3234 | dpll |= PLLB_REF_INPUT_SPREADSPECTRUMIN; |
3235 | else | 3235 | else |
3236 | dpll |= PLL_REF_INPUT_DREFCLK; | 3236 | dpll |= PLL_REF_INPUT_DREFCLK; |
@@ -3654,9 +3654,9 @@ static void intel_crtc_gamma_set(struct drm_crtc *crtc, u16 *red, u16 *green, | |||
3654 | * detection. | 3654 | * detection. |
3655 | * | 3655 | * |
3656 | * It will be up to the load-detect code to adjust the pipe as appropriate for | 3656 | * It will be up to the load-detect code to adjust the pipe as appropriate for |
3657 | * its requirements. The pipe will be connected to no other outputs. | 3657 | * its requirements. The pipe will be connected to no other encoders. |
3658 | * | 3658 | * |
3659 | * Currently this code will only succeed if there is a pipe with no outputs | 3659 | * Currently this code will only succeed if there is a pipe with no encoders |
3660 | * configured for it. In the future, it could choose to temporarily disable | 3660 | * configured for it. In the future, it could choose to temporarily disable |
3661 | * some outputs to free up a pipe for its use. | 3661 | * some outputs to free up a pipe for its use. |
3662 | * | 3662 | * |
@@ -3770,7 +3770,7 @@ void intel_release_load_detect_pipe(struct intel_encoder *intel_encoder, int dpm | |||
3770 | drm_helper_disable_unused_functions(dev); | 3770 | drm_helper_disable_unused_functions(dev); |
3771 | } | 3771 | } |
3772 | 3772 | ||
3773 | /* Switch crtc and output back off if necessary */ | 3773 | /* Switch crtc and encoder back off if necessary */ |
3774 | if (crtc->enabled && dpms_mode != DRM_MODE_DPMS_ON) { | 3774 | if (crtc->enabled && dpms_mode != DRM_MODE_DPMS_ON) { |
3775 | if (encoder->crtc == crtc) | 3775 | if (encoder->crtc == crtc) |
3776 | encoder_funcs->dpms(encoder, dpms_mode); | 3776 | encoder_funcs->dpms(encoder, dpms_mode); |