Re: Pull request: u-boot-sunxi/master for v2024.07

2024-04-22 Thread Tom Rini
On Mon, Apr 22, 2024 at 05:22:49PM +0100, Andre Przywara wrote:

> Hi Tom,
> 
> as per the usual late ;-) please pull the sunxi/master branch, containing
> some 2024.07 changes for Allwinner. Not many and nothing really exciting
> this time: there are more patches in fly, but they are not ready yet.
> I will also send some DT updates and new board defconfig files later, once
> they have seen the list. I am aware of the USB rebasing repo efforts,
> but would like to see how this plays out, also we have one compatibility
> issue that I painstakingly work around in the U-Boot tree for the last three
> years or so. So for now I stick to the previous approach.
> 
> So now just some easy changes: support for USB peripheral mode on the
> Allwinner F1C100s, T113-s3 SPI boot support, and some SPL cleanup patches.
> 
> The branch passed the gitlab CI run, and brief boot testing on some boards
> didn't turn up any issues.
> 
> Please pull!
> 
> Cheers,
> Andre
> 
> ==
> The following changes since commit c08685289171e68afd4bae2eb2e279cdc49a407d:
> 
>   Merge tag 'u-boot-imx-master-20240420' of 
> https://gitlab.denx.de/u-boot/custodians/u-boot-imx (2024-04-20 15:16:17 
> -0600)
> 
> 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 192c5c9e51c1ef100c3d027d253ffad26ff75a68:
> 
>   sunxi: sun9i: make more clock functions SPL only (2024-04-22 01:12:26 +0100)
> 

Applied to u-boot/master, thanks!

-- 
Tom


signature.asc
Description: PGP signature


Pull request: u-boot-sunxi/master for v2024.07

2024-04-22 Thread Andre Przywara
Hi Tom,

as per the usual late ;-) please pull the sunxi/master branch, containing
some 2024.07 changes for Allwinner. Not many and nothing really exciting
this time: there are more patches in fly, but they are not ready yet.
I will also send some DT updates and new board defconfig files later, once
they have seen the list. I am aware of the USB rebasing repo efforts,
but would like to see how this plays out, also we have one compatibility
issue that I painstakingly work around in the U-Boot tree for the last three
years or so. So for now I stick to the previous approach.

So now just some easy changes: support for USB peripheral mode on the
Allwinner F1C100s, T113-s3 SPI boot support, and some SPL cleanup patches.

The branch passed the gitlab CI run, and brief boot testing on some boards
didn't turn up any issues.

Please pull!

Cheers,
Andre

==
The following changes since commit c08685289171e68afd4bae2eb2e279cdc49a407d:

  Merge tag 'u-boot-imx-master-20240420' of 
https://gitlab.denx.de/u-boot/custodians/u-boot-imx (2024-04-20 15:16:17 -0600)

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 192c5c9e51c1ef100c3d027d253ffad26ff75a68:

  sunxi: sun9i: make more clock functions SPL only (2024-04-22 01:12:26 +0100)


Andre Przywara (9):
  usb: musb-new: add Allwinner F1C100s support
  sunxi: move #ifdef guards around tzpc_init() to header file
  sunxi: remove unneeded i2c_init_board() call for U-Boot proper
  sunxi: compile clock.c for SPL only
  sunxi: sun4i: make more clock functions SPL only
  sunxi: sun6i: make more clock functions SPL only
  sunxi: sun50i_h6: make more clock functions SPL only
  sunxi: sun8i_a83t: make more clock functions SPL only
  sunxi: sun9i: make more clock functions SPL only

Maksim Kiselev (1):
  sunxi: SPL SPI: Add SPI boot support for the Allwinner R528/T113 SoCs

 arch/arm/include/asm/arch-sunxi/clock_sun9i.h |  3 -
 arch/arm/include/asm/arch-sunxi/tzpc.h|  6 ++
 arch/arm/mach-sunxi/Kconfig   |  2 +-
 arch/arm/mach-sunxi/Makefile  |  2 +-
 arch/arm/mach-sunxi/board.c   |  2 -
 arch/arm/mach-sunxi/clock.c   |  2 -
 arch/arm/mach-sunxi/clock_sun4i.c |  5 +-
 arch/arm/mach-sunxi/clock_sun50i_h6.c | 57 
 arch/arm/mach-sunxi/clock_sun6i.c |  3 +-
 arch/arm/mach-sunxi/clock_sun8i_a83t.c|  5 +-
 arch/arm/mach-sunxi/clock_sun9i.c | 97 +--
 arch/arm/mach-sunxi/spl_spi_sunxi.c   | 78 +++--
 board/sunxi/board.c   |  9 +--
 drivers/usb/musb-new/sunxi.c  | 16 +
 14 files changed, 163 insertions(+), 124 deletions(-)