Re: [PATCH V2 00/16] omap_hsmmc patches

2011-09-02 Thread Tony Lindgren
* Grazvydas Ignotas nota...@gmail.com [110715 12:27]:
 On Wed, Jul 13, 2011 at 6:36 PM, Chris Ball c...@laptop.org wrote:
  Hi,
 
  On Wed, Jul 13 2011, Grazvydas Ignotas wrote:
  it seems this series got lost in time, at least patches 01, 02, 03,
  04, 05, 06, 07, 08, 12 look like valid standalone fixes and
  improvements to me, they don't touch other trees and still apply
  cleanly, so would be good to have.
 
  Yeah.  I didn't merge them because Tony still has unanswered comments on
  the OMAP side of the patches, and they're submitted as a single patchset.
 
  I've applied {2, 3, 5, 6, 7, 8, 12} to mmc-next for 3.1 now.  1 doesn't
  apply because the function doesn't exist anymore.  4 doesn't apply
  because iclk doesn't exist anymore.
 
  If someone wants to look at rebasing the rest of these against mmc-next
  and resubmitting, I think that'd be useful.
 
 Thanks! 1 and 4 seem to be unneeded any more (I was trying them on
 linux-next, not noticing it was not updated for a while), and others
 have comments pending, so it's all done.

So I guess that means I don't need to look at anything, right?

Tony
--
To unsubscribe from this list: send the line unsubscribe linux-mmc in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH V2 00/16] omap_hsmmc patches

2011-07-15 Thread Grazvydas Ignotas
On Wed, Jul 13, 2011 at 6:36 PM, Chris Ball c...@laptop.org wrote:
 Hi,

 On Wed, Jul 13 2011, Grazvydas Ignotas wrote:
 it seems this series got lost in time, at least patches 01, 02, 03,
 04, 05, 06, 07, 08, 12 look like valid standalone fixes and
 improvements to me, they don't touch other trees and still apply
 cleanly, so would be good to have.

 Yeah.  I didn't merge them because Tony still has unanswered comments on
 the OMAP side of the patches, and they're submitted as a single patchset.

 I've applied {2, 3, 5, 6, 7, 8, 12} to mmc-next for 3.1 now.  1 doesn't
 apply because the function doesn't exist anymore.  4 doesn't apply
 because iclk doesn't exist anymore.

 If someone wants to look at rebasing the rest of these against mmc-next
 and resubmitting, I think that'd be useful.

Thanks! 1 and 4 seem to be unneeded any more (I was trying them on
linux-next, not noticing it was not updated for a while), and others
have comments pending, so it's all done.


 Thanks,

 - Chris.
 --
 Chris Ball   c...@laptop.org   http://printf.net/
 One Laptop Per Child


-- 
Gražvydas
--
To unsubscribe from this list: send the line unsubscribe linux-mmc in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH V2 00/16] omap_hsmmc patches

2011-07-13 Thread Grazvydas Ignotas
Hello,

it seems this series got lost in time, at least patches 01, 02, 03,
04, 05, 06, 07, 08, 12 look like valid standalone fixes and
improvements to me, they don't touch other trees and still apply
cleanly, so would be good to have.

Chris, can you queue these for upcoming merge window?
These patches are also archived in patchwork here:
https://patchwork.kernel.org/project/linux-omap/list/?archive=bothpage=8


On Fri, May 6, 2011 at 12:13 PM, Adrian Hunter adrian.hun...@nokia.com wrote:
 Hi

 Here is V2 of some patches for omap_hsmmc.

 Changes in V2:

        OMAP: sDMA: descriptor autoloading feature
                - removed the feature entirely as per Tony Lindgren

        mmc: omap_hsmmc: fix few bugs when set the clock divisor
                - added cpu_relax() as per Grazvydas Ignotas

        mmc: omap_hsmmc: fix missing mmc_release_host() in no_off case
                - removed {} as per Sergei Shtylyov

        OMAP: hsmmc: implement clock switcher
                - changed to = threshold as per Grazvydas Ignotas


 Adrian Hunter (6):
      mmc: omap_hsmmc: correct debug report error status mnemonics
      OMAP: board-rm680: set MMC nomux flag
      mmc: omap_hsmmc: ensure pbias configuration is always done
      mmc: omap_hsmmc: fix oops in omap_hsmmc_dma_cb
      OMAP: hsmmc: add platform data for eMMC hardware reset gpio
      mmc: omap_hsmmc: add a hardware reset before initialization

 Andy Shevchenko (8):
      mmc: omap_hsmmc: move hardcoded frequency constants to definition block
      mmc: omap_hsmmc: reduce a bit the error handlers in probe()
      mmc: omap_hsmmc: split duplicate code to calc_divisor() function
      mmc: omap_hsmmc: introduce start_clock and re-use stop_clock
      mmc: omap_hsmmc: fix few bugs when set the clock divisor
      mmc: omap_hsmmc: split same pieces of code to separate functions
      OMAP: hsmmc: implement clock switcher
      mmc: omap_hsmmc: adjust host controller clock in regard to current OPP

 Jarkko Lavinen (1):
      OMAP: hsmmc: Do not mux the slot if non default muxing is already done

 Sudhir Bera (1):
      mmc: omap_hsmmc: fix missing mmc_release_host() in no_off case

  arch/arm/mach-omap2/board-rm680.c     |    1 +
  arch/arm/mach-omap2/hsmmc.c           |  188 +-
  arch/arm/mach-omap2/hsmmc.h           |    2 +
  arch/arm/plat-omap/include/plat/mmc.h |    9 +
  drivers/mmc/host/omap_hsmmc.c         |  353 
 -
  5 files changed, 414 insertions(+), 139 deletions(-)

 Regards
 Adrian

 --
 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  http://vger.kernel.org/majordomo-info.html


