blob: 64643dd79c3449a89d879627cec8ce2f00771e35 [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
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +020017#include <device/pci_ops.h>
Arthur Heymans7843bd52019-11-11 21:56:37 +010018#include <cpu/intel/car/bootblock.h>
19#include "x4x.h"
Martin Rothcbe38922016-01-05 19:40:41 -070020#include "iomap.h"
Kyösti Mälkki197a3c62019-09-27 14:32:20 +030021
Arthur Heymans7843bd52019-11-11 21:56:37 +010022void bootblock_early_northbridge_init(void)
Damien Zammit43a1f782015-08-19 15:16:59 +100023{
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}