blob: b470e955e14bd3bd295089de6513e5d135fa16e7 [file] [log] [blame]
Damien Zammit43a1f782015-08-19 15:16:59 +10001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2015 Damien Zammit <damien@zamaudio.com>
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; either version 2 of
9 * the License, or (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 */
16
17#include <arch/io.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +020018#include <device/pci_ops.h>
Martin Rothcbe38922016-01-05 19:40:41 -070019#include "iomap.h"
20#include "x4x.h"
Damien Zammit43a1f782015-08-19 15:16:59 +100021
22static void bootblock_northbridge_init(void)
23{
24 uint32_t reg32;
25
26 /* Disable LaGrande Technology (LT) */
27 reg32 = TPM32(0);
28
29 reg32 = CONFIG_MMCONF_BASE_ADDRESS | 16 | 1;
Arthur Heymans70a1dda2017-03-09 01:58:24 +010030 pci_io_write_config32(PCI_DEV(0, 0, 0), D0F0_PCIEXBAR_LO, reg32);
Damien Zammit43a1f782015-08-19 15:16:59 +100031}