Received: by 2002:ad5:474a:0:0:0:0:0 with SMTP id i10csp4722041imu; Mon, 12 Nov 2018 16:12:44 -0800 (PST) X-Google-Smtp-Source: AJdET5cglfOPl2541vFAEeSVFA1dP6WjV5H9A1oAd2gPFdpt1c+X2K06bDM1bp9xFy3sFnoADHQz X-Received: by 2002:a62:6383:: with SMTP id x125-v6mr2883076pfb.13.1542067964236; Mon, 12 Nov 2018 16:12:44 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1542067964; cv=none; d=google.com; s=arc-20160816; b=XrFd50tbADY5AojWdPNfflQ+hGgdAd8o3psui/GLWqmypsbe9OwcOyBhDLU71jQ2dt fPhhvmLr7+X7VIrUh6z6zJZgdA5LBIoKazYEiE3Cr4u8CyVWxNEASpQ4WRruoitJSiPv Ad/4m8fJC0PEB1tmBaR1BLbhcaqPp93LwN2a6LqAb6mt3VjEVm2UdnTm3RnKO2019Orr 8e/Z1XdKNeyUEGJBGO1L35R4EXZLyXSA0Ct/cjQVTLAA9YagmXyQ6HW0gGg1H+bU4vcY 4V7svswyenzHFO+pvhJzrNt7B7br8gAFCHK58cBzeEQN9C8+cN2jlQ2iPzgoLqKiDdyC jCOw== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:mime-version:references:message-id :in-reply-to:subject:cc:to:from:date; bh=fzCq/75JOAOFGfvDr5ljoDPJYMSPWEV4I0DOX8FvUJM=; b=P3HSuSZ7ki7jAvbc/7gV8CXRTJNRLBesA04RXS38e/7eI1C0RbUVIVqwNoh94xwYQM RQtff0jXs+02xurf4DA3/VjybkjiLKWigTihR/36hthBVsjno2A8394/OQH/QCWZMDPU AUDZltm7eLd2PDzcm+zDZi+NKI0Q8PZzqfZUfEWm7CJayLV0LBwO+CDwoZqgNc/j9Xej 87fiNySm/rdE9JzT1bGDwzrfzQ14KR0aIf07Li+BWqGOrerCqVq4yaENUubVl1VGf3Lo 9kXYk3Q+jEdAhi6uP+/nEkG9JTBC3vu0Zqn+S/dRUQm3Ti3H7lq5W5TroMfqgJeBQXmG yqJQ== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id g18si18184354pgg.522.2018.11.12.16.12.28; Mon, 12 Nov 2018 16:12:44 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1730528AbeKMKGk (ORCPT + 99 others); Tue, 13 Nov 2018 05:06:40 -0500 Received: from kvm5.telegraphics.com.au ([98.124.60.144]:42186 "EHLO kvm5.telegraphics.com.au" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725991AbeKMKGk (ORCPT ); Tue, 13 Nov 2018 05:06:40 -0500 Received: from localhost (localhost.localdomain [127.0.0.1]) by kvm5.telegraphics.com.au (Postfix) with ESMTP id 574EA29C7D; Mon, 12 Nov 2018 19:11:06 -0500 (EST) Date: Tue, 13 Nov 2018 11:11:33 +1100 (AEDT) From: Finn Thain To: Thomas Gleixner cc: Geert Uytterhoeven , Arnd Bergmann , Stephen N Chivers , Daniel Lezcano , John Stultz , linux-m68k@lists.linux-m68k.org, linux-kernel@vger.kernel.org Subject: Re: [RFC PATCH 13/13] m68k: mvme16x: Convert to clocksource API In-Reply-To: Message-ID: References: <2f4015ba435f6f06b874295d2a47319875474c7f.1541995959.git.fthain@telegraphics.com.au> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, 12 Nov 2018, Thomas Gleixner wrote: > Finn, > > First of all, thanks for tackling this! > Happy to help. Thanks for your review. > > +static u32 clk_total; > > + > > +#define PCC_TIMER_CLOCK_FREQ 1000000 > > +#define PCC_TIMER_CYCLES (PCC_TIMER_CLOCK_FREQ / HZ) > > + > > static irqreturn_t mvme16x_timer_int (int irq, void *dev_id) > > { > > + irq_handler_t tick_handler = dev_id; > > + unsigned long flags; > > + > > + local_irq_save(flags); > > No need for local_irq_save() here. Interrupt handlers are guaranteed to be > called with interrupts disabled. > That's not the case on m68k, as I understand it. However, the CPU interrupt level does prevent interrupt handlers from nesting. > > *(volatile unsigned char *)0xfff4201b |= 8; > > + clk_total += PCC_TIMER_CYCLES; > > Looking at the read function below, I assume that this magic 0xfff42008 > register counts up to PCC_TIMER_CYCLES, which triggers the timer > interrupt and then starts from 0 again. And looking at the programming > manual actually confirms that assumption (COC is set in the control > reg). > > > -u32 mvme16x_gettimeoffset(void) > > +static u64 mvme16x_read_clk(struct clocksource *cs) > > { > > - return (*(volatile u32 *)0xfff42008) * 1000; > > + u32 count = *(volatile u32 *)0xfff42008; > > + > > + return clk_total + count; > > } > > There is a problem with that approach. Assume the following situation: > > Counter value (HZ = 100) > local_irq_disable() > ... > ktime_get() 9999 > .... 10000 -> 0 (interrupt is triggered) > ktime_get() 1 > > IOW, time goes backwards. > Yes. It's not a new problem. I think hp300 and mvme147 have similar issues. If the clocksource core is badly affected by this problem then I'll have to address it. > There are two ways to solve that: > > 1) Take the overflow bits in the timer control register into account, > which makes time readout even slower because you need to do it like > this: > > do { > ovfl = read(TCR1); > now = read(TCNT1); > while (ovfl != read(TCR1)); > .... > How about, local_irq_save(flags); ovfl = read(TCR1); now = read(TCNT1); if (ovfl != read(TCR1)) now = read(TCNT1); ticks = clk_total + now; offset = (ovfl >> 4) * PCC_TIMER_CYCLES; local_irq_restore(flags); return offset + ticks; This has to be synchronized with the interrupt handler because the interrupt handler must clear the overflow counter in TCR1 when it does clk_total += PCC_TIMER_CYCLES; BTW, there are some synchronization bugs in this patch series that will be addressed in the next submission. They have been fixed in my github repo. > > 2) Use Timer2 in freerunning mode which means it will use the full 32bit > and then wrap back to 0. That's fine and the clocksource core handles > that. > > That removes the clk_total thing and just works. > I really like this suggestion! But I fear it is a change that cannot be checked by inspection. If I wrote it, I'd want to test it, or have someone else test it. (Stephen?) I wonder if there exists an emulator for MVME 162/166/167/172/177 machines capable of booting Linux... -- > Thanks, > > tglx >