mbox series

[U-Boot,v2,0/7] Add support of SD3.0 UHS modes for ZynqMP

Message ID 1515058844-16007-1-git-send-email-sivadur@xilinx.com
Headers show
Series Add support of SD3.0 UHS modes for ZynqMP | expand

Message

Siva Durga Prasad Paladugu Jan. 4, 2018, 9:40 a.m. UTC
This patch series is meant to add SD3.0 support for ZynqMP
platform.
The first five patches in the series mostly setting up
things in sdhci layer to support SD3.0 , the sixth patch
is to add SD3.0 support for ZynqMP platform and the last
patch is to enable this support for ZynqMP zcu102 rev1.0
eval board.

Repo: u-boot-mmc.git
Branch: hs200-working

Siva Durga Prasad Paladugu (7):
  mmc: sdhci: Add support for disabling clock
  mmc: sdhci: Handle execute tuning command in sdhci_send_command
  sdhci: Add new sdhci ops for platform specific tuning and delays
  mmc: sdhci: Invoke platform specific tuning and delay routines
  mmc : sdhci: Read capabilities register1 and update host caps
  mmc: zynq_sdhci: Add support for SD3.0
  zynqmp: zcu102: Enable UHS support for ZCU102 Rev1.0 board

 board/xilinx/zynqmp/Makefile                  |   2 +
 board/xilinx/zynqmp/tap_delays.c              | 230 ++++++++++++++++++++++++++
 configs/xilinx_zynqmp_zcu102_rev1_0_defconfig |   2 +
 drivers/mmc/sdhci.c                           |  67 +++++++-
 drivers/mmc/zynq_sdhci.c                      | 230 +++++++++++++++++++++++++-
 include/sdhci.h                               |   9 +
 include/zynqmp_tap_delay.h                    |  20 +++
 7 files changed, 550 insertions(+), 10 deletions(-)
 create mode 100644 board/xilinx/zynqmp/tap_delays.c
 create mode 100644 include/zynqmp_tap_delay.h

Comments

Siva Durga Prasad Paladugu Jan. 16, 2018, 10:10 a.m. UTC | #1
Hi Jaehoon,

Any review comments on this.

Thanks,
Siva

> -----Original Message-----
> From: Siva Durga Prasad Paladugu [mailto:siva.durga.paladugu@xilinx.com]
> Sent: Thursday, January 04, 2018 3:11 PM
> To: u-boot@lists.denx.de
> Cc: jh80.chung@samsung.com; Siva Durga Prasad Paladugu
> <sivadur@xilinx.com>
> Subject: [PATCH v2 0/7] Add support of SD3.0 UHS modes for ZynqMP
> 
> This patch series is meant to add SD3.0 support for ZynqMP platform.
> The first five patches in the series mostly setting up things in sdhci layer to
> support SD3.0 , the sixth patch is to add SD3.0 support for ZynqMP
> platform and the last patch is to enable this support for ZynqMP zcu102
> rev1.0 eval board.
> 
> Repo: u-boot-mmc.git
> Branch: hs200-working
> 
> Siva Durga Prasad Paladugu (7):
>   mmc: sdhci: Add support for disabling clock
>   mmc: sdhci: Handle execute tuning command in sdhci_send_command
>   sdhci: Add new sdhci ops for platform specific tuning and delays
>   mmc: sdhci: Invoke platform specific tuning and delay routines
>   mmc : sdhci: Read capabilities register1 and update host caps
>   mmc: zynq_sdhci: Add support for SD3.0
>   zynqmp: zcu102: Enable UHS support for ZCU102 Rev1.0 board
> 
>  board/xilinx/zynqmp/Makefile                  |   2 +
>  board/xilinx/zynqmp/tap_delays.c              | 230
> ++++++++++++++++++++++++++
>  configs/xilinx_zynqmp_zcu102_rev1_0_defconfig |   2 +
>  drivers/mmc/sdhci.c                           |  67 +++++++-
>  drivers/mmc/zynq_sdhci.c                      | 230
> +++++++++++++++++++++++++-
>  include/sdhci.h                               |   9 +
>  include/zynqmp_tap_delay.h                    |  20 +++
>  7 files changed, 550 insertions(+), 10 deletions(-)  create mode 100644
> board/xilinx/zynqmp/tap_delays.c  create mode 100644
> include/zynqmp_tap_delay.h
> 
> --
> 2.7.4
Jaehoon Chung Jan. 17, 2018, 2:33 a.m. UTC | #2
Hi Siva,

On 01/16/2018 07:10 PM, Siva Durga Prasad Paladugu wrote:
> Hi Jaehoon,
> 
> Any review comments on this.

Thanks for reminding. Will check! :)

Best Regards,
Jaehoon Chung
> 
> Thanks,
> Siva
> 
>> -----Original Message-----
>> From: Siva Durga Prasad Paladugu [mailto:siva.durga.paladugu@xilinx.com]
>> Sent: Thursday, January 04, 2018 3:11 PM
>> To: u-boot@lists.denx.de
>> Cc: jh80.chung@samsung.com; Siva Durga Prasad Paladugu
>> <sivadur@xilinx.com>
>> Subject: [PATCH v2 0/7] Add support of SD3.0 UHS modes for ZynqMP
>>
>> This patch series is meant to add SD3.0 support for ZynqMP platform.
>> The first five patches in the series mostly setting up things in sdhci layer to
>> support SD3.0 , the sixth patch is to add SD3.0 support for ZynqMP
>> platform and the last patch is to enable this support for ZynqMP zcu102
>> rev1.0 eval board.
>>
>> Repo: u-boot-mmc.git
>> Branch: hs200-working
>>
>> Siva Durga Prasad Paladugu (7):
>>   mmc: sdhci: Add support for disabling clock
>>   mmc: sdhci: Handle execute tuning command in sdhci_send_command
>>   sdhci: Add new sdhci ops for platform specific tuning and delays
>>   mmc: sdhci: Invoke platform specific tuning and delay routines
>>   mmc : sdhci: Read capabilities register1 and update host caps
>>   mmc: zynq_sdhci: Add support for SD3.0
>>   zynqmp: zcu102: Enable UHS support for ZCU102 Rev1.0 board
>>
>>  board/xilinx/zynqmp/Makefile                  |   2 +
>>  board/xilinx/zynqmp/tap_delays.c              | 230
>> ++++++++++++++++++++++++++
>>  configs/xilinx_zynqmp_zcu102_rev1_0_defconfig |   2 +
>>  drivers/mmc/sdhci.c                           |  67 +++++++-
>>  drivers/mmc/zynq_sdhci.c                      | 230
>> +++++++++++++++++++++++++-
>>  include/sdhci.h                               |   9 +
>>  include/zynqmp_tap_delay.h                    |  20 +++
>>  7 files changed, 550 insertions(+), 10 deletions(-)  create mode 100644
>> board/xilinx/zynqmp/tap_delays.c  create mode 100644
>> include/zynqmp_tap_delay.h
>>
>> --
>> 2.7.4
> 
> 
> 
>
Siva Durga Prasad Paladugu April 10, 2018, 6:31 a.m. UTC | #3
Hi Jaehoon,

I would like to send v3 for this series, Any specific branch that you want me to rebase the series?

Thanks,
DP

> -----Original Message-----
> From: Jaehoon Chung [mailto:jh80.chung@samsung.com]
> Sent: Wednesday, January 17, 2018 8:04 AM
> To: Siva Durga Prasad Paladugu <sivadur@xilinx.com>; u-
> boot@lists.denx.de
> Subject: Re: [PATCH v2 0/7] Add support of SD3.0 UHS modes for ZynqMP
> 
> Hi Siva,
> 
> On 01/16/2018 07:10 PM, Siva Durga Prasad Paladugu wrote:
> > Hi Jaehoon,
> >
> > Any review comments on this.
> 
> Thanks for reminding. Will check! :)
> 
> Best Regards,
> Jaehoon Chung
> >
> > Thanks,
> > Siva
> >
> >> -----Original Message-----
> >> From: Siva Durga Prasad Paladugu
> >> [mailto:siva.durga.paladugu@xilinx.com]
> >> Sent: Thursday, January 04, 2018 3:11 PM
> >> To: u-boot@lists.denx.de
> >> Cc: jh80.chung@samsung.com; Siva Durga Prasad Paladugu
> >> <sivadur@xilinx.com>
> >> Subject: [PATCH v2 0/7] Add support of SD3.0 UHS modes for ZynqMP
> >>
> >> This patch series is meant to add SD3.0 support for ZynqMP platform.
> >> The first five patches in the series mostly setting up things in
> >> sdhci layer to support SD3.0 , the sixth patch is to add SD3.0
> >> support for ZynqMP platform and the last patch is to enable this
> >> support for ZynqMP zcu102
> >> rev1.0 eval board.
> >>
> >> Repo: u-boot-mmc.git
> >> Branch: hs200-working
> >>
> >> Siva Durga Prasad Paladugu (7):
> >>   mmc: sdhci: Add support for disabling clock
> >>   mmc: sdhci: Handle execute tuning command in sdhci_send_command
> >>   sdhci: Add new sdhci ops for platform specific tuning and delays
> >>   mmc: sdhci: Invoke platform specific tuning and delay routines
> >>   mmc : sdhci: Read capabilities register1 and update host caps
> >>   mmc: zynq_sdhci: Add support for SD3.0
> >>   zynqmp: zcu102: Enable UHS support for ZCU102 Rev1.0 board
> >>
> >>  board/xilinx/zynqmp/Makefile                  |   2 +
> >>  board/xilinx/zynqmp/tap_delays.c              | 230
> >> ++++++++++++++++++++++++++
> >>  configs/xilinx_zynqmp_zcu102_rev1_0_defconfig |   2 +
> >>  drivers/mmc/sdhci.c                           |  67 +++++++-
> >>  drivers/mmc/zynq_sdhci.c                      | 230
> >> +++++++++++++++++++++++++-
> >>  include/sdhci.h                               |   9 +
> >>  include/zynqmp_tap_delay.h                    |  20 +++
> >>  7 files changed, 550 insertions(+), 10 deletions(-)  create mode
> >> 100644 board/xilinx/zynqmp/tap_delays.c  create mode 100644
> >> include/zynqmp_tap_delay.h
> >>
> >> --
> >> 2.7.4
> >
> >
> >
> >
Siva Durga Prasad Paladugu April 12, 2018, 11:20 a.m. UTC | #4
Hi Jaehoon,

