mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-25 14:10:43 +00:00
83d290c56f
When U-Boot started using SPDX tags we were among the early adopters and there weren't a lot of other examples to borrow from. So we picked the area of the file that usually had a full license text and replaced it with an appropriate SPDX-License-Identifier: entry. Since then, the Linux Kernel has adopted SPDX tags and they place it as the very first line in a file (except where shebangs are used, then it's second line) and with slightly different comment styles than us. In part due to community overlap, in part due to better tag visibility and in part for other minor reasons, switch over to that style. This commit changes all instances where we have a single declared license in the tag as both the before and after are identical in tag contents. There's also a few places where I found we did not have a tag and have introduced one. Signed-off-by: Tom Rini <trini@konsulko.com>
68 lines
1.6 KiB
C
68 lines
1.6 KiB
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright (c) 2011-2013 Xilinx Inc.
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <asm/io.h>
|
|
#include <asm/microblaze_intc.h>
|
|
#include <asm/processor.h>
|
|
#include <watchdog.h>
|
|
|
|
#define XWT_CSR0_WRS_MASK 0x00000008 /* Reset status Mask */
|
|
#define XWT_CSR0_WDS_MASK 0x00000004 /* Timer state Mask */
|
|
#define XWT_CSR0_EWDT1_MASK 0x00000002 /* Enable bit 1 Mask*/
|
|
#define XWT_CSRX_EWDT2_MASK 0x00000001 /* Enable bit 2 Mask */
|
|
|
|
struct watchdog_regs {
|
|
u32 twcsr0; /* 0x0 */
|
|
u32 twcsr1; /* 0x4 */
|
|
u32 tbr; /* 0x8 */
|
|
};
|
|
|
|
static struct watchdog_regs *watchdog_base =
|
|
(struct watchdog_regs *)CONFIG_WATCHDOG_BASEADDR;
|
|
|
|
void hw_watchdog_reset(void)
|
|
{
|
|
u32 reg;
|
|
|
|
/* Read the current contents of TCSR0 */
|
|
reg = readl(&watchdog_base->twcsr0);
|
|
|
|
/* Clear the watchdog WDS bit */
|
|
if (reg & (XWT_CSR0_EWDT1_MASK | XWT_CSRX_EWDT2_MASK))
|
|
writel(reg | XWT_CSR0_WDS_MASK, &watchdog_base->twcsr0);
|
|
}
|
|
|
|
void hw_watchdog_disable(void)
|
|
{
|
|
u32 reg;
|
|
|
|
/* Read the current contents of TCSR0 */
|
|
reg = readl(&watchdog_base->twcsr0);
|
|
|
|
writel(reg & ~XWT_CSR0_EWDT1_MASK, &watchdog_base->twcsr0);
|
|
writel(~XWT_CSRX_EWDT2_MASK, &watchdog_base->twcsr1);
|
|
|
|
puts("Watchdog disabled!\n");
|
|
}
|
|
|
|
static void hw_watchdog_isr(void *arg)
|
|
{
|
|
hw_watchdog_reset();
|
|
}
|
|
|
|
void hw_watchdog_init(void)
|
|
{
|
|
int ret;
|
|
|
|
writel((XWT_CSR0_WRS_MASK | XWT_CSR0_WDS_MASK | XWT_CSR0_EWDT1_MASK),
|
|
&watchdog_base->twcsr0);
|
|
writel(XWT_CSRX_EWDT2_MASK, &watchdog_base->twcsr1);
|
|
|
|
ret = install_interrupt_handler(CONFIG_WATCHDOG_IRQ,
|
|
hw_watchdog_isr, NULL);
|
|
if (ret)
|
|
puts("Watchdog IRQ registration failed.");
|
|
}
|