blob: e733287e93f930ccfb2046ed143e17aca2ef9bfa [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>
Martin Rothcbe38922016-01-05 19:40:41 -070018#include "iomap.h"
Kyösti Mälkki197a3c62019-09-27 14:32:20 +030019
20/* Just re-define these instead of including x4x.h. It blows up romcc. */
21#define D0F0_PCIEXBAR_LO 0x60
22#define D0F0_PCIEXBAR_HI 0x64
Damien Zammit43a1f782015-08-19 15:16:59 +100023
24static void bootblock_northbridge_init(void)
25{
26 uint32_t reg32;
27
28 /* Disable LaGrande Technology (LT) */
29 reg32 = TPM32(0);
30
31 reg32 = CONFIG_MMCONF_BASE_ADDRESS | 16 | 1;
Arthur Heymans70a1dda2017-03-09 01:58:24 +010032 pci_io_write_config32(PCI_DEV(0, 0, 0), D0F0_PCIEXBAR_LO, reg32);
Damien Zammit43a1f782015-08-19 15:16:59 +100033}