Re: [U-Boot] [PATCH 04/10] dm: timer: Support 64-bit counter

2015-11-09 Thread Bin Meng
Hi Thomas, On Sat, Nov 7, 2015 at 6:40 AM, Thomas Chou wrote: > Hi Bin, > > > On 2015年11月06日 22:35, Bin Meng wrote: >> >> Hi Thomas, >> >> On Fri, Nov 6, 2015 at 3:14 PM, Thomas Chou wrote: >>> >>> Hi Bin, >>> >>> On 2015年11月05日 22:02, Bin Meng wrote: There are timers with a 64-bi

Re: [U-Boot] [PATCH 04/10] dm: timer: Support 64-bit counter

2015-11-06 Thread Thomas Chou
Hi Bin, On 2015年11月06日 22:35, Bin Meng wrote: Hi Thomas, On Fri, Nov 6, 2015 at 3:14 PM, Thomas Chou wrote: Hi Bin, On 2015年11月05日 22:02, Bin Meng wrote: There are timers with a 64-bit counter value but current timer uclass driver assumes a 32-bit one. Introduce a device tree property "cou

Re: [U-Boot] [PATCH 04/10] dm: timer: Support 64-bit counter

2015-11-06 Thread Bin Meng
Hi Thomas, On Fri, Nov 6, 2015 at 3:14 PM, Thomas Chou wrote: > Hi Bin, > > On 2015年11月05日 22:02, Bin Meng wrote: >> >> There are timers with a 64-bit counter value but current timer >> uclass driver assumes a 32-bit one. Introduce a device tree >> property "counter-64bit", and modify timer_get_c

Re: [U-Boot] [PATCH 04/10] dm: timer: Support 64-bit counter

2015-11-05 Thread Thomas Chou
Hi Bin, On 2015年11月05日 22:02, Bin Meng wrote: There are timers with a 64-bit counter value but current timer uclass driver assumes a 32-bit one. Introduce a device tree property "counter-64bit", and modify timer_get_count() in the timer uclass driver to handle the 32-bit/64-bit conversion automa

[U-Boot] [PATCH 04/10] dm: timer: Support 64-bit counter

2015-11-05 Thread Bin Meng
There are timers with a 64-bit counter value but current timer uclass driver assumes a 32-bit one. Introduce a device tree property "counter-64bit", and modify timer_get_count() in the timer uclass driver to handle the 32-bit/64-bit conversion automatically. Signed-off-by: Bin Meng --- drivers/