Re: [PULL] Pull request for u-boot next / v2024.04 = u-boot-stm32-20231113

2023-11-13 Thread Tom Rini
On Mon, Nov 13, 2023 at 01:36:22PM +0100, Patrice CHOTARD wrote:

> Hi Tom
> 
> Please pull the STM32 related patches for u-boot/next, v2024.04: 
> u-boot-stm32-20231113
> 
> CI status: 
> https://source.denx.de/u-boot/custodians/u-boot-stm/-/pipelines/18567
> 
> The following changes since commit 3b6db6901ff5babbb9d21f0fca750996e29d85e0:
> 
>   Merge branch '2023-11-10-improve-semihosting-armv6' into next (2023-11-10 
> 12:52:33 -0500)
> 
> are available in the Git repository at:
> 
>   https://source.denx.de/u-boot/custodians/u-boot-stm.git 
> tags/u-boot-stm32-20231113
> 
> for you to fetch changes up to 01a701994b0590b6452516a7c67353359d053c94:
> 
>   stm32mp2: initial support (2023-11-13 10:55:38 +0100)
> 

Applied to u-boot/next, thanks!

-- 
Tom


signature.asc
Description: PGP signature


[PULL] Pull request for u-boot next / v2024.04 = u-boot-stm32-20231113

2023-11-13 Thread Patrice CHOTARD
Hi Tom

Please pull the STM32 related patches for u-boot/next, v2024.04: 
u-boot-stm32-20231113

CI status: https://source.denx.de/u-boot/custodians/u-boot-stm/-/pipelines/18567

The following changes since commit 3b6db6901ff5babbb9d21f0fca750996e29d85e0:

  Merge branch '2023-11-10-improve-semihosting-armv6' into next (2023-11-10 
12:52:33 -0500)

are available in the Git repository at:

  https://source.denx.de/u-boot/custodians/u-boot-stm.git 
tags/u-boot-stm32-20231113

for you to fetch changes up to 01a701994b0590b6452516a7c67353359d053c94:

  stm32mp2: initial support (2023-11-13 10:55:38 +0100)


Introduce STM32MP2 SoCs family support
Add STM32MP257F-EV1 board


Patrice Chotard (8):
  arm: caches: Make DCACHE_DEFAULT_OPTION accessible for ARM64 arch
  stm32mp: dram_init: Get RAM size from DT if no RAM driver found
  stm32mp: dram_init: Limit DDR usage under 4GB boundary for STM32MP
  stm32mp: bsec: Fix AARCH64 compilation warnings
  serial: stm32: Fix AARCH64 compilation warnings
  pinctrl: pinctrl_stm32: Add stm32mp2 support
  ARM: dts: stm32: Add STM32MP257F Evaluation board support
  stm32mp2: initial support

Patrick Delaunay (1):
  stm32mp: dram_init: Fix AARCH64 compilation warnings

 arch/arm/Kconfig |   2 +-
 arch/arm/dts/Makefile|   3 +++
 arch/arm/dts/stm32mp25-pinctrl.dtsi  |  38 
+++
 arch/arm/dts/stm32mp25-u-boot.dtsi   | 102 
++
 arch/arm/dts/stm32mp251.dtsi | 285 
+++
 arch/arm/dts/stm32mp253.dtsi |  23 
++
 arch/arm/dts/stm32mp255.dtsi |   9 +
 arch/arm/dts/stm32mp257.dtsi |   9 +
 arch/arm/dts/stm32mp257f-ev1-u-boot.dtsi |  20 +++
 arch/arm/dts/stm32mp257f-ev1.dts |  55 
+++
 arch/arm/dts/stm32mp25xc.dtsi|   8 
 arch/arm/dts/stm32mp25xf.dtsi|   8 
 arch/arm/dts/stm32mp25xxai-pinctrl.dtsi  |  83 
+
 arch/arm/dts/stm32mp25xxak-pinctrl.dtsi  |  71 
++
 arch/arm/dts/stm32mp25xxal-pinctrl.dtsi  |  71 
++
 arch/arm/include/asm/system.h|  16 +++
 arch/arm/mach-stm32mp/Kconfig|  26 
+++-
 arch/arm/mach-stm32mp/Kconfig.25x|  43 

 arch/arm/mach-stm32mp/Makefile   |  15 --
 arch/arm/mach-stm32mp/bsec.c |  29 
++-
 arch/arm/mach-stm32mp/dram_init.c|  17 
 arch/arm/mach-stm32mp/include/mach/stm32.h   | 141 
++
 arch/arm/mach-stm32mp/include/mach/sys_proto.h   |  26 

 arch/arm/mach-stm32mp/stm32mp1/Makefile  |  20 +++
 arch/arm/mach-stm32mp/{ => stm32mp1}/cpu.c   |   0
 arch/arm/mach-stm32mp/{ => stm32mp1}/fdt.c   |   0
 arch/arm/mach-stm32mp/{ => stm32mp1}/psci.c  |   0
 arch/arm/mach-stm32mp/{ => stm32mp1}/pwr_regulator.c |   0
 arch/arm/mach-stm32mp/{ => stm32mp1}/spl.c   |   0
 arch/arm/mach-stm32mp/{ => stm32mp1}/stm32mp13x.c|   0
 arch/arm/mach-stm32mp/{ => stm32mp1}/stm32mp15x.c|   0
 arch/arm/mach-stm32mp/{ => stm32mp1}/tzc400.c|   0
 arch/arm/mach-stm32mp/stm32mp2/Makefile  |   9 +
 arch/arm/mach-stm32mp/stm32mp2/arm64-mmu.c   |  68 
+++
 arch/arm/mach-stm32mp/stm32mp2/cpu.c | 108 

 arch/arm/mach-stm32mp/stm32mp2/fdt.c |  16 +++
 arch/arm/mach-stm32mp/stm32mp2/stm32mp25x.c  | 194