Re: [U-Boot] [PATCH] arm: use common instructions applicable to armv7m & other arm archs

2016-02-01 Thread Vikas MANOCHA
Thanks Albert, > I would therefore limit the commit message to just this: > > This patch cleans the code by using instructions allowed for > ARMv7-M as well as other Arm architectures. I will update the commit message accordingly & send v2. Rgds, Vikas > -Original Message-

Re: [U-Boot] [PATCH] arm: use common instructions applicable to armv7m & other arm archs

2016-01-31 Thread Albert ARIBAUD
Hello Vikas, On Sat, 30 Jan 2016 00:36:55 +0100, Vikas MANOCHA wrote: > Hi Albert, > > > -Original Message- > > From: Albert ARIBAUD [mailto:albert.u.b...@aribaud.net] > > Sent: Friday, January 29, 2016 9:16 AM > > To: Vikas MANOCHA > > Cc: u-boot@lists.denx.de;

Re: [U-Boot] [PATCH] arm: use common instructions applicable to armv7m & other arm archs

2016-01-29 Thread Albert ARIBAUD
Hello Vikas, On Mon, 18 Jan 2016 18:52:57 -0800, Vikas Manocha wrote: > BIC instruction to clear the SP is not allowed in armv7m & is deprecated > in ARMv6T2 & above. This patch cleans the code by using instructions allowed > for armv7m as well as other Arm archs. I am not

Re: [U-Boot] [PATCH] arm: use common instructions applicable to armv7m & other arm archs

2016-01-29 Thread Vikas MANOCHA
Hi Albert, > -Original Message- > From: Albert ARIBAUD [mailto:albert.u.b...@aribaud.net] > Sent: Friday, January 29, 2016 9:16 AM > To: Vikas MANOCHA > Cc: u-boot@lists.denx.de; Simon Glass; re...@wp.pl; Bo Shen; Przemyslaw > Marczak > Subject: Re: [PATCH] arm: use common instructions

[U-Boot] [PATCH] arm: use common instructions applicable to armv7m & other arm archs

2016-01-18 Thread Vikas Manocha
BIC instruction to clear the SP is not allowed in armv7m & is deprecated in ARMv6T2 & above. This patch cleans the code by using instructions allowed for armv7m as well as other Arm archs. Signed-off-by: Vikas Manocha --- arch/arm/lib/crt0.S | 25 +++--

Re: [U-Boot] [PATCH] arm: use common instructions applicable to armv7m & other arm archs

2016-01-18 Thread Simon Glass
On 18 January 2016 at 19:52, Vikas Manocha wrote: > BIC instruction to clear the SP is not allowed in armv7m & is deprecated > in ARMv6T2 & above. This patch cleans the code by using instructions allowed > for armv7m as well as other Arm archs. > > Signed-off-by: Vikas