ARM Sunxi Platform Development
 help / color / mirror / Atom feed
* Pull request: u-boot-sunxi/master for v2024.04
@ 2024-01-29 15:55 Andre Przywara
  2024-01-29 17:24 ` Andre Przywara
  2024-01-29 17:55 ` Tom Rini
  0 siblings, 2 replies; 7+ messages in thread
From: Andre Przywara @ 2024-01-29 15:55 UTC (permalink / raw)
  To: Tom Rini
  Cc: Jagan Teki, Samuel Holland, Maksim Kiselev, Nick Alilovic,
	Chuanhong Guo, linux-sunxi, u-boot

Hi Tom,

please pull the sunxi/master branch, containing the first part of the
2024.04 changes. I had some more (USB regulator) changes queued, but
found regressions during the final testing, so had to drop some. If I
can find reasons and simple fixes for those, I would send them later.

So for now these are some rather easy changes:
- Some cleanups in header files: those do not affect the generated
binaries at all.
- The usual update of DT files from the kernel repo, mostly adding new
board files this time. On the wake of this there is one defconfig to
enable a new board, some H618 TV box branded as "Transpeed".
- Samuel's series to support SPL FIT image loading for 32-bit SoCs as
well, so far this was restricted to ARM64 boards. I refrained from
automatically enabling this everywhere, instead this requires user
intervention during board configuration. This allows to ship the "crust"
management processor firmware on H3 boards, which enables better power
saving.
- One defconfig for an older H3 board. There was a close-by defconfig for
a related board, but there are some differences which deserve a separate
file.
- Support for the EMAC driver to work with fixed-link PHYs, which allows
to directly wire the MAC to a switch IC.

The branch survived build testing for all 167 sunxi boards, and Linux
boot testing on some selected boards.

Please pull!

Cheers,
Andre

==================
The following changes since commit 526a865fe4fea59fb2638726c26e39557eb97fdd:

  Merge branch 'master-cleanup' of https://source.denx.de/u-boot/custodians/u-boot-sh (2024-01-27 20:43:20 -0500)

are available in the Git repository at:

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

for you to fetch changes up to 539612e27690a8df7f197cd1e9f4c2cf6ee1ac64:

  sunxi: Consider SPL size limitations for FIT loading (2024-01-29 14:31:00 +0000)

----------------------------------------------------------------
Andre Przywara (7):
      sunxi: cleanup sunxi-common.h
      sunxi: sun50i-h6: remove unneeded base addresses from header
      sunxi: sun4i: remove unneeded base addresses from header
      sunxi: sun9i: remove unneeded base addresses from header
      sunxi: remove common.h inclusion
      sunxi: simplify U-Boot proper only builds
      sunxi: dts: update devicetree files from Linux-v6.8-rc1

Chuanhong Guo (1):
      sunxi: add defconfig for nanopi_duo2

Maksim Kiselev (1):
      net: sun8i-emac: Add support for fixed-link phy

Nick Alilovic (1):
      sunxi: add Transpeed 8K618-T board support

