Re: [PATCH v2 03/20] mmc: support embedded data field in mmc_host

2010-07-29 Thread Ohad Ben-Cohen
Hi Vitaly, On Wed, Jul 28, 2010 at 10:47 PM, Vitaly Wool vitalyw...@gmail.com wrote: On Wed, Jul 21, 2010 at 7:33 PM, Ohad Ben-Cohen o...@wizery.com wrote: Add support to set/get mmc_host private embedded data. This is needed to allow software to dynamically create (and remove) SDIO

Re: [PATCH] twl4030 reboot workaround

2010-07-29 Thread Mikko Rapeli
On Wed, Jul 28, 2010 at 12:18:11PM +0200, De-Schrijver Peter (Nokia-MS/Helsinki) wrote: On Wed, Jul 28, 2010 at 11:41:32AM +0200, Rapeli Mikko (EXT-Ixonos/Oulu) wrote: From: Mikko Rapeli ext-mikko.rap...@nokia.com Original patch: http://marc.info/?l=linux-omapm=126522625032441w=2

Re: [PATCH] twl4030 reboot workaround

2010-07-29 Thread Mikko Rapeli
On Wed, Jul 28, 2010 at 12:07:32PM +0200, ext Gopinath, Thara wrote: Minor nit. Insert a blank line. Thanks, will send a new version. -Mikko -- To unsubscribe from this list: send the line unsubscribe linux-omap in the body of a message to majord...@vger.kernel.org More majordomo info at

Re: [PATCH] twl4030 reboot workaround

2010-07-29 Thread Mikko Rapeli
On Wed, Jul 28, 2010 at 05:47:36PM +0200, ext Mike Turquette wrote: This method is much better than the method I proposed before. Taking into account the comments from others, ACK. Thanks, I'll send an updated version with that one new line. Do you have an idea how the watchdog reset case

[PATCH v2] twl4030 reboot workaround

2010-07-29 Thread Mikko Rapeli
From: Mikko Rapeli ext-mikko.rap...@nokia.com Original patch: http://marc.info/?l=linux-omapm=126522625032441w=2 Removes TWL4030 sleep script prior to rebooting, only on OMAP3. This is necessary since DPLL3 reset causes SYS_OFFMODE pin to go low, resulting in the sleep script being executed on

Re: [PATCH 1/1] DSPBRIDGE: cache operation against kernel address instead of user's

2010-07-29 Thread Hiroshi DOYU
Hi Felipe, On Sun, 25 Jul 2010 22:10:32 +0200 ext Felipe Contreras felipe.contre...@gmail.com wrote: Hi, While investigating a bug in maemo[1] I found that this patch triggers it, I think I found the reason. It probably doesn't matter for upstream anymore. On Fri, Nov 6, 2009 at 3:34

Re: [PATCH 5/5 v4] omap2/3/4: serial: errata i202: fix for MDR1 access

2010-07-29 Thread Roger Quadros
Hi, On 06/23/2010 07:17 AM, ext Nishanth Menon wrote: From: Deepak Kdeepa...@ti.com Original patch: http://git.omapzoom.org/?p=kernel/omap.git;a=commitdiff;h=42d4a342c009bd9727c100abc8a4bc3063c22f0c Errata i202 (OMAP3430 - 1.12, OMAP3630 - 1.6): UART module MDR1 register access can cause a

[PATCH 00/11] OMAP: DMA: HWMOD and DMA as platform driver

2010-07-29 Thread Manjunatha GK
This patch series is refined version of earlier patches posted at: http://www.spinics.net/lists/linux-omap/index.html#33393 These changes are based on comments received during internal discussions which has changes(compared to previous version) such as: - Code optimization - Patches are

[PATCH 03/11] OMAP2430: DMA: HWMOD: Add hwmod data structures

2010-07-29 Thread Manjunatha GK
This patch adds OMAP2430 DMA hwmod structures. Signed-off-by: Manjunatha GK manj...@ti.com --- arch/arm/mach-omap2/omap_hwmod_2430_data.c | 89 1 files changed, 89 insertions(+), 0 deletions(-) diff --git a/arch/arm/mach-omap2/omap_hwmod_2430_data.c