Ping!

Thanks,
Siva

> -----Original Message-----
> From: Siva Durga Prasad Paladugu
> Sent: Tuesday, April 10, 2018 12:02 PM
> To: Jaehoon Chung <jh80.chung@samsung.com>; u-boot@lists.denx.de
> Subject: RE: [PATCH v2 0/7] Add support of SD3.0 UHS modes for ZynqMP
> 
> Hi Jaehoon,
> 
> I would like to send v3 for this series, Any specific branch that you want me
> to rebase the series?
> 
> Thanks,
> DP
> 
> > -----Original Message-----
> > From: Jaehoon Chung [mailto:jh80.chung@samsung.com]
> > Sent: Wednesday, January 17, 2018 8:04 AM
> > To: Siva Durga Prasad Paladugu <sivadur@xilinx.com>; u-
> > boot@lists.denx.de
> > Subject: Re: [PATCH v2 0/7] Add support of SD3.0 UHS modes for
> ZynqMP
> >
> > Hi Siva,
> >
> > On 01/16/2018 07:10 PM, Siva Durga Prasad Paladugu wrote:
> > > Hi Jaehoon,
> > >
> > > Any review comments on this.
> >
> > Thanks for reminding. Will check! :)
> >
> > Best Regards,
> > Jaehoon Chung
> > >
> > > Thanks,
> > > Siva
> > >
> > >> -----Original Message-----
> > >> From: Siva Durga Prasad Paladugu
> > >> [mailto:siva.durga.paladugu@xilinx.com]
> > >> Sent: Thursday, January 04, 2018 3:11 PM
> > >> To: u-boot@lists.denx.de
> > >> Cc: jh80.chung@samsung.com; Siva Durga Prasad Paladugu
> > >> <sivadur@xilinx.com>
> > >> Subject: [PATCH v2 0/7] Add support of SD3.0 UHS modes for ZynqMP
> > >>
> > >> This patch series is meant to add SD3.0 support for ZynqMP platform.
> > >> The first five patches in the series mostly setting up things in
> > >> sdhci layer to support SD3.0 , the sixth patch is to add SD3.0
> > >> support for ZynqMP platform and the last patch is to enable this
> > >> support for ZynqMP zcu102
> > >> rev1.0 eval board.
> > >>
> > >> Repo: u-boot-mmc.git
> > >> Branch: hs200-working
> > >>
> > >> Siva Durga Prasad Paladugu (7):
> > >>   mmc: sdhci: Add support for disabling clock
> > >>   mmc: sdhci: Handle execute tuning command in
> sdhci_send_command
> > >>   sdhci: Add new sdhci ops for platform specific tuning and delays
> > >>   mmc: sdhci: Invoke platform specific tuning and delay routines
> > >>   mmc : sdhci: Read capabilities register1 and update host caps
> > >>   mmc: zynq_sdhci: Add support for SD3.0
> > >>   zynqmp: zcu102: Enable UHS support for ZCU102 Rev1.0 board
> > >>
> > >>  board/xilinx/zynqmp/Makefile                  |   2 +
> > >>  board/xilinx/zynqmp/tap_delays.c              | 230
> > >> ++++++++++++++++++++++++++
> > >>  configs/xilinx_zynqmp_zcu102_rev1_0_defconfig |   2 +
> > >>  drivers/mmc/sdhci.c                           |  67 +++++++-
> > >>  drivers/mmc/zynq_sdhci.c                      | 230
> > >> +++++++++++++++++++++++++-
> > >>  include/sdhci.h                               |   9 +
> > >>  include/zynqmp_tap_delay.h                    |  20 +++
> > >>  7 files changed, 550 insertions(+), 10 deletions(-)  create mode
> > >> 100644 board/xilinx/zynqmp/tap_delays.c  create mode 100644
> > >> include/zynqmp_tap_delay.h
> > >>
> > >> --
> > >> 2.7.4
> > >
> > >
> > >
> > >