Message ID | 1352860249-26348-2-git-send-email-ricardo.neri@ti.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On 14/11/12 02:30, Ricardo Neri wrote: > Being the name of a machine driver, it aims to describe the connection between > the HDMI IP of the processor and the companion chip it uses to connect to the > outside world. This name tries to follow the same naming convention as in > the OMAP-ABE-TWL6040 machine driver. > > TPD12S015 is an HDMI companion chip for DC-DC step-up, I2C level shifter and > low-capacitance ESD protection. This chip is used on all OMAP4 Pandaboards an > SDPs as well as in OMAP5 EVMs. > Is the TPD12S015 passive or actively controlled by the CPU in this case ? If it's passive then it's not really worth changing the driver name since other OMAP4/5 devices may use other HDMI companion chips (an we can reuse this driver without changes). Liam -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Hi Liam, Thanks for reviewing! On 11/14/2012 04:16 AM, Liam Girdwood wrote: > On 14/11/12 02:30, Ricardo Neri wrote: >> Being the name of a machine driver, it aims to describe the >> connection between the HDMI IP of the processor and the companion >> chip it uses to connect to the outside world. This name tries to >> follow the same naming convention as in the OMAP-ABE-TWL6040 >> machine driver. >> >> TPD12S015 is an HDMI companion chip for DC-DC step-up, I2C level >> shifter and low-capacitance ESD protection. This chip is used on >> all OMAP4 Pandaboards an SDPs as well as in OMAP5 EVMs. >> > > Is the TPD12S015 passive or actively controlled by the CPU in this > case ? Yes the CPU controls the TPD12S015 actively through two GPIOs. One GPIO is used to enable data transfer. The second GPIO is enable the TPD to detect cable connection. However, this abstracted by the OMAPDSS HDMI driver and the ASoC driver does not know about it. > > If it's passive then it's not really worth changing the driver name > since other OMAP4/5 devices may use other HDMI companion chips (an we > can reuse this driver without changes). I believe it would be good to change the name of the driver to describe better the machine. omap-hdmi-audio makes reference only to the processor and sounds good to reserve it for the CPU DAI driver. Maybe something more generic could be used if the ASoC driver will not control the companion chip. How about omap-hdmi-board-audio or omap-hdmi-machine-audio? omap-hdmi-[companion]-audio was the best-looking to me. BR, Ricardo > > Liam -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
diff --git a/sound/soc/omap/omap-hdmi-card.c b/sound/soc/omap/omap-hdmi-card.c index eaa2ea0..184180e 100644 --- a/sound/soc/omap/omap-hdmi-card.c +++ b/sound/soc/omap/omap-hdmi-card.c @@ -27,7 +27,7 @@ #include <asm/mach-types.h> #include <video/omapdss.h> -#define DRV_NAME "omap-hdmi-audio" +#define DRV_NAME "omap-hdmi-tpd12s015-audio" static struct snd_soc_dai_link omap_hdmi_dai = { .name = "HDMI",
Being the name of a machine driver, it aims to describe the connection between the HDMI IP of the processor and the companion chip it uses to connect to the outside world. This name tries to follow the same naming convention as in the OMAP-ABE-TWL6040 machine driver. TPD12S015 is an HDMI companion chip for DC-DC step-up, I2C level shifter and low-capacitance ESD protection. This chip is used on all OMAP4 Pandaboards an SDPs as well as in OMAP5 EVMs. Signed-off-by: Ricardo Neri <ricardo.neri@ti.com> --- sound/soc/omap/omap-hdmi-card.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)