~thopiekar/u-boot/+git/u-boot:u-boot-2023.07.y

Last commit made on 2023-07-11
Get this branch:
git clone -b u-boot-2023.07.y https://git.launchpad.net/~thopiekar/u-boot/+git/u-boot

Branch merges

Branch information

Name:
u-boot-2023.07.y
Repository:
lp:~thopiekar/u-boot/+git/u-boot

Recent commits

83cdab8... by Tom Rini <email address hidden>

Prepare v2023.07.02

Take the v2023.07 tag, which reported to be v2023.07-rc6 still, and
change this to be v2023.07.02 (as I made a v2023.07.01 incorrectly).

Signed-off-by: Tom Rini <email address hidden>

05aa651... by Tom Rini <email address hidden>

Prepare v2023.07

Signed-off-by: Tom Rini <email address hidden>

0beb649... by Eugen Hristev <email address hidden>

MAINTAINERS: correct at91 tree link

This was not done when the tree name was changed, fix it now.

Signed-off-by: Eugen Hristev <email address hidden>

923de76... by Heinrich Schuchardt

tools: spkgimage: correct printf specifier

Compiling on armv7 results in:

tools/renesas_spkgimage.c: In function ‘spkgimage_parse_config_line’:
tools/renesas_spkgimage.c:76:66: warning: format ‘%ld’ expects
argument of type ‘long int’, but argument 3 has type ‘size_t’
{aka ‘unsigned int’} [-Wformat=]
   76 | "config error: unknown keyword on line %ld\n",
      | ~~^
      | |
      | long int
      | %d
   77 | line_num);
      | ~~~~~~~~
      | |
      | size_t {aka unsigned int}

The correct printf specifier for size_t is '%zu'.

Fixes: afdfcb11f97c ("tools: spkgimage: add Renesas SPKG format")
Signed-off-by: Heinrich Schuchardt <email address hidden>
Reviewed-by: Marek Vasut <email address hidden>

92be5e4... by Fabio Estevam <email address hidden>

colibri-imx7: Call fdt_increase_size()

For changing the USB OTG node status from "okay" to "disabled" more
space is needed, so call fdt_increase_size() to avoid the following
error:

```
 U-Boot 2023.07-rc5-0.0.0-devel+git.580eb31199be (Jun 27 2023 - 13:39:58 +0000)
 CPU: Freescale i.MX7S rev1.2 800 MHz (running at 792 MHz)
 CPU: Extended Commercial temperature grade (-20C to 105C) at 30C
 Reset cause: POR
 DRAM: initcall sequence 8786eafc failed at call 8781b351 (err=-3)
 ### ERROR ### Please RESET the board ###
```

Ideally, fdt_status_disabled() should call fdt_increase_size() internally,
so that there would be no need for manually calling it in board code.

Do it manually for now to fix the regression.

Based on the code from board/CZ.NIC/turris_omnia/turris_omnia.c.

Reported-by: Francesco Dolcini <email address hidden>
Signed-off-by: Fabio Estevam <email address hidden>
Reviewed-by: Francesco Dolcini <email address hidden>
Tested-by: Francesco Dolcini <email address hidden> # Toradex Colibri iMX7S

703bb92... by Eugen Hristev <email address hidden>

git-mailrc: add alias for Eugen Hristev

add my patchwork alias

Signed-off-by: Eugen Hristev <email address hidden>

e1bebc1... by Tom Rini <email address hidden>

Prepare v2023.07-rc6

Signed-off-by: Tom Rini <email address hidden>

1b8a1be... by Fabio Estevam <email address hidden>

spl: spl_legacy: Fix spl_end address

Currently, spl_end points to the __bss_end address, which
is an external RAM address instead of the end of the SPL text
section in the internal RAM.

This causes boot failures on imx6-colibri, for example:

```
Trying to boot from MMC1
SPL: Image overlaps SPL
resetting ...
```
Fix this problem by assigning spl_end to _image_binary_end, as this
symbol properly represents the end of the SPL text section.

From u-boot-spl.map:

.end
 *(.__end)
                0x00000000009121a4 _image_binary_end = .

Fixes: 77aed22b48ab ("spl: spl_legacy: Add extra address checks")
Reported-by: Francesco Dolcini <email address hidden>
Signed-off-by: Fabio Estevam <email address hidden>
Tested-by: Tom Rini <email address hidden>
Reviewed-by: Marek Vasut <email address hidden>
Tested-by: Marek Vasut <email address hidden> # DH i.MX6Q DHCOM PDK2

1758b64... by Fabio Estevam <email address hidden>

microblaze: u-boot-spl.lds: Pass _image_binary_end

Pass _image_binary_end to make a standard way to indicate the end
of the text section in SPL.

The motivation for this is to have a uniform way to handle
the SPL boundary checks.

Signed-off-by: Fabio Estevam <email address hidden>
Reviewed-by: Marek Vasut <email address hidden>

a1ddcf7... by Fabio Estevam <email address hidden>

sunxi: u-boot-spl.lds: Pass _image_binary_end

Pass _image_binary_end to make a standard way to indicate the end
of the text section in SPL.

The motivation for this is to have a uniform way to handle
the SPL boundary checks.

Signed-off-by: Fabio Estevam <email address hidden>
Reviewed-by: Marek Vasut <email address hidden>