Samuel Holland (4):
      sunxi: spl: Disable padding from SPL_PAD_TO
      sunxi: binman: Move BL31 and SCP firmware addresses to Kconfig
      sunxi: binman: Support FIT generation for 32-bit SoCs
      sunxi: Consider SPL size limitations for FIT loading

 arch/arm/Kconfig                                   |   4 +-
 arch/arm/dts/Makefile                              |   1 +
 arch/arm/dts/sun50i-h616-bigtreetech-cb1-manta.dts |  35 +++
 arch/arm/dts/sun50i-h616-bigtreetech-cb1.dtsi      | 138 +++++++++++
 arch/arm/dts/sun50i-h616-bigtreetech-pi.dts        |  63 +++++
 arch/arm/dts/sun50i-h616.dtsi                      |   7 +
 arch/arm/dts/sun50i-h618-orangepi-zero2w.dts       | 176 +++++++++++++
 arch/arm/dts/sun50i-h618-transpeed-8k618-t.dts     | 161 ++++++++++++
 arch/arm/dts/sun8i-r40.dtsi                        |   2 +
 arch/arm/dts/sun8i-v3s-anbernic-rg-nano.dts        | 276 +++++++++++++++++++++
 arch/arm/dts/sun8i-v3s.dtsi                        |  35 +++
 arch/arm/dts/sunxi-u-boot.dtsi                     |  41 +--
 arch/arm/include/asm/arch-sunxi/cpu_sun4i.h        |  47 ----
 arch/arm/include/asm/arch-sunxi/cpu_sun50i_h6.h    |  21 --
 arch/arm/include/asm/arch-sunxi/cpu_sun9i.h        |  41 ---
 arch/arm/mach-sunxi/Kconfig                        |  33 ++-
 arch/arm/mach-sunxi/board.c                        |   1 -
 arch/arm/mach-sunxi/clock.c                        |   1 -
 arch/arm/mach-sunxi/clock_sun4i.c                  |   1 -
 arch/arm/mach-sunxi/clock_sun50i_h6.c              |   1 -
 arch/arm/mach-sunxi/clock_sun6i.c                  |   1 -
 arch/arm/mach-sunxi/clock_sun8i_a83t.c             |   1 -
 arch/arm/mach-sunxi/clock_sun9i.c                  |   1 -
 arch/arm/mach-sunxi/cpu_info.c                     |   1 -
 arch/arm/mach-sunxi/dram_helpers.c                 |   3 +-
 arch/arm/mach-sunxi/dram_sun4i.c                   |   1 -
 arch/arm/mach-sunxi/dram_sun50i_h6.c               |   1 -
 arch/arm/mach-sunxi/dram_sun50i_h616.c             |   1 -
 arch/arm/mach-sunxi/dram_sun6i.c                   |   1 -
 arch/arm/mach-sunxi/dram_sun8i_a23.c               |   1 -
 arch/arm/mach-sunxi/dram_sun8i_a33.c               |   1 -
 arch/arm/mach-sunxi/dram_sun8i_a83t.c              |   1 -
 arch/arm/mach-sunxi/dram_sun9i.c                   |   1 -
 arch/arm/mach-sunxi/dram_suniv.c                   |   2 +-
 arch/arm/mach-sunxi/dram_sunxi_dw.c                |   1 -
 arch/arm/mach-sunxi/gtbus_sun9i.c                  |   1 -
 arch/arm/mach-sunxi/pmic_bus.c                     |   1 -
 arch/arm/mach-sunxi/prcm.c                         |   1 -
 arch/arm/mach-sunxi/spl_spi_sunxi.c                |   1 -
 arch/arm/mach-sunxi/timer.c                        |   1 -
 common/spl/Kconfig                                 |   6 +-
 configs/nanopi_duo2_defconfig                      |  12 +
 configs/transpeed-8k618-t_defconfig                |  27 ++
 drivers/net/sun8i_emac.c                           |   7 +-
 include/configs/sunxi-common.h                     |  56 +----
 45 files changed, 1002 insertions(+), 214 deletions(-)
 create mode 100644 arch/arm/dts/sun50i-h616-bigtreetech-cb1-manta.dts
 create mode 100644 arch/arm/dts/sun50i-h616-bigtreetech-cb1.dtsi
 create mode 100644 arch/arm/dts/sun50i-h616-bigtreetech-pi.dts
 create mode 100644 arch/arm/dts/sun50i-h618-orangepi-zero2w.dts
 create mode 100644 arch/arm/dts/sun50i-h618-transpeed-8k618-t.dts
 create mode 100644 arch/arm/dts/sun8i-v3s-anbernic-rg-nano.dts
 create mode 100644 configs/nanopi_duo2_defconfig
 create mode 100644 configs/transpeed-8k618-t_defconfig

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

* Re: Pull request: u-boot-sunxi/master for v2024.04
  2024-01-29 15:55 Pull request: u-boot-sunxi/master for v2024.04 Andre Przywara
