Re: [GIT PULL] Please pull u-boot-mmc master

2024-05-02 Thread Judith Mendez

Hi Greg,

On 5/1/24 9:40 PM, Greg Malysa wrote:

On Tue, Apr 30, 2024 at 3:42 AM Francesco Dolcini  wrote:


On Mon, Apr 29, 2024 at 03:39:53PM -0500, Judith Mendez wrote:

A patch in this series caused a regression for AM62x SK with the
following error:


+1, this affects also Verdin AM62.


Hi, please try 
https://patchwork.ozlabs.org/project/uboot/patch/20240501185331.1189647-1-alexander.sverd...@siemens.com/
as this should explain the issue and also fix it.


The fix fixes my issuu on AM62x, thanks.

~ Judith


Re: [GIT PULL] Please pull u-boot-mmc master

2024-05-01 Thread Greg Malysa
On Tue, Apr 30, 2024 at 3:42 AM Francesco Dolcini  wrote:
>
> On Mon, Apr 29, 2024 at 03:39:53PM -0500, Judith Mendez wrote:
> > A patch in this series caused a regression for AM62x SK with the
> > following error:
>
> +1, this affects also Verdin AM62.

Hi, please try 
https://patchwork.ozlabs.org/project/uboot/patch/20240501185331.1189647-1-alexander.sverd...@siemens.com/
as this should explain the issue and also fix it.


Re: [GIT PULL] Please pull u-boot-mmc master

2024-05-01 Thread Greg Malysa
I am also looking into it since it's our change that is causing the
issue. The functions modified don't return status codes so that must
mean that it is causing the transaction to be configured incorrectly.
However I don't have hardware to test these platforms locally, but I
might be able to get a coworker who has an am62 platform to help me
test (not sure which one though).

Some things I would like to look at first:
1) host->ops->adma_write_desc is expected to be NULL on this platform.
If it weren't it'd probably crash instead but it seems like a decent
starting point. I believe this corresponds to j721e_4bit_sdhci_ops in
this case?
2) Could we compare the contents of the descriptors that are written
in sdhci_adma_write_desc between working and broken builds?
3) sdhci_adma_init is only called if the descriptor table is null; is
there any chance it has a random value instead of NULL to start off,
so it isn't called and adma_addr is not populated correctly?

Thanks,
Greg

--
Greg Malysa
Timesys Corporation


Re: [GIT PULL] Please pull u-boot-mmc master

2024-04-30 Thread Francesco Dolcini
On Mon, Apr 29, 2024 at 03:39:53PM -0500, Judith Mendez wrote:
> On 4/26/24 10:51 AM, Tom Rini wrote:
> > On Fri, Apr 26, 2024 at 07:38:30PM +0900, Jaehoon Chung wrote:
> > > Please pull u-boot-mmc master into u-boot master branch.
> > > If there is any problem, let me know, plz
> > Applied to u-boot/master, thanks!
> A patch in this series caused a regression for AM62x SK with the
> following error:

+1, this affects also Verdin AM62.

```
Trying to boot from MMC1
mmc_load_image_raw_sector: mmc block read error
Partition 1 invalid on device 0
spl_register_fat_device: fat register err - -1
spl_load_image_fat: error reading image u-boot.img, err - -1
SPL: failed to boot from all boot devices
### ERROR ### Please RESET the board ###
```

Francesco



RE: [GIT PULL] Please pull u-boot-mmc master

2024-04-29 Thread Jaehoon Chung
Dear Judith,

> -Original Message-
> From: Judith Mendez 
> Sent: Tuesday, April 30, 2024 5:40 AM
> To: Tom Rini ; Jaehoon Chung 
> Cc: U-Boot Mailing List ; 
> maximilian.br...@9elements.com;
> curtis.mach...@intel.com; Jonas Karlman ; 
> greg.mal...@timesys.com;
> ian.robe...@timesys.com; Jae hoon Chung ; Peng Fan 
> ;
> sheng....@9elements.com
> Subject: Re: [GIT PULL] Please pull u-boot-mmc master
>
> Hi all,
>
> On 4/26/24 10:51 AM, Tom Rini wrote:
> > On Fri, Apr 26, 2024 at 07:38:30PM +0900, Jaehoon Chung wrote:
> >
> >> Dear Tom,
> >>
> >> Please pull u-boot-mmc master into u-boot master branch.
> >> If there is any problem, let me know, plz
> >>
> >> Best Regards,
> >> Jaehoon Chung
> >>
> >> CI: 
> >> https://protect2.fireeye.com/v1/url?k=aa60f1d5-cbebe4f5-aa617a9a-74fe485fb347-
> 9095c5a77eabfca7=1=d67a142c-0b69-4de3-be99-de9292c603f2=https%3A%2F%2Fsource.denx.de%2Fu-
> boot%2Fcustodians%2Fu-boot-mmc%2F-%2Fpipelines%2F20547
> >>
> >> The following changes since commit 
> >> d097f9e1299a3bdb7de468f0d9bbc63932f461cd:
> >>
> >>Merge tag 'fsl-qoriq-2024-4-24' of 
> >> https://protect2.fireeye.com/v1/url?k=93e2c287-f269d7a7-
> 93e349c8-74fe485fb347-247fe01368500b3b=1=d67a142c-0b69-4de3-be99-
> de9292c603f2=https%3A%2F%2Fsource.denx.de%2Fu-boot%2Fcustodians%2Fu-boot-fsl-qoriq
>  (2024-04-23
> 17:53:06 -0600)
> >>
> >> are available in the Git repository at:
> >>
> >>g...@source.denx.de:u-boot/custodians/u-boot-mmc.git master
> >>
> >> for you to fetch changes up to 1776213dadef4b578f98bcf18beb152f8975a8bf:
> >>
> >>mmc: arm_pl180: Limit data transfer to U16_MAX (2024-04-26 15:32:06 
> >> +0900)
> >>
> >
> > Applied to u-boot/master, thanks!
> >
>
>
> A patch in this series caused a regression for AM62x SK with the
> following error:
>
> Error reading cluster
> spl_load_image_fat: error reading image u-boot.img, err - -22
> SPL: failed to boot from all boot devices (err=-6)
> ### ERROR ### Please RESET the board ###
>
> Git bisect showed "mmc: sdhci: introduce adma_write_desc() hook to
> struct sdhci_ops" to be the offending commit.
>
> Could someone point me to the next steps to fix this issue?

I will check this problem. Thanks for pointing out.

Best Regards,
Jaehoon Chung

>
> regards,
> Judith




Re: [GIT PULL] Please pull u-boot-mmc master

2024-04-29 Thread Judith Mendez

Hi all,

On 4/26/24 10:51 AM, Tom Rini wrote:

On Fri, Apr 26, 2024 at 07:38:30PM +0900, Jaehoon Chung wrote:


Dear Tom,

Please pull u-boot-mmc master into u-boot master branch.
If there is any problem, let me know, plz

Best Regards,
Jaehoon Chung

CI: https://source.denx.de/u-boot/custodians/u-boot-mmc/-/pipelines/20547

The following changes since commit d097f9e1299a3bdb7de468f0d9bbc63932f461cd:

   Merge tag 'fsl-qoriq-2024-4-24' of 
https://source.denx.de/u-boot/custodians/u-boot-fsl-qoriq (2024-04-23 17:53:06 
-0600)

are available in the Git repository at:

   g...@source.denx.de:u-boot/custodians/u-boot-mmc.git master

for you to fetch changes up to 1776213dadef4b578f98bcf18beb152f8975a8bf:

   mmc: arm_pl180: Limit data transfer to U16_MAX (2024-04-26 15:32:06 +0900)



Applied to u-boot/master, thanks!




A patch in this series caused a regression for AM62x SK with the
following error:

Error reading cluster
spl_load_image_fat: error reading image u-boot.img, err - -22
SPL: failed to boot from all boot devices (err=-6)
### ERROR ### Please RESET the board ###

Git bisect showed "mmc: sdhci: introduce adma_write_desc() hook to
struct sdhci_ops" to be the offending commit.

Could someone point me to the next steps to fix this issue?

regards,
Judith


Re: [GIT PULL] Please pull u-boot-mmc master

2024-04-26 Thread Tom Rini
On Fri, Apr 26, 2024 at 07:38:30PM +0900, Jaehoon Chung wrote:

> Dear Tom,
> 
> Please pull u-boot-mmc master into u-boot master branch.
> If there is any problem, let me know, plz
> 
> Best Regards,
> Jaehoon Chung
> 
> CI: https://source.denx.de/u-boot/custodians/u-boot-mmc/-/pipelines/20547
> 
> The following changes since commit d097f9e1299a3bdb7de468f0d9bbc63932f461cd:
> 
>   Merge tag 'fsl-qoriq-2024-4-24' of 
> https://source.denx.de/u-boot/custodians/u-boot-fsl-qoriq (2024-04-23 
> 17:53:06 -0600)
> 
> are available in the Git repository at:
> 
>   g...@source.denx.de:u-boot/custodians/u-boot-mmc.git master
> 
> for you to fetch changes up to 1776213dadef4b578f98bcf18beb152f8975a8bf:
> 
>   mmc: arm_pl180: Limit data transfer to U16_MAX (2024-04-26 15:32:06 +0900)
> 

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: PGP signature


[GIT PULL] Please pull u-boot-mmc master

2024-04-26 Thread Jaehoon Chung
Dear Tom,

Please pull u-boot-mmc master into u-boot master branch.
If there is any problem, let me know, plz

Best Regards,
Jaehoon Chung

CI: https://source.denx.de/u-boot/custodians/u-boot-mmc/-/pipelines/20547

The following changes since commit d097f9e1299a3bdb7de468f0d9bbc63932f461cd:

  Merge tag 'fsl-qoriq-2024-4-24' of 
https://source.denx.de/u-boot/custodians/u-boot-fsl-qoriq (2024-04-23 17:53:06 
-0600)

are available in the Git repository at:

  g...@source.denx.de:u-boot/custodians/u-boot-mmc.git master

for you to fetch changes up to 1776213dadef4b578f98bcf18beb152f8975a8bf:

  mmc: arm_pl180: Limit data transfer to U16_MAX (2024-04-26 15:32:06 +0900)


Greg Malysa (1):
  mmc: Support 32-bit only ADMA on 64-bit platforms

Ian Roberts (2):
  mmc: sdhci: introduce adma_write_desc() hook to struct sdhci_ops
  mmc: sdhci: Fix potential ADMA descriptor table overflow

Jonas Karlman (2):
  mmc: Imply HS200 cap with mmc-hs400 prop to match linux
  mmc: Add support for the no-mmc-hs400 prop

Maximilian Brune (1):
  mmc: arm_pl180: Limit data transfer to U16_MAX

cmachida (1):
  mmc: sdhci: programmable clock calculation needs multiplier +1

 drivers/mmc/Kconfig  | 18 ++
 drivers/mmc/arm_pl180_mmci.c | 10 ++
 drivers/mmc/fsl_esdhc.c  |  2 +-
 drivers/mmc/mmc-uclass.c |  7 +--
 drivers/mmc/sdhci-adma.c | 43 +--
 drivers/mmc/sdhci.c  | 26 ++
 include/sdhci.h  | 21 +++--
 7 files changed, 96 insertions(+), 31 deletions(-)


Re: [GIT PULL] Please pull u-boot-mmc master

2024-04-15 Thread Tom Rini
On Mon, Apr 15, 2024 at 06:52:30PM +0900, Jaehoon Chung wrote:

> Dear Tom,
> 
> Please pull u-boot-mmc master into u-boot master branch.
> If there is any problem, let me know, plz.
> 
> BTW, I'm checking other pending patches in more detail.
> After checking, I will apply them into u-boot-mmc. Sorry for too late.
> 
> Best Regards,
> Jaehoon Chung
> 
> CI: https://source.denx.de/u-boot/custodians/u-boot-mmc/-/pipelines/20345
> 
> The following changes since commit b03b49046af5dfca599d2ce8f0aafed89b97aa91:
> 
>   Merge https://source.denx.de/u-boot/custodians/u-boot-usb (2024-04-14 
> 15:58:31 -0600)
> 
> are available in the Git repository at:
> 
>   g...@source.denx.de:u-boot/custodians/u-boot-mmc.git master
> 
> for you to fetch changes up to 3657ef738ad6aa2c32c569e7ae67a5557343f7d0:
> 
>   mmc: cv1800b_sdhci: Remove the unused argument (2024-04-15 17:58:59 +0900)
> 

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: PGP signature


[GIT PULL] Please pull u-boot-mmc master

2024-04-15 Thread Jaehoon Chung
Dear Tom,

Please pull u-boot-mmc master into u-boot master branch.
If there is any problem, let me know, plz.

BTW, I'm checking other pending patches in more detail.
After checking, I will apply them into u-boot-mmc. Sorry for too late.

Best Regards,
Jaehoon Chung

CI: https://source.denx.de/u-boot/custodians/u-boot-mmc/-/pipelines/20345

The following changes since commit b03b49046af5dfca599d2ce8f0aafed89b97aa91:

  Merge https://source.denx.de/u-boot/custodians/u-boot-usb (2024-04-14 
15:58:31 -0600)

are available in the Git repository at:

  g...@source.denx.de:u-boot/custodians/u-boot-mmc.git master

for you to fetch changes up to 3657ef738ad6aa2c32c569e7ae67a5557343f7d0:

  mmc: cv1800b_sdhci: Remove the unused argument (2024-04-15 17:58:59 +0900)


Heinrich Schuchardt (2):
  mmc: Avoid buffer overrun in mmc_startup()
  mmc: Don't suggest to build modules in Kconfig.

Jaehoon Chung (1):
  mmc: cv1800b_sdhci: Remove the unused argument

Jonas Karlman (1):
  mmc: Add SPL_MMC_PWRSEQ to fix link issue when building SPL

Linus Walleij (1):
  mmc: arm_pl180_mmci: Rely on DM

Marek Vasut (7):
  mmc: Drop unused mmc_send_tuning() cmd_error parameter
  mmc: tmio: Check INFO1 for completion during DMA transfer
  mmc: renesas-sdhi: Stop transmission in case tuning block transfer fails
  mmc: Convert hs400_tuning flag from u8 to bool
  mmc: Add generic tuning flag
  mmc: renesas-sdhi: Do not access SCC during tuning in send_cmd callback
  mmc: Unconditionally call mmc_deinit()

Yang Xiwen (3):
  mmc: hi6220-dwmmc: handle clocks and resets if CONFIG_CLK and 
CONFIG_DM_RESET enabled
  mmc: dw_mmc: Don't return error if data busy timeout
  mmc: hi6220_dw_mmc: add fifoth_val to private data and set it in .probe

 drivers/mmc/Kconfig   | 23 +-
 drivers/mmc/Makefile  |  2 +-
 drivers/mmc/am654_sdhci.c |  2 +-
 drivers/mmc/arm_pl180_mmci.c  | 66 ++-
 drivers/mmc/cv1800b_sdhci.c   |  2 +-
 drivers/mmc/dw_mmc.c  |  4 +--
 drivers/mmc/fsl_esdhc.c   |  2 +-
 drivers/mmc/fsl_esdhc_imx.c   |  2 +-
 drivers/mmc/hi6220_dw_mmc.c   | 72 +--
 drivers/mmc/meson_gx_mmc.c|  2 +-
 drivers/mmc/mmc-uclass.c  | 21 +
 drivers/mmc/mmc.c | 38 +--
 drivers/mmc/mtk-sd.c  | 21 ++---
 drivers/mmc/octeontx_hsmmc.c  |  8 -
 drivers/mmc/omap_hsmmc.c  |  6 ++--
 drivers/mmc/renesas-sdhi.c| 21 +++--
 drivers/mmc/rockchip_dw_mmc.c |  2 +-
 drivers/mmc/sdhci-cadence.c   |  2 +-
 drivers/mmc/tmio-common.c |  8 -
 include/mmc.h |  9 +++---
 20 files changed, 179 insertions(+), 134 deletions(-)


Re: [GIT PULL] Please pull u-boot-mmc master

2023-11-01 Thread Tom Rini
On Wed, Nov 01, 2023 at 04:56:30PM +0900, Jaehoon Chung wrote:

> Dear Tom,
> 
> Please pull u-boot-mmc master into u-boot master branch.
> If there is any problem, let me know, plz. 
> 
> Best Regards,
> Jaehoon Chung
> 
> CI: https://source.denx.de/u-boot/custodians/u-boot-mmc/-/pipelines/18386
> 
> The following changes since commit 62fc66b6d228d628c3f672c736aa57e4174ac783:
> 
>   Merge branch '2023-10-31-platform-updates' (2023-10-31 13:08:10 -0400)
> 
> are available in the Git repository at:
> 
>   g...@source.denx.de:u-boot/custodians/u-boot-mmc.git master
> 
> for you to fetch changes up to b5f403936d037e0bc08e78b8af64adf53da13b90:
> 
>   cmd: mmc: Add mmc reg read command for reading card registers (2023-11-01 
> 10:09:21 +0900)
> 

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: PGP signature


[GIT PULL] Please pull u-boot-mmc master

2023-11-01 Thread Jaehoon Chung
Dear Tom,

Please pull u-boot-mmc master into u-boot master branch.
If there is any problem, let me know, plz. 

Best Regards,
Jaehoon Chung

CI: https://source.denx.de/u-boot/custodians/u-boot-mmc/-/pipelines/18386

The following changes since commit 62fc66b6d228d628c3f672c736aa57e4174ac783:

  Merge branch '2023-10-31-platform-updates' (2023-10-31 13:08:10 -0400)

are available in the Git repository at:

  g...@source.denx.de:u-boot/custodians/u-boot-mmc.git master

for you to fetch changes up to b5f403936d037e0bc08e78b8af64adf53da13b90:

  cmd: mmc: Add mmc reg read command for reading card registers (2023-11-01 
10:09:21 +0900)


Bin Meng (1):
  mmc: pci: Drop the superfluous cast

Marek Vasut (1):
  cmd: mmc: Add mmc reg read command for reading card registers

Oleksandr Suvorov (1):
  mmc: spl: select SPL_BLK for SPL_DM_MMC

Sean Anderson (1):
  mmc: sdhci: Rework SDHCI_QUIRK_BROKEN_R1B

 cmd/Kconfig   |  7 
 cmd/mmc.c | 96 +++
 doc/usage/cmd/mmc.rst | 26 ++
 drivers/mmc/Kconfig   |  1 +
 drivers/mmc/pci_mmc.c |  4 +--
 drivers/mmc/sdhci.c   | 19 ++
 include/sdhci.h   |  1 +
 7 files changed, 145 insertions(+), 9 deletions(-)


Re: [GIT PULL] Please pull u-boot-mmc master

2023-07-19 Thread Tom Rini
On Tue, Jul 18, 2023 at 04:49:26PM +0900, Jaehoon Chung wrote:

> Dear Tom,
> 
> Please pull u-boot-mmc master into u-boot master branch.
> If there is any problem, let me know, plz. 
> 
> Best Regards,
> Jaehoon Chung
> 
> CI: https://source.denx.de/u-boot/custodians/u-boot-mmc/-/pipelines/16946
> 
> The following changes since commit 13aa090b87a0fbdfe690011669b9fdb96bb1ccc7:
> 
>   Merge https://source.denx.de/u-boot/custodians/u-boot-x86 (2023-07-17 
> 10:38:28 -0400)
> 
> are available in the Git repository at:
> 
>   g...@source.denx.de:u-boot/custodians/u-boot-mmc.git master
> 
> for you to fetch changes up to 50dee4f3610331cc31f1f02f9d4116b716907011:
> 
>   mmc: Set clock when reverting to safe bus mode (2023-07-18 09:17:29 +0900)
> 

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: PGP signature


[GIT PULL] Please pull u-boot-mmc master

2023-07-18 Thread Jaehoon Chung
Dear Tom,

Please pull u-boot-mmc master into u-boot master branch.
If there is any problem, let me know, plz. 

Best Regards,
Jaehoon Chung

CI: https://source.denx.de/u-boot/custodians/u-boot-mmc/-/pipelines/16946

The following changes since commit 13aa090b87a0fbdfe690011669b9fdb96bb1ccc7:

  Merge https://source.denx.de/u-boot/custodians/u-boot-x86 (2023-07-17 
10:38:28 -0400)

are available in the Git repository at:

  g...@source.denx.de:u-boot/custodians/u-boot-mmc.git master

for you to fetch changes up to 50dee4f3610331cc31f1f02f9d4116b716907011:

  mmc: Set clock when reverting to safe bus mode (2023-07-18 09:17:29 +0900)


Hai Pham (2):
  mmc: Introduce mmc_send_stop_transmission()
  mmc: renesas-sdhi: Send stop when MMC tuning command fails

Marek Vasut (1):
  mmc: Fix MMC_CMD_STOP_TRANSMISSION response type and add comment

Valentine Barshak (1):
  mmc: Set clock when reverting to safe bus mode

 drivers/mmc/mmc.c  | 26 ++
 drivers/mmc/renesas-sdhi.c | 11 +++
 include/mmc.h  |  2 ++
 3 files changed, 35 insertions(+), 4 deletions(-)


RE: [GIT PULL] Please pull u-boot-mmc master

2023-07-06 Thread Jaehoon Chung
Dear Tom,

> -Original Message-
> From: U-Boot  On Behalf Of Jaehoon Chung
> Sent: Tuesday, July 4, 2023 10:29 AM
> To: U-Boot Mailing List 
> Cc: Tom Rini ; Hai Pham ; Marek 
> Vasut ;
> Pali Rohár ; alentine Barshak 
> ; Jae hoon Chung
> ; Peng Fan 
> Subject: [GIT PULL] Please pull u-boot-mmc master
> 
> Dear Tom,
> 
> Please pull u-boot-mmc master into u-boot master branch.
> If there is any problem, let me know, plz. Sorry for too late.
> 
> Those patches are the fixing reensas-sdhi tuning command error and improve 
> the comment.
> (I have also tested with this patchset on my board.)


Discard this PR. I will resend PR for next with other patches.

Best Regards,
Jaehoon Chung

> 
> Best Regards,
> Jaehoon Chung
> 
> CI: 
> https://protect2.fireeye.com/v1/url?k=3413c387-6b8feaad-341248c8-000babe598f7-
> 1d8ae2363cc60248=1=aa47dcdd-bf48-4c74-8476-5a86c94862a1=https%3A%2F%2Fsource.denx.de%2Fu-
> boot%2Fcustodians%2Fu-boot-mmc%2F-%2Fpipelines%2F16765
> 
> 
> The following changes since commit e1bebc16e1d9aa0ddd56c53c0b781f7186dce557:
> 
>   Prepare v2023.07-rc6 (2023-07-03 13:48:58 -0400)
> 
> are available in the Git repository at:
> 
>   g...@source.denx.de:u-boot/custodians/u-boot-mmc.git master
> 
> for you to fetch changes up to 40825dbac96542e914df4baa3aa0252a503b6b88:
> 
>   mmc: Set clock when reverting to safe bus mode (2023-07-04 08:14:18 +0900)
> 
> 
> Hai Pham (2):
>   mmc: Introduce mmc_send_stop_transmission()
>   mmc: renesas-sdhi: Send stop when MMC tuning command fails
> 
> Marek Vasut (1):
>   mmc: Fix MMC_CMD_STOP_TRANSMISSION response type and add comment
> 
> Pali Rohár (1):
>   mmc: spl: Add comments for default_spl_mmc_emmc_boot_partition()
> 
> Valentine Barshak (1):
>   mmc: Set clock when reverting to safe bus mode
> 
>  common/spl/spl_mmc.c   | 42 +++---
>  drivers/mmc/mmc.c  | 26 ++
>  drivers/mmc/renesas-sdhi.c | 11 +++
>  include/mmc.h  |  2 ++
>  4 files changed, 74 insertions(+), 7 deletions(-)




[GIT PULL] Please pull u-boot-mmc master

2023-07-03 Thread Jaehoon Chung
Dear Tom,

Please pull u-boot-mmc master into u-boot master branch.
If there is any problem, let me know, plz. Sorry for too late.

Those patches are the fixing reensas-sdhi tuning command error and improve the 
comment.
(I have also tested with this patchset on my board.)

Best Regards,
Jaehoon Chung

CI: https://source.denx.de/u-boot/custodians/u-boot-mmc/-/pipelines/16765


