From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754907Ab0CVOWa (ORCPT ); Mon, 22 Mar 2010 10:22:30 -0400 Received: from www.tglx.de ([62.245.132.106]:37821 "EHLO www.tglx.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754757Ab0CVOW2 (ORCPT ); Mon, 22 Mar 2010 10:22:28 -0400 Date: Mon, 22 Mar 2010 15:22:12 +0100 (CET) From: Thomas Gleixner To: Johannes Weiner cc: Ivan Kokshaysky , john stultz , Richard Henderson , lkml , Matt Turner Subject: Re: [RFC][PATCH] Convert alpha to use clocksource In-Reply-To: <20100322111744.GB10420@cmpxchg.org> Message-ID: References: <1268877702-2236-1-git-send-email-johnstul@us.ibm.com> <4BA23974.5030503@twiddle.net> <1268934923.1855.8.camel@work-vm> <20100318214030.GA8934@jurassic.park.msu.ru> <20100322111744.GB10420@cmpxchg.org> User-Agent: Alpine 2.00 (LFD 1167 2008-08-23) MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, 22 Mar 2010, Johannes Weiner wrote: > > Though, even after a glance over the clocksource code, I've not > > gotten yet to how one could estimate the "shift" value... > > Any hints? > > I had the same problem with xtensa and added a comment about what I > did in there, maybe it helps: > > arch/xtensa/kernel/time.c > > I took the upper bound of the multiplicator (nsecs per counter unit) > and subtracted its logarithm from my available 32 bits. The result > is the highest possible shift value that works for the clocksource. clocks_calc_mult_shift() is what you are looking for. Thanks, tglx