mbox series

[U-Boot] ARC changes for 2019.07

Message ID CY4PR1201MB0120EE9743C3F318407701CEA1260@CY4PR1201MB0120.namprd12.prod.outlook.com
State Accepted
Delegated to: Tom Rini
Headers show
Series [U-Boot] ARC changes for 2019.07 | expand

Pull-request

git://git.denx.de/u-boot-arc.git tags/arc-for-2019.07

Message

Alexey Brodkin April 18, 2019, 4:04 p.m. UTC
Hi Tom,

The following changes since commit 75ce8c938d39bd22460be66e6bf318bd2410c17b:

  Merge tag 'u-boot-imx-20190415' of git://git.denx.de/u-boot-imx (2019-04-15 07:31:14 -0400)

are available in the Git repository at:

  git://git.denx.de/u-boot-arc.git tags/arc-for-2019.07

for you to fetch changes up to cc2f7b6c7d7d5adeedecdb6c0599998b2e40b3f4:

  ARC: [plat-axs10x]: migrate to DM_MMC (2019-04-18 09:12:38 +0300)

----------------------------------------------------------------
In this small series we migrate ARC boards to DM_MMC
so we're hopefully are good now and our boards will be kept
in U-Boot for some more time :)

----------------------------------------------------------------
Eugeniy Paltsev (3):
      ARC: dwmmc: Adding DesignWare MMC driver support for ARC devboards
      ARC: [plat-hsdk]: migrate to DM_MMC
      ARC: [plat-axs10x]: migrate to DM_MMC

 MAINTAINERS                                  |   7 ++++++
 arch/arc/dts/axs10x_mb.dtsi                  |  28 +++++++++++++++++++++++
 arch/arc/dts/hsdk.dts                        |  26 +++++++++++++++++++++
 board/synopsys/axs10x/axs10x.c               |  29 -----------------------
 board/synopsys/hsdk/hsdk.c                   |  41 +++++----------------------------
 configs/axs103_defconfig                     |   2 ++
 configs/hsdk_defconfig                       |   2 ++
 doc/device-tree-bindings/mmc/snps,dw-mmc.txt |  33 +++++++++++++++++++++++++++
 drivers/mmc/Kconfig                          |  10 ++++++++
 drivers/mmc/Makefile                         |   1 +
 drivers/mmc/snps_dw_mmc.c                    | 199 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 11 files changed, 314 insertions(+), 64 deletions(-)
 create mode 100644 doc/device-tree-bindings/mmc/snps,dw-mmc.txt
 create mode 100644 drivers/mmc/snps_dw_mmc.c

Regards,
Alexey

Comments

Tom Rini April 18, 2019, 4:20 p.m. UTC | #1
On Thu, Apr 18, 2019 at 04:04:27PM +0000, Alexey Brodkin wrote:

> Hi Tom,
> 
> The following changes since commit 75ce8c938d39bd22460be66e6bf318bd2410c17b:
> 
>   Merge tag 'u-boot-imx-20190415' of git://git.denx.de/u-boot-imx (2019-04-15 07:31:14 -0400)
> 
> are available in the Git repository at:
> 
>   git://git.denx.de/u-boot-arc.git tags/arc-for-2019.07
> 
> for you to fetch changes up to cc2f7b6c7d7d5adeedecdb6c0599998b2e40b3f4:
> 
>   ARC: [plat-axs10x]: migrate to DM_MMC (2019-04-18 09:12:38 +0300)
> 

Note that iot_devkit, emsdp and axs101 aren't enabling DM_MMC yet.
Also, I see a whole lot of the warning about using CONFIG_OF_EMBED and
not CONFIG_OF_SEPARATE.  Are you looking into migrating that away or
convincing Simon that no, this is when we really do need/want OF_EMBED?

Applied to u-boot/master, thanks!
Alexey Brodkin April 18, 2019, 4:29 p.m. UTC | #2
Hi Tom,

> -----Original Message-----
> From: Tom Rini <trini@konsulko.com>
> Sent: Thursday, April 18, 2019 7:21 PM
> To: Alexey Brodkin <abrodkin@synopsys.com>
> Cc: uboot-snps-arc@synopsys.com; u-boot@lists.denx.de
> Subject: Re: [uboot-snps-arc] [U-Boot] ARC changes for 2019.07
> 
> On Thu, Apr 18, 2019 at 04:04:27PM +0000, Alexey Brodkin wrote:
> 
> > Hi Tom,
> >
> > The following changes since commit 75ce8c938d39bd22460be66e6bf318bd2410c17b:
> >
> >   Merge tag 'u-boot-imx-20190415' of git://git.denx.de/u-boot-imx (2019-04-15 07:31:14 -0400)
> >
> > are available in the Git repository at:
> >
> >   git://git.denx.de/u-boot-arc.git tags/arc-for-2019.07
> >
> > for you to fetch changes up to cc2f7b6c7d7d5adeedecdb6c0599998b2e40b3f4:
> >
> >   ARC: [plat-axs10x]: migrate to DM_MMC (2019-04-18 09:12:38 +0300)
> >
> 
> Note that iot_devkit, emsdp and axs101 aren't enabling DM_MMC yet.

Oops right. Since I run full build in Travis I missed that part sice
Travis job didn't flag anything, see
https://travis-ci.org/abrodkin/u-boot/builds/521638433

Sure we'll be doing that soonish!

> Also, I see a whole lot of the warning about using CONFIG_OF_EMBED and
> not CONFIG_OF_SEPARATE.  Are you looking into migrating that away or
> convincing Simon that no, this is when we really do need/want OF_EMBED?

Hm... that's an interesting one. I think we'll switch to CONFIG_OF_SEPARATE,
thanks for the reminder though!

-Alexey