From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1761543Ab3DCQHS (ORCPT ); Wed, 3 Apr 2013 12:07:18 -0400 Received: from mail.active-venture.com ([67.228.131.205]:53532 "EHLO mail.active-venture.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754857Ab3DCQHQ (ORCPT ); Wed, 3 Apr 2013 12:07:16 -0400 X-Originating-IP: 108.223.40.66 Date: Wed, 3 Apr 2013 09:07:24 -0700 From: Guenter Roeck To: Tony Chung Cc: Wim Van Sebroeck , linux-watchdog@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v3 2/2] watchdog: fix w83627hf_wdt clear timeout expired Message-ID: <20130403160724.GA31714@roeck-us.net> References: <1364795972-8649-1-git-send-email-tonychung00@gmail.com> <1364795972-8649-2-git-send-email-tonychung00@gmail.com> <20130402000741.GA4077@roeck-us.net> <20130403042142.GA3640@roeck-us.net> <20130403155026.GA4549@roeck-us.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20130403155026.GA4549@roeck-us.net> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Wed, Apr 03, 2013 at 08:50:26AM -0700, Guenter Roeck wrote: > On Wed, Apr 03, 2013 at 08:06:59AM -0700, Tony Chung wrote: > > On Tue, Apr 2, 2013 at 9:21 PM, Guenter Roeck wrote: > > > > > > > > > > > What is the exact chip type in your system ? I want to have a look into the > > > datasheet; maybe I can find out how it can trigger without causing a reset. > > > > Winbond 83627HF chip > > Followup: what chip revision ? Revision G or later have a new configuration bit, bit 3 of CR E7 on logical device A. SELWDTORST. Watch Dog Timer Reset Control. = 0 is reset by LPC_RST. = 1 is reset by PWR_OK. I could imagine that the WDT logic is never correctly initialized in your system, which might explain the behavior. If so, your code is indeed correct (or the best I could come up with too), as we would have to ensure that the wdt subsystem is initialized correctly by writing into all its registers. Given that, I would suggest to re-submit the patch with a different explanation (we don't know if the wdt really started running, all we know is that the expired bit is set), and I'll give it an Acked-by. Something along the line of "Observed that the Watchdog Timer Status bit can be set when the driver is loaded. Reset it during initialization. The time-out value must be set to 0 explicitly in this case to prevent an immediate reset". Thanks, Guenter > > I believe BIOS has watchdog disabled otherwise it would have reboot the box. > > However, the timer just start counting. > > > > Comparing to ipmi_watchdog, you can do this: > > modprobe ipmi_watchdog ... start_now=0 ...action=<> nowayout=1 > > > > So it is possible to load the driver without start counting. > > > That is a different driver, though. you don't have the start_now option here. > > > Notice it is an else, so t is actually 0 already (i.e. expired or > > never start running): > > Still no idea why that would cause the system to reboot when you reset > the trigger without setting t to 0 again (or why the system doesn't reset > in the first place if the watchdog already triggered). > > I am not really sure what the best approach is here, so let's leave it > up to the maintainer to decide which way to go. > > Thanks, > Guenter > -- > To unsubscribe from this list: send the line "unsubscribe linux-watchdog" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html >