The following changes since commit e1bebc16e1d9aa0ddd56c53c0b781f7186dce557:

  Prepare v2023.07-rc6 (2023-07-03 13:48:58 -0400)

are available in the Git repository at:

  g...@source.denx.de:u-boot/custodians/u-boot-mmc.git master

for you to fetch changes up to 40825dbac96542e914df4baa3aa0252a503b6b88:

  mmc: Set clock when reverting to safe bus mode (2023-07-04 08:14:18 +0900)


Hai Pham (2):
  mmc: Introduce mmc_send_stop_transmission()
  mmc: renesas-sdhi: Send stop when MMC tuning command fails

Marek Vasut (1):
  mmc: Fix MMC_CMD_STOP_TRANSMISSION response type and add comment

Pali Rohár (1):
  mmc: spl: Add comments for default_spl_mmc_emmc_boot_partition()

Valentine Barshak (1):
  mmc: Set clock when reverting to safe bus mode

 common/spl/spl_mmc.c   | 42 +++---
 drivers/mmc/mmc.c  | 26 ++
 drivers/mmc/renesas-sdhi.c | 11 +++
 include/mmc.h  |  2 ++
 4 files changed, 74 insertions(+), 7 deletions(-)


Re: [GIT PULL] Please pull u-boot-mmc master

2023-04-10 Thread Tom Rini
On Mon, Apr 10, 2023 at 07:18:55PM +0900, Jaehoon Chung wrote:

> Dear Tom,
> 
> Please pull u-boot-mmc master into u-boot master branch.
> If there is any problem, let me know, plz.
> 
> Best Regards,
> Jaehoon Chung
> 
> CI: https://source.denx.de/u-boot/custodians/u-boot-mmc/-/pipelines/15969
> 
> 
> The following changes since commit 7daa8dd59bc8455a43cdd2d0e34206e406e5cdcc:
> 
>   Merge tag 'efi-2023-07-rc1' of 
> https://source.denx.de/u-boot/custodians/u-boot-efi (2023-04-09 11:08:39 
> -0400)
> 
> are available in the Git repository at:
> 
>   g...@source.denx.de:u-boot/custodians/u-boot-mmc.git master
> 
> for you to fetch changes up to fbf368f176641029ac30843d4d3dbf26e384df38:
> 
>   cmd: mmc: Return CMD_RET_* from commands (2023-04-10 12:18:45 +0900)
> 

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: PGP signature


[GIT PULL] Please pull u-boot-mmc master

2023-04-10 Thread Jaehoon Chung
Dear Tom,

Please pull u-boot-mmc master into u-boot master branch.
If there is any problem, let me know, plz.

Best Regards,
Jaehoon Chung

CI: https://source.denx.de/u-boot/custodians/u-boot-mmc/-/pipelines/15969


The following changes since commit 7daa8dd59bc8455a43cdd2d0e34206e406e5cdcc:

  Merge tag 'efi-2023-07-rc1' of 
https://source.denx.de/u-boot/custodians/u-boot-efi (2023-04-09 11:08:39 -0400)

are available in the Git repository at:

  g...@source.denx.de:u-boot/custodians/u-boot-mmc.git master

for you to fetch changes up to fbf368f176641029ac30843d4d3dbf26e384df38:

  cmd: mmc: Return CMD_RET_* from commands (2023-04-10 12:18:45 +0900)


Loic Poulain (3):
  mmc: Check support for TRIM operations
  mmc: erase: Use TRIM erase when available
  test: dm: mmc: Check block erasing boundaries

Pali Rohár (2):
  mmc: Use EXT_CSD_EXTRACT_BOOT_PART() macro for extracting boot part
  cmd: mmc: Return CMD_RET_* from commands

Stefan Roese (3):
  mmc: mv_sdhci: Simplify call to sdhci_mvebu_mbus_config()
  mmc: mv_sdhci: Remove CONFIG_MMC_SDHCI_IO_ACCESSORS support
  mmc: mv_sdhci: Depend on DM_MMC

 board/purism/librem5/librem5.c |  2 +-
 cmd/mmc.c  | 18 ++
 cmd/mvebu/bubt.c   |  3 +--
 common/spl/spl_mmc.c   |  2 +-
 drivers/mmc/Kconfig|  1 +
 drivers/mmc/mmc.c  |  3 +++
 drivers/mmc/mmc_write.c| 34 +-
 drivers/mmc/mv_sdhci.c | 55 +++---
 include/mmc.h  |  4 +++
 test/dm/mmc.c  | 14 +--
 10 files changed, 63 insertions(+), 73 deletions(-)


RE: [GIT PULL] Please pull u-boot-mmc master

2023-03-12 Thread Jaehoon Chung
Hi,

> -Original Message-
> From: Tom Rini 
> Sent: Saturday, March 11, 2023 3:09 AM
> To: Marek Vasut 
> Cc: Jaehoon Chung ; U-Boot Mailing List 
> ; Loic Poulain
> ; Stefan Roese ; Jae hoon Chung 
> 
> Subject: Re: [GIT PULL] Please pull u-boot-mmc master
> 
> On Fri, Mar 10, 2023 at 05:28:40PM +0100, Marek Vasut wrote:
> > On 3/10/23 16:44, Tom Rini wrote:
> > > On Fri, Mar 10, 2023 at 01:22:15PM +0900, Jaehoon Chung wrote:
> > > > Dear Tom,
> > > >
> > > >
> > > > Please pull u-boot-mmc master into u-boot master branch.
> > > > If there is any problem, let me know, plz.
> > >
> > > At this point in the cycle I have to ask, are these all fixes of
> > > specific issues? If not, I'd rather take this to -next. Thanks!
> >
> > The stuff from me can easily go into next.
> 
> And on that note, I have bad news.  This commit:
> Author: Marek Vasut 
> Date:   Thu Jan 5 15:28:31 2023 +0100
> 
> spl: mmc: Pass eMMC HW partition 7 through
> 
> leads to my pine64_plus board hanging in SPL with:
> U-Boot SPL 2023.04-rc3-00084-g85f29eb025cb (Mar 10 2023 - 13:05:36 -0500)
> DRAM: 1024 MiB
> Trying to boot from MMC1
> 
> When trying to boot from SD card. If you don't have something there that
> you can get to fail, let me know and I'll get you access to my lab.

I will check again this. Thanks!

Best Regards,
Jaehoon Chung

> 
> --
> Tom



RE: [GIT PULL] Please pull u-boot-mmc master

2023-03-12 Thread Jaehoon Chung
Dear Tom,

> -Original Message-
> From: Tom Rini 
> Sent: Saturday, March 11, 2023 12:44 AM
> To: Jaehoon Chung 
> Cc: U-Boot Mailing List ; Loic Poulain 
> ; Marek Vasut
> ; Stefan Roese ; Jae hoon Chung 
> 
> Subject: Re: [GIT PULL] Please pull u-boot-mmc master
> 
> On Fri, Mar 10, 2023 at 01:22:15PM +0900, Jaehoon Chung wrote:
> > Dear Tom,
> >
> >
> > Please pull u-boot-mmc master into u-boot master branch.
> > If there is any problem, let me know, plz.
> 
> At this point in the cycle I have to ask, are these all fixes of
> specific issues? If not, I'd rather take this to -next. Thanks!

Okay.  I will request PR as -next again. Discard this PR.

Best Regards,
Jaehoon Chung

> 
> --
> Tom



Re: [GIT PULL] Please pull u-boot-mmc master

2023-03-10 Thread Tom Rini
On Fri, Mar 10, 2023 at 05:28:40PM +0100, Marek Vasut wrote:
> On 3/10/23 16:44, Tom Rini wrote:
> > On Fri, Mar 10, 2023 at 01:22:15PM +0900, Jaehoon Chung wrote:
> > > Dear Tom,
> > > 
> > > 
> > > Please pull u-boot-mmc master into u-boot master branch.
> > > If there is any problem, let me know, plz.
> > 
> > At this point in the cycle I have to ask, are these all fixes of
> > specific issues? If not, I'd rather take this to -next. Thanks!
> 
> The stuff from me can easily go into next.

And on that note, I have bad news.  This commit:
Author: Marek Vasut 
Date:   Thu Jan 5 15:28:31 2023 +0100

spl: mmc: Pass eMMC HW partition 7 through

leads to my pine64_plus board hanging in SPL with:
U-Boot SPL 2023.04-rc3-00084-g85f29eb025cb (Mar 10 2023 - 13:05:36 -0500)
DRAM: 1024 MiB
Trying to boot from MMC1

When trying to boot from SD card. If you don't have something there that
you can get to fail, let me know and I'll get you access to my lab.

-- 
Tom


signature.asc
Description: PGP signature


Re: [GIT PULL] Please pull u-boot-mmc master

2023-03-10 Thread Stefan Roese

On 3/10/23 17:28, Marek Vasut wrote:

On 3/10/23 16:44, Tom Rini wrote:

On Fri, Mar 10, 2023 at 01:22:15PM +0900, Jaehoon Chung wrote:

Dear Tom,


Please pull u-boot-mmc master into u-boot master branch.
If there is any problem, let me know, plz.


At this point in the cycle I have to ask, are these all fixes of
specific issues? If not, I'd rather take this to -next. Thanks!


The stuff from me can easily go into next.


Same for my patches.

Thanks,
Stefan


Re: [GIT PULL] Please pull u-boot-mmc master

2023-03-10 Thread Marek Vasut

On 3/10/23 16:44, Tom Rini wrote:

On Fri, Mar 10, 2023 at 01:22:15PM +0900, Jaehoon Chung wrote:

Dear Tom,


Please pull u-boot-mmc master into u-boot master branch.
If there is any problem, let me know, plz.


At this point in the cycle I have to ask, are these all fixes of
specific issues? If not, I'd rather take this to -next. Thanks!


The stuff from me can easily go into next.


Re: [GIT PULL] Please pull u-boot-mmc master

2023-03-10 Thread Tom Rini
On Fri, Mar 10, 2023 at 01:22:15PM +0900, Jaehoon Chung wrote:
> Dear Tom,
> 
> 
> Please pull u-boot-mmc master into u-boot master branch.
> If there is any problem, let me know, plz.

At this point in the cycle I have to ask, are these all fixes of
specific issues? If not, I'd rather take this to -next. Thanks!

-- 
Tom


signature.asc
Description: PGP signature


[GIT PULL] Please pull u-boot-mmc master

2023-03-09 Thread Jaehoon Chung
Dear Tom,


Please pull u-boot-mmc master into u-boot master branch.
If there is any problem, let me know, plz.

Best Regards,
Jaehoon Chung


CI: https://source.denx.de/u-boot/custodians/u-boot-mmc/-/pipelines/15512


The following changes since commit b08ffdffdce95e267e782366f4a77bf6b5537b28:

  Merge https://source.denx.de/u-boot/custodians/u-boot-marvell (2023-03-06 
14:56:05 -0500)

are available in the Git repository at:

  g...@source.denx.de:u-boot/custodians/u-boot-mmc.git master

for you to fetch changes up to 279b0f4a9265bb9fd55cf2005646ebf43e47b50e:

  mmc: mv_sdhci: Depend on DM_MMC (2023-03-09 14:33:40 +0900)


Loic Poulain (3):
  mmc: Check support for TRIM operations
  mmc: erase: Use TRIM erase when available
  test: dm: mmc: Check block erasing boundaries

Marek Vasut (2):
  spl: mmc: Pass eMMC HW partition and SW partition to 
spl_mmc_get_uboot_raw_sector()
  spl: mmc: Pass eMMC HW partition 7 through

Stefan Roese (3):
  mmc: mv_sdhci: Simplify call to sdhci_mvebu_mbus_config()
  mmc: mv_sdhci: Remove CONFIG_MMC_SDHCI_IO_ACCESSORS support
  mmc: mv_sdhci: Depend on DM_MMC

 arch/arm/mach-imx/image-container.c |  2 ++
 arch/arm/mach-sunxi/board.c |  2 ++
 common/spl/spl_mmc.c| 10 +--
 drivers/mmc/Kconfig |  1 +
 drivers/mmc/mmc.c   |  3 ++
 drivers/mmc/mmc_write.c | 34 +++
 drivers/mmc/mv_sdhci.c  | 55 ++---
 include/mmc.h   |  4 +++
 test/dm/mmc.c   | 14 +-
 9 files changed, 58 insertions(+), 67 deletions(-)


Re: [GIT PULL] Please pull u-boot-mmc master

2023-01-31 Thread Tom Rini
On Wed, Feb 01, 2023 at 08:38:35AM +0900, Jaehoon Chung wrote:

> Dear Tom,
> 
> Please pull u-boot-mmc master into u-boot master branch.
> If there is any problem, let me know, plz.
> 
> Best Regards,
> Jaehoon Chung
> 
> CI: https://source.denx.de/u-boot/custodians/u-boot-mmc/-/pipelines/14951
> 
> 
> The following changes since commit 30db474704405be823259851cbb76fa05366c8af:
> 
>   Prepare v2023.04-rc1 (2023-01-30 15:36:45 -0500)
> 
> are available in the Git repository at:
> 
>   g...@source.denx.de:u-boot/custodians/u-boot-mmc.git master
> 
> for you to fetch changes up to a1f8abf4686065f46ac840e956a1aeb68d90d969:
> 
>   mmc: zynq_sdhci: Add support and quirk for HS400 (2023-01-31 22:02:27 +0900)
> 

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: PGP signature


[GIT PULL] Please pull u-boot-mmc master

2023-01-31 Thread Jaehoon Chung
Dear Tom,

Please pull u-boot-mmc master into u-boot master branch.
If there is any problem, let me know, plz.

Best Regards,
Jaehoon Chung

CI: https://source.denx.de/u-boot/custodians/u-boot-mmc/-/pipelines/14951


The following changes since commit 30db474704405be823259851cbb76fa05366c8af:

  Prepare v2023.04-rc1 (2023-01-30 15:36:45 -0500)

are available in the Git repository at:

  g...@source.denx.de:u-boot/custodians/u-boot-mmc.git master

for you to fetch changes up to a1f8abf4686065f46ac840e956a1aeb68d90d969:

  mmc: zynq_sdhci: Add support and quirk for HS400 (2023-01-31 22:02:27 +0900)


Ashok Reddy Soma (4):
  mmc: zynq_sdhci: Add support for eMMC5.1 for Versal NET platform
  mmc: sdhci: Check and call config_dll callback functions
  mmc: sdhci: Enable HS400 support if available in caps
  mmc: zynq_sdhci: Add support and quirk for HS400

Marek Vasut (1):
  cmd: mmc: Expand bkops handling

 cmd/mmc.c|  49 ++--
 drivers/mmc/mmc.c|  14 ++-
 drivers/mmc/sdhci.c  |  20 
 drivers/mmc/zynq_sdhci.c | 292 ++-
 include/mmc.h|  14 ++-
 include/sdhci.h  |   5 +
 6 files changed, 375 insertions(+), 19 deletions(-)


Re: [GIT PULL] Please pull u-boot-mmc master

2022-10-25 Thread Tom Rini
On Tue, Oct 25, 2022 at 09:55:06AM +0900, Jaehoon Chung wrote:

> Dear Tom,
> 
> 
> Please pull u-boot-mmc master into u-boot master branch.
> If there is any problem, let me know, plz.
> 
> Best Regards,
> Jaehoon Chung
> 
> CI: https://source.denx.de/u-boot/custodians/u-boot-mmc/-/pipelines/13923
> 
> 
> The following changes since commit 7723828c97bc107d2fba976fc50403ac8747f1bc:
> 
>   Merge branch '2022-10-21-enforce-some-DM-migrations' (2022-10-21 15:32:45 
> -0400)
> 
> are available in the Git repository at:
> 
>   g...@source.denx.de:u-boot/custodians/u-boot-mmc.git master
> 
> for you to fetch changes up to 337af54a36c6409b7eeb49619c796178b3c22372:
> 
>   mmc: Fix static checker warnings (2022-10-24 18:02:54 +0900)
> 

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: PGP signature


[GIT PULL] Please pull u-boot-mmc master

2022-10-24 Thread Jaehoon Chung
Dear Tom,


Please pull u-boot-mmc master into u-boot master branch.
If there is any problem, let me know, plz.

Best Regards,
Jaehoon Chung

CI: https://source.denx.de/u-boot/custodians/u-boot-mmc/-/pipelines/13923


The following changes since commit 7723828c97bc107d2fba976fc50403ac8747f1bc:

  Merge branch '2022-10-21-enforce-some-DM-migrations' (2022-10-21 15:32:45 
-0400)

are available in the Git repository at:

  g...@source.denx.de:u-boot/custodians/u-boot-mmc.git master

for you to fetch changes up to 337af54a36c6409b7eeb49619c796178b3c22372:

  mmc: Fix static checker warnings (2022-10-24 18:02:54 +0900)


John Keeping (1):
  mmc: dwmmc: only clear handled interrupts

Kunihiko Hayashi (2):
  mmc: sdhci: Add new quirks for SUPPORT_SINGLE
  mmc: f_sdh30: Add support for F_SDH30_E51

Sergei Antonov (1):
  mmc: ftsdc010: make command timeout 250 ms as in the comment

Venkatesh Yadav Abbarapu (1):
  mmc: Fix static checker warnings

Yann Gautier (3):
  mmc: stm32_sdmmc2: add dual data rate support
  mmc: stm32_sdmmc2: protect against unsupported modes
  mmc: stm32_sdmmc2: manage vqmmc

 drivers/mmc/Kconfig|  4 ++--
 drivers/mmc/dw_mmc.c   |  3 ++-
 drivers/mmc/f_sdh30.c  | 66 
--
 drivers/mmc/ftsdc010_mci.c |  2 +-
 drivers/mmc/mmc.c  |  6 --
 drivers/mmc/sdhci.c|  8 +---
 drivers/mmc/stm32_sdmmc2.c | 20 +++-
 include/sdhci.h|  1 +
 8 files changed, 98 insertions(+), 12 deletions(-)


Re: [GIT PULL] Please pull u-boot-mmc master

2022-07-27 Thread Tom Rini
On Wed, Jul 27, 2022 at 05:01:03PM +0900, Jaehoon Chung wrote:

> Dear Tom,
> 
> Please pull u-boot-mmc master into u-boot master branch.
> If there is any problem, let me know, plz.
> 
> Best Regards,
> Jaehoon Chung
> 
> CI: https://source.denx.de/u-boot/custodians/u-boot-mmc/-/pipelines/12906
> 
> 
> The following changes since commit 86feeab3dc71977afb70f595e42060ce324086d0:
> 
>   Merge tag 'u-boot-imx-20220726' of 
> https://gitlab.denx.de/u-boot/custodians/u-boot-imx (2022-07-26 10:26:00 
> -0400)
> 
> are available in the Git repository at:
> 
>   g...@source.denx.de:u-boot/custodians/u-boot-mmc.git master
> 
> for you to fetch changes up to 2785fc4868db1f2643ffd2b989c88cde9dcced4c:
> 
>   mmc: pci_mmc.c should build with ACPIGEN=n (2022-07-27 15:19:42 +0900)
> 

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: PGP signature


[GIT PULL] Please pull u-boot-mmc master

2022-07-27 Thread Jaehoon Chung
Dear Tom,

Please pull u-boot-mmc master into u-boot master branch.
If there is any problem, let me know, plz.

Best Regards,
Jaehoon Chung

CI: https://source.denx.de/u-boot/custodians/u-boot-mmc/-/pipelines/12906


The following changes since commit 86feeab3dc71977afb70f595e42060ce324086d0:

  Merge tag 'u-boot-imx-20220726' of 
https://gitlab.denx.de/u-boot/custodians/u-boot-imx (2022-07-26 10:26:00 -0400)

are available in the Git repository at:

  g...@source.denx.de:u-boot/custodians/u-boot-mmc.git master

for you to fetch changes up to 2785fc4868db1f2643ffd2b989c88cde9dcced4c:

  mmc: pci_mmc.c should build with ACPIGEN=n (2022-07-27 15:19:42 +0900)


Heinrich Schuchardt (1):
  mmc: pci_mmc.c should build with ACPIGEN=n

Jim Liu (1):
  mmc: nuvoton: Add NPCM7xx mmc driver

Pali Rohár (1):
  mmc: fsl_esdhc: Fix 'Internal clock never stabilised.' error

Ying-Chun Liu (PaulLiu) (2):
  drivers: mmc: write protect single boot area
  cmd: mmc: allow to write protect single boot partition

 cmd/mmc.c| 18 --
 drivers/mmc/Kconfig  | 12 +++
 drivers/mmc/Makefile |  1 +
 drivers/mmc/fsl_esdhc.c  | 17 ++
 drivers/mmc/mmc.c| 27 +++
 drivers/mmc/npcm_sdhci.c | 86 
 drivers/mmc/pci_mmc.c|  3 ++
 include/mmc.h| 16 +
 8 files changed, 177 insertions(+), 3 deletions(-)
 create mode 100644 drivers/mmc/npcm_sdhci.c


Re: [GIT PULL] Please pull u-boot-mmc master

2022-06-16 Thread Tom Rini
On Thu, Jun 16, 2022 at 07:57:24AM +0900, Jaehoon Chung wrote:

> Dear Tom,
> 
> Please pull u-boot-mmc master into u-boot master branch.
> If there is any problem, let me know, plz.
> Sorry for late.
> 
> Best Regards,
> Jaehoon Chung
> 
> CI: https://source.denx.de/u-boot/custodians/u-boot-mmc/-/pipelines/12319
> 
> 
> The following changes since commit c18e5fb055ab789f58434e3cb432582adee0134c:
> 
>   dtoc: Update test_src_scan.py for new tegra compatibles (2022-06-14 
> 13:59:23 -0400)
> 
> are available in the Git repository at:
> 
>   g...@source.denx.de:u-boot/custodians/u-boot-mmc.git master
> 
> for you to fetch changes up to 12a29d3b851029212ca3b3e0f233fc7b62aa0a39:
> 
>   mmc: fsl_esdhc_imx: Implement wait_dat0 mmc ops (2022-06-15 15:39:59 +0900)
> 

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: PGP signature


[GIT PULL] Please pull u-boot-mmc master

2022-06-15 Thread Jaehoon Chung
Dear Tom,

Please pull u-boot-mmc master into u-boot master branch.
If there is any problem, let me know, plz.
Sorry for late.

Best Regards,
Jaehoon Chung

CI: https://source.denx.de/u-boot/custodians/u-boot-mmc/-/pipelines/12319


The following changes since commit c18e5fb055ab789f58434e3cb432582adee0134c:

  dtoc: Update test_src_scan.py for new tegra compatibles (2022-06-14 13:59:23 
-0400)

are available in the Git repository at:

  g...@source.denx.de:u-boot/custodians/u-boot-mmc.git master

for you to fetch changes up to 12a29d3b851029212ca3b3e0f233fc7b62aa0a39:

  mmc: fsl_esdhc_imx: Implement wait_dat0 mmc ops (2022-06-15 15:39:59 +0900)


Loic Poulain (2):
  mmc: Add support for wait_dat0 callback
  mmc: fsl_esdhc_imx: Implement wait_dat0 mmc ops

Patrick Delaunay (2):
  mmc: fix error message for unaligned erase request
  env: mmc : align erase address and size on erase_grp_size

 drivers/mmc/fsl_esdhc_imx.c | 50 ++---
 drivers/mmc/mmc.c   |  3 +++
 drivers/mmc/mmc_write.c |  2 +-
 env/mmc.c   | 10 ++---
 include/mmc.h   |  1 +
 5 files changed, 45 insertions(+), 21 deletions(-)


Re: [GIT PULL] Please pull u-boot-mmc master

2022-03-16 Thread Tom Rini
On Wed, Mar 16, 2022 at 07:30:11PM +0900, Jaehoon Chung wrote:

> Dear Tom,
> 
> Please pull u-boot-mmc master into u-boot master branch.
> If there is any problem, let me know, plz.
> Sorry for late.
> 
> Best Regards,
> Jaehoon Chung
> 
> CI: https://source.denx.de/u-boot/custodians/u-boot-mmc/-/pipelines/11304
> 
> The following changes since commit 4dc9b1771b152838ddfc4ae86a0ab9fd53ea16f7:
> 
>   Merge https://source.denx.de/u-boot/custodians/u-boot-usb (2022-03-14 
> 22:54:53 -0400)
> 
> are available in the Git repository at:
> 
>   g...@source.denx.de:u-boot/custodians/u-boot-mmc.git master
> 
> for you to fetch changes up to c48021d184097ea4a1bb6bab8c24653de2477fde:
> 
>   rockchip: sdhci: Add HS400 Enhanced Strobe support for RK3568 (2022-03-16 
> 18:10:41 +0900)
> 

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: PGP signature


[GIT PULL] Please pull u-boot-mmc master

2022-03-16 Thread Jaehoon Chung
Dear Tom,

Please pull u-boot-mmc master into u-boot master branch.
If there is any problem, let me know, plz.
Sorry for late.

Best Regards,
Jaehoon Chung

CI: https://source.denx.de/u-boot/custodians/u-boot-mmc/-/pipelines/11304

The following changes since commit 4dc9b1771b152838ddfc4ae86a0ab9fd53ea16f7:

  Merge https://source.denx.de/u-boot/custodians/u-boot-usb (2022-03-14 
22:54:53 -0400)

are available in the Git repository at:

  g...@source.denx.de:u-boot/custodians/u-boot-mmc.git master

for you to fetch changes up to c48021d184097ea4a1bb6bab8c24653de2477fde:

  rockchip: sdhci: Add HS400 Enhanced Strobe support for RK3568 (2022-03-16 
18:10:41 +0900)


Alper Nebi Yasak (3):
  mmc: sdhci: Add HS400 Enhanced Strobe support
  rockchip: sdhci: Add HS400 Enhanced Strobe support for RK3399
  rockchip: sdhci: Add HS400 Enhanced Strobe support for RK3568

Haibo Chen (1):
  mmc: fsl_esdhc_imx: use VENDORSPEC_FRC_SDCLK_ON when necessary

Max Merchel (1):
  cmd/mmc: fix output of mmc info for e-MMC

Robert Marko (1):
  mmc: xenon_sdhci: remove wait_dat0 SDHCI OP

 cmd/mmc.c|  16 --
 drivers/mmc/fsl_esdhc_imx.c  |  25 +++--
 drivers/mmc/rockchip_sdhci.c | 117 ---
 drivers/mmc/sdhci.c  |  18 +++
 drivers/mmc/xenon_sdhci.c|   7 ++-
 include/fsl_esdhc_imx.h  |   2 +
 include/sdhci.h  |  12 +
 7 files changed, 183 insertions(+), 14 deletions(-)


Re: [GIT PULL] Please pull u-boot-mmc master

2022-02-10 Thread Tom Rini
On Wed, Feb 09, 2022 at 10:04:35AM +0900, Jaehoon Chung wrote:

> Dear Tom,
> 
> Please pull u-boot-mmc master into u-boot master branch.
> There is the fixing fsl_esdhc_imx issue.
> If there is any problem, let me know, plz
> 
> Best Regards,
> Jaehoon Chung
> 
> CI: https://source.denx.de/u-boot/custodians/u-boot-mmc/-/pipelines/10913
> 
> The following changes since commit 531c00894577a0a852431adf61ade76925f8b162:
> 
>   Merge branch '2022-02-08-TI-platform-updates' (2022-02-08 12:28:04 -0500)
> 
> are available in the Git repository at:
> 
>   g...@source.denx.de:u-boot/custodians/u-boot-mmc.git master
> 
> for you to fetch changes up to 14448e9c97f06717cac95888329ab7cf31929050:
> 
>   mmc: fsl_esdhc_imx: fix watermark level in dma (2022-02-09 08:33:28 +0900)
> 

Applied to u-boot/master, thanks!

-- 
Tom

signature.asc
Description: PGP signature


[GIT PULL] Please pull u-boot-mmc master

2022-02-08 Thread Jaehoon Chung
Dear Tom,

Please pull u-boot-mmc master into u-boot master branch.
There is the fixing fsl_esdhc_imx issue.
If there is any problem, let me know, plz

Best Regards,
Jaehoon Chung

CI: https://source.denx.de/u-boot/custodians/u-boot-mmc/-/pipelines/10913

The following changes since commit 531c00894577a0a852431adf61ade76925f8b162:

  Merge branch '2022-02-08-TI-platform-updates' (2022-02-08 12:28:04 -0500)

are available in the Git repository at:

  g...@source.denx.de:u-boot/custodians/u-boot-mmc.git master

for you to fetch changes up to 14448e9c97f06717cac95888329ab7cf31929050:

  mmc: fsl_esdhc_imx: fix watermark level in dma (2022-02-09 08:33:28 +0900)


Marcel Ziswiler (1):
  mmc: fsl_esdhc_imx: fix watermark level in dma

Marek Vasut (1):
  cmd: mmc: Consider GP partitions in mmc hwpartition user enh start -

 cmd/mmc.c   | 22 --
 drivers/mmc/fsl_esdhc_imx.c |  5 ++---
 2 files changed, 22 insertions(+), 5 deletions(-)


Re: [GIT PULL] Please pull u-boot-mmc master

2022-01-12 Thread Tom Rini
On Wed, Jan 12, 2022 at 11:37:44AM +0900, Jaehoon Chung wrote:

> Hi Tom,
> 
> Please pull u-boot-mmc master into u-boot master branch. 
> If there is a problem, let me know, plz.
> 
> Best Regards,
> Jaehoon Chung
> 
> CI: https://source.denx.de/u-boot/custodians/u-boot-mmc/-/pipelines/10571
> 
> The following changes since commit fe04d885fb540b614a2f989e16e808b300ccb52e:
> 
>   Merge branch 'next' (2022-01-10 14:01:57 -0500)
> 
> are available in the Git repository at:
> 
>   g...@source.denx.de:u-boot/custodians/u-boot-mmc.git master
> 
> for you to fetch changes up to a15b2e6bcf5ae605073a7db54bfb68b07f736ba4:
> 
>   mmc: unconditionally define mmc_deinit() (2022-01-12 09:56:40 +0900)
> 

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: PGP signature


[GIT PULL] Please pull u-boot-mmc master

2022-01-11 Thread Jaehoon Chung
Hi Tom,

Please pull u-boot-mmc master into u-boot master branch. 
If there is a problem, let me know, plz.

Best Regards,
Jaehoon Chung

CI: https://source.denx.de/u-boot/custodians/u-boot-mmc/-/pipelines/10571

The following changes since commit fe04d885fb540b614a2f989e16e808b300ccb52e:

  Merge branch 'next' (2022-01-10 14:01:57 -0500)

are available in the Git repository at:

  g...@source.denx.de:u-boot/custodians/u-boot-mmc.git master

for you to fetch changes up to a15b2e6bcf5ae605073a7db54bfb68b07f736ba4:

  mmc: unconditionally define mmc_deinit() (2022-01-12 09:56:40 +0900)


Heinrich Schuchardt (1):
  mmc: unconditionally define mmc_deinit()

John Keeping (1):
  mmc: dwmmc: return a proper error code when busy

Sean Anderson (12):
  mmc: fsl_esdhc_imx: make BLK as hard requirement of DM_MMC
  mmc: fsl_esdhc_imx: remove redundant DM_MMC checking
  mmc: fsl_esdhc_imx: fix voltage validation
  mmc: fsl_esdhc_imx: clean up bus width configuration code
  mmc: fsl_esdhc_imx: drop redundant code for non-removable feature
  mmc: fsl_esdhc_imx: fix mmc->clock with actual clock
  mmc: fsl_esdhc_imx: simplify 64bit check for SDMA transfers
  mmc: fsl_esdhc_imx: use dma-mapping API
  mmc: fsl_esdhc_imx: simplify esdhc_setup_data()
  mmc: fsl_esdhc_imx: replace most #ifdefs by IS_ENABLED()
  mmc: fsl_esdhc_imx: Replace more #ifdefs by if
  mmc: fsl_esdhc_imx: set sysctl register for clock initialization

 drivers/mmc/dw_mmc.c|   2 +-
 drivers/mmc/fsl_esdhc_imx.c | 635 ++--
 include/fsl_esdhc_imx.h |  14 +-
 include/mmc.h   |   5 -
 4 files changed, 260 insertions(+), 396 deletions(-)


Re: [GIT PULL] Please pull u-boot-mmc master

2021-10-29 Thread Tom Rini
On Fri, Oct 29, 2021 at 07:52:00PM +0900, Jaehoon Chung wrote:

> Hi Tom,
> 
> Please pull u-boot-mmc master into u-boot master branch. 
> If there is a problem, let me know, plz.
> 
> Best Regards,
> Jaehoon Chung
> 
> CI: https://source.denx.de/u-boot/custodians/u-boot-mmc/-/pipelines/9649
> 
> The following changes since commit aafc378a6caef453a40f2f9f3d6bef69e592c28d:
> 
>   Merge https://source.denx.de/u-boot/custodians/u-boot-marvell (2021-10-28 
> 07:57:54 -0400)
> 
> are available in the Git repository at:
> 
>   g...@source.denx.de:u-boot/custodians/u-boot-mmc.git master
> 
> for you to fetch changes up to c95b0297e95613fc68b1d92118ee64720d142f8c:
> 
>   mmc: arm_pl180_mmci: Enable HWFC for specific versions of MCI (2021-10-29 
> 18:22:32 +0900)
> 

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: PGP signature


[GIT PULL] Please pull u-boot-mmc master

2021-10-29 Thread Jaehoon Chung
Hi Tom,

Please pull u-boot-mmc master into u-boot master branch. 
If there is a problem, let me know, plz.

Best Regards,
Jaehoon Chung

CI: https://source.denx.de/u-boot/custodians/u-boot-mmc/-/pipelines/9649

The following changes since commit aafc378a6caef453a40f2f9f3d6bef69e592c28d:

  Merge https://source.denx.de/u-boot/custodians/u-boot-marvell (2021-10-28 
07:57:54 -0400)

are available in the Git repository at:

  g...@source.denx.de:u-boot/custodians/u-boot-mmc.git master

for you to fetch changes up to c95b0297e95613fc68b1d92118ee64720d142f8c:

  mmc: arm_pl180_mmci: Enable HWFC for specific versions of MCI (2021-10-29 
18:22:32 +0900)


- Fix mmc_switch timeout
- Update mmc hwpartitiion command
- Support wait_dat0 for Freescale eSDHC/sdhci drivers


Jaehoon Chung (1):
  cmd: mmc: check whether card is SD or eMMC before hwpartition

Kirill Kapranov (1):
  mmc: Fix mmc_switch excessive timeout

Marek Vasut (1):
  cmd: mmc: Support mmc hwpartition user enh start -

Stephen Carlson (2):
  drivers: mmc: Add wait_dat0 support for Freescale eSDHC driver
  drivers: mmc: Add wait_dat0 support for sdhci driver

Usama Arif (1):
  mmc: arm_pl180_mmci: Enable HWFC for specific versions of MCI

 cmd/mmc.c| 38 ++
 drivers/mmc/arm_pl180_mmci.c | 14 ++
 drivers/mmc/arm_pl180_mmci.h |  1 +
 drivers/mmc/fsl_esdhc.c  | 16 
 drivers/mmc/mmc.c|  4 ++--
 drivers/mmc/sdhci.c  | 20 
 include/sdhci.h  |  2 ++
 7 files changed, 89 insertions(+), 6 deletions(-)


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

2018-05-08 Thread Tom Rini
On Tue, May 08, 2018 at 04:22:14PM +0900, Jaehoon Chung wrote:

> Dear Tom,
> 
> Could you pull these patches to u-boot/master?
> If there is a problem, let me know, plz.
> 
> The following changes since commit a43d46a73cb2c40481791cb292b8eb0b5a80d55e:
> 
>   arm: v7R: Add support for enabling caches (2018-05-07 15:53:29 -0400)
> 
> are available in the Git repository at:
> 
>   git://git.denx.de/u-boot-mmc.git master
> 
> for you to fetch changes up to e1fd9e6bb88a3f42e7e89e9c59589dbf904efe23:
> 
>   power: pwm regulator: support live tree (2018-05-08 13:12:33 +0900)
> 

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: PGP signature
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


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

2018-05-08 Thread Jaehoon Chung
Dear Tom,

Could you pull these patches to u-boot/master?
If there is a problem, let me know, plz.

The following changes since commit a43d46a73cb2c40481791cb292b8eb0b5a80d55e:

  arm: v7R: Add support for enabling caches (2018-05-07 15:53:29 -0400)

are available in the Git repository at:

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

for you to fetch changes up to e1fd9e6bb88a3f42e7e89e9c59589dbf904efe23:

  power: pwm regulator: support live tree (2018-05-08 13:12:33 +0900)


Andy Yan (1):
  power: pwm regulator: support live tree

Jaehoon Chung (6):
  configs: trats2: enable the max77686 regulator config
  power: pmic_max77686: remove the old pmic_max77686 file
  lib: fdtdec: drop the old compatible about max77686
  mmc: add the MMC_CLK_ENABLE/DISABLE macro in mmc.h
  mmc: add the debug message in mmc_set_clock
  mmc: Kconfig: add the MMC_TRACE config in Kconfig

Patrick Bruenn (1):
  dm: mmc: socfpga: call dwmci_probe()

 configs/trats2_defconfig|   2 +
 drivers/mmc/Kconfig |   8 +
 drivers/mmc/fsl_esdhc.c |   2 +-
 drivers/mmc/meson_gx_mmc.c  |   2 +-
 drivers/mmc/mmc.c   |  20 ++-
 drivers/mmc/socfpga_dw_mmc.c|   2 +-
 drivers/power/pmic/Makefile |   1 -
 drivers/power/pmic/pmic_max77686.c  | 303 
 drivers/power/regulator/pwm_regulator.c |  15 +-
 include/fdtdec.h|   1 -
 include/mmc.h   |   3 +
 lib/fdtdec.c|   1 -
 12 files changed, 32 insertions(+), 328 deletions(-)
 delete mode 100644 drivers/power/pmic/pmic_max77686.c

Best Regards,
Jaehoon Chung
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


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

2018-05-02 Thread Tom Rini
On Wed, May 02, 2018 at 11:03:20AM +0900, Jaehoon Chung wrote:

> Dear Tom,
> 
> Could you pull these patches to u-boot/master?
> There are the fixing patches.
> Other mmc patches are applied to u-boot-mmc/next branch. I will send the PR 
> about them at next.
> If there is a problem, let me know, plz.
> 
> Sorry for late.
> 
> The following changes since commit ec1754f091c3c06d76592a3f9fecf6184f27e4c9:
> 
>   Prepare v2018.05-rc3 (2018-05-01 09:09:31 -0400)
> 
> are available in the Git repository at:
> 
>   git://git.denx.de/u-boot-mmc.git master
> 
> for you to fetch changes up to 4bf225aa87a11f5d22b22d469e77d005ad441fd8:
> 
>   drivers:power:max77693: remove redundant logical constraint (2018-05-02 
> 10:57:43 +0900)
> 

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: PGP signature
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


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

2018-05-01 Thread Jaehoon Chung
Dear Tom,

Could you pull these patches to u-boot/master?
There are the fixing patches.
Other mmc patches are applied to u-boot-mmc/next branch. I will send the PR 
about them at next.
If there is a problem, let me know, plz.

Sorry for late.

The following changes since commit ec1754f091c3c06d76592a3f9fecf6184f27e4c9:

  Prepare v2018.05-rc3 (2018-05-01 09:09:31 -0400)

are available in the Git repository at:

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

for you to fetch changes up to 4bf225aa87a11f5d22b22d469e77d005ad441fd8:

  drivers:power:max77693: remove redundant logical constraint (2018-05-02 
10:57:43 +0900)


Hannes Schmelzer (2):
  mmc: sdhci: add SDHCI_QUIRK_BROKEN_HISPD_MODE
  mmc: zynq_sdhci: use correct quirk if CONFIG_ZYNQ_HISPD_BROKEN is defined

Heinrich Schuchardt (1):
  drivers:power:max77693: remove redundant logical constraint

Jaehoon Chung (1):
  samsung: board: init the s2mps11 pmic during booting time

Peng Fan (1):
  mmc: fix return value check condition

 board/samsung/common/exynos5-dt.c | 4 
 drivers/mmc/mmc.c | 2 +-
 drivers/mmc/sdhci.c   | 8 +++-
 drivers/mmc/zynq_sdhci.c  | 2 +-
 drivers/power/mfd/fg_max77693.c   | 2 --
 include/sdhci.h   | 6 ++
 6 files changed, 19 insertions(+), 5 deletions(-)

Best Regards,
Jaehoon Chung
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


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

2018-02-26 Thread Tom Rini
On Mon, Feb 26, 2018 at 10:58:59AM +0900, Jaehoon Chung wrote:

> Dear Tom,
> 
> Could you pull these patches to u-boot/master?
> 
> The following changes since commit f0f6917188ad660cf002c10095f46ecf748b8f58:
> 
>   Prepare v2018.03-rc3 (2018-02-20 16:51:56 -0500)
> 
> are available in the Git repository at:
> 
>   git://git.denx.de/u-boot-mmc.git master
> 
> for you to fetch changes up to beac7d33d9131d22ffbdbfbf2786858062b63786:
> 
>   mmc: omap_hsmmc: use a default 52MHz max clock rate if none is specified 
> (2018-02-26 10:52:15 +0900)
> 

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: PGP signature
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


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

2018-02-25 Thread Jaehoon Chung
Dear Tom,

Could you pull these patches to u-boot/master?

The following changes since commit f0f6917188ad660cf002c10095f46ecf748b8f58:

  Prepare v2018.03-rc3 (2018-02-20 16:51:56 -0500)

are available in the Git repository at:

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

for you to fetch changes up to beac7d33d9131d22ffbdbfbf2786858062b63786:

  mmc: omap_hsmmc: use a default 52MHz max clock rate if none is specified 
(2018-02-26 10:52:15 +0900)


Alexander Kochetkov (1):
  mmc: fix off-by-one bug in mmc_startup_v4()

Faiz Abbas (1):
  mmc: Drop unnecessary case for mmc_probe()

Jaehoon Chung (1):
  mmc: synchronize the sequence with enum bus_mode in mmc.h

Jean-Jacques Hiblot (4):
  mmc: omap_hsmmc: do not embed struct mmc in struct omap_hsmmc_plat
  mmc: omap_hsmmc: compile out write support if not needed
  mmc: omap_hsmmc: make it possible to compile out ADMA support
  mmc: omap_hsmmc: use a default 52MHz max clock rate if none is specified

 arch/arm/include/asm/omap_mmc.h |  2 +-
 drivers/mmc/Kconfig |  9 +
 drivers/mmc/mmc.c   | 20 +---
 drivers/mmc/omap_hsmmc.c| 31 ---
 4 files changed, 35 insertions(+), 27 deletions(-)

Best Regards,
Jaehoon Chung
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


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

2018-02-20 Thread Tom Rini
On Tue, Feb 20, 2018 at 12:57:28PM +0900, Jaehoon Chung wrote:

> Dear Tom,
> 
> Could you pull these patches into u-boot/master?
> 
> 
> The following changes since commit 02b0895c215e252cff50d9edf53a972d2bbbfd30:
> 
>   Merge git://git.denx.de/u-boot-sh (2018-02-17 16:06:59 -0500)
> 
> are available in the Git repository at:
> 
>   git://git.denx.de/u-boot-mmc.git master
> 
> for you to fetch changes up to 4a41fec589b5f57bc83fca423222c6a1860a50f5:
> 
>   mmc: Fix uninitialised priv member (2018-02-19 17:00:33 +0900)
> 

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: PGP signature
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


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

2018-02-19 Thread Jaehoon Chung
Dear Tom,

Could you pull these patches into u-boot/master?


The following changes since commit 02b0895c215e252cff50d9edf53a972d2bbbfd30:

  Merge git://git.denx.de/u-boot-sh (2018-02-17 16:06:59 -0500)

are available in the Git repository at:

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

for you to fetch changes up to 4a41fec589b5f57bc83fca423222c6a1860a50f5:

  mmc: Fix uninitialised priv member (2018-02-19 17:00:33 +0900)


Alex Kiernan (1):
  mmc: Fix uninitialised priv member

Jean-Jacques Hiblot (15):
  mmc: omap_hsmmc: cleanup clock configuration
  mmc: omap_hsmmc: set MMC mode in the UHSMS bit field
  mmc: omap_hsmmc: Add tuning support
  mmc: omap_hsmmc: Workaround for errata id i802
  mmc: omap_hsmmc: Reduce the max timeout for reset controller fsm
  mmc: omap_hsmmc: allow the simple HS modes to use the default pinctrl
  mmc: omap_hsmmc: update mmc->clock with the actual bus speed
  mmc: omap_hsmmc: implement send_init_stream callback
  mmc: omap_hsmmc: add signal voltage selection support
  ARM: dts: dra7: Add supported MMC/SD modes in MMC dt nodes
  dts: am57xx-beagle-x15: disable UHS and HS200 support
  dts: am57xx-idk: disable HS200 support
  configs: dra7xx_evm/dra7xx_hs_evm: Enable MMC HS200 and SD UHS support
  mmc: Fix bug in sd_set_card_speed()
  mmc: fix bug in mmc_startup_v4()

Kishon Vijay Abraham I (11):
  mmc: omap_hsmmc: cleanup omap_hsmmc_set_ios
  mmc: omap_hsmmc: add support to set default io voltage
  mmc: omap_hsmmc: Enable DDR mode support
  mmc: omap_hsmmc: use mmc_of_parse to populate mmc_config
  ARM: OMAP5/DRA7: Enable iodelay recalibration to be done from uboot
  mmc: omap_hsmmc: Add support to set IODELAY values
  mmc: omap_hsmmc: Add support to get pinctrl values and max frequency for 
different hw revisions
  mmc: omap_hsmmc: allow mmc clock to be gated
  ARM: OMAP5: set mmc clock frequency to 192MHz
  ARM: dts: DRA7: use new dra7-specific compatible string
  ARM: DRA7x/AM57x: Add MMC/SD fixups for rev1.0 and rev 1.1

Masahiro Yamada (1):
  mmc: use pr_* log functions

 arch/arm/dts/am57xx-beagle-x15.dts   |   6 +
 arch/arm/dts/am57xx-idk-common.dtsi  |   2 +
 arch/arm/dts/dra7.dtsi   |  22 +-
 arch/arm/include/asm/arch-omap5/clock.h  |   2 +-
 arch/arm/include/asm/arch-omap5/dra7xx_iodelay.h |   3 +
 arch/arm/include/asm/arch-omap5/sys_proto.h  |   7 +
 arch/arm/include/asm/omap_mmc.h  |  59 +-
 arch/arm/mach-omap2/omap5/dra7xx_iodelay.c   |  30 +
 arch/arm/mach-omap2/omap5/hw_data.c  |  10 +-
 board/ti/am57xx/board.c  |  30 +
 board/ti/dra7xx/evm.c|  29 +
 configs/dra7xx_evm_defconfig |   3 +
 configs/dra7xx_hs_evm_defconfig  |   3 +
 drivers/mmc/mmc.c|  71 +-
 drivers/mmc/omap_hsmmc.c | 954 +--
 include/configs/am57xx_evm.h |   2 -
 include/configs/dra7xx_evm.h |   2 -
 include/mmc.h|   1 +
 18 files changed, 1125 insertions(+), 111 deletions(-)

Best Regards,
Jaehoon Chung
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


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

2018-02-19 Thread Marek Vasut
On 02/19/2018 03:48 PM, Tom Rini wrote:
> On Mon, Feb 19, 2018 at 11:47:28PM +0900, Jaehoon Chung wrote:
>> Dear Tom,
>>
>> On 2018년 02월 19일 20:27, Jaehoon Chung wrote:
>>> Dear Tom,
>>>
>>> Could you pull these patches to u-boot/master?
>>> If there is a problem, let me know, plz.
>>
>> Discard this PR. I found the Build error from travis-ci. After
>> reverting some patches, will resend the PR.
> 
> OK, thanks.

The Renesas patches should be for 2018.05 cycle, we're already in RC3 now.

-- 
Best regards,
Marek Vasut
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


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

2018-02-19 Thread Tom Rini
On Mon, Feb 19, 2018 at 11:47:28PM +0900, Jaehoon Chung wrote:
> Dear Tom,
> 
> On 2018년 02월 19일 20:27, Jaehoon Chung wrote:
> > Dear Tom,
> > 
> > Could you pull these patches to u-boot/master?
> > If there is a problem, let me know, plz.
> 
> Discard this PR. I found the Build error from travis-ci. After
> reverting some patches, will resend the PR.

OK, thanks.

