blob: 1486a1b5762e420889d9c6585c4dd33bbd511979 [file] [log] [blame]
Angel Pons4b429832020-04-02 23:48:50 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Martin Roth5474eb12018-05-26 19:22:33 -06002
Kyösti Mälkkide640782019-12-03 07:30:26 +02003#include <arch/bootblock.h>
Angel Ponsa6b09222021-01-20 13:00:02 +01004#include <assert.h>
Angel Pons37cae542021-02-02 16:28:07 +01005#include <device/pci_ops.h>
Angel Ponsa6b09222021-01-20 13:00:02 +01006#include <types.h>
Elyes HAOUAS487c1a22021-01-31 08:23:00 +01007
Arthur Heymanse27c0132019-11-12 23:34:13 +01008#include "i945.h"
Kyösti Mälkki032c23d2013-07-01 11:21:53 +03009
Angel Ponsa6b09222021-01-20 13:00:02 +010010static uint32_t encode_pciexbar_length(void)
11{
Shelley Chen4e9bb332021-10-20 15:43:45 -070012 switch (CONFIG_ECAM_MMCONF_BUS_NUMBER) {
Angel Ponsa6b09222021-01-20 13:00:02 +010013 case 256: return 0 << 1;
14 case 128: return 1 << 1;
15 case 64: return 2 << 1;
16 default: return dead_code_t(uint32_t);
17 }
18}
19
Arthur Heymanse27c0132019-11-12 23:34:13 +010020void bootblock_early_northbridge_init(void)
Kyösti Mälkki032c23d2013-07-01 11:21:53 +030021{
Kyösti Mälkki032c23d2013-07-01 11:21:53 +030022 /*
Shelley Chen4e9bb332021-10-20 15:43:45 -070023 * The "io" variant of the config access is explicitly used to setup the
24 * PCIEXBAR because CONFIG(ECAM_MMCONF_SUPPORT) is set to true. That way
25 * all subsequent non-explicit config accesses use MCFG. This code also
26 * assumes that bootblock_northbridge_init() is the first thing called
27 * in the non-asm boot block code. The final assumption is that no
28 * assembly code is using the CONFIG(ECAM_MMCONF_SUPPORT) option to do
29 * PCI config accesses.
Kyösti Mälkki032c23d2013-07-01 11:21:53 +030030 *
Elyes HAOUAS3dff32c2020-03-30 17:16:51 +020031 * The PCIEXBAR is assumed to live in the memory mapped IO space under 4GiB.
Kyösti Mälkki032c23d2013-07-01 11:21:53 +030032 */
Shelley Chen4e9bb332021-10-20 15:43:45 -070033 const uint32_t reg32 = CONFIG_ECAM_MMCONF_BASE_ADDRESS | encode_pciexbar_length() | 1;
Elyes HAOUAS487c1a22021-01-31 08:23:00 +010034 pci_io_write_config32(HOST_BRIDGE, PCIEXBAR, reg32);
Kyösti Mälkki032c23d2013-07-01 11:21:53 +030035}