blob: e86abe5ab14f5baea95f6e08a36fbe6316005270 [file] [log] [blame]
Martin Roth5474eb12018-05-26 19:22:33 -06001/*
2 * This file is part of the coreboot project.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; version 2 of the License.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 */
13
Arthur Heymanse27c0132019-11-12 23:34:13 +010014#include <cpu/intel/car/bootblock.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +020015#include <device/pci_ops.h>
Arthur Heymanse27c0132019-11-12 23:34:13 +010016#include "i945.h"
Kyösti Mälkki032c23d2013-07-01 11:21:53 +030017
Arthur Heymanse27c0132019-11-12 23:34:13 +010018void bootblock_early_northbridge_init(void)
Kyösti Mälkki032c23d2013-07-01 11:21:53 +030019{
20 uint32_t reg;
21
22 /*
23 * The "io" variant of the config access is explicitly used to
Elyes HAOUAS96184e92018-05-09 21:23:25 +020024 * setup the PCIEXBAR because CONFIG_MMCONF_SUPPORT is set to true.
25 * That way all subsequent non-explicit config accesses use
Kyösti Mälkki032c23d2013-07-01 11:21:53 +030026 * MCFG. This code also assumes that bootblock_northbridge_init() is
27 * the first thing called in the non-asm boot block code. The final
28 * assumption is that no assembly code is using the
Kyösti Mälkki6f66f412016-12-01 22:08:18 +020029 * CONFIG_MMCONF_SUPPORT option to do PCI config acceses.
Kyösti Mälkki032c23d2013-07-01 11:21:53 +030030 *
31 * The PCIEXBAR is assumed to live in the memory mapped IO space under
32 * 4GiB.
33 */
34 reg = CONFIG_MMCONF_BASE_ADDRESS | 4 | 1; /* 64MiB - 0-63 buses. */
Arthur Heymans70a8e342017-03-09 11:30:23 +010035 pci_io_write_config32(PCI_DEV(0, 0, 0), PCIEXBAR, reg);
Kyösti Mälkki032c23d2013-07-01 11:21:53 +030036}