Re: [PATCH] PM: OMAP: Fix build with CONFIG_OMAP_PM_NONE set

2009-04-07 Thread Roger Quadros
ext Premi, Sanjeev wrote: -Original Message- From: linux-omap-ow...@vger.kernel.org [mailto:linux-omap-ow...@vger.kernel.org] On Behalf Of Roger Quadros Sent: Tuesday, April 07, 2009 4:49 PM To: ext Roger Quadros Cc: Kevin Hilman; linux-omap@vger.kernel.org Subject: Re: [PATCH] PM: OMAP

Re: Preempt-RT on OMAP3?

2009-04-07 Thread Hugo Vincent
On Tue, Apr 7, 2009 at 4:19 PM, Hugo Vincent wrote: > On Tue, Apr 7, 2009 at 3:36 PM, David Brownell wrote: >> On Monday 06 April 2009, Hugo Vincent wrote: >>> Here is a complete boot log + config: >>> http://hugovincent.com/files/lkml-20090407/boot2.log >> &

[PATCH] mmc: Fix compile for omap_hsmmc.c (Re: New build error?)

2009-04-07 Thread Tony Lindgren
* Russell King - ARM Linux [090407 12:55]: > Caused by: 4a694dc915c9a223044ce21fc0d99e63facd1d64 > > omap_hsmmc: Fix response type for busy after response > > Error: > > drivers/mmc/host/omap_hsmmc.c: In function 'mmc_omap_xfer_done': > drivers/mmc/host/omap_hsmmc.c:301: error: implicit dec

Re: Latest tmlid/linux-omap-2.6.git changes

2009-04-07 Thread Tony Lindgren
* Russ Dill [090407 15:41]: > f64f3007, "omap_hsmmc: Flush posted write to IRQ" doesn't change any files. > > It appears that the patch in question is here: > > http://patchwork.kernel.org/patch/16515/ > > But it looks like it would have created a conflict with b420f201, > "MMC: OMAP: flush pos

[APPLIED] [PATCH] omap_hsmmc: Flush posted write to IRQ

2009-04-07 Thread Tony Lindgren
This patch has been applied to the linux-omap by youw fwiendly patch wobot. Initial commit ID (Likely to change): 346ac90bcf6d0e8a91b398237facd8d9fb2a7cde PatchWorks http://patchwork.kernel.org/patch/16515/ Git http://git.kernel.org/?p=linux/kernel/git/tmlind/linux-omap-2.6.git;a=commit;h=346ac9

Latest tmlid/linux-omap-2.6.git changes

2009-04-07 Thread Russ Dill
f64f3007, "omap_hsmmc: Flush posted write to IRQ" doesn't change any files. It appears that the patch in question is here: http://patchwork.kernel.org/patch/16515/ But it looks like it would have created a conflict with b420f201, "MMC: OMAP: flush posted write to IRQ". The f64f3007 patch adds a

RE: [PATCH 1/4] [OMAPZOOM] [UPDATE] DSPBRIDGE: Memory lock for DMM.

2009-04-07 Thread Kanigeri, Hari
Ameya, > So ideally user space process should touch all the buffers before > sending them to > bridge driver so that page_count is never zero? -- For output buffers from DSP, this is not needed. > Also I didn't understand the meaning of the following message which is > printed > by printk when

Re: [PATCH 1/4] [OMAPZOOM] [UPDATE] DSPBRIDGE: Memory lock for DMM.

2009-04-07 Thread Ameya Palande
Hi Hari, On Tue, Apr 7, 2009 at 11:59 PM, Kanigeri, Hari wrote: > Ameya, > >> >> get_page() function has following check inside it: >> VM_BUG_ON(atomic_read(&page->_count) == 0); >> >> Why we need to repeat it again? >> I guess we can completely remove following check which is in my >> opinion co

RE: [PATCH 1/4] [OMAPZOOM] [UPDATE] DSPBRIDGE: Memory lock for DMM.

2009-04-07 Thread Kanigeri, Hari
Ameya, > > get_page() function has following check inside it: > VM_BUG_ON(atomic_read(&page->_count) == 0); > > Why we need to repeat it again? > I guess we can completely remove following check which is in my > opinion completely > redundant: -- This check in get_page is conditional check and

Re: [PATCH 1/4] [OMAPZOOM] [UPDATE] DSPBRIDGE: Memory lock for DMM.

2009-04-07 Thread Ameya Palande
Hi Hari, On Tue, Apr 7, 2009 at 11:27 PM, Kanigeri, Hari wrote: > Ameya, > >> If this is the case then what is the point of having following code? >> if (page_count(pg) < 1)  <-- This will always evaluate to FALSE. > > -- As you mentioned this case shouldn't be hit. This check is to only to > en

RE: [PATCH 1/4] [OMAPZOOM] [UPDATE] DSPBRIDGE: Memory lock for DMM.

2009-04-07 Thread Kanigeri, Hari
Ameya, > If this is the case then what is the point of having following code? > if (page_count(pg) < 1) <-- This will always evaluate to FALSE. -- As you mentioned this case shouldn't be hit. This check is to only to ensure that the translations from user space VA to Physical address is taking

Re: [PATCH 1/4] [OMAPZOOM] [UPDATE] DSPBRIDGE: Memory lock for DMM.

2009-04-07 Thread Ameya Palande
Hi Fernando, On Tue, Apr 7, 2009 at 10:26 PM, Guzman Lugo, Fernando wrote: > > Hi, > >        Patch updated wit the fix in page_count(pg). > > > From a5ab7e038b72e62358279ef3c4e64b2f260c Mon Sep 17 00:00:00 2001 > From: Hari Kanigeri > Date: Thu, 26 Mar 2009 15:47:50 -0500 > Subject: [PATCH]

New build error?

2009-04-07 Thread Russell King - ARM Linux
Caused by: 4a694dc915c9a223044ce21fc0d99e63facd1d64 omap_hsmmc: Fix response type for busy after response Error: drivers/mmc/host/omap_hsmmc.c: In function 'mmc_omap_xfer_done': drivers/mmc/host/omap_hsmmc.c:301: error: implicit declaration of function 'mmc_omap_fclk_lazy_disable' Please s

RE: [PATCH 1/4] [OMAPZOOM] [UPDATE] DSPBRIDGE: Memory lock for DMM.

2009-04-07 Thread Guzman Lugo, Fernando
Hi, Patch updated wit the fix in page_count(pg). >From a5ab7e038b72e62358279ef3c4e64b2f260c Mon Sep 17 00:00:00 2001 From: Hari Kanigeri Date: Thu, 26 Mar 2009 15:47:50 -0500 Subject: [PATCH] DSPBRIDGE: Memory lock for DMM. Lock down the pages that are mapped to DSP virtual memory

Re: YUV rotation support for DSS2 - 2.6.29 [WAS Re: Hello Tomi Valkeinen, I have some questions about dss2 driver.]

2009-04-07 Thread Tim Yamin
Hi Hardik / Tomi, > [Shah, Hardik] I have also patched the DSS to support the DSS YUV rotation.   > Here the rotation type is passed to know the type of rotation required by > driver.  I have also modified the FBDEV driver to use this patch.  Please > find the both patches.  I have tested it on

[APPLIED] [patch omap-git] ehci-omap buildfix

2009-04-07 Thread Tony Lindgren
This patch has been applied to the linux-omap by youw fwiendly patch wobot. Initial commit ID (Likely to change): 77515419305a5d1b29fa3023d7943dc511882657 PatchWorks http://patchwork.kernel.org/patch/16491/ Git http://git.kernel.org/?p=linux/kernel/git/tmlind/linux-omap-2.6.git;a=commit;h=775154

Re: [APPLIED] [PATCH 3/3] OMAP: dmtimer: enable all timers to be wakeup events

2009-04-07 Thread Tony Lindgren
* Tony Lindgren [090407 10:49]: > This patch has been applied to the linux-omap > by youw fwiendly patch wobot. > > Initial commit ID (Likely to change): 7287a91be3de9ee00f8da7c07f19b368fd0969ae > > PatchWorks > http://patchwork.kernel.org/patch/16349/ > > Git > http://git.kernel.org/?p=linux/k

[APPLIED] [PATCH 3/3] OMAP: dmtimer: enable all timers to be wakeup events

2009-04-07 Thread Tony Lindgren
This patch has been applied to the linux-omap by youw fwiendly patch wobot. Initial commit ID (Likely to change): 7287a91be3de9ee00f8da7c07f19b368fd0969ae PatchWorks http://patchwork.kernel.org/patch/16349/ Git http://git.kernel.org/?p=linux/kernel/git/tmlind/linux-omap-2.6.git;a=commit;h=7287a9

[APPLIED] [PATCH 2/3] OMAP2/3 GPTIMER: allow system tick GPTIMER to be changed

2009-04-07 Thread Tony Lindgren
This patch has been applied to the linux-omap by youw fwiendly patch wobot. Initial commit ID (Likely to change): 6e8877aec8c20678553e7af9c7c3f1beff01e1f5 PatchWorks http://patchwork.kernel.org/patch/16348/ Git http://git.kernel.org/?p=linux/kernel/git/tmlind/linux-omap-2.6.git;a=commit;h=6e8877

[APPLIED] [PATCH 1/3] OMAP3 GPTIMER: fix GPTIMER12 IRQ

2009-04-07 Thread Tony Lindgren
This patch has been applied to the linux-omap by youw fwiendly patch wobot. Initial commit ID (Likely to change): 248d0ba812f675991dbd5a924188f5c893df9ede PatchWorks http://patchwork.kernel.org/patch/16347/ Git http://git.kernel.org/?p=linux/kernel/git/tmlind/linux-omap-2.6.git;a=commit;h=248d0b

[APPLIED] [OMAP][sDMA]Fix for possible race condition in omap_free_dma()

2009-04-07 Thread Tony Lindgren
This patch has been applied to the linux-omap by youw fwiendly patch wobot. Initial commit ID (Likely to change): 77d75dad3c728ec6c6822c6c2a131c4dc3123fde PatchWorks http://patchwork.kernel.org/patch/14966/ Git http://git.kernel.org/?p=linux/kernel/git/tmlind/linux-omap-2.6.git;a=commit;h=77d75d

Re: Benchmarking: POP flash vs. MMC?

2009-04-07 Thread Tony Lindgren
* David Brownell [090406 03:48]: > On Monday 06 April 2009, Paul Walmsley wrote: > > > Puzzle:  get a dma_copypage() to work faster than copy_page(). > > > Or a dma_clear_page() faster than clear_page().  Not easy... > > > > Doing it via the DMA engine may save power, since MPU can sleep. > > Bu

Re: Embedded Linux Conference

2009-04-07 Thread Dongsoo, Nathaniel Kim
Oh! I can see my laptop! It was nice to meet you everyone. Sorry for not be talking with you much. I had to review my work with Hans before today's presentation. I appreciate for the beer. Cheers. Nate On Wed, Apr 8, 2009 at 12:53 AM, Tony Lindgren wrote: > * Tony Lindgren [090406 18:45]: >>

USB EHCI Issue

2009-04-07 Thread Remith Ravi
Hello, I am working on a new board which uses USB EHCI Host Controller. It is connected to HS USB Port 2 of OMAP3530. The transceiver used is SMSC USB3320. I am able to boot the GIT kernel on my board. But when I enable the USB EHCI option in menuconfig, the kernel hangs while booting and shows s

[PATCH] DSPBRIDGE: Unused pointer causing Memory Leaks

2009-04-07 Thread Ramirez Luna, Omar
From: Omar Ramirez Luna Date: Tue, 7 Apr 2009 09:51:23 -0500 Subject: [PATCH] DSPBRIDGE: Unused pointer causing Memory Leaks There are some memory leaks whenever a dsp library is loaded. >From my testing I have seen ~160bytes for Audio, ~280 bytes for Audio+Video are being leaked. Also removed

Re: Embedded Linux Conference

2009-04-07 Thread Tony Lindgren
* Tony Lindgren [090406 18:45]: > On Mon, Apr 06, 2009 at 11:45:39PM +, Tony Lindgren wrote: > > On Tue, Apr 07, 2009 at 01:18:05AM +0200, Hans Verkuil wrote: > > > > > > > * Dongsoo Kim [090317 10:36]: > > > > > > > > > > > > > > > How about Monday night after the Dinner (ends at 7pm

RE: [PATCH] PM: OMAP: Fix build with CONFIG_OMAP_PM_NONE set

2009-04-07 Thread Premi, Sanjeev
> -Original Message- > From: linux-omap-ow...@vger.kernel.org > [mailto:linux-omap-ow...@vger.kernel.org] On Behalf Of Roger Quadros > Sent: Tuesday, April 07, 2009 4:49 PM > To: ext Roger Quadros > Cc: Kevin Hilman; linux-omap@vger.kernel.org > Subject: Re: [PATCH] PM: OMAP: Fix build wit

Re: [PATCH 00/02] OMAP3 clock: Remove virtual clock nodes

2009-04-07 Thread Jean Pihet
Hi Rajendra, Kevin, On Friday 03 April 2009 18:59:21 Kevin Hilman wrote: > "Nayak, Rajendra" writes: ... > > Patches generated and apply on latest pm branch from Kevin's pm tree. > > Rajendra, > > This series does not apply against the PM branch. > > It seems your patches have TABs converted to s

RE: Benchmarking: POP flash vs. MMC?

2009-04-07 Thread Woodruff, Richard
> We'd also have to make sure that the comparison is between the linux-omap > kernel and the OMAPZoo kernel, rather than o-z PIO vs. o-z DMA. The > OMAPZoom kernel doesn't post any device register writes. That should > cause any driver using PIO to drag, compared to the l-o kernel. There effetel

Re: [OMAP][sDMA]Fix for possible race condition in omap_free_dma()

2009-04-07 Thread Artem Bityutskiy
Hi Tony, I wonder, what happened to this patch? Shilimkar, Santosh wrote: From: Santosh Shilimkar Fix the possible race condition in omap_free_dma(). Function omap_free_dma() sets the dev_id = -1 and then accesses the channel afterwards to clear it. But setting the dev_id=-1 makes the chann

RE: omap_wdt: modprobe fails

2009-04-07 Thread Woodruff, Richard
> From: linux-omap-ow...@vger.kernel.org [mailto:linux-omap- > ow...@vger.kernel.org] On Behalf Of Roger Quadros > Sent: Tuesday, April 07, 2009 6:11 AM >modprobe omap_wdt fails in omap PM branch. below is the trace log. > any idea why? > >i wonder weather fails in master too. Looks like

Re: [PATCH] PM: OMAP: Fix build with CONFIG_OMAP_PM_NONE set

2009-04-07 Thread Roger Quadros
The patch fixes the following link errors arch/arm/mach-omap2/built-in.o: In function `omap3_round_to_table_rate': /home/roger/maemo/linux/linux-roverx/arch/arm/mach-omap2/clock34xx.c:956: undefined reference to `mpu_opps' /home/roger/maemo/linux/linux-roverx/arch/arm/mach-omap2/clock34xx.c:956:

PM: omap_wdt: modprobe fails

2009-04-07 Thread Roger Quadros
hi, modprobe omap_wdt fails in omap PM branch. below is the trace log. any idea why? i wonder weather fails in master too. regards, -roger [ 37.218078] Unhandled fault: external abort on non-linefetch (0x1028) at 0xd8314034 [ 37.225982] Internal error: : 1028 [#1] [ 37.229888] Modu

RE: i2c_omap: arbitration lost

2009-04-07 Thread Menon, Nishanth
> -Original Message- > From: linux-omap-ow...@vger.kernel.org [mailto:linux-omap- > ow...@vger.kernel.org] On Behalf Of Aguirre Rodriguez, Sergio Alberto > Sent: Monday, April 06, 2009 5:34 PM > To: linux-omap@vger.kernel.org > Subject: i2c_omap: arbitration lost > > <3>i2c_omap i2c_omap.2

[PATCH] PM: OMAP: Fix build with CONFIG_OMAP_PM_NONE set

2009-04-07 Thread Roger Quadros
From: Roger Quadros Date: Tue, 7 Apr 2009 11:10:29 +0300 Subject: [PATCH] PM: OMAP: Fix build with CONFIG_OMAP_PM_NONE set Removes undefined symbol link errors. Required symbols are defined in common.c and omap-pm.h Signed-off-by: Roger Quadros --- arch/arm/plat-omap/common.c |