[Bug 106178] New: Feature request: HDCP support for graphics platforms earlier than Haswell

bugzilla-daemon at freedesktop.org bugzilla-daemon at freedesktop.org
Sun Apr 22 17:11:10 UTC 2018


https://bugs.freedesktop.org/show_bug.cgi?id=106178

            Bug ID: 106178
           Summary: Feature request: HDCP support for graphics platforms
                    earlier than Haswell
           Product: DRI
           Version: XOrg git
          Hardware: x86-64 (AMD64)
                OS: Linux (All)
            Status: NEW
          Severity: enhancement
          Priority: medium
         Component: DRM/Intel
          Assignee: intel-gfx-bugs at lists.freedesktop.org
          Reporter: samalexander at comic.com
        QA Contact: intel-gfx-bugs at lists.freedesktop.org
                CC: intel-gfx-bugs at lists.freedesktop.org

Could the new HDCP support in the Linux i915 driver be extended to include Ivy
Bridge?

I am looking at the is_hdcp_supported() function in
drivers/gpu/drm/i915/intel_hdcp.c as an indication of what is currently
supported:

bool is_hdcp_supported(struct drm_i915_private *dev_priv, enum port port)
{
        /* PORT E doesn't have HDCP, and PORT F is disabled */
        return ((INTEL_GEN(dev_priv) >= 8 || IS_HASWELL(dev_priv)) &&
                !IS_CHERRYVIEW(dev_priv) && port < PORT_E);
}

where the platforms are listed in drivers/gpu/drm/i915/intel_device_info.h:

enum intel_platform {
        INTEL_PLATFORM_UNINITIALIZED = 0,
        /* gen2 */
        INTEL_I830,
        INTEL_I845G,
        INTEL_I85X,
        INTEL_I865G,
        /* gen3 */
        INTEL_I915G,
        INTEL_I915GM,
        INTEL_I945G,
        INTEL_I945GM,
        INTEL_G33,
        INTEL_PINEVIEW,
        /* gen4 */
        INTEL_I965G,
        INTEL_I965GM,
        INTEL_G45,
        INTEL_GM45,
        /* gen5 */
        INTEL_IRONLAKE,
        /* gen6 */
        INTEL_SANDYBRIDGE,
        /* gen7 */
        INTEL_IVYBRIDGE,                                                        
        INTEL_VALLEYVIEW,                                                       
        INTEL_HASWELL,                                                          
        /* gen8 */                                                              
        INTEL_BROADWELL,                                                        
        INTEL_CHERRYVIEW,                                                       
        /* gen9 */                                                              
        INTEL_SKYLAKE,                                                          
        INTEL_BROXTON,                                                          
        INTEL_KABYLAKE,                                                         
        INTEL_GEMINILAKE,                                                       
        INTEL_COFFEELAKE,                                                       
        /* gen10 */                                                             
        INTEL_CANNONLAKE,
        /* gen11 */
        INTEL_ICELAKE,
        INTEL_MAX_PLATFORMS
};

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are on the CC list for the bug.
You are the QA Contact for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.freedesktop.org/archives/intel-gfx-bugs/attachments/20180422/5d43fb1e/attachment.html>


More information about the intel-gfx-bugs mailing list