mbox

[U-Boot,GIT,PULL] Please pull u-boot-mmc master

Message ID 0046e55d-96bc-5f34-e025-9d8ce84fd34a@samsung.com
State Superseded
Delegated to: Tom Rini
Headers show

Pull-request

http://git.denx.de/u-boot-master master

Message

Jaehoon Chung Jan. 3, 2017, 1:17 a.m. UTC
Dear Tom,

Could you pull these patches on your master branch?
There is a patch relevant to PMIC for PR.
I considered to make the pmic branch, but just included this patch in this PR.
(If you want to split the PR, I will do it.)
If there is an issue, let me know, plz.

The following changes since commit 87f5f5417fc897df0b05826b408f0f4b7d2ee388:

  Prepare v2017.01-rc3 (2017-01-02 20:00:55 -0500)

are available in the git repository at:

  http://git.denx.de/u-boot-master master

for you to fetch changes up to 4c73d121d86f431221d48ae215f17887f06abff2:

  power: change from meaningless value to error number (2017-01-03 10:11:34 +0900)

----------------------------------------------------------------
Jaehoon Chung (12):
      mmc: sdhci: disable the 8bit mode when host doesn't support it
      mmc: sdhci: add the get_cd callback function in sdhci_ops
      mmc: sdhci: remove the unused code about testing Card detect
      mmc: pic32_sdhci: move the code to pic32_sdhci.c
      mmc: sdhci: remove the SDHCI_QUIRK_NO_CD
      mmc: change the set_ios return type from void to int
      mmc: s5p_sdhci: add the s5p_set_clock function
      mmc: sdhci: move the callback function into sdhci_ops
      mmc: sdhci: use the bitops APIs in sdhci.h
      mmc: sdhci: remove the SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER
      mmc: sdhci: combine the Host controller v3.0 feature into one condition
      power: change from meaningless value to error number

Masahiro Yamada (2):
      mmc: sdhci-cadence: add Cadence SD4HC support
      mmc: uniphier-sd: fix Kconfig dependency

 drivers/mmc/Kconfig                    |  16 ++++++++++++++--
 drivers/mmc/Makefile                   |   1 +
 drivers/mmc/dw_mmc.c                   |   5 ++---
 drivers/mmc/pic32_sdhci.c              |  15 ++++++++++++++-
 drivers/mmc/s5p_sdhci.c                |  15 ++++++++++++---
 drivers/mmc/sdhci-cadence.c            | 125 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 drivers/mmc/sdhci.c                    |  59 +++++++++++++++++------------------------------------------
 drivers/power/axp152.c                 |   2 +-
 drivers/power/axp209.c                 |   2 +-
 drivers/power/battery/bat_trats2.c     |   2 +-
 drivers/power/exynos-tmu.c             |   8 ++++----
 drivers/power/fuel_gauge/fg_max17042.c |   4 ++--
 drivers/power/mfd/fg_max77693.c        |   4 ++--
 drivers/power/mfd/pmic_max77693.c      |   8 ++++----
 drivers/power/palmas.c                 |  11 +++++++----
 drivers/power/pmic/pmic_hi6553.c       |   4 ++--
 drivers/power/pmic/pmic_max77686.c     |  18 +++++++++---------
 drivers/power/pmic/pmic_max8997.c      |   8 ++++----
 drivers/power/power_core.c             |   8 ++++----
 drivers/power/power_i2c.c              |  22 +++++++++++-----------
 drivers/power/power_spi.c              |  18 ++++++------------
 drivers/power/tps6586x.c               |  12 ++++++------
 include/mmc.h                          |   2 +-
 include/sdhci.h                        | 131 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------------------------------------
 24 files changed, 315 insertions(+), 185 deletions(-)
 create mode 100644 drivers/mmc/sdhci-cadence.c

Best Regards,
Jaehoon Chung

Comments

Jaehoon Chung Jan. 3, 2017, 1:19 a.m. UTC | #1
On 01/03/2017 10:17 AM, Jaehoon Chung wrote:
> Dear Tom,
> 
> Could you pull these patches on your master branch?
> There is a patch relevant to PMIC for PR.
> I considered to make the pmic branch, but just included this patch in this PR.
> (If you want to split the PR, I will do it.)
> If there is an issue, let me know, plz.

