repo.or.cz
/
coreboot2.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
docs: Add 24.12 release notes
[coreboot2.git]
/
src
/
soc
/
mediatek
/
mt8195
/
wdt.c
blob
44f0f7f79ba3135171e6562d3d69a5f9c51042b6
1
/* SPDX-License-Identifier: GPL-2.0-only OR MIT */
2
3
#include <device/mmio.h>
4
#include <soc/addressmap.h>
5
#include <soc/wdt.h>
6
7
#define MTK_WDT_CLR_STATUS 0x230001FF
8
9
void
mtk_wdt_clr_status
(
void
)
10
{
11
write32
(&
mtk_wdt
->
wdt_mode
,
MTK_WDT_CLR_STATUS
);
12
}