Re: [PATCH v2 2/3] mmc: davinci_mmc: convert to DMA engine API

2012-09-17 Thread Chris Ball
Hi, On Wed, Aug 22 2012, Koen Kooi wrote: Op 21-08-12 20:43, Matt Porter schreef: Removes use of the DaVinci EDMA private DMA API and replaces it with use of the DMA engine API. Signed-off-by: Matt Porter mpor...@ti.com Runtime tested on hawkboard with 3.6.0-rc2 with rootfs on SD and

Re: [PATCH RESEND 4/5] spi: tegra: remove support of legacy DMA driver based access

2012-09-17 Thread Mark Brown
On Fri, Sep 14, 2012 at 10:11:28AM -0600, Stephen Warren wrote: From: Laxman Dewangan ldewan...@nvidia.com Remove the support code which uses the legacy APB DMA driver for accessing the SPI FIFO. The driver will use the dmaengine based APB DMA driver for accessing reqding/writing to SPI

Re: [PATCH RESEND 5/5] ASoC: tegra: remove support of legacy DMA driver based access

2012-09-17 Thread Mark Brown
On Fri, Sep 14, 2012 at 10:11:29AM -0600, Stephen Warren wrote: From: Laxman Dewangan ldewan...@nvidia.com Remove the support code which uses the legacy APB DMA driver for accessing the I2S FIFO. The driver will use the dmaengine based APB DMA driver for accessing reqding/writing to I2S

[PATCH] spi: pl022: Add clk_{un}prepare() support in runtime PM

2012-09-17 Thread Vipul Kumar Samar
clk_{un}prepare is mandatory for platforms using common clock framework. Add clk_{un}prepare() support for spi-pl022 runtime PM. Signed-off-by: Vipul Kumar Samar vipulkumar.sa...@st.com --- drivers/spi/spi-pl022.c |9 ++--- 1 files changed, 6 insertions(+), 3 deletions(-) diff --git

Re: [PATCH] spi: pl022: Add clk_{un}prepare() support in runtime PM

2012-09-17 Thread viresh kumar
On Mon, Sep 17, 2012 at 4:07 PM, Vipul Kumar Samar vipulkumar.sa...@st.com wrote: clk_{un}prepare is mandatory for platforms using common clock framework. Add clk_{un}prepare() support for spi-pl022 runtime PM. You are not calling these routines in actualy patch.. Fix commit log and add my

Re: [PATCH] spi: pl022: Add clk_{un}prepare() support in runtime PM

2012-09-17 Thread Sergei Shtylyov
Hello. On 17-09-2012 14:37, Vipul Kumar Samar wrote: clk_{un}prepare is mandatory for platforms using common clock framework. Add clk_{un}prepare() support for spi-pl022 runtime PM. Signed-off-by: Vipul Kumar Samar vipulkumar.sa...@st.com [...] @@ -2342,10 +2342,13 @@ static int

Re: [PATCH] spi: pl022: Add clk_{un}prepare() support in runtime PM

2012-09-17 Thread Linus Walleij
On Mon, Sep 17, 2012 at 12:37 PM, Vipul Kumar Samar vipulkumar.sa...@st.com wrote: clk_{un}prepare is mandatory for platforms using common clock framework. Add clk_{un}prepare() support for spi-pl022 runtime PM. Signed-off-by: Vipul Kumar Samar vipulkumar.sa...@st.com This driver does

[PATCH RESEND] spi/designware: Add device tree bindings

2012-09-17 Thread dinguyen
From: Dinh Nguyen dingu...@altera.com Add device tree bindings for designware spi modules, specifically, spi-dw-mmio and spi-dw-pci. Signed-off-by: Dinh Nguyen dingu...@altera.com Cc: Rob Herring rob.herr...@calxeda.com Cc: Paul Gortmaker paul.gortma...@windriver.com Cc: Axel Lin

[PATCH 1/1] spi:clk: preparation for switch to common clock framework

2012-09-17 Thread Murali Karicheri
As a first step towards migrating davinci platforms to use common clock framework, replace all instances of clk_enable() with clk_prepare_enable() and clk_disable() with clk_disable_unprepare(). Until the platform is switched to use the CONFIG_HAVE_CLK_PREPARE Kconfig variable, this just adds a

[PATCH 0/1] spi:clk: preparation for switch to common clock framework

2012-09-17 Thread Murali Karicheri
Hi Arnd, I am working to migrate DaVinci SoCs to common clock framwork. I have following prepare patch for davinci spi driver which is sitting in the list for some time. Could you merge this to linxu-next for v3.6? As the mach-davinci patches are dependent on this, getting this to v3.6 is

Re: [PATCH 2/2] ARM: OMAP2+: Enable pinctrl dummy states

2012-09-17 Thread Matt Porter
On Tue, Sep 11, 2012 at 06:03:07PM -0700, Tony Lindgren wrote: * Matt Porter mpor...@ti.com [120911 12:05]: On Tue, Sep 11, 2012 at 11:35:22AM -0700, Tony Lindgren wrote: Added Linus Walleij to Cc as well. Now I think I really managed to add Linus W to Cc, sent too fast earlier. ...

