blob: 9dfeed6a4a5412dc5a11eb1d837185b2a4dbf288 [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 Heymans360d9472019-11-12 18:11:03 +010016#include "sandybridge.h"
Kyösti Mälkkifbdb0852013-07-01 11:21:53 +030017
Arthur Heymans360d9472019-11-12 18:11:03 +010018void bootblock_early_northbridge_init(void)
Kyösti Mälkkifbdb0852013-07-01 11:21:53 +030019{
20 uint32_t reg;
21
22 /*
Angel Pons7c49cb82020-03-16 23:17:32 +010023 * The "io" variant of the config access is explicitly used to setup the
24 * PCIEXBAR because CONFIG_MMCONF_SUPPORT is set to to true. That way, all
25 * subsequent non-explicit config accesses use MCFG. This code also assumes
26 * that 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 the
Elyes HAOUAS0c9630e2020-01-07 20:06:08 +010028 * CONFIG_MMCONF_SUPPORT option to do PCI config accesses.
Kyösti Mälkkifbdb0852013-07-01 11:21:53 +030029 *
Angel Pons7c49cb82020-03-16 23:17:32 +010030 * The PCIEXBAR is assumed to live in the memory mapped IO space under 4GiB.
Kyösti Mälkkifbdb0852013-07-01 11:21:53 +030031 */
32 reg = 0;
Angel Pons7c49cb82020-03-16 23:17:32 +010033 pci_io_write_config32(HOST_BRIDGE, PCIEXBAR + 4, reg);
Kyösti Mälkkifbdb0852013-07-01 11:21:53 +030034 reg = CONFIG_MMCONF_BASE_ADDRESS | 4 | 1; /* 64MiB - 0-63 buses. */
Angel Pons7c49cb82020-03-16 23:17:32 +010035 pci_io_write_config32(HOST_BRIDGE, PCIEXBAR, reg);
Kyösti Mälkkifbdb0852013-07-01 11:21:53 +030036}