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
mb/google/nissa/var/rull: Change padbased_override to rtd3 of wifi
[coreboot2.git]
/
src
/
northbridge
/
intel
/
i945
/
errata.c
blob
c4219d94e32da3cda75f6b29d7883ee080525bc7
1
/* SPDX-License-Identifier: GPL-2.0-only */
2
3
#include <stdint.h>
4
5
#include
"i945.h"
6
#include
"raminit.h"
7
8
int
fixup_i945gm_errata
(
void
)
9
{
10
u32 reg32
;
11
12
/* Mobile Intel 945 Express only */
13
reg32
=
mchbar_read32
(
FSBPMC3
);
14
reg32
&= ~((
1
<<
13
) | (
1
<<
29
));
15
mchbar_write32
(
FSBPMC3
,
reg32
);
16
17
return
0
;
18
}