Kernel panic in cppi_completion

2010-10-08 Thread Suhas Jain
Hi All, We are getting a kernel panic in cppi_completion routine for musb. We are using Davinci DM365 with PSP3.20. The board has a SMSC USB hub and we have connected USB storage and USB modem on this hub. The observation during kernel panic is: it seems like USB gets stalled and hence either

RE: [PATCH 2/2] davinci: Platform support for OMAP-L137/AM17x NOR flash driver

2010-10-08 Thread Nori, Sekhar
On Fri, Oct 08, 2010 at 12:14:33, Vitaly Wool wrote: On Fri, Oct 8, 2010 at 5:54 AM, Nori, Sekhar nsek...@ti.com wrote: Hi Sergei, On Thu, Oct 07, 2010 at 20:35:28, Sergei Shtylyov wrote: +static void da830_evm_nor_done(void *data) +{ + clk_disable(da830_evm_nor.clk); +

Re: [PATCH] davinci: Implement sched_clock()

2010-10-08 Thread Sergei Shtylyov
Hello. On 07-10-2010 21:12, Kevin Hilman wrote: Overwrite the default implementation of sched_clock that is based on jiffies by something more precise. This improves timestamps in ftrace. Implementation is copied from OMAP platform code. Signed-off-by: Andreas

Re: [PATCH 2/2] davinci: Platform support for OMAP-L137/AM17x NOR flash driver

2010-10-08 Thread Sergei Shtylyov
Hello. On 08-10-2010 8:54, Nori, Sekhar wrote: +static void da830_evm_nor_done(void *data) +{ + clk_disable(da830_evm_nor.clk); + clk_put(da830_evm_nor.clk); + iounmap(da830_evm_nor.latch.addr); + release_mem_region(DA8XX_AEMIF_CS3_BASE, PAGE_SIZE); +

RE: [PATCH v1] davinci: EMAC support for Omapl138-Hawkboard

2010-10-08 Thread Nori, Sekhar
Hi Victor, On Tue, Oct 05, 2010 at 22:42:40, Victor Rodriguez wrote: On Tue, Oct 5, 2010 at 4:32 AM, Sergei Shtylyov sshtyl...@mvista.com wrote: Hello. On 05-10-2010 0:24, vm.ro...@gmail.com wrote: From: Victor Rodriguezvm.ro...@gmail.com This patch adds EMAC support for the

[PATCH 2/4] davinci: da850: Add platform specific support for eCAP driver

2010-10-08 Thread sugumar
This patch registers the eCAP driver as a platform device Signed-off-by: sugumar sugu...@ti.com --- arch/arm/mach-davinci/da850.c | 69 arch/arm/mach-davinci/include/mach/da8xx.h |1 + arch/arm/mach-davinci/include/mach/mux.h |3 + 3 files

[PATCH 0/4] Add eCAP driver support for PWM based backlight control.

2010-10-08 Thread sugumar
The following set of patches adds support for eCAP driver for PWM generation. It also adds platform support for back light device. The patch as a whole adds support for back light control through eCAP module. The patch has been tested on Bill Gatliff's tree. sugumar (4): davinci:

[PATCH 3/4] Modify the back light driver to support the new PWM framework

2010-10-08 Thread sugumar
This patch makes necessary changes to the existing backlight driver to work with the new PWM framework Signed-off-by: sugumar sugu...@ti.com --- drivers/pwm/Kconfig |1 + drivers/video/backlight/pwm_bl.c | 28 +++- include/linux/pwm_backlight.h|

[PATCH 4/4] davinci: da850/omap-l138 evm: Platform support for backlight driver

2010-10-08 Thread sugumar
on DA850/OMAP-L138 EVM, eCAP module is used to control the LCD backlight. This patch registers the backlight device as platform device, confgiures the pins for PWM output and also sets the backlight specific data such as period, maximum intensity and default brightness. Signed-off-by: sugumar

[PATCH 1/4] davinci: da8xx: eCAP driver for PWM signal generation

2010-10-08 Thread sugumar
OMAPL138/DA850 contains three instances of eCAP module. Each eCAP module has one dedicated pin that can be used either in capture mode(input) or in PWM mode. For more information on eCAP module operation, please refer to the following url. http://focus.ti.com/lit/ug/sprufl2a/sprufl2a.pdf

[PATCH 5/5] arm/davinci: remove duplicated include

2010-10-08 Thread Nicolas Kaiser
Remove duplicated include. Signed-off-by: Nicolas Kaiser ni...@nikai.net --- arch/arm/mach-davinci/board-da850-evm.c |1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/arch/arm/mach-davinci/board-da850-evm.c b/arch/arm/mach-davinci/board-da850-evm.c index fdc2cc5..851cc45

help:problem of rebuild new linux kernel of dm355

2010-10-08 Thread
hi all I am porting open source Linux kernel into DM355, but I met a problem. I am using Linux git kernel downloaded from Montavista open soure git, and I modify the code in arch/arm/mach-davinci/ for DM355 EVM, and sucessfully compiled out the uImage, but when I use u-boot's tftp;bootm

How to set UART1 using TIOCSSERIAL IOCTL on Davinci platform?

2010-10-08 Thread justdoit
MY SETUP - We have a dm6446 EVM board, we have been using MontaVista(R) Linux(R) Professional Edition 5.0.0 with 2.6.18 kernel and LSP 2.10 DaVinci Linux Drivers. PROBLEM --- UART0 works well as a console, but UART1 can not work. Refer to sprs566A

Re: [PATCH 2/2] davinci: Platform support for OMAP-L137/AM17x NOR flash driver

2010-10-08 Thread Vitaly Wool
On Fri, Oct 8, 2010 at 11:56 AM, Sergei Shtylyov sshtyl...@mvista.com wrote:   I think the code was more compact with the old error handling. And anyway, I'm not feeling happy when TI is changing MV's code. Leaving the inter-vendor relations aside, I'd say, anyone can modify any GPL code. The

Re: [PATCH 2/2] davinci: Platform support for OMAP-L137/AM17x NOR flash driver

2010-10-08 Thread Vitaly Wool
On Fri, Oct 8, 2010 at 5:54 AM, Nori, Sekhar nsek...@ti.com wrote: Hi Sergei, On Thu, Oct 07, 2010 at 20:35:28, Sergei Shtylyov wrote: +static void da830_evm_nor_done(void *data) +{ +   clk_disable(da830_evm_nor.clk); +   clk_put(da830_evm_nor.clk); +  

Re: [PATCH] davinci: Implement sched_clock()

2010-10-08 Thread Alper YILDIRIM
Andreas.Gaer wrote: From: Andreas Gaeer andreas.g...@baslerweb.com Overwrite the default implementation of sched_clock that is based on jiffies by something more precise. This improves timestamps in ftrace. Implementation is copied from OMAP platform code. Hi Andreas, does this

Re: [PATCH] davinci: Implement sched_clock()

2010-10-08 Thread Kevin Hilman
Sergei Shtylyov sshtyl...@mvista.com writes: Hello. On 07-10-2010 21:12, Kevin Hilman wrote: Overwrite the default implementation of sched_clock that is based on jiffies by something more precise. This improves timestamps in ftrace. Implementation is copied from OMAP platform code.

Re: [PATCH v5 1/1] davinci: spi: replace existing driver

2010-10-08 Thread Michael Williamson
Hi Sekhar, On 10/6/2010 11:37 AM, Nori, Sekhar wrote: Hi Mike, On Mon, Sep 20, 2010 at 23:12:53, Michael Williamson wrote: Let me know if you want testing on the DMA portion of the patch (when your ready, of course). I just finished pushing the DMA related patches to the git

[PATCH v1 0/6] Add Omapl138-Hawkboard support

2010-10-08 Thread vm.rod25
From: Victor Rodriguez victor.rodrig...@sasken.com This patch adds EMAC, EDMA, ASoC, SOUND, MMC/SD and USB OHCI support for the Hawkboard-L138 system It is under the machine name omapl138_hawkboard. This system is based on the da850 davinci CPU architecture. Victor Rodriguez (6): davinci: EMAC

[PATCH v1 1/6] davinci: EMAC support for Omapl138-Hawkboard

2010-10-08 Thread vm.rod25
From: Victor Rodriguez victor.rodrig...@sasken.com This patch adds EMAC support for the Hawkboard-L138 system It is under the machine name omapl138_hawkboard. This system is based on the da850 davinci CPU architecture. Signed-off-by: Victor Rodriguez victor.rodrig...@sasken.com ---

[PATCH v1 3/6] ASoC: davinci: ASoC support for Omapl138-Hawkboard

2010-10-08 Thread vm.rod25
From: Victor Rodriguez victor.rodrig...@sasken.com This patch adds ASoC support for the Hawkboard-L138 system It is under the machine name omapl138_hawkboard. This system is based on the da850 davinci CPU architecture. Signed-off-by: Victor Rodriguez victor.rodrig...@sasken.com ---

[PATCH v1 2/6] davinci: EDMA support for Omapl138-Hawkboard

2010-10-08 Thread vm.rod25
From: Victor Rodriguez victor.rodrig...@sasken.com This patch adds EDMA support for the Hawkboard-L138 system It is under the machine name omapl138_hawkboard. This system is based on the da850 davinci CPU architecture. Signed-off-by: Victor Rodriguez victor.rodrig...@sasken.com ---

[PATCH v1 3/6] ASoC: davinci: ASoC support for Omapl138-Hawkboard

2010-10-08 Thread vm.rod25
From: Victor Rodriguez victor.rodrig...@sasken.com This patch adds ASoC support for the Hawkboard-L138 system It is under the machine name omapl138_hawkboard. This system is based on the da850 davinci CPU architecture. Signed-off-by: Victor Rodriguez victor.rodrig...@sasken.com ---

[PATCH v1 5/6] davinci: MMC/SD support for Omapl138-Hawkboard

2010-10-08 Thread vm.rod25
From: Victor Rodriguez victor.rodrig...@sasken.com This patch adds MMC/SD support for the Hawkboard-L138 system It is under the machine name omapl138_hawkboard. This system is based on the da850 davinci CPU architecture. Signed-off-by: Victor Rodriguez victor.rodrig...@sasken.com --- Notes:

[PATCH v1 6/6] davinci: USB-OHCI support for Omapl138-Hawkboard

2010-10-08 Thread vm.rod25
From: Victor Rodriguez victor.rodrig...@sasken.com This patch adds USB-OHCI support for the Hawkboard-L138 system It is under the machine name omapl138_hawkboard. This system is based on the da850 davinci CPU architecture. Signed-off-by: Victor Rodriguez victor.rodrig...@sasken.com --- Notes:

[PATCH v1 4/6] davinci: SOUND support for Omapl138-Hawkboard

2010-10-08 Thread vm.rod25
From: Victor Rodriguez victor.rodrig...@sasken.com This patch adds sound support for the Hawkboard-L138 system It is under the machine name omapl138_hawkboard. This system is based on the da850 davinci CPU architecture. Signed-off-by: Victor Rodriguez victor.rodrig...@sasken.com --- Notes: This