]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
drm/i915: Add new CRC sources
authorDaniel Vetter <daniel.vetter@ffwll.ch>
Wed, 16 Oct 2013 20:55:58 +0000 (22:55 +0200)
committerDaniel Vetter <daniel.vetter@ffwll.ch>
Mon, 21 Oct 2013 16:33:42 +0000 (18:33 +0200)
On pre-gen5 and vlv we can't use the pipe source when TV-out or a DP
port is connected to the pipe. Hence we need to expose new CRC
sources.

Also simplify the existing pipe source platform code a bit by
rejecting all unhandled sources by default.

Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
drivers/gpu/drm/i915/i915_debugfs.c
drivers/gpu/drm/i915/i915_drv.h

index 061182a0ce1b3deeb4812b6fa9b4eb6ac98f46ef..d7ee350fc6a38abeb2f177ab149e227b1cdb9d48 100644 (file)
@@ -1915,6 +1915,10 @@ static const char * const pipe_crc_sources[] = {
        "plane2",
        "pf",
        "pipe",
+       "TV",
+       "DP-B",
+       "DP-C",
+       "DP-D",
 };
 
 static const char *pipe_crc_source_name(enum intel_pipe_crc_source source)
@@ -1953,14 +1957,14 @@ static int ilk_pipe_crc_ctl_reg(enum intel_pipe_crc_source source,
        case INTEL_PIPE_CRC_SOURCE_PLANE2:
                *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_SPRITE_ILK;
                break;
-       case INTEL_PIPE_CRC_SOURCE_PF:
-               return -EINVAL;
        case INTEL_PIPE_CRC_SOURCE_PIPE:
                *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_PIPE_ILK;
                break;
-       default:
+       case INTEL_PIPE_CRC_SOURCE_NONE:
                *val = 0;
                break;
+       default:
+               return -EINVAL;
        }
 
        return 0;
@@ -1979,11 +1983,11 @@ static int ivb_pipe_crc_ctl_reg(enum intel_pipe_crc_source source,
        case INTEL_PIPE_CRC_SOURCE_PF:
                *val = PIPE_CRC_ENABLE | PIPE_CRC_SOURCE_PF_IVB;
                break;
-       case INTEL_PIPE_CRC_SOURCE_PIPE:
-               return -EINVAL;
-       default:
+       case INTEL_PIPE_CRC_SOURCE_NONE:
                *val = 0;
                break;
+       default:
+               return -EINVAL;
        }
 
        return 0;
index dee03325d596d3ff5499d3f840de176e58b51dea..07e4949c5f3c1d84911c8a985a33946be5f33c0a 100644 (file)
@@ -1224,6 +1224,11 @@ enum intel_pipe_crc_source {
        INTEL_PIPE_CRC_SOURCE_PLANE2,
        INTEL_PIPE_CRC_SOURCE_PF,
        INTEL_PIPE_CRC_SOURCE_PIPE,
+       /* TV/DP on pre-gen5/vlv can't use the pipe source. */
+       INTEL_PIPE_CRC_SOURCE_TV,
+       INTEL_PIPE_CRC_SOURCE_DP_B,
+       INTEL_PIPE_CRC_SOURCE_DP_C,
+       INTEL_PIPE_CRC_SOURCE_DP_D,
        INTEL_PIPE_CRC_SOURCE_MAX,
 };