blob: 0fca3f5fd892eb400a934563682af00807dc8052 [file] [log] [blame]
/*
* drivers/watchdog/tegra_wdt.c
*
* watchdog driver for NVIDIA tegra internal watchdog
*
* Copyright (c) 2011, NVIDIA Corporation.
*
* based on drivers/watchdog/softdog.c and drivers/watchdog/omap_wdt.c
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include <linux/fs.h>
#include <linux/interrupt.h>
#include <linux/io.h>
#include <linux/kernel.h>
#include <linux/miscdevice.h>
#include <linux/notifier.h>
#include <linux/platform_device.h>
#include <linux/reboot.h>
#include <linux/slab.h>
#include <linux/spinlock.h>
#include <linux/uaccess.h>
#include <linux/watchdog.h>
/* minimum and maximum watchdog trigger periods, in seconds */
#define MIN_WDT_PERIOD 5
#define MAX_WDT_PERIOD 1000
enum tegra_wdt_status {
WDT_DISABLED = 1 << 0,
WDT_ENABLED = 1 << 1,
WDT_ENABLED_AT_PROBE = 1 << 2,
};
struct tegra_wdt {
struct miscdevice miscdev;
struct notifier_block notifier;
struct resource *res_src;
struct resource *res_wdt;
unsigned long users;
void __iomem *wdt_source;
void __iomem *wdt_timer;
int irq;
int timeout;
int status;
};
static struct platform_device *tegra_wdt_dev;
/*
* For spinlock lockup detection to work, the heartbeat should be 2*lockup
* for cases where the spinlock disabled irqs.
*/
static int heartbeat = 120; /* must be greater than MIN_WDT_PERIOD and lower than MAX_WDT_PERIOD */
#if defined(CONFIG_ARCH_TEGRA_2x_SOC)
#define TIMER_PTV 0x0
#define TIMER_EN (1 << 31)
#define TIMER_PERIODIC (1 << 30)
#define TIMER_PCR 0x4
#define TIMER_PCR_INTR (1 << 30)
#define WDT_EN (1 << 5)
#define WDT_SEL_TMR1 (0 << 4)
#define WDT_SYS_RST (1 << 2)
static void tegra_wdt_enable(struct tegra_wdt *wdt)
{
u32 val;
/* since the watchdog reset occurs when a second interrupt
* is asserted before the first is processed, program the
* timer period to one-half of the watchdog period */
val = wdt->timeout * 1000000ul / 2;
val |= (TIMER_EN | TIMER_PERIODIC);
writel(val, wdt->wdt_timer + TIMER_PTV);
val = WDT_EN | WDT_SEL_TMR1 | WDT_SYS_RST;
writel(val, wdt->wdt_source);
}
static void tegra_wdt_disable(struct tegra_wdt *wdt)
{
writel(0, wdt->wdt_source);
writel(0, wdt->wdt_timer + TIMER_PTV);
}
static inline void tegra_wdt_ping(struct tegra_wdt *wdt)
{
return;
}
static irqreturn_t tegra_wdt_interrupt(int irq, void *dev_id)
{
struct tegra_wdt *wdt = dev_id;
writel(TIMER_PCR_INTR, wdt->wdt_timer + TIMER_PCR);
return IRQ_HANDLED;
}
#elif defined(CONFIG_ARCH_TEGRA_3x_SOC)
#define TIMER_PTV 0
#define TIMER_EN (1 << 31)
#define TIMER_PERIODIC (1 << 30)
#define TIMER_PCR 0x4
#define TIMER_PCR_INTR (1 << 30)
#define WDT_CFG (0)
#define WDT_CFG_TMR_SRC (0 << 0) /* for TMR10. */
#define WDT_CFG_PERIOD (1 << 4)
#define WDT_CFG_INT_EN (1 << 12)
#define WDT_CFG_SYS_RST_EN (1 << 14)
#define WDT_CFG_PMC2CAR_RST_EN (1 << 15)
#define WDT_CMD (8)
#define WDT_CMD_START_COUNTER (1 << 0)
#define WDT_CMD_DISABLE_COUNTER (1 << 1)
#define WDT_UNLOCK (0xC)
#define WDT_UNLOCK_PATTERN (0xC45A << 0)
static void tegra_wdt_set_timeout(struct tegra_wdt *wdt, int sec)
{
u32 ptv;
ptv = readl(wdt->wdt_timer + TIMER_PTV);
wdt->timeout = clamp(sec, MIN_WDT_PERIOD, MAX_WDT_PERIOD);
if (ptv & TIMER_EN) {
/* since the watchdog reset occurs when a fourth interrupt
* is asserted before the first is processed, program the
* timer period to one-fourth of the watchdog period */
ptv = (wdt->timeout * 1000000ul) / 4;
ptv |= (TIMER_EN | TIMER_PERIODIC);
writel(ptv, wdt->wdt_timer + TIMER_PTV);
}
}
static inline void tegra_wdt_ping(struct tegra_wdt *wdt)
{
writel(WDT_CMD_START_COUNTER, wdt->wdt_source + WDT_CMD);
}
static void tegra_wdt_enable(struct tegra_wdt *wdt)
{
u32 val;
writel(TIMER_PCR_INTR, wdt->wdt_timer + TIMER_PCR);
val = (wdt->timeout * 1000000ul) / 4;
val |= (TIMER_EN | TIMER_PERIODIC);
writel(val, wdt->wdt_timer + TIMER_PTV);
val = WDT_CFG_TMR_SRC | WDT_CFG_PERIOD | /*WDT_CFG_INT_EN |*/
/*WDT_CFG_SYS_RST_EN |*/ WDT_CFG_PMC2CAR_RST_EN;
if (wdt->status & WDT_ENABLED_AT_PROBE)
val |= WDT_CFG_INT_EN;
writel(val, wdt->wdt_source + WDT_CFG);
writel(WDT_CMD_START_COUNTER, wdt->wdt_source + WDT_CMD);
}
static void tegra_wdt_disable(struct tegra_wdt *wdt)
{
writel(WDT_UNLOCK_PATTERN, wdt->wdt_source + WDT_UNLOCK);
writel(WDT_CMD_DISABLE_COUNTER, wdt->wdt_source + WDT_CMD);
writel(0, wdt->wdt_timer + TIMER_PTV);
}
static irqreturn_t tegra_wdt_interrupt(int irq, void *dev_id)
{
struct tegra_wdt *wdt = dev_id;
tegra_wdt_ping(wdt);
return IRQ_HANDLED;
}
#endif
static int tegra_wdt_notify(struct notifier_block *this,
unsigned long code, void *dev)
{
struct tegra_wdt *wdt = container_of(this, struct tegra_wdt, notifier);
if (code == SYS_DOWN || code == SYS_HALT)
tegra_wdt_disable(wdt);
return NOTIFY_DONE;
}
static int tegra_wdt_open(struct inode *inode, struct file *file)
{
struct tegra_wdt *wdt = platform_get_drvdata(tegra_wdt_dev);
if (test_and_set_bit(1, &wdt->users))
return -EBUSY;
wdt->status |= WDT_ENABLED;
wdt->timeout = heartbeat;
tegra_wdt_enable(wdt);
file->private_data = wdt;
return nonseekable_open(inode, file);
}
static int tegra_wdt_release(struct inode *inode, struct file *file)
{
struct tegra_wdt *wdt = file->private_data;
if (wdt->status == WDT_ENABLED) {
#ifndef CONFIG_WATCHDOG_NOWAYOUT
tegra_wdt_disable(wdt);
wdt->status = WDT_DISABLED;
#endif
}
wdt->users = 0;
return 0;
}
static long tegra_wdt_ioctl(struct file *file, unsigned int cmd,
unsigned long arg)
{
struct tegra_wdt *wdt = file->private_data;
static DEFINE_SPINLOCK(lock);
int new_timeout;
int option;
static const struct watchdog_info ident = {
.identity = "Tegra Watchdog",
.options = WDIOF_SETTIMEOUT,
.firmware_version = 0,
};
switch (cmd) {
case WDIOC_GETSUPPORT:
return copy_to_user((struct watchdog_info __user *)arg, &ident,
sizeof(ident));
case WDIOC_GETSTATUS:
case WDIOC_GETBOOTSTATUS:
return put_user(0, (int __user *)arg);
case WDIOC_KEEPALIVE:
spin_lock(&lock);
tegra_wdt_ping(wdt);
spin_unlock(&lock);
return 0;
case WDIOC_SETTIMEOUT:
if (get_user(new_timeout, (int __user *)arg))
return -EFAULT;
spin_lock(&lock);
tegra_wdt_disable(wdt);
wdt->timeout = clamp(new_timeout, MIN_WDT_PERIOD, MAX_WDT_PERIOD);
tegra_wdt_enable(wdt);
spin_unlock(&lock);
case WDIOC_GETTIMEOUT:
return put_user(wdt->timeout, (int __user *)arg);
case WDIOC_SETOPTIONS:
#ifndef CONFIG_WATCHDOG_NOWAYOUT
if (get_user(option, (int __user *)arg))
return -EFAULT;
spin_lock(&lock);
if (option & WDIOS_DISABLECARD) {
wdt->status &= ~WDT_ENABLED;
wdt->status |= WDT_DISABLED;
tegra_wdt_disable(wdt);
} else if (option & WDIOS_ENABLECARD) {
tegra_wdt_enable(wdt);
wdt->status |= WDT_ENABLED;
wdt->status &= ~WDT_DISABLED;
} else {
spin_unlock(&lock);
return -EINVAL;
}
spin_unlock(&lock);
return 0;
#else
return -EINVAL;
#endif
}
return -ENOTTY;
}
static ssize_t tegra_wdt_write(struct file *file, const char __user *data,
size_t len, loff_t *ppos)
{
return len;
}
static const struct file_operations tegra_wdt_fops = {
.owner = THIS_MODULE,
.llseek = no_llseek,
.write = tegra_wdt_write,
.unlocked_ioctl = tegra_wdt_ioctl,
.open = tegra_wdt_open,
.release = tegra_wdt_release,
};
static int tegra_wdt_probe(struct platform_device *pdev)
{
struct resource *res_src, *res_wdt, *res_irq;
struct tegra_wdt *wdt;
u32 src;
int ret = 0;
if (pdev->id != -1) {
dev_err(&pdev->dev, "only id -1 supported\n");
return -ENODEV;
}
if (tegra_wdt_dev != NULL) {
dev_err(&pdev->dev, "watchdog already registered\n");
return -EIO;
}
res_src = platform_get_resource(pdev, IORESOURCE_MEM, 0);
res_wdt = platform_get_resource(pdev, IORESOURCE_MEM, 1);
res_irq = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
if (!res_src || !res_wdt || !res_irq) {
dev_err(&pdev->dev, "incorrect resources\n");
return -ENOENT;
}
wdt = kzalloc(sizeof(*wdt), GFP_KERNEL);
if (!wdt) {
dev_err(&pdev->dev, "out of memory\n");
return -ENOMEM;
}
wdt->irq = -1;
wdt->miscdev.parent = &pdev->dev;
wdt->miscdev.minor = WATCHDOG_MINOR;
wdt->miscdev.name = "watchdog";
wdt->miscdev.fops = &tegra_wdt_fops;
wdt->notifier.notifier_call = tegra_wdt_notify;
res_src = request_mem_region(res_src->start, resource_size(res_src),
pdev->name);
res_wdt = request_mem_region(res_wdt->start, resource_size(res_wdt),
pdev->name);
if (!res_src || !res_wdt) {
dev_err(&pdev->dev, "unable to request memory resources\n");
ret = -EBUSY;
goto fail;
}
wdt->wdt_source = ioremap(res_src->start, resource_size(res_src));
wdt->wdt_timer = ioremap(res_wdt->start, resource_size(res_wdt));
if (!wdt->wdt_source || !wdt->wdt_timer) {
dev_err(&pdev->dev, "unable to map registers\n");
ret = -ENOMEM;
goto fail;
}
src = readl(wdt->wdt_source);
if (src & BIT(12))
dev_info(&pdev->dev, "last reset due to watchdog timeout\n");
tegra_wdt_disable(wdt);
writel(TIMER_PCR_INTR, wdt->wdt_timer + TIMER_PCR);
ret = request_irq(res_irq->start, tegra_wdt_interrupt, IRQF_DISABLED,
dev_name(&pdev->dev), wdt);
if (ret) {
dev_err(&pdev->dev, "unable to configure IRQ\n");
goto fail;
}
wdt->irq = res_irq->start;
wdt->res_src = res_src;
wdt->res_wdt = res_wdt;
ret = register_reboot_notifier(&wdt->notifier);
if (ret) {
dev_err(&pdev->dev, "cannot register reboot notifier\n");
goto fail;
}
ret = misc_register(&wdt->miscdev);
if (ret) {
dev_err(&pdev->dev, "failed to register misc device\n");
unregister_reboot_notifier(&wdt->notifier);
goto fail;
}
platform_set_drvdata(pdev, wdt);
tegra_wdt_dev = pdev;
#ifdef CONFIG_TEGRA_WATCHDOG_ENABLE_ON_PROBE
wdt->status = WDT_ENABLED | WDT_ENABLED_AT_PROBE;
wdt->timeout = heartbeat;
tegra_wdt_enable(wdt);
#else
wdt->status = WDT_DISABLED;
#endif
return 0;
fail:
if (wdt->irq != -1)
free_irq(wdt->irq, wdt);
if (wdt->wdt_source)
iounmap(wdt->wdt_source);
if (wdt->wdt_timer)
iounmap(wdt->wdt_timer);
if (res_src)
release_mem_region(res_src->start, resource_size(res_src));
if (res_wdt)
release_mem_region(res_wdt->start, resource_size(res_wdt));
kfree(wdt);
return ret;
}
static int tegra_wdt_remove(struct platform_device *pdev)
{
struct tegra_wdt *wdt = platform_get_drvdata(pdev);
tegra_wdt_disable(wdt);
unregister_reboot_notifier(&wdt->notifier);
misc_deregister(&wdt->miscdev);
free_irq(wdt->irq, wdt);
iounmap(wdt->wdt_source);
iounmap(wdt->wdt_timer);
release_mem_region(wdt->res_src->start, resource_size(wdt->res_src));
release_mem_region(wdt->res_wdt->start, resource_size(wdt->res_wdt));
kfree(wdt);
platform_set_drvdata(pdev, NULL);
return 0;
}
#ifdef CONFIG_PM
static int tegra_wdt_suspend(struct platform_device *pdev, pm_message_t state)
{
struct tegra_wdt *wdt = platform_get_drvdata(pdev);
tegra_wdt_disable(wdt);
return 0;
}
static int tegra_wdt_resume(struct platform_device *pdev)
{
struct tegra_wdt *wdt = platform_get_drvdata(pdev);
if (wdt->status & WDT_ENABLED)
tegra_wdt_enable(wdt);
return 0;
}
#endif
static struct platform_driver tegra_wdt_driver = {
.probe = tegra_wdt_probe,
.remove = __devexit_p(tegra_wdt_remove),
#ifdef CONFIG_PM
.suspend = tegra_wdt_suspend,
.resume = tegra_wdt_resume,
#endif
.driver = {
.owner = THIS_MODULE,
.name = "tegra_wdt",
},
};
static int __init tegra_wdt_init(void)
{
return platform_driver_register(&tegra_wdt_driver);
}
static void __exit tegra_wdt_exit(void)
{
platform_driver_unregister(&tegra_wdt_driver);
}
module_init(tegra_wdt_init);
module_exit(tegra_wdt_exit);
MODULE_AUTHOR("NVIDIA Corporation");
MODULE_DESCRIPTION("Tegra Watchdog Driver");
module_param(heartbeat, int, 0);
MODULE_PARM_DESC(heartbeat,
"Watchdog heartbeat period in seconds");
MODULE_LICENSE("GPL");
MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);
MODULE_ALIAS("platform:tegra_wdt");