Hi to all and especially to Albert ARIBAUD, who is I think the maintainer of my
board.
I’m new to U-Boot and I’m trying to solve an issue regarding NAND Flash.
Issue:
After system reboot U-Boot loads the same Kernel from NAND into RAM without any
error message, whoever the Kernel says ‘Verifyin
On Wed, Aug 14, 2024 at 11:19 AM wrote:
> Phytec pcm052 (Vybrid vf610), Micron MT29F4G16 …., U-Boot Timesys 2013.07,
> Kernel 3.13
That's super old.
Please run U-Boot 2024.07 with a modern kernel and check if the
problem still exists.
On 8/14/24 12:17 AM, Chintan Vankar wrote:
On 13/08/24 23:57, Andrew Davis wrote:
On 8/12/24 6:48 AM, Chintan Vankar wrote:
From: Kishon Vijay Abraham I
In order to support Ethernet boot on AM62x, probe AM65 CPSW NUSS
driver in board_init_f().
Signed-off-by: Kishon Vijay Abraham I
Signed-
On Wed, Aug 14, 2024 at 09:42:08AM -0400, Raymond Mao wrote:
> Hi Tom,
>
> On Fri, 2 Aug 2024 at 11:34, Raymond Mao wrote:
>
> > Hi Tom,
> >
> > On Thu, 1 Aug 2024 at 16:46, Tom Rini wrote:
> >
> >> On Wed, Jul 31, 2024 at 10:25:10AM -0700, Raymond Mao wrote:
> >> >
> >> > Integrate MbedTLS v3.
On 14.08.24 11:41, Jan Kiszka wrote:
> On 13.08.24 14:52, Nishanth Menon wrote:
>> On 11:16-20240813, Jan Kiszka wrote:
>>> Hi all,
>>>
>>> I'm trying to migrate the TI AM65x IOT2050 boards to OF_UPSTREAM but I'm
>>> facing issues because I need to still build the u-boot-only overlays. It
>>> is al
Hi Tom,
On Wed, 14 Aug 2024 at 11:07, Tom Rini wrote:
> On Wed, Aug 14, 2024 at 09:42:08AM -0400, Raymond Mao wrote:
> > Hi Tom,
> >
> > On Fri, 2 Aug 2024 at 11:34, Raymond Mao wrote:
> >
> > > Hi Tom,
> > >
> > > On Thu, 1 Aug 2024 at 16:46, Tom Rini wrote:
> > >
> > >> On Wed, Jul 31, 2024
On Sun, Aug 11, 2024 at 08:50:21AM -0600, Simon Glass wrote:
> Hi Tom,
>
> On Thu, 8 Aug 2024 at 14:06, Tom Rini wrote:
> >
> > On Thu, Aug 08, 2024 at 12:44:05PM -0600, Simon Glass wrote:
> > > Hi Heinrick, Tom,
> > >
> > > On Tue, 6 Aug 2024 at 19:56, Tom Rini wrote:
> > > >
> > > > On Wed, Au
On Wed, Aug 14, 2024 at 01:49:43PM -0400, Raymond Mao wrote:
> Hi Tom,
>
> On Wed, 14 Aug 2024 at 11:07, Tom Rini wrote:
>
> > On Wed, Aug 14, 2024 at 09:42:08AM -0400, Raymond Mao wrote:
> > > Hi Tom,
> > >
> > > On Fri, 2 Aug 2024 at 11:34, Raymond Mao wrote:
> > >
> > > > Hi Tom,
> > > >
> >
From: Fabio Estevam
CONFIG_DM_MMC and CONFIG_DM_SPI are alway selected so the mmc
and spi board code can be safely removed.
Remove it to make the code cleaner.
Signed-off-by: Fabio Estevam
---
board/tq/tqma6/tqma6.c | 126 -
1 file changed, 126 deletion
From: Fabio Estevam
With DM_SERIAL in place, there is no need to setup the UART pins
in the board code.
The UART pins are setup via devicetree, thanks to DM.
Remove the unneeded code.
Signed-off-by: Fabio Estevam
---
arch/arm/dts/imx6qdl-mba6-u-boot.dtsi | 16
board/tq/tqma6
From: Fabio Estevam
The PAD_CTRL definitions are not used anywhere.
Remove them to make the code cleaner.
Signed-off-by: Fabio Estevam
---
board/tq/tqma6/tqma6_mba6.c | 19 ---
1 file changed, 19 deletions(-)
diff --git a/board/tq/tqma6/tqma6_mba6.c b/board/tq/tqma6/tqma6_mba
On Sat, Aug 03, 2024 at 03:29:17PM +0300, Mikhail Kalashnikov wrote:
>
> On 02.08.2024 01:55, Chris Morgan wrote:
> > From: Jernej Skrabec
> >
> > Adjust H616 LPDDR4 DRAM settings to be in line with vendor driver.
> >
> > Signed-off-by: Jernej Skrabec
> > Tested-by: Chris Morgan
> > ---
> >
Whole series tested on Galaxy Z Fold 5 (q5q) with sm8550 (kailua) SoC,
with these changes i can confirm u-boot booting to console. Without it
it's stuck at boot, as bootloader dtb is never parsed.
Tested-by: Luka Panio
Best Regards,
Luka
On 8/13/2024 11:40 AM, Manorit Chawdhry wrote:
MPU clock had been missing. Distinguish multiple clocks with clock-names
and add MPU clock as well.
Signed-off-by: Manorit Chawdhry
---
arch/arm/dts/k3-am69-r5-sk.dts | 3 ++-
arch/arm/dts/k3-j7200-r5-common-proc-board.dts | 3
On 8/13/2024 11:40 AM, Manorit Chawdhry wrote:
Different devices have different MPU clk and dev ID. Currently it had
been hardcoded. Move it to DT based extraction.
Signed-off-by: Manorit Chawdhry
---
drivers/misc/k3_avs.c | 37 +
1 file changed, 37 inse
On 8/13/2024 11:40 AM, Manorit Chawdhry wrote:
Initialize AVS Class 0.
Signed-off-by: Manorit Chawdhry
---
arch/arm/mach-k3/j721s2/j721s2_init.c | 10 ++
1 file changed, 10 insertions(+)
diff --git a/arch/arm/mach-k3/j721s2/j721s2_init.c
b/arch/arm/mach-k3/j721s2/j721s2_init.c
in
On 8/13/2024 11:40 AM, Manorit Chawdhry wrote:
Add bootph-pre-ram property to VTM node and the pmic node.
Signed-off-by: Manorit Chawdhry
---
arch/arm/dts/k3-j721s2-r5-common-proc-board.dts | 9 +
1 file changed, 9 insertions(+)
diff --git a/arch/arm/dts/k3-j721s2-r5-common-proc-b
On 8/13/2024 11:40 AM, Manorit Chawdhry wrote:
Add AVS and PMIC regulator configs
Signed-off-by: Manorit Chawdhry
---
configs/am68_sk_r5_defconfig| 4
configs/j721s2_evm_r5_defconfig | 6 ++
2 files changed, 10 insertions(+)
diff --git a/configs/am68_sk_r5_defconfig b/config
101 - 118 of 118 matches
Mail list logo