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
tree: Remove unused <assert.h>
[coreboot.git]
/
src
/
soc
/
mediatek
/
common
/
cpu_id.c
blob
e31adcdf3f840ca3f0e44d1d42540ece3cf99d93
1
/* SPDX-License-Identifier: GPL-2.0-only */
2
3
#include <console/console.h>
4
#include <device/mmio.h>
5
#include <soc/cpu_id.h>
6
#include <soc/efuse.h>
7
8
u32
get_cpu_id
(
void
)
9
{
10
u32 id
=
read32
(&
mtk_efuse
->
cpu_id_reg
);
11
12
printk
(
BIOS_INFO
,
"CPU: %#x
\n
"
,
id
);
13
14
return
id
;
15
}