Re: [U-Boot] [PATCH] spi: Fix manual relocation calling more times

2019-09-20 Thread Michal Simek
On 20. 09. 19 10:26, Simon Goldschmidt wrote: > > > Michal Simek mailto:michal.si...@xilinx.com>> > schrieb am Fr., 20. Sep. 2019, 10:17: > > On 19. 09. 19 16:35, Simon Goldschmidt wrote: > > > > > > Michal Simek

Re: [U-Boot] [PATCH] spi: Fix manual relocation calling more times

2019-09-20 Thread Simon Goldschmidt
Michal Simek schrieb am Fr., 20. Sep. 2019, 10:17: > On 19. 09. 19 16:35, Simon Goldschmidt wrote: > > > > > > Michal Simek mailto:michal.si...@xilinx.com>> > > schrieb am Do., 19. Sep. 2019, 16:22: > > > > On 17. 09. 19 14:53, Simon Goldschmidt wrote: > > > On Tue, Sep 17, 2019 at 2:48

Re: [U-Boot] [PATCH] spi: Fix manual relocation calling more times

2019-09-20 Thread Michal Simek
On 19. 09. 19 16:35, Simon Goldschmidt wrote: > > > Michal Simek mailto:michal.si...@xilinx.com>> > schrieb am Do., 19. Sep. 2019, 16:22: > > On 17. 09. 19 14:53, Simon Goldschmidt wrote: > > On Tue, Sep 17, 2019 at 2:48 PM Michal Simek > mailto:michal.si...@xilinx.com>> wrote: >

Re: [U-Boot] [PATCH] spi: Fix manual relocation calling more times

2019-09-19 Thread Simon Goldschmidt
Michal Simek schrieb am Do., 19. Sep. 2019, 16:22: > On 17. 09. 19 14:53, Simon Goldschmidt wrote: > > On Tue, Sep 17, 2019 at 2:48 PM Michal Simek > wrote: > >> > >> On 17. 09. 19 14:43, Simon Goldschmidt wrote: > >>> On Tue, Sep 17, 2019 at 1:22 PM Michal Simek > wrote: > > From:

Re: [U-Boot] [PATCH] spi: Fix manual relocation calling more times

2019-09-19 Thread Michal Simek
On 17. 09. 19 14:53, Simon Goldschmidt wrote: > On Tue, Sep 17, 2019 at 2:48 PM Michal Simek wrote: >> >> On 17. 09. 19 14:43, Simon Goldschmidt wrote: >>> On Tue, Sep 17, 2019 at 1:22 PM Michal Simek >>> wrote: From: Ashok Reddy Soma When two instances of AXI QSPI with

Re: [U-Boot] [PATCH] spi: Fix manual relocation calling more times

2019-09-17 Thread Michal Simek
On 17. 09. 19 14:41, Jagan Teki wrote: > On Tue, Sep 17, 2019 at 4:52 PM Michal Simek wrote: >> >> From: Ashok Reddy Soma >> >> When two instances of AXI QSPI with flash are added and tested >> simultaneously the spi driver operations are relocated twice. >> As a result code is accessing

Re: [U-Boot] [PATCH] spi: Fix manual relocation calling more times

2019-09-17 Thread Simon Goldschmidt
On Tue, Sep 17, 2019 at 2:48 PM Michal Simek wrote: > > On 17. 09. 19 14:43, Simon Goldschmidt wrote: > > On Tue, Sep 17, 2019 at 1:22 PM Michal Simek > > wrote: > >> > >> From: Ashok Reddy Soma > >> > >> When two instances of AXI QSPI with flash are added and tested > >> simultaneously the

Re: [U-Boot] [PATCH] spi: Fix manual relocation calling more times

2019-09-17 Thread Michal Simek
On 17. 09. 19 14:43, Simon Goldschmidt wrote: > On Tue, Sep 17, 2019 at 1:22 PM Michal Simek wrote: >> >> From: Ashok Reddy Soma >> >> When two instances of AXI QSPI with flash are added and tested >> simultaneously the spi driver operations are relocated twice. >> As a result code is accessing

Re: [U-Boot] [PATCH] spi: Fix manual relocation calling more times

2019-09-17 Thread Simon Goldschmidt
On Tue, Sep 17, 2019 at 1:22 PM Michal Simek wrote: > > From: Ashok Reddy Soma > > When two instances of AXI QSPI with flash are added and tested > simultaneously the spi driver operations are relocated twice. > As a result code is accessing addresses outside of RAM when > relocated second time

Re: [U-Boot] [PATCH] spi: Fix manual relocation calling more times

2019-09-17 Thread Jagan Teki
On Tue, Sep 17, 2019 at 4:52 PM Michal Simek wrote: > > From: Ashok Reddy Soma > > When two instances of AXI QSPI with flash are added and tested > simultaneously the spi driver operations are relocated twice. > As a result code is accessing addresses outside of RAM when > relocated second time

[U-Boot] [PATCH] spi: Fix manual relocation calling more times

2019-09-17 Thread Michal Simek
From: Ashok Reddy Soma When two instances of AXI QSPI with flash are added and tested simultaneously the spi driver operations are relocated twice. As a result code is accessing addresses outside of RAM when relocated second time which is causing a crash. Tested on Microblaze. Similar change