Linux Audio

Check our new training course

Loading...
Note: File does not exist in v3.5.6.
 1/*
 2 * Copyright (c) 2011 Zhang, Keguang <keguang.zhang@gmail.com>
 3 *
 4 * Loongson 1 watchdog register definitions.
 5 *
 6 * This program is free software; you can redistribute	it and/or modify it
 7 * under  the terms of	the GNU General	 Public License as published by the
 8 * Free Software Foundation;  either version 2 of the  License, or (at your
 9 * option) any later version.
10 */
11
12#ifndef __ASM_MACH_LOONGSON1_REGS_WDT_H
13#define __ASM_MACH_LOONGSON1_REGS_WDT_H
14
15#define LS1X_WDT_REG(x) \
16		((void __iomem *)KSEG1ADDR(LS1X_WDT_BASE + (x)))
17
18#define LS1X_WDT_EN			LS1X_WDT_REG(0x0)
19#define LS1X_WDT_SET			LS1X_WDT_REG(0x4)
20#define LS1X_WDT_TIMER			LS1X_WDT_REG(0x8)
21
22#endif /* __ASM_MACH_LOONGSON1_REGS_WDT_H */