From: Ramalingam C <ramalingam.c@intel.com>
To: dri-devel@lists.freedesktop.org, intel-gfx@lists.freedesktop.org,
daniel.vetter@intel.com
Cc: Ramalingam C <ramalingam.c@intel.com>, uma.shankar@intel.com
Subject: [RFC v1 07/20] drm/hdcp: Initialization of DRM hdcp stack
Date: Wed, 12 Jul 2017 13:58:51 +0530 [thread overview]
Message-ID: <1499848144-8456-8-git-send-email-ramalingam.c@intel.com> (raw)
In-Reply-To: <1499848144-8456-1-git-send-email-ramalingam.c@intel.com>
Initialization of the drm hdcp stack drm_hdcp_init is implemented.
This function has to be called by the display driver to get the
DRM support for HDCP.
This function will take the pointers to the drm_hdcp and associated
drm_conenctor. These two entities will be linked. And HDCP version
supported by the Display driver is received as another parameter.
And corresponding callback fucntions can be validated.
Signed-off-by: Ramalingam C <ramalingam.c@intel.com>
---
drivers/gpu/drm/drm_hdcp.c | 75 ++++++++++++++++++++++++++++++++++++++++++++++
include/drm/drm_hdcp.h | 7 +++++
2 files changed, 82 insertions(+)
create mode 100644 drivers/gpu/drm/drm_hdcp.c
diff --git a/drivers/gpu/drm/drm_hdcp.c b/drivers/gpu/drm/drm_hdcp.c
new file mode 100644
index 0000000..481bc24
--- /dev/null
+++ b/drivers/gpu/drm/drm_hdcp.c
@@ -0,0 +1,75 @@
+/*
+ * Copyright (c) 2017 Intel Corporation
+ *
+ * Permission to use, copy, modify, distribute, and sell this software and its
+ * documentation for any purpose is hereby granted without fee, provided that
+ * the above copyright notice appear in all copies and that both that copyright
+ * notice and this permission notice appear in supporting documentation, and
+ * that the name of the copyright holders not be used in advertising or
+ * publicity pertaining to distribution of the software without specific,
+ * written prior permission. The copyright holders make no representations
+ * about the suitability of this software for any purpose. It is provided "as
+ * is" without express or implied warranty.
+ *
+ * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
+ * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
+ * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
+ * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
+ * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
+ * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
+ * OF THIS SOFTWARE.
+ */
+/**
+ * Implementation of HDCP stack for DRM
+ */
+#include <linux/errno.h>
+#include <linux/export.h>
+#include <linux/i2c.h>
+#include <drm/drmP.h>
+#include <drm/drm_connector.h>
+#include <drm/drm_hdcp.h>
+#include <drm/drm_dp_helper.h>
+
+/**
+ * @drm_hdcp_init:
+ * Initialization of the HDCP stack of the DRM
+ *
+ * Return 0 on success else -ve.
+ */
+int drm_hdcp_init(struct drm_connector *connector,
+ struct drm_hdcp *hdcp,
+ uint8_t spec_supported)
+{
+ struct drm_mode_config *config = &connector->dev->mode_config;
+
+ if (!hdcp)
+ return -EINVAL;
+
+ if (!hdcp->hdcp_funcs) {
+ DRM_ERROR("Callback functions are missing\n");
+ return -EINVAL;
+ }
+
+ if (!spec_supported) {
+ DRM_ERROR("HDCP version support is not mentioned\n");
+ return -EINVAL;
+ }
+
+ /* Check for Essential Service Funcs */
+ if (!hdcp->hdcp_funcs->link_write || !hdcp->hdcp_funcs->link_read)
+ return -EINVAL;
+
+ hdcp->ver_support_on_plat = spec_supported;
+
+ connector->hdcp = hdcp;
+ hdcp->connector = connector;
+
+ drm_object_attach_property(&connector->base,
+ config->hdcp_property,
+ 0);
+
+ mutex_init(&hdcp->mutex);
+
+ return 0;
+}
+EXPORT_SYMBOL(drm_hdcp_init);
diff --git a/include/drm/drm_hdcp.h b/include/drm/drm_hdcp.h
index 2a48ef9..e8136ef 100644
--- a/include/drm/drm_hdcp.h
+++ b/include/drm/drm_hdcp.h
@@ -37,6 +37,9 @@ struct drm_hdcp;
#define HDCP_1_4_SUPPORT (1<<0)
#define HDCP_2_2_SUPPORT (1<<1)
+#define HDCP_STREAM_TYPE0_CODE 0x00
+#define HDCP_STREAM_TYPE1_CODE 0x01
+
/**
* @enum hdcp_status Enumeration of all HDCP Status Codes
*/
@@ -154,4 +157,8 @@ struct drm_hdcp {
DRM_HDCP_LINK_INTEGRITY_FAILED | \
DRM_HDCP_REAUTH_REQUESTED)
+/* Functions exported */
+extern int drm_hdcp_init(struct drm_connector *connector,
+ struct drm_hdcp *hdcp,
+ uint8_t spec_supported);
#endif /* __DRM_HDCP_H__ */
--
2.7.4
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
next prev parent reply other threads:[~2017-07-12 8:28 UTC|newest]
Thread overview: 50+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-07-12 8:28 [RFC v1 00/20] DRM Interfaces for HDCP support Ramalingam C
2017-07-12 8:28 ` [RFC v1 01/20] drm/hdcp: HDCP bitmask property for connectors Ramalingam C
2017-07-12 9:54 ` Daniel Vetter
2017-07-12 14:56 ` [Intel-gfx] " Ramalingam C
2017-07-12 19:10 ` Sean Paul
2017-07-13 6:09 ` Daniel Vetter
2017-07-13 6:54 ` Ramalingam C
2017-07-13 8:45 ` Daniel Vetter
2017-07-13 10:15 ` [Intel-gfx] " Ramalingam C
2017-07-13 10:36 ` Daniel Vetter
2017-07-13 12:59 ` Ramalingam C
2017-07-13 19:02 ` [Intel-gfx] " Daniel Vetter
2017-07-14 10:40 ` Ramalingam C
2017-07-14 11:21 ` [RFC v2] drm/hdcp: drm enum property for HDCP State Ramalingam C
2017-07-14 13:55 ` Sean Paul
2017-07-21 13:02 ` Ramalingam C
2017-07-24 13:23 ` Sean Paul
2017-07-24 13:34 ` Ramalingam C
2017-07-24 18:12 ` [RFC v3] drm/hdcp: drm enum property for CP State Ramalingam C
2017-07-25 12:34 ` Sean Paul
2017-07-26 9:54 ` Ramalingam C
2017-07-26 14:52 ` Sean Paul
2017-07-26 16:51 ` C, Ramalingam
2017-07-26 17:54 ` Sean Paul
2017-08-02 15:32 ` Ramalingam C
2017-08-02 15:53 ` [RFC v4] " Ramalingam C
2017-08-05 15:51 ` Ramalingam C
2017-08-07 5:32 ` Ramalingam C
2017-07-13 6:36 ` [Intel-gfx] [RFC v1 01/20] drm/hdcp: HDCP bitmask property for connectors Ramalingam C
2017-07-12 8:28 ` [RFC v1 02/20] drm/hdcp: HDCP SRM blob " Ramalingam C
2017-07-12 8:28 ` [RFC v1 03/20] drm/sysfs: Generate drm uevent with custom string Ramalingam C
2017-07-12 8:28 ` [RFC v1 04/20] drm/hdcp: Struct drm_hdcp for connector's hdcp state Ramalingam C
2017-07-12 8:28 ` [RFC v1 05/20] drm/hdcp: HDCP status code for DRM HDCP stack Ramalingam C
2017-07-12 8:28 ` [RFC v1 06/20] drm/hdcp: display driver callback funcs defined Ramalingam C
2017-07-12 8:28 ` Ramalingam C [this message]
2017-07-12 8:28 ` [RFC v1 08/20] drm/hdcp: Add KBuild for DRM HDCP support Ramalingam C
2017-07-12 8:28 ` [RFC v1 09/20] drm/hdcp: Generic enable, disable and late_init Ramalingam C
2017-07-12 8:28 ` [RFC v1 10/20] drm/hdcp: Handler for connector state change Ramalingam C
2017-07-12 8:28 ` [RFC v1 11/20] drm/hdcp: Registering " Ramalingam C
2017-07-12 8:28 ` [RFC v1 12/20] drm/hdcp: Atomic set and get property for hdcp Ramalingam C
2017-07-12 8:28 ` [RFC v1 13/20] drm/hdcp: Updating DRM Property val with HDCP state Ramalingam C
2017-07-12 8:28 ` [RFC v1 14/20] drm/hdcp2.2: HDCP2.2 protocol msg definitions Ramalingam C
2017-07-12 8:28 ` [RFC v1 15/20] drm/hdcp2.2: Display driver service functions Ramalingam C
2017-07-12 8:29 ` [RFC v1 16/20] drm/hdcp2.2: HDCP2.2 Initialization Ramalingam C
2017-07-12 8:29 ` [RFC v1 17/20] drm/hdcp2.2: Definitions of HDMI HDCP2.2 registers Ramalingam C
2017-07-12 8:29 ` [RFC v1 18/20] drm/hdcp2.2: Late_init: Capability probing on panel Ramalingam C
2017-07-12 8:29 ` [RFC v1 19/20] drm/hdcp2.2: HDCP2.2 enable as a asynchronous work Ramalingam C
2017-07-12 8:29 ` [RFC v1 20/20] drm/hdcp2.2: HDCP2.2 disable " Ramalingam C
2017-07-12 8:35 ` ✗ Fi.CI.BAT: failure for DRM Interfaces for HDCP support Patchwork
2017-07-14 11:26 ` ✗ Fi.CI.BAT: failure for DRM Interfaces for HDCP support (rev2) Patchwork
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1499848144-8456-8-git-send-email-ramalingam.c@intel.com \
--to=ramalingam.c@intel.com \
--cc=daniel.vetter@intel.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=intel-gfx@lists.freedesktop.org \
--cc=uma.shankar@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox