Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754533AbdLOHf4 (ORCPT ); Fri, 15 Dec 2017 02:35:56 -0500 Received: from mga06.intel.com ([134.134.136.31]:56944 "EHLO mga06.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754308AbdLOHfw (ORCPT ); Fri, 15 Dec 2017 02:35:52 -0500 X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.45,403,1508828400"; d="scan'208";a="158949371" From: Sagar Arun Kamble To: linux-kernel@vger.kernel.org Cc: Sagar Arun Kamble , Richard Cochran , Chris Wilson , John Stultz , Thomas Gleixner , Stephen Boyd Subject: [PATCH 16/27] timecounter: Introduce timecounter_reset Date: Fri, 15 Dec 2017 13:08:31 +0530 Message-Id: <1513323522-15021-17-git-send-email-sagar.a.kamble@intel.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1513323522-15021-1-git-send-email-sagar.a.kamble@intel.com> References: <1513323522-15021-1-git-send-email-sagar.a.kamble@intel.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2915 Lines: 76 timecounter_init initializes the cyclecounter and sets the start time. Sometimes drivers using timecounter just want to update start time. This patch creates new function timecounter_reset that just resets the timecounter start time and associated state. Suggested-by: Richard Cochran Signed-off-by: Sagar Arun Kamble Cc: Richard Cochran Cc: Chris Wilson Cc: John Stultz Cc: Thomas Gleixner Cc: Stephen Boyd Cc: linux-kernel@vger.kernel.org --- include/linux/timecounter.h | 17 +++++++++++++++-- kernel/time/timecounter.c | 9 +++++++++ 2 files changed, 24 insertions(+), 2 deletions(-) diff --git a/include/linux/timecounter.h b/include/linux/timecounter.h index 59d3fd7..e0fd741 100644 --- a/include/linux/timecounter.h +++ b/include/linux/timecounter.h @@ -98,7 +98,7 @@ static inline void timecounter_adjtime(struct timecounter *tc, s64 delta) /** * timecounter_init - initialize a time counter - * @tc: Pointer to time counter which is to be initialized/reset + * @tc: Pointer to time counter which is to be initialized * @start_tstamp: Arbitrary initial time stamp. * * After this call the current cycle register (roughly) corresponds to @@ -131,8 +131,21 @@ extern void timecounter_initialize(struct timecounter *tc, u64 start_tstamp); /** + * timecounter_reset - reset a time counter + * @tc: Pointer to time counter which is to be reset + * @start_tstamp: Arbitrary initial time stamp. + * + * After this call the current cycle register (roughly) corresponds to + * the supplied time stamp. Every call to timecounter_read() increments + * the time stamp counter by the number of elapsed nanoseconds. + */ +extern void timecounter_reset(struct timecounter *tc, + u64 start_tstamp); + +/** * timecounter_read - return nanoseconds elapsed since timecounter_init() or - * timecounter_initialize() plus the initial time stamp + * timecounter_initialize() or timecounter_reset() plus + * the initial time stamp * @tc: Pointer to time counter. * * In other words, keeps track of time since the same epoch as diff --git a/kernel/time/timecounter.c b/kernel/time/timecounter.c index 6d915752..3f62fe0 100644 --- a/kernel/time/timecounter.c +++ b/kernel/time/timecounter.c @@ -47,6 +47,15 @@ void timecounter_initialize(struct timecounter *tc, } EXPORT_SYMBOL_GPL(timecounter_initialize); +void timecounter_reset(struct timecounter *tc, + u64 start_tstamp) +{ + tc->cycle_last = tc->cc.read(&tc->cc); + tc->nsec = start_tstamp; + tc->frac = 0; +} +EXPORT_SYMBOL_GPL(timecounter_reset); + /** * timecounter_read_delta - get nanoseconds since last call of this function * @tc: Pointer to time counter -- 1.9.1