Re: [U-Boot] [PATCH 02/19] dm: timer: uclass: add timer init to add timer device

2015-12-09 Thread Bin Meng
Hi Mugunthan, On Wed, Dec 2, 2015 at 5:50 PM, Mugunthan V N wrote: > On Wednesday 02 December 2015 02:59 PM, Bin Meng wrote: >> Hi Mugunthan, >> >> On Tue, Dec 1, 2015 at 10:39 AM, Bin Meng wrote: >>> Hi Mugunthan, >>> >>> On Sun, Nov 29, 2015 at 9:16 PM, Mugunthan V N wrote: On Saturday 2

Re: [U-Boot] [PATCH 02/19] dm: timer: uclass: add timer init to add timer device

2015-12-02 Thread Mugunthan V N
On Wednesday 02 December 2015 02:59 PM, Bin Meng wrote: > Hi Mugunthan, > > On Tue, Dec 1, 2015 at 10:39 AM, Bin Meng wrote: >> Hi Mugunthan, >> >> On Sun, Nov 29, 2015 at 9:16 PM, Mugunthan V N wrote: >>> On Saturday 28 November 2015 05:16 PM, Bin Meng wrote: Yes, but your patch 01 will br

Re: [U-Boot] [PATCH 02/19] dm: timer: uclass: add timer init to add timer device

2015-12-02 Thread Bin Meng
Hi Mugunthan, On Tue, Dec 1, 2015 at 10:39 AM, Bin Meng wrote: > Hi Mugunthan, > > On Sun, Nov 29, 2015 at 9:16 PM, Mugunthan V N wrote: >> On Saturday 28 November 2015 05:16 PM, Bin Meng wrote: >>> Yes, but your patch 01 will break x86. I can prepare a patch for x86 >>> if you like >> >> Can yo

Re: [U-Boot] [PATCH 02/19] dm: timer: uclass: add timer init to add timer device

2015-11-30 Thread Bin Meng
Hi Mugunthan, On Sun, Nov 29, 2015 at 9:16 PM, Mugunthan V N wrote: > On Saturday 28 November 2015 05:16 PM, Bin Meng wrote: >> Yes, but your patch 01 will break x86. I can prepare a patch for x86 >> if you like > > Can you send the patch so that I can include it on my next series. > Sure, I wil

Re: [U-Boot] [PATCH 02/19] dm: timer: uclass: add timer init to add timer device

2015-11-29 Thread Mugunthan V N
On Saturday 28 November 2015 05:16 PM, Bin Meng wrote: > Yes, but your patch 01 will break x86. I can prepare a patch for x86 > if you like Can you send the patch so that I can include it on my next series. Regards Mugunthan V N ___ U-Boot mailing list

Re: [U-Boot] [PATCH 02/19] dm: timer: uclass: add timer init to add timer device

2015-11-28 Thread Bin Meng
Hi Mugunthan, On Sat, Nov 28, 2015 at 7:38 PM, Mugunthan V N wrote: > On Saturday 28 November 2015 01:56 PM, Bin Meng wrote: >> Hi Mugunthan, >> >> On Fri, Nov 27, 2015 at 4:31 PM, Mugunthan V N wrote: >>> Adding timer_init function to create and initialize the timer >>> device on platforms wher

Re: [U-Boot] [PATCH 02/19] dm: timer: uclass: add timer init to add timer device

2015-11-28 Thread Mugunthan V N
On Saturday 28 November 2015 01:56 PM, Bin Meng wrote: > Hi Mugunthan, > > On Fri, Nov 27, 2015 at 4:31 PM, Mugunthan V N wrote: >> Adding timer_init function to create and initialize the timer >> device on platforms where u-boot,dm-pre-reloc is not used. Since >> there will be multiple timer dev

Re: [U-Boot] [PATCH 02/19] dm: timer: uclass: add timer init to add timer device

2015-11-28 Thread Bin Meng
Hi Mugunthan, On Fri, Nov 27, 2015 at 4:31 PM, Mugunthan V N wrote: > Adding timer_init function to create and initialize the timer > device on platforms where u-boot,dm-pre-reloc is not used. Since > there will be multiple timer devices in the system, adding a > tick-timer node in chosen node to

Re: [U-Boot] [PATCH 02/19] dm: timer: uclass: add timer init to add timer device

2015-11-27 Thread Mugunthan V N
On Saturday 28 November 2015 01:10 AM, Simon Glass wrote: > Hi Mugunthan, > > On 27 November 2015 at 00:31, Mugunthan V N wrote: >> Adding timer_init function to create and initialize the timer >> device on platforms where u-boot,dm-pre-reloc is not used. Since >> there will be multiple timer dev

Re: [U-Boot] [PATCH 02/19] dm: timer: uclass: add timer init to add timer device

2015-11-27 Thread Simon Glass
Hi Mugunthan, On 27 November 2015 at 00:31, Mugunthan V N wrote: > Adding timer_init function to create and initialize the timer > device on platforms where u-boot,dm-pre-reloc is not used. Since > there will be multiple timer devices in the system, adding a > tick-timer node in chosen node to kn

[U-Boot] [PATCH 02/19] dm: timer: uclass: add timer init to add timer device

2015-11-27 Thread Mugunthan V N
Adding timer_init function to create and initialize the timer device on platforms where u-boot,dm-pre-reloc is not used. Since there will be multiple timer devices in the system, adding a tick-timer node in chosen node to know which timer device to be used as tick timer in u-boot. Signed-off-by: M