summaryrefslogtreecommitdiffstats
path: root/src/northbridge/intel/ironlake/bootblock.c
blob: f66c9ca8e029f8729b39ee7b4c4d961e61e9c501 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* SPDX-License-Identifier: GPL-2.0-only */
/* This file is part of the coreboot project. */

#include <arch/bootblock.h>
#include <device/pci_ops.h>

void bootblock_early_northbridge_init(void)
{
	pci_io_write_config32(PCI_DEV(0xff, 0x00, 1), 0x50, CONFIG_MMCONF_BASE_ADDRESS | 1);
	pci_io_write_config32(PCI_DEV(0xff, 0x00, 1), 0x54, 0);
}