-- 
Tom


signature.asc
Description: PGP signature
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


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

2018-02-19 Thread Jaehoon Chung
Dear Tom,

On 2018년 02월 19일 20:27, Jaehoon Chung wrote:
> Dear Tom,
> 
> Could you pull these patches to u-boot/master?
> If there is a problem, let me know, plz.

Discard this PR. I found the Build error from travis-ci. After reverting some 
patches, will resend the PR.

Best Regards,
Jaehoon Chung

> 
> The following changes since commit 02b0895c215e252cff50d9edf53a972d2bbbfd30:
> 
>   Merge git://git.denx.de/u-boot-sh (2018-02-17 16:06:59 -0500)
> 
> are available in the Git repository at:
> 
>   git://git.denx.de/u-boot-mmc.git master
> 
> for you to fetch changes up to dfca07d60e8d1977fff5531291d0a39b8384d0a9:
> 
>   mmc: uniphier-sd: Add Renesas SDR104/HS200 tuning support (2018-02-19 
> 20:19:20 +0900)
> 
> 
> Alex Kiernan (1):
>   mmc: Fix uninitialised priv member
> 
> Jean-Jacques Hiblot (15):
>   mmc: omap_hsmmc: cleanup clock configuration
>   mmc: omap_hsmmc: set MMC mode in the UHSMS bit field
>   mmc: omap_hsmmc: Add tuning support
>   mmc: omap_hsmmc: Workaround for errata id i802
>   mmc: omap_hsmmc: Reduce the max timeout for reset controller fsm
>   mmc: omap_hsmmc: allow the simple HS modes to use the default pinctrl
>   mmc: omap_hsmmc: update mmc->clock with the actual bus speed
>   mmc: omap_hsmmc: implement send_init_stream callback
>   mmc: omap_hsmmc: add signal voltage selection support
>   ARM: dts: dra7: Add supported MMC/SD modes in MMC dt nodes
>   dts: am57xx-beagle-x15: disable UHS and HS200 support
>   dts: am57xx-idk: disable HS200 support
>   configs: dra7xx_evm/dra7xx_hs_evm: Enable MMC HS200 and SD UHS support
>   mmc: Fix bug in sd_set_card_speed()
>   mmc: fix bug in mmc_startup_v4()
> 
> Kishon Vijay Abraham I (11):
>   mmc: omap_hsmmc: cleanup omap_hsmmc_set_ios
>   mmc: omap_hsmmc: add support to set default io voltage
>   mmc: omap_hsmmc: Enable DDR mode support
>   mmc: omap_hsmmc: use mmc_of_parse to populate mmc_config
>   ARM: OMAP5/DRA7: Enable iodelay recalibration to be done from uboot
>   mmc: omap_hsmmc: Add support to set IODELAY values
>   mmc: omap_hsmmc: Add support to get pinctrl values and max frequency 
> for different hw revisions
>   mmc: omap_hsmmc: allow mmc clock to be gated
>   ARM: OMAP5: set mmc clock frequency to 192MHz
>   ARM: dts: DRA7: use new dra7-specific compatible string
>   ARM: DRA7x/AM57x: Add MMC/SD fixups for rev1.0 and rev 1.1
> 
> Marek Vasut (10):
>   mmc: uniphier-sd: Add compatible strings for RCar Gen2
>   mmc: uniphier-sd: Use mmc_of_parse()
>   mmc: uniphier-sd: Add Renesas RCar quirks
>   mmc: uniphier-sd: Handle Renesas div-by-1
>   mmc: uniphier-sd: Handle DMA completion flag differences
>   mmc: uniphier-sd: Handle bus width 0
>   mmc: uniphier-sd: Always check controller version
>   mmc: uniphier-sd: Properly handle pin voltage configuration
>   mmc: uniphier-sd: Export registers and IO accessors
>   mmc: uniphier-sd: Add Renesas SDR104/HS200 tuning support
> 
> Masahiro Yamada (1):
>   mmc: use pr_* log functions
> 
>  arch/arm/dts/am57xx-beagle-x15.dts   |   6 +
>  arch/arm/dts/am57xx-idk-common.dtsi  |   2 +
>  arch/arm/dts/dra7.dtsi   |  22 +-
>  arch/arm/include/asm/arch-omap5/clock.h  |   2 +-
>  arch/arm/include/asm/arch-omap5/dra7xx_iodelay.h |   3 +
>  arch/arm/include/asm/arch-omap5/sys_proto.h  |   7 +
>  arch/arm/include/asm/omap_mmc.h  |  59 +-
>  arch/arm/mach-omap2/omap5/dra7xx_iodelay.c   |  30 +
>  arch/arm/mach-omap2/omap5/hw_data.c  |  10 +-
>  board/ti/am57xx/board.c  |  30 +
>  board/ti/dra7xx/evm.c|  29 +
>  configs/dra7xx_evm_defconfig |   3 +
>  configs/dra7xx_hs_evm_defconfig  |   3 +
>  drivers/mmc/Kconfig  |   9 +
>  drivers/mmc/Makefile |   1 +
>  drivers/mmc/mmc.c|  71 +-
>  drivers/mmc/omap_hsmmc.c | 954 
> +--
>  drivers/mmc/uniphier-sd-rcar.c   | 288 +++
>  drivers/mmc/uniphier-sd.c| 274 +++
>  drivers/mmc/uniphier-sd.h| 155 
>  include/configs/am57xx_evm.h |   2 -
>  include/configs/dra7xx_evm.h |   2 -
>  include/mmc.h|   1 +
>  23 files changed, 1697 insertions(+), 266 deletions(-)
>  create mode 100644 drivers/mmc/uniphier-sd-rcar.c
>  create mode 100644 drivers/mmc/uniphier-sd.h
> 
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


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

2018-02-19 Thread Jaehoon Chung
Dear Tom,

Could you pull these patches to u-boot/master?
If there is a problem, let me know, plz.

The following changes since commit 02b0895c215e252cff50d9edf53a972d2bbbfd30:

  Merge git://git.denx.de/u-boot-sh (2018-02-17 16:06:59 -0500)

are available in the Git repository at:

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

for you to fetch changes up to dfca07d60e8d1977fff5531291d0a39b8384d0a9:

  mmc: uniphier-sd: Add Renesas SDR104/HS200 tuning support (2018-02-19 
20:19:20 +0900)


Alex Kiernan (1):
  mmc: Fix uninitialised priv member

Jean-Jacques Hiblot (15):
  mmc: omap_hsmmc: cleanup clock configuration
  mmc: omap_hsmmc: set MMC mode in the UHSMS bit field
  mmc: omap_hsmmc: Add tuning support
  mmc: omap_hsmmc: Workaround for errata id i802
  mmc: omap_hsmmc: Reduce the max timeout for reset controller fsm
  mmc: omap_hsmmc: allow the simple HS modes to use the default pinctrl
  mmc: omap_hsmmc: update mmc->clock with the actual bus speed
  mmc: omap_hsmmc: implement send_init_stream callback
  mmc: omap_hsmmc: add signal voltage selection support
  ARM: dts: dra7: Add supported MMC/SD modes in MMC dt nodes
  dts: am57xx-beagle-x15: disable UHS and HS200 support
  dts: am57xx-idk: disable HS200 support
  configs: dra7xx_evm/dra7xx_hs_evm: Enable MMC HS200 and SD UHS support
  mmc: Fix bug in sd_set_card_speed()
  mmc: fix bug in mmc_startup_v4()

Kishon Vijay Abraham I (11):
  mmc: omap_hsmmc: cleanup omap_hsmmc_set_ios
  mmc: omap_hsmmc: add support to set default io voltage
  mmc: omap_hsmmc: Enable DDR mode support
  mmc: omap_hsmmc: use mmc_of_parse to populate mmc_config
  ARM: OMAP5/DRA7: Enable iodelay recalibration to be done from uboot
  mmc: omap_hsmmc: Add support to set IODELAY values
  mmc: omap_hsmmc: Add support to get pinctrl values and max frequency for 
different hw revisions
  mmc: omap_hsmmc: allow mmc clock to be gated
  ARM: OMAP5: set mmc clock frequency to 192MHz
  ARM: dts: DRA7: use new dra7-specific compatible string
  ARM: DRA7x/AM57x: Add MMC/SD fixups for rev1.0 and rev 1.1

Marek Vasut (10):
  mmc: uniphier-sd: Add compatible strings for RCar Gen2
  mmc: uniphier-sd: Use mmc_of_parse()
  mmc: uniphier-sd: Add Renesas RCar quirks
  mmc: uniphier-sd: Handle Renesas div-by-1
  mmc: uniphier-sd: Handle DMA completion flag differences
  mmc: uniphier-sd: Handle bus width 0
  mmc: uniphier-sd: Always check controller version
  mmc: uniphier-sd: Properly handle pin voltage configuration
  mmc: uniphier-sd: Export registers and IO accessors
  mmc: uniphier-sd: Add Renesas SDR104/HS200 tuning support

Masahiro Yamada (1):
  mmc: use pr_* log functions

 arch/arm/dts/am57xx-beagle-x15.dts   |   6 +
 arch/arm/dts/am57xx-idk-common.dtsi  |   2 +
 arch/arm/dts/dra7.dtsi   |  22 +-
 arch/arm/include/asm/arch-omap5/clock.h  |   2 +-
 arch/arm/include/asm/arch-omap5/dra7xx_iodelay.h |   3 +
 arch/arm/include/asm/arch-omap5/sys_proto.h  |   7 +
 arch/arm/include/asm/omap_mmc.h  |  59 +-
 arch/arm/mach-omap2/omap5/dra7xx_iodelay.c   |  30 +
 arch/arm/mach-omap2/omap5/hw_data.c  |  10 +-
 board/ti/am57xx/board.c  |  30 +
 board/ti/dra7xx/evm.c|  29 +
 configs/dra7xx_evm_defconfig |   3 +
 configs/dra7xx_hs_evm_defconfig  |   3 +
 drivers/mmc/Kconfig  |   9 +
 drivers/mmc/Makefile |   1 +
 drivers/mmc/mmc.c|  71 +-
 drivers/mmc/omap_hsmmc.c | 954 +--
 drivers/mmc/uniphier-sd-rcar.c   | 288 +++
 drivers/mmc/uniphier-sd.c| 274 +++
 drivers/mmc/uniphier-sd.h| 155 
 include/configs/am57xx_evm.h |   2 -
 include/configs/dra7xx_evm.h |   2 -
 include/mmc.h|   1 +
 23 files changed, 1697 insertions(+), 266 deletions(-)
 create mode 100644 drivers/mmc/uniphier-sd-rcar.c
 create mode 100644 drivers/mmc/uniphier-sd.h
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


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

2018-01-24 Thread Tom Rini
On Wed, Jan 24, 2018 at 04:31:58PM +0900, Jaehoon Chung wrote:

> Dear Tom,
> 
> Could you pull these patches to u-boot/master?
> If there is a problem, let me know, plz.
> 
> The following changes since commit 557767ed29968af0294e3aae48433e5d5a298e0b:
> 
>   Merge git://git.denx.de/u-boot-marvell (2018-01-20 08:39:47 -0500)
> 
> are available in the Git repository at:
> 
>   git://git.denx.de/u-boot-mmc.git master
> 
> for you to fetch changes up to 2f516e4aa286eb0203e34ab9be68b08f7a3c44c1:
> 
>   mmc: Poll for broken card detection case (2018-01-24 16:12:03 +0900)
> 

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: PGP signature
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


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

2018-01-24 Thread Tom Rini
On Thu, Jan 25, 2018 at 09:57:49AM +0900, Jaehoon Chung wrote:
> Dear Tom,
> 
> On 01/24/2018 04:31 PM, Jaehoon Chung wrote:
> > Dear Tom,
> > 
> > Could you pull these patches to u-boot/master?
> > If there is a problem, let me know, plz.
> 
> I don't know what this PR isn't seen at patchwork.
> Current u-boot/master branch has the some issue about MMC.
> So need to apply the fixing patches for mmc.

I've seen a number of PRs not show up in patchwork of late, I'm not sure
why.  I'm testing this locally and will push it soon, thanks!

-- 
Tom


signature.asc
Description: PGP signature
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


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

2018-01-24 Thread Jaehoon Chung
Dear Tom,

On 01/24/2018 04:31 PM, Jaehoon Chung wrote:
> Dear Tom,
> 
> Could you pull these patches to u-boot/master?
> If there is a problem, let me know, plz.

I don't know what this PR isn't seen at patchwork.
Current u-boot/master branch has the some issue about MMC.
So need to apply the fixing patches for mmc.

Best Regards,
Jaehoon Chung

> 
> The following changes since commit 557767ed29968af0294e3aae48433e5d5a298e0b:
> 
>   Merge git://git.denx.de/u-boot-marvell (2018-01-20 08:39:47 -0500)
> 
> are available in the Git repository at:
> 
>   git://git.denx.de/u-boot-mmc.git master
> 
> for you to fetch changes up to 2f516e4aa286eb0203e34ab9be68b08f7a3c44c1:
> 
>   mmc: Poll for broken card detection case (2018-01-24 16:12:03 +0900)
> 
> 
> Benoît Thébaudeau (1):
>   mmc: fsl_esdhc: Fix i.MX53 eSDHCv3 clock
> 
> Jaehoon Chung (5):
>   mmc: fix the wrong disabling clock
>   power: regulator: s2mps11: add a regulator driver for s2mps11
>   power: pmic: s2mps11: probe the regulator driver
>   configs: odroid-xu3: enable the configs relevant to regulator
>   mmc: fix to assign to correct clock value when clock is enabling
> 
> Jun Nie (1):
>   mmc: Poll for broken card detection case
> 
> Masahiro Yamada (8):
>   dm: add dev_read_u32()
>   mmc: do not overwrite cfg->f_max if "max-frequency" if missing
>   mmc: let mmc_of_parse() fail for insane bus-width value
>   mmc: sdhci: do not overwrite host_caps in sdhci_setup_cfg()
>   mmc: sdhci-cadence: use bitfield access macros for cleanup
>   mmc: sdhci-cadence: call mmc_of_parse()
>   mmc: sdhci-cadence: add HS200 support
>   mmc: sdhci: change data transfer failure into debug message
> 
>  configs/odroid-xu3_defconfig|   2 +
>  drivers/core/read.c |   5 +
>  drivers/mmc/Kconfig |   5 +
>  drivers/mmc/fsl_esdhc.c |   7 +-
>  drivers/mmc/mmc-uclass.c|   9 +-
>  drivers/mmc/mmc.c   |  16 +-
>  drivers/mmc/sdhci-cadence.c | 114 +-
>  drivers/mmc/sdhci.c |   6 +-
>  drivers/power/pmic/s2mps11.c|  28 ++
>  drivers/power/regulator/Kconfig |   8 +
>  drivers/power/regulator/Makefile|   1 +
>  drivers/power/regulator/s2mps11_regulator.c | 597 
> 
>  include/dm/read.h   |  16 +
>  include/power/s2mps11.h |  55 +++
>  14 files changed, 836 insertions(+), 33 deletions(-)
>  create mode 100644 drivers/power/regulator/s2mps11_regulator.c
> 
> Best Regards,
> Jaehoon Chung
> ___
> U-Boot mailing list
> U-Boot@lists.denx.de
> https://lists.denx.de/listinfo/u-boot
> 

___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


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

2018-01-23 Thread Jaehoon Chung
Dear Tom,

Could you pull these patches to u-boot/master?
If there is a problem, let me know, plz.

The following changes since commit 557767ed29968af0294e3aae48433e5d5a298e0b:

  Merge git://git.denx.de/u-boot-marvell (2018-01-20 08:39:47 -0500)

are available in the Git repository at:

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

for you to fetch changes up to 2f516e4aa286eb0203e34ab9be68b08f7a3c44c1:

  mmc: Poll for broken card detection case (2018-01-24 16:12:03 +0900)


Benoît Thébaudeau (1):
  mmc: fsl_esdhc: Fix i.MX53 eSDHCv3 clock

Jaehoon Chung (5):
  mmc: fix the wrong disabling clock
  power: regulator: s2mps11: add a regulator driver for s2mps11
  power: pmic: s2mps11: probe the regulator driver
  configs: odroid-xu3: enable the configs relevant to regulator
  mmc: fix to assign to correct clock value when clock is enabling

Jun Nie (1):
  mmc: Poll for broken card detection case

Masahiro Yamada (8):
  dm: add dev_read_u32()
  mmc: do not overwrite cfg->f_max if "max-frequency" if missing
  mmc: let mmc_of_parse() fail for insane bus-width value
  mmc: sdhci: do not overwrite host_caps in sdhci_setup_cfg()
  mmc: sdhci-cadence: use bitfield access macros for cleanup
  mmc: sdhci-cadence: call mmc_of_parse()
  mmc: sdhci-cadence: add HS200 support
  mmc: sdhci: change data transfer failure into debug message

 configs/odroid-xu3_defconfig|   2 +
 drivers/core/read.c |   5 +
 drivers/mmc/Kconfig |   5 +
 drivers/mmc/fsl_esdhc.c |   7 +-
 drivers/mmc/mmc-uclass.c|   9 +-
 drivers/mmc/mmc.c   |  16 +-
 drivers/mmc/sdhci-cadence.c | 114 +-
 drivers/mmc/sdhci.c |   6 +-
 drivers/power/pmic/s2mps11.c|  28 ++
 drivers/power/regulator/Kconfig |   8 +
 drivers/power/regulator/Makefile|   1 +
 drivers/power/regulator/s2mps11_regulator.c | 597 
 include/dm/read.h   |  16 +
 include/power/s2mps11.h |  55 +++
 14 files changed, 836 insertions(+), 33 deletions(-)
 create mode 100644 drivers/power/regulator/s2mps11_regulator.c

Best Regards,
Jaehoon Chung
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


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

2018-01-16 Thread Jaehoon Chung
On 01/15/2018 10:53 PM, Tom Rini wrote:
> On Mon, Jan 15, 2018 at 11:35:05AM +0900, Jaehoon Chung wrote:
> 
>> Dear Tom,
>>
>> Could you pull these patches to u-boot/master?
>> Main topic is the support for HS200/UHS mode. 
>> If there are any problem, let me know. After applying to u-boot/master, will 
>> apply the other patches.
>>
>> The following changes since commit f3dd87e0b98999a78e500e8c6d2b063ebadf535a:
>>
>>   Prepare v2018.01 (2018-01-08 20:25:29 -0500)
>>
>> are available in the Git repository at:
>>
>>   git://git.denx.de/u-boot-mmc.git master
>>
>> for you to fetch changes up to db359efd5907edbeaea2e3eb3504729f60208cd8:
>>
>>   mmc: fsl_esdhc: Fix eMMC 1.8v setting issue (2018-01-13 00:08:44 +0900)
>>
> 
> Applied to u-boot/master, thanks!

Thanks!

> 
> But please note the following issues from checkpatch that need to be
> looked into and possibly followed up on:

I have also checked from checkpatch.pl..Will fix the something to check.

Best Regards,
Jaehoon Chung

