nb/intel/sandybridge: Refactor `get_pcie_bar`
Turn it into `decode_pcie_bar`, taken from gm45. Change-Id: Id1c2cfbcac1a798d046beced790930511dc97972 Signed-off-by: Angel Pons <th3fanbus@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/44121 Reviewed-by: Patrick Rudolph <siro@das-labor.org> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
96b32f194b
commit
20905cfe26
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
#include <console/console.h>
|
#include <console/console.h>
|
||||||
#include <acpi/acpi.h>
|
#include <acpi/acpi.h>
|
||||||
|
#include <commonlib/helpers.h>
|
||||||
#include <device/pci_ops.h>
|
#include <device/pci_ops.h>
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <delay.h>
|
#include <delay.h>
|
||||||
|
@ -39,18 +40,16 @@ int bridge_silicon_revision(void)
|
||||||
static const int legacy_hole_base_k = 0xa0000 / 1024;
|
static const int legacy_hole_base_k = 0xa0000 / 1024;
|
||||||
static const int legacy_hole_size_k = 384;
|
static const int legacy_hole_size_k = 384;
|
||||||
|
|
||||||
static int get_pcie_bar(u32 *base)
|
static int decode_pcie_bar(u32 *const base, u32 *const len)
|
||||||
{
|
{
|
||||||
struct device *dev;
|
|
||||||
u32 pciexbar_reg;
|
|
||||||
|
|
||||||
*base = 0;
|
*base = 0;
|
||||||
|
*len = 0;
|
||||||
|
|
||||||
dev = pcidev_on_root(0, 0);
|
struct device *dev = pcidev_on_root(0, 0);
|
||||||
if (!dev)
|
if (!dev)
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
pciexbar_reg = pci_read_config32(dev, PCIEXBAR);
|
const u32 pciexbar_reg = pci_read_config32(dev, PCIEXBAR);
|
||||||
|
|
||||||
/* MMCFG not supported or not enabled */
|
/* MMCFG not supported or not enabled */
|
||||||
if (!(pciexbar_reg & (1 << 0)))
|
if (!(pciexbar_reg & (1 << 0)))
|
||||||
|
@ -58,14 +57,17 @@ static int get_pcie_bar(u32 *base)
|
||||||
|
|
||||||
switch ((pciexbar_reg >> 1) & 3) {
|
switch ((pciexbar_reg >> 1) & 3) {
|
||||||
case 0: /* 256MB */
|
case 0: /* 256MB */
|
||||||
*base = pciexbar_reg & (0xffffffffULL << 28);
|
*base = pciexbar_reg & (0x0f << 28);
|
||||||
return 256;
|
*len = 256 * MiB;
|
||||||
|
return 1;
|
||||||
case 1: /* 128M */
|
case 1: /* 128M */
|
||||||
*base = pciexbar_reg & (0xffffffffULL << 27);
|
*base = pciexbar_reg & (0x1f << 27);
|
||||||
return 128;
|
*len = 128 * MiB;
|
||||||
|
return 1;
|
||||||
case 2: /* 64M */
|
case 2: /* 64M */
|
||||||
*base = pciexbar_reg & (0xffffffffULL << 26);
|
*base = pciexbar_reg & (0x3f << 26);
|
||||||
return 64;
|
*len = 64 * MiB;
|
||||||
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
@ -129,8 +131,7 @@ static void add_fixed_resources(struct device *dev, int index)
|
||||||
|
|
||||||
static void mc_read_resources(struct device *dev)
|
static void mc_read_resources(struct device *dev)
|
||||||
{
|
{
|
||||||
u32 pcie_config_base;
|
u32 pcie_config_base, pcie_config_len;
|
||||||
int buses;
|
|
||||||
uint64_t tom, me_base, touud;
|
uint64_t tom, me_base, touud;
|
||||||
uint32_t tseg_base, uma_size, tolud;
|
uint32_t tseg_base, uma_size, tolud;
|
||||||
uint16_t ggc;
|
uint16_t ggc;
|
||||||
|
@ -139,8 +140,8 @@ static void mc_read_resources(struct device *dev)
|
||||||
|
|
||||||
pci_dev_read_resources(dev);
|
pci_dev_read_resources(dev);
|
||||||
|
|
||||||
buses = get_pcie_bar(&pcie_config_base);
|
if (decode_pcie_bar(&pcie_config_base, &pcie_config_len)) {
|
||||||
if (buses) {
|
const int buses = pcie_config_len / MiB;
|
||||||
struct resource *resource = new_resource(dev, PCIEXBAR);
|
struct resource *resource = new_resource(dev, PCIEXBAR);
|
||||||
mmconf_resource_init(resource, pcie_config_base, buses);
|
mmconf_resource_init(resource, pcie_config_base, buses);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue