nb/intel/sandybridge/peg: Add PEG driver stub

Required for other ACPI generators, like the one used for _ROM.

* Add ACPI code for PEG10/PEG11/PEG12/PEG60 and include it on all platforms.
* Add PCIe driver for PEG. The driver returns ACPI names for ssdt generators.

Needs test on real hardware.

Change-Id: I96835c43522580c95fd4f250c56bf9438e993bc1
Signed-off-by: Patrick Rudolph <siro@das-labor.org>
Reviewed-on: https://review.coreboot.org/22337
Reviewed-by: Martin Roth <martinroth@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
Patrick Rudolph 2017-07-05 20:07:06 +02:00 committed by Martin Roth
parent 70df5d6e43
commit 0b643d2499
5 changed files with 189 additions and 1 deletions

View File

@ -17,6 +17,7 @@ ifeq ($(CONFIG_NORTHBRIDGE_INTEL_SANDYBRIDGE)$(CONFIG_NORTHBRIDGE_INTEL_IVYBRIDG
ramstage-y += ram_calc.c ramstage-y += ram_calc.c
ramstage-y += northbridge.c ramstage-y += northbridge.c
ramstage-y += pcie.c
ramstage-y += gma.c ramstage-y += gma.c
ramstage-$(CONFIG_SANDYBRIDGE_IVYBRIDGE_LVDS) += gma_sandybridge_lvds.c ramstage-$(CONFIG_SANDYBRIDGE_IVYBRIDGE_LVDS) += gma_sandybridge_lvds.c
ramstage-$(CONFIG_SANDYBRIDGE_IVYBRIDGE_LVDS) += gma_ivybridge_lvds.c ramstage-$(CONFIG_SANDYBRIDGE_IVYBRIDGE_LVDS) += gma_ivybridge_lvds.c

View File

@ -37,7 +37,8 @@ Device (MCHC)
MHEN, 1, // Enable MHEN, 1, // Enable
, 13, // , 13, //
MHBR, 22, // MCHBAR MHBR, 22, // MCHBAR
Offset (0x54),
DVEN, 32,
Offset (0x60), // PCIe BAR Offset (0x60), // PCIe BAR
PXEN, 1, // Enable PXEN, 1, // Enable
PXSZ, 2, // BAR size PXSZ, 2, // BAR size

View File

@ -0,0 +1,79 @@
/*
* This file is part of the coreboot project.
*
* Copyright (C) 2017-2018 Patrick Rudolph <siro@das-labor.org>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; version 2 of
* the License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
Device (PEGP)
{
Name (_ADR, 0x00010000)
Method (_STA)
{
ShiftRight (\_SB.PCI0.MCHC.DVEN, 3, Local0)
Return (And (Local0, 1))
}
Device (DEV0)
{
Name(_ADR, 0x00000000)
}
}
Device (PEG1)
{
Name (_ADR, 0x00010001)
Method (_STA)
{
ShiftRight (\_SB.PCI0.MCHC.DVEN, 2, Local0)
Return (And (Local0, 1))
}
Device (DEV0)
{
Name(_ADR, 0x00000000)
}
}
Device (PEG2)
{
Name (_ADR, 0x00010002)
Method (_STA)
{
ShiftRight (\_SB.PCI0.MCHC.DVEN, 1, Local0)
Return (And (Local0, 1))
}
Device (DEV0)
{
Name(_ADR, 0x00000000)
}
}
Device (PEG6)
{
Name (_ADR, 0x00060000)
Method (_STA)
{
ShiftRight (\_SB.PCI0.MCHC.DVEN, 13, Local0)
Return (And (Local0, 1))
}
Device (DEV0)
{
Name(_ADR, 0x00000000)
}
}

View File

@ -2,6 +2,7 @@
* This file is part of the coreboot project. * This file is part of the coreboot project.
* *
* Copyright (C) 2007-2009 coresystems GmbH * Copyright (C) 2007-2009 coresystems GmbH
* Copyright (C) 2017-2018 Patrick Rudolph <siro@das-labor.org>
* *
* This program is free software; you can redistribute it and/or * This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as * modify it under the terms of the GNU General Public License as
@ -16,6 +17,7 @@
#include "../sandybridge.h" #include "../sandybridge.h"
#include "hostbridge.asl" #include "hostbridge.asl"
#include "peg.asl"
/* PCI Device Resource Consumption */ /* PCI Device Resource Consumption */
Device (PDRC) Device (PDRC)

View File

@ -0,0 +1,105 @@
/*
* This file is part of the coreboot project.
*
* Copyright (C) 2017-2018 Patrick Rudolph <siro@das-labor.org>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation; version 2 of
* the License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*/
#include <console/console.h>
#include <device/device.h>
#include <device/pci.h>
#include <device/pciexp.h>
#include <device/pci_ids.h>
#include <assert.h>
static void pcie_disable(struct device *dev)
{
printk(BIOS_INFO, "%s: Disabling device\n", dev_path(dev));
dev->enabled = 0;
}
#if IS_ENABLED(CONFIG_HAVE_ACPI_TABLES)
static const char *pcie_acpi_name(const struct device *dev)
{
assert(dev);
if (dev->path.type != DEVICE_PATH_PCI)
return NULL;
assert(dev->bus);
if (dev->bus->secondary == 0)
switch (dev->path.pci.devfn) {
case PCI_DEVFN(1, 0):
return "PEGP";
case PCI_DEVFN(1, 1):
return "PEG1";
case PCI_DEVFN(1, 2):
return "PEG2";
case PCI_DEVFN(6, 0):
return "PEG6";
};
const device_t port = dev->bus->dev;
assert(port);
assert(port->bus);
if (dev->path.pci.devfn == PCI_DEVFN(0, 0) &&
port->bus->secondary == 0 &&
(port->path.pci.devfn == PCI_DEVFN(1, 0) ||
port->path.pci.devfn == PCI_DEVFN(1, 1) ||
port->path.pci.devfn == PCI_DEVFN(1, 2) ||
port->path.pci.devfn == PCI_DEVFN(6, 0)))
return "DEV0";
return NULL;
}
#endif
static void
pcie_set_subsystem(struct device *dev, unsigned int ven, unsigned int device)
{
/* NOTE: This is not the default position! */
if (!ven || !device)
pci_write_config32(dev, 0x94,
pci_read_config32(dev, 0));
else
pci_write_config32(dev, 0x94,
((device & 0xffff) << 16) | (ven & 0xffff));
}
static struct pci_operations pci_ops = {
.set_subsystem = pcie_set_subsystem,
};
static struct device_operations device_ops = {
.read_resources = pci_bus_read_resources,
.set_resources = pci_dev_set_resources,
.enable_resources = pci_bus_enable_resources,
.scan_bus = pciexp_scan_bridge,
.reset_bus = pci_bus_reset,
.disable = pcie_disable,
.init = pci_dev_init,
.ops_pci = &pci_ops,
#if IS_ENABLED(CONFIG_HAVE_ACPI_TABLES)
.acpi_name = pcie_acpi_name,
#endif
};
static const unsigned short pci_device_ids[] = { 0x0101, 0x0105, 0x0109, 0x010d,
0x0151, 0x0155, 0x0159, 0x015d,
0 };
static const struct pci_driver pch_pcie __pci_driver = {
.ops = &device_ops,
.vendor = PCI_VENDOR_ID_INTEL,
.devices = pci_device_ids,
};