
Hi Tom,
This pull-request overrides the one sent last Friday: https://lists.denx.de/pipermail/u-boot/2018-October/344211.html as well as its duplicate sent for some reason today: https://lists.denx.de/pipermail/u-boot/2018-October/344435.html
The following changes since commit 3d5ced9e22d32112a20f9dc0f5fb1f22ef088079:
Merge tag 'dm-9oct18' of git://git.denx.de/u-boot-dm (2018-10-10 13:35:17 -0400)
are available in the Git repository at:
git://git.denx.de/u-boot-arc.git tags/arc-more-updates-for-2018.11-rc2-2
for you to fetch changes up to 6e63314f432d32d2ce12a51dafa78129e81fe9cf:
ARC: Don't use COMMON section for global not-initialized variables (2018-10-15 13:35:17 +0300)
---------------------------------------------------------------- More fixes and improvements for ARC here:
Fixes (this time included for real): * Take care of global uninitialized variables They used to be put right after .bss section and were never zeroed as they should be. Now merged with normal .bss
Improvements: * Print more verbose CPU info for boards built on real silicon * Add support for SD-card detection on all ARC boards * Quite a few fixes for IoT DK - Support reset by command - Print of CPU freq on boot - Link for eFlash etc
---------------------------------------------------------------- Alexey Brodkin (10): iot_dk: Add localversion string iot_dk: Disable networking support ARC: make generic print_cpuinfo() weak iot_dk/hsdk: Implement its own print_cpuinfo() iot_dk: Implement board reset iot_dk: Add support of 136 MHz clock iot_dk: Save CPU clock value to gd->cpu_clk axs10x/emdk/hsdk/iot_dk: Implement board_mmc_getcd() iot_dk: Link for eFlash ARC: Don't use COMMON section for global not-initialized variables
arch/arc/config.mk | 2 +- arch/arc/lib/cpu.c | 2 +- board/synopsys/axs10x/axs10x.c | 7 +++++++ board/synopsys/emdk/emdk.c | 7 +++++++ board/synopsys/hsdk/hsdk.c | 15 +++++++++++++++ board/synopsys/iot_devkit/iot_devkit.c | 43 ++++++++++++++++++++++++++++++++++++++----- configs/iot_devkit_defconfig | 5 +++-- 7 files changed, 72 insertions(+), 9 deletions(-)
-Alexey