blob: c9edf0660776f8529f3e0d6905110fe95d96c538 [file] [log] [blame]
/* SPDX-License-Identifier: GPL-2.0-only
*
* HDCP platform device headerpanel common utility header
*
* Copyright (c) 2022 Google LLC
*/
#ifndef __EXYNOS_HDCP_H__
#define __EXYNOS_HDCP_H__
struct hdcp_device {
struct device *dev;
struct delayed_work hdcp_work;
/* HDCP Telemetry */
uint32_t hdcp2_success_count;
uint32_t hdcp2_fallback_count;
uint32_t hdcp2_fail_count;
uint32_t hdcp1_success_count;
uint32_t hdcp1_fail_count;
uint32_t hdcp0_count;
};
#endif