repo.or.cz
/
coreboot.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
mb/google/fatcat: Move CSE sync at payload
[coreboot.git]
/
src
/
soc
/
mediatek
/
common
/
timer_prepare.c
blob
3fb4be7f2d9f5ffb0bb462f29b1034a9544a7f8d
1
/* SPDX-License-Identifier: GPL-2.0-only */
2
3
#include <device/mmio.h>
4
#include <soc/addressmap.h>
5
#include <soc/timer.h>
6
7
void
timer_prepare
(
void
)
8
{
9
clrbits32
((
void
*)
SYSTIMER_BASE
,
COMP_FEATURE_MASK
);
10
setbits32
((
void
*)
SYSTIMER_BASE
,
COMP_25_MASK
);
11
}