-- 
Gražvydas
--
To unsubscribe from this list: send the line unsubscribe linux-mmc in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH V2 00/16] omap_hsmmc patches

2011-07-13 Thread Chris Ball
Hi,

On Wed, Jul 13 2011, Grazvydas Ignotas wrote:
 it seems this series got lost in time, at least patches 01, 02, 03,
 04, 05, 06, 07, 08, 12 look like valid standalone fixes and
 improvements to me, they don't touch other trees and still apply
 cleanly, so would be good to have.

Yeah.  I didn't merge them because Tony still has unanswered comments on
the OMAP side of the patches, and they're submitted as a single patchset.

I've applied {2, 3, 5, 6, 7, 8, 12} to mmc-next for 3.1 now.  1 doesn't
apply because the function doesn't exist anymore.  4 doesn't apply
because iclk doesn't exist anymore.

If someone wants to look at rebasing the rest of these against mmc-next
and resubmitting, I think that'd be useful.

Thanks,

- Chris.
-- 
Chris Ball   c...@laptop.org   http://printf.net/
One Laptop Per Child
--
To unsubscribe from this list: send the line unsubscribe linux-mmc in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH V2 00/16] omap_hsmmc patches

2011-05-06 Thread Adrian Hunter
Hi

Here is V2 of some patches for omap_hsmmc.

Changes in V2:

OMAP: sDMA: descriptor autoloading feature
- removed the feature entirely as per Tony Lindgren

mmc: omap_hsmmc: fix few bugs when set the clock divisor
- added cpu_relax() as per Grazvydas Ignotas

mmc: omap_hsmmc: fix missing mmc_release_host() in no_off case
- removed {} as per Sergei Shtylyov

OMAP: hsmmc: implement clock switcher
- changed to = threshold as per Grazvydas Ignotas


Adrian Hunter (6):
  mmc: omap_hsmmc: correct debug report error status mnemonics
  OMAP: board-rm680: set MMC nomux flag
  mmc: omap_hsmmc: ensure pbias configuration is always done
  mmc: omap_hsmmc: fix oops in omap_hsmmc_dma_cb
  OMAP: hsmmc: add platform data for eMMC hardware reset gpio
  mmc: omap_hsmmc: add a hardware reset before initialization

Andy Shevchenko (8):
  mmc: omap_hsmmc: move hardcoded frequency constants to definition block
  mmc: omap_hsmmc: reduce a bit the error handlers in probe()
  mmc: omap_hsmmc: split duplicate code to calc_divisor() function
  mmc: omap_hsmmc: introduce start_clock and re-use stop_clock
  mmc: omap_hsmmc: fix few bugs when set the clock divisor
  mmc: omap_hsmmc: split same pieces of code to separate functions
  OMAP: hsmmc: implement clock switcher
  mmc: omap_hsmmc: adjust host controller clock in regard to current OPP

Jarkko Lavinen (1):
  OMAP: hsmmc: Do not mux the slot if non default muxing is already done

Sudhir Bera (1):
  mmc: omap_hsmmc: fix missing mmc_release_host() in no_off case

 arch/arm/mach-omap2/board-rm680.c |1 +
 arch/arm/mach-omap2/hsmmc.c   |  188 +-
 arch/arm/mach-omap2/hsmmc.h   |2 +
 arch/arm/plat-omap/include/plat/mmc.h |9 +
 drivers/mmc/host/omap_hsmmc.c |  353 -
 5 files changed, 414 insertions(+), 139 deletions(-)
 
Regards
Adrian

--
To unsubscribe from this list: send the line unsubscribe linux-mmc in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html