2019-02-27 15:41:08 +01:00
|
|
|
/****************************************************************************
|
2017-02-27 21:26:04 +01:00
|
|
|
* configs/sam4s-xplained-pro/src/up_wdt.c
|
2014-04-22 03:19:56 +02:00
|
|
|
*
|
2018-09-15 18:49:41 +02:00
|
|
|
* Copyright (C) 2014, 2016-2018 Gregory Nutt. All rights reserved.
|
2014-04-22 21:42:38 +02:00
|
|
|
* Authors: Gregory Nutt <gnutt@nuttx.org>
|
|
|
|
* Bob Doiron
|
2014-04-22 03:19:56 +02:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
*
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in
|
|
|
|
* the documentation and/or other materials provided with the
|
|
|
|
* distribution.
|
|
|
|
* 3. Neither the name NuttX nor the names of its contributors may be
|
|
|
|
* used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
|
|
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
|
|
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
|
|
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
|
|
|
|
* AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
|
|
|
|
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*
|
2019-02-27 15:41:08 +01:00
|
|
|
****************************************************************************/
|
2014-04-22 03:19:56 +02:00
|
|
|
|
2019-02-27 15:41:08 +01:00
|
|
|
/****************************************************************************
|
2014-04-22 03:19:56 +02:00
|
|
|
* Included Files
|
2019-02-27 15:41:08 +01:00
|
|
|
****************************************************************************/
|
2014-04-22 03:19:56 +02:00
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
|
|
|
|
#include <errno.h>
|
|
|
|
#include <debug.h>
|
|
|
|
#include <sched.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
2017-10-06 18:15:01 +02:00
|
|
|
#include <nuttx/signal.h>
|
2018-09-15 18:49:41 +02:00
|
|
|
#include <nuttx/fs/fs.h>
|
2015-04-01 20:37:44 +02:00
|
|
|
#include <nuttx/timers/watchdog.h>
|
2014-04-22 03:19:56 +02:00
|
|
|
#include <arch/board/board.h>
|
|
|
|
|
|
|
|
#include <nuttx/kthread.h>
|
|
|
|
|
|
|
|
#include "sam_wdt.h"
|
|
|
|
#include <nuttx/clock.h>
|
|
|
|
|
|
|
|
#ifdef CONFIG_WATCHDOG
|
|
|
|
|
2019-02-27 15:41:08 +01:00
|
|
|
/****************************************************************************
|
2015-04-08 17:15:17 +02:00
|
|
|
* Pre-processor Definitions
|
2019-02-27 15:41:08 +01:00
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
/* Configuration ************************************************************/
|
|
|
|
|
2014-04-22 17:38:46 +02:00
|
|
|
/* Watchdog hardware should be enabled */
|
2014-04-22 03:19:56 +02:00
|
|
|
|
|
|
|
#if !defined(CONFIG_SAM34_WDT)
|
|
|
|
# warning "CONFIG_SAM34_WDT must be defined"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Select the path to the registered watchdog timer device */
|
|
|
|
|
|
|
|
#ifndef CONFIG_WATCHDOG_DEVPATH
|
|
|
|
# ifdef CONFIG_EXAMPLES_WATCHDOG_DEVPATH
|
|
|
|
# define CONFIG_WATCHDOG_DEVPATH CONFIG_EXAMPLES_WATCHDOG_DEVPATH
|
|
|
|
# else
|
|
|
|
# define CONFIG_WATCHDOG_DEVPATH "/dev/watchdog0"
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
|
2014-04-22 17:38:46 +02:00
|
|
|
#if (CONFIG_WDT_THREAD_INTERVAL < CONFIG_WDT_MINTIME)
|
|
|
|
# error "WDT_THREAD_INTERVAL must be greater than or equal to WDT_MINTIME"
|
|
|
|
#endif
|
|
|
|
|
2019-02-27 15:41:08 +01:00
|
|
|
/****************************************************************************
|
2014-04-22 03:19:56 +02:00
|
|
|
* Public Functions
|
2019-02-27 15:41:08 +01:00
|
|
|
****************************************************************************/
|
2014-04-22 03:19:56 +02:00
|
|
|
|
2014-04-22 17:38:46 +02:00
|
|
|
/* Watchdog kicker task */
|
2014-04-22 03:19:56 +02:00
|
|
|
|
|
|
|
#if defined(CONFIG_WDT_THREAD)
|
|
|
|
static int wdog_daemon(int argc, char *argv[])
|
|
|
|
{
|
2018-09-15 19:47:24 +02:00
|
|
|
FAR struct file filestruct;
|
2014-04-22 03:19:56 +02:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
/* Open the watchdog device for reading */
|
|
|
|
|
2016-06-16 14:28:04 +02:00
|
|
|
wdinfo("Opening.\n");
|
2018-09-15 19:47:24 +02:00
|
|
|
ret = file_open(&filestruct, CONFIG_WATCHDOG_DEVPATH, O_RDONLY);
|
|
|
|
if (ret < 0)
|
2014-04-22 03:19:56 +02:00
|
|
|
{
|
2018-09-15 19:47:24 +02:00
|
|
|
wderr("ERROR: open %s failed: %d\n", CONFIG_WATCHDOG_DEVPATH, ret);
|
2014-04-22 03:19:56 +02:00
|
|
|
goto errout;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Start the watchdog timer. */
|
|
|
|
|
2016-06-16 14:28:04 +02:00
|
|
|
wdinfo("Starting.\n");
|
2018-09-15 19:47:24 +02:00
|
|
|
ret = file_ioctl(&filestruct, WDIOC_START, 0);
|
2014-04-22 03:19:56 +02:00
|
|
|
if (ret < 0)
|
|
|
|
{
|
2016-06-16 14:28:04 +02:00
|
|
|
wderr("ERROR: ioctl(WDIOC_START) failed: %d\n", errno);
|
2014-04-22 03:19:56 +02:00
|
|
|
goto errout_with_dev;
|
|
|
|
}
|
|
|
|
|
2017-10-06 18:15:01 +02:00
|
|
|
nxsig_usleep(200);
|
2019-02-27 15:41:08 +01:00
|
|
|
while (1)
|
2014-04-22 03:19:56 +02:00
|
|
|
{
|
2017-10-06 18:15:01 +02:00
|
|
|
nxsig_usleep((CONFIG_WDT_THREAD_INTERVAL)*1000);
|
2014-04-22 03:19:56 +02:00
|
|
|
|
2016-06-16 14:28:04 +02:00
|
|
|
wdinfo("ping\n");
|
2018-09-15 19:47:24 +02:00
|
|
|
ret = file_ioctl(&filestruct, WDIOC_KEEPALIVE, 0);
|
2014-04-22 03:19:56 +02:00
|
|
|
if (ret < 0)
|
|
|
|
{
|
2016-06-16 14:28:04 +02:00
|
|
|
wderr("ERROR: ioctl(WDIOC_KEEPALIVE) failed: %d\n", errno);
|
2014-04-22 03:19:56 +02:00
|
|
|
goto errout_with_dev;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
errout_with_dev:
|
2018-09-15 21:04:56 +02:00
|
|
|
file_close(&filestruct);
|
2014-04-22 03:19:56 +02:00
|
|
|
errout:
|
2018-09-15 19:47:24 +02:00
|
|
|
return ret;
|
2014-04-22 03:19:56 +02:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/****************************************************************************
|
2016-05-19 03:48:42 +02:00
|
|
|
* Name: sam_watchdog_initialize()
|
2014-04-22 03:19:56 +02:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Perform architecture-specific initialization of the Watchdog hardware.
|
|
|
|
* This interface must be provided by all configurations using
|
|
|
|
* apps/examples/watchdog
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2016-05-19 03:48:42 +02:00
|
|
|
int sam_watchdog_initialize(void)
|
2014-04-22 03:19:56 +02:00
|
|
|
{
|
|
|
|
#if (defined(CONFIG_SAM34_WDT) && !defined(CONFIG_WDT_DISABLE_ON_RESET))
|
2018-09-15 19:47:24 +02:00
|
|
|
FAR struct file filestruct;
|
2014-04-22 03:19:56 +02:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
/* Initialize tha register the watchdog timer device */
|
|
|
|
|
2016-06-16 14:28:04 +02:00
|
|
|
wdinfo("Initializing Watchdog driver...\n");
|
2018-09-15 19:47:24 +02:00
|
|
|
|
2014-04-22 03:19:56 +02:00
|
|
|
sam_wdtinitialize(CONFIG_WATCHDOG_DEVPATH);
|
|
|
|
|
|
|
|
/* Open the watchdog device */
|
|
|
|
|
2016-06-16 14:28:04 +02:00
|
|
|
wdinfo("Opening.\n");
|
2018-09-15 19:47:24 +02:00
|
|
|
|
|
|
|
ret = file_open(&filestruct, CONFIG_WATCHDOG_DEVPATH, O_RDONLY);
|
|
|
|
if (ret < 0)
|
2014-04-22 03:19:56 +02:00
|
|
|
{
|
2018-09-15 19:47:24 +02:00
|
|
|
wderr("ERROR: open %s failed: %d\n", CONFIG_WATCHDOG_DEVPATH, ret);
|
|
|
|
goto errout;
|
2014-04-22 03:19:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Set the watchdog timeout */
|
|
|
|
|
2016-06-16 14:28:04 +02:00
|
|
|
wdinfo("Timeout = %d.\n", CONFIG_WDT_TIMEOUT);
|
2018-09-15 19:47:24 +02:00
|
|
|
|
|
|
|
ret = file_ioctl(&filestruct, WDIOC_SETTIMEOUT,
|
|
|
|
(unsigned long)CONFIG_WDT_TIMEOUT);
|
2014-04-22 03:19:56 +02:00
|
|
|
if (ret < 0)
|
|
|
|
{
|
2016-06-16 14:28:04 +02:00
|
|
|
wderr("ERROR: ioctl(WDIOC_SETTIMEOUT) failed: %d\n", errno);
|
2014-04-22 03:19:56 +02:00
|
|
|
goto errout_with_dev;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Set the watchdog minimum time */
|
|
|
|
|
2016-06-16 14:28:04 +02:00
|
|
|
wdinfo("MinTime = %d.\n", CONFIG_WDT_MINTIME);
|
2018-09-15 19:47:24 +02:00
|
|
|
ret = file_ioctl(&filestruct, WDIOC_MINTIME,
|
|
|
|
(unsigned long)CONFIG_WDT_MINTIME);
|
2014-04-22 03:19:56 +02:00
|
|
|
if (ret < 0)
|
|
|
|
{
|
2016-06-16 14:28:04 +02:00
|
|
|
wderr("ERROR: ioctl(WDIOC_MINTIME) failed: %d\n", errno);
|
2014-04-22 03:19:56 +02:00
|
|
|
goto errout_with_dev;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Start Kicker task */
|
|
|
|
|
|
|
|
#if defined(CONFIG_WDT_THREAD)
|
|
|
|
sched_lock();
|
|
|
|
|
2017-10-16 19:38:00 +02:00
|
|
|
int taskid = kthread_create(CONFIG_WDT_THREAD_NAME,
|
|
|
|
CONFIG_WDT_THREAD_PRIORITY,
|
|
|
|
CONFIG_WDT_THREAD_STACKSIZE,
|
|
|
|
(main_t)wdog_daemon, (FAR char * const *)NULL);
|
2014-04-22 03:19:56 +02:00
|
|
|
|
2018-08-24 14:58:30 +02:00
|
|
|
DEBUGASSERT(taskid > 0);
|
2018-08-25 23:02:21 +02:00
|
|
|
UNUSED(taskid);
|
|
|
|
|
2014-04-22 03:19:56 +02:00
|
|
|
sched_unlock();
|
|
|
|
#endif
|
|
|
|
return OK;
|
|
|
|
errout_with_dev:
|
2018-09-15 21:04:56 +02:00
|
|
|
file_close(&filestruct);
|
2014-04-22 03:19:56 +02:00
|
|
|
errout:
|
2018-09-15 19:47:24 +02:00
|
|
|
return ret;
|
2014-04-22 03:19:56 +02:00
|
|
|
#else
|
|
|
|
return -ENODEV;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* CONFIG_WATCHDOG */
|