mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-17 19:27:28 +07:00
e949f61461
The s5p-cec driver returned CEC_TX_STATUS_ERROR for the NACK condition. Some digging into the datasheet uncovered the S5P_CEC_TX_STAT1 register where bit 0 indicates if the transmit was nacked or not. Use this to return the correct CEC_TX_STATUS_NACK status to userspace. This was the only driver that couldn't tell a NACK from another error, and that was very unusual. And a potential problem for applications as well. Tested with my Odroid-U3. Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> Acked-by: Sylwester Nawrocki <s.nawrocki@samsung.com> Cc: <stable@vger.kernel.org> # for v4.12 and up Signed-off-by: Mauro Carvalho Chehab <mchehab@s-opensource.com>
81 lines
1.9 KiB
C
81 lines
1.9 KiB
C
/* drivers/media/platform/s5p-cec/s5p_cec.h
|
|
*
|
|
* Samsung S5P HDMI CEC driver
|
|
*
|
|
* Copyright (c) 2014 Samsung Electronics Co., Ltd.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*/
|
|
|
|
#ifndef _S5P_CEC_H_
|
|
#define _S5P_CEC_H_ __FILE__
|
|
|
|
#include <linux/clk.h>
|
|
#include <linux/interrupt.h>
|
|
#include <linux/kernel.h>
|
|
#include <linux/mfd/syscon.h>
|
|
#include <linux/module.h>
|
|
#include <linux/of.h>
|
|
#include <linux/platform_device.h>
|
|
#include <linux/pm_runtime.h>
|
|
#include <linux/timer.h>
|
|
#include <linux/workqueue.h>
|
|
#include <media/cec.h>
|
|
|
|
#include "exynos_hdmi_cec.h"
|
|
#include "regs-cec.h"
|
|
#include "s5p_cec.h"
|
|
|
|
#define CEC_NAME "s5p-cec"
|
|
|
|
#define CEC_STATUS_TX_RUNNING (1 << 0)
|
|
#define CEC_STATUS_TX_TRANSFERRING (1 << 1)
|
|
#define CEC_STATUS_TX_DONE (1 << 2)
|
|
#define CEC_STATUS_TX_ERROR (1 << 3)
|
|
#define CEC_STATUS_TX_NACK (1 << 4)
|
|
#define CEC_STATUS_TX_BYTES (0xFF << 8)
|
|
#define CEC_STATUS_RX_RUNNING (1 << 16)
|
|
#define CEC_STATUS_RX_RECEIVING (1 << 17)
|
|
#define CEC_STATUS_RX_DONE (1 << 18)
|
|
#define CEC_STATUS_RX_ERROR (1 << 19)
|
|
#define CEC_STATUS_RX_BCAST (1 << 20)
|
|
#define CEC_STATUS_RX_BYTES (0xFF << 24)
|
|
|
|
#define CEC_WORKER_TX_DONE (1 << 0)
|
|
#define CEC_WORKER_RX_MSG (1 << 1)
|
|
|
|
/* CEC Rx buffer size */
|
|
#define CEC_RX_BUFF_SIZE 16
|
|
/* CEC Tx buffer size */
|
|
#define CEC_TX_BUFF_SIZE 16
|
|
|
|
enum cec_state {
|
|
STATE_IDLE,
|
|
STATE_BUSY,
|
|
STATE_DONE,
|
|
STATE_NACK,
|
|
STATE_ERROR
|
|
};
|
|
|
|
struct cec_notifier;
|
|
|
|
struct s5p_cec_dev {
|
|
struct cec_adapter *adap;
|
|
struct clk *clk;
|
|
struct device *dev;
|
|
struct mutex lock;
|
|
struct regmap *pmu;
|
|
struct cec_notifier *notifier;
|
|
int irq;
|
|
void __iomem *reg;
|
|
|
|
enum cec_state rx;
|
|
enum cec_state tx;
|
|
struct cec_msg msg;
|
|
};
|
|
|
|
#endif /* _S5P_CEC_H_ */
|