Skip to content

u-boot: spl-da: align fastboot buffer based on malloc pool addr/size

Julien Masson requested to merge jmasson/malloc into main

U-Boot SPL is now using malloc pool implementation:

  • start: 0x5c000000
  • size: 0x9000000

The fastboot buffer has been placed just after that:

  • start: 0x65000000
  • size: 0x15000000

We increased the size since we have more space available.

Merge request reports