[PATCH] net: micrel : ks8851-ml: add vdd-supply support

2014-03-21 Thread Nishanth Menon
Few platforms use external regulator to keep the ethernet MAC supplied. So, request and enable the regulator for driver functionality. Fixes: 66fda75f47dc (regulator: core: Replace direct ops-disable usage) Reported-by: Russell King rmk+ker...@arm.linux.org.uk Suggested-by: Markus Pargmann

Re: [PATCH 0/4] clk: dt: add support for default rate/parent

2014-03-21 Thread Tero Kristo
On 03/20/2014 11:23 PM, Mike Turquette wrote: Quoting Tero Kristo (2014-03-05 05:10:17) Ping. Mike, any feedback on this? Hi Tero, Have you seen Sylwester's approach[1]? I prefer it since it is more device-oriented and less centralized. The clock consumer enumerates the default parent or

Re: [PATCH 0/4] clk: dt: add support for default rate/parent

2014-03-21 Thread Peter De Schrijver
On Thu, Mar 20, 2014 at 10:23:08PM +0100, Mike Turquette wrote: Quoting Tero Kristo (2014-03-05 05:10:17) Ping. Mike, any feedback on this? Hi Tero, Have you seen Sylwester's approach[1]? I prefer it since it is more device-oriented and less centralized. The clock consumer

Re: [PATCH] net: micrel : ks8851-ml: add vdd-supply support

2014-03-21 Thread Markus Pargmann
Hi, On Fri, Mar 21, 2014 at 01:52:48AM -0500, Nishanth Menon wrote: Few platforms use external regulator to keep the ethernet MAC supplied. So, request and enable the regulator for driver functionality. Fixes: 66fda75f47dc (regulator: core: Replace direct ops-disable usage) Reported-by:

[PATCH V2] net: micrel : ks8851-ml: add vdd-supply support

2014-03-21 Thread Nishanth Menon
Few platforms use external regulator to keep the ethernet MAC supplied. So, request and enable the regulator for driver functionality. Fixes: 66fda75f47dc (regulator: core: Replace direct ops-disable usage) Reported-by: Russell King rmk+ker...@arm.linux.org.uk Suggested-by: Markus Pargmann

Re: [PATCH V2] net: micrel : ks8851-ml: add vdd-supply support

2014-03-21 Thread Nishanth Menon
On 03/21/2014 04:28 AM, Nishanth Menon wrote: + ks-vdd_reg = regulator_get_optional(spi-dev, vdd); ok, that is unbelievable.. no git commit --amend :(.. Apologies on the spam.. will resent. -- Regards, Nishanth Menon -- To unsubscribe from this list: send the line unsubscribe linux-omap

[RESEND PATCH V2] net: micrel : ks8851-ml: add vdd-supply support

2014-03-21 Thread Nishanth Menon
Few platforms use external regulator to keep the ethernet MAC supplied. So, request and enable the regulator for driver functionality. Fixes: 66fda75f47dc (regulator: core: Replace direct ops-disable usage) Reported-by: Russell King rmk+ker...@arm.linux.org.uk Suggested-by: Markus Pargmann

Re: DSS DT changes

2014-03-21 Thread Tomi Valkeinen
On 19/03/14 17:30, Tony Lindgren wrote: * Tomi Valkeinen tomi.valkei...@ti.com [140319 04:29]: Hi Tony, Is it too late to get the DSS dts changes via arm tree? Yes too late.. I now got everything working fine so that the dts changes and the omapdss driver changes can be merged

[PATCH v9 resend 2/3] mmc: omap_hsmmc: Pin remux workaround to support SDIO interrupt on AM335x

2014-03-21 Thread Andreas Fenkart
The am335x can't detect pending cirq in PM runtime suspend. This patch reconfigures dat1 as a GPIO before going to suspend. SDIO interrupts are detected with the GPIO, the GPIO will only wake the module from suspend, SDIO irq detection will still happen through the IP block. Idea of remuxing the

[PATCH v9 resend 0/3] mmc: omap_hsmmc: Enable SDIO IRQ.

2014-03-21 Thread Andreas Fenkart
Resend of v8, with Chris Ball on cc and following changes. v9 - extended comment about why wake-irq is needed - drop double '(' ')' around card_detect_irq - drop final '.' in in subject line of patch v8 - rebased on top of Tony Lindgrent...@atomide.com changes - improved changelog describing

[PATCH v9 resend 3/3] mmc: omap_hsmmc: Extend debugfs for SDIO IRQ, GPIO and pinmux

2014-03-21 Thread Andreas Fenkart
Add SDIO IRQ entries to debugfs entry. Note that PSTATE shows current state of data lines, incl. SDIO IRQ pending Signed-off-by: Andreas Fenkart afenk...@gmail.com Signed-off-by: Tony Lindgren t...@atomide.com diff --git a/drivers/mmc/host/omap_hsmmc.c b/drivers/mmc/host/omap_hsmmc.c index

[PATCH v9 resend 1/3] mmc: omap_hsmmc: Enable SDIO interrupt

2014-03-21 Thread Andreas Fenkart
There have been various patches floating around for enabling the SDIO IRQ for hsmmc, but none of them ever got merged. Probably the reason for not merging the SDIO interrupt patches has been the lack of wake-up path for SDIO on some omaps that has also needed remuxing the SDIO DAT1 line to a GPIO

Re: [PATCH 23/62] ARM: omap1: fix building without 32K_TIMER

2014-03-21 Thread Arnd Bergmann
On Wednesday 19 March 2014, Tony Lindgren wrote: * Felipe Balbi ba...@ti.com [140319 13:06]: On Wed, Mar 19, 2014 at 02:59:13PM -0500, Felipe Balbi wrote: I had sent a fix for months and months ago, what happened to it ? Here http://marc.info/?l=linux-omapm=138963632408031w=2

Re: [PATCH v9 resend 1/3] mmc: omap_hsmmc: Enable SDIO interrupt

2014-03-21 Thread Balaji T K
On Friday 21 March 2014 05:50 PM, Andreas Fenkart wrote: Thanks Andreas for the patch series I rebased against latest mmc-next, made few changes to your patch. I have hosted your series along with devm cleanups on a branch[1] for testing [1]

[PATCH 1/9] mmc: omap_hsmmc: use devm_clk_get

2014-03-21 Thread Balaji T K
With devm_clk_get conversion clk_put can be removed in clean up path Signed-off-by: Balaji T K balaj...@ti.com --- drivers/mmc/host/omap_hsmmc.c | 15 --- 1 files changed, 4 insertions(+), 11 deletions(-) diff --git a/drivers/mmc/host/omap_hsmmc.c b/drivers/mmc/host/omap_hsmmc.c

[PATCH 2/9] mmc: omap_hsmmc: use devm_request_irq

2014-03-21 Thread Balaji T K
With devm_request_irq conversion free_irq can be removed in clean up path Signed-off-by: Balaji T K balaj...@ti.com --- drivers/mmc/host/omap_hsmmc.c |7 ++- 1 files changed, 2 insertions(+), 5 deletions(-) diff --git a/drivers/mmc/host/omap_hsmmc.c b/drivers/mmc/host/omap_hsmmc.c index

[PATCH 0/9] mmc: omap_hsmmc: convert to use devm_* and enable sdio irq

2014-03-21 Thread Balaji T K
Andreas Fenkart (3): mmc: omap_hsmmc: Enable SDIO interrupt mmc: omap_hsmmc: Pin remux workaround to support SDIO interrupt on AM335x mmc: omap_hsmmc: Extend debugfs for SDIO IRQ, GPIO and pinmux Balaji T K (6): mmc: omap_hsmmc: use devm_clk_get mmc: omap_hsmmc: use devm_request_irq

[PATCH 3/9] mmc: omap_hsmmc: use devm_request_threaded_irq

2014-03-21 Thread Balaji T K
With devm_request_threaded_irq conversion free_irq can be removed in clean up path Signed-off-by: Balaji T K balaj...@ti.com --- drivers/mmc/host/omap_hsmmc.c |9 +++-- 1 files changed, 3 insertions(+), 6 deletions(-) diff --git a/drivers/mmc/host/omap_hsmmc.c

[PATCH 5/9] mmc: omap_hsmmc: use devm_ioremap

2014-03-21 Thread Balaji T K
With devm_ioremap conversion iounmap can be removed in clean up path Signed-off-by: Balaji T K balaj...@ti.com --- drivers/mmc/host/omap_hsmmc.c |4 +--- 1 files changed, 1 insertions(+), 3 deletions(-) diff --git a/drivers/mmc/host/omap_hsmmc.c b/drivers/mmc/host/omap_hsmmc.c index

[PATCH 6/9] mmc: omap_hsmmc: Enable SDIO interrupt

2014-03-21 Thread Balaji T K
From: Andreas Fenkart afenk...@gmail.com There have been various patches floating around for enabling the SDIO IRQ for hsmmc, but none of them ever got merged. Probably the reason for not merging the SDIO interrupt patches has been the lack of wake-up path for SDIO on some omaps that has also

[PATCH 4/9] mmc: omap_hsmmc: use devm_request_mem_region

2014-03-21 Thread Balaji T K
With devm_request_mem_region conversion release_mem_region can be removed in clean up path Signed-off-by: Balaji T K balaj...@ti.com --- drivers/mmc/host/omap_hsmmc.c | 11 ++- 1 files changed, 2 insertions(+), 9 deletions(-) diff --git a/drivers/mmc/host/omap_hsmmc.c

[PATCH 7/9] mmc: omap_hsmmc: Pin remux workaround to support SDIO interrupt on AM335x

2014-03-21 Thread Balaji T K
From: Andreas Fenkart afenk...@gmail.com The am335x can't detect pending cirq in PM runtime suspend. This patch reconfigures dat1 as a GPIO before going to suspend. SDIO interrupts are detected with the GPIO, the GPIO will only wake the module from suspend, SDIO irq detection will still happen

[PATCH 8/9] mmc: omap_hsmmc: Extend debugfs for SDIO IRQ, GPIO and pinmux

2014-03-21 Thread Balaji T K
From: Andreas Fenkart afenk...@gmail.com Add SDIO IRQ entries to debugfs entry. Note that PSTATE shows current state of data lines, incl. SDIO IRQ pending Signed-off-by: Andreas Fenkart afenk...@gmail.com Signed-off-by: Tony Lindgren t...@atomide.com Signed-off-by: Balaji T K balaj...@ti.com ---

[PATCH 9/9] mmc: omap_hsmmc: enable wakeup event for sdio

2014-03-21 Thread Balaji T K
To detect sdio irqs properly without spurious events, OMAP4 needs IWE in CON and CTPL, CLKEXTFREE in HCTL to be set Signed-off-by: Balaji T K balaj...@ti.com --- drivers/mmc/host/omap_hsmmc.c | 13 - 1 files changed, 12 insertions(+), 1 deletions(-) diff --git

Re: [PATCH 4/9] mmc: omap_hsmmc: use devm_request_mem_region

2014-03-21 Thread Felipe Balbi
On Fri, Mar 21, 2014 at 09:47:33PM +0530, Balaji T K wrote: With devm_request_mem_region conversion release_mem_region can be removed in clean up path Signed-off-by: Balaji T K balaj...@ti.com --- drivers/mmc/host/omap_hsmmc.c | 11 ++- 1 files changed, 2 insertions(+), 9

Re: [PATCH 4/9] mmc: omap_hsmmc: use devm_request_mem_region

2014-03-21 Thread Balaji T K
On Friday 21 March 2014 09:48 PM, Felipe Balbi wrote: On Fri, Mar 21, 2014 at 09:47:33PM +0530, Balaji T K wrote: With devm_request_mem_region conversion release_mem_region can be removed in clean up path Signed-off-by: Balaji T K balaj...@ti.com --- drivers/mmc/host/omap_hsmmc.c | 11

Re: [PATCH 4/9] mmc: omap_hsmmc: use devm_request_mem_region

2014-03-21 Thread Felipe Balbi
On Fri, Mar 21, 2014 at 09:57:52PM +0530, Balaji T K wrote: On Friday 21 March 2014 09:48 PM, Felipe Balbi wrote: On Fri, Mar 21, 2014 at 09:47:33PM +0530, Balaji T K wrote: With devm_request_mem_region conversion release_mem_region can be removed in clean up path Signed-off-by: Balaji T K

[PATCH RFC 0/2] Move dai-link level properties away from dai subnodes

2014-03-21 Thread Jyri Sarha
This patch is implemented on top of late patches from Jean-Francois Moine [1]. The patches implement the main part of the simple-card changes discussed in alsa-devel mailing list. [1] http://mailman.alsa-project.org/pipermail/alsa-devel/2014-March/074592.html Best regards, Jyri Jyri Sarha

[PATCH RFC 2/2] ASoC: simple-card: Move dai-link level properties away from dai subnodes

2014-03-21 Thread Jyri Sarha
The properties like format, bitclock-master, frame-master, bitclock-inversion, and frame-inversion should be common to the dais connected with a dai-link. For bitclock-master and frame-master properties to be unambiguous they need to indicate the mastering dai node with a phandle. Signed-off-by:

[PATCH RFC 1/2] ASoC: core: Update snd_soc_of_parse_daifmt() interface

2014-03-21 Thread Jyri Sarha
Adds struct device_node **bitclkmaster and struct device_node **framemaster function parameters. With the new syntax bitclock-master and frame-master properties can explicitly indicate the dai-link bit-clock and frame masters with a phandle. Signed-off-by: Jyri Sarha jsa...@ti.com ---

Re: [RFC] possible removal of omap-serial

2014-03-21 Thread Tony Lindgren
* Felipe Balbi ba...@ti.com [140320 19:57]: On Thu, Mar 20, 2014 at 09:45:42PM -0500, Robert Nelson wrote: On Thu, Mar 20, 2014 at 9:36 PM, Greg KH gre...@linuxfoundation.org wrote: On Thu, Mar 20, 2014 at 08:37:29PM -0500, Felipe Balbi wrote: On Thu, Mar 20, 2014 at 08:35:57PM -0500,

Re: [RFC] possible removal of omap-serial

2014-03-21 Thread Felipe Balbi
Hi, On Fri, Mar 21, 2014 at 10:10:30AM -0700, Tony Lindgren wrote: On the support side, I'm not looking forward to this for beagle/panda users. We've already converted them once from ttySx - ttyOx back in 2.6.33/2.6.34? days. That was an irc/email/u-boot/kernel nightmare... that's

Re: [RFC] possible removal of omap-serial

2014-03-21 Thread Greg KH
On Fri, Mar 21, 2014 at 12:36:53PM -0500, Felipe Balbi wrote: Hi, On Fri, Mar 21, 2014 at 10:10:30AM -0700, Tony Lindgren wrote: On the support side, I'm not looking forward to this for beagle/panda users. We've already converted them once from ttySx - ttyOx back in 2.6.33/2.6.34?

Re: [PATCH v3 2/6] iio: pulse: add TI ECAP driver

2014-03-21 Thread Matt Ranostay
On Wed, Feb 5, 2014 at 11:01 AM, Matt Porter mpor...@linaro.org wrote: Adds support for capturing PWM signals using the TI ECAP peripheral. This driver supports triggered buffer capture of pulses on multiple ECAP instances. In addition, the driver supports configurable polarity of the signal