#include <linux/init.h>
#include <linux/uaccess.h>
#include <linux/io.h>
+#include <linux/spinlock.h>
/*
* Watchdog timer block registers.
static int nowayout = WATCHDOG_NOWAYOUT;
static int heartbeat = WDT_MAX_DURATION; /* (seconds) */
static unsigned long wdt_status;
+static spinlock_t wdt_lock;
static void wdt_enable(void)
{
u32 reg;
+ spin_lock(&wdt_lock);
+
/* Set watchdog duration */
writel(ORION5X_TCLK * heartbeat, WDT_VAL);
reg = readl(CPU_RESET_MASK);
reg |= WDT_RESET;
writel(reg, CPU_RESET_MASK);
+
+ spin_unlock(&wdt_lock);
}
static void wdt_disable(void)
{
u32 reg;
+ spin_lock(&wdt_lock);
+
/* Disable reset on watchdog */
reg = readl(CPU_RESET_MASK);
reg &= ~WDT_RESET;
reg = readl(TIMER_CTRL);
reg &= ~WDT_EN;
writel(reg, TIMER_CTRL);
+
+ spin_unlock(&wdt_lock);
+}
+
+static int orion5x_wdt_get_timeleft(int *time_left)
+{
+ spin_lock(&wdt_lock);
+ *time_left = readl(WDT_VAL) / ORION5X_TCLK;
+ spin_unlock(&wdt_lock);
+ return 0;
}
static int orion5x_wdt_open(struct inode *inode, struct file *file)
return nonseekable_open(inode, file);
}
-static int orion5x_wdt_get_timeleft(int *time_left)
-{
- *time_left = readl(WDT_VAL) / ORION5X_TCLK;
- return 0;
-}
-
static ssize_t orion5x_wdt_write(struct file *file, const char *data,
size_t len, loff_t *ppos)
{
{
int ret;
+ spin_lock_init(&wdt_lock);
+
ret = misc_register(&orion5x_wdt_miscdev);
if (ret == 0)
printk("Orion5x Watchdog Timer: heartbeat %d sec\n",