@ 2024-01-29 17:24 ` Andre Przywara
  2024-01-29 17:34   ` Tom Rini
  2024-01-29 17:55 ` Tom Rini
  1 sibling, 1 reply; 7+ messages in thread
From: Andre Przywara @ 2024-01-29 17:24 UTC (permalink / raw)
  To: Tom Rini
  Cc: Jagan Teki, Samuel Holland, Maksim Kiselev, Nick Alilovic,
	Chuanhong Guo, linux-sunxi, u-boot

On Mon, 29 Jan 2024 15:55:43 +0000
Andre Przywara <andre.przywara@arm.com> wrote:

Hi Tom,

> please pull the sunxi/master branch, containing the first part of the

I just saw that the CI pipeline failed on missing maintainer entries for
the two new boards. Is that a showstopper for you? Shall I update the
branch, or would a follow-up patch be sufficient?

Cheers,
Andre

> 2024.04 changes. I had some more (USB regulator) changes queued, but
> found regressions during the final testing, so had to drop some. If I
> can find reasons and simple fixes for those, I would send them later.
> 
> So for now these are some rather easy changes:
> - Some cleanups in header files: those do not affect the generated
> binaries at all.
> - The usual update of DT files from the kernel repo, mostly adding new
> board files this time. On the wake of this there is one defconfig to
> enable a new board, some H618 TV box branded as "Transpeed".
> - Samuel's series to support SPL FIT image loading for 32-bit SoCs as
> well, so far this was restricted to ARM64 boards. I refrained from
> automatically enabling this everywhere, instead this requires user
> intervention during board configuration. This allows to ship the "crust"
> management processor firmware on H3 boards, which enables better power
> saving.
> - One defconfig for an older H3 board. There was a close-by defconfig for
> a related board, but there are some differences which deserve a separate
> file.
> - Support for the EMAC driver to work with fixed-link PHYs, which allows
> to directly wire the MAC to a switch IC.
> 
> The branch survived build testing for all 167 sunxi boards, and Linux
> boot testing on some selected boards.
> 
> Please pull!
> 
> Cheers,
> Andre
> 
> ==================
> The following changes since commit 526a865fe4fea59fb2638726c26e39557eb97fdd:
> 
>   Merge branch 'master-cleanup' of https://source.denx.de/u-boot/custodians/u-boot-sh (2024-01-27 20:43:20 -0500)
> 
> are available in the Git repository at:
> 
>   https://source.denx.de/u-boot/custodians/u-boot-sunxi.git master
> 
> for you to fetch changes up to 539612e27690a8df7f197cd1e9f4c2cf6ee1ac64:
> 
>   sunxi: Consider SPL size limitations for FIT loading (2024-01-29 14:31:00 +0000)
> 
> ----------------------------------------------------------------
> Andre Przywara (7):
>       sunxi: cleanup sunxi-common.h
>       sunxi: sun50i-h6: remove unneeded base addresses from header
>       sunxi: sun4i: remove unneeded base addresses from header
>       sunxi: sun9i: remove unneeded base addresses from header
>       sunxi: remove common.h inclusion
>       sunxi: simplify U-Boot proper only builds
>       sunxi: dts: update devicetree files from Linux-v6.8-rc1
> 
> Chuanhong Guo (1):
>       sunxi: add defconfig for nanopi_duo2
> 
> Maksim Kiselev (1):
>       net: sun8i-emac: Add support for fixed-link phy
> 
> Nick Alilovic (1):
>       sunxi: add Transpeed 8K618-T board support
> 
> Samuel Holland (4):
>       sunxi: spl: Disable padding from SPL_PAD_TO
>       sunxi: binman: Move BL31 and SCP firmware addresses to Kconfig
>       sunxi: binman: Support FIT generation for 32-bit SoCs
>       sunxi: Consider SPL size limitations for FIT loading
> 
>  arch/arm/Kconfig                                   |   4 +-
>  arch/arm/dts/Makefile                              |   1 +
>  arch/arm/dts/sun50i-h616-bigtreetech-cb1-manta.dts |  35 +++
>  arch/arm/dts/sun50i-h616-bigtreetech-cb1.dtsi      | 138 +++++++++++
>  arch/arm/dts/sun50i-h616-bigtreetech-pi.dts        |  63 +++++
>  arch/arm/dts/sun50i-h616.dtsi                      |   7 +
>  arch/arm/dts/sun50i-h618-orangepi-zero2w.dts       | 176 +++++++++++++
>  arch/arm/dts/sun50i-h618-transpeed-8k618-t.dts     | 161 ++++++++++++
>  arch/arm/dts/sun8i-r40.dtsi                        |   2 +
>  arch/arm/dts/sun8i-v3s-anbernic-rg-nano.dts        | 276 +++++++++++++++++++++
>  arch/arm/dts/sun8i-v3s.dtsi                        |  35 +++
>  arch/arm/dts/sunxi-u-boot.dtsi                     |  41 +--
>  arch/arm/include/asm/arch-sunxi/cpu_sun4i.h        |  47 ----
>  arch/arm/include/asm/arch-sunxi/cpu_sun50i_h6.h    |  21 --
>  arch/arm/include/asm/arch-sunxi/cpu_sun9i.h        |  41 ---
>  arch/arm/mach-sunxi/Kconfig                        |  33 ++-
>  arch/arm/mach-sunxi/board.c                        |   1 -
>  arch/arm/mach-sunxi/clock.c                        |   1 -
>  arch/arm/mach-sunxi/clock_sun4i.c                  |   1 -
>  arch/arm/mach-sunxi/clock_sun50i_h6.c              |   1 -
>  arch/arm/mach-sunxi/clock_sun6i.c                  |   1 -
>  arch/arm/mach-sunxi/clock_sun8i_a83t.c             |   1 -
>  arch/arm/mach-sunxi/clock_sun9i.c                  |   1 -
>  arch/arm/mach-sunxi/cpu_info.c                     |   1 -
>  arch/arm/mach-sunxi/dram_helpers.c                 |   3 +-
>  arch/arm/mach-sunxi/dram_sun4i.c                   |   1 -
>  arch/arm/mach-sunxi/dram_sun50i_h6.c               |   1 -
>  arch/arm/mach-sunxi/dram_sun50i_h616.c             |   1 -
>  arch/arm/mach-sunxi/dram_sun6i.c                   |   1 -
>  arch/arm/mach-sunxi/dram_sun8i_a23.c               |   1 -
>  arch/arm/mach-sunxi/dram_sun8i_a33.c               |   1 -
>  arch/arm/mach-sunxi/dram_sun8i_a83t.c              |   1 -
>  arch/arm/mach-sunxi/dram_sun9i.c                   |   1 -
>  arch/arm/mach-sunxi/dram_suniv.c                   |   2 +-
>  arch/arm/mach-sunxi/dram_sunxi_dw.c                |   1 -
>  arch/arm/mach-sunxi/gtbus_sun9i.c                  |   1 -
>  arch/arm/mach-sunxi/pmic_bus.c                     |   1 -
>  arch/arm/mach-sunxi/prcm.c                         |   1 -
>  arch/arm/mach-sunxi/spl_spi_sunxi.c                |   1 -
>  arch/arm/mach-sunxi/timer.c                        |   1 -
>  common/spl/Kconfig                                 |   6 +-
>  configs/nanopi_duo2_defconfig                      |  12 +
>  configs/transpeed-8k618-t_defconfig                |  27 ++
>  drivers/net/sun8i_emac.c                           |   7 +-
>  include/configs/sunxi-common.h                     |  56 +----
>  45 files changed, 1002 insertions(+), 214 deletions(-)
>  create mode 100644 arch/arm/dts/sun50i-h616-bigtreetech-cb1-manta.dts
>  create mode 100644 arch/arm/dts/sun50i-h616-bigtreetech-cb1.dtsi
>  create mode 100644 arch/arm/dts/sun50i-h616-bigtreetech-pi.dts
>  create mode 100644 arch/arm/dts/sun50i-h618-orangepi-zero2w.dts
>  create mode 100644 arch/arm/dts/sun50i-h618-transpeed-8k618-t.dts
>  create mode 100644 arch/arm/dts/sun8i-v3s-anbernic-rg-nano.dts
>  create mode 100644 configs/nanopi_duo2_defconfig
>  create mode 100644 configs/transpeed-8k618-t_defconfig
> 


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

* Re: Pull request: u-boot-sunxi/master for v2024.04
  2024-01-29 17:24 ` Andre Przywara