Sorry for late.

> 
> The following changes since commit 87f5f5417fc897df0b05826b408f0f4b7d2ee388:
> 
>   Prepare v2017.01-rc3 (2017-01-02 20:00:55 -0500)
> 
> are available in the git repository at:
> 
>   http://git.denx.de/u-boot-master master
> 
> for you to fetch changes up to 4c73d121d86f431221d48ae215f17887f06abff2:
> 
>   power: change from meaningless value to error number (2017-01-03 10:11:34 +0900)
> 
> ----------------------------------------------------------------
> Jaehoon Chung (12):
>       mmc: sdhci: disable the 8bit mode when host doesn't support it
>       mmc: sdhci: add the get_cd callback function in sdhci_ops
>       mmc: sdhci: remove the unused code about testing Card detect
>       mmc: pic32_sdhci: move the code to pic32_sdhci.c
>       mmc: sdhci: remove the SDHCI_QUIRK_NO_CD
>       mmc: change the set_ios return type from void to int
>       mmc: s5p_sdhci: add the s5p_set_clock function
>       mmc: sdhci: move the callback function into sdhci_ops
>       mmc: sdhci: use the bitops APIs in sdhci.h
>       mmc: sdhci: remove the SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER
>       mmc: sdhci: combine the Host controller v3.0 feature into one condition
>       power: change from meaningless value to error number
> 
> Masahiro Yamada (2):
>       mmc: sdhci-cadence: add Cadence SD4HC support
>       mmc: uniphier-sd: fix Kconfig dependency
> 
>  drivers/mmc/Kconfig                    |  16 ++++++++++++++--
>  drivers/mmc/Makefile                   |   1 +
>  drivers/mmc/dw_mmc.c                   |   5 ++---
>  drivers/mmc/pic32_sdhci.c              |  15 ++++++++++++++-
>  drivers/mmc/s5p_sdhci.c                |  15 ++++++++++++---
>  drivers/mmc/sdhci-cadence.c            | 125 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>  drivers/mmc/sdhci.c                    |  59 +++++++++++++++++------------------------------------------
>  drivers/power/axp152.c                 |   2 +-
>  drivers/power/axp209.c                 |   2 +-
>  drivers/power/battery/bat_trats2.c     |   2 +-
>  drivers/power/exynos-tmu.c             |   8 ++++----
>  drivers/power/fuel_gauge/fg_max17042.c |   4 ++--
>  drivers/power/mfd/fg_max77693.c        |   4 ++--
>  drivers/power/mfd/pmic_max77693.c      |   8 ++++----
>  drivers/power/palmas.c                 |  11 +++++++----
>  drivers/power/pmic/pmic_hi6553.c       |   4 ++--
>  drivers/power/pmic/pmic_max77686.c     |  18 +++++++++---------
>  drivers/power/pmic/pmic_max8997.c      |   8 ++++----
>  drivers/power/power_core.c             |   8 ++++----
>  drivers/power/power_i2c.c              |  22 +++++++++++-----------
>  drivers/power/power_spi.c              |  18 ++++++------------
>  drivers/power/tps6586x.c               |  12 ++++++------
>  include/mmc.h                          |   2 +-
>  include/sdhci.h                        | 131 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------------------------------------------------------------------
>  24 files changed, 315 insertions(+), 185 deletions(-)
>  create mode 100644 drivers/mmc/sdhci-cadence.c
> 
> Best Regards,
> Jaehoon Chung
> _______________________________________________
> U-Boot mailing list
> U-Boot@lists.denx.de
> http://lists.denx.de/mailman/listinfo/u-boot
> 
> 
>
Tom Rini Jan. 5, 2017, 2:34 p.m. UTC | #2
On Tue, Jan 03, 2017 at 10:17:18AM +0900, Jaehoon Chung wrote:

> Dear Tom,
> 
> Could you pull these patches on your master branch?
> There is a patch relevant to PMIC for PR.
> I considered to make the pmic branch, but just included this patch in this PR.
> (If you want to split the PR, I will do it.)
> If there is an issue, let me know, plz.
> 
> The following changes since commit 87f5f5417fc897df0b05826b408f0f4b7d2ee388:
> 
>   Prepare v2017.01-rc3 (2017-01-02 20:00:55 -0500)
> 
> are available in the git repository at:
> 
>   http://git.denx.de/u-boot-master master
> 
> for you to fetch changes up to 4c73d121d86f431221d48ae215f17887f06abff2:
> 
>   power: change from meaningless value to error number (2017-01-03 10:11:34 +0900)
> 
> ----------------------------------------------------------------
> Jaehoon Chung (12):
>       mmc: sdhci: disable the 8bit mode when host doesn't support it
>       mmc: sdhci: add the get_cd callback function in sdhci_ops
>       mmc: sdhci: remove the unused code about testing Card detect
>       mmc: pic32_sdhci: move the code to pic32_sdhci.c
>       mmc: sdhci: remove the SDHCI_QUIRK_NO_CD
>       mmc: change the set_ios return type from void to int
>       mmc: s5p_sdhci: add the s5p_set_clock function
>       mmc: sdhci: move the callback function into sdhci_ops
>       mmc: sdhci: use the bitops APIs in sdhci.h
>       mmc: sdhci: remove the SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER
>       mmc: sdhci: combine the Host controller v3.0 feature into one condition
>       power: change from meaningless value to error number
> 
> Masahiro Yamada (2):
>       mmc: sdhci-cadence: add Cadence SD4HC support
>       mmc: uniphier-sd: fix Kconfig dependency

Sorry for not replying sooner, but I had thought I had.  This is too
much change I think for this late in the release cycle.  Sorry.
Jaehoon Chung Jan. 6, 2017, 1:19 a.m. UTC | #3
On 01/05/2017 11:34 PM, Tom Rini wrote:
> On Tue, Jan 03, 2017 at 10:17:18AM +0900, Jaehoon Chung wrote:
> 
>> Dear Tom,
>>
>> Could you pull these patches on your master branch?
>> There is a patch relevant to PMIC for PR.
>> I considered to make the pmic branch, but just included this patch in this PR.
>> (If you want to split the PR, I will do it.)
>> If there is an issue, let me know, plz.
>>
>> The following changes since commit 87f5f5417fc897df0b05826b408f0f4b7d2ee388:
>>
>>   Prepare v2017.01-rc3 (2017-01-02 20:00:55 -0500)
>>
>> are available in the git repository at:
>>
>>   http://git.denx.de/u-boot-master master
>>
>> for you to fetch changes up to 4c73d121d86f431221d48ae215f17887f06abff2:
>>
>>   power: change from meaningless value to error number (2017-01-03 10:11:34 +0900)
>>
>> ----------------------------------------------------------------
>> Jaehoon Chung (12):
>>       mmc: sdhci: disable the 8bit mode when host doesn't support it
>>       mmc: sdhci: add the get_cd callback function in sdhci_ops
>>       mmc: sdhci: remove the unused code about testing Card detect
>>       mmc: pic32_sdhci: move the code to pic32_sdhci.c
>>       mmc: sdhci: remove the SDHCI_QUIRK_NO_CD
>>       mmc: change the set_ios return type from void to int
>>       mmc: s5p_sdhci: add the s5p_set_clock function
>>       mmc: sdhci: move the callback function into sdhci_ops
>>       mmc: sdhci: use the bitops APIs in sdhci.h
>>       mmc: sdhci: remove the SDHCI_QUIRK_NO_SIMULT_VDD_AND_POWER
>>       mmc: sdhci: combine the Host controller v3.0 feature into one condition
>>       power: change from meaningless value to error number
>>
>> Masahiro Yamada (2):
>>       mmc: sdhci-cadence: add Cadence SD4HC support
>>       mmc: uniphier-sd: fix Kconfig dependency
> 
> Sorry for not replying sooner, but I had thought I had.  This is too
> much change I think for this late in the release cycle.  Sorry.

Ah, Ok. It's my fault for sending PR late.
then I will resend the PR at 2017.03-rc1 time.


Best Regards,
Jaehoon Chung

>