~funderscore blog cgit wiki get in touch
aboutsummaryrefslogtreecommitdiff
blob: 6954e6c6a17f68df968eaa0efb343a0781481718 (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
// SPDX-License-Identifier: GPL-2.0+
/*
 * Copyright (c) 2022 Nuvoton Technology Corp.
 */

#include <common.h>
#include <asm/io.h>
#include <asm/arch/gcr.h>
#include <asm/arch/rst.h>

void reset_cpu(void)
{
	/* Generate a watchdog0 reset */
	writel(WTCR_WTR | WTCR_WTRE | WTCR_WTE, WTCR0_REG);

	while (1)
		;
}

void reset_misc(void)
{
	struct npcm_gcr *gcr = (struct npcm_gcr *)NPCM_GCR_BA;

	clrbits_le32(&gcr->intcr2, INTCR2_WDC);
}

int npcm_get_reset_status(void)
{
	struct npcm_gcr *gcr = (struct npcm_gcr *)NPCM_GCR_BA;
	u32 val;

	val = readl(&gcr->ressr);
	if (!val)
		val = readl(&gcr->intcr2);

	return val & RST_STS_MASK;
}