[PATCH 02/11] OMAP2420: DMA: HWMOD: Add hwmod data structures

2010-07-29 Thread Manjunatha GK
This patch adds OMAP2420 DMA hwmod structures. Signed-off-by: Manjunatha GK manj...@ti.com --- arch/arm/mach-omap2/omap_hwmod_2420_data.c | 89 1 files changed, 89 insertions(+), 0 deletions(-) diff --git a/arch/arm/mach-omap2/omap_hwmod_2420_data.c

[PATCH 04/11] OMAP3: DMA: HWMOD: Add hwmod data structures

2010-07-29 Thread Manjunatha GK
This patch adds OMAP3 DMA hwmod structures. Signed-off-by: Manjunatha GK manj...@ti.com --- arch/arm/mach-omap2/omap_hwmod_3xxx_data.c | 89 1 files changed, 89 insertions(+), 0 deletions(-) diff --git a/arch/arm/mach-omap2/omap_hwmod_3xxx_data.c

[PATCH 05/11] OMAP4: DMA: HWMOD: update OMAP4 data base

2010-07-29 Thread Manjunatha GK
The OMAP4 hwmod data base is updated with DMA controller attributes. Signed-off-by: Manjunatha GK manj...@ti.com --- arch/arm/mach-omap2/omap_hwmod_44xx_data.c | 19 ++- 1 files changed, 14 insertions(+), 5 deletions(-) diff --git a/arch/arm/mach-omap2/omap_hwmod_44xx_data.c

[PATCH 01/11] OMAP: DMA: Introduce DMA device attributes

2010-07-29 Thread Manjunatha GK
This patches introduces OMAP DMA device attributes for using the same in DMA platform driver for all OMAP's and HWMOD database(OMAP2PLUS onwards) Signed-off-by: Manjunatha GK manj...@ti.com --- arch/arm/plat-omap/include/plat/dma.h | 22 ++ 1 files changed, 22

[PATCH 06/11] OMAP1: DMA: Introduce DMA driver as platform driver

2010-07-29 Thread Manjunatha GK
This patch introduces OMAP1 DMA driver as platform device and adds support for registering through platform device layer. Signed-off-by: Manjunatha GK manj...@ti.com --- arch/arm/mach-omap1/dma.c | 234 arch/arm/mach-omap1/include/mach/dma.h | 80

[PATCH 11/11] sDMA: descriptor autoloading feature

2010-07-29 Thread Manjunatha GK
From: Venkatraman S svenk...@ti.com Add sDMA driver support for descriptor autoloading feature. Descriptor autoloading is OMAP sDMA v5 hardware capability that can be exploited for scatter gather scenarios, currently available in OMAP3630 and OMAP4430. The feature works as described below. 1. A

[PATCH 07/11] OMAP2/3/4: DMA: HWMOD: Device registration

2010-07-29 Thread Manjunatha GK
This patch converts omap2/3/4 dma driver into platform devices through using omap hwmod, omap device and runtime pm frameworks. Signed-off-by: Manjunatha GK manj...@ti.com --- arch/arm/mach-omap2/dma.c | 134 arch/arm/mach-omap2/include/mach/dma.h |

[PATCH 08/11] OMAP: DMA: Convert DMA library into DMA platform Driver

2010-07-29 Thread Manjunatha GK
This patch converts DMA library into DMA platform driver and make use of platform data provided by HWMOD data base for OMAP2PLUS onwards. For OMAP1 processors, the DMA driver in mach-omap uses resource structures for getting platform data. Signed-off-by: Manjunatha GK manj...@ti.com ---

RE: [PATCH 11/11] sDMA: descriptor autoloading feature

2010-07-29 Thread G, Manjunath Kondaiah
-Original Message- From: linux-omap-ow...@vger.kernel.org [mailto:linux-omap-ow...@vger.kernel.org] On Behalf Of G, Manjunath Kondaiah Sent: Thursday, July 29, 2010 3:29 PM To: linux-omap@vger.kernel.org Cc: S, Venkatraman; Cousson, Benoit; Kevin Hilman; Paul Walmsley; Tony

