aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ifxmips/files/drivers/char/watchdog/ifxmips_wdt.c
blob: 8fcbc88030cf417b8a01d06decabed9c83c92799 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
/*
 *   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) 2006 infineon
 *   Copyright (C) 2007 John Crispin <blogic@openwrt.org> 
 *
 */

#include <asm/uaccess.h>
#include <linux/errno.h>
#include <linux/proc_fs.h>
#include <linux/ioctl.h>
#include <linux/module.h>
#include <asm-mips/ifxmips/ifxmips_wdt.h>
#include <asm-mips/ifxmips/ifxmips.h>


// TODO remove magic numbers and weirdo macros

extern unsigned int ifxmips_get_fpi_hz (void);

static int ifxmips_wdt_inuse = 0;
static int ifxmips_wdt_major = 0;

int
ifxmips_wdt_enable (unsigned int timeout)
{
	unsigned int wdt_cr = 0;
	unsigned int wdt_reload = 0;
	unsigned int wdt_clkdiv, wdt_pwl, ffpi;
	int retval = 0;

	/* clock divider & prewarning limit */
	wdt_clkdiv = 1 << (7 * IFXMIPS_BIU_WDT_CR_CLKDIV_GET(readl(IFXMIPS_BIU_WDT_CR)));
	wdt_pwl = 0x8000 >> IFXMIPS_BIU_WDT_CR_PWL_GET(readl(IFXMIPS_BIU_WDT_CR));

	//TODO
	printk("WARNING FUNCTION CALL MISSING!!!");
	//ffpi = cgu_get_io_region_clock();
	printk("cpu clock = %d\n", ffpi);

	/* caculate reload value */
	wdt_reload = (timeout * (ffpi / wdt_clkdiv)) + wdt_pwl;

	printk("wdt_pwl=0x%x, wdt_clkdiv=%d, ffpi=%d, wdt_reload = 0x%x\n",
		wdt_pwl, wdt_clkdiv, ffpi, wdt_reload);

	if (wdt_reload > 0xFFFF)
	{
		printk ("timeout too large %d\n", timeout);
		retval = -EINVAL;
		goto out;
	}

	/* Write first part of password access */
	writel(IFXMIPS_BIU_WDT_CR_PW_SET(IFXMIPS_WDT_PW1), IFXMIPS_BIU_WDT_CR);

	wdt_cr = readl(IFXMIPS_BIU_WDT_CR);
	wdt_cr &= (!IFXMIPS_BIU_WDT_CR_PW_SET(0xff) &
		   !IFXMIPS_BIU_WDT_CR_PWL_SET(0x3) &
		   !IFXMIPS_BIU_WDT_CR_CLKDIV_SET(0x3) &
		   !IFXMIPS_BIU_WDT_CR_RELOAD_SET(0xffff));

	wdt_cr |= (IFXMIPS_BIU_WDT_CR_PW_SET(IFXMIPS_WDT_PW2) |
		   IFXMIPS_BIU_WDT_CR_PWL_SET(IFXMIPS_BIU_WDT_CR_PWL_GET(readl(IFXMIPS_BIU_WDT_CR))) |
		   IFXMIPS_BIU_WDT_CR_CLKDIV_SET(IFXMIPS_BIU_WDT_CR_CLKDIV_GET(readl(IFXMIPS_BIU_WDT_CR))) |
		   IFXMIPS_BIU_WDT_CR_RELOAD_SET(wdt_reload) |
		   IFXMIPS_BIU_WDT_CR_GEN);

	writel(wdt_cr, IFXMIPS_BIU_WDT_CR);

	printk("watchdog enabled\n");

out:
	return retval;
}

void
ifxmips_wdt_disable (void)
{
	writel(IFXMIPS_BIU_WDT_CR_PW_SET(IFXMIPS_WDT_PW1), IFXMIPS_BIU_WDT_CR);
	writel(IFXMIPS_BIU_WDT_CR_PW_SET(IFXMIPS_WDT_PW2), IFXMIPS_BIU_WDT_CR);

	printk("watchdog disabled\n");
}

/* passed LPEN or DSEN */
void
ifxmips_wdt_enable_feature (int en, int type)
{
	unsigned int wdt_cr = 0;

	writel(IFXMIPS_BIU_WDT_CR_PW_SET(IFXMIPS_WDT_PW1), IFXMIPS_BIU_WDT_CR);

	wdt_cr = readl(IFXMIPS_BIU_WDT_CR);

	if (en)
	{
		wdt_cr &= (~IFXMIPS_BIU_WDT_CR_PW_SET(0xff));
		wdt_cr |= (IFXMIPS_BIU_WDT_CR_PW_SET(IFXMIPS_WDT_PW2) | type);
	} else {
		wdt_cr &= (~IFXMIPS_BIU_WDT_CR_PW_SET(0xff) & ~type);
		wdt_cr |= IFXMIPS_BIU_WDT_CR_PW_SET(IFXMIPS_WDT_PW2);
	}

	writel(wdt_cr, IFXMIPS_BIU_WDT_CR);
}

