All of lore.kernel.org
 help / color / mirror / Atom feed
* Pull request: u-boot-sunxi/master for v2021.04
@ 2021-01-12  0:42 Andre Przywara
  2021-01-12 14:31 ` Tom Rini
  0 siblings, 1 reply; 4+ messages in thread
From: Andre Przywara @ 2021-01-12  0:42 UTC (permalink / raw)
  To: u-boot

Hi Tom,

please pull the master branch from u-boot-sunxi, containing the first
bunch of patches for the 2021.04 merge window:
-------------------------
- Pinecube board support
- 64-bit FEL support
- mkimage support for eGON images (superseding mksunxiboot)
- Bluetooth BD address generation
- some fixes
-------------------------

Compile-tested HEAD for all 154 sunxi boards, compile-tested all commits
for Pine64-LTS and OrangePi Zero, boot-tested on Pine64-LTS, Pine H64 and
OrangePi Zero.

Thanks,
Andre

==============
The following changes since commit d71be1990218957b9f05dbf13a72859a2abe06d7:

  Merge branch 'next' (2021-01-11 13:55:03 -0500)

are available in the Git repository at:

  https://gitlab.denx.de/u-boot/custodians/u-boot-sunxi.git master

for you to fetch changes up to 9267ff89ee27a624ddb5d8eb7d90830ee0ff6f77:

  sunxi: board: add a config option to fixup a Bluetooth address (2021-01-11 23:19:34 +0000)

----------------------------------------------------------------
Andre Heider (2):
      sunxi: board: extract creating a unique sid into a helper function
      sunxi: board: add a config option to fixup a Bluetooth address

Andre Przywara (5):
      sunxi: Factor out eGON BROM header description
      tools: mkimage: Add Allwinner eGON support
      sunxi: Use mkimage for SPL boot image generation
      sunxi: Fix is_boot0_magic macro
      sunxi: Add arm64 FEL support

Andy Shevchenko (1):
      sunxi: board: Move USB ethernet initialization to board_late_init()

Icenowy Zheng (1):
      sunxi: add PineCube board

Jernej Skrabec (1):
      sunxi: dram: h6: Improve DDR3 config detection

 arch/arm/Kconfig                        |   1 +
 arch/arm/cpu/armv8/Makefile             |   2 +
 arch/arm/cpu/armv8/fel_utils.S          |  78 +++++++++++++++++
 arch/arm/dts/Makefile                   |   1 +
 arch/arm/include/asm/arch-sunxi/boot0.h |  14 +++
 arch/arm/include/asm/arch-sunxi/spl.h   |  68 +--------------
 arch/arm/mach-sunxi/Kconfig             |  11 +++
 arch/arm/mach-sunxi/dram_sun50i_h6.c    | 100 ++++++++++++----------
 board/sunxi/MAINTAINERS                 |   5 ++
 board/sunxi/board.c                     | 145 +++++++++++++++++++++-----------
 common/image.c                          |   1 +
 configs/pinecube_defconfig              |  15 ++++
 include/configs/sunxi-common.h          |   2 -
 include/image.h                         |   1 +
 include/sunxi_image.h                   |  82 ++++++++++++++++++
 scripts/Makefile.spl                    |   8 +-
 tools/Makefile                          |   1 +
 tools/sunxi_egon.c                      | 136 ++++++++++++++++++++++++++++++
 18 files changed, 508 insertions(+), 163 deletions(-)
 create mode 100644 arch/arm/cpu/armv8/fel_utils.S
 create mode 100644 configs/pinecube_defconfig
 create mode 100644 include/sunxi_image.h
 create mode 100644 tools/sunxi_egon.c

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

* Pull request: u-boot-sunxi/master for v2021.04
  2021-01-12  0:42 Pull request: u-boot-sunxi/master for v2021.04 Andre Przywara
@ 2021-01-12 14:31 ` Tom Rini
  0 siblings, 0 replies; 4+ messages in thread
From: Tom Rini @ 2021-01-12 14:31 UTC (permalink / raw)
  To: u-boot

On Tue, Jan 12, 2021 at 12:42:23AM +0000, Andre Przywara wrote:

> Hi Tom,
> 
> please pull the master branch from u-boot-sunxi, containing the first
> bunch of patches for the 2021.04 merge window:

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 659 bytes
Desc: not available
URL: <https://lists.denx.de/pipermail/u-boot/attachments/20210112/379ff176/attachment.sig>

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

* Pull request: u-boot-sunxi/master for v2021.04
  2021-02-20  0:33 Andre Przywara
@ 2021-02-20 13:57 ` Tom Rini
  0 siblings, 0 replies; 4+ messages in thread
From: Tom Rini @ 2021-02-20 13:57 UTC (permalink / raw)
  To: u-boot

On Sat, Feb 20, 2021 at 12:33:05AM +0000, Andre Przywara wrote:

> Hi Tom,
> 
> please pull the master branch from u-boot-sunxi, containing some fixes
> for 2021.04:

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 659 bytes
Desc: not available
URL: <https://lists.denx.de/pipermail/u-boot/attachments/20210220/a324782b/attachment.sig>

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

* Pull request: u-boot-sunxi/master for v2021.04
@ 2021-02-20  0:33 Andre Przywara
  2021-02-20 13:57 ` Tom Rini
  0 siblings, 1 reply; 4+ messages in thread
From: Andre Przywara @ 2021-02-20  0:33 UTC (permalink / raw)
  To: u-boot

Hi Tom,

please pull the master branch from u-boot-sunxi, containing some fixes
for 2021.04:
-------------------------
- H616 clock fix to enable video PLL
- sunxi-common.h cleanups
- support for UART1 as the console on sun8i
- removing wrong linux,stdout-path from DTs
-------------------------

Build-tested on all 156 sunxi boards, boot tested on some of them.

Thanks,
Andre

==============
The following changes since commit a1a652e8016426e2d67148cab225cd5ec45189fb:

  Merge tag 'mmc-2021-2-19' of https://gitlab.denx.de/u-boot/custodians/u-boot-mmc (2021-02-19 11:56:14 -0500)

are available in the Git repository at:

  https://gitlab.denx.de/u-boot/custodians/u-boot-sunxi.git 

for you to fetch changes up to e036a1d227112565cdf32b5558ac6ccaf5d1633f:

  fdt/sunxi: Remove OF_STDOUT_PATH (2021-02-19 23:29:47 +0000)

----------------------------------------------------------------
Andre Przywara (1):
      fdt/sunxi: Remove OF_STDOUT_PATH

Jernej Skrabec (1):
      sunxi: spl: Fix H616 clock initialization

Samuel Holland (1):
      sunxi: Remove dead ifdefs in sunxi-common.h

Tobias Schramm (1):
      sunxi: support boot console on uart1 for sun8i

 README                                 |  1 -
 arch/arm/include/asm/arch-sunxi/gpio.h |  1 +
 arch/arm/mach-sunxi/board.c            |  5 +++++
 arch/arm/mach-sunxi/clock_sun50i_h6.c  |  5 +++++
 common/fdt_support.c                   |  9 +--------
 include/configs/sunxi-common.h         | 33 ---------------------------------
 scripts/config_whitelist.txt           |  1 -
 7 files changed, 12 insertions(+), 43 deletions(-)

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

end of thread, other threads:[~2021-02-20 13:57 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-01-12  0:42 Pull request: u-boot-sunxi/master for v2021.04 Andre Przywara
2021-01-12 14:31 ` Tom Rini
2021-02-20  0:33 Andre Przywara
2021-02-20 13:57 ` Tom Rini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.