From 972b40d78c36562310cc9a210d64a8f5ce947eca Mon Sep 17 00:00:00 2001 From: blogic Date: Sat, 28 Jun 2008 21:18:51 +0000 Subject: fixes ifxmips watchdog driver git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11602 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- .../files/include/asm-mips/ifxmips/ifxmips.h | 11 ----- .../files/include/asm-mips/ifxmips/ifxmips_wdt.h | 48 ---------------------- 2 files changed, 59 deletions(-) delete mode 100644 target/linux/ifxmips/files/include/asm-mips/ifxmips/ifxmips_wdt.h (limited to 'target/linux/ifxmips/files/include/asm-mips') diff --git a/target/linux/ifxmips/files/include/asm-mips/ifxmips/ifxmips.h b/target/linux/ifxmips/files/include/asm-mips/ifxmips/ifxmips.h index 7966b13c0..3ab53aebb 100644 --- a/target/linux/ifxmips/files/include/asm-mips/ifxmips/ifxmips.h +++ b/target/linux/ifxmips/files/include/asm-mips/ifxmips/ifxmips.h @@ -273,17 +273,6 @@ #define IFXMIPS_BIU_WDT_CR ((u32*)(IFXMIPS_WDT_BASE_ADDR + 0x03F0)) #define IFXMIPS_BIU_WDT_SR ((u32*)(IFXMIPS_WDT_BASE_ADDR + 0x03F8)) -#define IFXMIPS_BIU_WDT_CR_GEN (1 << 31) -#define IFXMIPS_BIU_WDT_CR_DSEN (1 << 30) -#define IFXMIPS_BIU_WDT_CR_LPEN (1 << 29) - -#define IFXMIPS_BIU_WDT_CR_CLKDIV_GET(value) (((value) >> 24) & ((1 << 2) - 1)) -#define IFXMIPS_BIU_WDT_CR_PWL_GET(value) (((value) >> 26) & ((1 << 2) - 1)) -#define IFXMIPS_BIU_WDT_CR_PWL_SET(value) ((((1 << 2) - 1) & (value)) << 26) -#define IFXMIPS_BIU_WDT_CR_PW_SET(value) (((( 1 << 8) - 1) & (value)) << 16) -#define IFXMIPS_BIU_WDT_CR_CLKDIV_SET(value) (((( 1 << 2) - 1) & (value)) << 24) -#define IFXMIPS_BIU_WDT_CR_RELOAD_SET(value) (((( 1 << 16) - 1) & (value)) << 0) - /*------------ LED */ diff --git a/target/linux/ifxmips/files/include/asm-mips/ifxmips/ifxmips_wdt.h b/target/linux/ifxmips/files/include/asm-mips/ifxmips/ifxmips_wdt.h deleted file mode 100644 index 34833e8ea..000000000 --- a/target/linux/ifxmips/files/include/asm-mips/ifxmips/ifxmips_wdt.h +++ /dev/null @@ -1,48 +0,0 @@ -/* - * 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA. - * - * Copyright (C) 2005 infineon - * Copyright (C) 2007 John Crispin - * - */ - -#ifndef IFXMIPS_WDT_H -#define IFXMIPS_WDT_H - -/* IFXMips wdt ioctl control */ -#define IFXMIPS_WDT_IOC_MAGIC 0xc0 -#define IFXMIPS_WDT_IOC_START _IOW(IFXMIPS_WDT_IOC_MAGIC, 0, int) -#define IFXMIPS_WDT_IOC_STOP _IO(IFXMIPS_WDT_IOC_MAGIC, 1) -#define IFXMIPS_WDT_IOC_PING _IO(IFXMIPS_WDT_IOC_MAGIC, 2) -#define IFXMIPS_WDT_IOC_SET_PWL _IOW(IFXMIPS_WDT_IOC_MAGIC, 3, int) -#define IFXMIPS_WDT_IOC_SET_DSEN _IOW(IFXMIPS_WDT_IOC_MAGIC, 4, int) -#define IFXMIPS_WDT_IOC_SET_LPEN _IOW(IFXMIPS_WDT_IOC_MAGIC, 5, int) -#define IFXMIPS_WDT_IOC_GET_STATUS _IOR(IFXMIPS_WDT_IOC_MAGIC, 6, int) -#define IFXMIPS_WDT_IOC_SET_CLKDIV _IOW(IFXMIPS_WDT_IOC_MAGIC, 7, int) - -/* password 1 and 2 */ -#define IFXMIPS_WDT_PW1 0x000000BE -#define IFXMIPS_WDT_PW2 0x000000DC - -#define IFXMIPS_WDT_CLKDIV0_VAL 1 -#define IFXMIPS_WDT_CLKDIV1_VAL 64 -#define IFXMIPS_WDT_CLKDIV2_VAL 4096 -#define IFXMIPS_WDT_CLKDIV3_VAL 262144 -#define IFXMIPS_WDT_CLKDIV0 0 -#define IFXMIPS_WDT_CLKDIV1 1 -#define IFXMIPS_WDT_CLKDIV2 2 -#define IFXMIPS_WDT_CLKDIV3 3 - -#endif -- cgit v1.2.3