* [PATCH v13 5/8] davinci vpbe: platform specific additions
@ 2011-01-10 10:23 Manjunath Hadli
2011-01-10 11:28 ` Sergei Shtylyov
0 siblings, 1 reply; 5+ messages in thread
From: Manjunath Hadli @ 2011-01-10 10:23 UTC (permalink / raw)
To: LMML, Kevin Hilman
Cc: dlos, Mauro Carvalho Chehab, Hans Verkuil, Manjunath Hadli
This patch implements the overall device creation for the Video
display driver.
Signed-off-by: Manjunath Hadli <manjunath.hadli@ti.com>
Acked-by: Muralidharan Karicheri <m-karicheri2@ti.com>
Acked-by: Hans Verkuil <hverkuil@xs4all.nl>
---
arch/arm/mach-davinci/dm644x.c | 168 +++++++++++++++++++++++++--
arch/arm/mach-davinci/include/mach/dm644x.h | 18 +++-
2 files changed, 175 insertions(+), 11 deletions(-)
diff --git a/arch/arm/mach-davinci/dm644x.c b/arch/arm/mach-davinci/dm644x.c
index 9a2376b..3cc5f7c 100644
--- a/arch/arm/mach-davinci/dm644x.c
+++ b/arch/arm/mach-davinci/dm644x.c
@@ -5,7 +5,7 @@
*
* 2007 (c) Deep Root Systems, LLC. This file is licensed under
* the terms of the GNU General Public License version 2. This program
- * is licensed "as is" without any warranty of any kind, whether express
+ * is licensed without any warranty of any kind, whether express
* or implied.
*/
#include <linux/init.h>
@@ -618,6 +618,7 @@ static struct resource vpfe_resources[] = {
};
static u64 vpfe_capture_dma_mask = DMA_BIT_MASK(32);
+
static struct resource dm644x_ccdc_resource[] = {
/* CCDC Base address */
{
@@ -654,6 +655,138 @@ void dm644x_set_vpfe_config(struct vpfe_config *cfg)
vpfe_capture_dev.dev.platform_data = cfg;
}
+static struct resource dm644x_osd_resources[] = {
+ {
+ .start = DM644X_OSD_REG_BASE,
+ .end = DM644X_OSD_REG_BASE + OSD_REG_SIZE,
+ .flags = IORESOURCE_MEM,
+ },
+};
+
+static u64 dm644x_osd_dma_mask = DMA_BIT_MASK(32);
+
+static struct osd_platform_data osd_data = {
+ .vpbe_type = DM644X_VPBE,
+ .field_inv_wa_enable = 0,
+};
+
+static struct platform_device dm644x_osd_dev = {
+ .name = VPBE_OSD_SUBDEV_NAME,
+ .id = -1,
+ .num_resources = ARRAY_SIZE(dm644x_osd_resources),
+ .resource = dm644x_osd_resources,
+ .dev = {
+ .dma_mask = &dm644x_osd_dma_mask,
+ .coherent_dma_mask = DMA_BIT_MASK(32),
+ .platform_data = &osd_data,
+ },
+};
+
+static struct resource dm644x_venc_resources[] = {
+ /* venc registers io space */
+ {
+ .start = DM644X_VENC_REG_BASE,
+ .end = DM644X_VENC_REG_BASE + VENC_REG_SIZE,
+ .flags = IORESOURCE_MEM,
+ },
+};
+
+static u64 dm644x_venc_dma_mask = DMA_BIT_MASK(32);
+
+#define VPSS_CLKCTL SYS_VPSS_CLKCTL
+
+static void __iomem *vpss_clkctl_reg;
+
+static int dm644x_venc_setup_clock(enum vpbe_enc_timings_type type, __u64 mode)
+{
+ int ret = 0;
+
+ if (NULL == vpss_clkctl_reg)
+ return -EINVAL;
+ switch (type) {
+ case VPBE_ENC_STD:
+ writel(0x18, vpss_clkctl_reg);
+ break;
+ case VPBE_ENC_DV_PRESET:
+ switch ((unsigned int)mode) {
+ case V4L2_DV_480P59_94:
+ case V4L2_DV_576P50:
+ writel(0x19, vpss_clkctl_reg);
+ break;
+ case V4L2_DV_720P60:
+ case V4L2_DV_1080I60:
+ case V4L2_DV_1080P30:
+ /*
+ * For HD, use external clock source since
+ * HD requires higher clock rate
+ */
+ writel(0xa, vpss_clkctl_reg);
+ break;
+ default:
+ ret = -EINVAL;
+ break;
+ }
+ break;
+ default:
+ ret = -EINVAL;
+ }
+ return ret;
+}
+
+static u64 vpbe_display_dma_mask = DMA_BIT_MASK(32);
+
+static struct resource dm644x_v4l2_disp_resources[] = {
+ {
+ .start = IRQ_VENCINT,
+ .end = IRQ_VENCINT,
+ .flags = IORESOURCE_IRQ,
+ },
+};
+
+static struct platform_device vpbe_v4l2_display = {
+ .name = "vpbe-v4l2",
+ .id = -1,
+ .num_resources = ARRAY_SIZE(dm644x_v4l2_disp_resources),
+ .resource = dm644x_v4l2_disp_resources,
+ .dev = {
+ .dma_mask = &vpbe_display_dma_mask,
+ .coherent_dma_mask = DMA_BIT_MASK(32),
+ },
+};
+
+struct venc_platform_data dm644x_venc_pdata = {
+ .venc_type = DM644X_VPBE,
+ .setup_clock = dm644x_venc_setup_clock,
+};
+
+static struct platform_device dm644x_venc_dev = {
+ .name = VPBE_VENC_SUBDEV_NAME,
+ .id = -1,
+ .num_resources = ARRAY_SIZE(dm644x_venc_resources),
+ .resource = dm644x_venc_resources,
+ .dev = {
+ .dma_mask = &dm644x_venc_dma_mask,
+ .coherent_dma_mask = DMA_BIT_MASK(32),
+ .platform_data = &dm644x_venc_pdata,
+ },
+};
+
+static u64 dm644x_vpbe_dma_mask = DMA_BIT_MASK(32);
+
+static struct platform_device dm644x_vpbe_dev = {
+ .name = "vpbe_controller",
+ .id = -1,
+ .dev = {
+ .dma_mask = &dm644x_vpbe_dma_mask,
+ .coherent_dma_mask = DMA_BIT_MASK(32),
+ },
+};
+
+void dm644x_set_vpbe_display_config(struct vpbe_display_config *cfg)
+{
+ dm644x_vpbe_dev.dev.platform_data = cfg;
+}
+
/*----------------------------------------------------------------------*/
static struct map_desc dm644x_io_desc[] = {
@@ -781,25 +914,42 @@ void __init dm644x_init(void)
davinci_common_init(&davinci_soc_info_dm644x);
}
+static struct platform_device *dm644x_video_devices[] __initdata = {
+ &dm644x_vpss_device,
+ &dm644x_ccdc_dev,
+ &vpfe_capture_dev,
+ &dm644x_osd_dev,
+ &dm644x_venc_dev,
+ &dm644x_vpbe_dev,
+ &vpbe_v4l2_display,
+};
+
+static int __init dm644x_init_video(void)
+{
+ /* Add ccdc clock aliases */
+ clk_add_alias("master", dm644x_ccdc_dev.name, "vpss_master", NULL);
+ clk_add_alias("slave", dm644x_ccdc_dev.name, "vpss_slave", NULL);
+ vpss_clkctl_reg = ioremap_nocache(VPSS_CLKCTL, 4);
+ if (!vpss_clkctl_reg)
+ return -ENODEV;
+ platform_add_devices(dm644x_video_devices,
+ ARRAY_SIZE(dm644x_video_devices));
+ return 0;
+}
+
static int __init dm644x_init_devices(void)
{
if (!cpu_is_davinci_dm644x())
return 0;
- /* Add ccdc clock aliases */
- clk_add_alias("master", dm644x_ccdc_dev.name, "vpss_master", NULL);
- clk_add_alias("slave", dm644x_ccdc_dev.name, "vpss_slave", NULL);
platform_device_register(&dm644x_edma_device);
-
platform_device_register(&dm644x_mdio_device);
platform_device_register(&dm644x_emac_device);
+
clk_add_alias(NULL, dev_name(&dm644x_mdio_device.dev),
NULL, &dm644x_emac_device.dev);
- platform_device_register(&dm644x_vpss_device);
- platform_device_register(&dm644x_ccdc_dev);
- platform_device_register(&vpfe_capture_dev);
-
+ dm644x_init_video();
return 0;
}
postcore_initcall(dm644x_init_devices);
diff --git a/arch/arm/mach-davinci/include/mach/dm644x.h b/arch/arm/mach-davinci/include/mach/dm644x.h
index 5a1b26d..46385e7 100644
--- a/arch/arm/mach-davinci/include/mach/dm644x.h
+++ b/arch/arm/mach-davinci/include/mach/dm644x.h
@@ -6,8 +6,7 @@
*
* 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.
+ * the Free Software Foundation version 2.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -26,6 +25,10 @@
#include <mach/hardware.h>
#include <mach/asp.h>
#include <media/davinci/vpfe_capture.h>
+#include <media/davinci/vpbe_types.h>
+#include <media/davinci/vpbe.h>
+#include <media/davinci/vpss.h>
+#include <media/davinci/vpbe_osd.h>
#define DM644X_EMAC_BASE (0x01C80000)
#define DM644X_EMAC_MDIO_BASE (DM644X_EMAC_BASE + 0x4000)
@@ -40,8 +43,19 @@
#define DM644X_ASYNC_EMIF_DATA_CE2_BASE 0x06000000
#define DM644X_ASYNC_EMIF_DATA_CE3_BASE 0x08000000
+/* VPBE register base addresses */
+#define DM644X_VENC_REG_BASE 0x01C72400
+#define DM644X_OSD_REG_BASE 0x01C72600
+
+#define OSD_REG_SIZE 0x000001ff
+#define VENC_REG_SIZE 0x0000017f
+
+/* SYS register addresses */
+#define SYS_VPSS_CLKCTL 0x01C40044
+
void __init dm644x_init(void);
void __init dm644x_init_asp(struct snd_platform_data *pdata);
void dm644x_set_vpfe_config(struct vpfe_config *cfg);
+void dm644x_set_vpbe_display_config(struct vpbe_display_config *cfg);
#endif /* __ASM_ARCH_DM644X_H */
--
1.6.2.4
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH v13 5/8] davinci vpbe: platform specific additions
2011-01-10 10:23 [PATCH v13 5/8] davinci vpbe: platform specific additions Manjunath Hadli
@ 2011-01-10 11:28 ` Sergei Shtylyov
2011-01-10 11:55 ` Nori, Sekhar
0 siblings, 1 reply; 5+ messages in thread
From: Sergei Shtylyov @ 2011-01-10 11:28 UTC (permalink / raw)
To: Manjunath Hadli; +Cc: LMML, Kevin Hilman, dlos, Mauro Carvalho Chehab
Hello.
On 10-01-2011 13:23, Manjunath Hadli wrote:
> This patch implements the overall device creation for the Video
> display driver.
> Signed-off-by: Manjunath Hadli<manjunath.hadli@ti.com>
> Acked-by: Muralidharan Karicheri<m-karicheri2@ti.com>
> Acked-by: Hans Verkuil<hverkuil@xs4all.nl>
[...]
> diff --git a/arch/arm/mach-davinci/dm644x.c b/arch/arm/mach-davinci/dm644x.c
> index 9a2376b..3cc5f7c 100644
> --- a/arch/arm/mach-davinci/dm644x.c
> +++ b/arch/arm/mach-davinci/dm644x.c
[...]
> @@ -654,6 +655,138 @@ void dm644x_set_vpfe_config(struct vpfe_config *cfg)
[...]
> +
> +#define VPSS_CLKCTL SYS_VPSS_CLKCTL
What's the point? Why not just use SYS_VPSS_CLKCTL?
> diff --git a/arch/arm/mach-davinci/include/mach/dm644x.h b/arch/arm/mach-davinci/include/mach/dm644x.h
> index 5a1b26d..46385e7 100644
> --- a/arch/arm/mach-davinci/include/mach/dm644x.h
> +++ b/arch/arm/mach-davinci/include/mach/dm644x.h
[...]
> @@ -40,8 +43,19 @@
> #define DM644X_ASYNC_EMIF_DATA_CE2_BASE 0x06000000
> #define DM644X_ASYNC_EMIF_DATA_CE3_BASE 0x08000000
>
> +/* VPBE register base addresses */
> +#define DM644X_VENC_REG_BASE 0x01C72400
> +#define DM644X_OSD_REG_BASE 0x01C72600
> +
> +#define OSD_REG_SIZE 0x000001ff
> +#define VENC_REG_SIZE 0x0000017f
Well, actually that's not the size but "limit" -- sizes should be 0x200
and 0x180 respectively...
WBR, Sergei
^ permalink raw reply [flat|nested] 5+ messages in thread
* RE: [PATCH v13 5/8] davinci vpbe: platform specific additions
2011-01-10 11:28 ` Sergei Shtylyov
@ 2011-01-10 11:55 ` Nori, Sekhar
2011-01-10 12:51 ` Hadli, Manjunath
0 siblings, 1 reply; 5+ messages in thread
From: Nori, Sekhar @ 2011-01-10 11:55 UTC (permalink / raw)
To: Sergei Shtylyov, Hadli, Manjunath
Cc: LMML, Kevin Hilman, dlos, Mauro Carvalho Chehab
On Mon, Jan 10, 2011 at 16:58:41, Sergei Shtylyov wrote:
> > +
> > +#define OSD_REG_SIZE 0x000001ff
> > +#define VENC_REG_SIZE 0x0000017f
>
> Well, actually that's not the size but "limit" -- sizes should be 0x200
> and 0x180 respectively...
In most resource definitions on DaVinci, these are not even #defined. Just
add the limit directly to the base to derive the .end
Thanks,
Sekhar
^ permalink raw reply [flat|nested] 5+ messages in thread
* RE: [PATCH v13 5/8] davinci vpbe: platform specific additions
2011-01-10 11:55 ` Nori, Sekhar
@ 2011-01-10 12:51 ` Hadli, Manjunath
2011-01-10 12:55 ` Nori, Sekhar
0 siblings, 1 reply; 5+ messages in thread
From: Hadli, Manjunath @ 2011-01-10 12:51 UTC (permalink / raw)
To: Nori, Sekhar, Sergei Shtylyov
Cc: LMML, Kevin Hilman, dlos, Mauro Carvalho Chehab
On Mon, Jan 10, 2011 at 17:25:33, Nori, Sekhar wrote:
> On Mon, Jan 10, 2011 at 16:58:41, Sergei Shtylyov wrote:
>
> > > +
> > > +#define OSD_REG_SIZE 0x000001ff
> > > +#define VENC_REG_SIZE 0x0000017f
> >
> > Well, actually that's not the size but "limit" -- sizes should be
> > 0x200 and 0x180 respectively...
>
> In most resource definitions on DaVinci, these are not even #defined. Just add the limit directly to the base to derive the .end
>
> Thanks,
> Sekhar
>
Ok. I shall keep the numbers as is.
Thanks,
-Manju
^ permalink raw reply [flat|nested] 5+ messages in thread
* RE: [PATCH v13 5/8] davinci vpbe: platform specific additions
2011-01-10 12:51 ` Hadli, Manjunath
@ 2011-01-10 12:55 ` Nori, Sekhar
0 siblings, 0 replies; 5+ messages in thread
From: Nori, Sekhar @ 2011-01-10 12:55 UTC (permalink / raw)
To: Hadli, Manjunath, Sergei Shtylyov
Cc: LMML, Kevin Hilman, dlos, Mauro Carvalho Chehab
On Mon, Jan 10, 2011 at 18:21:34, Hadli, Manjunath wrote:
> On Mon, Jan 10, 2011 at 17:25:33, Nori, Sekhar wrote:
> > On Mon, Jan 10, 2011 at 16:58:41, Sergei Shtylyov wrote:
> >
> > > > +
> > > > +#define OSD_REG_SIZE 0x000001ff
> > > > +#define VENC_REG_SIZE 0x0000017f
> > >
> > > Well, actually that's not the size but "limit" -- sizes should be
> > > 0x200 and 0x180 respectively...
> >
> > In most resource definitions on DaVinci, these are not even #defined. Just add the limit directly to the base to derive the .end
> >
> > Thanks,
> > Sekhar
> >
> Ok. I shall keep the numbers as is.
Thanks. You can look at some existing resource definitions in
arch/arm/mach-davinci/devices.c to see the format being used.
Regards,
Sekhar
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2011-01-10 12:55 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-01-10 10:23 [PATCH v13 5/8] davinci vpbe: platform specific additions Manjunath Hadli
2011-01-10 11:28 ` Sergei Shtylyov
2011-01-10 11:55 ` Nori, Sekhar
2011-01-10 12:51 ` Hadli, Manjunath
2011-01-10 12:55 ` Nori, Sekhar
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.