[RFC PATCH 2/3] omap4: add CEC support

Tomi Valkeinen tomi.valkeinen at ti.com
Tue May 10 12:01:18 UTC 2016


Hi Hans,

On 29/04/16 12:39, Hans Verkuil wrote:
> From: Hans Verkuil <hans.verkuil at cisco.com>
> 
> Signed-off-by: Hans Verkuil <hans.verkuil at cisco.com>
> ---
>  arch/arm/boot/dts/omap4-panda-a4.dts   |   2 +-
>  arch/arm/boot/dts/omap4-panda-es.dts   |   2 +-
>  arch/arm/boot/dts/omap4.dtsi           |   5 +-
>  drivers/gpu/drm/omapdrm/dss/Kconfig    |   8 +
>  drivers/gpu/drm/omapdrm/dss/Makefile   |   3 +
>  drivers/gpu/drm/omapdrm/dss/hdmi.h     |  62 ++++++-
>  drivers/gpu/drm/omapdrm/dss/hdmi4.c    |  39 +++-
>  drivers/gpu/drm/omapdrm/dss/hdmi_cec.c | 329 +++++++++++++++++++++++++++++++++
>  8 files changed, 441 insertions(+), 9 deletions(-)
>  create mode 100644 drivers/gpu/drm/omapdrm/dss/hdmi_cec.c

First, thanks for working on this! It's really nice if we get CEC working.

Are you planning to continue working on this patch, or is this a
proof-of-concept, and you want to move on to other things? I'm fine with
both, the patch looks quite good and I'm sure I can continue from here
if you want.

Also, what's the status of the general CEC support, will these patches
work on v4.7?

