RE: [PATCH v2] davinci: DA850 EVM: OHCI platform code

2011-12-21 Thread Nori, Sekhar
Hi Prakash, On Wed, Dec 21, 2011 at 12:50:02, Manjunathappa, Prakash wrote: > From: Ajay Kumar Gupta > > On this board the OHCI port's power control and over-current signals from > TPS2065 power switch are connected via GPIO2[4] and GPIO6[13] respectively, > so we can implement the DA8xx OHCI gl

Re: [PATCH] video: da8xx-fb: reset LCDC only if functional clock changes with DVFS

2011-12-21 Thread Madhvapathi Sriram
Prakash, On Wed, Dec 21, 2011 at 12:57 PM, Manjunathappa, Prakash wrote: > > LCDC functional clock may or may not be derived from CPU/MPU DPLL, > For example, > AM335x => Separate independent DPLL for LCDC > Davinci => Same DPLL as MPU > > So, on platforms where LCDC functional clock is not deriv

RE: [PATCH] video: da8xx-fb: reset LCDC only if functional clock changes with DVFS

2011-12-21 Thread Manjunathappa, Prakash
Hi Sriram, On Wed, Dec 21, 2011 at 16:17:01, Madhvapathi Sriram wrote: > Prakash, > > On Wed, Dec 21, 2011 at 12:57 PM, Manjunathappa, Prakash > wrote: > > > > LCDC functional clock may or may not be derived from CPU/MPU DPLL, > > For example, > > AM335x => Separate independent DPLL for LCDC > >

Re: [PATCH v2] davinci: DA850 EVM: OHCI platform code

2011-12-21 Thread Sergei Shtylyov
Hello. On 21-12-2011 13:56, Nori, Sekhar wrote: On Wed, Dec 21, 2011 at 12:50:02, Manjunathappa, Prakash wrote: From: Ajay Kumar Gupta On this board the OHCI port's power control and over-current signals from TPS2065 power switch are connected via GPIO2[4] and GPIO6[13] respectively, so we

Re: [PATCH v2] davinci: DA850 EVM: OHCI platform code

2011-12-21 Thread Sergei Shtylyov
Hello. On 21-12-2011 16:05, I wrote: On Wed, Dec 21, 2011 at 12:50:02, Manjunathappa, Prakash wrote: From: Ajay Kumar Gupta On this board the OHCI port's power control and over-current signals from TPS2065 power switch are connected via GPIO2[4] and GPIO6[13] respectively, so we can impleme

[PATCH v7 5/8] davinci: dm644x: change vpfe capture structure variables for consistency

2011-12-21 Thread Manjunath Hadli
Add SoC and board prefixes to variable names so that it is consistent with the rest of the file. Signed-off-by: Manjunath Hadli Acked-by: Sekhar Nori --- arch/arm/mach-davinci/board-dm644x-evm.c | 24 arch/arm/mach-davinci/dm644x.c | 12 ++-- 2 fil

[PATCH v7 0/8] ARM: davinci:add support for dm644x vpbe display driver

2011-12-21 Thread Manjunath Hadli
Re-arrange definitions and remove unnecessary code so that we can have a common header for all davinci platforms. This will enable us to share defines and enable common routines to be used without polluting hardware.h. This is consistent with Russel's pet peaves notes regarding non-pollution of in

[PATCH v7 4/8] davinci: dm644x: Replace register base value with a defined macro

2011-12-21 Thread Manjunath Hadli
Replace hard coded value of vpss register base to a define macro DM644X_VPSS_BASE for proper readability Signed-off-by: Manjunath Hadli Acked-by: Sekhar Nori --- arch/arm/mach-davinci/dm644x.c |8 +--- 1 files changed, 5 insertions(+), 3 deletions(-) diff --git a/arch/arm/mach-davinci/

[PATCH v7 3/8] davinci: eliminate use of IO_ADDRESS() on sysmod

2011-12-21 Thread Manjunath Hadli
Current devices.c file has a number of instances where IO_ADDRESS() is used for system module register access. Eliminate this in favor of a ioremap() based access. Signed-off-by: Manjunath Hadli --- arch/arm/mach-davinci/davinci.h |9 + arch/arm/mach-davinci/devices.c

[PATCH v7 6/8] davinci: dm644x: move vpfe init from soc to board specific files

2011-12-21 Thread Manjunath Hadli
Move all vpfe platform device registrations to the board specific file like the rest of the devices, and have all of them together. This would remove the restriction of inclusion and registration of vpfe platform devices for non-vpfe boards. Signed-off-by: Manjunath Hadli --- arch/arm/mach-dav

[PATCH v7 8/8] davinci: dm644x EVM: add support for VPBE display

2011-12-21 Thread Manjunath Hadli
This patch adds support for V4L2 video display to DM6446 EVM. Support for SD and ED modes is provided, along with Composite and Component outputs.Also added vpbe_config as a parameter for dm644x_init_video to allow for registration of vpbe platform devices. Signed-off-by: Manjunath Hadli Acked-by

[PATCH v7 7/8] davinci: dm644x: add support for v4l2 video display

2011-12-21 Thread Manjunath Hadli
Create platform devices for various video modules like venc,osd, vpbe and v4l2 driver for dm644x. Change the dm644x_init_video to make room for display config, and register the vpfe or vpbe devices based on the config pointer validity to make sure boards without vpfe or vpbe can be built with minim

[PATCH v7 1/8] davinci: vpif: remove machine specific inclusion from driver

2011-12-21 Thread Manjunath Hadli
remove machine specific inclusion from the driver which comes in the way of platform code consolidation. currently was seen that these header inclusions were not necessary. Signed-off-by: Manjunath Hadli Cc: Mauro Carvalho Chehab Cc: LMML --- drivers/media/video/davinci/vpif.h |2 -

[PATCH v7 2/8] ARM: davinci: create new common platform header for davinci

2011-12-21 Thread Manjunath Hadli
remove individual platform header files for dm365, dm355, dm644x and dm646x and consolidate it into a single and common header file davinci.h placed in arch/arm/mach-davinci. This reduces the pollution in the include/mach and is consistent with Russel's suggestions as part of his "pet peaves" mail

RE: [PATCH 1/2] media: add new mediabus format enums for dm365

2011-12-21 Thread Hadli, Manjunath
Laurent, On Wed, Dec 21, 2011 at 05:28:31, Laurent Pinchart wrote: > Hi Manju, > > On Friday 16 December 2011 15:20:24 Hadli, Manjunath wrote: > > On Thu, Dec 15, 2011 at 18:32:44, Laurent Pinchart wrote: > > > On Thursday 15 December 2011 13:24:57 Manjunath Hadli wrote: > > > > add new enum entry

RE: [PATCH 2/2] v4l2: add new pixel formats supported on dm365

2011-12-21 Thread Hadli, Manjunath
Laurent, On Wed, Dec 21, 2011 at 05:32:08, Laurent Pinchart wrote: > Hi Manju, > > On Friday 16 December 2011 14:42:48 Hadli, Manjunath wrote: > > On Thu, Dec 15, 2011 at 18:30:47, Laurent Pinchart wrote: > > > On Thursday 15 December 2011 13:24:58 Manjunath Hadli wrote: > > > > add new macro V4L

RE: Log time stamp wraps around to 25

2011-12-21 Thread Karicheri, Muralidharan
Sekhar, Thanks. You can add me to the "Tested-by" and submit the patch. Murali Karicheri Software Design Engineer email: m-kariche...@ti.com Phone: (301) 407 9583 >> -Original Message- >> From: Nori, Sekhar >> Sent: Tuesday, December 20, 2011 2:19 PM >> To: Karicheri, Muralidharan >> Cc

RE: [PATCH v7 5/8] davinci: dm644x: change vpfe capture structure variables for consistency

2011-12-21 Thread Karicheri, Muralidharan
original Message- >> From: davinci-linux-open-source-bounces+m- >> karicheri2=ti@linux.davincidsp.com [mailto:davinci-linux-open-source- >> bounces+m-karicheri2=ti@linux.davincidsp.com] On Behalf Of Hadli, >> Manjunath >> Sent: Wednesday, December 21, 2011 8:44 AM >> To: dlos; LAK >> Su

Re: [PATCH 1/2] media: add new mediabus format enums for dm365

2011-12-21 Thread Laurent Pinchart
Hi Manju, On Wednesday 21 December 2011 14:54:18 Hadli, Manjunath wrote: > On Wed, Dec 21, 2011 at 05:28:31, Laurent Pinchart wrote: > > On Friday 16 December 2011 15:20:24 Hadli, Manjunath wrote: > > > On Thu, Dec 15, 2011 at 18:32:44, Laurent Pinchart wrote: > > > > On Thursday 15 December 2011

Re: [PATCH 2/2] v4l2: add new pixel formats supported on dm365

2011-12-21 Thread Laurent Pinchart
Hi Manju, On Wednesday 21 December 2011 14:56:36 Hadli, Manjunath wrote: > On Wed, Dec 21, 2011 at 05:32:08, Laurent Pinchart wrote: > > On Friday 16 December 2011 14:42:48 Hadli, Manjunath wrote: > > > On Thu, Dec 15, 2011 at 18:30:47, Laurent Pinchart wrote: > > > > On Thursday 15 December 2011

Re: [PATCH 2/2] v4l2: add new pixel formats supported on dm365

2011-12-21 Thread Guennadi Liakhovetski
On Wed, 21 Dec 2011, Laurent Pinchart wrote: > Hi Manju, > > On Wednesday 21 December 2011 14:56:36 Hadli, Manjunath wrote: > > On Wed, Dec 21, 2011 at 05:32:08, Laurent Pinchart wrote: > > > On Friday 16 December 2011 14:42:48 Hadli, Manjunath wrote: > > > > On Thu, Dec 15, 2011 at 18:30:47, Lau