summaryrefslogtreecommitdiff
path: root/chip/mchp/watchdog.c
blob: b8f986f5cd3c0e9afafe7247920f585f0c2a7ed6 (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
/* Copyright 2017 The Chromium OS Authors. All rights reserved.
 * Use of this source code is governed by a BSD-style license that can be
 * found in the LICENSE file.
 */

/* Watchdog driver */

#include "hooks.h"
#include "registers.h"
#include "task.h"
#include "watchdog.h"
#include "tfdp_chip.h"

void watchdog_reload(void)
{
	MCHP_WDG_KICK = 1;

	if (IS_ENABLED(CONFIG_WATCHDOG_HELP)) {
		/* Reload the auxiliary timer */
		MCHP_TMR16_CTL(0) &= ~BIT(5);
		MCHP_TMR16_CNT(0) = CONFIG_AUX_TIMER_PERIOD_MS;
		MCHP_TMR16_CTL(0) |= BIT(5);
	}
}
DECLARE_HOOK(HOOK_TICK, watchdog_reload, HOOK_PRIO_DEFAULT);

#if defined(CHIP_FAMILY_MEC152X) || defined(CHIP_FAMILY_MEC172X)
static void wdg_intr_enable(int enable)
{
	if (enable) {
		MCHP_WDG_STATUS = MCHP_WDG_STS_IRQ;
		MCHP_WDG_IEN = MCHP_WDG_IEN_IRQ_EN;
		MCHP_WDG_CTL |= MCHP_WDG_RESET_IRQ_EN;
		MCHP_INT_ENABLE(MCHP_WDG_GIRQ) = MCHP_WDG_GIRQ_BIT;
		task_enable_irq(MCHP_IRQ_WDG);
	} else {
		MCHP_WDG_IEN = 0U;
		MCHP_WDG_CTL &= ~(MCHP_WDG_RESET_IRQ_EN);
		MCHP_INT_DISABLE(MCHP_WDG_GIRQ) = MCHP_WDG_GIRQ_BIT;
		task_disable_irq(MCHP_IRQ_WDG);
	}
}
#else
static void wdg_intr_enable(int enable)
{
	(void) enable;
}
#endif


/*
 * MEC1701 WDG asserts chip reset on LOAD count expiration.
 * WDG interrupt is simulated using a 16-bit general purpose
 * timer whose period is sufficiently less that the WDG timeout
 * period allowing watchdog trace data to be saved.
 *
 * MEC152x adds interrupt capability to the WDT.
 * Enable MEC152x WDG interrupt. WDG event will assert
 * IRQ and kick itself starting another LOAD timeout.
 * After the new LOAD expires WDG will assert chip reset.
 * The WDG ISR calls watchdog trace save API, upon return we
 * enter a spin loop waiting for the LOAD period to expire.
 * WDG does not have a way to trigger an immediate reset except
 * by re-programming it.
 */
int watchdog_init(void)
{
	if (IS_ENABLED(CONFIG_WATCHDOG_HELP)) {
		/*
		 * MEC170x Watchdog does not warn us before expiring.
		 * Let's use a 16-bit timer as an auxiliary timer.
		 */

		/* Clear 16-bit basic timer 0 PCR sleep enable */
		MCHP_PCR_SLP_DIS_DEV(MCHP_PCR_BTMR16_0);

		/* Stop the auxiliary timer if it's running */
		MCHP_TMR16_CTL(0) &= ~BIT(5);

		/* Enable auxiliary timer */
		MCHP_TMR16_CTL(0) |= BIT(0);

		/* Prescaler = 48000 -> 1kHz -> Period = 1 ms */
		MCHP_TMR16_CTL(0) = (MCHP_TMR16_CTL(0) & 0xffffU)
					| (47999 << 16);

		/* No auto restart */
		MCHP_TMR16_CTL(0) &= ~BIT(3);

		/* Count down */
		MCHP_TMR16_CTL(0) &= ~BIT(2);

		/* Enable interrupt from auxiliary timer */
		MCHP_TMR16_IEN(0) |= BIT(0);
		task_enable_irq(MCHP_IRQ_TIMER16_0);
		MCHP_INT_ENABLE(MCHP_TMR16_GIRQ) = MCHP_TMR16_GIRQ_BIT(0);

		/* Load and start the auxiliary timer */
		MCHP_TMR16_CNT(0) = CONFIG_AUX_TIMER_PERIOD_MS;
		MCHP_TMR16_CNT(0) |= BIT(5);
	}

	MCHP_WDG_CTL = 0;

	/* Clear WDT PCR sleep enable */
	MCHP_PCR_SLP_DIS_DEV(MCHP_PCR_WDT);

	/* Set timeout. It takes 1007 us to decrement WDG_CNT by 1. */
	MCHP_WDG_LOAD = CONFIG_WATCHDOG_PERIOD_MS * 1000 / 1007;

	wdg_intr_enable(1);

	/*
	 * Start watchdog
	 * If chipset debug build enable feature to prevent watchdog from
	 * counting if a debug cable is attached to JTAG_RST#.
	 */
	if (IS_ENABLED(CONFIG_CHIPSET_DEBUG))
		MCHP_WDG_CTL |= (MCHP_WDT_CTL_ENABLE
			| MCHP_WDT_CTL_JTAG_STALL_EN);
	else
		MCHP_WDG_CTL |= MCHP_WDT_CTL_ENABLE;

	return EC_SUCCESS;
}

/* MEC152x Watchdog can fire an interrupt to CPU before system reset */
#if defined(CHIP_FAMILY_MEC152X) || defined(CHIP_FAMILY_MEC172X)

void __keep watchdog_check(uint32_t excep_lr, uint32_t excep_sp)
{
	/* Clear WDG first then aggregator */
	MCHP_WDG_STATUS = MCHP_WDG_STS_IRQ;
	MCHP_INT_SOURCE(MCHP_WDG_GIRQ) = MCHP_WDG_GIRQ_BIT;

	/* Cause WDG to reload again. */
	MCHP_WDG_KICK = 1;

	watchdog_trace(excep_lr, excep_sp);

	/* Reset system by re-programing WDT to trigger after 2 32KHz clocks */
	MCHP_WDG_CTL = 0; /* clear enable to allow write to load register */
	MCHP_WDG_LOAD = 2;
	MCHP_WDG_CTL |= MCHP_WDT_CTL_ENABLE;

}

/* ISR for watchdog warning naked will keep SP & LR */
void
IRQ_HANDLER(MCHP_IRQ_WDG)(void) __keep __attribute__((naked));
void IRQ_HANDLER(MCHP_IRQ_WDG)(void)
{
	/* Naked call so we can extract raw LR and SP */
	asm volatile("mov r0, lr\n"
			"mov r1, sp\n"
			/*
			 * Must push registers in pairs to keep 64-bit aligned
			 * stack for ARM EABI.  This also conveniently saves
			 * R0=LR so we can pass it to task_resched_if_needed.
			 */
			"push {r0, lr}\n"
			"bl watchdog_check\n"
			"pop {r0, lr}\n"
			"b task_resched_if_needed\n");
}

/* put the watchdog at the highest priority */
const struct irq_priority __keep IRQ_PRIORITY(MCHP_IRQ_WDG)
__attribute__((section(".rodata.irqprio")))
= {MCHP_IRQ_WDG, 0};

#else
/*
 * MEC1701 watchdog only resets. Use a 16-bit timer to fire in interrupt
 * for saving watchdog trace.
 */
#ifdef CONFIG_WATCHDOG_HELP
void __keep watchdog_check(uint32_t excep_lr, uint32_t excep_sp)
{
	/* Clear status */
	MCHP_TMR16_STS(0) |= 1;
	/* clear aggregator status */
	MCHP_INT_SOURCE(MCHP_TMR16_GIRQ) = MCHP_TMR16_GIRQ_BIT(0);

	watchdog_trace(excep_lr, excep_sp);
}

void
IRQ_HANDLER(MCHP_IRQ_TIMER16_0)(void) __keep __attribute__((naked));
void IRQ_HANDLER(MCHP_IRQ_TIMER16_0)(void)
{
	/* Naked call so we can extract raw LR and SP */
	asm volatile("mov r0, lr\n"
		     "mov r1, sp\n"
		     /*
		      * Must push registers in pairs to keep 64-bit aligned
		      * stack for ARM EABI.  This also conveniently saves
		      * R0=LR so we can pass it to task_resched_if_needed.
		      */
		     "push {r0, lr}\n"
		     "bl watchdog_check\n"
		     "pop {r0, lr}\n"
		     "b task_resched_if_needed\n");
}

/* Put the watchdog at the highest interrupt priority. */
const struct irq_priority __keep IRQ_PRIORITY(MCHP_IRQ_TIMER16_0)
	__attribute__((section(".rodata.irqprio")))
		= {MCHP_IRQ_TIMER16_0, 0};

#endif /* #ifdef CONFIG_WATCHDOG_HELP */
#endif /* #if defined(CHIP_FAMILY_MEC152X) || defined(CHIP_FAMILY_MEC172X) */