@ 2024-01-29 17:34   ` Tom Rini
  2024-01-29 17:50     ` Andre Przywara
  0 siblings, 1 reply; 7+ messages in thread
From: Tom Rini @ 2024-01-29 17:34 UTC (permalink / raw)
  To: Andre Przywara
  Cc: Jagan Teki, Samuel Holland, Maksim Kiselev, Nick Alilovic,
	Chuanhong Guo, linux-sunxi, u-boot

[-- Attachment #1: Type: text/plain, Size: 633 bytes --]

On Mon, Jan 29, 2024 at 05:24:49PM +0000, Andre Przywara wrote:
> On Mon, 29 Jan 2024 15:55:43 +0000
> Andre Przywara <andre.przywara@arm.com> wrote:
> 
> Hi Tom,
> 
> > please pull the sunxi/master branch, containing the first part of the
> 
> I just saw that the CI pipeline failed on missing maintainer entries for
> the two new boards. Is that a showstopper for you? Shall I update the
> branch, or would a follow-up patch be sufficient?

I've fixed this up myself this time, since I was doing another CI run
with this for other changes but in the future please fix these errors
before sending the PR.

-- 
Tom

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]

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

* Re: Pull request: u-boot-sunxi/master for v2024.04
  2024-01-29 17:34   ` Tom Rini
@ 2024-01-29 17:50     ` Andre Przywara
  0 siblings, 0 replies; 7+ messages in thread
