Date: Sun, 10 Dec 2006 22:49:23 +0100 (CET) From: Nick Hibma <nick@van-laarhoven.org> To: Sam Leffler <sam@errno.com> Cc: FreeBSD CURRENT Mailing List <current@FreeBSD.ORG> Subject: Re: Slight interface change on the watchdog fido Message-ID: <20061210224138.Y1174@localhost> In-Reply-To: <457C48A8.4010703@errno.com> References: <20061210110419.H42195@localhost> <457C48A8.4010703@errno.com>
next in thread | previous in thread | raw e-mail | index | archive | help
>> (*) The i80321_wdog.c cannot be disarmed. Is this correct? >> (**) These have been tested to arm, disarm, and fire. Others have only >> been compile tested. >> >> This change has been tested on 6.2-STABLE and 7-CURRENT. > > FWIW there's another watchdog in xscale/ixp425 for the avila boards. Oops, I missed the watchdogs available in CURRENT: imp at91_st.c ./arm/at91/at91_st.c That one doesn't set *error to error on success. See patch below. ./arm/xscale/ixp425/ixp425_wdog.c Is correct as it is. Index: arm/at91/at91_st.c =================================================================== RCS file: /home/ncvs/src/sys/arm/at91/at91_st.c,v retrieving revision 1.5 diff -u -r1.5 at91_st.c --- arm/at91/at91_st.c 9 Aug 2006 20:58:55 -0000 1.5 +++ arm/at91/at91_st.c 10 Dec 2006 21:47:26 -0000 @@ -170,10 +170,13 @@ uint32_t wdog; int t; - wdog = 0; t = cmd & WD_INTERVAL; - if (cmd != 0 && t >= 22 && t <= 37) + if (cmd != 0 && t >= 22 && t <= 37) { wdog = (1 << (t - 22)) | ST_WDMR_RSTEN; + *error = 0; + } else { + wdog = 0; + } WR4(ST_WDMR, wdog); WR4(ST_CR, ST_CR_WDRST); }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20061210224138.Y1174>