public inbox for linux-mmc@vger.kernel.org
 help / color / mirror / Atom feed
* Re: [PATCH v9 00/10] mmc: sdhci: fixes and enhancements
       [not found] ` <25B60CDC2F704E4E9D88FFD52780CB4C08AFCECD1E@SC-VEXCH1.marvell.com>
@ 2012-12-06 15:07   ` Kevin Liu
  2012-12-06 15:18     ` Chris Ball
  0 siblings, 1 reply; 4+ messages in thread
From: Kevin Liu @ 2012-12-06 15:07 UTC (permalink / raw)
  To: linux-mmc, Chris Ball, arindam.nath, peppe.cavallaro, Ulf Hansson,
	andriy.shevchenko, Philip Rakity
  Cc: zhangfei gao, Haojian Zhuang, Chao Xie, Kevin Liu

> From: Kevin Liu [keyuan.liu@gmail.com]
> Sent: Monday, December 03, 2012 9:09 PM
> To: linux-mmc@vger.kernel.org; cjb@laptop.org; arindam.nath@amd.com; peppe.cavallaro@st.com; ulf.hansson@linaro.org; andriy.shevchenko@linux.intel.com; prakity@nvidia.com
> Cc: zhangfei.gao@gmail.com; haojian.zhuang@gmail.com; Chao Xie; Kevin Liu
> Subject: [PATCH v9 00/10] mmc: sdhci: fixes and enhancements
>
> This patchset aim to fix bugs and do some code enhancement for sdhci.c
> Most patches are quite small.
> I will highly appreciate if you can pay a few minutes to review them.
> Any comments are welcome.
>
> [PATCH v9 01/10] mmc: sdhci: fix transfer mode setting bug for cmds w/o data transfer
> [PATCH v9 02/10] mmc: sdhci: refine code for clock disable/enable in set ios
> [PATCH v9 03/10] mmc: sdhci: keep the saved clock var up to date
> [PATCH v9 04/10] mmc: sdhci: enhance preset value function
> [PATCH v9 05/10] mmc: sdhci: introduce signal_voltage_switch callback function
> [PATCH v9 06/10] mmc: sdhci: fix the bug that DDR50 can't work for emmc in default code
> [PATCH v9 07/10] mmc: sdhci: remove set_uhs_signaling function
> [PATCH v9 08/10] mmc: sdhci: add function to get retunig timer count
> [PATCH v9 09/10] mmc: sdhci: correct voltage support caps setting
> [PATCH v9 10/10] mmc: sdhci: clean code for SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK selected
>
> changelog v1->v2:
>         - remove the patch "mmc: sdhci-pxav3: fix build error"
>         - update the patch 05/15 by avoid warning with return null
>         - add patches 06/15 ~ 08/15
> changelog v2->v3:
>         - update some comments
>         - add patches 09/15 ~ 11/15
> changelog v3->v4:
>         - update the patch 01/15 with data null check
>         - add patches 12/15 ~ 15/15
> changelog v4->v5:
>         - drop below two patches since Johan is updating voltage switch code:
>         - drop the patch "mmc: core: add new 1.8v flag for mmc"
>         - drop the patch "mmc: sdhci: add mmc 1.8v signal voltage switch function"
>         - drop the patch "mmc: sdhci-pxav3: add signal_voltage_switch function" which calls plat callback function
>         - update the patch 07/13 with adding function get_max_clock
>         - update the patch 03/13 with voltage setting
>         - add patch 02/13
> changelog v5->v6:
>         - drop the patch "mmc: sdhci: use regulator min/max voltage range according to spec"
>         - add patch 13/14
>         - add patch 14/14
> changelog v6->v7:
>         - remove the patch "mmc: sdhci: fix null return check of regulator_get" which has been merged
>         - restore the patch "mmc: sdhci: use regulator min/max voltage range according to spec"
> changelog v7->v8:
>         - remove the merged patch "mmc: sdhci-pxav3: controller can't get base clock"
>         - remove the merged patch "mmc: host: adjust uhs timing value"
>         - remove the merged patch "mmc: sdhci: solve several vmmc/vqmmc regulator issues"
>         - update the patch "mmc: sdhci-pxav3: remove set_uhs_signaling function"
> changelog v8->v9:
>         - remove the merged patch "mmc: sdhci-pxav3: add quirks2"
>         - remove the merged patch "mmc: sdhci: use regulator min/max voltage range according to spec"
>         - add patch 10/10
>
> Kevin Liu (10)
> [PATCH v9 01/10] mmc: sdhci: fix transfer mode setting bug for cmds w/o data transfer
> [PATCH v9 02/10] mmc: sdhci: refine code for clock disable/enable in set ios
> [PATCH v9 03/10] mmc: sdhci: keep the saved clock var up to date
> [PATCH v9 04/10] mmc: sdhci: enhance preset value function
> [PATCH v9 05/10] mmc: sdhci: introduce signal_voltage_switch callback function
> [PATCH v9 06/10] mmc: sdhci: fix the bug that DDR50 can't work for emmc in default code
> [PATCH v9 07/10] mmc: sdhci: remove set_uhs_signaling function
> [PATCH v9 08/10] mmc: sdhci: add function to get retunig timer count
> [PATCH v9 09/10] mmc: sdhci: correct voltage support caps setting
> [PATCH v9 10/10] mmc: sdhci: clean code for SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK selected
>
>  drivers/mmc/core/sd.c          |   17 ---
>  drivers/mmc/host/sdhci-pxav3.c |   39 ------
>  drivers/mmc/host/sdhci.c       |  289 +++++++++++++++++++++++++---------------
>  drivers/mmc/host/sdhci.h       |   15 ++-
>  include/linux/mmc/host.h       |    1 -
>  include/linux/mmc/sdhci.h      |    1 +
>  6 files changed, 197 insertions(+), 165 deletions(-)

Chris,

Any comments?

Thanks
Kevin

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

* Re: [PATCH v9 00/10] mmc: sdhci: fixes and enhancements
  2012-12-06 15:07   ` [PATCH v9 00/10] mmc: sdhci: fixes and enhancements Kevin Liu
@ 2012-12-06 15:18     ` Chris Ball
  2012-12-06 15:36       ` Kevin Liu
  0 siblings, 1 reply; 4+ messages in thread
From: Chris Ball @ 2012-12-06 15:18 UTC (permalink / raw)
  To: Kevin Liu
  Cc: linux-mmc, arindam.nath, peppe.cavallaro, Ulf Hansson,
	andriy.shevchenko, Philip Rakity, zhangfei gao, Haojian Zhuang,
	Chao Xie, Kevin Liu

Hi,

On Thu, Dec 06 2012, Kevin Liu wrote:
>> From: Kevin Liu [keyuan.liu@gmail.com]
>> Sent: Monday, December 03, 2012 9:09 PM
>> To: linux-mmc@vger.kernel.org; cjb@laptop.org; arindam.nath@amd.com; peppe.cavallaro@st.com; ulf.hansson@linaro.org; andriy.shevchenko@linux.intel.com; prakity@nvidia.com
>> Cc: zhangfei.gao@gmail.com; haojian.zhuang@gmail.com; Chao Xie; Kevin Liu
>> Subject: [PATCH v9 00/10] mmc: sdhci: fixes and enhancements
>>
>> This patchset aim to fix bugs and do some code enhancement for sdhci.c
>> Most patches are quite small.
>> I will highly appreciate if you can pay a few minutes to review them.
>> Any comments are welcome.

Weird, I didn't get the original copy of this e-mail.  Any idea what
happened?  I don't think it's on the MMC list either.  The last patchset
I see on the list is v6, not v9.

Thanks,

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

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

* Re: [PATCH v9 00/10] mmc: sdhci: fixes and enhancements
  2012-12-06 15:18     ` Chris Ball
@ 2012-12-06 15:36       ` Kevin Liu
  0 siblings, 0 replies; 4+ messages in thread
From: Kevin Liu @ 2012-12-06 15:36 UTC (permalink / raw)
  To: Chris Ball
  Cc: linux-mmc, arindam.nath, peppe.cavallaro, Ulf Hansson,
	andriy.shevchenko, Philip Rakity, zhangfei gao, Haojian Zhuang,
	Chao Xie, Kevin Liu

2012/12/6 Chris Ball <cjb@laptop.org>:
> Hi,
>
> On Thu, Dec 06 2012, Kevin Liu wrote:
>>> From: Kevin Liu [keyuan.liu@gmail.com]
>>> Sent: Monday, December 03, 2012 9:09 PM
>>> To: linux-mmc@vger.kernel.org; cjb@laptop.org; arindam.nath@amd.com; peppe.cavallaro@st.com; ulf.hansson@linaro.org; andriy.shevchenko@linux.intel.com; prakity@nvidia.com
>>> Cc: zhangfei.gao@gmail.com; haojian.zhuang@gmail.com; Chao Xie; Kevin Liu
>>> Subject: [PATCH v9 00/10] mmc: sdhci: fixes and enhancements
>>>
>>> This patchset aim to fix bugs and do some code enhancement for sdhci.c
>>> Most patches are quite small.
>>> I will highly appreciate if you can pay a few minutes to review them.
>>> Any comments are welcome.
>
> Weird, I didn't get the original copy of this e-mail.  Any idea what
> happened?  I don't think it's on the MMC list either.  The last patchset
> I see on the list is v6, not v9.
>
So strange, maybe my mail server has some issue or my original mail
format is wrong...Then I will resend v9 tomorrow.
Chris, thanks for the feedback.

Kevin

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

* [PATCH v9 00/10] mmc: sdhci: fixes and enhancements
@ 2012-12-07  2:36 Kevin Liu
  0 siblings, 0 replies; 4+ messages in thread