RE: [PATCH resend] OMAP: DSS2: Replace strncmp() with sysfs_streq() in overlay_manager_store()

2010-07-29 Thread Premi, Sanjeev
-Original Message- From: Taneja, Archit Sent: Thursday, July 29, 2010 11:27 AM To: Premi, Sanjeev; tomi.valkei...@nokia.com Cc: linux-omap@vger.kernel.org Subject: RE: [PATCH resend] OMAP: DSS2: Replace strncmp() with sysfs_streq() in overlay_manager_store() [snip]...[snip]

RE: [PATCH resend] OMAP: DSS2: Replace strncmp() with sysfs_streq() in overlay_manager_store()

2010-07-29 Thread Taneja, Archit
[snip] [sp] This explains. And my earlier comment was to update the description with need for change. I believe quick summary the discussion above will be good for the patch. Okay, will do. But what am is supposed to add more in the summary? Should I add how sysfs_streq is a

RE: [PATCH resend] OMAP: DSS2: Replace strncmp() with sysfs_streq() in overlay_manager_store()

2010-07-29 Thread Premi, Sanjeev
-Original Message- From: Taneja, Archit Sent: Thursday, July 29, 2010 4:40 PM To: Premi, Sanjeev; tomi.valkei...@nokia.com Cc: linux-omap@vger.kernel.org Subject: RE: [PATCH resend] OMAP: DSS2: Replace strncmp() with sysfs_streq() in overlay_manager_store() [snip]

Re: [PATCH 01/11] OMAP: DMA: Introduce DMA device attributes

2010-07-29 Thread Cousson, Benoit
Hi Manjunatha, I just have a couple of minor comments. On 7/29/2010 11:58 AM, G, Manjunath Kondaiah wrote: This patches introduces OMAP DMA device attributes for using the same in DMA platform driver for all OMAP's and HWMOD database(OMAP2PLUS onwards) Signed-off-by: Manjunatha

Re: [PATCH 05/11] OMAP4: DMA: HWMOD: update OMAP4 data base

2010-07-29 Thread Cousson, Benoit
Some more comments about dma_ prefix... On 7/29/2010 11:58 AM, G, Manjunath Kondaiah wrote: The OMAP4 hwmod data base is updated with DMA controller attributes. Signed-off-by: Manjunatha GKmanj...@ti.com --- arch/arm/mach-omap2/omap_hwmod_44xx_data.c | 19 ++- 1 files

RE: [PATCH 3/5] omap:hwspinlock-added hwspinlock driver

