
During an HPD, HDCP IRQ handler prints error log and exit if HDCP state is inactive or authentication failure. Inactive state is a benign error and auth failure will be reported by hdcp kernel module. This change will downgrade this error log to debug log. Change-Id: I2a64e3c94a6661db70e93d07f5e3608202fe8871 Signed-off-by: Sandeep Gangadharaiah <sandgang@codeaurora.org>
1034 خطوط
24 KiB
C
1034 خطوط
24 KiB
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* Copyright (c) 2016-2021, The Linux Foundation. All rights reserved.
|
|
*/
|
|
|
|
#include <linux/delay.h>
|
|
#include <linux/io.h>
|
|
#include <linux/slab.h>
|
|
#include <linux/stat.h>
|
|
#include <linux/types.h>
|
|
#include <linux/kthread.h>
|
|
#include <linux/msm_hdcp.h>
|
|
#include <linux/kfifo.h>
|
|
#include <drm/drm_dp_helper.h>
|
|
|
|
#include "sde_hdcp_2x.h"
|
|
#include "dp_debug.h"
|
|
|
|
#define DP_INTR_STATUS2 (0x00000024)
|
|
#define DP_INTR_STATUS3 (0x00000028)
|
|
#define dp_read(offset) readl_relaxed((offset))
|
|
#define dp_write(offset, data) writel_relaxed((data), (offset))
|
|
#define DP_HDCP_RXCAPS_LENGTH 3
|
|
|
|
enum dp_hdcp2p2_sink_status {
|
|
SINK_DISCONNECTED,
|
|
SINK_CONNECTED
|
|
};
|
|
|
|
struct dp_hdcp2p2_ctrl {
|
|
DECLARE_KFIFO(cmd_q, enum hdcp_transport_wakeup_cmd, 8);
|
|
wait_queue_head_t wait_q;
|
|
atomic_t auth_state;
|
|
atomic_t abort;
|
|
enum dp_hdcp2p2_sink_status sink_status; /* Is sink connected */
|
|
struct dp_hdcp2p2_interrupts *intr;
|
|
struct sde_hdcp_init_data init_data;
|
|
struct mutex mutex; /* mutex to protect access to ctrl */
|
|
struct mutex msg_lock; /* mutex to protect access to msg buffer */
|
|
struct sde_hdcp_ops *ops;
|
|
void *lib_ctx; /* Handle to HDCP 2.2 Trustzone library */
|
|
struct sde_hdcp_2x_ops *lib; /* Ops for driver to call into TZ */
|
|
|
|
struct task_struct *thread;
|
|
struct hdcp2_buffer response;
|
|
struct hdcp2_buffer request;
|
|
uint32_t total_message_length;
|
|
uint32_t transaction_delay;
|
|
uint32_t transaction_timeout;
|
|
struct sde_hdcp_2x_msg_part msg_part[HDCP_MAX_MESSAGE_PARTS];
|
|
u8 sink_rx_status;
|
|
u8 rx_status;
|
|
char abort_mask;
|
|
|
|
bool polling;
|
|
};
|
|
|
|
struct dp_hdcp2p2_int_set {
|
|
u32 interrupt;
|
|
char *name;
|
|
void (*func)(struct dp_hdcp2p2_ctrl *ctrl);
|
|
};
|
|
|
|
struct dp_hdcp2p2_interrupts {
|
|
u32 reg;
|
|
struct dp_hdcp2p2_int_set *int_set;
|
|
};
|
|
|
|
static inline int dp_hdcp2p2_valid_handle(struct dp_hdcp2p2_ctrl *ctrl)
|
|
{
|
|
if (!ctrl) {
|
|
DP_ERR("invalid input\n");
|
|
return -EINVAL;
|
|
}
|
|
|
|
if (!ctrl->lib_ctx) {
|
|
DP_ERR("HDCP library needs to be acquired\n");
|
|
return -EINVAL;
|
|
}
|
|
|
|
if (!ctrl->lib) {
|
|
DP_ERR("invalid lib ops data\n");
|
|
return -EINVAL;
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
static inline bool dp_hdcp2p2_is_valid_state(struct dp_hdcp2p2_ctrl *ctrl)
|
|
{
|
|
enum hdcp_transport_wakeup_cmd cmd;
|
|
|
|
if (kfifo_peek(&ctrl->cmd_q, &cmd) &&
|
|
cmd == HDCP_TRANSPORT_CMD_AUTHENTICATE)
|
|
return true;
|
|
|
|
if (atomic_read(&ctrl->auth_state) != HDCP_STATE_INACTIVE)
|
|
return true;
|
|
|
|
return false;
|
|
}
|
|
|
|
static int dp_hdcp2p2_copy_buf(struct dp_hdcp2p2_ctrl *ctrl,
|
|
struct hdcp_transport_wakeup_data *data)
|
|
{
|
|
int i = 0;
|
|
uint32_t num_messages = 0;
|
|
|
|
if (!data || !data->message_data)
|
|
return 0;
|
|
|
|
mutex_lock(&ctrl->msg_lock);
|
|
|
|
num_messages = data->message_data->num_messages;
|
|
ctrl->total_message_length = 0; /* Total length of all messages */
|
|
|
|
for (i = 0; i < num_messages; i++)
|
|
ctrl->total_message_length +=
|
|
data->message_data->messages[i].length;
|
|
|
|
memcpy(ctrl->msg_part, data->message_data->messages,
|
|
sizeof(data->message_data->messages));
|
|
|
|
ctrl->rx_status = data->message_data->rx_status;
|
|
ctrl->abort_mask = data->abort_mask;
|
|
|
|
if (!ctrl->total_message_length) {
|
|
mutex_unlock(&ctrl->msg_lock);
|
|
return 0;
|
|
}
|
|
|
|
ctrl->response.data = data->buf;
|
|
ctrl->response.length = ctrl->total_message_length;
|
|
ctrl->request.data = data->buf;
|
|
ctrl->request.length = ctrl->total_message_length;
|
|
|
|
ctrl->transaction_delay = data->transaction_delay;
|
|
ctrl->transaction_timeout = data->transaction_timeout;
|
|
|
|
mutex_unlock(&ctrl->msg_lock);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void dp_hdcp2p2_send_auth_status(struct dp_hdcp2p2_ctrl *ctrl)
|
|
{
|
|
ctrl->init_data.notify_status(ctrl->init_data.cb_data,
|
|
atomic_read(&ctrl->auth_state));
|
|
}
|
|
|
|
static void dp_hdcp2p2_set_interrupts(struct dp_hdcp2p2_ctrl *ctrl, bool enable)
|
|
{
|
|
void __iomem *base = ctrl->init_data.dp_ahb->base;
|
|
struct dp_hdcp2p2_interrupts *intr = ctrl->intr;
|
|
|
|
if (atomic_read(&ctrl->abort))
|
|
return;
|
|
|
|
while (intr && intr->reg) {
|
|
struct dp_hdcp2p2_int_set *int_set = intr->int_set;
|
|
u32 interrupts = 0;
|
|
|
|
while (int_set && int_set->interrupt) {
|
|
interrupts |= int_set->interrupt;
|
|
int_set++;
|
|
}
|
|
|
|
if (enable)
|
|
dp_write(base + intr->reg,
|
|
dp_read(base + intr->reg) | interrupts);
|
|
else
|
|
dp_write(base + intr->reg,
|
|
dp_read(base + intr->reg) & ~interrupts);
|
|
intr++;
|
|
}
|
|
}
|
|
|
|
static int dp_hdcp2p2_wakeup(struct hdcp_transport_wakeup_data *data)
|
|
{
|
|
struct dp_hdcp2p2_ctrl *ctrl;
|
|
|
|
SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_ENTRY);
|
|
if (!data) {
|
|
DP_ERR("invalid input\n");
|
|
return -EINVAL;
|
|
}
|
|
|
|
ctrl = data->context;
|
|
if (!ctrl) {
|
|
DP_ERR("invalid ctrl\n");
|
|
return -EINVAL;
|
|
}
|
|
|
|
if (dp_hdcp2p2_copy_buf(ctrl, data))
|
|
goto exit;
|
|
|
|
ctrl->polling = false;
|
|
switch (data->cmd) {
|
|
case HDCP_TRANSPORT_CMD_STATUS_SUCCESS:
|
|
atomic_set(&ctrl->auth_state, HDCP_STATE_AUTHENTICATED);
|
|
kfifo_put(&ctrl->cmd_q, data->cmd);
|
|
wake_up(&ctrl->wait_q);
|
|
break;
|
|
case HDCP_TRANSPORT_CMD_STATUS_FAILED:
|
|
atomic_set(&ctrl->auth_state, HDCP_STATE_AUTH_FAIL);
|
|
kfifo_put(&ctrl->cmd_q, data->cmd);
|
|
kthread_park(ctrl->thread);
|
|
break;
|
|
default:
|
|
kfifo_put(&ctrl->cmd_q, data->cmd);
|
|
wake_up(&ctrl->wait_q);
|
|
break;
|
|
}
|
|
|
|
exit:
|
|
SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_EXIT, data->cmd);
|
|
return 0;
|
|
}
|
|
|
|
static inline void dp_hdcp2p2_wakeup_lib(struct dp_hdcp2p2_ctrl *ctrl,
|
|
struct sde_hdcp_2x_wakeup_data *data)
|
|
{
|
|
int rc = 0;
|
|
|
|
if (ctrl && ctrl->lib && ctrl->lib->wakeup &&
|
|
data && (data->cmd != HDCP_2X_CMD_INVALID)) {
|
|
rc = ctrl->lib->wakeup(data);
|
|
if (rc)
|
|
DP_ERR("error sending %s to lib\n",
|
|
sde_hdcp_2x_cmd_to_str(data->cmd));
|
|
}
|
|
}
|
|
|
|
static void dp_hdcp2p2_reset(struct dp_hdcp2p2_ctrl *ctrl)
|
|
{
|
|
if (!ctrl) {
|
|
DP_ERR("invalid input\n");
|
|
return;
|
|
}
|
|
|
|
ctrl->sink_status = SINK_DISCONNECTED;
|
|
atomic_set(&ctrl->auth_state, HDCP_STATE_INACTIVE);
|
|
}
|
|
|
|
static int dp_hdcp2p2_register(void *input, bool mst_enabled)
|
|
{
|
|
int rc;
|
|
struct dp_hdcp2p2_ctrl *ctrl = input;
|
|
struct sde_hdcp_2x_wakeup_data cdata = {HDCP_2X_CMD_ENABLE};
|
|
|
|
rc = dp_hdcp2p2_valid_handle(ctrl);
|
|
if (rc)
|
|
return rc;
|
|
|
|
if (mst_enabled)
|
|
cdata.device_type = HDCP_TXMTR_DP_MST;
|
|
else
|
|
cdata.device_type = HDCP_TXMTR_DP;
|
|
|
|
cdata.context = ctrl->lib_ctx;
|
|
rc = ctrl->lib->wakeup(&cdata);
|
|
|
|
return rc;
|
|
}
|
|
|
|
static int dp_hdcp2p2_on(void *input)
|
|
{
|
|
int rc = 0;
|
|
struct dp_hdcp2p2_ctrl *ctrl = input;
|
|
struct sde_hdcp_2x_wakeup_data cdata = {HDCP_2X_CMD_INVALID};
|
|
|
|
rc = dp_hdcp2p2_valid_handle(ctrl);
|
|
if (rc)
|
|
return rc;
|
|
|
|
cdata.cmd = HDCP_2X_CMD_START;
|
|
cdata.context = ctrl->lib_ctx;
|
|
rc = ctrl->lib->wakeup(&cdata);
|
|
if (rc)
|
|
DP_ERR("Unable to start the HDCP 2.2 library (%d)\n", rc);
|
|
|
|
return rc;
|
|
}
|
|
|
|
static void dp_hdcp2p2_off(void *input)
|
|
{
|
|
int rc;
|
|
struct dp_hdcp2p2_ctrl *ctrl = (struct dp_hdcp2p2_ctrl *)input;
|
|
struct sde_hdcp_2x_wakeup_data cdata = {HDCP_2X_CMD_DISABLE};
|
|
|
|
rc = dp_hdcp2p2_valid_handle(ctrl);
|
|
if (rc)
|
|
return;
|
|
|
|
dp_hdcp2p2_set_interrupts(ctrl, false);
|
|
|
|
dp_hdcp2p2_reset(ctrl);
|
|
|
|
kthread_park(ctrl->thread);
|
|
|
|
cdata.context = ctrl->lib_ctx;
|
|
ctrl->lib->wakeup(&cdata);
|
|
}
|
|
|
|
static int dp_hdcp2p2_authenticate(void *input)
|
|
{
|
|
int rc;
|
|
struct dp_hdcp2p2_ctrl *ctrl = input;
|
|
struct hdcp_transport_wakeup_data cdata = {
|
|
HDCP_TRANSPORT_CMD_AUTHENTICATE};
|
|
rc = dp_hdcp2p2_valid_handle(ctrl);
|
|
if (rc)
|
|
return rc;
|
|
|
|
dp_hdcp2p2_set_interrupts(ctrl, true);
|
|
|
|
ctrl->sink_status = SINK_CONNECTED;
|
|
atomic_set(&ctrl->auth_state, HDCP_STATE_AUTHENTICATING);
|
|
|
|
if (kthread_should_park())
|
|
kthread_park(ctrl->thread);
|
|
kfifo_reset(&ctrl->cmd_q);
|
|
kthread_unpark(ctrl->thread);
|
|
|
|
cdata.context = input;
|
|
dp_hdcp2p2_wakeup(&cdata);
|
|
|
|
return rc;
|
|
}
|
|
|
|
static int dp_hdcp2p2_reauthenticate(void *input)
|
|
{
|
|
struct dp_hdcp2p2_ctrl *ctrl = (struct dp_hdcp2p2_ctrl *)input;
|
|
|
|
if (!ctrl) {
|
|
DP_ERR("invalid input\n");
|
|
return -EINVAL;
|
|
}
|
|
|
|
dp_hdcp2p2_reset((struct dp_hdcp2p2_ctrl *)input);
|
|
|
|
return dp_hdcp2p2_authenticate(input);
|
|
}
|
|
|
|
static void dp_hdcp2p2_min_level_change(void *client_ctx,
|
|
u8 min_enc_level)
|
|
{
|
|
struct dp_hdcp2p2_ctrl *ctrl = (struct dp_hdcp2p2_ctrl *)client_ctx;
|
|
struct sde_hdcp_2x_wakeup_data cdata = {
|
|
HDCP_2X_CMD_MIN_ENC_LEVEL};
|
|
|
|
if (!ctrl) {
|
|
DP_ERR("invalid input\n");
|
|
return;
|
|
}
|
|
|
|
cdata.context = ctrl->lib_ctx;
|
|
cdata.min_enc_level = min_enc_level;
|
|
dp_hdcp2p2_wakeup_lib(ctrl, &cdata);
|
|
}
|
|
|
|
static int dp_hdcp2p2_aux_read_message(struct dp_hdcp2p2_ctrl *ctrl)
|
|
{
|
|
int rc = 0, max_size = 16, read_size = 0, bytes_read = 0;
|
|
int size = ctrl->request.length, offset = ctrl->msg_part->offset;
|
|
u8 *buf = ctrl->request.data;
|
|
s64 diff_ms;
|
|
ktime_t start_read, finish_read;
|
|
|
|
if (atomic_read(&ctrl->auth_state) == HDCP_STATE_INACTIVE ||
|
|
atomic_read(&ctrl->auth_state) == HDCP_STATE_AUTH_FAIL) {
|
|
DP_ERR("invalid hdcp state\n");
|
|
rc = -EINVAL;
|
|
goto exit;
|
|
}
|
|
|
|
if (!buf) {
|
|
DP_ERR("invalid request buffer\n");
|
|
rc = -EINVAL;
|
|
goto exit;
|
|
}
|
|
|
|
DP_DEBUG("offset(0x%x), size(%d)\n", offset, size);
|
|
|
|
start_read = ktime_get();
|
|
do {
|
|
read_size = min(size, max_size);
|
|
|
|
bytes_read = drm_dp_dpcd_read(ctrl->init_data.drm_aux,
|
|
offset, buf, read_size);
|
|
if (bytes_read != read_size) {
|
|
DP_ERR("fail: offset(0x%x), size(0x%x), rc(0x%x)\n",
|
|
offset, read_size, bytes_read);
|
|
SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_ENTRY,
|
|
offset,
|
|
read_size,
|
|
bytes_read);
|
|
rc = -EINVAL;
|
|
break;
|
|
}
|
|
|
|
buf += read_size;
|
|
offset += read_size;
|
|
size -= read_size;
|
|
} while (size > 0);
|
|
finish_read = ktime_get();
|
|
diff_ms = ktime_ms_delta(finish_read, start_read);
|
|
|
|
if (ctrl->transaction_timeout && diff_ms > ctrl->transaction_timeout) {
|
|
DP_ERR("HDCP read timeout exceeded (%lldms > %ums)\n", diff_ms,
|
|
ctrl->transaction_timeout);
|
|
rc = -ETIMEDOUT;
|
|
}
|
|
exit:
|
|
return rc;
|
|
}
|
|
|
|
static int dp_hdcp2p2_aux_write_message(struct dp_hdcp2p2_ctrl *ctrl,
|
|
u8 *buf, int size, uint offset, uint timeout)
|
|
{
|
|
int const max_size = 16;
|
|
int rc = 0, write_size = 0, bytes_written = 0;
|
|
|
|
DP_DEBUG("offset(0x%x), size(%d)\n", offset, size);
|
|
|
|
do {
|
|
write_size = min(size, max_size);
|
|
|
|
bytes_written = drm_dp_dpcd_write(ctrl->init_data.drm_aux,
|
|
offset, buf, write_size);
|
|
if (bytes_written != write_size) {
|
|
DP_ERR("fail: offset(0x%x), size(0x%x), rc(0x%x)\n",
|
|
offset, write_size, bytes_written);
|
|
SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_ENTRY,
|
|
offset,
|
|
write_size,
|
|
bytes_written);
|
|
rc = -EINVAL;
|
|
break;
|
|
}
|
|
|
|
buf += write_size;
|
|
offset += write_size;
|
|
size -= write_size;
|
|
} while (size > 0);
|
|
|
|
return rc;
|
|
}
|
|
|
|
static bool dp_hdcp2p2_feature_supported(void *input)
|
|
{
|
|
int rc;
|
|
struct dp_hdcp2p2_ctrl *ctrl = input;
|
|
struct sde_hdcp_2x_ops *lib = NULL;
|
|
bool supported = false;
|
|
|
|
rc = dp_hdcp2p2_valid_handle(ctrl);
|
|
if (rc)
|
|
return supported;
|
|
|
|
lib = ctrl->lib;
|
|
if (lib->feature_supported)
|
|
supported = lib->feature_supported(
|
|
ctrl->lib_ctx);
|
|
|
|
return supported;
|
|
}
|
|
|
|
static void dp_hdcp2p2_force_encryption(void *data, bool enable)
|
|
{
|
|
int rc;
|
|
struct dp_hdcp2p2_ctrl *ctrl = data;
|
|
struct sde_hdcp_2x_ops *lib = NULL;
|
|
|
|
rc = dp_hdcp2p2_valid_handle(ctrl);
|
|
if (rc)
|
|
return;
|
|
|
|
lib = ctrl->lib;
|
|
if (lib->force_encryption)
|
|
lib->force_encryption(ctrl->lib_ctx, enable);
|
|
}
|
|
|
|
static void dp_hdcp2p2_send_msg(struct dp_hdcp2p2_ctrl *ctrl)
|
|
{
|
|
int rc = 0;
|
|
struct sde_hdcp_2x_wakeup_data cdata = {HDCP_2X_CMD_INVALID};
|
|
|
|
SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_ENTRY);
|
|
if (!ctrl) {
|
|
DP_ERR("invalid input\n");
|
|
rc = -EINVAL;
|
|
goto exit;
|
|
}
|
|
|
|
cdata.context = ctrl->lib_ctx;
|
|
|
|
if (atomic_read(&ctrl->auth_state) == HDCP_STATE_INACTIVE) {
|
|
DP_ERR("hdcp is off\n");
|
|
goto exit;
|
|
}
|
|
|
|
mutex_lock(&ctrl->msg_lock);
|
|
|
|
rc = dp_hdcp2p2_aux_write_message(ctrl, ctrl->response.data,
|
|
ctrl->response.length, ctrl->msg_part->offset,
|
|
ctrl->transaction_delay);
|
|
if (rc) {
|
|
DP_ERR("Error sending msg to sink %d\n", rc);
|
|
mutex_unlock(&ctrl->msg_lock);
|
|
goto exit;
|
|
}
|
|
|
|
cdata.cmd = HDCP_2X_CMD_MSG_SEND_SUCCESS;
|
|
cdata.timeout = ctrl->transaction_delay;
|
|
mutex_unlock(&ctrl->msg_lock);
|
|
|
|
exit:
|
|
if (rc == -ETIMEDOUT)
|
|
cdata.cmd = HDCP_2X_CMD_MSG_SEND_TIMEOUT;
|
|
else if (rc)
|
|
cdata.cmd = HDCP_2X_CMD_MSG_SEND_FAILED;
|
|
|
|
dp_hdcp2p2_wakeup_lib(ctrl, &cdata);
|
|
SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_EXIT, cdata.cmd);
|
|
}
|
|
|
|
static int dp_hdcp2p2_get_msg_from_sink(struct dp_hdcp2p2_ctrl *ctrl)
|
|
{
|
|
int rc = 0;
|
|
struct sde_hdcp_2x_wakeup_data cdata = { HDCP_2X_CMD_INVALID };
|
|
|
|
cdata.context = ctrl->lib_ctx;
|
|
|
|
rc = dp_hdcp2p2_aux_read_message(ctrl);
|
|
if (rc) {
|
|
DP_ERR("error reading message %d\n", rc);
|
|
goto exit;
|
|
}
|
|
|
|
cdata.total_message_length = ctrl->total_message_length;
|
|
cdata.timeout = ctrl->transaction_delay;
|
|
exit:
|
|
if (rc == -ETIMEDOUT)
|
|
cdata.cmd = HDCP_2X_CMD_MSG_RECV_TIMEOUT;
|
|
else if (rc)
|
|
cdata.cmd = HDCP_2X_CMD_MSG_RECV_FAILED;
|
|
else
|
|
cdata.cmd = HDCP_2X_CMD_MSG_RECV_SUCCESS;
|
|
|
|
dp_hdcp2p2_wakeup_lib(ctrl, &cdata);
|
|
|
|
return rc;
|
|
}
|
|
|
|
static void dp_hdcp2p2_recv_msg(struct dp_hdcp2p2_ctrl *ctrl)
|
|
{
|
|
struct sde_hdcp_2x_wakeup_data cdata = { HDCP_2X_CMD_INVALID };
|
|
|
|
cdata.context = ctrl->lib_ctx;
|
|
|
|
if (atomic_read(&ctrl->auth_state) == HDCP_STATE_INACTIVE) {
|
|
DP_ERR("hdcp is off\n");
|
|
return;
|
|
}
|
|
|
|
if (ctrl->transaction_delay)
|
|
msleep(ctrl->transaction_delay);
|
|
|
|
dp_hdcp2p2_get_msg_from_sink(ctrl);
|
|
}
|
|
|
|
static void dp_hdcp2p2_link_check(struct dp_hdcp2p2_ctrl *ctrl)
|
|
{
|
|
int rc = 0;
|
|
struct sde_hdcp_2x_wakeup_data cdata = {HDCP_2X_CMD_INVALID};
|
|
|
|
if (!ctrl) {
|
|
DP_ERR("invalid input\n");
|
|
return;
|
|
}
|
|
|
|
if (atomic_read(&ctrl->auth_state) == HDCP_STATE_AUTH_FAIL ||
|
|
atomic_read(&ctrl->auth_state) == HDCP_STATE_INACTIVE) {
|
|
DP_ERR("invalid hdcp state\n");
|
|
return;
|
|
}
|
|
|
|
cdata.context = ctrl->lib_ctx;
|
|
|
|
if (ctrl->sink_rx_status & ctrl->abort_mask) {
|
|
if (ctrl->sink_rx_status & BIT(3))
|
|
DP_ERR("reauth_req set by sink\n");
|
|
|
|
if (ctrl->sink_rx_status & BIT(4))
|
|
DP_ERR("link failure reported by sink\n");
|
|
|
|
ctrl->sink_rx_status = 0;
|
|
ctrl->rx_status = 0;
|
|
|
|
rc = -ENOLINK;
|
|
|
|
cdata.cmd = HDCP_2X_CMD_LINK_FAILED;
|
|
atomic_set(&ctrl->auth_state, HDCP_STATE_AUTH_FAIL);
|
|
goto exit;
|
|
}
|
|
|
|
/* check if sink has made a message available */
|
|
if (ctrl->polling && (ctrl->sink_rx_status & ctrl->rx_status)) {
|
|
ctrl->sink_rx_status = 0;
|
|
ctrl->rx_status = 0;
|
|
|
|
dp_hdcp2p2_get_msg_from_sink(ctrl);
|
|
|
|
ctrl->polling = false;
|
|
}
|
|
exit:
|
|
if (rc)
|
|
dp_hdcp2p2_wakeup_lib(ctrl, &cdata);
|
|
}
|
|
|
|
static void dp_hdcp2p2_start_auth(struct dp_hdcp2p2_ctrl *ctrl)
|
|
{
|
|
struct sde_hdcp_2x_wakeup_data cdata = {HDCP_2X_CMD_START_AUTH};
|
|
cdata.context = ctrl->lib_ctx;
|
|
|
|
if (atomic_read(&ctrl->auth_state) == HDCP_STATE_AUTHENTICATING)
|
|
dp_hdcp2p2_wakeup_lib(ctrl, &cdata);
|
|
}
|
|
|
|
static int dp_hdcp2p2_read_rx_status(struct dp_hdcp2p2_ctrl *ctrl,
|
|
u8 *rx_status)
|
|
{
|
|
u32 const cp_irq_dpcd_offset = 0x201;
|
|
u32 const rxstatus_dpcd_offset = 0x69493;
|
|
ssize_t const bytes_to_read = 1;
|
|
ssize_t bytes_read = 0;
|
|
u8 buf = 0;
|
|
int rc = 0;
|
|
bool cp_irq = false;
|
|
|
|
*rx_status = 0;
|
|
|
|
bytes_read = drm_dp_dpcd_read(ctrl->init_data.drm_aux,
|
|
cp_irq_dpcd_offset, &buf, bytes_to_read);
|
|
if (bytes_read != bytes_to_read) {
|
|
DP_ERR("cp irq read failed\n");
|
|
rc = bytes_read;
|
|
goto error;
|
|
}
|
|
|
|
cp_irq = buf & BIT(2);
|
|
DP_DEBUG("cp_irq=0x%x\n", cp_irq);
|
|
buf = 0;
|
|
|
|
if (cp_irq) {
|
|
bytes_read = drm_dp_dpcd_read(ctrl->init_data.drm_aux,
|
|
rxstatus_dpcd_offset, &buf, bytes_to_read);
|
|
if (bytes_read != bytes_to_read) {
|
|
DP_ERR("rxstatus read failed\n");
|
|
rc = bytes_read;
|
|
goto error;
|
|
}
|
|
*rx_status = buf;
|
|
DP_DEBUG("rx_status=0x%x\n", *rx_status);
|
|
}
|
|
|
|
error:
|
|
return rc;
|
|
}
|
|
|
|
static int dp_hdcp2p2_cp_irq(void *input)
|
|
{
|
|
int rc, retries = 15;
|
|
struct dp_hdcp2p2_ctrl *ctrl = input;
|
|
SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_ENTRY);
|
|
|
|
rc = dp_hdcp2p2_valid_handle(ctrl);
|
|
if (rc)
|
|
return rc;
|
|
|
|
if (atomic_read(&ctrl->auth_state) == HDCP_STATE_AUTH_FAIL ||
|
|
atomic_read(&ctrl->auth_state) == HDCP_STATE_INACTIVE) {
|
|
DP_DEBUG("invalid hdcp state\n");
|
|
return -EINVAL;
|
|
}
|
|
|
|
ctrl->sink_rx_status = 0;
|
|
rc = dp_hdcp2p2_read_rx_status(ctrl, &ctrl->sink_rx_status);
|
|
if (rc) {
|
|
DP_ERR("failed to read rx status\n");
|
|
return rc;
|
|
}
|
|
|
|
DP_DEBUG("sink_rx_status=0x%x\n", ctrl->sink_rx_status);
|
|
|
|
if (!ctrl->sink_rx_status) {
|
|
DP_DEBUG("not a hdcp 2.2 irq\n");
|
|
return -EINVAL;
|
|
}
|
|
|
|
/*
|
|
* Wait for link to be transitioned to polling mode. This wait
|
|
* should be done in this CP_IRQ handler and NOT in the event thread
|
|
* as the transition to link polling happens in the event thread
|
|
* as part of the wake up from the HDCP engine.
|
|
*
|
|
* One specific case where this sequence of event commonly happens
|
|
* is when executing HDCP 2.3 CTS test 1B-09 with Unigraf UCD-400
|
|
* test equipment (TE). As part of this test, the TE issues a CP-IRQ
|
|
* right after the successful completion of the HDCP authentication
|
|
* part 2. This CP-IRQ handler gets invoked even before the HDCP
|
|
* state engine gets transitioned to the polling mode, which can
|
|
* cause the test to fail as we would not read the
|
|
* RepeaterAuth_Send_ReceiverID_List from the TE in response to the
|
|
* CP_IRQ.
|
|
*
|
|
* Skip this wait when any of the fields in the abort mask is set.
|
|
*/
|
|
if (ctrl->sink_rx_status & ctrl->abort_mask)
|
|
goto exit;
|
|
|
|
while (!ctrl->polling && retries--)
|
|
msleep(20);
|
|
|
|
exit:
|
|
kfifo_put(&ctrl->cmd_q, HDCP_TRANSPORT_CMD_LINK_CHECK);
|
|
wake_up(&ctrl->wait_q);
|
|
SDE_EVT32_EXTERNAL(SDE_EVTLOG_FUNC_EXIT);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int dp_hdcp2p2_isr(void *input)
|
|
{
|
|
struct dp_hdcp2p2_ctrl *ctrl = (struct dp_hdcp2p2_ctrl *)input;
|
|
int rc = 0;
|
|
struct dss_io_data *io;
|
|
struct dp_hdcp2p2_interrupts *intr;
|
|
u32 hdcp_int_val = 0;
|
|
|
|
if (!ctrl || !ctrl->init_data.dp_ahb) {
|
|
DP_ERR("invalid input\n");
|
|
rc = -EINVAL;
|
|
goto end;
|
|
}
|
|
|
|
io = ctrl->init_data.dp_ahb;
|
|
intr = ctrl->intr;
|
|
|
|
while (intr && intr->reg) {
|
|
struct dp_hdcp2p2_int_set *int_set = intr->int_set;
|
|
|
|
hdcp_int_val = dp_read(io->base + intr->reg);
|
|
|
|
while (int_set && int_set->interrupt) {
|
|
if (hdcp_int_val & (int_set->interrupt >> 2)) {
|
|
DP_DEBUG("%s\n", int_set->name);
|
|
|
|
if (int_set->func)
|
|
int_set->func(ctrl);
|
|
|
|
dp_write(io->base + intr->reg, hdcp_int_val |
|
|
(int_set->interrupt >> 1));
|
|
}
|
|
int_set++;
|
|
}
|
|
intr++;
|
|
}
|
|
end:
|
|
return rc;
|
|
}
|
|
|
|
static bool dp_hdcp2p2_supported(void *input)
|
|
{
|
|
struct dp_hdcp2p2_ctrl *ctrl = input;
|
|
u32 const rxcaps_dpcd_offset = 0x6921d;
|
|
ssize_t bytes_read = 0;
|
|
u8 buf[DP_HDCP_RXCAPS_LENGTH];
|
|
|
|
DP_DEBUG("Checking sink capability\n");
|
|
|
|
bytes_read = drm_dp_dpcd_read(ctrl->init_data.drm_aux,
|
|
rxcaps_dpcd_offset, &buf, DP_HDCP_RXCAPS_LENGTH);
|
|
if (bytes_read != DP_HDCP_RXCAPS_LENGTH) {
|
|
DP_ERR("RxCaps read failed\n");
|
|
goto error;
|
|
}
|
|
|
|
DP_DEBUG("HDCP_CAPABLE=%lu\n", (buf[2] & BIT(1)) >> 1);
|
|
DP_DEBUG("VERSION=%d\n", buf[0]);
|
|
|
|
if ((buf[2] & BIT(1)) && (buf[0] == 0x2))
|
|
return true;
|
|
error:
|
|
return false;
|
|
}
|
|
|
|
static int dp_hdcp2p2_change_streams(struct dp_hdcp2p2_ctrl *ctrl,
|
|
struct sde_hdcp_2x_wakeup_data *cdata)
|
|
{
|
|
if (!ctrl || cdata->num_streams == 0 || !cdata->streams) {
|
|
DP_ERR("invalid input\n");
|
|
return -EINVAL;
|
|
}
|
|
|
|
if (!ctrl->lib_ctx) {
|
|
DP_ERR("HDCP library needs to be acquired\n");
|
|
return -EINVAL;
|
|
}
|
|
|
|
if (!ctrl->lib) {
|
|
DP_ERR("invalid lib ops data\n");
|
|
return -EINVAL;
|
|
}
|
|
|
|
cdata->context = ctrl->lib_ctx;
|
|
return ctrl->lib->wakeup(cdata);
|
|
}
|
|
|
|
|
|
static int dp_hdcp2p2_register_streams(void *input, u8 num_streams,
|
|
struct stream_info *streams)
|
|
{
|
|
struct dp_hdcp2p2_ctrl *ctrl = input;
|
|
struct sde_hdcp_2x_wakeup_data cdata = {HDCP_2X_CMD_OPEN_STREAMS};
|
|
|
|
cdata.streams = streams;
|
|
cdata.num_streams = num_streams;
|
|
return dp_hdcp2p2_change_streams(ctrl, &cdata);
|
|
}
|
|
|
|
static int dp_hdcp2p2_deregister_streams(void *input, u8 num_streams,
|
|
struct stream_info *streams)
|
|
{
|
|
struct dp_hdcp2p2_ctrl *ctrl = input;
|
|
struct sde_hdcp_2x_wakeup_data cdata = {HDCP_2X_CMD_CLOSE_STREAMS};
|
|
|
|
cdata.streams = streams;
|
|
cdata.num_streams = num_streams;
|
|
return dp_hdcp2p2_change_streams(ctrl, &cdata);
|
|
}
|
|
|
|
void sde_dp_hdcp2p2_deinit(void *input)
|
|
{
|
|
struct dp_hdcp2p2_ctrl *ctrl = (struct dp_hdcp2p2_ctrl *)input;
|
|
struct sde_hdcp_2x_wakeup_data cdata = {HDCP_2X_CMD_INVALID};
|
|
|
|
if (!ctrl) {
|
|
DP_ERR("invalid input\n");
|
|
return;
|
|
}
|
|
|
|
if (atomic_read(&ctrl->auth_state) != HDCP_STATE_AUTH_FAIL) {
|
|
cdata.cmd = HDCP_2X_CMD_STOP;
|
|
cdata.context = ctrl->lib_ctx;
|
|
dp_hdcp2p2_wakeup_lib(ctrl, &cdata);
|
|
}
|
|
|
|
sde_hdcp_2x_deregister(ctrl->lib_ctx);
|
|
|
|
kthread_stop(ctrl->thread);
|
|
|
|
mutex_destroy(&ctrl->mutex);
|
|
mutex_destroy(&ctrl->msg_lock);
|
|
kfree(ctrl);
|
|
}
|
|
|
|
static int dp_hdcp2p2_main(void *data)
|
|
{
|
|
struct dp_hdcp2p2_ctrl *ctrl = data;
|
|
enum hdcp_transport_wakeup_cmd cmd;
|
|
|
|
while (1) {
|
|
wait_event(ctrl->wait_q,
|
|
!kfifo_is_empty(&ctrl->cmd_q) ||
|
|
kthread_should_stop() ||
|
|
kthread_should_park());
|
|
|
|
if (kthread_should_stop())
|
|
break;
|
|
|
|
if (kfifo_is_empty(&ctrl->cmd_q) && kthread_should_park()) {
|
|
kthread_parkme();
|
|
continue;
|
|
}
|
|
|
|
if (!kfifo_get(&ctrl->cmd_q, &cmd))
|
|
continue;
|
|
|
|
switch (cmd) {
|
|
case HDCP_TRANSPORT_CMD_SEND_MESSAGE:
|
|
dp_hdcp2p2_send_msg(ctrl);
|
|
break;
|
|
case HDCP_TRANSPORT_CMD_RECV_MESSAGE:
|
|
if (ctrl->rx_status)
|
|
ctrl->polling = true;
|
|
else
|
|
dp_hdcp2p2_recv_msg(ctrl);
|
|
break;
|
|
case HDCP_TRANSPORT_CMD_STATUS_SUCCESS:
|
|
dp_hdcp2p2_send_auth_status(ctrl);
|
|
break;
|
|
case HDCP_TRANSPORT_CMD_STATUS_FAILED:
|
|
dp_hdcp2p2_set_interrupts(ctrl, false);
|
|
dp_hdcp2p2_send_auth_status(ctrl);
|
|
break;
|
|
case HDCP_TRANSPORT_CMD_LINK_POLL:
|
|
ctrl->polling = true;
|
|
break;
|
|
case HDCP_TRANSPORT_CMD_LINK_CHECK:
|
|
dp_hdcp2p2_link_check(ctrl);
|
|
break;
|
|
case HDCP_TRANSPORT_CMD_AUTHENTICATE:
|
|
dp_hdcp2p2_start_auth(ctrl);
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static void dp_hdcp2p2_abort(void *input, bool abort)
|
|
{
|
|
struct dp_hdcp2p2_ctrl *ctrl = input;
|
|
|
|
atomic_set(&ctrl->abort, abort);
|
|
}
|
|
|
|
void *sde_dp_hdcp2p2_init(struct sde_hdcp_init_data *init_data)
|
|
{
|
|
int rc;
|
|
struct dp_hdcp2p2_ctrl *ctrl;
|
|
static struct sde_hdcp_ops ops = {
|
|
.isr = dp_hdcp2p2_isr,
|
|
.reauthenticate = dp_hdcp2p2_reauthenticate,
|
|
.authenticate = dp_hdcp2p2_authenticate,
|
|
.feature_supported = dp_hdcp2p2_feature_supported,
|
|
.force_encryption = dp_hdcp2p2_force_encryption,
|
|
.sink_support = dp_hdcp2p2_supported,
|
|
.set_mode = dp_hdcp2p2_register,
|
|
.on = dp_hdcp2p2_on,
|
|
.off = dp_hdcp2p2_off,
|
|
.abort = dp_hdcp2p2_abort,
|
|
.cp_irq = dp_hdcp2p2_cp_irq,
|
|
.register_streams = dp_hdcp2p2_register_streams,
|
|
.deregister_streams = dp_hdcp2p2_deregister_streams,
|
|
};
|
|
|
|
static struct hdcp_transport_ops client_ops = {
|
|
.wakeup = dp_hdcp2p2_wakeup,
|
|
};
|
|
static struct dp_hdcp2p2_int_set int_set1[] = {
|
|
{BIT(17), "authentication successful", NULL},
|
|
{BIT(20), "authentication failed", NULL},
|
|
{BIT(24), "encryption enabled", NULL},
|
|
{BIT(27), "encryption disabled", NULL},
|
|
{0},
|
|
};
|
|
static struct dp_hdcp2p2_int_set int_set2[] = {
|
|
{BIT(2), "key fifo underflow", NULL},
|
|
{0},
|
|
};
|
|
static struct dp_hdcp2p2_interrupts intr[] = {
|
|
{DP_INTR_STATUS2, int_set1},
|
|
{DP_INTR_STATUS3, int_set2},
|
|
{0}
|
|
};
|
|
static struct sde_hdcp_2x_ops hdcp2x_ops;
|
|
struct sde_hdcp_2x_register_data register_data = {0};
|
|
|
|
if (!init_data || !init_data->cb_data ||
|
|
!init_data->notify_status || !init_data->drm_aux) {
|
|
DP_ERR("invalid input\n");
|
|
return ERR_PTR(-EINVAL);
|
|
}
|
|
|
|
ctrl = kzalloc(sizeof(*ctrl), GFP_KERNEL);
|
|
if (!ctrl)
|
|
return ERR_PTR(-ENOMEM);
|
|
|
|
ctrl->init_data = *init_data;
|
|
ctrl->lib = &hdcp2x_ops;
|
|
ctrl->response.data = NULL;
|
|
ctrl->request.data = NULL;
|
|
|
|
ctrl->sink_status = SINK_DISCONNECTED;
|
|
ctrl->intr = intr;
|
|
|
|
INIT_KFIFO(ctrl->cmd_q);
|
|
|
|
init_waitqueue_head(&ctrl->wait_q);
|
|
atomic_set(&ctrl->auth_state, HDCP_STATE_INACTIVE);
|
|
|
|
ctrl->ops = &ops;
|
|
mutex_init(&ctrl->mutex);
|
|
mutex_init(&ctrl->msg_lock);
|
|
|
|
register_data.hdcp_data = &ctrl->lib_ctx;
|
|
register_data.client_ops = &client_ops;
|
|
register_data.ops = &hdcp2x_ops;
|
|
register_data.client_data = ctrl;
|
|
|
|
rc = sde_hdcp_2x_register(®ister_data);
|
|
if (rc) {
|
|
DP_ERR("Unable to register with HDCP 2.2 library\n");
|
|
goto error;
|
|
}
|
|
|
|
if (IS_ENABLED(CONFIG_HDCP_QSEECOM))
|
|
msm_hdcp_register_cb(init_data->msm_hdcp_dev, ctrl,
|
|
dp_hdcp2p2_min_level_change);
|
|
|
|
ctrl->thread = kthread_run(dp_hdcp2p2_main, ctrl, "dp_hdcp2p2");
|
|
|
|
if (IS_ERR(ctrl->thread)) {
|
|
DP_ERR("unable to start DP hdcp2p2 thread\n");
|
|
rc = PTR_ERR(ctrl->thread);
|
|
ctrl->thread = NULL;
|
|
goto error;
|
|
}
|
|
|
|
return ctrl;
|
|
error:
|
|
kfree(ctrl);
|
|
return ERR_PTR(rc);
|
|
}
|
|
|
|
struct sde_hdcp_ops *sde_dp_hdcp2p2_get(void *input)
|
|
{
|
|
return ((struct dp_hdcp2p2_ctrl *)input)->ops;
|
|
}
|