From: Kevin Liu @ 2012-12-07  2:36 UTC (permalink / raw)
  To: linux-mmc, cjb, arindam.nath, peppe.cavallaro, ulf.hansson,
	andriy.shevchenko, prakity
  Cc: zhangfei.gao, haojian.zhuang, cxie4, keyuan.liu


This patchset aim to fix bugs and do some code enhancement for sdhci.c Most patches are quite small.
I will highly appreciate if you can pay a few minutes to review them.
Any comments are welcome.

[PATCH v9 01/10] mmc: sdhci: fix transfer mode setting bug for cmds w/o data transfer
[PATCH v9 02/10] mmc: sdhci: refine code for clock disable/enable in set ios
[PATCH v9 03/10] mmc: sdhci: keep the saved clock var up to date
[PATCH v9 04/10] mmc: sdhci: enhance preset value function
[PATCH v9 05/10] mmc: sdhci: introduce signal_voltage_switch callback function
[PATCH v9 06/10] mmc: sdhci: fix the bug that DDR50 can't work for emmc in default code
[PATCH v9 07/10] mmc: sdhci: remove set_uhs_signaling function
[PATCH v9 08/10] mmc: sdhci: add function to get retunig timer count
[PATCH v9 09/10] mmc: sdhci: correct voltage support caps setting
[PATCH v9 10/10] mmc: sdhci: clean code for SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK selected

changelog v1->v2:
        - remove the patch "mmc: sdhci-pxav3: fix build error"
        - update the patch 05/15 by avoid warning with return null
        - add patches 06/15 ~ 08/15
changelog v2->v3:
        - update some comments
        - add patches 09/15 ~ 11/15
changelog v3->v4:
        - update the patch 01/15 with data null check
        - add patches 12/15 ~ 15/15
changelog v4->v5:
        - drop below two patches since Johan is updating voltage switch code:
        - drop the patch "mmc: core: add new 1.8v flag for mmc"
        - drop the patch "mmc: sdhci: add mmc 1.8v signal voltage switch function"
        - drop the patch "mmc: sdhci-pxav3: add signal_voltage_switch function" which calls plat callback function
        - update the patch 07/13 with adding function get_max_clock
        - update the patch 03/13 with voltage setting
        - add patch 02/13
changelog v5->v6:
	- drop the patch "mmc: sdhci: use regulator min/max voltage range according to spec"
	- add patch 13/14
	- add patch 14/14
changelog v6->v7:
	- remove the patch "mmc: sdhci: fix null return check of regulator_get" which has been merged
	- restore the patch "mmc: sdhci: use regulator min/max voltage range according to spec"
changelog v7->v8:
	- remove the merged patch "mmc: sdhci-pxav3: controller can't get base clock"
	- remove the merged patch "mmc: host: adjust uhs timing value"
	- remove the merged patch "mmc: sdhci: solve several vmmc/vqmmc regulator issues"
	- update the patch "mmc: sdhci-pxav3: remove set_uhs_signaling function"
changelog v8->v9:
	- remove the merged patch "mmc: sdhci-pxav3: add quirks2"
	- remove the merged patch "mmc: sdhci: use regulator min/max voltage range according to spec"
	- add patch 10/10

Kevin Liu (10)

[PATCH v9 01/10] mmc: sdhci: fix transfer mode setting bug for cmds w/o data transfer
[PATCH v9 02/10] mmc: sdhci: refine code for clock disable/enable in set ios
[PATCH v9 03/10] mmc: sdhci: keep the saved clock var up to date
[PATCH v9 04/10] mmc: sdhci: enhance preset value function
[PATCH v9 05/10] mmc: sdhci: introduce signal_voltage_switch callback function
[PATCH v9 06/10] mmc: sdhci: fix the bug that DDR50 can't work for emmc in default code
[PATCH v9 07/10] mmc: sdhci: remove set_uhs_signaling function
[PATCH v9 08/10] mmc: sdhci: add function to get retunig timer count
[PATCH v9 09/10] mmc: sdhci: correct voltage support caps setting
[PATCH v9 10/10] mmc: sdhci: clean code for SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK selected

 drivers/mmc/core/sd.c          |   17 ---
 drivers/mmc/host/sdhci-pxav3.c |   39 ------
 drivers/mmc/host/sdhci.c       |  289 +++++++++++++++++++++++++---------------
 drivers/mmc/host/sdhci.h       |   15 ++-
 include/linux/mmc/host.h       |    1 -
 include/linux/mmc/sdhci.h      |    1 +
 6 files changed, 197 insertions(+), 165 deletions(-)


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

end of thread, other threads:[~2012-12-07  2:34 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <1354597799-9957-1-git-send-email-keyuan.liu@gmail.com>
     [not found] ` <25B60CDC2F704E4E9D88FFD52780CB4C08AFCECD1E@SC-VEXCH1.marvell.com>
2012-12-06 15:07   ` [PATCH v9 00/10] mmc: sdhci: fixes and enhancements Kevin Liu
2012-12-06 15:18     ` Chris Ball
2012-12-06 15:36       ` Kevin Liu
2012-12-07  2:36 Kevin Liu

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox