drm/i915: completely rewrite the Haswell PLL handling code
authorPaulo Zanoni <paulo.r.zanoni@intel.com>
Fri, 5 Oct 2012 15:05:58 +0000 (12:05 -0300)
committerDaniel Vetter <daniel.vetter@ffwll.ch>
Wed, 10 Oct 2012 14:53:02 +0000 (16:53 +0200)
Problems with the previous code:
  - HDMI just uses WRPLL1 for everything, so dual head cases might not
    work sometimes.
  - At encoder->mode_set we just write the PLL register without doing
    any kind of check (e.g., check if the PLL is already being used).
  - There is no way to fail and return error codes at
    encoder->mode_set.
  - We write to PORT_CLK_SEL at mode_set and we never disable it.
  - Machines hang due to wrong clock enable/disable sequence.

So here we rewrite the code, making it a little more like the
pre-Haswell PLL mode set code:
  - Check PLL availability at ironlake_crtc_mode_set.
  - Try to use both WRPLLs.
  - Check if PLLs are used before actually trying to use them, and
    properly fail with error messages.
  - Enable/disable PORT_CLK_SEL at the right place.
  - Add some WARNs to check for bugs.

The next improvement will be to try to reuse PLLs if the timings
match, but this is content for another patch and it's already
documented with a TODO comment.

Signed-off-by: Paulo Zanoni <paulo.r.zanoni@intel.com>
Reviewed-by: Damien Lespiau <damien.lespiau@intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
drivers/gpu/drm/i915/i915_drv.h
drivers/gpu/drm/i915/i915_reg.h
drivers/gpu/drm/i915/intel_ddi.c
drivers/gpu/drm/i915/intel_display.c
drivers/gpu/drm/i915/intel_drv.h
drivers/gpu/drm/i915/intel_hdmi.c

index 7f05736c6d8a7b167a638d30ba5a04c05f836b86..9e446b621642ddafe4cc1857f99d765e7c90d26c 100644 (file)
@@ -93,6 +93,12 @@ struct intel_pch_pll {
 };
 #define I915_NUM_PLLS 2
 
+struct intel_ddi_plls {
+       int spll_refcount;
+       int wrpll1_refcount;
+       int wrpll2_refcount;
+};
+
 /* Interface history:
  *
  * 1.1: Original.
@@ -812,6 +818,7 @@ typedef struct drm_i915_private {
        wait_queue_head_t pending_flip_queue;
 
        struct intel_pch_pll pch_plls[I915_NUM_PLLS];
+       struct intel_ddi_plls ddi_plls;
 
        /* Reclocking support */
        bool render_reclock_avail;
index fd9a319b86a7f480deb0ba7d2bafb744672e8ef4..c8c8dd0ff7b49e0b2d8923817c78824c031349fb 100644 (file)
 #define  PORT_CLK_SEL_SPLL             (3<<29)
 #define  PORT_CLK_SEL_WRPLL1           (4<<29)
 #define  PORT_CLK_SEL_WRPLL2           (5<<29)
+#define  PORT_CLK_SEL_NONE             (7<<29)
 
 /* Pipe clock selection */
 #define PIPE_CLK_SEL_A                 0x46140
index 8740a5cf135968e736cf292a93afe16a4e4d38cb..ab48083ffcec4649f8c4b460bc76c093b663e001 100644 (file)
@@ -152,18 +152,6 @@ void hsw_fdi_link_train(struct drm_crtc *crtc)
        int pipe = intel_crtc->pipe;
        u32 reg, temp, i;
 
-       /* Configure CPU PLL, wait for warmup */
-       I915_WRITE(SPLL_CTL,
-                       SPLL_PLL_ENABLE |
-                       SPLL_PLL_FREQ_1350MHz |
-                       SPLL_PLL_SCC);
-
-       /* Use SPLL to drive the output when in FDI mode */
-       I915_WRITE(PORT_CLK_SEL(PORT_E),
-                       PORT_CLK_SEL_SPLL);
-
-       udelay(20);
-
        /* Start the training iterating through available voltages and emphasis */
        for (i=0; i < ARRAY_SIZE(hsw_ddi_buf_ctl_values); i++) {
                /* Configure DP_TP_CTL with auto-training */
@@ -654,58 +642,17 @@ void intel_ddi_mode_set(struct drm_encoder *encoder,
                                struct drm_display_mode *mode,
                                struct drm_display_mode *adjusted_mode)
 {
-       struct drm_device *dev = encoder->dev;
-       struct drm_i915_private *dev_priv = dev->dev_private;
        struct drm_crtc *crtc = encoder->crtc;
        struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
        struct intel_hdmi *intel_hdmi = enc_to_intel_hdmi(encoder);
        int port = intel_hdmi->ddi_port;
        int pipe = intel_crtc->pipe;
-       int p, n2, r2;
-       u32 i;
 
        /* On Haswell, we need to enable the clocks and prepare DDI function to
         * work in HDMI mode for this pipe.
         */
        DRM_DEBUG_KMS("Preparing HDMI DDI mode for Haswell on port %c, pipe %c\n", port_name(port), pipe_name(pipe));
 
-       for (i = 0; i < ARRAY_SIZE(wrpll_tmds_clock_table); i++)
-               if (crtc->mode.clock <= wrpll_tmds_clock_table[i].clock)
-                       break;
-
-       if (i == ARRAY_SIZE(wrpll_tmds_clock_table))
-               i--;
-
-       p = wrpll_tmds_clock_table[i].p;
-       n2 = wrpll_tmds_clock_table[i].n2;
-       r2 = wrpll_tmds_clock_table[i].r2;
-
-       if (wrpll_tmds_clock_table[i].clock != crtc->mode.clock)
-               DRM_INFO("WR PLL: using settings for %dKHz on %dKHz mode\n",
-                        wrpll_tmds_clock_table[i].clock, crtc->mode.clock);
-
-       DRM_DEBUG_KMS("WR PLL: %dKHz refresh rate with p=%d, n2=%d r2=%d\n",
-                     crtc->mode.clock, p, n2, r2);
-
-       /* Configure WR PLL 1, program the correct divider values for
-        * the desired frequency and wait for warmup */
-       I915_WRITE(WRPLL_CTL1,
-                       WRPLL_PLL_ENABLE |
-                       WRPLL_PLL_SELECT_LCPLL_2700 |
-                       WRPLL_DIVIDER_REFERENCE(r2) |
-                       WRPLL_DIVIDER_FEEDBACK(n2) |
-                       WRPLL_DIVIDER_POST(p));
-
-       udelay(20);
-
-       /* Use WRPLL1 clock to drive the output to the port, and tell the pipe to use
-        * this port for connection.
-        */
-       I915_WRITE(PORT_CLK_SEL(port),
-                       PORT_CLK_SEL_WRPLL1);
-
-       udelay(20);
-
        if (intel_hdmi->has_audio) {
                /* Proper support for digital audio needs a new logic and a new set
                 * of registers, so we leave it for future patch bombing.
@@ -742,6 +689,144 @@ intel_ddi_get_crtc_encoder(struct drm_crtc *crtc)
        return ret;
 }
 
+void intel_ddi_put_crtc_pll(struct drm_crtc *crtc)
+{
+       struct drm_i915_private *dev_priv = crtc->dev->dev_private;
+       struct intel_ddi_plls *plls = &dev_priv->ddi_plls;
+       struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
+       uint32_t val;
+
+       switch (intel_crtc->ddi_pll_sel) {
+       case PORT_CLK_SEL_SPLL:
+               plls->spll_refcount--;
+               if (plls->spll_refcount == 0) {
+                       DRM_DEBUG_KMS("Disabling SPLL\n");
+                       val = I915_READ(SPLL_CTL);
+                       WARN_ON(!(val & SPLL_PLL_ENABLE));
+                       I915_WRITE(SPLL_CTL, val & ~SPLL_PLL_ENABLE);
+                       POSTING_READ(SPLL_CTL);
+               }
+               break;
+       case PORT_CLK_SEL_WRPLL1:
+               plls->wrpll1_refcount--;
+               if (plls->wrpll1_refcount == 0) {
+                       DRM_DEBUG_KMS("Disabling WRPLL 1\n");
+                       val = I915_READ(WRPLL_CTL1);
+                       WARN_ON(!(val & WRPLL_PLL_ENABLE));
+                       I915_WRITE(WRPLL_CTL1, val & ~WRPLL_PLL_ENABLE);
+                       POSTING_READ(WRPLL_CTL1);
+               }
+               break;
+       case PORT_CLK_SEL_WRPLL2:
+               plls->wrpll2_refcount--;
+               if (plls->wrpll2_refcount == 0) {
+                       DRM_DEBUG_KMS("Disabling WRPLL 2\n");
+                       val = I915_READ(WRPLL_CTL2);
+                       WARN_ON(!(val & WRPLL_PLL_ENABLE));
+                       I915_WRITE(WRPLL_CTL2, val & ~WRPLL_PLL_ENABLE);
+                       POSTING_READ(WRPLL_CTL2);
+               }
+               break;
+       }
+
+       WARN(plls->spll_refcount < 0, "Invalid SPLL refcount\n");
+       WARN(plls->wrpll1_refcount < 0, "Invalid WRPLL1 refcount\n");
+       WARN(plls->wrpll2_refcount < 0, "Invalid WRPLL2 refcount\n");
+
+       intel_crtc->ddi_pll_sel = PORT_CLK_SEL_NONE;
+}
+
+static void intel_ddi_calculate_wrpll(int clock, int *p, int *n2, int *r2)
+{
+       u32 i;
+
+       for (i = 0; i < ARRAY_SIZE(wrpll_tmds_clock_table); i++)
+               if (clock <= wrpll_tmds_clock_table[i].clock)
+                       break;
+
+       if (i == ARRAY_SIZE(wrpll_tmds_clock_table))
+               i--;
+
+       *p = wrpll_tmds_clock_table[i].p;
+       *n2 = wrpll_tmds_clock_table[i].n2;
+       *r2 = wrpll_tmds_clock_table[i].r2;
+
+       if (wrpll_tmds_clock_table[i].clock != clock)
+               DRM_INFO("WRPLL: using settings for %dKHz on %dKHz mode\n",
+                        wrpll_tmds_clock_table[i].clock, clock);
+
+       DRM_DEBUG_KMS("WRPLL: %dKHz refresh rate with p=%d, n2=%d r2=%d\n",
+                     clock, *p, *n2, *r2);
+}
+
+bool intel_ddi_pll_mode_set(struct drm_crtc *crtc, int clock)
+{
+       struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
+       struct intel_encoder *intel_encoder = intel_ddi_get_crtc_encoder(crtc);
+       struct drm_i915_private *dev_priv = crtc->dev->dev_private;
+       struct intel_ddi_plls *plls = &dev_priv->ddi_plls;
+       int type = intel_encoder->type;
+       enum pipe pipe = intel_crtc->pipe;
+       uint32_t reg, val;
+
+       /* TODO: reuse PLLs when possible (compare values) */
+
+       intel_ddi_put_crtc_pll(crtc);
+
+       if (type == INTEL_OUTPUT_HDMI) {
+               int p, n2, r2;
+
+               if (plls->wrpll1_refcount == 0) {
+                       DRM_DEBUG_KMS("Using WRPLL 1 on pipe %c\n",
+                                     pipe_name(pipe));
+                       plls->wrpll1_refcount++;
+                       reg = WRPLL_CTL1;
+                       intel_crtc->ddi_pll_sel = PORT_CLK_SEL_WRPLL1;
+               } else if (plls->wrpll2_refcount == 0) {
+                       DRM_DEBUG_KMS("Using WRPLL 2 on pipe %c\n",
+                                     pipe_name(pipe));
+                       plls->wrpll2_refcount++;
+                       reg = WRPLL_CTL2;
+                       intel_crtc->ddi_pll_sel = PORT_CLK_SEL_WRPLL2;
+               } else {
+                       DRM_ERROR("No WRPLLs available!\n");
+                       return false;
+               }
+
+               WARN(I915_READ(reg) & WRPLL_PLL_ENABLE,
+                    "WRPLL already enabled\n");
+
+               intel_ddi_calculate_wrpll(clock, &p, &n2, &r2);
+
+               val = WRPLL_PLL_ENABLE | WRPLL_PLL_SELECT_LCPLL_2700 |
+                     WRPLL_DIVIDER_REFERENCE(r2) | WRPLL_DIVIDER_FEEDBACK(n2) |
+                     WRPLL_DIVIDER_POST(p);
+
+       } else if (type == INTEL_OUTPUT_ANALOG) {
+               if (plls->spll_refcount == 0) {
+                       DRM_DEBUG_KMS("Using SPLL on pipe %c\n",
+                                     pipe_name(pipe));
+                       plls->spll_refcount++;
+                       reg = SPLL_CTL;
+                       intel_crtc->ddi_pll_sel = PORT_CLK_SEL_SPLL;
+               }
+
+               WARN(I915_READ(reg) & SPLL_PLL_ENABLE,
+                    "SPLL already enabled\n");
+
+               val = SPLL_PLL_ENABLE | SPLL_PLL_FREQ_1350MHz | SPLL_PLL_SCC;
+
+       } else {
+               WARN(1, "Invalid DDI encoder type %d\n", type);
+               return false;
+       }
+
+       I915_WRITE(reg, val);
+       udelay(20);
+
+       return true;
+}
+
 void intel_ddi_enable_pipe_func(struct drm_crtc *crtc)
 {
        struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
@@ -837,6 +922,57 @@ bool intel_ddi_get_hw_state(struct intel_encoder *encoder,
        return true;
 }
 
+static uint32_t intel_ddi_get_crtc_pll(struct drm_i915_private *dev_priv,
+                                      enum pipe pipe)
+{
+       uint32_t temp, ret;
+       enum port port;
+       int i;
+
+       temp = I915_READ(DDI_FUNC_CTL(pipe));
+       temp &= PIPE_DDI_PORT_MASK;
+       for (i = PORT_A; i <= PORT_E; i++)
+               if (temp == PIPE_DDI_SELECT_PORT(i))
+                       port = i;
+
+       ret = I915_READ(PORT_CLK_SEL(port));
+
+       DRM_DEBUG_KMS("Pipe %c connected to port %c using clock 0x%08x\n",
+                     pipe_name(pipe), port_name(port), ret);
+
+       return ret;
+}
+
+void intel_ddi_setup_hw_pll_state(struct drm_device *dev)
+{
+       struct drm_i915_private *dev_priv = dev->dev_private;
+       enum pipe pipe;
+       struct intel_crtc *intel_crtc;
+
+       for_each_pipe(pipe) {
+               intel_crtc =
+                       to_intel_crtc(dev_priv->pipe_to_crtc_mapping[pipe]);
+
+               if (!intel_crtc->active)
+                       continue;
+
+               intel_crtc->ddi_pll_sel = intel_ddi_get_crtc_pll(dev_priv,
+                                                                pipe);
+
+               switch (intel_crtc->ddi_pll_sel) {
+               case PORT_CLK_SEL_SPLL:
+                       dev_priv->ddi_plls.spll_refcount++;
+                       break;
+               case PORT_CLK_SEL_WRPLL1:
+                       dev_priv->ddi_plls.wrpll1_refcount++;
+                       break;
+               case PORT_CLK_SEL_WRPLL2:
+                       dev_priv->ddi_plls.wrpll2_refcount++;
+                       break;
+               }
+       }
+}
+
 void intel_ddi_enable_pipe_clock(struct intel_crtc *intel_crtc)
 {
        struct drm_crtc *crtc = &intel_crtc->base;
@@ -854,6 +990,27 @@ void intel_ddi_disable_pipe_clock(struct intel_crtc *intel_crtc)
        I915_WRITE(PIPE_CLK_SEL(intel_crtc->pipe), PIPE_CLK_SEL_DISABLED);
 }
 
+void intel_ddi_pre_enable(struct intel_encoder *intel_encoder)
+{
+       struct drm_crtc *crtc = intel_encoder->base.crtc;
+       struct drm_i915_private *dev_priv = crtc->dev->dev_private;
+       struct intel_crtc *intel_crtc = to_intel_crtc(crtc);
+       enum port port = intel_ddi_get_encoder_port(intel_encoder);
+
+       WARN_ON(intel_crtc->ddi_pll_sel == PORT_CLK_SEL_NONE);
+
+       I915_WRITE(PORT_CLK_SEL(port), intel_crtc->ddi_pll_sel);
+}
+
+void intel_ddi_post_disable(struct intel_encoder *intel_encoder)
+{
+       struct drm_encoder *encoder = &intel_encoder->base;
+       struct drm_i915_private *dev_priv = encoder->dev->dev_private;
+       enum port port = intel_ddi_get_encoder_port(intel_encoder);
+
+       I915_WRITE(PORT_CLK_SEL(port), PORT_CLK_SEL_NONE);
+}
+
 void intel_enable_ddi(struct intel_encoder *encoder)
 {
        struct drm_device *dev = encoder->base.dev;
index 39d0753d6a37678bbf1ad2c95b3e858f31769450..709497dc807b154d5d3bc30dcd344a79312c36cc 100644 (file)
@@ -3332,6 +3332,11 @@ static void ironlake_crtc_off(struct drm_crtc *crtc)
        intel_put_pch_pll(intel_crtc);
 }
 
+static void haswell_crtc_off(struct drm_crtc *crtc)
+{
+       intel_ddi_put_crtc_pll(crtc);
+}
+
 static void intel_crtc_dpms_overlay(struct intel_crtc *intel_crtc, bool enable)
 {
        if (!enable && intel_crtc->overlay) {
@@ -5212,6 +5217,9 @@ static int haswell_crtc_mode_set(struct drm_crtc *crtc,
        WARN(num_connectors != 1, "%d connectors attached to pipe %c\n",
             num_connectors, pipe_name(pipe));
 
+       if (!intel_ddi_pll_mode_set(crtc, adjusted_mode->clock))
+               return -EINVAL;
+
        if (HAS_PCH_IBX(dev) || HAS_PCH_CPT(dev)) {
                ok = ironlake_compute_clocks(crtc, adjusted_mode, &clock,
                                             &has_reduced_clock,
@@ -8078,7 +8086,7 @@ static void intel_init_display(struct drm_device *dev)
                dev_priv->display.crtc_mode_set = haswell_crtc_mode_set;
                dev_priv->display.crtc_enable = ironlake_crtc_enable;
                dev_priv->display.crtc_disable = ironlake_crtc_disable;
-               dev_priv->display.off = ironlake_crtc_off;
+               dev_priv->display.off = haswell_crtc_off;
                dev_priv->display.update_plane = ironlake_update_plane;
        } else if (HAS_PCH_SPLIT(dev)) {
                dev_priv->display.crtc_mode_set = ironlake_crtc_mode_set;
@@ -8533,6 +8541,9 @@ void intel_modeset_setup_hw_state(struct drm_device *dev)
                              crtc->active ? "enabled" : "disabled");
        }
 
+       if (IS_HASWELL(dev))
+               intel_ddi_setup_hw_pll_state(dev);
+
        list_for_each_entry(encoder, &dev->mode_config.encoder_list,
                            base.head) {
                pipe = 0;
index 5de365d70de99897663f3018a3a52818665efc96..245319a45597076517d2387f6f7e162c778f9593 100644 (file)
@@ -212,6 +212,7 @@ struct intel_crtc {
 
        /* We can share PLLs across outputs if the timings match */
        struct intel_pch_pll *pch_pll;
+       uint32_t ddi_pll_sel;
 };
 
 struct intel_plane {
@@ -586,5 +587,10 @@ extern void intel_ddi_disable_pipe_func(struct drm_i915_private *dev_priv,
                                        enum pipe pipe);
 extern void intel_ddi_enable_pipe_clock(struct intel_crtc *intel_crtc);
 extern void intel_ddi_disable_pipe_clock(struct intel_crtc *intel_crtc);
+extern void intel_ddi_setup_hw_pll_state(struct drm_device *dev);
+extern bool intel_ddi_pll_mode_set(struct drm_crtc *crtc, int clock);
+extern void intel_ddi_pre_enable(struct intel_encoder *intel_encoder);
+extern void intel_ddi_post_disable(struct intel_encoder *intel_encoder);
+extern void intel_ddi_put_crtc_pll(struct drm_crtc *crtc);
 
 #endif /* __INTEL_DRV_H__ */
index f9fb47cd1779922a3bd5d39d73e0be73e575e042..a6dd00d99dad2f0f4a06909a60f6e80bbea25ef7 100644 (file)
@@ -1013,8 +1013,10 @@ void intel_hdmi_init(struct drm_device *dev, int sdvox_reg, enum port port)
        }
 
        if (IS_HASWELL(dev)) {
+               intel_encoder->pre_enable = intel_ddi_pre_enable;
                intel_encoder->enable = intel_enable_ddi;
                intel_encoder->disable = intel_disable_ddi;
+               intel_encoder->post_disable = intel_ddi_post_disable;
                intel_encoder->get_hw_state = intel_ddi_get_hw_state;
                drm_encoder_helper_add(&intel_encoder->base,
                                       &intel_hdmi_helper_funcs_hsw);
This page took 0.034535 seconds and 5 git commands to generate.