From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tony Lindgren Subject: Re: [PATCH 5/7] ARM: OMAP2+: WDT: move init; add read_reset_sources pdata function pointer Date: Thu, 25 Oct 2012 12:42:15 -0700 Message-ID: <20121025194214.GB11928@atomide.com> References: <20121016012448.21844.92339.stgit@dusk.lan> <20121016013213.21844.20016.stgit@dusk.lan> <20121025153805.GB11623@blackmetal.musicnaut.iki.fi> <20121025185755.GV11928@atomide.com> <20121025191936.GZ11928@atomide.com> <20121025193413.GA11928@atomide.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mho-03-ewr.mailhop.org ([204.13.248.66]:55432 "EHLO mho-01-ewr.mailhop.org" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1760106Ab2JYTmV (ORCPT ); Thu, 25 Oct 2012 15:42:21 -0400 Content-Disposition: inline In-Reply-To: <20121025193413.GA11928@atomide.com> Sender: linux-omap-owner@vger.kernel.org List-Id: linux-omap@vger.kernel.org To: Paul Walmsley Cc: Aaro Koskinen , linux-omap@vger.kernel.org, linux-arm-kernel@lists.infradead.org, Wim Van Sebroeck , linux-watchdog@vger.kernel.org * Tony Lindgren [121025 12:35]: > * Paul Walmsley [121025 12:32]: > > On Thu, 25 Oct 2012, Tony Lindgren wrote: > > > > > I wonder if we can now with multiple watchdogs supported to > > > have also PRM/CM implement omap_prcm_wdt_ioctl() that just > > > handles WDIOC_GETBOOTSTATUS and then just remove that handling > > > from the other omap watchdog drivers? > > > > The watchdog ioctl code needs access to internal watchdog state and > > functions, for example WDIOC_KEEPALIVE and WDIOC_SETTIMEOUT. How would > > the approach you're thinking of implement those operations? > > I have not looked how the watchdog subsystem handles multiple > watchdogs, but.. Can't we have the omap watchdog and twl watchdog > return -ENOTSUPP for WDIOC_GETBOOTSTATUS and have the watchdog > core fail over to the third wathcdog omap_prcm_wdt_ioctl() that > only implements WDIOC_GETBOOTSTATUS? Or something like that. After poking around a bit, probably the way to do this would be to have watchdog core bootstatus in addition to the bootstatus in struct watchdog_device? Then the omap_prcm watchdog could just initialize the watchdog core bootstatus, and the other omap watchdog drivers would just return the watchdog core bootstatus. Not that it's related to this patchset, just trying to figure out how it could be done in a generic way :) Regards, Tony