Re: [PATCH v3] board: rockchip: add Radxa ROCK 3 Model C

2024-07-22 Thread Maxim M. Moskalets
On 22.07.2024 13:28, Jonas Karlman wrote: > Hi Maxim, > > On 2024-07-22 09:49, Maxim Moskalets wrote: >> Based on rock-3a-rk3568_defconfig. >> Tesetd on v1.31 revision. > nit: small typo s/Tesetd/Tested/ > >> Board Specifications: >> - Rockchip RK3566 >> - 1/2/4GB LPDDR4 2112MT/s >> - eMMC

Re: [PATCH] cmd: add resize for FDT in bootelf

2024-06-30 Thread Maxim M. Moskalets
Hi Simon, On 29.06.2024 09:56, Simon Glass wrote: Hi Maxim, On Fri, 28 Jun 2024 at 09:34, Maxim Moskalets wrote: In some FDTs, there is not enough free memory to add nodes, so this operation fails. Signed-off-by: Maxim Moskalets --- cmd/elf.c | 2 ++ 1 file changed, 2 insertions(+)

Re: [PATCH v5] cmd: move ELF load and boot to lib/elf.c

2024-06-11 Thread Maxim M. Moskalets
On 06.06.2024 17:21, Tom Rini wrote: On Thu, Jun 06, 2024 at 09:02:43AM +0200, Heinrich Schuchardt wrote: On 6/5/24 20:43, Maxim Moskalets wrote: From: Maxim Moskalets Loading and running the ELF image is the responsibility of the library and should not be associated with the command line

Re: [PATCH] cmd: move ELF load and boot to lib/elf.c

2024-04-26 Thread Maxim M. Moskalets
On 26.04.2024 17:32, Heinrich Schuchardt wrote: On 26.04.24 11:11, Maxim Moskalets wrote: Loading and running the ELF image is the responsibility of the library and should not be associated with the command line interface. It is also required to run ELF images from FIT with the bootm command

Re: [PATCH] cmd: bootm: add ELF file support

2024-03-19 Thread Maxim M. Moskalets
Hi Sean On 19.03.2024 19:15, Sean Anderson wrote: Hi Maxim, On 3/19/24 12:10, Maxim Moskalets wrote: [You don't often get email from maximmo...@gmail.com. Learn why this is important at

Re: [PATCH v4] cmd: add FDT setup for bootelf by flag

2024-03-07 Thread Maxim M. Moskalets
On 07.03.2024 15:41, Tom Rini wrote: On Mon, Feb 26, 2024 at 09:35:53PM +0300, Maxim Moskalets wrote: From: Maxim Moskalets Added the ability to use FDT for ELF applications, required to run some OS. To make FDT setup, you need to set the -d fdt_addr_r cmd option for bootelf command.

Re: [PATCH v4] cmd: add FDT setup for bootelf by flag

2024-02-29 Thread Maxim M. Moskalets
Hello Tom, On 26.02.2024 21:35, Maxim Moskalets wrote: From: Maxim Moskalets Added the ability to use FDT for ELF applications, required to run some OS. To make FDT setup, you need to set the -d fdt_addr_r cmd option for bootelf command. Signed-off-by: Maxim Moskalets Cc: Tom Rini ---