Linux Audio

Check our new training course

Loading...
v3.1
  1/*
  2 * Octeon Watchdog driver
  3 *
  4 * Copyright (C) 2007, 2008, 2009, 2010 Cavium Networks
  5 *
 
 
  6 * Some parts derived from wdt.c
  7 *
  8 *	(c) Copyright 1996-1997 Alan Cox <alan@lxorguk.ukuu.org.uk>,
  9 *						All Rights Reserved.
 10 *
 11 *	This program is free software; you can redistribute it and/or
 12 *	modify it under the terms of the GNU General Public License
 13 *	as published by the Free Software Foundation; either version
 14 *	2 of the License, or (at your option) any later version.
 15 *
 16 *	Neither Alan Cox nor CymruNet Ltd. admit liability nor provide
 17 *	warranty for any of this software. This material is provided
 18 *	"AS-IS" and at no charge.
 19 *
 20 *	(c) Copyright 1995    Alan Cox <alan@lxorguk.ukuu.org.uk>
 21 *
 22 * This file is subject to the terms and conditions of the GNU General Public
 23 * License.  See the file "COPYING" in the main directory of this archive
 24 * for more details.
 25 *
 26 *
 27 * The OCTEON watchdog has a maximum timeout of 2^32 * io_clock.
 28 * For most systems this is less than 10 seconds, so to allow for
 29 * software to request longer watchdog heartbeats, we maintain software
 30 * counters to count multiples of the base rate.  If the system locks
 31 * up in such a manner that we can not run the software counters, the
 32 * only result is a watchdog reset sooner than was requested.  But
 33 * that is OK, because in this case userspace would likely not be able
 34 * to do anything anyhow.
 35 *
 36 * The hardware watchdog interval we call the period.  The OCTEON
 37 * watchdog goes through several stages, after the first period an
 38 * irq is asserted, then if it is not reset, after the next period NMI
 39 * is asserted, then after an additional period a chip wide soft reset.
 40 * So for the software counters, we reset watchdog after each period
 41 * and decrement the counter.  But for the last two periods we need to
 42 * let the watchdog progress to the NMI stage so we disable the irq
 43 * and let it proceed.  Once in the NMI, we print the register state
 44 * to the serial port and then wait for the reset.
 45 *
 46 * A watchdog is maintained for each CPU in the system, that way if
 47 * one CPU suffers a lockup, we also get a register dump and reset.
 48 * The userspace ping resets the watchdog on all CPUs.
 49 *
 50 * Before userspace opens the watchdog device, we still run the
 51 * watchdogs to catch any lockups that may be kernel related.
 52 *
 53 */
 54
 55#include <linux/miscdevice.h>
 
 56#include <linux/interrupt.h>
 57#include <linux/watchdog.h>
 58#include <linux/cpumask.h>
 59#include <linux/bitops.h>
 60#include <linux/kernel.h>
 61#include <linux/module.h>
 62#include <linux/string.h>
 63#include <linux/delay.h>
 64#include <linux/cpu.h>
 65#include <linux/smp.h>
 66#include <linux/fs.h>
 67#include <linux/irq.h>
 68
 69#include <asm/mipsregs.h>
 70#include <asm/uasm.h>
 71
 72#include <asm/octeon/octeon.h>
 73
 74/* The count needed to achieve timeout_sec. */
 75static unsigned int timeout_cnt;
 76
 77/* The maximum period supported. */
 78static unsigned int max_timeout_sec;
 79
 80/* The current period.  */
 81static unsigned int timeout_sec;
 82
 83/* Set to non-zero when userspace countdown mode active */
 84static int do_coundown;
 85static unsigned int countdown_reset;
 86static unsigned int per_cpu_countdown[NR_CPUS];
 87
 88static cpumask_t irq_enabled_cpus;
 89
 90#define WD_TIMO 60			/* Default heartbeat = 60 seconds */
 91
 92static int heartbeat = WD_TIMO;
 93module_param(heartbeat, int, S_IRUGO);
 94MODULE_PARM_DESC(heartbeat,
 95	"Watchdog heartbeat in seconds. (0 < heartbeat, default="
 96				__MODULE_STRING(WD_TIMO) ")");
 97
 98static int nowayout = WATCHDOG_NOWAYOUT;
 99module_param(nowayout, int, S_IRUGO);
