Re: [U-Boot] [PATCH v2] x86: tsc: Add support for native calibration of TSC freq

2019-01-30 Thread Bin Meng
On Fri, Dec 21, 2018 at 3:31 PM Bernhard Messerklinger wrote: > > Add native tsc calibration function. Calibrate the tsc timer the same > way as linux does arch/x86/kernel/tsc.c. > Fixes booting for Apollo Lake processors. > > Signed-off-by: Bernhard Messerklinger > > --- > I hope this patch won

Re: [U-Boot] [PATCH v2] x86: tsc: Add support for native calibration of TSC freq

2018-12-21 Thread Bin Meng
Hi Bernhard, On Fri, Dec 21, 2018 at 3:31 PM Bernhard Messerklinger wrote: > > Add native tsc calibration function. Calibrate the tsc timer the same > way as linux does arch/x86/kernel/tsc.c. nits: does in arch/x86/kernel/tsc.c > Fixes booting for Apollo Lake processors. > > Signed-off-by: Bern

[U-Boot] [PATCH v2] x86: tsc: Add support for native calibration of TSC freq

2018-12-20 Thread Bernhard Messerklinger
Add native tsc calibration function. Calibrate the tsc timer the same way as linux does arch/x86/kernel/tsc.c. Fixes booting for Apollo Lake processors. Signed-off-by: Bernhard Messerklinger --- I hope this patch won't break other x86 board. I only can test it with APL board. Changes in v1: - Up