From: Andre Przywara @ 2024-01-29 17:50 UTC (permalink / raw)
  To: Tom Rini
  Cc: Jagan Teki, Samuel Holland, Maksim Kiselev, Nick Alilovic,
	Chuanhong Guo, linux-sunxi, u-boot

On Mon, 29 Jan 2024 12:34:18 -0500
Tom Rini <trini@konsulko.com> wrote:

Hi Tom,

> On Mon, Jan 29, 2024 at 05:24:49PM +0000, Andre Przywara wrote:
> > On Mon, 29 Jan 2024 15:55:43 +0000
> > Andre Przywara <andre.przywara@arm.com> wrote:
> > 
> > Hi Tom,
> >   
> > > please pull the sunxi/master branch, containing the first part of the  
> > 
> > I just saw that the CI pipeline failed on missing maintainer entries for
> > the two new boards. Is that a showstopper for you? Shall I update the
> > branch, or would a follow-up patch be sufficient?  
> 
> I've fixed this up myself this time, since I was doing another CI run
> with this for other changes but in the future please fix these errors
> before sending the PR.

Many thanks for that, and sorry about the mishap! I wanted to trigger the
CI yesterday night and send the PR this morning, but then discovered two
problems in a last minute test. So I was admittedly rushing things a bit
today. I built all sunxi boards locally, and that passed, so I didn't wait
for the CI to finish ... :-(

Sorry again!

Cheers,
Andre

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

* Re: Pull request: u-boot-sunxi/master for v2024.04
  2024-01-29 15:55 Pull request: u-boot-sunxi/master for v2024.04 Andre Przywara
  2024-01-29 17:24 ` Andre Przywara
@ 2024-01-29 17:55 ` Tom Rini
  1 sibling, 0 replies; 7+ messages in thread
From: Tom Rini @ 2024-01-29 17:55 UTC (permalink / raw)
  To: Andre Przywara
  Cc: Jagan Teki, Samuel Holland, Maksim Kiselev, Nick Alilovic,
	Chuanhong Guo, linux-sunxi, u-boot

[-- Attachment #1: Type: text/plain, Size: 2115 bytes --]

On Mon, Jan 29, 2024 at 03:55:43PM +0000, Andre Przywara wrote:

> Hi Tom,
> 
> please pull the sunxi/master branch, containing the first part of the
> 2024.04 changes. I had some more (USB regulator) changes queued, but
> found regressions during the final testing, so had to drop some. If I
> can find reasons and simple fixes for those, I would send them later.
> 
> So for now these are some rather easy changes:
> - Some cleanups in header files: those do not affect the generated
> binaries at all.
> - The usual update of DT files from the kernel repo, mostly adding new
> board files this time. On the wake of this there is one defconfig to
> enable a new board, some H618 TV box branded as "Transpeed".
> - Samuel's series to support SPL FIT image loading for 32-bit SoCs as
> well, so far this was restricted to ARM64 boards. I refrained from
> automatically enabling this everywhere, instead this requires user
> intervention during board configuration. This allows to ship the "crust"
> management processor firmware on H3 boards, which enables better power
> saving.
> - One defconfig for an older H3 board. There was a close-by defconfig for
> a related board, but there are some differences which deserve a separate
> file.
> - Support for the EMAC driver to work with fixed-link PHYs, which allows
> to directly wire the MAC to a switch IC.
> 
> The branch survived build testing for all 167 sunxi boards, and Linux
> boot testing on some selected boards.
>
> Please pull!
> 
> Cheers,
> Andre
> 
> ==================
> The following changes since commit 526a865fe4fea59fb2638726c26e39557eb97fdd:
> 
>   Merge branch 'master-cleanup' of https://source.denx.de/u-boot/custodians/u-boot-sh (2024-01-27 20:43:20 -0500)
> 
> are available in the Git repository at:
> 
>   https://source.denx.de/u-boot/custodians/u-boot-sunxi.git master
> 
> for you to fetch changes up to 539612e27690a8df7f197cd1e9f4c2cf6ee1ac64:
> 
>   sunxi: Consider SPL size limitations for FIT loading (2024-01-29 14:31:00 +0000)
> 

Applied to u-boot/master, thanks!

-- 
Tom

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]

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

* Pull request: u-boot-sunxi/master for v2024.04
@ 2024-03-05 11:15 Andre Przywara
  2024-03-05 13:27 ` Tom Rini
  0 siblings, 1 reply; 7+ messages in thread
From: Andre Przywara @ 2024-03-05 11:15 UTC (permalink / raw)
  To: Tom Rini
  Cc: u-boot, Jagan Teki, Maksim Kiselev, Philippe Coval,
	Ludwig Kormann, Andrey Skvortsov, linux-sunxi

Hi Tom,

please pull the sunxi/master branch, containing some fixes and smaller
changes for 2024.04.
One fix makes the reboot more robust on some older board, another one
stabilises the initial clock setup on the A10/A20.
Two patches make sure our DRAM init does not actually change the content
of the DRAM array, which allows to use DRAM for Linux' pstore
functionality.
We get SPI support for U-Boot proper for one more SoC, that patch was
lingering around for a while, and should not affect other SoCs, so I am
merging this now.
As an added bonus, we get the defconfig file for a new board, the DT was
already synced from the kernel tree.

The CI looked happy with changes, and I tested them on five different
boards with different SoCs.

Please pull!

Cheers,
Andre

==================
The following changes since commit eac52e4be4e234d563d6911737ee7ccdc0ada1f1:

  Merge patch series "ARM: renesas: Rename R-Mobile to Renesas" (2024-03-02 14:30:25 -0500)

are available in the Git repository at:

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

for you to fetch changes up to f1e6a718ebab0682d80601db404e8d842767becf:

  sunxi: restore modified memory (2024-03-05 01:16:56 +0000)

----------------------------------------------------------------
Andre Przywara (1):
      sunxi: H616: Add OrangePi Zero 2W board support

Andrey Skvortsov (2):
      sunxi: reorganize mctl_mem_matches_* functions
      sunxi: restore modified memory

Ludwig Kormann (1):
      sunxi: sun4i: add missing sdelay() to clock_init_safe()

Maksim Kiselev (1):
      spi: sunxi: Add support for R329/D1/R528/T113 SPI controller

Philippe Coval (1):
      arm: sunxi: Reduce inrush current on Olimex A20-OLinuXino_MICRO configs

 arch/arm/dts/Makefile                      |  1 +
 arch/arm/include/asm/arch-sunxi/dram.h     |  1 +
 arch/arm/mach-sunxi/clock_sun4i.c          |  2 ++
 arch/arm/mach-sunxi/dram_helpers.c         | 32 ++++++++++++++++++++++------
 arch/arm/mach-sunxi/dram_sunxi_dw.c        | 13 ------------
 board/sunxi/MAINTAINERS                    |  5 +++++
 configs/A20-OLinuXino_MICRO-eMMC_defconfig |  1 +
 configs/A20-OLinuXino_MICRO_defconfig      |  1 +
 configs/orangepi_zero2w_defconfig          | 30 ++++++++++++++++++++++++++
 drivers/spi/spi-sunxi.c                    | 34 +++++++++++++++++++++++++++++-
 10 files changed, 100 insertions(+), 20 deletions(-)
 create mode 100644 configs/orangepi_zero2w_defconfig

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

* Re: Pull request: u-boot-sunxi/master for v2024.04
  2024-03-05 11:15 Andre Przywara
@ 2024-03-05 13:27 ` Tom Rini
  0 siblings, 0 replies; 7+ messages in thread
From: Tom Rini @ 2024-03-05 13:27 UTC (permalink / raw)
  To: Andre Przywara
  Cc: u-boot, Jagan Teki, Maksim Kiselev, Philippe Coval,
	Ludwig Kormann, Andrey Skvortsov, linux-sunxi

[-- Attachment #1: Type: text/plain, Size: 1430 bytes --]

On Tue, Mar 05, 2024 at 11:15:41AM +0000, Andre Przywara wrote:

> Hi Tom,
> 
> please pull the sunxi/master branch, containing some fixes and smaller
> changes for 2024.04.
> One fix makes the reboot more robust on some older board, another one
> stabilises the initial clock setup on the A10/A20.
> Two patches make sure our DRAM init does not actually change the content
> of the DRAM array, which allows to use DRAM for Linux' pstore
> functionality.
> We get SPI support for U-Boot proper for one more SoC, that patch was
> lingering around for a while, and should not affect other SoCs, so I am
> merging this now.
> As an added bonus, we get the defconfig file for a new board, the DT was
> already synced from the kernel tree.
> 
> The CI looked happy with changes, and I tested them on five different
> boards with different SoCs.
> 
> Please pull!
> 
> Cheers,
> Andre
> 
> ==================
> The following changes since commit eac52e4be4e234d563d6911737ee7ccdc0ada1f1:
> 
>   Merge patch series "ARM: renesas: Rename R-Mobile to Renesas" (2024-03-02 14:30:25 -0500)
> 
> are available in the Git repository at:
> 
>   https://source.denx.de/u-boot/custodians/u-boot-sunxi.git master
> 
> for you to fetch changes up to f1e6a718ebab0682d80601db404e8d842767becf:
> 
>   sunxi: restore modified memory (2024-03-05 01:16:56 +0000)
> 

Applied to u-boot/master, thanks!

-- 
Tom

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 659 bytes --]

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

end of thread, other threads:[~2024-03-05 13:27 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-29 15:55 Pull request: u-boot-sunxi/master for v2024.04 Andre Przywara
2024-01-29 17:24 ` Andre Przywara
2024-01-29 17:34   ` Tom Rini
2024-01-29 17:50     ` Andre Przywara
2024-01-29 17:55 ` Tom Rini
  -- strict thread matches above, loose matches on Subject: below --
2024-03-05 11:15 Andre Przywara
2024-03-05 13:27 ` Tom Rini

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