From: Curran, Dominic > > -----Original Message----- > > From: linux-omap-owner@xxxxxxxxxxxxxxx [mailto:linux-omap- > > owner@xxxxxxxxxxxxxxx] On Behalf Of Aguirre Rodriguez, Sergio Alberto > > Sent: Tuesday, March 03, 2009 2:44 PM > > To: linux-media@xxxxxxxxxxxxxxx; linux-omap@xxxxxxxxxxxxxxx > > Cc: Sakari Ailus; Tuukka.O Toivonen; Hiroshi DOYU; DongSoo(Nathaniel) > Kim; > > MiaoStanley; Nagalla, Hari; Hiremath, Vaibhav; Lakhani, Amish; Menon, > Nishanth > > Subject: [PATCH 5/5] LDP: Add support for built-in camera > > > > This patch adds support for the LDP builtin camera sensor: > > - Primary sensor (/dev/video4): OV3640 (CSI2). > > > > It introduces also a new file for storing all camera sensors board > > specific related functions, like other platforms do (N800 for example). > > > > Signed-off-by: Sergio Aguirre <saaguirre@xxxxxx> > > --- > > arch/arm/mach-omap2/Makefile | 3 +- > > arch/arm/mach-omap2/board-ldp-camera.c | 203 > > +++++++++++++++++++++++++++ > > arch/arm/mach-omap2/board-ldp.c | 17 +++ > > arch/arm/plat-omap/include/mach/board-ldp.h | 1 + > > 4 files changed, 223 insertions(+), 1 deletions(-) > > create mode 100644 arch/arm/mach-omap2/board-ldp-camera.c > > > > diff --git a/arch/arm/mach-omap2/Makefile b/arch/arm/mach-omap2/Makefile > > index 8888ee6..097bc58 100644 > > --- a/arch/arm/mach-omap2/Makefile > > +++ b/arch/arm/mach-omap2/Makefile > > @@ -63,7 +63,8 @@ obj-$(CONFIG_MACH_OMAP3_BEAGLE) += board- > > omap3beagle.o \ > > mmc-twl4030.o \ > > twl4030-generic-scripts.o > > obj-$(CONFIG_MACH_OMAP_LDP) += board-ldp.o \ > > - mmc-twl4030.o > > + mmc-twl4030.o \ > > + board-ldp-camera.o > > obj-$(CONFIG_MACH_OMAP_APOLLON) += board-apollon.o \ > > board-apollon-mmc.o \ > > board-apollon-keys.o > > diff --git a/arch/arm/mach-omap2/board-ldp-camera.c b/arch/arm/mach- > > omap2/board-ldp-camera.c > > new file mode 100644 > > index 0000000..0db085c > > --- /dev/null > > +++ b/arch/arm/mach-omap2/board-ldp-camera.c > > @@ -0,0 +1,203 @@ > > +/* > > + * linux/arch/arm/mach-omap2/board-ldp0-camera.c > > Minor typo, should be: > linux/arch/arm/mach-omap2/board-ldp-camera.c Oops, fixed. <snip> > > + > > +static struct omap34xxcam_sensor_config ov3640_hwc = { > > + .sensor_isp = 0, > > + .xclk = OMAP34XXCAM_XCLK_B, > > + .capture_mem = 2592 * 1944 * 2 * 2, > > Should this be 2048 * 1536 * 2 * 2 ? Yep, You're right. Fixed. I'll repost after I fix Felipe Balbi's comments on MT sensor. Thanks for your time! Regards, Sergio -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html