2010-07-29 Thread Kanigeri, Hari
Yogesh, Nice to see your email. +/* Release a spinlock */ +int hwspinlock_unlock(struct hwspinlock *handle) +{ + if (WARN_ON(handle == NULL)) + return -EINVAL; + + /* Release it by writing 0 to it */ + writel(0, handle-lock_reg); [[Yogesh

Re: [PATCH 3/5] omap:hwspinlock-added hwspinlock driver

2010-07-29 Thread Cousson, Benoit
On 7/29/2010 3:14 PM, Kanigeri, Hari wrote: Yogesh, Nice to see your email. +/* Release a spinlock */ +int hwspinlock_unlock(struct hwspinlock *handle) +{ + if (WARN_ON(handle == NULL)) + return -EINVAL; + + /* Release it by writing 0 to it */ + writel(0,

RE: [PATCH 3/5] omap:hwspinlock-added hwspinlock driver

2010-07-29 Thread Kanigeri, Hari
Sanjeev, Thanks for your comments. -Original Message- From: Premi, Sanjeev Sent: Wednesday, July 28, 2010 11:58 AM To: Kanigeri, Hari; Linux Omap; Tony Lindgren Cc: Shilimkar, Santosh; Cousson, Benoit; Que, Simon Subject: RE: [PATCH 3/5] omap:hwspinlock-added hwspinlock driver

Re: [PATCH 3/5] omap:hwspinlock-added hwspinlock driver

2010-07-29 Thread Nishanth Menon
Kanigeri, Hari had written, on 07/19/2010 11:50 AM, the following: From: Simon Que s...@ti.com Created driver for OMAP hardware spinlock. This driver supports: - Reserved spinlocks for internal use - Dynamic allocation of unreserved locks - Lock, unlock, and trylock functions, with or without

Re: [PATCH v2 03/20] mmc: support embedded data field in mmc_host

2010-07-29 Thread Vitaly Wool
Hi Ohad, On Thu, Jul 29, 2010 at 8:00 AM, Ohad Ben-Cohen o...@wizery.com wrote: To my understanding, this data doesn't belong to mmc_host. It's not a host data at all. E. g. imagine a GPIO IRQ for some SDIO chip -- it's totally unrelated to host. I think a cleaner way would be to introduce

Re: [PATCH v2] twl4030 reboot workaround

2010-07-29 Thread Mike Rapoport
Hi On Thu, Jul 29, 2010 at 9:41 AM, Mikko Rapeli ext-mikko.rap...@nokia.com wrote: From: Mikko Rapeli ext-mikko.rap...@nokia.com Original patch: http://marc.info/?l=linux-omapm=126522625032441w=2 Removes TWL4030 sleep script prior to rebooting, only on OMAP3. This is necessary since DPLL3

Re: [PATCH 1/1] DSPBRIDGE: cache operation against kernel address instead of user's

2010-07-29 Thread Felipe Contreras
On Thu, Jul 29, 2010 at 10:08 AM, Hiroshi DOYU hiroshi.d...@nokia.com wrote: On Sun, 25 Jul 2010 22:10:32 +0200 ext Felipe Contreras felipe.contre...@gmail.com wrote: On Fri, Nov 6, 2009 at 3:34 PM, Hiroshi DOYU hiroshi.d...@nokia.com wrote: @@ -690,14 +732,19 @@ static int

OMAP DSS2 coming out of OFF mode without restoring context

2010-07-29 Thread Laine Walker-Avina
Hi, I'm having a problem where the DSS driver isn't restoring the framebuffer parameters after going in and out of blanking with OFF mode enabled. The problem appears to be in dss_get_ctx_id() in that pdata-get_last_off_on_transaction_id is 0. Commenting out the call to dss_need_ctx_restore() in

[PATCH v2] OMAP: Make set_gpmc_timing_reg aware of the TIMEPARAGRANULARITY flag

2010-07-29 Thread Laine Walker-Avina
This patch modifies the math used to convert clock ticks to nanoseconds so that it is aware of the effect of the TIMEPARAGRANULARITY flag which acts as a divide by 2 to the GPMC timing registers. This enables the use of slower devices on the GPMC bus. --- arch/arm/mach-omap2/gpmc.c | 11

RE: [PATCH 01/11] OMAP: DMA: Introduce DMA device attributes

2010-07-29 Thread G, Manjunath Kondaiah
-Original Message- From: Cousson, Benoit Sent: Thursday, July 29, 2010 6:06 PM To: G, Manjunath Kondaiah Cc: linux-omap@vger.kernel.org; Kevin Hilman; Paul Walmsley; Tony Lindgren; Sawant, Anand; Shilimkar, Santosh; Nayak, Rajendra; Basak, Partha; Varadarajan, Charulatha

[PATCH resend 11/11] sDMA: descriptor autoloading feature

2010-07-29 Thread Manjunatha GK
From: Venkatraman S svenk...@ti.com Add sDMA driver support for descriptor autoloading feature. Descriptor autoloading is OMAP sDMA v5 hardware capability that can be exploited for scatter gather scenarios, currently available in OMAP3630 and OMAP4430. The feature works as described below. 1. A

Re: [PATCH v2] twl4030 reboot workaround

2010-07-29 Thread Mikko Rapeli
On Thu, Jul 29, 2010 at 09:10:43PM +0200, ext Mike Rapoport wrote: On Thu, Jul 29, 2010 at 9:41 AM, Mikko Rapeli ext-mikko.rap...@nokia.com wrote: From: Mikko Rapeli ext-mikko.rap...@nokia.com Original patch: http://marc.info/?l=linux-omapm=126522625032441w=2 Removes TWL4030 sleep