019-v6.5-arm64-dts-mt7986-increase-bl2-partition-on-NAND-of-B.patch 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. From 6dd3b939370094eb79529683be84500f3c757404 Mon Sep 17 00:00:00 2001
  2. From: Daniel Golle <[email protected]>
  3. Date: Tue, 6 Jun 2023 16:43:20 +0100
  4. Subject: [PATCH 19/19] arm64: dts: mt7986: increase bl2 partition on NAND of
  5. Bananapi R3
  6. The bootrom burned into the MT7986 SoC will try multiple locations on
  7. the SPI-NAND flash to load bl2 in case the bl2 image located at the the
  8. previously attempted offset is corrupt.
  9. Use 0x100000 instead of 0x80000 as partition size for bl2 on SPI-NAND,
  10. allowing for up to four redundant copies of bl2 (typically sized a
  11. bit less than 0x40000).
  12. Fixes: 8e01fb15b8157 ("arm64: dts: mt7986: add Bananapi R3")
  13. Signed-off-by: Daniel Golle <[email protected]>
  14. Link: https://lore.kernel.org/r/[email protected]
  15. Signed-off-by: Matthias Brugger <[email protected]>
  16. ---
  17. .../boot/dts/mediatek/mt7986a-bananapi-bpi-r3-nand.dtso | 6 +++---
  18. 1 file changed, 3 insertions(+), 3 deletions(-)
  19. --- a/arch/arm64/boot/dts/mediatek/mt7986a-bananapi-bpi-r3-nand.dtso
  20. +++ b/arch/arm64/boot/dts/mediatek/mt7986a-bananapi-bpi-r3-nand.dtso
  21. @@ -29,13 +29,13 @@
  22. partition@0 {
  23. label = "bl2";
  24. - reg = <0x0 0x80000>;
  25. + reg = <0x0 0x100000>;
  26. read-only;
  27. };
  28. - partition@80000 {
  29. + partition@100000 {
  30. label = "reserved";
  31. - reg = <0x80000 0x300000>;
  32. + reg = <0x100000 0x280000>;
  33. };
  34. partition@380000 {