All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/22] mmc: dw_mmc: add driver's updates
@ 2013-08-30 15:10 Seungwon Jeon
  2013-09-03  8:06 ` Seungwon Jeon
  2013-09-26  1:37 ` Chris Ball
  0 siblings, 2 replies; 4+ messages in thread
From: Seungwon Jeon @ 2013-08-30 15:10 UTC (permalink / raw)
  To: linux-mmc
  Cc: 'Chris Ball', 'Jaehoon Chung', 'Alim Akhtar'

This patch set includes updates of dw_mmc driver.

- Tuning scheme for high speed mode such as HS200.
- Support of HS200 mode in exynos host
- Involved some fixes and code clean-up


Doug Anderson (4):
      mmc: dw_mmc: don't queue up a card detect at slot startup
      mmc: dw_mmc: Add exynos resume_noirq callback to clear WAKEUP_INT
      mmc: dw_mmc: Honor requests to set the clock to 0
      mmc: dw_mmc: Set timeout to max upon resume

Seungwon Jeon (14):
      mmc: dw_mmc: add support tuning scheme
      mmc: dw_mmc: exynos: add variable delay tuning sequence
      mmc: dw_mmc: exynos: adjust the clock rate with speed mode
      mmc: dw_mmc: add the capability to support hs200 mode
      mmc: dw_mmc: move supports-highspeed of quirks to caps
      mmc: dw_mmc: set the supported max/min frequency
      mmc: dw_mmc: adjust the fifoth with block size
      mmc: dw_mmc: control card read threshold
      mmc: dw_mmc: fix error handling on response error
      mmc: dw_mmc: guarantee stop-abort cmd in data errors
      mmc: dw_mmc: rework the code related to cmd/data completion
      mmc: dw_mmc: gather each reset code into functions
      mmc: dw_mmc: amend use of idmac sw reset
      mmc: dw_mmc: fix the transfer termination in IDMAC mode

Yuvaraj Kumar C D (4):
      mmc: dw_mmc: exynos: move the exynos private init
      mmc: dw_mmc: socfpga: move socfpga private init
      mmc: dw_mmc: move the platform specific init call
      mmc: dw_mmc: exynos: configure SMU in exynos5420

.../devicetree/bindings/mmc/synopsis-dw-mshc.txt   |    9 +
 drivers/mmc/host/dw_mmc-exynos.c                   |  294 +++++++++-
 drivers/mmc/host/dw_mmc-pltfm.c                    |    7 -
 drivers/mmc/host/dw_mmc-socfpga.c                  |   29 +-
 drivers/mmc/host/dw_mmc.c                          |  583 ++++++++++++++------
 drivers/mmc/host/dw_mmc.h                          |   55 ++
 include/linux/mmc/dw_mmc.h                         |    4 +
 7 files changed, 763 insertions(+), 218 deletions(-)

Thanks,
Seungwon Jeon


^ permalink raw reply	[flat|nested] 4+ messages in thread

* RE: [PATCH 00/22] mmc: dw_mmc: add driver's updates
  2013-08-30 15:10 [PATCH 00/22] mmc: dw_mmc: add driver's updates Seungwon Jeon
