mbox series

[RESEND,0/4] omap3: igep0x00: Fix boot failure and modernize the boards support

Message ID 20240518130622.219031-1-javier@dowhile0.org
Headers show
Series omap3: igep0x00: Fix boot failure and modernize the boards support | expand

Message

Javier Martinez Canillas May 18, 2024, 1:06 p.m. UTC
Hello,

I noticed that the IGEPv2 board did not boot anymore with mainline U-Boot.
This was caused by a driver change to allocate its platform data before
relocation and U-Boot not having enough pre-relocation heap size for this.

This series fixes this issue and also makes the board support more modern,
by enabling DM for SPL and migrating the IGEP boards to use upstream DTBs.

It is a resend because previous emails were blocked on moderator approval
due not being subscribed in the mailing list. Hopefully this time makes it
through, sorry for the spam to folks Cc'ed.

Best regards,
Javier


Javier Martinez Canillas (4):
  omap3: igep00x0: Increase malloc() pool size
  omap3: igep0x00: Drop unused SPI support
  omap3: igep0x00: Update for DM SPL support
  omap3: igep0x00: Migrate to use upstream DT

 arch/arm/dts/Makefile                   |   3 -
 arch/arm/dts/omap3-igep.dtsi            | 247 ----------------------
 arch/arm/dts/omap3-igep0020-common.dtsi | 261 ------------------------
 arch/arm/dts/omap3-igep0020-u-boot.dtsi |  14 +-
 arch/arm/dts/omap3-igep0020.dts         |  47 -----
 board/isee/igep00x0/igep00x0.c          |  12 --
 configs/igep00x0_defconfig              |  26 ++-
 7 files changed, 14 insertions(+), 596 deletions(-)
 delete mode 100644 arch/arm/dts/omap3-igep.dtsi
 delete mode 100644 arch/arm/dts/omap3-igep0020-common.dtsi
 delete mode 100644 arch/arm/dts/omap3-igep0020.dts

Comments

Tom Rini June 3, 2024, 5:41 p.m. UTC | #1
On Sat, 18 May 2024 15:06:11 +0200, Javier Martinez Canillas wrote:

> I noticed that the IGEPv2 board did not boot anymore with mainline U-Boot.
> This was caused by a driver change to allocate its platform data before
> relocation and U-Boot not having enough pre-relocation heap size for this.
> 
> This series fixes this issue and also makes the board support more modern,
> by enabling DM for SPL and migrating the IGEP boards to use upstream DTBs.
> 
> [...]

Applied to u-boot/master, thanks!
Javier Martinez Canillas June 4, 2024, 7:01 a.m. UTC | #2
Hello Tom,

On Mon, Jun 3, 2024 at 7:41 PM Tom Rini <trini@konsulko.com> wrote:
>
> On Sat, 18 May 2024 15:06:11 +0200, Javier Martinez Canillas wrote:
>
> > I noticed that the IGEPv2 board did not boot anymore with mainline U-Boot.
> > This was caused by a driver change to allocate its platform data before
> > relocation and U-Boot not having enough pre-relocation heap size for this.
> >
> > This series fixes this issue and also makes the board support more modern,
> > by enabling DM for SPL and migrating the IGEP boards to use upstream DTBs.
> >
> > [...]
>
> Applied to u-boot/master, thanks!

Thanks! And sorry for the spam with this series.

Best regards,
Javier