void
ifxmips_wdt_prewarning_limit (int pwl)
{
	unsigned int wdt_cr = 0;

	wdt_cr = readl(IFXMIPS_BIU_WDT_CR);
	writel(IFXMIPS_BIU_WDT_CR_PW_SET(IFXMIPS_WDT_PW1), IFXMIPS_BIU_WDT_CR);

	wdt_cr &= 0xf300ffff;
	wdt_cr |= (IFXMIPS_BIU_WDT_CR_PW_SET(IFXMIPS_WDT_PW2) | IFXMIPS_BIU_WDT_CR_PWL_SET(pwl));

	/* Set reload value in second password access */
	writel(wdt_cr, IFXMIPS_BIU_WDT_CR);
}

void
ifxmips_wdt_set_clkdiv (int clkdiv)
{
	unsigned int wdt_cr = 0;

	wdt_cr = readl(IFXMIPS_BIU_WDT_CR);
	writel(IFXMIPS_BIU_WDT_CR_PW_SET(IFXMIPS_WDT_PW1), IFXMIPS_BIU_WDT_CR);

	wdt_cr &= 0xfc00ffff;
	wdt_cr |= (IFXMIPS_BIU_WDT_CR_PW_SET(IFXMIPS_WDT_PW2) | IFXMIPS_BIU_WDT_CR_CLKDIV_SET(clkdiv));

	/* Set reload value in second password access */
	writel(wdt_cr, IFXMIPS_BIU_WDT_CR);
}

static int
ifxmips_wdt_ioctl (struct inode *inode, struct file *file, unsigned int cmd,
	   unsigned long arg)
{
	int result = 0;
	static int timeout = -1;
	unsigned int user_arg;

	if ((cmd != IFXMIPS_WDT_IOC_STOP) && (cmd != IFXMIPS_WDT_IOC_PING) && (cmd != IFXMIPS_WDT_IOC_GET_STATUS))
	{
		if (copy_from_user((void *) &user_arg, (void *) arg, sizeof (int))){
			result = -EINVAL;
			goto out;
		}
	}

	switch (cmd)
	{
	case IFXMIPS_WDT_IOC_START:
		if ((result = ifxmips_wdt_enable(user_arg)) < 0)
			timeout = -1;
		else
			timeout = user_arg;
		break;

	case IFXMIPS_WDT_IOC_STOP:
		printk("disable watch dog timer\n");
		ifxmips_wdt_disable();
		break;

	case IFXMIPS_WDT_IOC_PING:
		if (timeout < 0)
			result = -EIO;
		else
			result = ifxmips_wdt_enable(timeout);
		break;

	case IFXMIPS_WDT_IOC_GET_STATUS:
		user_arg = readl(IFXMIPS_BIU_WDT_SR);
		copy_to_user((int*)arg, (int*)&user_arg, sizeof(int));
		break;

	case IFXMIPS_WDT_IOC_SET_PWL:
		ifxmips_wdt_prewarning_limit(user_arg);
		break;

	case IFXMIPS_WDT_IOC_SET_DSEN:
		ifxmips_wdt_enable_feature(user_arg, IFXMIPS_BIU_WDT_CR_DSEN);
		break;

	case IFXMIPS_WDT_IOC_SET_LPEN:
		ifxmips_wdt_enable_feature(user_arg, IFXMIPS_BIU_WDT_CR_LPEN);
		break;

	case IFXMIPS_WDT_IOC_SET_CLKDIV:
		ifxmips_wdt_set_clkdiv(user_arg);
		break;

	default:
		printk("unknown watchdog iotcl\n");
	}

out:
	return result;
}

static int
ifxmips_wdt_open (struct inode *inode, struct file *file)
{
	if (ifxmips_wdt_inuse)
		return -EBUSY;

	ifxmips_wdt_inuse = 1;

	return 0;
}

static int
ifxmips_wdt_release (struct inode *inode, struct file *file)
{
	ifxmips_wdt_inuse = 0;

	return 0;
}

int
ifxmips_wdt_register_proc_read (char *buf, char **start, off_t offset, int count,
			int *eof, void *data)
{
	int len = 0;

	len += sprintf (buf + len, "IFXMIPS_BIU_WDT_PROC_READ\n");
	len += sprintf (buf + len, "IFXMIPS_BIU_WDT_CR(0x%08x)	: 0x%08x\n",
			(unsigned int)IFXMIPS_BIU_WDT_CR, readl(IFXMIPS_BIU_WDT_CR));
	len += sprintf (buf + len, "IFXMIPS_BIU_WDT_SR(0x%08x)	: 0x%08x\n",
			(unsigned int)IFXMIPS_BIU_WDT_SR, readl(IFXMIPS_BIU_WDT_SR));

	*eof = 1;

	return len;
}

static struct file_operations wdt_fops = {
      .owner = THIS_MODULE,
      .ioctl = ifxmips_wdt_ioctl,
      .open = ifxmips_wdt_open,
      .release = ifxmips_wdt_release,
};

int __init
ifxmips_wdt_init_module (void)
{
	ifxmips_wdt_major = register_chrdev(0, "wdt", &wdt_fops);

	if (ifxmips_wdt_major < 0)
	{
		printk("cannot register watchdog device\n");

		return -EINVAL;
	}

	create_proc_read_entry("ifxmips_wdt", 0, NULL, ifxmips_wdt_register_proc_read, NULL);

	printk("ifxmips watchdog loaded\n");

	return 0;
}

void
ifxmips_wdt_cleanup_module (void)
{
	unregister_chrdev(ifxmips_wdt_major, "wdt");
	remove_proc_entry("ifxmips_wdt", NULL);
}

module_init(ifxmips_wdt_init_module);
module_exit(ifxmips_wdt_cleanup_module);