summaryrefslogtreecommitdiff
path: root/src/northbridge/intel/x4x/gma.c
diff options
context:
space:
mode:
authorArthur Heymans <arthur@aheymans.xyz>2017-02-26 23:04:51 +0100
committerNico Huber <nico.h@gmx.de>2017-05-09 12:56:59 +0200
commitc80748c2d04faf7313faf43bdbcde72a3ad9ee21 (patch)
tree88de5c65d8237353ed90373d8db57a6f07b32ed1 /src/northbridge/intel/x4x/gma.c
parent4c4f56a6ba18b47d68d852ff3971ec91dbcb7ce4 (diff)
downloadcoreboot-c80748c2d04faf7313faf43bdbcde72a3ad9ee21.tar.xz
nb/x4x: Add ramstage IGD disable function
This disables VGA cycles on IGD when an external VGA device is found. This allows PCI or PCIe devices to be the 'main' VGA device if found, while the IGD is still available. TESTED on ga-g41m-es2l: SeaBIOS shows payload on external GPU while linux (4.10) can use both as a framebuffer simultaneously without any extra configuration. Change-Id: I74890918feb0f1ff6b971c4aaa96f1f7b75266ac Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-on: https://review.coreboot.org/18504 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Nico Huber <nico.h@gmx.de> Reviewed-by: Patrick Rudolph <siro@das-labor.org>
Diffstat (limited to 'src/northbridge/intel/x4x/gma.c')
-rw-r--r--src/northbridge/intel/x4x/gma.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/northbridge/intel/x4x/gma.c b/src/northbridge/intel/x4x/gma.c
index f4b2b2efca..c2df07424e 100644
--- a/src/northbridge/intel/x4x/gma.c
+++ b/src/northbridge/intel/x4x/gma.c
@@ -376,6 +376,16 @@ static void gma_func0_init(struct device *dev)
pci_dev_init(dev);
}
+static void gma_func0_disable(struct device *dev)
+{
+ struct device *dev_host = dev_find_slot(0, PCI_DEVFN(0, 0));
+ u16 ggc;
+
+ ggc = pci_read_config16(dev_host, D0F0_GGC);
+ ggc |= (1 << 1); /* VGA cycles to discrete GPU */
+ pci_write_config16(dev_host, D0F0_GGC, ggc);
+}
+
static void gma_set_subsystem(device_t dev, unsigned int vendor,
unsigned int device)
{
@@ -419,6 +429,7 @@ static struct device_operations gma_func0_ops = {
.acpi_fill_ssdt_generator = gma_ssdt,
.init = gma_func0_init,
.ops_pci = &gma_pci_ops,
+ .disable = gma_func0_disable,
};
static const unsigned short pci_device_ids[] = {