> diff --git a/arch/arm/boot/dts/omap4-panda-a4.dts b/arch/arm/boot/dts/omap4-panda-a4.dts
> index 78d3631..f0c1020 100644
> --- a/arch/arm/boot/dts/omap4-panda-a4.dts
> +++ b/arch/arm/boot/dts/omap4-panda-a4.dts
> @@ -13,7 +13,7 @@
>  /* Pandaboard Rev A4+ have external pullups on SCL & SDA */
>  &dss_hdmi_pins {
>  	pinctrl-single,pins = <
> -		OMAP4_IOPAD(0x09a, PIN_INPUT_PULLUP | MUX_MODE0)	/* hdmi_cec.hdmi_cec */
> +		OMAP4_IOPAD(0x09a, PIN_INPUT | MUX_MODE0)	/* hdmi_cec.hdmi_cec */

Looks fine as we discussed, but these need to be split to separate patch
(with explanation, of course =).

>  		OMAP4_IOPAD(0x09c, PIN_INPUT | MUX_MODE0)		/* hdmi_scl.hdmi_scl */
>  		OMAP4_IOPAD(0x09e, PIN_INPUT | MUX_MODE0)		/* hdmi_sda.hdmi_sda */
>  		>;
> diff --git a/arch/arm/boot/dts/omap4-panda-es.dts b/arch/arm/boot/dts/omap4-panda-es.dts
> index 119f8e6..940fe4f 100644
> --- a/arch/arm/boot/dts/omap4-panda-es.dts
> +++ b/arch/arm/boot/dts/omap4-panda-es.dts
> @@ -34,7 +34,7 @@
>  /* PandaboardES has external pullups on SCL & SDA */
>  &dss_hdmi_pins {
>  	pinctrl-single,pins = <
> -		OMAP4_IOPAD(0x09a, PIN_INPUT_PULLUP | MUX_MODE0)	/* hdmi_cec.hdmi_cec */
> +		OMAP4_IOPAD(0x09a, PIN_INPUT | MUX_MODE0)		/* hdmi_cec.hdmi_cec */
>  		OMAP4_IOPAD(0x09c, PIN_INPUT | MUX_MODE0)		/* hdmi_scl.hdmi_scl */
>  		OMAP4_IOPAD(0x09e, PIN_INPUT | MUX_MODE0)		/* hdmi_sda.hdmi_sda */
>  		>;
> diff --git a/arch/arm/boot/dts/omap4.dtsi b/arch/arm/boot/dts/omap4.dtsi
> index 2bd9c83..1bb490f 100644
> --- a/arch/arm/boot/dts/omap4.dtsi
> +++ b/arch/arm/boot/dts/omap4.dtsi
> @@ -1006,8 +1006,9 @@
>  				reg = <0x58006000 0x200>,
>  				      <0x58006200 0x100>,
>  				      <0x58006300 0x100>,
> -				      <0x58006400 0x1000>;
> -				reg-names = "wp", "pll", "phy", "core";
> +				      <0x58006400 0x900>,
> +				      <0x58006D00 0x100>;
> +				reg-names = "wp", "pll", "phy", "core", "cec";

"core" contains four blocks, all of which are currently included there
in the "core" space. I'm not sure why they weren't split up properly
when the driver was written, but I think we should either keep the core
as one big block, or split it up to those four sections, instead of just
separating the CEC block.

>  				interrupts = <GIC_SPI 101 IRQ_TYPE_LEVEL_HIGH>;
>  				status = "disabled";
>  				ti,hwmods = "dss_hdmi";
> diff --git a/drivers/gpu/drm/omapdrm/dss/Kconfig b/drivers/gpu/drm/omapdrm/dss/Kconfig
> index d1fa730..69638e9 100644
> --- a/drivers/gpu/drm/omapdrm/dss/Kconfig
> +++ b/drivers/gpu/drm/omapdrm/dss/Kconfig
> @@ -71,9 +71,17 @@ config OMAP4_DSS_HDMI
>  	bool "HDMI support for OMAP4"
>          default y
>  	select OMAP2_DSS_HDMI_COMMON
> +	select MEDIA_CEC_EDID

Hmm, what's in MEDIA_CEC_EDID, why does OMAP4 HDMI need to select that?

>  	help
>  	  HDMI support for OMAP4 based SoCs.
>  
> +config OMAP2_DSS_HDMI_CEC

This should probably be OMAP2_DSS_HDMI4_CEC or such, as it's only for
OMAP4 HDMI. Or, following the omap4 hdmi's config name,
"OMAP4_DSS_HDMI_CEC".

> +	bool "Enable HDMI CEC support for OMAP4"
> +	depends on OMAP4_DSS_HDMI && MEDIA_CEC
> +	default y
> +	---help---
> +	  When selected the HDMI transmitter will support the CEC feature.
> +
>  config OMAP5_DSS_HDMI
>  	bool "HDMI support for OMAP5"
>  	default n
> diff --git a/drivers/gpu/drm/omapdrm/dss/Makefile b/drivers/gpu/drm/omapdrm/dss/Makefile
> index b651ec9..37eb597 100644
> --- a/drivers/gpu/drm/omapdrm/dss/Makefile
> +++ b/drivers/gpu/drm/omapdrm/dss/Makefile
> @@ -10,6 +10,9 @@ omapdss-$(CONFIG_OMAP2_DSS_SDI) += sdi.o
>  omapdss-$(CONFIG_OMAP2_DSS_DSI) += dsi.o
>  omapdss-$(CONFIG_OMAP2_DSS_HDMI_COMMON) += hdmi_common.o hdmi_wp.o hdmi_pll.o \
>  	hdmi_phy.o
> +ifeq ($(CONFIG_OMAP2_DSS_HDMI_CEC),y)
> +  omapdss-$(CONFIG_OMAP2_DSS_HDMI_COMMON) += hdmi_cec.o
> +endif

The file should be hdmi4_cec.o, as it's for omap4. And why the ifeq?
Isn't just

omapdss-$(OMAP4_DSS_HDMI_CEC) += hdmi4_cec.o

enough?

>  omapdss-$(CONFIG_OMAP4_DSS_HDMI) += hdmi4.o hdmi4_core.o
>  omapdss-$(CONFIG_OMAP5_DSS_HDMI) += hdmi5.o hdmi5_core.o
>  ccflags-$(CONFIG_OMAP2_DSS_DEBUG) += -DDEBUG
> diff --git a/drivers/gpu/drm/omapdrm/dss/hdmi.h b/drivers/gpu/drm/omapdrm/dss/hdmi.h
> index 53616b0..7cf8a91 100644
> --- a/drivers/gpu/drm/omapdrm/dss/hdmi.h
> +++ b/drivers/gpu/drm/omapdrm/dss/hdmi.h
> @@ -24,6 +24,7 @@
>  #include <linux/platform_device.h>
>  #include <linux/hdmi.h>
>  #include <video/omapdss.h>
> +#include <media/cec.h>
>  
>  #include "dss.h"
>  
> @@ -83,6 +84,31 @@
>  #define HDMI_TXPHY_PAD_CFG_CTRL			0xC
>  #define HDMI_TXPHY_BIST_CONTROL			0x1C
>  
> +/* HDMI CEC */
> +#define HDMI_CEC_DEV_ID                         0x0
> +#define HDMI_CEC_SPEC                           0x4
> +#define HDMI_CEC_DBG_3                          0x1C
> +#define HDMI_CEC_TX_INIT                        0x20
> +#define HDMI_CEC_TX_DEST                        0x24
> +#define HDMI_CEC_SETUP                          0x38
> +#define HDMI_CEC_TX_COMMAND                     0x3C
> +#define HDMI_CEC_TX_OPERAND                     0x40
> +#define HDMI_CEC_TRANSMIT_DATA                  0x7C
> +#define HDMI_CEC_CA_7_0                         0x88
> +#define HDMI_CEC_CA_15_8                        0x8C
> +#define HDMI_CEC_INT_STATUS_0                   0x98
> +#define HDMI_CEC_INT_STATUS_1                   0x9C
> +#define HDMI_CEC_INT_ENABLE_0                   0x90
> +#define HDMI_CEC_INT_ENABLE_1                   0x94
> +#define HDMI_CEC_RX_CONTROL                     0xB0
> +#define HDMI_CEC_RX_COUNT                       0xB4
> +#define HDMI_CEC_RX_CMD_HEADER                  0xB8
> +#define HDMI_CEC_RX_COMMAND                     0xBC
> +#define HDMI_CEC_RX_OPERAND                     0xC0
> +
> +#define HDMI_CEC_TX_FIFO_INT_MASK		0x64
> +#define HDMI_CEC_RETRANSMIT_CNT_INT_MASK	0x2

hdmi.h is a common header for OMAP5 and OMAP4 hdmi. OMAP4 and 5 have
totally different HDMI IP. However, they have the same wrapper (WP), PHY
and PLL. That's why there are these common files, with common register
offsets. But the CEC is part of OMAP4 HDMI IP, so it's not common.

> +
>  enum hdmi_pll_pwr {
>  	HDMI_PLLPWRCMD_ALLOFF = 0,
>  	HDMI_PLLPWRCMD_PLLONLY = 1,
> @@ -250,6 +276,12 @@ struct hdmi_phy_data {
>  	u8 lane_polarity[4];
>  };
>  
> +struct hdmi_cec_data {
> +	void __iomem *base;
> +	struct cec_adapter *adap;
> +	u16 phys_addr;
> +};
> +
>  struct hdmi_core_data {
>  	void __iomem *base;
>  };
> @@ -319,6 +351,33 @@ void hdmi_phy_dump(struct hdmi_phy_data *phy, struct seq_file *s);
>  int hdmi_phy_init(struct platform_device *pdev, struct hdmi_phy_data *phy);
>  int hdmi_phy_parse_lanes(struct hdmi_phy_data *phy, const u32 *lanes);
>  
> +/* HDMI CEC funcs */
> +#ifdef CONFIG_OMAP2_DSS_HDMI_CEC
> +void hdmi_cec_set_phys_addr(struct hdmi_cec_data *cec, u16 pa);
> +void hdmi_cec_irq(struct hdmi_cec_data *cec);
> +int hdmi_cec_init(struct platform_device *pdev, struct hdmi_cec_data *cec);
> +void hdmi_cec_uninit(struct hdmi_cec_data *cec);
> +#else
> +static inline void hdmi_cec_set_phys_addr(struct hdmi_cec_data *cec, u16 pa)
> +{
> +}
> +
> +static inline void hdmi_cec_irq(struct hdmi_cec_data *cec)
> +{
> +}
> +
> +static inline int hdmi_cec_init(struct platform_device *pdev,
> +				struct hdmi_cec_data *cec)
> +{
> +	cec->phys_addr = CEC_PHYS_ADDR_INVALID;
> +	return 0;
> +}
> +
> +static inline void hdmi_cec_uninit(struct hdmi_cec_data *cec)
> +{
> +}
> +#endif
> +
>  /* HDMI common funcs */
>  int hdmi_parse_lanes_of(struct platform_device *pdev, struct device_node *ep,
>  	struct hdmi_phy_data *phy);
> @@ -344,6 +403,7 @@ struct omap_hdmi {
>  	struct hdmi_wp_data	wp;
>  	struct hdmi_pll_data	pll;
>  	struct hdmi_phy_data	phy;
> +	struct hdmi_cec_data	cec;
>  	struct hdmi_core_data	core;
>  
>  	struct hdmi_config cfg;
> @@ -361,7 +421,7 @@ struct omap_hdmi {
>  	bool audio_configured;
>  	struct omap_dss_audio audio_config;
>  
> -	/* This lock should be taken when booleans bellow are touched. */
> +	/* This lock should be taken when booleans below are touched. */
>  	spinlock_t audio_playing_lock;
>  	bool audio_playing;
>  	bool display_enabled;
> diff --git a/drivers/gpu/drm/omapdrm/dss/hdmi4.c b/drivers/gpu/drm/omapdrm/dss/hdmi4.c
> index f892ae15..47a60bf 100644
> --- a/drivers/gpu/drm/omapdrm/dss/hdmi4.c
> +++ b/drivers/gpu/drm/omapdrm/dss/hdmi4.c
> @@ -34,6 +34,7 @@
>  #include <linux/regulator/consumer.h>
>  #include <linux/component.h>
>  #include <video/omapdss.h>
> +#include <media/cec-edid.h>
>  #include <sound/omap-hdmi-audio.h>
>  
>  #include "hdmi4_core.h"
> @@ -69,14 +70,15 @@ static void hdmi_runtime_put(void)
>  
>  static irqreturn_t hdmi_irq_handler(int irq, void *data)
>  {
> -	struct hdmi_wp_data *wp = data;
> +	struct omap_hdmi *hdmi = data;
> +	struct hdmi_wp_data *wp = &hdmi->wp;
>  	u32 irqstatus;
>  
>  	irqstatus = hdmi_wp_get_irqstatus(wp);
>  	hdmi_wp_set_irqstatus(wp, irqstatus);
>  
>  	if ((irqstatus & HDMI_IRQ_LINK_CONNECT) &&
> -			irqstatus & HDMI_IRQ_LINK_DISCONNECT) {
> +	    (irqstatus & HDMI_IRQ_LINK_DISCONNECT)) {
>  		/*
>  		 * If we get both connect and disconnect interrupts at the same
>  		 * time, turn off the PHY, clear interrupts, and restart, which
> @@ -94,6 +96,13 @@ static irqreturn_t hdmi_irq_handler(int irq, void *data)
>  	} else if (irqstatus & HDMI_IRQ_LINK_DISCONNECT) {
>  		hdmi_wp_set_phy_pwr(wp, HDMI_PHYPWRCMD_LDOON);
>  	}
> +	if (irqstatus & HDMI_IRQ_CORE) {
> +		u32 intr4 = hdmi_read_reg(hdmi->core.base, HDMI_CORE_SYS_INTR4);
> +
> +		hdmi_write_reg(hdmi->core.base, HDMI_CORE_SYS_INTR4, intr4);
> +		if (intr4 & 8)
> +			hdmi_cec_irq(&hdmi->cec);
> +	}
>  
>  	return IRQ_HANDLED;
>  }
> @@ -213,6 +222,12 @@ static int hdmi_power_on_full(struct omap_dss_device *dssdev)
>  
>  	hdmi4_configure(&hdmi.core, &hdmi.wp, &hdmi.cfg);
>  
> +	/* Initialize CEC clock divider */
> +	/* CEC needs 2MHz clock hence set the devider to 24 to get
> +	   48/24=2MHz clock */
> +	REG_FLD_MOD(hdmi.wp.base, HDMI_WP_CLK, 0x18, 5, 0);
> +	hdmi_cec_set_phys_addr(&hdmi.cec, hdmi.cec.phys_addr);
> +
>  	/* bypass TV gamma table */
>  	dispc_enable_gamma_table(0);
>  
> @@ -228,7 +243,11 @@ static int hdmi_power_on_full(struct omap_dss_device *dssdev)
>  		goto err_vid_enable;
>  
>  	hdmi_wp_set_irqenable(wp,
> -		HDMI_IRQ_LINK_CONNECT | HDMI_IRQ_LINK_DISCONNECT);
> +		HDMI_IRQ_LINK_CONNECT | HDMI_IRQ_LINK_DISCONNECT |
> +		HDMI_IRQ_CORE);
> +
> +	/* Unmask CEC interrupt */
> +	REG_FLD_MOD(hdmi.core.base, HDMI_CORE_SYS_INTR_UNMASK4, 0x1, 3, 3);
>  
>  	return 0;
>  
> @@ -250,6 +269,8 @@ static void hdmi_power_off_full(struct omap_dss_device *dssdev)
>  	enum omap_channel channel = dssdev->dispc_channel;
>  
>  	hdmi_wp_clear_irqenable(&hdmi.wp, 0xffffffff);
> +	hdmi.cec.phys_addr = CEC_PHYS_ADDR_INVALID;
> +	hdmi_cec_set_phys_addr(&hdmi.cec, hdmi.cec.phys_addr);
>  
>  	hdmi_wp_video_stop(&hdmi.wp);
>  
> @@ -488,6 +509,10 @@ static int hdmi_read_edid(struct omap_dss_device *dssdev,
>  	}
>  
>  	r = read_edid(edid, len);
> +	if (r >= 256)
> +		hdmi.cec.phys_addr = cec_get_edid_phys_addr(edid, r, NULL);
> +	else
> +		hdmi.cec.phys_addr = CEC_PHYS_ADDR_INVALID;
>  
>  	if (need_enable)
>  		hdmi_core_disable(dssdev);
> @@ -724,6 +749,10 @@ static int hdmi4_bind(struct device *dev, struct device *master, void *data)
>  	if (r)
>  		goto err;
>  
> +	r = hdmi_cec_init(pdev, &hdmi.cec);
> +	if (r)
> +		goto err;
> +
>  	irq = platform_get_irq(pdev, 0);
>  	if (irq < 0) {
>  		DSSERR("platform_get_irq failed\n");
> @@ -733,7 +762,7 @@ static int hdmi4_bind(struct device *dev, struct device *master, void *data)
>  
>  	r = devm_request_threaded_irq(&pdev->dev, irq,
>  			NULL, hdmi_irq_handler,
> -			IRQF_ONESHOT, "OMAP HDMI", &hdmi.wp);
> +			IRQF_ONESHOT, "OMAP HDMI", &hdmi);
>  	if (r) {
>  		DSSERR("HDMI IRQ request failed\n");
>  		goto err;
> @@ -768,6 +797,8 @@ static void hdmi4_unbind(struct device *dev, struct device *master, void *data)
>  
>  	hdmi_uninit_output(pdev);
>  
> +	hdmi_cec_uninit(&hdmi.cec);
> +
>  	hdmi_pll_uninit(&hdmi.pll);
>  
>  	pm_runtime_disable(&pdev->dev);
> diff --git a/drivers/gpu/drm/omapdrm/dss/hdmi_cec.c b/drivers/gpu/drm/omapdrm/dss/hdmi_cec.c
> new file mode 100644
> index 0000000..d4309df
> --- /dev/null
> +++ b/drivers/gpu/drm/omapdrm/dss/hdmi_cec.c
> @@ -0,0 +1,329 @@
> +/*
> + * HDMI CEC
> + *
> + * Based on the CEC code from hdmi_ti_4xxx_ip.c from Android.
> + *
> + * Copyright (C) 2010-2011 Texas Instruments Incorporated - http://www.ti.com/
> + * Authors: Yong Zhi
> + *	Mythri pk <mythripk at ti.com>
> + *
> + * This program is free software; you can redistribute it and/or modify it
> + * under the terms of the GNU General Public License version 2 as published by
> + * the Free Software Foundation.
> + *
> + * This program is distributed in the hope that it will be useful, but WITHOUT
> + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
> + * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
> + * more details.
> + */
> +
> +#include <linux/kernel.h>
> +#include <linux/err.h>
> +#include <linux/io.h>
> +#include <linux/platform_device.h>
> +#include <linux/slab.h>
> +#include <video/omapdss.h>
> +
> +#include "dss.h"
> +#include "hdmi.h"
> +
> +#define HDMI_CORE_CEC_RETRY    200
> +
> +void hdmi_cec_transmit_fifo_empty(struct hdmi_cec_data *cec, u32 stat1)
> +{
> +	if (stat1 & 2) {
> +		u32 dbg3 = hdmi_read_reg(cec->base, HDMI_CEC_DBG_3);

This is a debug register. I haven't looked at how CEC is to be used, but
using a debug register looks a bit suspicious =).

 Tomi

-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: OpenPGP digital signature
URL: <https://lists.freedesktop.org/archives/dri-devel/attachments/20160510/404975df/attachment.sig>


More information about the dri-devel mailing list