Re: [PATCH v4] cmd: sf: prevent overwriting the reserved memory

2024-09-20 Thread Tom Rini
On Fri, 13 Sep 2024 13:02:52 +0530, Prasad Kummari wrote: > Added LMB API to prevent SF command from overwriting reserved > memory areas. The current SPI code does not use LMB APIs for > loading data into memory addresses. To resolve this, LMB APIs > were added to check the load address of an SF c

Re: [PATCH v4] cmd: sf: prevent overwriting the reserved memory

2024-09-16 Thread Sughosh Ganu
On Mon, 16 Sept 2024 at 19:47, Vaishnav Achath wrote: > > Hi Sughosh, > > On 16/09/24 16:40, Sughosh Ganu wrote: > > On Mon, 16 Sept 2024 at 16:07, Vaishnav Achath wrote: > >> > >> Hi Sughosh, > >> > >> On 16/09/24 14:53, Sughosh Ganu wrote: > >>> On Mon, 16 Sept 2024 at 14:22, Vaishnav Achath w

Re: [PATCH v4] cmd: sf: prevent overwriting the reserved memory

2024-09-16 Thread Vaishnav Achath
Hi Sughosh, On 16/09/24 16:40, Sughosh Ganu wrote: On Mon, 16 Sept 2024 at 16:07, Vaishnav Achath wrote: Hi Sughosh, On 16/09/24 14:53, Sughosh Ganu wrote: On Mon, 16 Sept 2024 at 14:22, Vaishnav Achath wrote: Hi Sughosh, On 16/09/24 12:13, Sughosh Ganu wrote: On Mon, 16 Sept 2024 at 1

Re: [PATCH v4] cmd: sf: prevent overwriting the reserved memory

2024-09-16 Thread Sughosh Ganu
On Mon, 16 Sept 2024 at 16:07, Vaishnav Achath wrote: > > Hi Sughosh, > > On 16/09/24 14:53, Sughosh Ganu wrote: > > On Mon, 16 Sept 2024 at 14:22, Vaishnav Achath wrote: > >> > >> Hi Sughosh, > >> > >> On 16/09/24 12:13, Sughosh Ganu wrote: > >>> On Mon, 16 Sept 2024 at 11:47, Vaishnav Achath w

Re: [PATCH v4] cmd: sf: prevent overwriting the reserved memory

2024-09-16 Thread Vaishnav Achath
Hi Sughosh, On 16/09/24 14:53, Sughosh Ganu wrote: On Mon, 16 Sept 2024 at 14:22, Vaishnav Achath wrote: Hi Sughosh, On 16/09/24 12:13, Sughosh Ganu wrote: On Mon, 16 Sept 2024 at 11:47, Vaishnav Achath wrote: Hi Prasad, On 13/09/24 13:02, Prasad Kummari wrote: Added LMB API to prevent

Re: [PATCH v4] cmd: sf: prevent overwriting the reserved memory

2024-09-16 Thread Sughosh Ganu
On Mon, 16 Sept 2024 at 14:22, Vaishnav Achath wrote: > > Hi Sughosh, > > On 16/09/24 12:13, Sughosh Ganu wrote: > > On Mon, 16 Sept 2024 at 11:47, Vaishnav Achath wrote: > >> > >> Hi Prasad, > >> > >> On 13/09/24 13:02, Prasad Kummari wrote: > >>> Added LMB API to prevent SF command from overwri

Re: [PATCH v4] cmd: sf: prevent overwriting the reserved memory

2024-09-16 Thread Vaishnav Achath
Hi Sughosh, On 16/09/24 12:13, Sughosh Ganu wrote: On Mon, 16 Sept 2024 at 11:47, Vaishnav Achath wrote: Hi Prasad, On 13/09/24 13:02, Prasad Kummari wrote: Added LMB API to prevent SF command from overwriting reserved memory areas. The current SPI code does not use LMB APIs for loading dat

Re: [PATCH v4] cmd: sf: prevent overwriting the reserved memory

2024-09-15 Thread Sughosh Ganu
On Mon, 16 Sept 2024 at 11:47, Vaishnav Achath wrote: > > Hi Prasad, > > On 13/09/24 13:02, Prasad Kummari wrote: > > Added LMB API to prevent SF command from overwriting reserved > > memory areas. The current SPI code does not use LMB APIs for > > loading data into memory addresses. To resolve th

Re: [PATCH v4] cmd: sf: prevent overwriting the reserved memory

2024-09-15 Thread Vaishnav Achath
Hi Prasad, On 13/09/24 13:02, Prasad Kummari wrote: Added LMB API to prevent SF command from overwriting reserved memory areas. The current SPI code does not use LMB APIs for loading data into memory addresses. To resolve this, LMB APIs were added to check the load address of an SF command and e

Re: [PATCH v4] cmd: sf: prevent overwriting the reserved memory

2024-09-13 Thread Michal Simek
On 9/13/24 09:32, Prasad Kummari wrote: Added LMB API to prevent SF command from overwriting reserved memory areas. The current SPI code does not use LMB APIs for loading data into memory addresses. To resolve this, LMB APIs were added to check the load address of an SF command and ensure it d

[PATCH v4] cmd: sf: prevent overwriting the reserved memory

2024-09-13 Thread Prasad Kummari
Added LMB API to prevent SF command from overwriting reserved memory areas. The current SPI code does not use LMB APIs for loading data into memory addresses. To resolve this, LMB APIs were added to check the load address of an SF command and ensure it does not overwrite reserved memory addresses.