util/crossgcc: Update DESTDIR variable use
[coreboot2.git] / src / southbridge / intel / i82801gx / bootblock.c
bloba7441c1ab6721ddb6917387f4edda045d259c55e
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #include <arch/bootblock.h>
4 #include <southbridge/intel/common/early_spi.h>
5 #include <southbridge/intel/common/rcba.h>
7 #include "i82801gx.h"
9 void bootblock_early_southbridge_init(void)
11 enable_spi_prefetching_and_caching();
13 i82801gx_setup_bars();
15 /* Enable upper 128bytes of CMOS */
16 RCBA32(0x3400) = (1 << 2);
18 /* Disable watchdog timer */
19 RCBA32(GCS) = RCBA32(GCS) | 0x20;
21 i82801gx_lpc_setup();