blob: 903c770d9d71a488a9274def35c9e0aeab748186 [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
Kyösti Mälkkide640782019-12-03 07:30:26 +020014#include <arch/bootblock.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +020015#include <device/pci_ops.h>
Arthur Heymans8e646e72018-06-05 11:19:22 +020016#include "haswell.h"
Aaron Durbin6d04f0f2012-10-31 22:57:16 -050017
Arthur Heymans8e646e72018-06-05 11:19:22 +020018void bootblock_early_northbridge_init(void)
Aaron Durbin6d04f0f2012-10-31 22:57:16 -050019{
20 uint32_t reg;
21
22 /*
Angel Pons1db5bc72020-01-15 00:49:03 +010023 * The "io" variant of the config access is explicitly used to setup the PCIEXBAR
24 * because CONFIG_MMCONF_SUPPORT is set to true. That way, all subsequent
25 * non-explicit config accesses use MCFG. This code also assumes that
26 * bootblock_northbridge_init() is the first thing called in the non-asm
27 * boot block code. The final assumption is that no assembly code is using
28 * the CONFIG_MMCONF_SUPPORT option to do PCI config acceses.
Aaron Durbin6d04f0f2012-10-31 22:57:16 -050029 *
Angel Pons1db5bc72020-01-15 00:49:03 +010030 * The PCIEXBAR is assumed to live in the memory mapped IO space under 4GiB.
Aaron Durbin6d04f0f2012-10-31 22:57:16 -050031 */
32 reg = 0;
Angel Pons1db5bc72020-01-15 00:49:03 +010033 pci_io_write_config32(HOST_BRIDGE, PCIEXBAR + 4, reg);
Aaron Durbin6d04f0f2012-10-31 22:57:16 -050034 reg = CONFIG_MMCONF_BASE_ADDRESS | 4 | 1; /* 64MiB - 0-63 buses. */
Angel Pons1db5bc72020-01-15 00:49:03 +010035 pci_io_write_config32(HOST_BRIDGE, PCIEXBAR, reg);
Aaron Durbin6d04f0f2012-10-31 22:57:16 -050036}