summaryrefslogtreecommitdiffstats
path: root/drivers/video/omap2/dss/hdmi_pll.c
diff options
context:
space:
mode:
authorArchit Taneja <archit@ti.com>2013-09-12 18:07:49 +0530
committerTomi Valkeinen <tomi.valkeinen@ti.com>2013-10-09 12:42:23 +0300
commitbdb8bfc652543dc392caa66343fe32cf66c4095b (patch)
tree9221d7863bb4c4511b99c7b5cb26ccb394c47506 /drivers/video/omap2/dss/hdmi_pll.c
parent275cfa1a9d43f00d1ae59f36fa0c3ed7f941b369 (diff)
downloadop-kernel-dev-bdb8bfc652543dc392caa66343fe32cf66c4095b.zip
op-kernel-dev-bdb8bfc652543dc392caa66343fe32cf66c4095b.tar.gz
omapdss: HDMI: Clean up the header files
Keep only OMAP4 HDMI core block related structs and enums in ti_hdmi_4xxx_ip.h, move the rest to ti_hdmi.h. This holds all library specific data which will be shared between OMAP4 and OMAP5/DRA7x HDMI encoder drivers. Move the duplicate register read/write/wait_for_bit_change functions in the hdmi library files to ti_hdmi.h Signed-off-by: Archit Taneja <archit@ti.com> Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ti.com>
Diffstat (limited to 'drivers/video/omap2/dss/hdmi_pll.c')
-rw-r--r--drivers/video/omap2/dss/hdmi_pll.c31
1 files changed, 0 insertions, 31 deletions
diff --git a/drivers/video/omap2/dss/hdmi_pll.c b/drivers/video/omap2/dss/hdmi_pll.c
index e12fa6a..6e187e6 100644
--- a/drivers/video/omap2/dss/hdmi_pll.c
+++ b/drivers/video/omap2/dss/hdmi_pll.c
@@ -10,7 +10,6 @@
#include <linux/kernel.h>
#include <linux/module.h>
-#include <linux/delay.h>
#include <linux/err.h>
#include <linux/io.h>
#include <linux/platform_device.h>
@@ -18,40 +17,10 @@
#include "dss.h"
#include "ti_hdmi.h"
-#include "ti_hdmi_4xxx_ip.h"
#define HDMI_DEFAULT_REGN 16
#define HDMI_DEFAULT_REGM2 1
-static inline void hdmi_write_reg(void __iomem *base_addr, const u16 idx,
- u32 val)
-{
- __raw_writel(val, base_addr + idx);
-}
-
-static inline u32 hdmi_read_reg(void __iomem *base_addr, const u16 idx)
-{
- return __raw_readl(base_addr + idx);
-}
-
-#define REG_FLD_MOD(base, idx, val, start, end) \
- hdmi_write_reg(base, idx, FLD_MOD(hdmi_read_reg(base, idx),\
- val, start, end))
-#define REG_GET(base, idx, start, end) \
- FLD_GET(hdmi_read_reg(base, idx), start, end)
-
-static inline int hdmi_wait_for_bit_change(void __iomem *base_addr,
- const u16 idx, int b2, int b1, u32 val)
-{
- u32 t = 0;
- while (val != REG_GET(base_addr, idx, b2, b1)) {
- udelay(1);
- if (t++ > 10000)
- return !val;
- }
- return val;
-}
-
void hdmi_pll_dump(struct hdmi_pll_data *pll, struct seq_file *s)
{
#define DUMPPLL(r) seq_printf(s, "%-35s %08x\n", #r,\
OpenPOWER on IntegriCloud