[PATCH v2 2/2] ARM: OMAP2+: Enable pinctrl dummy states

2012-09-17 Thread Matt Porter
Enable pinctrl dummy states for all OMAP platforms that don't populate DT. This allows drivers to be converted to pinctrl and not generate new warnings on platforms that do not provide pinctrl data. These platforms already have pinmuxes configured before the drivers probe. Signed-off-by: Matt

[PATCH v2 0/2] Add pinctrl support to omap2-mcspi

2012-09-17 Thread Matt Porter
Changes since v1: - warns that pins are not configured by the driver rather than exiting - dummy states are only enabled for OMAP platforms where DT is not populated This series enables pinctrl support for McSPI. Platforms that boot only from DT and rely on

Re: [PATCH v2 0/2] Add pinctrl support to omap2-mcspi

2012-09-17 Thread Matt Porter
On Mon, Sep 17, 2012 at 01:22:16PM -0400, Matt Porter wrote: Changes since v1: - warns that pins are not configured by the driver rather than exiting - dummy states are only enabled for OMAP platforms where DT is not populated This series enables pinctrl

Re: [PATCH v2 1/2] spi: omap2-mcspi: add pinctrl support

2012-09-17 Thread Tony Lindgren
* Matt Porter mpor...@ti.com [120917 10:21]: Adds pinctrl support to support OMAP platforms that boot from DT and rely on pinctrl support to set pinmuxes. Signed-off-by: Matt Porter mpor...@ti.com Acked-by: Tony Lindgren t...@atomide.com --- drivers/spi/spi-omap2-mcspi.c |8

Re: [PATCH v2 2/2] ARM: OMAP2+: Enable pinctrl dummy states

2012-09-17 Thread Tony Lindgren
* Matt Porter mpor...@ti.com [120917 10:21]: Enable pinctrl dummy states for all OMAP platforms that don't populate DT. This allows drivers to be converted to pinctrl and not generate new warnings on platforms that do not provide pinctrl data. These platforms already have pinmuxes configured

Re: [PATCHSET] kthread_worker: reimplement flush_kthread_work() to allow freeing during execution

2012-09-17 Thread Tejun Heo
On Fri, Sep 14, 2012 at 03:50:40PM -0700, Colin Cross wrote: This patch set fixes a reproducible crash I'm seeing on a 3.4.10 kernel. flush_kthread_worker (which is different from flush_kthread_work) is initializing a kthread_work and a completion on the stack, then queuing it and calling

Re: [PATCHSET] kthread_worker: reimplement flush_kthread_work() to allow freeing during execution

2012-09-17 Thread Greg KH
On Mon, Sep 17, 2012 at 12:40:16PM -0700, Tejun Heo wrote: On Fri, Sep 14, 2012 at 03:50:40PM -0700, Colin Cross wrote: This patch set fixes a reproducible crash I'm seeing on a 3.4.10 kernel. flush_kthread_worker (which is different from flush_kthread_work) is initializing a kthread_work

- 50% sur plus de 70 magazines pendant 8 mois

2012-09-17 Thread Plusdemags.com par Galeriedesmarques.fr
Pour voir le message, veuillez utiliser un lecteur de mail compatible HTML Lien miroir : http://m10-fr.com/mc10_m/YT04JmI9MTk4NDkmYz0xOTYxNjQxJmQ9MjAxMi0wOS0xNyAxMDoxMDowMSZlPTEmaD0xOTg0OCZmPTE5ODQ5Jmc9MTk4NDk= Lien de désinscription :

[PATCH resend] spi core: Provide means to instantiate devices through sysfs

2012-09-17 Thread Guenter Roeck
The I2C core provides a means to instantiate devices from userspace using sysfs attributes. Provide the same mechanism for SPI devices. Signed-off-by: Guenter Roeck li...@roeck-us.net --- This helped me tremendously for testing new SPI master and client drivers. Maybe it is useful for others as

Re: [PATCH] spi: pl022: Add clk_{un}prepare() support in runtime PM

2012-09-17 Thread viresh kumar
On Mon, Sep 17, 2012 at 7:09 PM, Linus Walleij linus.wall...@linaro.org wrote: This driver does clk_prepare/unprepare at probe and removed, so I guess what you're trying to say is that on your platform the clk_unprepare() process context call is needed to save power? Please elaborate... Hi

Re: [PATCH v2 1/2] spi: omap2-mcspi: add pinctrl support

2012-09-17 Thread Shubhrajyoti
On Monday 17 September 2012 10:52 PM, Matt Porter wrote: Adds pinctrl support to support OMAP platforms that boot from DT and rely on pinctrl support to set pinmuxes. Signed-off-by: Matt Porter mpor...@ti.com --- looks good to me. you may want to repost with Mark in cc to review. Acked-by: