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

2016-01-15 Thread Simon Glass
On 25 December 2015 at 06:08, Mugunthan V N wrote: > On Friday 25 December 2015 05:43 PM, Bin Meng wrote: >> Hi Mugunthan, >> >> On Fri, Dec 25, 2015 at 6:41 PM, Mugunthan V N wrote: >>> Adding timer_init function to create and initialize the timer >>> device on platforms where u-boot,dm-pre-relo

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

2015-12-25 Thread Mugunthan V N
On Friday 25 December 2015 05:43 PM, Bin Meng wrote: > Hi Mugunthan, > > On Fri, Dec 25, 2015 at 6:41 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 devic

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

2015-12-25 Thread Bin Meng
Hi Mugunthan, On Fri, Dec 25, 2015 at 6:41 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

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

2015-12-25 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