coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
bootblock.c
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #include <arch/bootblock.h>
4 #include <device/pci_ops.h>
6 #include "i82801gx.h"
7 
9 {
11 
13 
14  /* Enable upper 128bytes of CMOS */
15  RCBA32(0x3400) = (1 << 2);
16 
17  /* Disable watchdog timer */
18  RCBA32(GCS) = RCBA32(GCS) | 0x20;
19 
21 }
void __weak bootblock_early_southbridge_init(void)
Definition: bootblock.c:17
static void enable_spi_prefetching_and_caching(void)
Definition: early_spi.h:8
#define GCS
Definition: lpc.h:36
#define RCBA32(x)
Definition: rcba.h:14
void i82801gx_setup_bars(void)
Definition: early_init.c:47
void i82801gx_lpc_setup(void)
Definition: early_init.c:11