> CHECK: Macro argument reuse 'mwt' - possible side-effects?
> #180: FILE: drivers/mmc/mmc.c:1245:
> +#define for_each_sd_mode_by_pref(caps, mwt) \
> + for (mwt = sd_modes_by_pref;\
> +  mwt < sd_modes_by_pref + ARRAY_SIZE(sd_modes_by_pref);\
> +  mwt++) \
> + if (caps & MMC_CAP(mwt->mode))
> 
> total: 0 errors, 0 warnings, 1 checks, 265 lines checked
> CHECK: Macro argument reuse 'mwt' - possible side-effects?
> #159: FILE: drivers/mmc/mmc.c:1382:
> +#define for_each_mmc_mode_by_pref(caps, mwt) \
> + for (mwt = mmc_modes_by_pref;\
> + mwt < mmc_modes_by_pref + ARRAY_SIZE(mmc_modes_by_pref);\
> + mwt++) \
> + if (caps & MMC_CAP(mwt->mode))
> 
> CHECK: Macro argument reuse 'ecbv' - possible side-effects?
> #177: FILE: drivers/mmc/mmc.c:1400:
> +#define for_each_supported_width(caps, ddr, ecbv) \
> + for (ecbv = ext_csd_bus_width;\
> + ecbv < ext_csd_bus_width + ARRAY_SIZE(ext_csd_bus_width);\
> + ecbv++) \
> + if ((ddr == ecbv->is_ddr) && (caps & ecbv->cap))
> 
> CHECK: Alignment should match open parenthesis
> #253: FILE: drivers/mmc/mmc.c:1437:
> + err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
> + EXT_CSD_BUS_WIDTH,
> 
> WARNING: 'occured' may be misspelled - perhaps 'occurred'?
> #292: FILE: drivers/mmc/mmc.c:1469:
> + /* if an error occured, revert to a safer bus mode */
> 
> total: 0 errors, 1 warnings, 3 checks, 320 lines checked
> WARNING: Possible unwrapped commit description (prefer a maximum 75 chars per 
> line)
> #7: 
> function ignore this. Modify mmc_set_ios() and the callers of mmc_set_ios() to
> 
> total: 0 errors, 1 warnings, 0 checks, 46 lines checked
> WARNING: ENOSYS means 'invalid syscall nr' and nothing else
> #30: FILE: drivers/mmc/mmc-uclass.c:100:
> + return -ENOSYS;
> 
> total: 0 errors, 1 warnings, 0 checks, 60 lines checked
> WARNING: 'capabilites' may be misspelled - perhaps 'capabilities'?
> #6: 
> Add UHS modes to the list of supported modes, get the UHS capabilites of
> 
> total: 0 errors, 5 warnings, 0 checks, 381 lines checked
> WARNING: line over 80 characters
> #59: FILE: drivers/mmc/mmc.c:2217:
> + debug("Unable to do a full power cycle. Disabling the UHS modes 
> for safety\n");
> 
> total: 0 errors, 1 warnings, 0 checks, 50 lines checked
> WARNING: 'optionnal' may be misspelled - perhaps 'optional'?
> #13: 
> To make it clear that those are optionnal workarounds, a new Kconfig
> 
> total: 0 errors, 1 warnings, 0 checks, 102 lines checked
> WARNING: Possible unwrapped commit description (prefer a maximum 75 chars per 
> line)
> #6: 
> The SDcard initialization procedure does a few more things than it did 
> earlier:
> 
> total: 0 errors, 1 warnings, 0 checks, 13 lines checked
> WARNING: please write a paragraph that describes the config symbol fully
> #50: FILE: common/spl/Kconfig:419:
> +config SPL_MMC_WRITE
> 
> WARNING: please write a paragraph that describes the config symbol fully
> #69: FILE: drivers/mmc/Kconfig:13:
> +config MMC_WRITE
> 
> total: 0 errors, 2 warnings, 0 checks, 82 lines checked
> CHECK: Unbalanced braces around else statement
> #85: FILE: drivers/mmc/mmc.c:2089:
> + else {
> 
> total: 0 errors, 0 warnings, 1 checks, 116 lines checked
> WARNING: added, moved or deleted file(s), does MAINTAINERS need updating?
> #35: 
> new file mode 100644
> 
> total: 0 errors, 1 warnings, 0 checks, 403 lines checked
> WARNING: added, moved or deleted file(s), does MAINTAINERS need updating?
> #27: 
> new file mode 100644
> 

___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


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

2018-01-15 Thread Tom Rini
On Mon, Jan 15, 2018 at 11:35:05AM +0900, Jaehoon Chung wrote:

> Dear Tom,
> 
> Could you pull these patches to u-boot/master?
> Main topic is the support for HS200/UHS mode. 
> If there are any problem, let me know. After applying to u-boot/master, will 
> apply the other patches.
> 
> The following changes since commit f3dd87e0b98999a78e500e8c6d2b063ebadf535a:
> 
>   Prepare v2018.01 (2018-01-08 20:25:29 -0500)
> 
> are available in the Git repository at:
> 
>   git://git.denx.de/u-boot-mmc.git master
> 
> for you to fetch changes up to db359efd5907edbeaea2e3eb3504729f60208cd8:
> 
>   mmc: fsl_esdhc: Fix eMMC 1.8v setting issue (2018-01-13 00:08:44 +0900)
> 

Applied to u-boot/master, thanks!

But please note the following issues from checkpatch that need to be
looked into and possibly followed up on:
CHECK: Macro argument reuse 'mwt' - possible side-effects?
#180: FILE: drivers/mmc/mmc.c:1245:
+#define for_each_sd_mode_by_pref(caps, mwt) \
+   for (mwt = sd_modes_by_pref;\
+mwt < sd_modes_by_pref + ARRAY_SIZE(sd_modes_by_pref);\
+mwt++) \
+   if (caps & MMC_CAP(mwt->mode))

total: 0 errors, 0 warnings, 1 checks, 265 lines checked
CHECK: Macro argument reuse 'mwt' - possible side-effects?
#159: FILE: drivers/mmc/mmc.c:1382:
+#define for_each_mmc_mode_by_pref(caps, mwt) \
+   for (mwt = mmc_modes_by_pref;\
+   mwt < mmc_modes_by_pref + ARRAY_SIZE(mmc_modes_by_pref);\
+   mwt++) \
+   if (caps & MMC_CAP(mwt->mode))

CHECK: Macro argument reuse 'ecbv' - possible side-effects?
#177: FILE: drivers/mmc/mmc.c:1400:
+#define for_each_supported_width(caps, ddr, ecbv) \
+   for (ecbv = ext_csd_bus_width;\
+   ecbv < ext_csd_bus_width + ARRAY_SIZE(ext_csd_bus_width);\
+   ecbv++) \
+   if ((ddr == ecbv->is_ddr) && (caps & ecbv->cap))

CHECK: Alignment should match open parenthesis
#253: FILE: drivers/mmc/mmc.c:1437:
+   err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL,
+   EXT_CSD_BUS_WIDTH,

WARNING: 'occured' may be misspelled - perhaps 'occurred'?
#292: FILE: drivers/mmc/mmc.c:1469:
+   /* if an error occured, revert to a safer bus mode */

total: 0 errors, 1 warnings, 3 checks, 320 lines checked
WARNING: Possible unwrapped commit description (prefer a maximum 75 chars per 
line)
#7: 
function ignore this. Modify mmc_set_ios() and the callers of mmc_set_ios() to

total: 0 errors, 1 warnings, 0 checks, 46 lines checked
WARNING: ENOSYS means 'invalid syscall nr' and nothing else
#30: FILE: drivers/mmc/mmc-uclass.c:100:
+   return -ENOSYS;

total: 0 errors, 1 warnings, 0 checks, 60 lines checked
WARNING: 'capabilites' may be misspelled - perhaps 'capabilities'?
#6: 
Add UHS modes to the list of supported modes, get the UHS capabilites of

total: 0 errors, 5 warnings, 0 checks, 381 lines checked
WARNING: line over 80 characters
#59: FILE: drivers/mmc/mmc.c:2217:
+   debug("Unable to do a full power cycle. Disabling the UHS modes 
for safety\n");

total: 0 errors, 1 warnings, 0 checks, 50 lines checked
WARNING: 'optionnal' may be misspelled - perhaps 'optional'?
#13: 
To make it clear that those are optionnal workarounds, a new Kconfig

total: 0 errors, 1 warnings, 0 checks, 102 lines checked
WARNING: Possible unwrapped commit description (prefer a maximum 75 chars per 
line)
#6: 
The SDcard initialization procedure does a few more things than it did earlier:

total: 0 errors, 1 warnings, 0 checks, 13 lines checked
WARNING: please write a paragraph that describes the config symbol fully
#50: FILE: common/spl/Kconfig:419:
+config SPL_MMC_WRITE

WARNING: please write a paragraph that describes the config symbol fully
#69: FILE: drivers/mmc/Kconfig:13:
+config MMC_WRITE

total: 0 errors, 2 warnings, 0 checks, 82 lines checked
CHECK: Unbalanced braces around else statement
#85: FILE: drivers/mmc/mmc.c:2089:
+   else {

total: 0 errors, 0 warnings, 1 checks, 116 lines checked
WARNING: added, moved or deleted file(s), does MAINTAINERS need updating?
#35: 
new file mode 100644

total: 0 errors, 1 warnings, 0 checks, 403 lines checked
WARNING: added, moved or deleted file(s), does MAINTAINERS need updating?
#27: 
new file mode 100644

-- 
Tom


signature.asc
Description: PGP signature
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


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

2018-01-14 Thread Jaehoon Chung
Dear Tom,

Could you pull these patches to u-boot/master?
Main topic is the support for HS200/UHS mode. 
If there are any problem, let me know. After applying to u-boot/master, will 
apply the other patches.

The following changes since commit f3dd87e0b98999a78e500e8c6d2b063ebadf535a:

  Prepare v2018.01 (2018-01-08 20:25:29 -0500)

are available in the Git repository at:

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

for you to fetch changes up to db359efd5907edbeaea2e3eb3504729f60208cd8:

  mmc: fsl_esdhc: Fix eMMC 1.8v setting issue (2018-01-13 00:08:44 +0900)


Felix Brack (1):
  mmc: sanitize includes for DM i2c

Heinrich Schuchardt (1):
  mmc: sdhci: do not compare pointer to 0

Jaehoon Chung (1):
  mmc: meson_gx_mmc: fix the complie error

Jean-Jacques Hiblot (38):
  mmc: dm: get the IO-line and main voltage regulators from the dts
  mmc: split mmc_startup()
  mmc: move the MMC startup for version above v4.0 in a separate function
  mmc: make ext_csd part of struct mmc
  mmc: add a function to read and test the ext csd (mmc >= 4)
  mmc: introduce mmc modes
  mmc: Add a function to dump the mmc capabilities
  mmc: use mmc modes to select the correct bus speed
  cmd: mmc: display the mode name and current bus speed in the mmc info
  mmc: refactor SD startup to make it easier to support new modes
  mmc: refactor MMC startup to make it easier to support new modes
  mmc: Add a new callback function to perform the 74 clocks cycle sequence
  mmc: Add support for UHS modes
  mmc: disable UHS modes if Vcc cannot be switched on and off
  mmc: Change mode when switching to a boot partition
  mmc: use the right voltage level for MMC DDR and HS200 modes
  mmc: add a library function to send tuning command
  mmc: dump card and host capabilities if debug is enabled
  dm: mmc: update mmc_of_parse()
  mmc: Fixed a problem with old sd or mmc that do not support High speed
  mmc: all hosts support 1-bit bus width and legacy timings
  mmc: fix for old MMCs (below version 4)
  mmc: don't use malloc_cache_aligned()
  mmc: convert most of printf() to pr_err() and pr_warn()
  mmc: make UHS and HS200 optional
  mmc: make optional the support for eMMC hardware partitioning
  configs: openrd: removed support for eMMC hardware partitioning
  configs: omapl138_lcdk: decrease the loglevel to reduce the size of the 
SPL
  dm: mmc: sandbox: Update SD card emulation
  common: do not compile common fastboot code when building the SPL
  mmc: atmel: when sending a data command, use the provided block size
  mmc: compile out more code if support for UHS and HS200 is not enabled
  mmc: reworked version lookup in mmc_startup_v4
  mmc: add a Kconfig option to enable the support for MMC write operations
  mmc: read ssr only if MMC write support is enabled
  mmc: compile out erase and write mmc commands if write operations are not 
enabled
  mmc: don't read the size of eMMC enhanced user data area in SPL
  mmc: remove hc_wp_grp_size from struct mmc if not needed

Jorge Ramirez-Ortiz (1):
  mmc: sdhci: don't clear SDHCI_INT_STATUS register during CMD_INHIBIT

Kishon Vijay Abraham I (9):
  mmc: make mmc_set_ios() return status
  mmc: Enable signal voltage to be selected from mmc core
  mmc: add power cyle support in mmc core
  mmc: add a new mmc parameter to disable mmc clock
  mmc: disable the mmc clock during power off
  mmc: Add a execute_tuning() callback to the mmc operations.
  mmc: add HS200 support in MMC core
  mmc: Retry some MMC cmds on failure
  dm: mmc: Add a library function to parse generic dt binding

Peng Fan (1):
  mmc: fsl_esdhc: Fix eMMC 1.8v setting issue

Suniel Mahesh (2):
  drivers: mmc: Change buffer type in ALLOC_CACHE_ALIGN_BUFFER macro
  drivers: mmc: Avoid memory leak in case of failure

Tom Rini (2):
  am335x_hs_evm: Trim options in SPL to reduce binary size
  power: Rearrange code to guard power command with CONFIG_SPL_BUILD guard

 cmd/mmc.c |   21 +-
 cmd/mvebu/bubt.c  |2 +-
 common/Makefile   |2 +
 common/spl/Kconfig|9 +
 configs/am335x_hs_evm_defconfig   |4 +
 configs/omapl138_lcdk_defconfig   |1 +
 configs/openrd_base_defconfig |1 +
 configs/openrd_client_defconfig   |1 +
 configs/openrd_ultimate_defconfig |1 +
 drivers/mmc/Kconfig   |   76 ++
 drivers/mmc/Makefile  |4 +-
 drivers/mmc/exynos_dw_mmc.c   |3 +
 drivers/mmc/fsl_esdhc.c   |   11 +-
 drivers/mmc/gen_atmel_mci.c   |   42 +-
 drivers/mmc/meson_gx_mmc.c|2 +-
 drivers/mmc/mmc-uclass.c  |   99 ++-
 drivers/mmc/mmc.c | 1642 -
 

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

2017-11-29 Thread Jaehoon Chung
On 11/29/2017 01:22 AM, Jean-Jacques Hiblot wrote:
> Hi all,
> 
> 
> On 28/11/2017 13:15, Tom Rini wrote:
>> On Tue, Nov 28, 2017 at 11:20:04AM +0900, Jaehoon Chung wrote:
>>
>>> Dear Tom,
>>>
>>> Could you pull these patches to u-boot/master?
>>> After applied these patches, i will send the patches relevant to fixing 
>>> patches.
>>> - I have tested the buildman, it's passed.
>>>
>>> Note:
>>> - When run "mmc rescan", it is failed with timeout.
> Jaehoon, FYI I don't see this problem with TI-based platforms

It seems that the drive what doesn't support DM is occurred.

>>> - Need to fix the minor issues.
>>> - Need to test about HS200 and UHS mode.
>>> - Before releasing, needs to make the stable for HS200 and UHS mode.
>>> - If there are that i missed some patches, i will rebase on this version.
>>>
>>> The following changes since commit 93a51d301ad051ec6f8c6016862c7719b8b434d3:
>>>
>>>Merge git://git.denx.de/u-boot-arc (2017-11-24 11:45:15 -0500)
>>>
>>> are available in the git repository at:
>>>
>>>git://git.denx.de/u-boot-mmc.git master
>>>
>>> for you to fetch changes up to f20c1c47ad289b4266a3be42e12540add8ef551c:
>>>
>>>mmc: meson_gx_mmc: fix the complie error (2017-11-27 18:46:30 +0900)
>>>
>> NAK.  Some of the listed problems lead to tests failing, and we also
>> have a number of size problems introduced with this too, please fix.
>> See https://travis-ci.org/trini/u-boot/builds/308244111
> The support for UHS and HS200 adds a lot of stuff (tuning, IO voltage control 
> etc.). I'll work to making it optional.

Also i will check them. Thanks!

Best Regards,
Jaehoon Chung

> 
> JJ
>>
> 
> 
> 
> 

___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


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

2017-11-29 Thread Jaehoon Chung
On 11/28/2017 09:15 PM, Tom Rini wrote:
> On Tue, Nov 28, 2017 at 11:20:04AM +0900, Jaehoon Chung wrote:
> 
>> Dear Tom,
>>
>> Could you pull these patches to u-boot/master?
>> After applied these patches, i will send the patches relevant to fixing 
>> patches.
>> - I have tested the buildman, it's passed.
>>
>> Note:
>> - When run "mmc rescan", it is failed with timeout.
>> - Need to fix the minor issues.
>> - Need to test about HS200 and UHS mode.
>> - Before releasing, needs to make the stable for HS200 and UHS mode.
>> - If there are that i missed some patches, i will rebase on this version.
>>
>> The following changes since commit 93a51d301ad051ec6f8c6016862c7719b8b434d3:
>>
>>   Merge git://git.denx.de/u-boot-arc (2017-11-24 11:45:15 -0500)
>>
>> are available in the git repository at:
>>
>>   git://git.denx.de/u-boot-mmc.git master
>>
>> for you to fetch changes up to f20c1c47ad289b4266a3be42e12540add8ef551c:
>>
>>   mmc: meson_gx_mmc: fix the complie error (2017-11-27 18:46:30 +0900)
>>
> 
> NAK.  Some of the listed problems lead to tests failing, and we also
> have a number of size problems introduced with this too, please fix.
> See https://travis-ci.org/trini/u-boot/builds/308244111

Ok, i will check them. Thanks!

Best Regards,
Jaehoon Chung

> 

___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


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

2017-11-28 Thread Jean-Jacques Hiblot

Hi all,


On 28/11/2017 13:15, Tom Rini wrote:

On Tue, Nov 28, 2017 at 11:20:04AM +0900, Jaehoon Chung wrote:


Dear Tom,

Could you pull these patches to u-boot/master?
After applied these patches, i will send the patches relevant to fixing patches.
- I have tested the buildman, it's passed.

Note:
- When run "mmc rescan", it is failed with timeout.

Jaehoon, FYI I don't see this problem with TI-based platforms

- Need to fix the minor issues.
- Need to test about HS200 and UHS mode.
- Before releasing, needs to make the stable for HS200 and UHS mode.
- If there are that i missed some patches, i will rebase on this version.

The following changes since commit 93a51d301ad051ec6f8c6016862c7719b8b434d3:

   Merge git://git.denx.de/u-boot-arc (2017-11-24 11:45:15 -0500)

are available in the git repository at:

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

for you to fetch changes up to f20c1c47ad289b4266a3be42e12540add8ef551c:

   mmc: meson_gx_mmc: fix the complie error (2017-11-27 18:46:30 +0900)


NAK.  Some of the listed problems lead to tests failing, and we also
have a number of size problems introduced with this too, please fix.
See https://travis-ci.org/trini/u-boot/builds/308244111
The support for UHS and HS200 adds a lot of stuff (tuning, IO voltage 
control etc.). I'll work to making it optional.


JJ




___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


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

2017-11-28 Thread Tom Rini
On Tue, Nov 28, 2017 at 11:20:04AM +0900, Jaehoon Chung wrote:

> Dear Tom,
> 
> Could you pull these patches to u-boot/master?
> After applied these patches, i will send the patches relevant to fixing 
> patches.
> - I have tested the buildman, it's passed.
> 
> Note:
> - When run "mmc rescan", it is failed with timeout.
> - Need to fix the minor issues.
> - Need to test about HS200 and UHS mode.
> - Before releasing, needs to make the stable for HS200 and UHS mode.
> - If there are that i missed some patches, i will rebase on this version.
> 
> The following changes since commit 93a51d301ad051ec6f8c6016862c7719b8b434d3:
> 
>   Merge git://git.denx.de/u-boot-arc (2017-11-24 11:45:15 -0500)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mmc.git master
> 
> for you to fetch changes up to f20c1c47ad289b4266a3be42e12540add8ef551c:
> 
>   mmc: meson_gx_mmc: fix the complie error (2017-11-27 18:46:30 +0900)
> 

NAK.  Some of the listed problems lead to tests failing, and we also
have a number of size problems introduced with this too, please fix.
See https://travis-ci.org/trini/u-boot/builds/308244111

-- 
Tom


signature.asc
Description: PGP signature
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


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

2017-11-27 Thread Jaehoon Chung
Dear Tom,

Could you pull these patches to u-boot/master?
After applied these patches, i will send the patches relevant to fixing patches.
- I have tested the buildman, it's passed.

Note:
- When run "mmc rescan", it is failed with timeout.
- Need to fix the minor issues.
- Need to test about HS200 and UHS mode.
- Before releasing, needs to make the stable for HS200 and UHS mode.
- If there are that i missed some patches, i will rebase on this version.

The following changes since commit 93a51d301ad051ec6f8c6016862c7719b8b434d3:

  Merge git://git.denx.de/u-boot-arc (2017-11-24 11:45:15 -0500)

are available in the git repository at:

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

for you to fetch changes up to f20c1c47ad289b4266a3be42e12540add8ef551c:

  mmc: meson_gx_mmc: fix the complie error (2017-11-27 18:46:30 +0900)


Felix Brack (1):
  mmc: sanitize includes for DM i2c

Heinrich Schuchardt (1):
  mmc: sdhci: do not compare pointer to 0

Jaehoon Chung (1):
  mmc: meson_gx_mmc: fix the complie error

Jean-Jacques Hiblot (17):
  mmc: dm: get the IO-line and main voltage regulators from the dts
  mmc: split mmc_startup()
  mmc: move the MMC startup for version above v4.0 in a separate function
  mmc: make ext_csd part of struct mmc
  mmc: add a function to read and test the ext csd (mmc >= 4)
  mmc: introduce mmc modes
  mmc: Add a function to dump the mmc capabilities
  mmc: use mmc modes to select the correct bus speed
  cmd: mmc: display the mode name and current bus speed in the mmc info
  mmc: refactor SD startup to make it easier to support new modes
  mmc: refactor MMC startup to make it easier to support new modes
  mmc: Add a new callback function to perform the 74 clocks cycle sequence
  mmc: Add support for UHS modes
  mmc: disable UHS modes if Vcc cannot be switched on and off
  mmc: Change mode when switching to a boot partition
  mmc: use the right voltage level for MMC DDR and HS200 modes
  mmc: add a library function to send tuning command

Jorge Ramirez-Ortiz (1):
  mmc: sdhci: don't clear SDHCI_INT_STATUS register during CMD_INHIBIT

Kishon Vijay Abraham I (9):
  mmc: make mmc_set_ios() return status
  mmc: Enable signal voltage to be selected from mmc core
  mmc: add power cyle support in mmc core
  mmc: add a new mmc parameter to disable mmc clock
  mmc: disable the mmc clock during power off
  mmc: Add a execute_tuning() callback to the mmc operations.
  mmc: add HS200 support in MMC core
  mmc: Retry some MMC cmds on failure
  dm: mmc: Add a library function to parse generic dt binding

Suniel Mahesh (2):
  drivers: mmc: Change buffer type in ALLOC_CACHE_ALIGN_BUFFER macro
  drivers: mmc: Avoid memory leak in case of failure

 cmd/mmc.c   |3 +-
 drivers/mmc/Kconfig |   23 +
 drivers/mmc/exynos_dw_mmc.c |3 +
 drivers/mmc/fsl_esdhc.c |2 +-
 drivers/mmc/meson_gx_mmc.c  |2 +-
 drivers/mmc/mmc-uclass.c|   87 +++
 drivers/mmc/mmc.c   | 1517 ---
 drivers/mmc/omap_hsmmc.c|4 +-
 drivers/mmc/sdhci.c |7 +-
 include/mmc.h   |  176 -
 10 files changed, 1430 insertions(+), 394 deletions(-)
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


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

2017-11-27 Thread Jaehoon Chung
On 11/27/2017 04:58 PM, Jaehoon Chung wrote:
> Dear Tom,
> 
> Could you pull these patches to u-boot/master?
> After applied these patches, i will send the patches relevant to fixing 
> patches.

Sorry. Will resend the PR. Discard this PR.

> 
> Note:
> - When run "mmc rescan", it is failed with timeout.
> - Need to fix the minor issues.
> - Need to test about HS200 and UHS mode.
> - Before releasing, needs to make the stable for HS200 and UHS mode.
> - If there are that i missed some patches, i will rebase on this version.
> 
> The following changes since commit 93a51d301ad051ec6f8c6016862c7719b8b434d3:
> 
>   Merge git://git.denx.de/u-boot-arc (2017-11-24 11:45:15 -0500)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mmc.git master
> 
> for you to fetch changes up to 48e4a0a6dd7d4e97dd66353d40932049716a106b:
> 
>   dm: mmc: Add a library function to parse generic dt binding (2017-11-27 
> 15:51:17 +0900)
> 
> 
> Felix Brack (1):
>   mmc: sanitize includes for DM i2c
> 
> Heinrich Schuchardt (1):
>   mmc: sdhci: do not compare pointer to 0
> 
> Jean-Jacques Hiblot (17):
>   mmc: dm: get the IO-line and main voltage regulators from the dts
>   mmc: split mmc_startup()
>   mmc: move the MMC startup for version above v4.0 in a separate function
>   mmc: make ext_csd part of struct mmc
>   mmc: add a function to read and test the ext csd (mmc >= 4)
>   mmc: introduce mmc modes
>   mmc: Add a function to dump the mmc capabilities
>   mmc: use mmc modes to select the correct bus speed
>   cmd: mmc: display the mode name and current bus speed in the mmc info
>   mmc: refactor SD startup to make it easier to support new modes
>   mmc: refactor MMC startup to make it easier to support new modes
>   mmc: Add a new callback function to perform the 74 clocks cycle sequence
>   mmc: Add support for UHS modes
>   mmc: disable UHS modes if Vcc cannot be switched on and off
>   mmc: Change mode when switching to a boot partition
>   mmc: use the right voltage level for MMC DDR and HS200 modes
>   mmc: add a library function to send tuning command
> 
> Jorge Ramirez-Ortiz (1):
>   mmc: sdhci: don't clear SDHCI_INT_STATUS register during CMD_INHIBIT
> 
> Kishon Vijay Abraham I (9):
>   mmc: make mmc_set_ios() return status
>   mmc: Enable signal voltage to be selected from mmc core
>   mmc: add power cyle support in mmc core
>   mmc: add a new mmc parameter to disable mmc clock
>   mmc: disable the mmc clock during power off
>   mmc: Add a execute_tuning() callback to the mmc operations.
>   mmc: add HS200 support in MMC core
>   mmc: Retry some MMC cmds on failure
>   dm: mmc: Add a library function to parse generic dt binding
> 
> Suniel Mahesh (2):
>   drivers: mmc: Change buffer type in ALLOC_CACHE_ALIGN_BUFFER macro
>   drivers: mmc: Avoid memory leak in case of failure
> 
>  cmd/mmc.c   |3 +-
>  drivers/mmc/Kconfig |   23 +
>  drivers/mmc/exynos_dw_mmc.c |3 +
>  drivers/mmc/fsl_esdhc.c |2 +-
>  drivers/mmc/mmc-uclass.c|   87 +++
>  drivers/mmc/mmc.c   | 1517 
> ---
>  drivers/mmc/omap_hsmmc.c|4 +-
>  drivers/mmc/sdhci.c |7 +-
>  include/mmc.h   |  176 -
>  9 files changed, 1429 insertions(+), 393 deletions(-)
> 
> Best Regards,
> Jaehoon Chung
> ___
> U-Boot mailing list
> U-Boot@lists.denx.de
> https://lists.denx.de/listinfo/u-boot
> 

___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


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

2017-11-26 Thread Jaehoon Chung
Dear Tom,

Could you pull these patches to u-boot/master?
After applied these patches, i will send the patches relevant to fixing patches.

Note:
- When run "mmc rescan", it is failed with timeout.
- Need to fix the minor issues.
- Need to test about HS200 and UHS mode.
- Before releasing, needs to make the stable for HS200 and UHS mode.
- If there are that i missed some patches, i will rebase on this version.

The following changes since commit 93a51d301ad051ec6f8c6016862c7719b8b434d3:

  Merge git://git.denx.de/u-boot-arc (2017-11-24 11:45:15 -0500)

are available in the git repository at:

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

for you to fetch changes up to 48e4a0a6dd7d4e97dd66353d40932049716a106b:

  dm: mmc: Add a library function to parse generic dt binding (2017-11-27 
15:51:17 +0900)


Felix Brack (1):
  mmc: sanitize includes for DM i2c

Heinrich Schuchardt (1):
  mmc: sdhci: do not compare pointer to 0

Jean-Jacques Hiblot (17):
  mmc: dm: get the IO-line and main voltage regulators from the dts
  mmc: split mmc_startup()
  mmc: move the MMC startup for version above v4.0 in a separate function
  mmc: make ext_csd part of struct mmc
  mmc: add a function to read and test the ext csd (mmc >= 4)
  mmc: introduce mmc modes
  mmc: Add a function to dump the mmc capabilities
  mmc: use mmc modes to select the correct bus speed
  cmd: mmc: display the mode name and current bus speed in the mmc info
  mmc: refactor SD startup to make it easier to support new modes
  mmc: refactor MMC startup to make it easier to support new modes
  mmc: Add a new callback function to perform the 74 clocks cycle sequence
  mmc: Add support for UHS modes
  mmc: disable UHS modes if Vcc cannot be switched on and off
  mmc: Change mode when switching to a boot partition
  mmc: use the right voltage level for MMC DDR and HS200 modes
  mmc: add a library function to send tuning command

Jorge Ramirez-Ortiz (1):
  mmc: sdhci: don't clear SDHCI_INT_STATUS register during CMD_INHIBIT

Kishon Vijay Abraham I (9):
  mmc: make mmc_set_ios() return status
  mmc: Enable signal voltage to be selected from mmc core
  mmc: add power cyle support in mmc core
  mmc: add a new mmc parameter to disable mmc clock
  mmc: disable the mmc clock during power off
  mmc: Add a execute_tuning() callback to the mmc operations.
  mmc: add HS200 support in MMC core
  mmc: Retry some MMC cmds on failure
  dm: mmc: Add a library function to parse generic dt binding

Suniel Mahesh (2):
  drivers: mmc: Change buffer type in ALLOC_CACHE_ALIGN_BUFFER macro
  drivers: mmc: Avoid memory leak in case of failure

 cmd/mmc.c   |3 +-
 drivers/mmc/Kconfig |   23 +
 drivers/mmc/exynos_dw_mmc.c |3 +
 drivers/mmc/fsl_esdhc.c |2 +-
 drivers/mmc/mmc-uclass.c|   87 +++
 drivers/mmc/mmc.c   | 1517 ---
 drivers/mmc/omap_hsmmc.c|4 +-
 drivers/mmc/sdhci.c |7 +-
 include/mmc.h   |  176 -
 9 files changed, 1429 insertions(+), 393 deletions(-)

Best Regards,
Jaehoon Chung
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


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

2017-10-24 Thread Jaehoon Chung
Dear Tom,

On 10/23/2017 01:54 PM, Jaehoon Chung wrote:
> Dear Tom,
> 
> Could you pull these patches to u-boot/master?
> To develop the supporting HS200 mode, each host driver also needs to 
> implement something.
> First step is the applying JJ's patches.

Discard this PR. After checking more, i will resend the PR.

Best Regards,
Jaehoon Chung

> 
> If there is a problem, let me know, plz.
> 
> The following changes since commit 0def58f7fd26a237bb08cfbd58ec53372b1ad06b:
> 
>   Merge git://git.denx.de/u-boot-x86 (2017-10-19 11:19:38 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mmc.git master
> 
> for you to fetch changes up to f58da60cfdbe896d62a0ec61cd41a52cfc82c526:
> 
>   mmc: replace the printf() instead of error() (2017-10-23 13:48:39 +0900)
> 
> 
> Jaehoon Chung (1):
>   mmc: replace the printf() instead of error()
> 
> Jean-Jacques Hiblot (17):
>   mmc: dm: get the IO-line and main voltage regulators from the dts
>   mmc: split mmc_startup()
>   mmc: move the MMC startup for version above v4.0 in a separate function
>   mmc: make ext_csd part of struct mmc
>   mmc: add a function to read and test the ext csd (mmc >= 4)
>   mmc: introduce mmc modes
>   mmc: Add a function to dump the mmc capabilities
>   mmc: use mmc modes to select the correct bus speed
>   cmd: mmc: display the mode name and current bus speed in the mmc info
>   mmc: refactor SD startup to make it easier to support new modes
>   mmc: refactor MMC startup to make it easier to support new modes
>   mmc: Add a new callback function to perform the 74 clocks cycle sequence
>   mmc: Add support for UHS modes
>   mmc: disable UHS modes if Vcc cannot be switched on and off
>   mmc: Change mode when switching to a boot partition
>   mmc: use the right voltage level for MMC DDR and HS200 modes
>   mmc: add a library function to send tuning command
> 
> Kishon Vijay Abraham I (9):
>   mmc: make mmc_set_ios() return status
>   mmc: Enable signal voltage to be selected from mmc core
>   mmc: add power cyle support in mmc core
>   mmc: add a new mmc parameter to disable mmc clock
>   mmc: disable the mmc clock during power off
>   mmc: Add a execute_tuning() callback to the mmc operations.
>   mmc: add HS200 support in MMC core
>   mmc: Retry some MMC cmds on failure
>   dm: mmc: Add a library function to parse generic dt binding
> 
> Suniel Mahesh (2):
>   drivers: mmc: Change buffer type in ALLOC_CACHE_ALIGN_BUFFER macro
>   drivers: mmc: Avoid memory leak in case of failure
> 
>  cmd/mmc.c   |3 +-
>  drivers/mmc/Kconfig |   23 +
>  drivers/mmc/exynos_dw_mmc.c |3 +
>  drivers/mmc/fsl_esdhc.c |2 +-
>  drivers/mmc/mmc-uclass.c|   87 +++
>  drivers/mmc/mmc.c   | 1517 
> ---
>  include/mmc.h   |  176 -
>  7 files changed, 1423 insertions(+), 388 deletions(-)
> ___
> U-Boot mailing list
> U-Boot@lists.denx.de
> https://lists.denx.de/listinfo/u-boot
> 

___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


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

2017-10-22 Thread Jaehoon Chung
Dear Tom,

Could you pull these patches to u-boot/master?
To develop the supporting HS200 mode, each host driver also needs to implement 
something.
First step is the applying JJ's patches.

If there is a problem, let me know, plz.

The following changes since commit 0def58f7fd26a237bb08cfbd58ec53372b1ad06b:

  Merge git://git.denx.de/u-boot-x86 (2017-10-19 11:19:38 -0400)

are available in the git repository at:

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

for you to fetch changes up to f58da60cfdbe896d62a0ec61cd41a52cfc82c526:

  mmc: replace the printf() instead of error() (2017-10-23 13:48:39 +0900)


Jaehoon Chung (1):
  mmc: replace the printf() instead of error()

Jean-Jacques Hiblot (17):
  mmc: dm: get the IO-line and main voltage regulators from the dts
  mmc: split mmc_startup()
  mmc: move the MMC startup for version above v4.0 in a separate function
  mmc: make ext_csd part of struct mmc
  mmc: add a function to read and test the ext csd (mmc >= 4)
  mmc: introduce mmc modes
  mmc: Add a function to dump the mmc capabilities
  mmc: use mmc modes to select the correct bus speed
  cmd: mmc: display the mode name and current bus speed in the mmc info
  mmc: refactor SD startup to make it easier to support new modes
  mmc: refactor MMC startup to make it easier to support new modes
  mmc: Add a new callback function to perform the 74 clocks cycle sequence
  mmc: Add support for UHS modes
  mmc: disable UHS modes if Vcc cannot be switched on and off
  mmc: Change mode when switching to a boot partition
  mmc: use the right voltage level for MMC DDR and HS200 modes
  mmc: add a library function to send tuning command

Kishon Vijay Abraham I (9):
  mmc: make mmc_set_ios() return status
  mmc: Enable signal voltage to be selected from mmc core
  mmc: add power cyle support in mmc core
  mmc: add a new mmc parameter to disable mmc clock
  mmc: disable the mmc clock during power off
  mmc: Add a execute_tuning() callback to the mmc operations.
  mmc: add HS200 support in MMC core
  mmc: Retry some MMC cmds on failure
  dm: mmc: Add a library function to parse generic dt binding

Suniel Mahesh (2):
  drivers: mmc: Change buffer type in ALLOC_CACHE_ALIGN_BUFFER macro
  drivers: mmc: Avoid memory leak in case of failure

 cmd/mmc.c   |3 +-
 drivers/mmc/Kconfig |   23 +
 drivers/mmc/exynos_dw_mmc.c |3 +
 drivers/mmc/fsl_esdhc.c |2 +-
 drivers/mmc/mmc-uclass.c|   87 +++
 drivers/mmc/mmc.c   | 1517 ---
 include/mmc.h   |  176 -
 7 files changed, 1423 insertions(+), 388 deletions(-)
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


Re: [U-Boot] [GIT PULL] Please pull u-boot-mmc master (take 2)

2017-09-29 Thread Tom Rini
On Fri, Sep 29, 2017 at 11:59:17AM +0900, Jaehoon Chung wrote:

> Dear Tom,
> 
> Could you pull these patches into u-boot/master?
> If there is a problem, let me know, plz.
> I may reply late, because it will start my national holidays from Tomorrow to 
> 10th of Oct.
> 
> The following changes since commit 6e9b109aa9bcdd094e77da9fb03de8b44da8eb9d:
> 
>   Merge git://git.denx.de/u-boot-usb (2017-09-27 09:39:48 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mmc.git master
> 
> for you to fetch changes up to 3d3108d459e6d034f20aab33b11f4d23537f0c27:
> 
>   mmc: sdhci-cadence: set timing mode register depending on frequency 
> (2017-09-29 11:34:22 +0900)
> 

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


[U-Boot] [GIT PULL] Please pull u-boot-mmc master (take 2)

2017-09-28 Thread Jaehoon Chung
Dear Tom,

Could you pull these patches into u-boot/master?
If there is a problem, let me know, plz.
I may reply late, because it will start my national holidays from Tomorrow to 
10th of Oct.

The following changes since commit 6e9b109aa9bcdd094e77da9fb03de8b44da8eb9d:

  Merge git://git.denx.de/u-boot-usb (2017-09-27 09:39:48 -0400)

are available in the git repository at:

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

for you to fetch changes up to 3d3108d459e6d034f20aab33b11f4d23537f0c27:

  mmc: sdhci-cadence: set timing mode register depending on frequency 
(2017-09-29 11:34:22 +0900)


Marek Vasut (2):
  mmc: uniphier-sd: Update the file to match V3 patchset
  mmc: uniphier-sd: Add vqmmc regulator support

Masahiro Yamada (1):
  mmc: sdhci-cadence: set timing mode register depending on frequency

Patrice Chotard (1):
  mmc: Add MMC support for stm32h7 Socs

Seung-Woo Kim (1):
  spl: spl_mmc: add __maybe_unused to mmc_load_image_raw_sector()

 common/spl/spl_mmc.c|   5 +-
 drivers/mmc/Kconfig |   8 +
 drivers/mmc/Makefile|   1 +
 drivers/mmc/sdhci-cadence.c |  51 
 drivers/mmc/stm32_sdmmc2.c  | 608 
 drivers/mmc/uniphier-sd.c   |  96 ---
 6 files changed, 726 insertions(+), 43 deletions(-)
 create mode 100644 drivers/mmc/stm32_sdmmc2.c

Best Regards,
Jaehoon Chung
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


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

2017-09-26 Thread Tom Rini
On Mon, Sep 25, 2017 at 02:31:03PM +0900, Jaehoon Chung wrote:

> Dear Tom,
> 
> Could you pull these patches into u-boot/master?
> If there is a problem, let me know, plz.
> 
> Other patches needs to check more, so i didn't apply them.
> If i need to send PR again, i will send the PR as "take v2" for other patches.
> (Patches relevant to HS200 and omap_hsmmc.)
> 
> The following changes since commit e884656c2c0b2406b9bf99ea76f5a8c75128a331:
> 
>   Merge git://www.denx.de/git/u-boot-imx (2017-09-20 12:32:34 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mmc.git master
> 
> for you to fetch changes up to 8ff7763d62d09c541e398239b7e4e3a5e732d273:
> 
>   regulator: pbias: Add PBIAS regulator for proper voltage switching on MMC1 
> (2017-09-22 23:23:54 +0900)
> 

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


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

2017-09-24 Thread Jaehoon Chung
Dear Tom,

Could you pull these patches into u-boot/master?
If there is a problem, let me know, plz.

Other patches needs to check more, so i didn't apply them.
If i need to send PR again, i will send the PR as "take v2" for other patches.
(Patches relevant to HS200 and omap_hsmmc.)

The following changes since commit e884656c2c0b2406b9bf99ea76f5a8c75128a331:

  Merge git://www.denx.de/git/u-boot-imx (2017-09-20 12:32:34 -0400)

are available in the git repository at:

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

for you to fetch changes up to 8ff7763d62d09c541e398239b7e4e3a5e732d273:

  regulator: pbias: Add PBIAS regulator for proper voltage switching on MMC1 
(2017-09-22 23:23:54 +0900)


Jean-Jacques Hiblot (2):
  dm: core: Add functions to get strings and the string count from a 
stringlist
  regulator: pbias: Add PBIAS regulator for proper voltage switching on MMC1

Marek Vasut (5):
  mmc: uniphier-sd: Factor out register IO
  mmc: uniphier-sd: Add support for 64bit controller
  mmc: uniphier-sd: Add support for 64bit FIFO
  mmc: uniphier-sd: Add support for quirks
  mmc: uniphier-sd: Add support for R8A7795 and R7A7796

 drivers/core/read.c   |  11 ++
 drivers/mmc/Kconfig   |   8 +-
 drivers/mmc/uniphier-sd.c | 219 +++---
 drivers/power/regulator/Kconfig   |  13 ++
 drivers/power/regulator/Makefile  |   1 +
 drivers/power/regulator/pbias_regulator.c | 301 ++
 include/dm/read.h |  36 
 7 files changed, 521 insertions(+), 68 deletions(-)
 create mode 100644 drivers/power/regulator/pbias_regulator.c

Best Regards,
Jaehoon Chung
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


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

2017-08-18 Thread Jaehoon Chung
Dear Tom,

I will resend the PR. Discard this PR.

Best Regards,
Jaehoon Chung

On 08/18/2017 02:39 PM, Jaehoon Chung wrote:
> Dear Tom,
> 
> Could you pull these patches to u-boot/master?
> Sorry for late about reviewing patches.
> Because of my late reviewing, some guys can't keep going their progress.
> 
> I had tested the buildman about all..As i see, there is no issue.
> If there is any issue, let me know, plz.
> 
> The following changes since commit 2d3c4ae350fe8c196698681ab9410733bf9017e0:
> 
>   Prepare v2017.09-rc2 (2017-08-14 20:02:11 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mmc.git master
> 
> for you to fetch changes up to b441a8ac51f8f628c0ae6efbf58f464464332c1d:
> 
>   mmc: Support generic PCI SD host controller (2017-08-18 14:18:23 +0900)
> 
> 
> Angelo Dureghello (1):
>   cmd: mmc: add mmc partconf read capability
> 
> Bin Meng (1):
>   mmc: Support generic PCI SD host controller
> 
> Jean-Jacques Hiblot (1):
>   regulator: pbias: Add PBIAS regulator for proper voltage switching on 
> MMC1
> 
> Marek Vasut (4):
>   mmc: uniphier-sd: Fix long response processing
>   mmc: sh_sdhi: Add DM and DT probing support
>   mmc: sh_sdhi: Fix the ACMD handling
>   mmc: sd_sdhi: Enable clock using clock framework
> 
> Simon Glass (40):
>   dm: core: Avoid calling dm_scan_fdt_dev() with of-platdata
>   dm: blk: Add a function to find an interface-type name
>   dm: blk: Add a generic function for block device commands
>   dm: sata: Adjust the 'sata' command to use blk_common_cmd()
>   dm: scsi: Adjust the 'scsi' command to use blk_common_cmd()
>   dm: ide: Adjust the 'ide' command to use blk_common_cmd()
>   dm: usb: Adjust the 'usb' command to use blk_common_cmd()
>   dm: blk: Update return value in blk_create_devicef()
>   dm: core: Add a comment about the device_remove() flags
>   dm: sata: dwc_ahsata: Make functions static
>   dm: sata: dw_sata: Drop dwc_ahsata_rw_ncq_cmd()
>   dm: sata: dw_sata: Move exported functions to the end
>   dm: sata: dw_sata: Rename 'probe_ent' to uc_priv
>   dm: sata: dw_sata: Drop unnecessary casts
>   dm: sata: dw_sata: Pass uc_priv to internal functions
>   dm: sata: dw_sata: Drop unnecessary brackets
>   dm: sata: dw_sata: Sort #include directives
>   dm: sata: dw_sata: Rename the dwc_ahsata private header
>   dm: sata: dw_sata: Drop is_ready
>   dm: sata: dw_sata: More ahci_init_one() futher down
>   dm: sata: dw_sata: Set up common versions of operations
>   dm: sata: Support driver model with the 'sata' command
>   dm: sata: imx: Allow driver model to be used for sata
>   dm: sata: Update the AHCI uclass to support operations
>   dm: sata: dwc_ahsata: Add support for driver model
>   dm: mmc: fsl_esdhc: Pass private data to internal functions
>   dm: mmc: fsl_esdhc: Set up common versions of operations
>   dm: mmc: fsl_esdhc: Detect reset failure
>   dm: mmc: fsl_esdhc: Detect init failure
>   dm: mmc: fsl_esdhc: Set up platform data
>   dm: mmc: fsl_esdhc: Drop mmc_init() call from fsl_esdhc_init()
>   dm: mmc: fsl_esdhc: Update to support livetree
>   dm: mmc: fsl_esdhc: Update to support MMC operations
>   dm: imx: cm_fx6: Support driver model for SATA
>   dm: imx: cm_fx6: Add device tree for cm_fx6
>   dm: imx: cm_fx6: Add MMC support for CONFIG_BLK
>   dm: imx: cm_fx6: Enable more driver model support
>   dm: imx: Move i.MX devices to use CONFIG_DM_MMC_OPS
>   dm: mmc: Correct Kconfig condition for SPL_DM_MMC_OPS
>   dm: mmc: Drop CONFIG_DM_MMC_OPS
> 
> wenyou.y...@microchip.com (1):
>   mmc: gen_atmel_mci: Fix wrong arguments used of bind()
> 
>  arch/arm/Kconfig|   2 -
>  arch/arm/dts/Makefile   |   1 +
>  arch/arm/dts/imx6q-cm-fx6.dts   | 115 
>  arch/arm/mach-imx/cpu.c |   2 +-
>  arch/arm/mach-rmobile/include/mach/sh_sdhi.h|   5 -
>  board/compulab/cm_fx6/cm_fx6.c  |  80 +++
>  cmd/Makefile|   1 +
>  cmd/blk_common.c| 104 
>  cmd/ide.c   | 107 +---
>  cmd/mmc.c   |  38 +-
>  cmd/sata.c  | 178 +++---
>  cmd/scsi.c  |  79 +--
>  cmd/usb.c   | 111 +---
>  common/splash_source.c  |   2 +-
>  configs/cm_fx6_defconfig|   8 +-
>  configs/imx6q_logic_defconfig   |   1 -
>  configs/imx6qdl_icore_mmc_defconfig |   1 -
>  configs/imx6qdl_icore_rqs_defconfig |   1 -
>  configs/imx6ul_geam_mmc_defconfig   |   1 -

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

2017-08-17 Thread Jaehoon Chung
Dear Tom,

Could you pull these patches to u-boot/master?
Sorry for late about reviewing patches.
Because of my late reviewing, some guys can't keep going their progress.

I had tested the buildman about all..As i see, there is no issue.
If there is any issue, let me know, plz.

The following changes since commit 2d3c4ae350fe8c196698681ab9410733bf9017e0:

  Prepare v2017.09-rc2 (2017-08-14 20:02:11 -0400)

are available in the git repository at:

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

for you to fetch changes up to b441a8ac51f8f628c0ae6efbf58f464464332c1d:

  mmc: Support generic PCI SD host controller (2017-08-18 14:18:23 +0900)


Angelo Dureghello (1):
  cmd: mmc: add mmc partconf read capability

Bin Meng (1):
  mmc: Support generic PCI SD host controller

Jean-Jacques Hiblot (1):
  regulator: pbias: Add PBIAS regulator for proper voltage switching on MMC1

Marek Vasut (4):
  mmc: uniphier-sd: Fix long response processing
  mmc: sh_sdhi: Add DM and DT probing support
  mmc: sh_sdhi: Fix the ACMD handling
  mmc: sd_sdhi: Enable clock using clock framework

Simon Glass (40):
  dm: core: Avoid calling dm_scan_fdt_dev() with of-platdata
  dm: blk: Add a function to find an interface-type name
  dm: blk: Add a generic function for block device commands
  dm: sata: Adjust the 'sata' command to use blk_common_cmd()
  dm: scsi: Adjust the 'scsi' command to use blk_common_cmd()
  dm: ide: Adjust the 'ide' command to use blk_common_cmd()
  dm: usb: Adjust the 'usb' command to use blk_common_cmd()
  dm: blk: Update return value in blk_create_devicef()
  dm: core: Add a comment about the device_remove() flags
  dm: sata: dwc_ahsata: Make functions static
  dm: sata: dw_sata: Drop dwc_ahsata_rw_ncq_cmd()
  dm: sata: dw_sata: Move exported functions to the end
  dm: sata: dw_sata: Rename 'probe_ent' to uc_priv
  dm: sata: dw_sata: Drop unnecessary casts
  dm: sata: dw_sata: Pass uc_priv to internal functions
  dm: sata: dw_sata: Drop unnecessary brackets
  dm: sata: dw_sata: Sort #include directives
  dm: sata: dw_sata: Rename the dwc_ahsata private header
  dm: sata: dw_sata: Drop is_ready
  dm: sata: dw_sata: More ahci_init_one() futher down
  dm: sata: dw_sata: Set up common versions of operations
  dm: sata: Support driver model with the 'sata' command
  dm: sata: imx: Allow driver model to be used for sata
  dm: sata: Update the AHCI uclass to support operations
  dm: sata: dwc_ahsata: Add support for driver model
  dm: mmc: fsl_esdhc: Pass private data to internal functions
  dm: mmc: fsl_esdhc: Set up common versions of operations
  dm: mmc: fsl_esdhc: Detect reset failure
  dm: mmc: fsl_esdhc: Detect init failure
  dm: mmc: fsl_esdhc: Set up platform data
  dm: mmc: fsl_esdhc: Drop mmc_init() call from fsl_esdhc_init()
  dm: mmc: fsl_esdhc: Update to support livetree
  dm: mmc: fsl_esdhc: Update to support MMC operations
  dm: imx: cm_fx6: Support driver model for SATA
  dm: imx: cm_fx6: Add device tree for cm_fx6
  dm: imx: cm_fx6: Add MMC support for CONFIG_BLK
  dm: imx: cm_fx6: Enable more driver model support
  dm: imx: Move i.MX devices to use CONFIG_DM_MMC_OPS
  dm: mmc: Correct Kconfig condition for SPL_DM_MMC_OPS
  dm: mmc: Drop CONFIG_DM_MMC_OPS

wenyou.y...@microchip.com (1):
  mmc: gen_atmel_mci: Fix wrong arguments used of bind()

 arch/arm/Kconfig|   2 -
 arch/arm/dts/Makefile   |   1 +
 arch/arm/dts/imx6q-cm-fx6.dts   | 115 
 arch/arm/mach-imx/cpu.c |   2 +-
 arch/arm/mach-rmobile/include/mach/sh_sdhi.h|   5 -
 board/compulab/cm_fx6/cm_fx6.c  |  80 +++
 cmd/Makefile|   1 +
 cmd/blk_common.c| 104 
 cmd/ide.c   | 107 +---
 cmd/mmc.c   |  38 +-
 cmd/sata.c  | 178 +++---
 cmd/scsi.c  |  79 +--
 cmd/usb.c   | 111 +---
 common/splash_source.c  |   2 +-
 configs/cm_fx6_defconfig|   8 +-
 configs/imx6q_logic_defconfig   |   1 -
 configs/imx6qdl_icore_mmc_defconfig |   1 -
 configs/imx6qdl_icore_rqs_defconfig |   1 -
 configs/imx6ul_geam_mmc_defconfig   |   1 -
 configs/imx6ul_geam_nand_defconfig  |   1 -
 configs/imx6ul_isiot_emmc_defconfig |   1 -
 configs/imx6ul_isiot_mmc_defconfig  |   1 -
 configs/imx6ul_isiot_nand_defconfig |   1 -
 configs/ls1012aqds_qspi_defconfig   |   1 -
 configs/ls1012ardb_qspi_defconfig   

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

2017-07-31 Thread Jaehoon Chung
Dear Tom,

On 07/31/2017 08:27 PM, Tom Rini wrote:
> On Mon, Jul 31, 2017 at 11:59:07AM +0900, Jaehoon Chung wrote:
> 
>> Dear Tom,
>>
>> Could you pull these patches into u-boot/master?
>>
>> The following changes since commit 55f228b07e2d84938a88737445441e736de41340:
>>
>>   x86: minnowmax: Remove CONFIG_SMSC_LPC47M (2017-07-30 10:30:25 +0800)
>>
>> are available in the git repository at:
>>
>>   git://git.denx.de/u-boot-mmc.git master
>>
>> for you to fetch changes up to 9b32160db8264d32f5b0640412c9cb1b882c1d6e:
>>
>>   dm: syscon: scan sub-nodes of the syscon node (2017-07-31 11:49:18 +0900)
>>
> 
> This fails with at least:
>arm:  +   am57xx_hs_evm
> +(am57xx_hs_evm) drivers/power/regulator/built-in.o: In function 
> `pbias_write':
> +(am57xx_hs_evm) build/../drivers/power/regulator/pbias_regulator.c:49: 
> undefined reference to `regmap_write'
> +(am57xx_hs_evm) drivers/power/regulator/built-in.o: In function `pbias_read':
> +(am57xx_hs_evm) build/../drivers/power/regulator/pbias_regulator.c:59: 
> undefined reference to `regmap_read'
> +(am57xx_hs_evm) drivers/power/regulator/built-in.o: In function 
> `pbias_ofdata_to_platdata':
> +(am57xx_hs_evm) build/../drivers/power/regulator/pbias_regulator.c:78: 
> undefined reference to `syscon_get_regmap'
> +(am57xx_hs_evm) arm-linux-gnueabihf-ld.bfd: BFD (GNU Binutils for Debian) 
> 2.28 assertion fail ../../bfd/elf32-arm.c:9514
> +(am57xx_hs_evm) make[1]: *** [u-boot] Error 1
> +(am57xx_hs_evm) make: *** [sub-make] Error 2

after fixing it, resend the PR. Sorry for bothering you.

> 

___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


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

2017-07-30 Thread Jaehoon Chung
Dear Tom,

Could you pull these patches into u-boot/master?

The following changes since commit 55f228b07e2d84938a88737445441e736de41340:

  x86: minnowmax: Remove CONFIG_SMSC_LPC47M (2017-07-30 10:30:25 +0800)

are available in the git repository at:

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

for you to fetch changes up to 9b32160db8264d32f5b0640412c9cb1b882c1d6e:

  dm: syscon: scan sub-nodes of the syscon node (2017-07-31 11:49:18 +0900)


Jean-Jacques Hiblot (4):
  regulator: palmas: disable bypass when the LDO is enabled
  dm: core: Add functions to get strings and the string count from a 
stringlist
  regulator: pbias: Add PBIAS regulator for proper voltage switching on MMC1
  dm: syscon: scan sub-nodes of the syscon node

Kishon Vijay Abraham I (1):
  regulator: palmas: Add support for LDO1 regulator to provide 1.8V

Simon Glass (14):
  ahci: Support non-PCI controllers
  dm: mmc: Allow disabling driver model in SPL
  fdt: Correct fdt_get_base_address()
  dm: scsi: Drop duplicate SCSI and DM_SCSI options
  dm: ahci: Correct uclass private data
  dm: mmc: sunxi: Rename struct sunxi_mmc_host to sunxi_mmc_priv
  dm: mmc: sunxi: Rename mmchost to priv
  dm: mmc: sunxi: Pass private data around explicitly
  dm: mmc: sunxi: Drop mmc_clk_io_on()
  dm: mmc: sunxi: Add support for driver model
  dm: sunxi: Linksprite_pcDuino3: Correct polarity of MMC card detect
  dm: sunxi: sata: Don't build sata support into SPL
  dm: sata: sunxi: Add support for driver model
  dm: sunxi: Move Linksprite_pcDuino3 to use DM for MMC, SATA

 arch/arm/dts/sun7i-a20-pcduino3.dts|   2 +-
 arch/x86/cpu/ivybridge/sata.c  |   2 +-
 board/sunxi/Makefile   |   2 +
 board/sunxi/ahci.c |  61 -
 common/fdt_support.c   |   7 +-
 common/spl/spl_mmc.c   |   4 +-
 configs/Linksprite_pcDuino3_defconfig  |   7 +-
 drivers/ata/Kconfig|  18 --
 drivers/ata/ahci-uclass.c  |   2 +
 drivers/ata/ahci.c |  28 ++-
 drivers/block/Kconfig  |  12 +
 drivers/block/Makefile |   4 +-
 drivers/core/read.c|  11 +
 drivers/core/syscon-uclass.c   |   1 +
 drivers/mmc/Kconfig|  22 ++
 drivers/mmc/Makefile   |   4 +-
 drivers/mmc/mmc-uclass.c   |   6 +-
 drivers/mmc/mmc.c  |  28 +--
 drivers/mmc/mmc_legacy.c   |   2 +-
 drivers/mmc/mmc_private.h  |   6 +-
 drivers/mmc/omap_hsmmc.c   |  20 +-
 drivers/mmc/sunxi_mmc.c| 359 -
 drivers/power/palmas.c |   5 +-
 drivers/power/regulator/Kconfig|  10 +
 drivers/power/regulator/Makefile   |   1 +
 drivers/power/regulator/palmas_regulator.c |  36 +++
 drivers/power/regulator/pbias_regulator.c  | 302 
 drivers/scsi/scsi.c|   2 +-
 include/ahci.h |  14 +-
 include/blk.h  |   4 +-
 include/dm/read.h  |  36 +++
 include/mmc.h  |  12 +-
 include/power/palmas.h |   1 +
 33 files changed, 832 insertions(+), 199 deletions(-)
 create mode 100644 drivers/power/regulator/pbias_regulator.c
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


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

2017-07-19 Thread Jaehoon Chung
Dear Tom,

Could pull these patches into your u-boot/master?
After that, i will send PR take2now i'm checking other pending review 
patches..

The following changes since commit 2710d54f54bb2242e81a23930b4e954654800d1f:

  ARM: Mark AE boards orphan (2017-07-18 15:21:30 -0400)

are available in the git repository at:

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

for you to fetch changes up to aae6f016a7928edc79dff78d1235103fff282a34:

  mmc: cadence: use fdt32_t for DT property value to fix sparse warning 
(2017-07-19 19:13:59 +0900)


Keerthy (12):
  regulator: Change get_enable return type to integer from bool
  power: regulator: fixed: get_enable should return integer
  power: regulator: act8846: get_enable should return integer
  power: regulator: max77686: get_enable should return integer
  power: regulator: palmas: get_enable should return integer
  power: regulator: pfuze100: get_enable should return integer
  power: regulator: tps65090: get_enable should return integer
  power: regulator: rk8xx: get_enable should return integer
  power: sandbox: fixed: get_enable should return integer
  power: regulator: s5m8767: get_enable should return integer
  power: regulator: lp873x: get_enable should return integer
  power: regulator: lp87565: get_enable should return integer

Kever Yang (2):
  mmc: use new hwpart API when CONFIG_BLK enabled
  mmc: rpmb: update size format for write_counter

Masahiro Yamada (2):
  mmc: add static to spl_mmc_get_device_index()
  mmc: cadence: use fdt32_t for DT property value to fix sparse warning

 cmd/mmc.c| 4 
 common/spl/spl_mmc.c | 2 +-
 drivers/mmc/rpmb.c   | 2 +-
 drivers/mmc/sdhci-cadence.c  | 2 +-
 drivers/power/regulator/act8846.c| 2 +-
 drivers/power/regulator/fixed.c  | 2 +-
 drivers/power/regulator/lp873x_regulator.c   | 4 ++--
 drivers/power/regulator/lp87565_regulator.c  | 2 +-
 drivers/power/regulator/max77686.c   | 4 ++--
 drivers/power/regulator/palmas_regulator.c   | 4 ++--
 drivers/power/regulator/pfuze100.c   | 2 +-
 drivers/power/regulator/regulator-uclass.c   | 2 +-
 drivers/power/regulator/rk8xx.c  | 6 +++---
 drivers/power/regulator/s5m8767.c| 4 ++--
 drivers/power/regulator/sandbox.c| 4 ++--
 drivers/power/regulator/tps65090_regulator.c | 2 +-
 include/power/regulator.h| 8 
 17 files changed, 30 insertions(+), 26 deletions(-)

Best Regards,
Jaehoon Chung
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


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

2017-06-30 Thread Jaehoon Chung
Hi Tom,

On 06/30/2017 07:48 PM, Tom Rini wrote:
> On Fri, Jun 30, 2017 at 12:48:20PM +0900, Jaehoon Chung wrote:
> 
>> Dear Tom,
>>
>> Could you pull these patches into u-boot/master?
>> If there is a problem, let me know, plz.
>>
>> The following changes since commit 08546df976b79b1694af3ff12b26baf2931f371a:
>>
>>   Merge git://git.denx.de/u-boot-x86 (2017-06-27 09:33:10 -0400)
>>
>> are available in the git repository at:
>>
>>   git://git.denx.de/u-boot-mmc.git master
>>
>> for you to fetch changes up to 34c529a6267a784dc92466909616cd4e03e3f205:
>>
>>   mmc: cadence: use fdt32_t for DT property value to fix sparse warning 
>> (2017-06-30 12:22:06 +0900)
> 
> Since -rc3 is coming Monday, is there anything here that's just a
> bugfix?  Thanks!

There is no bugfix..then i will keep these patches in my repository until 
opening the next merge window.

Best Regards,
Jaehoon Chung

> 

___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


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

2017-06-30 Thread Tom Rini
On Fri, Jun 30, 2017 at 12:48:20PM +0900, Jaehoon Chung wrote:

> Dear Tom,
> 
> Could you pull these patches into u-boot/master?
> If there is a problem, let me know, plz.
> 
> The following changes since commit 08546df976b79b1694af3ff12b26baf2931f371a:
> 
>   Merge git://git.denx.de/u-boot-x86 (2017-06-27 09:33:10 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mmc.git master
> 
> for you to fetch changes up to 34c529a6267a784dc92466909616cd4e03e3f205:
> 
>   mmc: cadence: use fdt32_t for DT property value to fix sparse warning 
> (2017-06-30 12:22:06 +0900)

Since -rc3 is coming Monday, is there anything here that's just a
bugfix?  Thanks!

-- 
Tom


signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


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

2017-06-29 Thread Jaehoon Chung
Dear Tom,

Could you pull these patches into u-boot/master?
If there is a problem, let me know, plz.

The following changes since commit 08546df976b79b1694af3ff12b26baf2931f371a:

  Merge git://git.denx.de/u-boot-x86 (2017-06-27 09:33:10 -0400)

are available in the git repository at:

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

for you to fetch changes up to 34c529a6267a784dc92466909616cd4e03e3f205:

  mmc: cadence: use fdt32_t for DT property value to fix sparse warning 
(2017-06-30 12:22:06 +0900)


Keerthy (12):
  regulator: Change get_enable return type to integer from bool
  power: regulator: fixed: get_enable should return integer
  power: regulator: act8846: get_enable should return integer
  power: regulator: max77686: get_enable should return integer
  power: regulator: palmas: get_enable should return integer
  power: regulator: pfuze100: get_enable should return integer
  power: regulator: tps65090: get_enable should return integer
  power: regulator: rk8xx: get_enable should return integer
  power: sandbox: fixed: get_enable should return integer
  power: regulator: s5m8767: get_enable should return integer
  power: regulator: lp873x: get_enable should return integer
  power: regulator: lp87565: get_enable should return integer

Kever Yang (2):
  mmc: use new hwpart API when CONFIG_BLK enabled
  mmc: rpmb: update size format for write_counter

Masahiro Yamada (2):
  mmc: add static to spl_mmc_get_device_index()
  mmc: cadence: use fdt32_t for DT property value to fix sparse warning

 cmd/mmc.c| 4 
 common/spl/spl_mmc.c | 2 +-
 drivers/mmc/rpmb.c   | 2 +-
 drivers/mmc/sdhci-cadence.c  | 2 +-
 drivers/power/regulator/act8846.c| 2 +-
 drivers/power/regulator/fixed.c  | 2 +-
 drivers/power/regulator/lp873x_regulator.c   | 4 ++--
 drivers/power/regulator/lp87565_regulator.c  | 2 +-
 drivers/power/regulator/max77686.c   | 4 ++--
 drivers/power/regulator/palmas_regulator.c   | 4 ++--
 drivers/power/regulator/pfuze100.c   | 2 +-
 drivers/power/regulator/regulator-uclass.c   | 2 +-
 drivers/power/regulator/rk8xx.c  | 6 +++---
 drivers/power/regulator/s5m8767.c| 4 ++--
 drivers/power/regulator/sandbox.c| 4 ++--
 drivers/power/regulator/tps65090_regulator.c | 2 +-
 include/power/regulator.h| 8 
 17 files changed, 30 insertions(+), 26 deletions(-)

Best Regards,
Jaehoon Chung
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


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

2017-06-10 Thread Tom Rini
On Fri, Jun 09, 2017 at 08:28:46PM +0900, Jaehoon Chung wrote:

> Dear Tom,
> 
> Could you pull these patches into u-boot/master?
> 
> The following changes since commit 156d64fa55e9914b144c5e83f2a9e13d1223a4d3:
> 
>   Merge git://git.denx.de/u-boot-rockchip (2017-06-08 12:14:11 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mmc.git master
> 
> for you to fetch changes up to abf54bf978ed9932d69ee7f937012398d0d8d08f:
> 
>   Fixup bug in PMIC TPS65217 register address definition (2017-06-09 20:25:16 
> +0900)
> 

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


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

2017-06-09 Thread Jaehoon Chung
Dear Tom,

Could you pull these patches into u-boot/master?

The following changes since commit 156d64fa55e9914b144c5e83f2a9e13d1223a4d3:

  Merge git://git.denx.de/u-boot-rockchip (2017-06-08 12:14:11 -0400)

are available in the git repository at:

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

for you to fetch changes up to abf54bf978ed9932d69ee7f937012398d0d8d08f:

  Fixup bug in PMIC TPS65217 register address definition (2017-06-09 20:25:16 
+0900)


Brock Zheng Techyauld Ltd (1):
  Fixup bug in PMIC TPS65217 register address definition

Keerthy (5):
  power: regulator: palmas: Add smps12 dual regulator for tps65917
  power: pmic: tps65218: Add DCDC3 configuration
  board: ti: AM43XX: Add ddr voltage rail configuration
  power: pmic: lp87565: Add the basic pmic support
  power: regulator: lp87565: add regulator support

Kouei Abe (4):
  mmc: sh_sdhi: Set SD_INFOx interrupt mask before command starting
  mmc: sh_sdhi: Add 64-bit access to sd_buf support
  mmc: sh_sdhi: Add MMC version 5.0 support
  mmc: sh_sdhi: Add SDHI support

Marek Vasut (1):
  mmc: sh_sdhi: Fix Kconfig entry

Simon Glass (3):
  dm: blk: Add a way to obtain a block device from its parent
  dm: mmc: Ensure that block device is probed
  dm: mmc: Avoid probing block devices in find_mmc_device()

 arch/arm/mach-rmobile/include/mach/sh_sdhi.h |  15 +-
 board/ti/am43xx/board.c  |   7 +
 common/env_mmc.c |   7 +-
 drivers/block/blk-uclass.c   |  26 
 drivers/mmc/Kconfig  |   2 +-
 drivers/mmc/mmc-uclass.c |   6 +-
 drivers/mmc/sh_sdhi.c|  95 ++---
 drivers/power/pmic/Kconfig   |   7 +
 drivers/power/pmic/Makefile  |   1 +
 drivers/power/pmic/lp87565.c |  87 
 drivers/power/pmic/pmic_tps65218.c   |   3 +-
 drivers/power/regulator/Kconfig  |  10 ++
 drivers/power/regulator/Makefile |   1 +
 drivers/power/regulator/lp87565_regulator.c  | 199 +++
 drivers/power/regulator/palmas_regulator.c   |   6 +-
 include/blk.h|   7 +
 include/power/lp87565.h  |  12 ++
 include/power/tps65217.h |   1 +
 include/power/tps65218.h |   1 +
 test/dm/blk.c|  18 +++
 20 files changed, 484 insertions(+), 27 deletions(-)
 create mode 100644 drivers/power/pmic/lp87565.c
 create mode 100644 drivers/power/regulator/lp87565_regulator.c
 create mode 100644 include/power/lp87565.h

Best Regards,
Jaehoon Chung
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


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

2017-05-30 Thread Tom Rini
On Mon, May 29, 2017 at 05:31:50PM +0900, Jaehoon Chung wrote:

> Dear Tom,
> 
> Could you pull these patches into u-boot/master?
> I have tested the buildman..but if there is a problem, let me know, plz.
> 
> The following changes since commit 380e86f361e4e2aef83295972863654fde157560:
> 
>   Merge git://git.denx.de/u-boot-fsl-qoriq (2017-05-26 11:19:27 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mmc.git master
> 
> for you to fetch changes up to de59d10cd0a4e79c85e4f791fb8f023164d0890e:
> 
>   doc: document u-boot, mmc-env-offset and u-boot, mmc-env-offset-redund 
> (2017-05-29 17:28:52 +0900)
> 

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


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

2017-05-29 Thread Jaehoon Chung
Dear Tom,

Could you pull these patches into u-boot/master?
I have tested the buildman..but if there is a problem, let me know, plz.

The following changes since commit 380e86f361e4e2aef83295972863654fde157560:

  Merge git://git.denx.de/u-boot-fsl-qoriq (2017-05-26 11:19:27 -0400)

are available in the git repository at:

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

for you to fetch changes up to de59d10cd0a4e79c85e4f791fb8f023164d0890e:

  doc: document u-boot, mmc-env-offset and u-boot, mmc-env-offset-redund 
(2017-05-29 17:28:52 +0900)


Heiner Kallweit (1):
  mmc: meson: increase max block number per request

Keerthy (1):
  power: pmic: tps65218: Fix tps65218_voltage_update function

Philipp Tomsich (2):
  env_mmc: configure environment offsets via device tree
  doc: document u-boot, mmc-env-offset and u-boot, mmc-env-offset-redund

Tom Rini (2):
  mmc: Change 'part_config' to be a u8 not char.
  drivers/power/regulator/max77686.c: Fix comparisons of unsigned 
expressions

 common/env_mmc.c| 31 +++
 doc/device-tree-bindings/config.txt | 12 
 drivers/mmc/meson_gx_mmc.c  |  2 +-
 drivers/power/pmic/pmic_tps65218.c  |  2 +-
 drivers/power/regulator/max77686.c  | 16 
 include/mmc.h   |  2 +-
 include/power/tps65218.h|  2 ++
 7 files changed, 52 insertions(+), 15 deletions(-)

Best Regards,
Jaehoon Chung
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


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

2017-05-15 Thread Jaehoon Chung
Dear Tom,

On 05/15/2017 02:06 PM, Jaehoon Chung wrote:
> Dear Tom,
> 
> Could you pull these patches into u-boot/master?
> If there are problems, let me knows.

Discard this PR..When i checked some patches, there are problem..So i will 
resend the PR.


Best Regards,
Jaehoon Chung

> 
> 
> The following changes since commit 22f3368e71321db1e0e15dfbf54b052367890ec7:
> 
>   Merge branch 'master' of git://git.denx.de/u-boot-mips (2017-05-13 16:45:35 
> -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mmc.git master
> 
> for you to fetch changes up to 08c424fc0073cfad854ebc6164a24c99f31aa125:
> 
>   mmc: atmel_sdhci: Enable the quirk SDHCI_QUIRK_WAIT_SEND_CMD (2017-05-15 
> 14:00:07 +0900)
> 
> 
> Jean-Jacques Hiblot (2):
>   include: config: am335x: disable DM_MMC_OPS if DM_MMC is disabled
>   drivers: omap_hsmmc: move to DM_MMC_OPS
> 
> Masahiro Yamada (5):
>   mmc: sdhci-cadence: import updates from Linux 4.12
>   sandbox_noblk_defconfig: disable CONFIG_GENERIC_MMC
>   blanche_defconfig: enable CONFIG_MMC
>   mmc: replace CONFIG_GENERIC_MMC with CONFIG_MMC
>   mmc: descend into drivers/mmc only when CONFIG_MMC is enabled
> 
> Philipp Tomsich (2):
>   env_mmc: configure environment offsets via device tree
>   doc: document u-boot, mmc-env-offset and u-boot, mmc-env-offset-redund
> 
> Wenyou Yang (2):
>   mmc: sdhci: Fix maximum clock for programmable clock mode
>   mmc: atmel_sdhci: Enable the quirk SDHCI_QUIRK_WAIT_SEND_CMD
> 
>  Makefile   |  1 -
>  arch/arm/Kconfig   |  2 +-
>  board/BuR/common/common.c  |  2 +-
>  board/bosch/shc/board.c|  2 +-
>  board/compulab/cl-som-am57x/cl-som-am57x.c |  4 +-
>  board/compulab/cm_t35/cm_t35.c |  4 +-
>  board/compulab/cm_t3517/cm_t3517.c |  2 +-
>  board/compulab/cm_t54/cm_t54.c |  2 +-
>  board/corscience/tricorder/tricorder.c |  4 +-
>  board/gumstix/duovero/duovero.c|  2 +-
>  board/hisilicon/hikey/hikey.c  |  2 +-
>  board/isee/igep00x0/igep00x0.c |  4 +-
>  board/logicpd/am3517evm/am3517evm.c|  2 +-
>  board/logicpd/omap3som/omap3logic.c|  4 +-
>  board/logicpd/zoom1/zoom1.c|  2 +-
>  board/overo/overo.c|  4 +-
>  board/pandora/pandora.c|  2 +-
>  board/quipos/cairo/cairo.c |  2 +-
>  board/samsung/arndale/arndale.c|  2 +-
>  board/samsung/common/board.c   |  2 +-
>  board/samsung/common/misc.c|  4 +-
>  board/samsung/goni/goni.c  |  2 +-
>  board/samsung/smdkv310/smdkv310.c  |  2 +-
>  board/sunxi/board.c|  2 +-
>  board/technexion/tao3530/tao3530.c |  4 +-
>  board/ti/am3517crane/am3517crane.c |  2 +-
>  board/ti/am57xx/board.c|  2 +-
>  board/ti/beagle/beagle.c   |  4 +-
>  board/ti/dra7xx/evm.c  |  2 +-
>  board/ti/evm/evm.c |  4 +-
>  board/ti/ks2_evm/board_k2g.c   |  2 +-
>  board/ti/omap5_uevm/evm.c  |  2 +-
>  board/ti/panda/panda.c |  2 +-
>  board/ti/sdp4430/sdp.c |  2 +-
>  board/ti/ti814x/evm.c  |  2 +-
>  board/timll/devkit8000/devkit8000.c|  4 +-
>  common/board_r.c   |  4 +-
>  common/env_mmc.c   | 31 --
>  common/spl/Kconfig |  4 +-
>  configs/blanche_defconfig  |  3 +-
>  configs/sandbox_noblk_defconfig|  1 -
>  doc/device-tree-bindings/config.txt| 12 ++
>  drivers/Makefile   |  1 +
>  drivers/mmc/Kconfig|  5 +--
>  drivers/mmc/Makefile   | 28 ++---
>  drivers/mmc/atmel_sdhci.c  |  4 +-
>  drivers/mmc/davinci_mmc.c  |  2 +-
>  drivers/mmc/omap_hsmmc.c   | 38 ++---
>  drivers/mmc/sdhci-cadence.c| 67 
> +-
>  drivers/mmc/sdhci.c| 18 
>  include/configs/am335x_evm.h   |  2 +
>  include/configs/am335x_shc.h   |  1 +
>  include/configs/chiliboard.h   |  1 +
>  53 files changed, 211 insertions(+), 104 deletions(-)
> 
> Best Regards,
> Jaehoon Chung
> ___
> U-Boot mailing list
> U-Boot@lists.denx.de
> https://lists.denx.de/listinfo/u-boot
> 

___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


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

2017-05-14 Thread Jaehoon Chung
Dear Tom,

Could you pull these patches into u-boot/master?
If there are problems, let me knows.


The following changes since commit 22f3368e71321db1e0e15dfbf54b052367890ec7:

  Merge branch 'master' of git://git.denx.de/u-boot-mips (2017-05-13 16:45:35 
-0400)

are available in the git repository at:

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

for you to fetch changes up to 08c424fc0073cfad854ebc6164a24c99f31aa125:

  mmc: atmel_sdhci: Enable the quirk SDHCI_QUIRK_WAIT_SEND_CMD (2017-05-15 
14:00:07 +0900)


Jean-Jacques Hiblot (2):
  include: config: am335x: disable DM_MMC_OPS if DM_MMC is disabled
  drivers: omap_hsmmc: move to DM_MMC_OPS

Masahiro Yamada (5):
  mmc: sdhci-cadence: import updates from Linux 4.12
  sandbox_noblk_defconfig: disable CONFIG_GENERIC_MMC
  blanche_defconfig: enable CONFIG_MMC
  mmc: replace CONFIG_GENERIC_MMC with CONFIG_MMC
  mmc: descend into drivers/mmc only when CONFIG_MMC is enabled

Philipp Tomsich (2):
  env_mmc: configure environment offsets via device tree
  doc: document u-boot, mmc-env-offset and u-boot, mmc-env-offset-redund

Wenyou Yang (2):
  mmc: sdhci: Fix maximum clock for programmable clock mode
  mmc: atmel_sdhci: Enable the quirk SDHCI_QUIRK_WAIT_SEND_CMD

 Makefile   |  1 -
 arch/arm/Kconfig   |  2 +-
 board/BuR/common/common.c  |  2 +-
 board/bosch/shc/board.c|  2 +-
 board/compulab/cl-som-am57x/cl-som-am57x.c |  4 +-
 board/compulab/cm_t35/cm_t35.c |  4 +-
 board/compulab/cm_t3517/cm_t3517.c |  2 +-
 board/compulab/cm_t54/cm_t54.c |  2 +-
 board/corscience/tricorder/tricorder.c |  4 +-
 board/gumstix/duovero/duovero.c|  2 +-
 board/hisilicon/hikey/hikey.c  |  2 +-
 board/isee/igep00x0/igep00x0.c |  4 +-
 board/logicpd/am3517evm/am3517evm.c|  2 +-
 board/logicpd/omap3som/omap3logic.c|  4 +-
 board/logicpd/zoom1/zoom1.c|  2 +-
 board/overo/overo.c|  4 +-
 board/pandora/pandora.c|  2 +-
 board/quipos/cairo/cairo.c |  2 +-
 board/samsung/arndale/arndale.c|  2 +-
 board/samsung/common/board.c   |  2 +-
 board/samsung/common/misc.c|  4 +-
 board/samsung/goni/goni.c  |  2 +-
 board/samsung/smdkv310/smdkv310.c  |  2 +-
 board/sunxi/board.c|  2 +-
 board/technexion/tao3530/tao3530.c |  4 +-
 board/ti/am3517crane/am3517crane.c |  2 +-
 board/ti/am57xx/board.c|  2 +-
 board/ti/beagle/beagle.c   |  4 +-
 board/ti/dra7xx/evm.c  |  2 +-
 board/ti/evm/evm.c |  4 +-
 board/ti/ks2_evm/board_k2g.c   |  2 +-
 board/ti/omap5_uevm/evm.c  |  2 +-
 board/ti/panda/panda.c |  2 +-
 board/ti/sdp4430/sdp.c |  2 +-
 board/ti/ti814x/evm.c  |  2 +-
 board/timll/devkit8000/devkit8000.c|  4 +-
 common/board_r.c   |  4 +-
 common/env_mmc.c   | 31 --
 common/spl/Kconfig |  4 +-
 configs/blanche_defconfig  |  3 +-
 configs/sandbox_noblk_defconfig|  1 -
 doc/device-tree-bindings/config.txt| 12 ++
 drivers/Makefile   |  1 +
 drivers/mmc/Kconfig|  5 +--
 drivers/mmc/Makefile   | 28 ++---
 drivers/mmc/atmel_sdhci.c  |  4 +-
 drivers/mmc/davinci_mmc.c  |  2 +-
 drivers/mmc/omap_hsmmc.c   | 38 ++---
 drivers/mmc/sdhci-cadence.c| 67 +-
 drivers/mmc/sdhci.c| 18 
 include/configs/am335x_evm.h   |  2 +
 include/configs/am335x_shc.h   |  1 +
 include/configs/chiliboard.h   |  1 +
 53 files changed, 211 insertions(+), 104 deletions(-)

Best Regards,
Jaehoon Chung
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


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

2017-04-14 Thread Tom Rini
On Fri, Apr 14, 2017 at 03:51:48PM +0900, Jaehoon Chung wrote:

> Dear Tom,
> 
> Could you pull these patches into u-boot/master?
> 
> The following changes since commit 40a808f173008729a0c631ab84693b6a2b0dcfc9:
> 
>   ARCv2: SLC: Make sure busy bit is set properly on SLC flushing (2017-04-11 
> 17:54:31 +0300)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mmc.git master
> 
> for you to fetch changes up to 7dde50d70787eb2faeced82d0c025762b12363ea:
> 
>   mmc: sdhci: Wait for SDHCI_INT_DATA_END when transferring. (2017-04-14 
> 15:23:14 +0900)
> 

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


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

2017-04-14 Thread Jaehoon Chung
Dear Tom,

Could you pull these patches into u-boot/master?

The following changes since commit 40a808f173008729a0c631ab84693b6a2b0dcfc9:

  ARCv2: SLC: Make sure busy bit is set properly on SLC flushing (2017-04-11 
17:54:31 +0300)

are available in the git repository at:

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

for you to fetch changes up to 7dde50d70787eb2faeced82d0c025762b12363ea:

  mmc: sdhci: Wait for SDHCI_INT_DATA_END when transferring. (2017-04-14 
15:23:14 +0900)


Alex Deymo (1):
  mmc: sdhci: Wait for SDHCI_INT_DATA_END when transferring.

Carlo Caione (1):
  mmc: meson: add MMC driver for Meson GX (S905)

Heiner Kallweit (2):
  arm: dts: update Meson GXBB / Odroid-C2 DT with recent Linux version
  odroid-c2: enable new Meson GX MMC driver in board defconfig

Jocelyn Bohr (1):
  mmc: bcm2835_sdhci: Speed up mmc writes.

Wenyou Yang (1):
  mmc: gen_atmel_mci: add driver model support for mci

 arch/arm/dts/meson-gx.dtsi| 447 +++
 arch/arm/dts/meson-gxbb-odroidc2.dts  | 147 +-
 arch/arm/dts/meson-gxbb.dtsi  | 718 ++
 arch/arm/include/asm/arch-meson/sd_emmc.h |  89 
 configs/odroid-c2_defconfig   |   5 +-
 drivers/mmc/Kconfig   |  15 +
 drivers/mmc/Makefile  |   1 +
 drivers/mmc/bcm2835_sdhci.c   |   8 +-
 drivers/mmc/gen_atmel_mci.c   | 158 ++-
 drivers/mmc/meson_gx_mmc.c| 291 
 drivers/mmc/sdhci.c   |  15 +-
 include/dt-bindings/clock/gxbb-aoclkc.h   |  66 +++
 include/dt-bindings/clock/gxbb-clkc.h |  34 ++
 include/dt-bindings/reset/gxbb-aoclkc.h   |  66 +++
 14 files changed, 1777 insertions(+), 283 deletions(-)
 create mode 100644 arch/arm/dts/meson-gx.dtsi
 create mode 100644 arch/arm/include/asm/arch-meson/sd_emmc.h
 create mode 100644 drivers/mmc/meson_gx_mmc.c
 create mode 100644 include/dt-bindings/clock/gxbb-aoclkc.h
 create mode 100644 include/dt-bindings/clock/gxbb-clkc.h
 create mode 100644 include/dt-bindings/reset/gxbb-aoclkc.h

Best Regards,
Jaehoon Chung
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


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

2017-04-04 Thread Tom Rini
On Thu, Mar 30, 2017 at 02:21:39PM +0900, Jaehoon Chung wrote:

> Dear Tom,
> 
> Could pull these patches into u-boot/master?
> 
> The following changes since commit 5cf618ee60a752d058a767372ca1ecb8d9c09b16:
> 
>   Merge git://git.denx.de/u-boot-arc (2017-03-24 08:19:30 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mmc.git master
> 
> for you to fetch changes up to 17c9a1c121e7d78d820fdb4f7ca070f53e23c29a:
> 
>   mmc: omap_hsmmc: add support for CONFIG_BLK (2017-03-30 14:19:58 +0900)
> 

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


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

2017-03-29 Thread Jaehoon Chung
Dear Tom,

Could pull these patches into u-boot/master?

The following changes since commit 5cf618ee60a752d058a767372ca1ecb8d9c09b16:

  Merge git://git.denx.de/u-boot-arc (2017-03-24 08:19:30 -0400)

are available in the git repository at:

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

for you to fetch changes up to 17c9a1c121e7d78d820fdb4f7ca070f53e23c29a:

  mmc: omap_hsmmc: add support for CONFIG_BLK (2017-03-30 14:19:58 +0900)


Jean-Jacques Hiblot (4):
  mmc: omap_hsmmc: use an accessor to get the private data
  mmc: omap_hsmmc: use mmc_get_blk_desc() to get the block device desc
  mmc: omap_hsmmc: move the mmc_config to platdata when DM_MMC is used
  mmc: omap_hsmmc: add support for CONFIG_BLK

 drivers/mmc/omap_hsmmc.c | 100 ++-
 1 file changed, 73 insertions(+), 27 deletions(-)

Best Regards,
Jaehoon Chung
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


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

2017-03-21 Thread Tom Rini
On Tue, Mar 21, 2017 at 09:11:00PM +0900, Jaehoon Chung wrote:

> Dear Tom,
> 
> Could you pull these patches into your master branch?
> 
> The following changes since commit d5abcf94c7123167725fc22ace342f0d455093c1:
> 
>   ti: boot: Register the MMC controllers in SPL in the same way as in u-boot 
> (2017-03-19 22:17:14 -0400)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mmc.git master
> 
> for you to fetch changes up to de0359c21e7993f7cf39156932fb73d171b2450a:
> 
>   mmc: xenon_sdhci: Add missing host->max_clk to Xenon SDHCI driver 
> (2017-03-21 21:06:59 +0900)
> 

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


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

2017-03-21 Thread Jaehoon Chung
Dear Tom,

Could you pull these patches into your master branch?

The following changes since commit d5abcf94c7123167725fc22ace342f0d455093c1:

  ti: boot: Register the MMC controllers in SPL in the same way as in u-boot 
(2017-03-19 22:17:14 -0400)

are available in the git repository at:

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

for you to fetch changes up to de0359c21e7993f7cf39156932fb73d171b2450a:

  mmc: xenon_sdhci: Add missing host->max_clk to Xenon SDHCI driver (2017-03-21 
21:06:59 +0900)


Felipe Balbi (2):
  mmc: pci: Add CONFIG_MMC_PCI
  mmc: tangier: Add Intel Tangier eMMC/SDHCI driver

Kevin Liu (1):
  mmc: sdhci: only flush cache for data command

Stefan Roese (1):
  mmc: xenon_sdhci: Add missing host->max_clk to Xenon SDHCI driver

Xu Ziyuan (1):
  mmc: drop unnecessary send_status request

 configs/bayleybay_defconfig|  1 +
 ...conga-qeval20-qa3-e3845-internal-uart_defconfig |  1 +
 configs/conga-qeval20-qa3-e3845_defconfig  |  1 +
 configs/crownbay_defconfig |  1 +
 configs/dfi-bt700-q7x-151_defconfig|  1 +
 configs/galileo_defconfig  |  1 +
 configs/minnowmax_defconfig|  1 +
 configs/theadorable-x86-dfi-bt700_defconfig|  1 +
 drivers/mmc/Kconfig| 22 ++
 drivers/mmc/Makefile   |  3 +-
 drivers/mmc/mmc.c  |  4 --
 drivers/mmc/sdhci.c|  6 +-
 drivers/mmc/tangier_sdhci.c| 81 ++
 drivers/mmc/xenon_sdhci.c  |  3 +-
 14 files changed, 119 insertions(+), 8 deletions(-)
 create mode 100644 drivers/mmc/tangier_sdhci.c

Best Regards,
Jaehoon Chung
___
U-Boot mailing list
U-Boot@lists.denx.de
https://lists.denx.de/listinfo/u-boot


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

2017-02-09 Thread Tom Rini
On Thu, Feb 09, 2017 at 08:50:16PM +0900, Jaehoon Chung wrote:

> Dear Tom,
> 
> Could you pull these patches on your master branch?
> These patch are related to pmic and mmc. (Tested buildman.)
> 
> If you are ok, i will send the split PR at next time.
> (One is u-boot-mmc master, other is u-boot-mmc pmic)
> What do you think about? Plz let me know.
> 
> The following changes since commit 21342d4aed6c77a4aa7a5b2579b3c23e21aea31a:
> 
>   Merge git://git.denx.de/u-boot-dm (2017-02-08 16:24:44 -0500)
> 
> are available in the git repository at:
> 
>   git://git.denx.de/u-boot-mmc.git master
> 
> for you to fetch changes up to a0269bb6e891c6c3b984a2f3d6a12c07e244484a:
> 
>   mmc: init mmc block devices on probe (2017-02-09 20:37:06 +0900)
> 

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


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

2017-02-09 Thread Jaehoon Chung
Dear Tom,

Could you pull these patches on your master branch?
These patch are related to pmic and mmc. (Tested buildman.)

If you are ok, i will send the split PR at next time.
(One is u-boot-mmc master, other is u-boot-mmc pmic)
What do you think about? Plz let me know.

The following changes since commit 21342d4aed6c77a4aa7a5b2579b3c23e21aea31a:

  Merge git://git.denx.de/u-boot-dm (2017-02-08 16:24:44 -0500)

are available in the git repository at:

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

for you to fetch changes up to a0269bb6e891c6c3b984a2f3d6a12c07e244484a:

  mmc: init mmc block devices on probe (2017-02-09 20:37:06 +0900)


Adam Ford (1):
  drivers: mmc: omap_hsmmc: Fix IO Buffer on OMAP36xx

Fiach Antaw (1):
  mmc: init mmc block devices on probe

Jaehoon Chung (4):
  power: pmic: add the max8997 controller for DM
  arm: dts: trats: add the pmic node for using DM
  mmc: mmc-uclass: use the fixed devnum with alias node
  mmc: ftsdc021_sdhci: remove the ftsdc021_sdhci.c

 arch/arm/dts/exynos4210-trats.dts | 150 --
 configs/omap3_logic_defconfig |   1 +
 drivers/mmc/Kconfig   |  12 +++
 drivers/mmc/Makefile  |   1 -
 drivers/mmc/ftsdc021_sdhci.c  |  34 -
 drivers/mmc/mmc-uclass.c  |  25 ++-
 drivers/mmc/omap_hsmmc.c  |  18 +
 drivers/power/pmic/Kconfig|  15 
 drivers/power/pmic/Makefile   |   1 +
 drivers/power/pmic/max8997.c  |  61 
 drivers/power/pmic/max8998.c  |   2 +-
 11 files changed, 273 insertions(+), 47 deletions(-)
 delete mode 100644 drivers/mmc/ftsdc021_sdhci.c
 create mode 100644 drivers/power/pmic/max8997.c

Best Regards,
Jaehoon Chung
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


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

2017-02-01 Thread Tom Rini
On Wed, Feb 01, 2017 at 08:24:40AM +0900, Jaehoon Chung wrote:

> Dear Tom,
> 
> Could you pull these patches on your master branch?
> I have tested a buildman with all case.
> 
> The following changes since commit 794c6e2c96c20f8fc62890a5e13cc71ab99a2e57:
> 
>   Prepare v2017.03-rc1 (2017-01-30 19:05:43 -0500)
> 
> are available in the git repository at:
> 
>   http://git.denx.de/u-boot-mmc.git master
> 
> for you to fetch changes up to dd3b64eb56dae10016bd314e59a650da511c1a4e:
> 
>   mmc: atmel: rename CONFIG_ATMEL_SDHCI to CONFIG_MMC_SDHCI_ATMEL (2017-01-31 
> 21:50:47 +0900)
> 

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


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

2017-01-31 Thread Jaehoon Chung
Dear Tom,

Could you pull these patches on your master branch?
I have tested a buildman with all case.

The following changes since commit 794c6e2c96c20f8fc62890a5e13cc71ab99a2e57:

  Prepare v2017.03-rc1 (2017-01-30 19:05:43 -0500)

are available in the git repository at:

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

for you to fetch changes up to dd3b64eb56dae10016bd314e59a650da511c1a4e:

  mmc: atmel: rename CONFIG_ATMEL_SDHCI to CONFIG_MMC_SDHCI_ATMEL (2017-01-31 
21:50:47 +0900)


Masahiro Yamada (7):
  mmc: move CONFIG_GENERIC_MMC to Kconfig
  mmc: sandbox: rename CONFIG, fix dependency, and use it in Makefile
  mmc: zynq: rename CONFIG_ZYNQ_SDHCI to CONFIG_MMC_SDHCI_ZYNQ
  mmc: rockchip: rename CONFIG_ROCKCHIP_SDHCI to CONFIG_MMC_SDHCI_ROCKCHIP
  mmc: msm: rename CONFIG_MSM_SDHCI to CONFIG_MMC_SDHCI_MSM
  mmc: pic32: rename CONFIG_PIC32_SDHCI to CONFIG_MMC_SDHCI_PIC32
  mmc: atmel: rename CONFIG_ATMEL_SDHCI to CONFIG_MMC_SDHCI_ATMEL

 README   |  3 -
 arch/arm/mach-zynq/Kconfig   |  2 +-
 configs/blanche_defconfig|  3 +-
 configs/dragonboard410c_defconfig|  2 +-
 configs/evb-rk3399_defconfig |  2 +-
 configs/pic32mzdask_defconfig|  2 +-
 configs/sama5d2_xplained_mmc_defconfig   |  2 +-
 configs/sama5d2_xplained_spiflash_defconfig  |  2 +-
 configs/sandbox_defconfig|  2 +-
 configs/sandbox_noblk_defconfig  |  1 +
 configs/sandbox_spl_defconfig|  2 +-
 configs/topic_miami_defconfig|  2 +-
 configs/topic_miamiplus_defconfig|  2 +-
 configs/xilinx_zynqmp_ep_defconfig   |  2 +-
 configs/xilinx_zynqmp_zc1751_xm015_dc1_defconfig |  2 +-
 configs/xilinx_zynqmp_zc1751_xm018_dc4_defconfig |  2 +-
 configs/xilinx_zynqmp_zc1751_xm019_dc5_defconfig |  2 +-
 configs/xilinx_zynqmp_zcu102_defconfig   |  2 +-
 configs/xilinx_zynqmp_zcu102_revB_defconfig  |  2 +-
 configs/zynq_microzed_defconfig  |  2 +-
 configs/zynq_picozed_defconfig   |  2 +-
 configs/zynq_zc702_defconfig |  2 +-
 configs/zynq_zc706_defconfig |  2 +-
 configs/zynq_zc770_xm010_defconfig   |  2 +-
 configs/zynq_zed_defconfig   |  2 +-
 configs/zynq_zybo_defconfig  |  2 +-
 doc/README.atmel_mci |  2 -
 doc/README.socfpga   |  3 -
 drivers/mmc/Kconfig  | 96 +---
 drivers/mmc/Makefile | 16 ++--
 include/configs/BSC9132QDS.h |  1 -
 include/configs/MPC8308RDB.h |  2 -
 include/configs/MPC837XEMDS.h|  1 -
 include/configs/MPC837XERDB.h|  1 -
 include/configs/MPC8536DS.h  |  1 -
 include/configs/MPC8569MDS.h |  1 -
 include/configs/P1010RDB.h   |  1 -
 include/configs/P1022DS.h|  1 -
 include/configs/P2041RDB.h   |  1 -
 include/configs/T102xQDS.h   |  1 -
 include/configs/T102xRDB.h   |  1 -
 include/configs/T1040QDS.h   |  1 -
 include/configs/T104xRDB.h   |  1 -
 include/configs/T208xQDS.h   |  1 -
 include/configs/T208xRDB.h   |  1 -
 include/configs/T4240QDS.h   |  1 -
 include/configs/T4240RDB.h   |  1 -
 include/configs/UCP1020.h|  1 -
 include/configs/adp-ag101p.h |  1 -
 include/configs/advantech_dms-ba16.h |  1 -
 include/configs/alt.h|  2 -
 include/configs/am3517_crane.h   |  1 -
 include/configs/am3517_evm.h |  3 -
 include/configs/apalis_imx6.h|  1 -
 include/configs/apalis_t30.h |  3 -
 include/configs/apf27.h  |  1 -
 include/configs/at91sam9260ek.h  |  1 -
 include/configs/at91sam9263ek.h  |  1 -
 include/configs/at91sam9m10g45ek.h   |  1 -
 include/configs/at91sam9n12ek.h  |  1 -
 include/configs/at91sam9rlek.h   |  1 -
 include/configs/at91sam9x5ek.h   |  1 -
 include/configs/atngw100.h   |  1 -
 include/configs/atngw100mkii.h   |  1 -
 include/configs/atstk1002.h  |  1 -
 include/configs/axs10x.h |  5 --
 include/configs/bayleybay.h  |  2 -
 include/configs/bcm23550_w1d.h   |  2 -
 

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

2017-01-24 Thread Tom Rini
On Tue, Jan 24, 2017 at 06:37:35PM +0900, Jaehoon Chung wrote:

> Dear Tom,
> 
> Could you pull these patches on your master branch?
> 
> The following changes since commit 0c9e85f67cd86d2d7a3424ea3ebff0e6db7a3915:
> 
>   Merge branch 'master' of git://git.denx.de/u-boot-uniphier (2017-01-22 
> 17:07:48 -0500)
> 
> are available in the git repository at:
> 
>   http://git.denx.de/u-boot-mmc.git master
> 
> for you to fetch changes up to 919b485834a746cf839ccded41e456d17d57a31f:
> 
>   mmc: Print error code for mmc_complete_init failure (2017-01-23 15:37:42 
> +0900)
> 

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


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

2017-01-24 Thread Jaehoon Chung
Dear Tom,

Could you pull these patches on your master branch?

The following changes since commit 0c9e85f67cd86d2d7a3424ea3ebff0e6db7a3915:

  Merge branch 'master' of git://git.denx.de/u-boot-uniphier (2017-01-22 
17:07:48 -0500)

are available in the git repository at:

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

for you to fetch changes up to 919b485834a746cf839ccded41e456d17d57a31f:

  mmc: Print error code for mmc_complete_init failure (2017-01-23 15:37:42 
+0900)


Jagan Teki (1):
  mmc: Print error code for mmc_complete_init failure

Stefan Herbrechtsmeier (1):
  mmc: sdhci: Distinguish between base clock and maximum peripheral 
frequency

 drivers/mmc/atmel_sdhci.c|  7 +--
 drivers/mmc/bcm2835_sdhci.c  |  3 ++-
 drivers/mmc/ftsdc021_sdhci.c |  3 ++-
 drivers/mmc/kona_sdhci.c |  3 ++-
 drivers/mmc/mmc.c|  4 +++-
 drivers/mmc/msm_sdhci.c  |  2 ++
 drivers/mmc/mv_sdhci.c   |  3 ++-
 drivers/mmc/pci_mmc.c|  1 +
 drivers/mmc/pic32_sdhci.c|  4 +++-
 drivers/mmc/rockchip_sdhci.c |  4 ++--
 drivers/mmc/s5p_sdhci.c  |  5 +++--
 drivers/mmc/sdhci.c  | 34 ++
 drivers/mmc/zynq_sdhci.c |  4 +++-
 include/sdhci.h  | 13 +++--
 14 files changed, 55 insertions(+), 35 deletions(-)

Best Regards,
Jaehoon Chung
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [GIT PULL] Please pull u-boot-mmc master for fixing

2017-01-13 Thread Tom Rini
On Fri, Jan 13, 2017 at 12:23:13PM +0900, Jaehoon Chung wrote:

> Dear Tom,
> 
> Here is the fixing patches.
> Could you pull these patches on u-boot/master?
> 
> The following changes since commit 4386feb73da7946fc79b55c4fa41c6dd66dcb2e2:
> 
>   SPL: Adjust more debug prints for ulong entry_point (2017-01-11 10:45:48 
> -0500)
> 
> are available in the git repository at:
> 
>   http://git.denx.de/u-boot-mmc.git master
> 
> for you to fetch changes up to 0ad178c18af3ed7f5752005a42283c4f95fcd4e3:
> 
>   mmc: sunxi: revive depends on UART0_PORT_F (2017-01-13 12:18:52 +0900)
> 

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: Digital signature
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


  1   2   >