@ 2013-09-03  8:06 ` Seungwon Jeon
  2013-09-03 11:24   ` Chris Ball
  2013-09-26  1:37 ` Chris Ball
  1 sibling, 1 reply; 4+ messages in thread
From: Seungwon Jeon @ 2013-09-03  8:06 UTC (permalink / raw)
  To: 'Seungwon Jeon', linux-mmc
  Cc: 'Chris Ball', 'Jaehoon Chung', 'Alim Akhtar'

Hi Chris,

Please could you apply this updates for mmc-next?

Thanks,
Seungwon Jeon

On Sat, August 31, 2013, Seungwon Jeon wrote:
> This patch set includes updates of dw_mmc driver.
> 
> - Tuning scheme for high speed mode such as HS200.
> - Support of HS200 mode in exynos host
> - Involved some fixes and code clean-up
> 
> 
> Doug Anderson (4):
>       mmc: dw_mmc: don't queue up a card detect at slot startup
>       mmc: dw_mmc: Add exynos resume_noirq callback to clear WAKEUP_INT
>       mmc: dw_mmc: Honor requests to set the clock to 0
>       mmc: dw_mmc: Set timeout to max upon resume
> 
> Seungwon Jeon (14):
>       mmc: dw_mmc: add support tuning scheme
>       mmc: dw_mmc: exynos: add variable delay tuning sequence
>       mmc: dw_mmc: exynos: adjust the clock rate with speed mode
>       mmc: dw_mmc: add the capability to support hs200 mode
>       mmc: dw_mmc: move supports-highspeed of quirks to caps
>       mmc: dw_mmc: set the supported max/min frequency
>       mmc: dw_mmc: adjust the fifoth with block size
>       mmc: dw_mmc: control card read threshold
>       mmc: dw_mmc: fix error handling on response error
>       mmc: dw_mmc: guarantee stop-abort cmd in data errors
>       mmc: dw_mmc: rework the code related to cmd/data completion
>       mmc: dw_mmc: gather each reset code into functions
>       mmc: dw_mmc: amend use of idmac sw reset
>       mmc: dw_mmc: fix the transfer termination in IDMAC mode
> 
> Yuvaraj Kumar C D (4):
>       mmc: dw_mmc: exynos: move the exynos private init
>       mmc: dw_mmc: socfpga: move socfpga private init
>       mmc: dw_mmc: move the platform specific init call
>       mmc: dw_mmc: exynos: configure SMU in exynos5420
> 
> .../devicetree/bindings/mmc/synopsis-dw-mshc.txt   |    9 +
>  drivers/mmc/host/dw_mmc-exynos.c                   |  294 +++++++++-
>  drivers/mmc/host/dw_mmc-pltfm.c                    |    7 -
>  drivers/mmc/host/dw_mmc-socfpga.c                  |   29 +-
>  drivers/mmc/host/dw_mmc.c                          |  583 ++++++++++++++------
>  drivers/mmc/host/dw_mmc.h                          |   55 ++
>  include/linux/mmc/dw_mmc.h                         |    4 +
>  7 files changed, 763 insertions(+), 218 deletions(-)
> 
> Thanks,
> Seungwon Jeon
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-mmc" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 00/22] mmc: dw_mmc: add driver's updates
  2013-09-03  8:06 ` Seungwon Jeon
@ 2013-09-03 11:24   ` Chris Ball
  0 siblings, 0 replies; 4+ messages in thread
From: Chris Ball @ 2013-09-03 11:24 UTC (permalink / raw)
  To: Seungwon Jeon; +Cc: linux-mmc, 'Jaehoon Chung', 'Alim Akhtar'

Hi,

On Tue, Sep 03 2013, Seungwon Jeon wrote:
> Please could you apply this updates for mmc-next?

3.11 is released, so it's too late to apply these to the 3.12-rc1
merge, since there would be no time to test them in linux-next.  But
it looks like many of them are fixes, so we can just send those later
in the 3.12 cycle.

Thanks,

- Chris.
-- 
Chris Ball   <cjb@laptop.org>   <http://printf.net/>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH 00/22] mmc: dw_mmc: add driver's updates
  2013-08-30 15:10 [PATCH 00/22] mmc: dw_mmc: add driver's updates Seungwon Jeon
  2013-09-03  8:06 ` Seungwon Jeon
@ 2013-09-26  1:37 ` Chris Ball
  1 sibling, 0 replies; 4+ messages in thread
From: Chris Ball @ 2013-09-26  1:37 UTC (permalink / raw)
  To: Seungwon Jeon; +Cc: linux-mmc, 'Jaehoon Chung', 'Alim Akhtar'

Hi Seungwon,

On Fri, Aug 30 2013, Seungwon Jeon wrote:
> This patch set includes updates of dw_mmc driver.
>
> - Tuning scheme for high speed mode such as HS200.
> - Support of HS200 mode in exynos host
> - Involved some fixes and code clean-up

Thanks, I've pushed all 22 patches to mmc-next now.

- Chris.
-- 
Chris Ball   <cjb@laptop.org>   <http://printf.net/>

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2013-09-26  1:37 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-08-30 15:10 [PATCH 00/22] mmc: dw_mmc: add driver's updates Seungwon Jeon
2013-09-03  8:06 ` Seungwon Jeon
2013-09-03 11:24   ` Chris Ball
2013-09-26  1:37 ` Chris Ball

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.