* [U-Boot] ARC changes for 2019.07
@ 2019-04-18 16:04 Alexey Brodkin
2019-04-18 16:20 ` Tom Rini
0 siblings, 1 reply; 3+ messages in thread
From: Alexey Brodkin @ 2019-04-18 16:04 UTC (permalink / raw)
To: u-boot
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
^ permalink raw reply [flat|nested] 3+ messages in thread* [U-Boot] ARC changes for 2019.07
2019-04-18 16:04 [U-Boot] ARC changes for 2019.07 Alexey Brodkin
@ 2019-04-18 16:20 ` Tom Rini
2019-04-18 16:29 ` [U-Boot] [uboot-snps-arc] " Alexey Brodkin
0 siblings, 1 reply; 3+ messages in thread
From: Tom Rini @ 2019-04-18 16:20 UTC (permalink / raw)
To: u-boot
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!
--
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: not available
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20190418/47b07fc2/attachment.sig>
^ permalink raw reply [flat|nested] 3+ messages in thread
* [U-Boot] [uboot-snps-arc] ARC changes for 2019.07
2019-04-18 16:20 ` Tom Rini
@ 2019-04-18 16:29 ` Alexey Brodkin
0 siblings, 0 replies; 3+ messages in thread
From: Alexey Brodkin @ 2019-04-18 16:29 UTC (permalink / raw)
To: u-boot
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 at synopsys.com; u-boot at 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
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2019-04-18 16:29 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-04-18 16:04 [U-Boot] ARC changes for 2019.07 Alexey Brodkin
2019-04-18 16:20 ` Tom Rini
2019-04-18 16:29 ` [U-Boot] [uboot-snps-arc] " Alexey Brodkin
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox