Re: SDIO device binding

2014-12-11 Thread Eliad Peller
On Thu, Dec 11, 2014 at 5:37 PM, Ulf Hansson wrote: > On 11 December 2014 at 14:32, Eliad Peller wrote: >> hi, >> >> I'm looking for the proper way to pass SDIO device properties using >> devicetree. >> >> There seems to be a patchset sent previou

SDIO device binding

2014-12-11 Thread Eliad Peller
hi, I'm looking for the proper way to pass SDIO device properties using devicetree. There seems to be a patchset sent previously by Sascha Hauer to handle it, but for some reason it didn't get merged, and i can't find any further discussion regarding the patches. https://patchwork.ozlabs.org/pat

Re: [PATCH 3/3] omap: board-sdp4430: declare support for MMC_PM_KEEP_POWER

2011-11-28 Thread Eliad Peller
On Mon, Nov 28, 2011 at 11:58 AM, Luciano Coelho wrote: > On Mon, 2011-11-28 at 11:26 +0200, Igor Grinberg wrote: >> On 11/28/11 11:08, Luciano Coelho wrote: >> > I may do it for panda later on, if I get the time to test it.  For >> > beagle, it doesn't really apply, because the wl12xx support is

Re: [PATCH 2/3] omap_hsmmc: add pm_caps field

2011-11-28 Thread Eliad Peller
On Mon, Nov 28, 2011 at 12:01 PM, Igor Grinberg wrote: > On 11/28/11 11:23, Eliad Peller wrote: >> hi Igor, >> >> On Mon, Nov 28, 2011 at 11:15 AM, Igor Grinberg >> wrote: >>> On 11/22/11 16:02, Eliad Peller wrote: >>>> Add pm_caps field to omap

Re: [PATCH 2/3] omap_hsmmc: add pm_caps field

2011-11-28 Thread Eliad Peller
hi Igor, On Mon, Nov 28, 2011 at 11:15 AM, Igor Grinberg wrote: > On 11/22/11 16:02, Eliad Peller wrote: >> Add pm_caps field to omap2_hsmmc_info and omap_mmc_slot_data >> structs, so we will be able to indicate mmc pm capabilities >> in the board file. > > Shouldn&#

Re: [PATCH 3/3] omap: board-sdp4430: declare support for MMC_PM_KEEP_POWER

2011-11-28 Thread Eliad Peller
On Mon, Nov 28, 2011 at 9:50 AM, Coelho, Luciano wrote: > On Tue, Nov 22, 2011 at 4:02 PM, Eliad Peller wrote: >> Declare support for keeping the power of the wlan chip >> while suspended. this is needed for Wakeup-On-Wireless. >> >> Signed-off-by: Eliad Peller >

[PATCH 3/3] omap: board-sdp4430: declare support for MMC_PM_KEEP_POWER

2011-11-22 Thread Eliad Peller
Declare support for keeping the power of the wlan chip while suspended. this is needed for Wakeup-On-Wireless. Signed-off-by: Eliad Peller --- arch/arm/mach-omap2/board-4430sdp.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/arch/arm/mach-omap2/board-4430sdp.c b/arch

[PATCH 2/3] omap_hsmmc: add pm_caps field

2011-11-22 Thread Eliad Peller
Add pm_caps field to omap2_hsmmc_info and omap_mmc_slot_data structs, so we will be able to indicate mmc pm capabilities in the board file. Signed-off-by: Eliad Peller --- arch/arm/mach-omap2/hsmmc.c |1 + arch/arm/mach-omap2/hsmmc.h |1 + arch/arm/plat-omap/include

[PATCH 1/3] omap_hsmmc: consider MMC_PM_KEEP_POWER on suspend/resume

2011-11-22 Thread Eliad Peller
When an mmc card has the MMC_PM_KEEP_POWER flag, it shouldn't be powered off on suspend (and thus doesn't have to be powered-on on resume) While on it, change the suspend flow a bit, to make it a bit easier to follow. Signed-off-by: Eliad Peller --- drivers/mmc/host/omap_hsmm

Re: [Query] mmc: core "MMC_PM_KEEP_POWER"

2011-11-22 Thread Eliad Peller
hi Ulf, On Tue, Nov 22, 2011 at 3:29 PM, Ulf Hansson wrote: > In mmc_resume_host we clear the MMC_PM_KEEP_POWER flag from the pm_flags > bitfield. This is done by a patch from Eliad Peller a while ago, "mmc: clear > MMC_PM_KEEP_POWER flag on resume" > > I would like t

[PATCH] mmc: clear MMC_PM_KEEP_POWER flag on resume

2011-05-09 Thread Eliad Peller
Since the MMC_PM_KEEP_POWER flag should be set on each suspend, it should also cleared on each resume. Upon resuming, we have to know if power was kept (for re-initialization, etc.), so clear it just after resuming. Signed-off-by: Eliad Peller --- drivers/mmc/core/core.c |1 + 1 files