public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot]  Please pull ARC changes for 2018.05
@ 2018-04-02  9:43 Alexey Brodkin
  2018-04-04 13:18 ` Tom Rini
  2018-04-04 13:18 ` Tom Rini
  0 siblings, 2 replies; 3+ messages in thread
From: Alexey Brodkin @ 2018-04-02  9:43 UTC (permalink / raw)
  To: u-boot

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?

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [U-Boot] Please pull ARC changes for 2018.05
  2018-04-02  9:43 [U-Boot] Please pull ARC changes for 2018.05 Alexey Brodkin
@ 2018-04-04 13:18 ` Tom Rini
  2018-04-04 13:18 ` Tom Rini
  1 sibling, 0 replies; 3+ messages in thread
From: Tom Rini @ 2018-04-04 13:18 UTC (permalink / raw)
  To: u-boot

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
-------------- 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/20180404/5e2203e5/attachment.sig>

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [U-Boot] Please pull ARC changes for 2018.05
  2018-04-02  9:43 [U-Boot] Please pull ARC changes for 2018.05 Alexey Brodkin
  2018-04-04 13:18 ` Tom Rini
@ 2018-04-04 13:18 ` Tom Rini
  1 sibling, 0 replies; 3+ messages in thread
From: Tom Rini @ 2018-04-04 13:18 UTC (permalink / raw)
  To: u-boot

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!

-- 
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/20180404/ef3c935f/attachment.sig>

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-04-04 13:18 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-04-02  9:43 [U-Boot] Please pull ARC changes for 2018.05 Alexey Brodkin
2018-04-04 13:18 ` Tom Rini
2018-04-04 13:18 ` Tom Rini

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox