Re: [PATCH] common: spl: Enable Instruction cache after relocation in board_init_r

2025-03-24 Thread Prasanth Mantena
On 09:13, Tom Rini wrote: > On Mon, Mar 17, 2025 at 12:15:07PM +0530, Prasanth Babu Mantena wrote: > > > ICACHE is enabled in board_init_f which executes only before relocation. > > Instruction cache invalidation is needed after relocation as well in the > > common spl, which is taken care in the

Re: [PATCH] common: spl: Enable Instruction cache after relocation in board_init_r

2025-03-17 Thread Tom Rini
On Mon, Mar 17, 2025 at 12:15:07PM +0530, Prasanth Babu Mantena wrote: > ICACHE is enabled in board_init_f which executes only before relocation. > Instruction cache invalidation is needed after relocation as well in the > common spl, which is taken care in the u-boot init_sequence, but missing >

[PATCH] common: spl: Enable Instruction cache after relocation in board_init_r

2025-03-16 Thread Prasanth Babu Mantena
ICACHE is enabled in board_init_f which executes only before relocation. Instruction cache invalidation is needed after relocation as well in the common spl, which is taken care in the u-boot init_sequence, but missing for the spl. So, enable it at the start of board_init_r for spl, which invalidat