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
soc/amd/glinda: Update MCA banks
[coreboot2.git]
/
src
/
mainboard
/
google
/
storm
/
mmu.h
blob
49f3b48e484a2f1a7b24d001e2f06335fefbd2ea
1
/* SPDX-License-Identifier: GPL-2.0-only */
2
3
#include <types.h>
4
5
extern
u8 _rpm
[];
6
extern
u8 _erpm
[];
7
8
enum
dram_state
{
9
DRAM_INITIALIZED
=
0
,
10
DRAM_NOT_INITIALIZED
=
1
,
11
};
12
13
void
setup_dram_mappings
(
enum
dram_state dram
);
14
void
setup_mmu
(
enum
dram_state
);