100MODULE_PARM_DESC(nowayout,
101	"Watchdog cannot be stopped once started (default="
102				__MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
103
104static unsigned long octeon_wdt_is_open;
105static char expect_close;
106
107static u32 __initdata nmi_stage1_insns[64];
108/* We need one branch and therefore one relocation per target label. */
109static struct uasm_label __initdata labels[5];
110static struct uasm_reloc __initdata relocs[5];
111
112enum lable_id {
113	label_enter_bootloader = 1
114};
115
116/* Some CP0 registers */
117#define K0		26
118#define C0_CVMMEMCTL 11, 7
119#define C0_STATUS 12, 0
120#define C0_EBASE 15, 1
121#define C0_DESAVE 31, 0
122
123void octeon_wdt_nmi_stage2(void);
124
125static void __init octeon_wdt_build_stage1(void)
126{
127	int i;
128	int len;
129	u32 *p = nmi_stage1_insns;
130#ifdef CONFIG_HOTPLUG_CPU
131	struct uasm_label *l = labels;
132	struct uasm_reloc *r = relocs;
133#endif
134
135	/*
136	 * For the next few instructions running the debugger may
137	 * cause corruption of k0 in the saved registers. Since we're
138	 * about to crash, nobody probably cares.
139	 *
140	 * Save K0 into the debug scratch register
141	 */
142	uasm_i_dmtc0(&p, K0, C0_DESAVE);
143
144	uasm_i_mfc0(&p, K0, C0_STATUS);
145#ifdef CONFIG_HOTPLUG_CPU
146	uasm_il_bbit0(&p, &r, K0, ilog2(ST0_NMI), label_enter_bootloader);
 
 
147#endif
148	/* Force 64-bit addressing enabled */
149	uasm_i_ori(&p, K0, K0, ST0_UX | ST0_SX | ST0_KX);
150	uasm_i_mtc0(&p, K0, C0_STATUS);
151
152#ifdef CONFIG_HOTPLUG_CPU
153	uasm_i_mfc0(&p, K0, C0_EBASE);
154	/* Coreid number in K0 */
155	uasm_i_andi(&p, K0, K0, 0xf);
156	/* 8 * coreid in bits 16-31 */
157	uasm_i_dsll_safe(&p, K0, K0, 3 + 16);
158	uasm_i_ori(&p, K0, K0, 0x8001);
159	uasm_i_dsll_safe(&p, K0, K0, 16);
160	uasm_i_ori(&p, K0, K0, 0x0700);
161	uasm_i_drotr_safe(&p, K0, K0, 32);
162	/*
163	 * Should result in: 0x8001,0700,0000,8*coreid which is
164	 * CVMX_CIU_WDOGX(coreid) - 0x0500
165	 *
166	 * Now ld K0, CVMX_CIU_WDOGX(coreid)
167	 */
168	uasm_i_ld(&p, K0, 0x500, K0);
169	/*
170	 * If bit one set handle the NMI as a watchdog event.
171	 * otherwise transfer control to bootloader.
172	 */
173	uasm_il_bbit0(&p, &r, K0, 1, label_enter_bootloader);
174	uasm_i_nop(&p);
 
 
175#endif
176
177	/* Clear Dcache so cvmseg works right. */
178	uasm_i_cache(&p, 1, 0, 0);
179
180	/* Use K0 to do a read/modify/write of CVMMEMCTL */
181	uasm_i_dmfc0(&p, K0, C0_CVMMEMCTL);
182	/* Clear out the size of CVMSEG	*/
183	uasm_i_dins(&p, K0, 0, 0, 6);
184	/* Set CVMSEG to its largest value */
185	uasm_i_ori(&p, K0, K0, 0x1c0 | 54);
186	/* Store the CVMMEMCTL value */
187	uasm_i_dmtc0(&p, K0, C0_CVMMEMCTL);
188
189	/* Load the address of the second stage handler */
190	UASM_i_LA(&p, K0, (long)octeon_wdt_nmi_stage2);
191	uasm_i_jr(&p, K0);
192	uasm_i_dmfc0(&p, K0, C0_DESAVE);
193
194#ifdef CONFIG_HOTPLUG_CPU
195	uasm_build_label(&l, p, label_enter_bootloader);
196	/* Jump to the bootloader and restore K0 */
197	UASM_i_LA(&p, K0, (long)octeon_bootloader_entry_addr);
198	uasm_i_jr(&p, K0);
199	uasm_i_dmfc0(&p, K0, C0_DESAVE);
 
 
200#endif
201	uasm_resolve_relocs(relocs, labels);
202
203	len = (int)(p - nmi_stage1_insns);
204	pr_debug("Synthesized NMI stage 1 handler (%d instructions).\n", len);
205
206	pr_debug("\t.set push\n");
207	pr_debug("\t.set noreorder\n");
208	for (i = 0; i < len; i++)
209		pr_debug("\t.word 0x%08x\n", nmi_stage1_insns[i]);
210	pr_debug("\t.set pop\n");
211
212	if (len > 32)
213		panic("NMI stage 1 handler exceeds 32 instructions, was %d\n", len);
 
214}
215
216static int cpu2core(int cpu)
217{
218#ifdef CONFIG_SMP
219	return cpu_logical_map(cpu);
220#else
221	return cvmx_get_core_num();
222#endif
223}
224
225static int core2cpu(int coreid)
226{
227#ifdef CONFIG_SMP
228	return cpu_number_map(coreid);
229#else
230	return 0;
231#endif
232}
233
234/**
235 * Poke the watchdog when an interrupt is received
236 *
237 * @cpl:
238 * @dev_id:
239 *
240 * Returns
241 */
242static irqreturn_t octeon_wdt_poke_irq(int cpl, void *dev_id)
243{
244	unsigned int core = cvmx_get_core_num();
245	int cpu = core2cpu(core);
246
247	if (do_coundown) {
248		if (per_cpu_countdown[cpu] > 0) {
249			/* We're alive, poke the watchdog */
250			cvmx_write_csr(CVMX_CIU_PP_POKEX(core), 1);
251			per_cpu_countdown[cpu]--;
252		} else {
253			/* Bad news, you are about to reboot. */
254			disable_irq_nosync(cpl);
255			cpumask_clear_cpu(cpu, &irq_enabled_cpus);
256		}
257	} else {
258		/* Not open, just ping away... */
259		cvmx_write_csr(CVMX_CIU_PP_POKEX(core), 1);
260	}
261	return IRQ_HANDLED;
262}
263
264/* From setup.c */
265extern int prom_putchar(char c);
266
267/**
268 * Write a string to the uart
269 *
270 * @str:        String to write
271 */
272static void octeon_wdt_write_string(const char *str)
273{
274	/* Just loop writing one byte at a time */
275	while (*str)
276		prom_putchar(*str++);
277}
278
279/**
280 * Write a hex number out of the uart
281 *
282 * @value:      Number to display
283 * @digits:     Number of digits to print (1 to 16)
284 */
285static void octeon_wdt_write_hex(u64 value, int digits)
286{
287	int d;
288	int v;
 
289	for (d = 0; d < digits; d++) {
290		v = (value >> ((digits - d - 1) * 4)) & 0xf;
291		if (v >= 10)
292			prom_putchar('a' + v - 10);
293		else
294			prom_putchar('0' + v);
295	}
296}
297
298const char *reg_name[] = {
299	"$0", "at", "v0", "v1", "a0", "a1", "a2", "a3",
300	"a4", "a5", "a6", "a7", "t0", "t1", "t2", "t3",
301	"s0", "s1", "s2", "s3", "s4", "s5", "s6", "s7",
302	"t8", "t9", "k0", "k1", "gp", "sp", "s8", "ra"
303};
304
305/**
306 * NMI stage 3 handler. NMIs are handled in the following manner:
307 * 1) The first NMI handler enables CVMSEG and transfers from
308 * the bootbus region into normal memory. It is careful to not
309 * destroy any registers.
310 * 2) The second stage handler uses CVMSEG to save the registers
311 * and create a stack for C code. It then calls the third level
312 * handler with one argument, a pointer to the register values.
313 * 3) The third, and final, level handler is the following C
314 * function that prints out some useful infomration.
315 *
316 * @reg:    Pointer to register state before the NMI
317 */
318void octeon_wdt_nmi_stage3(u64 reg[32])
319{
320	u64 i;
321
322	unsigned int coreid = cvmx_get_core_num();
323	/*
324	 * Save status and cause early to get them before any changes
325	 * might happen.
326	 */
327	u64 cp0_cause = read_c0_cause();
328	u64 cp0_status = read_c0_status();
329	u64 cp0_error_epc = read_c0_errorepc();
330	u64 cp0_epc = read_c0_epc();
331
332	/* Delay so output from all cores output is not jumbled together. */
333	__delay(100000000ull * coreid);
334
335	octeon_wdt_write_string("\r\n*** NMI Watchdog interrupt on Core 0x");
336	octeon_wdt_write_hex(coreid, 1);
337	octeon_wdt_write_string(" ***\r\n");
338	for (i = 0; i < 32; i++) {
339		octeon_wdt_write_string("\t");
340		octeon_wdt_write_string(reg_name[i]);
341		octeon_wdt_write_string("\t0x");
342		octeon_wdt_write_hex(reg[i], 16);
343		if (i & 1)
344			octeon_wdt_write_string("\r\n");
345	}
346	octeon_wdt_write_string("\terr_epc\t0x");
347	octeon_wdt_write_hex(cp0_error_epc, 16);
348
349	octeon_wdt_write_string("\tepc\t0x");
350	octeon_wdt_write_hex(cp0_epc, 16);
351	octeon_wdt_write_string("\r\n");
352
353	octeon_wdt_write_string("\tstatus\t0x");
354	octeon_wdt_write_hex(cp0_status, 16);
355	octeon_wdt_write_string("\tcause\t0x");
356	octeon_wdt_write_hex(cp0_cause, 16);
357	octeon_wdt_write_string("\r\n");
358
359	octeon_wdt_write_string("\tsum0\t0x");
360	octeon_wdt_write_hex(cvmx_read_csr(CVMX_CIU_INTX_SUM0(coreid * 2)), 16);
361	octeon_wdt_write_string("\ten0\t0x");
362	octeon_wdt_write_hex(cvmx_read_csr(CVMX_CIU_INTX_EN0(coreid * 2)), 16);
363	octeon_wdt_write_string("\r\n");
364
365	octeon_wdt_write_string("*** Chip soft reset soon ***\r\n");
366}
367
368static void octeon_wdt_disable_interrupt(int cpu)
369{
370	unsigned int core;
371	unsigned int irq;
372	union cvmx_ciu_wdogx ciu_wdog;
373
374	core = cpu2core(cpu);
375
376	irq = OCTEON_IRQ_WDOG0 + core;
377
378	/* Poke the watchdog to clear out its state */
379	cvmx_write_csr(CVMX_CIU_PP_POKEX(core), 1);
380
381	/* Disable the hardware. */
382	ciu_wdog.u64 = 0;
383	cvmx_write_csr(CVMX_CIU_WDOGX(core), ciu_wdog.u64);
384
385	free_irq(irq, octeon_wdt_poke_irq);
 
386}
387
388static void octeon_wdt_setup_interrupt(int cpu)
389{
390	unsigned int core;
391	unsigned int irq;
392	union cvmx_ciu_wdogx ciu_wdog;
393
394	core = cpu2core(cpu);
395
396	/* Disable it before doing anything with the interrupts. */
397	ciu_wdog.u64 = 0;
398	cvmx_write_csr(CVMX_CIU_WDOGX(core), ciu_wdog.u64);
399
400	per_cpu_countdown[cpu] = countdown_reset;
401
402	irq = OCTEON_IRQ_WDOG0 + core;
403
404	if (request_irq(irq, octeon_wdt_poke_irq,
405			IRQF_DISABLED, "octeon_wdt", octeon_wdt_poke_irq))
406		panic("octeon_wdt: Couldn't obtain irq %d", irq);
407
408	cpumask_set_cpu(cpu, &irq_enabled_cpus);
409
410	/* Poke the watchdog to clear out its state */
411	cvmx_write_csr(CVMX_CIU_PP_POKEX(core), 1);
412
413	/* Finally enable the watchdog now that all handlers are installed */
414	ciu_wdog.u64 = 0;
415	ciu_wdog.s.len = timeout_cnt;
416	ciu_wdog.s.mode = 3;	/* 3 = Interrupt + NMI + Soft-Reset */
417	cvmx_write_csr(CVMX_CIU_WDOGX(core), ciu_wdog.u64);
418}
419
420static int octeon_wdt_cpu_callback(struct notifier_block *nfb,
421					   unsigned long action, void *hcpu)
422{
423	unsigned int cpu = (unsigned long)hcpu;
424
425	switch (action) {
426	case CPU_DOWN_PREPARE:
427		octeon_wdt_disable_interrupt(cpu);
428		break;
429	case CPU_ONLINE:
430	case CPU_DOWN_FAILED:
431		octeon_wdt_setup_interrupt(cpu);
432		break;
433	default:
434		break;
435	}
436	return NOTIFY_OK;
437}
438
439static void octeon_wdt_ping(void)
440{
441	int cpu;
442	int coreid;
443
444	for_each_online_cpu(cpu) {
445		coreid = cpu2core(cpu);
446		cvmx_write_csr(CVMX_CIU_PP_POKEX(coreid), 1);
447		per_cpu_countdown[cpu] = countdown_reset;
448		if ((countdown_reset || !do_coundown) &&
449		    !cpumask_test_cpu(cpu, &irq_enabled_cpus)) {
450			/* We have to enable the irq */
451			int irq = OCTEON_IRQ_WDOG0 + coreid;
 
452			enable_irq(irq);
453			cpumask_set_cpu(cpu, &irq_enabled_cpus);
454		}
455	}
 
456}
457
458static void octeon_wdt_calc_parameters(int t)
459{
460	unsigned int periods;
461
462	timeout_sec = max_timeout_sec;
463
464
465	/*
466	 * Find the largest interrupt period, that can evenly divide
467	 * the requested heartbeat time.
468	 */
469	while ((t % timeout_sec) != 0)
470		timeout_sec--;
471
472	periods = t / timeout_sec;
473
474	/*
475	 * The last two periods are after the irq is disabled, and
476	 * then to the nmi, so we subtract them off.
477	 */
478
479	countdown_reset = periods > 2 ? periods - 2 : 0;
480	heartbeat = t;
481	timeout_cnt = ((octeon_get_io_clock_rate() >> 8) * timeout_sec) >> 8;
482}
483
484static int octeon_wdt_set_heartbeat(int t)
 
485{
486	int cpu;
487	int coreid;
488	union cvmx_ciu_wdogx ciu_wdog;
489
490	if (t <= 0)
491		return -1;
492
493	octeon_wdt_calc_parameters(t);
494
495	for_each_online_cpu(cpu) {
496		coreid = cpu2core(cpu);
497		cvmx_write_csr(CVMX_CIU_PP_POKEX(coreid), 1);
498		ciu_wdog.u64 = 0;
499		ciu_wdog.s.len = timeout_cnt;
500		ciu_wdog.s.mode = 3;	/* 3 = Interrupt + NMI + Soft-Reset */
501		cvmx_write_csr(CVMX_CIU_WDOGX(coreid), ciu_wdog.u64);
502		cvmx_write_csr(CVMX_CIU_PP_POKEX(coreid), 1);
503	}
504	octeon_wdt_ping(); /* Get the irqs back on. */
505	return 0;
506}
507
508/**
509 *	octeon_wdt_write:
510 *	@file: file handle to the watchdog
511 *	@buf: buffer to write (unused as data does not matter here
512 *	@count: count of bytes
513 *	@ppos: pointer to the position to write. No seeks allowed
514 *
515 *	A write to a watchdog device is defined as a keepalive signal. Any
516 *	write of data will do, as we we don't define content meaning.
517 */
518
519static ssize_t octeon_wdt_write(struct file *file, const char __user *buf,
520				size_t count, loff_t *ppos)
521{
522	if (count) {
523		if (!nowayout) {
524			size_t i;
525
526			/* In case it was set long ago */
527			expect_close = 0;
528
529			for (i = 0; i != count; i++) {
530				char c;
531				if (get_user(c, buf + i))
532					return -EFAULT;
533				if (c == 'V')
534					expect_close = 1;
535			}
536		}
537		octeon_wdt_ping();
538	}
539	return count;
540}
541
542/**
543 *	octeon_wdt_ioctl:
544 *	@file: file handle to the device
545 *	@cmd: watchdog command
546 *	@arg: argument pointer
547 *
548 *	The watchdog API defines a common set of functions for all
549 *	watchdogs according to their available features. We only
550 *	actually usefully support querying capabilities and setting
551 *	the timeout.
552 */
553
554static long octeon_wdt_ioctl(struct file *file, unsigned int cmd,
555			     unsigned long arg)
556{
557	void __user *argp = (void __user *)arg;
558	int __user *p = argp;
559	int new_heartbeat;
560
561	static struct watchdog_info ident = {
562		.options =		WDIOF_SETTIMEOUT|
563					WDIOF_MAGICCLOSE|
564					WDIOF_KEEPALIVEPING,
565		.firmware_version =	1,
566		.identity =		"OCTEON",
567	};
568
569	switch (cmd) {
570	case WDIOC_GETSUPPORT:
571		return copy_to_user(argp, &ident, sizeof(ident)) ? -EFAULT : 0;
572	case WDIOC_GETSTATUS:
573	case WDIOC_GETBOOTSTATUS:
574		return put_user(0, p);
575	case WDIOC_KEEPALIVE:
576		octeon_wdt_ping();
577		return 0;
578	case WDIOC_SETTIMEOUT:
579		if (get_user(new_heartbeat, p))
580			return -EFAULT;
581		if (octeon_wdt_set_heartbeat(new_heartbeat))
582			return -EINVAL;
583		/* Fall through. */
584	case WDIOC_GETTIMEOUT:
585		return put_user(heartbeat, p);
586	default:
587		return -ENOTTY;
588	}
589}
590
591/**
592 *	octeon_wdt_open:
593 *	@inode: inode of device
594 *	@file: file handle to device
595 *
596 *	The watchdog device has been opened. The watchdog device is single
597 *	open and on opening we do a ping to reset the counters.
598 */
599
600static int octeon_wdt_open(struct inode *inode, struct file *file)
601{
602	if (test_and_set_bit(0, &octeon_wdt_is_open))
603		return -EBUSY;
604	/*
605	 *	Activate
606	 */
607	octeon_wdt_ping();
608	do_coundown = 1;
609	return nonseekable_open(inode, file);
610}
611
612/**
613 *	octeon_wdt_release:
614 *	@inode: inode to board
615 *	@file: file handle to board
616 *
617 *	The watchdog has a configurable API. There is a religious dispute
618 *	between people who want their watchdog to be able to shut down and
619 *	those who want to be sure if the watchdog manager dies the machine
620 *	reboots. In the former case we disable the counters, in the latter
621 *	case you have to open it again very soon.
622 */
623
624static int octeon_wdt_release(struct inode *inode, struct file *file)
625{
626	if (expect_close) {
627		do_coundown = 0;
628		octeon_wdt_ping();
629	} else {
630		pr_crit("octeon_wdt: WDT device closed unexpectedly.  WDT will not stop!\n");
631	}
632	clear_bit(0, &octeon_wdt_is_open);
633	expect_close = 0;
634	return 0;
635}
636
637static const struct file_operations octeon_wdt_fops = {
638	.owner		= THIS_MODULE,
639	.llseek		= no_llseek,
640	.write		= octeon_wdt_write,
641	.unlocked_ioctl	= octeon_wdt_ioctl,
642	.open		= octeon_wdt_open,
643	.release	= octeon_wdt_release,
644};
645
646static struct miscdevice octeon_wdt_miscdev = {
647	.minor	= WATCHDOG_MINOR,
648	.name	= "watchdog",
649	.fops	= &octeon_wdt_fops,
 
 
650};
651
652static struct notifier_block octeon_wdt_cpu_notifier = {
653	.notifier_call = octeon_wdt_cpu_callback,
 
654};
655
656
657/**
658 * Module/ driver initialization.
659 *
660 * Returns Zero on success
661 */
662static int __init octeon_wdt_init(void)
663{
664	int i;
665	int ret;
666	int cpu;
667	u64 *ptr;
668
669	/*
670	 * Watchdog time expiration length = The 16 bits of LEN
671	 * represent the most significant bits of a 24 bit decrementer
672	 * that decrements every 256 cycles.
673	 *
674	 * Try for a timeout of 5 sec, if that fails a smaller number
675	 * of even seconds,
676	 */
677	max_timeout_sec = 6;
678	do {
679		max_timeout_sec--;
680		timeout_cnt = ((octeon_get_io_clock_rate() >> 8) * max_timeout_sec) >> 8;
 
681	} while (timeout_cnt > 65535);
682
683	BUG_ON(timeout_cnt == 0);
684
685	octeon_wdt_calc_parameters(heartbeat);
686
687	pr_info("octeon_wdt: Initial granularity %d Sec.\n", timeout_sec);
 
 
 
 
 
688
689	ret = misc_register(&octeon_wdt_miscdev);
690	if (ret) {
691		pr_err("octeon_wdt: cannot register miscdev on minor=%d (err=%d)\n",
692			WATCHDOG_MINOR, ret);
693		goto out;
694	}
695
696	/* Build the NMI handler ... */
697	octeon_wdt_build_stage1();
698
699	/* ... and install it. */
700	ptr = (u64 *) nmi_stage1_insns;
701	for (i = 0; i < 16; i++) {
702		cvmx_write_csr(CVMX_MIO_BOOT_LOC_ADR, i * 8);
703		cvmx_write_csr(CVMX_MIO_BOOT_LOC_DAT, ptr[i]);
704	}
705	cvmx_write_csr(CVMX_MIO_BOOT_LOC_CFGX(0), 0x81fc0000);
706
707	cpumask_clear(&irq_enabled_cpus);
708
709	for_each_online_cpu(cpu)
710		octeon_wdt_setup_interrupt(cpu);
711
712	register_hotcpu_notifier(&octeon_wdt_cpu_notifier);
713out:
 
 
 
 
714	return ret;
715}
716
717/**
718 * Module / driver shutdown
719 */
720static void __exit octeon_wdt_cleanup(void)
721{
722	int cpu;
723
724	misc_deregister(&octeon_wdt_miscdev);
725
726	unregister_hotcpu_notifier(&octeon_wdt_cpu_notifier);
727
728	for_each_online_cpu(cpu) {
729		int core = cpu2core(cpu);
730		/* Disable the watchdog */
731		cvmx_write_csr(CVMX_CIU_WDOGX(core), 0);
732		/* Free the interrupt handler */
733		free_irq(OCTEON_IRQ_WDOG0 + core, octeon_wdt_poke_irq);
734	}
735	/*
736	 * Disable the boot-bus memory, the code it points to is soon
737	 * to go missing.
738	 */
739	cvmx_write_csr(CVMX_MIO_BOOT_LOC_CFGX(0), 0);
740}
741
742MODULE_LICENSE("GPL");
743MODULE_AUTHOR("Cavium Networks <support@caviumnetworks.com>");
744MODULE_DESCRIPTION("Cavium Networks Octeon Watchdog driver.");
745module_init(octeon_wdt_init);
746module_exit(octeon_wdt_cleanup);
v4.10.11
  1/*
  2 * Octeon Watchdog driver
  3 *
  4 * Copyright (C) 2007, 2008, 2009, 2010 Cavium Networks
  5 *
  6 * Converted to use WATCHDOG_CORE by Aaro Koskinen <aaro.koskinen@iki.fi>.
  7 *
  8 * Some parts derived from wdt.c
  9 *
 10 *	(c) Copyright 1996-1997 Alan Cox <alan@lxorguk.ukuu.org.uk>,
 11 *						All Rights Reserved.
 12 *
 13 *	This program is free software; you can redistribute it and/or
 14 *	modify it under the terms of the GNU General Public License
 15 *	as published by the Free Software Foundation; either version
 16 *	2 of the License, or (at your option) any later version.
 17 *
 18 *	Neither Alan Cox nor CymruNet Ltd. admit liability nor provide
 19 *	warranty for any of this software. This material is provided
 20 *	"AS-IS" and at no charge.
 21 *
 22 *	(c) Copyright 1995    Alan Cox <alan@lxorguk.ukuu.org.uk>
 23 *
 24 * This file is subject to the terms and conditions of the GNU General Public
 25 * License.  See the file "COPYING" in the main directory of this archive
 26 * for more details.
 27 *
 28 *
 29 * The OCTEON watchdog has a maximum timeout of 2^32 * io_clock.
 30 * For most systems this is less than 10 seconds, so to allow for
 31 * software to request longer watchdog heartbeats, we maintain software
 32 * counters to count multiples of the base rate.  If the system locks
 33 * up in such a manner that we can not run the software counters, the
 34 * only result is a watchdog reset sooner than was requested.  But
 35 * that is OK, because in this case userspace would likely not be able
 36 * to do anything anyhow.
 37 *
 38 * The hardware watchdog interval we call the period.  The OCTEON
 39 * watchdog goes through several stages, after the first period an
 40 * irq is asserted, then if it is not reset, after the next period NMI
 41 * is asserted, then after an additional period a chip wide soft reset.
 42 * So for the software counters, we reset watchdog after each period
 43 * and decrement the counter.  But for the last two periods we need to
 44 * let the watchdog progress to the NMI stage so we disable the irq
 45 * and let it proceed.  Once in the NMI, we print the register state
 46 * to the serial port and then wait for the reset.
 47 *
 48 * A watchdog is maintained for each CPU in the system, that way if
 49 * one CPU suffers a lockup, we also get a register dump and reset.
 50 * The userspace ping resets the watchdog on all CPUs.
 51 *
 52 * Before userspace opens the watchdog device, we still run the
 53 * watchdogs to catch any lockups that may be kernel related.
 54 *
 55 */
 56
 57#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
 58
 59#include <linux/interrupt.h>
 60#include <linux/watchdog.h>
 61#include <linux/cpumask.h>
 62#include <linux/bitops.h>
 63#include <linux/kernel.h>
 64#include <linux/module.h>
 65#include <linux/string.h>
 66#include <linux/delay.h>
 67#include <linux/cpu.h>
 68#include <linux/smp.h>
 69#include <linux/fs.h>
 70#include <linux/irq.h>
 71
 72#include <asm/mipsregs.h>
 73#include <asm/uasm.h>
 74
 75#include <asm/octeon/octeon.h>
 76
 77/* The count needed to achieve timeout_sec. */
 78static unsigned int timeout_cnt;
 79
 80/* The maximum period supported. */
 81static unsigned int max_timeout_sec;
 82
 83/* The current period.  */
 84static unsigned int timeout_sec;
 85
 86/* Set to non-zero when userspace countdown mode active */
 87static int do_coundown;
 88static unsigned int countdown_reset;
 89static unsigned int per_cpu_countdown[NR_CPUS];
 90
 91static cpumask_t irq_enabled_cpus;
 92
 93#define WD_TIMO 60			/* Default heartbeat = 60 seconds */
 94
 95static int heartbeat = WD_TIMO;
 96module_param(heartbeat, int, S_IRUGO);
 97MODULE_PARM_DESC(heartbeat,
 98	"Watchdog heartbeat in seconds. (0 < heartbeat, default="
 99				__MODULE_STRING(WD_TIMO) ")");
100
101static bool nowayout = WATCHDOG_NOWAYOUT;
102module_param(nowayout, bool, S_IRUGO);
103MODULE_PARM_DESC(nowayout,
104	"Watchdog cannot be stopped once started (default="
105				__MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
106
107static u32 nmi_stage1_insns[64] __initdata;
 
 
 
108/* We need one branch and therefore one relocation per target label. */
109static struct uasm_label labels[5] __initdata;
110static struct uasm_reloc relocs[5] __initdata;
111
112enum lable_id {
113	label_enter_bootloader = 1
114};
115
116/* Some CP0 registers */
117#define K0		26
118#define C0_CVMMEMCTL 11, 7
119#define C0_STATUS 12, 0
120#define C0_EBASE 15, 1
121#define C0_DESAVE 31, 0
122
123void octeon_wdt_nmi_stage2(void);
124
125static void __init octeon_wdt_build_stage1(void)
126{
127	int i;
128	int len;
129	u32 *p = nmi_stage1_insns;
130#ifdef CONFIG_HOTPLUG_CPU
131	struct uasm_label *l = labels;
132	struct uasm_reloc *r = relocs;
133#endif
134
135	/*
136	 * For the next few instructions running the debugger may
137	 * cause corruption of k0 in the saved registers. Since we're
138	 * about to crash, nobody probably cares.
139	 *
140	 * Save K0 into the debug scratch register
141	 */
142	uasm_i_dmtc0(&p, K0, C0_DESAVE);
143
144	uasm_i_mfc0(&p, K0, C0_STATUS);
145#ifdef CONFIG_HOTPLUG_CPU
146	if (octeon_bootloader_entry_addr)
147		uasm_il_bbit0(&p, &r, K0, ilog2(ST0_NMI),
148			      label_enter_bootloader);
149#endif
150	/* Force 64-bit addressing enabled */
151	uasm_i_ori(&p, K0, K0, ST0_UX | ST0_SX | ST0_KX);
152	uasm_i_mtc0(&p, K0, C0_STATUS);
153
154#ifdef CONFIG_HOTPLUG_CPU
155	if (octeon_bootloader_entry_addr) {
156		uasm_i_mfc0(&p, K0, C0_EBASE);
157		/* Coreid number in K0 */
158		uasm_i_andi(&p, K0, K0, 0xf);
159		/* 8 * coreid in bits 16-31 */
160		uasm_i_dsll_safe(&p, K0, K0, 3 + 16);
161		uasm_i_ori(&p, K0, K0, 0x8001);
162		uasm_i_dsll_safe(&p, K0, K0, 16);
163		uasm_i_ori(&p, K0, K0, 0x0700);
164		uasm_i_drotr_safe(&p, K0, K0, 32);
165		/*
166		 * Should result in: 0x8001,0700,0000,8*coreid which is
167		 * CVMX_CIU_WDOGX(coreid) - 0x0500
168		 *
169		 * Now ld K0, CVMX_CIU_WDOGX(coreid)
170		 */
171		uasm_i_ld(&p, K0, 0x500, K0);
172		/*
173		 * If bit one set handle the NMI as a watchdog event.
174		 * otherwise transfer control to bootloader.
175		 */
176		uasm_il_bbit0(&p, &r, K0, 1, label_enter_bootloader);
177		uasm_i_nop(&p);
178	}
179#endif
180
181	/* Clear Dcache so cvmseg works right. */
182	uasm_i_cache(&p, 1, 0, 0);
183
184	/* Use K0 to do a read/modify/write of CVMMEMCTL */
185	uasm_i_dmfc0(&p, K0, C0_CVMMEMCTL);
186	/* Clear out the size of CVMSEG	*/
187	uasm_i_dins(&p, K0, 0, 0, 6);
188	/* Set CVMSEG to its largest value */
189	uasm_i_ori(&p, K0, K0, 0x1c0 | 54);
190	/* Store the CVMMEMCTL value */
191	uasm_i_dmtc0(&p, K0, C0_CVMMEMCTL);
192
193	/* Load the address of the second stage handler */
194	UASM_i_LA(&p, K0, (long)octeon_wdt_nmi_stage2);
195	uasm_i_jr(&p, K0);
196	uasm_i_dmfc0(&p, K0, C0_DESAVE);
197
198#ifdef CONFIG_HOTPLUG_CPU
199	if (octeon_bootloader_entry_addr) {
200		uasm_build_label(&l, p, label_enter_bootloader);
201		/* Jump to the bootloader and restore K0 */
202		UASM_i_LA(&p, K0, (long)octeon_bootloader_entry_addr);
203		uasm_i_jr(&p, K0);
204		uasm_i_dmfc0(&p, K0, C0_DESAVE);
205	}
206#endif
207	uasm_resolve_relocs(relocs, labels);
208
209	len = (int)(p - nmi_stage1_insns);
210	pr_debug("Synthesized NMI stage 1 handler (%d instructions)\n", len);
211
212	pr_debug("\t.set push\n");
213	pr_debug("\t.set noreorder\n");
214	for (i = 0; i < len; i++)
215		pr_debug("\t.word 0x%08x\n", nmi_stage1_insns[i]);
216	pr_debug("\t.set pop\n");
217
218	if (len > 32)
219		panic("NMI stage 1 handler exceeds 32 instructions, was %d\n",
220		      len);
221}
222
223static int cpu2core(int cpu)
224{
225#ifdef CONFIG_SMP
226	return cpu_logical_map(cpu);
227#else
228	return cvmx_get_core_num();
229#endif
230}
231
232static int core2cpu(int coreid)
233{
234#ifdef CONFIG_SMP
235	return cpu_number_map(coreid);
236#else
237	return 0;
238#endif
239}
240
241/**
242 * Poke the watchdog when an interrupt is received
243 *
244 * @cpl:
245 * @dev_id:
246 *
247 * Returns
248 */
249static irqreturn_t octeon_wdt_poke_irq(int cpl, void *dev_id)
250{
251	unsigned int core = cvmx_get_core_num();
252	int cpu = core2cpu(core);
253
254	if (do_coundown) {
255		if (per_cpu_countdown[cpu] > 0) {
256			/* We're alive, poke the watchdog */
257			cvmx_write_csr(CVMX_CIU_PP_POKEX(core), 1);
258			per_cpu_countdown[cpu]--;
259		} else {
260			/* Bad news, you are about to reboot. */
261			disable_irq_nosync(cpl);
262			cpumask_clear_cpu(cpu, &irq_enabled_cpus);
263		}
264	} else {
265		/* Not open, just ping away... */
266		cvmx_write_csr(CVMX_CIU_PP_POKEX(core), 1);
267	}
268	return IRQ_HANDLED;
269}
270
271/* From setup.c */
272extern int prom_putchar(char c);
273
274/**
275 * Write a string to the uart
276 *
277 * @str:        String to write
278 */
279static void octeon_wdt_write_string(const char *str)
280{
281	/* Just loop writing one byte at a time */
282	while (*str)
283		prom_putchar(*str++);
284}
285
286/**
287 * Write a hex number out of the uart
288 *
289 * @value:      Number to display
290 * @digits:     Number of digits to print (1 to 16)
291 */
292static void octeon_wdt_write_hex(u64 value, int digits)
293{
294	int d;
295	int v;
296
297	for (d = 0; d < digits; d++) {
298		v = (value >> ((digits - d - 1) * 4)) & 0xf;
299		if (v >= 10)
300			prom_putchar('a' + v - 10);
301		else
302			prom_putchar('0' + v);
303	}
304}
305
306static const char reg_name[][3] = {
307	"$0", "at", "v0", "v1", "a0", "a1", "a2", "a3",
308	"a4", "a5", "a6", "a7", "t0", "t1", "t2", "t3",
309	"s0", "s1", "s2", "s3", "s4", "s5", "s6", "s7",
310	"t8", "t9", "k0", "k1", "gp", "sp", "s8", "ra"
311};
312
313/**
314 * NMI stage 3 handler. NMIs are handled in the following manner:
315 * 1) The first NMI handler enables CVMSEG and transfers from
316 * the bootbus region into normal memory. It is careful to not
317 * destroy any registers.
318 * 2) The second stage handler uses CVMSEG to save the registers
319 * and create a stack for C code. It then calls the third level
320 * handler with one argument, a pointer to the register values.
321 * 3) The third, and final, level handler is the following C
322 * function that prints out some useful infomration.
323 *
324 * @reg:    Pointer to register state before the NMI
325 */
326void octeon_wdt_nmi_stage3(u64 reg[32])
327{
328	u64 i;
329
330	unsigned int coreid = cvmx_get_core_num();
331	/*
332	 * Save status and cause early to get them before any changes
333	 * might happen.
334	 */
335	u64 cp0_cause = read_c0_cause();
336	u64 cp0_status = read_c0_status();
337	u64 cp0_error_epc = read_c0_errorepc();
338	u64 cp0_epc = read_c0_epc();
339
340	/* Delay so output from all cores output is not jumbled together. */
341	__delay(100000000ull * coreid);
342
343	octeon_wdt_write_string("\r\n*** NMI Watchdog interrupt on Core 0x");
344	octeon_wdt_write_hex(coreid, 1);
345	octeon_wdt_write_string(" ***\r\n");
346	for (i = 0; i < 32; i++) {
347		octeon_wdt_write_string("\t");
348		octeon_wdt_write_string(reg_name[i]);
349		octeon_wdt_write_string("\t0x");
350		octeon_wdt_write_hex(reg[i], 16);
351		if (i & 1)
352			octeon_wdt_write_string("\r\n");
353	}
354	octeon_wdt_write_string("\terr_epc\t0x");
355	octeon_wdt_write_hex(cp0_error_epc, 16);
356
357	octeon_wdt_write_string("\tepc\t0x");
358	octeon_wdt_write_hex(cp0_epc, 16);
359	octeon_wdt_write_string("\r\n");
360
361	octeon_wdt_write_string("\tstatus\t0x");
362	octeon_wdt_write_hex(cp0_status, 16);
363	octeon_wdt_write_string("\tcause\t0x");
364	octeon_wdt_write_hex(cp0_cause, 16);
365	octeon_wdt_write_string("\r\n");
366
367	octeon_wdt_write_string("\tsum0\t0x");
368	octeon_wdt_write_hex(cvmx_read_csr(CVMX_CIU_INTX_SUM0(coreid * 2)), 16);
369	octeon_wdt_write_string("\ten0\t0x");
370	octeon_wdt_write_hex(cvmx_read_csr(CVMX_CIU_INTX_EN0(coreid * 2)), 16);
371	octeon_wdt_write_string("\r\n");
372
373	octeon_wdt_write_string("*** Chip soft reset soon ***\r\n");
374}
375
376static int octeon_wdt_cpu_pre_down(unsigned int cpu)
377{
378	unsigned int core;
379	unsigned int irq;
380	union cvmx_ciu_wdogx ciu_wdog;
381
382	core = cpu2core(cpu);
383
384	irq = OCTEON_IRQ_WDOG0 + core;
385
386	/* Poke the watchdog to clear out its state */
387	cvmx_write_csr(CVMX_CIU_PP_POKEX(core), 1);
388
389	/* Disable the hardware. */
390	ciu_wdog.u64 = 0;
391	cvmx_write_csr(CVMX_CIU_WDOGX(core), ciu_wdog.u64);
392
393	free_irq(irq, octeon_wdt_poke_irq);
394	return 0;
395}
396
397static int octeon_wdt_cpu_online(unsigned int cpu)
398{
399	unsigned int core;
400	unsigned int irq;
401	union cvmx_ciu_wdogx ciu_wdog;
402
403	core = cpu2core(cpu);
404
405	/* Disable it before doing anything with the interrupts. */
406	ciu_wdog.u64 = 0;
407	cvmx_write_csr(CVMX_CIU_WDOGX(core), ciu_wdog.u64);
408
409	per_cpu_countdown[cpu] = countdown_reset;
410
411	irq = OCTEON_IRQ_WDOG0 + core;
412
413	if (request_irq(irq, octeon_wdt_poke_irq,
414			IRQF_NO_THREAD, "octeon_wdt", octeon_wdt_poke_irq))
415		panic("octeon_wdt: Couldn't obtain irq %d", irq);
416
417	cpumask_set_cpu(cpu, &irq_enabled_cpus);
418
419	/* Poke the watchdog to clear out its state */
420	cvmx_write_csr(CVMX_CIU_PP_POKEX(core), 1);
421
422	/* Finally enable the watchdog now that all handlers are installed */
423	ciu_wdog.u64 = 0;
424	ciu_wdog.s.len = timeout_cnt;
425	ciu_wdog.s.mode = 3;	/* 3 = Interrupt + NMI + Soft-Reset */
426	cvmx_write_csr(CVMX_CIU_WDOGX(core), ciu_wdog.u64);
 
427
428	return 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
429}
430
431static int octeon_wdt_ping(struct watchdog_device __always_unused *wdog)
432{
433	int cpu;
434	int coreid;
435
436	for_each_online_cpu(cpu) {
437		coreid = cpu2core(cpu);
438		cvmx_write_csr(CVMX_CIU_PP_POKEX(coreid), 1);
439		per_cpu_countdown[cpu] = countdown_reset;
440		if ((countdown_reset || !do_coundown) &&
441		    !cpumask_test_cpu(cpu, &irq_enabled_cpus)) {
442			/* We have to enable the irq */
443			int irq = OCTEON_IRQ_WDOG0 + coreid;
444
445			enable_irq(irq);
446			cpumask_set_cpu(cpu, &irq_enabled_cpus);
447		}
448	}
449	return 0;
450}
451
452static void octeon_wdt_calc_parameters(int t)
453{
454	unsigned int periods;
455
456	timeout_sec = max_timeout_sec;
457
458
459	/*
460	 * Find the largest interrupt period, that can evenly divide
461	 * the requested heartbeat time.
462	 */
463	while ((t % timeout_sec) != 0)
464		timeout_sec--;
465
466	periods = t / timeout_sec;
467
468	/*
469	 * The last two periods are after the irq is disabled, and
470	 * then to the nmi, so we subtract them off.
471	 */
472
473	countdown_reset = periods > 2 ? periods - 2 : 0;
474	heartbeat = t;
475	timeout_cnt = ((octeon_get_io_clock_rate() >> 8) * timeout_sec) >> 8;
476}
477
478static int octeon_wdt_set_timeout(struct watchdog_device *wdog,
479				  unsigned int t)
480{
481	int cpu;
482	int coreid;
483	union cvmx_ciu_wdogx ciu_wdog;
484
485	if (t <= 0)
486		return -1;
487
488	octeon_wdt_calc_parameters(t);
489
490	for_each_online_cpu(cpu) {
491		coreid = cpu2core(cpu);
492		cvmx_write_csr(CVMX_CIU_PP_POKEX(coreid), 1);
493		ciu_wdog.u64 = 0;
494		ciu_wdog.s.len = timeout_cnt;
495		ciu_wdog.s.mode = 3;	/* 3 = Interrupt + NMI + Soft-Reset */
496		cvmx_write_csr(CVMX_CIU_WDOGX(coreid), ciu_wdog.u64);
497		cvmx_write_csr(CVMX_CIU_PP_POKEX(coreid), 1);
498	}
499	octeon_wdt_ping(wdog); /* Get the irqs back on. */
500	return 0;
501}
502
503static int octeon_wdt_start(struct watchdog_device *wdog)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
504{
505	octeon_wdt_ping(wdog);
 
 
 
 
 
506	do_coundown = 1;
507	return 0;
508}
509
510static int octeon_wdt_stop(struct watchdog_device *wdog)
 
 
 
 
 
 
 
 
 
 
 
 
511{
512	do_coundown = 0;
513	octeon_wdt_ping(wdog);
 
 
 
 
 
 
514	return 0;
515}
516
517static const struct watchdog_info octeon_wdt_info = {
518	.options = WDIOF_SETTIMEOUT | WDIOF_MAGICCLOSE | WDIOF_KEEPALIVEPING,
519	.identity = "OCTEON",
 
 
 
 
520};
521
522static const struct watchdog_ops octeon_wdt_ops = {
523	.owner		= THIS_MODULE,
524	.start		= octeon_wdt_start,
525	.stop		= octeon_wdt_stop,
526	.ping		= octeon_wdt_ping,
527	.set_timeout	= octeon_wdt_set_timeout,
528};
529
530static struct watchdog_device octeon_wdt = {
531	.info	= &octeon_wdt_info,
532	.ops	= &octeon_wdt_ops,
533};
534
535static enum cpuhp_state octeon_wdt_online;
536/**
537 * Module/ driver initialization.
538 *
539 * Returns Zero on success
540 */
541static int __init octeon_wdt_init(void)
542{
543	int i;
544	int ret;
 
545	u64 *ptr;
546
547	/*
548	 * Watchdog time expiration length = The 16 bits of LEN
549	 * represent the most significant bits of a 24 bit decrementer
550	 * that decrements every 256 cycles.
551	 *
552	 * Try for a timeout of 5 sec, if that fails a smaller number
553	 * of even seconds,
554	 */
555	max_timeout_sec = 6;
556	do {
557		max_timeout_sec--;
558		timeout_cnt = ((octeon_get_io_clock_rate() >> 8) *
559			      max_timeout_sec) >> 8;
560	} while (timeout_cnt > 65535);
561
562	BUG_ON(timeout_cnt == 0);
563
564	octeon_wdt_calc_parameters(heartbeat);
565
566	pr_info("Initial granularity %d Sec\n", timeout_sec);
567
568	octeon_wdt.timeout	= timeout_sec;
569	octeon_wdt.max_timeout	= UINT_MAX;
570
571	watchdog_set_nowayout(&octeon_wdt, nowayout);
572
573	ret = watchdog_register_device(&octeon_wdt);
574	if (ret) {
575		pr_err("watchdog_register_device() failed: %d\n", ret);
576		return ret;
 
577	}
578
579	/* Build the NMI handler ... */
580	octeon_wdt_build_stage1();
581
582	/* ... and install it. */
583	ptr = (u64 *) nmi_stage1_insns;
584	for (i = 0; i < 16; i++) {
585		cvmx_write_csr(CVMX_MIO_BOOT_LOC_ADR, i * 8);
586		cvmx_write_csr(CVMX_MIO_BOOT_LOC_DAT, ptr[i]);
587	}
588	cvmx_write_csr(CVMX_MIO_BOOT_LOC_CFGX(0), 0x81fc0000);
589
590	cpumask_clear(&irq_enabled_cpus);
591
592	ret = cpuhp_setup_state(CPUHP_AP_ONLINE_DYN, "watchdog/octeon:online",
593				octeon_wdt_cpu_online, octeon_wdt_cpu_pre_down);
594	if (ret < 0)
595		goto err;
596	octeon_wdt_online = ret;
597	return 0;
598err:
599	cvmx_write_csr(CVMX_MIO_BOOT_LOC_CFGX(0), 0);
600	watchdog_unregister_device(&octeon_wdt);
601	return ret;
602}
603
604/**
605 * Module / driver shutdown
606 */
607static void __exit octeon_wdt_cleanup(void)
608{
609	watchdog_unregister_device(&octeon_wdt);
610	cpuhp_remove_state(octeon_wdt_online);
 
611
 
 
 
 
 
 
 
 
 
612	/*
613	 * Disable the boot-bus memory, the code it points to is soon
614	 * to go missing.
615	 */
616	cvmx_write_csr(CVMX_MIO_BOOT_LOC_CFGX(0), 0);
617}
618
619MODULE_LICENSE("GPL");
620MODULE_AUTHOR("Cavium Networks <support@caviumnetworks.com>");
621MODULE_DESCRIPTION("Cavium Networks Octeon Watchdog driver.");
622module_init(octeon_wdt_init);
623module_exit(octeon_wdt_cleanup);