From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752053AbdBBTVa (ORCPT ); Thu, 2 Feb 2017 14:21:30 -0500 Received: from mail-wm0-f47.google.com ([74.125.82.47]:35375 "EHLO mail-wm0-f47.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751653AbdBBTV2 (ORCPT ); Thu, 2 Feb 2017 14:21:28 -0500 Date: Thu, 2 Feb 2017 20:21:13 +0100 From: Daniel Lezcano To: Mark Rutland Cc: catalin.marinas@arm.com, dingtianhong@huawei.com, will.deacon@arm.com, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, tglx@linutronix.de Subject: Re: [PATCH 5/7] arm64: arch_timer: work around Hisilicon erratum 161010101 Message-ID: <20170202192113.GA2138@mai> References: <1485865196-12742-1-git-send-email-mark.rutland@arm.com> <1485865196-12742-6-git-send-email-mark.rutland@arm.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1485865196-12742-6-git-send-email-mark.rutland@arm.com> User-Agent: Mutt/1.5.24 (2015-08-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Jan 31, 2017 at 12:19:54PM +0000, Mark Rutland wrote: > From: Ding Tianhong > > Erratum Hisilicon-161010101 says that the ARM generic timer counter "has > the potential to contain an erroneous value when the timer value > changes". Accesses to TVAL (both read and write) are also affected due > to the implicit counter read. Accesses to CVAL are not affected. > > The workaround is to reread the system count registers until the value > of the second read is larger than the first one by less than 32, the > system counter can be guaranteed not to return wrong value twice by > back-to-back read and the error value is always larger than the correct > one by 32. Writes to TVAL are replaced with an equivalent write to CVAL. > > Signed-off-by: Ding Tianhong > [Mark: split patch, fix Kconfig, reword commit message] > Signed-off-by: Mark Rutland > --- Acked-by: Daniel Lezcano