Re: [U-Boot] [PATCH] arm: bugfix: Move vector table before jumping relocated code

2012-12-25 Thread Joel A Fernandes
On Tue, Dec 25, 2012 at 5:18 PM, Tetsuyuki Kobayashi wrote: > Hello, Joel > > > (2012/12/22 0:17), Joel A Fernandes wrote: >> >> Hi Tesuyuki and friends, >> >> I had a question with this patch. >> >> On Wed, Jun 27, 2012 at 8:27 PM, Tetsuyuki Kobayashi >> wrote: > > This patch moves vecto

Re: [U-Boot] [PATCH] arm: bugfix: Move vector table before jumping relocated code

2012-12-25 Thread Tetsuyuki Kobayashi
Hello, Joel (2012/12/22 0:17), Joel A Fernandes wrote: Hi Tesuyuki and friends, I had a question with this patch. On Wed, Jun 27, 2012 at 8:27 PM, Tetsuyuki Kobayashi wrote: This patch moves vector table before jumping relocated code. Signed-off-by: Tetsuyuki Kobayashi --- arch/arm/cpu/a

Re: [U-Boot] [PATCH] arm: bugfix: Move vector table before jumping relocated code

2012-12-21 Thread Joel A Fernandes
Hi Tesuyuki and friends, I had a question with this patch. On Wed, Jun 27, 2012 at 8:27 PM, Tetsuyuki Kobayashi wrote: >>> This patch moves vector table before jumping relocated code. >>> >>> Signed-off-by: Tetsuyuki Kobayashi >>> --- >>> arch/arm/cpu/armv7/start.S | 12 >>> 1

Re: [U-Boot] [PATCH] arm: bugfix: Move vector table before jumping relocated code

2012-07-05 Thread Albert ARIBAUD
Hi Tetsuyuki, On Mon, 25 Jun 2012 21:40:57 +0900, Tetsuyuki Kobayashi wrote: > Interrupts and exceptions doesn't work in relocated code. > It badly use IRQ_STACK_START_IN in rom area as interrupt stack. > It is because the vecotr table is not moved to ram area. > This patch moves vector table bef

Re: [U-Boot] [PATCH] arm: bugfix: Move vector table before jumping relocated code

2012-07-05 Thread Albert ARIBAUD
Hi Tetsuyuki, Stephen, On Tue, 26 Jun 2012 10:24:24 -0600, Stephen Warren wrote: > On 06/25/2012 07:03 PM, Tetsuyuki Kobayashi wrote: > > Hello, > > > > (06/26/2012 12:10 AM), Stephen Warren wrote: > >> On 06/25/2012 06:40 AM, Tetsuyuki Kobayashi wrote: > >>> Interrupts and exceptions doesn't wo

Re: [U-Boot] [PATCH] arm: bugfix: Move vector table before jumping relocated code

2012-06-27 Thread Tetsuyuki Kobayashi
Hi Tom and all, (2012/06/28 3:23), Tom Rini wrote: On Mon, Jun 25, 2012 at 09:40:57PM +0900, Tetsuyuki Kobayashi wrote: Interrupts and exceptions doesn't work in relocated code. It badly use IRQ_STACK_START_IN in rom area as interrupt stack. It is because the vecotr table is not moved to ram a

Re: [U-Boot] [PATCH] arm: bugfix: Move vector table before jumping relocated code

2012-06-27 Thread Tom Rini
On Mon, Jun 25, 2012 at 09:40:57PM +0900, Tetsuyuki Kobayashi wrote: > Interrupts and exceptions doesn't work in relocated code. > It badly use IRQ_STACK_START_IN in rom area as interrupt stack. > It is because the vecotr table is not moved to ram area. > This patch moves vector table before jumpi

Re: [U-Boot] [PATCH] arm: bugfix: Move vector table before jumping relocated code

2012-06-26 Thread Stephen Warren
On 06/25/2012 07:03 PM, Tetsuyuki Kobayashi wrote: > Hello, > > (06/26/2012 12:10 AM), Stephen Warren wrote: >> On 06/25/2012 06:40 AM, Tetsuyuki Kobayashi wrote: >>> Interrupts and exceptions doesn't work in relocated code. >>> It badly use IRQ_STACK_START_IN in rom area as interrupt stack. >>> I

Re: [U-Boot] [PATCH] arm: bugfix: Move vector table before jumping relocated code

2012-06-25 Thread Tetsuyuki Kobayashi
Hello, (06/26/2012 12:10 AM), Stephen Warren wrote: > On 06/25/2012 06:40 AM, Tetsuyuki Kobayashi wrote: >> Interrupts and exceptions doesn't work in relocated code. >> It badly use IRQ_STACK_START_IN in rom area as interrupt stack. >> It is because the vecotr table is not moved to ram area. >> Th

Re: [U-Boot] [PATCH] arm: bugfix: Move vector table before jumping relocated code

2012-06-25 Thread Stephen Warren
On 06/25/2012 06:40 AM, Tetsuyuki Kobayashi wrote: > Interrupts and exceptions doesn't work in relocated code. > It badly use IRQ_STACK_START_IN in rom area as interrupt stack. > It is because the vecotr table is not moved to ram area. > This patch moves vector table before jumping relocated code.

[U-Boot] [PATCH] arm: bugfix: Move vector table before jumping relocated code

2012-06-25 Thread Tetsuyuki Kobayashi
Interrupts and exceptions doesn't work in relocated code. It badly use IRQ_STACK_START_IN in rom area as interrupt stack. It is because the vecotr table is not moved to ram area. This patch moves vector table before jumping relocated code. Signed-off-by: Tetsuyuki Kobayashi --- arch/arm/cpu/armv