mbox series

[U-Boot] Please pull ARC changes for 2018.05

Message ID 1522662233.5108.8.camel@synopsys.com
State Accepted
Delegated to: Tom Rini
Headers show
Series [U-Boot] Please pull ARC changes for 2018.05 | expand

Pull-request

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

Message

Alexey Brodkin April 2, 2018, 9:43 a.m. UTC
Hi Tom,

The following changes since commit f3b623fa52ce5c67732ea2d789d5e21667e88db3:

  Merge git://git.denx.de/u-boot-marvell (2018-03-30 18:18:22 -0400)

are available in the Git repository at:

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

for you to fetch changes up to f770b3ee1830a5fbd3b44cd051d9e5468339d651:

  ARC: HSDK: Enable SPI flash support (2018-04-02 12:27:56 +0300)

----------------------------------------------------------------
More ARC changes and fixes for v2018.05

 * Update of ARC tools to the most recent arc-2017.09
 * Fix for compile-time warning for AXS10x
 * Add support of platform-specific commands for HSDK
 * Add support for on-board SPI flash on HSDK
   Note though that for write support another series [1]
   is required. I hope that Jagan will be able to review and
   act on SPI flash improvement series before we get beyond RC1.

   Also note that to get clean build for HSDK we need to disable
   stack-usage check [2] as our current GCC erroneously tries to calculate
   stack-usage on a naked function which leads to warning.

[1] https://patchwork.ozlabs.org/project/uboot/list/?series=35796
[2] https://patchwork.ozlabs.org/patch/894139/

----------------------------------------------------------------
Alexey Brodkin (1):
      ARC: Bump ARC tools used in TravisCI to the most recent release arc-2017.09

Eugeniy Paltsev (3):
      ARC: AXS10x: DTS: Remove unused interrupt properties
      ARC: HSDK: Add platform-specific commands
      ARC: HSDK: Enable SPI flash support

 .travis.yml                     |    6 +-
 arch/arc/dts/axs10x_mb.dtsi     |    5 -
 arch/arc/dts/hsdk.dts           |   56 +++++++
 board/synopsys/hsdk/MAINTAINERS |    4 +-
 board/synopsys/hsdk/Makefile    |    2 +
 board/synopsys/hsdk/clk-lib.c   |   75 +++++++++
 board/synopsys/hsdk/clk-lib.h   |   38 +++++
 board/synopsys/hsdk/env-lib.c   |  302 ++++++++++++++++++++++++++++++++++
 board/synopsys/hsdk/env-lib.h   |   58 +++++++
 board/synopsys/hsdk/hsdk.c      | 1046
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------
 configs/hsdk_defconfig          |   13 ++
 include/configs/hsdk.h          |   56 ++++++-
 12 files changed, 1602 insertions(+), 59 deletions(-)
 create mode 100644 board/synopsys/hsdk/clk-lib.c
 create mode 100644 board/synopsys/hsdk/clk-lib.h
 create mode 100644 board/synopsys/hsdk/env-lib.c
 create mode 100644 board/synopsys/hsdk/env-lib.h

Regards,
Alexey

P.S. It seems like Jagan is not very active so SPI changes we need
(mentioned in [1] above) won't make it through his repo.
Is there a chance to get that series merged in your tree directly?

Comments

Tom Rini April 4, 2018, 1:18 p.m. UTC | #1
On Mon, Apr 02, 2018 at 09:43:54AM +0000, Alexey Brodkin wrote:

> Hi Tom,
> 
> The following changes since commit f3b623fa52ce5c67732ea2d789d5e21667e88db3:
> 
>   Merge git://git.denx.de/u-boot-marvell (2018-03-30 18:18:22 -0400)
> 
> are available in the Git repository at:
> 
>   git://git.denx.de/u-boot-arc.git tags/arc-for-2018.05
> 
> for you to fetch changes up to f770b3ee1830a5fbd3b44cd051d9e5468339d651:
> 
>   ARC: HSDK: Enable SPI flash support (2018-04-02 12:27:56 +0300)
> 

Applied to u-boot/master, thanks!
Tom Rini April 4, 2018, 1:18 p.m. UTC | #2
On Mon, Apr 02, 2018 at 09:43:54AM +0000, Alexey Brodkin wrote:
> Hi Tom,
> 
> The following changes since commit f3b623fa52ce5c67732ea2d789d5e21667e88db3:
> 
>   Merge git://git.denx.de/u-boot-marvell (2018-03-30 18:18:22 -0400)
> 
> are available in the Git repository at:
> 
>   git://git.denx.de/u-boot-arc.git tags/arc-for-2018.05
> 
> for you to fetch changes up to f770b3ee1830a5fbd3b44cd051d9e5468339d651:
> 
>   ARC: HSDK: Enable SPI flash support (2018-04-02 12:27:56 +0300)
> 
> ----------------------------------------------------------------
> More ARC changes and fixes for v2018.05
> 
>  * Update of ARC tools to the most recent arc-2017.09
>  * Fix for compile-time warning for AXS10x
>  * Add support of platform-specific commands for HSDK
>  * Add support for on-board SPI flash on HSDK
>    Note though that for write support another series [1]
>    is required. I hope that Jagan will be able to review and
>    act on SPI flash improvement series before we get beyond RC1.
> 
>    Also note that to get clean build for HSDK we need to disable
>    stack-usage check [2] as our current GCC erroneously tries to calculate
>    stack-usage on a naked function which leads to warning.
> 
> [1] https://patchwork.ozlabs.org/project/uboot/list/?series=35796
> [2] https://patchwork.ozlabs.org/patch/894139/
> 
> ----------------------------------------------------------------
> Alexey Brodkin (1):
>       ARC: Bump ARC tools used in TravisCI to the most recent release arc-2017.09
> 
> Eugeniy Paltsev (3):
>       ARC: AXS10x: DTS: Remove unused interrupt properties
>       ARC: HSDK: Add platform-specific commands
>       ARC: HSDK: Enable SPI flash support
> 
>  .travis.yml                     |    6 +-
>  arch/arc/dts/axs10x_mb.dtsi     |    5 -
>  arch/arc/dts/hsdk.dts           |   56 +++++++
>  board/synopsys/hsdk/MAINTAINERS |    4 +-
>  board/synopsys/hsdk/Makefile    |    2 +
>  board/synopsys/hsdk/clk-lib.c   |   75 +++++++++
>  board/synopsys/hsdk/clk-lib.h   |   38 +++++
>  board/synopsys/hsdk/env-lib.c   |  302 ++++++++++++++++++++++++++++++++++
>  board/synopsys/hsdk/env-lib.h   |   58 +++++++
>  board/synopsys/hsdk/hsdk.c      | 1046
> +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++------
>  configs/hsdk_defconfig          |   13 ++
>  include/configs/hsdk.h          |   56 ++++++-
>  12 files changed, 1602 insertions(+), 59 deletions(-)
>  create mode 100644 board/synopsys/hsdk/clk-lib.c
>  create mode 100644 board/synopsys/hsdk/clk-lib.h
>  create mode 100644 board/synopsys/hsdk/env-lib.c
>  create mode 100644 board/synopsys/hsdk/env-lib.h
> 
> Regards,
> Alexey
> 
> P.S. It seems like Jagan is not very active so SPI changes we need
> (mentioned in [1] above) won't make it through his repo.
> Is there a chance to get that series merged in your tree directly?

Jagan, the two patches listed above look pretty reasonable, are you
going to apply them soon?  Thanks!