Re: [PATCH v3] fastboot: Add OEM run command

2022-12-31 Thread Heiko Schocher
Hello Sean, On 16.12.22 19:20, Sean Anderson wrote: > This adds the UUU UCmd functionality as an OEM command. While the > fastboot tool allows sending arbitrary commands as long as they are > prefixed with "oem". This allows running generic U-Boot commands over > fastboot without UUU, which is

Re: [PATCH] i2c: add dm_i2c_probe_chip() to detect chip presence

2022-12-31 Thread Heiko Schocher
Hello Johan, On 19.12.22 20:57, Johan Korsnes wrote: > Add function to determine whether a chip is present. This check is > typically implemented by writing the chip address to the bus and > checking that the chip replies with an ACK. > > The already existing dm_i2c_probe() will attempt to

Re: [PATCH] i2c: uniphier-f: correct error recovery

2022-12-31 Thread Heiko Schocher
Hello Dai Okamura, On 09.12.22 12:38, Dai Okamura wrote: > The uniphier i2c block can recognize some handshake errors. > But driver handles all error detections as no error if no timeout. > So this makes unrecoverable state. > > This replaces the return values with the right ones to tell the i2c

Re: [PATCH u-boot] powerpc/mpc85xx: socrates: Re-enable building u-boot-socrates.bin

2022-12-31 Thread Heiko Schocher
Hello Pali, On 31.12.22 16:37, Pali Rohár wrote: > On Saturday 31 December 2022 16:31:57 Heiko Schocher wrote: >> Hello Pali, >> >> On 31.12.22 14:36, Heiko Schocher wrote: >>> Hello Pali, >>> >>> On 31.12.22 13:58, Pali Rohár wrote: On Saturday 31 December 2022 10:36:07 Heiko Schocher

Re: [PATCH v4 0/5] cmd: source: Support specifying config name

2022-12-31 Thread Tom Rini
On Mon, 12 Dec 2022 14:12:06 -0500, Sean Anderson wrote: > This series adds support for using configs with the source command. See > the third patch for details. > > Changes in v4: > - Add fallback for fit_config_verify > - Fix fit_conf_get_prop_node missing a phase > > [...] Applied to

Re: [PATCH] imx7d-pico: Fix the name of the u-boot.dtsi file

2022-12-31 Thread Tom Rini
On Sat, Dec 31, 2022 at 01:25:14PM -0300, Fabio Estevam wrote: > Since commit 2f96d4dd95f8 ("imx7s/d: synchronise device trees with linux") > the imx7d-pico board no longer boots. > > The reason is that prior to the above commit there was an explicit > inclusion of

Re: [u-boot][master][PATCH 1/3] pico-imx7d: add support for 2GB memory SoMs

2022-12-31 Thread Fabio Estevam
Hi Benjamin, On Sun, Dec 18, 2022 at 9:52 AM wrote: > > From: Benjamin Szőke > > Take over codes from Techenxion to support SoMs with 2GB DDR3. > > Signed-off-by: Benjamin Szőke > --- > board/technexion/pico-imx7d/Makefile | 2 +- > .../pico-imx7d/{spl.c => pico-imx7d_spl.c}| 30

[PATCH] imx7d-pico: Fix the name of the u-boot.dtsi file

2022-12-31 Thread Fabio Estevam
Since commit 2f96d4dd95f8 ("imx7s/d: synchronise device trees with linux") the imx7d-pico board no longer boots. The reason is that prior to the above commit there was an explicit inclusion of arch/arm/dts/imx7d-pico-u-boot.dtsi inside imx7d-pico.dtsi. After the syncing with the Linux upstream

Re: [PATCH u-boot] powerpc/mpc85xx: socrates: Re-enable building u-boot-socrates.bin

2022-12-31 Thread Pali Rohár
On Saturday 31 December 2022 16:31:57 Heiko Schocher wrote: > Hello Pali, > > On 31.12.22 14:36, Heiko Schocher wrote: > > Hello Pali, > > > > On 31.12.22 13:58, Pali Rohár wrote: > >> On Saturday 31 December 2022 10:36:07 Heiko Schocher wrote: > >>> Hello Pali, > >>> > >>> On 28.12.22 19:18,

Re: [PATCH u-boot] powerpc/mpc85xx: socrates: Re-enable building u-boot-socrates.bin

2022-12-31 Thread Heiko Schocher
Hello Pali, On 31.12.22 14:36, Heiko Schocher wrote: > Hello Pali, > > On 31.12.22 13:58, Pali Rohár wrote: >> On Saturday 31 December 2022 10:36:07 Heiko Schocher wrote: >>> Hello Pali, >>> >>> On 28.12.22 19:18, Pali Rohár wrote: U-Boot build system builds final U-Boot binary for socrates

Re: [RFC PATCH v5 24/24] DO NOT MERGE: only to make CI happy

2022-12-31 Thread Francis Laniel
Le vendredi 23 décembre 2022, 05:15:50 CET Marek Vasut a écrit : > On 11/1/22 20:20, Francis Laniel wrote: > > This commit set CONFIG_HUSH_PARSER_2021 as the default to trigger the CI > > with this parser. > > > > Nonetheless, Some boards are not compatible with new 2021 hush parser: > > > > 1.

Re: [PATCH u-boot] powerpc/mpc85xx: socrates: Re-enable building u-boot-socrates.bin

2022-12-31 Thread Heiko Schocher
Hello Pali, On 31.12.22 13:58, Pali Rohár wrote: > On Saturday 31 December 2022 10:36:07 Heiko Schocher wrote: >> Hello Pali, >> >> On 28.12.22 19:18, Pali Rohár wrote: >>> U-Boot build system builds final U-Boot binary for socrates board in custom >>> file u-boot-socrates.bin (instead of

Re: [PATCH u-boot] powerpc/mpc85xx: socrates: Re-enable building u-boot-socrates.bin

2022-12-31 Thread Pali Rohár
On Saturday 31 December 2022 10:36:07 Heiko Schocher wrote: > Hello Pali, > > On 28.12.22 19:18, Pali Rohár wrote: > > U-Boot build system builds final U-Boot binary for socrates board in custom > > file u-boot-socrates.bin (instead of standard u-boot.bin). Output target > > file

[PATCH 1/1] efi_loader: fix building aarch64 EFI binaries

2022-12-31 Thread Heinrich Schuchardt
While our EFI binaries execute without problems on EDK II they crash on a Lenovo X13s. Let our binaries look more like what EDK II produces: * move all writable data to a .data section * align sections to 4 KiB boundaries (matching EFI page size) Signed-off-by: Heinrich Schuchardt ---

Re: [PATCH u-boot] powerpc/mpc85xx: socrates: Re-enable building u-boot-socrates.bin

2022-12-31 Thread Heiko Schocher
Hello Pali, On 28.12.22 19:18, Pali Rohár wrote: > U-Boot build system builds final U-Boot binary for socrates board in custom > file u-boot-socrates.bin (instead of standard u-boot.bin). Output target > file u-boot-socrates.bin is generated by binman as defined in board binman > config file

Re: Pull request: u-boot-rockchip/for-next

2022-12-31 Thread Peter Robinson
Hi Kever and Tom, > >> The build for pinephone-pro-rk3399 fails. Note that it's not that > >> CONFIG_SYS_TEXT_BASE became CFG_SYS_TEXT_BASE but rather it was renamed > >> too CONFIG_TEXT_BASE, as I see that's where the build fails: > >> $ make > >>

[PATCH v2 2/2] rockchip: Add initial support for the PINE64 Pinephone Pro

2022-12-31 Thread Peter Robinson
The Pinephone Pro is another device by PINE64. It's closely related to the Pinebook Pro of which this initial support is derived from. Specification: - A variant of the Rockchip RK3399 - A 6 inch 720*1440 DSI display - Front and rear cameras - Type-C interface with alt mode display (DP 1.2) and

[PATCH v2 1/2] arm64: dts: rk3399: Add upstream Pinephone Pro dts

2022-12-31 Thread Peter Robinson
Initial support for the PinePhone Pro has now landed upstream in Linux 6.1 RC1 so sync the dts from 6.2-rc1 for initial support. Signed-off-by: Peter Robinson --- arch/arm/dts/Makefile | 1 + arch/arm/dts/rk3399-pinephone-pro.dts | 474 ++ 2 files

[PATCH v2 0/2] Initial support for Pinephone Pro

2022-12-31 Thread Peter Robinson
This adds initial support for the PINE64 Pinephone Pro. It's a rebase to upstream core rk3399 DT pieces, and the addition of the upstream PPP DT from 6.2-rc1 and the U-Boot pieces are based on my work on the Pinebook Pro. Changes v2: - Drop the rk3399.dtsi sync for time being, causing issues