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