Commit 39a389e5 authored by Sergio Aguirre's avatar Sergio Aguirre Committed by Tony Lindgren

OMAP3 camera driver: OMAP34XXCAM: Camera Base Address.

ARM: OMAP: OMAP34XXCAM: Camera Base Address.

Adding OMAP 3 Camera registers base address, and Platform Device.
Signed-off-by: default avatarSergio Aguirre <saaguirre@ti.com>
Signed-off-by: default avatarSameer Venkatraman <sameerv@ti.com>
Signed-off-by: default avatarMohit Jalori <mjalori@ti.com>
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent 4384c468
...@@ -46,6 +46,32 @@ static struct platform_device omap_cam_device = { ...@@ -46,6 +46,32 @@ static struct platform_device omap_cam_device = {
.resource = cam_resources, .resource = cam_resources,
}; };
static inline void omap_init_camera(void)
{
platform_device_register(&omap_cam_device);
}
#elif defined(CONFIG_VIDEO_OMAP3) || defined(CONFIG_VIDEO_OMAP3_MODULE)
static struct resource cam_resources[] = {
{
.start = OMAP34XX_CAMERA_BASE,
.end = OMAP34XX_CAMERA_BASE + 0x1B70,
.flags = IORESOURCE_MEM,
},
{
.start = INT_34XX_CAM_IRQ,
.flags = IORESOURCE_IRQ,
}
};
static struct platform_device omap_cam_device = {
.name = "omap34xxcam",
.id = -1,
.num_resources = ARRAY_SIZE(cam_resources),
.resource = cam_resources,
};
static inline void omap_init_camera(void) static inline void omap_init_camera(void)
{ {
platform_device_register(&omap_cam_device); platform_device_register(&omap_cam_device);
......
...@@ -63,6 +63,7 @@ ...@@ -63,6 +63,7 @@
#define OMAP2_CM_BASE OMAP3430_CM_BASE #define OMAP2_CM_BASE OMAP3430_CM_BASE
#define OMAP2_PRM_BASE OMAP3430_PRM_BASE #define OMAP2_PRM_BASE OMAP3430_PRM_BASE
#define OMAP2_VA_IC_BASE IO_ADDRESS(OMAP34XX_IC_BASE) #define OMAP2_VA_IC_BASE IO_ADDRESS(OMAP34XX_IC_BASE)
#define OMAP34XX_CAMERA_BASE (L4_34XX_BASE + 0xBC000)
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment