Re: [PATCH v3 7/7] tty: add pruss SUART driver

2011-03-15 Thread Subhasish Ghosh
Hello, Thank you for your comments. Would really appreciate more comments and ways to fix this patch and bring it up to Linux Standards. If I have missed something/misunderstood then please let me know. +config SERIAL_PRUSS_SUART + depends on ARCH_DAVINCI && ARCH_DAVINCI_DA850 + select SERIA

Re: [PATCH 2/7] davinci: eliminate use of IO_ADDRESS() on sysmod

2011-03-15 Thread Arnd Bergmann
On Tuesday 15 March 2011 07:00:44 Nori, Sekhar wrote: > > * If you need to access sysmod in multiple places, a nicer > > way would be to make the virtual address pointer static, > > and export the accessor functions for it, rather than > > having a global pointer. > > Seems like opinion is

Re: [PATCH] DM644x EVM: register MUSB device earlier

2011-03-15 Thread Felipe Balbi
Hi, On Mon, Mar 14, 2011 at 09:52:58PM +0300, Sergei Shtylyov wrote: > >I wonder how noone has noticed that from -rc1 until now. > >I don't think many people run the most current DaVinci kernel. > Most people probably use the Arago project kernels or even older > MV-based TI's stuff... that'

mmc and Davinci

2011-03-15 Thread Raffaele Recalcati
I have Toshiba v4.3 running with arago kernel and some problems on other v4.4 and v4.4.1 (Sandisk). Instead with latest 2.6.38-rc8 davinci-opensource kernel v4.4.1 Sandisk works nice. Looking at linux-mmc ml I see a lot of work on eMMC and I'm afraid that I should switch from 2.6.32 arago to davinc

Re: [PATCH] DM644x EVM: register MUSB device earlier

2011-03-15 Thread Russell King - ARM Linux
On Mon, Mar 14, 2011 at 11:14:37PM +0530, Nori, Sekhar wrote: > On Mon, Mar 14, 2011 at 22:12:54, Hilman, Kevin wrote: > > Felipe Balbi writes: > > > > [...] > > > > > > > > Kevin feel free to take this into your tree: > > > > > > Acked-by: Felipe Balbi > > > > > > > OK, will queue for 2.6.39.

RE: [PATCH] DM644x EVM: register MUSB device earlier

2011-03-15 Thread Nori, Sekhar
On Tue, Mar 15, 2011 at 15:38:56, Russell King - ARM Linux wrote: > On Mon, Mar 14, 2011 at 11:14:37PM +0530, Nori, Sekhar wrote: > > On Mon, Mar 14, 2011 at 22:12:54, Hilman, Kevin wrote: > > > Felipe Balbi writes: > > > > > > [...] > > > > > > > > > > > Kevin feel free to take this into your t

[PATCH v17 00/13] davinci vpbe: dm6446 v4l2 driver

2011-03-15 Thread Manjunath Hadli
version17: The more important among the patch history from previous comments 1. Replacing _raw_readl() with readl(). 2. Removal of platform resource overlap. 3. Removal of unused macros. 4. Fixing the module params typo. 5. Minor changes in the GPL licensing header. 6. Removed the initializer for

[PATCH v15 05/13] davinci vpbe: Build infrastructure for VPBE driver

2011-03-15 Thread Manjunath Hadli
This patch adds the build infra-structure for Davinci VPBE dislay driver. Signed-off-by: Manjunath Hadli Acked-by: Muralidharan Karicheri Acked-by: Hans Verkuil --- drivers/media/video/davinci/Kconfig | 22 ++ drivers/media/video/davinci/Makefile |2 ++ 2 files chang

[PATCH v15 02/13] davinci vpbe: VPBE display driver

2011-03-15 Thread Manjunath Hadli
This patch implements the core functionality of the dislay driver, mainly controlling the VENC and other encoders, and acting as the one point interface for the main V4L2 driver. This implements the core of each of the V4L2 IOCTLs. Signed-off-by: Manjunath Hadli Acked-by: Muralidharan Karicheri

[PATCH v15 04/13] davinci vpbe: VENC( Video Encoder) implementation

2011-03-15 Thread Manjunath Hadli
This patch adds the VENC or the Video encoder, which is responsible for the blending of all source planes and timing generation for Video modes like NTSC, PAL and other digital outputs. the VENC implementation currently supports COMPOSITE and COMPONENT outputs and NTSC and PAL resolutions through t

[PATCH v15 06/13] davinci vpbe: Readme text for Dm6446 vpbe

2011-03-15 Thread Manjunath Hadli
Please refer to this file for detailed documentation of davinci vpbe v4l2 driver. Signed-off-by: Manjunath Hadli Acked-by: Muralidharan Karicheri Acked-by: Hans Verkuil --- Documentation/video4linux/README.davinci-vpbe | 93 + 1 files changed, 93 insertions(+), 0 dele

[PATCH v17 10/13] davinci: dm644x: change vpfe capture structure variables for consistency

2011-03-15 Thread Manjunath Hadli
change the vpfe capture related configuration structure variables from to dm644xevm_ to make it consistent with the rest of the file. Signed-off-by: Manjunath Hadli --- arch/arm/mach-davinci/board-dm644x-evm.c | 24 arch/arm/mach-davinci/dm644x.c | 12

[PATCH v17 09/13] davinci: dm644x: Replace register base value with a defined macro

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

[PATCH v17 07/13] davinci: move DM64XX_VDD3P3V_PWDN to devices.c

2011-03-15 Thread Manjunath Hadli
Move the definition of DM64XX_VDD3P3V_PWDN from hardware.h to devices.c since it is used only there. Signed-off-by: Manjunath Hadli --- arch/arm/mach-davinci/devices.c |1 + arch/arm/mach-davinci/include/mach/hardware.h |3 --- 2 files changed, 1 insertions(+), 3 deletions(

[PATCH v17 08/13] davinci: eliminate use of IO_ADDRESS() on sysmod

2011-03-15 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. Consequent to this, a new global pointer davinci_sysmodbase has been introduced which gets initialized during the initialization of ea

[PATCH v17 11/13] davinci: dm644x: move vpfe init from soc to board specific files

2011-03-15 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 v17 12/13] davinci: dm644x: add support for v4l2 video display

2011-03-15 Thread Manjunath Hadli
Create platform devices for various video modules like venc,osd, vpbe and v4l2 driver for dm644x. Signed-off-by: Manjunath Hadli --- arch/arm/mach-davinci/dm644x.c | 130 ++- arch/arm/mach-davinci/include/mach/dm644x.h |4 + 2 files changed, 131 insertio

[PATCH v17 13/13] davinci: dm644x EVM: add support for VPBE display

2011-03-15 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. Signed-off-by: Manjunath Hadli --- arch/arm/mach-davinci/board-dm644x-evm.c| 108 ++- arch/arm/mach-davinci/dm644x.c

[PATCH v15 03/13] davinci vpbe: OSD(On Screen Display) block

2011-03-15 Thread Manjunath Hadli
This patch implements the functionality of the OSD block of the VPBE. The OSD in total supports 4 planes or Video sources - 2 mainly RGB and 2 Video. The patch implements general handling of all the planes, with specific emphasis on the Video plane capabilities as the Video planes are supported thr

DSP functionality

2011-03-15 Thread Jeff Graham
Hello, I am trying to get the DSP working with both my TI AM/Dm3730 Evaluation Module (part # TMDXEVM3730 purchased 6 months ago) and an Overo Fire board, using c6Run and its examples. Focusing just on the TI board, I have tried with the 2.6.32-psp03.00.01.06 kernel (in the dvdsdk_dm3730-evm_4_01

[GIT PULL] final davinci updates for 2.6.39

2011-03-15 Thread Kevin Hilman
Russell, A final pull request for davinci for 2.6.39 (based on the previous one.) This is a series that Sekhar Nori (davinci co-maintaier) has been tracking and that I had mistakenly not added to my previous pull request. Thanks, Kevin The following changes since commit 9a9fb12a4832bdf22751e21

Re: [PATCH] DM644x EVM: register MUSB device earlier

2011-03-15 Thread Sergei Shtylyov
Hello. Nori, Sekhar wrote: Felipe Balbi writes: [...] Kevin feel free to take this into your tree: Acked-by: Felipe Balbi OK, will queue for 2.6.39. This will need to make into 2.6.38. Hi Russell, Without this fix, USB will remain broken on 2.6.38 on DM644x EVM. Any chance

Re: How to put extra clock cycles on i2c cavinci, problems on omapl138 (logic pd som)

2011-03-15 Thread Ben Gardiner
Hello Bastian, On Fri, Mar 11, 2011 at 7:52 AM, wrote: > Hello, > > we have problems with the davinci-i2c driver on an omapl-138 (Logic PD > SOM) in > conjunction with tps65070 hardware and tps6507x_ts touchscreen driver. > > (The following thread is related to this issue. > http://www.mail-arch

Re: How to put extra clock cycles on i2c cavinci, problems on omapl138 (logic pd som)

2011-03-15 Thread Ben Gardiner
Spoke too soon. On Tue, Mar 15, 2011 at 1:02 PM, Ben Gardiner wrote: > [...] > When I revert: > c5b4afec8e669bbe265daea24037fccfc42c4fe3 i2c-davinci: Fix TX setup for more > SoCs > 4bba0fd8d1c6d405df666e2573e1a1f917098be0 i2c-davinci: Fix race when > setting up for TX It just took longer than u

[no subject]

2011-03-15 Thread Ben Gardiner
I tried the following patch based on the description of the steps you took to recover the bus. Is there anything you can add? I still get lots of 'controller timed out' errors. Best Regards, Ben Gardiner Nanometrics Inc. http://www.nanometrics.ca --- diff --git a/drivers/i2c/busses/i2c-davin

use USB GPRS on DM6446

2011-03-15 Thread Aditya Barawkar
Hi , I am recently trying to use the a usb mobile internet on my dm6446. Service Provider=Idea Cellular (India) EDGE/GPRS Note that this modem is *not* 3G. How can i use this on the dm6446? Currently i am following this blog. http://translate.google.co.in/translate?hl=en&sl=zh-CN&u=http://blog