Re: [U-Boot] [PATCH] armv7m: Add SysTick timer driver

2017-02-13 Thread Phil Edworthy
Kamil Lulko <kamil.lu...@gmail.com>; Vikas MANOCHA > <vikas.mano...@st.com>; Michael Kurz <michi.k...@gmail.com>; > > Albert Aribaud <albert.u.b...@aribaud.net>; U-Boot Mailing List b...@lists.denx.de> > > Subject: RE: [U-Boot] [PATCH] armv7m: Add Sy

Re: [U-Boot] [PATCH] armv7m: Add SysTick timer driver

2017-02-13 Thread Phil Edworthy
Hi Vikas, On 12 February 2017 20:53, Vikas MANOCHA wrote: > > On Fri, Feb 03, 2017 at 02:48:40PM +, Phil Edworthy wrote: > > > > > The SysTick is a 24-bit down counter that is found on all ARM Cortex > > > M3, M4, M7 devices and is always located at a fixed address. > > > > > > Signed-off-by:

Re: [U-Boot] [PATCH] armv7m: Add SysTick timer driver

2017-02-12 Thread Vikas MANOCHA
; Michael Kurz <michi.k...@gmail.com>; > Albert Aribaud <albert.u.b...@aribaud.net>; U-Boot Mailing List > <u-boot@lists.denx.de> > Subject: RE: [U-Boot] [PATCH] armv7m: Add SysTick timer driver > > Hi Tom, > > On 07 February 2017 14:23, Tom Rini wrote: > &

Re: [U-Boot] [PATCH] armv7m: Add SysTick timer driver

2017-02-12 Thread Vikas MANOCHA
gt; > Cc: Albert Aribaud <albert.u.b...@aribaud.net>; u-boot@lists.denx.de; Kamil > Lulko <kamil.lu...@gmail.com> > Subject: Re: [U-Boot] [PATCH] armv7m: Add SysTick timer driver > > On Fri, Feb 03, 2017 at 02:48:40PM +, Phil Edworthy wrote: > > > The SysTick is a 24

Re: [U-Boot] [PATCH] armv7m: Add SysTick timer driver

2017-02-07 Thread Phil Edworthy
Hi Tom, On 07 February 2017 14:23, Tom Rini wrote: > On Tue, Feb 07, 2017 at 02:19:39PM +, Phil Edworthy wrote: > > Hi Kamil, > > > > On 07 February 2017 14:12, Kamil Lulko wrote: > > > On Mon, Feb 6, 2017 at 12:16 AM, Tom Rini wrote: > > > > On Fri, Feb 03, 2017 at

Re: [U-Boot] [PATCH] armv7m: Add SysTick timer driver

2017-02-07 Thread Tom Rini
On Tue, Feb 07, 2017 at 02:19:39PM +, Phil Edworthy wrote: > Hi Kamil, > > On 07 February 2017 14:12, Kamil Lulko wrote: > > On Mon, Feb 6, 2017 at 12:16 AM, Tom Rini wrote: > > > On Fri, Feb 03, 2017 at 02:48:40PM +, Phil Edworthy wrote: > > > > > > > The SysTick is

Re: [U-Boot] [PATCH] armv7m: Add SysTick timer driver

2017-02-07 Thread Phil Edworthy
Hi Kamil, On 07 February 2017 14:12, Kamil Lulko wrote: > On Mon, Feb 6, 2017 at 12:16 AM, Tom Rini wrote: > > On Fri, Feb 03, 2017 at 02:48:40PM +, Phil Edworthy wrote: > > > > > The SysTick is a 24-bit down counter that is found on all ARM Cortex > > > M3, M4, M7

Re: [U-Boot] [PATCH] armv7m: Add SysTick timer driver

2017-02-07 Thread Kamil Lulko
On Mon, Feb 6, 2017 at 12:16 AM, Tom Rini wrote: > > On Fri, Feb 03, 2017 at 02:48:40PM +, Phil Edworthy wrote: > > > The SysTick is a 24-bit down counter that is found on all ARM Cortex > > M3, M4, M7 devices and is always located at a fixed address. > > > >

Re: [U-Boot] [PATCH] armv7m: Add SysTick timer driver

2017-02-05 Thread Tom Rini
On Fri, Feb 03, 2017 at 02:48:40PM +, Phil Edworthy wrote: > The SysTick is a 24-bit down counter that is found on all ARM Cortex > M3, M4, M7 devices and is always located at a fixed address. > > Signed-off-by: Phil Edworthy > --- > arch/arm/cpu/armv7m/Makefile

Re: [U-Boot] [PATCH] armv7m: Add SysTick timer driver

2017-02-05 Thread Albert ARIBAUD
Hi Phil, Actually this is not my /new/ e-mail address, the u-boot one should work. I am in the process of fixing my access to it. Le Fri, 3 Feb 2017 14:53:06 +, Phil Edworthy a écrit : > The SysTick is a 24-bit down counter that is found on all ARM Cortex > M3,

[U-Boot] [PATCH] armv7m: Add SysTick timer driver

2017-02-03 Thread Phil Edworthy
The SysTick is a 24-bit down counter that is found on all ARM Cortex M3, M4, M7 devices and is always located at a fixed address. Signed-off-by: Phil Edworthy --- Resend with Albert's new email address - get_maintainer.pl gave the old one. ---

[U-Boot] [PATCH] armv7m: Add SysTick timer driver

2017-02-03 Thread Phil Edworthy
The SysTick is a 24-bit down counter that is found on all ARM Cortex M3, M4, M7 devices and is always located at a fixed address. Signed-off-by: Phil Edworthy --- arch/arm/cpu/armv7m/Makefile| 2 + arch/arm/cpu/armv7m/systick-timer.c | 91